diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index fdee6325d0f65c04fa76eec1cfa58ee90012c8c9..b91e58a83f43476d985fc513a98a77c943ce8789 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -9,13 +9,51 @@ lib/kokkos/* @stanmoore1 lib/molfile/* @akohlmey lib/qmmm/* @akohlmey lib/vtk/* @rbberger +lib/kim/* @ellio167 -# packages -src/KOKKOS @stanmoore1 -src/USER-CGSDK @akohlmey -src/USER-COLVARS @giacomofiorin -src/USER-OMP @akohlmey -src/USER-QMMM @akohlmey +# whole packages +src/COMPRESS/* @akohlmey +src/GPU/* @ndtrung81 +src/KOKKOS/* @stanmoore1 +src/KIM/* @ellio167 +src/LATTE/* @cnegre +src/SPIN/* @julient31 +src/USER-CGDNA/* @ohenrich +src/USER-CGSDK/* @akohlmey +src/USER-COLVARS/* @giacomofiorin +src/USER-DPD/* @timattox +src/USER-INTEL/* @wmbrownintel +src/USER-MANIFOLD/* @Pakketeretet2 +src/USER-MEAMC/* @martok +src/USER-MOFFF/* @hheenen +src/USER-MOLFILE/* @akohlmey +src/USER-NETCDF/* @pastewka +src/USER-PHONON/* @lingtikong +src/USER-OMP/* @akohlmey +src/USER-QMMM/* @akohlmey +src/USER-REAXC/* @hasanmetin +src/USER-TALLY/* @akohlmey +src/USER-UEF/* @danicholson +src/USER-VTK/* @rbberger + +# individual files in packages +src/GPU/pair_vashishta_gpu.* @andeplane +src/KOKKOS/pair_vashishta_kokkos.* @andeplane +src/MANYBODY/pair_vashishta_table.* @andeplane +src/USER-MISC/fix_bond_react.* @jrgissing +src/USER-MISC/*_grem.* @dstelter92 # tools tools/msi2lmp/* @akohlmey +tools/emacs/* @HaoZeke + +# cmake +cmake/* @junghans @rbberger + +# python +python/* @rbberger + +# docs +doc/utils/*/* @rbberger +doc/Makefile @rbberger +doc/README @rbberger diff --git a/README b/README index a258a335e934743df088d3e36cb1bc756377096b..784b1cb13ea9abfc852cf790b1ed40c579305619 100644 --- a/README +++ b/README @@ -25,7 +25,7 @@ The LAMMPS distribution includes the following files and directories: README this file LICENSE the GNU General Public License (GPL) bench benchmark problems -couple code coupling examples using LAMMPS as a library +cmake CMake build system doc documentation examples simple test problems lib libraries LAMMPS can be linked with diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 3a7e5dace641642186364f9ddf01c3295c0d4db2..d51108ba7aed1aae0a6040e7bda6f9d8dab20555 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -2,15 +2,17 @@ # CMake build system # This file is part of LAMMPS # Created by Christoph Junghans and Richard Berger -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 2.8.12) -project(lammps) +project(lammps CXX) set(SOVERSION 0) -set(LAMMPS_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../src) -set(LAMMPS_LIB_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../lib) -set(LAMMPS_LIB_BINARY_DIR ${CMAKE_BINARY_DIR}/lib) +get_filename_component(LAMMPS_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../src ABSOLUTE) +get_filename_component(LAMMPS_LIB_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../lib ABSOLUTE) +get_filename_component(LAMMPS_LIB_BINARY_DIR ${CMAKE_BINARY_DIR}/lib ABSOLUTE) +get_filename_component(LAMMPS_DOC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../doc ABSOLUTE) -#To not conflict with old Makefile build system, we build everything here + +# To avoid conflicts with the conventional Makefile build system, we build everything here file(GLOB LIB_SOURCES ${LAMMPS_SOURCE_DIR}/*.cpp) file(GLOB LMP_SOURCES ${LAMMPS_SOURCE_DIR}/main.cpp) list(REMOVE_ITEM LIB_SOURCES ${LMP_SOURCES}) @@ -23,13 +25,23 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CXX_FLAGS) set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." FORCE) endif(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CXX_FLAGS) -# remove any style headers in the src dir -file(GLOB SRC_STYLE_FILES ${LAMMPS_SOURCE_DIR}/style_*.h) -if(SRC_STYLE_FILES) - file(REMOVE ${SRC_STYLE_FILES}) -endif() - -enable_language(CXX) +# check for files auto-generated by make-based buildsystem +# this is fast, so check for it all the time +message(STATUS "Running check for auto-generated files from make-based build system") +file(GLOB SRC_AUTOGEN_FILES ${LAMMPS_SOURCE_DIR}/style_*.h) +list(APPEND SRC_AUTOGEN_FILES ${LAMMPS_SOURCE_DIR}/lmpinstalledpkgs.h) +foreach(_SRC ${SRC_AUTOGEN_FILES}) + get_filename_component(FILENAME "${_SRC}" NAME) + if(EXISTS ${LAMMPS_SOURCE_DIR}/${FILENAME}) + message(FATAL_ERROR "\n########################################################################\n" + "Found header file(s) generated by the make-based build system\n" + "\n" + "Please run\n" + "make -C ${LAMMPS_SOURCE_DIR} purge\n" + "to remove\n" + "########################################################################") + endif() +endforeach() ###################################################################### # compiler tests @@ -41,28 +53,80 @@ if (${CMAKE_CXX_COMPILER_ID} STREQUAL "Intel") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -restrict") endif() +# GNU compiler features +if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") + option(ENABLE_COVERAGE "Enable code coverage" OFF) + mark_as_advanced(ENABLE_COVERAGE) + if(ENABLE_COVERAGE) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage") + endif() + option(ENABLE_SANITIZE_ADDRESS "Enable address sanitizer" OFF) + mark_as_advanced(ENABLE_SANITIZE_ADDRESS) + if(ENABLE_SANITIZE_ADDRESS) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address") + endif() + option(ENABLE_SANITIZE_UNDEFINED "Enable undefined behavior sanitizer" OFF) + mark_as_advanced(ENABLE_SANITIZE_UNDEFINED) + if(ENABLE_SANITIZE_UNDEFINED) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined") + endif() + option(ENABLE_SANITIZE_THREAD "Enable thread sanitizer" OFF) + mark_as_advanced(ENABLE_SANITIZE_THREAD) + if(ENABLE_SANITIZE_THREAD) + set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread") + endif() +endif() + ######################################################################## # User input options # ######################################################################## -option(BUILD_SHARED_LIBS "Build shared libs" OFF) -if(BUILD_SHARED_LIBS) # for all pkg libs, mpi_stubs and linalg - set(CMAKE_POSITION_INDEPENDENT_CODE ON) +option(BUILD_EXE "Build lmp binary" ON) +if(BUILD_EXE) + set(LAMMPS_MACHINE "" CACHE STRING "Suffix to append to lmp binary (WON'T enable any features automatically") + mark_as_advanced(LAMMPS_MACHINE) + if(LAMMPS_MACHINE) + set(LAMMPS_MACHINE "_${LAMMPS_MACHINE}") + endif() +endif() + +option(BUILD_LIB "Build LAMMPS library" OFF) +if(BUILD_LIB) + option(BUILD_SHARED_LIBS "Build shared library" OFF) + if(BUILD_SHARED_LIBS) # for all pkg libs, mpi_stubs and linalg + set(CMAKE_POSITION_INDEPENDENT_CODE ON) + endif() + set(LIB_SUFFIX "" CACHE STRING "Suffix to append to liblammps and pkg-config file") + mark_as_advanced(LIB_SUFFIX) + if(LIB_SUFFIX) + set(LIB_SUFFIX "_${LIB_SUFFIX}") + endif() endif() + +if(NOT BUILD_EXE AND NOT BUILD_LIB) + message(FATAL_ERROR "You need to at least enable one of two following options: BUILD_LIB or BUILD_EXE") +endif() + +option(DEVELOPER_MODE "Enable developer mode" OFF) +mark_as_advanced(DEVELOPER_MODE) +option(CMAKE_VERBOSE_MAKEFILE "Generate verbose Makefiles" OFF) include(GNUInstallDirs) set(LAMMPS_LINK_LIBS) set(LAMMPS_DEPS) set(LAMMPS_API_DEFINES) -option(ENABLE_MPI "Build MPI version" OFF) -if(ENABLE_MPI) + +find_package(MPI QUIET) +option(BUILD_MPI "Build MPI version" ${MPI_FOUND}) +if(BUILD_MPI) find_package(MPI REQUIRED) - include_directories(${MPI_C_INCLUDE_PATH}) + include_directories(${MPI_CXX_INCLUDE_PATH}) list(APPEND LAMMPS_LINK_LIBS ${MPI_CXX_LIBRARIES}) option(LAMMPS_LONGLONG_TO_LONG "Workaround if your system or MPI version does not recognize 'long long' data types" OFF) if(LAMMPS_LONGLONG_TO_LONG) add_definitions(-DLAMMPS_LONGLONG_TO_LONG) endif() else() + enable_language(C) file(GLOB MPI_SOURCES ${LAMMPS_SOURCE_DIR}/STUBS/mpi.c) add_library(mpi_stubs STATIC ${MPI_SOURCES}) include_directories(${LAMMPS_SOURCE_DIR}/STUBS) @@ -83,12 +147,6 @@ if(LAMMPS_EXCEPTIONS) set(LAMMPS_API_DEFINES "${LAMMPS_API_DEFINES} -DLAMMPS_EXCEPTIONS") endif() -set(LAMMPS_MACHINE "" CACHE STRING "Suffix to append to lmp binary and liblammps (WON'T enable any features automatically") -mark_as_advanced(LAMMPS_MACHINE) -if(LAMMPS_MACHINE) - set(LAMMPS_MACHINE "_${LAMMPS_MACHINE}") -endif() - option(CMAKE_VERBOSE_MAKEFILE "Verbose makefile" OFF) option(ENABLE_TESTING "Enable testing" OFF) @@ -96,70 +154,75 @@ if(ENABLE_TESTING) enable_testing() endif(ENABLE_TESTING) -option(ENABLE_ALL "Build all default packages" OFF) -set(DEFAULT_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GRANULAR - KSPACE MANYBODY MC MEAM MISC MOLECULE PERI QEQ - REAX REPLICA RIGID SHOCK SNAP SRD) -set(OTHER_PACKAGES KIM PYTHON MSCG MPIIO VORONOI POEMS LATTE - USER-ATC USER-AWPMD USER-CGDNA USER-MESO - USER-CGSDK USER-COLVARS USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF - USER-FEP USER-H5MD USER-LB USER-MANIFOLD USER-MEAMC USER-MGPT USER-MISC +set(DEFAULT_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS DIPOLE GRANULAR + KSPACE MANYBODY MC MEAM MISC MOLECULE PERI REAX REPLICA RIGID SHOCK SPIN SNAP + SRD KIM PYTHON MSCG MPIIO VORONOI POEMS LATTE USER-ATC USER-AWPMD USER-BOCS + USER-CGDNA USER-MESO USER-CGSDK USER-COLVARS USER-DIFFRACTION USER-DPD USER-DRUDE + USER-EFF USER-FEP USER-H5MD USER-LB USER-MANIFOLD USER-MEAMC USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE USER-NETCDF USER-PHONON USER-QTB USER-REAXC USER-SMD USER-SMTBQ USER-SPH USER-TALLY USER-UEF USER-VTK USER-QUIP USER-QMMM) set(ACCEL_PACKAGES USER-OMP KOKKOS OPT USER-INTEL GPU) +set(OTHER_PACKAGES CORESHELL QEQ) foreach(PKG ${DEFAULT_PACKAGES}) - option(ENABLE_${PKG} "Build ${PKG} Package" ${ENABLE_ALL}) + option(PKG_${PKG} "Build ${PKG} Package" OFF) endforeach() foreach(PKG ${ACCEL_PACKAGES} ${OTHER_PACKAGES}) - option(ENABLE_${PKG} "Build ${PKG} Package" OFF) + option(PKG_${PKG} "Build ${PKG} Package" OFF) endforeach() macro(pkg_depends PKG1 PKG2) - if(ENABLE_${PKG1} AND NOT ENABLE_${PKG2}) + if(PKG_${PKG1} AND NOT (PKG_${PKG2} OR BUILD_${PKG2})) message(FATAL_ERROR "${PKG1} package needs LAMMPS to be build with ${PKG2}") endif() endmacro() +# "hard" dependencies between packages resulting +# in an error instead of skipping over files pkg_depends(MPIIO MPI) -pkg_depends(QEQ MANYBODY) pkg_depends(USER-ATC MANYBODY) -pkg_depends(USER-H5MD MPI) pkg_depends(USER-LB MPI) -pkg_depends(USER-MISC MANYBODY) pkg_depends(USER-PHONON KSPACE) -if(ENABLE_BODY AND ENABLE_POEMS) - message(FATAL_ERROR "BODY and POEMS cannot be enabled at the same time") -endif() - ###################################################### # packages with special compiler needs or external libs ###################################################### -if(ENABLE_REAX OR ENABLE_MEAM OR ENABLE_USER-QUIP OR ENABLE_USER-QMMM OR ENABLE_LATTE) +if(PKG_REAX OR PKG_MEAM OR PKG_USER-QUIP OR PKG_USER-QMMM OR PKG_LATTE) enable_language(Fortran) - include(CheckFortranCompilerFlag) - check_Fortran_compiler_flag("-fno-second-underscore" FC_HAS_NO_SECOND_UNDERSCORE) endif() -if(ENABLE_KOKKOS OR ENABLE_MSCG) - # starting with CMake 3.1 this is all you have to do to enforce C++11 - set(CMAKE_CXX_STANDARD 11) # C++11... - set(CMAKE_CXX_STANDARD_REQUIRED ON) #...is required... - set(CMAKE_CXX_EXTENSIONS OFF) #...without compiler extensions like gnu++11 +if(PKG_MEAM OR PKG_USER-H5MD OR PKG_USER-QMMM) + enable_language(C) endif() -if(ENABLE_USER-OMP OR ENABLE_KOKKOS OR ENABLE_USER-INTEL) +find_package(OpenMP QUIET) +option(BUILD_OMP "Build with OpenMP support" ${OpenMP_FOUND}) +if(BUILD_OMP OR PKG_USER-OMP OR PKG_KOKKOS OR PKG_USER-INTEL) find_package(OpenMP REQUIRED) set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") endif() -if(ENABLE_KSPACE) - set(FFT "KISSFFT" CACHE STRING "FFT library for KSPACE package") - set_property(CACHE FFT PROPERTY STRINGS KISSFFT FFTW3 MKL FFTW2) +if(PKG_KSPACE) + option(FFT_SINGLE "Use single precision FFT instead of double" OFF) + set(FFTW "FFTW3") + if(FFT_SINGLE) + set(FFTW "FFTW3F") + add_definitions(-DFFT_SINGLE) + endif() + find_package(${FFTW} QUIET) + if(${FFTW}_FOUND) + set(FFT "${FFTW}" CACHE STRING "FFT library for KSPACE package") + else() + set(FFT "KISSFFT" CACHE STRING "FFT library for KSPACE package") + endif() + set_property(CACHE FFT PROPERTY STRINGS KISSFFT ${FFTW} MKL) if(NOT FFT STREQUAL "KISSFFT") find_package(${FFT} REQUIRED) - add_definitions(-DFFT_${FFT}) + if(NOT FFT STREQUAL "FFTW3F") + add_definitions(-DFFT_FFTW) + else() + add_definitions(-DFFT_${FFT}) + endif() include_directories(${${FFT}_INCLUDE_DIRS}) list(APPEND LAMMPS_LINK_LIBS ${${FFT}_LIBRARIES}) endif() @@ -170,28 +233,23 @@ if(ENABLE_KSPACE) endif() endif() -if(ENABLE_MSCG OR ENABLE_USER-ATC OR ENABLE_USER-AWPMD OR ENABLE_USER-QUIP OR ENABLE_LATTE) +if(PKG_MSCG OR PKG_USER-ATC OR PKG_USER-AWPMD OR PKG_USER-QUIP OR PKG_LATTE) find_package(LAPACK) if(NOT LAPACK_FOUND) enable_language(Fortran) - file(GLOB LAPACK_SOURCES ${LAMMPS_LIB_SOURCE_DIR}/linalg/*.f) + file(GLOB LAPACK_SOURCES ${LAMMPS_LIB_SOURCE_DIR}/linalg/*.[fF]) add_library(linalg STATIC ${LAPACK_SOURCES}) - include(CheckFortranCompilerFlag) - check_Fortran_compiler_flag("-fno-second-underscore" FC_HAS_NO_SECOND_UNDERSCORE) - if(FC_HAS_NO_SECOND_UNDERSCORE) - target_compile_options(linalg PRIVATE -fno-second-underscore) - endif() set(LAPACK_LIBRARIES linalg) endif() endif() -if(ENABLE_PYTHON) +if(PKG_PYTHON) find_package(PythonInterp REQUIRED) find_package(PythonLibs REQUIRED) add_definitions(-DLMP_PYTHON) include_directories(${PYTHON_INCLUDE_DIR}) list(APPEND LAMMPS_LINK_LIBS ${PYTHON_LIBRARY}) - if(BUILD_SHARED_LIBS) + if(BUILD_LIB AND BUILD_SHARED_LIBS) if(NOT PYTHON_INSTDIR) execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "import distutils.sysconfig as cg; print(cg.get_python_lib(1,0,prefix='${CMAKE_INSTALL_PREFIX}'))" @@ -201,16 +259,25 @@ if(ENABLE_PYTHON) endif() endif() -find_package(JPEG) -if(JPEG_FOUND) +find_package(JPEG QUIET) +option(WITH_JPEG "Enable JPEG support" ${JPEG_FOUND}) +if(WITH_JPEG) + find_package(JPEG REQUIRED) add_definitions(-DLAMMPS_JPEG) include_directories(${JPEG_INCLUDE_DIR}) list(APPEND LAMMPS_LINK_LIBS ${JPEG_LIBRARIES}) endif() -find_package(PNG) -find_package(ZLIB) +find_package(PNG QUIET) +find_package(ZLIB QUIET) if(PNG_FOUND AND ZLIB_FOUND) + option(WITH_PNG "Enable PNG support" ON) +else() + option(WITH_PNG "Enable PNG support" OFF) +endif() +if(WITH_PNG) + find_package(PNG REQUIRED) + find_package(ZLIB REQUIRED) include_directories(${PNG_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIRS}) list(APPEND LAMMPS_LINK_LIBS ${PNG_LIBRARIES} ${ZLIB_LIBRARIES}) add_definitions(-DLAMMPS_PNG) @@ -218,113 +285,194 @@ endif() find_program(GZIP_EXECUTABLE gzip) find_package_handle_standard_args(GZIP REQUIRED_VARS GZIP_EXECUTABLE) -if(GZIP_FOUND) +option(WITH_GZIP "Enable GZIP support" ${GZIP_FOUND}) +if(WITH_GZIP) + if(NOT GZIP_FOUND) + message(FATAL_ERROR "gzip executable not found") + endif() add_definitions(-DLAMMPS_GZIP) endif() find_program(FFMPEG_EXECUTABLE ffmpeg) find_package_handle_standard_args(FFMPEG REQUIRED_VARS FFMPEG_EXECUTABLE) -if(FFMPEG_FOUND) +option(WITH_FFMPEG "Enable FFMPEG support" ${FFMPEG_FOUND}) +if(WITH_FFMPEG) + if(NOT FFMPEG_FOUND) + message(FATAL_ERROR "ffmpeg executable not found") + endif() add_definitions(-DLAMMPS_FFMPEG) endif() -if(ENABLE_VORONOI) - find_package(VORO REQUIRED) #some distros +if(PKG_VORONOI) + option(DOWNLOAD_VORO "Download voro++ (instead of using the system's one)" OFF) + if(DOWNLOAD_VORO) + include(ExternalProject) + ExternalProject_Add(voro_build + URL http://math.lbl.gov/voro++/download/dir/voro++-0.4.6.tar.gz + URL_MD5 2338b824c3b7b25590e18e8df5d68af9 + CONFIGURE_COMMAND "" BUILD_IN_SOURCE 1 INSTALL_COMMAND "" + ) + ExternalProject_get_property(voro_build SOURCE_DIR) + set(VORO_LIBRARIES ${SOURCE_DIR}/src/libvoro++.a) + set(VORO_INCLUDE_DIRS ${SOURCE_DIR}/src) + list(APPEND LAMMPS_DEPS voro_build) + else() + find_package(VORO) + if(NOT VORO_FOUND) + message(FATAL_ERROR "VORO not found, help CMake to find it by setting VORO_LIBRARY and VORO_INCLUDE_DIR, or set DOWNLOAD_VORO=ON to download it") + endif() + endif() include_directories(${VORO_INCLUDE_DIRS}) list(APPEND LAMMPS_LINK_LIBS ${VORO_LIBRARIES}) endif() -if(ENABLE_LATTE) - find_package(LATTE QUIET) - if(NOT LATTE_FOUND) +if(PKG_LATTE) + option(DOWNLOAD_LATTE "Download latte (instead of using the system's one)" OFF) + if(DOWNLOAD_LATTE) message(STATUS "LATTE not found - we will build our own") include(ExternalProject) ExternalProject_Add(latte_build - URL https://github.com/lanl/LATTE/archive/v1.0.1.tar.gz - URL_MD5 5137e28cb1a64444bd571c98c98a6eee + URL https://github.com/lanl/LATTE/archive/v1.2.1.tar.gz + URL_MD5 85ac414fdada2d04619c8f936344df14 SOURCE_SUBDIR cmake CMAKE_ARGS -DCMAKE_INSTALL_PREFIX= -DCMAKE_POSITION_INDEPENDENT_CODE=${CMAKE_POSITION_INDEPENDENT_CODE} ) ExternalProject_get_property(latte_build INSTALL_DIR) set(LATTE_LIBRARIES ${INSTALL_DIR}/${CMAKE_INSTALL_LIBDIR}/liblatte.a) list(APPEND LAMMPS_DEPS latte_build) + else() + find_package(LATTE) + if(NOT LATTE_FOUND) + message(FATAL_ERROR "LATTE not found, help CMake to find it by setting LATTE_LIBRARY, or set DOWNLOAD_LATTE=ON to download it") + endif() endif() - list(APPEND LAMMPS_LINK_LIBS ${LATTE_LIBRARIES} ${LAPACK_LIBRARIES} ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}) + list(APPEND LAMMPS_LINK_LIBS ${LATTE_LIBRARIES} ${LAPACK_LIBRARIES}) endif() -if(ENABLE_USER-MOLFILE) +if(PKG_USER-MOLFILE) add_library(molfile INTERFACE) target_include_directories(molfile INTERFACE ${LAMMPS_LIB_SOURCE_DIR}/molfile) target_link_libraries(molfile INTERFACE ${CMAKE_DL_LIBS}) list(APPEND LAMMPS_LINK_LIBS molfile) endif() -if(ENABLE_USER-NETCDF) +if(PKG_USER-NETCDF) find_package(NetCDF REQUIRED) include_directories(NETCDF_INCLUDE_DIR) list(APPEND LAMMPS_LINK_LIBS ${NETCDF_LIBRARY}) add_definitions(-DLMP_HAS_NETCDF -DNC_64BIT_DATA=0x0020) endif() -if(ENABLE_USER-SMD) - find_package(Eigen3 REQUIRED) +if(PKG_USER-SMD) + option(DOWNLOAD_Eigen3 "Download Eigen3 (instead of using the system's one)" OFF) + if(DOWNLOAD_Eigen3) + include(ExternalProject) + ExternalProject_Add(Eigen3_build + URL http://bitbucket.org/eigen/eigen/get/3.3.4.tar.gz + URL_MD5 1a47e78efe365a97de0c022d127607c3 + CONFIGURE_COMMAND "" BUILD_COMMAND "" INSTALL_COMMAND "" + ) + ExternalProject_get_property(Eigen3_build SOURCE_DIR) + set(EIGEN3_INCLUDE_DIR ${SOURCE_DIR}) + list(APPEND LAMMPS_DEPS Eigen3_build) + else() + find_package(Eigen3) + if(NOT Eigen3_FOUND) + message(FATAL_ERROR "Eigen3 not found, help CMake to find it by setting EIGEN3_INCLUDE_DIR, or set DOWNLOAD_Eigen3=ON to download it") + endif() + endif() include_directories(${EIGEN3_INCLUDE_DIR}) endif() -if(ENABLE_USER-QUIP) +if(PKG_USER-QUIP) find_package(QUIP REQUIRED) - list(APPEND LAMMPS_LINK_LIBS ${QUIP_LIBRARIES} ${LAPACK_LIBRARIES} ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}) + list(APPEND LAMMPS_LINK_LIBS ${QUIP_LIBRARIES} ${LAPACK_LIBRARIES}) endif() -if(ENABLE_USER-QMMM) +if(PKG_USER-QMMM) + message(WARNING "Building QMMM with CMake is still experimental") find_package(QE REQUIRED) include_directories(${QE_INCLUDE_DIRS}) - list(APPEND LAMMPS_LINK_LIBS ${QE_LIBRARIES} ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}) + list(APPEND LAMMPS_LINK_LIBS ${QE_LIBRARIES}) endif() -if(ENABLE_USER-VTK) +if(PKG_USER-VTK) find_package(VTK REQUIRED NO_MODULE) include(${VTK_USE_FILE}) add_definitions(-DLAMMPS_VTK) list(APPEND LAMMPS_LINK_LIBS ${VTK_LIBRARIES}) endif() -if(ENABLE_KIM) - find_package(KIM REQUIRED) +if(PKG_KIM) + option(DOWNLOAD_KIM "Download kim-api (instead of using the system's one)" OFF) + if(DOWNLOAD_KIM) + include(ExternalProject) + ExternalProject_Add(kim_build + URL https://github.com/openkim/kim-api/archive/v1.9.5.tar.gz + URL_MD5 9f66efc128da33039e30659f36fc6d00 + BUILD_IN_SOURCE 1 + CONFIGURE_COMMAND /configure --prefix= + ) + ExternalProject_get_property(kim_build INSTALL_DIR) + set(KIM_INCLUDE_DIRS ${INSTALL_DIR}/include/kim-api-v1) + set(KIM_LIBRARIES ${INSTALL_DIR}/lib/libkim-api-v1.so) + list(APPEND LAMMPS_DEPS kim_build) + else() + find_package(KIM) + if(NOT KIM_FOUND) + message(FATAL_ERROR "KIM not found, help CMake to find it by setting KIM_LIBRARY and KIM_INCLUDE_DIR, or set DOWNLOAD_KIM=ON to download it") + endif() + endif() list(APPEND LAMMPS_LINK_LIBS ${KIM_LIBRARIES}) include_directories(${KIM_INCLUDE_DIRS}) endif() -if(ENABLE_MSCG) +if(PKG_MSCG) find_package(GSL REQUIRED) - set(LAMMPS_LIB_MSCG_BIN_DIR ${LAMMPS_LIB_BINARY_DIR}/mscg) - set(MSCG_TARBALL ${LAMMPS_LIB_MSCG_BIN_DIR}/MS-CG-master.zip) - set(LAMMPS_LIB_MSCG_BIN_DIR ${LAMMPS_LIB_MSCG_BIN_DIR}/MSCG-release-master/src) - if(NOT EXISTS ${LAMMPS_LIB_MSCG_BIN_DIR}) - if(NOT EXISTS ${MSCG_TARBALL}) - message(STATUS "Downloading ${MSCG_TARBALL}") - file(DOWNLOAD - https://github.com/uchicago-voth/MSCG-release/archive/master.zip - ${MSCG_TARBALL} SHOW_PROGRESS) #EXPECTED_MD5 cannot be due due to master + option(DOWNLOAD_MSCG "Download latte (instead of using the system's one)" OFF) + if(DOWNLOAD_MSCG) + include(ExternalProject) + if(NOT LAPACK_FOUND) + set(EXTRA_MSCG_OPTS "-DLAPACK_LIBRARIES=${CMAKE_CURRENT_BINARY_DIR}/liblinalg.a") + endif() + ExternalProject_Add(mscg_build + URL https://github.com/uchicago-voth/MSCG-release/archive/1.7.3.1.tar.gz + URL_MD5 8c45e269ee13f60b303edd7823866a91 + SOURCE_SUBDIR src/CMake + CMAKE_ARGS -DCMAKE_INSTALL_PREFIX= -DCMAKE_POSITION_INDEPENDENT_CODE=${CMAKE_POSITION_INDEPENDENT_CODE} ${EXTRA_MSCG_OPTS} + BUILD_COMMAND make mscg INSTALL_COMMAND "" + ) + ExternalProject_get_property(mscg_build BINARY_DIR) + set(MSCG_LIBRARIES ${BINARY_DIR}/libmscg.a) + ExternalProject_get_property(mscg_build SOURCE_DIR) + set(MSCG_INCLUDE_DIRS ${SOURCE_DIR}/src) + list(APPEND LAMMPS_DEPS mscg_build) + if(NOT LAPACK_FOUND) + file(MAKE_DIRECTORY ${MSCG_INCLUDE_DIRS}) + add_dependencies(mscg_build linalg) + endif() + else() + find_package(MSCG) + if(NOT MSCG_FOUND) + message(FATAL_ERROR "MSCG not found, help CMake to find it by setting MSCG_LIBRARY and MSCG_INCLUDE_DIRS, or set DOWNLOAD_MSCG=ON to download it") endif() - message(STATUS "Unpacking ${MSCG_TARBALL}") - execute_process(COMMAND ${CMAKE_COMMAND} -E tar xvf ${MSCG_TARBALL} - WORKING_DIRECTORY ${LAMMPS_LIB_BINARY_DIR}/mscg) endif() - file(GLOB MSCG_SOURCES ${LAMMPS_LIB_MSCG_BIN_DIR}/*.cpp) - add_library(mscg STATIC ${MSCG_SOURCES}) - list(APPEND LAMMPS_LINK_LIBS mscg) - target_compile_options(mscg PRIVATE -DDIMENSION=3 -D_exclude_gromacs=1) - target_include_directories(mscg PUBLIC ${LAMMPS_LIB_MSCG_BIN_DIR}) - target_link_libraries(mscg ${GSL_LIBRARIES} ${LAPACK_LIBRARIES}) + list(APPEND LAMMPS_LINK_LIBS ${MSCG_LIBRARIES} ${GSL_LIBRARIES} ${LAPACK_LIBRARIES}) + include_directories(${MSCG_INCLUDE_DIRS}) +endif() + +if(PKG_COMPRESS) + find_package(ZLIB REQUIRED) + include_directories(${ZLIB_INCLUDE_DIRS}) + list(APPEND LAMMPS_LINK_LIBS ${ZLIB_LIBRARIES}) endif() ######################################################################## # Basic system tests (standard libraries, headers, functions, types) # ######################################################################## -include(CheckIncludeFile) +include(CheckIncludeFileCXX) foreach(HEADER math.h) - check_include_file(${HEADER} FOUND_${HEADER}) + check_include_file_cxx(${HEADER} FOUND_${HEADER}) if(NOT FOUND_${HEADER}) message(FATAL_ERROR "Could not find needed header - ${HEADER}") endif(NOT FOUND_${HEADER}) @@ -333,6 +481,9 @@ endforeach(HEADER) set(MATH_LIBRARIES "m" CACHE STRING "math library") mark_as_advanced( MATH_LIBRARIES ) include(CheckLibraryExists) +if (CMAKE_VERSION VERSION_LESS "3.4") + enable_language(C) # check_library_exists isn't supported without a c compiler before v3.4 +endif() foreach(FUNC sin cos) check_library_exists(${MATH_LIBRARIES} ${FUNC} "" FOUND_${FUNC}_${MATH_LIBRARIES}) if(NOT FOUND_${FUNC}_${MATH_LIBRARIES}) @@ -350,25 +501,16 @@ RegisterStyles(${LAMMPS_SOURCE_DIR}) ############################################## # add sources of enabled packages ############################################ -foreach(PKG ${DEFAULT_PACKAGES} ${OTHER_PACKAGES}) +foreach(PKG ${DEFAULT_PACKAGES}) set(${PKG}_SOURCES_DIR ${LAMMPS_SOURCE_DIR}/${PKG}) - # ignore PKG files which were manually installed in src folder - # headers are ignored during RegisterStyles file(GLOB ${PKG}_SOURCES ${${PKG}_SOURCES_DIR}/*.cpp) file(GLOB ${PKG}_HEADERS ${${PKG}_SOURCES_DIR}/*.h) - foreach(PKG_FILE in ${${PKG}_SOURCES}) - get_filename_component(FNAME ${PKG_FILE} NAME) - list(REMOVE_ITEM LIB_SOURCES ${LAMMPS_SOURCE_DIR}/${FNAME}) - endforeach() - - foreach(PKG_FILE in ${${PKG}_HEADERS}) - get_filename_component(FNAME ${PKG_FILE} NAME) - DetectAndRemovePackageHeader(${LAMMPS_SOURCE_DIR}/${FNAME}) - endforeach() + # check for package files in src directory due to old make system + DetectBuildSystemConflict(${LAMMPS_SOURCE_DIR} ${${PKG}_SOURCES} ${${PKG}_HEADERS}) - if(ENABLE_${PKG}) + if(PKG_${PKG}) # detects styles in package and adds them to global list RegisterStyles(${${PKG}_SOURCES_DIR}) @@ -377,12 +519,23 @@ foreach(PKG ${DEFAULT_PACKAGES} ${OTHER_PACKAGES}) endif() endforeach() +# dedicated check for entire contents of accelerator packages +foreach(PKG ${ACCEL_PACKAGES}) + set(${PKG}_SOURCES_DIR ${LAMMPS_SOURCE_DIR}/${PKG}) + + file(GLOB ${PKG}_SOURCES ${${PKG}_SOURCES_DIR}/*.cpp) + file(GLOB ${PKG}_HEADERS ${${PKG}_SOURCES_DIR}/*.h) + + # check for package files in src directory due to old make system + DetectBuildSystemConflict(${LAMMPS_SOURCE_DIR} ${${PKG}_SOURCES} ${${PKG}_HEADERS}) +endforeach() + ############################################## # add lib sources of (simple) enabled packages ############################################ foreach(SIMPLE_LIB REAX MEAM POEMS USER-ATC USER-AWPMD USER-COLVARS USER-H5MD USER-QMMM) - if(ENABLE_${SIMPLE_LIB}) + if(PKG_${SIMPLE_LIB}) string(REGEX REPLACE "^USER-" "" PKG_LIB "${SIMPLE_LIB}") string(TOLOWER "${PKG_LIB}" PKG_LIB) file(GLOB_RECURSE ${PKG_LIB}_SOURCES ${LAMMPS_LIB_SOURCE_DIR}/${PKG_LIB}/*.F @@ -403,40 +556,61 @@ foreach(SIMPLE_LIB REAX MEAM POEMS USER-ATC USER-AWPMD USER-COLVARS USER-H5MD endif() endforeach() -if(ENABLE_USER-AWPMD) +if(PKG_USER-AWPMD) target_link_libraries(awpmd ${LAPACK_LIBRARIES}) endif() -if(ENABLE_USER-ATC) +if(PKG_USER-ATC) target_link_libraries(atc ${LAPACK_LIBRARIES}) endif() -if(ENABLE_USER-H5MD) +if(PKG_USER-H5MD) find_package(HDF5 REQUIRED) target_link_libraries(h5md ${HDF5_LIBRARIES}) target_include_directories(h5md PRIVATE ${HDF5_INCLUDE_DIRS}) endif() -if(ENABLE_MEAM AND FC_HAS_NO_SECOND_UNDERSCORE) - foreach(FSRC ${meam_SOURCES}) - string(REGEX REPLACE "^.*\\." "" FEXT "${FSRC}") - list(FIND CMAKE_Fortran_SOURCE_FILE_EXTENSIONS "${FEXT}" FINDEX) - if(FINDEX GREATER -1) - set_property(SOURCE ${FSRC} APPEND PROPERTY COMPILE_FLAGS "-fno-second-underscore") - endif() - endforeach() -endif() - -if(ENABLE_REAX AND FC_HAS_NO_SECOND_UNDERSCORE) - target_compile_options(reax PRIVATE -fno-second-underscore) -endif() - ###################################################################### # packages which selectively include variants based on enabled styles # e.g. accelerator packages ###################################################################### -if(ENABLE_USER-OMP) +if(PKG_CORESHELL) + set(CORESHELL_SOURCES_DIR ${LAMMPS_SOURCE_DIR}/CORESHELL) + set(CORESHELL_SOURCES) + set_property(GLOBAL PROPERTY "CORESHELL_SOURCES" "${CORESHELL_SOURCES}") + + # detects styles which have a CORESHELL version + RegisterStylesExt(${CORESHELL_SOURCES_DIR} cs CORESHELL_SOURCES) + + get_property(CORESHELL_SOURCES GLOBAL PROPERTY CORESHELL_SOURCES) + + list(APPEND LIB_SOURCES ${CORESHELL_SOURCES}) + include_directories(${CORESHELL_SOURCES_DIR}) +endif() + +# Fix qeq/fire requires MANYBODY (i.e. COMB and COMB3) to be installed +if(PKG_QEQ) + set(QEQ_SOURCES_DIR ${LAMMPS_SOURCE_DIR}/QEQ) + file(GLOB QEQ_HEADERS ${QEQ_SOURCES_DIR}/fix*.h) + file(GLOB QEQ_SOURCES ${QEQ_SOURCES_DIR}/fix*.cpp) + + if(NOT PKG_MANYBODY) + list(REMOVE_ITEM QEQ_HEADERS ${QEQ_SOURCES_DIR}/fix_qeq_fire.h) + list(REMOVE_ITEM QEQ_SOURCES ${QEQ_SOURCES_DIR}/fix_qeq_fire.cpp) + endif() + set_property(GLOBAL PROPERTY "QEQ_SOURCES" "${QEQ_SOURCES}") + + foreach(MY_HEADER ${QEQ_HEADERS}) + AddStyleHeader(${MY_HEADER} FIX) + endforeach() + + get_property(QEQ_SOURCES GLOBAL PROPERTY QEQ_SOURCES) + list(APPEND LIB_SOURCES ${QEQ_SOURCES}) + include_directories(${QEQ_SOURCES_DIR}) +endif() + +if(PKG_USER-OMP) set(USER-OMP_SOURCES_DIR ${LAMMPS_SOURCE_DIR}/USER-OMP) set(USER-OMP_SOURCES ${USER-OMP_SOURCES_DIR}/thr_data.cpp ${USER-OMP_SOURCES_DIR}/thr_omp.cpp @@ -447,13 +621,32 @@ if(ENABLE_USER-OMP) # detects styles which have USER-OMP version RegisterStylesExt(${USER-OMP_SOURCES_DIR} omp OMP_SOURCES) + get_property(USER-OMP_SOURCES GLOBAL PROPERTY OMP_SOURCES) + # manually add package dependent source files from USER-OMP that do not provide styles + + if(PKG_RIGID) + list(APPEND USER-OMP_SOURCES ${USER-OMP_SOURCES_DIR}/fix_rigid_nh_omp.cpp) + endif() + + if(PKG_USER-REAXC) + list(APPEND USER-OMP_SOURCES ${USER-OMP_SOURCES_DIR}/reaxc_bond_orders_omp.cpp + ${USER-OMP_SOURCES_DIR}/reaxc_hydrogen_bonds_omp.cpp + ${USER-OMP_SOURCES_DIR}/reaxc_nonbonded_omp.cpp + ${USER-OMP_SOURCES_DIR}/reaxc_bonds_omp.cpp + ${USER-OMP_SOURCES_DIR}/reaxc_init_md_omp.cpp + ${USER-OMP_SOURCES_DIR}/reaxc_torsion_angles_omp.cpp + ${USER-OMP_SOURCES_DIR}/reaxc_forces_omp.cpp + ${USER-OMP_SOURCES_DIR}/reaxc_multi_body_omp.cpp + ${USER-OMP_SOURCES_DIR}/reaxc_valence_angles_omp.cpp) + endif() + list(APPEND LIB_SOURCES ${USER-OMP_SOURCES}) include_directories(${USER-OMP_SOURCES_DIR}) endif() -if(ENABLE_KOKKOS) +if(PKG_KOKKOS) set(LAMMPS_LIB_KOKKOS_SRC_DIR ${LAMMPS_LIB_SOURCE_DIR}/kokkos) set(LAMMPS_LIB_KOKKOS_BIN_DIR ${LAMMPS_LIB_BINARY_DIR}/kokkos) add_definitions(-DLMP_KOKKOS) @@ -489,7 +682,7 @@ if(ENABLE_KOKKOS) RegisterNBinStyle(${KOKKOS_PKG_SOURCES_DIR}/nbin_kokkos.h) RegisterNPairStyle(${KOKKOS_PKG_SOURCES_DIR}/npair_kokkos.h) - if(ENABLE_USER-DPD) + if(PKG_USER-DPD) get_property(KOKKOS_PKG_SOURCES GLOBAL PROPERTY KOKKOS_PKG_SOURCES) list(APPEND KOKKOS_PKG_SOURCES ${KOKKOS_PKG_SOURCES_DIR}/npair_ssa_kokkos.cpp) RegisterNPairStyle(${KOKKOS_PKG_SOURCES_DIR}/npair_ssa_kokkos.h) @@ -502,7 +695,7 @@ if(ENABLE_KOKKOS) include_directories(${KOKKOS_PKG_SOURCES_DIR}) endif() -if(ENABLE_OPT) +if(PKG_OPT) set(OPT_SOURCES_DIR ${LAMMPS_SOURCE_DIR}/OPT) set(OPT_SOURCES) set_property(GLOBAL PROPERTY "OPT_SOURCES" "${OPT_SOURCES}") @@ -516,7 +709,34 @@ if(ENABLE_OPT) include_directories(${OPT_SOURCES_DIR}) endif() -if(ENABLE_USER-INTEL) +if(PKG_USER-INTEL) + if(NOT DEVELOPER_MODE) + if(NOT CMAKE_CXX_COMPILER_ID STREQUAL "Intel") + message(FATAL_ERROR "USER-INTEL is only useful together with intel compiler") + endif() + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 16) + message(FATAL_ERROR "USER-INTEL is needed at least 2016 intel compiler, found ${CMAKE_CXX_COMPILER_VERSION}") + endif() + endif() + option(INJECT_KNL_FLAG "Inject flags for KNL build" OFF) + if(INJECT_KNL_FLAG) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -xMIC-AVX512") + endif() + option(INJECT_INTEL_FLAG "Inject OMG fast flags for USER-INTEL" ON) + if(INJECT_INTEL_FLAG AND CMAKE_CXX_COMPILER_ID STREQUAL "Intel") + if(CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL 17.3 OR CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL 17.4) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -xCOMMON-AVX512") + else() + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -xHost") + endif() + include(CheckCXXCompilerFlag) + foreach(_FLAG -qopenmp -qno-offload -fno-alias -ansi-alias -restrict -DLMP_INTEL_USELRT -DLMP_USE_MKL_RNG -O2 "-fp-model fast=2" -no-prec-div -qoverride-limits -qopt-zmm-usage=high) + check_cxx_compiler_flag("${__FLAG}" COMPILER_SUPPORTS${_FLAG}) + if(COMPILER_SUPPORTS${_FLAG}) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${_FLAG}") + endif() + endforeach() + endif() set(USER-INTEL_SOURCES_DIR ${LAMMPS_SOURCE_DIR}/USER-INTEL) set(USER-INTEL_SOURCES ${USER-INTEL_SOURCES_DIR}/intel_preprocess.h ${USER-INTEL_SOURCES_DIR}/intel_buffers.h @@ -540,7 +760,10 @@ if(ENABLE_USER-INTEL) include_directories(${USER-INTEL_SOURCES_DIR}) endif() -if(ENABLE_GPU) +if(PKG_GPU) + if (CMAKE_VERSION VERSION_LESS "3.1") + message(FATAL_ERROR "For the GPU package you need at least cmake-3.1") + endif() set(GPU_SOURCES_DIR ${LAMMPS_SOURCE_DIR}/GPU) set(GPU_SOURCES ${GPU_SOURCES_DIR}/gpu_extra.h ${GPU_SOURCES_DIR}/fix_gpu.h @@ -563,8 +786,7 @@ if(ENABLE_GPU) endif() option(CUDPP_OPT "Enable CUDPP_OPT" ON) - set(GPU_ARCH "sm_30" CACHE STRING "LAMMPS GPU CUDA SM architecture") - set_property(CACHE GPU_ARCH PROPERTY STRINGS sm_10 sm_20 sm_30 sm_60) + set(GPU_ARCH "sm_30" CACHE STRING "LAMMPS GPU CUDA SM architecture (e.g. sm_60)") file(GLOB GPU_LIB_CU ${LAMMPS_LIB_SOURCE_DIR}/gpu/*.cu ${CMAKE_CURRENT_SOURCE_DIR}/gpu/*.cu) list(REMOVE_ITEM GPU_LIB_CU ${LAMMPS_LIB_SOURCE_DIR}/gpu/lal_pppm.cu) @@ -637,7 +859,7 @@ if(ENABLE_GPU) add_library(gpu STATIC ${GPU_LIB_SOURCES}) target_link_libraries(gpu ${OpenCL_LIBRARIES}) target_include_directories(gpu PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/gpu ${OpenCL_INCLUDE_DIRS}) - target_compile_definitions(gpu PRIVATE -D_${GPU_PREC} -DMPI_GERYON -DUCL_NO_EXIT) + target_compile_definitions(gpu PRIVATE -D_${GPU_PREC} -D${OCL_TUNE}_OCL -DMPI_GERYON -DUCL_NO_EXIT) target_compile_definitions(gpu PRIVATE -DUSE_OPENCL) list(APPEND LAMMPS_LINK_LIBS gpu) @@ -673,60 +895,231 @@ GenerateStyleHeaders(${LAMMPS_STYLE_HEADERS_DIR}) include_directories(${LAMMPS_SOURCE_DIR}) include_directories(${LAMMPS_STYLE_HEADERS_DIR}) +###################################### +# Generate lmpinstalledpkgs.h +###################################### +set(temp "#ifndef LMP_INSTALLED_PKGS_H\n#define LMP_INSTALLED_PKGS_H\n") +set(temp "${temp}const char * LAMMPS_NS::LAMMPS::installed_packages[] = {\n") +foreach(PKG ${DEFAULT_PACKAGES} ${ACCEL_PACKAGES} ${OTHER_PACKAGES}) + if(PKG_${PKG}) + set(temp "${temp} \"${PKG}\",\n") + endif() +endforeach() +set(temp "${temp} NULL\n};\n#endif\n\n") +message(STATUS "Generating lmpinstalledpkgs.h...") +file(WRITE "${LAMMPS_STYLE_HEADERS_DIR}/lmpinstalledpkgs.h.tmp" "${temp}" ) +execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different "${LAMMPS_STYLE_HEADERS_DIR}/lmpinstalledpkgs.h.tmp" "${LAMMPS_STYLE_HEADERS_DIR}/lmpinstalledpkgs.h") + ########################################### # Actually add executable and lib to build ############################################ -add_library(lammps ${LIB_SOURCES}) -target_link_libraries(lammps ${LAMMPS_LINK_LIBS}) -if(LAMMPS_DEPS) - add_dependencies(lammps ${LAMMPS_DEPS}) +get_property(LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) +list (FIND LANGUAGES "Fortran" _index) +if (${_index} GREATER -1) + list(APPEND LAMMPS_LINK_LIBS ${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}) endif() -set_target_properties(lammps PROPERTIES OUTPUT_NAME lammps${LAMMPS_MACHINE}) -if(BUILD_SHARED_LIBS) - set_target_properties(lammps PROPERTIES SOVERSION ${SOVERSION}) - install(TARGETS lammps LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) - install(FILES ${LAMMPS_SOURCE_DIR}/library.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/lammps) - configure_file(pkgconfig/liblammps.pc.in ${CMAKE_CURRENT_BINARY_DIR}/liblammps${LAMMPS_MACHINE}.pc @ONLY) - install(FILES ${CMAKE_CURRENT_BINARY_DIR}/liblammps${LAMMPS_MACHINE}.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) +list(REMOVE_DUPLICATES LAMMPS_LINK_LIBS) +if(BUILD_LIB) + add_library(lammps ${LIB_SOURCES}) + target_link_libraries(lammps ${LAMMPS_LINK_LIBS}) + if(LAMMPS_DEPS) + add_dependencies(lammps ${LAMMPS_DEPS}) + endif() + set_target_properties(lammps PROPERTIES OUTPUT_NAME lammps${LIB_SUFFIX}) + if(BUILD_SHARED_LIBS) + set_target_properties(lammps PROPERTIES SOVERSION ${SOVERSION}) + install(TARGETS lammps LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}) + install(FILES ${LAMMPS_SOURCE_DIR}/library.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/lammps) + configure_file(pkgconfig/liblammps.pc.in ${CMAKE_CURRENT_BINARY_DIR}/liblammps${LIB_SUFFIX}.pc @ONLY) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/liblammps${LIB_SUFFIX}.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) + endif() +else() + list(APPEND LMP_SOURCES ${LIB_SOURCES}) endif() -add_executable(lmp ${LMP_SOURCES}) -target_link_libraries(lmp lammps) -set_target_properties(lmp PROPERTIES OUTPUT_NAME lmp${LAMMPS_MACHINE}) -install(TARGETS lmp DESTINATION ${CMAKE_INSTALL_BINDIR}) -if(ENABLE_TESTING) - add_test(ShowHelp lmp${LAMMPS_MACHINE} -help) +if(BUILD_EXE) + add_executable(lmp ${LMP_SOURCES}) + if(BUILD_LIB) + target_link_libraries(lmp lammps) + else() + target_link_libraries(lmp ${LAMMPS_LINK_LIBS}) + if(LAMMPS_DEPS) + add_dependencies(lmp ${LAMMPS_DEPS}) + endif() + endif() + + set_target_properties(lmp PROPERTIES OUTPUT_NAME lmp${LAMMPS_MACHINE}) + install(TARGETS lmp DESTINATION ${CMAKE_INSTALL_BINDIR}) + if(ENABLE_TESTING) + add_test(ShowHelp lmp${LAMMPS_MACHINE} -help) + endif() +endif() + +############################################################################### +# Build documentation +############################################################################### +option(BUILD_DOC "Build LAMMPS documentation" OFF) +if(BUILD_DOC) + include(ProcessorCount) + ProcessorCount(NPROCS) + find_package(PythonInterp 3 REQUIRED) + + set(VIRTUALENV ${PYTHON_EXECUTABLE} -m virtualenv) + + file(GLOB DOC_SOURCES ${LAMMPS_DOC_DIR}/src/*.txt) + file(GLOB PDF_EXTRA_SOURCES ${LAMMPS_DOC_DIR}/src/lammps_commands*.txt ${LAMMPS_DOC_DIR}/src/lammps_support.txt ${LAMMPS_DOC_DIR}/src/lammps_tutorials.txt) + list(REMOVE_ITEM DOC_SOURCES ${PDF_EXTRA_SOURCES}) + + add_custom_command( + OUTPUT docenv + COMMAND ${VIRTUALENV} docenv + ) + + set(DOCENV_BINARY_DIR ${CMAKE_BINARY_DIR}/docenv/bin) + + add_custom_command( + OUTPUT requirements.txt + DEPENDS docenv + COMMAND ${CMAKE_COMMAND} -E copy ${LAMMPS_DOC_DIR}/utils/requirements.txt requirements.txt + COMMAND ${DOCENV_BINARY_DIR}/pip install -r requirements.txt --upgrade + COMMAND ${DOCENV_BINARY_DIR}/pip install --upgrade ${LAMMPS_DOC_DIR}/utils/converters + ) + + set(RST_FILES "") + set(RST_DIR ${CMAKE_BINARY_DIR}/rst) + file(MAKE_DIRECTORY ${RST_DIR}) + foreach(TXT_FILE ${DOC_SOURCES}) + get_filename_component(FILENAME ${TXT_FILE} NAME_WE) + set(RST_FILE ${RST_DIR}/${FILENAME}.rst) + list(APPEND RST_FILES ${RST_FILE}) + add_custom_command( + OUTPUT ${RST_FILE} + DEPENDS requirements.txt docenv ${TXT_FILE} + COMMAND ${DOCENV_BINARY_DIR}/txt2rst -o ${RST_DIR} ${TXT_FILE} + ) + endforeach() + + add_custom_command( + OUTPUT html + DEPENDS ${RST_FILES} + COMMAND ${CMAKE_COMMAND} -E copy_directory ${LAMMPS_DOC_DIR}/src ${RST_DIR} + COMMAND ${DOCENV_BINARY_DIR}/sphinx-build -j ${NPROCS} -b html -c ${LAMMPS_DOC_DIR}/utils/sphinx-config -d ${CMAKE_BINARY_DIR}/doctrees ${RST_DIR} html + ) + + add_custom_target( + doc ALL + DEPENDS html + SOURCES ${LAMMPS_DOC_DIR}/utils/requirements.txt ${DOC_SOURCES} + ) + + install(DIRECTORY ${CMAKE_BINARY_DIR}/html DESTINATION ${CMAKE_INSTALL_DOCDIR}) +endif() + +############################################################################### +# Install potential files in data directory +############################################################################### +set(LAMMPS_POTENTIALS_DIR ${CMAKE_INSTALL_FULL_DATADIR}/lammps/potentials) +install(DIRECTORY ${LAMMPS_SOURCE_DIR}/../potentials DESTINATION ${CMAKE_INSTALL_DATADIR}/lammps/potentials) + +configure_file(etc/profile.d/lammps.sh.in ${CMAKE_BINARY_DIR}/etc/profile.d/lammps.sh @ONLY) +configure_file(etc/profile.d/lammps.csh.in ${CMAKE_BINARY_DIR}/etc/profile.d/lammps.csh @ONLY) +install( + FILES ${CMAKE_BINARY_DIR}/etc/profile.d/lammps.sh + ${CMAKE_BINARY_DIR}/etc/profile.d/lammps.csh + DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/profile.d +) + +############################################################################### +# Testing +# +# Requires latest gcovr (for GCC 8.1 support):# +# pip install git+https://github.com/gcovr/gcovr.git +############################################################################### +if(ENABLE_COVERAGE) + find_program(GCOVR_BINARY gcovr) + find_package_handle_standard_args(GCOVR DEFAULT_MSG GCOVR_BINARY) + + if(GCOVR_FOUND) + get_filename_component(ABSOLUTE_LAMMPS_SOURCE_DIR ${LAMMPS_SOURCE_DIR} ABSOLUTE) + + add_custom_target( + gen_coverage_xml + COMMAND ${GCOVR_BINARY} -s -x -r ${ABSOLUTE_LAMMPS_SOURCE_DIR} --object-directory=${CMAKE_BINARY_DIR} -o coverage.xml + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + COMMENT "Generating XML Coverage Report..." + ) + + add_custom_target( + gen_coverage_html + COMMAND ${GCOVR_BINARY} -s --html --html-details -r ${ABSOLUTE_LAMMPS_SOURCE_DIR} --object-directory=${CMAKE_BINARY_DIR} -o coverage.html + WORKING_DIRECTORY ${CMAKE_BINARY_DIR} + COMMENT "Generating HTML Coverage Report..." + ) + endif() endif() -################################## +############################################################################### # Print package summary -################################## -foreach(PKG ${DEFAULT_PACKAGES} ${OTHER_PACKAGES} ${ACCEL_PACKAGES}) - if(ENABLE_${PKG}) +############################################################################### +foreach(PKG ${DEFAULT_PACKAGES} ${ACCEL_PACKAGES}) + if(PKG_${PKG}) message(STATUS "Building package: ${PKG}") endif() endforeach() string(TOUPPER "${CMAKE_BUILD_TYPE}" BTYPE) +get_directory_property(CPPFLAGS DIRECTORY ${CMAKE_SOURCE_DIR} COMPILE_DEFINITIONS) +include(FeatureSummary) +feature_summary(DESCRIPTION "The following packages have been found:" WHAT PACKAGES_FOUND) message(STATUS "<<< Build configuration >>> Build type ${CMAKE_BUILD_TYPE} Install path ${CMAKE_INSTALL_PREFIX} Compilers and Flags: C++ Compiler ${CMAKE_CXX_COMPILER} Type ${CMAKE_CXX_COMPILER_ID} - C++ Flags ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_${BTYPE}}") + Version ${CMAKE_CXX_COMPILER_VERSION} + C++ Flags ${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_${BTYPE}} + Defines ${CPPFLAGS}") get_property(LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) -if(LANGUAGES MATCHES ".*Fortran.*") +list (FIND LANGUAGES "Fortran" _index) +if (${_index} GREATER -1) message(STATUS "Fortran Compiler ${CMAKE_Fortran_COMPILER} Type ${CMAKE_Fortran_COMPILER_ID} + Version ${CMAKE_Fortran_COMPILER_VERSION} Fortran Flags ${CMAKE_Fortran_FLAGS} ${CMAKE_Fortran_FLAGS_${BTYPE}}") endif() -message(STATUS "Linker flags: +list (FIND LANGUAGES "C" _index) +if (${_index} GREATER -1) + message(STATUS "C Compiler ${CMAKE_C_COMPILER} + Type ${CMAKE_C_COMPILER_ID} + Version ${CMAKE_C_COMPILER_VERSION} + C Flags ${CMAKE_C_FLAGS} ${CMAKE_C_FLAGS_${BTYPE}}") +endif() +if(CMAKE_EXE_LINKER_FLAGS) + message(STATUS "Linker flags: Executable ${CMAKE_EXE_LINKER_FLAGS}") + endif() if(BUILD_SHARED_LIBS) - message(STATUS "Shared libries ${CMAKE_SHARED_LINKER_FLAGS}") + message(STATUS "Shared libraries ${CMAKE_SHARED_LINKER_FLAGS}") else() - message(STATUS "Static libries ${CMAKE_STATIC_LINKER_FLAGS}") + message(STATUS "Static libraries ${CMAKE_STATIC_LINKER_FLAGS}") endif() message(STATUS "Link libraries: ${LAMMPS_LINK_LIBS}") - +if(BUILD_MPI) + message(STATUS "Using mpi with headers in ${MPI_CXX_INCLUDE_PATH} and ${MPI_CXX_LIBRARIES}") +endif() +if(PKG_GPU) + message(STATUS "GPU Api: ${GPU_API}") + if(GPU_API STREQUAL "CUDA") + message(STATUS "GPU Arch: ${GPU_ARCH}") + elseif(GPU_API STREQUAL "OpenCL") + message(STATUS "OCL Tune: ${OCL_TUNE}") + endif() + message(STATUS "GPU Precision: ${GPU_PREC}") +endif() +if(PKG_KOKKOS) + message(STATUS "Kokkos Arch: ${KOKKOS_ARCH}") +endif() +if(PKG_KSPACE) + message(STATUS "Using ${FFT} as FFT") +endif() diff --git a/cmake/Modules/FindFFTW2.cmake b/cmake/Modules/FindFFTW2.cmake deleted file mode 100644 index c77e6cf8e9d126d5ebb4223e6e7cf53ef25b60b2..0000000000000000000000000000000000000000 --- a/cmake/Modules/FindFFTW2.cmake +++ /dev/null @@ -1,22 +0,0 @@ -# - Find fftw2 -# Find the native FFTW2 headers and libraries. -# -# FFTW2_INCLUDE_DIRS - where to find fftw2.h, etc. -# FFTW2_LIBRARIES - List of libraries when using fftw2. -# FFTW2_FOUND - True if fftw2 found. -# - -find_path(FFTW2_INCLUDE_DIR fftw.h) - -find_library(FFTW2_LIBRARY NAMES fftw) - -set(FFTW2_LIBRARIES ${FFTW2_LIBRARY}) -set(FFTW2_INCLUDE_DIRS ${FFTW2_INCLUDE_DIR}) - -include(FindPackageHandleStandardArgs) -# handle the QUIETLY and REQUIRED arguments and set FFTW2_FOUND to TRUE -# if all listed variables are TRUE - -find_package_handle_standard_args(FFTW2 DEFAULT_MSG FFTW2_LIBRARY FFTW2_INCLUDE_DIR) - -mark_as_advanced(FFTW2_INCLUDE_DIR FFTW2_LIBRARY ) diff --git a/cmake/Modules/FindFFTW3F.cmake b/cmake/Modules/FindFFTW3F.cmake new file mode 100644 index 0000000000000000000000000000000000000000..92d1e85e791ec362a15909bd09dccdc046efc2a5 --- /dev/null +++ b/cmake/Modules/FindFFTW3F.cmake @@ -0,0 +1,25 @@ +# - Find fftw3f +# Find the native FFTW3F headers and libraries. +# +# FFTW3F_INCLUDE_DIRS - where to find fftw3f.h, etc. +# FFTW3F_LIBRARIES - List of libraries when using fftw3f. +# FFTW3F_FOUND - True if fftw3f found. +# + +find_package(PkgConfig) + +pkg_check_modules(PC_FFTW3F fftw3f) +find_path(FFTW3F_INCLUDE_DIR fftw3.h HINTS ${PC_FFTW3F_INCLUDE_DIRS}) + +find_library(FFTW3F_LIBRARY NAMES fftw3f HINTS ${PC_FFTW3F_LIBRARY_DIRS}) + +set(FFTW3F_LIBRARIES ${FFTW3F_LIBRARY}) +set(FFTW3F_INCLUDE_DIRS ${FFTW3F_INCLUDE_DIR}) + +include(FindPackageHandleStandardArgs) +# handle the QUIETLY and REQUIRED arguments and set FFTW3F_FOUND to TRUE +# if all listed variables are TRUE + +find_package_handle_standard_args(FFTW3F DEFAULT_MSG FFTW3F_LIBRARY FFTW3F_INCLUDE_DIR) + +mark_as_advanced(FFTW3F_INCLUDE_DIR FFTW3F_LIBRARY ) diff --git a/cmake/Modules/FindMSCG.cmake b/cmake/Modules/FindMSCG.cmake new file mode 100644 index 0000000000000000000000000000000000000000..311ff7803836aa43c2c48bd4040a60686b1803db --- /dev/null +++ b/cmake/Modules/FindMSCG.cmake @@ -0,0 +1,22 @@ +# - Find mscg +# Find the native MSCG headers and libraries. +# +# MSCG_INCLUDE_DIRS - where to find mscg.h, etc. +# MSCG_LIBRARIES - List of libraries when using mscg. +# MSCG_FOUND - True if mscg found. +# + +find_path(MSCG_INCLUDE_DIR mscg.h PATH_SUFFIXES mscg) + +find_library(MSCG_LIBRARY NAMES mscg) + +set(MSCG_LIBRARIES ${MSCG_LIBRARY}) +set(MSCG_INCLUDE_DIRS ${MSCG_INCLUDE_DIR}) + +include(FindPackageHandleStandardArgs) +# handle the QUIETLY and REQUIRED arguments and set MSCG_FOUND to TRUE +# if all listed variables are TRUE + +find_package_handle_standard_args(MSCG DEFAULT_MSG MSCG_LIBRARY MSCG_INCLUDE_DIR) + +mark_as_advanced(MSCG_INCLUDE_DIR MSCG_LIBRARY ) diff --git a/cmake/Modules/StyleHeaderUtils.cmake b/cmake/Modules/StyleHeaderUtils.cmake index c6f580f4632d92fabc4fe6d2b95464b18a5c9487..29ea3725972ce2e1166ef70297c3d6067e90c769 100644 --- a/cmake/Modules/StyleHeaderUtils.cmake +++ b/cmake/Modules/StyleHeaderUtils.cmake @@ -45,14 +45,10 @@ function(FindStyleHeadersExt path style_class extension headers sources) endfunction(FindStyleHeadersExt) function(CreateStyleHeader path filename) - math(EXPR N "${ARGC}-2") - set(temp "") - if(N GREATER 0) - math(EXPR ARG_END "${ARGC}-1") - - foreach(IDX RANGE 2 ${ARG_END}) - list(GET ARGV ${IDX} FNAME) + if(ARGC GREATER 2) + list(REMOVE_AT ARGV 0 1) + foreach(FNAME ${ARGV}) get_filename_component(FNAME ${FNAME} NAME) set(temp "${temp}#include \"${FNAME}\"\n") endforeach() @@ -107,35 +103,6 @@ function(RegisterStyles search_path) FindStyleHeaders(${search_path} REGION_CLASS region_ REGION ) # region ) # domain endfunction(RegisterStyles) -function(RemovePackageHeader headers pkg_header) - get_property(hlist GLOBAL PROPERTY ${headers}) - list(REMOVE_ITEM hlist ${pkg_header}) - set_property(GLOBAL PROPERTY ${headers} "${hlist}") -endfunction(RemovePackageHeader) - -function(DetectAndRemovePackageHeader fname) - RemovePackageHeader(ANGLE ${fname}) - RemovePackageHeader(ATOM_VEC ${fname}) - RemovePackageHeader(BODY ${fname}) - RemovePackageHeader(BOND ${fname}) - RemovePackageHeader(COMMAND ${fname}) - RemovePackageHeader(COMPUTE ${fname}) - RemovePackageHeader(DIHEDRAL ${fname}) - RemovePackageHeader(DUMP ${fname}) - RemovePackageHeader(FIX ${fname}) - RemovePackageHeader(IMPROPER ${fname}) - RemovePackageHeader(INTEGRATE ${fname}) - RemovePackageHeader(KSPACE ${fname}) - RemovePackageHeader(MINIMIZE ${fname}) - RemovePackageHeader(NBIN ${fname}) - RemovePackageHeader(NPAIR ${fname}) - RemovePackageHeader(NSTENCIL ${fname}) - RemovePackageHeader(NTOPO ${fname}) - RemovePackageHeader(PAIR ${fname}) - RemovePackageHeader(READER ${fname}) - RemovePackageHeader(REGION ${fname}) -endfunction(DetectAndRemovePackageHeader) - function(RegisterStylesExt search_path extension sources) FindStyleHeadersExt(${search_path} ANGLE_CLASS ${extension} ANGLE ${sources}) FindStyleHeadersExt(${search_path} ATOM_CLASS ${extension} ATOM_VEC ${sources}) @@ -181,3 +148,21 @@ function(GenerateStyleHeaders output_path) GenerateStyleHeader(${output_path} READER reader ) # read_dump GenerateStyleHeader(${output_path} REGION region ) # domain endfunction(GenerateStyleHeaders) + +function(DetectBuildSystemConflict lammps_src_dir) + if(ARGC GREATER 1) + list(REMOVE_AT ARGV 0) + foreach(SRC_FILE ${ARGV}) + get_filename_component(FILENAME ${SRC_FILE} NAME) + if(EXISTS ${lammps_src_dir}/${FILENAME}) + message(FATAL_ERROR "\n########################################################################\n" + "Found package(s) installed by the make-based build system\n" + "\n" + "Please run\n" + "make -C ${lammps_src_dir} no-all purge\n" + "to uninstall\n" + "########################################################################") + endif() + endforeach() + endif() +endfunction(DetectBuildSystemConflict) diff --git a/cmake/README.md b/cmake/README.md index cc67cceb52ec7b40327af88b52709eda7a6c1416..b6644ffda959c45faec16e89e0a6a3275725c796 100644 --- a/cmake/README.md +++ b/cmake/README.md @@ -1,19 +1,1663 @@ -cmake-buildsystem ------------------ +# Building LAMMPS using CMake -To use the cmake build system instead of the make-driven one, do: +LAMMPS recently acquired support for building with CMake thanks to the efforts +of Christoph Junghans (LANL) and Richard Berger (Temple U). One of the key +strengths of CMake is that it can generate the necessary build system files of +your own personal preference. It also enables using common development IDEs such +as Eclipse, Visual Studio, QtCreator, Xcode and many more for LAMMPS +development. + +CMake can both be used as a command-line (CLI) utility `cmake` or through one of +its GUIs. `ccmake` is a text-based ui to configure and build CMake projects. +`cmake-gui` is a graphical frontend for running CMake operations that works on +Linux desktop environments, Windows and MacOS X. + +The following is a tutorial-style introduction in using the CMake system. It +should give you the necessary foundation to understand how to do the most common +tasks, act as a reference and provide examples of typical use cases. + +## Table of Contents + + * [Quick Start for the Impatient](#quick-start-for-the-impatient) + * [Building LAMMPS using cmake](#building-lammps-using-cmake-1) + * [Prerequisites](#prerequisites) + * [Build directory vs. Source Directory](#build-directory-vs-source-directory) + * [Defining and using presets](#defining-and-using-presets) + * [Reference](#reference) + * [Common CMAKE Configuration Options](#common-cmake-configuration-options) + * [LAMMPS Configuration Options](#lammps-configuration-options) + * [Parallelization and Accelerator Packages](#parallelization-and-accelerator-packages) + * [Default Packages](#default-packages) + * [Other Packages](#other-packages) + * [User Packages](#user-packages) + * [Package-Specific Configuration Options](#package-specific-configuration-options) + * [KSPACE Package](#kspace-package) + * [MKL](#mkl) + * [FFTW2](#fftw2) + * [FFTW3](#fftw3) + * [LAPACK](#lapack) + * [PYTHON Package](#python-package) + * [GPU Package](#gpu-package) + * [VORONOI Package](#voronoi-package) + * [USER-SMD Package](#user-smd-package) + * [Optional Features](#optional-features) + * [zlib support](#zlib-support) + * [JPEG support](#jpeg-support) + * [PNG support](#png-support) + * [GZIP support](#gzip-support) + * [FFMPEG support](#ffmpeg-support) + * [Compilers](#compilers) + * [Building with GNU Compilers](#building-with-gnu-compilers) + * [Building with Intel Compilers](#building-with-intel-compilers) + * [Building with LLVM/Clang Compilers](#building-with-llvmclang-compilers) + * [Examples](#examples) + + +## Quick Start for the Impatient +If you want to skip ahead and just run the compilation using `cmake`, please +find a minimal example below. Together with the options reference below, this +should get you started. + +```bash +git clone https://github.com/lammps/lammps.git +mkdir lammps/build +cd lammps/build +cmake ../cmake [-DOPTION_A=VALUE_A -DOPTION_B=VALUE_B ...] +make +``` + +# Building LAMMPS using `cmake` + +## Prerequisites +This tutorial assumes you are running in a command-line environment using a +shell like Bash. + +* Linux: any terminal window will work +* MacOS X: launch the Terminal app +* Windows 10: install and run "Bash on Windows" (aka Ubuntu on Windows) + +Before we start, please download the latest and greatest version of LAMMPS from +GitHub. You can either download it as a tarball or ZIP file, or via git. When +you start with a fresh lammps directory, the contents should look like this: + +```bash +$ ls +bench doc lib potentials README tools +cmake examples LICENSE python src +``` + +## Build directory vs. Source Directory + +By using CMake we separate building LAMMPS into multiple phases: + +1. **Configuration**: define which features we want to enable/disable and how it should be compiled +2. **Compilation**: compile each source file and generate binaries and libraries based on the configuration +3. **Installation** (Optional): finally we can install the generated binaries on our system + +In the GNU Make based build system of LAMMPS, configuration occurs by running +special make targets like `make yes-MOLECULAR`. These targets modify the +**source directory** (`src/`) directory by copying package files and patching +Makefile. In some cases you are force to manually edit Makefiles to add compiler +options and/or correct include directory and library paths. + +These edits and copy operations are no longer necessary when compiling with +CMake. The source directory stays untouched, so you compile LAMMPS in many +different variants using the same source code checkout. It enables true +**out-of-source** builds. + +When using Cmake, you can compile in **any** folder outside of the source +directory. Any working directory you choose becomes a so-called **build +directory**. All configuration files and compilation results are stored in this +folder. We recommend calling it something like `build/`. + +Let's have a look a quick example, where we get the greatest and latest version +of LAMMPS from GitHub via git: +```bash +git clone https://github.com/lammps/lammps.git +``` + +We then create a new `build` folder and make it our current working directory: +``` +mkdir lammps/build +cd lammps/build +``` + +To configure LAMMPS we run `cmake` inside of this folder. However it requires at +least one argument. `cmake` needs to read the LAMMPS `CMakeLists.txt` file to +know what to do. This file is located in the `cmake/` subdirectory of the +lammps checkout. To run `cmake` add the relative or absolute path to the `cmake/` +directory as first argument. + +E.g., if the current working directory is `lammps/build` you can specify the +relative path to `lammps/cmake` as follows: ``` -cmake /path/to/lammps/source/cmake +cmake ../cmake ``` -(please note the cmake directory as the very end) -To enable package, e.g. GPU do +You could also specify the absolute path: ``` -cmake /path/to/lammps/source/cmake -DENABLE_GPU=ON +cmake /path/to/my/lammps/folder/cmake ``` -cmake has many many options, do get an overview use the curses-based cmake interface, ccmake: +Please note: **This does NOT compile the code!** Running cmake only configures +the next build. It generates the necessary files to compile the code. On +Unix/Linux it defaults to generating Makefiles. You can also choose other output +formats to generate files for Eclipse, Xcode or Visual Studio which are +supported on other platorms. + +To compile LAMMPS once the Makefiles are generated, simply type `make` in the +build directory. + ``` -ccmake /path/to/lammps/source/cmake +make ``` -(Don't forget to press "g" for generate once you are done with configuring) +# Defining and using presets + +The CMake build exposes a lot of different options. In the old build system +some of the package selections were possible by using special make target like +`make yes-std` or `make no-lib`. Achieving the same result with cmake requires +specifying all options manually. This can quickly become a very long command +line that is hard to handle. While these could be stored in a simple script +file, there is another way of defining "presets" to compile LAMMPS in a certain +way. + +A preset is a regular CMake script file that can use constructs such as +variables, lists and for-loops to manipulate configuration options and create +an [*initial cache*](https://cmake.org/cmake/help/v3.12/manual/cmake.1.html). +Options must be set with the `CACHE` and `FORCE` flag to ensure they are +considered even during a second cmake run. + +Such a file can then be passed to cmake via the `-C` flag. Several examples of +presets can be found in the `cmake/presets` folder. + +```bash +# build LAMMPS with all "standard" packages which don't use libraries and enable GPU package +mkdir build +cd build +cmake -C ../cmake/presets/std_nolib.cmake ../cmake -DPKG_GPU=on +``` + +# Reference + +## Common CMAKE Configuration Options + + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
CMAKE_INSTALL_PREFIXInstall location where LAMMPS files will be copied to. In the Unix/Linux case with Makefiles this controls what `make install` will do. +
CMAKE_BUILD_TYPEControls if debugging symbols are added to the generated binaries +
+
Release (default)
+
Debug
+
+
+ + +## LAMMPS Configuration Options + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
LAMMPS_SIZE_LIMITControls the integer sizes used by LAMMPS internally +
+
LAMMPS_SMALLBIG (default)
+
32bit , 64bit
+
LAMMPS_SMALLSMALL
+
32bit , 32bit
+
LAMMPS_BIGBIG
+
64bit , 64bit
+
+
LAMMPS_MEMALIGNcontrols the alignment of blocks of memory allocated by LAMMPS +
+
64 (default)
+
+
LAMMPS_EXCEPTIONScontrols whether LAMMPS dies after an error or throws a C++ exception. This is particularly useful when running through the C library interface, since an error + in LAMMPS then doesn't kill the parent process +
+
off (default)
+
on
+
+
LAMMPS_MACHINEallows appending a machine suffix to the generate LAMMPS binary +
+
*none* (default)
+
+
BUILD_SHARED_LIBScontrol whether to build LAMMPS as a shared-library +
+
off (default)
+
on
+
+
BUILD_DOCcontrol whether to build LAMMPS documentation +
+
off (default)
+
on
+
+
LAMMPS_LONGLONG_TO_LONGWorkaround if your system or MPI version does not recognize long long data types +
+
off (default)
+
on
+
+
+ +## Parallelization and Accelerator Packages + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
BUILD_MPIcontrol whether to build LAMMPS with MPI support. This will look for + `mpicxx` in your path and use this MPI implementation. +
+
off (default)
+
on
+
+
BUILD_OMPcontrol whether to build LAMMPS with OpenMP support. +
+
off (default)
+
on
+
+
PKG_OPT + A handful of pair styles which are optimized for improved CPU performance on + single or multiple cores. These include EAM, LJ, CHARMM, and Morse potentials. + +
+
off (default)
+
on
+
+
PKG_USER-OMP + Hundreds of pair, fix, compute, bond, angle, dihedral, improper, and kspace + styles which are altered to enable threading on many-core CPUs via OpenMP + directives. + +
+
off (default)
+
on
+
+
PKG_USER-INTEL + Dozens of pair, fix, bond, angle, dihedral, improper, and kspace styles which + are optimized for Intel CPUs and KNLs (Knights Landing). + +
+
off (default)
+
on
+
+
PKG_GPU + Dozens of pair styles and a version of the PPPM long-range Coulombic solver + optimized for GPUs. All such styles have a “gpu†as a suffix in their style + name. The GPU code can be compiled with either CUDA or OpenCL, however the + OpenCL variants are no longer actively maintained and only the CUDA versions + are regularly tested. + +
+
off (default)
+
on
+
+
PKG_KOKKOSDozens of atom, pair, bond, angle, dihedral, improper, fix, compute styles adapted to compile using the Kokkos library which can convert them to OpenMP or CUDA code so that they run efficiently on multicore CPUs, KNLs, or GPUs. +
+
off (default)
+
on
+
+
+ +## Default Packages + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
PKG_ASPHEREComputes, time-integration fixes, and pair styles for aspherical particle models including ellipsoids, 2d lines, and 3d triangles. +
+
off (default)
+
on
+
+
PKG_BODYBody-style particles with internal structure. Computes, time-integration fixes, pair styles, as well as the body styles themselves. +
+
off (default)
+
on
+
+
PKG_CLASS2Bond, angle, dihedral, improper, and pair styles for the COMPASS CLASS2 molecular force field. +
+
off (default)
+
on
+
+
PKG_COLLOIDCoarse-grained finite-size colloidal particles. Pair styles and fix wall styles for colloidal interactions. Includes the Fast Lubrication Dynamics (FLD) method for hydrodynamic interactions, which is a simplified approximation to Stokesian dynamics. +
+
off (default)
+
on
+
+
PKG_COMPRESSCompressed output of dump files via the zlib compression library, using dump styles with a “gz†in their style name. +
+
off (default)
+
on
+
+
PKG_CORESHELLCompute and pair styles that implement the adiabatic core/shell model for polarizability. The pair styles augment Born, Buckingham, and Lennard-Jones styles with core/shell capabilities. The compute temp/cs command calculates the temperature of a system with core/shell particles. +
+
off (default)
+
on
+
+
PKG_DIPOLEAn atom style and several pair styles for point dipole models with short-range or long-range interactions. +
+
off (default)
+
on
+
+
PKG_GRANULARPair styles and fixes for finite-size granular particles, which interact with each other and boundaries via frictional and dissipative potentials. +
+
off (default)
+
on
+
+
PKG_KSPACEA variety of long-range Coulombic solvers, as well as pair styles which compute the corresponding short-range pairwise Coulombic interactions. These include Ewald, particle-particle particle-mesh (PPPM), and multilevel summation method (MSM) solvers. +
+
off (default)
+
on
+
+
PKG_MANYBODY + A variety of manybody and bond-order potentials. These include (AI)REBO, BOP, + EAM, EIM, Stillinger-Weber, and Tersoff potentials. + +
+
off (default)
+
on
+
+
PKG_MC + Several fixes and a pair style that have Monte Carlo (MC) or MC-like + attributes. These include fixes for creating, breaking, and swapping bonds, + for performing atomic swaps, and performing grand-canonical MC (GCMC) in + conjuction with dynamics. + +
+
off (default)
+
on
+
+
PKG_MEAM +

A pair style for the modified embedded atom (MEAM) potential.

+ +

Please note that the MEAM package has been superseded by the USER-MEAMC package, +which is a direct translation of the MEAM package to C++. USER-MEAMC contains +additional optimizations making it run faster than MEAM on most machines, while +providing the identical features and USER interface.

+
+
+
off (default)
+
on
+
+
PKG_MISC + A variety of compute, fix, pair, dump styles with specialized capabilities that + don’t align with other packages. + +
+
off (default)
+
on
+
+
PKG_MOLECULE + A large number of atom, pair, bond, angle, dihedral, improper styles that are + used to model molecular systems with fixed covalent bonds. The pair styles + include the Dreiding (hydrogen-bonding) and CHARMM force fields, and a TIP4P + water model. + +
+
off (default)
+
on
+
+
PKG_PERI + An atom style, several pair styles which implement different Peridynamics + materials models, and several computes which calculate diagnostics. + Peridynamics is a a particle-based meshless continuum model. + +
+
off (default)
+
on
+
+
PKG_QEQ + Several fixes for performing charge equilibration (QEq) via different + algorithms. These can be used with pair styles that perform QEq as part of + their formulation. + +
+
off (default)
+
on
+
+
PKG_REAX + A pair style which wraps a Fortran library which implements the ReaxFF + potential, which is a universal reactive force field. See the USER-REAXC + package for an alternate implementation in C/C++. Also a fix reax/bonds + command for monitoring molecules as bonds are created and destroyed. + +
+
off (default)
+
on
+
+
PKG_REPLICA + A collection of multi-replica methods which can be used when running multiple + LAMMPS simulations (replicas). See Section 6.5 for an overview of how to run + multi-replica simulations in LAMMPS. Methods in the package include nudged + elastic band (NEB), parallel replica dynamics (PRD), temperature accelerated + dynamics (TAD), parallel tempering, and a verlet/split algorithm for + performing long-range Coulombics on one set of processors, and the remainder + of the force field calcalation on another set. + +
+
off (default)
+
on
+
+
PKG_RIGID + Fixes which enforce rigid constraints on collections of atoms or particles. + This includes SHAKE and RATTLE, as well as varous rigid-body integrators for a + few large bodies or many small bodies. Also several computes which calculate + properties of rigid bodies. + +
+
off (default)
+
on
+
+
PKG_SHOCK + Fixes for running impact simulations where a shock-wave passes through a + material. + +
+
off (default)
+
on
+
+
PKG_SNAP + A pair style for the spectral neighbor analysis potential (SNAP). SNAP is + methodology for deriving a highly accurate classical potential fit to a large + archive of quantum mechanical (DFT) data. Also several computes which analyze + attributes of the potential. + +
+
off (default)
+
on
+
+
PKG_SRD + A pair of fixes which implement the Stochastic Rotation Dynamics (SRD) method + for coarse-graining of a solvent, typically around large colloidal particles. + +
+
off (default)
+
on
+
+
+ +## Other Packages + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
PKG_KIMA pair_style kim command which is a wrapper on the Knowledge Base for Interatomic Models (KIM) repository of interatomic potentials, enabling any of them to be used in LAMMPS simulations. +
+
off (default)
+
on
+
+
PKG_PYTHONEnable support for Python scripting inside of LAMMPS. +
+
off (default)
+
on
+
+
PKG_MSCG + A fix mscg command which can parameterize a Multi-Scale Coarse-Graining (MSCG) + model using the open-source MS-CG library. + +
+
off (default)
+
on
+
+
PKG_MPIIO + Support for parallel output/input of dump and restart files via the MPIIO library. + +
+
off (default)
+
on
+
+
PKG_POEMS + A fix that wraps the Parallelizable Open source Efficient Multibody Software + (POEMS) library, which is able to simulate the dynamics of articulated body + systems. These are systems with multiple rigid bodies (collections of + particles) whose motion is coupled by connections at hinge points. + +
+
off (default)
+
on
+
+
PKG_LATTE + A fix command which wraps the LATTE DFTB code, so that molecular dynamics can + be run with LAMMPS using density-functional tight-binding quantum forces + calculated by LATTE. + +
+
off (default)
+
on
+
+
+ +## User Packages + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
PKG_USER-ATC + ATC stands for atoms-to-continuum. This package implements a fix atc command + to either couple molecular dynamics with continuum finite element equations or + perform on-the-fly conversion of atomic information to continuum fields. + +
+
off (default)
+
on
+
+
PKG_USER-AWPMD + AWPMD stands for Antisymmetrized Wave Packet Molecular Dynamics. This package + implements an atom, pair, and fix style which allows electrons to be treated + as explicit particles in a classical molecular dynamics model. + +
+
off (default)
+
on
+
+
PKG_USER-CGDNA + Several pair styles, a bond style, and integration fixes for coarse-grained + models of single- and double-stranded DNA based on the oxDNA model of Doye, + Louis and Ouldridge at the University of Oxford. This includes Langevin-type + rigid-body integrators with improved stability. + +
+
off (default)
+
on
+
+
PKG_USER-CGSDK + Several pair styles and an angle style which implement the coarse-grained SDK + model of Shinoda, DeVane, and Klein which enables simulation of ionic liquids, + electrolytes, lipids and charged amino acids. + +
+
off (default)
+
on
+
+
PKG_USER-COLVARS + COLVARS stands for collective variables, which can be used to implement + various enhanced sampling methods, including Adaptive Biasing Force, + Metadynamics, Steered MD, Umbrella Sampling and Restraints. A fix colvars + command is implemented which wraps a COLVARS library, which implements these + methods. simulations. + +
+
off (default)
+
on
+
+
PKG_USER-DIFFRACTION + Two computes and a fix for calculating x-ray and electron diffraction + intensities based on kinematic diffraction theory. + +
+
off (default)
+
on
+
+
PKG_USER-DPD + DPD stands for dissipative particle dynamics. This package implements + coarse-grained DPD-based models for energetic, reactive molecular crystalline + materials. It includes many pair styles specific to these systems, including + for reactive DPD, where each particle has internal state for multiple species + and a coupled set of chemical reaction ODEs are integrated each timestep. + Highly accurate time integrators for isothermal, isoenergetic, isobaric and + isenthalpic conditions are included. These enable long timesteps via the + Shardlow splitting algorithm. + +
+
off (default)
+
on
+
+
PKG_USER-DRUDE + Fixes, pair styles, and a compute to simulate thermalized Drude oscillators as + a model of polarization. + +
+
off (default)
+
on
+
+
PKG_USER-EFF + EFF stands for electron force field which allows a classical MD code to model + electrons as particles of variable radius. This package contains atom, pair, + fix and compute styles which implement the eFF as described in A. + Jaramillo-Botero, J. Su, Q. An, and W.A. Goddard III, JCC, 2010. The eFF + potential was first introduced by Su and Goddard, in 2007. + +
+
off (default)
+
on
+
+
PKG_USER-FEP + FEP stands for free energy perturbation. This package provides methods for + performing FEP simulations by using a fix adapt/fep command with soft-core + pair potentials, which have a “soft†in their style name. + +
+
off (default)
+
on
+
+
PKG_USER-H5MD + H5MD stands for HDF5 for MD. HDF5 is a portable, binary, self-describing file + format, used by many scientific simulations. H5MD is a format for molecular + simulations, built on top of HDF5. This package implements a dump h5md command + to output LAMMPS snapshots in this format. + +
+
off (default)
+
on
+
+
PKG_USER-LB + Fixes which implement a background Lattice-Boltzmann (LB) fluid, which can be + used to model MD particles influenced by hydrodynamic forces. + +
+
off (default)
+
on
+
+
PKG_USER-MANIFOLD + Several fixes and a “manifold†class which enable simulations of particles + constrained to a manifold (a 2D surface within the 3D simulation box). This is + done by applying the RATTLE constraint algorithm to formulate single-particle + constraint functions g(xi,yi,zi) = 0 and their derivative (i.e. the normal of + the manifold) n = grad(g). + +
+
off (default)
+
on
+
+
PKG_USER-MEAMC + A pair style for the modified embedded atom (MEAM) potential translated from + the Fortran version in the MEAM package to plain C++. In contrast to the MEAM + package, no library needs to be compiled and the pair style can be + instantiated multiple times. + +
+
off (default)
+
on
+
+
PKG_USER-MESO + Several extensions of the the dissipative particle dynamics (DPD) method. + Specifically, energy-conserving DPD (eDPD) that can model non-isothermal + processes, many-body DPD (mDPD) for simulating vapor-liquid coexistence, and + transport DPD (tDPD) for modeling advection-diffusion-reaction systems. The + equations of motion of these DPD extensions are integrated through a modified + velocity-Verlet (MVV) algorithm. + +
+
off (default)
+
on
+
+
PKG_USER-MGPT + A pair style which provides a fast implementation of the quantum-based MGPT + multi-ion potentials. The MGPT or model GPT method derives from + first-principles DFT-based generalized pseudopotential theory (GPT) through a + series of systematic approximations valid for mid-period transition metals + with nearly half-filled d bands. The MGPT method was originally developed by + John Moriarty at LLNL. The pair style in this package calculates forces and + energies using an optimized matrix-MGPT algorithm due to Tomas Oppelstrup at + LLNL. + +
+
off (default)
+
on
+
+
PKG_USER-MISC + A potpourri of (mostly) unrelated features contributed to LAMMPS by users. + Each feature is a single fix, compute, pair, bond, angle, dihedral, improper, + or command style. + +
+
off (default)
+
on
+
+
PKG_USER-MOFFF + Pair, angle and improper styles needed to employ the MOF-FF force field by + Schmid and coworkers with LAMMPS. MOF-FF is a first principles derived force + field with the primary aim to simulate MOFs and related porous framework + materials, using spherical Gaussian charges. It is described in S. Bureekaew + et al., Phys. Stat. Sol. B 2013, 250, 1128-1141. For the usage of MOF-FF see + the example in the example directory as well as the MOF+ website. + +
+
off (default)
+
on
+
+
PKG_USER-MOLFILE + A dump molfile command which uses molfile plugins that are bundled with the + VMD molecular visualization and analysis program, to enable LAMMPS to dump + snapshots in formats compatible with various molecular simulation tools. + +
+
off (default)
+
on
+
+
PKG_USER-NETCDF + Dump styles for writing NetCDF formatted dump files. NetCDF is a portable, + binary, self-describing file format developed on top of HDF5. The file + contents follow the AMBER NetCDF trajectory conventions + (http://ambermd.org/netcdf/nctraj.xhtml), but include extensions. + +
+
off (default)
+
on
+
+
PKG_USER-PHONON + A fix phonon command that calculates dynamical matrices, which can then be + used to compute phonon dispersion relations, directly from molecular dynamics + simulations. + +
+
off (default)
+
on
+
+
PKG_USER-QTB + Two fixes which provide a self-consistent quantum treatment of vibrational modes in a classical molecular dynamics simulation. By coupling the MD simulation to a colored thermostat, it introduces zero point energy into the system, altering the energy power spectrum and the heat capacity to account for their quantum nature. This is useful when modeling systems at temperatures lower than their classical limits or when temperatures ramp across the classical limits in a simulation. + +
+
off (default)
+
on
+
+
PKG_USER-QUIP + A pair_style quip command which wraps the QUIP libAtoms library, which + includes a variety of interatomic potentials, including Gaussian Approximation + Potential (GAP) models developed by the Cambridge University group. + +
+
off (default)
+
on
+
+
PKG_USER-QMMM + A fix qmmm command which allows LAMMPS to be used in a QM/MM simulation, + currently only in combination with the Quantum ESPRESSO package. + +
+
off (default)
+
on
+
+
PKG_USER-REAXC + A pair style which implements the ReaxFF potential in C/C++ (in contrast to + the REAX package and its Fortran library). ReaxFF is universal reactive force + field. See the src/USER-REAXC/README file for more info on differences between + the two packages. Also two fixes for monitoring molecules as bonds are created + and destroyed. + +
+
off (default)
+
on
+
+
PKG_USER-SMD + An atom style, fixes, computes, and several pair styles which implements + smoothed Mach dynamics (SMD) for solids, which is a model related to smoothed + particle hydrodynamics (SPH) for liquids (see the USER-SPH package). + +
+
off (default)
+
on
+
+
PKG_USER-SMTBQ + A pair style which implements a Second Moment Tight Binding model with QEq + charge equilibration (SMTBQ) potential for the description of ionocovalent + bonds in oxides. + +
+
off (default)
+
on
+
+
PKG_USER-SPH + An atom style, fixes, computes, and several pair styles which implements + smoothed particle hydrodynamics (SPH) for liquids. See the related USER-SMD + package package for smooth Mach dynamics (SMD) for solids. + +
+
off (default)
+
on
+
+
PKG_USER-TALLY + Several compute styles that can be called when pairwise interactions are + calculated to tally information (forces, heat flux, energy, stress, etc) about + individual interactions. + +
+
off (default)
+
on
+
+
PKG_USER-UEF + A fix style for the integration of the equations of motion under extensional + flow with proper boundary conditions, as well as several supporting compute + styles and an output option. + +
+
off (default)
+
on
+
+
PKG_USER-VTK + A dump vtk command which outputs snapshot info in the VTK format, enabling + visualization by Paraview or other visualization packages. + +
+
off (default)
+
on
+
+
+ +## Package-Specific Configuration Options + +### KSPACE Package + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
FFT +

FFT library for KSPACE package

+

If either MKL or FFTW is selected cmake will try to locate these libraries automatically. To control which one should be used please see the options below for each FFT library.

+
+
+
KISSFFT
+
FFTW3
+
FFTW2
+
MKL
+
+
PACK_ARRAYOptimization for FFT +
+
PACK_ARRAY
+
PACK_POINTER
+
PACK_MEMCPY
+
+
+ +### MKL + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
MKL_INCLUDE_DIRS +
MKL_LIBRARIES +
+ +TODO static vs dynamic linking + +### FFTW2 + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
FFTW2_INCLUDE_DIRS +
FFTW2_LIBRARIES +
+ +### FFTW3 + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
FFTW3_INCLUDE_DIRS +
FFTW3_LIBRARIES +
+ +### LAPACK +TODO + +### PYTHON Package + + +### GPU Package +The GPU package builds a support library which can either use OpenCL or CUDA as +target API. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
GPU_APIAPI used by GPU package +
+
OpenCL (default)
+
CUDA
+
+
GPU_PRECPrecision size used by GPU package kernels +
+
SINGLE_DOUBLE
+
SINGLE_SINGLE
+
DOUBLE_DOUBLE
+
+
OCL_TUNE (OpenCL only)Tuning target for OpenCL driver code +
+
GENERIC (default)
+
INTEL (Intel CPU)
+
PHI (Intel Xeon Phi)
+
FERMI (NVIDIA)
+
KEPLER (NVIDIA)
+
CYPRESS (AMD)
+
+
GPU_ARCH (CUDA only)CUDA SM architecture targeted by GPU package +
+
sm_20 (Fermi)
+
sm_30 (Kepler)
+
sm_50 (Maxwell)
+
sm_60 (Pascal)
+
sm_70 (Volta)
+
+
CUDPP_OPT (CUDA only)Enable CUDA Performance Primitives Optimizations +
+
on (default)
+
off
+
+
+ +### VORONOI Package + +TODO + +### USER-SMD Package + +Requires a Eigen3 installation + + + + + + + + + + + + + + + + +
OptionDescriptionValues
EIGEN3_INCLUDE_DIR +
+ +## Optional Features + +### zlib support + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
ZLIB_INCLUDE_DIR +
ZLIB_LIBRARIES +
+ +### JPEG support + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
JPEG_INCLUDE_DIR +
JPEG_LIBRARIES +
+ +### PNG support +(requires zlib support) + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionValues
PNG_INCLUDE_DIR +
PNG_LIBRARIES +
+ +### GZIP support + +requires `gzip` to be in your `PATH` + + + + + + + + + + + + + + + + +
OptionDescriptionValues
GZIP_EXECUTABLE +
+ +### FFMPEG support + +requires `ffmpeg` to be in your `PATH` + + + + + + + + + + + + + + + + +
OptionDescriptionValues
FFMPEG_EXECUTABLE +
+ + +## Compilers + +By default, `cmake` will use your environment C/C++/Fortran compilers for a build. It uses the `CC`, `CXX` and `FC` environment variables to detect which compilers should be used. However, these values +will be cached after the first run of `cmake`. Subsequent runs of `cmake` will ignore changes in these environment variables. To ensure the correct values are used you avoid the cache by setting the `CMAKE_C_COMPILER`, `CMAKE_CXX_COMPILER`, `CMAKE_Fortran_COMPILER` options directly. + + + + + + + + + + + + + + + + + + + + + + + + + + +
OptionDescriptionDefault
CMAKE_C_COMPILERC Compiler which should be used by CMakevalue of `CC` environment variable at first `cmake` run
CMAKE_CXX_COMPILERC++ compiler which should be used by CMake + value of `CXX` environment variable at first `cmake` run +
CMAKE_Fortran_COMPILERC++ compiler which should be used by CMake + value of `FC` environment variable at first `cmake` run +
+ +### Building with GNU Compilers + +```bash +cmake ../cmake -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DCMAKE_Fortran_COMPILER=gfortran +``` + +### Building with Intel Compilers + +```bash +cmake ../cmake -DCMAKE_C_COMPILER=icc -DCMAKE_CXX_COMPILER=icpc -DCMAKE_Fortran_COMPILER=ifort +``` + + +### Building with LLVM/Clang Compilers + +```bash +cmake ../cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_Fortran_COMPILER=flang +``` + + +## Examples diff --git a/cmake/etc/profile.d/lammps.csh.in b/cmake/etc/profile.d/lammps.csh.in new file mode 100644 index 0000000000000000000000000000000000000000..def49bf75c0112503f7286dbb68843a258e993f3 --- /dev/null +++ b/cmake/etc/profile.d/lammps.csh.in @@ -0,0 +1,2 @@ +# set environment for LAMMPS executables to find potential files +if ( "$?LAMMPS_POTENTIALS" == 0 ) setenv LAMMPS_POTENTIALS @LAMMPS_POTENTIALS_DIR@ diff --git a/cmake/etc/profile.d/lammps.sh.in b/cmake/etc/profile.d/lammps.sh.in new file mode 100644 index 0000000000000000000000000000000000000000..acd75fa0cff7bae7013d8c32d8453e2083dc217d --- /dev/null +++ b/cmake/etc/profile.d/lammps.sh.in @@ -0,0 +1,2 @@ +# set environment for LAMMPS executables to find potential files +export LAMMPS_POTENTIALS=${LAMMPS_POTENTIALS-@LAMMPS_POTENTIALS_DIR@} diff --git a/cmake/pkgconfig/liblammps.pc.in b/cmake/pkgconfig/liblammps.pc.in index c5e17017825c01bb59ec02597dd5a43957a69bba..400b7593cff4034539df766111dd53d6fbbeaac9 100644 --- a/cmake/pkgconfig/liblammps.pc.in +++ b/cmake/pkgconfig/liblammps.pc.in @@ -13,6 +13,6 @@ Description: Large-scale Atomic/Molecular Massively Parallel Simulator Library URL: http://lammps.sandia.gov Version: Requires: -Libs: -L${libdir} -llammps@LAMMPS_MACHINE@ +Libs: -L${libdir} -llammps@LIB_SUFFIX@@ Libs.private: -lm Cflags: -I${includedir} @LAMMPS_API_DEFINES@ diff --git a/cmake/presets/all_off.cmake b/cmake/presets/all_off.cmake new file mode 100644 index 0000000000000000000000000000000000000000..f7e90ddbb44153f12af59cf4f51f64afe0c3317a --- /dev/null +++ b/cmake/presets/all_off.cmake @@ -0,0 +1,22 @@ +set(STANDARD_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GPU + GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MEAM MISC + MOLECULE MPIIO MSCG OPT PERI POEMS + PYTHON QEQ REAX REPLICA RIGID SHOCK SNAP SRD VORONOI) + +set(USER_PACKAGES USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-H5MD + USER-INTEL USER-LB USER-MANIFOLD USER-MEAMC USER-MESO + USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE + USER-NETCDF USER-OMP USER-PHONON USER-QMMM USER-QTB + USER-QUIP USER-REAXC USER-SMD USER-SMTBQ USER-SPH USER-TALLY + USER-UEF USER-VTK) + +set(PACKAGES_WITH_LIB COMPRESS GPU KIM KOKKOS LATTE MEAM MPIIO MSCG POEMS PYTHON REAX VORONOI + USER-ATC USER-AWPMD USER-COLVARS USER-H5MD USER-LB USER-MOLFILE + USER-NETCDF USER-QMMM USER-QUIP USER-SMD USER-VTK) + +set(ALL_PACKAGES ${STANDARD_PACKAGES} ${USER_PACKAGES}) + +foreach(PKG ${ALL_PACKAGES}) + set(PKG_${PKG} OFF CACHE BOOL "" FORCE) +endforeach() diff --git a/cmake/presets/all_on.cmake b/cmake/presets/all_on.cmake new file mode 100644 index 0000000000000000000000000000000000000000..2c6f67904e6d50ff785ccb67664a4136fb737470 --- /dev/null +++ b/cmake/presets/all_on.cmake @@ -0,0 +1,22 @@ +set(STANDARD_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GPU + GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MEAM MISC + MOLECULE MPIIO MSCG OPT PERI POEMS + PYTHON QEQ REAX REPLICA RIGID SHOCK SNAP SRD VORONOI) + +set(USER_PACKAGES USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-H5MD + USER-INTEL USER-LB USER-MANIFOLD USER-MEAMC USER-MESO + USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE + USER-NETCDF USER-OMP USER-PHONON USER-QMMM USER-QTB + USER-QUIP USER-REAXC USER-SMD USER-SMTBQ USER-SPH USER-TALLY + USER-UEF USER-VTK) + +set(PACKAGES_WITH_LIB COMPRESS GPU KIM KOKKOS LATTE MEAM MPIIO MSCG POEMS PYTHON REAX VORONOI + USER-ATC USER-AWPMD USER-COLVARS USER-H5MD USER-LB USER-MOLFILE + USER-NETCDF USER-QMMM USER-QUIP USER-SMD USER-VTK) + +set(ALL_PACKAGES ${STANDARD_PACKAGES} ${USER_PACKAGES}) + +foreach(PKG ${ALL_PACKAGES}) + set(PKG_${PKG} ON CACHE BOOL "" FORCE) +endforeach() diff --git a/cmake/presets/manual_selection.cmake b/cmake/presets/manual_selection.cmake new file mode 100644 index 0000000000000000000000000000000000000000..6c03d983f6e9989e50883d974973fd08323acb8e --- /dev/null +++ b/cmake/presets/manual_selection.cmake @@ -0,0 +1,69 @@ +set(PKG_ASPHERE OFF CACHE BOOL "" FORCE) +set(PKG_BODY OFF CACHE BOOL "" FORCE) +set(PKG_CLASS2 OFF CACHE BOOL "" FORCE) +set(PKG_COLLOID OFF CACHE BOOL "" FORCE) +set(PKG_COMPRESS OFF CACHE BOOL "" FORCE) +set(PKG_CORESHELL OFF CACHE BOOL "" FORCE) +set(PKG_DIPOLE OFF CACHE BOOL "" FORCE) +set(PKG_GPU OFF CACHE BOOL "" FORCE) +set(PKG_GRANULAR OFF CACHE BOOL "" FORCE) +set(PKG_KIM OFF CACHE BOOL "" FORCE) +set(PKG_KOKKOS OFF CACHE BOOL "" FORCE) +set(PKG_KSPACE OFF CACHE BOOL "" FORCE) +set(PKG_LATTE OFF CACHE BOOL "" FORCE) +set(PKG_LIB OFF CACHE BOOL "" FORCE) +set(PKG_MANYBODY OFF CACHE BOOL "" FORCE) +set(PKG_MC OFF CACHE BOOL "" FORCE) +set(PKG_MEAM OFF CACHE BOOL "" FORCE) +set(PKG_MISC OFF CACHE BOOL "" FORCE) +set(PKG_MOLECULE OFF CACHE BOOL "" FORCE) +set(PKG_MPIIO OFF CACHE BOOL "" FORCE) +set(PKG_MSCG OFF CACHE BOOL "" FORCE) +set(PKG_OPT OFF CACHE BOOL "" FORCE) +set(PKG_PERI OFF CACHE BOOL "" FORCE) +set(PKG_POEMS OFF CACHE BOOL "" FORCE) +set(PKG_PYTHOFF OFF CACHE BOOL "" FORCE) +set(PKG_QEQ OFF CACHE BOOL "" FORCE) +set(PKG_REAX OFF CACHE BOOL "" FORCE) +set(PKG_REPLICA OFF CACHE BOOL "" FORCE) +set(PKG_RIGID OFF CACHE BOOL "" FORCE) +set(PKG_SHOCK OFF CACHE BOOL "" FORCE) +set(PKG_SNAP OFF CACHE BOOL "" FORCE) +set(PKG_SRD OFF CACHE BOOL "" FORCE) +set(PKG_VOROFFOI OFF CACHE BOOL "" FORCE) + +set(PKG_USER OFF CACHE BOOL "" FORCE) +set(PKG_USER-ATC OFF CACHE BOOL "" FORCE) +set(PKG_USER-AWPMD OFF CACHE BOOL "" FORCE) +set(PKG_USER-BOCS OFF CACHE BOOL "" FORCE) +set(PKG_USER-CGDNA OFF CACHE BOOL "" FORCE) +set(PKG_USER-CGSDK OFF CACHE BOOL "" FORCE) +set(PKG_USER-COLVARS OFF CACHE BOOL "" FORCE) +set(PKG_USER-DIFFRACTIOFF OFF CACHE BOOL "" FORCE) +set(PKG_USER-DPD OFF CACHE BOOL "" FORCE) +set(PKG_USER-DRUDE OFF CACHE BOOL "" FORCE) +set(PKG_USER-EFF OFF CACHE BOOL "" FORCE) +set(PKG_USER-FEP OFF CACHE BOOL "" FORCE) +set(PKG_USER-H5MD OFF CACHE BOOL "" FORCE) +set(PKG_USER-INTEL OFF CACHE BOOL "" FORCE) +set(PKG_USER-LB OFF CACHE BOOL "" FORCE) +set(PKG_USER-MANIFOLD OFF CACHE BOOL "" FORCE) +set(PKG_USER-MEAMC OFF CACHE BOOL "" FORCE) +set(PKG_USER-MESO OFF CACHE BOOL "" FORCE) +set(PKG_USER-MGPT OFF CACHE BOOL "" FORCE) +set(PKG_USER-MISC OFF CACHE BOOL "" FORCE) +set(PKG_USER-MOFFF OFF CACHE BOOL "" FORCE) +set(PKG_USER-MOLFILE OFF CACHE BOOL "" FORCE) +set(PKG_USER-NETCDF OFF CACHE BOOL "" FORCE) +set(PKG_USER-OMP OFF CACHE BOOL "" FORCE) +set(PKG_USER-PHOFFOFF OFF CACHE BOOL "" FORCE) +set(PKG_USER-QMMM OFF CACHE BOOL "" FORCE) +set(PKG_USER-QTB OFF CACHE BOOL "" FORCE) +set(PKG_USER-QUIP OFF CACHE BOOL "" FORCE) +set(PKG_USER-REAXC OFF CACHE BOOL "" FORCE) +set(PKG_USER-SMD OFF CACHE BOOL "" FORCE) +set(PKG_USER-SMTBQ OFF CACHE BOOL "" FORCE) +set(PKG_USER-SPH OFF CACHE BOOL "" FORCE) +set(PKG_USER-TALLY OFF CACHE BOOL "" FORCE) +set(PKG_USER-UEF OFF CACHE BOOL "" FORCE) +set(PKG_USER-VTK OFF CACHE BOOL "" FORCE) diff --git a/cmake/presets/nolib.cmake b/cmake/presets/nolib.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cd603aa80450f29a6da3906188d711f8ae755404 --- /dev/null +++ b/cmake/presets/nolib.cmake @@ -0,0 +1,22 @@ +set(STANDARD_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GPU + GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MEAM MISC + MOLECULE MPIIO MSCG OPT PERI POEMS + PYTHON QEQ REAX REPLICA RIGID SHOCK SNAP SRD VORONOI) + +set(USER_PACKAGES USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-H5MD + USER-INTEL USER-LB USER-MANIFOLD USER-MEAMC USER-MESO + USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE + USER-NETCDF USER-OMP USER-PHONON USER-QMMM USER-QTB + USER-QUIP USER-REAXC USER-SMD USER-SMTBQ USER-SPH USER-TALLY + USER-UEF USER-VTK) + +set(PACKAGES_WITH_LIB COMPRESS GPU KIM KOKKOS LATTE MEAM MPIIO MSCG POEMS PYTHON REAX VORONOI + USER-ATC USER-AWPMD USER-COLVARS USER-H5MD USER-LB USER-MOLFILE + USER-NETCDF USER-QMMM USER-QUIP USER-SMD USER-VTK) + +set(ALL_PACKAGES ${STANDARD_PACKAGES} ${USER_PACKAGES}) + +foreach(PKG ${PACKAGES_WITH_LIB}) + set(PKG_${PKG} OFF CACHE BOOL "" FORCE) +endforeach() diff --git a/cmake/presets/std.cmake b/cmake/presets/std.cmake new file mode 100644 index 0000000000000000000000000000000000000000..36da89795756de1890c2a7b19e39cab56ea2daea --- /dev/null +++ b/cmake/presets/std.cmake @@ -0,0 +1,22 @@ +set(STANDARD_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GPU + GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MEAM MISC + MOLECULE MPIIO MSCG OPT PERI POEMS + PYTHON QEQ REAX REPLICA RIGID SHOCK SNAP SRD VORONOI) + +set(USER_PACKAGES USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-H5MD + USER-INTEL USER-LB USER-MANIFOLD USER-MEAMC USER-MESO + USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE + USER-NETCDF USER-OMP USER-PHONON USER-QMMM USER-QTB + USER-QUIP USER-REAXC USER-SMD USER-SMTBQ USER-SPH USER-TALLY + USER-UEF USER-VTK) + +set(PACKAGES_WITH_LIB COMPRESS GPU KIM KOKKOS LATTE MEAM MPIIO MSCG POEMS PYTHON REAX VORONOI + USER-ATC USER-AWPMD USER-COLVARS USER-H5MD USER-LB USER-MOLFILE + USER-NETCDF USER-QMMM USER-QUIP USER-SMD USER-VTK) + +set(ALL_PACKAGES ${STANDARD_PACKAGES} ${USER_PACKAGES}) + +foreach(PKG ${STANDARD_PACKAGES}) + set(PKG_${PKG} ON CACHE BOOL "" FORCE) +endforeach() diff --git a/cmake/presets/std_nolib.cmake b/cmake/presets/std_nolib.cmake new file mode 100644 index 0000000000000000000000000000000000000000..9bffefcbe00f205aa5aaa3d3724f958147fda38d --- /dev/null +++ b/cmake/presets/std_nolib.cmake @@ -0,0 +1,26 @@ +set(STANDARD_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GPU + GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MEAM MISC + MOLECULE MPIIO MSCG OPT PERI POEMS + PYTHON QEQ REAX REPLICA RIGID SHOCK SNAP SRD VORONOI) + +set(USER_PACKAGES USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-H5MD + USER-INTEL USER-LB USER-MANIFOLD USER-MEAMC USER-MESO + USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE + USER-NETCDF USER-OMP USER-PHONON USER-QMMM USER-QTB + USER-QUIP USER-REAXC USER-SMD USER-SMTBQ USER-SPH USER-TALLY + USER-UEF USER-VTK) + +set(PACKAGES_WITH_LIB COMPRESS GPU KIM KOKKOS LATTE MEAM MPIIO MSCG POEMS PYTHON REAX VORONOI + USER-ATC USER-AWPMD USER-COLVARS USER-H5MD USER-LB USER-MOLFILE + USER-NETCDF USER-QMMM USER-QUIP USER-SMD USER-VTK) + +set(ALL_PACKAGES ${STANDARD_PACKAGES} ${USER_PACKAGES}) + +foreach(PKG ${STANDARD_PACKAGES}) + set(PKG_${PKG} ON CACHE BOOL "" FORCE) +endforeach() + +foreach(PKG ${PACKAGES_WITH_LIB}) + set(PKG_${PKG} OFF CACHE BOOL "" FORCE) +endforeach() diff --git a/cmake/presets/user.cmake b/cmake/presets/user.cmake new file mode 100644 index 0000000000000000000000000000000000000000..cb81b6755836871025e5438c978e0eb8b673d8c4 --- /dev/null +++ b/cmake/presets/user.cmake @@ -0,0 +1,22 @@ +set(STANDARD_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GPU + GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MEAM MISC + MOLECULE MPIIO MSCG OPT PERI POEMS + PYTHON QEQ REAX REPLICA RIGID SHOCK SNAP SRD VORONOI) + +set(USER_PACKAGES USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-H5MD + USER-INTEL USER-LB USER-MANIFOLD USER-MEAMC USER-MESO + USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE + USER-NETCDF USER-OMP USER-PHONON USER-QMMM USER-QTB + USER-QUIP USER-REAXC USER-SMD USER-SMTBQ USER-SPH USER-TALLY + USER-UEF USER-VTK) + +set(PACKAGES_WITH_LIB COMPRESS GPU KIM KOKKOS LATTE MEAM MPIIO MSCG POEMS PYTHON REAX VORONOI + USER-ATC USER-AWPMD USER-COLVARS USER-H5MD USER-LB USER-MOLFILE + USER-NETCDF USER-QMMM USER-QUIP USER-SMD USER-VTK) + +set(ALL_PACKAGES ${STANDARD_PACKAGES} ${USER_PACKAGES}) + +foreach(PKG ${USER_PACKAGES}) + set(PKG_${PKG} ON CACHE BOOL "" FORCE) +endforeach() diff --git a/doc/Makefile b/doc/Makefile index 0a5dbe1e7d64be21628f6e85e0e72a7468752d57..81f362349950be2123d2da4bd14255e7f9f27739 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -9,6 +9,7 @@ TXT2RST = $(VENV)/bin/txt2rst ANCHORCHECK = $(VENV)/bin/doc_anchor_check PYTHON = $(shell which python3) +VIRTUALENV = virtualenv HAS_PYTHON3 = NO HAS_VIRTUALENV = NO @@ -16,7 +17,13 @@ ifeq ($(shell which python3 >/dev/null 2>&1; echo $$?), 0) HAS_PYTHON3 = YES endif +ifeq ($(shell which virtualenv-3 >/dev/null 2>&1; echo $$?), 0) +VIRTUALENV = virtualenv-3 +HAS_VIRTUALENV = YES +endif + ifeq ($(shell which virtualenv >/dev/null 2>&1; echo $$?), 0) +VIRTUALENV = virtualenv HAS_VIRTUALENV = YES endif @@ -42,11 +49,11 @@ help: # ------------------------------------------ -clean-all: +clean-all: clean rm -rf $(BUILDDIR)/* utils/txt2html/txt2html.exe clean: - rm -rf $(RSTDIR) html + rm -rf $(RSTDIR) html old epub rm -rf spelling clean-spelling: @@ -150,7 +157,7 @@ $(RSTDIR)/%.rst : src/%.txt $(TXT2RST) @(\ mkdir -p $(RSTDIR) ; \ . $(VENV)/bin/activate ;\ - txt2rst $< > $@ ;\ + txt2rst -v $< > $@ ;\ deactivate ;\ ) @@ -158,7 +165,7 @@ $(VENV): @if [ "$(HAS_PYTHON3)" == "NO" ] ; then echo "Python3 was not found! Please check README.md for further instructions" 1>&2; exit 1; fi @if [ "$(HAS_VIRTUALENV)" == "NO" ] ; then echo "virtualenv was not found! Please check README.md for further instructions" 1>&2; exit 1; fi @( \ - virtualenv -p $(PYTHON) $(VENV); \ + $(VIRTUALENV) -p $(PYTHON) $(VENV); \ . $(VENV)/bin/activate; \ pip install Sphinx; \ pip install sphinxcontrib-images; \ diff --git a/doc/src/Developer/developer.tex b/doc/src/Developer/developer.tex index 3ba9018fb90ccdc29a23965e86f396c240b95529..8852f441680eb4921a010fe5399f21b865e29585 100644 --- a/doc/src/Developer/developer.tex +++ b/doc/src/Developer/developer.tex @@ -449,15 +449,15 @@ Writing fixes is a flexible way of extending LAMMPS. Users can implement many things using fixes: \begin{itemize} -\item changing particles attributes (positions, velocities, forces, etc.). +\item changing particles attributes (positions, velocities, forces, etc.). Example: FixFreeze. \item reading/writing data. Example: FixRestart. \item implementing boundary conditions. Example: FixWall. -\item saving information about particles for future use (previous positions, +\item saving information about particles for future use (previous positions, for instance). Example: FixStoreState. \end{itemize} -All fixes are derived from class Fix and must have constructor with the +All fixes are derived from class Fix and must have constructor with the signature: FixMine(class LAMMPS *, int, char **). Every fix must be registered in LAMMPS by writing the following lines @@ -476,9 +476,9 @@ is the name of the class. This code allows LAMMPS to find your fix when it parses input script. In addition, your fix header must be included in the file "style\_fix.h". In case if you use LAMMPS make, this file is generated automatically - all files starting with prefix -fix\_ are included, so call your header the same way. Otherwise, donÕt +fix\_ are included, so call your header the same way. Otherwise, don't forget to add your include into "style\_fix.h". - + Let's write a simple fix which will print average velocity at the end of each timestep. First of all, implement a constructor: @@ -487,11 +487,11 @@ of each timestep. First of all, implement a constructor: FixPrintVel::FixPrintVel(LAMMPS *lmp, int narg, char **arg) : Fix(lmp, narg, arg) { - if (narg < 4) + if (narg < 4) error->all(FLERR,"Illegal fix print command"); - + nevery = atoi(arg[3]); - if (nevery <= 0) + if (nevery <= 0) error->all(FLERR,"Illegal fix print command"); } \end{verbatim} @@ -545,7 +545,7 @@ void FixPrintVel::end_of_step() { // for add3, scale3 using namespace MathExtra; - + double** v = atom->v; int nlocal = atom->nlocal; double localAvgVel[4]; // 4th element for particles count @@ -559,7 +559,7 @@ void FixPrintVel::end_of_step() MPI_Allreduce(localAvgVel, globalAvgVel, 4, MPI_DOUBLE, MPI_SUM, world); scale3(1.0 / globalAvgVel[3], globalAvgVel); if (comm->me == 0) { - printf("\%e, \%e, \%e\n", + printf("\%e, \%e, \%e\n", globalAvgVel[0], globalAvgVel[1], globalAvgVel[2]); } } @@ -607,14 +607,15 @@ this situation there are several methods which should be implemented: \begin{itemize} \item \verb|double memory_usage| - return how much memory fix uses -\item \verb|void grow_arrays(int)| - do reallocation of the per particle arrays +\item \verb|void grow_arrays(int)| - do reallocation of the per particle arrays in your fix -\item \verb|void copy_arrays(int i, int j)| - copy i-th per-particle information - to j-th. Used when atoms sorting is performed +\item \verb|void copy_arrays(int i, int j, int delflag)| - copy i-th per-particle + information to j-th. Used when atoms sorting is performed. if delflag is set + and atom j owns a body, move the body information to atom i. \item \verb|void set_arrays(int i)| - sets i-th particle related information to zero \end{itemize} -Note, that if your class implements these methods, it must call add calls of +Note, that if your class implements these methods, it must call add calls of add\_callback and delete\_callback to constructor and destructor: \begin{center} @@ -654,7 +655,7 @@ void FixSavePos::grow_arrays(int nmax) memory->grow(this->x, nmax, 3, "FixSavePos:x"); } -void FixSavePos::copy_arrays(int i, int j) +void FixSavePos::copy_arrays(int i, int j, int delflag) { memcpy(this->x[j], this->x[i], sizeof(double) * 3); } @@ -670,7 +671,7 @@ int FixSavePos::pack_exchange(int i, double *buf) buf[m++] = x[i][0]; buf[m++] = x[i][1]; buf[m++] = x[i][2]; - + return m; } diff --git a/doc/src/Eqs/dihedral_table_cut.jpg b/doc/src/Eqs/dihedral_table_cut.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c124184c1773c60fe2564d8cabce2f6c7d7883c0 Binary files /dev/null and b/doc/src/Eqs/dihedral_table_cut.jpg differ diff --git a/doc/src/Eqs/dihedral_table_cut.tex b/doc/src/Eqs/dihedral_table_cut.tex new file mode 100644 index 0000000000000000000000000000000000000000..3cc1d331a8978d76e668de3f83cf0d4264be3301 --- /dev/null +++ b/doc/src/Eqs/dihedral_table_cut.tex @@ -0,0 +1,11 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{eqnarray*} + f(\theta) & = & K \qquad\qquad\qquad\qquad\qquad\qquad \theta < \theta_1 \\ + f(\theta) & = & K \left(1-\frac{(\theta - \theta_1)^2}{(\theta_2 - \theta_1)^2}\right) \qquad \theta_1 < \theta < \theta_2 +\end{eqnarray*} + +\end{document} + diff --git a/doc/src/Eqs/fix_integration_spin_stdecomposition.jpg b/doc/src/Eqs/fix_integration_spin_stdecomposition.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cd8214b4c2be66334502ddb3fa8d2cc607b02c9 Binary files /dev/null and b/doc/src/Eqs/fix_integration_spin_stdecomposition.jpg differ diff --git a/doc/src/Eqs/fix_integration_spin_stdecomposition.tex b/doc/src/Eqs/fix_integration_spin_stdecomposition.tex new file mode 100644 index 0000000000000000000000000000000000000000..8c7baf296d1773a8e5371133c5a35a92615424da --- /dev/null +++ b/doc/src/Eqs/fix_integration_spin_stdecomposition.tex @@ -0,0 +1,40 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm,tikz} +\usetikzlibrary{automata,arrows,shapes,snakes} +\begin{document} +\begin{varwidth}{50in} +\begin{tikzpicture} + +%Global +\node (v1) at (0,6.0) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] { $\bm{v} \leftarrow \bm{v}+L_v.\Delta t/2$ }; +\node (s1) at (0,4.5) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] { $\bm{s} \leftarrow \bm{s}+L_s.\Delta t/2$ }; +\node (r) at (0,3.0) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] { $\bm{r} \leftarrow \bm{r}+L_r.\Delta t$ }; +\node (s2) at (0,1.5) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] { $\bm{s} \leftarrow \bm{s}+L_s.\Delta t/2$ }; +\node (v2) at (0,0.0) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] { $\bm{v} \leftarrow \bm{v}+L_v.\Delta t/2$ }; + +\draw[line width=2pt, ->] (v1) -- (s1); +\draw[line width=2pt, ->] (s1) -- (r); +\draw[line width=2pt, ->] (r) -- (s2); +\draw[line width=2pt, ->] (s2) -- (v2); + +%Spin +\node (s01) at (6,6.0) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] {$\bm{s}_0 \leftarrow \bm{s}_0+L_{s_0}.\Delta t/4$ }; +\node (sN1) at (6,4.5) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] {$\bm{s}_{\rm N-1}\leftarrow\bm{s}_{\rm N-1}+L_{s_{\rm N-1}}.\Delta t/4$}; +\node (sN) at (6,3.0) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] {$\bm{s}_{\rm N} \leftarrow \bm{s}_{\rm N}+L_{s_{\rm N}}.\Delta t/2$ }; +\node (sN2) at (6,1.5) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] {$\bm{s}_{\rm N-1}\leftarrow\bm{s}_{\rm N-1}+L_{s_{\rm N-1}}.\Delta t/4$}; +\node (s02) at (6,0.0) [draw,thick,minimum width=0.2cm,minimum height=0.2cm] {$\bm{s}_0 \leftarrow \bm{s}_0+L_{s_0}.\Delta t/4$ }; + +\draw[line width=2pt,dashed, ->] (s01) -- (sN1); +\draw[line width=2pt, ->] (sN1) -- (sN); +\draw[line width=2pt, ->] (sN) -- (sN2); +\draw[line width=2pt,dashed, ->] (sN2) -- (s02); + +%from Global to Spin +\draw[line width=2pt, dashed, ->] (s1) -- (s01.west); +\draw[line width=2pt, dashed, ->] (s1) -- (s02.west); + +\end{tikzpicture} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/fix_langevin_spin_sLLG.jpg b/doc/src/Eqs/fix_langevin_spin_sLLG.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f83aadd9eb1f61a70f34ab91ca89bfb32a9d7930 Binary files /dev/null and b/doc/src/Eqs/fix_langevin_spin_sLLG.jpg differ diff --git a/doc/src/Eqs/fix_langevin_spin_sLLG.tex b/doc/src/Eqs/fix_langevin_spin_sLLG.tex new file mode 100644 index 0000000000000000000000000000000000000000..346dde9cec587b7d409ac42fb062d253b04e9b99 --- /dev/null +++ b/doc/src/Eqs/fix_langevin_spin_sLLG.tex @@ -0,0 +1,14 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath, amssymb, graphics, setspace} + +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \frac{d \vec{s}_{i}}{dt} = \frac{1}{\left(1+\lambda^2 \right)} \left( \left( + \vec{\omega}_{i} +\vec{\eta} \right) \times \vec{s}_{i} + \lambda\, \vec{s}_{i} + \times\left( \vec{\omega}_{i} \times\vec{s}_{i} \right) \right), \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/force_spin_aniso.jpg b/doc/src/Eqs/force_spin_aniso.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8bc9d7421c23853dcce1601df6b8ffc459a37605 Binary files /dev/null and b/doc/src/Eqs/force_spin_aniso.jpg differ diff --git a/doc/src/Eqs/force_spin_aniso.tex b/doc/src/Eqs/force_spin_aniso.tex new file mode 100644 index 0000000000000000000000000000000000000000..d6abfd580d1d848dad55515ad037ac32cb5b4ce0 --- /dev/null +++ b/doc/src/Eqs/force_spin_aniso.tex @@ -0,0 +1,11 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \bm{H}_{aniso} = -\sum_{{ i}=1}^{N} K_{an}(\bm{r}_{i})\, \left( \vec{s}_{i} \cdot \vec{n}_{i} \right)^2, \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/force_spin_zeeman.jpg b/doc/src/Eqs/force_spin_zeeman.jpg new file mode 100644 index 0000000000000000000000000000000000000000..14fb5500cf3328480bd30dc352de699575201bf8 Binary files /dev/null and b/doc/src/Eqs/force_spin_zeeman.jpg differ diff --git a/doc/src/Eqs/force_spin_zeeman.tex b/doc/src/Eqs/force_spin_zeeman.tex new file mode 100644 index 0000000000000000000000000000000000000000..d623ef85ae32cbb4dab12d51c2370ca41820e335 --- /dev/null +++ b/doc/src/Eqs/force_spin_zeeman.tex @@ -0,0 +1,11 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \bm{H}_{zeeman} = -\mu_{B}\mu_0\sum_{i=0}^{N}g_{i} \vec{s}_{i} \cdot \vec{H}_{ext} \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/pair_body_rounded.jpg b/doc/src/Eqs/pair_body_rounded.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e7136ddd20c2acea0e89fa8412497333f15cb541 Binary files /dev/null and b/doc/src/Eqs/pair_body_rounded.jpg differ diff --git a/doc/src/Eqs/pair_body_rounded.tex b/doc/src/Eqs/pair_body_rounded.tex new file mode 100644 index 0000000000000000000000000000000000000000..54e095340f1ab3ae13d672d35797a56faeee927a --- /dev/null +++ b/doc/src/Eqs/pair_body_rounded.tex @@ -0,0 +1,13 @@ +\documentstyle[12pt]{article} + +\begin{document} + +\begin{eqnarray*} + F_n &=& k_n \delta_n - c_n v_n, \qquad \delta_n \le 0 \\ + &=& -k_{na} \delta_n - c_n v_n, \qquad 0 < \delta_n \le r_c \\ + &=& 0 \qquad \qquad \qquad \qquad \delta_n > r_c \\ + F_t &=& \mu k_n \delta_n - c_t v_t, \qquad \delta_n \le 0 \\ + &=& 0 \qquad \qquad \qquad \qquad \delta_n > 0 +\end{eqnarray*} + +\end{document} diff --git a/doc/src/Eqs/pair_entropy.jpg b/doc/src/Eqs/pair_entropy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..44161e6aa0e74a05544f8f29aab3ca942ef305a5 Binary files /dev/null and b/doc/src/Eqs/pair_entropy.jpg differ diff --git a/doc/src/Eqs/pair_entropy.tex b/doc/src/Eqs/pair_entropy.tex new file mode 100644 index 0000000000000000000000000000000000000000..304c9d6138500061a55df40a6d8fb9b7863b45d7 --- /dev/null +++ b/doc/src/Eqs/pair_entropy.tex @@ -0,0 +1,10 @@ +\documentclass[12pt]{article} + +\begin{document} +\thispagestyle{empty} + +$$ + s_S^i=-2\pi\rho k_B \int\limits_0^{r_m} \left [ g(r) \ln g(r) - g(r) + 1 \right ] r^2 dr , +$$ + +\end{document} diff --git a/doc/src/Eqs/pair_entropy2.jpg b/doc/src/Eqs/pair_entropy2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..db3dcb0ca75f444a6640e704c61326d7c8c598a9 Binary files /dev/null and b/doc/src/Eqs/pair_entropy2.jpg differ diff --git a/doc/src/Eqs/pair_entropy2.tex b/doc/src/Eqs/pair_entropy2.tex new file mode 100644 index 0000000000000000000000000000000000000000..c91004840fee1a3998702a2ce61cd14c85048b71 --- /dev/null +++ b/doc/src/Eqs/pair_entropy2.tex @@ -0,0 +1,10 @@ +\documentclass[12pt]{article} + +\begin{document} +\thispagestyle{empty} + +$$ + g_m^i(r) = \frac{1}{4 \pi \rho r^2} \sum\limits_{j} \frac{1}{\sqrt{2 \pi \sigma^2}} e^{-(r-r_{ij})^2/(2\sigma^2)} , +$$ + +\end{document} diff --git a/doc/src/Eqs/pair_entropy3.jpg b/doc/src/Eqs/pair_entropy3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0d5e0025b7200f9ca4255c48bd2bbabb291553a2 Binary files /dev/null and b/doc/src/Eqs/pair_entropy3.jpg differ diff --git a/doc/src/Eqs/pair_entropy3.tex b/doc/src/Eqs/pair_entropy3.tex new file mode 100644 index 0000000000000000000000000000000000000000..b0b3c763585dc98de3a66cde754a2bcd90db91f3 --- /dev/null +++ b/doc/src/Eqs/pair_entropy3.tex @@ -0,0 +1,10 @@ +\documentclass[12pt]{article} + +\begin{document} +\thispagestyle{empty} + +$$ + \bar{s}_S^i = \frac{\sum_j s_S^j + s_S^i}{N + 1} , +$$ + +\end{document} diff --git a/doc/src/Eqs/pair_spin_dmi_forces.jpg b/doc/src/Eqs/pair_spin_dmi_forces.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fba6a91cbf6fdb6ee6736073a114d08c907d6d3c Binary files /dev/null and b/doc/src/Eqs/pair_spin_dmi_forces.jpg differ diff --git a/doc/src/Eqs/pair_spin_dmi_forces.tex b/doc/src/Eqs/pair_spin_dmi_forces.tex new file mode 100644 index 0000000000000000000000000000000000000000..1c0c246db4c70852212f86c9a7ab7e6b518c323c --- /dev/null +++ b/doc/src/Eqs/pair_spin_dmi_forces.tex @@ -0,0 +1,14 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \vec{\omega}_i = -\frac{1}{\hbar} \sum_{j}^{Neighb} \vec{s}_{j}\times \left(\vec{e}_{ij}\times \vec{D} \right) + ~~{\rm and}~~ + \vec{F}_i = -\sum_{j}^{Neighb} \frac{1}{r_{ij}} \vec{D} \times \left( \vec{s}_{i}\times \vec{s}_{j} \right) + , \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/pair_spin_dmi_interaction.jpg b/doc/src/Eqs/pair_spin_dmi_interaction.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3eb24c67e3b26f97c362fd05982ead5fb0f5c150 Binary files /dev/null and b/doc/src/Eqs/pair_spin_dmi_interaction.jpg differ diff --git a/doc/src/Eqs/pair_spin_dmi_interaction.tex b/doc/src/Eqs/pair_spin_dmi_interaction.tex new file mode 100644 index 0000000000000000000000000000000000000000..79f63a333a6c823258f5d9012fa40561e00fb9cb --- /dev/null +++ b/doc/src/Eqs/pair_spin_dmi_interaction.tex @@ -0,0 +1,16 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \bm{H}_{dm} = \sum_{{ i,j}=1,i\neq j}^{N} + \left( \vec{e}_{ij} \times \vec{D} \right) + \cdot\left(\vec{s}_{i}\times \vec{s}_{j}\right), + \nonumber + \end{equation} +\end{varwidth} +\end{document} + \vec{D}\left(r_{ij}\right) + {\rm ~and~} \vec{D}\left(r_{ij}\right) = \vec{e}_{ij} \times \vec{D} diff --git a/doc/src/Eqs/pair_spin_exchange_forces.jpg b/doc/src/Eqs/pair_spin_exchange_forces.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b312a9ccdaaf44b7647f2c444c7d79a740cea88c Binary files /dev/null and b/doc/src/Eqs/pair_spin_exchange_forces.jpg differ diff --git a/doc/src/Eqs/pair_spin_exchange_forces.tex b/doc/src/Eqs/pair_spin_exchange_forces.tex new file mode 100644 index 0000000000000000000000000000000000000000..ac5ef682f3ca9d9532ff6d258cb1012529058636 --- /dev/null +++ b/doc/src/Eqs/pair_spin_exchange_forces.tex @@ -0,0 +1,16 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \vec{\omega}_{i} = \frac{1}{\hbar} \sum_{j}^{Neighb} {J} + \left(r_{ij} \right)\,\vec{s}_{j} + ~~{\rm and}~~ + \vec{F}_{i} = \sum_{j}^{Neighb} \frac{\partial {J} \left(r_{ij} \right)}{ + \partial r_{ij}} \left( \vec{s}_{i}\cdot \vec{s}_{j} \right) \vec{e}_{ij} + \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/pair_spin_exchange_function.jpg b/doc/src/Eqs/pair_spin_exchange_function.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9a7ed3ce0ba64ef054f9ca7c2115ab971d003e5 Binary files /dev/null and b/doc/src/Eqs/pair_spin_exchange_function.jpg differ diff --git a/doc/src/Eqs/pair_spin_exchange_function.tex b/doc/src/Eqs/pair_spin_exchange_function.tex new file mode 100644 index 0000000000000000000000000000000000000000..054c6992f0136c814dbdafdd88cb2934681ece21 --- /dev/null +++ b/doc/src/Eqs/pair_spin_exchange_function.tex @@ -0,0 +1,13 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath, amssymb, graphics, setspace} + +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + {J}\left( r_{ij} \right) = 4 a \left( \frac{r_{ij}}{d} \right)^2 \left( 1 - b \left( \frac{r_{ij}}{d} \right)^2 \right) e^{-\left( \frac{r_{ij}}{d} + \right)^2 }\Theta (R_c - r_{ij}) \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/pair_spin_exchange_interaction.jpg b/doc/src/Eqs/pair_spin_exchange_interaction.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c70d8a6554003e37472d648c1944a13ee9d3f859 Binary files /dev/null and b/doc/src/Eqs/pair_spin_exchange_interaction.jpg differ diff --git a/doc/src/Eqs/pair_spin_exchange_interaction.tex b/doc/src/Eqs/pair_spin_exchange_interaction.tex new file mode 100644 index 0000000000000000000000000000000000000000..f20b3e5740ce2db9cb86a70910ca2b80f263fe4f --- /dev/null +++ b/doc/src/Eqs/pair_spin_exchange_interaction.tex @@ -0,0 +1,11 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \bm{H}_{ex} ~=~ -\sum_{i,j,i\neq j}^{N} {J} \left(r_{ij} \right)\, \vec{s}_{i}\cdot \vec{s}_{j} \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/pair_spin_me_forces.jpg b/doc/src/Eqs/pair_spin_me_forces.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d9ae440fb577c5f33d23029ff187175ba7163ac4 Binary files /dev/null and b/doc/src/Eqs/pair_spin_me_forces.jpg differ diff --git a/doc/src/Eqs/pair_spin_me_forces.tex b/doc/src/Eqs/pair_spin_me_forces.tex new file mode 100644 index 0000000000000000000000000000000000000000..f9462fc3d50480294787f063048b9a7acba118b8 --- /dev/null +++ b/doc/src/Eqs/pair_spin_me_forces.tex @@ -0,0 +1,13 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \vec{F}^{i} = -\sum_{j}^{Neighbor} \left( \vec{s}_{i}\times \vec{s}_{j} \right) + \times \vec{E} ~~{\rm and}~~ \vec{\omega}^{i} = -\frac{1}{\hbar} + \sum_{j}^{Neighbor} \vec{s}_j \times \left(\vec{E}\times r_{ij} \right),\nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/pair_spin_me_interaction.jpg b/doc/src/Eqs/pair_spin_me_interaction.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8ecddc959226c0e94fa533f36ad84f3afced6ba6 Binary files /dev/null and b/doc/src/Eqs/pair_spin_me_interaction.jpg differ diff --git a/doc/src/Eqs/pair_spin_me_interaction.tex b/doc/src/Eqs/pair_spin_me_interaction.tex new file mode 100644 index 0000000000000000000000000000000000000000..64501e9c2fa44243c2859c7ca096003d0b22653b --- /dev/null +++ b/doc/src/Eqs/pair_spin_me_interaction.tex @@ -0,0 +1,12 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \vec{\omega}_i = -\frac{1}{\hbar} \sum_{j}^{Neighb} \vec{s}_{j}\times\vec{D}(r_{ij}) ~~{\rm and}~~ + \vec{F}_i = -\sum_{j}^{Neighb} \frac{\partial D(r_{ij})}{\partial r_{ij}} \left(\vec{s}_{i}\times \vec{s}_{j} \right) \cdot \vec{r}_{ij}, \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/pair_spin_neel_functions.jpg b/doc/src/Eqs/pair_spin_neel_functions.jpg new file mode 100644 index 0000000000000000000000000000000000000000..57023634bf9de762613994e44174702f83c630d0 Binary files /dev/null and b/doc/src/Eqs/pair_spin_neel_functions.jpg differ diff --git a/doc/src/Eqs/pair_spin_neel_functions.tex b/doc/src/Eqs/pair_spin_neel_functions.tex new file mode 100644 index 0000000000000000000000000000000000000000..ead5a2b87a2fc879c1b3739b627f74b90f05dddf --- /dev/null +++ b/doc/src/Eqs/pair_spin_neel_functions.tex @@ -0,0 +1,13 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{eqnarray} + g_1(r_{ij}) &=& g(r_{ij}) + \frac{12}{35} q(r_{ij}) \nonumber \\ + q_1(r_{ij}) &=& \frac{9}{5} q(r_{ij}) \nonumber \\ + q_2(r_{ij}) &=& - \frac{2}{5} q(r_{ij}) \nonumber + \end{eqnarray} +\end{varwidth} +\end{document} diff --git a/doc/src/Eqs/pair_spin_neel_interaction.jpg b/doc/src/Eqs/pair_spin_neel_interaction.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c30600d840e56bd04d994a0d16d73c80ddf760dd Binary files /dev/null and b/doc/src/Eqs/pair_spin_neel_interaction.jpg differ diff --git a/doc/src/Eqs/pair_spin_neel_interaction.tex b/doc/src/Eqs/pair_spin_neel_interaction.tex new file mode 100644 index 0000000000000000000000000000000000000000..8b4ac33e732cccf30e83e56269617dac780e7cac --- /dev/null +++ b/doc/src/Eqs/pair_spin_neel_interaction.tex @@ -0,0 +1,16 @@ +\documentclass[preview]{standalone} +\usepackage{varwidth} +\usepackage[utf8x]{inputenc} +\usepackage{amsmath,amssymb,amsthm,bm} +\begin{document} +\begin{varwidth}{50in} + \begin{equation} + \mathcal{H}_{N\acute{e}el}=-\sum_{{ i,j=1,i\neq j}}^N g_1(r_{ij})\left(({\bm e}_{ij}\cdot {\bm s}_{i})({\bm e}_{ij} + \cdot {\bm s}_{j})-\frac{{\bm s}_{i}\cdot{\bm s}_{j}}{3} \right) + +q_1(r_{ij})\left( ({\bm e}_{ij}\cdot {\bm s}_{i})^2 -\frac{{\bm s}_{i}\cdot{\bm s}_{j}}{3}\right) + \left( ({\bm e}_{ij}\cdot {\bm s}_{i})^2 -\frac{{\bm s}_{i}\cdot{\bm s}_{j}}{3} \right) + + q_2(r_{ij}) \Big( ({\bm e}_{ij}\cdot {\bm s}_{i}) ({\bm e}_{ij}\cdot {\bm s}_{j})^3 + ({\bm e}_{ij}\cdot + {\bm s}_{j}) ({\bm e}_{ij}\cdot {\bm s}_{i})^3\Big) \nonumber + \end{equation} +\end{varwidth} +\end{document} diff --git a/doc/src/Errors.txt b/doc/src/Errors.txt new file mode 100644 index 0000000000000000000000000000000000000000..7bc520c19dbacc86aaa7a1bd4083f884bde53752 --- /dev/null +++ b/doc/src/Errors.txt @@ -0,0 +1,37 @@ +"Previous Section"_Python.html - "LAMMPS WWW Site"_lws - +"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Section_history.html :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Errors :h2 + +These doc pages describe the errors you can encounter when using +LAMMPS. The common problems include conceptual issues. The messages +and warnings doc pages give complete lists of all the messages the +code may generate (except those generated by USER packages), with +additional details for many of them. + + + + + +"Common problems"_Errors_common.html +"Reporting bugs"_Errors_bugs.html +"Error messages"_Errors_messages.html +"Warning messages"_Errors_warnings.html :all(b) + + diff --git a/doc/src/Errors_bugs.txt b/doc/src/Errors_bugs.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0a94c7a44b124bc6d987b40d9f0b25ca9b520b5 --- /dev/null +++ b/doc/src/Errors_bugs.txt @@ -0,0 +1,35 @@ +"Higher level section"_Errors.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Reporting bugs :h3 + +If you are confident that you have found a bug in LAMMPS, follow these +steps. + +Check the "New features and bug +fixes"_http://lammps.sandia.gov/bug.html section of the "LAMMPS WWW +site"_lws to see if the bug has already been reported or fixed or the +"Unfixed bug"_http://lammps.sandia.gov/unbug.html to see if a fix is +pending. + +Check the "mailing list"_http://lammps.sandia.gov/mail.html to see if +it has been discussed before. + +If not, send an email to the mailing list describing the problem with +any ideas you have as to what is causing it or where in the code the +problem might be. The developers will ask for more info if needed, +such as an input script or data files. + +The most useful thing you can do to help us fix the bug is to isolate +the problem. Run it on the smallest number of atoms and fewest number +of processors and with the simplest input script that reproduces the +bug and try to identify what command or combination of commands is +causing the problem. + +NOTE: this page needs to have GitHub issues info added diff --git a/doc/src/Errors_common.txt b/doc/src/Errors_common.txt new file mode 100644 index 0000000000000000000000000000000000000000..86a25f7e7d4b262fc4e730b42a5584ce76133d12 --- /dev/null +++ b/doc/src/Errors_common.txt @@ -0,0 +1,123 @@ +"Higher level section"_Errors.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Common problems :h3 + +If two LAMMPS runs do not produce the exact same answer on different +machines or different numbers of processors, this is typically not a +bug. In theory you should get identical answers on any number of +processors and on any machine. In practice, numerical round-off can +cause slight differences and eventual divergence of molecular dynamics +phase space trajectories within a few 100s or few 1000s of timesteps. +However, the statistical properties of the two runs (e.g. average +energy or temperature) should still be the same. + +If the "velocity"_velocity.html command is used to set initial atom +velocities, a particular atom can be assigned a different velocity +when the problem is run on a different number of processors or on +different machines. If this happens, the phase space trajectories of +the two simulations will rapidly diverge. See the discussion of the +{loop} option in the "velocity"_velocity.html command for details and +options that avoid this issue. + +Similarly, the "create_atoms"_create_atoms.html command generates a +lattice of atoms. For the same physical system, the ordering and +numbering of atoms by atom ID may be different depending on the number +of processors. + +Some commands use random number generators which may be setup to +produce different random number streams on each processor and hence +will produce different effects when run on different numbers of +processors. A commonly-used example is the "fix +langevin"_fix_langevin.html command for thermostatting. + +A LAMMPS simulation typically has two stages, setup and run. Most +LAMMPS errors are detected at setup time; others like a bond +stretching too far may not occur until the middle of a run. + +LAMMPS tries to flag errors and print informative error messages so +you can fix the problem. For most errors it will also print the last +input script command that it was processing. Of course, LAMMPS cannot +figure out your physics or numerical mistakes, like choosing too big a +timestep, specifying erroneous force field coefficients, or putting 2 +atoms on top of each other! If you run into errors that LAMMPS +doesn't catch that you think it should flag, please send an email to +the "developers"_http://lammps.sandia.gov/authors.html. + +If you get an error message about an invalid command in your input +script, you can determine what command is causing the problem by +looking in the log.lammps file or using the "echo command"_echo.html +to see it on the screen. If you get an error like "Invalid ... +style", with ... being fix, compute, pair, etc, it means that you +mistyped the style name or that the command is part of an optional +package which was not compiled into your executable. The list of +available styles in your executable can be listed by using "the -h +command-line argument"_Section_start.html#start_6. The installation +and compilation of optional packages is explained in the "installation +instructions"_Section_start.html#start_3. + +For a given command, LAMMPS expects certain arguments in a specified +order. If you mess this up, LAMMPS will often flag the error, but it +may also simply read a bogus argument and assign a value that is +valid, but not what you wanted. E.g. trying to read the string "abc" +as an integer value of 0. Careful reading of the associated doc page +for the command should allow you to fix these problems. In most cases, +where LAMMPS expects to read a number, either integer or floating point, +it performs a stringent test on whether the provided input actually +is an integer or floating-point number, respectively, and reject the +input with an error message (for instance, when an integer is required, +but a floating-point number 1.0 is provided): + +ERROR: Expected integer parameter in input script or data file :pre + +Some commands allow for using variable references in place of numeric +constants so that the value can be evaluated and may change over the +course of a run. This is typically done with the syntax {v_name} for a +parameter, where name is the name of the variable. On the other hand, +immediate variable expansion with the syntax ${name} is performed while +reading the input and before parsing commands, + +NOTE: Using a variable reference (i.e. {v_name}) is only allowed if +the documentation of the corresponding command explicitly says it is. + +Generally, LAMMPS will print a message to the screen and logfile and +exit gracefully when it encounters a fatal error. Sometimes it will +print a WARNING to the screen and logfile and continue on; you can +decide if the WARNING is important or not. A WARNING message that is +generated in the middle of a run is only printed to the screen, not to +the logfile, to avoid cluttering up thermodynamic output. If LAMMPS +crashes or hangs without spitting out an error message first then it +could be a bug (see "this section"_#err_2) or one of the following +cases: + +LAMMPS runs in the available memory a processor allows to be +allocated. Most reasonable MD runs are compute limited, not memory +limited, so this shouldn't be a bottleneck on most platforms. Almost +all large memory allocations in the code are done via C-style malloc's +which will generate an error message if you run out of memory. +Smaller chunks of memory are allocated via C++ "new" statements. If +you are unlucky you could run out of memory just when one of these +small requests is made, in which case the code will crash or hang (in +parallel), since LAMMPS doesn't trap on those errors. + +Illegal arithmetic can cause LAMMPS to run slow or crash. This is +typically due to invalid physics and numerics that your simulation is +computing. If you see wild thermodynamic values or NaN values in your +LAMMPS output, something is wrong with your simulation. If you +suspect this is happening, it is a good idea to print out +thermodynamic info frequently (e.g. every timestep) via the +"thermo"_thermo.html so you can monitor what is happening. +Visualizing the atom movement is also a good idea to insure your model +is behaving as you expect. + +In parallel, one way LAMMPS can hang is due to how different MPI +implementations handle buffering of messages. If the code hangs +without an error message, it may be that you need to specify an MPI +setting or two (usually via an environment variable) to enable +buffering or boost the sizes of messages that can be buffered. diff --git a/doc/src/Section_errors.txt b/doc/src/Errors_messages.txt similarity index 87% rename from doc/src/Section_errors.txt rename to doc/src/Errors_messages.txt index 1cc72b2a9f6d3edeef43814f770e9c205b109461..39eabbd232dcaf447eed51a8ff9a682c08d6106d 100644 --- a/doc/src/Section_errors.txt +++ b/doc/src/Errors_messages.txt @@ -1,6 +1,5 @@ -"Previous Section"_Section_python.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next -Section"_Section_history.html :c +"Higher level section"_Errors.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -8,185 +7,27 @@ Section"_Section_history.html :c :line -12. Errors :h2 +Error messages :h3 -This section describes the errors you can encounter when using LAMMPS, -either conceptually, or as printed out by the program. +This is an alphabetic list of the ERROR messages LAMMPS prints out and +the reason why. If the explanation here is not sufficient, the +documentation for the offending command may help. Error messages also +list the source file and line number where the error was generated. +For example, a message like this: -12.1 "Common problems"_#err_1 -12.2 "Reporting bugs"_#err_2 -12.3 "Error & warning messages"_#err_3 :all(b) - -:line -:line - -12.1 Common problems :link(err_1),h4 - -If two LAMMPS runs do not produce the exact same answer on different -machines or different numbers of processors, this is typically not a -bug. In theory you should get identical answers on any number of -processors and on any machine. In practice, numerical round-off can -cause slight differences and eventual divergence of molecular dynamics -phase space trajectories within a few 100s or few 1000s of timesteps. -However, the statistical properties of the two runs (e.g. average -energy or temperature) should still be the same. - -If the "velocity"_velocity.html command is used to set initial atom -velocities, a particular atom can be assigned a different velocity -when the problem is run on a different number of processors or on -different machines. If this happens, the phase space trajectories of -the two simulations will rapidly diverge. See the discussion of the -{loop} option in the "velocity"_velocity.html command for details and -options that avoid this issue. - -Similarly, the "create_atoms"_create_atoms.html command generates a -lattice of atoms. For the same physical system, the ordering and -numbering of atoms by atom ID may be different depending on the number -of processors. - -Some commands use random number generators which may be setup to -produce different random number streams on each processor and hence -will produce different effects when run on different numbers of -processors. A commonly-used example is the "fix -langevin"_fix_langevin.html command for thermostatting. - -A LAMMPS simulation typically has two stages, setup and run. Most -LAMMPS errors are detected at setup time; others like a bond -stretching too far may not occur until the middle of a run. - -LAMMPS tries to flag errors and print informative error messages so -you can fix the problem. For most errors it will also print the last -input script command that it was processing. Of course, LAMMPS cannot -figure out your physics or numerical mistakes, like choosing too big a -timestep, specifying erroneous force field coefficients, or putting 2 -atoms on top of each other! If you run into errors that LAMMPS -doesn't catch that you think it should flag, please send an email to -the "developers"_http://lammps.sandia.gov/authors.html. - -If you get an error message about an invalid command in your input -script, you can determine what command is causing the problem by -looking in the log.lammps file or using the "echo command"_echo.html -to see it on the screen. If you get an error like "Invalid ... -style", with ... being fix, compute, pair, etc, it means that you -mistyped the style name or that the command is part of an optional -package which was not compiled into your executable. The list of -available styles in your executable can be listed by using "the -h -command-line argument"_Section_start.html#start_6. The installation -and compilation of optional packages is explained in the "installation -instructions"_Section_start.html#start_3. - -For a given command, LAMMPS expects certain arguments in a specified -order. If you mess this up, LAMMPS will often flag the error, but it -may also simply read a bogus argument and assign a value that is -valid, but not what you wanted. E.g. trying to read the string "abc" -as an integer value of 0. Careful reading of the associated doc page -for the command should allow you to fix these problems. In most cases, -where LAMMPS expects to read a number, either integer or floating point, -it performs a stringent test on whether the provided input actually -is an integer or floating-point number, respectively, and reject the -input with an error message (for instance, when an integer is required, -but a floating-point number 1.0 is provided): - -ERROR: Expected integer parameter in input script or data file :pre - -Some commands allow for using variable references in place of numeric -constants so that the value can be evaluated and may change over the -course of a run. This is typically done with the syntax {v_name} for a -parameter, where name is the name of the variable. On the other hand, -immediate variable expansion with the syntax ${name} is performed while -reading the input and before parsing commands, - -NOTE: Using a variable reference (i.e. {v_name}) is only allowed if -the documentation of the corresponding command explicitly says it is. - -Generally, LAMMPS will print a message to the screen and logfile and -exit gracefully when it encounters a fatal error. Sometimes it will -print a WARNING to the screen and logfile and continue on; you can -decide if the WARNING is important or not. A WARNING message that is -generated in the middle of a run is only printed to the screen, not to -the logfile, to avoid cluttering up thermodynamic output. If LAMMPS -crashes or hangs without spitting out an error message first then it -could be a bug (see "this section"_#err_2) or one of the following -cases: - -LAMMPS runs in the available memory a processor allows to be -allocated. Most reasonable MD runs are compute limited, not memory -limited, so this shouldn't be a bottleneck on most platforms. Almost -all large memory allocations in the code are done via C-style malloc's -which will generate an error message if you run out of memory. -Smaller chunks of memory are allocated via C++ "new" statements. If -you are unlucky you could run out of memory just when one of these -small requests is made, in which case the code will crash or hang (in -parallel), since LAMMPS doesn't trap on those errors. - -Illegal arithmetic can cause LAMMPS to run slow or crash. This is -typically due to invalid physics and numerics that your simulation is -computing. If you see wild thermodynamic values or NaN values in your -LAMMPS output, something is wrong with your simulation. If you -suspect this is happening, it is a good idea to print out -thermodynamic info frequently (e.g. every timestep) via the -"thermo"_thermo.html so you can monitor what is happening. -Visualizing the atom movement is also a good idea to insure your model -is behaving as you expect. - -In parallel, one way LAMMPS can hang is due to how different MPI -implementations handle buffering of messages. If the code hangs -without an error message, it may be that you need to specify an MPI -setting or two (usually via an environment variable) to enable -buffering or boost the sizes of messages that can be buffered. - -:line - -12.2 Reporting bugs :link(err_2),h4 - -If you are confident that you have found a bug in LAMMPS, follow these -steps. - -Check the "New features and bug -fixes"_http://lammps.sandia.gov/bug.html section of the "LAMMPS WWW -site"_lws to see if the bug has already been reported or fixed or the -"Unfixed bug"_http://lammps.sandia.gov/unbug.html to see if a fix is -pending. - -Check the "mailing list"_http://lammps.sandia.gov/mail.html -to see if it has been discussed before. - -If not, send an email to the mailing list describing the problem with -any ideas you have as to what is causing it or where in the code the -problem might be. The developers will ask for more info if needed, -such as an input script or data files. - -The most useful thing you can do to help us fix the bug is to isolate -the problem. Run it on the smallest number of atoms and fewest number -of processors and with the simplest input script that reproduces the -bug and try to identify what command or combination of commands is -causing the problem. - -As a last resort, you can send an email directly to the -"developers"_http://lammps.sandia.gov/authors.html. - -:line - -12.3 Error & warning messages :h3,link(err_3) - -These are two alphabetic lists of the "ERROR"_#error and -"WARNING"_#warn messages LAMMPS prints out and the reason why. If the -explanation here is not sufficient, the documentation for the -offending command may help. -Error and warning messages also list the source file and line number -where the error was generated. For example, this message - -ERROR: Illegal velocity command (velocity.cpp:78) +ERROR: Illegal velocity command (velocity.cpp:78) :pre means that line #78 in the file src/velocity.cpp generated the error. Looking in the source code may help you figure out what went wrong. Note that error messages from "user-contributed -packages"_Section_start.html#start_3 are not listed here. If such an -error occurs and is not self-explanatory, you'll need to look in the -source code or contact the author of the package. +packages"_Packages_user.html are not listed here. If such an error +occurs and is not self-explanatory, you'll need to look in the source +code or contact the author of the package. -Errors: :h3,link(error) +Doc page with "WARNING messages"_Errors_warnings.html + +:line :dlb @@ -1565,15 +1406,6 @@ This operation is not allowed. :dd This operation is not allowed. :dd -{Cannot use -cuda on and -kokkos on together} :dt - -This is not allowed since both packages can use GPUs. :dd - -{Cannot use -cuda on without USER-CUDA installed} :dt - -The USER-CUDA package must be installed via "make yes-user-cuda" -before LAMMPS is built. :dd - {Cannot use -kokkos on without KOKKOS installed} :dt Self-explanatory. :dd @@ -1597,11 +1429,6 @@ solver/pair style. :dd This is a current restriction of this command. :dd -{Cannot use GPU package with USER-CUDA package enabled} :dt - -You cannot use both the GPU and USER-CUDA packages -together. Use one or the other. :dd - {Cannot use Kokkos pair style with rRESPA inner/middle} :dt Self-explanatory. :dd @@ -8252,12 +8079,6 @@ Self-explanatory. :dd The package command cannot be used afer a read_data, read_restart, or create_box command. :dd -{Package cuda command without USER-CUDA package enabled} :dt - -The USER-CUDA package must be installed via "make yes-user-cuda" -before LAMMPS is built, and the "-c on" must be used to enable the -package. :dd - {Package gpu command without GPU package installed} :dt The GPU package must be installed via "make yes-gpu" before LAMMPS is @@ -10230,22 +10051,6 @@ it in different ways. :dd Self-explanatory. :dd -{USER-CUDA mode requires CUDA variant of min style} :dt - -CUDA mode is enabled, so the min style must include a cuda suffix. :dd - -{USER-CUDA mode requires CUDA variant of run style} :dt - -CUDA mode is enabled, so the run style must include a cuda suffix. :dd - -{USER-CUDA package does not yet support comm_style tiled} :dt - -Self-explanatory. :dd - -{USER-CUDA package requires a cuda enabled atom_style} :dt - -Self-explanatory. :dd - {Unable to initialize accelerator for use} :dt There was a problem initializing an accelerator for the gpu package :dd @@ -10494,10 +10299,6 @@ Must use remap v option with fix deform with this pair style. :dd If fix deform is used, the remap v option is required. :dd -{Using suffix cuda without USER-CUDA package enabled} :dt - -Self-explanatory. :dd - {Using suffix gpu without GPU package installed} :dt Self-explanatory. :dd @@ -11036,904 +10837,3 @@ Self-explanatory. :dd Self-explanatory. :dd :dle - -Warnings: :h3,link(warn) - -:dlb - -{Adjusting Coulombic cutoff for MSM, new cutoff = %g} :dt - -The adjust/cutoff command is turned on and the Coulombic cutoff has been -adjusted to match the user-specified accuracy. :dd - -{Angle atoms missing at step %ld} :dt - -One or more of 3 atoms needed to compute a particular angle are -missing on this processor. Typically this is because the pairwise -cutoff is set too short or the angle has blown apart and an atom is -too far away. :dd - -{Angle style in data file differs from currently defined angle style} :dt - -Self-explanatory. :dd - -{Atom style in data file differs from currently defined atom style} :dt - -Self-explanatory. :dd - -{Bond atom missing in box size check} :dt - -The 2nd atoms needed to compute a particular bond is missing on this -processor. Typically this is because the pairwise cutoff is set too -short or the bond has blown apart and an atom is too far away. :dd - -{Bond atom missing in image check} :dt - -The 2nd atom in a particular bond is missing on this processor. -Typically this is because the pairwise cutoff is set too short or the -bond has blown apart and an atom is too far away. :dd - -{Bond atoms missing at step %ld} :dt - -The 2nd atom needed to compute a particular bond is missing on this -processor. Typically this is because the pairwise cutoff is set too -short or the bond has blown apart and an atom is too far away. :dd - -{Bond style in data file differs from currently defined bond style} :dt - -Self-explanatory. :dd - -{Bond/angle/dihedral extent > half of periodic box length} :dt - -This is a restriction because LAMMPS can be confused about which image -of an atom in the bonded interaction is the correct one to use. -"Extent" in this context means the maximum end-to-end length of the -bond/angle/dihedral. LAMMPS computes this by taking the maximum bond -length, multiplying by the number of bonds in the interaction (e.g. 3 -for a dihedral) and adding a small amount of stretch. :dd - -{Both groups in compute group/group have a net charge; the Kspace boundary correction to energy will be non-zero} :dt - -Self-explanatory. :dd - -{Calling write_dump before a full system init.} :dt - -The write_dump command is used before the system has been fully -initialized as part of a 'run' or 'minimize' command. Not all dump -styles and features are fully supported at this point and thus the -command may fail or produce incomplete or incorrect output. Insert -a "run 0" command, if a full system init is required. :dd - -{Cannot count rigid body degrees-of-freedom before bodies are fully initialized} :dt - -This means the temperature associated with the rigid bodies may be -incorrect on this timestep. :dd - -{Cannot count rigid body degrees-of-freedom before bodies are initialized} :dt - -This means the temperature associated with the rigid bodies may be -incorrect on this timestep. :dd - -{Cannot include log terms without 1/r terms; setting flagHI to 1} :dt - -Self-explanatory. :dd - -{Cannot include log terms without 1/r terms; setting flagHI to 1.} :dt - -Self-explanatory. :dd - -{Charges are set, but coulombic solver is not used} :dt - -Self-explanatory. :dd - -{Charges did not converge at step %ld: %lg} :dt - -Self-explanatory. :dd - -{Communication cutoff is too small for SNAP micro load balancing, increased to %lf} :dt - -Self-explanatory. :dd - -{Compute cna/atom cutoff may be too large to find ghost atom neighbors} :dt - -The neighbor cutoff used may not encompass enough ghost atoms -to perform this operation correctly. :dd - -{Computing temperature of portions of rigid bodies} :dt - -The group defined by the temperature compute does not encompass all -the atoms in one or more rigid bodies, so the change in -degrees-of-freedom for the atoms in those partial rigid bodies will -not be accounted for. :dd - -{Create_bonds max distance > minimum neighbor cutoff} :dt - -This means atom pairs for some atom types may not be in the neighbor -list and thus no bond can be created between them. :dd - -{Delete_atoms cutoff > minimum neighbor cutoff} :dt - -This means atom pairs for some atom types may not be in the neighbor -list and thus an atom in that pair cannot be deleted. :dd - -{Dihedral atoms missing at step %ld} :dt - -One or more of 4 atoms needed to compute a particular dihedral are -missing on this processor. Typically this is because the pairwise -cutoff is set too short or the dihedral has blown apart and an atom is -too far away. :dd - -{Dihedral problem} :dt - -Conformation of the 4 listed dihedral atoms is extreme; you may want -to check your simulation geometry. :dd - -{Dihedral problem: %d %ld %d %d %d %d} :dt - -Conformation of the 4 listed dihedral atoms is extreme; you may want -to check your simulation geometry. :dd - -{Dihedral style in data file differs from currently defined dihedral style} :dt - -Self-explanatory. :dd - -{Dump dcd/xtc timestamp may be wrong with fix dt/reset} :dt - -If the fix changes the timestep, the dump dcd file will not -reflect the change. :dd - -{Energy due to X extra global DOFs will be included in minimizer energies} :dt - -When using fixes like box/relax, the potential energy used by the minimizer -is augmented by an additional energy provided by the fix. Thus the printed -converged energy may be different from the total potential energy. :dd - -{Energy tally does not account for 'zero yes'} :dt - -The energy removed by using the 'zero yes' flag is not accounted -for in the energy tally and thus energy conservation cannot be -monitored in this case. :dd - -{Estimated error in splitting of dispersion coeffs is %g} :dt - -Error is greater than 0.0001 percent. :dd - -{Ewald/disp Newton solver failed, using old method to estimate g_ewald} :dt - -Self-explanatory. Choosing a different cutoff value may help. :dd - -{FENE bond too long} :dt - -A FENE bond has stretched dangerously far. It's interaction strength -will be truncated to attempt to prevent the bond from blowing up. :dd - -{FENE bond too long: %ld %d %d %g} :dt - -A FENE bond has stretched dangerously far. It's interaction strength -will be truncated to attempt to prevent the bond from blowing up. :dd - -{FENE bond too long: %ld %g} :dt - -A FENE bond has stretched dangerously far. It's interaction strength -will be truncated to attempt to prevent the bond from blowing up. :dd - -{Fix SRD walls overlap but fix srd overlap not set} :dt - -You likely want to set this in your input script. :dd - -{Fix bond/swap will ignore defined angles} :dt - -See the doc page for fix bond/swap for more info on this -restriction. :dd - -{Fix deposit near setting < possible overlap separation %g} :dt - -This test is performed for finite size particles with a diameter, not -for point particles. The near setting is smaller than the particle -diameter which can lead to overlaps. :dd - -{Fix evaporate may delete atom with non-zero molecule ID} :dt - -This is probably an error, since you should not delete only one atom -of a molecule. :dd - -{Fix gcmc using full_energy option} :dt - -Fix gcmc has automatically turned on the full_energy option since it -is required for systems like the one specified by the user. User input -included one or more of the following: kspace, triclinic, a hybrid -pair style, an eam pair style, or no "single" function for the pair -style. :dd - -{Fix property/atom mol or charge w/out ghost communication} :dt - -A model typically needs these properties defined for ghost atoms. :dd - -{Fix qeq CG convergence failed (%g) after %d iterations at %ld step} :dt - -Self-explanatory. :dd - -{Fix qeq has non-zero lower Taper radius cutoff} :dt - -Absolute value must be <= 0.01. :dd - -{Fix qeq has very low Taper radius cutoff} :dt - -Value should typically be >= 5.0. :dd - -{Fix qeq/dynamic tolerance may be too small for damped dynamics} :dt - -Self-explanatory. :dd - -{Fix qeq/fire tolerance may be too small for damped fires} :dt - -Self-explanatory. :dd - -{Fix rattle should come after all other integration fixes} :dt - -This fix is designed to work after all other integration fixes change -atom positions. Thus it should be the last integration fix specified. -If not, it will not satisfy the desired constraints as well as it -otherwise would. :dd - -{Fix recenter should come after all other integration fixes} :dt - -Other fixes may change the position of the center-of-mass, so -fix recenter should come last. :dd - -{Fix srd SRD moves may trigger frequent reneighboring} :dt - -This is because the SRD particles may move long distances. :dd - -{Fix srd grid size > 1/4 of big particle diameter} :dt - -This may cause accuracy problems. :dd - -{Fix srd particle moved outside valid domain} :dt - -This may indicate a problem with your simulation parameters. :dd - -{Fix srd particles may move > big particle diameter} :dt - -This may cause accuracy problems. :dd - -{Fix srd viscosity < 0.0 due to low SRD density} :dt - -This may cause accuracy problems. :dd - -{Fix thermal/conductivity comes before fix ave/spatial} :dt - -The order of these 2 fixes in your input script is such that fix -thermal/conductivity comes first. If you are using fix ave/spatial to -measure the temperature profile induced by fix viscosity, then this -may cause a glitch in the profile since you are averaging immediately -after swaps have occurred. Flipping the order of the 2 fixes -typically helps. :dd - -{Fix viscosity comes before fix ave/spatial} :dt - -The order of these 2 fixes in your input script is such that -fix viscosity comes first. If you are using fix ave/spatial -to measure the velocity profile induced by fix viscosity, then -this may cause a glitch in the profile since you are averaging -immediately after swaps have occurred. Flipping the order -of the 2 fixes typically helps. :dd - -{Fixes cannot send data in Kokkos communication, switching to classic communication} :dt - -This is current restriction with Kokkos. :dd - -{For better accuracy use 'pair_modify table 0'} :dt - -The user-specified force accuracy cannot be achieved unless the table -feature is disabled by using 'pair_modify table 0'. :dd - -{Geometric mixing assumed for 1/r^6 coefficients} :dt - -Self-explanatory. :dd - -{Group for fix_modify temp != fix group} :dt - -The fix_modify command is specifying a temperature computation that -computes a temperature on a different group of atoms than the fix -itself operates on. This is probably not what you want to do. :dd - -{H matrix size has been exceeded: m_fill=%d H.m=%d\n} :dt - -This is the size of the matrix. :dd - -{Ignoring unknown or incorrect info command flag} :dt - -Self-explanatory. An unknown argument was given to the info command. -Compare your input with the documentation. :dd - -{Improper atoms missing at step %ld} :dt - -One or more of 4 atoms needed to compute a particular improper are -missing on this processor. Typically this is because the pairwise -cutoff is set too short or the improper has blown apart and an atom is -too far away. :dd - -{Improper problem: %d %ld %d %d %d %d} :dt - -Conformation of the 4 listed improper atoms is extreme; you may want -to check your simulation geometry. :dd - -{Improper style in data file differs from currently defined improper style} :dt - -Self-explanatory. :dd - -{Inconsistent image flags} :dt - -The image flags for a pair on bonded atoms appear to be inconsistent. -Inconsistent means that when the coordinates of the two atoms are -unwrapped using the image flags, the two atoms are far apart. -Specifically they are further apart than half a periodic box length. -Or they are more than a box length apart in a non-periodic dimension. -This is usually due to the initial data file not having correct image -flags for the 2 atoms in a bond that straddles a periodic boundary. -They should be different by 1 in that case. This is a warning because -inconsistent image flags will not cause problems for dynamics or most -LAMMPS simulations. However they can cause problems when such atoms -are used with the fix rigid or replicate commands. Note that if you -have an infinite periodic crystal with bonds then it is impossible to -have fully consistent image flags, since some bonds will cross -periodic boundaries and connect two atoms with the same image -flag. :dd - -{KIM Model does not provide 'energy'; Potential energy will be zero} :dt - -Self-explanatory. :dd - -{KIM Model does not provide 'forces'; Forces will be zero} :dt - -Self-explanatory. :dd - -{KIM Model does not provide 'particleEnergy'; energy per atom will be zero} :dt - -Self-explanatory. :dd - -{KIM Model does not provide 'particleVirial'; virial per atom will be zero} :dt - -Self-explanatory. :dd - -{Kspace_modify slab param < 2.0 may cause unphysical behavior} :dt - -The kspace_modify slab parameter should be larger to insure periodic -grids padded with empty space do not overlap. :dd - -{Less insertions than requested} :dt - -The fix pour command was unsuccessful at finding open space -for as many particles as it tried to insert. :dd - -{Library error in lammps_gather_atoms} :dt - -This library function cannot be used if atom IDs are not defined -or are not consecutively numbered. :dd - -{Library error in lammps_scatter_atoms} :dt - -This library function cannot be used if atom IDs are not defined or -are not consecutively numbered, or if no atom map is defined. See the -atom_modify command for details about atom maps. :dd - -{Lost atoms via change_box: original %ld current %ld} :dt - -The command options you have used caused atoms to be lost. :dd - -{Lost atoms via displace_atoms: original %ld current %ld} :dt - -The command options you have used caused atoms to be lost. :dd - -{Lost atoms: original %ld current %ld} :dt - -Lost atoms are checked for each time thermo output is done. See the -thermo_modify lost command for options. Lost atoms usually indicate -bad dynamics, e.g. atoms have been blown far out of the simulation -box, or moved further than one processor's sub-domain away before -reneighboring. :dd - -{MSM mesh too small, increasing to 2 points in each direction} :dt - -Self-explanatory. :dd - -{Mismatch between velocity and compute groups} :dt - -The temperature computation used by the velocity command will not be -on the same group of atoms that velocities are being set for. :dd - -{Mixing forced for lj coefficients} :dt - -Self-explanatory. :dd - -{Molecule attributes do not match system attributes} :dt - -An attribute is specified (e.g. diameter, charge) that is -not defined for the specified atom style. :dd - -{Molecule has bond topology but no special bond settings} :dt - -This means the bonded atoms will not be excluded in pair-wise -interactions. :dd - -{Molecule template for create_atoms has multiple molecules} :dt - -The create_atoms command will only create molecules of a single type, -i.e. the first molecule in the template. :dd - -{Molecule template for fix gcmc has multiple molecules} :dt - -The fix gcmc command will only create molecules of a single type, -i.e. the first molecule in the template. :dd - -{Molecule template for fix shake has multiple molecules} :dt - -The fix shake command will only recognize molecules of a single -type, i.e. the first molecule in the template. :dd - -{More than one compute centro/atom} :dt - -It is not efficient to use compute centro/atom more than once. :dd - -{More than one compute cluster/atom} :dt - -It is not efficient to use compute cluster/atom more than once. :dd - -{More than one compute cna/atom defined} :dt - -It is not efficient to use compute cna/atom more than once. :dd - -{More than one compute contact/atom} :dt - -It is not efficient to use compute contact/atom more than once. :dd - -{More than one compute coord/atom} :dt - -It is not efficient to use compute coord/atom more than once. :dd - -{More than one compute damage/atom} :dt - -It is not efficient to use compute ke/atom more than once. :dd - -{More than one compute dilatation/atom} :dt - -Self-explanatory. :dd - -{More than one compute erotate/sphere/atom} :dt - -It is not efficient to use compute erorate/sphere/atom more than once. :dd - -{More than one compute hexorder/atom} :dt - -It is not efficient to use compute hexorder/atom more than once. :dd - -{More than one compute ke/atom} :dt - -It is not efficient to use compute ke/atom more than once. :dd - -{More than one compute orientorder/atom} :dt - -It is not efficient to use compute orientorder/atom more than once. :dd - -{More than one compute plasticity/atom} :dt - -Self-explanatory. :dd - -{More than one compute sna/atom} :dt - -Self-explanatory. :dd - -{More than one compute snad/atom} :dt - -Self-explanatory. :dd - -{More than one compute snav/atom} :dt - -Self-explanatory. :dd - -{More than one fix poems} :dt - -It is not efficient to use fix poems more than once. :dd - -{More than one fix rigid} :dt - -It is not efficient to use fix rigid more than once. :dd - -{Neighbor exclusions used with KSpace solver may give inconsistent Coulombic energies} :dt - -This is because excluding specific pair interactions also excludes -them from long-range interactions which may not be the desired effect. -The special_bonds command handles this consistently by insuring -excluded (or weighted) 1-2, 1-3, 1-4 interactions are treated -consistently by both the short-range pair style and the long-range -solver. This is not done for exclusions of charged atom pairs via the -neigh_modify exclude command. :dd - -{New thermo_style command, previous thermo_modify settings will be lost} :dt - -If a thermo_style command is used after a thermo_modify command, the -settings changed by the thermo_modify command will be reset to their -default values. This is because the thermo_modify command acts on -the currently defined thermo style, and a thermo_style command creates -a new style. :dd - -{No Kspace calculation with verlet/split} :dt - -The 2nd partition performs a kspace calculation so the kspace_style -command must be used. :dd - -{No automatic unit conversion to XTC file format conventions possible for units lj} :dt - -This means no scaling will be performed. :dd - -{No fixes defined, atoms won't move} :dt - -If you are not using a fix like nve, nvt, npt then atom velocities and -coordinates will not be updated during timestepping. :dd - -{No joints between rigid bodies, use fix rigid instead} :dt - -The bodies defined by fix poems are not connected by joints. POEMS -will integrate the body motion, but it would be more efficient to use -fix rigid. :dd - -{Not using real units with pair reax} :dt - -This is most likely an error, unless you have created your own ReaxFF -parameter file in a different set of units. :dd - -{Number of MSM mesh points changed to be a multiple of 2} :dt - -MSM requires that the number of grid points in each direction be a multiple -of two and the number of grid points in one or more directions have been -adjusted to meet this requirement. :dd - -{OMP_NUM_THREADS environment is not set.} :dt - -This environment variable must be set appropriately to use the -USER-OMP package. :dd - -{One or more atoms are time integrated more than once} :dt - -This is probably an error since you typically do not want to -advance the positions or velocities of an atom more than once -per timestep. :dd - -{One or more chunks do not contain all atoms in molecule} :dt - -This may not be what you intended. :dd - -{One or more dynamic groups may not be updated at correct point in timestep} :dt - -If there are other fixes that act immediately after the initial stage -of time integration within a timestep (i.e. after atoms move), then -the command that sets up the dynamic group should appear after those -fixes. This will insure that dynamic group assignments are made -after all atoms have moved. :dd - -{One or more respa levels compute no forces} :dt - -This is computationally inefficient. :dd - -{Pair COMB charge %.10f with force %.10f hit max barrier} :dt - -Something is possibly wrong with your model. :dd - -{Pair COMB charge %.10f with force %.10f hit min barrier} :dt - -Something is possibly wrong with your model. :dd - -{Pair brownian needs newton pair on for momentum conservation} :dt - -Self-explanatory. :dd - -{Pair dpd needs newton pair on for momentum conservation} :dt - -Self-explanatory. :dd - -{Pair dsmc: num_of_collisions > number_of_A} :dt - -Collision model in DSMC is breaking down. :dd - -{Pair dsmc: num_of_collisions > number_of_B} :dt - -Collision model in DSMC is breaking down. :dd - -{Pair style in data file differs from currently defined pair style} :dt - -Self-explanatory. :dd - -{Particle deposition was unsuccessful} :dt - -The fix deposit command was not able to insert as many atoms as -needed. The requested volume fraction may be too high, or other atoms -may be in the insertion region. :dd - -{Proc sub-domain size < neighbor skin, could lead to lost atoms} :dt - -The decomposition of the physical domain (likely due to load -balancing) has led to a processor's sub-domain being smaller than the -neighbor skin in one or more dimensions. Since reneighboring is -triggered by atoms moving the skin distance, this may lead to lost -atoms, if an atom moves all the way across a neighboring processor's -sub-domain before reneighboring is triggered. :dd - -{Reducing PPPM order b/c stencil extends beyond nearest neighbor processor} :dt - -This may lead to a larger grid than desired. See the kspace_modify overlap -command to prevent changing of the PPPM order. :dd - -{Reducing PPPMDisp Coulomb order b/c stencil extends beyond neighbor processor} :dt - -This may lead to a larger grid than desired. See the kspace_modify overlap -command to prevent changing of the PPPM order. :dd - -{Reducing PPPMDisp dispersion order b/c stencil extends beyond neighbor processor} :dt - -This may lead to a larger grid than desired. See the kspace_modify overlap -command to prevent changing of the PPPM order. :dd - -{Replacing a fix, but new group != old group} :dt - -The ID and style of a fix match for a fix you are changing with a fix -command, but the new group you are specifying does not match the old -group. :dd - -{Replicating in a non-periodic dimension} :dt - -The parameters for a replicate command will cause a non-periodic -dimension to be replicated; this may cause unwanted behavior. :dd - -{Resetting reneighboring criteria during PRD} :dt - -A PRD simulation requires that neigh_modify settings be delay = 0, -every = 1, check = yes. Since these settings were not in place, -LAMMPS changed them and will restore them to their original values -after the PRD simulation. :dd - -{Resetting reneighboring criteria during TAD} :dt - -A TAD simulation requires that neigh_modify settings be delay = 0, -every = 1, check = yes. Since these settings were not in place, -LAMMPS changed them and will restore them to their original values -after the PRD simulation. :dd - -{Resetting reneighboring criteria during minimization} :dt - -Minimization requires that neigh_modify settings be delay = 0, every = -1, check = yes. Since these settings were not in place, LAMMPS -changed them and will restore them to their original values after the -minimization. :dd - -{Restart file used different # of processors} :dt - -The restart file was written out by a LAMMPS simulation running on a -different number of processors. Due to round-off, the trajectories of -your restarted simulation may diverge a little more quickly than if -you ran on the same # of processors. :dd - -{Restart file used different 3d processor grid} :dt - -The restart file was written out by a LAMMPS simulation running on a -different 3d grid of processors. Due to round-off, the trajectories -of your restarted simulation may diverge a little more quickly than if -you ran on the same # of processors. :dd - -{Restart file used different boundary settings, using restart file values} :dt - -Your input script cannot change these restart file settings. :dd - -{Restart file used different newton bond setting, using restart file value} :dt - -The restart file value will override the setting in the input script. :dd - -{Restart file used different newton pair setting, using input script value} :dt - -The input script value will override the setting in the restart file. :dd - -{Restrain problem: %d %ld %d %d %d %d} :dt - -Conformation of the 4 listed dihedral atoms is extreme; you may want -to check your simulation geometry. :dd - -{Running PRD with only one replica} :dt - -This is allowed, but you will get no parallel speed-up. :dd - -{SRD bin shifting turned on due to small lamda} :dt - -This is done to try to preserve accuracy. :dd - -{SRD bin size for fix srd differs from user request} :dt - -Fix SRD had to adjust the bin size to fit the simulation box. See the -cubic keyword if you want this message to be an error vs warning. :dd - -{SRD bins for fix srd are not cubic enough} :dt - -The bin shape is not within tolerance of cubic. See the cubic -keyword if you want this message to be an error vs warning. :dd - -{SRD particle %d started inside big particle %d on step %ld bounce %d} :dt - -See the inside keyword if you want this message to be an error vs -warning. :dd - -{SRD particle %d started inside wall %d on step %ld bounce %d} :dt - -See the inside keyword if you want this message to be an error vs -warning. :dd - -{Shake determinant < 0.0} :dt - -The determinant of the quadratic equation being solved for a single -cluster specified by the fix shake command is numerically suspect. LAMMPS -will set it to 0.0 and continue. :dd - -{Shell command '%s' failed with error '%s'} :dt - -Self-explanatory. :dd - -{Shell command returned with non-zero status} :dt - -This may indicate the shell command did not operate as expected. :dd - -{Should not allow rigid bodies to bounce off relecting walls} :dt - -LAMMPS allows this, but their dynamics are not computed correctly. :dd - -{Should not use fix nve/limit with fix shake or fix rattle} :dt - -This will lead to invalid constraint forces in the SHAKE/RATTLE -computation. :dd - -{Simulations might be very slow because of large number of structure factors} :dt - -Self-explanatory. :dd - -{Slab correction not needed for MSM} :dt - -Slab correction is intended to be used with Ewald or PPPM and is not needed by MSM. :dd - -{System is not charge neutral, net charge = %g} :dt - -The total charge on all atoms on the system is not 0.0. -For some KSpace solvers this is only a warning. :dd - -{Table inner cutoff >= outer cutoff} :dt - -You specified an inner cutoff for a Coulombic table that is longer -than the global cutoff. Probably not what you wanted. :dd - -{Temperature for MSST is not for group all} :dt - -User-assigned temperature to MSST fix does not compute temperature for -all atoms. Since MSST computes a global pressure, the kinetic energy -contribution from the temperature is assumed to also be for all atoms. -Thus the pressure used by MSST could be inaccurate. :dd - -{Temperature for NPT is not for group all} :dt - -User-assigned temperature to NPT fix does not compute temperature for -all atoms. Since NPT computes a global pressure, the kinetic energy -contribution from the temperature is assumed to also be for all atoms. -Thus the pressure used by NPT could be inaccurate. :dd - -{Temperature for fix modify is not for group all} :dt - -The temperature compute is being used with a pressure calculation -which does operate on group all, so this may be inconsistent. :dd - -{Temperature for thermo pressure is not for group all} :dt - -User-assigned temperature to thermo via the thermo_modify command does -not compute temperature for all atoms. Since thermo computes a global -pressure, the kinetic energy contribution from the temperature is -assumed to also be for all atoms. Thus the pressure printed by thermo -could be inaccurate. :dd - -{The fix ave/spatial command has been replaced by the more flexible fix ave/chunk and compute chunk/atom commands -- fix ave/spatial will be removed in the summer of 2015} :dt - -Self-explanatory. :dd - -{The minimizer does not re-orient dipoles when using fix efield} :dt - -This means that only the atom coordinates will be minimized, -not the orientation of the dipoles. :dd - -{Too many common neighbors in CNA %d times} :dt - -More than the maximum # of neighbors was found multiple times. This -was unexpected. :dd - -{Too many inner timesteps in fix ttm} :dt - -Self-explanatory. :dd - -{Too many neighbors in CNA for %d atoms} :dt - -More than the maximum # of neighbors was found multiple times. This -was unexpected. :dd - -{Triclinic box skew is large} :dt - -The displacement in a skewed direction is normally required to be less -than half the box length in that dimension. E.g. the xy tilt must be -between -half and +half of the x box length. You have relaxed the -constraint using the box tilt command, but the warning means that a -LAMMPS simulation may be inefficient as a result. :dd - -{Use special bonds = 0,1,1 with bond style fene} :dt - -Most FENE models need this setting for the special_bonds command. :dd - -{Use special bonds = 0,1,1 with bond style fene/expand} :dt - -Most FENE models need this setting for the special_bonds command. :dd - -{Using a manybody potential with bonds/angles/dihedrals and special_bond exclusions} :dt - -This is likely not what you want to do. The exclusion settings will -eliminate neighbors in the neighbor list, which the manybody potential -needs to calculated its terms correctly. :dd - -{Using compute temp/deform with inconsistent fix deform remap option} :dt - -Fix nvt/sllod assumes deforming atoms have a velocity profile provided -by "remap v" or "remap none" as a fix deform option. :dd - -{Using compute temp/deform with no fix deform defined} :dt - -This is probably an error, since it makes little sense to use -compute temp/deform in this case. :dd - -{Using fix srd with box deformation but no SRD thermostat} :dt - -The deformation will heat the SRD particles so this can -be dangerous. :dd - -{Using kspace solver on system with no charge} :dt - -Self-explanatory. :dd - -{Using largest cut-off for lj/long/dipole/long long long} :dt - -Self-explanatory. :dd - -{Using largest cutoff for buck/long/coul/long} :dt - -Self-explanatory. :dd - -{Using largest cutoff for lj/long/coul/long} :dt - -Self-explanatory. :dd - -{Using largest cutoff for pair_style lj/long/tip4p/long} :dt - -Self-explanatory. :dd - -{Using package gpu without any pair style defined} :dt - -Self-explanatory. :dd - -{Using pair potential shift with pair_modify compute no} :dt - -The shift effects will thus not be computed. :dd - -{Using pair tail corrections with nonperiodic system} :dt - -This is probably a bogus thing to do, since tail corrections are -computed by integrating the density of a periodic system out to -infinity. :dd - -{Using pair tail corrections with pair_modify compute no} :dt - -The tail corrections will thus not be computed. :dd - -{pair style reax is now deprecated and will soon be retired. Users should switch to pair_style reax/c} :dt - -Self-explanatory. :dd - -:dle - diff --git a/doc/src/Errors_warnings.txt b/doc/src/Errors_warnings.txt new file mode 100644 index 0000000000000000000000000000000000000000..1da777043c975de136d486fac100485d51e25367 --- /dev/null +++ b/doc/src/Errors_warnings.txt @@ -0,0 +1,934 @@ +"Higher level section"_Errors.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Warning messages :h3 + +This is an alphabetic list of the WARNING messages LAMMPS prints out +and the reason why. If the explanation here is not sufficient, the +documentation for the offending command may help. Warning messages +also list the source file and line number where the warning was +generated. For example, a message lile this: + +WARNING: Bond atom missing in box size check (domain.cpp:187) :pre + +means that line #187 in the file src/domain.cpp generated the error. +Looking in the source code may help you figure out what went wrong. + +Note that warning messages from "user-contributed +packages"_Packages_user.html are not listed here. If such a warning +occurs and is not self-explanatory, you'll need to look in the source +code or contact the author of the package. + +Doc page with "ERROR messages"_Errors_messages.html + +:line + +:dlb + +{Adjusting Coulombic cutoff for MSM, new cutoff = %g} :dt + +The adjust/cutoff command is turned on and the Coulombic cutoff has been +adjusted to match the user-specified accuracy. :dd + +{Angle atoms missing at step %ld} :dt + +One or more of 3 atoms needed to compute a particular angle are +missing on this processor. Typically this is because the pairwise +cutoff is set too short or the angle has blown apart and an atom is +too far away. :dd + +{Angle style in data file differs from currently defined angle style} :dt + +Self-explanatory. :dd + +{Atom style in data file differs from currently defined atom style} :dt + +Self-explanatory. :dd + +{Bond atom missing in box size check} :dt + +The 2nd atoms needed to compute a particular bond is missing on this +processor. Typically this is because the pairwise cutoff is set too +short or the bond has blown apart and an atom is too far away. :dd + +{Bond atom missing in image check} :dt + +The 2nd atom in a particular bond is missing on this processor. +Typically this is because the pairwise cutoff is set too short or the +bond has blown apart and an atom is too far away. :dd + +{Bond atoms missing at step %ld} :dt + +The 2nd atom needed to compute a particular bond is missing on this +processor. Typically this is because the pairwise cutoff is set too +short or the bond has blown apart and an atom is too far away. :dd + +{Bond style in data file differs from currently defined bond style} :dt + +Self-explanatory. :dd + +{Bond/angle/dihedral extent > half of periodic box length} :dt + +This is a restriction because LAMMPS can be confused about which image +of an atom in the bonded interaction is the correct one to use. +"Extent" in this context means the maximum end-to-end length of the +bond/angle/dihedral. LAMMPS computes this by taking the maximum bond +length, multiplying by the number of bonds in the interaction (e.g. 3 +for a dihedral) and adding a small amount of stretch. :dd + +{Both groups in compute group/group have a net charge; the Kspace boundary correction to energy will be non-zero} :dt + +Self-explanatory. :dd + +{Calling write_dump before a full system init.} :dt + +The write_dump command is used before the system has been fully +initialized as part of a 'run' or 'minimize' command. Not all dump +styles and features are fully supported at this point and thus the +command may fail or produce incomplete or incorrect output. Insert +a "run 0" command, if a full system init is required. :dd + +{Cannot count rigid body degrees-of-freedom before bodies are fully initialized} :dt + +This means the temperature associated with the rigid bodies may be +incorrect on this timestep. :dd + +{Cannot count rigid body degrees-of-freedom before bodies are initialized} :dt + +This means the temperature associated with the rigid bodies may be +incorrect on this timestep. :dd + +{Cannot include log terms without 1/r terms; setting flagHI to 1} :dt + +Self-explanatory. :dd + +{Cannot include log terms without 1/r terms; setting flagHI to 1.} :dt + +Self-explanatory. :dd + +{Charges are set, but coulombic solver is not used} :dt + +Self-explanatory. :dd + +{Charges did not converge at step %ld: %lg} :dt + +Self-explanatory. :dd + +{Communication cutoff is too small for SNAP micro load balancing, increased to %lf} :dt + +Self-explanatory. :dd + +{Compute cna/atom cutoff may be too large to find ghost atom neighbors} :dt + +The neighbor cutoff used may not encompass enough ghost atoms +to perform this operation correctly. :dd + +{Computing temperature of portions of rigid bodies} :dt + +The group defined by the temperature compute does not encompass all +the atoms in one or more rigid bodies, so the change in +degrees-of-freedom for the atoms in those partial rigid bodies will +not be accounted for. :dd + +{Create_bonds max distance > minimum neighbor cutoff} :dt + +This means atom pairs for some atom types may not be in the neighbor +list and thus no bond can be created between them. :dd + +{Delete_atoms cutoff > minimum neighbor cutoff} :dt + +This means atom pairs for some atom types may not be in the neighbor +list and thus an atom in that pair cannot be deleted. :dd + +{Dihedral atoms missing at step %ld} :dt + +One or more of 4 atoms needed to compute a particular dihedral are +missing on this processor. Typically this is because the pairwise +cutoff is set too short or the dihedral has blown apart and an atom is +too far away. :dd + +{Dihedral problem} :dt + +Conformation of the 4 listed dihedral atoms is extreme; you may want +to check your simulation geometry. :dd + +{Dihedral problem: %d %ld %d %d %d %d} :dt + +Conformation of the 4 listed dihedral atoms is extreme; you may want +to check your simulation geometry. :dd + +{Dihedral style in data file differs from currently defined dihedral style} :dt + +Self-explanatory. :dd + +{Dump dcd/xtc timestamp may be wrong with fix dt/reset} :dt + +If the fix changes the timestep, the dump dcd file will not +reflect the change. :dd + +{Energy due to X extra global DOFs will be included in minimizer energies} :dt + +When using fixes like box/relax, the potential energy used by the minimizer +is augmented by an additional energy provided by the fix. Thus the printed +converged energy may be different from the total potential energy. :dd + +{Energy tally does not account for 'zero yes'} :dt + +The energy removed by using the 'zero yes' flag is not accounted +for in the energy tally and thus energy conservation cannot be +monitored in this case. :dd + +{Estimated error in splitting of dispersion coeffs is %g} :dt + +Error is greater than 0.0001 percent. :dd + +{Ewald/disp Newton solver failed, using old method to estimate g_ewald} :dt + +Self-explanatory. Choosing a different cutoff value may help. :dd + +{FENE bond too long} :dt + +A FENE bond has stretched dangerously far. It's interaction strength +will be truncated to attempt to prevent the bond from blowing up. :dd + +{FENE bond too long: %ld %d %d %g} :dt + +A FENE bond has stretched dangerously far. It's interaction strength +will be truncated to attempt to prevent the bond from blowing up. :dd + +{FENE bond too long: %ld %g} :dt + +A FENE bond has stretched dangerously far. It's interaction strength +will be truncated to attempt to prevent the bond from blowing up. :dd + +{Fix SRD walls overlap but fix srd overlap not set} :dt + +You likely want to set this in your input script. :dd + +{Fix bond/swap will ignore defined angles} :dt + +See the doc page for fix bond/swap for more info on this +restriction. :dd + +{Fix deposit near setting < possible overlap separation %g} :dt + +This test is performed for finite size particles with a diameter, not +for point particles. The near setting is smaller than the particle +diameter which can lead to overlaps. :dd + +{Fix evaporate may delete atom with non-zero molecule ID} :dt + +This is probably an error, since you should not delete only one atom +of a molecule. :dd + +{Fix gcmc using full_energy option} :dt + +Fix gcmc has automatically turned on the full_energy option since it +is required for systems like the one specified by the user. User input +included one or more of the following: kspace, triclinic, a hybrid +pair style, an eam pair style, or no "single" function for the pair +style. :dd + +{Fix property/atom mol or charge w/out ghost communication} :dt + +A model typically needs these properties defined for ghost atoms. :dd + +{Fix qeq CG convergence failed (%g) after %d iterations at %ld step} :dt + +Self-explanatory. :dd + +{Fix qeq has non-zero lower Taper radius cutoff} :dt + +Absolute value must be <= 0.01. :dd + +{Fix qeq has very low Taper radius cutoff} :dt + +Value should typically be >= 5.0. :dd + +{Fix qeq/dynamic tolerance may be too small for damped dynamics} :dt + +Self-explanatory. :dd + +{Fix qeq/fire tolerance may be too small for damped fires} :dt + +Self-explanatory. :dd + +{Fix rattle should come after all other integration fixes} :dt + +This fix is designed to work after all other integration fixes change +atom positions. Thus it should be the last integration fix specified. +If not, it will not satisfy the desired constraints as well as it +otherwise would. :dd + +{Fix recenter should come after all other integration fixes} :dt + +Other fixes may change the position of the center-of-mass, so +fix recenter should come last. :dd + +{Fix srd SRD moves may trigger frequent reneighboring} :dt + +This is because the SRD particles may move long distances. :dd + +{Fix srd grid size > 1/4 of big particle diameter} :dt + +This may cause accuracy problems. :dd + +{Fix srd particle moved outside valid domain} :dt + +This may indicate a problem with your simulation parameters. :dd + +{Fix srd particles may move > big particle diameter} :dt + +This may cause accuracy problems. :dd + +{Fix srd viscosity < 0.0 due to low SRD density} :dt + +This may cause accuracy problems. :dd + +{Fix thermal/conductivity comes before fix ave/spatial} :dt + +The order of these 2 fixes in your input script is such that fix +thermal/conductivity comes first. If you are using fix ave/spatial to +measure the temperature profile induced by fix viscosity, then this +may cause a glitch in the profile since you are averaging immediately +after swaps have occurred. Flipping the order of the 2 fixes +typically helps. :dd + +{Fix viscosity comes before fix ave/spatial} :dt + +The order of these 2 fixes in your input script is such that +fix viscosity comes first. If you are using fix ave/spatial +to measure the velocity profile induced by fix viscosity, then +this may cause a glitch in the profile since you are averaging +immediately after swaps have occurred. Flipping the order +of the 2 fixes typically helps. :dd + +{Fixes cannot send data in Kokkos communication, switching to classic communication} :dt + +This is current restriction with Kokkos. :dd + +{For better accuracy use 'pair_modify table 0'} :dt + +The user-specified force accuracy cannot be achieved unless the table +feature is disabled by using 'pair_modify table 0'. :dd + +{Geometric mixing assumed for 1/r^6 coefficients} :dt + +Self-explanatory. :dd + +{Group for fix_modify temp != fix group} :dt + +The fix_modify command is specifying a temperature computation that +computes a temperature on a different group of atoms than the fix +itself operates on. This is probably not what you want to do. :dd + +{H matrix size has been exceeded: m_fill=%d H.m=%d\n} :dt + +This is the size of the matrix. :dd + +{Ignoring unknown or incorrect info command flag} :dt + +Self-explanatory. An unknown argument was given to the info command. +Compare your input with the documentation. :dd + +{Improper atoms missing at step %ld} :dt + +One or more of 4 atoms needed to compute a particular improper are +missing on this processor. Typically this is because the pairwise +cutoff is set too short or the improper has blown apart and an atom is +too far away. :dd + +{Improper problem: %d %ld %d %d %d %d} :dt + +Conformation of the 4 listed improper atoms is extreme; you may want +to check your simulation geometry. :dd + +{Improper style in data file differs from currently defined improper style} :dt + +Self-explanatory. :dd + +{Inconsistent image flags} :dt + +The image flags for a pair on bonded atoms appear to be inconsistent. +Inconsistent means that when the coordinates of the two atoms are +unwrapped using the image flags, the two atoms are far apart. +Specifically they are further apart than half a periodic box length. +Or they are more than a box length apart in a non-periodic dimension. +This is usually due to the initial data file not having correct image +flags for the 2 atoms in a bond that straddles a periodic boundary. +They should be different by 1 in that case. This is a warning because +inconsistent image flags will not cause problems for dynamics or most +LAMMPS simulations. However they can cause problems when such atoms +are used with the fix rigid or replicate commands. Note that if you +have an infinite periodic crystal with bonds then it is impossible to +have fully consistent image flags, since some bonds will cross +periodic boundaries and connect two atoms with the same image +flag. :dd + +{KIM Model does not provide 'energy'; Potential energy will be zero} :dt + +Self-explanatory. :dd + +{KIM Model does not provide 'forces'; Forces will be zero} :dt + +Self-explanatory. :dd + +{KIM Model does not provide 'particleEnergy'; energy per atom will be zero} :dt + +Self-explanatory. :dd + +{KIM Model does not provide 'particleVirial'; virial per atom will be zero} :dt + +Self-explanatory. :dd + +{Kspace_modify slab param < 2.0 may cause unphysical behavior} :dt + +The kspace_modify slab parameter should be larger to insure periodic +grids padded with empty space do not overlap. :dd + +{Less insertions than requested} :dt + +The fix pour command was unsuccessful at finding open space +for as many particles as it tried to insert. :dd + +{Library error in lammps_gather_atoms} :dt + +This library function cannot be used if atom IDs are not defined +or are not consecutively numbered. :dd + +{Library error in lammps_scatter_atoms} :dt + +This library function cannot be used if atom IDs are not defined or +are not consecutively numbered, or if no atom map is defined. See the +atom_modify command for details about atom maps. :dd + +{Lost atoms via change_box: original %ld current %ld} :dt + +The command options you have used caused atoms to be lost. :dd + +{Lost atoms via displace_atoms: original %ld current %ld} :dt + +The command options you have used caused atoms to be lost. :dd + +{Lost atoms: original %ld current %ld} :dt + +Lost atoms are checked for each time thermo output is done. See the +thermo_modify lost command for options. Lost atoms usually indicate +bad dynamics, e.g. atoms have been blown far out of the simulation +box, or moved further than one processor's sub-domain away before +reneighboring. :dd + +{MSM mesh too small, increasing to 2 points in each direction} :dt + +Self-explanatory. :dd + +{Mismatch between velocity and compute groups} :dt + +The temperature computation used by the velocity command will not be +on the same group of atoms that velocities are being set for. :dd + +{Mixing forced for lj coefficients} :dt + +Self-explanatory. :dd + +{Molecule attributes do not match system attributes} :dt + +An attribute is specified (e.g. diameter, charge) that is +not defined for the specified atom style. :dd + +{Molecule has bond topology but no special bond settings} :dt + +This means the bonded atoms will not be excluded in pair-wise +interactions. :dd + +{Molecule template for create_atoms has multiple molecules} :dt + +The create_atoms command will only create molecules of a single type, +i.e. the first molecule in the template. :dd + +{Molecule template for fix gcmc has multiple molecules} :dt + +The fix gcmc command will only create molecules of a single type, +i.e. the first molecule in the template. :dd + +{Molecule template for fix shake has multiple molecules} :dt + +The fix shake command will only recognize molecules of a single +type, i.e. the first molecule in the template. :dd + +{More than one compute centro/atom} :dt + +It is not efficient to use compute centro/atom more than once. :dd + +{More than one compute cluster/atom} :dt + +It is not efficient to use compute cluster/atom more than once. :dd + +{More than one compute cna/atom defined} :dt + +It is not efficient to use compute cna/atom more than once. :dd + +{More than one compute contact/atom} :dt + +It is not efficient to use compute contact/atom more than once. :dd + +{More than one compute coord/atom} :dt + +It is not efficient to use compute coord/atom more than once. :dd + +{More than one compute damage/atom} :dt + +It is not efficient to use compute ke/atom more than once. :dd + +{More than one compute dilatation/atom} :dt + +Self-explanatory. :dd + +{More than one compute erotate/sphere/atom} :dt + +It is not efficient to use compute erorate/sphere/atom more than once. :dd + +{More than one compute hexorder/atom} :dt + +It is not efficient to use compute hexorder/atom more than once. :dd + +{More than one compute ke/atom} :dt + +It is not efficient to use compute ke/atom more than once. :dd + +{More than one compute orientorder/atom} :dt + +It is not efficient to use compute orientorder/atom more than once. :dd + +{More than one compute plasticity/atom} :dt + +Self-explanatory. :dd + +{More than one compute sna/atom} :dt + +Self-explanatory. :dd + +{More than one compute snad/atom} :dt + +Self-explanatory. :dd + +{More than one compute snav/atom} :dt + +Self-explanatory. :dd + +{More than one fix poems} :dt + +It is not efficient to use fix poems more than once. :dd + +{More than one fix rigid} :dt + +It is not efficient to use fix rigid more than once. :dd + +{Neighbor exclusions used with KSpace solver may give inconsistent Coulombic energies} :dt + +This is because excluding specific pair interactions also excludes +them from long-range interactions which may not be the desired effect. +The special_bonds command handles this consistently by insuring +excluded (or weighted) 1-2, 1-3, 1-4 interactions are treated +consistently by both the short-range pair style and the long-range +solver. This is not done for exclusions of charged atom pairs via the +neigh_modify exclude command. :dd + +{New thermo_style command, previous thermo_modify settings will be lost} :dt + +If a thermo_style command is used after a thermo_modify command, the +settings changed by the thermo_modify command will be reset to their +default values. This is because the thermo_modify command acts on +the currently defined thermo style, and a thermo_style command creates +a new style. :dd + +{No Kspace calculation with verlet/split} :dt + +The 2nd partition performs a kspace calculation so the kspace_style +command must be used. :dd + +{No automatic unit conversion to XTC file format conventions possible for units lj} :dt + +This means no scaling will be performed. :dd + +{No fixes defined, atoms won't move} :dt + +If you are not using a fix like nve, nvt, npt then atom velocities and +coordinates will not be updated during timestepping. :dd + +{No joints between rigid bodies, use fix rigid instead} :dt + +The bodies defined by fix poems are not connected by joints. POEMS +will integrate the body motion, but it would be more efficient to use +fix rigid. :dd + +{Not using real units with pair reax} :dt + +This is most likely an error, unless you have created your own ReaxFF +parameter file in a different set of units. :dd + +{Number of MSM mesh points changed to be a multiple of 2} :dt + +MSM requires that the number of grid points in each direction be a multiple +of two and the number of grid points in one or more directions have been +adjusted to meet this requirement. :dd + +{OMP_NUM_THREADS environment is not set.} :dt + +This environment variable must be set appropriately to use the +USER-OMP package. :dd + +{One or more atoms are time integrated more than once} :dt + +This is probably an error since you typically do not want to +advance the positions or velocities of an atom more than once +per timestep. :dd + +{One or more chunks do not contain all atoms in molecule} :dt + +This may not be what you intended. :dd + +{One or more dynamic groups may not be updated at correct point in timestep} :dt + +If there are other fixes that act immediately after the initial stage +of time integration within a timestep (i.e. after atoms move), then +the command that sets up the dynamic group should appear after those +fixes. This will insure that dynamic group assignments are made +after all atoms have moved. :dd + +{One or more respa levels compute no forces} :dt + +This is computationally inefficient. :dd + +{Pair COMB charge %.10f with force %.10f hit max barrier} :dt + +Something is possibly wrong with your model. :dd + +{Pair COMB charge %.10f with force %.10f hit min barrier} :dt + +Something is possibly wrong with your model. :dd + +{Pair brownian needs newton pair on for momentum conservation} :dt + +Self-explanatory. :dd + +{Pair dpd needs newton pair on for momentum conservation} :dt + +Self-explanatory. :dd + +{Pair dsmc: num_of_collisions > number_of_A} :dt + +Collision model in DSMC is breaking down. :dd + +{Pair dsmc: num_of_collisions > number_of_B} :dt + +Collision model in DSMC is breaking down. :dd + +{Pair style in data file differs from currently defined pair style} :dt + +Self-explanatory. :dd + +{Pair style restartinfo set but has no restart support} :dt + +This pair style has a bug, where it does not support reading and +writing information to a restart file, but does not set the member +variable "restartinfo" to 0 as required in that case. :dd + +{Particle deposition was unsuccessful} :dt + +The fix deposit command was not able to insert as many atoms as +needed. The requested volume fraction may be too high, or other atoms +may be in the insertion region. :dd + +{Proc sub-domain size < neighbor skin, could lead to lost atoms} :dt + +The decomposition of the physical domain (likely due to load +balancing) has led to a processor's sub-domain being smaller than the +neighbor skin in one or more dimensions. Since reneighboring is +triggered by atoms moving the skin distance, this may lead to lost +atoms, if an atom moves all the way across a neighboring processor's +sub-domain before reneighboring is triggered. :dd + +{Reducing PPPM order b/c stencil extends beyond nearest neighbor processor} :dt + +This may lead to a larger grid than desired. See the kspace_modify overlap +command to prevent changing of the PPPM order. :dd + +{Reducing PPPMDisp Coulomb order b/c stencil extends beyond neighbor processor} :dt + +This may lead to a larger grid than desired. See the kspace_modify overlap +command to prevent changing of the PPPM order. :dd + +{Reducing PPPMDisp dispersion order b/c stencil extends beyond neighbor processor} :dt + +This may lead to a larger grid than desired. See the kspace_modify overlap +command to prevent changing of the PPPM order. :dd + +{Replacing a fix, but new group != old group} :dt + +The ID and style of a fix match for a fix you are changing with a fix +command, but the new group you are specifying does not match the old +group. :dd + +{Replicating in a non-periodic dimension} :dt + +The parameters for a replicate command will cause a non-periodic +dimension to be replicated; this may cause unwanted behavior. :dd + +{Resetting reneighboring criteria during PRD} :dt + +A PRD simulation requires that neigh_modify settings be delay = 0, +every = 1, check = yes. Since these settings were not in place, +LAMMPS changed them and will restore them to their original values +after the PRD simulation. :dd + +{Resetting reneighboring criteria during TAD} :dt + +A TAD simulation requires that neigh_modify settings be delay = 0, +every = 1, check = yes. Since these settings were not in place, +LAMMPS changed them and will restore them to their original values +after the PRD simulation. :dd + +{Resetting reneighboring criteria during minimization} :dt + +Minimization requires that neigh_modify settings be delay = 0, every = +1, check = yes. Since these settings were not in place, LAMMPS +changed them and will restore them to their original values after the +minimization. :dd + +{Restart file used different # of processors} :dt + +The restart file was written out by a LAMMPS simulation running on a +different number of processors. Due to round-off, the trajectories of +your restarted simulation may diverge a little more quickly than if +you ran on the same # of processors. :dd + +{Restart file used different 3d processor grid} :dt + +The restart file was written out by a LAMMPS simulation running on a +different 3d grid of processors. Due to round-off, the trajectories +of your restarted simulation may diverge a little more quickly than if +you ran on the same # of processors. :dd + +{Restart file used different boundary settings, using restart file values} :dt + +Your input script cannot change these restart file settings. :dd + +{Restart file used different newton bond setting, using restart file value} :dt + +The restart file value will override the setting in the input script. :dd + +{Restart file used different newton pair setting, using input script value} :dt + +The input script value will override the setting in the restart file. :dd + +{Restrain problem: %d %ld %d %d %d %d} :dt + +Conformation of the 4 listed dihedral atoms is extreme; you may want +to check your simulation geometry. :dd + +{Running PRD with only one replica} :dt + +This is allowed, but you will get no parallel speed-up. :dd + +{SRD bin shifting turned on due to small lamda} :dt + +This is done to try to preserve accuracy. :dd + +{SRD bin size for fix srd differs from user request} :dt + +Fix SRD had to adjust the bin size to fit the simulation box. See the +cubic keyword if you want this message to be an error vs warning. :dd + +{SRD bins for fix srd are not cubic enough} :dt + +The bin shape is not within tolerance of cubic. See the cubic +keyword if you want this message to be an error vs warning. :dd + +{SRD particle %d started inside big particle %d on step %ld bounce %d} :dt + +See the inside keyword if you want this message to be an error vs +warning. :dd + +{SRD particle %d started inside wall %d on step %ld bounce %d} :dt + +See the inside keyword if you want this message to be an error vs +warning. :dd + +{Shake determinant < 0.0} :dt + +The determinant of the quadratic equation being solved for a single +cluster specified by the fix shake command is numerically suspect. LAMMPS +will set it to 0.0 and continue. :dd + +{Shell command '%s' failed with error '%s'} :dt + +Self-explanatory. :dd + +{Shell command returned with non-zero status} :dt + +This may indicate the shell command did not operate as expected. :dd + +{Should not allow rigid bodies to bounce off relecting walls} :dt + +LAMMPS allows this, but their dynamics are not computed correctly. :dd + +{Should not use fix nve/limit with fix shake or fix rattle} :dt + +This will lead to invalid constraint forces in the SHAKE/RATTLE +computation. :dd + +{Simulations might be very slow because of large number of structure factors} :dt + +Self-explanatory. :dd + +{Slab correction not needed for MSM} :dt + +Slab correction is intended to be used with Ewald or PPPM and is not needed by MSM. :dd + +{System is not charge neutral, net charge = %g} :dt + +The total charge on all atoms on the system is not 0.0. +For some KSpace solvers this is only a warning. :dd + +{Table inner cutoff >= outer cutoff} :dt + +You specified an inner cutoff for a Coulombic table that is longer +than the global cutoff. Probably not what you wanted. :dd + +{Temperature for MSST is not for group all} :dt + +User-assigned temperature to MSST fix does not compute temperature for +all atoms. Since MSST computes a global pressure, the kinetic energy +contribution from the temperature is assumed to also be for all atoms. +Thus the pressure used by MSST could be inaccurate. :dd + +{Temperature for NPT is not for group all} :dt + +User-assigned temperature to NPT fix does not compute temperature for +all atoms. Since NPT computes a global pressure, the kinetic energy +contribution from the temperature is assumed to also be for all atoms. +Thus the pressure used by NPT could be inaccurate. :dd + +{Temperature for fix modify is not for group all} :dt + +The temperature compute is being used with a pressure calculation +which does operate on group all, so this may be inconsistent. :dd + +{Temperature for thermo pressure is not for group all} :dt + +User-assigned temperature to thermo via the thermo_modify command does +not compute temperature for all atoms. Since thermo computes a global +pressure, the kinetic energy contribution from the temperature is +assumed to also be for all atoms. Thus the pressure printed by thermo +could be inaccurate. :dd + +{The fix ave/spatial command has been replaced by the more flexible fix ave/chunk and compute chunk/atom commands -- fix ave/spatial will be removed in the summer of 2015} :dt + +Self-explanatory. :dd + +{The minimizer does not re-orient dipoles when using fix efield} :dt + +This means that only the atom coordinates will be minimized, +not the orientation of the dipoles. :dd + +{Too many common neighbors in CNA %d times} :dt + +More than the maximum # of neighbors was found multiple times. This +was unexpected. :dd + +{Too many inner timesteps in fix ttm} :dt + +Self-explanatory. :dd + +{Too many neighbors in CNA for %d atoms} :dt + +More than the maximum # of neighbors was found multiple times. This +was unexpected. :dd + +{Triclinic box skew is large} :dt + +The displacement in a skewed direction is normally required to be less +than half the box length in that dimension. E.g. the xy tilt must be +between -half and +half of the x box length. You have relaxed the +constraint using the box tilt command, but the warning means that a +LAMMPS simulation may be inefficient as a result. :dd + +{Use special bonds = 0,1,1 with bond style fene} :dt + +Most FENE models need this setting for the special_bonds command. :dd + +{Use special bonds = 0,1,1 with bond style fene/expand} :dt + +Most FENE models need this setting for the special_bonds command. :dd + +{Using a manybody potential with bonds/angles/dihedrals and special_bond exclusions} :dt + +This is likely not what you want to do. The exclusion settings will +eliminate neighbors in the neighbor list, which the manybody potential +needs to calculated its terms correctly. :dd + +{Using compute temp/deform with inconsistent fix deform remap option} :dt + +Fix nvt/sllod assumes deforming atoms have a velocity profile provided +by "remap v" or "remap none" as a fix deform option. :dd + +{Using compute temp/deform with no fix deform defined} :dt + +This is probably an error, since it makes little sense to use +compute temp/deform in this case. :dd + +{Using fix srd with box deformation but no SRD thermostat} :dt + +The deformation will heat the SRD particles so this can +be dangerous. :dd + +{Using kspace solver on system with no charge} :dt + +Self-explanatory. :dd + +{Using largest cut-off for lj/long/dipole/long long long} :dt + +Self-explanatory. :dd + +{Using largest cutoff for buck/long/coul/long} :dt + +Self-explanatory. :dd + +{Using largest cutoff for lj/long/coul/long} :dt + +Self-explanatory. :dd + +{Using largest cutoff for pair_style lj/long/tip4p/long} :dt + +Self-explanatory. :dd + +{Using package gpu without any pair style defined} :dt + +Self-explanatory. :dd + +{Using pair potential shift with pair_modify compute no} :dt + +The shift effects will thus not be computed. :dd + +{Using pair tail corrections with nonperiodic system} :dt + +This is probably a bogus thing to do, since tail corrections are +computed by integrating the density of a periodic system out to +infinity. :dd + +{Using pair tail corrections with pair_modify compute no} :dt + +The tail corrections will thus not be computed. :dd + +{pair style reax is now deprecated and will soon be retired. Users should switch to pair_style reax/c} :dt + +Self-explanatory. :dd + +:dle diff --git a/doc/src/Section_example.txt b/doc/src/Examples.txt similarity index 95% rename from doc/src/Section_example.txt rename to doc/src/Examples.txt index a2a9940f4845f10c2df5fe3333c8de30cba1ea7d..467ddcc959ddd2656a2173ce9abea8a1f57162a7 100644 --- a/doc/src/Section_example.txt +++ b/doc/src/Examples.txt @@ -1,4 +1,6 @@ -"Previous Section"_Section_howto.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Section_perf.html :c +"Previous Section"_Section_howto.html - "LAMMPS WWW Site"_lws - +"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Section_perf.html :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -6,7 +8,7 @@ :line -7. Example problems :h2 +Example scripts :h3 The LAMMPS distribution includes an examples sub-directory with many sample problems. Many are 2d models that run quickly are are @@ -46,7 +48,7 @@ Lists of both kinds of directories are given below. :line -Lowercase directories :h3 +Lowercase directories :h4 accelerate: run with various acceleration options (OpenMP, GPU, Phi) airebo: polyethylene with AIREBO potential @@ -122,7 +124,7 @@ browser. :line -Uppercase directories :h3 +Uppercase directories :h4 ASPHERE: various aspherical particle models, using ellipsoids, rigid bodies, line/triangle particles, etc COUPLE: examples of how to use LAMMPS as a library @@ -141,5 +143,5 @@ The USER directory has a large number of sub-directories which correspond by name to a USER package. They contain scripts that illustrate how to use the command(s) provided in that package. Many of the sub-directories have their own README files which give further -instructions. See the "Section 4"_Section_packages.html doc +instructions. See the "Packages_details"_Packages_details.html doc page for more info on specific USER packages. diff --git a/doc/src/JPG/pair_body_rounded.jpg b/doc/src/JPG/pair_body_rounded.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd745c44e27e96585be021b3dcca342f686e15e9 Binary files /dev/null and b/doc/src/JPG/pair_body_rounded.jpg differ diff --git a/doc/src/Manual.txt b/doc/src/Manual.txt index eb07bbe0a788f5637ea950a4b4d3f0db98181c32..fd31c83c017eb3ac8c4ba0c95e0dfff03f51b58f 100644 --- a/doc/src/Manual.txt +++ b/doc/src/Manual.txt @@ -1,7 +1,7 @@ - +< LAMMPS Users Manual - + @@ -19,7 +19,7 @@ :line LAMMPS Documentation :c,h1 -30 Mar 2018 version :c,h2 +2 Aug 2018 version :c,h2 Version info: :h3 @@ -111,15 +111,14 @@ it gives quick access to documentation for all LAMMPS commands. Section_intro Section_start Section_commands - Section_packages - Section_accelerate + Packages + Speed Section_howto - Section_example - Section_perf - Section_tools - Section_modify - Section_python - Section_errors + Examples + Tools + Modify + Python + Errors Section_history .. toctree:: @@ -167,19 +166,8 @@ END_RST --> 3.3 "Input script structure"_cmd_3 :b 3.4 "Commands listed by category"_cmd_4 :b 3.5 "Commands listed alphabetically"_cmd_5 :ule,b -"Packages"_Section_packages.html :l - 4.1 "Standard packages"_pkg_1 :ulb,b - 4.2 "User packages"_pkg_2 :ule,b -"Accelerating LAMMPS performance"_Section_accelerate.html :l - 5.1 "Measuring performance"_acc_1 :ulb,b - 5.2 "Algorithms and code options to boost performace"_acc_2 :b - 5.3 "Accelerator packages with optimized styles"_acc_3 :b - 5.3.1 "GPU package"_accelerate_gpu.html :b - 5.3.2 "USER-INTEL package"_accelerate_intel.html :b - 5.3.3 "KOKKOS package"_accelerate_kokkos.html :b - 5.3.4 "USER-OMP package"_accelerate_omp.html :b - 5.3.5 "OPT package"_accelerate_opt.html :b - 5.4 "Comparison of various accelerator packages"_acc_4 :ule,b +"Optional packages"_Packages.html :l +"Accelerate performance"_Speed.html :l "How-to discussions"_Section_howto.html :l 6.1 "Restarting a simulation"_howto_1 :ulb,b 6.2 "2d simulations"_howto_2 :b @@ -208,38 +196,11 @@ END_RST --> 6.25 "Polarizable models"_howto_25 :b 6.26 "Adiabatic core/shell model"_howto_26 :b 6.27 "Drude induced dipoles"_howto_27 :ule,b -"Example problems"_Section_example.html :l -"Performance & scalability"_Section_perf.html :l -"Additional tools"_Section_tools.html :l -"Modifying & extending LAMMPS"_Section_modify.html :l - 10.1 "Atom styles"_mod_1 :ulb,b - 10.2 "Bond, angle, dihedral, improper potentials"_mod_2 :b - 10.3 "Compute styles"_mod_3 :b - 10.4 "Dump styles"_mod_4 :b - 10.5 "Dump custom output options"_mod_5 :b - 10.6 "Fix styles"_mod_6 :b - 10.7 "Input script commands"_mod_7 :b - 10.8 "Kspace computations"_mod_8 :b - 10.9 "Minimization styles"_mod_9 :b - 10.10 "Pairwise potentials"_mod_10 :b - 10.11 "Region styles"_mod_11 :b - 10.12 "Body styles"_mod_12 :b - 10.13 "Thermodynamic output options"_mod_13 :b - 10.14 "Variable options"_mod_14 :b - 10.15 "Submitting new features for inclusion in LAMMPS"_mod_15 :ule,b -"Python interface"_Section_python.html :l - 11.1 "Overview of running LAMMPS from Python"_py_1 :ulb,b - 11.2 "Overview of using Python from a LAMMPS script"_py_2 :b - 11.3 "Building LAMMPS as a shared library"_py_3 :b - 11.4 "Installing the Python wrapper into Python"_py_4 :b - 11.5 "Extending Python with MPI to run in parallel"_py_5 :b - 11.6 "Testing the Python-LAMMPS interface"_py_6 :b - 11.7 "Using LAMMPS from Python"_py_7 :b - 11.8 "Example Python scripts that use LAMMPS"_py_8 :ule,b -"Errors"_Section_errors.html :l - 12.1 "Common problems"_err_1 :ulb,b - 12.2 "Reporting bugs"_err_2 :b - 12.3 "Error & warning messages"_err_3 :ule,b +"Example scripts"_Examples.html :l +"Auxiliary tools"_Tools.html :l +"Modify & extend LAMMPS"_Modify.html :l +"Use Python with LAMMPS"_Python.html :l +"Errors"_Errors.html :l "Future and history"_Section_history.html :l 13.1 "Coming attractions"_hist_1 :ulb,b 13.2 "Past versions"_hist_2 :ule,b @@ -266,14 +227,6 @@ END_RST --> :link(cmd_4,Section_commands.html#cmd_4) :link(cmd_5,Section_commands.html#cmd_5) -:link(pkg_1,Section_packages.html#pkg_1) -:link(pkg_2,Section_packages.html#pkg_2) - -:link(acc_1,Section_accelerate.html#acc_1) -:link(acc_2,Section_accelerate.html#acc_2) -:link(acc_3,Section_accelerate.html#acc_3) -:link(acc_4,Section_accelerate.html#acc_4) - :link(howto_1,Section_howto.html#howto_1) :link(howto_2,Section_howto.html#howto_2) :link(howto_3,Section_howto.html#howto_3) @@ -302,33 +255,6 @@ END_RST --> :link(howto_26,Section_howto.html#howto_26) :link(howto_27,Section_howto.html#howto_27) -:link(mod_1,Section_modify.html#mod_1) -:link(mod_2,Section_modify.html#mod_2) -:link(mod_3,Section_modify.html#mod_3) -:link(mod_4,Section_modify.html#mod_4) -:link(mod_5,Section_modify.html#mod_5) -:link(mod_6,Section_modify.html#mod_6) -:link(mod_7,Section_modify.html#mod_7) -:link(mod_8,Section_modify.html#mod_8) -:link(mod_9,Section_modify.html#mod_9) -:link(mod_10,Section_modify.html#mod_10) -:link(mod_11,Section_modify.html#mod_11) -:link(mod_12,Section_modify.html#mod_12) -:link(mod_13,Section_modify.html#mod_13) -:link(mod_14,Section_modify.html#mod_14) -:link(mod_15,Section_modify.html#mod_15) - -:link(py_1,Section_python.html#py_1) -:link(py_2,Section_python.html#py_2) -:link(py_3,Section_python.html#py_3) -:link(py_4,Section_python.html#py_4) -:link(py_5,Section_python.html#py_5) -:link(py_6,Section_python.html#py_6) - -:link(err_1,Section_errors.html#err_1) -:link(err_2,Section_errors.html#err_2) -:link(err_3,Section_errors.html#err_3) - :link(hist_1,Section_history.html#hist_1) :link(hist_2,Section_history.html#hist_2) diff --git a/doc/src/Modify.txt b/doc/src/Modify.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae0b0dc6bdf2371f9a205c39fbc267b91ecd11b3 --- /dev/null +++ b/doc/src/Modify.txt @@ -0,0 +1,76 @@ +"Previous Section"_Tools.html - "LAMMPS WWW Site"_lws - +"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Python.html :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Modify & extend LAMMPS :h2 + +LAMMPS is designed in a modular fashion so as to be easy to modify and +extend with new functionality. In fact, about 95% of its source code +is add-on files. These doc pages give basic instructions on how to do +this. + +If you add a new feature to LAMMPS and think it will be of interest to +general users, we encourage you to submit it for inclusion in LAMMPS +as a pull request on our "GitHub +site"_https://github.com/lammps/lammps, after reading the "Modify +contribute"_Modify_contribute.html doc page. + + + + + +"Overview"_Modify_overview.html +"Submitting new features for inclusion in LAMMPS"_Modify_contribute.html :all(b) + +"Atom styles"_Modify_atom.html +"Pair styles"_Modify_pair.html +"Bond, angle, dihedral, improper styles"_Modify_bond.html +"Compute styles"_Modify_compute.html +"Fix styles"_Modify_fix.html +"Input script command styles"_Modify_command.html :all(b) + +"Dump styles"_Modify_dump.html +"Kspace styles"_Modify_kspace.html +"Minimization styles"_Modify_min.html +"Region styles"_Modify_region.html +"Body styles"_Modify_body.html :all(b) + +"Thermodynamic output options"_Modify_thermo.html +"Variable options"_Modify_variable.html :all(b) + + diff --git a/doc/src/Modify_atom.txt b/doc/src/Modify_atom.txt new file mode 100644 index 0000000000000000000000000000000000000000..afa1c319d25539594bb65f9dcb1f146023623ff8 --- /dev/null +++ b/doc/src/Modify_atom.txt @@ -0,0 +1,90 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Atom styles :h3 + +Classes that define an "atom style"_atom_style.html are derived from +the AtomVec class and managed by the Atom class. The atom style +determines what attributes are associated with an atom. A new atom +style can be created if one of the existing atom styles does not +define all the attributes you need to store and communicate with +atoms. + +Atom_vec_atomic.cpp is a simple example of an atom style. + +Here is a brief description of methods you define in your new derived +class. See atom_vec.h for details. + +init: one time setup (optional) +grow: re-allocate atom arrays to longer lengths (required) +grow_reset: make array pointers in Atom and AtomVec classes consistent (required) +copy: copy info for one atom to another atom's array locations (required) +pack_comm: store an atom's info in a buffer communicated every timestep (required) +pack_comm_vel: add velocity info to communication buffer (required) +pack_comm_hybrid: store extra info unique to this atom style (optional) +unpack_comm: retrieve an atom's info from the buffer (required) +unpack_comm_vel: also retrieve velocity info (required) +unpack_comm_hybrid: retrieve extra info unique to this atom style (optional) +pack_reverse: store an atom's info in a buffer communicating partial forces (required) +pack_reverse_hybrid: store extra info unique to this atom style (optional) +unpack_reverse: retrieve an atom's info from the buffer (required) +unpack_reverse_hybrid: retrieve extra info unique to this atom style (optional) +pack_border: store an atom's info in a buffer communicated on neighbor re-builds (required) +pack_border_vel: add velocity info to buffer (required) +pack_border_hybrid: store extra info unique to this atom style (optional) +unpack_border: retrieve an atom's info from the buffer (required) +unpack_border_vel: also retrieve velocity info (required) +unpack_border_hybrid: retrieve extra info unique to this atom style (optional) +pack_exchange: store all an atom's info to migrate to another processor (required) +unpack_exchange: retrieve an atom's info from the buffer (required) +size_restart: number of restart quantities associated with proc's atoms (required) +pack_restart: pack atom quantities into a buffer (required) +unpack_restart: unpack atom quantities from a buffer (required) +create_atom: create an individual atom of this style (required) +data_atom: parse an atom line from the data file (required) +data_atom_hybrid: parse additional atom info unique to this atom style (optional) +data_vel: parse one line of velocity information from data file (optional) +data_vel_hybrid: parse additional velocity data unique to this atom style (optional) +memory_usage: tally memory allocated by atom arrays (required) :tb(s=:) + +The constructor of the derived class sets values for several variables +that you must set when defining a new atom style, which are documented +in atom_vec.h. New atom arrays are defined in atom.cpp. Search for +the word "customize" and you will find locations you will need to +modify. + +NOTE: It is possible to add some attributes, such as a molecule ID, to +atom styles that do not have them via the "fix +property/atom"_fix_property_atom.html command. This command also +allows new custom attributes consisting of extra integer or +floating-point values to be added to atoms. See the "fix +property/atom"_fix_property_atom.html doc page for examples of cases +where this is useful and details on how to initialize, access, and +output the custom values. + +New "pair styles"_pair_style.html, "fixes"_fix.html, or +"computes"_compute.html can be added to LAMMPS, as discussed below. +The code for these classes can use the per-atom properties defined by +fix property/atom. The Atom class has a find_custom() method that is +useful in this context: + +int index = atom->find_custom(char *name, int &flag); :pre + +The "name" of a custom attribute, as specified in the "fix +property/atom"_fix_property_atom.html command, is checked to verify +that it exists and its index is returned. The method also sets flag = +0/1 depending on whether it is an integer or floating-point attribute. +The vector of values associated with the attribute can then be +accessed using the returned index as + +int *ivector = atom->ivector\[index\]; +double *dvector = atom->dvector\[index\]; :pre + +Ivector or dvector are vectors of length Nlocal = # of owned atoms, +which store the attributes of individual atoms. diff --git a/doc/src/Modify_body.txt b/doc/src/Modify_body.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1dc8130cd6ad46318fe7a9c336b7e8978cbdbe5 --- /dev/null +++ b/doc/src/Modify_body.txt @@ -0,0 +1,35 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Body styles :h3 + +Classes that define body particles are derived from the Body class. +Body particles can represent complex entities, such as surface meshes +of discrete points, collections of sub-particles, deformable objects, +etc. + +See "Section 6.14"_Section_howto.html#howto_14 of the manual for +an overview of using body particles and the "body"_body.html doc page +for details on the various body styles LAMMPS supports. New styles +can be created to add new kinds of body particles to LAMMPS. + +Body_nparticle.cpp is an example of a body particle that is treated as +a rigid body containing N sub-particles. + +Here is a brief description of methods you define in your new derived +class. See body.h for details. + +data_body: process a line from the Bodies section of a data file +noutrow: number of sub-particles output is generated for +noutcol: number of values per-sub-particle output is generated for +output: output values for the Mth sub-particle +pack_comm_body: body attributes to communicate every timestep +unpack_comm_body: unpacking of those attributes +pack_border_body: body attributes to communicate when reneighboring is done +unpack_border_body: unpacking of those attributes :tb(s=:) diff --git a/doc/src/Modify_bond.txt b/doc/src/Modify_bond.txt new file mode 100644 index 0000000000000000000000000000000000000000..f0828a0c3b8544c84fa8539c7eb9f30e63489cfb --- /dev/null +++ b/doc/src/Modify_bond.txt @@ -0,0 +1,33 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Bond, angle, dihedral, improper styles :h3 + +Classes that compute molecular interactions are derived from the Bond, +Angle, Dihedral, and Improper classes. New styles can be created to +add new potentials to LAMMPS. + +Bond_harmonic.cpp is the simplest example of a bond style. Ditto for +the harmonic forms of the angle, dihedral, and improper style +commands. + +Here is a brief description of common methods you define in your +new derived class. See bond.h, angle.h, dihedral.h, and improper.h +for details and specific additional methods. + +init: check if all coefficients are set, calls {init_style} (optional) +init_style: check if style specific conditions are met (optional) +compute: compute the molecular interactions (required) +settings: apply global settings for all types (optional) +coeff: set coefficients for one type (required) +equilibrium_distance: length of bond, used by SHAKE (required, bond only) +equilibrium_angle: opening of angle, used by SHAKE (required, angle only) +write & read_restart: writes/reads coeffs to restart files (required) +single: force and energy of a single bond or angle (required, bond or angle only) +memory_usage: tally memory allocated by the style (optional) :tb(s=:) diff --git a/doc/src/Modify_command.txt b/doc/src/Modify_command.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fc9aad1fc55174fa3be29eda559966b34db2259 --- /dev/null +++ b/doc/src/Modify_command.txt @@ -0,0 +1,27 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Input script command style :h3 + +New commands can be added to LAMMPS input scripts by adding new +classes that have a "command" method. For example, the create_atoms, +read_data, velocity, and run commands are all implemented in this +fashion. When such a command is encountered in the LAMMPS input +script, LAMMPS simply creates a class with the corresponding name, +invokes the "command" method of the class, and passes it the arguments +from the input script. The command method can perform whatever +operations it wishes on LAMMPS data structures. + +The single method your new class must define is as follows: + +command: operations performed by the new command :tb(s=:) + +Of course, the new class can define other methods and variables as +needed. + diff --git a/doc/src/Modify_compute.txt b/doc/src/Modify_compute.txt new file mode 100644 index 0000000000000000000000000000000000000000..b02b8a983ec4c32f0935c7b00b1c3c3dd59e7f5d --- /dev/null +++ b/doc/src/Modify_compute.txt @@ -0,0 +1,49 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Compute styles :h3 + +Classes that compute scalar and vector quantities like temperature +and the pressure tensor, as well as classes that compute per-atom +quantities like kinetic energy and the centro-symmetry parameter +are derived from the Compute class. New styles can be created +to add new calculations to LAMMPS. + +Compute_temp.cpp is a simple example of computing a scalar +temperature. Compute_ke_atom.cpp is a simple example of computing +per-atom kinetic energy. + +Here is a brief description of methods you define in your new derived +class. See compute.h for details. + +init: perform one time setup (required) +init_list: neighbor list setup, if needed (optional) +compute_scalar: compute a scalar quantity (optional) +compute_vector: compute a vector of quantities (optional) +compute_peratom: compute one or more quantities per atom (optional) +compute_local: compute one or more quantities per processor (optional) +pack_comm: pack a buffer with items to communicate (optional) +unpack_comm: unpack the buffer (optional) +pack_reverse: pack a buffer with items to reverse communicate (optional) +unpack_reverse: unpack the buffer (optional) +remove_bias: remove velocity bias from one atom (optional) +remove_bias_all: remove velocity bias from all atoms in group (optional) +restore_bias: restore velocity bias for one atom after remove_bias (optional) +restore_bias_all: same as before, but for all atoms in group (optional) +pair_tally_callback: callback function for {tally}-style computes (optional). +memory_usage: tally memory usage (optional) :tb(s=:) + +Tally-style computes are a special case, as their computation is done +in two stages: the callback function is registered with the pair style +and then called from the Pair::ev_tally() function, which is called for +each pair after force and energy has been computed for this pair. Then +the tallied values are retrieved with the standard compute_scalar or +compute_vector or compute_peratom methods. The USER-TALLY package +provides {examples}_compute_tally.html for utilizing this mechanism. + diff --git a/doc/src/Modify_contribute.txt b/doc/src/Modify_contribute.txt new file mode 100644 index 0000000000000000000000000000000000000000..80795b5e205332fdfac501c74bee8153706ad33e --- /dev/null +++ b/doc/src/Modify_contribute.txt @@ -0,0 +1,210 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Submitting new features for inclusion in LAMMPS :h3 + +We encourage users to submit new features or modifications for LAMMPS +to "the core developers"_http://lammps.sandia.gov/authors.html so they +can be added to the LAMMPS distribution. The preferred way to manage +and coordinate this is as of Fall 2016 via the LAMMPS project on +"GitHub"_https://github.com/lammps/lammps. An alternative is to +contact the LAMMPS developers or the indicated developer of a package +or feature directly and send in your contribution via e-mail. + +For any larger modifications or programming project, you are +encouraged to contact the LAMMPS developers ahead of time, in order to +discuss implementation strategies and coding guidelines, that will +make it easier to integrate your contribution and result in less work +for everybody involved. You are also encouraged to search through the +list of "open issues on +GitHub"_https://github.com/lammps/lammps/issues and submit a new issue +for a planned feature, so you would not duplicate the work of others +(and possibly get scooped by them) or have your work duplicated by +others. + +How quickly your contribution will be integrated depends largely on +how much effort it will cause to integrate and test it, how much it +requires changes to the core codebase, and of how much interest it is +to the larger LAMMPS community. Please see below for a checklist of +typical requirements. Once you have prepared everything, see "this +tutorial"_tutorial_github.html for instructions on how to submit your +changes or new files through a GitHub pull request. If you prefer to +submit patches or full files, you should first make certain, that your +code works correctly with the latest patch-level version of LAMMPS and +contains all bugfixes from it. Then create a gzipped tar file of all +changed or added files or a corresponding patch file using 'diff -u' +or 'diff -c' and compress it with gzip. Please only use gzip +compression, as this works well on all platforms. + +If the new features/files are broadly useful we may add them as core +files to LAMMPS or as part of a "standard +package"_Section_start.html#start_3. Else we will add them as a +user-contributed file or package. Examples of user packages are in +src sub-directories that start with USER. The USER-MISC package is +simply a collection of (mostly) unrelated single files, which is the +simplest way to have your contribution quickly added to the LAMMPS +distribution. You can see a list of the both standard and user +packages by typing "make package" in the LAMMPS src directory. + +Note that by providing us files to release, you are agreeing to make +them open-source, i.e. we can release them under the terms of the GPL, +used as a license for the rest of LAMMPS. See "Section +1.4"_Section_intro.html#intro_4 for details. + +With user packages and files, all we are really providing (aside from +the fame and fortune that accompanies having your name in the source +code and on the "Authors page"_http://lammps.sandia.gov/authors.html +of the "LAMMPS WWW site"_lws), is a means for you to distribute your +work to the LAMMPS user community, and a mechanism for others to +easily try out your new feature. This may help you find bugs or make +contact with new collaborators. Note that you're also implicitly +agreeing to support your code which means answer questions, fix bugs, +and maintain it if LAMMPS changes in some way that breaks it (an +unusual event). + +NOTE: If you prefer to actively develop and support your add-on +feature yourself, then you may wish to make it available for download +from your own website, as a user package that LAMMPS users can add to +their copy of LAMMPS. See the "Offsite LAMMPS packages and +tools"_http://lammps.sandia.gov/offsite.html page of the LAMMPS web +site for examples of groups that do this. We are happy to advertise +your package and web site from that page. Simply email the +"developers"_http://lammps.sandia.gov/authors.html with info about +your package and we will post it there. + +The previous sections of this doc page describe how to add new "style" +files of various kinds to LAMMPS. Packages are simply collections of +one or more new class files which are invoked as a new style within a +LAMMPS input script. If designed correctly, these additions typically +do not require changes to the main core of LAMMPS; they are simply +add-on files. If you think your new feature requires non-trivial +changes in core LAMMPS files, you'll need to "communicate with the +developers"_http://lammps.sandia.gov/authors.html, since we may or may +not want to make those changes. An example of a trivial change is +making a parent-class method "virtual" when you derive a new child +class from it. + +Here is a checklist of steps you need to follow to submit a single file +or user package for our consideration. Following these steps will save +both you and us time. See existing files in packages in the src dir for +examples. If you are uncertain, please ask. + +All source files you provide must compile with the most current +version of LAMMPS with multiple configurations. In particular you +need to test compiling LAMMPS from scratch with -DLAMMPS_BIGBIG +set in addition to the default -DLAMMPS_SMALLBIG setting. Your code +will need to work correctly in serial and in parallel using MPI. :ulb,l + +For consistency with the rest of LAMMPS and especially, if you want +your contribution(s) to be added to main LAMMPS code or one of its +standard packages, it needs to be written in a style compatible with +other LAMMPS source files. This means: 2-character indentation per +level, [no tabs], no lines over 80 characters. I/O is done via +the C-style stdio library, class header files should not import any +system headers outside , STL containers should be avoided +in headers, and forward declarations used where possible or needed. +All added code should be placed into the LAMMPS_NS namespace or a +sub-namespace; global or static variables should be avoided, as they +conflict with the modular nature of LAMMPS and the C++ class structure. +Header files must [not] import namespaces with {using}. +This all is so the developers can more easily understand, integrate, +and maintain your contribution and reduce conflicts with other parts +of LAMMPS. This basically means that the code accesses data +structures, performs its operations, and is formatted similar to other +LAMMPS source files, including the use of the error class for error +and warning messages. :l + +If you want your contribution to be added as a user-contributed +feature, and it's a single file (actually a *.cpp and *.h file) it can +rapidly be added to the USER-MISC directory. Send us the one-line +entry to add to the USER-MISC/README file in that dir, along with the +2 source files. You can do this multiple times if you wish to +contribute several individual features. :l + +If you want your contribution to be added as a user-contribution and +it is several related features, it is probably best to make it a user +package directory with a name like USER-FOO. In addition to your new +files, the directory should contain a README text file. The README +should contain your name and contact information and a brief +description of what your new package does. If your files depend on +other LAMMPS style files also being installed (e.g. because your file +is a derived class from the other LAMMPS class), then an Install.sh +file is also needed to check for those dependencies. See other README +and Install.sh files in other USER directories as examples. Send us a +tarball of this USER-FOO directory. :l + +Your new source files need to have the LAMMPS copyright, GPL notice, +and your name and email address at the top, like other +user-contributed LAMMPS source files. They need to create a class +that is inside the LAMMPS namespace. If the file is for one of the + +USER packages, including USER-MISC, then we are not as picky about the +coding style (see above). I.e. the files do not need to be in the +same stylistic format and syntax as other LAMMPS files, though that +would be nice for developers as well as users who try to read your +code. :l + +You [must] also create a [documentation] file for each new command or +style you are adding to LAMMPS. For simplicity and convenience, the +documentation of groups of closely related commands or styles may be +combined into a single file. This will be one file for a single-file +feature. For a package, it might be several files. These are simple +text files with a specific markup language, that are then auto-converted +to HTML and PDF. The tools for this conversion are included in the +source distribution, and the translation can be as simple as doing +"make html pdf" in the doc folder. +Thus the documentation source files must be in the same format and +style as other *.txt files in the lammps/doc/src directory for similar +commands and styles; use one or more of them as a starting point. +A description of the markup can also be found in +lammps/doc/utils/txt2html/README.html +As appropriate, the text files can include links to equations +(see doc/Eqs/*.tex for examples, we auto-create the associated JPG +files), or figures (see doc/JPG for examples), or even additional PDF +files with further details (see doc/PDF for examples). The doc page +should also include literature citations as appropriate; see the +bottom of doc/fix_nh.txt for examples and the earlier part of the same +file for how to format the cite itself. The "Restrictions" section of +the doc page should indicate that your command is only available if +LAMMPS is built with the appropriate USER-MISC or USER-FOO package. +See other user package doc files for examples of how to do this. The +prerequisite for building the HTML format files are Python 3.x and +virtualenv, the requirement for generating the PDF format manual +is the "htmldoc"_http://www.htmldoc.org/ software. Please run at least +"make html" and carefully inspect and proofread the resulting HTML format +doc page before submitting your code. :l + +For a new package (or even a single command) you should include one or +more example scripts demonstrating its use. These should run in no +more than a couple minutes, even on a single processor, and not require +large data files as input. See directories under examples/USER for +examples of input scripts other users provided for their packages. +These example inputs are also required for validating memory accesses +and testing for memory leaks with valgrind :l + +If there is a paper of yours describing your feature (either the +algorithm/science behind the feature itself, or its initial usage, or +its implementation in LAMMPS), you can add the citation to the *.cpp +source file. See src/USER-EFF/atom_vec_electron.cpp for an example. +A LaTeX citation is stored in a variable at the top of the file and a +single line of code that references the variable is added to the +constructor of the class. Whenever a user invokes your feature from +their input script, this will cause LAMMPS to output the citation to a +log.cite file and prompt the user to examine the file. Note that you +should only use this for a paper you or your group authored. +E.g. adding a cite in the code for a paper by Nose and Hoover if you +write a fix that implements their integrator is not the intended +usage. That kind of citation should just be in the doc page you +provide. :l +:ule + +Finally, as a general rule-of-thumb, the more clear and +self-explanatory you make your documentation and README files, and the +easier you make it for people to get started, e.g. by providing example +scripts, the more likely it is that users will try out your new feature. diff --git a/doc/src/Modify_dump.txt b/doc/src/Modify_dump.txt new file mode 100644 index 0000000000000000000000000000000000000000..81af54e0039a3ad9f95f34f7f0498457914a6f6d --- /dev/null +++ b/doc/src/Modify_dump.txt @@ -0,0 +1,35 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Dump styles :h3 + +Classes that dump per-atom info to files are derived from the Dump +class. To dump new quantities or in a new format, a new derived dump +class can be added, but it is typically simpler to modify the +DumpCustom class contained in the dump_custom.cpp file. + +Dump_atom.cpp is a simple example of a derived dump class. + +Here is a brief description of methods you define in your new derived +class. See dump.h for details. + +write_header: write the header section of a snapshot of atoms +count: count the number of lines a processor will output +pack: pack a proc's output data into a buffer +write_data: write a proc's data to a file :tb(s=:) + +See the "dump"_dump.html command and its {custom} style for a list of +keywords for atom information that can already be dumped by +DumpCustom. It includes options to dump per-atom info from Compute +classes, so adding a new derived Compute class is one way to calculate +new quantities to dump. + +Note that new keywords for atom properties are not typically +added to the "dump custom"_dump.html command. Instead they are added +to the "compute property/atom"_compute_property_atom.html command. diff --git a/doc/src/Modify_fix.txt b/doc/src/Modify_fix.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba985475cc9e72721b7dd50bf3bc9268f97f60c0 --- /dev/null +++ b/doc/src/Modify_fix.txt @@ -0,0 +1,107 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Fix styles :h3 + +In LAMMPS, a "fix" is any operation that is computed during +timestepping that alters some property of the system. Essentially +everything that happens during a simulation besides force computation, +neighbor list construction, and output, is a "fix". This includes +time integration (update of coordinates and velocities), force +constraints or boundary conditions (SHAKE or walls), and diagnostics +(compute a diffusion coefficient). New styles can be created to add +new options to LAMMPS. + +Fix_setforce.cpp is a simple example of setting forces on atoms to +prescribed values. There are dozens of fix options already in LAMMPS; +choose one as a template that is similar to what you want to +implement. + +Here is a brief description of methods you can define in your new +derived class. See fix.h for details. + +setmask: determines when the fix is called during the timestep (required) +init: initialization before a run (optional) +setup_pre_exchange: called before atom exchange in setup (optional) +setup_pre_force: called before force computation in setup (optional) +setup: called immediately before the 1st timestep and after forces are computed (optional) +min_setup_pre_force: like setup_pre_force, but for minimizations instead of MD runs (optional) +min_setup: like setup, but for minimizations instead of MD runs (optional) +initial_integrate: called at very beginning of each timestep (optional) +pre_exchange: called before atom exchange on re-neighboring steps (optional) +pre_neighbor: called before neighbor list build (optional) +pre_force: called before pair & molecular forces are computed (optional) +post_force: called after pair & molecular forces are computed and communicated (optional) +final_integrate: called at end of each timestep (optional) +end_of_step: called at very end of timestep (optional) +write_restart: dumps fix info to restart file (optional) +restart: uses info from restart file to re-initialize the fix (optional) +grow_arrays: allocate memory for atom-based arrays used by fix (optional) +copy_arrays: copy atom info when an atom migrates to a new processor (optional) +pack_exchange: store atom's data in a buffer (optional) +unpack_exchange: retrieve atom's data from a buffer (optional) +pack_restart: store atom's data for writing to restart file (optional) +unpack_restart: retrieve atom's data from a restart file buffer (optional) +size_restart: size of atom's data (optional) +maxsize_restart: max size of atom's data (optional) +setup_pre_force_respa: same as setup_pre_force, but for rRESPA (optional) +initial_integrate_respa: same as initial_integrate, but for rRESPA (optional) +post_integrate_respa: called after the first half integration step is done in rRESPA (optional) +pre_force_respa: same as pre_force, but for rRESPA (optional) +post_force_respa: same as post_force, but for rRESPA (optional) +final_integrate_respa: same as final_integrate, but for rRESPA (optional) +min_pre_force: called after pair & molecular forces are computed in minimizer (optional) +min_post_force: called after pair & molecular forces are computed and communicated in minimizer (optional) +min_store: store extra data for linesearch based minimization on a LIFO stack (optional) +min_pushstore: push the minimization LIFO stack one element down (optional) +min_popstore: pop the minimization LIFO stack one element up (optional) +min_clearstore: clear minimization LIFO stack (optional) +min_step: reset or move forward on line search minimization (optional) +min_dof: report number of degrees of freedom {added} by this fix in minimization (optional) +max_alpha: report maximum allowed step size during linesearch minimization (optional) +pack_comm: pack a buffer to communicate a per-atom quantity (optional) +unpack_comm: unpack a buffer to communicate a per-atom quantity (optional) +pack_reverse_comm: pack a buffer to reverse communicate a per-atom quantity (optional) +unpack_reverse_comm: unpack a buffer to reverse communicate a per-atom quantity (optional) +dof: report number of degrees of freedom {removed} by this fix during MD (optional) +compute_scalar: return a global scalar property that the fix computes (optional) +compute_vector: return a component of a vector property that the fix computes (optional) +compute_array: return a component of an array property that the fix computes (optional) +deform: called when the box size is changed (optional) +reset_target: called when a change of the target temperature is requested during a run (optional) +reset_dt: is called when a change of the time step is requested during a run (optional) +modify_param: called when a fix_modify request is executed (optional) +memory_usage: report memory used by fix (optional) +thermo: compute quantities for thermodynamic output (optional) :tb(s=:) + +Typically, only a small fraction of these methods are defined for a +particular fix. Setmask is mandatory, as it determines when the fix +will be invoked during the timestep. Fixes that perform time +integration ({nve}, {nvt}, {npt}) implement initial_integrate() and +final_integrate() to perform velocity Verlet updates. Fixes that +constrain forces implement post_force(). + +Fixes that perform diagnostics typically implement end_of_step(). For +an end_of_step fix, one of your fix arguments must be the variable +"nevery" which is used to determine when to call the fix and you must +set this variable in the constructor of your fix. By convention, this +is the first argument the fix defines (after the ID, group-ID, style). + +If the fix needs to store information for each atom that persists from +timestep to timestep, it can manage that memory and migrate the info +with the atoms as they move from processors to processor by +implementing the grow_arrays, copy_arrays, pack_exchange, and +unpack_exchange methods. Similarly, the pack_restart and +unpack_restart methods can be implemented to store information about +the fix in restart files. If you wish an integrator or force +constraint fix to work with rRESPA (see the "run_style"_run_style.html +command), the initial_integrate, post_force_integrate, and +final_integrate_respa methods can be implemented. The thermo method +enables a fix to contribute values to thermodynamic output, as printed +quantities and/or to be summed to the potential energy of the system. diff --git a/doc/src/Modify_kspace.txt b/doc/src/Modify_kspace.txt new file mode 100644 index 0000000000000000000000000000000000000000..21407bf2e9af32f5aa836889ca40824845eb5b98 --- /dev/null +++ b/doc/src/Modify_kspace.txt @@ -0,0 +1,25 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Kspace styles :h3 + +Classes that compute long-range Coulombic interactions via K-space +representations (Ewald, PPPM) are derived from the KSpace class. New +styles can be created to add new K-space options to LAMMPS. + +Ewald.cpp is an example of computing K-space interactions. + +Here is a brief description of methods you define in your new derived +class. See kspace.h for details. + +init: initialize the calculation before a run +setup: computation before the 1st timestep of a run +compute: every-timestep computation +memory_usage: tally of memory usage :tb(s=:) + diff --git a/doc/src/Modify_min.txt b/doc/src/Modify_min.txt new file mode 100644 index 0000000000000000000000000000000000000000..5dcf0f1e6751899be88458220e188dde5e6f716a --- /dev/null +++ b/doc/src/Modify_min.txt @@ -0,0 +1,23 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Minimization styles :h3 + +Classes that perform energy minimization derived from the Min class. +New styles can be created to add new minimization algorithms to +LAMMPS. + +Min_cg.cpp is an example of conjugate gradient minimization. + +Here is a brief description of methods you define in your new derived +class. See min.h for details. + +init: initialize the minimization before a run +run: perform the minimization +memory_usage: tally of memory usage :tb(s=:) diff --git a/doc/src/Modify_overview.txt b/doc/src/Modify_overview.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9964d964b14d0ae81d219aab6891278e37a3f36 --- /dev/null +++ b/doc/src/Modify_overview.txt @@ -0,0 +1,101 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Overview :h3 + +The best way to add a new feature to LAMMPS is to find a similar +featureand look at the corresponding source and header files to figure +out what it does. You will need some knowledge of C++ to be able to +understand the hi-level structure of LAMMPS and its class +organization, but functions (class methods) that do actual +computations are written in vanilla C-style code and operate on simple +C-style data structures (vectors and arrays). + +Most of the new features described on the "Modify"_Modify.html doc +page require you to write a new C++ derived class (except for +exceptions described below, where you can make small edits to existing +files). Creating a new class requires 2 files, a source code file +(*.cpp) and a header file (*.h). The derived class must provide +certain methods to work as a new option. Depending on how different +your new feature is compared to existing features, you can either +derive from the base class itself, or from a derived class that +already exists. Enabling LAMMPS to invoke the new class is as simple +as putting the two source files in the src dir and re-building LAMMPS. + +The advantage of C++ and its object-orientation is that all the code +and variables needed to define the new feature are in the 2 files you +write, and thus shouldn't make the rest of LAMMPS more complex or +cause side-effect bugs. + +Here is a concrete example. Suppose you write 2 files pair_foo.cpp +and pair_foo.h that define a new class PairFoo that computes pairwise +potentials described in the classic 1997 "paper"_#Foo by Foo, et al. +If you wish to invoke those potentials in a LAMMPS input script with a +command like + +pair_style foo 0.1 3.5 :pre + +then your pair_foo.h file should be structured as follows: + +#ifdef PAIR_CLASS +PairStyle(foo,PairFoo) +#else +... +(class definition for PairFoo) +... +#endif :pre + +where "foo" is the style keyword in the pair_style command, and +PairFoo is the class name defined in your pair_foo.cpp and pair_foo.h +files. + +When you re-build LAMMPS, your new pairwise potential becomes part of +the executable and can be invoked with a pair_style command like the +example above. Arguments like 0.1 and 3.5 can be defined and +processed by your new class. + +As illustrated by this pairwise example, many kinds of options are +referred to in the LAMMPS documentation as the "style" of a particular +command. + +The "Modify page"_Modify.html lists all the common styles in LAMMPS, +and discusses the header file for the base class that these styles are +derived from. Public variables in that file are ones used and set by +the derived classes which are also used by the base class. Sometimes +they are also used by the rest of LAMMPS. Virtual functions in the +base class header file which are set = 0 are ones you must define in +your new derived class to give it the functionality LAMMPS expects. +Virtual functions that are not set to 0 are functions you can +optionally define. + +Additionally, new output options can be added directly to the +thermo.cpp, dump_custom.cpp, and variable.cpp files. These are also +listed on the "Modify page"_Modify.html. + +Here are additional guidelines for modifying LAMMPS and adding new +functionality: + +Think about whether what you want to do would be better as a pre- or +post-processing step. Many computations are more easily and more +quickly done that way. :ulb,l + +Don't do anything within the timestepping of a run that isn't +parallel. E.g. don't accumulate a bunch of data on a single processor +and analyze it. You run the risk of seriously degrading the parallel +efficiency. :l + +If your new feature reads arguments or writes output, make sure you +follow the unit conventions discussed by the "units"_units.html +command. :l +:ule + +:line + +:link(Foo) +[(Foo)] Foo, Morefoo, and Maxfoo, J of Classic Potentials, 75, 345 (1997). diff --git a/doc/src/Modify_pair.txt b/doc/src/Modify_pair.txt new file mode 100644 index 0000000000000000000000000000000000000000..8c234dc62135f635bccc3e96ce93179cb901c569 --- /dev/null +++ b/doc/src/Modify_pair.txt @@ -0,0 +1,33 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Pair styles :h3 + +Classes that compute pairwise interactions are derived from the Pair +class. In LAMMPS, pairwise calculation include manybody potentials +such as EAM or Tersoff where particles interact without a static bond +topology. New styles can be created to add new pair potentials to +LAMMPS. + +Pair_lj_cut.cpp is a simple example of a Pair class, though it +includes some optional methods to enable its use with rRESPA. + +Here is a brief description of the class methods in pair.h: + +compute: workhorse routine that computes pairwise interactions +settings: reads the input script line with arguments you define +coeff: set coefficients for one i,j type pair +init_one: perform initialization for one i,j type pair +init_style: initialization specific to this pair style +write & read_restart: write/read i,j pair coeffs to restart files +write & read_restart_settings: write/read global settings to restart files +single: force and energy of a single pairwise interaction between 2 atoms +compute_inner/middle/outer: versions of compute used by rRESPA :tb(s=:) + +The inner/middle/outer routines are optional. diff --git a/doc/src/Modify_region.txt b/doc/src/Modify_region.txt new file mode 100644 index 0000000000000000000000000000000000000000..9fbf359292b3e2edd95a3e1b6bd616c4336831a2 --- /dev/null +++ b/doc/src/Modify_region.txt @@ -0,0 +1,25 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Region styles :h3 + +Classes that define geometric regions are derived from the Region +class. Regions are used elsewhere in LAMMPS to group atoms, delete +atoms to create a void, insert atoms in a specified region, etc. New +styles can be created to add new region shapes to LAMMPS. + +Region_sphere.cpp is an example of a spherical region. + +Here is a brief description of methods you define in your new derived +class. See region.h for details. + +inside: determine whether a point is in the region +surface_interior: determine if a point is within a cutoff distance inside of surc +surface_exterior: determine if a point is within a cutoff distance outside of surf +shape_update : change region shape if set by time-dependent variable :tb(s=:) diff --git a/doc/src/Modify_thermo.txt b/doc/src/Modify_thermo.txt new file mode 100644 index 0000000000000000000000000000000000000000..001a9f99e108e2fb26285ee8a672f0a54d9f0097 --- /dev/null +++ b/doc/src/Modify_thermo.txt @@ -0,0 +1,35 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Thermodynamic output options :h3 + +There is one class that computes and prints thermodynamic information +to the screen and log file; see the file thermo.cpp. + +There are two styles defined in thermo.cpp: "one" and "multi". There +is also a flexible "custom" style which allows the user to explicitly +list keywords for quantities to print when thermodynamic info is +output. See the "thermo_style"_thermo_style.html command for a list +of defined quantities. + +The thermo styles (one, multi, etc) are simply lists of keywords. +Adding a new style thus only requires defining a new list of keywords. +Search for the word "customize" with references to "thermo style" in +thermo.cpp to see the two locations where code will need to be added. + +New keywords can also be added to thermo.cpp to compute new quantities +for output. Search for the word "customize" with references to +"keyword" in thermo.cpp to see the several locations where code will +need to be added. + +Note that the "thermo_style custom"_thermo.html command already allows +for thermo output of quantities calculated by "fixes"_fix.html, +"computes"_compute.html, and "variables"_variable.html. Thus, it may +be simpler to compute what you wish via one of those constructs, than +by adding a new keyword to the thermo command. diff --git a/doc/src/Modify_variable.txt b/doc/src/Modify_variable.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c5b29cd1af5d234dd76b2d573bcc07d2eb8087f --- /dev/null +++ b/doc/src/Modify_variable.txt @@ -0,0 +1,46 @@ +"Higher level section"_Modify.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Variable options :h3 + +There is one class that computes and stores "variable"_variable.html +information in LAMMPS; see the file variable.cpp. The value +associated with a variable can be periodically printed to the screen +via the "print"_print.html, "fix print"_fix_print.html, or +"thermo_style custom"_thermo_style.html commands. Variables of style +"equal" can compute complex equations that involve the following types +of arguments: + +thermo keywords = ke, vol, atoms, ... +other variables = v_a, v_myvar, ... +math functions = div(x,y), mult(x,y), add(x,y), ... +group functions = mass(group), xcm(group,x), ... +atom values = x\[123\], y\[3\], vx\[34\], ... +compute values = c_mytemp\[0\], c_thermo_press\[3\], ... :pre + +Adding keywords for the "thermo_style custom"_thermo_style.html +command (which can then be accessed by variables) is discussed on the +"Modify thermo"_Modify_thermo.html doc page. + +Adding a new math function of one or two arguments can be done by +editing one section of the Variable::evaluate() method. Search for +the word "customize" to find the appropriate location. + +Adding a new group function can be done by editing one section of the +Variable::evaluate() method. Search for the word "customize" to find +the appropriate location. You may need to add a new method to the +Group class as well (see the group.cpp file). + +Accessing a new atom-based vector can be done by editing one section +of the Variable::evaluate() method. Search for the word "customize" +to find the appropriate location. + +Adding new "compute styles"_compute.html (whose calculated values can +then be accessed by variables) is discussed on the "Modify +compute"_Modify_compute.html doc page. diff --git a/doc/src/PDF/USER-CGDNA-overview.pdf b/doc/src/PDF/USER-CGDNA-overview.pdf deleted file mode 100644 index e329877bc2cc5953574ea8fbd65789158a050879..0000000000000000000000000000000000000000 Binary files a/doc/src/PDF/USER-CGDNA-overview.pdf and /dev/null differ diff --git a/doc/src/PDF/USER-CGDNA.pdf b/doc/src/PDF/USER-CGDNA.pdf new file mode 100644 index 0000000000000000000000000000000000000000..843bba00d5c5a707577d07dda1929ba4c8a07987 Binary files /dev/null and b/doc/src/PDF/USER-CGDNA.pdf differ diff --git a/doc/src/PDF/colvars-refman-lammps.pdf b/doc/src/PDF/colvars-refman-lammps.pdf index 2d28758819a9a7a0dac700cd4a8239f51257b8e1..7f52367c82eec09a0465b356b326e996482a9bc3 100644 Binary files a/doc/src/PDF/colvars-refman-lammps.pdf and b/doc/src/PDF/colvars-refman-lammps.pdf differ diff --git a/doc/src/Packages.txt b/doc/src/Packages.txt new file mode 100644 index 0000000000000000000000000000000000000000..6498d030634a184f04d2a8a489a81949740789f2 --- /dev/null +++ b/doc/src/Packages.txt @@ -0,0 +1,39 @@ +"Previous Section"_Section_commands.html - "LAMMPS WWW Site"_lws - +"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Speed.html :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Optional packages :h2 + +This section gives an overview of the optional packages that extend +LAMMPS functionality. Packages are groups of files that enable a +specific set of features. For example, force fields for molecular +systems or rigid-body constraint are in packages. You can see the +list of all packages and "make" commands to manage them by typing +"make package" from within the src directory of the LAMMPS +distribution. "Section 2.3"_Section_start.html#start_3 gives general +info on how to install and un-install packages as part of the LAMMPS +build process. + + + + + +"Standard packages"_Packages_standard.html +"User packages"_Packages_user.html +"Details on each package"_Packages_details.html :ul + + diff --git a/doc/src/Section_packages.txt b/doc/src/Packages_details.txt similarity index 87% rename from doc/src/Section_packages.txt rename to doc/src/Packages_details.txt index ade75c588f071fc75fb85e35b9e28e304f693070..af18d097d9041654b2cc3b6c457bd4e487a82605 100644 --- a/doc/src/Section_packages.txt +++ b/doc/src/Packages_details.txt @@ -1,6 +1,5 @@ -"Previous Section"_Section_commands.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next -Section"_Section_accelerate.html :c +"Higher level section"_Packages.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -8,151 +7,89 @@ Section"_Section_accelerate.html :c :line -4. Packages :h2 - -This section gives an overview of the optional packages that extend -LAMMPS functionality with instructions on how to build LAMMPS with -each of them. Packages are groups of files that enable a specific set -of features. For example, force fields for molecular systems or -granular systems are in packages. You can see the list of all -packages and "make" commands to manage them by typing "make package" -from within the src directory of the LAMMPS distribution. "Section -2.3"_Section_start.html#start_3 gives general info on how to install -and un-install packages as part of the LAMMPS build process. - -There are two kinds of packages in LAMMPS, standard and user packages: - -"Table of standard packages"_#table_standard -"Table of user packages"_#table_user :ul - -Either of these kinds of packages may work as is, may require some -additional code compiled located in the lib folder, or may require -an external library to be downloaded, compiled, installed, and LAMMPS -configured to know about its location and additional compiler flags. -You can often do the build of the internal or external libraries -in one step by typing "make lib-name args='...'" from the src dir, -with appropriate arguments included in args='...'. If you just type -"make lib-name" you should see a help message about supported flags -and some examples. For more details about this, please study the -tables below and the sections about the individual packages. - -Standard packages are supported by the LAMMPS developers and are -written in a syntax and style consistent with the rest of LAMMPS. -This means the developers will answer questions about them, debug and -fix them if necessary, and keep them compatible with future changes to -LAMMPS. - -User packages have been contributed by users, and begin with the -"user" prefix. If they are a single command (single file), they are -typically in the user-misc package. User packages don't necessarily -meet the requirements of the standard packages. This means the -developers will try to keep things working and usually can answer -technical questions about compiling the package. If you have problems -using a feature provided in a user package, you may need to contact -the contributor directly to get help. Information on how to submit -additions you make to LAMMPS as single files or as a standard or user -package are given in "this section"_Section_modify.html#mod_15 of the -manual. - -Following the next two tables is a sub-section for each package. It -lists authors (if applicable) and summarizes the package contents. It -has specific instructions on how to install the package, including (if -necessary) downloading or building any extra library it requires. It -also gives links to documentation, example scripts, and -pictures/movies (if available) that illustrate use of the package. +Package details :h3 + +Here is a brief description of all the standard and user packages in +LAMMPS. It lists authors (if applicable) and summarizes the package +contents. It has specific instructions on how to install the package, +including, if necessary, info on how to download or build any extra +library it requires. It also gives links to documentation, example +scripts, and pictures/movies (if available) that illustrate use of the +package. NOTE: To see the complete list of commands a package adds to LAMMPS, -just look at the files in its src directory, e.g. "ls src/GRANULAR". -Files with names that start with fix, compute, atom, pair, bond, -angle, etc correspond to commands with the same style names. - -In these two tables, the "Example" column is a sub-directory in the -examples directory of the distribution which has an input script that -uses the package. E.g. "peptide" refers to the examples/peptide -directory; USER/atc refers to the examples/USER/atc directory. The -"Library" column indicates whether an extra library is needed to build -and use the package: - -dash = no library -sys = system library: you likely have it on your machine -int = internal library: provided with LAMMPS, but you may need to build it -ext = external library: you will need to download and install it on your machine :ul - -:line -:line - -[Standard packages] :link(table_standard),p - -Package, Description, Doc page, Example, Library -"ASPHERE"_#ASPHERE, aspherical particle models, "Section 6.6.14"_Section_howto.html#howto_14, ellipse, - -"BODY"_#BODY, body-style particles, "body"_body.html, body, - -"CLASS2"_#CLASS2, class 2 force fields, "pair_style lj/class2"_pair_class2.html, -, - -"COLLOID"_#COLLOID, colloidal particles, "atom_style colloid"_atom_style.html, colloid, - -"COMPRESS"_#COMPRESS, I/O compression, "dump */gz"_dump.html, -, sys -"CORESHELL"_#CORESHELL, adiabatic core/shell model, "Section 6.6.25"_Section_howto.html#howto_25, coreshell, - -"DIPOLE"_#DIPOLE, point dipole particles, "pair_style dipole/cut"_pair_dipole.html, dipole, - -"GPU"_#GPU, GPU-enabled styles, "Section 5.3.1"_accelerate_gpu.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, int -"GRANULAR"_#GRANULAR, granular systems, "Section 6.6.6"_Section_howto.html#howto_6, pour, - -"KIM"_#KIM, OpenKIM wrapper, "pair_style kim"_pair_kim.html, kim, ext -"KOKKOS"_#KOKKOS, Kokkos-enabled styles, "Section 5.3.3"_accelerate_kokkos.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, - -"KSPACE"_#KSPACE, long-range Coulombic solvers, "kspace_style"_kspace_style.html, peptide, - -"LATTE"_#LATTE, quantum DFTB forces via LATTE, "fix latte"_fix_latte.html, latte, ext -"MANYBODY"_#MANYBODY, many-body potentials, "pair_style tersoff"_pair_tersoff.html, shear, - -"MC"_#MC, Monte Carlo options, "fix gcmc"_fix_gcmc.html, -, - -"MEAM"_#MEAM, modified EAM potential, "pair_style meam"_pair_meam.html, meam, int -"MISC"_#MISC, miscellanous single-file commands, -, -, - -"MOLECULE"_#MOLECULE, molecular system force fields, "Section 6.6.3"_Section_howto.html#howto_3, peptide, - -"MPIIO"_#MPIIO, MPI parallel I/O dump and restart, "dump"_dump.html, -, - -"MSCG"_#MSCG, multi-scale coarse-graining wrapper, "fix mscg"_fix_mscg.html, mscg, ext -"OPT"_#OPT, optimized pair styles, "Section 5.3.5"_accelerate_opt.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, - -"PERI"_#PERI, Peridynamics models, "pair_style peri"_pair_peri.html, peri, - -"POEMS"_#POEMS, coupled rigid body motion, "fix poems"_fix_poems.html, rigid, int -"PYTHON"_#PYTHON, embed Python code in an input script, "python"_python.html, python, sys -"QEQ"_#QEQ, QEq charge equilibration, "fix qeq"_fix_qeq.html, qeq, - -"REAX"_#REAX, ReaxFF potential (Fortran), "pair_style reax"_pair_reax.html, reax, int -"REPLICA"_#REPLICA, multi-replica methods, "Section 6.6.5"_Section_howto.html#howto_5, tad, - -"RIGID"_#RIGID, rigid bodies and constraints, "fix rigid"_fix_rigid.html, rigid, - -"SHOCK"_#SHOCK, shock loading methods, "fix msst"_fix_msst.html, -, - -"SNAP"_#SNAP, quantum-fitted potential, "pair_style snap"_pair_snap.html, snap, - -"SRD"_#SRD, stochastic rotation dynamics, "fix srd"_fix_srd.html, srd, - -"VORONOI"_#VORONOI, Voronoi tesselation, "compute voronoi/atom"_compute_voronoi_atom.html, -, ext :tb(ea=c,ca1=l) - -[USER packages] :link(table_user),p - -Package, Description, Doc page, Example, Library -"USER-ATC"_#USER-ATC, atom-to-continuum coupling, "fix atc"_fix_atc.html, USER/atc, int -"USER-AWPMD"_#USER-AWPMD, wave-packet MD, "pair_style awpmd/cut"_pair_awpmd.html, USER/awpmd, int -"USER-CGDNA"_#USER-CGDNA, coarse-grained DNA force fields, src/USER-CGDNA/README, USER/cgdna, - -"USER-CGSDK"_#USER-CGSDK, SDK coarse-graining model, "pair_style lj/sdk"_pair_sdk.html, USER/cgsdk, - -"USER-COLVARS"_#USER-COLVARS, collective variables library, "fix colvars"_fix_colvars.html, USER/colvars, int -"USER-DIFFRACTION"_#USER-DIFFRACTION, virtual x-ray and electron diffraction,"compute xrd"_compute_xrd.html, USER/diffraction, - -"USER-DPD"_#USER-DPD, reactive dissipative particle dynamics, src/USER-DPD/README, USER/dpd, - -"USER-DRUDE"_#USER-DRUDE, Drude oscillators, "tutorial"_tutorial_drude.html, USER/drude, - -"USER-EFF"_#USER-EFF, electron force field,"pair_style eff/cut"_pair_eff.html, USER/eff, - -"USER-FEP"_#USER-FEP, free energy perturbation,"compute fep"_compute_fep.html, USER/fep, - -"USER-H5MD"_#USER-H5MD, dump output via HDF5,"dump h5md"_dump_h5md.html, -, ext -"USER-INTEL"_#USER-INTEL, optimized Intel CPU and KNL styles,"Section 5.3.2"_accelerate_intel.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, - -"USER-LB"_#USER-LB, Lattice Boltzmann fluid,"fix lb/fluid"_fix_lb_fluid.html, USER/lb, - -"USER-MANIFOLD"_#USER-MANIFOLD, motion on 2d surfaces,"fix manifoldforce"_fix_manifoldforce.html, USER/manifold, - -"USER-MEAMC"_#USER-MEAMC, modified EAM potential (C++), "pair_style meam/c"_pair_meam.html, meam, - -"USER-MESO"_#USER-MESO, mesoscale DPD models, "pair_style edpd"_pair_meso.html, USER/meso, - -"USER-MGPT"_#USER-MGPT, fast MGPT multi-ion potentials, "pair_style mgpt"_pair_mgpt.html, USER/mgpt, - -"USER-MISC"_#USER-MISC, single-file contributions, USER-MISC/README, USER/misc, - -"USER-MOFFF"_#USER-MOFFF, styles for "MOF-FF"_MOFplus force field, "pair_style buck6d/coul/gauss"_pair_buck6d_coul_gauss.html, USER/mofff, - -"USER-MOLFILE"_#USER-MOLFILE, "VMD"_vmd_home molfile plug-ins,"dump molfile"_dump_molfile.html, -, ext -"USER-NETCDF"_#USER-NETCDF, dump output via NetCDF,"dump netcdf"_dump_netcdf.html, -, ext -"USER-OMP"_#USER-OMP, OpenMP-enabled styles,"Section 5.3.4"_accelerate_omp.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, - -"USER-PHONON"_#USER-PHONON, phonon dynamical matrix,"fix phonon"_fix_phonon.html, USER/phonon, - -"USER-QMMM"_#USER-QMMM, QM/MM coupling,"fix qmmm"_fix_qmmm.html, USER/qmmm, ext -"USER-QTB"_#USER-QTB, quantum nuclear effects,"fix qtb"_fix_qtb.html "fix qbmsst"_fix_qbmsst.html, qtb, - -"USER-QUIP"_#USER-QUIP, QUIP/libatoms interface,"pair_style quip"_pair_quip.html, USER/quip, ext -"USER-REAXC"_#USER-REAXC, ReaxFF potential (C/C++) ,"pair_style reaxc"_pair_reaxc.html, reax, - -"USER-SMD"_#USER-SMD, smoothed Mach dynamics,"SMD User Guide"_PDF/SMD_LAMMPS_userguide.pdf, USER/smd, ext -"USER-SMTBQ"_#USER-SMTBQ, second moment tight binding QEq potential,"pair_style smtbq"_pair_smtbq.html, USER/smtbq, - -"USER-SPH"_#USER-SPH, smoothed particle hydrodynamics,"SPH User Guide"_PDF/SPH_LAMMPS_userguide.pdf, USER/sph, - -"USER-TALLY"_#USER-TALLY, pairwise tally computes,"compute XXX/tally"_compute_tally.html, USER/tally, - -"USER-UEF"_#USER-UEF, extensional flow,"fix nvt/uef"_fix_nh_uef.html, USER/uef, - -"USER-VTK"_#USER-VTK, dump output via VTK, "compute vtk"_dump_vtk.html, -, ext :tb(ea=c,ca1=l) +you can examine the files in its src directory, e.g. "ls +src/GRANULAR". Files with names that start with fix, compute, atom, +pair, bond, angle, etc correspond to commands with the same style name +as contained in the file name. + +"ASPHERE"_#ASPHERE, +"BODY"_#BODY, +"CLASS2"_#CLASS2, +"COLLOID"_#COLLOID, +"COMPRESS"_#COMPRESS, +"CORESHELL"_#CORESHELL, +"DIPOLE"_#DIPOLE, +"GPU"_#GPU, +"GRANULAR"_#GRANULAR, +"KIM"_#KIM, +"KOKKOS"_#KOKKOS, +"KSPACE"_#KSPACE, +"LATTE"_#LATTE, +"MANYBODY"_#MANYBODY, +"MC"_#MC, +"MEAM"_#MEAM, +"MISC"_#MISC, +"MOLECULE"_#MOLECULE, +"MPIIO"_#MPIIO, +"MSCG"_#MSCG, +"OPT"_#OPT, +"PERI"_#PERI, +"POEMS"_#POEMS, +"PYTHON"_#PYTHON, +"QEQ"_#QEQ, +"REAX"_#REAX, +"REPLICA"_#REPLICA, +"RIGID"_#RIGID, +"SHOCK"_#SHOCK, +"SNAP"_#SNAP, +"SRD"_#SRD, +"VORONOI"_#VORONOI :tb(c=6,ea=c) + +"USER-ATC"_#USER-ATC, +"USER-AWPMD"_#USER-AWPMD, +"USER-BOCS"_#USER-BOCS, +"USER-CGDNA"_#USER-CGDNA, +"USER-CGSDK"_#USER-CGSDK, +"USER-COLVARS"_#USER-COLVARS, +"USER-DIFFRACTION"_#USER-DIFFRACTION, +"USER-DPD"_#USER-DPD, +"USER-DRUDE"_#USER-DRUDE, +"USER-EFF"_#USER-EFF, +"USER-FEP"_#USER-FEP, +"USER-H5MD"_#USER-H5MD, +"USER-INTEL"_#USER-INTEL, +"USER-LB"_#USER-LB, +"USER-MANIFOLD"_#USER-MANIFOLD, +"USER-MEAMC"_#USER-MEAMC, +"USER-MESO"_#USER-MESO, +"USER-MGPT"_#USER-MGPT, +"USER-MISC"_#USER-MISC, +"USER-MOFFF"_#USER-MOFFF, +"USER-MOLFILE"_#USER-MOLFILE, +"USER-NETCDF"_#USER-NETCDF, +"USER-OMP"_#USER-OMP, +"USER-PHONON"_#USER-PHONON, +"USER-QMMM"_#USER-QMMM, +"USER-QTB"_#USER-QTB, +"USER-QUIP"_#USER-QUIP, +"USER-REAXC"_#USER-REAXC, +"USER-SMD"_#USER-SMD, +"USER-SMTBQ"_#USER-SMTBQ, +"USER-SPH"_#USER-SPH, +"USER-TALLY"_#USER-TALLY, +"USER-UEF"_#USER-UEF, +"USER-VTK"_#USER-VTK :tb(c=6,ea=c) :line :line @@ -379,14 +316,14 @@ GPU package :link(GPU),h4 [Contents:] Dozens of pair styles and a version of the PPPM long-range Coulombic -solver optimized for GPUs. All such styles have a "gpu" as a -suffix in their style name. The GPU code can be compiled with either -CUDA or OpenCL, however the OpenCL variants are no longer actively -maintained and only the CUDA versions are regularly tested. -"Section 5.3.1"_accelerate_gpu.html gives details of what -hardware and GPU software is required on your system, -and details on how to build and use this package. Its styles can be -invoked at run time via the "-sf gpu" or "-suffix gpu" "command-line +solver optimized for GPUs. All such styles have a "gpu" as a suffix +in their style name. The GPU code can be compiled with either CUDA or +OpenCL, however the OpenCL variants are no longer actively maintained +and only the CUDA versions are regularly tested. The "Speed +gpu"_Speed_gpu.html doc page gives details of what hardware and GPU +software is required on your system, and details on how to build and +use this package. Its styles can be invoked at run time via the "-sf +gpu" or "-suffix gpu" "command-line switches"_Section_start.html#start_6. See also the "KOKKOS"_#KOKKOS package, which has GPU-enabled styles. @@ -452,8 +389,8 @@ GPU library. src/GPU: filenames -> commands src/GPU/README lib/gpu/README -"Section 5.3"_Section_accelerate.html#acc_3 -"Section 5.3.1"_accelerate_gpu.html +"Speed packages"_Speed_packages.html +"Speed gpu"_Speed_gpu.html.html "Section 2.6 -sf gpu"_Section_start.html#start_6 "Section 2.6 -pk gpu"_Section_start.html#start_6 "package gpu"_package.html @@ -578,10 +515,10 @@ Dozens of atom, pair, bond, angle, dihedral, improper, fix, compute styles adapted to compile using the Kokkos library which can convert them to OpenMP or CUDA code so that they run efficiently on multicore CPUs, KNLs, or GPUs. All the styles have a "kk" as a suffix in their -style name. "Section 5.3.3"_accelerate_kokkos.html gives details of -what hardware and software is required on your system, and how to -build and use this package. Its styles can be invoked at run time via -the "-sf kk" or "-suffix kk" "command-line +style name. The "Speed kokkos"_Speed_kokkos.html doc page gives +details of what hardware and software is required on your system, and +how to build and use this package. Its styles can be invoked at run +time via the "-sf kk" or "-suffix kk" "command-line switches"_Section_start.html#start_6. Also see the "GPU"_#GPU, "OPT"_#OPT, "USER-INTEL"_#USER-INTEL, and "USER-OMP"_#USER-OMP packages, which have styles optimized for CPUs, KNLs, and GPUs. @@ -648,8 +585,8 @@ make machine :pre src/KOKKOS: filenames -> commands src/KOKKOS/README lib/kokkos/README -"Section 5.3"_Section_accelerate.html#acc_3 -"Section 5.3.3"_accelerate_kokkos.html +"Speed packages"_Speed_packages.html +"Speed kokkos"_Speed_kokkos.html "Section 2.6 -k on ..."_Section_start.html#start_6 "Section 2.6 -sf kk"_Section_start.html#start_6 "Section 2.6 -pk kokkos"_Section_start.html#start_6 @@ -1047,9 +984,9 @@ OPT package :link(OPT),h4 A handful of pair styles which are optimized for improved CPU performance on single or multiple cores. These include EAM, LJ, CHARMM, and Morse potentials. The styles have an "opt" suffix in -their style name. "Section 5.3.5"_accelerate_opt.html gives details -of how to build and use this package. Its styles can be invoked at -run time via the "-sf opt" or "-suffix opt" "command-line +their style name. The "Speed opt"_Speed_opt.html doc page gives +details of how to build and use this package. Its styles can be +invoked at run time via the "-sf opt" or "-suffix opt" "command-line switches"_Section_start.html#start_6. See also the "KOKKOS"_#KOKKOS, "USER-INTEL"_#USER-INTEL, and "USER-OMP"_#USER-OMP packages, which have styles optimized for CPU performance. @@ -1075,8 +1012,8 @@ CCFLAGS: add -restrict for Intel compilers :ul [Supporting info:] src/OPT: filenames -> commands -"Section 5.3"_Section_accelerate.html#acc_3 -"Section 5.3.5"_accelerate_opt.html +"Speed packages"_Speed_packages.html +"Speed opt"_Speed_opt.html "Section 2.6 -sf opt"_Section_start.html#start_6 Pair Styles section of "Section 3.5"_Section_commands.html#cmd_5 for pair styles followed by (t) "Benchmarks page"_http://lammps.sandia.gov/bench.html of web site :ul @@ -1625,6 +1562,43 @@ examples/USER/awpmd :ul :line +USER-BOCS package :link(USER-BOCS),h4 + +[Contents:] + +This package provides "fix bocs"_fix_bocs.html, a modified version +of "fix npt"_fix_nh.html which includes the pressure correction to +the barostat as outlined in: + +N. J. H. Dunn and W. G. Noid, "Bottom-up coarse-grained models that +accurately describe the structure, pressure, and compressibility of +molecular liquids," J. Chem. Phys. 143, 243148 (2015). + +[Authors:] Nicholas J. H. Dunn and Michael R. DeLyser (The Pennsylvania State University) + +[Install or un-install:] + +make yes-user-bocs +make machine :pre + +make no-user-bocs +make machine :pre + +[Supporting info:] + +The USER-BOCS user package for LAMMPS is part of the BOCS software package: +"https://github.com/noid-group/BOCS"_https://github.com/noid-group/BOCS + +See the following reference for information about the entire package: + +Dunn, NJH; Lebold, KM; DeLyser, MR; Rudzinski, JF; Noid, WG. +"BOCS: Bottom-Up Open-Source Coarse-Graining Software." +J. Phys. Chem. B. 122, 13, 3363-3377 (2018). + +Example inputs are in the examples/USER/bocs folder. + +:line + USER-CGDNA package :link(USER-CGDNA),h4 [Contents:] @@ -1995,8 +1969,8 @@ USER-INTEL package :link(USER-INTEL),h4 Dozens of pair, fix, bond, angle, dihedral, improper, and kspace styles which are optimized for Intel CPUs and KNLs (Knights Landing). -All of them have an "intel" in their style name. "Section -5.3.2"_accelerate_intel.html gives details of what hardware and +All of them have an "intel" in their style name. The "Speed +intel"_Speed_intel.html doc page gives details of what hardware and compilers are required on your system, and how to build and use this package. Its styles can be invoked at run time via the "-sf intel" or "-suffix intel" "command-line switches"_Section_start.html#start_6. @@ -2046,7 +2020,7 @@ hardware target, to produce a separate executable. You should also typically install the USER-OMP package, as it can be used in tandem with the USER-INTEL package to good effect, as -explained in "Section 5.3.2"_accelerate_intel.html. +explained on the "Speed intel"_Speed_intel.html doc page. make yes-user-intel yes-user-omp make machine :pre @@ -2058,8 +2032,8 @@ make machine :pre src/USER-INTEL: filenames -> commands src/USER-INTEL/README -"Section 5.3"_Section_accelerate.html#acc_3 -"Section 5.3.2"_accelerate_gpu.html +"Speed packages"_Speed_packages.html +"Speed intel"_Speed_intel.html "Section 2.6 -sf intel"_Section_start.html#start_6 "Section 2.6 -pk intel"_Section_start.html#start_6 "package intel"_package.html @@ -2405,10 +2379,10 @@ USER-OMP package :link(USER-OMP),h4 Hundreds of pair, fix, compute, bond, angle, dihedral, improper, and kspace styles which are altered to enable threading on many-core CPUs via OpenMP directives. All of them have an "omp" in their style name. -"Section 5.3.4"_accelerate_omp.html gives details of what hardware and -compilers are required on your system, and how to build and use this -package. Its styles can be invoked at run time via the "-sf omp" or -"-suffix omp" "command-line switches"_Section_start.html#start_6. +The "Speed omp"_Speed_omp.html doc page gives details of what hardware +and compilers are required on your system, and how to build and use +this package. Its styles can be invoked at run time via the "-sf omp" +or "-suffix omp" "command-line switches"_Section_start.html#start_6. Also see the "KOKKOS"_#KOKKOS, "OPT"_#OPT, and "USER-INTEL"_#USER-INTEL packages, which have styles optimized for CPUs. @@ -2443,8 +2417,8 @@ LINKFLAGS: add -fopenmp :ul src/USER-OMP: filenames -> commands src/USER-OMP/README -"Section 5.3"_Section_accelerate.html#acc_3 -"Section 5.3.4"_accelerate_omp.html +"Speed packages"_Speed_packages.html +"Speed omp"_Speed_omp.html "Section 2.6 -sf omp"_Section_start.html#start_6 "Section 2.6 -pk omp"_Section_start.html#start_6 "package omp"_package.html diff --git a/doc/src/Packages_standard.txt b/doc/src/Packages_standard.txt new file mode 100644 index 0000000000000000000000000000000000000000..095bf699a62b0dd3eca98952bcff2e7230ae498c --- /dev/null +++ b/doc/src/Packages_standard.txt @@ -0,0 +1,65 @@ +"Higher level section"_Packages.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Standard packages :h3 + +This is the list of standard packages in LAMMPS. The link for each +package name gives more details. + +Standard packages are supported by the LAMMPS developers and are +written in a syntax and style consistent with the rest of LAMMPS. +This means the developers will answer questions about them, debug and +fix them if necessary, and keep them compatible with future changes to +LAMMPS. + +The "Example" column is a sub-directory in the examples directory of +the distribution which has an input script that uses the package. +E.g. "peptide" refers to the examples/peptide directory; USER/atc +refers to the examples/USER/atc directory. The "Library" column +indicates whether an extra library is needed to build and use the +package: + +dash = no library +sys = system library: you likely have it on your machine +int = internal library: provided with LAMMPS, but you may need to build it +ext = external library: you will need to download and install it on your machine :ul + +Package, Description, Doc page, Example, Library +"ASPHERE"_Packages_details.html#ASPHERE, aspherical particle models, "Section 6.6.14"_Section_howto.html#howto_14, ellipse, - +"BODY"_Packages_details.html#BODY, body-style particles, "body"_body.html, body, - +"CLASS2"_Packages_details.html#CLASS2, class 2 force fields, "pair_style lj/class2"_pair_class2.html, -, - +"COLLOID"_Packages_details.html#COLLOID, colloidal particles, "atom_style colloid"_atom_style.html, colloid, - +"COMPRESS"_Packages_details.html#COMPRESS, I/O compression, "dump */gz"_dump.html, -, sys +"CORESHELL"_Packages_details.html#CORESHELL, adiabatic core/shell model, "Section 6.6.25"_Section_howto.html#howto_25, coreshell, - +"DIPOLE"_Packages_details.html#DIPOLE, point dipole particles, "pair_style dipole/cut"_pair_dipole.html, dipole, - +"GPU"_Packages_details.html#GPU, GPU-enabled styles, "Section gpu"_Speed_gpu.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, int +"GRANULAR"_Packages_details.html#GRANULAR, granular systems, "Section 6.6.6"_Section_howto.html#howto_6, pour, - +"KIM"_Packages_details.html#KIM, OpenKIM wrapper, "pair_style kim"_pair_kim.html, kim, ext +"KOKKOS"_Packages_details.html#KOKKOS, Kokkos-enabled styles, "Speed kokkos"_Speed_kokkos.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, - +"KSPACE"_Packages_details.html#KSPACE, long-range Coulombic solvers, "kspace_style"_kspace_style.html, peptide, - +"LATTE"_Packages_details.html#LATTE, quantum DFTB forces via LATTE, "fix latte"_fix_latte.html, latte, ext +"MANYBODY"_Packages_details.html#MANYBODY, many-body potentials, "pair_style tersoff"_pair_tersoff.html, shear, - +"MC"_Packages_details.html#MC, Monte Carlo options, "fix gcmc"_fix_gcmc.html, -, - +"MEAM"_Packages_details.html#MEAM, modified EAM potential, "pair_style meam"_pair_meam.html, meam, int +"MISC"_Packages_details.html#MISC, miscellanous single-file commands, -, -, - +"MOLECULE"_Packages_details.html#MOLECULE, molecular system force fields, "Section 6.6.3"_Section_howto.html#howto_3, peptide, - +"MPIIO"_Packages_details.html#MPIIO, MPI parallel I/O dump and restart, "dump"_dump.html, -, - +"MSCG"_Packages_details.html#MSCG, multi-scale coarse-graining wrapper, "fix mscg"_fix_mscg.html, mscg, ext +"OPT"_Packages_details.html#OPT, optimized pair styles, "Speed opt"_Speed_opt.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, - +"PERI"_Packages_details.html#PERI, Peridynamics models, "pair_style peri"_pair_peri.html, peri, - +"POEMS"_Packages_details.html#POEMS, coupled rigid body motion, "fix poems"_fix_poems.html, rigid, int +"PYTHON"_Packages_details.html#PYTHON, embed Python code in an input script, "python"_python.html, python, sys +"QEQ"_Packages_details.html#QEQ, QEq charge equilibration, "fix qeq"_fix_qeq.html, qeq, - +"REAX"_Packages_details.html#REAX, ReaxFF potential (Fortran), "pair_style reax"_pair_reax.html, reax, int +"REPLICA"_Packages_details.html#REPLICA, multi-replica methods, "Section 6.6.5"_Section_howto.html#howto_5, tad, - +"RIGID"_Packages_details.html#RIGID, rigid bodies and constraints, "fix rigid"_fix_rigid.html, rigid, - +"SHOCK"_Packages_details.html#SHOCK, shock loading methods, "fix msst"_fix_msst.html, -, - +"SNAP"_Packages_details.html#SNAP, quantum-fitted potential, "pair_style snap"_pair_snap.html, snap, - +"SRD"_Packages_details.html#SRD, stochastic rotation dynamics, "fix srd"_fix_srd.html, srd, - +"VORONOI"_Packages_details.html#VORONOI, Voronoi tesselation, "compute voronoi/atom"_compute_voronoi_atom.html, -, ext :tb(ea=c,ca1=l) diff --git a/doc/src/Packages_user.txt b/doc/src/Packages_user.txt new file mode 100644 index 0000000000000000000000000000000000000000..73c7fdb65d95e084f5e4fdcf1df0458f1687ecc8 --- /dev/null +++ b/doc/src/Packages_user.txt @@ -0,0 +1,74 @@ +"Higher level section"_Packages.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +User packages :h3 + +This is a list of user packages in LAMMPS. The link for each package +name gives more details. + +User packages have been contributed by users, and begin with the +"user" prefix. If a contribution is a single command (single file), +it is typically in the user-misc package. User packages don't +necessarily meet the requirements of the "standard +packages"_Packages_standard.html. This means the developers will try +to keep things working and usually can answer technical questions +about compiling the package. If you have problems using a specific +feature provided in a user package, you may need to contact the +contributor directly to get help. Information on how to submit +additions you make to LAMMPS as single files or as a standard or user +package is explained on the "Modify contribute"_Modify_contribute.html +doc page. + +The "Example" column is a sub-directory in the examples directory of +the distribution which has an input script that uses the package. +E.g. "peptide" refers to the examples/peptide directory; USER/atc +refers to the examples/USER/atc directory. The "Library" column +indicates whether an extra library is needed to build and use the +package: + +dash = no library +sys = system library: you likely have it on your machine +int = internal library: provided with LAMMPS, but you may need to build it +ext = external library: you will need to download and install it on your machine :ul + +Package, Description, Doc page, Example, Library +"USER-ATC"_Packages_details.html#USER-ATC, atom-to-continuum coupling, "fix atc"_fix_atc.html, USER/atc, int +"USER-AWPMD"_Packages_details.html#USER-AWPMD, wave-packet MD, "pair_style awpmd/cut"_pair_awpmd.html, USER/awpmd, int +"USER-BOCS"_Packages_details.html#USER-BOCS, BOCS bottom up coarse graining, "fix bocs"_fix_bocs.html, USER/bocs, - +"USER-CGDNA"_Packages_details.html#USER-CGDNA, coarse-grained DNA force fields, src/USER-CGDNA/README, USER/cgdna, - +"USER-CGSDK"_Packages_details.html#USER-CGSDK, SDK coarse-graining model, "pair_style lj/sdk"_pair_sdk.html, USER/cgsdk, - +"USER-COLVARS"_Packages_details.html#USER-COLVARS, collective variables library, "fix colvars"_fix_colvars.html, USER/colvars, int +"USER-DIFFRACTION"_Packages_details.html#USER-DIFFRACTION, virtual x-ray and electron diffraction,"compute xrd"_compute_xrd.html, USER/diffraction, - +"USER-DPD"_Packages_details.html#USER-DPD, reactive dissipative particle dynamics, src/USER-DPD/README, USER/dpd, - +"USER-DRUDE"_Packages_details.html#USER-DRUDE, Drude oscillators, "tutorial"_tutorial_drude.html, USER/drude, - +"USER-EFF"_Packages_details.html#USER-EFF, electron force field,"pair_style eff/cut"_pair_eff.html, USER/eff, - +"USER-FEP"_Packages_details.html#USER-FEP, free energy perturbation,"compute fep"_compute_fep.html, USER/fep, - +"USER-H5MD"_Packages_details.html#USER-H5MD, dump output via HDF5,"dump h5md"_dump_h5md.html, -, ext +"USER-INTEL"_Packages_details.html#USER-INTEL, optimized Intel CPU and KNL styles,"Speed intel"_Speed_intel.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, - +"USER-LB"_Packages_details.html#USER-LB, Lattice Boltzmann fluid,"fix lb/fluid"_fix_lb_fluid.html, USER/lb, - +"USER-MANIFOLD"_Packages_details.html#USER-MANIFOLD, motion on 2d surfaces,"fix manifoldforce"_fix_manifoldforce.html, USER/manifold, - +"USER-MEAMC"_Packages_details.html#USER-MEAMC, modified EAM potential (C++), "pair_style meam/c"_pair_meam.html, meam, - +"USER-MESO"_Packages_details.html#USER-MESO, mesoscale DPD models, "pair_style edpd"_pair_meso.html, USER/meso, - +"USER-MGPT"_Packages_details.html#USER-MGPT, fast MGPT multi-ion potentials, "pair_style mgpt"_pair_mgpt.html, USER/mgpt, - +"USER-MISC"_Packages_details.html#USER-MISC, single-file contributions, USER-MISC/README, USER/misc, - +"USER-MOFFF"_Packages_details.html#USER-MOFFF, styles for "MOF-FF"_MOFplus force field, "pair_style buck6d/coul/gauss"_pair_buck6d_coul_gauss.html, USER/mofff, - +"USER-MOLFILE"_Packages_details.html#USER-MOLFILE, "VMD"_vmd_home molfile plug-ins,"dump molfile"_dump_molfile.html, -, ext +"USER-NETCDF"_Packages_details.html#USER-NETCDF, dump output via NetCDF,"dump netcdf"_dump_netcdf.html, -, ext +"USER-OMP"_Packages_details.html#USER-OMP, OpenMP-enabled styles,"Speed omp"_Speed_omp.html, "Benchmarks"_http://lammps.sandia.gov/bench.html, - +"USER-PHONON"_Packages_details.html#USER-PHONON, phonon dynamical matrix,"fix phonon"_fix_phonon.html, USER/phonon, - +"USER-QMMM"_Packages_details.html#USER-QMMM, QM/MM coupling,"fix qmmm"_fix_qmmm.html, USER/qmmm, ext +"USER-QTB"_Packages_details.html#USER-QTB, quantum nuclear effects,"fix qtb"_fix_qtb.html "fix qbmsst"_fix_qbmsst.html, qtb, - +"USER-QUIP"_Packages_details.html#USER-QUIP, QUIP/libatoms interface,"pair_style quip"_pair_quip.html, USER/quip, ext +"USER-REAXC"_Packages_details.html#USER-REAXC, ReaxFF potential (C/C++) ,"pair_style reaxc"_pair_reaxc.html, reax, - +"USER-SMD"_Packages_details.html#USER-SMD, smoothed Mach dynamics,"SMD User Guide"_PDF/SMD_LAMMPS_userguide.pdf, USER/smd, ext +"USER-SMTBQ"_Packages_details.html#USER-SMTBQ, second moment tight binding QEq potential,"pair_style smtbq"_pair_smtbq.html, USER/smtbq, - +"USER-SPH"_Packages_details.html#USER-SPH, smoothed particle hydrodynamics,"SPH User Guide"_PDF/SPH_LAMMPS_userguide.pdf, USER/sph, - +"USER-TALLY"_Packages_details.html#USER-TALLY, pairwise tally computes,"compute XXX/tally"_compute_tally.html, USER/tally, - +"USER-UEF"_Packages_details.html#USER-UEF, extensional flow,"fix nvt/uef"_fix_nh_uef.html, USER/uef, - +"USER-VTK"_Packages_details.html#USER-VTK, dump output via VTK, "compute vtk"_dump_vtk.html, -, ext :tb(ea=c,ca1=l) diff --git a/doc/src/Python.txt b/doc/src/Python.txt new file mode 100644 index 0000000000000000000000000000000000000000..169670d669da6bbfcbdcb9adb491276819685f9f --- /dev/null +++ b/doc/src/Python.txt @@ -0,0 +1,79 @@ +"Previous Section"_Modify.html - "LAMMPS WWW Site"_lws - +"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Errors.html :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Use Python with LAMMPS :h2 + +These doc pages describe various ways that LAMMPS and Python can be +used together. + + + + + +"Overview of Python and LAMMPS"_Python_overview.html :all(b) + +"Run LAMMPS from Python"_Python_run.html +"Build LAMMPS as a shared library"_Python_shlib.html +"Install LAMMPS in Python"_Python_install.html +"Extend Python to run in parallel"_Python_mpi.html +"Test the Python/LAMMPS interface"_Python_test.html +"Python library interface"_Python_library.html +"PyLammps interface"_Python_pylammps.html +"Example Python scripts that use LAMMPS"_Python_examples.html :all(b) + +"Call Python from a LAMMPS input script"_Python_call.html :all(b) + + + +If you're not familiar with "Python"_http://www.python.org, it's a +powerful scripting and programming language which can do most +everything that lower-level languages like C or C++ can do in fewer +lines of code. The only drawback is slower execution speed. Python +is also easy to use as a "glue" language to drive a program through +its library interface, or to hook multiple pieces of software +together, such as a simulation code plus a visualization tool, or to +run a coupled multiscale or multiphysics model. + +See the "Howto_couple"_Howto_couple.html doc page for more ideas about +coupling LAMMPS to other codes. See the "Howto +library"_Howto_library.html doc page for a description of the LAMMPS +library interface provided in src/library.h and src/library.h. That +interface is exposed to Python either when calling LAMMPS from Python +or when calling Python from a LAMMPS input script and then calling +back to LAMMPS from Python code. The library interface is designed to +be easy to add funcionality to. Thus the Python interface to LAMMPS +is also easy to extend as well. + +If you create interesting Python scripts that run LAMMPS or +interesting Python functions that can be called from a LAMMPS input +script, that you think would be genearlly useful, please post them as +a pull request to our "GitHub site"_https://github.com/lammps/lammps, +and they can be added to the LAMMPS distribution or webpage. diff --git a/doc/src/Python_call.txt b/doc/src/Python_call.txt new file mode 100644 index 0000000000000000000000000000000000000000..3e30a5a7c7e7d831413c1e532de421d40555fdd0 --- /dev/null +++ b/doc/src/Python_call.txt @@ -0,0 +1,85 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Call Python from a LAMMPS input script :h3 + +LAMMPS has several commands which can be used to invoke Python +code directly from an input script: + +"python"_python.html +"variable python"_variable.html +"fix python/invoke"_fix_python_invoke.html +"pair_style python"_pair_python.html :ul + +The "python"_python.html command which can be used to define and +execute a Python function that you write the code for. The Python +function can also be assigned to a LAMMPS python-style variable via +the "variable"_variable.html command. Each time the variable is +evaluated, either in the LAMMPS input script itself, or by another +LAMMPS command that uses the variable, this will trigger the Python +function to be invoked. + +The Python code for the function can be included directly in the input +script or in an auxiliary file. The function can have arguments which +are mapped to LAMMPS variables (also defined in the input script) and +it can return a value to a LAMMPS variable. This is thus a mechanism +for your input script to pass information to a piece of Python code, +ask Python to execute the code, and return information to your input +script. + +Note that a Python function can be arbitrarily complex. It can import +other Python modules, instantiate Python classes, call other Python +functions, etc. The Python code that you provide can contain more +code than the single function. It can contain other functions or +Python classes, as well as global variables or other mechanisms for +storing state between calls from LAMMPS to the function. + +The Python function you provide can consist of "pure" Python code that +only performs operations provided by standard Python. However, the +Python function can also "call back" to LAMMPS through its +Python-wrapped library interface, in the manner described in the +"Python run"_Python_run.html doc page. This means it can issue LAMMPS +input script commands or query and set internal LAMMPS state. As an +example, this can be useful in an input script to create a more +complex loop with branching logic, than can be created using the +simple looping and branching logic enabled by the "next"_next.html and +"if"_if.html commands. + +See the "python"_python.html doc page and the "variable"_variable.html +doc page for its python-style variables for more info, including +examples of Python code you can write for both pure Python operations +and callbacks to LAMMPS. + +The "fix python/invoke"_fix_python_invoke.html command can execute +Python code at selected timesteps during a simulation run. + +The "pair_style python"_pair_python command allows you to define +pairwise potentials as python code which encodes a single pairwise +interaction. This is useful for rapid-developement and debugging of a +new potential. + +To use any of these commands, you only need to build LAMMPS with the +PYTHON package installed: + +make yes-python +make machine :pre + +Note that this will link LAMMPS with the Python library on your +system, which typically requires several auxiliary system libraries to +also be linked. The list of these libraries and the paths to find +them are specified in the lib/python/Makefile.lammps file. You need +to insure that file contains the correct information for your version +of Python and your machine to successfully build LAMMPS. See the +lib/python/README file for more info. + +If you want to write Python code with callbacks to LAMMPS, then you +must also follow the steps overviewed in the "Python +run"_Python_run.html doc page. I.e. you must build LAMMPS as a shared +library and insure that Python can find the python/lammps.py file and +the shared library. diff --git a/doc/src/Python_examples.txt b/doc/src/Python_examples.txt new file mode 100644 index 0000000000000000000000000000000000000000..fbca381e8b0f1cc4084e491162f2dad6dd7ddb36 --- /dev/null +++ b/doc/src/Python_examples.txt @@ -0,0 +1,81 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Example Python scripts that use LAMMPS :h3 + +These are the Python scripts included as demos in the python/examples +directory of the LAMMPS distribution, to illustrate the kinds of +things that are possible when Python wraps LAMMPS. If you create your +own scripts, send them to us and we can include them in the LAMMPS +distribution. + +trivial.py, read/run a LAMMPS input script thru Python, +demo.py, invoke various LAMMPS library interface routines, +simple.py, run in parallel, similar to examples/COUPLE/simple/simple.cpp, +split.py, same as simple.py but running in parallel on a subset of procs, +gui.py, GUI go/stop/temperature-slider to control LAMMPS, +plot.py, real-time temperature plot with GnuPlot via Pizza.py, +viz_tool.py, real-time viz via some viz package, +vizplotgui_tool.py, combination of viz_tool.py and plot.py and gui.py :tb(c=2) + +:line + +For the viz_tool.py and vizplotgui_tool.py commands, replace "tool" +with "gl" or "atomeye" or "pymol" or "vmd", depending on what +visualization package you have installed. + +Note that for GL, you need to be able to run the Pizza.py GL tool, +which is included in the pizza sub-directory. See the "Pizza.py doc +pages"_pizza for more info: + +:link(pizza,http://www.sandia.gov/~sjplimp/pizza.html) + +Note that for AtomEye, you need version 3, and there is a line in the +scripts that specifies the path and name of the executable. See the +AtomEye WWW pages "here"_atomeye or "here"_atomeye3 for more details: + +http://mt.seas.upenn.edu/Archive/Graphics/A +http://mt.seas.upenn.edu/Archive/Graphics/A3/A3.html :pre + +:link(atomeye,http://mt.seas.upenn.edu/Archive/Graphics/A) +:link(atomeye3,http://mt.seas.upenn.edu/Archive/Graphics/A3/A3.html) + +The latter link is to AtomEye 3 which has the scriping +capability needed by these Python scripts. + +Note that for PyMol, you need to have built and installed the +open-source version of PyMol in your Python, so that you can import it +from a Python script. See the PyMol WWW pages "here"_pymolhome or +"here"_pymolopen for more details: + +http://www.pymol.org +http://sourceforge.net/scm/?type=svn&group_id=4546 :pre + +:link(pymolhome,http://www.pymol.org) +:link(pymolopen,http://sourceforge.net/scm/?type=svn&group_id=4546) + +The latter link is to the open-source version. + +Note that for VMD, you need a fairly current version (1.8.7 works for +me) and there are some lines in the pizza/vmd.py script for 4 PIZZA +variables that have to match the VMD installation on your system. + +:line + +See the python/README file for instructions on how to run them and the +source code for individual scripts for comments about what they do. + +Here are screenshots of the vizplotgui_tool.py script in action for +different visualization package options. Click to see larger images: + +:image(JPG/screenshot_gl_small.jpg,JPG/screenshot_gl.jpg) +:image(JPG/screenshot_atomeye_small.jpg,JPG/screenshot_atomeye.jpg) +:image(JPG/screenshot_pymol_small.jpg,JPG/screenshot_pymol.jpg) +:image(JPG/screenshot_vmd_small.jpg,JPG/screenshot_vmd.jpg) + diff --git a/doc/src/Python_install.txt b/doc/src/Python_install.txt new file mode 100644 index 0000000000000000000000000000000000000000..631f6c4a7f1a3a40245e3d7ab98b7b195bb4fefc --- /dev/null +++ b/doc/src/Python_install.txt @@ -0,0 +1,74 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Installing LAMMPS in Python :h3 + +For Python to invoke LAMMPS, there are 2 files it needs to know about: + +python/lammps.py +src/liblammps.so :ul + +Lammps.py is the Python wrapper on the LAMMPS library interface. +Liblammps.so is the shared LAMMPS library that Python loads, as +described above. + +You can insure Python can find these files in one of two ways: + +set two environment variables +run the python/install.py script :ul + +If you set the paths to these files as environment variables, you only +have to do it once. For the csh or tcsh shells, add something like +this to your ~/.cshrc file, one line for each of the two files: + +setenv PYTHONPATH $\{PYTHONPATH\}:/home/sjplimp/lammps/python +setenv LD_LIBRARY_PATH $\{LD_LIBRARY_PATH\}:/home/sjplimp/lammps/src :pre + +If you use the python/install.py script, you need to invoke it every +time you rebuild LAMMPS (as a shared library) or make changes to the +python/lammps.py file. + +You can invoke install.py from the python directory as + +% python install.py \[libdir\] \[pydir\] :pre + +The optional libdir is where to copy the LAMMPS shared library to; the +default is /usr/local/lib. The optional pydir is where to copy the +lammps.py file to; the default is the site-packages directory of the +version of Python that is running the install script. + +Note that libdir must be a location that is in your default +LD_LIBRARY_PATH, like /usr/local/lib or /usr/lib. And pydir must be a +location that Python looks in by default for imported modules, like +its site-packages dir. If you want to copy these files to +non-standard locations, such as within your own user space, you will +need to set your PYTHONPATH and LD_LIBRARY_PATH environment variables +accordingly, as above. + +If the install.py script does not allow you to copy files into system +directories, prefix the python command with "sudo". If you do this, +make sure that the Python that root runs is the same as the Python you +run. E.g. you may need to do something like + +% sudo /usr/local/bin/python install.py \[libdir\] \[pydir\] :pre + +You can also invoke install.py from the make command in the src +directory as + +% make install-python :pre + +In this mode you cannot append optional arguments. Again, you may +need to prefix this with "sudo". In this mode you cannot control +which Python is invoked by root. + +Note that if you want Python to be able to load different versions of +the LAMMPS shared library (see "this section"_#py_5 below), you will +need to manually copy files like liblammps_g++.so into the appropriate +system directory. This is not needed if you set the LD_LIBRARY_PATH +environment variable as described above. diff --git a/doc/src/Python_library.txt b/doc/src/Python_library.txt new file mode 100644 index 0000000000000000000000000000000000000000..4babbb746cc3c1753f85ef6f5146dfdc51e8ee9a --- /dev/null +++ b/doc/src/Python_library.txt @@ -0,0 +1,256 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Python library interface :h3 + +As described previously, the Python interface to LAMMPS consists of a +Python "lammps" module, the source code for which is in +python/lammps.py, which creates a "lammps" object, with a set of +methods that can be invoked on that object. The sample Python code +below assumes you have first imported the "lammps" module in your +Python script, as follows: + +from lammps import lammps :pre + +These are the methods defined by the lammps module. If you look at +the files src/library.cpp and src/library.h you will see they +correspond one-to-one with calls you can make to the LAMMPS library +from a C++ or C or Fortran program, and which are described in +"Section 6.19"_Section_howto.html#howto_19 of the manual. + +The python/examples directory has Python scripts which show how Python +can run LAMMPS, grab data, change it, and put it back into LAMMPS. + +lmp = lammps() # create a LAMMPS object using the default liblammps.so library + # 4 optional args are allowed: name, cmdargs, ptr, comm +lmp = lammps(ptr=lmpptr) # use lmpptr as previously created LAMMPS object +lmp = lammps(comm=split) # create a LAMMPS object with a custom communicator, requires mpi4py 2.0.0 or later +lmp = lammps(name="g++") # create a LAMMPS object using the liblammps_g++.so library +lmp = lammps(name="g++",cmdargs=list) # add LAMMPS command-line args, e.g. list = \["-echo","screen"\] :pre + +lmp.close() # destroy a LAMMPS object :pre + +version = lmp.version() # return the numerical version id, e.g. LAMMPS 2 Sep 2015 -> 20150902 :pre + +lmp.file(file) # run an entire input script, file = "in.lj" +lmp.command(cmd) # invoke a single LAMMPS command, cmd = "run 100" +lmp.commands_list(cmdlist) # invoke commands in cmdlist = ["run 10", "run 20"] +lmp.commands_string(multicmd) # invoke commands in multicmd = "run 10\nrun 20" :pre + +size = lmp.extract_setting(name) # return data type info :pre + +xlo = lmp.extract_global(name,type) # extract a global quantity + # name = "boxxlo", "nlocal", etc + # type = 0 = int + # 1 = double :pre + +boxlo,boxhi,xy,yz,xz,periodicity,box_change = lmp.extract_box() # extract box info :pre + +coords = lmp.extract_atom(name,type) # extract a per-atom quantity + # name = "x", "type", etc + # type = 0 = vector of ints + # 1 = array of ints + # 2 = vector of doubles + # 3 = array of doubles :pre + +eng = lmp.extract_compute(id,style,type) # extract value(s) from a compute +v3 = lmp.extract_fix(id,style,type,i,j) # extract value(s) from a fix + # id = ID of compute or fix + # style = 0 = global data + # 1 = per-atom data + # 2 = local data + # type = 0 = scalar + # 1 = vector + # 2 = array + # i,j = indices of value in global vector or array :pre + +var = lmp.extract_variable(name,group,flag) # extract value(s) from a variable + # name = name of variable + # group = group ID (ignored for equal-style variables) + # flag = 0 = equal-style variable + # 1 = atom-style variable :pre + +value = lmp.get_thermo(name) # return current value of a thermo keyword +natoms = lmp.get_natoms() # total # of atoms as int :pre + +flag = lmp.set_variable(name,value) # set existing named string-style variable to value, flag = 0 if successful +lmp.reset_box(boxlo,boxhi,xy,yz,xz) # reset the simulation box size :pre + +data = lmp.gather_atoms(name,type,count) # return per-atom property of all atoms gathered into data, ordered by atom ID + # name = "x", "charge", "type", etc +data = lmp.gather_atoms_concat(name,type,count) # ditto, but concatenated atom values from each proc (unordered) +data = lmp.gather_atoms_subset(name,type,count,ndata,ids) # ditto, but for subset of Ndata atoms with IDs :pre + +lmp.scatter_atoms(name,type,count,data) # scatter per-atom property to all atoms from data, ordered by atom ID + # name = "x", "charge", "type", etc + # count = # of per-atom values, 1 or 3, etc :pre +lmp.scatter_atoms_subset(name,type,count,ndata,ids,data) # ditto, but for subset of Ndata atoms with IDs :pre + +lmp.create_atoms(n,ids,types,x,v,image,shrinkexceed) # create N atoms with IDs, types, x, v, and image flags :pre + +:line + +The lines + +from lammps import lammps +lmp = lammps() :pre + +create an instance of LAMMPS, wrapped in a Python class by the lammps +Python module, and return an instance of the Python class as lmp. It +is used to make all subsequent calls to the LAMMPS library. + +Additional arguments to lammps() can be used to tell Python the name +of the shared library to load or to pass arguments to the LAMMPS +instance, the same as if LAMMPS were launched from a command-line +prompt. + +If the ptr argument is set like this: + +lmp = lammps(ptr=lmpptr) :pre + +then lmpptr must be an argument passed to Python via the LAMMPS +"python"_python.html command, when it is used to define a Python +function that is invoked by the LAMMPS input script. This mode of +calling Python from LAMMPS is described in the "Python +call"_Python_call.html doc page. The variable lmpptr refers to the +instance of LAMMPS that called the embedded Python interpreter. Using +it as an argument to lammps() allows the returned Python class +instance "lmp" to make calls to that instance of LAMMPS. See the +"python"_python.html command doc page for examples using this syntax. + +Note that you can create multiple LAMMPS objects in your Python +script, and coordinate and run multiple simulations, e.g. + +from lammps import lammps +lmp1 = lammps() +lmp2 = lammps() +lmp1.file("in.file1") +lmp2.file("in.file2") :pre + +The file(), command(), commands_list(), commands_string() methods +allow an input script, a single command, or multiple commands to be +invoked. + +The extract_setting(), extract_global(), extract_box(), +extract_atom(), extract_compute(), extract_fix(), and +extract_variable() methods return values or pointers to data +structures internal to LAMMPS. + +For extract_global() see the src/library.cpp file for the list of +valid names. New names could easily be added. A double or integer is +returned. You need to specify the appropriate data type via the type +argument. + +For extract_atom(), a pointer to internal LAMMPS atom-based data is +returned, which you can use via normal Python subscripting. See the +extract() method in the src/atom.cpp file for a list of valid names. +Again, new names could easily be added if the property you want is not +listed. A pointer to a vector of doubles or integers, or a pointer to +an array of doubles (double **) or integers (int **) is returned. You +need to specify the appropriate data type via the type argument. + +For extract_compute() and extract_fix(), the global, per-atom, or +local data calculated by the compute or fix can be accessed. What is +returned depends on whether the compute or fix calculates a scalar or +vector or array. For a scalar, a single double value is returned. If +the compute or fix calculates a vector or array, a pointer to the +internal LAMMPS data is returned, which you can use via normal Python +subscripting. The one exception is that for a fix that calculates a +global vector or array, a single double value from the vector or array +is returned, indexed by I (vector) or I and J (array). I,J are +zero-based indices. The I,J arguments can be left out if not needed. +See "Section 6.15"_Section_howto.html#howto_15 of the manual for a +discussion of global, per-atom, and local data, and of scalar, vector, +and array data types. See the doc pages for individual +"computes"_compute.html and "fixes"_fix.html for a description of what +they calculate and store. + +For extract_variable(), an "equal-style or atom-style +variable"_variable.html is evaluated and its result returned. + +For equal-style variables a single double value is returned and the +group argument is ignored. For atom-style variables, a vector of +doubles is returned, one value per atom, which you can use via normal +Python subscripting. The values will be zero for atoms not in the +specified group. + +The get_thermo() method returns returns the current value of a thermo +keyword as a float. + +The get_natoms() method returns the total number of atoms in the +simulation, as an int. + +The set_variable() methosd sets an existing string-style variable to a +new string value, so that subsequent LAMMPS commands can access the +variable. + +The reset_box() emthods resets the size and shape of the simulation +box, e.g. as part of restoring a previously extracted and saved state +of a simulation. + +The gather methods collect peratom info of the requested type (atom +coords, atom types, forces, etc) from all processors, and returns the +same vector of values to each callling processor. The scatter +functions do the inverse. They distribute a vector of peratom values, +passed by all calling processors, to invididual atoms, which may be +owned by different processos. + +Note that the data returned by the gather methods, +e.g. gather_atoms("x"), is different from the data structure returned +by extract_atom("x") in four ways. (1) Gather_atoms() returns a +vector which you index as x\[i\]; extract_atom() returns an array +which you index as x\[i\]\[j\]. (2) Gather_atoms() orders the atoms +by atom ID while extract_atom() does not. (3) Gather_atoms() returns +a list of all atoms in the simulation; extract_atoms() returns just +the atoms local to each processor. (4) Finally, the gather_atoms() +data structure is a copy of the atom coords stored internally in +LAMMPS, whereas extract_atom() returns an array that effectively +points directly to the internal data. This means you can change +values inside LAMMPS from Python by assigning a new values to the +extract_atom() array. To do this with the gather_atoms() vector, you +need to change values in the vector, then invoke the scatter_atoms() +method. + +For the scatter methods, the array of coordinates passed to must be a +ctypes vector of ints or doubles, allocated and initialized something +like this: + +from ctypes import * +natoms = lmp.get_natoms() +n3 = 3*natoms +x = (n3*c_double)() +x\[0\] = x coord of atom with ID 1 +x\[1\] = y coord of atom with ID 1 +x\[2\] = z coord of atom with ID 1 +x\[3\] = x coord of atom with ID 2 +... +x\[n3-1\] = z coord of atom with ID natoms +lmp.scatter_atoms("x",1,3,x) :pre + +Alternatively, you can just change values in the vector returned by +the gather methods, since they are also ctypes vectors. + +:line + +As noted above, these Python class methods correspond one-to-one with +the functions in the LAMMPS library interface in src/library.cpp and +library.h. This means you can extend the Python wrapper via the +following steps: + +Add a new interface function to src/library.cpp and +src/library.h. :ulb,l + +Rebuild LAMMPS as a shared library. :l + +Add a wrapper method to python/lammps.py for this interface +function. :l + +You should now be able to invoke the new interface function from a +Python script. :l +:ule diff --git a/doc/src/Python_mpi.txt b/doc/src/Python_mpi.txt new file mode 100644 index 0000000000000000000000000000000000000000..8377bbb3d0a0ac058c1f97274ba7fe7ba054b648 --- /dev/null +++ b/doc/src/Python_mpi.txt @@ -0,0 +1,67 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Extending Python to run in parallel :h3 + +If you wish to run LAMMPS in parallel from Python, you need to extend +your Python with an interface to MPI. This also allows you to +make MPI calls directly from Python in your script, if you desire. + +We recommend use of mpi4py: + +"PyPar"_https://github.com/daleroberts/pypar :ul + +As of version 2.0.0 it allows passing a custom MPI communicator to +the LAMMPS constructor, which means one can easily run one or more +LAMMPS instances on subsets of the total MPI ranks. + +To install mpi4py (version mpi4py-2.0.0 as of Oct 2015), unpack it +and from its main directory, type + +python setup.py build +sudo python setup.py install :pre + +Again, the "sudo" is only needed if required to copy mpi4py files into +your Python distribution's site-packages directory. To install with +user privilege into the user local directory type + +python setup.py install --user :pre + +If you have successfully installed mpi4py, you should be able to run +Python and type + +from mpi4py import MPI :pre + +without error. You should also be able to run python in parallel +on a simple test script + +% mpirun -np 4 python test.py :pre + +where test.py contains the lines + +from mpi4py import MPI +comm = MPI.COMM_WORLD +print "Proc %d out of %d procs" % (comm.Get_rank(),comm.Get_size()) :pre + +and see one line of output for each processor you run on. + +NOTE: To use mpi4py and LAMMPS in parallel from Python, you must +insure both are using the same version of MPI. If you only have one +MPI installed on your system, this is not an issue, but it can be if +you have multiple MPIs. Your LAMMPS build is explicit about which MPI +it is using, since you specify the details in your lo-level +src/MAKE/Makefile.foo file. Mpi4py uses the "mpicc" command to find +information about the MPI it uses to build against. And it tries to +load "libmpi.so" from the LD_LIBRARY_PATH. This may or may not find +the MPI library that LAMMPS is using. If you have problems running +both mpi4py and LAMMPS together, this is an issue you may need to +address, e.g. by moving other MPI installations so that mpi4py finds +the right one. + + diff --git a/doc/src/Python_overview.txt b/doc/src/Python_overview.txt new file mode 100644 index 0000000000000000000000000000000000000000..a5d6a469ffdaffddfe5347e1c5ecaec0be5257cb --- /dev/null +++ b/doc/src/Python_overview.txt @@ -0,0 +1,35 @@ +"Previous Section"_Examples.html - "LAMMPS WWW Site"_lws - +"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Tools.html :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Commands.html#comm) + +:line + +Overview of Python and LAMMPS :h3 + +LAMMPS can work together with Python in three ways. First, Python can +wrap LAMMPS through the its "library interface"_Howto_library.html, so +that a Python script can create one or more instances of LAMMPS and +launch one or more simulations. In Python lingo, this is "extending" +Python with LAMMPS. + +Second, a lower-level Python interface can be used indirectly through +provided PyLammps and IPyLammps wrapper classes, written in Python. +These wrappers try to simplify the usage of LAMMPS in Python by +providing an object-based interface to common LAMMPS functionality. +They also reduces the amount of code necessary to parameterize LAMMPS +scripts through Python and make variables and computes directly +accessible. + +Third, LAMMPS can use the Python interpreter, so that a LAMMPS +input script can invoke Python code directly, and pass information +back-and-forth between the input script and Python functions you +write. This Python code can also callback to LAMMPS to query or change +its attributes. In Python lingo, this is "embedding" Python in +LAMMPS. When used in this mode, Python can perform operations that +the simple LAMMPS input script syntax cannot. + + diff --git a/doc/src/Python_pylammps.txt b/doc/src/Python_pylammps.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad5ed192ee669f0b14fcaa10ccd9097391e74f54 --- /dev/null +++ b/doc/src/Python_pylammps.txt @@ -0,0 +1,14 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +PyLammps interface :h3 + +PyLammps is a Python wrapper class which can be created on its own or +use an existing lammps Python object. It has its own "PyLammps +Tutorial"_tutorial_pylammps.html doc page. diff --git a/doc/src/Python_run.txt b/doc/src/Python_run.txt new file mode 100644 index 0000000000000000000000000000000000000000..03ab2ed3d7dc3e6b4703c78950978323835c394d --- /dev/null +++ b/doc/src/Python_run.txt @@ -0,0 +1,40 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Run LAMMPS from Python :h3 + +The LAMMPS distribution includes a python directory with all you need +to run LAMMPS from Python. The python/lammps.py file wraps the LAMMPS +library interface, with one wrapper function per LAMMPS library +function. This file makes it is possible to do the following either +from a Python script, or interactively from a Python prompt: create +one or more instances of LAMMPS, invoke LAMMPS commands or give it an +input script, run LAMMPS incrementally, extract LAMMPS results, an +modify internal LAMMPS variables. From a Python script you can do +this in serial or parallel. Running Python interactively in parallel +does not generally work, unless you have a version of Python that +extends Python to enable multiple instances of Python to read what you +type. + +To do all of this, you must first build LAMMPS as a shared library, +then insure that your Python can find the python/lammps.py file and +the shared library. + +Two advantages of using Python to run LAMMPS are how concise the +language is, and that it can be run interactively, enabling rapid +development and debugging. If you use it to mostly invoke costly +operations within LAMMPS, such as running a simulation for a +reasonable number of timesteps, then the overhead cost of invoking +LAMMPS thru Python will be negligible. + +The Python wrapper for LAMMPS uses the "ctypes" package in Python, +which auto-generates the interface code needed between Python and a +set of C-style library functions. Ctypes is part of standard Python +for versions 2.5 and later. You can check which version of Python you +have by simply typing "python" at a shell prompt. diff --git a/doc/src/Python_shlib.txt b/doc/src/Python_shlib.txt new file mode 100644 index 0000000000000000000000000000000000000000..1aafbe2e847e3b486f10b7991b85bbea9009d45b --- /dev/null +++ b/doc/src/Python_shlib.txt @@ -0,0 +1,34 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Build LAMMPS as a shared library :h3 + +Instructions on how to build LAMMPS as a shared library are given in +"Section 2.4"_Section_start.html#start_4. A shared library is one +that is dynamically loadable, which is what Python requires to wrap +LAMMPS. On Linux this is a library file that ends in ".so", not ".a". + +From the src directory, type + +make foo mode=shlib :pre + +where foo is the machine target name, such as mpi or serial. +This should create the file liblammps_foo.so in the src directory, as +well as a soft link liblammps.so, which is what the Python wrapper will +load by default. Note that if you are building multiple machine +versions of the shared library, the soft link is always set to the +most recently built version. + +NOTE: If you are building LAMMPS with an MPI or FFT library or other +auxiliary libraries (used by various packages), then all of these +extra libraries must also be shared libraries. If the LAMMPS +shared-library build fails with an error complaining about this, see +"Section 2.4"_Section_start.html#start_4 for more details. + +Also include CMake info on this diff --git a/doc/src/Python_test.txt b/doc/src/Python_test.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f361a500b6c8ba12748fed18b61af3c81d9028b --- /dev/null +++ b/doc/src/Python_test.txt @@ -0,0 +1,131 @@ +"Higher level section"_Python.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Test the Python/LAMMPS interface :h3 + +To test if LAMMPS is callable from Python, launch Python interactively +and type: + +>>> from lammps import lammps +>>> lmp = lammps() :pre + +If you get no errors, you're ready to use LAMMPS from Python. If the +2nd command fails, the most common error to see is + +OSError: Could not load LAMMPS dynamic library :pre + +which means Python was unable to load the LAMMPS shared library. This +typically occurs if the system can't find the LAMMPS shared library or +one of the auxiliary shared libraries it depends on, or if something +about the library is incompatible with your Python. The error message +should give you an indication of what went wrong. + +You can also test the load directly in Python as follows, without +first importing from the lammps.py file: + +>>> from ctypes import CDLL +>>> CDLL("liblammps.so") :pre + +If an error occurs, carefully go thru the steps in "Section +2.4"_Section_start.html#start_4 and above about building a shared +library and about insuring Python can find the necessary two files +it needs. + +[Test LAMMPS and Python in serial:] :h4 + +To run a LAMMPS test in serial, type these lines into Python +interactively from the bench directory: + +>>> from lammps import lammps +>>> lmp = lammps() +>>> lmp.file("in.lj") :pre + +Or put the same lines in the file test.py and run it as + +% python test.py :pre + +Either way, you should see the results of running the in.lj benchmark +on a single processor appear on the screen, the same as if you had +typed something like: + +lmp_g++ -in in.lj :pre + +[Test LAMMPS and Python in parallel:] :h4 + +To run LAMMPS in parallel, assuming you have installed the +"PyPar"_https://github.com/daleroberts/pypar package as discussed +above, create a test.py file containing these lines: + +import pypar +from lammps import lammps +lmp = lammps() +lmp.file("in.lj") +print "Proc %d out of %d procs has" % (pypar.rank(),pypar.size()),lmp +pypar.finalize() :pre + +To run LAMMPS in parallel, assuming you have installed the +"mpi4py"_https://bitbucket.org/mpi4py/mpi4py package as discussed +above, create a test.py file containing these lines: + +from mpi4py import MPI +from lammps import lammps +lmp = lammps() +lmp.file("in.lj") +me = MPI.COMM_WORLD.Get_rank() +nprocs = MPI.COMM_WORLD.Get_size() +print "Proc %d out of %d procs has" % (me,nprocs),lmp +MPI.Finalize() :pre + +You can either script in parallel as: + +% mpirun -np 4 python test.py :pre + +and you should see the same output as if you had typed + +% mpirun -np 4 lmp_g++ -in in.lj :pre + +Note that if you leave out the 3 lines from test.py that specify PyPar +commands you will instantiate and run LAMMPS independently on each of +the P processors specified in the mpirun command. In this case you +should get 4 sets of output, each showing that a LAMMPS run was made +on a single processor, instead of one set of output showing that +LAMMPS ran on 4 processors. If the 1-processor outputs occur, it +means that PyPar is not working correctly. + +Also note that once you import the PyPar module, PyPar initializes MPI +for you, and you can use MPI calls directly in your Python script, as +described in the PyPar documentation. The last line of your Python +script should be pypar.finalize(), to insure MPI is shut down +correctly. + +[Running Python scripts:] :h4 + +Note that any Python script (not just for LAMMPS) can be invoked in +one of several ways: + +% python foo.script +% python -i foo.script +% foo.script :pre + +The last command requires that the first line of the script be +something like this: + +#!/usr/local/bin/python +#!/usr/local/bin/python -i :pre + +where the path points to where you have Python installed, and that you +have made the script file executable: + +% chmod +x foo.script :pre + +Without the "-i" flag, Python will exit when the script finishes. +With the "-i" flag, you will be left in the Python interpreter when +the script finishes, so you can type subsequent commands. As +mentioned above, you can only run Python interactively when running +Python on a single processor, not in parallel. diff --git a/doc/src/Section_accelerate.txt b/doc/src/Section_accelerate.txt deleted file mode 100644 index d5cbf77a84e2881a7cfd2f23d6cd94d98031cfec..0000000000000000000000000000000000000000 --- a/doc/src/Section_accelerate.txt +++ /dev/null @@ -1,391 +0,0 @@ -"Previous Section"_Section_packages.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next -Section"_Section_howto.html :c - -:link(lws,http://lammps.sandia.gov) -:link(ld,Manual.html) -:link(lc,Section_commands.html#comm) - -:line - -5. Accelerating LAMMPS performance :h2 - -This section describes various methods for improving LAMMPS -performance for different classes of problems running on different -kinds of machines. - -There are two thrusts to the discussion that follows. The -first is using code options that implement alternate algorithms -that can speed-up a simulation. The second is to use one -of the several accelerator packages provided with LAMMPS that -contain code optimized for certain kinds of hardware, including -multi-core CPUs, GPUs, and Intel Xeon Phi coprocessors. - -5.1 "Measuring performance"_#acc_1 :ulb,l -5.2 "Algorithms and code options to boost performace"_#acc_2 :l -5.3 "Accelerator packages with optimized styles"_#acc_3 :l - 5.3.1 "GPU package"_accelerate_gpu.html :l - 5.3.2 "USER-INTEL package"_accelerate_intel.html :l - 5.3.3 "KOKKOS package"_accelerate_kokkos.html :l - 5.3.4 "USER-OMP package"_accelerate_omp.html :l - 5.3.5 "OPT package"_accelerate_opt.html :l -5.4 "Comparison of various accelerator packages"_#acc_4 :l -:ule - -The "Benchmark page"_http://lammps.sandia.gov/bench.html of the LAMMPS -web site gives performance results for the various accelerator -packages discussed in Section 5.2, for several of the standard LAMMPS -benchmark problems, as a function of problem size and number of -compute nodes, on different hardware platforms. - -:line -:line - -5.1 Measuring performance :h3,link(acc_1) - -Before trying to make your simulation run faster, you should -understand how it currently performs and where the bottlenecks are. - -The best way to do this is run the your system (actual number of -atoms) for a modest number of timesteps (say 100 steps) on several -different processor counts, including a single processor if possible. -Do this for an equilibrium version of your system, so that the -100-step timings are representative of a much longer run. There is -typically no need to run for 1000s of timesteps to get accurate -timings; you can simply extrapolate from short runs. - -For the set of runs, look at the timing data printed to the screen and -log file at the end of each LAMMPS run. "This -section"_Section_start.html#start_7 of the manual has an overview. - -Running on one (or a few processors) should give a good estimate of -the serial performance and what portions of the timestep are taking -the most time. Running the same problem on a few different processor -counts should give an estimate of parallel scalability. I.e. if the -simulation runs 16x faster on 16 processors, its 100% parallel -efficient; if it runs 8x faster on 16 processors, it's 50% efficient. - -The most important data to look at in the timing info is the timing -breakdown and relative percentages. For example, trying different -options for speeding up the long-range solvers will have little impact -if they only consume 10% of the run time. If the pairwise time is -dominating, you may want to look at GPU or OMP versions of the pair -style, as discussed below. Comparing how the percentages change as -you increase the processor count gives you a sense of how different -operations within the timestep are scaling. Note that if you are -running with a Kspace solver, there is additional output on the -breakdown of the Kspace time. For PPPM, this includes the fraction -spent on FFTs, which can be communication intensive. - -Another important detail in the timing info are the histograms of -atoms counts and neighbor counts. If these vary widely across -processors, you have a load-imbalance issue. This often results in -inaccurate relative timing data, because processors have to wait when -communication occurs for other processors to catch up. Thus the -reported times for "Communication" or "Other" may be higher than they -really are, due to load-imbalance. If this is an issue, you can -uncomment the MPI_Barrier() lines in src/timer.cpp, and recompile -LAMMPS, to obtain synchronized timings. - -:line - -5.2 General strategies :h3,link(acc_2) - -NOTE: this section 5.2 is still a work in progress - -Here is a list of general ideas for improving simulation performance. -Most of them are only applicable to certain models and certain -bottlenecks in the current performance, so let the timing data you -generate be your guide. It is hard, if not impossible, to predict how -much difference these options will make, since it is a function of -problem size, number of processors used, and your machine. There is -no substitute for identifying performance bottlenecks, and trying out -various options. - -rRESPA -2-FFT PPPM -Staggered PPPM -single vs double PPPM -partial charge PPPM -verlet/split run style -processor command for proc layout and numa layout -load-balancing: balance and fix balance :ul - -2-FFT PPPM, also called {analytic differentiation} or {ad} PPPM, uses -2 FFTs instead of the 4 FFTs used by the default {ik differentiation} -PPPM. However, 2-FFT PPPM also requires a slightly larger mesh size to -achieve the same accuracy as 4-FFT PPPM. For problems where the FFT -cost is the performance bottleneck (typically large problems running -on many processors), 2-FFT PPPM may be faster than 4-FFT PPPM. - -Staggered PPPM performs calculations using two different meshes, one -shifted slightly with respect to the other. This can reduce force -aliasing errors and increase the accuracy of the method, but also -doubles the amount of work required. For high relative accuracy, using -staggered PPPM allows one to half the mesh size in each dimension as -compared to regular PPPM, which can give around a 4x speedup in the -kspace time. However, for low relative accuracy, using staggered PPPM -gives little benefit and can be up to 2x slower in the kspace -time. For example, the rhodopsin benchmark was run on a single -processor, and results for kspace time vs. relative accuracy for the -different methods are shown in the figure below. For this system, -staggered PPPM (using ik differentiation) becomes useful when using a -relative accuracy of slightly greater than 1e-5 and above. - -:c,image(JPG/rhodo_staggered.jpg) - -NOTE: Using staggered PPPM may not give the same increase in accuracy -of energy and pressure as it does in forces, so some caution must be -used if energy and/or pressure are quantities of interest, such as -when using a barostat. - -:line - -5.3 Packages with optimized styles :h3,link(acc_3) - -Accelerated versions of various "pair_style"_pair_style.html, -"fixes"_fix.html, "computes"_compute.html, and other commands have -been added to LAMMPS, which will typically run faster than the -standard non-accelerated versions. Some require appropriate hardware -to be present on your system, e.g. GPUs or Intel Xeon Phi -coprocessors. - -All of these commands are in packages provided with LAMMPS. An -overview of packages is give in "Section -packages"_Section_packages.html. - -These are the accelerator packages -currently in LAMMPS, either as standard or user packages: - -"GPU Package"_accelerate_gpu.html : for NVIDIA GPUs as well as OpenCL support -"USER-INTEL Package"_accelerate_intel.html : for Intel CPUs and Intel Xeon Phi -"KOKKOS Package"_accelerate_kokkos.html : for Nvidia GPUs, Intel Xeon Phi, and OpenMP threading -"USER-OMP Package"_accelerate_omp.html : for OpenMP threading and generic CPU optimizations -"OPT Package"_accelerate_opt.html : generic CPU optimizations :tb(s=:) - - - -Inverting this list, LAMMPS currently has acceleration support for -three kinds of hardware, via the listed packages: - -Many-core CPUs : "USER-INTEL"_accelerate_intel.html, "KOKKOS"_accelerate_kokkos.html, "USER-OMP"_accelerate_omp.html, "OPT"_accelerate_opt.html packages -NVIDIA GPUs : "GPU"_accelerate_gpu.html, "KOKKOS"_accelerate_kokkos.html packages -Intel Phi : "USER-INTEL"_accelerate_intel.html, "KOKKOS"_accelerate_kokkos.html packages :tb(s=:) - -Which package is fastest for your hardware may depend on the size -problem you are running and what commands (accelerated and -non-accelerated) are invoked by your input script. While these doc -pages include performance guidelines, there is no substitute for -trying out the different packages appropriate to your hardware. - -Any accelerated style has the same name as the corresponding standard -style, except that a suffix is appended. Otherwise, the syntax for -the command that uses the style is identical, their functionality is -the same, and the numerical results it produces should also be the -same, except for precision and round-off effects. - -For example, all of these styles are accelerated variants of the -Lennard-Jones "pair_style lj/cut"_pair_lj.html: - -"pair_style lj/cut/gpu"_pair_lj.html -"pair_style lj/cut/intel"_pair_lj.html -"pair_style lj/cut/kk"_pair_lj.html -"pair_style lj/cut/omp"_pair_lj.html -"pair_style lj/cut/opt"_pair_lj.html :ul - -To see what accelerate styles are currently available, see -"Section 3.5"_Section_commands.html#cmd_5 of the manual. The -doc pages for individual commands (e.g. "pair lj/cut"_pair_lj.html or -"fix nve"_fix_nve.html) also list any accelerated variants available -for that style. - -To use an accelerator package in LAMMPS, and one or more of the styles -it provides, follow these general steps. Details vary from package to -package and are explained in the individual accelerator doc pages, -listed above: - -build the accelerator library | - only for GPU package | -install the accelerator package | - make yes-opt, make yes-user-intel, etc | -add compile/link flags to Makefile.machine in src/MAKE | - only for USER-INTEL, KOKKOS, USER-OMP, OPT packages | -re-build LAMMPS | - make machine | -prepare and test a regular LAMMPS simulation | - lmp_machine -in in.script; mpirun -np 32 lmp_machine -in in.script | -enable specific accelerator support via '-k on' "command-line switch"_Section_start.html#start_6, | - only needed for KOKKOS package | -set any needed options for the package via "-pk" "command-line switch"_Section_start.html#start_6 or "package"_package.html command, | - only if defaults need to be changed | -use accelerated styles in your input via "-sf" "command-line switch"_Section_start.html#start_6 or "suffix"_suffix.html command | lmp_machine -in in.script -sf gpu -:tb(c=2,s=|) - -Note that the first 4 steps can be done as a single command with -suitable make command invocations. This is discussed in "Section -4"_Section_packages.html of the manual, and its use is -illustrated in the individual accelerator sections. Typically these -steps only need to be done once, to create an executable that uses one -or more accelerator packages. - -The last 4 steps can all be done from the command-line when LAMMPS is -launched, without changing your input script, as illustrated in the -individual accelerator sections. Or you can add -"package"_package.html and "suffix"_suffix.html commands to your input -script. - -NOTE: With a few exceptions, you can build a single LAMMPS executable -with all its accelerator packages installed. Note however that the -USER-INTEL and KOKKOS packages require you to choose one of their -hardware options when building for a specific platform. I.e. CPU or -Phi option for the USER-INTEL package. Or the OpenMP, Cuda, or Phi -option for the KOKKOS package. - -These are the exceptions. You cannot build a single executable with: - -both the USER-INTEL Phi and KOKKOS Phi options -the USER-INTEL Phi or Kokkos Phi option, and the GPU package :ul - -See the examples/accelerate/README and make.list files for sample -Make.py commands that build LAMMPS with any or all of the accelerator -packages. As an example, here is a command that builds with all the -GPU related packages installed (GPU, KOKKOS with Cuda), including -settings to build the needed auxiliary GPU libraries for Kepler GPUs: - -Make.py -j 16 -p omp gpu kokkos -cc nvcc wrap=mpi \ - -gpu mode=double arch=35 -kokkos cuda arch=35 lib-all file mpi :pre - -The examples/accelerate directory also has input scripts that can be -used with all of the accelerator packages. See its README file for -details. - -Likewise, the bench directory has FERMI and KEPLER and PHI -sub-directories with Make.py commands and input scripts for using all -the accelerator packages on various machines. See the README files in -those dirs. - -As mentioned above, the "Benchmark -page"_http://lammps.sandia.gov/bench.html of the LAMMPS web site gives -performance results for the various accelerator packages for several -of the standard LAMMPS benchmark problems, as a function of problem -size and number of compute nodes, on different hardware platforms. - -Here is a brief summary of what the various packages provide. Details -are in the individual accelerator sections. - -Styles with a "gpu" suffix are part of the GPU package, and can be run -on NVIDIA GPUs. The speed-up on a GPU depends on a variety of -factors, discussed in the accelerator sections. :ulb,l - -Styles with an "intel" suffix are part of the USER-INTEL -package. These styles support vectorized single and mixed precision -calculations, in addition to full double precision. In extreme cases, -this can provide speedups over 3.5x on CPUs. The package also -supports acceleration in "offload" mode to Intel(R) Xeon Phi(TM) -coprocessors. This can result in additional speedup over 2x depending -on the hardware configuration. :l - -Styles with a "kk" suffix are part of the KOKKOS package, and can be -run using OpenMP on multicore CPUs, on an NVIDIA GPU, or on an Intel -Xeon Phi in "native" mode. The speed-up depends on a variety of -factors, as discussed on the KOKKOS accelerator page. :l - -Styles with an "omp" suffix are part of the USER-OMP package and allow -a pair-style to be run in multi-threaded mode using OpenMP. This can -be useful on nodes with high-core counts when using less MPI processes -than cores is advantageous, e.g. when running with PPPM so that FFTs -are run on fewer MPI processors or when the many MPI tasks would -overload the available bandwidth for communication. :l - -Styles with an "opt" suffix are part of the OPT package and typically -speed-up the pairwise calculations of your simulation by 5-25% on a -CPU. :l -:ule - -The individual accelerator package doc pages explain: - -what hardware and software the accelerated package requires -how to build LAMMPS with the accelerated package -how to run with the accelerated package either via command-line switches or modifying the input script -speed-ups to expect -guidelines for best performance -restrictions :ul - -:line - -5.4 Comparison of various accelerator packages :h3,link(acc_4) - -NOTE: this section still needs to be re-worked with additional KOKKOS -and USER-INTEL information. - -The next section compares and contrasts the various accelerator -options, since there are multiple ways to perform OpenMP threading, -run on GPUs, and run on Intel Xeon Phi coprocessors. - -All 3 of these packages accelerate a LAMMPS calculation using NVIDIA -hardware, but they do it in different ways. - -As a consequence, for a particular simulation on specific hardware, -one package may be faster than the other. We give guidelines below, -but the best way to determine which package is faster for your input -script is to try both of them on your machine. See the benchmarking -section below for examples where this has been done. - -[Guidelines for using each package optimally:] - -The GPU package allows you to assign multiple CPUs (cores) to a single -GPU (a common configuration for "hybrid" nodes that contain multicore -CPU(s) and GPU(s)) and works effectively in this mode. :ulb,l - -The GPU package moves per-atom data (coordinates, forces) -back-and-forth between the CPU and GPU every timestep. The -KOKKOS/CUDA package only does this on timesteps when a CPU calculation -is required (e.g. to invoke a fix or compute that is non-GPU-ized). -Hence, if you can formulate your input script to only use GPU-ized -fixes and computes, and avoid doing I/O too often (thermo output, dump -file snapshots, restart files), then the data transfer cost of the -KOKKOS/CUDA package can be very low, causing it to run faster than the -GPU package. :l - -The GPU package is often faster than the KOKKOS/CUDA package, if the -number of atoms per GPU is smaller. The crossover point, in terms of -atoms/GPU at which the KOKKOS/CUDA package becomes faster depends -strongly on the pair style. For example, for a simple Lennard Jones -system the crossover (in single precision) is often about 50K-100K -atoms per GPU. When performing double precision calculations the -crossover point can be significantly smaller. :l - -Both packages compute bonded interactions (bonds, angles, etc) on the -CPU. If the GPU package is running with several MPI processes -assigned to one GPU, the cost of computing the bonded interactions is -spread across more CPUs and hence the GPU package can run faster. :l - -When using the GPU package with multiple CPUs assigned to one GPU, its -performance depends to some extent on high bandwidth between the CPUs -and the GPU. Hence its performance is affected if full 16 PCIe lanes -are not available for each GPU. In HPC environments this can be the -case if S2050/70 servers are used, where two devices generally share -one PCIe 2.0 16x slot. Also many multi-GPU mainboards do not provide -full 16 lanes to each of the PCIe 2.0 16x slots. :l -:ule - -[Differences between the two packages:] - -The GPU package accelerates only pair force, neighbor list, and PPPM -calculations. :ulb,l - -The GPU package requires neighbor lists to be built on the CPU when using -exclusion lists, hybrid pair styles, or a triclinic simulation box. :l -:ule diff --git a/doc/src/Section_commands.txt b/doc/src/Section_commands.txt index 76051490e401b9ff5b9ac3c4aeb292a1b86b66b3..daedb00a0a6f6b431356d04fece2dfaeddbb9f23 100644 --- a/doc/src/Section_commands.txt +++ b/doc/src/Section_commands.txt @@ -1,4 +1,4 @@ -"Previous Section"_Section_start.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Section_packages.html :c +"Previous Section"_Section_start.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Packages.html :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -67,7 +67,7 @@ values are not desired, the "processors"_processors.html and tell LAMMPS how to map processors to the simulation box. Many input script errors are detected by LAMMPS and an ERROR or -WARNING message is printed. "This section"_Section_errors.html gives +WARNING message is printed. The "Errors"_Errors.html doc page gives more information on what errors mean. The documentation for each command lists restrictions on how the command can be used. @@ -129,6 +129,17 @@ region 1 block $((xlo+xhi)/2+sqrt(v_area)) 2 INF INF EDGE EDGE :pre so that you do not have to define (or discard) a temporary variable X. +Additionally, the "immediate" variable expression may be followed by a +colon, followed by a C-style format string, e.g. ":%f" or ":%.10g". +The format string must be appropriate for a double-precision +floating-point value. The format string is used to output the result +of the variable expression evaluation. If a format string is not +specified a high-precision "%.20g" is used as the default. + +This can be useful for formatting print output to a desired precion: + +print "Final energy per atom: $(pe/atoms:%10.3f) eV/atom" :pre + Note that neither the curly-bracket or immediate form of variables can contain nested $ characters for other variables to substitute for. Thus you cannot do this: @@ -193,10 +204,10 @@ allowed, but that should be sufficient for most use cases. 3.3 Input script structure :h3,link(cmd_3) This section describes the structure of a typical LAMMPS input script. -The "examples" directory in the LAMMPS distribution contains many -sample input scripts; the corresponding problems are discussed in -"Section 7"_Section_example.html, and animated on the "LAMMPS -WWW Site"_lws. +The examples directory in the LAMMPS distribution contains many sample +input scripts; the corresponding problems are discussed on the +"Examples"_Examples.html doc page, and animated on the "LAMMPS WWW +Site"_lws. A LAMMPS input script typically has 4 parts: @@ -543,8 +554,8 @@ Fix styles :h3 See the "fix"_fix.html command for one-line descriptions of each style or click on the style itself for a full description. Some of the styles have accelerated versions, which can be used if LAMMPS is built -with the "appropriate accelerated package"_Section_accelerate.html. -This is indicated by additional letters in parenthesis: g = GPU, i = +with the "appropriate accelerated package"_Speed_packages.html. This +is indicated by additional letters in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = OPT. "adapt"_fix_adapt.html, @@ -571,7 +582,7 @@ USER-INTEL, k = KOKKOS, o = USER-OMP, t = OPT. "dt/reset"_fix_dt_reset.html, "efield"_fix_efield.html, "ehex"_fix_ehex.html, -"enforce2d"_fix_enforce2d.html, +"enforce2d (k)"_fix_enforce2d.html, "evaporate"_fix_evaporate.html, "external"_fix_external.html, "freeze"_fix_freeze.html, @@ -583,6 +594,7 @@ USER-INTEL, k = KOKKOS, o = USER-OMP, t = OPT. "indent"_fix_indent.html, "latte"_fix_latte.html, "langevin (k)"_fix_langevin.html, +"langevin/spin"_fix_langevin_spin.hmtl, "lineforce"_fix_lineforce.html, "momentum (k)"_fix_momentum.html, "move"_fix_move.html, @@ -606,6 +618,7 @@ USER-INTEL, k = KOKKOS, o = USER-OMP, t = OPT. "nve/line"_fix_nve_line.html, "nve/noforce"_fix_nve_noforce.html, "nve/sphere (o)"_fix_nve_sphere.html, +"nve/spin"_fix_nve_spin.html, "nve/tri"_fix_nve_tri.html, "nvt (iko)"_fix_nh.html, "nvt/asphere (o)"_fix_nvt_asphere.html, @@ -618,6 +631,7 @@ USER-INTEL, k = KOKKOS, o = USER-OMP, t = OPT. "planeforce"_fix_planeforce.html, "poems"_fix_poems.html, "pour"_fix_pour.html, +"precession/spin"_fix_precession_spin.html, "press/berendsen"_fix_press_berendsen.html, "print"_fix_print.html, "property/atom (k)"_fix_property_atom.html, @@ -664,6 +678,8 @@ USER-INTEL, k = KOKKOS, o = USER-OMP, t = OPT. "vector"_fix_vector.html, "viscosity"_fix_viscosity.html, "viscous"_fix_viscous.html, +"wall/body/polygon"_fix_wall_body_polygon.html, +"wall/body/polyhedron"_fix_wall_body_polyhedron.html, "wall/colloid"_fix_wall.html, "wall/gran"_fix_wall_gran.html, "wall/gran/region"_fix_wall_gran_region.html, @@ -684,6 +700,7 @@ package"_Section_start.html#start_3. "addtorque"_fix_addtorque.html, "atc"_fix_atc.html, "ave/correlate/long"_fix_ave_correlate_long.html, +"bond/react"_fix_bond_react.html, "colvars"_fix_colvars.html, "dpd/energy (k)"_fix_dpd_energy.html, "drude"_fix_drude.html, @@ -758,9 +775,9 @@ See the "compute"_compute.html command for one-line descriptions of each style or click on the style itself for a full description. Some of the styles have accelerated versions, which can be used if LAMMPS is built with the "appropriate accelerated -package"_Section_accelerate.html. This is indicated by additional -letters in parenthesis: g = GPU, i = USER-INTEL, k = -KOKKOS, o = USER-OMP, t = OPT. +package"_Speed_packages.html. This is indicated by additional letters +in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = +OPT. "aggregate/atom"_compute_cluster_atom.html, "angle"_compute_angle.html, @@ -823,6 +840,7 @@ KOKKOS, o = USER-OMP, t = OPT. "sna/atom"_compute_sna_atom.html, "snad/atom"_compute_sna_atom.html, "snav/atom"_compute_sna_atom.html, +"spin"_compute_spin.html, "stress/atom"_compute_stress_atom.html, "temp (k)"_compute_temp.html, "temp/asphere"_compute_temp_asphere.html, @@ -851,6 +869,7 @@ package"_Section_start.html#start_3. "dpd"_compute_dpd.html, "dpd/atom"_compute_dpd_atom.html, "edpd/temp/atom"_compute_edpd_temp_atom.html, +"entropy/atom"_compute_entropy_atom.html, "fep"_compute_fep.html, "force/tally"_compute_tally.html, "heat/flux/tally"_compute_tally.html, @@ -901,9 +920,9 @@ See the "pair_style"_pair_style.html command for an overview of pair potentials. Click on the style itself for a full description. Many of the styles have accelerated versions, which can be used if LAMMPS is built with the "appropriate accelerated -package"_Section_accelerate.html. This is indicated by additional -letters in parenthesis: g = GPU, i = USER-INTEL, k = -KOKKOS, o = USER-OMP, t = OPT. +package"_Speed_packages.html. This is indicated by additional letters +in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = +OPT. "none"_pair_none.html, "zero"_pair_zero.html, @@ -913,7 +932,9 @@ KOKKOS, o = USER-OMP, t = OPT. "airebo (oi)"_pair_airebo.html, "airebo/morse (oi)"_pair_airebo.html, "beck (go)"_pair_beck.html, -"body"_pair_body.html, +"body/nparticle"_pair_body_nparticle.html, +"body/rounded/polygon"_pair_body_rounded/polygon.html, +"body/rounded/polyhedron"_pair_body_rounded/polyhedron.html, "bop"_pair_bop.html, "born (go)"_pair_born.html, "born/coul/dsf"_pair_born.html, @@ -948,6 +969,7 @@ KOKKOS, o = USER-OMP, t = OPT. "dsmc"_pair_dsmc.html, "eam (gikot)"_pair_eam.html, "eam/alloy (gikot)"_pair_eam.html, +"eam/cd (o)"_pair_eam.html, "eam/fs (gikot)"_pair_eam.html, "eim (o)"_pair_eim.html, "gauss (go)"_pair_gauss.html, @@ -1016,6 +1038,10 @@ KOKKOS, o = USER-OMP, t = OPT. "snap (k)"_pair_snap.html, "soft (go)"_pair_soft.html, "sw (giko)"_pair_sw.html, +"spin/dmi"_pair_spin_dmi.html, +"spin/exchange"_pair_spin_exchange.html, +"spin/magelec"_pair_spin_magelec.html, +"spin/neel"_pair_spin_neel.html, "table (gko)"_pair_table.html, "tersoff (giko)"_pair_tersoff.html, "tersoff/mod (gko)"_pair_tersoff_mod.html, @@ -1044,7 +1070,6 @@ package"_Section_start.html#start_3. "coul/shield"_pair_coul_shield.html, "dpd/fdt"_pair_dpd_fdt.html, "dpd/fdt/energy (k)"_pair_dpd_fdt.html, -"eam/cd (o)"_pair_eam.html, "edip (o)"_pair_edip.html, "edip/multi"_pair_edip.html, "edpd"_pair_meso.html, @@ -1117,9 +1142,9 @@ See the "bond_style"_bond_style.html command for an overview of bond potentials. Click on the style itself for a full description. Some of the styles have accelerated versions, which can be used if LAMMPS is built with the "appropriate accelerated -package"_Section_accelerate.html. This is indicated by additional -letters in parenthesis: g = GPU, i = USER-INTEL, k = -KOKKOS, o = USER-OMP, t = OPT. +package"_Speed_packages.html. This is indicated by additional letters +in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = +OPT. "none"_bond_none.html, "zero"_bond_zero.html, @@ -1151,9 +1176,9 @@ See the "angle_style"_angle_style.html command for an overview of angle potentials. Click on the style itself for a full description. Some of the styles have accelerated versions, which can be used if LAMMPS is built with the "appropriate accelerated -package"_Section_accelerate.html. This is indicated by additional -letters in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = -USER-OMP, t = OPT. +package"_Speed_packages.html. This is indicated by additional letters +in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = +OPT. "none"_angle_none.html, "zero"_angle_zero.html, @@ -1187,7 +1212,7 @@ See the "dihedral_style"_dihedral_style.html command for an overview of dihedral potentials. Click on the style itself for a full description. Some of the styles have accelerated versions, which can be used if LAMMPS is built with the "appropriate accelerated -package"_Section_accelerate.html. This is indicated by additional +package"_Speed_packages.html. This is indicated by additional letters in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = OPT. @@ -1211,7 +1236,8 @@ package"_Section_start.html#start_3. "nharmonic (o)"_dihedral_nharmonic.html, "quadratic (o)"_dihedral_quadratic.html, "spherical (o)"_dihedral_spherical.html, -"table (o)"_dihedral_table.html :tb(c=4,ea=c) +"table (o)"_dihedral_table.html, +"table/cut"_dihedral_table_cut.html :tb(c=4,ea=c) :line @@ -1221,9 +1247,9 @@ See the "improper_style"_improper_style.html command for an overview of improper potentials. Click on the style itself for a full description. Some of the styles have accelerated versions, which can be used if LAMMPS is built with the "appropriate accelerated -package"_Section_accelerate.html. This is indicated by additional -letters in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = -USER-OMP, t = OPT. +package"_Speed_packages.html. This is indicated by additional letters +in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = +OPT. "none"_improper_none.html, "zero"_improper_zero.html, @@ -1250,9 +1276,9 @@ See the "kspace_style"_kspace_style.html command for an overview of Kspace solvers. Click on the style itself for a full description. Some of the styles have accelerated versions, which can be used if LAMMPS is built with the "appropriate accelerated -package"_Section_accelerate.html. This is indicated by additional -letters in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = -USER-OMP, t = OPT. +package"_Speed_packages.html. This is indicated by additional letters +in parenthesis: g = GPU, i = USER-INTEL, k = KOKKOS, o = USER-OMP, t = +OPT. "ewald (o)"_kspace_style.html, "ewald/disp"_kspace_style.html, diff --git a/doc/src/Section_history.txt b/doc/src/Section_history.txt index 7b9041062855136866e909b7c37a451c41460256..6bbd1e4d99a8d02e89147b5a240f1479252c2940 100644 --- a/doc/src/Section_history.txt +++ b/doc/src/Section_history.txt @@ -1,4 +1,4 @@ -"Previous Section"_Section_errors.html - "LAMMPS WWW Site"_lws - +"Previous Section"_Errors.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Manual.html :c diff --git a/doc/src/Section_howto.txt b/doc/src/Section_howto.txt index e852e0abd452b707fc0eb25f0783cfb14bf85507..337880ccee186f3b7c3500627b8d5c6f43af8224 100644 --- a/doc/src/Section_howto.txt +++ b/doc/src/Section_howto.txt @@ -1,4 +1,4 @@ -"Previous Section"_Section_accelerate.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Section_example.html :c +"Previous Section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Examples.html :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -36,10 +36,11 @@ This section describes how to perform common tasks using LAMMPS. 6.24 "Setting parameters for the kspace_style pppm/disp command"_#howto_24 6.25 "Polarizable models"_#howto_25 6.26 "Adiabatic core/shell model"_#howto_26 -6.27 "Drude induced dipoles"_#howto_27 :all(b) +6.27 "Drude induced dipoles"_#howto_27 +6.28 "Magnetic spins"_#howto_28 :all(b) The example input scripts included in the LAMMPS distribution and -highlighted in "Section 7"_Section_example.html also show how to +highlighted on the "Examples"_Examples.html doc page also show how to setup and run various kinds of simulations. :line @@ -187,9 +188,9 @@ used in the CHARMM, AMBER, and DREIDING force fields. Setting coefficients is done in the input data file via the "read_data"_read_data.html command or in the input script with commands like "pair_coeff"_pair_coeff.html or -"bond_coeff"_bond_coeff.html. See "Section 9"_Section_tools.html -for additional tools that can use CHARMM or AMBER to assign force -field coefficients and convert their output into LAMMPS input. +"bond_coeff"_bond_coeff.html. See the "Tools"_Tools.html doc page for +additional tools that can use CHARMM or AMBER to assign force field +coefficients and convert their output into LAMMPS input. See "(MacKerell)"_#howto-MacKerell for a description of the CHARMM force field. See "(Cornell)"_#howto-Cornell for a description of the AMBER force @@ -671,10 +672,10 @@ this scenario, LAMMPS is the driver code. During its timestepping, the fix is invoked, and can make library calls to the other code, which has been linked to LAMMPS as a library. This is the way the "POEMS"_poems package that performs constrained rigid-body motion on -groups of atoms is hooked to LAMMPS. See the -"fix poems"_fix_poems.html command for more details. See "this -section"_Section_modify.html of the documentation for info on how to add -a new fix to LAMMPS. +groups of atoms is hooked to LAMMPS. See the "fix +poems"_fix_poems.html command for more details. See the +"Modify"_Modify.html doc page for info on how to add a new fix to +LAMMPS. :link(poems,http://www.rpi.edu/~anderk5/lab) @@ -695,8 +696,8 @@ processors to start up another program). In the latter case the stand-alone code could communicate with LAMMPS thru files that the command writes and reads. -See "Section 10"_Section_modify.html of the documentation for how -to add a new command to LAMMPS. +See the "Modify"_Modify.html doc page for how to add a new command to +LAMMPS. (3) Use LAMMPS as a library called by another code. In this case the other code is the driver and calls LAMMPS as needed. Or a wrapper @@ -730,10 +731,10 @@ any other language that supports a vanilla C-like interface). For example, from C++ you could create one (or more) "instances" of LAMMPS, pass it an input script to process, or execute individual commands, all by invoking the correct class methods in LAMMPS. From C -or Fortran you can make function calls to do the same things. See -"Section 11"_Section_python.html of the manual for a description -of the Python wrapper provided with LAMMPS that operates through the -LAMMPS library interface. +or Fortran you can make function calls to do the same things. See the +"Python"_Python.html doc page for a description of the Python wrapper +provided with LAMMPS that operates through the LAMMPS library +interface. The files src/library.cpp and library.h contain the C-style interface to LAMMPS. See "Section 6.19"_Section_howto.html#howto_19 of the @@ -761,12 +762,12 @@ simulations can be visualized (and analyzed) in a variety of ways. LAMMPS snapshots are created by the "dump"_dump.html command which can create files in several formats. The native LAMMPS dump format is a text file (see "dump atom" or "dump custom") which can be visualized -by several popular visualization tools. The "dump image"_dump_image.html -and "dump movie"_dump_image.html styles can output internally rendered -images and convert a sequence of them to a movie during the MD run. -Several programs included with LAMMPS as auxiliary tools can convert -between LAMMPS format files and other formats. -See the "Section 9"_Section_tools.html doc page for details. +by several popular visualization tools. The "dump +image"_dump_image.html and "dump movie"_dump_image.html styles can +output internally rendered images and convert a sequence of them to a +movie during the MD run. Several programs included with LAMMPS as +auxiliary tools can convert between LAMMPS format files and other +formats. See the "Tools"_Tools.html doc page for details. A Python-based toolkit distributed by our group can read native LAMMPS dump files, including custom dump files with additional columns of @@ -1056,7 +1057,7 @@ rigid bodies composed of finite-size particles :ul Example input scripts for these kinds of models are in the body, colloid, dipole, ellipse, line, peri, pour, and tri directories of the -"examples directory"_Section_example.html in the LAMMPS distribution. +"examples directory"_Examples.html in the LAMMPS distribution. Atom styles :h4 @@ -1157,7 +1158,7 @@ styles"_pair_style.html that generate torque: "pair_style lubricate"_pair_lubricate.html "pair_style line/lj"_pair_line_lj.html "pair_style tri/lj"_pair_tri_lj.html -"pair_style body"_pair_body.html :ul +"pair_style body"_pair_body_nparticle.html :ul The granular pair styles are used with spherical particles. The dipole pair style is used with the dipole atom style, which could be @@ -1268,7 +1269,7 @@ list of sub-particles. Individual body partices are typically treated as rigid bodies, and their motion integrated with a command like "fix nve/body"_fix_nve_body.html. Interactions between pairs of body particles are computed via a command like "pair_style -body"_pair_body.html. +body"_pair_body_nparticle.html. :line @@ -1301,8 +1302,8 @@ As discussed below, LAMMPS gives you a variety of ways to determine what quantities are computed and printed when the thermodynamics, dump, or fix commands listed above perform output. Throughout this discussion, note that users can also "add their own computes and fixes -to LAMMPS"_Section_modify.html which can then generate values that can -then be output with these commands. +to LAMMPS"_Modify.html which can then generate values that can then be +output with these commands. The following sub-sections discuss different LAMMPS command related to output and the kind of data they operate on and produce: @@ -1823,8 +1824,8 @@ At zero temperature, it is easy to estimate these derivatives by deforming the simulation box in one of the six directions using the "change_box"_change_box.html command and measuring the change in the stress tensor. A general-purpose script that does this is given in the -examples/elastic directory described in "this -section"_Section_example.html. +examples/elastic directory described on the "Examples"_Examples.html +doc page. Calculating elastic constants at finite temperature is more challenging, because it is necessary to run a simulation that perfoms @@ -1842,10 +1843,10 @@ converge and requires careful post-processing "(Shinoda)"_#Shinoda1 6.19 Library interface to LAMMPS :link(howto_19),h4 -As described in "Section 2.5"_Section_start.html#start_5, LAMMPS -can be built as a library, so that it can be called by another code, -used in a "coupled manner"_Section_howto.html#howto_10 with other -codes, or driven through a "Python interface"_Section_python.html. +As described in "Section 2.5"_Section_start.html#start_5, LAMMPS can +be built as a library, so that it can be called by another code, used +in a "coupled manner"_Section_howto.html#howto_10 with other codes, or +driven through a "Python interface"_Python.html. All of these methodologies use a C-style interface to LAMMPS that is provided in the files src/library.cpp and src/library.h. The @@ -1868,9 +1869,9 @@ details. NOTE: You can write code for additional functions as needed to define how your code talks to LAMMPS and add them to src/library.cpp and -src/library.h, as well as to the "Python -interface"_Section_python.html. The added functions can access or -change any internal LAMMPS data you wish. +src/library.h, as well as to the "Python interface"_Python.html. The +added functions can access or change any internal LAMMPS data you +wish. void lammps_open(int, char **, MPI_Comm, void **) void lammps_open_no_mpi(int, char **, void **) @@ -2321,11 +2322,10 @@ Note that this compute allows the per-atom output of other "computes"_compute.html, "fixes"_fix.html, and "variables"_variable.html to be used to define chunk IDs for each atom. This means you can write your own compute or fix to output a -per-atom quantity to use as chunk ID. See -"Section 10"_Section_modify.html of the documentation for how to -do this. You can also define a "per-atom variable"_variable.html in -the input script that uses a formula to generate a chunk ID for each -atom. +per-atom quantity to use as chunk ID. See the "Modify"_Modify.html +doc page for how to do this. You can also define a "per-atom +variable"_variable.html in the input script that uses a formula to +generate a chunk ID for each atom. Fix ave/chunk command: :h4 @@ -2906,6 +2906,54 @@ with a Coulomb pair style. It may be useful to use {coul/long/cs} or similar from the CORESHELL package if the core and Drude particle come too close, which can cause numerical issues. +:line + +6.28 Magnetic spins :link(howto_28),h4 + +Classical magnetic spin simualtions can be performed via the SPIN +package. The algrorithmic and implementation details are described in +"Tranchida"_#Tranchida7. + +The model representents the simulation of atomic magnetic spins +coupled to lattice vibrations. The dynamics of those magnetic spins +can be used to simulate a broad range a phenomena related to +magneto-elasticity, or or to study the influence of defects on the +magnetic properties of materials. + +The magnetic spins are interacting with each others and with the +lattice via pair interactions. Typically, the magnetic exchange +interaction can be defined using the +"pair/spin/exchange"_pair_spin_exchange.html command. This exchange +applies a magnetic torque to a given spin, considering the orientation +of its neighboring spins and their relative distances. +It also applies a force on the atoms as a function of the spin +orientations and their associated inter-atomic distances. + +The command "fix precession/spin"_fix_precession_spin.html allows to +apply a constant magnetic torque on all the spins in the system. This +torque can be an external magnetic field (Zeeman interaction), or an +uniaxial magnetic anisotropy. + +A Langevin thermostat can be applied to those magnetic spins using +"fix langevin/spin"_fix_langevin_spin.html. Typically, this thermostat +can be coupled to another Langevin thermostat applied to the atoms +using "fix langevin"_fix_langevin.html in order to simulate +thermostated spin-lattice system. + +The magnetic Gilbert damping can also be applied using "fix +langevin/spin"_fix_langevin_spin.html. It allows to either dissipate +the thermal energy of the Langevin thermostat, or to perform a +relaxation of the magnetic configuration toward an equilibrium state. + +All the computed magnetic properties can be outputed by two main +commands. The first one is "compute spin"_compute_spin.html, that +enables to evaluate magnetic averaged quantities, such as the total +magnetization of the system along x, y, or z, the spin temperature, or +the magnetic energy. The second command is "compute +property/atom"_compute_property_atom.html. It enables to output all the +per atom magnetic quantities. Typically, the orientation of a given +magnetic spin, or the magnetic force acting on this spin. + :line :line @@ -2957,3 +3005,7 @@ Phys, 79, 926 (1983). :link(howto-Lamoureux) [(Lamoureux and Roux)] G. Lamoureux, B. Roux, J. Chem. Phys 119, 3025 (2003) + +:link(Tranchida7) +[(Tranchida)] Tranchida, Plimpton, Thibaudeau and Thompson, +arXiv preprint arXiv:1801.10233, (2018). diff --git a/doc/src/Section_intro.txt b/doc/src/Section_intro.txt index e1ca0ce62fcce3ceb514a71dcde332df478d7d71..36a1181ca7b731ca48c6ec995c8578f5fe94611b 100644 --- a/doc/src/Section_intro.txt +++ b/doc/src/Section_intro.txt @@ -1,4 +1,6 @@ -"Previous Section"_Manual.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Section_start.html :c +"Previous Section"_Manual.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Section_start.html :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -54,8 +56,8 @@ brief discussion of the open-source philosophy. LAMMPS is designed to be easy to modify or extend with new capabilities, such as new force fields, atom types, boundary -conditions, or diagnostics. See "Section 10"_Section_modify.html -for more details. +conditions, or diagnostics. See the "Modify"_Modify.html doc page for +more details. The current version of LAMMPS is written in C++. Earlier versions were written in F77 and F90. See @@ -94,8 +96,8 @@ LAMMPS are listed in "this section"_#intro_5. This section highlights LAMMPS features, with pointers to specific commands which give more details. If LAMMPS doesn't have your favorite interatomic potential, boundary condition, or atom type, see -"Section 10"_Section_modify.html, which describes how you can add -it to LAMMPS. +the "Modify"_Modify.html doc page, which describes how you can add it +to LAMMPS. General features :h4 @@ -234,8 +236,8 @@ Multi-replica models :h4 Pre- and post-processing :h4 -Various pre- and post-processing serial tools are packaged -with LAMMPS; see these "doc pages"_Section_tools.html. :ulb,l +Various pre- and post-processing serial tools are packaged with +LAMMPS; see the "Tools"_Tools.html doc page for details. :ulb,l Our group has also written and released a separate toolkit called "Pizza.py"_pizza which provides tools for doing setup, analysis, @@ -251,7 +253,7 @@ Specialized features :h4 LAMMPS can be built with optional packages which implement a variety of additional capabilities. An overview of all the packages is "given -here"_Section_packages.html. +here"_Packages.html. These are some LAMMPS capabilities which you may not think of as typical classical molecular dynamics options: @@ -296,9 +298,9 @@ visualize your MD simulation plot your output data :ul A few tools for pre- and post-processing tasks are provided as part of -the LAMMPS package; they are described in "this -section"_Section_tools.html. However, many people use other codes or -write their own tools for these tasks. +the LAMMPS package; they are described on the "Tools"_Tools.html doc +page. However, many people use other codes or write their own tools +for these tasks. As noted above, our group has also written and released a separate toolkit called "Pizza.py"_pizza which addresses some of the listed @@ -327,15 +329,15 @@ topology information and hundreds of force-field coefficients must typically be specified. We suggest you use a program like "CHARMM"_charmm or "AMBER"_amber or other molecular builders to setup such problems and dump its information to a file. You can then -reformat the file as LAMMPS input. Some of the tools in "this -section"_Section_tools.html can assist in this process. +reformat the file as LAMMPS input. Some of the tools described on the +"Tools"_Tools.html doc page can assist in this process. Similarly, LAMMPS creates output files in a simple format. Most users post-process these files with their own analysis tools or re-format them for input into other programs, including visualization packages. If you are convinced you need to compute something on-the-fly as -LAMMPS runs, see "Section 10"_Section_modify.html for a discussion -of how you can use the "dump"_dump.html and "compute"_compute.html and +LAMMPS runs, see the "Modify"_Modify.html doc page for a discussion of +how you can use the "dump"_dump.html and "compute"_compute.html and "fix"_fix.html commands to print out data of your choosing. Keep in mind that complicated computations can slow down the molecular dynamics timestepping, particularly if the computations are not @@ -429,7 +431,7 @@ Site"_lws, or have a suggestion for something to clarify or include, send an email to the "developers"_http://lammps.sandia.gov/authors.html. :l -If you find a bug, "Section 12.2"_Section_errors.html#err_2 +If you find a bug, the "Errors bugs"_Errors_bugs.html doc page describes how to report it. :l If you publish a paper using LAMMPS results, send the citation (and @@ -442,15 +444,14 @@ directory. :l The tools sub-directory of the LAMMPS distribution has various stand-alone codes for pre- and post-processing of LAMMPS data. More -details are given in "Section 9"_Section_tools.html. If you write -a new tool that users will find useful, it can be added to the LAMMPS +details are given on the "Tools"_Tools.html doc page. If you write a +new tool that users will find useful, it can be added to the LAMMPS distribution. :l LAMMPS is designed to be easy to extend with new code for features like potentials, boundary conditions, diagnostic computations, etc. -"This section"_Section_modify.html gives details. If you add a -feature of general interest, it can be added to the LAMMPS -distribution. :l +The "Modify"_Modify.html doc page gives details. If you add a feature +of general interest, it can be added to the LAMMPS distribution. :l The Benchmark page of the "LAMMPS WWW Site"_lws lists LAMMPS performance on various platforms. The files needed to run the @@ -526,14 +527,14 @@ and efforts. Axel Kohlmeyer (Temple U), akohlmey at gmail.com, SVN and Git repositories, indefatigable mail list responder, USER-CGSDK, USER-OMP, USER-COLVARS, USER-MOLFILE, USER-QMMM, USER-TALLY, and COMPRESS packages Roy Pollock (LLNL), Ewald and PPPM solvers Mike Brown (ORNL), brownw at ornl.gov, GPU and USER-INTEL package -Greg Wagner (Sandia), gjwagne at sandia.gov, MEAM package for MEAM potential +Greg Wagner (Sandia), gjwagne at sandia.gov, MEAM package for MEAM potential (superseded by USER-MEAMC) Mike Parks (Sandia), mlparks at sandia.gov, PERI package for Peridynamics Rudra Mukherjee (JPL), Rudranarayan.M.Mukherjee at jpl.nasa.gov, POEMS package for articulated rigid body motion Reese Jones (Sandia) and collaborators, rjones at sandia.gov, USER-ATC package for atom/continuum coupling Ilya Valuev (JIHT), valuev at physik.hu-berlin.de, USER-AWPMD package for wave-packet MD -Christian Trott (U Tech Ilmenau), christian.trott at tu-ilmenau.de, USER-CUDA and KOKKOS packages +Christian Trott (U Tech Ilmenau), christian.trott at tu-ilmenau.de, USER-CUDA (obsoleted by KOKKOS) and KOKKOS packages Andres Jaramillo-Botero (Caltech), ajaramil at wag.caltech.edu, USER-EFF package for electron force field -Christoph Kloss (JKU), Christoph.Kloss at jku.at, USER-LIGGGHTS package for granular models and granular/fluid coupling +Christoph Kloss (JKU), Christoph.Kloss at jku.at, LIGGGHTS fork for granular models and granular/fluid coupling Metin Aktulga (LBL), hmaktulga at lbl.gov, USER-REAXC package for C version of ReaxFF Georg Gunzenmuller (EMI), georg.ganzenmueller at emi.fhg.de, USER-SMD and USER-SPH packages Colin Denniston (U Western Ontario), cdennist at uwo.ca, USER-LB package :ul diff --git a/doc/src/Section_modify.txt b/doc/src/Section_modify.txt deleted file mode 100644 index f1d55758c8b0b498710d2f9c2e83eb9834817481..0000000000000000000000000000000000000000 --- a/doc/src/Section_modify.txt +++ /dev/null @@ -1,827 +0,0 @@ - "Previous Section"_Section_tools.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next -Section"_Section_python.html :c - -:link(lws,http://lammps.sandia.gov) -:link(ld,Manual.html) -:link(lc,Section_commands.html#comm) - -:line - -10. Modifying & extending LAMMPS :h2 - -This section describes how to customize LAMMPS by modifying -and extending its source code. - -10.1 "Atom styles"_#mod_1 -10.2 "Bond, angle, dihedral, improper potentials"_#mod_2 -10.3 "Compute styles"_#mod_3 -10.4 "Dump styles"_#mod_4 -10.5 "Dump custom output options"_#mod_5 -10.6 "Fix styles"_#mod_6 which include integrators, \ - temperature and pressure control, force constraints, \ - boundary conditions, diagnostic output, etc -10.7 "Input script commands"_#mod_7 -10.8 "Kspace computations"_#mod_8 -10.9 "Minimization styles"_#mod_9 -10.10 "Pairwise potentials"_#mod_10 -10.11 "Region styles"_#mod_11 -10.12 "Body styles"_#mod_12 -10.13 "Thermodynamic output options"_#mod_13 -10.14 "Variable options"_#mod_14 -10.15 "Submitting new features for inclusion in LAMMPS"_#mod_15 :all(b) - -LAMMPS is designed in a modular fashion so as to be easy to modify and -extend with new functionality. In fact, about 75% of its source code -is files added in this fashion. - -In this section, changes and additions users can make are listed along -with minimal instructions. If you add a new feature to LAMMPS and -think it will be of interest to general users, we encourage you to -submit it to the developers for inclusion in the released version of -LAMMPS. Information about how to do this is provided -"below"_#mod_14. - -The best way to add a new feature is to find a similar feature in -LAMMPS and look at the corresponding source and header files to figure -out what it does. You will need some knowledge of C++ to be able to -understand the hi-level structure of LAMMPS and its class -organization, but functions (class methods) that do actual -computations are written in vanilla C-style code and operate on simple -C-style data structures (vectors and arrays). - -Most of the new features described in this section require you to -write a new C++ derived class (except for exceptions described below, -where you can make small edits to existing files). Creating a new -class requires 2 files, a source code file (*.cpp) and a header file -(*.h). The derived class must provide certain methods to work as a -new option. Depending on how different your new feature is compared -to existing features, you can either derive from the base class -itself, or from a derived class that already exists. Enabling LAMMPS -to invoke the new class is as simple as putting the two source -files in the src dir and re-building LAMMPS. - -The advantage of C++ and its object-orientation is that all the code -and variables needed to define the new feature are in the 2 files you -write, and thus shouldn't make the rest of LAMMPS more complex or -cause side-effect bugs. - -Here is a concrete example. Suppose you write 2 files pair_foo.cpp -and pair_foo.h that define a new class PairFoo that computes pairwise -potentials described in the classic 1997 "paper"_#Foo by Foo, et al. -If you wish to invoke those potentials in a LAMMPS input script with a -command like - -pair_style foo 0.1 3.5 :pre - -then your pair_foo.h file should be structured as follows: - -#ifdef PAIR_CLASS -PairStyle(foo,PairFoo) -#else -... -(class definition for PairFoo) -... -#endif :pre - -where "foo" is the style keyword in the pair_style command, and -PairFoo is the class name defined in your pair_foo.cpp and pair_foo.h -files. - -When you re-build LAMMPS, your new pairwise potential becomes part of -the executable and can be invoked with a pair_style command like the -example above. Arguments like 0.1 and 3.5 can be defined and -processed by your new class. - -As illustrated by this pairwise example, many kinds of options are -referred to in the LAMMPS documentation as the "style" of a particular -command. - -The instructions below give the header file for the base class that -these styles are derived from. Public variables in that file are ones -used and set by the derived classes which are also used by the base -class. Sometimes they are also used by the rest of LAMMPS. Virtual -functions in the base class header file which are set = 0 are ones you -must define in your new derived class to give it the functionality -LAMMPS expects. Virtual functions that are not set to 0 are functions -you can optionally define. - -Additionally, new output options can be added directly to the -thermo.cpp, dump_custom.cpp, and variable.cpp files as explained -below. - -Here are additional guidelines for modifying LAMMPS and adding new -functionality: - -Think about whether what you want to do would be better as a pre- or -post-processing step. Many computations are more easily and more -quickly done that way. :ulb,l - -Don't do anything within the timestepping of a run that isn't -parallel. E.g. don't accumulate a bunch of data on a single processor -and analyze it. You run the risk of seriously degrading the parallel -efficiency. :l - -If your new feature reads arguments or writes output, make sure you -follow the unit conventions discussed by the "units"_units.html -command. :l - -If you add something you think is truly useful and doesn't impact -LAMMPS performance when it isn't used, send an email to the -"developers"_http://lammps.sandia.gov/authors.html. We might be -interested in adding it to the LAMMPS distribution. See further -details on this at the bottom of this page. :l -:ule - -:line -:line - -10.1 Atom styles :link(mod_1),h4 - -Classes that define an "atom style"_atom_style.html are derived from -the AtomVec class and managed by the Atom class. The atom style -determines what attributes are associated with an atom. A new atom -style can be created if one of the existing atom styles does not -define all the attributes you need to store and communicate with -atoms. - -Atom_vec_atomic.cpp is a simple example of an atom style. - -Here is a brief description of methods you define in your new derived -class. See atom_vec.h for details. - -init: one time setup (optional) -grow: re-allocate atom arrays to longer lengths (required) -grow_reset: make array pointers in Atom and AtomVec classes consistent (required) -copy: copy info for one atom to another atom's array locations (required) -pack_comm: store an atom's info in a buffer communicated every timestep (required) -pack_comm_vel: add velocity info to communication buffer (required) -pack_comm_hybrid: store extra info unique to this atom style (optional) -unpack_comm: retrieve an atom's info from the buffer (required) -unpack_comm_vel: also retrieve velocity info (required) -unpack_comm_hybrid: retrieve extra info unique to this atom style (optional) -pack_reverse: store an atom's info in a buffer communicating partial forces (required) -pack_reverse_hybrid: store extra info unique to this atom style (optional) -unpack_reverse: retrieve an atom's info from the buffer (required) -unpack_reverse_hybrid: retrieve extra info unique to this atom style (optional) -pack_border: store an atom's info in a buffer communicated on neighbor re-builds (required) -pack_border_vel: add velocity info to buffer (required) -pack_border_hybrid: store extra info unique to this atom style (optional) -unpack_border: retrieve an atom's info from the buffer (required) -unpack_border_vel: also retrieve velocity info (required) -unpack_border_hybrid: retrieve extra info unique to this atom style (optional) -pack_exchange: store all an atom's info to migrate to another processor (required) -unpack_exchange: retrieve an atom's info from the buffer (required) -size_restart: number of restart quantities associated with proc's atoms (required) -pack_restart: pack atom quantities into a buffer (required) -unpack_restart: unpack atom quantities from a buffer (required) -create_atom: create an individual atom of this style (required) -data_atom: parse an atom line from the data file (required) -data_atom_hybrid: parse additional atom info unique to this atom style (optional) -data_vel: parse one line of velocity information from data file (optional) -data_vel_hybrid: parse additional velocity data unique to this atom style (optional) -memory_usage: tally memory allocated by atom arrays (required) :tb(s=:) - -The constructor of the derived class sets values for several variables -that you must set when defining a new atom style, which are documented -in atom_vec.h. New atom arrays are defined in atom.cpp. Search for -the word "customize" and you will find locations you will need to -modify. - -NOTE: It is possible to add some attributes, such as a molecule ID, to -atom styles that do not have them via the "fix -property/atom"_fix_property_atom.html command. This command also -allows new custom attributes consisting of extra integer or -floating-point values to be added to atoms. See the "fix -property/atom"_fix_property_atom.html doc page for examples of cases -where this is useful and details on how to initialize, access, and -output the custom values. - -New "pair styles"_pair_style.html, "fixes"_fix.html, or -"computes"_compute.html can be added to LAMMPS, as discussed below. -The code for these classes can use the per-atom properties defined by -fix property/atom. The Atom class has a find_custom() method that is -useful in this context: - -int index = atom->find_custom(char *name, int &flag); :pre - -The "name" of a custom attribute, as specified in the "fix -property/atom"_fix_property_atom.html command, is checked to verify -that it exists and its index is returned. The method also sets flag = -0/1 depending on whether it is an integer or floating-point attribute. -The vector of values associated with the attribute can then be -accessed using the returned index as - -int *ivector = atom->ivector\[index\]; -double *dvector = atom->dvector\[index\]; :pre - -Ivector or dvector are vectors of length Nlocal = # of owned atoms, -which store the attributes of individual atoms. - -:line - -10.2 Bond, angle, dihedral, improper potentials :link(mod_2),h4 - -Classes that compute molecular interactions are derived from the Bond, -Angle, Dihedral, and Improper classes. New styles can be created to -add new potentials to LAMMPS. - -Bond_harmonic.cpp is the simplest example of a bond style. Ditto for -the harmonic forms of the angle, dihedral, and improper style -commands. - -Here is a brief description of common methods you define in your -new derived class. See bond.h, angle.h, dihedral.h, and improper.h -for details and specific additional methods. - -init: check if all coefficients are set, calls {init_style} (optional) -init_style: check if style specific conditions are met (optional) -compute: compute the molecular interactions (required) -settings: apply global settings for all types (optional) -coeff: set coefficients for one type (required) -equilibrium_distance: length of bond, used by SHAKE (required, bond only) -equilibrium_angle: opening of angle, used by SHAKE (required, angle only) -write & read_restart: writes/reads coeffs to restart files (required) -single: force and energy of a single bond or angle (required, bond or angle only) -memory_usage: tally memory allocated by the style (optional) :tb(s=:) - -:line - -10.3 Compute styles :link(mod_3),h4 - -Classes that compute scalar and vector quantities like temperature -and the pressure tensor, as well as classes that compute per-atom -quantities like kinetic energy and the centro-symmetry parameter -are derived from the Compute class. New styles can be created -to add new calculations to LAMMPS. - -Compute_temp.cpp is a simple example of computing a scalar -temperature. Compute_ke_atom.cpp is a simple example of computing -per-atom kinetic energy. - -Here is a brief description of methods you define in your new derived -class. See compute.h for details. - -init: perform one time setup (required) -init_list: neighbor list setup, if needed (optional) -compute_scalar: compute a scalar quantity (optional) -compute_vector: compute a vector of quantities (optional) -compute_peratom: compute one or more quantities per atom (optional) -compute_local: compute one or more quantities per processor (optional) -pack_comm: pack a buffer with items to communicate (optional) -unpack_comm: unpack the buffer (optional) -pack_reverse: pack a buffer with items to reverse communicate (optional) -unpack_reverse: unpack the buffer (optional) -remove_bias: remove velocity bias from one atom (optional) -remove_bias_all: remove velocity bias from all atoms in group (optional) -restore_bias: restore velocity bias for one atom after remove_bias (optional) -restore_bias_all: same as before, but for all atoms in group (optional) -pair_tally_callback: callback function for {tally}-style computes (optional). -memory_usage: tally memory usage (optional) :tb(s=:) - -Tally-style computes are a special case, as their computation is done -in two stages: the callback function is registered with the pair style -and then called from the Pair::ev_tally() function, which is called for -each pair after force and energy has been computed for this pair. Then -the tallied values are retrieved with the standard compute_scalar or -compute_vector or compute_peratom methods. The USER-TALLY package -provides {examples}_compute_tally.html for utilizing this mechanism. - -:line - -10.4 Dump styles :link(mod_4),h4 -10.5 Dump custom output options :link(mod_5),h4 - -Classes that dump per-atom info to files are derived from the Dump -class. To dump new quantities or in a new format, a new derived dump -class can be added, but it is typically simpler to modify the -DumpCustom class contained in the dump_custom.cpp file. - -Dump_atom.cpp is a simple example of a derived dump class. - -Here is a brief description of methods you define in your new derived -class. See dump.h for details. - -write_header: write the header section of a snapshot of atoms -count: count the number of lines a processor will output -pack: pack a proc's output data into a buffer -write_data: write a proc's data to a file :tb(s=:) - -See the "dump"_dump.html command and its {custom} style for a list of -keywords for atom information that can already be dumped by -DumpCustom. It includes options to dump per-atom info from Compute -classes, so adding a new derived Compute class is one way to calculate -new quantities to dump. - -Alternatively, you can add new keywords to the dump custom command. -Search for the word "customize" in dump_custom.cpp to see the -half-dozen or so locations where code will need to be added. - -:line - -10.6 Fix styles :link(mod_6),h4 - -In LAMMPS, a "fix" is any operation that is computed during -timestepping that alters some property of the system. Essentially -everything that happens during a simulation besides force computation, -neighbor list construction, and output, is a "fix". This includes -time integration (update of coordinates and velocities), force -constraints or boundary conditions (SHAKE or walls), and diagnostics -(compute a diffusion coefficient). New styles can be created to add -new options to LAMMPS. - -Fix_setforce.cpp is a simple example of setting forces on atoms to -prescribed values. There are dozens of fix options already in LAMMPS; -choose one as a template that is similar to what you want to -implement. - -Here is a brief description of methods you can define in your new -derived class. See fix.h for details. - -setmask: determines when the fix is called during the timestep (required) -init: initialization before a run (optional) -setup_pre_exchange: called before atom exchange in setup (optional) -setup_pre_force: called before force computation in setup (optional) -setup: called immediately before the 1st timestep and after forces are computed (optional) -min_setup_pre_force: like setup_pre_force, but for minimizations instead of MD runs (optional) -min_setup: like setup, but for minimizations instead of MD runs (optional) -initial_integrate: called at very beginning of each timestep (optional) -pre_exchange: called before atom exchange on re-neighboring steps (optional) -pre_neighbor: called before neighbor list build (optional) -pre_force: called before pair & molecular forces are computed (optional) -post_force: called after pair & molecular forces are computed and communicated (optional) -final_integrate: called at end of each timestep (optional) -end_of_step: called at very end of timestep (optional) -write_restart: dumps fix info to restart file (optional) -restart: uses info from restart file to re-initialize the fix (optional) -grow_arrays: allocate memory for atom-based arrays used by fix (optional) -copy_arrays: copy atom info when an atom migrates to a new processor (optional) -pack_exchange: store atom's data in a buffer (optional) -unpack_exchange: retrieve atom's data from a buffer (optional) -pack_restart: store atom's data for writing to restart file (optional) -unpack_restart: retrieve atom's data from a restart file buffer (optional) -size_restart: size of atom's data (optional) -maxsize_restart: max size of atom's data (optional) -setup_pre_force_respa: same as setup_pre_force, but for rRESPA (optional) -initial_integrate_respa: same as initial_integrate, but for rRESPA (optional) -post_integrate_respa: called after the first half integration step is done in rRESPA (optional) -pre_force_respa: same as pre_force, but for rRESPA (optional) -post_force_respa: same as post_force, but for rRESPA (optional) -final_integrate_respa: same as final_integrate, but for rRESPA (optional) -min_pre_force: called after pair & molecular forces are computed in minimizer (optional) -min_post_force: called after pair & molecular forces are computed and communicated in minimizer (optional) -min_store: store extra data for linesearch based minimization on a LIFO stack (optional) -min_pushstore: push the minimization LIFO stack one element down (optional) -min_popstore: pop the minimization LIFO stack one element up (optional) -min_clearstore: clear minimization LIFO stack (optional) -min_step: reset or move forward on line search minimization (optional) -min_dof: report number of degrees of freedom {added} by this fix in minimization (optional) -max_alpha: report maximum allowed step size during linesearch minimization (optional) -pack_comm: pack a buffer to communicate a per-atom quantity (optional) -unpack_comm: unpack a buffer to communicate a per-atom quantity (optional) -pack_reverse_comm: pack a buffer to reverse communicate a per-atom quantity (optional) -unpack_reverse_comm: unpack a buffer to reverse communicate a per-atom quantity (optional) -dof: report number of degrees of freedom {removed} by this fix during MD (optional) -compute_scalar: return a global scalar property that the fix computes (optional) -compute_vector: return a component of a vector property that the fix computes (optional) -compute_array: return a component of an array property that the fix computes (optional) -deform: called when the box size is changed (optional) -reset_target: called when a change of the target temperature is requested during a run (optional) -reset_dt: is called when a change of the time step is requested during a run (optional) -modify_param: called when a fix_modify request is executed (optional) -memory_usage: report memory used by fix (optional) -thermo: compute quantities for thermodynamic output (optional) :tb(s=:) - -Typically, only a small fraction of these methods are defined for a -particular fix. Setmask is mandatory, as it determines when the fix -will be invoked during the timestep. Fixes that perform time -integration ({nve}, {nvt}, {npt}) implement initial_integrate() and -final_integrate() to perform velocity Verlet updates. Fixes that -constrain forces implement post_force(). - -Fixes that perform diagnostics typically implement end_of_step(). For -an end_of_step fix, one of your fix arguments must be the variable -"nevery" which is used to determine when to call the fix and you must -set this variable in the constructor of your fix. By convention, this -is the first argument the fix defines (after the ID, group-ID, style). - -If the fix needs to store information for each atom that persists from -timestep to timestep, it can manage that memory and migrate the info -with the atoms as they move from processors to processor by -implementing the grow_arrays, copy_arrays, pack_exchange, and -unpack_exchange methods. Similarly, the pack_restart and -unpack_restart methods can be implemented to store information about -the fix in restart files. If you wish an integrator or force -constraint fix to work with rRESPA (see the "run_style"_run_style.html -command), the initial_integrate, post_force_integrate, and -final_integrate_respa methods can be implemented. The thermo method -enables a fix to contribute values to thermodynamic output, as printed -quantities and/or to be summed to the potential energy of the system. - -:line - -10.7 Input script commands :link(mod_7),h4 - -New commands can be added to LAMMPS input scripts by adding new -classes that have a "command" method. For example, the create_atoms, -read_data, velocity, and run commands are all implemented in this -fashion. When such a command is encountered in the LAMMPS input -script, LAMMPS simply creates a class with the corresponding name, -invokes the "command" method of the class, and passes it the arguments -from the input script. The command method can perform whatever -operations it wishes on LAMMPS data structures. - -The single method your new class must define is as follows: - -command: operations performed by the new command :tb(s=:) - -Of course, the new class can define other methods and variables as -needed. - -:line - -10.8 Kspace computations :link(mod_8),h4 - -Classes that compute long-range Coulombic interactions via K-space -representations (Ewald, PPPM) are derived from the KSpace class. New -styles can be created to add new K-space options to LAMMPS. - -Ewald.cpp is an example of computing K-space interactions. - -Here is a brief description of methods you define in your new derived -class. See kspace.h for details. - -init: initialize the calculation before a run -setup: computation before the 1st timestep of a run -compute: every-timestep computation -memory_usage: tally of memory usage :tb(s=:) - -:line - -10.9 Minimization styles :link(mod_9),h4 - -Classes that perform energy minimization derived from the Min class. -New styles can be created to add new minimization algorithms to -LAMMPS. - -Min_cg.cpp is an example of conjugate gradient minimization. - -Here is a brief description of methods you define in your new derived -class. See min.h for details. - -init: initialize the minimization before a run -run: perform the minimization -memory_usage: tally of memory usage :tb(s=:) - -:line - -10.10 Pairwise potentials :link(mod_10),h4 - -Classes that compute pairwise interactions are derived from the Pair -class. In LAMMPS, pairwise calculation include manybody potentials -such as EAM or Tersoff where particles interact without a static bond -topology. New styles can be created to add new pair potentials to -LAMMPS. - -Pair_lj_cut.cpp is a simple example of a Pair class, though it -includes some optional methods to enable its use with rRESPA. - -Here is a brief description of the class methods in pair.h: - -compute: workhorse routine that computes pairwise interactions -settings: reads the input script line with arguments you define -coeff: set coefficients for one i,j type pair -init_one: perform initialization for one i,j type pair -init_style: initialization specific to this pair style -write & read_restart: write/read i,j pair coeffs to restart files -write & read_restart_settings: write/read global settings to restart files -single: force and energy of a single pairwise interaction between 2 atoms -compute_inner/middle/outer: versions of compute used by rRESPA :tb(s=:) - -The inner/middle/outer routines are optional. - -:line - -10.11 Region styles :link(mod_11),h4 - -Classes that define geometric regions are derived from the Region -class. Regions are used elsewhere in LAMMPS to group atoms, delete -atoms to create a void, insert atoms in a specified region, etc. New -styles can be created to add new region shapes to LAMMPS. - -Region_sphere.cpp is an example of a spherical region. - -Here is a brief description of methods you define in your new derived -class. See region.h for details. - -inside: determine whether a point is in the region -surface_interior: determine if a point is within a cutoff distance inside of surc -surface_exterior: determine if a point is within a cutoff distance outside of surf -shape_update : change region shape if set by time-dependent variable :tb(s=:) - -:line - -10.12 Body styles :link(mod_12),h4 - -Classes that define body particles are derived from the Body class. -Body particles can represent complex entities, such as surface meshes -of discrete points, collections of sub-particles, deformable objects, -etc. - -See "Section 6.14"_Section_howto.html#howto_14 of the manual for -an overview of using body particles and the "body"_body.html doc page -for details on the various body styles LAMMPS supports. New styles -can be created to add new kinds of body particles to LAMMPS. - -Body_nparticle.cpp is an example of a body particle that is treated as -a rigid body containing N sub-particles. - -Here is a brief description of methods you define in your new derived -class. See body.h for details. - -data_body: process a line from the Bodies section of a data file -noutrow: number of sub-particles output is generated for -noutcol: number of values per-sub-particle output is generated for -output: output values for the Mth sub-particle -pack_comm_body: body attributes to communicate every timestep -unpack_comm_body: unpacking of those attributes -pack_border_body: body attributes to communicate when reneighboring is done -unpack_border_body: unpacking of those attributes :tb(s=:) - -:line - -10.13 Thermodynamic output options :link(mod_13),h4 - -There is one class that computes and prints thermodynamic information -to the screen and log file; see the file thermo.cpp. - -There are two styles defined in thermo.cpp: "one" and "multi". There -is also a flexible "custom" style which allows the user to explicitly -list keywords for quantities to print when thermodynamic info is -output. See the "thermo_style"_thermo_style.html command for a list -of defined quantities. - -The thermo styles (one, multi, etc) are simply lists of keywords. -Adding a new style thus only requires defining a new list of keywords. -Search for the word "customize" with references to "thermo style" in -thermo.cpp to see the two locations where code will need to be added. - -New keywords can also be added to thermo.cpp to compute new quantities -for output. Search for the word "customize" with references to -"keyword" in thermo.cpp to see the several locations where code will -need to be added. - -Note that the "thermo_style custom"_thermo.html command already allows -for thermo output of quantities calculated by "fixes"_fix.html, -"computes"_compute.html, and "variables"_variable.html. Thus, it may -be simpler to compute what you wish via one of those constructs, than -by adding a new keyword to the thermo command. - -:line - -10.14 Variable options :link(mod_14),h4 - -There is one class that computes and stores "variable"_variable.html -information in LAMMPS; see the file variable.cpp. The value -associated with a variable can be periodically printed to the screen -via the "print"_print.html, "fix print"_fix_print.html, or -"thermo_style custom"_thermo_style.html commands. Variables of style -"equal" can compute complex equations that involve the following types -of arguments: - -thermo keywords = ke, vol, atoms, ... -other variables = v_a, v_myvar, ... -math functions = div(x,y), mult(x,y), add(x,y), ... -group functions = mass(group), xcm(group,x), ... -atom values = x\[123\], y\[3\], vx\[34\], ... -compute values = c_mytemp\[0\], c_thermo_press\[3\], ... :pre - -Adding keywords for the "thermo_style custom"_thermo_style.html command -(which can then be accessed by variables) was discussed -"here"_Section_modify.html#mod_13 on this page. - -Adding a new math function of one or two arguments can be done by -editing one section of the Variable::evaluate() method. Search for -the word "customize" to find the appropriate location. - -Adding a new group function can be done by editing one section of the -Variable::evaluate() method. Search for the word "customize" to find -the appropriate location. You may need to add a new method to the -Group class as well (see the group.cpp file). - -Accessing a new atom-based vector can be done by editing one section -of the Variable::evaluate() method. Search for the word "customize" -to find the appropriate location. - -Adding new "compute styles"_compute.html (whose calculated values can -then be accessed by variables) was discussed -"here"_Section_modify.html#mod_3 on this page. - -:line -:line - -10.15 Submitting new features for inclusion in LAMMPS :link(mod_15),h4 - -We encourage users to submit new features or modifications for -LAMMPS to "the core developers"_http://lammps.sandia.gov/authors.html -so they can be added to the LAMMPS distribution. The preferred way to -manage and coordinate this is as of Fall 2016 via the LAMMPS project on -"GitHub"_https://github.com/lammps/lammps. An alternative is to contact -the LAMMPS developers or the indicated developer of a package or feature -directly and send in your contribution via e-mail. - -For any larger modifications or programming project, you are encouraged -to contact the LAMMPS developers ahead of time, in order to discuss -implementation strategies and coding guidelines, that will make it -easier to integrate your contribution and result in less work for -everybody involved. You are also encouraged to search through the list -of "open issues on GitHub"_https://github.com/lammps/lammps/issues and -submit a new issue for a planned feature, so you would not duplicate -the work of others (and possibly get scooped by them) or have your work -duplicated by others. - -How quickly your contribution will be integrated -depends largely on how much effort it will cause to integrate and test -it, how much it requires changes to the core codebase, and of how much -interest it is to the larger LAMMPS community. Please see below for a -checklist of typical requirements. Once you have prepared everything, -see "this tutorial"_tutorial_github.html for instructions on how to -submit your changes or new files through a GitHub pull request. If you -prefer to submit patches or full files, you should first make certain, -that your code works correctly with the latest patch-level version of -LAMMPS and contains all bugfixes from it. Then create a gzipped tar -file of all changed or added files or a corresponding patch file using -'diff -u' or 'diff -c' and compress it with gzip. Please only use -gzip compression, as this works well on all platforms. - -If the new features/files are broadly useful we may add them as core -files to LAMMPS or as part of a "standard -package"_Section_start.html#start_3. Else we will add them as a -user-contributed file or package. Examples of user packages are in -src sub-directories that start with USER. The USER-MISC package is -simply a collection of (mostly) unrelated single files, which is the -simplest way to have your contribution quickly added to the LAMMPS -distribution. You can see a list of the both standard and user -packages by typing "make package" in the LAMMPS src directory. - -Note that by providing us files to release, you are agreeing to make -them open-source, i.e. we can release them under the terms of the GPL, -used as a license for the rest of LAMMPS. See "Section -1.4"_Section_intro.html#intro_4 for details. - -With user packages and files, all we are really providing (aside from -the fame and fortune that accompanies having your name in the source -code and on the "Authors page"_http://lammps.sandia.gov/authors.html -of the "LAMMPS WWW site"_lws), is a means for you to distribute your -work to the LAMMPS user community, and a mechanism for others to -easily try out your new feature. This may help you find bugs or make -contact with new collaborators. Note that you're also implicitly -agreeing to support your code which means answer questions, fix bugs, -and maintain it if LAMMPS changes in some way that breaks it (an -unusual event). - -NOTE: If you prefer to actively develop and support your add-on -feature yourself, then you may wish to make it available for download -from your own website, as a user package that LAMMPS users can add to -their copy of LAMMPS. See the "Offsite LAMMPS packages and -tools"_http://lammps.sandia.gov/offsite.html page of the LAMMPS web -site for examples of groups that do this. We are happy to advertise -your package and web site from that page. Simply email the -"developers"_http://lammps.sandia.gov/authors.html with info about -your package and we will post it there. - -The previous sections of this doc page describe how to add new "style" -files of various kinds to LAMMPS. Packages are simply collections of -one or more new class files which are invoked as a new style within a -LAMMPS input script. If designed correctly, these additions typically -do not require changes to the main core of LAMMPS; they are simply -add-on files. If you think your new feature requires non-trivial -changes in core LAMMPS files, you'll need to "communicate with the -developers"_http://lammps.sandia.gov/authors.html, since we may or may -not want to make those changes. An example of a trivial change is -making a parent-class method "virtual" when you derive a new child -class from it. - -Here is a checklist of steps you need to follow to submit a single file -or user package for our consideration. Following these steps will save -both you and us time. See existing files in packages in the src dir for -examples. If you are uncertain, please ask. - -All source files you provide must compile with the most current -version of LAMMPS with multiple configurations. In particular you -need to test compiling LAMMPS from scratch with -DLAMMPS_BIGBIG -set in addition to the default -DLAMMPS_SMALLBIG setting. Your code -will need to work correctly in serial and in parallel using MPI. :ulb,l - -For consistency with the rest of LAMMPS and especially, if you want -your contribution(s) to be added to main LAMMPS code or one of its -standard packages, it needs to be written in a style compatible with -other LAMMPS source files. This means: 2-character indentation per -level, [no tabs], no lines over 80 characters. I/O is done via -the C-style stdio library, class header files should not import any -system headers outside , STL containers should be avoided -in headers, and forward declarations used where possible or needed. -All added code should be placed into the LAMMPS_NS namespace or a -sub-namespace; global or static variables should be avoided, as they -conflict with the modular nature of LAMMPS and the C++ class structure. -Header files must [not] import namespaces with {using}. -This all is so the developers can more easily understand, integrate, -and maintain your contribution and reduce conflicts with other parts -of LAMMPS. This basically means that the code accesses data -structures, performs its operations, and is formatted similar to other -LAMMPS source files, including the use of the error class for error -and warning messages. :l - -If you want your contribution to be added as a user-contributed -feature, and it's a single file (actually a *.cpp and *.h file) it can -rapidly be added to the USER-MISC directory. Send us the one-line -entry to add to the USER-MISC/README file in that dir, along with the -2 source files. You can do this multiple times if you wish to -contribute several individual features. :l - -If you want your contribution to be added as a user-contribution and -it is several related features, it is probably best to make it a user -package directory with a name like USER-FOO. In addition to your new -files, the directory should contain a README text file. The README -should contain your name and contact information and a brief -description of what your new package does. If your files depend on -other LAMMPS style files also being installed (e.g. because your file -is a derived class from the other LAMMPS class), then an Install.sh -file is also needed to check for those dependencies. See other README -and Install.sh files in other USER directories as examples. Send us a -tarball of this USER-FOO directory. :l - -Your new source files need to have the LAMMPS copyright, GPL notice, -and your name and email address at the top, like other -user-contributed LAMMPS source files. They need to create a class -that is inside the LAMMPS namespace. If the file is for one of the -USER packages, including USER-MISC, then we are not as picky about the -coding style (see above). I.e. the files do not need to be in the -same stylistic format and syntax as other LAMMPS files, though that -would be nice for developers as well as users who try to read your -code. :l - -You [must] also create a [documentation] file for each new command or -style you are adding to LAMMPS. For simplicity and convenience, the -documentation of groups of closely related commands or styles may be -combined into a single file. This will be one file for a single-file -feature. For a package, it might be several files. These are simple -text files with a specific markup language, that are then auto-converted -to HTML and PDF. The tools for this conversion are included in the -source distribution, and the translation can be as simple as doing -"make html pdf" in the doc folder. -Thus the documentation source files must be in the same format and -style as other *.txt files in the lammps/doc/src directory for similar -commands and styles; use one or more of them as a starting point. -A description of the markup can also be found in -lammps/doc/utils/txt2html/README.html -As appropriate, the text files can include links to equations -(see doc/Eqs/*.tex for examples, we auto-create the associated JPG -files), or figures (see doc/JPG for examples), or even additional PDF -files with further details (see doc/PDF for examples). The doc page -should also include literature citations as appropriate; see the -bottom of doc/fix_nh.txt for examples and the earlier part of the same -file for how to format the cite itself. The "Restrictions" section of -the doc page should indicate that your command is only available if -LAMMPS is built with the appropriate USER-MISC or USER-FOO package. -See other user package doc files for examples of how to do this. The -prerequisite for building the HTML format files are Python 3.x and -virtualenv, the requirement for generating the PDF format manual -is the "htmldoc"_http://www.htmldoc.org/ software. Please run at least -"make html" and carefully inspect and proofread the resulting HTML format -doc page before submitting your code. :l - -For a new package (or even a single command) you should include one or -more example scripts demonstrating its use. These should run in no -more than a couple minutes, even on a single processor, and not require -large data files as input. See directories under examples/USER for -examples of input scripts other users provided for their packages. -These example inputs are also required for validating memory accesses -and testing for memory leaks with valgrind :l - -If there is a paper of yours describing your feature (either the -algorithm/science behind the feature itself, or its initial usage, or -its implementation in LAMMPS), you can add the citation to the *.cpp -source file. See src/USER-EFF/atom_vec_electron.cpp for an example. -A LaTeX citation is stored in a variable at the top of the file and a -single line of code that references the variable is added to the -constructor of the class. Whenever a user invokes your feature from -their input script, this will cause LAMMPS to output the citation to a -log.cite file and prompt the user to examine the file. Note that you -should only use this for a paper you or your group authored. -E.g. adding a cite in the code for a paper by Nose and Hoover if you -write a fix that implements their integrator is not the intended -usage. That kind of citation should just be in the doc page you -provide. :l -:ule - -Finally, as a general rule-of-thumb, the more clear and -self-explanatory you make your documentation and README files, and the -easier you make it for people to get started, e.g. by providing example -scripts, the more likely it is that users will try out your new feature. - -:line -:line - -:link(Foo) -[(Foo)] Foo, Morefoo, and Maxfoo, J of Classic Potentials, 75, 345 (1997). diff --git a/doc/src/Section_python.txt b/doc/src/Section_python.txt deleted file mode 100644 index 5427cd67f28d36bb0344012e6f7cfe593f7aca88..0000000000000000000000000000000000000000 --- a/doc/src/Section_python.txt +++ /dev/null @@ -1,867 +0,0 @@ -"Previous Section"_Section_modify.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Section_errors.html :c - -:link(lws,http://lammps.sandia.gov) -:link(ld,Manual.html) -:link(lc,Section_commands.html#comm) - -:line - -11. Python interface to LAMMPS :h2 - -LAMMPS can work together with Python in three ways. First, Python can -wrap LAMMPS through the "LAMMPS library -interface"_Section_howto.html#howto_19, so that a Python script can -create one or more instances of LAMMPS and launch one or more -simulations. In Python lingo, this is "extending" Python with LAMMPS. - -Second, the low-level Python interface can be used indirectly through the -PyLammps and IPyLammps wrapper classes in Python. These wrappers try to -simplify the usage of LAMMPS in Python by providing an object-based interface -to common LAMMPS functionality. It also reduces the amount of code necessary to -parameterize LAMMPS scripts through Python and makes variables and computes -directly accessible. See "PyLammps interface"_#py_9 for more details. - -Third, LAMMPS can use the Python interpreter, so that a LAMMPS input -script can invoke Python code, and pass information back-and-forth -between the input script and Python functions you write. The Python -code can also callback to LAMMPS to query or change its attributes. -In Python lingo, this is "embedding" Python in LAMMPS. - -This section describes how to use these three approaches. - -11.1 "Overview of running LAMMPS from Python"_#py_1 -11.2 "Overview of using Python from a LAMMPS script"_#py_2 -11.3 "Building LAMMPS as a shared library"_#py_3 -11.4 "Installing the Python wrapper into Python"_#py_4 -11.5 "Extending Python with MPI to run in parallel"_#py_5 -11.6 "Testing the Python-LAMMPS interface"_#py_6 -11.7 "Using LAMMPS from Python"_#py_7 -11.8 "Example Python scripts that use LAMMPS"_#py_8 -11.9 "PyLammps interface"_#py_9 :ul - -If you are not familiar with it, "Python"_http://www.python.org is a -powerful scripting and programming language which can essentially do -anything that faster, lower-level languages like C or C++ can do, but -typically with much fewer lines of code. When used in embedded mode, -Python can perform operations that the simplistic LAMMPS input script -syntax cannot. Python can be also be used as a "glue" language to -drive a program through its library interface, or to hook multiple -pieces of software together, such as a simulation package plus a -visualization package, or to run a coupled multiscale or multiphysics -model. - -See "Section 6.10"_Section_howto.html#howto_10 of the manual and -the couple directory of the distribution for more ideas about coupling -LAMMPS to other codes. See "Section -6.19"_Section_howto.html#howto_19 for a description of the LAMMPS -library interface provided in src/library.cpp and src/library.h, and -how to extend it for your needs. As described below, that interface -is what is exposed to Python either when calling LAMMPS from Python or -when calling Python from a LAMMPS input script and then calling back -to LAMMPS from Python code. The library interface is designed to be -easy to add functions to. Thus the Python interface to LAMMPS is also -easy to extend as well. - -If you create interesting Python scripts that run LAMMPS or -interesting Python functions that can be called from a LAMMPS input -script, that you think would be useful to other users, please "email -them to the developers"_http://lammps.sandia.gov/authors.html. We can -include them in the LAMMPS distribution. - -:line -:line - -11.1 Overview of running LAMMPS from Python :link(py_1),h4 - -The LAMMPS distribution includes a python directory with all you need -to run LAMMPS from Python. The python/lammps.py file wraps the LAMMPS -library interface, with one wrapper function per LAMMPS library -function. This file makes it is possible to do the following either -from a Python script, or interactively from a Python prompt: create -one or more instances of LAMMPS, invoke LAMMPS commands or give it an -input script, run LAMMPS incrementally, extract LAMMPS results, an -modify internal LAMMPS variables. From a Python script you can do -this in serial or parallel. Running Python interactively in parallel -does not generally work, unless you have a version of Python that -extends standard Python to enable multiple instances of Python to read -what you type. - -To do all of this, you must first build LAMMPS as a shared library, -then insure that your Python can find the python/lammps.py file and -the shared library. These steps are explained in subsequent sections -11.3 and 11.4. Sections 11.5 and 11.6 discuss using MPI from a -parallel Python program and how to test that you are ready to use -LAMMPS from Python. Section 11.7 lists all the functions in the -current LAMMPS library interface and how to call them from Python. - -Section 11.8 gives some examples of coupling LAMMPS to other tools via -Python. For example, LAMMPS can easily be coupled to a GUI or other -visualization tools that display graphs or animations in real time as -LAMMPS runs. Examples of such scripts are included in the python -directory. - -Two advantages of using Python to run LAMMPS are how concise the -language is, and that it can be run interactively, enabling rapid -development and debugging of programs. If you use it to mostly invoke -costly operations within LAMMPS, such as running a simulation for a -reasonable number of timesteps, then the overhead cost of invoking -LAMMPS thru Python will be negligible. - -The Python wrapper for LAMMPS uses the amazing and magical (to me) -"ctypes" package in Python, which auto-generates the interface code -needed between Python and a set of C interface routines for a library. -Ctypes is part of standard Python for versions 2.5 and later. You can -check which version of Python you have installed, by simply typing -"python" at a shell prompt. - -:line - -11.2 Overview of using Python from a LAMMPS script :link(py_2),h4 - -LAMMPS has several commands which can be used to invoke Python -code directly from an input script: - -"python"_python.html -"variable python"_variable.html -"fix python/invoke"_fix_python_invoke.html -"pair_style python"_pair_python.html :ul - -The "python"_python.html command which can be used to define and -execute a Python function that you write the code for. The Python -function can also be assigned to a LAMMPS python-style variable via -the "variable"_variable.html command. Each time the variable is -evaluated, either in the LAMMPS input script itself, or by another -LAMMPS command that uses the variable, this will trigger the Python -function to be invoked. - -The Python code for the function can be included directly in the input -script or in an auxiliary file. The function can have arguments which -are mapped to LAMMPS variables (also defined in the input script) and -it can return a value to a LAMMPS variable. This is thus a mechanism -for your input script to pass information to a piece of Python code, -ask Python to execute the code, and return information to your input -script. - -Note that a Python function can be arbitrarily complex. It can import -other Python modules, instantiate Python classes, call other Python -functions, etc. The Python code that you provide can contain more -code than the single function. It can contain other functions or -Python classes, as well as global variables or other mechanisms for -storing state between calls from LAMMPS to the function. - -The Python function you provide can consist of "pure" Python code that -only performs operations provided by standard Python. However, the -Python function can also "call back" to LAMMPS through its -Python-wrapped library interface, in the manner described in the -previous section 11.1. This means it can issue LAMMPS input script -commands or query and set internal LAMMPS state. As an example, this -can be useful in an input script to create a more complex loop with -branching logic, than can be created using the simple looping and -branching logic enabled by the "next"_next.html and "if"_if.html -commands. - -See the "python"_python.html doc page and the "variable"_variable.html -doc page for its python-style variables for more info, including -examples of Python code you can write for both pure Python operations -and callbacks to LAMMPS. - -The "fix python/invoke"_fix_python_invoke.html command can execute -Python code at selected timesteps during a simulation run. - -The "pair_style python"_pair_python command allows you to define -pairwise potentials as python code which encodes a single pairwise -interaction. This is useful for rapid-developement and debugging of a -new potential. - -To use any of these commands, you only need to build LAMMPS with the -PYTHON package installed: - -make yes-python -make machine :pre - -Note that this will link LAMMPS with the Python library on your -system, which typically requires several auxiliary system libraries to -also be linked. The list of these libraries and the paths to find -them are specified in the lib/python/Makefile.lammps file. You need -to insure that file contains the correct information for your version -of Python and your machine to successfully build LAMMPS. See the -lib/python/README file for more info. - -If you want to write Python code with callbacks to LAMMPS, then you -must also follow the steps overviewed in the preceding section (11.1) -for running LAMMPS from Python. I.e. you must build LAMMPS as a -shared library and insure that Python can find the python/lammps.py -file and the shared library. - -:line - -11.3 Building LAMMPS as a shared library :link(py_3),h4 - -Instructions on how to build LAMMPS as a shared library are given in -"Section 2.4"_Section_start.html#start_4. A shared library is one -that is dynamically loadable, which is what Python requires to wrap -LAMMPS. On Linux this is a library file that ends in ".so", not ".a". - -From the src directory, type - -make foo mode=shlib :pre - -where foo is the machine target name, such as linux or g++ or serial. -This should create the file liblammps_foo.so in the src directory, as -well as a soft link liblammps.so, which is what the Python wrapper will -load by default. Note that if you are building multiple machine -versions of the shared library, the soft link is always set to the -most recently built version. - -NOTE: If you are building LAMMPS with an MPI or FFT library or other -auxiliary libraries (used by various packages), then all of these -extra libraries must also be shared libraries. If the LAMMPS -shared-library build fails with an error complaining about this, see -"Section 2.4"_Section_start.html#start_4 for more details. - -:line - -11.4 Installing the Python wrapper into Python :link(py_4),h4 - -For Python to invoke LAMMPS, there are 2 files it needs to know about: - -python/lammps.py -src/liblammps.so :ul - -Lammps.py is the Python wrapper on the LAMMPS library interface. -Liblammps.so is the shared LAMMPS library that Python loads, as -described above. - -You can insure Python can find these files in one of two ways: - -set two environment variables -run the python/install.py script :ul - -If you set the paths to these files as environment variables, you only -have to do it once. For the csh or tcsh shells, add something like -this to your ~/.cshrc file, one line for each of the two files: - -setenv PYTHONPATH $\{PYTHONPATH\}:/home/sjplimp/lammps/python -setenv LD_LIBRARY_PATH $\{LD_LIBRARY_PATH\}:/home/sjplimp/lammps/src :pre - -If you use the python/install.py script, you need to invoke it every -time you rebuild LAMMPS (as a shared library) or make changes to the -python/lammps.py file. - -You can invoke install.py from the python directory as - -% python install.py \[libdir\] \[pydir\] :pre - -The optional libdir is where to copy the LAMMPS shared library to; the -default is /usr/local/lib. The optional pydir is where to copy the -lammps.py file to; the default is the site-packages directory of the -version of Python that is running the install script. - -Note that libdir must be a location that is in your default -LD_LIBRARY_PATH, like /usr/local/lib or /usr/lib. And pydir must be a -location that Python looks in by default for imported modules, like -its site-packages dir. If you want to copy these files to -non-standard locations, such as within your own user space, you will -need to set your PYTHONPATH and LD_LIBRARY_PATH environment variables -accordingly, as above. - -If the install.py script does not allow you to copy files into system -directories, prefix the python command with "sudo". If you do this, -make sure that the Python that root runs is the same as the Python you -run. E.g. you may need to do something like - -% sudo /usr/local/bin/python install.py \[libdir\] \[pydir\] :pre - -You can also invoke install.py from the make command in the src -directory as - -% make install-python :pre - -In this mode you cannot append optional arguments. Again, you may -need to prefix this with "sudo". In this mode you cannot control -which Python is invoked by root. - -Note that if you want Python to be able to load different versions of -the LAMMPS shared library (see "this section"_#py_5 below), you will -need to manually copy files like liblammps_g++.so into the appropriate -system directory. This is not needed if you set the LD_LIBRARY_PATH -environment variable as described above. - -:line - -11.5 Extending Python with MPI to run in parallel :link(py_5),h4 - -If you wish to run LAMMPS in parallel from Python, you need to extend -your Python with an interface to MPI. This also allows you to -make MPI calls directly from Python in your script, if you desire. - -There are several Python packages available that purport to wrap MPI -as a library and allow MPI functions to be called from Python. However, -development on most of them seems to be halted except on: - -"mpi4py"_https://bitbucket.org/mpi4py/mpi4py -"PyPar"_https://github.com/daleroberts/pypar :ul - -Both packages, PyPar and mpi4py have been successfully tested with -LAMMPS. PyPar is simpler and easy to set up and use, but supports -only a subset of MPI. Mpi4py is more MPI-feature complete, but also a -bit more complex to use. As of version 2.0.0, mpi4py is the only -python MPI wrapper that allows passing a custom MPI communicator to -the LAMMPS constructor, which means one can easily run one or more -LAMMPS instances on subsets of the total MPI ranks. - -:line - -PyPar requires the ubiquitous "Numpy package"_http://numpy.scipy.org -be installed in your Python. After launching Python, type - -import numpy :pre - -to see if it is installed. If not, here is how to install it (version -1.3.0b1 as of April 2009). Unpack the numpy tarball and from its -top-level directory, type - -python setup.py build -sudo python setup.py install :pre - -The "sudo" is only needed if required to copy Numpy files into your -Python distribution's site-packages directory. - -To install PyPar (version pypar-2.1.4_94 as of Aug 2012), unpack it -and from its "source" directory, type - -python setup.py build -sudo python setup.py install :pre - -Again, the "sudo" is only needed if required to copy PyPar files into -your Python distribution's site-packages directory. - -If you have successfully installed PyPar, you should be able to run -Python and type - -import pypar :pre - -without error. You should also be able to run python in parallel -on a simple test script - -% mpirun -np 4 python test.py :pre - -where test.py contains the lines - -import pypar -print "Proc %d out of %d procs" % (pypar.rank(),pypar.size()) :pre - -and see one line of output for each processor you run on. - -NOTE: To use PyPar and LAMMPS in parallel from Python, you must insure -both are using the same version of MPI. If you only have one MPI -installed on your system, this is not an issue, but it can be if you -have multiple MPIs. Your LAMMPS build is explicit about which MPI it -is using, since you specify the details in your lo-level -src/MAKE/Makefile.foo file. PyPar uses the "mpicc" command to find -information about the MPI it uses to build against. And it tries to -load "libmpi.so" from the LD_LIBRARY_PATH. This may or may not find -the MPI library that LAMMPS is using. If you have problems running -both PyPar and LAMMPS together, this is an issue you may need to -address, e.g. by moving other MPI installations so that PyPar finds -the right one. - -:line - -To install mpi4py (version mpi4py-2.0.0 as of Oct 2015), unpack it -and from its main directory, type - -python setup.py build -sudo python setup.py install :pre - -Again, the "sudo" is only needed if required to copy mpi4py files into -your Python distribution's site-packages directory. To install with -user privilege into the user local directory type - -python setup.py install --user :pre - -If you have successfully installed mpi4py, you should be able to run -Python and type - -from mpi4py import MPI :pre - -without error. You should also be able to run python in parallel -on a simple test script - -% mpirun -np 4 python test.py :pre - -where test.py contains the lines - -from mpi4py import MPI -comm = MPI.COMM_WORLD -print "Proc %d out of %d procs" % (comm.Get_rank(),comm.Get_size()) :pre - -and see one line of output for each processor you run on. - -NOTE: To use mpi4py and LAMMPS in parallel from Python, you must -insure both are using the same version of MPI. If you only have one -MPI installed on your system, this is not an issue, but it can be if -you have multiple MPIs. Your LAMMPS build is explicit about which MPI -it is using, since you specify the details in your lo-level -src/MAKE/Makefile.foo file. Mpi4py uses the "mpicc" command to find -information about the MPI it uses to build against. And it tries to -load "libmpi.so" from the LD_LIBRARY_PATH. This may or may not find -the MPI library that LAMMPS is using. If you have problems running -both mpi4py and LAMMPS together, this is an issue you may need to -address, e.g. by moving other MPI installations so that mpi4py finds -the right one. - -:line - -11.6 Testing the Python-LAMMPS interface :link(py_6),h4 - -To test if LAMMPS is callable from Python, launch Python interactively -and type: - ->>> from lammps import lammps ->>> lmp = lammps() :pre - -If you get no errors, you're ready to use LAMMPS from Python. If the -2nd command fails, the most common error to see is - -OSError: Could not load LAMMPS dynamic library :pre - -which means Python was unable to load the LAMMPS shared library. This -typically occurs if the system can't find the LAMMPS shared library or -one of the auxiliary shared libraries it depends on, or if something -about the library is incompatible with your Python. The error message -should give you an indication of what went wrong. - -You can also test the load directly in Python as follows, without -first importing from the lammps.py file: - ->>> from ctypes import CDLL ->>> CDLL("liblammps.so") :pre - -If an error occurs, carefully go thru the steps in "Section -2.4"_Section_start.html#start_4 and above about building a shared -library and about insuring Python can find the necessary two files -it needs. - -[Test LAMMPS and Python in serial:] :h4 - -To run a LAMMPS test in serial, type these lines into Python -interactively from the bench directory: - ->>> from lammps import lammps ->>> lmp = lammps() ->>> lmp.file("in.lj") :pre - -Or put the same lines in the file test.py and run it as - -% python test.py :pre - -Either way, you should see the results of running the in.lj benchmark -on a single processor appear on the screen, the same as if you had -typed something like: - -lmp_g++ -in in.lj :pre - -[Test LAMMPS and Python in parallel:] :h4 - -To run LAMMPS in parallel, assuming you have installed the -"PyPar"_https://github.com/daleroberts/pypar package as discussed -above, create a test.py file containing these lines: - -import pypar -from lammps import lammps -lmp = lammps() -lmp.file("in.lj") -print "Proc %d out of %d procs has" % (pypar.rank(),pypar.size()),lmp -pypar.finalize() :pre - -To run LAMMPS in parallel, assuming you have installed the -"mpi4py"_https://bitbucket.org/mpi4py/mpi4py package as discussed -above, create a test.py file containing these lines: - -from mpi4py import MPI -from lammps import lammps -lmp = lammps() -lmp.file("in.lj") -me = MPI.COMM_WORLD.Get_rank() -nprocs = MPI.COMM_WORLD.Get_size() -print "Proc %d out of %d procs has" % (me,nprocs),lmp -MPI.Finalize() :pre - -You can either script in parallel as: - -% mpirun -np 4 python test.py :pre - -and you should see the same output as if you had typed - -% mpirun -np 4 lmp_g++ -in in.lj :pre - -Note that if you leave out the 3 lines from test.py that specify PyPar -commands you will instantiate and run LAMMPS independently on each of -the P processors specified in the mpirun command. In this case you -should get 4 sets of output, each showing that a LAMMPS run was made -on a single processor, instead of one set of output showing that -LAMMPS ran on 4 processors. If the 1-processor outputs occur, it -means that PyPar is not working correctly. - -Also note that once you import the PyPar module, PyPar initializes MPI -for you, and you can use MPI calls directly in your Python script, as -described in the PyPar documentation. The last line of your Python -script should be pypar.finalize(), to insure MPI is shut down -correctly. - -[Running Python scripts:] :h4 - -Note that any Python script (not just for LAMMPS) can be invoked in -one of several ways: - -% python foo.script -% python -i foo.script -% foo.script :pre - -The last command requires that the first line of the script be -something like this: - -#!/usr/local/bin/python -#!/usr/local/bin/python -i :pre - -where the path points to where you have Python installed, and that you -have made the script file executable: - -% chmod +x foo.script :pre - -Without the "-i" flag, Python will exit when the script finishes. -With the "-i" flag, you will be left in the Python interpreter when -the script finishes, so you can type subsequent commands. As -mentioned above, you can only run Python interactively when running -Python on a single processor, not in parallel. - -:line -:line - -11.7 Using LAMMPS from Python :link(py_7),h4 - -As described above, the Python interface to LAMMPS consists of a -Python "lammps" module, the source code for which is in -python/lammps.py, which creates a "lammps" object, with a set of -methods that can be invoked on that object. The sample Python code -below assumes you have first imported the "lammps" module in your -Python script, as follows: - -from lammps import lammps :pre - -These are the methods defined by the lammps module. If you look at -the files src/library.cpp and src/library.h you will see they -correspond one-to-one with calls you can make to the LAMMPS library -from a C++ or C or Fortran program, and which are described in -"Section 6.19"_Section_howto.html#howto_19 of the manual. - -The python/examples directory has Python scripts which show how Python -can run LAMMPS, grab data, change it, and put it back into LAMMPS. - -lmp = lammps() # create a LAMMPS object using the default liblammps.so library - # 4 optional args are allowed: name, cmdargs, ptr, comm -lmp = lammps(ptr=lmpptr) # use lmpptr as previously created LAMMPS object -lmp = lammps(comm=split) # create a LAMMPS object with a custom communicator, requires mpi4py 2.0.0 or later -lmp = lammps(name="g++") # create a LAMMPS object using the liblammps_g++.so library -lmp = lammps(name="g++",cmdargs=list) # add LAMMPS command-line args, e.g. list = \["-echo","screen"\] :pre - -lmp.close() # destroy a LAMMPS object :pre - -version = lmp.version() # return the numerical version id, e.g. LAMMPS 2 Sep 2015 -> 20150902 :pre - -lmp.file(file) # run an entire input script, file = "in.lj" -lmp.command(cmd) # invoke a single LAMMPS command, cmd = "run 100" -lmp.commands_list(cmdlist) # invoke commands in cmdlist = ["run 10", "run 20"] -lmp.commands_string(multicmd) # invoke commands in multicmd = "run 10\nrun 20" :pre - -size = lmp.extract_setting(name) # return data type info :pre - -xlo = lmp.extract_global(name,type) # extract a global quantity - # name = "boxxlo", "nlocal", etc - # type = 0 = int - # 1 = double :pre - -boxlo,boxhi,xy,yz,xz,periodicity,box_change = lmp.extract_box() # extract box info :pre - -coords = lmp.extract_atom(name,type) # extract a per-atom quantity - # name = "x", "type", etc - # type = 0 = vector of ints - # 1 = array of ints - # 2 = vector of doubles - # 3 = array of doubles :pre - -eng = lmp.extract_compute(id,style,type) # extract value(s) from a compute -v3 = lmp.extract_fix(id,style,type,i,j) # extract value(s) from a fix - # id = ID of compute or fix - # style = 0 = global data - # 1 = per-atom data - # 2 = local data - # type = 0 = scalar - # 1 = vector - # 2 = array - # i,j = indices of value in global vector or array :pre - -var = lmp.extract_variable(name,group,flag) # extract value(s) from a variable - # name = name of variable - # group = group ID (ignored for equal-style variables) - # flag = 0 = equal-style variable - # 1 = atom-style variable :pre - -value = lmp.get_thermo(name) # return current value of a thermo keyword -natoms = lmp.get_natoms() # total # of atoms as int :pre - -flag = lmp.set_variable(name,value) # set existing named string-style variable to value, flag = 0 if successful -lmp.reset_box(boxlo,boxhi,xy,yz,xz) # reset the simulation box size :pre - -data = lmp.gather_atoms(name,type,count) # return per-atom property of all atoms gathered into data, ordered by atom ID - # name = "x", "charge", "type", etc -data = lmp.gather_atoms_concat(name,type,count) # ditto, but concatenated atom values from each proc (unordered) -data = lmp.gather_atoms_subset(name,type,count,ndata,ids) # ditto, but for subset of Ndata atoms with IDs :pre - -lmp.scatter_atoms(name,type,count,data) # scatter per-atom property to all atoms from data, ordered by atom ID - # name = "x", "charge", "type", etc - # count = # of per-atom values, 1 or 3, etc :pre -lmp.scatter_atoms_subset(name,type,count,ndata,ids,data) # ditto, but for subset of Ndata atoms with IDs :pre - -lmp.create_atoms(n,ids,types,x,v,image,shrinkexceed) # create N atoms with IDs, types, x, v, and image flags :pre - -:line - -The lines - -from lammps import lammps -lmp = lammps() :pre - -create an instance of LAMMPS, wrapped in a Python class by the lammps -Python module, and return an instance of the Python class as lmp. It -is used to make all subsequent calls to the LAMMPS library. - -Additional arguments to lammps() can be used to tell Python the name -of the shared library to load or to pass arguments to the LAMMPS -instance, the same as if LAMMPS were launched from a command-line -prompt. - -If the ptr argument is set like this: - -lmp = lammps(ptr=lmpptr) :pre - -then lmpptr must be an argument passed to Python via the LAMMPS -"python"_python.html command, when it is used to define a Python -function that is invoked by the LAMMPS input script. This mode of -using Python with LAMMPS is described above in 11.2. The variable -lmpptr refers to the instance of LAMMPS that called the embedded -Python interpreter. Using it as an argument to lammps() allows the -returned Python class instance "lmp" to make calls to that instance of -LAMMPS. See the "python"_python.html command doc page for examples -using this syntax. - -Note that you can create multiple LAMMPS objects in your Python -script, and coordinate and run multiple simulations, e.g. - -from lammps import lammps -lmp1 = lammps() -lmp2 = lammps() -lmp1.file("in.file1") -lmp2.file("in.file2") :pre - -The file(), command(), commands_list(), commands_string() methods -allow an input script, a single command, or multiple commands to be -invoked. - -The extract_setting(), extract_global(), extract_box(), -extract_atom(), extract_compute(), extract_fix(), and -extract_variable() methods return values or pointers to data -structures internal to LAMMPS. - -For extract_global() see the src/library.cpp file for the list of -valid names. New names could easily be added. A double or integer is -returned. You need to specify the appropriate data type via the type -argument. - -For extract_atom(), a pointer to internal LAMMPS atom-based data is -returned, which you can use via normal Python subscripting. See the -extract() method in the src/atom.cpp file for a list of valid names. -Again, new names could easily be added if the property you want is not -listed. A pointer to a vector of doubles or integers, or a pointer to -an array of doubles (double **) or integers (int **) is returned. You -need to specify the appropriate data type via the type argument. - -For extract_compute() and extract_fix(), the global, per-atom, or -local data calculated by the compute or fix can be accessed. What is -returned depends on whether the compute or fix calculates a scalar or -vector or array. For a scalar, a single double value is returned. If -the compute or fix calculates a vector or array, a pointer to the -internal LAMMPS data is returned, which you can use via normal Python -subscripting. The one exception is that for a fix that calculates a -global vector or array, a single double value from the vector or array -is returned, indexed by I (vector) or I and J (array). I,J are -zero-based indices. The I,J arguments can be left out if not needed. -See "Section 6.15"_Section_howto.html#howto_15 of the manual for a -discussion of global, per-atom, and local data, and of scalar, vector, -and array data types. See the doc pages for individual -"computes"_compute.html and "fixes"_fix.html for a description of what -they calculate and store. - -For extract_variable(), an "equal-style or atom-style -variable"_variable.html is evaluated and its result returned. - -For equal-style variables a single double value is returned and the -group argument is ignored. For atom-style variables, a vector of -doubles is returned, one value per atom, which you can use via normal -Python subscripting. The values will be zero for atoms not in the -specified group. - -The get_thermo() method returns returns the current value of a thermo -keyword as a float. - -The get_natoms() method returns the total number of atoms in the -simulation, as an int. - -The set_variable() methosd sets an existing string-style variable to a -new string value, so that subsequent LAMMPS commands can access the -variable. - -The reset_box() emthods resets the size and shape of the simulation -box, e.g. as part of restoring a previously extracted and saved state -of a simulation. - -The gather methods collect peratom info of the requested type (atom -coords, atom types, forces, etc) from all processors, and returns the -same vector of values to each callling processor. The scatter -functions do the inverse. They distribute a vector of peratom values, -passed by all calling processors, to invididual atoms, which may be -owned by different processos. - -Note that the data returned by the gather methods, -e.g. gather_atoms("x"), is different from the data structure returned -by extract_atom("x") in four ways. (1) Gather_atoms() returns a -vector which you index as x\[i\]; extract_atom() returns an array -which you index as x\[i\]\[j\]. (2) Gather_atoms() orders the atoms -by atom ID while extract_atom() does not. (3) Gather_atoms() returns -a list of all atoms in the simulation; extract_atoms() returns just -the atoms local to each processor. (4) Finally, the gather_atoms() -data structure is a copy of the atom coords stored internally in -LAMMPS, whereas extract_atom() returns an array that effectively -points directly to the internal data. This means you can change -values inside LAMMPS from Python by assigning a new values to the -extract_atom() array. To do this with the gather_atoms() vector, you -need to change values in the vector, then invoke the scatter_atoms() -method. - -For the scatter methods, the array of coordinates passed to must be a -ctypes vector of ints or doubles, allocated and initialized something -like this: - -from ctypes import * -natoms = lmp.get_natoms() -n3 = 3*natoms -x = (n3*c_double)() -x\[0\] = x coord of atom with ID 1 -x\[1\] = y coord of atom with ID 1 -x\[2\] = z coord of atom with ID 1 -x\[3\] = x coord of atom with ID 2 -... -x\[n3-1\] = z coord of atom with ID natoms -lmp.scatter_atoms("x",1,3,x) :pre - -Alternatively, you can just change values in the vector returned by -the gather methods, since they are also ctypes vectors. - -:line - -As noted above, these Python class methods correspond one-to-one with -the functions in the LAMMPS library interface in src/library.cpp and -library.h. This means you can extend the Python wrapper via the -following steps: - -Add a new interface function to src/library.cpp and -src/library.h. :ulb,l - -Rebuild LAMMPS as a shared library. :l - -Add a wrapper method to python/lammps.py for this interface -function. :l - -You should now be able to invoke the new interface function from a -Python script. Isn't ctypes amazing? :l -:ule - -:line -:line - -11.8 Example Python scripts that use LAMMPS :link(py_8),h4 - -These are the Python scripts included as demos in the python/examples -directory of the LAMMPS distribution, to illustrate the kinds of -things that are possible when Python wraps LAMMPS. If you create your -own scripts, send them to us and we can include them in the LAMMPS -distribution. - -trivial.py, read/run a LAMMPS input script thru Python, -demo.py, invoke various LAMMPS library interface routines, -simple.py, run in parallel, similar to examples/COUPLE/simple/simple.cpp, -split.py, same as simple.py but running in parallel on a subset of procs, -gui.py, GUI go/stop/temperature-slider to control LAMMPS, -plot.py, real-time temperature plot with GnuPlot via Pizza.py, -viz_tool.py, real-time viz via some viz package, -vizplotgui_tool.py, combination of viz_tool.py and plot.py and gui.py :tb(c=2) - -:line - -For the viz_tool.py and vizplotgui_tool.py commands, replace "tool" -with "gl" or "atomeye" or "pymol" or "vmd", depending on what -visualization package you have installed. - -Note that for GL, you need to be able to run the Pizza.py GL tool, -which is included in the pizza sub-directory. See the "Pizza.py doc -pages"_pizza for more info: - -:link(pizza,http://www.sandia.gov/~sjplimp/pizza.html) - -Note that for AtomEye, you need version 3, and there is a line in the -scripts that specifies the path and name of the executable. See the -AtomEye WWW pages "here"_atomeye or "here"_atomeye3 for more details: - -http://mt.seas.upenn.edu/Archive/Graphics/A -http://mt.seas.upenn.edu/Archive/Graphics/A3/A3.html :pre - -:link(atomeye,http://mt.seas.upenn.edu/Archive/Graphics/A) -:link(atomeye3,http://mt.seas.upenn.edu/Archive/Graphics/A3/A3.html) - -The latter link is to AtomEye 3 which has the scriping -capability needed by these Python scripts. - -Note that for PyMol, you need to have built and installed the -open-source version of PyMol in your Python, so that you can import it -from a Python script. See the PyMol WWW pages "here"_pymolhome or -"here"_pymolopen for more details: - -http://www.pymol.org -http://sourceforge.net/scm/?type=svn&group_id=4546 :pre - -:link(pymolhome,http://www.pymol.org) -:link(pymolopen,http://sourceforge.net/scm/?type=svn&group_id=4546) - -The latter link is to the open-source version. - -Note that for VMD, you need a fairly current version (1.8.7 works for -me) and there are some lines in the pizza/vmd.py script for 4 PIZZA -variables that have to match the VMD installation on your system. - -:line - -See the python/README file for instructions on how to run them and the -source code for individual scripts for comments about what they do. - -Here are screenshots of the vizplotgui_tool.py script in action for -different visualization package options. Click to see larger images: - -:image(JPG/screenshot_gl_small.jpg,JPG/screenshot_gl.jpg) -:image(JPG/screenshot_atomeye_small.jpg,JPG/screenshot_atomeye.jpg) -:image(JPG/screenshot_pymol_small.jpg,JPG/screenshot_pymol.jpg) -:image(JPG/screenshot_vmd_small.jpg,JPG/screenshot_vmd.jpg) - -11.9 PyLammps interface :link(py_9),h4 - -Please see the "PyLammps Tutorial"_tutorial_pylammps.html. diff --git a/doc/src/Section_start.txt b/doc/src/Section_start.txt index 7d456171dc5f26a3362b2bbdbb6fe8634a245802..cd445b3e14fcfc5638b711ed30c4f3c8c0493329 100644 --- a/doc/src/Section_start.txt +++ b/doc/src/Section_start.txt @@ -1,4 +1,6 @@ -"Previous Section"_Section_intro.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Section_commands.html :c +"Previous Section"_Section_intro.html - "LAMMPS WWW Site"_lws - +"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Section_commands.html :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -117,10 +119,11 @@ lower-case name of the package, e.g. replica or user-misc. If you want to do one of the following: -use a LAMMPS command that requires an extra library (e.g. "dump image"_dump_image.html) -build with a package that requires an extra library -build with an accelerator package that requires special compiler/linker settings -run on a machine that has its own compilers, settings, or libraries :ul +use a LAMMPS command that requires an extra library (e.g. "dump +image"_dump_image.html) build with a package that requires an extra +library build with an accelerator package that requires special +compiler/linker settings run on a machine that has its own compilers, +settings, or libraries :ul then building LAMMPS is more complicated. You may need to find where extra libraries exist on your machine or install them if they don't. @@ -695,8 +698,8 @@ are always included, plus optional packages. Packages are groups of files that enable a specific set of features. For example, force fields for molecular systems or granular systems are in packages. -"Section 4"_Section_packages.html in the manual has details about all -the packages, which come in two flavors: [standard] and [user] +The "Packages"_Packages.html doc pages has details about all the +packages, which come in two flavors: [standard] and [user] packages. It also has specific instructions for building LAMMPS with any package which requires an extra library. General instructions are below. @@ -826,45 +829,47 @@ options. Packages that require extra libraries :h4,link(start_3_3) A few of the standard and user packages require extra libraries. See -"Section 4"_Section_packages.html for two tables of packages which -indicate which ones require libraries. For each such package, the -Section 4 doc page gives details on how to build the extra library, -including how to download it if necessary. The basic ideas are -summarized here. +the "Packages"_Packages.html doc pages for two tables of packages +which indicate which ones require libraries. For each such package, +the Section 4 doc page gives details on how to build the extra +library, including how to download it if necessary. The basic ideas +are summarized here. [System libraries:] -Packages in the tables "Section 4"_Section_packages.html with a "sys" -in the last column link to system libraries that typically already -exist on your machine. E.g. the python package links to a system -Python library. If your machine does not have the required library, -you will have to download and install it on your machine, in either -the system or user space. +Packages in the standard and user tables of the +"Packages"_Packages.html doc pages with a "sys" in the last column +link to system libraries that typically already exist on your machine. +E.g. the python package links to a system Python library. If your +machine does not have the required library, you will have to download +and install it on your machine, in either the system or user space. [Internal libraries:] -Packages in the tables "Section 4"_Section_packages.html with an "int" -in the last column link to internal libraries whose source code is -included with LAMMPS, in the lib/name directory where name is the -package name. You must first build the library in that directory -before building LAMMPS with that package installed. E.g. the gpu -package links to a library you build in the lib/gpu dir. You can -often do the build in one step by typing "make lib-name args=..." -from the src dir, with appropriate arguments. You can leave off the -args to see a help message. See "Section 4"_Section_packages.html for -details for each package. +Packages in the standard and user tables of the +"Packages"_Packages.html doc pages with an "int" in the last column +link to internal libraries whose source code is included with LAMMPS, +in the lib/name directory where name is the package name. You must +first build the library in that directory before building LAMMPS with +that package installed. E.g. the gpu package links to a library you +build in the lib/gpu dir. You can often do the build in one step by +typing "make lib-name args=..." from the src dir, with appropriate +arguments. You can leave off the args to see a help message. See the +"Packages details"_Packages_details.html doc page for details for each +package. [External libraries:] -Packages in the tables "Section 4"_Section_packages.html with an "ext" -in the last column link to external libraries whose source code is not -included with LAMMPS. You must first download and install the library -before building LAMMPS with that package installed. E.g. the voronoi -package links to the freely available "Voro++ library"_voro_home2. You -can often do the download/build in one step by typing "make lib-name +Packages in the standard and user tables of the +"Packages"_Packages.html doc pages with an "ext" in the last column +link to external libraries whose source code is not included with +LAMMPS. You must first download and install the library before +building LAMMPS with that package installed. E.g. the voronoi package +links to the freely available "Voro++ library"_voro_home2. You can +often do the download/build in one step by typing "make lib-name args=..." from the src dir, with appropriate arguments. You can leave -off the args to see a help message. See "Section -4"_Section_packages.html for details for each package. +off the args to see a help message. See the "Packages +details"_Packages_details.html doc page for details for each package. :link(voro_home2,http://math.lbl.gov/voro++) @@ -886,9 +891,9 @@ copied from a lib/name/Makefile.lammps.* file when the library is built. If those settings are not correct for your machine you will need to edit or create an appropriate Makefile.lammps file. -Package-specific details for these steps are given in "Section -4"_Section_packages.html an in README files in the lib/name -directories. +Package-specific details for these steps are given on the "Packages +details"_Packages_details.html doc page and in README files in the +lib/name directories. [Compiler options needed for accelerator packages:] @@ -899,14 +904,14 @@ these accelerator packages for optimal performance requires specific settings in the Makefile.machine file you use. A summary of the Makefile.machine settings needed for each of these -packages is given in "Section 4"_Section_packages.html. More info is -given on the doc pages that describe each package in detail: +packages is given on the "Packages"_Packages.html doc pages. More +info is given on the doc pages that describe each package in detail: -5.3.1 "USER-INTEL package"_accelerate_intel.html -5.3.2 "GPU package"_accelerate_intel.html -5.3.3 "KOKKOS package"_accelerate_kokkos.html -5.3.4 "USER-OMP package"_accelerate_omp.html -5.3.5 "OPT package"_accelerate_opt.html :all(b) +"USER-INTEL package"_Speed_intel.html +"GPU package"_Speed_gpu.html +"KOKKOS package"_Speed_kokkos.html +"USER-OMP package"_Speed_omp.html +"OPT package"_Speed_opt.html :all(b) You can also use or examine the following machine Makefiles in src/MAKE/OPTIONS, which include the settings. Note that the @@ -930,8 +935,8 @@ Makefile.opt :ul LAMMPS can be built as either a static or shared library, which can then be called from another application or a scripting language. See "this section"_Section_howto.html#howto_10 for more info on coupling -LAMMPS to other codes. See "this section"_Section_python.html for -more info on wrapping and running LAMMPS from Python. +LAMMPS to other codes. See the "Python"_Python.html doc page for more +info on wrapping and running LAMMPS from Python. Static library :h4 @@ -955,15 +960,15 @@ dynamically loaded, e.g. from Python, type make foo mode=shlib :pre where foo is the machine name. This kind of library is required when -wrapping LAMMPS with Python; see "Section 11"_Section_python.html -for details. This will use the SHFLAGS and SHLIBFLAGS settings in +wrapping LAMMPS with Python; see the "Python"_Python.html doc page for +details. This will use the SHFLAGS and SHLIBFLAGS settings in src/MAKE/Makefile.foo and perform the build in the directory Obj_shared_foo. This is so that each file can be compiled with the -fPIC flag which is required for inclusion in a shared library. The build will create the file liblammps_foo.so which another application -can link to dynamically. It will also create a soft link liblammps.so, -which will point to the most recently built shared library. This is -the file the Python wrapper loads by default. +can link to dynamically. It will also create a soft link +liblammps.so, which will point to the most recently built shared +library. This is the file the Python wrapper loads by default. Note that for a shared library to be usable by a calling program, all the auxiliary libraries it depends on must also exist as shared @@ -1035,10 +1040,10 @@ src/library.cpp and src/library.h. See the sample codes in examples/COUPLE/simple for examples of C++ and C and Fortran codes that invoke LAMMPS thru its library interface. There are other examples as well in the COUPLE directory which are -discussed in "Section 6.10"_Section_howto.html#howto_10 of the -manual. See "Section 11"_Section_python.html of the manual for a -description of the Python wrapper provided with LAMMPS that operates -through the LAMMPS library interface. +discussed in "Section 6.10"_Section_howto.html#howto_10 of the manual. +See the "Python"_Python.html doc page for a description of the Python +wrapper provided with LAMMPS that operates through the LAMMPS library +interface. The files src/library.cpp and library.h define the C-style API for using LAMMPS as a library. See "Section @@ -1177,7 +1182,7 @@ than your working directory, which is probably not what you want. If LAMMPS encounters errors in the input script or while running a simulation it will print an ERROR message and stop or a WARNING -message and continue. See "Section 12"_Section_errors.html for a +message and continue. See the "Errors"_Errors.html doc page for a discussion of the various kinds of errors LAMMPS can or can't detect, a list of all ERROR and WARNING messages, and what to do about them. @@ -1274,8 +1279,8 @@ Either the full word or an abbreviation can be used for the keywords. Note that the keywords do not use a leading minus sign. I.e. the keyword is "t", not "-t". Also note that each of the keywords has a default setting. Example of when to use these options and what -settings to use on different platforms is given in "Section -5.3"_Section_accelerate.html#acc_3. +settings to use on different platforms is given on the "Speed +kokkos"_Speed_kokkos.html doc page. d or device g or gpus @@ -1459,8 +1464,7 @@ cores within each node are ranked in a desired order. Or when using the "run_style verlet/split"_run_style.html command with 2 partitions to insure that a specific Kspace processor (in the 2nd partition) is matched up with a specific set of processors in the 1st partition. -See the "Section 5"_Section_accelerate.html doc pages for -more details. +See the "Speed tips"_Speed_tips.html doc page for more details. If the keyword {nth} is used with a setting {N}, then it means every Nth processor will be moved to the end of the ranking. This is useful diff --git a/doc/src/Speed.txt b/doc/src/Speed.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e2097ab1d9b99accb71f6bb3d7cd600f1d6e1c9 --- /dev/null +++ b/doc/src/Speed.txt @@ -0,0 +1,64 @@ +"Previous Section"_Package.html - "LAMMPS WWW Site"_lws - +"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next +Section"_Section_howto.html :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Accelerate performance :h2 + +This section describes various methods for improving LAMMPS +performance for different classes of problems running on different +kinds of machines. + +There are two thrusts to the discussion that follows. The first is +using code options that implement alternate algorithms that can +speed-up a simulation. The second is to use one of the several +accelerator packages provided with LAMMPS that contain code optimized +for certain kinds of hardware, including multi-core CPUs, GPUs, and +Intel Xeon Phi coprocessors. + +The "Benchmark page"_http://lammps.sandia.gov/bench.html of the LAMMPS +web site gives performance results for the various accelerator +packages discussed on the "Speed packages"_Speed_packages.html doc +page, for several of the standard LAMMPS benchmark problems, as a +function of problem size and number of compute nodes, on different +hardware platforms. + + + + + +"Benchmarks"_Speed_bench.html +"Measuring performance"_Speed_measure.html :all(b) + +"General tips"_Speed_tips.html :all(b) + +"Accelerator packages"_Speed_packages.html +"GPU package"_Speed_gpu.html +"USER-INTEL package"_Speed_intel.html +"KOKKOS package"_Speed_kokkos.html +"USER-OMP package"_Speed_omp.html +"OPT package"_Speed_opt.html +"Comparison of accelerator packages"_Speed_compare.html :all(b) + + diff --git a/doc/src/Section_perf.txt b/doc/src/Speed_bench.txt similarity index 86% rename from doc/src/Section_perf.txt rename to doc/src/Speed_bench.txt index 9998cb0d9a1371fdcca7c6e927c49925bb6f81d2..dc76588c11699822e11030b9db676683492794dd 100644 --- a/doc/src/Section_perf.txt +++ b/doc/src/Speed_bench.txt @@ -1,4 +1,5 @@ -"Previous Section"_Section_example.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next Section"_Section_tools.html :c +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -6,12 +7,12 @@ :line -8. Performance & scalability :h2 +Benchmarks :h3 -Current LAMMPS performance is discussed on the Benchmarks page of the -"LAMMPS WWW Site"_lws where CPU timings and parallel efficiencies are -listed. The page has several sections, which are briefly described -below: +Current LAMMPS performance is discussed on the "Benchmarks +page"_http://lammps.sandia.gov/bench.html of the "LAMMPS website"_lws +where timings and parallel efficiencies are listed. The page has +several sections, which are briefly described below: CPU performance on 5 standard problems, strong and weak scaling GPU and Xeon Phi performance on same and related problems @@ -51,8 +52,8 @@ of these 5 problems on 1 or 4 cores of Linux desktop. The bench/FERMI and bench/KEPLER dirs have input files and scripts and instructions for running the same (or similar) problems using OpenMP or GPU or Xeon Phi acceleration options. See the README files in those dirs and the -"Section 5.3"_Section_accelerate.html#acc_3 doc pages for -instructions on how to build LAMMPS and run on that kind of hardware. +"Speed packages"_Speed_packages.html doc pages for instructions on how +to build LAMMPS and run on that kind of hardware. The bench/POTENTIALS directory has input files which correspond to the table of results on the diff --git a/doc/src/Speed_compare.txt b/doc/src/Speed_compare.txt new file mode 100644 index 0000000000000000000000000000000000000000..6c947b9662dca8be601ce897c2d1a149a812bbe0 --- /dev/null +++ b/doc/src/Speed_compare.txt @@ -0,0 +1,73 @@ +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Comparison of various accelerator packages :h3 + +NOTE: this section still needs to be re-worked with additional KOKKOS +and USER-INTEL information. + +The next section compares and contrasts the various accelerator +options, since there are multiple ways to perform OpenMP threading, +run on GPUs, and run on Intel Xeon Phi coprocessors. + +All 3 of these packages accelerate a LAMMPS calculation using NVIDIA +hardware, but they do it in different ways. + +As a consequence, for a particular simulation on specific hardware, +one package may be faster than the other. We give guidelines below, +but the best way to determine which package is faster for your input +script is to try both of them on your machine. See the benchmarking +section below for examples where this has been done. + +[Guidelines for using each package optimally:] + +The GPU package allows you to assign multiple CPUs (cores) to a single +GPU (a common configuration for "hybrid" nodes that contain multicore +CPU(s) and GPU(s)) and works effectively in this mode. :ulb,l + +The GPU package moves per-atom data (coordinates, forces) +back-and-forth between the CPU and GPU every timestep. The +KOKKOS/CUDA package only does this on timesteps when a CPU calculation +is required (e.g. to invoke a fix or compute that is non-GPU-ized). +Hence, if you can formulate your input script to only use GPU-ized +fixes and computes, and avoid doing I/O too often (thermo output, dump +file snapshots, restart files), then the data transfer cost of the +KOKKOS/CUDA package can be very low, causing it to run faster than the +GPU package. :l + +The GPU package is often faster than the KOKKOS/CUDA package, if the +number of atoms per GPU is smaller. The crossover point, in terms of +atoms/GPU at which the KOKKOS/CUDA package becomes faster depends +strongly on the pair style. For example, for a simple Lennard Jones +system the crossover (in single precision) is often about 50K-100K +atoms per GPU. When performing double precision calculations the +crossover point can be significantly smaller. :l + +Both packages compute bonded interactions (bonds, angles, etc) on the +CPU. If the GPU package is running with several MPI processes +assigned to one GPU, the cost of computing the bonded interactions is +spread across more CPUs and hence the GPU package can run faster. :l + +When using the GPU package with multiple CPUs assigned to one GPU, its +performance depends to some extent on high bandwidth between the CPUs +and the GPU. Hence its performance is affected if full 16 PCIe lanes +are not available for each GPU. In HPC environments this can be the +case if S2050/70 servers are used, where two devices generally share +one PCIe 2.0 16x slot. Also many multi-GPU mainboards do not provide +full 16 lanes to each of the PCIe 2.0 16x slots. :l +:ule + +[Differences between the two packages:] + +The GPU package accelerates only pair force, neighbor list, and PPPM +calculations. :ulb,l + +The GPU package requires neighbor lists to be built on the CPU when using +exclusion lists, hybrid pair styles, or a triclinic simulation box. :l +:ule diff --git a/doc/src/accelerate_gpu.txt b/doc/src/Speed_gpu.txt similarity index 96% rename from doc/src/accelerate_gpu.txt rename to doc/src/Speed_gpu.txt index 816a31c788e99592a3f70af5e42c786c2ce75410..d6ebbf8069d1adde06b1b52c83fff027a3905377 100644 --- a/doc/src/accelerate_gpu.txt +++ b/doc/src/Speed_gpu.txt @@ -1,5 +1,5 @@ -"Previous Section"_Section_packages.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -7,9 +7,7 @@ :line -"Return to Section accelerate overview"_Section_accelerate.html - -5.3.1 GPU package :h5 +GPU package :h3 The GPU package was developed by Mike Brown at ORNL and his collaborators, particularly Trung Nguyen (ORNL). It provides GPU @@ -72,10 +70,9 @@ Run lammps/lib/gpu/nvc_get_devices (after building the GPU library, see below) t [Building LAMMPS with the GPU package:] This requires two steps (a,b): build the GPU library, then build -LAMMPS with the GPU package. - -You can do both these steps in one line as described in -"Section 4"_Section_packages.html of the manual. +LAMMPS with the GPU package. You can do both these steps in one line +as described on the "Packages details"_Packages_details.html#GPU doc +page. Or you can follow these two (a,b) steps: diff --git a/doc/src/accelerate_intel.txt b/doc/src/Speed_intel.txt similarity index 97% rename from doc/src/accelerate_intel.txt rename to doc/src/Speed_intel.txt index 71f5185b154f9f832d0ab5b92bd3d2e49f25df2f..08e3fbc4cc110256f91ac70f4bbe99c428e44734 100644 --- a/doc/src/accelerate_intel.txt +++ b/doc/src/Speed_intel.txt @@ -1,5 +1,5 @@ -"Previous Section"_Section_packages.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -7,9 +7,7 @@ :line -"Return to Section accelerate overview"_Section_accelerate.html - -5.3.2 USER-INTEL package :h5 +USER-INTEL package :h3 The USER-INTEL package is maintained by Mike Brown at Intel Corporation. It provides two methods for accelerating simulations, @@ -188,8 +186,8 @@ can start running so that the CPU pipeline is still being used efficiently. Although benefits can be seen by launching a MPI task for every hardware thread, for multinode simulations, we recommend that OpenMP threads are used for SMT instead, either with the -USER-INTEL package, "USER-OMP package"_accelerate_omp.html, or -"KOKKOS package"_accelerate_kokkos.html. In the example above, up +USER-INTEL package, "USER-OMP package"_Speed_omp.html, or +"KOKKOS package"_Speed_kokkos.html. In the example above, up to 36X speedups can be observed by using all 36 physical cores with LAMMPS. By using all 72 hardware threads, an additional 10-30% performance gain can be achieved. @@ -233,9 +231,9 @@ source /opt/intel/parallel_studio_xe_2016.3.067/psxevars.sh # or psxevars.csh for C-shell make intel_cpu_intelmpi :pre -Alternatively this can be done as a single command with -suitable make command invocations. This is discussed in "Section -4"_Section_packages.html of the manual. +Alternatively this can be done as a single command with suitable make +command invocations, as described on the "Packages +details"_Packages_details.html#USER-INTEL doc page. Note that if you build with support for a Phi coprocessor, the same binary can be used on nodes with or without coprocessors installed. @@ -391,8 +389,8 @@ performance and/or scalability for simple 2-body potentials such as lj/cut or when using LRT mode on processors supporting AVX-512. Not all styles are supported in the USER-INTEL package. You can mix -the USER-INTEL package with styles from the "OPT"_accelerate_opt.html -package or the "USER-OMP package"_accelerate_omp.html. Of course, +the USER-INTEL package with styles from the "OPT"_Speed_opt.html +package or the "USER-OMP package"_Speed_omp.html. Of course, this requires that these packages were installed at build time. This can performed automatically by using "-sf hybrid intel opt" or "-sf hybrid intel omp" command-line options. Alternatively, the "opt" diff --git a/doc/src/accelerate_kokkos.txt b/doc/src/Speed_kokkos.txt similarity index 97% rename from doc/src/accelerate_kokkos.txt rename to doc/src/Speed_kokkos.txt index 0c9178d6e4f42863003b0a2848f29cd42189620f..8e01db7bdc7b52b3a95f7a5b3e73ccdb97bff1f4 100644 --- a/doc/src/accelerate_kokkos.txt +++ b/doc/src/Speed_kokkos.txt @@ -1,5 +1,5 @@ -"Previous Section"_Section_packages.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -7,9 +7,7 @@ :line -"Return to Section accelerate overview"_Section_accelerate.html - -5.3.3 KOKKOS package :h5 +KOKKOS package :h3 Kokkos is a templated C++ library that provides abstractions to allow a single implementation of an application kernel (e.g. a pair style) to run efficiently on @@ -85,10 +83,10 @@ make kokkos_phi :pre [Compile for CPUs and GPUs (with OpenMPI or MPICH):] -NOTE: To build with Kokkos support for NVIDIA GPUs, NVIDIA CUDA software -version 7.5 or later must be installed on your system. See the -discussion for the "GPU"_accelerate_gpu.html package for details of -how to check and do this. +NOTE: To build with Kokkos support for NVIDIA GPUs, NVIDIA CUDA +software version 7.5 or later must be installed on your system. See +the discussion for the "GPU package"_Speed_gpu.html for details of how +to check and do this. use a C++11 compatible compiler and set KOKKOS_ARCH variable in /src/MAKE/OPTIONS/Makefile.kokkos_cuda_mpi for both GPU and CPU as described @@ -434,8 +432,8 @@ migrate during a simulation. KOKKOS_USE_TPLS=hwloc should always be used if running with KOKKOS_DEVICES=Pthreads for pthreads. It is not necessary for KOKKOS_DEVICES=OpenMP for OpenMP, because OpenMP provides alternative methods via environment variables for binding -threads to hardware cores. More info on binding threads to cores is -given in "Section 5.3"_Section_accelerate.html#acc_3. +threads to hardware cores. More info on binding threads to cores is +given on the "Speed omp"_Speed_omp.html doc page. KOKKOS_USE_TPLS=librt enables use of a more accurate timer mechanism on most Unix platforms. This library is not available on all diff --git a/doc/src/Speed_measure.txt b/doc/src/Speed_measure.txt new file mode 100644 index 0000000000000000000000000000000000000000..03c0345c206c238f3061e714ab935b35a558ccce --- /dev/null +++ b/doc/src/Speed_measure.txt @@ -0,0 +1,55 @@ +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Measuring performance :h3 + +Before trying to make your simulation run faster, you should +understand how it currently performs and where the bottlenecks are. + +The best way to do this is run the your system (actual number of +atoms) for a modest number of timesteps (say 100 steps) on several +different processor counts, including a single processor if possible. +Do this for an equilibrium version of your system, so that the +100-step timings are representative of a much longer run. There is +typically no need to run for 1000s of timesteps to get accurate +timings; you can simply extrapolate from short runs. + +For the set of runs, look at the timing data printed to the screen and +log file at the end of each LAMMPS run. "This +section"_Section_start.html#start_7 of the manual has an overview. + +Running on one (or a few processors) should give a good estimate of +the serial performance and what portions of the timestep are taking +the most time. Running the same problem on a few different processor +counts should give an estimate of parallel scalability. I.e. if the +simulation runs 16x faster on 16 processors, its 100% parallel +efficient; if it runs 8x faster on 16 processors, it's 50% efficient. + +The most important data to look at in the timing info is the timing +breakdown and relative percentages. For example, trying different +options for speeding up the long-range solvers will have little impact +if they only consume 10% of the run time. If the pairwise time is +dominating, you may want to look at GPU or OMP versions of the pair +style, as discussed below. Comparing how the percentages change as +you increase the processor count gives you a sense of how different +operations within the timestep are scaling. Note that if you are +running with a Kspace solver, there is additional output on the +breakdown of the Kspace time. For PPPM, this includes the fraction +spent on FFTs, which can be communication intensive. + +Another important detail in the timing info are the histograms of +atoms counts and neighbor counts. If these vary widely across +processors, you have a load-imbalance issue. This often results in +inaccurate relative timing data, because processors have to wait when +communication occurs for other processors to catch up. Thus the +reported times for "Communication" or "Other" may be higher than they +really are, due to load-imbalance. If this is an issue, you can +uncomment the MPI_Barrier() lines in src/timer.cpp, and recompile +LAMMPS, to obtain synchronized timings. + diff --git a/doc/src/accelerate_omp.txt b/doc/src/Speed_omp.txt similarity index 96% rename from doc/src/accelerate_omp.txt rename to doc/src/Speed_omp.txt index fa7bef1a520bd867b4d3cf610d50b5ea8614c865..9685b6d349fe730517f07a5906f8802d094ffb36 100644 --- a/doc/src/accelerate_omp.txt +++ b/doc/src/Speed_omp.txt @@ -1,5 +1,5 @@ -"Previous Section"_Section_packages.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -7,9 +7,7 @@ :line -"Return to Section 5 overview"_Section_accelerate.html - -5.3.4 USER-OMP package :h5 +USER-OMP package :h3 The USER-OMP package was developed by Axel Kohlmeyer at Temple University. It provides multi-threaded versions of most pair styles, @@ -39,7 +37,8 @@ each MPI task running on a CPU. The lines above illustrate how to include/build with the USER-OMP package in two steps, using the "make" command. Or how to do it with -one command as described in "Section 4"_Section_packages.html of the manual. +one command as described on the "Packages +details"_Packages_details.html#USER-OMP doc page. Note that the CCFLAGS and LINKFLAGS settings in Makefile.machine must include "-fopenmp". Likewise, if you use an Intel compiler, the @@ -100,7 +99,7 @@ task, versus running standard LAMMPS with its standard un-accelerated styles (in serial or all-MPI parallelization with 1 task/core). This is because many of the USER-OMP styles contain similar optimizations to those used in the OPT package, described in "Section -5.3.5"_accelerate_opt.html. +5.3.5"_Speed_opt.html. With multiple threads/task, the optimal choice of number of MPI tasks/node and OpenMP threads/task can vary a lot and should always be diff --git a/doc/src/accelerate_opt.txt b/doc/src/Speed_opt.txt similarity index 86% rename from doc/src/accelerate_opt.txt rename to doc/src/Speed_opt.txt index 845264b5227ca31493cb582eac91ab5c216427ae..7d0d7169f001682b76fa931a00459df293379101 100644 --- a/doc/src/accelerate_opt.txt +++ b/doc/src/Speed_opt.txt @@ -1,5 +1,5 @@ -"Previous Section"_Section_packages.html - "LAMMPS WWW Site"_lws - -"LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -7,9 +7,7 @@ :line -"Return to Section accelerate overview"_Section_accelerate.html - -5.3.5 OPT package :h5 +OPT package :h3 The OPT package was developed by James Fischer (High Performance Technologies), David Richie, and Vincent Natoli (Stone Ridge @@ -34,7 +32,8 @@ None. The lines above illustrate how to build LAMMPS with the OPT package in two steps, using the "make" command. Or how to do it with one command -as described in "Section 4"_Section_packages.html of the manual. +as described on the "Packages details"_Packages_details.html#OPT doc +page. Note that if you use an Intel compiler to build with the OPT package, the CCFLAGS setting in your Makefile.machine must include "-restrict". diff --git a/doc/src/Speed_packages.txt b/doc/src/Speed_packages.txt new file mode 100644 index 0000000000000000000000000000000000000000..13b5e183dbbfcac153b09377d8e698b2deca3490 --- /dev/null +++ b/doc/src/Speed_packages.txt @@ -0,0 +1,191 @@ +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +Accelerator packages :h3 + +Accelerated versions of various "pair_style"_pair_style.html, +"fixes"_fix.html, "computes"_compute.html, and other commands have +been added to LAMMPS, which will typically run faster than the +standard non-accelerated versions. Some require appropriate hardware +to be present on your system, e.g. GPUs or Intel Xeon Phi +coprocessors. + +All of these commands are in packages provided with LAMMPS. An +overview of packages is give on the "Packages"_Packages.html doc +pages. + +These are the accelerator packages currently in LAMMPS, either as +standard or user packages: + +"GPU Package"_Speed_gpu.html : for NVIDIA GPUs as well as OpenCL support +"USER-INTEL Package"_Speed_intel.html : for Intel CPUs and Intel Xeon Phi +"KOKKOS Package"_Speed_kokkos.html : for Nvidia GPUs, Intel Xeon Phi, and OpenMP threading +"USER-OMP Package"_Speed_omp.html : for OpenMP threading and generic CPU optimizations +"OPT Package"_Speed_opt.html : generic CPU optimizations :tb(s=:) + + + +Inverting this list, LAMMPS currently has acceleration support for +three kinds of hardware, via the listed packages: + +Many-core CPUs : "USER-INTEL"_Speed_intel.html, "KOKKOS"_Speed_kokkos.html, "USER-OMP"_Speed_omp.html, "OPT"_Speed_opt.html packages +NVIDIA GPUs : "GPU"_Speed_gpu.html, "KOKKOS"_Speed_kokkos.html packages +Intel Phi : "USER-INTEL"_Speed_intel.html, "KOKKOS"_Speed_kokkos.html packages :tb(s=:) + +Which package is fastest for your hardware may depend on the size +problem you are running and what commands (accelerated and +non-accelerated) are invoked by your input script. While these doc +pages include performance guidelines, there is no substitute for +trying out the different packages appropriate to your hardware. + +Any accelerated style has the same name as the corresponding standard +style, except that a suffix is appended. Otherwise, the syntax for +the command that uses the style is identical, their functionality is +the same, and the numerical results it produces should also be the +same, except for precision and round-off effects. + +For example, all of these styles are accelerated variants of the +Lennard-Jones "pair_style lj/cut"_pair_lj.html: + +"pair_style lj/cut/gpu"_pair_lj.html +"pair_style lj/cut/intel"_pair_lj.html +"pair_style lj/cut/kk"_pair_lj.html +"pair_style lj/cut/omp"_pair_lj.html +"pair_style lj/cut/opt"_pair_lj.html :ul + +To see what accelerate styles are currently available, see +"Section 3.5"_Section_commands.html#cmd_5 of the manual. The +doc pages for individual commands (e.g. "pair lj/cut"_pair_lj.html or +"fix nve"_fix_nve.html) also list any accelerated variants available +for that style. + +To use an accelerator package in LAMMPS, and one or more of the styles +it provides, follow these general steps. Details vary from package to +package and are explained in the individual accelerator doc pages, +listed above: + +build the accelerator library | + only for GPU package | +install the accelerator package | + make yes-opt, make yes-user-intel, etc | +add compile/link flags to Makefile.machine in src/MAKE | + only for USER-INTEL, KOKKOS, USER-OMP, OPT packages | +re-build LAMMPS | + make machine | +prepare and test a regular LAMMPS simulation | + lmp_machine -in in.script; mpirun -np 32 lmp_machine -in in.script | +enable specific accelerator support via '-k on' "command-line switch"_Section_start.html#start_6, | + only needed for KOKKOS package | +set any needed options for the package via "-pk" "command-line switch"_Section_start.html#start_6 or "package"_package.html command, | + only if defaults need to be changed | +use accelerated styles in your input via "-sf" "command-line switch"_Section_start.html#start_6 or "suffix"_suffix.html command | lmp_machine -in in.script -sf gpu +:tb(c=2,s=|) + +Note that the first 4 steps can be done as a single command with +suitable make command invocations. This is discussed on the +"Packages"_Packages.html doc pages, and its use is illustrated in the +individual accelerator sections. Typically these steps only need to +be done once, to create an executable that uses one or more +accelerator packages. + +The last 4 steps can all be done from the command-line when LAMMPS is +launched, without changing your input script, as illustrated in the +individual accelerator sections. Or you can add +"package"_package.html and "suffix"_suffix.html commands to your input +script. + +NOTE: With a few exceptions, you can build a single LAMMPS executable +with all its accelerator packages installed. Note however that the +USER-INTEL and KOKKOS packages require you to choose one of their +hardware options when building for a specific platform. I.e. CPU or +Phi option for the USER-INTEL package. Or the OpenMP, Cuda, or Phi +option for the KOKKOS package. + +These are the exceptions. You cannot build a single executable with: + +both the USER-INTEL Phi and KOKKOS Phi options +the USER-INTEL Phi or Kokkos Phi option, and the GPU package :ul + +See the examples/accelerate/README and make.list files for sample +Make.py commands that build LAMMPS with any or all of the accelerator +packages. As an example, here is a command that builds with all the +GPU related packages installed (GPU, KOKKOS with Cuda), including +settings to build the needed auxiliary GPU libraries for Kepler GPUs: + +Make.py -j 16 -p omp gpu kokkos -cc nvcc wrap=mpi \ + -gpu mode=double arch=35 -kokkos cuda arch=35 lib-all file mpi :pre + +The examples/accelerate directory also has input scripts that can be +used with all of the accelerator packages. See its README file for +details. + +Likewise, the bench directory has FERMI and KEPLER and PHI +sub-directories with Make.py commands and input scripts for using all +the accelerator packages on various machines. See the README files in +those dirs. + +As mentioned above, the "Benchmark +page"_http://lammps.sandia.gov/bench.html of the LAMMPS web site gives +performance results for the various accelerator packages for several +of the standard LAMMPS benchmark problems, as a function of problem +size and number of compute nodes, on different hardware platforms. + +Here is a brief summary of what the various packages provide. Details +are in the individual accelerator sections. + +Styles with a "gpu" suffix are part of the GPU package, and can be run +on NVIDIA GPUs. The speed-up on a GPU depends on a variety of +factors, discussed in the accelerator sections. :ulb,l + +Styles with an "intel" suffix are part of the USER-INTEL +package. These styles support vectorized single and mixed precision +calculations, in addition to full double precision. In extreme cases, +this can provide speedups over 3.5x on CPUs. The package also +supports acceleration in "offload" mode to Intel(R) Xeon Phi(TM) +coprocessors. This can result in additional speedup over 2x depending +on the hardware configuration. :l + +Styles with a "kk" suffix are part of the KOKKOS package, and can be +run using OpenMP on multicore CPUs, on an NVIDIA GPU, or on an Intel +Xeon Phi in "native" mode. The speed-up depends on a variety of +factors, as discussed on the KOKKOS accelerator page. :l + +Styles with an "omp" suffix are part of the USER-OMP package and allow +a pair-style to be run in multi-threaded mode using OpenMP. This can +be useful on nodes with high-core counts when using less MPI processes +than cores is advantageous, e.g. when running with PPPM so that FFTs +are run on fewer MPI processors or when the many MPI tasks would +overload the available bandwidth for communication. :l + +Styles with an "opt" suffix are part of the OPT package and typically +speed-up the pairwise calculations of your simulation by 5-25% on a +CPU. :l +:ule + +The individual accelerator package doc pages explain: + +what hardware and software the accelerated package requires +how to build LAMMPS with the accelerated package +how to run with the accelerated package either via command-line switches or modifying the input script +speed-ups to expect +guidelines for best performance +restrictions :ul + diff --git a/doc/src/Speed_tips.txt b/doc/src/Speed_tips.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0d360cd8e2932dd726b19713cb50cf18ef35620 --- /dev/null +++ b/doc/src/Speed_tips.txt @@ -0,0 +1,63 @@ +"Higher level section"_Speed.html - "LAMMPS WWW Site"_lws - "LAMMPS +Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +General tips :h3 + +NOTE: this section 5.2 is still a work in progress + +Here is a list of general ideas for improving simulation performance. +Most of them are only applicable to certain models and certain +bottlenecks in the current performance, so let the timing data you +generate be your guide. It is hard, if not impossible, to predict how +much difference these options will make, since it is a function of +problem size, number of processors used, and your machine. There is +no substitute for identifying performance bottlenecks, and trying out +various options. + +make individual pages for these, or one for PPPM +one for timestepping, etc +one for balancing +or proc layout + +rRESPA +2-FFT PPPM +Staggered PPPM +single vs double PPPM +partial charge PPPM +verlet/split run style +processor command for proc layout and numa layout +load-balancing: balance and fix balance :ul + +2-FFT PPPM, also called {analytic differentiation} or {ad} PPPM, uses +2 FFTs instead of the 4 FFTs used by the default {ik differentiation} +PPPM. However, 2-FFT PPPM also requires a slightly larger mesh size to +achieve the same accuracy as 4-FFT PPPM. For problems where the FFT +cost is the performance bottleneck (typically large problems running +on many processors), 2-FFT PPPM may be faster than 4-FFT PPPM. + +Staggered PPPM performs calculations using two different meshes, one +shifted slightly with respect to the other. This can reduce force +aliasing errors and increase the accuracy of the method, but also +doubles the amount of work required. For high relative accuracy, using +staggered PPPM allows one to half the mesh size in each dimension as +compared to regular PPPM, which can give around a 4x speedup in the +kspace time. However, for low relative accuracy, using staggered PPPM +gives little benefit and can be up to 2x slower in the kspace +time. For example, the rhodopsin benchmark was run on a single +processor, and results for kspace time vs. relative accuracy for the +different methods are shown in the figure below. For this system, +staggered PPPM (using ik differentiation) becomes useful when using a +relative accuracy of slightly greater than 1e-5 and above. + +:c,image(JPG/rhodo_staggered.jpg) + +NOTE: Using staggered PPPM may not give the same increase in accuracy +of energy and pressure as it does in forces, so some caution must be +used if energy and/or pressure are quantities of interest, such as +when using a barostat. diff --git a/doc/src/Section_tools.txt b/doc/src/Tools.txt similarity index 88% rename from doc/src/Section_tools.txt rename to doc/src/Tools.txt index 7cc07cbec55a5e7c4f3545c623875be8cc6919cc..7165010da3bee1b7b937ceb798313f99b0c1ee7a 100644 --- a/doc/src/Section_tools.txt +++ b/doc/src/Tools.txt @@ -1,6 +1,6 @@ "Previous Section"_Section_perf.html - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc - "Next -Section"_Section_modify.html :c +Section"_Modify.html :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -8,33 +8,34 @@ Section"_Section_modify.html :c :line -9. Additional tools :h2 +Auxiliary tools :h2 LAMMPS is designed to be a computational kernel for performing molecular dynamics computations. Additional pre- and post-processing -steps are often necessary to setup and analyze a simulation. A -list of such tools can be found on the LAMMPS home page -at "http://lammps.sandia.gov/prepost.html"_http://lammps.sandia.gov/prepost.html +steps are often necessary to setup and analyze a simulation. A list +of such tools can be found on the "LAMMPS webpage"_lws at these links: -A few additional tools are provided with the LAMMPS distribution -and are described in this section. +"Pre/Post processing"_http://lammps.sandia.gov/prepost.html +"Offsite LAMMPS packages & tools"_http://lammps.sandia.gov/offsite.html +"Pizza.py toolkit"_pizza :ul -Our group has also written and released a separate toolkit called -"Pizza.py"_pizza which provides tools for doing setup, analysis, -plotting, and visualization for LAMMPS simulations. Pizza.py is -written in "Python"_python and is available for download from "the -Pizza.py WWW site"_pizza. +The last link for "Pizza.py"_pizza is a Python-based tool developed at +Sandia which provides tools for doing setup, analysis, plotting, and +visualization for LAMMPS simulations. -:link(pizza,http://www.sandia.gov/~sjplimp/pizza.html) +:link(pizza,http://pizza.sandia.gov) :link(python,http://www.python.org) +Additional tools included in the LAMMPS distribution are described on +this page. + Note that many users write their own setup or analysis tools or use other existing codes and convert their output to a LAMMPS input format or vice versa. The tools listed here are included in the LAMMPS distribution as examples of auxiliary tools. Some of them are not -actively supported by Sandia, as they were contributed by LAMMPS -users. If you have problems using them, we can direct you to the -authors. +actively supported by the LAMMPS developers, as they were contributed +by LAMMPS users. If you have problems using them, we can direct you +to the authors. The source code for each of these codes is in the tools sub-directory of the LAMMPS distribution. There is a Makefile (which you may need @@ -71,11 +72,12 @@ own sub-directories with their own Makefiles and/or README files. "reax"_#reax_tool "smd"_#smd "vim"_#vim -"xmgrace"_#xmgrace +"xmgrace"_#xmgrace :ul +:line :line -amber2lmp tool :h3,link(amber) +amber2lmp tool :h4,link(amber) The amber2lmp sub-directory contains two Python scripts for converting files back-and-forth between the AMBER MD code and LAMMPS. See the @@ -90,7 +92,7 @@ necessary modifications yourself. :line -binary2txt tool :h3,link(binary) +binary2txt tool :h4,link(binary) The file binary2txt.cpp converts one or more binary LAMMPS dump file into ASCII text files. The syntax for running the tool is @@ -103,7 +105,7 @@ since binary files are not compatible across all platforms. :line -ch2lmp tool :h3,link(charmm) +ch2lmp tool :h4,link(charmm) The ch2lmp sub-directory contains tools for converting files back-and-forth between the CHARMM MD code and LAMMPS. @@ -128,7 +130,7 @@ Chris Lorenz (chris.lorenz at kcl.ac.uk), King's College London. :line -chain tool :h3,link(chain) +chain tool :h4,link(chain) The file chain.f creates a LAMMPS data file containing bead-spring polymer chains and/or monomer solvent atoms. It uses a text file @@ -145,7 +147,7 @@ system for the "chain benchmark"_Section_perf.html. :line -colvars tools :h3,link(colvars) +colvars tools :h4,link(colvars) The colvars directory contains a collection of tools for postprocessing data produced by the colvars collective variable library. @@ -167,7 +169,7 @@ gmail.com) at ICTP, Italy. :line -createatoms tool :h3,link(createatoms) +createatoms tool :h4,link(createatoms) The tools/createatoms directory contains a Fortran program called createAtoms.f which can generate a variety of interesting crystal @@ -180,7 +182,7 @@ The tool is authored by Xiaowang Zhou (Sandia), xzhou at sandia.gov. :line -doxygen tool :h3,link(doxygen) +doxygen tool :h4,link(doxygen) The tools/doxygen directory contains a shell script called doxygen.sh which can generate a call graph and API lists using @@ -192,7 +194,7 @@ The tool is authored by Nandor Tamaskovics, numericalfreedom at googlemail.com. :line -drude tool :h3,link(drude) +drude tool :h4,link(drude) The tools/drude directory contains a Python script called polarizer.py which can add Drude oscillators to a LAMMPS @@ -205,7 +207,7 @@ at univ-bpclermont.fr, alain.dequidt at univ-bpclermont.fr :line -eam database tool :h3,link(eamdb) +eam database tool :h4,link(eamdb) The tools/eam_database directory contains a Fortran program that will generate EAM alloy setfl potential files for any combination of 16 @@ -221,7 +223,7 @@ X. W. Zhou, R. A. Johnson, and H. N. G. Wadley, Phys. Rev. B, 69, :line -eam generate tool :h3,link(eamgn) +eam generate tool :h4,link(eamgn) The tools/eam_generate directory contains several one-file C programs that convert an analytic formula into a tabulated "embedded atom @@ -234,7 +236,7 @@ The source files and potentials were provided by Gerolf Ziegenhain :line -eff tool :h3,link(eff) +eff tool :h4,link(eff) The tools/eff directory contains various scripts for generating structures and post-processing output for simulations using the @@ -245,18 +247,18 @@ These tools were provided by Andres Jaramillo-Botero at CalTech :line -emacs tool :h3,link(emacs) +emacs tool :h4,link(emacs) -The tools/emacs directory contains a Lips add-on file for Emacs that -enables a lammps-mode for editing of input scripts when using Emacs, -with various highlighting options setup. +The tools/emacs directory contains an Emacs Lisp add-on file for GNU Emacs +that enables a lammps-mode for editing input scripts when using GNU Emacs, +with various highlighting options set up. These tools were provided by Aidan Thompson at Sandia (athomps at sandia.gov). :line -fep tool :h3,link(fep) +fep tool :h4,link(fep) The tools/fep directory contains Python scripts useful for post-processing results from performing free-energy perturbation @@ -269,7 +271,7 @@ See README file in the tools/fep directory. :line -i-pi tool :h3,link(ipi) +i-pi tool :h4,link(ipi) The tools/i-pi directory contains a version of the i-PI package, with all the LAMMPS-unrelated files removed. It is provided so that it can @@ -286,7 +288,7 @@ calculations with LAMMPS. :line -ipp tool :h3,link(ipp) +ipp tool :h4,link(ipp) The tools/ipp directory contains a Perl script ipp which can be used to facilitate the creation of a complicated file (say, a lammps input @@ -300,7 +302,7 @@ tools/createatoms tool's input file. :line -kate tool :h3,link(kate) +kate tool :h4,link(kate) The file in the tools/kate directory is an add-on to the Kate editor in the KDE suite that allow syntax highlighting of LAMMPS input @@ -311,7 +313,7 @@ The file was provided by Alessandro Luigi Sellerio :line -lmp2arc tool :h3,link(arc) +lmp2arc tool :h4,link(arc) The lmp2arc sub-directory contains a tool for converting LAMMPS output files to the format for Accelrys' Insight MD code (formerly @@ -327,7 +329,7 @@ Greathouse at Sandia (jagreat at sandia.gov). :line -lmp2cfg tool :h3,link(cfg) +lmp2cfg tool :h4,link(cfg) The lmp2cfg sub-directory contains a tool for converting LAMMPS output files into a series of *.cfg files which can be read into the @@ -338,7 +340,7 @@ This tool was written by Ara Kooser at Sandia (askoose at sandia.gov). :line -matlab tool :h3,link(matlab) +matlab tool :h4,link(matlab) The matlab sub-directory contains several "MATLAB"_matlabhome scripts for post-processing LAMMPS output. The scripts include readers for log @@ -356,7 +358,7 @@ These scripts were written by Arun Subramaniyan at Purdue Univ :line -micelle2d tool :h3,link(micelle) +micelle2d tool :h4,link(micelle) The file micelle2d.f creates a LAMMPS data file containing short lipid chains in a monomer solution. It uses a text file containing lipid @@ -369,11 +371,11 @@ micelle2d < def.micelle2d > data.file :pre See the def.micelle2d file in the tools directory for an example of a definition file. This tool was used to create the system for the -"micelle example"_Section_example.html. +"micelle example"_Examples.html. :line -moltemplate tool :h3,link(moltemplate) +moltemplate tool :h4,link(moltemplate) The moltemplate sub-directory contains a Python-based tool for building molecular systems based on a text-file description, and @@ -387,7 +389,7 @@ supports it. It has its own WWW page at :line -msi2lmp tool :h3,link(msi) +msi2lmp tool :h4,link(msi) The msi2lmp sub-directory contains a tool for creating LAMMPS template input and data files from BIOVIA's Materias Studio files (formerly Accelrys' @@ -404,7 +406,7 @@ See the README file in the tools/msi2lmp folder for more information. :line -phonon tool :h3,link(phonon) +phonon tool :h4,link(phonon) The phonon sub-directory contains a post-processing tool useful for analyzing the output of the "fix phonon"_fix_phonon.html command in @@ -419,7 +421,7 @@ University. :line -polybond tool :h3,link(polybond) +polybond tool :h4,link(polybond) The polybond sub-directory contains a Python-based tool useful for performing "programmable polymer bonding". The Python file @@ -433,7 +435,7 @@ This tool was written by Zachary Kraus at Georgia Tech. :line -pymol_asphere tool :h3,link(pymol) +pymol_asphere tool :h4,link(pymol) The pymol_asphere sub-directory contains a tool for converting a LAMMPS dump file that contains orientation info for ellipsoidal @@ -451,7 +453,7 @@ This tool was written by Mike Brown at Sandia. :line -python tool :h3,link(pythontools) +python tool :h4,link(pythontools) The python sub-directory contains several Python scripts that perform common LAMMPS post-processing tasks, such as: @@ -467,7 +469,7 @@ README for more info on Pizza.py and how to use these scripts. :line -reax tool :h3,link(reax_tool) +reax tool :h4,link(reax_tool) The reax sub-directory contains stand-alond codes that can post-process the output of the "fix reax/bonds"_fix_reax_bonds.html @@ -478,7 +480,7 @@ These tools were written by Aidan Thompson at Sandia. :line -smd tool :h3,link(smd) +smd tool :h4,link(smd) The smd sub-directory contains a C++ file dump2vtk_tris.cpp and Makefile which can be compiled and used to convert triangle output @@ -494,7 +496,7 @@ Ernst Mach Institute in Germany (georg.ganzenmueller at emi.fhg.de). :line -vim tool :h3,link(vim) +vim tool :h4,link(vim) The files in the tools/vim directory are add-ons to the VIM editor that allow easier editing of LAMMPS input scripts. See the README.txt @@ -505,7 +507,7 @@ ziegenhain.com) :line -xmgrace tool :h3,link(xmgrace) +xmgrace tool :h4,link(xmgrace) The files in the tools/xmgrace directory can be used to plot the thermodynamic data in LAMMPS log files via the xmgrace plotting @@ -517,4 +519,3 @@ simulation. See the README file for details. These files were provided by Vikas Varshney (vv0210 at gmail.com) - diff --git a/doc/src/angle_charmm.txt b/doc/src/angle_charmm.txt index 7ff7ef8fd417c1118951adcbc0f89b4c7d08540a..fe109d24fb5fa2fd014f06094da8a60ca077ec9c 100644 --- a/doc/src/angle_charmm.txt +++ b/doc/src/angle_charmm.txt @@ -51,10 +51,9 @@ internally; hence the units of K are in energy/radian^2. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -66,8 +65,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_class2.txt b/doc/src/angle_class2.txt index d4330139c963c12c53dc50aa2312eca93ce068e6..c13a64afb667955a61ca1bc1dae826251f257c85 100644 --- a/doc/src/angle_class2.txt +++ b/doc/src/angle_class2.txt @@ -83,10 +83,9 @@ same value from the Ea formula. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -98,8 +97,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_cosine.txt b/doc/src/angle_cosine.txt index c0ce3c9301f735fc69fb1b239d30ddce3150c3b0..99264b02a60adeb79c5f360988edbead0487c66f 100644 --- a/doc/src/angle_cosine.txt +++ b/doc/src/angle_cosine.txt @@ -38,10 +38,9 @@ K (energy) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -53,8 +52,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_cosine_delta.txt b/doc/src/angle_cosine_delta.txt index 830fd6db584a67bf7c93082b971e3abb383e69d2..052300412f1449a86f636888e101fac170fb086d 100644 --- a/doc/src/angle_cosine_delta.txt +++ b/doc/src/angle_cosine_delta.txt @@ -43,10 +43,9 @@ internally. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -58,8 +57,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_cosine_periodic.txt b/doc/src/angle_cosine_periodic.txt index b5c53b1b0fb5a81d8ab33d2ebbc8e2087fd26fab..4bedae324647ade4c9a7da9a718b0d79f31fa311 100644 --- a/doc/src/angle_cosine_periodic.txt +++ b/doc/src/angle_cosine_periodic.txt @@ -51,10 +51,9 @@ geometry. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -66,8 +65,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_cosine_shift.txt b/doc/src/angle_cosine_shift.txt index 6ed9fe2150b7d7bdcda19e55bc7ca852ceed4a88..185b9f530940d80bf6b63bc5a7cf963ca6f3d590 100644 --- a/doc/src/angle_cosine_shift.txt +++ b/doc/src/angle_cosine_shift.txt @@ -41,10 +41,9 @@ theta (angle) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -56,8 +55,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_cosine_shift_exp.txt b/doc/src/angle_cosine_shift_exp.txt index 44a68c1087582357c0d2b27a98ba21184a582531..e5c7fdd7095b029d3618c2d85d6d94f82f1cd74a 100644 --- a/doc/src/angle_cosine_shift_exp.txt +++ b/doc/src/angle_cosine_shift_exp.txt @@ -53,10 +53,9 @@ A (real number) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -68,8 +67,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_cosine_squared.txt b/doc/src/angle_cosine_squared.txt index 065cdad5421bf816fd6cb600a023d265e4bbfff8..e85c514d1edf9a5f1c18e4cb818b2299a3d4b620 100644 --- a/doc/src/angle_cosine_squared.txt +++ b/doc/src/angle_cosine_squared.txt @@ -43,10 +43,9 @@ internally. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -58,8 +57,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_dipole.txt b/doc/src/angle_dipole.txt index d91f260d51b5d208c8a2d3a182c6fb17fbc0545c..31ae2e9464b0bd6c2b9cab81220a94273490358b 100644 --- a/doc/src/angle_dipole.txt +++ b/doc/src/angle_dipole.txt @@ -71,10 +71,9 @@ gamma0 (degrees) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -86,8 +85,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restrictions:] @@ -96,16 +95,17 @@ USER-MISC package. See the "Making LAMMPS"_Section_start.html#start_2_3 section for more info on packages. NOTE: In the "Angles" section of the data file, the atom ID 'j' -corresponding to the dipole to restrain must come before the atom ID -of the reference atom 'i'. A third atom ID 'k' must also be provided, -although 'k' is just a 'dummy' atom which can be any atom; it may be -useful to choose a convention (e.g., 'k'='i') and adhere to it. For -example, if ID=1 for the dipolar atom to restrain, and ID=2 for the -reference atom, the corresponding line in the "Angles" section of the -data file would read: X X 1 2 2 +defining the direction of the dipole vector to restrain must come +before the atom ID of the reference atom 'i'. A third atom ID 'k' must +also be provided to comply with the requirement of a valid angle +definition. This atom ID k should be chosen to be that of an atom +bonded to atom 'i' to avoid errors with "lost angle atoms" when running +in parallel. Since the LAMMPS code checks for valid angle definitions, +cannot use the same atom ID of either 'i' or 'j' (this was allowed +and recommended with older LAMMPS versions). The "newton" command for intramolecular interactions must be "on" -(which is the default). +(which is the default except when using some accelerator packages). This angle style should not be used with SHAKE. diff --git a/doc/src/angle_fourier.txt b/doc/src/angle_fourier.txt index da39e7cf326b43afce171e0005c1ef93cde2d5c8..18eb56b478614bfc51391bd54288f8d330bd801d 100644 --- a/doc/src/angle_fourier.txt +++ b/doc/src/angle_fourier.txt @@ -39,10 +39,9 @@ C2 (real) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -54,8 +53,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_fourier_simple.txt b/doc/src/angle_fourier_simple.txt index 5adda6cb32f85a00310f5dc62ada7838e84d5715..6faff5f10d60924064badc7b8622541ace5c84f6 100644 --- a/doc/src/angle_fourier_simple.txt +++ b/doc/src/angle_fourier_simple.txt @@ -38,10 +38,9 @@ n (real) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -53,8 +52,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_harmonic.txt b/doc/src/angle_harmonic.txt index 4c74763964832d98cfcae9443866e2db4293ca64..fe803be62320c156185ee30a7bf227e394fa3214 100644 --- a/doc/src/angle_harmonic.txt +++ b/doc/src/angle_harmonic.txt @@ -45,10 +45,9 @@ internally; hence the units of K are in energy/radian^2. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -60,8 +59,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_quartic.txt b/doc/src/angle_quartic.txt index f7640bdfbc0f75af1170cb551220d846df1529a0..a31214f4357c2c0c9d1fb9f911904dcd977fd4f4 100644 --- a/doc/src/angle_quartic.txt +++ b/doc/src/angle_quartic.txt @@ -45,10 +45,9 @@ internally; hence the units of K are in energy/radian^2. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -60,8 +59,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/angle_table.txt b/doc/src/angle_table.txt index bd6e167bd8f4dfccc84412c6597e1d2568a1daec..29b56875e7e797c06c6a1b1f597118fd4373b603 100644 --- a/doc/src/angle_table.txt +++ b/doc/src/angle_table.txt @@ -124,10 +124,9 @@ one that matches the specified keyword. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -139,8 +138,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/atom_style.txt b/doc/src/atom_style.txt index 49d9dde79119dee8b7b4ab7efa43519ac9910744..0e6aa8a03333c649da9c76d70119c071eb73ed53 100644 --- a/doc/src/atom_style.txt +++ b/doc/src/atom_style.txt @@ -15,7 +15,7 @@ atom_style style args :pre style = {angle} or {atomic} or {body} or {bond} or {charge} or {dipole} or \ {dpd} or {edpd} or {mdpd} or {tdpd} or {electron} or {ellipsoid} or \ {full} or {line} or {meso} or {molecular} or {peri} or {smd} or \ - {sphere} or {tri} or {template} or {hybrid} :ulb,l + {sphere} or {spin} or {tri} or {template} or {hybrid} :ulb,l args = none for any style except the following {body} args = bstyle bstyle-args bstyle = style of body particles @@ -38,6 +38,7 @@ atom_style full atom_style body nparticle 2 10 atom_style hybrid charge bond atom_style hybrid charge body nparticle 2 5 +atom_style spin atom_style template myMols atom_style tdpd 2 :pre @@ -89,6 +90,7 @@ quantities. {peri} | mass, volume | mesocopic Peridynamic models | {smd} | volume, kernel diameter, contact radius, mass | solid and fluid SPH particles | {sphere} | diameter, mass, angular velocity | granular models | +{spin} | magnetic moment | system with magnetic particles | {template} | template index, template atom | small molecules with fixed topology | {tri} | corner points, angular momentum | rigid bodies | {wavepacket} | charge, spin, eradius, etag, cs_re, cs_im | AWPMD :tb(c=3,s=|) @@ -175,6 +177,9 @@ used for calculating the field variables (e.g. stress and deformation) and a contact radius for calculating repulsive forces which prevent individual physical bodies from penetrating each other. +For the {spin} style, a magnetic spin is associated to each atom. +Those spins have a norm (their magnetic moment) and a direction. + The {wavepacket} style is similar to {electron}, but the electrons may consist of several Gaussian wave packets, summed up with coefficients cs= (cs_re,cs_im). Each of the wave packets is treated as a separate @@ -250,16 +255,16 @@ with another molecular style that stores bond,angle,etc info on a per-atom basis. LAMMPS can be extended with new atom styles as well as new body -styles; see "this section"_Section_modify.html. +styles; see the "Modify"_Modify.html doc page. :line Styles with a {kk} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to -run faster, depending on your available hardware, as discussed in -"Section 5"_Section_accelerate.html of the manual. The -accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +run faster, depending on your available hardware, as discussed in on +the "Speed packages"_Speed_packages.html doc page. The accelerated +styles take the same arguments and should produce the same results, +except for round-off and precision issues. Note that other acceleration packages in LAMMPS, specifically the GPU, USER-INTEL, USER-OMP, and OPT packages do not use accelerated atom @@ -274,8 +279,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_7 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restrictions:] @@ -312,6 +317,8 @@ The {meso} style is part of the USER-SPH package for smoothed particle hydrodynamics (SPH). See "this PDF guide"_USER/sph/SPH_LAMMPS_userguide.pdf to using SPH in LAMMPS. +The {spin} style is part of the SPIN package. + The {wavepacket} style is part of the USER-AWPMD package for the "antisymmetrized wave packet MD method"_pair_awpmd.html. diff --git a/doc/src/body.txt b/doc/src/body.txt index 8d49efdae40eed30f9c7ec82e704adc3aef44771..4a39ac25d8c2719f3c7a24ba8559439c4003c808 100644 --- a/doc/src/body.txt +++ b/doc/src/body.txt @@ -27,19 +27,17 @@ styles supported by LAMMPS are as follows. The name in the first column is used as the {bstyle} argument for the "atom_style body"_atom_style.html command. -{nparticle} | rigid body with N sub-particles | -{rounded/polygon} | 2d convex polygon with N vertices :tb(c=2,s=|) +{nparticle} : rigid body with N sub-particles +{rounded/polygon} : 2d polygons with N vertices +{rounded/polyhedron} : 3d polyhedra with N vertices, E edges and F faces :tb(s=:) The body style determines what attributes are stored for each body and thus how they can be used to compute pairwise body/body or bond/non-body (point particle) interactions. More details of each style are described below. -NOTE: The rounded/polygon style listed in the table above and -described below has not yet been relesed in LAMMPS. It will be soon. - -We hope to add more styles in the future. See "Section -10.12"_Section_modify.html#mod_12 for details on how to add a new body +More styles may be added in the future. See the "Modify +body"_Modify_body.html doc page for details on how to add a new body style to the code. :line @@ -61,7 +59,7 @@ the simple particles. By contrast, when body particles are used, LAMMPS treats an entire body as a single particle for purposes of computing pairwise interactions, building neighbor lists, migrating particles between -processors, outputting particles to a dump file, etc. This means that +processors, output of particles to a dump file, etc. This means that interactions between pairs of bodies or between a body and non-body (point) particle need to be encoded in an appropriate pair style. If such a pair style were to mimic the "fix rigid"_fix_rigid.html model, @@ -72,17 +70,20 @@ single body/body interaction was computed. Thus it only makes sense to use body particles and develop such a pair style, when particle/particle interactions are more complex than what the "fix rigid"_fix_rigid.html command can already calculate. For -example, if particles have one or more of the following attributes: +example, consider particles with one or more of the following +attributes: represented by a surface mesh represented by a collection of geometric entities (e.g. planes + spheres) deformable internal stress that induces fragmentation :ul -then the interaction between pairs of particles is likely to be more -complex than the summation of simple sub-particle interactions. An -example is contact or frictional forces between particles with planar -surfaces that inter-penetrate. +For these models, the interaction between pairs of particles is likely +to be more complex than the summation of simple pairwise interactions. +An example is contact or frictional forces between particles with +planar surfaces that inter-penetrate. Likewise, the body particle may +store internal state, such as a stress tensor used to compute a +fracture criterion. These are additional LAMMPS commands that can be used with body particles of different styles @@ -130,7 +131,9 @@ x1 y1 z1 ... xN yN zN :pre -N is the number of sub-particles in the body particle. M = 6 + 3*N. +where M = 6 + 3*N, and N is the number of sub-particles in the body +particle. + The integer line has a single value N. The floating point line(s) list 6 moments of inertia followed by the coordinates of the N sub-particles (x1 to zN) as 3N values. These values can be listed on @@ -175,15 +178,18 @@ The {bflag2} argument is ignored. [Specifics of body style rounded/polygon:] -NOTE: Aug 2016 - This body style has not yet been added to LAMMPS. -The info below is a placeholder. +The {rounded/polygon} body style represents body particles as a 2d +polygon with a variable number of N vertices. This style can only be +used for 2d models; see the "boundary"_boundary.html command. See the +"pair_style body/rounded/polygon" doc page for a diagram of two +squares with rounded circles at the vertices. Special cases for N = 1 +(circle) and N = 2 (rod with rounded ends) can also be specified. + +One use of this body style is for 2d discrete element models, as +described in "Fraige"_#body-Fraige. -The {rounded/polygon} body style represents body particles as a convex -polygon with a variable number N > 2 of vertices, which can only be -used for 2d models. One example use of this body style is for 2d -discrete element models, as described in "Fraige"_#Fraige. Similar to -body style {nparticle}, the atom_style body command for this body -style takes two additional arguments: +Similar to body style {nparticle}, the atom_style body command for +this body style takes two additional arguments: atom_style body rounded/polygon Nmin Nmax Nmin = minimum # of vertices in any body in the system @@ -203,17 +209,20 @@ x1 y1 z1 ... xN yN zN i j j k k ... -radius :pre +diameter :pre -N is the number of vertices in the body particle. M = 6 + 3*N + 2*N + -1. The integer line has a single value N. The floating point line(s) +where M = 6 + 3*N + 2*N + 1, and N is the number of vertices in the +body particle. + +The integer line has a single value N. The floating point line(s) list 6 moments of inertia followed by the coordinates of the N -vertices (x1 to zN) as 3N values, followed by 2N vertex indices -corresponding to the end points of the N edges, followed by a single -radius value = the smallest circle encompassing the polygon. That -last value is used to facilitate the body/body contact detection. -These floating-point values can be listed on as many lines as you -wish; see the "read_data"_read_data.html command for more details. +vertices (x1 to zN) as 3N values (with z = 0.0 for each), followed by +2N vertex indices corresponding to the end points of the N edges, +followed by a single diameter value = the rounded diameter of the +circle that surrounds each vertex. The diameter value can be different +for each body particle. These floating-point values can be listed on +as many lines as you wish; see the "read_data"_read_data.html command +for more details. The 6 moments of inertia (ixx,iyy,izz,ixy,ixz,iyz) should be the values consistent with the current orientation of the rigid body @@ -225,8 +234,11 @@ from the center-of-mass of the body particle. The center-of-mass position of the particle is specified by the x,y,z values in the {Atoms} section of the data file. -For example, the following information would specify a square -particles whose edge length is sqrt(2): +For example, the following information would specify a square particle +whose edge length is sqrt(2) and rounded diameter is 1.0. The +orientation of the square is aligned with the xy coordinate axes which +is consistent with the 6 moments of inertia: ixx iyy izz ixy ixz iyz = +1 1 4 0 0 0. Note that only Izz matters in 2D simulations. 3 1 27 4 @@ -235,12 +247,178 @@ particles whose edge length is sqrt(2): -0.7071 0.7071 0 0.7071 0.7071 0 0.7071 -0.7071 0 -0 1 1 2 2 3 3 0 +0 1 +1 2 +2 3 +3 0 1.0 :pre +A rod in 2D, whose length is 4.0, mass 1.0, rounded at two ends +by circles of diameter 0.5, is specified as follows: + +1 1 13 +2 +1 1 1.33333 0 0 0 +-2 0 0 +2 0 0 +0.5 :pre + +A disk, whose diameter is 3.0, mass 1.0, is specified as follows: + +1 1 10 +1 +1 1 4.5 0 0 0 +0 0 0 +3.0 :pre + The "pair_style body/rounded/polygon"_pair_body_rounded_polygon.html command can be used with this body style to compute body/body -interactions. +interactions. The "fix wall/body/polygon"_fix_wall_body_polygon.html +command can be used with this body style to compute the interaction of +body particles with a wall. + +:line + +[Specifics of body style rounded/polyhedron:] + +The {rounded/polyhedron} body style represents body particles as a 3d +polyhedron with a variable number of N vertices, E edges and F faces. +This style can only be used for 3d models; see the +"boundary"_boundary.html command. See the "pair_style +body/rounded/polygon" doc page for a diagram of a two 2d squares with +rounded circles at the vertices. A 3d cube with rounded spheres at +the 8 vertices and 12 rounded edges would be similar. Special cases +for N = 1 (sphere) and N = 2 (rod with rounded ends) can also be +specified. + +This body style is for 3d discrete element models, as described in +"Wang"_#body-Wang. + +Similar to body style {rounded/polygon}, the atom_style body command +for this body style takes two additional arguments: + +atom_style body rounded/polyhedron Nmin Nmax +Nmin = minimum # of vertices in any body in the system +Nmax = maximum # of vertices in any body in the system :pre + +The Nmin and Nmax arguments are used to bound the size of data +structures used internally by each particle. + +When the "read_data"_read_data.html command reads a data file for this +body style, the following information must be provided for each entry +in the {Bodies} section of the data file: + +atom-ID 3 M +N E F +ixx iyy izz ixy ixz iyz +x1 y1 z1 +... +xN yN zN +0 1 +1 2 +2 3 +... +0 1 2 -1 +0 2 3 -1 +... +1 2 3 4 +diameter :pre + +where M = 6 + 3*N + 2*E + 4*F + 1, and N is the number of vertices in +the body particle, E = number of edges, F = number of faces. + +The integer line has three values: number of vertices (N), number of +edges (E) and number of faces (F). The floating point line(s) list 6 +moments of inertia followed by the coordinates of the N vertices (x1 +to zN) as 3N values, followed by 2N vertex indices corresponding to +the end points of the E edges, then 4*F vertex indices defining F +faces. The last value is the diameter value = the rounded diameter of +the sphere that surrounds each vertex. The diameter value can be +different for each body particle. These floating-point values can be +listed on as many lines as you wish; see the +"read_data"_read_data.html command for more details. Because the +maxmimum vertices per face is hard-coded to be 4 +(i.e. quadrilaterals), faces with more than 4 vertices need to be +split into triangles or quadrilaterals. For triangular faces, the +last vertex index should be set to -1. + +The ordering of the 4 vertices within a face should follow +the right-hand rule so that the normal vector of the face points +outwards from the center of mass. + +The 6 moments of inertia (ixx,iyy,izz,ixy,ixz,iyz) should be the +values consistent with the current orientation of the rigid body +around its center of mass. The values are with respect to the +simulation box XYZ axes, not with respect to the principal axes of the +rigid body itself. LAMMPS performs the latter calculation internally. +The coordinates of each vertex are specified as its x,y,z displacement +from the center-of-mass of the body particle. The center-of-mass +position of the particle is specified by the x,y,z values in the +{Atoms} section of the data file. + +For example, the following information would specify a cubic particle +whose edge length is 2.0 and rounded diameter is 0.5. +The orientation of the cube is aligned with the xyz coordinate axes +which is consistent with the 6 moments of inertia: ixx iyy izz ixy ixz +iyz = 0.667 0.667 0.667 0 0 0. + +1 3 79 +8 12 6 +0.667 0.667 0.667 0 0 0 +1 1 1 +1 -1 1 +-1 -1 1 +-1 1 1 +1 1 -1 +1 -1 -1 +-1 -1 -1 +-1 1 -1 +0 1 +1 2 +2 3 +3 0 +4 5 +5 6 +6 7 +7 4 +0 4 +1 5 +2 6 +3 7 +0 1 2 3 +4 5 6 7 +0 1 5 4 +1 2 6 5 +2 3 7 6 +3 0 4 7 +0.5 :pre + +A rod in 3D, whose length is 4.0, mass 1.0 and rounded at two ends +by circles of diameter 0.5, is specified as follows: + +1 1 13 +2 +0 1.33333 1.33333 0 0 0 +-2 0 0 +2 0 0 +0.5 :pre + +A sphere whose diameter is 3.0 and mass 1.0, is specified as follows: + +1 1 10 +1 +0.9 0.9 0.9 0 0 0 +0 0 0 +3.0 :pre + +The "pair_style +body/rounded/polhedron"_pair_body_rounded_polyhedron.html command can +be used with this body style to compute body/body interactions. The +"fix wall/body/polyhedron"_fix_wall_body_polygon.html command can be +used with this body style to compute the interaction of body particles +with a wall. + +:line For output purposes via the "compute body/local"_compute_body_local.html and "dump local"_dump.html @@ -257,10 +435,10 @@ the body particle itself. These values are calculated using the current COM and orientation of the body particle. For images created by the "dump image"_dump_image.html command, if the -{body} keyword is set, then each body particle is drawn as a convex -polygon consisting of N line segments. Note that the line segments -are drawn between the N vertices, which does not correspond exactly to -the physical extent of the body (because the "pair_style +{body} keyword is set, then each body particle is drawn as a polygon +consisting of N line segments. Note that the line segments are drawn +between the N vertices, which does not correspond exactly to the +physical extent of the body (because the "pair_style rounded/polygon"_pair_body_rounded_polygon.html defines finite-size spheres at those point and the line segments between the spheres are tangent to the spheres). The drawn diameter of each line segment is @@ -269,6 +447,10 @@ determined by the {bflag1} parameter for the {body} keyword. The :line -:link(Fraige) +:link(body-Fraige) [(Fraige)] F. Y. Fraige, P. A. Langston, A. J. Matchett, J. Dodds, Particuology, 6, 455 (2008). + +:link(body-Wang) +[(Wang)] J. Wang, H. S. Yu, P. A. Langston, F. Y. Fraige, Granular +Matter, 13, 1 (2011). diff --git a/doc/src/bond_class2.txt b/doc/src/bond_class2.txt index 9687a6316805acb77298f74eeb84952e8f4243fe..049482c97394572d6af86fa598c181ece78af16b 100644 --- a/doc/src/bond_class2.txt +++ b/doc/src/bond_class2.txt @@ -44,10 +44,9 @@ K4 (energy/distance^4) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -59,8 +58,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_fene.txt b/doc/src/bond_fene.txt index 9050c3bf5ccecdd8701f414ef0caea5e39a19c2c..be154a53b1c88a7cfe8409aa3074e0ba0e1890e1 100644 --- a/doc/src/bond_fene.txt +++ b/doc/src/bond_fene.txt @@ -47,10 +47,9 @@ sigma (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -62,8 +61,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_fene_expand.txt b/doc/src/bond_fene_expand.txt index ff687444a97378373514442bda71a614b74bd821..77ebd977c8d7b067ad6feef461c61ec2639e0899 100644 --- a/doc/src/bond_fene_expand.txt +++ b/doc/src/bond_fene_expand.txt @@ -50,10 +50,9 @@ delta (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -65,8 +64,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_gromos.txt b/doc/src/bond_gromos.txt index cc3ff75878f36dd27f2d85b61ae3bfb522f52583..7a56cb3afa8da3c0f274335c74a84e482eb2425c 100644 --- a/doc/src/bond_gromos.txt +++ b/doc/src/bond_gromos.txt @@ -40,10 +40,9 @@ r0 (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -55,8 +54,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_harmonic.txt b/doc/src/bond_harmonic.txt index c18a7e0fd4d35a337a832255b64b4daf8f07392f..54e89fcc72d05d89e01382d7e9d55fd6bae11b2f 100644 --- a/doc/src/bond_harmonic.txt +++ b/doc/src/bond_harmonic.txt @@ -42,10 +42,9 @@ r0 (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -57,8 +56,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_harmonic_shift.txt b/doc/src/bond_harmonic_shift.txt index bf3b3c115adeb59fcbd0a7a51e36a4612e6c020d..0213b5cc6fb5e82b07917a96ce5ad239a251a9bd 100644 --- a/doc/src/bond_harmonic_shift.txt +++ b/doc/src/bond_harmonic_shift.txt @@ -43,10 +43,9 @@ rc (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -58,8 +57,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_harmonic_shift_cut.txt b/doc/src/bond_harmonic_shift_cut.txt index 1918ce00b6210468a119d332762ed85f8f2bad0e..d907bf4a629a4ebebde1e8c8552a3f0960d613fa 100644 --- a/doc/src/bond_harmonic_shift_cut.txt +++ b/doc/src/bond_harmonic_shift_cut.txt @@ -43,10 +43,9 @@ rc (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -58,8 +57,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_morse.txt b/doc/src/bond_morse.txt index 4f6a32e341b57a7977e4aaabc83d8dd1a1282137..66f2d08cabe033b1864a4558a2a8e058ca8e53ad 100644 --- a/doc/src/bond_morse.txt +++ b/doc/src/bond_morse.txt @@ -41,10 +41,9 @@ r0 (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -56,8 +55,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_nonlinear.txt b/doc/src/bond_nonlinear.txt index 434af625061a45679e9f01630c3999743d6d77ee..e0aa5629b3ec496c1700009b59615b989a992c8d 100644 --- a/doc/src/bond_nonlinear.txt +++ b/doc/src/bond_nonlinear.txt @@ -41,10 +41,9 @@ lamda (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -56,8 +55,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_oxdna.txt b/doc/src/bond_oxdna.txt index 2add6f4c2f0fb1f31aabaccca596cddbb41c5687..927fea64031d5422615d1251b9332e4e66120d3a 100644 --- a/doc/src/bond_oxdna.txt +++ b/doc/src/bond_oxdna.txt @@ -51,9 +51,11 @@ The coefficients in the above example have to be kept fixed and cannot be change Example input and data files for DNA duplexes can be found in examples/USER/cgdna/examples/oxDNA/ and /oxDNA2/. A simple python setup tool which creates single straight or helical DNA strands, DNA duplexes or arrays of DNA duplexes can be found in examples/USER/cgdna/util/. -A technical report with more information on the model, the structure of the input file, -the setup tool and the performance of the LAMMPS-implementation of oxDNA -can be found "here"_PDF/USER-CGDNA-overview.pdf. + +Please cite "(Henrich)"_#Henrich2 and the relevant oxDNA articles in any publication that uses this implementation. +The article contains more information on the model, the structure of the input file, the setup tool +and the performance of the LAMMPS-implementation of oxDNA. +The preprint version of the article can be found "here"_PDF/USER-CGDNA.pdf. :line @@ -72,6 +74,9 @@ LAMMPS"_Section_start.html#start_3 section for more info on packages. :line +:link(Henrich2) +[(Henrich)] O. Henrich, Y. A. Gutierrez-Fosado, T. Curk, T. E. Ouldridge, Eur. Phys. J. E 41, 57 (2018). + :link(oxdna_fene) [(Ouldridge)] T.E. Ouldridge, A.A. Louis, J.P.K. Doye, J. Chem. Phys. 134, 085101 (2011). diff --git a/doc/src/bond_quartic.txt b/doc/src/bond_quartic.txt index 4dc7ad4a3693e8d0ed492514fbaaf5f15deaecd0..760a5d7f07b65cfab5c8e4cbc99419922c8b0eba 100644 --- a/doc/src/bond_quartic.txt +++ b/doc/src/bond_quartic.txt @@ -76,10 +76,9 @@ delete_bonds all bond 0 remove :pre Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -91,8 +90,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/bond_table.txt b/doc/src/bond_table.txt index 906d3e5d7639eb08e211554b2817195dd383bcf1..fe0b3ce22bbc388b405e6cce32b7be6466559451 100644 --- a/doc/src/bond_table.txt +++ b/doc/src/bond_table.txt @@ -121,10 +121,9 @@ one that matches the specified keyword. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -136,8 +135,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/compute.txt b/doc/src/compute.txt index c06735d28e3dbe0091b3426eebbf264f1e147ad0..532a5414e38a4f2d3fe7b70790d048703d8987b5 100644 --- a/doc/src/compute.txt +++ b/doc/src/compute.txt @@ -153,8 +153,8 @@ via the "compute_modify"_compute_modify.html command. Computes can be deleted with the "uncompute"_uncompute.html command. -Code for new computes can be added to LAMMPS (see "this -section"_Section_modify.html of the manual) and the results of their +Code for new computes can be added to LAMMPS; see the +"Modify"_Modify.html doc page for details. The results of their calculations accessed in the various ways described above. :line diff --git a/doc/src/compute_ackland_atom.txt b/doc/src/compute_ackland_atom.txt index b75d100112b9f3a9a5e49d1ec282f275e56a9014..3fd838d95775ae9e97f7ad8da792112b9890d80d 100644 --- a/doc/src/compute_ackland_atom.txt +++ b/doc/src/compute_ackland_atom.txt @@ -10,19 +10,29 @@ compute ackland/atom command :h3 [Syntax:] -compute ID group-ID ackland/atom :pre +compute ID group-ID ackland/atom keyword/value :pre -ID, group-ID are documented in "compute"_compute.html command -ackland/atom = style name of this compute command :ul +ID, group-ID are documented in "compute"_compute.html command :ulb,l +ackland/atom = style name of this compute command :l + +zero or more keyword/value pairs may be appended :l +keyword = {legacy} :l + {legacy} yes/no = use ({yes}) or do not use ({no}) legacy ackland algorithm implementation :pre +:ule [Examples:] -compute 1 all ackland/atom :pre +compute 1 all ackland/atom +compute 1 all ackland/atom legacy yes :pre [Description:] Defines a computation that calculates the local lattice structure according to the formulation given in "(Ackland)"_#Ackland. +Historically, LAMMPS had two, slightly different implementations of +the algorithm from the paper. With the {legacy} keyword, it is +possible to switch between the pre-2015 ({legacy yes}) and post-2015 +implemention ({legacy no}). The post-2015 variant is the default. In contrast to the "centro-symmetry parameter"_compute_centro_atom.html this method is stable against @@ -66,7 +76,8 @@ integers defined above. "compute centro/atom"_compute_centro_atom.html -[Default:] none +[Default:] +The keyword {legacy} defaults to {no}. :line diff --git a/doc/src/compute_chunk_atom.txt b/doc/src/compute_chunk_atom.txt index 3a46f79d160013e96c177c3939454da9a6f4ecc7..00a75f50c439ad4f0896d9e654f332057eacdb02 100644 --- a/doc/src/compute_chunk_atom.txt +++ b/doc/src/compute_chunk_atom.txt @@ -275,7 +275,7 @@ previously defined in the input script. If no bracketed integer is appended, the per-atom vector calculated by the compute is used. If a bracketed integer is appended, the Ith column of the per-atom array calculated by the compute is used. Users can also write code for -their own compute styles and "add them to LAMMPS"_Section_modify.html. +their own compute styles and "add them to LAMMPS"_Modify.html. If the style begins with "f_", a fix ID must follow which has been previously defined in the input script. If no bracketed integer is @@ -285,7 +285,7 @@ calculated by the fix is used. Note that some fixes only produce their values on certain timesteps, which must be compatible with the timestep on which this compute accesses the fix, else an error results. Users can also write code for their own fix styles and "add -them to LAMMPS"_Section_modify.html. +them to LAMMPS"_Modify.html. If a value begins with "v_", a variable name for an {atom} or {atomfile} style "variable"_variable.html must follow which has been diff --git a/doc/src/compute_displace_atom.txt b/doc/src/compute_displace_atom.txt index 39c301cf911a159089189ee02cef15a5ffae4d1e..00e5f696c118029431bf5a36395bcd906fe432ee 100644 --- a/doc/src/compute_displace_atom.txt +++ b/doc/src/compute_displace_atom.txt @@ -15,7 +15,7 @@ compute ID group-ID displace/atom :pre ID, group-ID are documented in "compute"_compute.html command :ulb,l displace/atom = style name of this compute command :l zero or more keyword/arg pairs may be appended :l -keyword = {refresh} : +keyword = {refresh} :l {replace} arg = name of per-atom variable :pre :ule diff --git a/doc/src/compute_entropy_atom.txt b/doc/src/compute_entropy_atom.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7e7b8a66764427cd117c4305920d457efbd7e2b --- /dev/null +++ b/doc/src/compute_entropy_atom.txt @@ -0,0 +1,130 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +compute entropy/atom command :h3 + +[Syntax:] + +compute ID group-ID entropy/atom sigma cutoff keyword value ... :pre + +ID, group-ID are documented in "compute"_compute.html command :l +entropy/atom = style name of this compute command :l +sigma = width of gaussians used in the g(r) smoothening :l +cutoff = cutoff for the g(r) calculation :l +one or more keyword/value pairs may be appended :l +keyword = {avg} or {local} + {avg} values = {yes} or {no} cutoff2 + {yes} = average the pair entropy over neighbors + {no} = do not average the pair entropy over neighbors + cutoff2 = cutoff for the averaging over neighbors + {local} values = {yes} or {no} = use the local density around each atom to normalize the g(r) :pre +:ule + +[Examples:] + +compute 1 all entropy/atom 0.25 5. +compute 1 all entropy/atom 0.25 5. avg yes 5. +compute 1 all entropy/atom 0.125 7.3 avg yes 5.1 local yes :pre + +[Description:] + +Define a computation that calculates the pair entropy fingerprint for +each atom in the group. The fingerprint is useful to distinguish between +ordered and disordered environments, for instance liquid and solid-like +environments, or glassy and crystalline-like environments. Some +applications could be the identification of grain boundaries, a +melt-solid interface, or a solid cluster emerging from the melt. +The advantage of this parameter over others is that no a priori +information about the solid structure is required. + +This parameter for atom i is computed using the following formula from +"(Piaggi)"_#Piaggi and "(Nettleton)"_#Nettleton , + +:c,image(Eqs/pair_entropy.jpg) + +where r is a distance, g(r) is the radial distribution function of atom +i and rho is the density of the system. The g(r) computed for each +atom i can be noisy and therefore it is smoothened using: + +:c,image(Eqs/pair_entropy2.jpg) + +where the sum in j goes through the neighbors of atom i, and sigma is a +parameter to control the smoothening. + +The input parameters are {sigma} the smoothening parameter, and the +{cutoff} for the calculation of g(r). + +If the keyword {avg} has the setting {yes}, then this compute also +averages the parameter over the neighbors of atom i according to: + +:c,image(Eqs/pair_entropy3.jpg) + +where the sum j goes over the neighbors of atom i and N is the number +of neighbors. This procedure provides a sharper distinction between +order and disorder environments. In this case the input parameter +{cutoff2} is the cutoff for the averaging over the neighbors and +must also be specified. + +If the {avg yes} option is used, the effective cutoff of the neighbor +list should be {cutoff}+{cutoff2} and therefore it might be necessary +to increase the skin of the neighbor list with: + +neighbor skin bin :pre + +See "neighbor"_neighbor.html for details. + +If the {local yes} option is used, the g(r) is normalized by the +local density around each atom, that is to say the density around each +atom is the number of neighbors within the neighbor list cutoff divided +by the corresponding volume. This option can be useful when dealing with +inhomogeneus systems such as those that have surfaces. + +Here are typical input parameters for fcc aluminum (lattice +constant 4.05 Angstroms), + +compute 1 all entropy/atom 0.25 5.7 avg yes 3.7 :pre + +and for bcc sodium (lattice constant 4.23 Angstroms), + +compute 1 all entropy/atom 0.25 7.3 avg yes 5.1 :pre + + +[Output info:] + +By default, this compute calculates the pair entropy value for each +atom as a per-atom vector, which can be accessed by any command that +uses per-atom values from a compute as input. See "Section +6.15"_Section_howto.html#howto_15 for an overview of LAMMPS output +options. + +The pair entropy values have units of the Boltzmann constant. They are +always negative, and lower values (lower entropy) correspond to more +ordered environments. + +[Restrictions:] + +This compute is part of the USER-MISC package. It is only enabled if +LAMMPS was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. + +[Related commands:] + +"compute cna/atom"_compute_cna_atom.html +"compute centro/atom"_compute_centro_atom.html + +[Default:] + +The default values for the optional keywords are avg = no and local = no. + +:line + +:link(Piaggi) +[(Piaggi)] Piaggi and Parrinello, J Chem Phys, 147, 114112 (2017). + +:link(Nettleton) +[(Nettleton)] Nettleton and Green, J Chem Phys, 29, 6 (1958). diff --git a/doc/src/compute_global_atom.txt b/doc/src/compute_global_atom.txt index 3136b1fd18f849bcf6c69b328983b8aa135d5c50..28b4aa2461b9be2841c5a8cb1253228ab922a5b3 100644 --- a/doc/src/compute_global_atom.txt +++ b/doc/src/compute_global_atom.txt @@ -130,7 +130,7 @@ page for details. If no bracketed integer is appended, the per-atom vector calculated by the compute is used. If a bracketed integer is appended, the Ith column of the per-atom array calculated by the compute is used. Users can also write code for their own compute -styles and "add them to LAMMPS"_Section_modify.html. See the +styles and "add them to LAMMPS"_Modify.html. See the discussion above for how I can be specified with a wildcard asterisk to effectively specify multiple values. @@ -143,7 +143,7 @@ references the values, else an error results. If no bracketed integer is appended, the per-atom vector calculated by the fix is used. If a bracketed integer is appended, the Ith column of the per-atom array calculated by the fix is used. Users can also write code for their -own fix style and "add them to LAMMPS"_Section_modify.html. See the +own fix style and "add them to LAMMPS"_Modify.html. See the discussion above for how I can be specified with a wildcard asterisk to effectively specify multiple values. @@ -168,7 +168,7 @@ page for details. If no bracketed integer is appended, the vector calculated by the compute is used. If a bracketed integer is appended, the Ith column of the array calculated by the compute is used. Users can also write code for their own compute styles and "add -them to LAMMPS"_Section_modify.html. See the discussion above for how +them to LAMMPS"_Modify.html. See the discussion above for how I can be specified with a wildcard asterisk to effectively specify multiple values. @@ -181,7 +181,7 @@ global/atom references the values, else an error results. If no bracketed integer is appended, the vector calculated by the fix is used. If a bracketed integer is appended, the Ith column of the array calculated by the fix is used. Users can also write code for their -own fix style and "add them to LAMMPS"_Section_modify.html. See the +own fix style and "add them to LAMMPS"_Modify.html. See the discussion above for how I can be specified with a wildcard asterisk to effectively specify multiple values. diff --git a/doc/src/compute_heat_flux.txt b/doc/src/compute_heat_flux.txt index e8adac3deb5e71a5cd3ed3c15088868b3b8768f5..39a1470201fc3f6705ee222e9719261aeae5dd4f 100644 --- a/doc/src/compute_heat_flux.txt +++ b/doc/src/compute_heat_flux.txt @@ -26,14 +26,16 @@ compute myFlux all heat/flux myKE myPE myStress :pre Define a computation that calculates the heat flux vector based on contributions from atoms in the specified group. This can be used by -itself to measure the heat flux into or out of a reservoir of atoms, -or to calculate a thermal conductivity using the Green-Kubo formalism. - -See the "fix thermal/conductivity"_fix_thermal_conductivity.html -command for details on how to compute thermal conductivity in an -alternate way, via the Muller-Plathe method. See the "fix -heat"_fix_heat.html command for a way to control the heat added or -subtracted to a group of atoms. +itself to measure the heat flux through a set of atoms (e.g. a region +between two thermostatted reservoirs held at different temperatures), +or to calculate a thermal conductivity using the equilibrium +Green-Kubo formalism. + +For other non-equilibrium ways to compute a thermal conductivity, see +"this section"_Section_howto.html#howto_20. These include use of the +"fix thermal/conductivity"_fix_thermal_conductivity.html command for +the Muller-Plathe method. Or the "fix heat"_fix_heat.html command +which can add or subtract heat from groups of atoms. The compute takes three arguments which are IDs of other "computes"_compute.html. One calculates per-atom kinetic energy diff --git a/doc/src/compute_pressure.txt b/doc/src/compute_pressure.txt index f0691ad20762758234828f976e7519ef47568d57..8b7491da4946891650ceef0cd1c3111cb318b453 100644 --- a/doc/src/compute_pressure.txt +++ b/doc/src/compute_pressure.txt @@ -105,10 +105,9 @@ where "thermo_temp" is the ID of a similarly defined compute of style Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -120,8 +119,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/compute_property_atom.txt b/doc/src/compute_property_atom.txt index bac19918ba7ccefedb982449b91db8cd086edae7..c0970d5121cca49705fa5eb5eb02407f490a04e5 100644 --- a/doc/src/compute_property_atom.txt +++ b/doc/src/compute_property_atom.txt @@ -19,6 +19,7 @@ input = one or more atom attributes :l x, y, z, xs, ys, zs, xu, yu, zu, ix, iy, iz, vx, vy, vz, fx, fy, fz, q, mux, muy, muz, mu, + sp, spx, spy, spz, fmx, fmy, fmz, radius, diameter, omegax, omegay, omegaz, angmomx, angmomy, angmomz, shapex,shapey, shapez, @@ -46,6 +47,9 @@ input = one or more atom attributes :l q = atom charge mux,muy,muz = orientation of dipole moment of atom mu = magnitude of dipole moment of atom + sp = atomic magnetic spin moment + spx, spy, spz = direction of the atomic magnetic spin + fmx, fmy, fmz = magnetic force radius,diameter = radius,diameter of spherical particle omegax,omegay,omegaz = angular velocity of spherical particle angmomx,angmomy,angmomz = angular momentum of aspherical particle @@ -82,7 +86,8 @@ input = one or more atom attributes :l compute 1 all property/atom xs vx fx mux compute 2 all property/atom type -compute 1 all property/atom ix iy iz :pre +compute 1 all property/atom ix iy iz +compute 3 all property/atom sp spx spy spz :pre [Description:] @@ -152,6 +157,10 @@ The vector or array values will be in whatever "units"_units.html the corresponding attribute is in, e.g. velocity units for vx, charge units for q, etc. +For the spin quantities, sp is in the units of the Bohr magneton, spx, +spy, and spz are adimentional quantities, and fmx, fmy and fmz are +given in rad.THz. + [Restrictions:] none [Related commands:] diff --git a/doc/src/compute_reduce.txt b/doc/src/compute_reduce.txt index 07d3c3bda7b88e277f36cb2e839398763488ca40..48115a08861e6e272ea71cb86fdb0276c00aedee 100644 --- a/doc/src/compute_reduce.txt +++ b/doc/src/compute_reduce.txt @@ -116,7 +116,7 @@ per-atom or local quantities. See the individual is appended, the vector calculated by the compute is used. If a bracketed integer is appended, the Ith column of the array calculated by the compute is used. Users can also write code for their own -compute styles and "add them to LAMMPS"_Section_modify.html. See the +compute styles and "add them to LAMMPS"_Modify.html. See the discussion above for how I can be specified with a wildcard asterisk to effectively specify multiple values. @@ -129,9 +129,9 @@ references the values, else an error results. If no bracketed integer is appended, the vector calculated by the fix is used. If a bracketed integer is appended, the Ith column of the array calculated by the fix is used. Users can also write code for their own fix style and "add -them to LAMMPS"_Section_modify.html. See the discussion above for how -I can be specified with a wildcard asterisk to effectively specify -multiple values. +them to LAMMPS"_Modify.html. See the discussion above for how I can +be specified with a wildcard asterisk to effectively specify multiple +values. If a value begins with "v_", a variable name must follow which has been previously defined in the input script. It must be an diff --git a/doc/src/compute_slice.txt b/doc/src/compute_slice.txt index e89c05a0f95a0e2b39d2545a512fe158c4bd39e3..13f40ecf9220c3245f6956c2c4d5908d974bb29e 100644 --- a/doc/src/compute_slice.txt +++ b/doc/src/compute_slice.txt @@ -58,7 +58,7 @@ page for details. If no bracketed integer is appended, the vector calculated by the compute is used. If a bracketed integer is appended, the Ith column of the array calculated by the compute is used. Users can also write code for their own compute styles and "add -them to LAMMPS"_Section_modify.html. +them to LAMMPS"_Modify.html. If a value begins with "f_", a fix ID must follow which has been previously defined in the input script and which generates a global @@ -69,7 +69,7 @@ the values, else an error results. If no bracketed integer is appended, the vector calculated by the fix is used. If a bracketed integer is appended, the Ith column of the array calculated by the fix is used. Users can also write code for their own fix style and "add -them to LAMMPS"_Section_modify.html. +them to LAMMPS"_Modify.html. If an input value begins with "v_", a variable name must follow which has been previously defined in the input script. Only vector-style diff --git a/doc/src/compute_sna_atom.txt b/doc/src/compute_sna_atom.txt index 1c3787e696638191373d0b563f461c37d42dddad..268e23ac2808d82f8750b95bd652cd4d50f6b9d2 100644 --- a/doc/src/compute_sna_atom.txt +++ b/doc/src/compute_sna_atom.txt @@ -161,9 +161,9 @@ function. The keyword {bzeroflag} determines whether or not {B0}, the bispectrum components of an atom with no neighbors, are subtracted from -the calculated bispectrum components. This optional keyword is only -available for compute {sna/atom}, as {snad/atom} and {snav/atom} -are unaffected by the removal of constant terms. +the calculated bispectrum components. This optional keyword +normally only affects compute {sna/atom}. However, when +{quadraticflag} is on, it also affects {snad/atom} and {snav/atom}. The keyword {quadraticflag} determines whether or not the quadratic analogs to the bispectrum quantities are generated. @@ -230,13 +230,18 @@ are 30, 90, and 180, respectively. With {quadratic} value=1, the numbers of columns are 930, 2790, and 5580, respectively. If the {quadratic} keyword value is set to 1, then additional -columns are appended to each per-atom array, corresponding to +columns are generated, corresponding to the products of all distinct pairs of bispectrum components. If the number of bispectrum components is {K}, then the number of distinct pairs -is {K}({K}+1)/2. These are output in subblocks of {K}({K}+1)/2 columns, using the same -ordering of sub-blocks as was used for the bispectrum -components. Within each sub-block, the ordering is upper-triangular, -(1,1),(1,2)...(1,{K}),(2,1)...({K}-1,{K}-1),({K}-1,{K}),({K},{K}) +is {K}({K}+1)/2. +For compute {sna/atom} these columns are appended to existing {K} columns. +The ordering of quadratic terms is upper-triangular, +(1,1),(1,2)...(1,{K}),(2,1)...({K}-1,{K}-1),({K}-1,{K}),({K},{K}). +For computes {snad/atom} and {snav/atom} each set of {K}({K}+1)/2 +additional columns is inserted directly after each of sub-block +of linear terms i.e. linear and quadratic terms are contiguous. +So the nesting order from inside to outside is bispectrum component, +linear then quadratic, vector/tensor component, type. These values can be accessed by any command that uses per-atom values from a compute as input. See "Section diff --git a/doc/src/compute_spin.txt b/doc/src/compute_spin.txt new file mode 100644 index 0000000000000000000000000000000000000000..fcc764c14cb0f7cc88869655bf8d2df1f745c777 --- /dev/null +++ b/doc/src/compute_spin.txt @@ -0,0 +1,78 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +compute spin command :h3 + +[Syntax:] + +compute ID group-ID compute/spin :pre + +ID, group-ID are documented in "compute"_compute.html command +compute/spin = style name of this compute command :ul + +[Examples:] + +compute out_mag all compute/spin :pre + +[Description:] + +Define a computation that calculates magnetic quantities for a system +of atoms having spins. + +This compute calculates 6 magnetic quantities. + +The three first quantities are the x,y and z coordinates of the total magnetization. + +The fourth quantity is the norm of the total magnetization. + +The fifth quantity is the magnetic energy. + +The sixth one is referred to as the spin temperature, according +to the work of "(Nurdin)"_#Nurdin1. + +The simplest way to output the results of the compute spin calculation +is to define some of the quantities as variables, and to use the thermo and +thermo_style commands, for example: + +compute out_mag all compute/spin :pre + +variable mag_z equal c_out_mag\[3\] +variable mag_norm equal c_out_mag\[4\] +variable temp_mag equal c_out_mag\[6\] :pre + +thermo 10 +thermo_style custom step v_mag_z v_mag_norm v_temp_mag :pre + +This serie of commands evaluates the total magnetization along z, the norm of +the total magnetization, and the magnetic temperature. Three variables are +assigned to those quantities. The thermo and thermo_style commands print them +every 10 timesteps. + + +[Output info:] + +The array values are "intensive". The array values will be in +metal units ("units"_units.html). + +[Restrictions:] + +The {spin} compute is part of the SPIN package. +This compute is only enabled if LAMMPS was built with this package. +See the "Making LAMMPS"_Section_start.html#start_3 section for more info. +The atom_style has to be "spin" for this compute to be valid. + +[Related commands:] none + + +[Default:] none + +:line + +:link(Nurdin1) +[(Nurdin)] Nurdin and Schotte Phys Rev E, 61(4), 3579 (2000) + diff --git a/doc/src/compute_temp.txt b/doc/src/compute_temp.txt index b88be79e20704a41482ad444668ca8b81d0c4b32..f9fa56c88283e1082704b8622a831982736c3861 100644 --- a/doc/src/compute_temp.txt +++ b/doc/src/compute_temp.txt @@ -67,10 +67,9 @@ thermostatting. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -82,8 +81,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/compute_temp_partial.txt b/doc/src/compute_temp_partial.txt index fe2420b4e40d8d28e0b824d8022b8322596877f6..59ec8cf20b6f38949df74c993f667b1733d7088e 100644 --- a/doc/src/compute_temp_partial.txt +++ b/doc/src/compute_temp_partial.txt @@ -74,10 +74,9 @@ thermostatting. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -89,8 +88,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/computes.txt b/doc/src/computes.txt index 1b64e2e5b46393313fc74099ef9bbf04da946b74..46dd30f7570f7a87d9874367f67f1d4af85a2fca 100644 --- a/doc/src/computes.txt +++ b/doc/src/computes.txt @@ -31,6 +31,7 @@ Computes :h1 compute_dpd compute_dpd_atom compute_edpd_temp_atom + compute_entropy_atom compute_erotate_asphere compute_erotate_rigid compute_erotate_sphere @@ -95,6 +96,7 @@ Computes :h1 compute_smd_ulsph_stress compute_smd_vol compute_sna_atom + compute_spin compute_stress_atom compute_tally compute_tdpd_cc_atom diff --git a/doc/src/create_bonds.txt b/doc/src/create_bonds.txt index 6af69214d3c4523318945c3bf70ac0547621dd64..6700ed29d3f3f6d9b3c7d5094b182a1bf6235a82 100644 --- a/doc/src/create_bonds.txt +++ b/doc/src/create_bonds.txt @@ -37,8 +37,8 @@ keyword = {special} :l create_bonds many all all 1 1.0 1.2 create_bonds many surf solvent 3 2.0 2.4 -create_bond single/bond 1 1 2 -create_bond single/angle 5 52 98 107 special no :pre +create_bonds single/bond 1 1 2 +create_bonds single/angle 5 52 98 107 special no :pre [Description:] diff --git a/doc/src/dihedral_charmm.txt b/doc/src/dihedral_charmm.txt index 06abe054e4819e7c7e9ea9e248e7f2285e423572..f808649a44da0c3ef018ba279c38ec4228e7fc9c 100644 --- a/doc/src/dihedral_charmm.txt +++ b/doc/src/dihedral_charmm.txt @@ -116,10 +116,9 @@ computed. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -131,8 +130,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_class2.txt b/doc/src/dihedral_class2.txt index cb9fc72c223b2293990764db4b0dffb59dc249b5..41282b22a3149d59bc72dc1cfb87267a41cde38d 100644 --- a/doc/src/dihedral_class2.txt +++ b/doc/src/dihedral_class2.txt @@ -141,10 +141,9 @@ r3 (distance) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -156,8 +155,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_cosine_shift_exp.txt b/doc/src/dihedral_cosine_shift_exp.txt index 715682affc010e657556ba9221ca68a093b5259a..483745be4181cea4d59631f0d7f9711abbdecd0d 100644 --- a/doc/src/dihedral_cosine_shift_exp.txt +++ b/doc/src/dihedral_cosine_shift_exp.txt @@ -52,10 +52,9 @@ A (real number) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -67,8 +66,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_fourier.txt b/doc/src/dihedral_fourier.txt index 0accbb22bf80bfb89e1b77bd7fa8760e56ad3e55..0270139f68197e4217fa3f089a1c03dd4de4fbc3 100644 --- a/doc/src/dihedral_fourier.txt +++ b/doc/src/dihedral_fourier.txt @@ -44,10 +44,9 @@ dm (degrees) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -59,8 +58,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_harmonic.txt b/doc/src/dihedral_harmonic.txt index d9a48ff384d9df3dd9228a05be3c523302b80362..a25a7969fe70b8402c1719caf312fc113ca97544 100644 --- a/doc/src/dihedral_harmonic.txt +++ b/doc/src/dihedral_harmonic.txt @@ -53,10 +53,9 @@ Some force fields let {n} be positive or negative which corresponds to Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -68,8 +67,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_helix.txt b/doc/src/dihedral_helix.txt index 1e907557b28564f74e3f080160997a107941d4b5..814962a472b7b240ec61eae4ca3dc41762771552 100644 --- a/doc/src/dihedral_helix.txt +++ b/doc/src/dihedral_helix.txt @@ -46,10 +46,9 @@ C (energy) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -61,8 +60,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_multi_harmonic.txt b/doc/src/dihedral_multi_harmonic.txt index 7d3c2ea083d0ef78b7e275caa9ca51e1305e8e49..62cad4141a6a27283eb725715de91dbbcf4721b7 100644 --- a/doc/src/dihedral_multi_harmonic.txt +++ b/doc/src/dihedral_multi_harmonic.txt @@ -40,10 +40,9 @@ A5 (energy) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -55,8 +54,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_nharmonic.txt b/doc/src/dihedral_nharmonic.txt index 8392d83899de8c41cd855e6a038f3e7a585ec08a..a49979fa66ac13a24dbc22e75868337cda771b05 100644 --- a/doc/src/dihedral_nharmonic.txt +++ b/doc/src/dihedral_nharmonic.txt @@ -40,10 +40,9 @@ An (energy) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -55,8 +54,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_opls.txt b/doc/src/dihedral_opls.txt index d1a6ba3ff2865db905b97bf72b70d343f509e06e..9b33173da4fe35a9890de29e601d812ff83505ec 100644 --- a/doc/src/dihedral_opls.txt +++ b/doc/src/dihedral_opls.txt @@ -48,10 +48,9 @@ K4 (energy) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -63,8 +62,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_quadratic.txt b/doc/src/dihedral_quadratic.txt index ca2f5aed40f2f67512a255813689a50e35a4c7d7..f90c4b79f159591a0e6d639ae720da32a4be61e3 100644 --- a/doc/src/dihedral_quadratic.txt +++ b/doc/src/dihedral_quadratic.txt @@ -41,10 +41,9 @@ phi0 (degrees) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -56,8 +55,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/dihedral_table.txt b/doc/src/dihedral_table.txt index 0b88f26a61076c6b10750ea419b947fb88a0dd8f..6a480fec93397fa262f39b42eee0e45c18bcf774 100644 --- a/doc/src/dihedral_table.txt +++ b/doc/src/dihedral_table.txt @@ -174,10 +174,9 @@ that matches the specified keyword. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -189,8 +188,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restrictions:] diff --git a/doc/src/dihedral_table_cut.txt b/doc/src/dihedral_table_cut.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c83d4ffa09f7221ac8c3859594abc754b9b28c4 --- /dev/null +++ b/doc/src/dihedral_table_cut.txt @@ -0,0 +1,205 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +dihedral_style table/cut command :h3 + +[Syntax:] + +dihedral_style table/cut style Ntable :pre + +style = {linear} or {spline} = method of interpolation +Ntable = size of the internal lookup table :ul + +[Examples:] + +dihedral_style table/cut spline 400 +dihedral_style table/cut linear 1000 +dihedral_coeff 1 aat 1.0 177 180 file.table DIH_TABLE1 +dihedral_coeff 2 aat 0.5 170 180 file.table DIH_TABLE2 :pre + +[Description:] + +The {table/cut} dihedral style creates interpolation tables of length +{Ntable} from dihedral potential and derivative values listed in a +file(s) as a function of the dihedral angle "phi". In addition, an +analytic cutoff that is quadratic in the bond-angle (theta) is applied +in order to regularize the dihedral interaction. The dihedral table +files are read by the "dihedral_coeff"_dihedral_coeff.html command. + +The interpolation tables are created by fitting cubic splines to the +file values and interpolating energy and derivative values at each of +{Ntable} dihedral angles. During a simulation, these tables are used +to interpolate energy and force values on individual atoms as +needed. The interpolation is done in one of 2 styles: {linear} or +{spline}. + +For the {linear} style, the dihedral angle (phi) is used to find 2 +surrounding table values from which an energy or its derivative is +computed by linear interpolation. + +For the {spline} style, cubic spline coefficients are computed and +stored at each of the {Ntable} evenly-spaced values in the +interpolated table. For a given dihedral angle (phi), the appropriate +coefficients are chosen from this list, and a cubic polynomial is used +to compute the energy and the derivative at this angle. + +The following coefficients must be defined for each dihedral type via +the "dihedral_coeff"_dihedral_coeff.html command as in the example +above. + +style (aat) +cutoff prefactor +cutoff angle1 +cutoff angle2 +filename +keyword :ul + +The cutoff dihedral style uses a tabulated dihedral interaction with a +cutoff function: + +:c,image(Eqs/dihedral_table_cut.jpg) + +The cutoff specifies an prefactor to the cutoff function. While this value +would ordinarily equal 1 there may be situations where the value should change. + +The cutoff angle1 specifies the angle (in degrees) below which the dihedral +interaction is unmodified, i.e. the cutoff function is 1. + +The cutoff function is applied between angle1 and angle2, which is the angle at +which the cutoff function drops to zero. The value of zero effectively "turns +off" the dihedral interaction. + +The filename specifies a file containing tabulated energy and +derivative values. The keyword specifies a section of the file. The +format of this file is described below. + +:line + +The format of a tabulated file is as follows (without the +parenthesized comments). It can begin with one or more comment +or blank lines. + +# Table of the potential and its negative derivative :pre + +DIH_TABLE1 (keyword is the first text on line) +N 30 DEGREES (N, NOF, DEGREES, RADIANS, CHECKU/F) + (blank line) +1 -168.0 -1.40351172223 0.0423346818422 +2 -156.0 -1.70447981034 0.00811786522531 +3 -144.0 -1.62956100432 -0.0184129719987 +... +30 180.0 -0.707106781187 0.0719306095245 :pre + +# Example 2: table of the potential. Forces omitted :pre + +DIH_TABLE2 +N 30 NOF CHECKU testU.dat CHECKF testF.dat :pre + +1 -168.0 -1.40351172223 +2 -156.0 -1.70447981034 +3 -144.0 -1.62956100432 +... +30 180.0 -0.707106781187 :pre + +A section begins with a non-blank line whose 1st character is not a +"#"; blank lines or lines starting with "#" can be used as comments +between sections. The first line begins with a keyword which +identifies the section. The line can contain additional text, but the +initial text must match the argument specified in the +"dihedral_coeff"_dihedral_coeff.html command. The next line lists (in +any order) one or more parameters for the table. Each parameter is a +keyword followed by one or more numeric values. + +Following a blank line, the next N lines list the tabulated values. On +each line, the 1st value is the index from 1 to N, the 2nd value is +the angle value, the 3rd value is the energy (in energy units), and +the 4th is -dE/d(phi) also in energy units). The 3rd term is the +energy of the 4-atom configuration for the specified angle. The 4th +term (when present) is the negative derivative of the energy with +respect to the angle (in degrees, or radians depending on whether the +user selected DEGREES or RADIANS). Thus the units of the last term +are still energy, not force. The dihedral angle values must increase +from one line to the next. + +Dihedral table splines are cyclic. There is no discontinuity at 180 +degrees (or at any other angle). Although in the examples above, the +angles range from -180 to 180 degrees, in general, the first angle in +the list can have any value (positive, zero, or negative). However +the {range} of angles represented in the table must be {strictly} less +than 360 degrees (2pi radians) to avoid angle overlap. (You may not +supply entries in the table for both 180 and -180, for example.) If +the user's table covers only a narrow range of dihedral angles, +strange numerical behavior can occur in the large remaining gap. + +[Parameters:] + +The parameter "N" is required and its value is the number of table +entries that follow. Note that this may be different than the N +specified in the "dihedral_style table"_dihedral_style.html command. +Let {Ntable} is the number of table entries requested dihedral_style +command, and let {Nfile} be the parameter following "N" in the +tabulated file ("30" in the sparse example above). What LAMMPS does +is a preliminary interpolation by creating splines using the {Nfile} +tabulated values as nodal points. It uses these to interpolate as +needed to generate energy and derivative values at {Ntable} different +points (which are evenly spaced over a 360 degree range, even if the +angles in the file are not). The resulting tables of length {Ntable} +are then used as described above, when computing energy and force for +individual dihedral angles and their atoms. This means that if you +want the interpolation tables of length {Ntable} to match exactly what +is in the tabulated file (with effectively nopreliminary +interpolation), you should set {Ntable} = {Nfile}. To insure the +nodal points in the user's file are aligned with the interpolated +table entries, the angles in the table should be integer multiples of +360/{Ntable} degrees, or 2*PI/{Ntable} radians (depending on your +choice of angle units). + +The optional "NOF" keyword allows the user to omit the forces +(negative energy derivatives) from the table file (normally located in +the 4th column). In their place, forces will be calculated +automatically by differentiating the potential energy function +indicated by the 3rd column of the table (using either linear or +spline interpolation). + +The optional "DEGREES" keyword allows the user to specify angles in +degrees instead of radians (default). + +The optional "RADIANS" keyword allows the user to specify angles in +radians instead of degrees. (Note: This changes the way the forces +are scaled in the 4th column of the data file.) + +The optional "CHECKU" keyword is followed by a filename. This allows +the user to save all of the the {Ntable} different entries in the +interpolated energy table to a file to make sure that the interpolated +function agrees with the user's expectations. (Note: You can +temporarily increase the {Ntable} parameter to a high value for this +purpose. "{Ntable}" is explained above.) + +The optional "CHECKF" keyword is analogous to the "CHECKU" keyword. +It is followed by a filename, and it allows the user to check the +interpolated force table. This option is available even if the user +selected the "NOF" option. + +Note that one file can contain many sections, each with a tabulated +potential. LAMMPS reads the file section by section until it finds one +that matches the specified keyword. + +[Restrictions:] + +This dihedral style can only be used if LAMMPS was built with the +USER-MISC package. See the "Making LAMMPS"_Section_start.html#start_3 +section for more info on packages. + +[Related commands:] + +"dihedral_coeff"_dihedral_coeff.html, "dihedral_style table"_dihedral_table.html + +[Default:] none + +:link(dihedralcut-Salerno) +[(Salerno)] Salerno, Bernstein, J Chem Theory Comput, --, ---- (2018). diff --git a/doc/src/dihedrals.txt b/doc/src/dihedrals.txt index 500a6a52bf69b7beb641c414f6dee354d6ca6b7b..a862bf50a0a9c357ffeed1129e3b67423259447c 100644 --- a/doc/src/dihedrals.txt +++ b/doc/src/dihedrals.txt @@ -19,6 +19,7 @@ Dihedral Styles :h1 dihedral_quadratic dihedral_spherical dihedral_table + dihedral_table_cut dihedral_zero dihedral_charmm dihedral_class2 diff --git a/doc/src/dump.txt b/doc/src/dump.txt index 438ff1d4e074779f22217e851799a81f1f7ff857..ff1bf6424df10a43ffcefa95cae512ecfbf2f631 100644 --- a/doc/src/dump.txt +++ b/doc/src/dump.txt @@ -1,4 +1,4 @@ - "LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c :link(lws,http://lammps.sandia.gov) :link(ld,Manual.html) @@ -184,10 +184,10 @@ file and in what format. Settings made via the individual values and the file itself. The {atom}, {local}, and {custom} styles create files in a simple text -format that is self-explanatory when viewing a dump file. Many of the -LAMMPS "post-processing tools"_Section_tools.html, including -"Pizza.py"_http://www.sandia.gov/~sjplimp/pizza.html, work with this -format, as does the "rerun"_rerun.html command. +format that is self-explanatory when viewing a dump file. Some of the +LAMMPS post-processing tools described on the "Tools"_Tools.html doc +page, including "Pizza.py"_http://www.sandia.gov/~sjplimp/pizza.html, +work with this format, as does the "rerun"_rerun.html command. For post-processing purposes the {atom}, {local}, and {custom} text files are self-describing in the following sense. @@ -413,10 +413,10 @@ If the filename ends with ".bin", the dump file (or files, if "*" or will be about the same size as a text version, but will typically write out much faster. Of course, when post-processing, you will need to convert it back to text format (see the "binary2txt -tool"_Section_tools.html#binary) or write your own code to read the -binary file. The format of the binary file can be understood by -looking at the tools/binary2txt.cpp file. This option is only -available for the {atom} and {custom} styles. +tool"_Tools.html#binary) or write your own code to read the binary +file. The format of the binary file can be understood by looking at +the tools/binary2txt.cpp file. This option is only available for the +{atom} and {custom} styles. If the filename ends with ".gz", the dump file (or files, if "*" or "%" is also used) is written in gzipped format. A gzipped dump file will @@ -625,9 +625,9 @@ The {d_name} and {i_name} attributes allow to output custom per atom floating point or integer properties that are managed by "fix property/atom"_fix_property_atom.html. -See "Section 10"_Section_modify.html of the manual for information -on how to add new compute and fix styles to LAMMPS to calculate -per-atom quantities which could then be output into dump files. +See the "Modify"_Modify.html doc page for information on how to add +new compute and fix styles to LAMMPS to calculate per-atom quantities +which could then be output into dump files. :line diff --git a/doc/src/dump_image.txt b/doc/src/dump_image.txt index 3fa267d2b099a252bce78e49d24c69609dffac2a..c1732be972f6502111c71fbc411152e223c9053f 100644 --- a/doc/src/dump_image.txt +++ b/doc/src/dump_image.txt @@ -606,9 +606,9 @@ supported. :l :line -See "Section 10"_Section_modify.html of the manual for information -on how to add new compute and fix styles to LAMMPS to calculate -per-atom quantities which could then be output into dump files. +See the "Modify"_Modify.html doc page for information on how to add +new compute and fix styles to LAMMPS to calculate per-atom quantities +which could then be output into dump files. :line diff --git a/doc/src/dump_modify.txt b/doc/src/dump_modify.txt index 6de6de545e720d518316ea9d31c82fb825fd8c9c..5365610d640ab7598a11554d6c20bb47de8cf442 100644 --- a/doc/src/dump_modify.txt +++ b/doc/src/dump_modify.txt @@ -15,7 +15,7 @@ dump_modify dump-ID keyword values ... :pre dump-ID = ID of dump to modify :ulb,l one or more keyword/value pairs may be appended :l these keywords apply to various dump styles :l -keyword = {append} or {at} or {buffer} or {delay} or {element} or {every} or {fileper} or {first} or {flush} or {format} or {image} or {label} or {nfile} or {pad} or {precision} or {region} or {scale} or {sort} or {thresh} or {unwrap} :l +keyword = {append} or {at} or {buffer} or {delay} or {element} or {every} or {fileper} or {first} or {flush} or {format} or {image} or {label} or {maxfiles} or {nfile} or {pad} or {precision} or {region} or {scale} or {sort} or {thresh} or {unwrap} :l {append} arg = {yes} or {no} {at} arg = N N = index of frame written upon first dump @@ -37,6 +37,8 @@ keyword = {append} or {at} or {buffer} or {delay} or {element} or {every} or {fi {image} arg = {yes} or {no} {label} arg = string string = character string (e.g. BONDS) to use in header of dump local file + {maxfiles} arg = Fmax + Fmax = keep only the most recent {Fmax} snapshots (one snapshot per file) {nfile} arg = Nf Nf = write this many files, one from each of Nf processors {pad} arg = Nchar = # of characters to convert timestep to @@ -364,6 +366,20 @@ e.g. BONDS or ANGLES. :line +The {maxfiles} keyword can only be used when a '*' wildcard is +included in the dump file name, i.e. when writing a new file(s) for +each snapshot. The specified {Fmax} is how many snapshots will be +kept. Once this number is reached, the file(s) containing the oldest +snapshot is deleted before a new dump file is written. If the +specified {Fmax} <= 0, then all files are retained. + +This can be useful for debugging, especially if you don't know on what +timestep something bad will happen, e.g. when LAMMPS will exit with an +error. You can dump every timestep, and limit the number of dump +files produced, even if you run for 1000s of steps. + +:line + The {nfile} or {fileper} keywords can be used in conjunction with the "%" wildcard character in the specified dump file name, for all dump styles except the {dcd}, {image}, {movie}, {xtc}, and {xyz} styles @@ -470,7 +486,7 @@ to respond to the call from the dump command, and update the appropriate reference positions. This is done be defining an "atom-style variable"_variable.html, {check} in this example, which calculates a Boolean value (0 or 1) for each atom, based on the same -criterion used by dump_modify thresh. +criterion used by dump_modify thresh. See the "compute displace/atom"_compute_displace_atom.html command for more details, including an example of how to produce output that @@ -584,13 +600,13 @@ included.) region foo sphere 10 20 10 15 variable inregion atom rmask(foo) -dump_modify ... thresh v_inregion |^ LAST +dump_modify ... thresh v_inregion |^ LAST :pre This will dump atoms which crossed the boundary of the spherical region since the last dump. variable charge atom "(q > 0.5) || (q < -0.5)" -dump_modify ... thresh v_charge |^ LAST +dump_modify ... thresh v_charge |^ LAST :pre This will dump atoms whose charge has changed from an absolute value less than 1/2 to greater than 1/2 (or vice versa) since the last dump. @@ -901,6 +917,7 @@ flush = yes format = %d and %g for each integer or floating point value image = no label = ENTRIES +maxifiles = -1 nfile = 1 pad = 0 pbc = no diff --git a/doc/src/fix.txt b/doc/src/fix.txt index e54a918cd0e2d876088f9cc76a4a52136df71a7e..ba2088576f1b4137d61d89509d2e6089026864f4 100644 --- a/doc/src/fix.txt +++ b/doc/src/fix.txt @@ -30,9 +30,9 @@ Set a fix that will be applied to a group of atoms. In LAMMPS, a timestepping or minimization. Examples include updating of atom positions and velocities due to time integration, controlling temperature, applying constraint forces to atoms, enforcing boundary -conditions, computing diagnostics, etc. There are dozens of fixes -defined in LAMMPS and new ones can be added; see "this -section"_Section_modify.html for a discussion. +conditions, computing diagnostics, etc. There are hundredes of fixes +defined in LAMMPS and new ones can be added; see the +"Modify"_Modify.html doc page for details. Fixes perform their operations at different stages of the timestep. If 2 or more fixes operate at the same stage of the timestep, they are diff --git a/doc/src/fix_adapt.txt b/doc/src/fix_adapt.txt index 19d1009b8a838829c0dfee1adde7526134d29053..7a34f2ff4480004c3ff249957b2b36204a087035 100644 --- a/doc/src/fix_adapt.txt +++ b/doc/src/fix_adapt.txt @@ -205,6 +205,14 @@ a bond coefficient over time, very similar to how the {pair} keyword operates. The only difference is that now a bond coefficient for a given bond type is adapted. +A wild-card asterisk can be used in place of or in conjunction with +the bond type argument to set the coefficients for multiple bond types. +This takes the form "*" or "*n" or "n*" or "m*n". If N = the number of +atom types, then an asterisk with no numeric values means all types +from 1 to N. A leading asterisk means all types from 1 to n (inclusive). +A trailing asterisk means all types from n to N (inclusive). A middle +asterisk means all types from m to n (inclusive). + Currently {bond} does not support bond_style hybrid nor bond_style hybrid/overlay as bond styles. The only bonds that currently are working with fix_adapt are diff --git a/doc/src/fix_addforce.txt b/doc/src/fix_addforce.txt index b2ac95eabb0f4e2e49e4af226ae6cc98ea0d0358..5bba9acb3fe6ae5e988bfbc57f5d4dc8cdb07b4a 100644 --- a/doc/src/fix_addforce.txt +++ b/doc/src/fix_addforce.txt @@ -103,12 +103,12 @@ converge properly. :line -Styles with a suffix are functionally the same as the corresponding -style without the suffix. They have been optimized to run faster, -depending on your available hardware, as discussed in -"Section 5"_Section_accelerate.html of the manual. The -accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are +functionally the same as the corresponding style without the suffix. +They have been optimized to run faster, depending on your available +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -120,8 +120,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_ave_atom.txt b/doc/src/fix_ave_atom.txt index 3251125a5d2f21e8f9cdeea958112a5a23b59506..23e4ed235b2d21c3c9cde5df0207781b448d69c2 100644 --- a/doc/src/fix_ave_atom.txt +++ b/doc/src/fix_ave_atom.txt @@ -124,7 +124,7 @@ appended, the per-atom vector calculated by the compute is used. If a bracketed term containing an index I is appended, the Ith column of the per-atom array calculated by the compute is used. Users can also write code for their own compute styles and "add them to -LAMMPS"_Section_modify.html. See the discussion above for how I can +LAMMPS"_Modify.html. See the discussion above for how I can be specified with a wildcard asterisk to effectively specify multiple values. @@ -136,8 +136,8 @@ the per-atom array calculated by the fix is used. Note that some fixes only produce their values on certain timesteps, which must be compatible with {Nevery}, else an error will result. Users can also write code for their own fix styles and "add them to -LAMMPS"_Section_modify.html. See the discussion above for how I can -be specified with a wildcard asterisk to effectively specify multiple +LAMMPS"_Modify.html. See the discussion above for how I can be +specified with a wildcard asterisk to effectively specify multiple values. If a value begins with "v_", a variable name must follow which has diff --git a/doc/src/fix_ave_chunk.txt b/doc/src/fix_ave_chunk.txt index a8691d376772f458d5c0ed82376fcd0154b7a69a..8e2a09e33fb4a4da2872780fad28fb3f3dc54769 100644 --- a/doc/src/fix_ave_chunk.txt +++ b/doc/src/fix_ave_chunk.txt @@ -263,7 +263,7 @@ previously defined in the input script. If no bracketed integer is appended, the per-atom vector calculated by the compute is used. If a bracketed integer is appended, the Ith column of the per-atom array calculated by the compute is used. Users can also write code for -their own compute styles and "add them to LAMMPS"_Section_modify.html. +their own compute styles and "add them to LAMMPS"_Modify.html. See the discussion above for how I can be specified with a wildcard asterisk to effectively specify multiple values. @@ -274,7 +274,7 @@ bracketed integer is appended, the Ith column of the per-atom array calculated by the fix is used. Note that some fixes only produce their values on certain timesteps, which must be compatible with {Nevery}, else an error results. Users can also write code for their -own fix styles and "add them to LAMMPS"_Section_modify.html. See the +own fix styles and "add them to LAMMPS"_Modify.html. See the discussion above for how I can be specified with a wildcard asterisk to effectively specify multiple values. diff --git a/doc/src/fix_ave_correlate.txt b/doc/src/fix_ave_correlate.txt index 371f2f66a88f5394bac76c74e18a811939eb6961..98f352cb74ea0ed97e05324d2980c46bd7147ca1 100644 --- a/doc/src/fix_ave_correlate.txt +++ b/doc/src/fix_ave_correlate.txt @@ -176,7 +176,7 @@ output"_thermo_style.html or other fixes such as "fix nvt"_fix_nh.html or "fix temp/rescale"_fix_temp_rescale.html. See the doc pages for these commands which give the IDs of these computes. Users can also write code for their own compute styles and "add them to -LAMMPS"_Section_modify.html. +LAMMPS"_Modify.html. If a value begins with "f_", a fix ID must follow which has been previously defined in the input script. If no bracketed term is @@ -189,7 +189,7 @@ values. Note that some fixes only produce their values on certain timesteps, which must be compatible with {Nevery}, else an error will result. Users can also write code for their own fix styles and "add them to -LAMMPS"_Section_modify.html. +LAMMPS"_Modify.html. If a value begins with "v_", a variable name must follow which has been previously defined in the input script. Only equal-style or diff --git a/doc/src/fix_ave_histo.txt b/doc/src/fix_ave_histo.txt index 043f0e22be3c7dda7b85209b9b6c53c3578c5b30..5155f42e7bca0335d29ac16566051255a2ff3a89 100644 --- a/doc/src/fix_ave_histo.txt +++ b/doc/src/fix_ave_histo.txt @@ -183,11 +183,11 @@ Note that there is a "compute reduce"_compute_reduce.html command which can sum per-atom quantities into a global scalar or vector which can thus be accessed by fix ave/histo. Or it can be a compute defined not in your input script, but by "thermodynamic -output"_thermo_style.html or other fixes such as "fix -nvt"_fix_nh.html or "fix temp/rescale"_fix_temp_rescale.html. See -the doc pages for these commands which give the IDs of these computes. -Users can also write code for their own compute styles and "add them -to LAMMPS"_Section_modify.html. +output"_thermo_style.html or other fixes such as "fix nvt"_fix_nh.html +or "fix temp/rescale"_fix_temp_rescale.html. See the doc pages for +these commands which give the IDs of these computes. Users can also +write code for their own compute styles and "add them to +LAMMPS"_Modify.html. If a value begins with "f_", a fix ID must follow which has been previously defined in the input script. If {mode} = scalar, then if @@ -204,7 +204,7 @@ values. Note that some fixes only produce their values on certain timesteps, which must be compatible with {Nevery}, else an error will result. Users can also write code for their own fix styles and "add them to -LAMMPS"_Section_modify.html. +LAMMPS"_Modify.html. If a value begins with "v_", a variable name must follow which has been previously defined in the input script. If {mode} = scalar, then diff --git a/doc/src/fix_ave_time.txt b/doc/src/fix_ave_time.txt index 266e3f0e38488694dfce0b442a607a6851483377..b61f56cf0274ef732216e2dcc1020a1bd8f4d4ee 100644 --- a/doc/src/fix_ave_time.txt +++ b/doc/src/fix_ave_time.txt @@ -168,7 +168,7 @@ output"_thermo_style.html or other fixes such as "fix nvt"_fix_nh.html or "fix temp/rescale"_fix_temp_rescale.html. See the doc pages for these commands which give the IDs of these computes. Users can also write code for their own compute styles and "add them -to LAMMPS"_Section_modify.html. +to LAMMPS"_Modify.html. If a value begins with "f_", a fix ID must follow which has been previously defined in the input script. If {mode} = scalar, then if @@ -184,7 +184,7 @@ specify multiple values. Note that some fixes only produce their values on certain timesteps, which must be compatible with {Nevery}, else an error will result. Users can also write code for their own fix styles and "add them to -LAMMPS"_Section_modify.html. +LAMMPS"_Modify.html. If a value begins with "v_", a variable name must follow which has been previously defined in the input script. If {mode} = scalar, then diff --git a/doc/src/fix_aveforce.txt b/doc/src/fix_aveforce.txt index 5d7dec3e6aef7bb804f312546cb15bbe85b0e639..4944996695260f3e6aab65dc5bb109085d6ad9b9 100644 --- a/doc/src/fix_aveforce.txt +++ b/doc/src/fix_aveforce.txt @@ -63,12 +63,12 @@ to it. :line -Styles with a suffix are functionally the same as the corresponding -style without the suffix. They have been optimized to run faster, -depending on your available hardware, as discussed in -"Section 5"_Section_accelerate.html of the manual. The -accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are +functionally the same as the corresponding style without the suffix. +They have been optimized to run faster, depending on your available +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -80,8 +80,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_bocs.txt b/doc/src/fix_bocs.txt new file mode 100644 index 0000000000000000000000000000000000000000..f53b7c785c251240a0d325b820545f342ce21c06 --- /dev/null +++ b/doc/src/fix_bocs.txt @@ -0,0 +1,112 @@ +<"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +fix bocs command :h3 + +[Syntax:] + +fix ID group-ID bocs keyword values ... :pre + +keyword = {temp} or {cgiso} or {analytic} or {linear_spline} or {cubic_spline} + {temp} values = Tstart Tstop Tdamp + {cgiso} values = Pstart Pstop Pdamp + {basis set} + {analytic} values = V_avg N_particles N_coeff Coeff_1 Coeff_2 ... Coeff_N + {linear_spline} values = input_filename + {cubic_spline} values = input_filename :pre +:ule + +[Examples:] + +fix 1 all bocs temp 300.0 300.0 100.0 cgiso 0.986 0.986 1000.0 analytic 66476.015 968 2 245030.10 8962.20 :pre + +fix 1 all bocs temp 300.0 300.0 100.0 cgiso 0.986 0.986 1000.0 cubic_spline input_Fv.dat :pre + +thermo_modify press 1_press :pre + + +[Description:] + +These commands incorporate a pressure correction as described by +Dunn and Noid in "(Dunn1)"_#bocs-Dunn1 to the standard MTTK +barostat by Martyna et. al. in "(Martyna)"_#bocs-Martyna . +The first half of the command mimics a standard fix npt command: + +fix 1 all bocs temp Tstart Tstop Tcoupl cgiso Pstart Pstop Pdamp :pre + +The two differences are replacing {npt} with {bocs}, and replacing +{iso}/{aniso}/{etc} with {cgiso}. +The rest of the command details what form you would like to use for +the pressure correction equation. The choices are: {analytic}, {linear_spline}, +or {cubic_spline}. + +With either spline method, the only argument that needs to follow it +is the name of a file that contains the desired pressure correction +as a function of volume. The file should be formatted so each line has: + +Volume_i, PressureCorrection_i :pre + +Note both the COMMA and the SPACE separating the volume's +value and its corresponding pressure correction. The volumes in the file +should be uniformly spaced. Both the volumes and the pressure corrections +should be provided in the proper units, e.g. if you are using {units real}, +the volumes should all be in cubic angstroms, and the pressure corrections +should all be in atomspheres. Furthermore, the table should start/end at a +volume considerably smaller/larger than you expect your system to sample +during the simulation. If the system ever reaches a volume outside of the +range provided, the simulation will stop. + +With the {analytic} option, the arguments are as follows: + +... analytic V_avg N_particles N_coeff Coeff_1 Coeff_2 ... Coeff_N :pre + +Note that {V_avg} and {Coeff_i} should all be in the proper units, e.g. if you +are using {units real}, {V_avg} should be in cubic angstroms, and the +coefficients should all be in atmospheres * cubic angstroms. + +[Restrictions:] + +As this is computing a (modified) pressure, group-ID should be {all}. + +The pressure correction has only been tested for use with an isotropic +pressure coupling in 3 dimensions. + +By default, LAMMPS will still report the normal value for the pressure +if the pressure is printed via a {thermo} command, or if the pressures +are written to a file every so often. In order to have LAMMPS report the +modified pressure, you must include the {thermo_modify} command given in +the examples. For the last argument in the command, you should put +XXXX_press, where XXXX is the ID given to the fix bocs command (in the +example, the ID of the fix bocs command is 1 ). + +This fix is part of the USER-BOCS package. It is only enabled if +LAMMPS was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. + +[Related:] + +For more details about the pressure correction and the entire BOCS software +package, visit the "BOCS package on github"_bocsgithub and read the release +paper by Dunn et. al. "(Dunn2)"_#bocs-Dunn2 . + + +:link(bocsgithub,https://github.com/noid-group/BOCS) + +:line + +:link(bocs-Dunn1) +[(Dunn1)] Dunn and Noid, J Chem Phys, 143, 243148 (2015). + +:link(bocs-Martyna) +[(Martyna)] Martyna, Tobias, and Klein, J Chem Phys, 101, 4177 (1994). + +:link(bocs-Dunn2) +[(Dunn2)] Dunn, Lebold, DeLyser, Rudzinski, and Noid, J. Phys. Chem. B, 122, 3363 (2018). + + + diff --git a/doc/src/fix_bond_react.txt b/doc/src/fix_bond_react.txt new file mode 100644 index 0000000000000000000000000000000000000000..f85ef9bc1aa6ea034364e5358ac1eafa2824f0d6 --- /dev/null +++ b/doc/src/fix_bond_react.txt @@ -0,0 +1,332 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +fix bond/react command :h3 + +[Syntax:] + +fix ID group-ID bond/react common_keyword values ... + react react-ID react-group-ID Nevery Rmin Rmax template-ID(pre-reacted) template-ID(post-reacted) map_file individual_keyword values ... + react react-ID react-group-ID Nevery Rmin Rmax template-ID(pre-reacted) template-ID(post-reacted) map_file individual_keyword values ... + react react-ID react-group-ID Nevery Rmin Rmax template-ID(pre-reacted) template-ID(post-reacted) map_file individual_keyword values ... + ... :pre + +ID, group-ID are documented in "fix"_fix.html command. Group-ID is ignored. :ulb,l +bond/react = style name of this fix command :l +zero or more common keyword/value pairs may be appended directly after 'bond/react' :l +these apply to all reaction specifications (below) :l +common_keyword = {stabilization} :l + {stabilization} values = {no} or {yes} {group-ID} {xmax} + {no} = no reaction site stabilization + {yes} = perform reaction site stabilization + {group-ID} = user-assigned ID for all non-reacting atoms (group created internally) + {xmax} = xmax value that is used by an internally created "nve/limit"_fix_nve_limit.html integrator :pre +react = mandatory argument indicating new reaction specification :l + react-ID = user-assigned name for the reaction :l + react-group-ID = only atoms in this group are available for the reaction :l + Nevery = attempt reaction every this many steps :l + Rmin = bonding pair atoms must be separated by more than Rmin to initiate reaction (distance units) :l + Rmax = bonding pair atoms must be separated by less than Rmax to initiate reaction (distance units) :l + template-ID(pre-reacted) = ID of a molecule template containing pre-reaction topology :l + template-ID(post-reacted) = ID of a molecule template containing post-reaction topology :l + map_file = name of file specifying corresponding atomIDs in the pre- and post-reacted templates :l + zero or more individual keyword/value pairs may be appended to each react argument :l + individual_keyword = {prob} or {stabilize_steps} :l + {prob} values = fraction seed + fraction = initiate reaction with this probability if otherwise eligible + seed = random number seed (positive integer) + {stabilize_steps} value = timesteps + timesteps = number of timesteps to apply internally created nve/limit.html :pre +:ule + +[Examples:] + +molecule mol1 pre_reacted_topology.txt +molecule mol2 post_reacted_topology.txt +fix 5 all bond/react stabilization no react myrxn1 all 1 0 3.25 mol1 mol2 map_file.txt :pre + +molecule mol1 pre_reacted_rxn1.txt +molecule mol2 post_reacted_rxn1.txt +molecule mol3 pre_reacted_rxn2.txt +molecule mol4 post_reacted_rxn2.txt +fix 5 all bond/react stabilization yes nvt_grp .03 & + react myrxn1 all 1 0 3.25 mol1 mol2 map_file_rxn1.txt prob 0.50 12345 & + react myrxn2 all 1 0 2.75 mol3 mol4 map_file_rxn2.txt prob 0.25 12345 +fix 6 nvt_grp nvt temp 300 300 100 # set thermostat after bond/react :pre + +[Description:] + +Initiate complex covalent bonding (topology) changes. These topology +changes will be referred to as 'reactions' throughout this +documentation. Topology changes are defined in pre- and post-reaction +molecule templates and can include creation and deletion of bonds, +angles, dihedrals, impropers, bond-types, angle-types, dihedral-types, +atom-types, or atomic charges. + +Fix bond/react does not use quantum mechanical (eg. fix qmmm) or +pairwise bond-order potential (eg. Tersoff or AIREBO) methods to +determine bonding changes a priori. Rather, it uses a distance-based +probabilistic criteria to effect predetermined topology changes in +simulations using standard force fields. + +This fix was created to facilitate the dynamic creation of polymeric, +amorphous or highly-crosslinked systems. A suggested workflow for +using this fix is: 1) identify a reaction to be simulated 2) build a +molecule template of the reaction site before the reaction has +occurred 3) build a molecule template of the reaction site after the +reaction has occurred 4) create a map that relates the +template-atom-IDs of each atom between pre- and post-reaction molecule +templates 5) fill a simulation box with molecules and run a simulation +with fix bond/react. + +Only one 'fix bond/react' command can be used at a time. Multiple +reactions can be simultaneously applied by specifying multiple {react} +arguments to a single 'fix bond/react' command. This syntax is +necessary because the 'common keywords' are applied to all reactions. + +The {stabilization} keyword enables reaction site stabilization. +Reaction site stabilization is performed by including reacting atoms +in an internally created fix "nve/limit"_fix_nve_limit.html time +integrator for a set number of timesteps given by the +{stabilize_steps} keyword. While reacting atoms are being time +integrated by the internal nve/limit, they are prevented from being +involved in any new reactions. The {xmax} value keyword should +typically be set to the maximum distance that non-reacting atoms move +during the simulation. + +The group-ID set using the {stabilization} keyword should be a +previously unused group-ID. It cannot be specified as 'all'. The fix +bond/react command creates a "dynamic group"_group.html of this name +that includes all non-reacting atoms. This dynamic group-ID should +then be used by a subsequent system-wide time integrator such as nvt, +npt, or nve, as shown in the second example above. It is currently +necessary to place the time integration command after the fix +bond/react command due to the internal dynamic grouping performed by +fix bond/react. + +NOTE: The internally created group currently applies to all atoms in +the system, i.e. you should generally not have a separate thermostat +which acts on the 'all' group. + +The following comments pertain to each {react} argument: + +A check for possible new reaction sites is performed every {Nevery} +timesteps. + +Two conditions must be met for a reaction to occur. First a bonding +atom pair must be identified. Second, the topology surrounding the +bonding atom pair must match the topology of the pre-reaction +template. If both these conditions are met, the reaction site is +modified to match the post-reaction template. + +A bonding atom pair will be identified if several conditions are met. +First, a pair of atoms within the specified react-group-ID of type +typei and typej must separated by a distance between {Rmin} and +{Rmax}. It is possible that multiple bonding atom pairs are +identified: if the bonding atoms in the pre-reacted template are not +1-2, 1-3, or 1-4 neighbors, the closest bonding atom partner is set as +its bonding partner; otherwise, the farthest potential partner is +chosen. Then, if both an atomi and atomj have each other as their +nearest bonding partners, these two atoms are identified as the +bonding atom pair of the reaction site. Once this unique bonding atom +pair is identified for each reaction, there could two or more +reactions that involve a given atom on the same timestep. If this is +the case, only one such reaction is permitted to occur. This reaction +is chosen randomly from all potential reactions. This capability +allows e.g. for different reaction pathways to proceed from identical +reaction sites with user-specified probabilities. + +The pre-reacted molecule template is specified by a molecule command. +This molecule template file contains a sample reaction site and its +surrounding topology. As described below, the bonding atom pairs of +the pre-reacted template are specified by atom ID in the map file. The +pre-reacted molecule template should contain as few atoms as possible +while still completely describing the topology of all atoms affected +by the reaction. For example, if the force field contains dihedrals, +the pre-reacted template should contain any atom within three bonds of +reacting atoms. + +Some atoms in the pre-reacted template that are not reacting may have +missing topology with respect to the simulation. For example, the +pre-reacted template may contain an atom that would connect to the +rest of a long polymer chain. These are referred to as edge atoms, and +are also specified in the map file. + +Note that some care must be taken when a building a molecule template +for a given simulation. All atom types in the pre-reacted template +must be the same as those of a potential reaction site in the +simulation. A detailed discussion of matching molecule template atom +types with the simulation is provided on the "molecule"_molecule.html +command page. + +The post-reacted molecule template contains a sample of the reaction +site and its surrounding topology after the reaction has occurred. It +must contain the same number of atoms as the pre-reacted template. A +one-to-one correspondence between the atom IDs in the pre- and +post-reacted templates is specified in the map file as described +below. Note that during a reaction, an atom, bond, etc. type may +change to one that was previously not present in the simulation. These +new types must also be defined during the setup of a given simulation. +A discussion of correctly handling this is also provided on the +"molecule"_molecule.html command page. + +The map file is a text document with the following format: + +A map file has a header and a body. The header of map file the +contains one mandatory keyword and one optional keyword. The mandatory +keyword is 'equivalences' and the optional keyword is 'edgeIDs': + +N {equivalences} = # of atoms N in the reaction molecule templates +N {edgeIDs} = # of edge atoms N in the pre-reacted molecule template :pre + +The body of the map file contains two mandatory sections and one +optional section. The first mandatory section begins with the keyword +'BondingIDs' and lists the atom IDs of the bonding atom pair in the +pre-reacted molecule template. The second mandatory section begins +with the keyword 'Equivalences' and lists a one-to-one correspondence +between atom IDs of the pre- and post-reacted templates. The first +column is an atom ID of the pre-reacted molecule template, and the +second column is the corresponding atom ID of the post-reacted +molecule template. The optional section begins with the keyword +'EdgeIDs' and lists the atom IDs of edge atoms in the pre-reacted +molecule template. + +A sample map file is given below: + +:line + +# this is a map file :pre + +2 edgeIDs +7 equivalences :pre + +BondingIDs :pre + +3 +5 :pre + +EdgeIDs :pre + +1 +7 :pre + +Equivalences :pre + +1 1 +2 2 +3 3 +4 4 +5 5 +6 6 +7 7 :pre + +:line + +Once a reaction site has been successfully identified, data structures +within LAMMPS that store bond topology are updated to reflect the +post-reacted molecule template. All force fields with fixed bonds, +angles, dihedrals or impropers are supported. + +A few capabilities to note: 1) You may specify as many {react} +arguments as desired. For example, you could break down a complicated +reaction mechanism into several reaction steps, each defined by its +own {react} argument. 2) While typically a bond is formed or removed +between the bonding atom pairs specified in the pre-reacted molecule +template, this is not required. 3) By reversing the order of the pre- +and post- reacted molecule templates in another {react} argument, you +can allow for the possibility of one or more reverse reactions. + +The optional keywords deal with the probability of a given reaction +occurring as well as the stable equilibration of each reaction site as +it occurs. + +The {prob} keyword can affect whether an eligible reaction actually +occurs. The fraction setting must be a value between 0.0 and 1.0. A +uniform random number between 0.0 and 1.0 is generated and the +eligible reaction only occurs if the random number is less than the +fraction. + +The {stabilize_steps} keyword allows for the specification of how many +timesteps a reaction site is stabilized before being returned to the +overall system thermostat. + +In order to produce the most physical behavior, this 'reaction site +equilibration time' should be tuned to be as small as possible while +retaining stability for a given system or reaction step. After a +limited number of case studies, this number has been set to a default +of 60 timesteps. Ideally, it should be individually tuned for each fix +reaction step. Note that in some situations, decreasing rather than +increasing this parameter will result in an increase in stability. + +A few other considerations: + +It may be beneficial to ensure reacting atoms are at a certain +temperature before being released to the overall thermostat. For this, +you can use the internally-created dynamic group named +"bond_react_MASTER_group." For example, adding the following command +would thermostat the group of all atoms currently involved in a +reaction: + +fix 1 bond_react_MASTER_group temp/rescale 1 300 300 10 1 :pre + +NOTE: This command must be added after the fix bond/react command, and +will apply to all reactions. + +Computationally, each timestep this fix operates, it loops over +neighbor lists (for bond-forming reactions) and computes distances +between pairs of atoms in the list. It also communicates between +neighboring processors to coordinate which bonds are created and/or +removed. All of these operations increase the cost of a timestep. Thus +you should be cautious about invoking this fix too frequently. + +You can dump out snapshots of the current bond topology via the dump +local command. + +:line + +[Restart, fix_modify, output, run start/stop, minimize info:] + +No information about this fix is written to "binary restart +files"_restart.html, aside from internally-created per-atom +properties. None of the "fix_modify"_fix_modify.html options are +relevant to this fix. + +This fix computes one statistic for each {react} argument that it +stores in a global vector, of length 'number of react arguments', that +can be accessed by various "output +commands"_Section_howto.html#howto_15. The vector values calculated by +this fix are "intensive". + +These is 1 quantity for each react argument: + +(1) cumulative # of reactions occurred :ul + +No parameter of this fix can be used with the {start/stop} keywords of +the "run"_run.html command. This fix is not invoked during "energy +minimization"_minimize.html. + +[Restrictions:] + +This fix is part of the USER-MISC package. It is only enabled if +LAMMPS was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. + +[Related commands:] + +"fix bond/create"_fix_bond_create.html, "fix +bond/break"_fix_bond_break.html, "fix bond/swap"_fix_bond_swap.html, +"dump local"_dump.html, "special_bonds"_special_bonds.html + +[Default:] + +The option defaults are stabilization = no, stabilize_steps = 60 + +:line + +:link(Gissinger) +[(Gissinger)] Gissinger, Jensen and Wise, Polymer, 128, 211 (2017). diff --git a/doc/src/fix_controller.txt b/doc/src/fix_controller.txt index cfb26138fdaa468c3074b1ef6fa1f1dfe6c6eb8c..b8d2cb43be4b2fbc30d70034531969e4325a4709 100644 --- a/doc/src/fix_controller.txt +++ b/doc/src/fix_controller.txt @@ -139,7 +139,7 @@ for details. If no bracketed integer is appended, the scalar calculated by the compute is used. If a bracketed integer is appended, the Ith value of the vector calculated by the compute is used. Users can also write code for their own compute styles and "add -them to LAMMPS"_Section_modify.html. +them to LAMMPS"_Modify.html. If {pvar} begins with "f_", a fix ID must follow which has been previously defined in the input script and which generates a global @@ -150,7 +150,7 @@ references the values, or else an error results. If no bracketed integer is appended, the scalar calculated by the fix is used. If a bracketed integer is appended, the Ith value of the vector calculated by the fix is used. Users can also write code for their own fix style and "add -them to LAMMPS"_Section_modify.html. +them to LAMMPS"_Modify.html. If {pvar} begins with "v_", a variable name must follow which has been previously defined in the input script. Only equal-style variables diff --git a/doc/src/fix_deform.txt b/doc/src/fix_deform.txt index c870c73bdccf918288589c5141ba4dbafcc60434..681986561a35e7d36874f10621c5746b4218d705 100644 --- a/doc/src/fix_deform.txt +++ b/doc/src/fix_deform.txt @@ -94,7 +94,7 @@ nvt/sllod"_fix_nvt_sllod.html and "compute temp/deform"_compute_temp_deform.html commands for more details. Note that simulation of a continuously extended system (extensional flow) can be modeled using the "USER-UEF -package"_Section_packages.html#USER-UEF and its "fix +package"_Packages_details.html#USER-UEF and its "fix commands"_fix_nh_uef.html. For the {x}, {y}, {z} parameters, the associated dimension cannot be @@ -550,10 +550,9 @@ command if you want to include lattice spacings in a variable formula. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -565,8 +564,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_dpd_energy.txt b/doc/src/fix_dpd_energy.txt index 1c10d954d6eb910f5863120a405ace281b12e6da..4f2b5d573f54679a6f8930f7feeb61f4fc59acfa 100644 --- a/doc/src/fix_dpd_energy.txt +++ b/doc/src/fix_dpd_energy.txt @@ -50,10 +50,9 @@ examples/USER/dpd directory. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -65,8 +64,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_dt_reset.txt b/doc/src/fix_dt_reset.txt index 1bed4f9e89271f367dd68257f78f33b76c42f11f..7605395ca05122bbde2a2600e2349b9026be4b56 100644 --- a/doc/src/fix_dt_reset.txt +++ b/doc/src/fix_dt_reset.txt @@ -19,7 +19,9 @@ Tmin = minimum dt allowed which can be NULL (time units) Tmax = maximum dt allowed which can be NULL (time units) Xmax = maximum distance for an atom to move in one timestep (distance units) zero or more keyword/value pairs may be appended -keyword = {units} :ul +keyword = {emax} or {units} :ul + {emax} value = Emax + Emax = maximum kinetic energy change for an atom in one timestep (energy units) {units} value = {lattice} or {box} lattice = Xmax is defined in lattice units box = Xmax is defined in simulation box units :pre @@ -27,12 +29,17 @@ keyword = {units} :ul [Examples:] fix 5 all dt/reset 10 1.0e-5 0.01 0.1 -fix 5 all dt/reset 10 0.01 2.0 0.2 units box :pre +fix 5 all dt/reset 10 0.01 2.0 0.2 units box +fix 5 all dt/reset 5 NULL 0.001 0.5 emax 30 units box :pre [Description:] Reset the timestep size every N steps during a run, so that no atom -moves further than Xmax, based on current atom velocities and forces. +moves further than the specified {Xmax} distance, based on current +atom velocities and forces. Optionally an additional criterion is +imposed by the {emax} keyword, so that no atom's kinetic energy +changes by more than the specified {Emax}. + This can be useful when starting from a configuration with overlapping atoms, where forces will be large. Or it can be useful when running an impact simulation where one or more high-energy atoms collide with @@ -48,7 +55,12 @@ current velocity and force. Since performing this calculation exactly would require the solution to a quartic equation, a cheaper estimate is generated. The estimate is conservative in that the atom's displacement is guaranteed not to exceed {Xmax}, though it may be -smaller. +smaller. + +In addition if the {emax} keyword is used, the specified {Emax} value +is enforced as a limit on how much an atom's kinetic energy can +change. If the timestep required is even smaller than for the {Xmax} +displacement, then the smaller timestep is used. Given this putative timestep for each atom, the minimum timestep value across all atoms is computed. Then the {Tmin} and {Tmax} bounds are @@ -87,4 +99,5 @@ minimization"_minimize.html. [Default:] -The option defaults is units = lattice. +The option defaults are units = lattice, and no emax kinetic energy +limit. diff --git a/doc/src/fix_enforce2d.txt b/doc/src/fix_enforce2d.txt index 5d04e96677f2adc27c9622b84d97810b23748d7a..67b351e4b820e1c95f54b6cf58d77f74f43dcb7d 100644 --- a/doc/src/fix_enforce2d.txt +++ b/doc/src/fix_enforce2d.txt @@ -7,6 +7,7 @@ :line fix enforce2d command :h3 +fix enforce2d/kk command :h3 [Syntax:] @@ -27,12 +28,12 @@ not move from their initial z coordinate. :line -Styles with a suffix are functionally the same as the corresponding -style without the suffix. They have been optimized to run faster, -depending on your available hardware, as discussed in -"Section 5"_Section_accelerate.html of the manual. The -accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are +functionally the same as the corresponding style without the suffix. +They have been optimized to run faster, depending on your available +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -44,8 +45,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_eos_table_rx.txt b/doc/src/fix_eos_table_rx.txt index 0c878743471ae03c5bd76fec05f16dbc7631f01e..f74a838c4776aa955128ce0681a99f95cc391e08 100644 --- a/doc/src/fix_eos_table_rx.txt +++ b/doc/src/fix_eos_table_rx.txt @@ -156,10 +156,9 @@ no 0.93 0.00 0.000 -1.76 :pre Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -171,8 +170,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_external.txt b/doc/src/fix_external.txt index b28d33446fe6df61d6efd46017dc37c4cf6f61ee..30e34b48587f2dd276dcd9bb50f398bc95f80a45 100644 --- a/doc/src/fix_external.txt +++ b/doc/src/fix_external.txt @@ -34,8 +34,7 @@ This fix allows external programs that are running LAMMPS through its "library interface"_Section_howto.html#howto_19 to modify certain LAMMPS properties on specific timesteps, similar to the way other fixes do. The external driver can be a "C/C++ or Fortran -program"_Section_howto.html#howto_19 or a "Python -script"_Section_python.html. +program"_Section_howto.html#howto_19 or a "Python script"_Python.html. :line diff --git a/doc/src/fix_freeze.txt b/doc/src/fix_freeze.txt index a63ee4cb32688c286797292acbaa140fbed18101..9619f4120b415768db568ffffbb1734dd504be27 100644 --- a/doc/src/fix_freeze.txt +++ b/doc/src/fix_freeze.txt @@ -31,12 +31,12 @@ using "fix setforce"_fix_setforce.html. :line -Styles with a suffix are functionally the same as the corresponding -style without the suffix. They have been optimized to run faster, -depending on your available hardware, as discussed in -"Section 5"_Section_accelerate.html of the manual. The -accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are +functionally the same as the corresponding style without the suffix. +They have been optimized to run faster, depending on your available +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -48,8 +48,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_gcmc.txt b/doc/src/fix_gcmc.txt index 38f0fb95ce0530d425689b0daa9052e6a6995074..191bc32b1499f1f4555330c8347bf49cb2472634 100644 --- a/doc/src/fix_gcmc.txt +++ b/doc/src/fix_gcmc.txt @@ -349,7 +349,7 @@ in the context of NVT dynamics. NOTE: If the density of the cell is initially very small or zero, and increases to a much larger density after a period of equilibration, then certain quantities that are only calculated once at the start -(kspace parameters, tail corrections) may no longer be accurate. The +(kspace parameters) may no longer be accurate. The solution is to start a new simulation after the equilibrium density has been reached. diff --git a/doc/src/fix_gravity.txt b/doc/src/fix_gravity.txt index dae8ac5ed0910fc2c91b776339de840707bf5500..f39955d4f8ed4247967043cf3376784e834a3420 100644 --- a/doc/src/fix_gravity.txt +++ b/doc/src/fix_gravity.txt @@ -90,10 +90,9 @@ field. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -105,8 +104,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_langevin.txt b/doc/src/fix_langevin.txt index 93c73f5a5dd2390f93d80dfe7ce2d4efc7f53e69..6ab236e572d0b46c8d6a1ee6851a4b9c5a0233a4 100644 --- a/doc/src/fix_langevin.txt +++ b/doc/src/fix_langevin.txt @@ -264,10 +264,9 @@ generates an average temperature of 220 K, instead of 300 K. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -279,8 +278,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_langevin_drude.txt b/doc/src/fix_langevin_drude.txt index afc9c5f257523646906966d89464da26a070023e..c85ff24c96d2982439d67c4ac52fd3bea5083044 100644 --- a/doc/src/fix_langevin_drude.txt +++ b/doc/src/fix_langevin_drude.txt @@ -154,7 +154,7 @@ Note: The temperature thermostating the core-Drude particle pairs should be chosen low enough, so as to mimic as closely as possible the self-consistent minimization. It must however be high enough, so that the dipoles can follow the local electric field exerted by the -neighbouring atoms. The optimal value probably depends on the +neighboring atoms. The optimal value probably depends on the temperature of the centers of mass and on the mass of the Drude particles. diff --git a/doc/src/fix_langevin_spin.txt b/doc/src/fix_langevin_spin.txt new file mode 100644 index 0000000000000000000000000000000000000000..b089cd7f58148c74a805080cccde0ac2cb600143 --- /dev/null +++ b/doc/src/fix_langevin_spin.txt @@ -0,0 +1,102 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +fix langevin/spin command :h3 + +[Syntax:] + +fix ID group-ID langevin/spin T Tdamp seed :pre + +ID, group-ID are documented in "fix"_fix.html command :ulb,l +langevin/spin = style name of this fix command :l +T = desired temperature of the bath (temperature units, K in metal units) :l +Tdamp = transverse magnetic damping parameter (adim) :l +seed = random number seed to use for white noise (positive integer) :l +:ule + +[Examples:] + +fix 2 all langevin/spin 300.0 0.01 21 :pre + +[Description:] + +Apply a Langevin thermostat as described in "(Mayergoyz)"_#Mayergoyz1 to the +magnetic spins associated to the atoms. +Used with "fix nve/spin"_fix_nve_spin.html, this command performs +Brownian dynamics (BD). +A random torque and a transverse dissipation are applied to each spin i according to +the following stochastic differential equation: + +:c,image(Eqs/fix_langevin_spin_sLLG.jpg) + +with lambda the transverse damping, and eta a random verctor. +This equation is referred to as the stochastic Landau-Lifshitz-Gilbert (sLLG) +equation. + +The components of eta are drawn from a Gaussian probability law. Their amplitude +is defined as a proportion of the temperature of the external thermostat T (in K +in metal units). + +More details about this implementation are reported in "(Tranchida)"_#Tranchida2. + +Note: due to the form of the sLLG equation, this fix has to be defined just +before the nve/spin fix (and after all other magnetic fixes). +As an example: + +fix 1 all precession/spin zeeman 0.01 0.0 0.0 1.0 +fix 2 all langevin/spin 300.0 0.01 21 +fix 3 all nve/spin lattice yes :pre + +is correct, but defining a force/spin command after the langevin/spin command +would give an error message. + +Note: The random # {seed} must be a positive integer. A Marsaglia random +number generator is used. Each processor uses the input seed to +generate its own unique seed and its own stream of random numbers. +Thus the dynamics of the system will not be identical on two runs on +different numbers of processors. + +:line + +[Restart, fix_modify, output, run start/stop, minimize info:] + +No information about this fix is written to "binary restart +files"_restart.html. Because the state of the random number generator +is not saved in restart files, this means you cannot do "exact" +restarts with this fix, where the simulation continues on the same as +if no restart had taken place. However, in a statistical sense, a +restarted simulation should produce the same behavior. + +This fix is not invoked during "energy minimization"_minimize.html. + +[Restrictions:] + +The {langevin/spin} fix is part of the SPIN package. +This style is only enabled if LAMMPS was built with this package. +See the "Making LAMMPS"_Section_start.html#start_3 section for more info. + +The numerical integration has to be performed with {fix nve/spin} +when {fix langevin/spin} is enabled. + +This fix has to be the last defined magnetic fix before the time +integration fix (e.g. {fix nve/spin}). + +[Related commands:] + +"fix nve/spin"_fix_nve_spin.html, "fix precession/spin"_fix_precession_spin.html + +[Default:] none + +:line + +:link(Mayergoyz1) +[(Mayergoyz)] I.D. Mayergoyz, G. Bertotti, C. Serpico (2009). Elsevier (2009) + +:link(Tranchida2) +[(Tranchida)] Tranchida, Plimpton, Thibaudeau and Thompson, +Journal of Computational Physics, (2018). diff --git a/doc/src/fix_modify.txt b/doc/src/fix_modify.txt index 1c7dcf77a5dd0c72db2dea22873e0728417e8048..308bba1ac31fdf9a7cbd45ec1da50122cd46bcb9 100644 --- a/doc/src/fix_modify.txt +++ b/doc/src/fix_modify.txt @@ -14,14 +14,16 @@ fix_modify fix-ID keyword value ... :pre fix-ID = ID of the fix to modify :ulb,l one or more keyword/value pairs may be appended :l -keyword = {temp} or {press} or {energy} or {virial} or {respa} or {dynamic/dof} :l +keyword = {temp} or {press} or {energy} or {virial} or {respa} or {dynamic/dof} or {bodyforces} :l {temp} value = compute ID that calculates a temperature {press} value = compute ID that calculates a pressure {energy} value = {yes} or {no} {virial} value = {yes} or {no} {respa} value = {1} to {max respa level} or {0} (for outermost level) {dynamic/dof} value = {yes} or {no} - yes/no = do or do not recompute the number of degrees of freedom (DOF) contributing to the temperature :pre + yes/no = do or do not recompute the number of degrees of freedom (DOF) contributing to the temperature + {bodyforces} value = {early} or {late} + early/late = compute rigid-body forces/torques early or late in the timestep :pre :ule [Examples:] @@ -84,9 +86,8 @@ if you want virial contribution of the fix to be part of the relaxation criteria, although this seems unlikely. NOTE: This option is only supported by fixes that explicitly say -so. For some of these (e.g. the -"fix shake"_fix_shake.html command) the default setting is -{virial yes}, for others it is {virial no}. +so. For some of these (e.g. the "fix shake"_fix_shake.html command) +the default setting is {virial yes}, for others it is {virial no}. For fixes that set or modify forces, it may be possible to select at which "r-RESPA"_run_style.html level the fix operates via the {respa} @@ -120,6 +121,28 @@ compute to calculate temperature. See the "compute_modify dynamic/dof"_compute_modify.html command for a similar way to insure correct temperature normalization for those thermostats. +The {bodyforces} keyword determines whether the forces and torques +acting on rigid bodies are computed {early} at the post-force stage of +each timestep (right after per-atom forces have been computed and +communicated among processors), or {late} at the final-integrate stage +of each timestep (after any other fixes have finished their post-force +tasks). Only the rigid-body integration fixes use this option, which +includes "fix rigid"_fix_rigid.html and "fix +rigid/small"_fix_rigid.html, and their variants, and also "fix +poems"_fix_poems.html. + +The default is {late}. If there are other fixes that add forces to +individual atoms, then the rigid-body constraints will include these +forces when time-integrating the rigid bodies. If {early} is +specified, then new fixes can be written that use or modify the +per-body force and torque, before time-integration of the rigid bodies +occurs. Note however this has the side effect, that fixes such as +"fix addforce"_fix_addforce.html, "fix setforce"_fix_setforce.html, +"fix spring"_fix_spring.html, which add forces to individual atoms +will have no effect on the motion of the rigid bodies if they are +specified in the input script after the fix rigid command. LAMMPS +will give a warning if that is the case. + [Restrictions:] none [Related commands:] @@ -130,4 +153,5 @@ pressure"_compute_pressure.html, "thermo_style"_thermo_style.html [Default:] The option defaults are temp = ID defined by fix, press = ID defined -by fix, energy = no, virial = different for each fix style, respa = 0. +by fix, energy = no, virial = different for each fix style, respa = 0, +bodyforce = late. diff --git a/doc/src/fix_momentum.txt b/doc/src/fix_momentum.txt index bcf4465fb8f5c9bc30626cc3275f422fd2158e9e..aa5199ac14adefa0a6b53bafb55663fcc37bdf3b 100644 --- a/doc/src/fix_momentum.txt +++ b/doc/src/fix_momentum.txt @@ -61,10 +61,9 @@ initial velocities with zero aggregate linear and/or angular momentum. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -76,8 +75,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_nh.txt b/doc/src/fix_nh.txt index 41d0e6438fc9e05d08aa43d1548a98c0856ffd90..e3a39c6bc6efbd1ddcd8e49b9296724830aceded 100644 --- a/doc/src/fix_nh.txt +++ b/doc/src/fix_nh.txt @@ -484,10 +484,9 @@ the various ways to do this. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -499,8 +498,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_nph_asphere.txt b/doc/src/fix_nph_asphere.txt index 8c35b6a1a7a4b8bbd2fc98573764f99f0995249c..ff8c300c475d0770e7a345ecfb7e1282a2ea3bbe 100644 --- a/doc/src/fix_nph_asphere.txt +++ b/doc/src/fix_nph_asphere.txt @@ -81,10 +81,9 @@ It also means that changing attributes of {thermo_temp} or Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -96,8 +95,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_nph_body.txt b/doc/src/fix_nph_body.txt index 1e590f1cb3f3d5a46724d86e657d805a6a1906e3..9263470e9eba1d609f98969ae880751606d31db7 100644 --- a/doc/src/fix_nph_body.txt +++ b/doc/src/fix_nph_body.txt @@ -80,10 +80,9 @@ It also means that changing attributes of {thermo_temp} or Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -95,8 +94,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_nph_sphere.txt b/doc/src/fix_nph_sphere.txt index 62b45edfd7cd5ffbd8fe8ab48d5aefc29d3417ee..ba3b2f6c06f67cf2079f022d13a41c05599ba01a 100644 --- a/doc/src/fix_nph_sphere.txt +++ b/doc/src/fix_nph_sphere.txt @@ -90,10 +90,9 @@ It also means that changing attributes of {thermo_temp} or Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -105,8 +104,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_nphug.txt b/doc/src/fix_nphug.txt index 292e46f94af6fcfe8e8c8b5b1e04908c2c55c9bc..4f696e9590b43a44333db37bed3fcb6561c2b3d2 100644 --- a/doc/src/fix_nphug.txt +++ b/doc/src/fix_nphug.txt @@ -140,10 +140,9 @@ It also means that changing attributes of {thermo_temp} or Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -155,8 +154,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_npt_asphere.txt b/doc/src/fix_npt_asphere.txt index 5f3979e36ed9e586f2eee15750364641348c040c..a21caa1042df33ec57a08e5ffa0eb949b62dadaa 100644 --- a/doc/src/fix_npt_asphere.txt +++ b/doc/src/fix_npt_asphere.txt @@ -105,10 +105,9 @@ thermal degrees of freedom, and the bias is added back in. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -120,8 +119,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_npt_body.txt b/doc/src/fix_npt_body.txt index d89bf19db24fa7a988923a8cb5822cccc9641ed9..0f678a1b7d422fa910d4b217df7b63698ddaf4d7 100644 --- a/doc/src/fix_npt_body.txt +++ b/doc/src/fix_npt_body.txt @@ -104,10 +104,9 @@ thermal degrees of freedom, and the bias is added back in. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -119,8 +118,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_npt_sphere.txt b/doc/src/fix_npt_sphere.txt index c4cf2cb08de85d8fe892f240473a0a90daa56de0..862f95603f8ba3fb2e187a8d567147d0241d965b 100644 --- a/doc/src/fix_npt_sphere.txt +++ b/doc/src/fix_npt_sphere.txt @@ -115,10 +115,9 @@ thermal degrees of freedom, and the bias is added back in. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -130,8 +129,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_nve.txt b/doc/src/fix_nve.txt index c04c17858ebdf9b4166827a9cf5f52ed0f43e597..ac9cb53b50830f95acba891153d86f423d6c3f80 100644 --- a/doc/src/fix_nve.txt +++ b/doc/src/fix_nve.txt @@ -34,10 +34,9 @@ ensemble. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -49,8 +48,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_nve_asphere.txt b/doc/src/fix_nve_asphere.txt index 1f31fb96792239de806f99e78744106b0b08c1f7..5be7a7aa68e006c6a06ec23ca8a3ba0aa65c06f7 100644 --- a/doc/src/fix_nve_asphere.txt +++ b/doc/src/fix_nve_asphere.txt @@ -45,10 +45,9 @@ This fix is not invoked during "energy minimization"_minimize.html. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -60,8 +59,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_nve_sphere.txt b/doc/src/fix_nve_sphere.txt index 21dc6cba8a4aa7e067bcb9b0c066879e60b23479..cfe73a854d58d9636c8235ffe1838e50b28e25cd 100644 --- a/doc/src/fix_nve_sphere.txt +++ b/doc/src/fix_nve_sphere.txt @@ -65,10 +65,9 @@ moment of inertia, as used in the time integration. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -80,8 +79,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_nve_spin.txt b/doc/src/fix_nve_spin.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4b38c270bc4b40b73c570ce590f39fc282bad1f --- /dev/null +++ b/doc/src/fix_nve_spin.txt @@ -0,0 +1,76 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +fix nve/spin command :h3 + +[Syntax:] + +fix ID group-ID nve/spin keyword values :pre + +ID, group-ID are documented in "fix"_fix.html command :ulb,l +nve/spin = style name of this fix command :l +keyword = {lattice} :l + {lattice} value = {no} or {yes} :pre +:ule + +[Examples:] + +fix 3 all nve/spin lattice yes +fix 1 all nve/spin lattice no :pre + +[Description:] + +Perform a symplectic integration for the spin or spin-lattice system. + +The {lattice} keyword defines if the spins are integrated on a lattice +of fixed atoms (lattice = no), or if atoms are moving (lattice = yes). + +By default (lattice = yes), a spin-lattice integration is performed. + +The {nve/spin} fix applies a Suzuki-Trotter decomposition to +the equations of motion of the spin lattice system, following the scheme: + +:c,image(Eqs/fix_integration_spin_stdecomposition.jpg) + +according to the implementation reported in "(Omelyan)"_#Omelyan1. + +A sectoring method enables this scheme for parallel calculations. +The implementation of this sectoring algorithm is reported +in "(Tranchida)"_#Tranchida1. + +:line + +[Restrictions:] + +This fix style can only be used if LAMMPS was built with the +SPIN package. See the "Making LAMMPS"_Section_start.html#start_3 +section for more info on packages. + +To use the spin algorithm, it is necessary to define a map with +the atom_modify command. Typically, by adding the command: + +atom_modify map array :pre + +before you create the simulation box. Note that the keyword "hash" +instead of "array" is also valid. + +[Related commands:] + +"atom_style spin"_atom_style.html, "fix nve"_fix_nve.html + +[Default:] none + +:line + +:link(Omelyan1) +[(Omelyan)] Omelyan, Mryglod, and Folk. Phys. Rev. Lett. +86(5), 898. (2001). + +:link(Tranchida1) +[(Tranchida)] Tranchida, Plimpton, Thibaudeau and Thompson, +Journal of Computational Physics, (2018). diff --git a/doc/src/fix_nvt_asphere.txt b/doc/src/fix_nvt_asphere.txt index 21b900f16ac69d3ef28b7b39fa90f232f43eb290..031c60e4becebe29f3279bbfc2b624d54d45ec0d 100644 --- a/doc/src/fix_nvt_asphere.txt +++ b/doc/src/fix_nvt_asphere.txt @@ -86,10 +86,9 @@ thermal degrees of freedom, and the bias is added back in. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -101,8 +100,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_nvt_body.txt b/doc/src/fix_nvt_body.txt index 6a5e09ba7fb57ef45a91b9bf764e1f2e821fc34f..80de7fd7c3ce275453ecfa3a09b90338dbe6e3c7 100644 --- a/doc/src/fix_nvt_body.txt +++ b/doc/src/fix_nvt_body.txt @@ -85,10 +85,9 @@ thermal degrees of freedom, and the bias is added back in. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -100,8 +99,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_nvt_sllod.txt b/doc/src/fix_nvt_sllod.txt index 392dbc281c6f5eee0fc164f4ed8eb6670bfbcbef..bb3c09293923a9d97d1dbd6469de09c47ffcf4ed 100644 --- a/doc/src/fix_nvt_sllod.txt +++ b/doc/src/fix_nvt_sllod.txt @@ -109,10 +109,9 @@ thermal degrees of freedom, and the bias is added back in. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -124,8 +123,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_nvt_sphere.txt b/doc/src/fix_nvt_sphere.txt index ecf0922b7901a154f0728579b41d6e9502b2f3d0..897d5606d717cd668b997b7b59d352cd86c477f4 100644 --- a/doc/src/fix_nvt_sphere.txt +++ b/doc/src/fix_nvt_sphere.txt @@ -96,10 +96,9 @@ thermal degrees of freedom, and the bias is added back in. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -111,8 +110,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restart, fix_modify, output, run start/stop, minimize info:] diff --git a/doc/src/fix_poems.txt b/doc/src/fix_poems.txt index d90d832cb8e2deed341771ea00e9f0b294e55c8b..03abc058b8b0d6e982f6291e1fecbb887cf2ad9a 100644 --- a/doc/src/fix_poems.txt +++ b/doc/src/fix_poems.txt @@ -106,12 +106,18 @@ off, and there is only a single fix poems defined. [Restart, fix_modify, output, run start/stop, minimize info:] No information about this fix is written to "binary restart -files"_restart.html. None of the "fix_modify"_fix_modify.html options -are relevant to this fix. No global or per-atom quantities are stored -by this fix for access by various "output -commands"_Section_howto.html#howto_15. No parameter of this fix can -be used with the {start/stop} keywords of the "run"_run.html command. -This fix is not invoked during "energy minimization"_minimize.html. +files"_restart.html. + +The "fix_modify"_fix_modify.html {bodyforces} option is supported by +this fix style to set whether per-body forces and torques are computed +early or late in a timestep, i.e. at the post-force stage or at the +final-integrate stage, respectively. + +No global or per-atom quantities are stored by this fix for access by +various "output commands"_Section_howto.html#howto_15. No parameter +of this fix can be used with the {start/stop} keywords of the +"run"_run.html command. This fix is not invoked during "energy +minimization"_minimize.html. [Restrictions:] diff --git a/doc/src/fix_precession_spin.txt b/doc/src/fix_precession_spin.txt new file mode 100644 index 0000000000000000000000000000000000000000..4133d7dd57f42993ad8454d4d3e90973eccad34b --- /dev/null +++ b/doc/src/fix_precession_spin.txt @@ -0,0 +1,87 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +fix precession/spin command :h3 + +[Syntax:] + +fix ID group precession/spin style args :pre + +ID, group are documented in "fix"_fix.html command :ulb,l +precession/spin = style name of this fix command :l +style = {zeeman} or {anisotropy} :l + {zeeman} args = H x y z + H = intensity of the magnetic field (in Tesla) + x y z = vector direction of the field + {anisotropy} args = K x y z + K = intensity of the magnetic anisotropy (in eV) + x y z = vector direction of the anisotropy :pre +:ule + +[Examples:] + +fix 1 all precession/spin zeeman 0.1 0.0 0.0 1.0 +fix 1 all precession/spin anisotropy 0.001 0.0 0.0 1.0 +fix 1 all precession/spin zeeman 0.1 0.0 0.0 1.0 anisotropy 0.001 0.0 0.0 1.0 :pre + +[Description:] + +Impose a force torque to each magnetic spin in the group. + +Style {zeeman} is used for the simulation of the interaction +between the magnetic spins in the defined group and an external +magnetic field: + +:c,image(Eqs/force_spin_zeeman.jpg) + +with mu0 the vacuum permeability, muB the Bohr magneton (muB = 5.788 eV/T +in metal units). + +Style {anisotropy} is used to simulate an easy axis or an easy plane +for the magnetic spins in the defined group: + +:c,image(Eqs/force_spin_aniso.jpg) + +with n defining the direction of the anisotropy, and K (in eV) its intensity. +If K>0, an easy axis is defined, and if K<0, an easy plane is defined. + +In both cases, the choice of (x y z) imposes the vector direction for the force. +Only the direction of the vector is important; it's length is ignored. + +Both styles can be combined within one single command line. + +:line + +[Restart, fix_modify, output, run start/stop, minimize info:] + +By default, the energy associated to this fix is not added to the potential +energy of the system. +The "fix_modify"_fix_modify.html {energy} option is supported by this fix +to add this magnetic potential energy to the potential energy of the system, + +fix 1 all precession/spin zeeman 1.0 0.0 0.0 1.0 +fix_modify 1 energy yes :pre + +This fix computes a global scalar which can be accessed by various +"output commands"_Section_howto.html#howto_15. + +No information about this fix is written to "binary restart +files"_restart.html. + +[Restrictions:] + +The {precession/spin} style is part of the SPIN package. +This style is only enabled if LAMMPS was built with this package, and +if the atom_style "spin" was declared. +See the "Making LAMMPS"_Section_start.html#start_3 section for more info. + +[Related commands:] + +"atom_style spin"_atom_style.html + +[Default:] none diff --git a/doc/src/fix_property_atom.txt b/doc/src/fix_property_atom.txt index 10bb89c94cad5b28414578f621cab34c31266165..95fc2c424db6252553a8cd51583a8aa85bbe5d05 100644 --- a/doc/src/fix_property_atom.txt +++ b/doc/src/fix_property_atom.txt @@ -194,9 +194,9 @@ dump 1 all custom 100 tmp.dump id x y z c_1\[1\] c_1\[2\] :pre If you wish to add new "pair styles"_pair_style.html, "fixes"_fix.html, or "computes"_compute.html that use the per-atom -properties defined by this fix, see "Section -modify"_Section_modify.html#mod_1 of the manual which has some details -on how the properties can be accessed from added classes. +properties defined by this fix, see the "Modify atom"_Modify_atom.html +doc page which has details on how the properties can be accessed from +added classes. :line diff --git a/doc/src/fix_qeq_comb.txt b/doc/src/fix_qeq_comb.txt index 7f82404127fc61f6c3225f1c0d9b960bad470e27..783dc3133cb21ab290935cc72c37e1f31b173bb0 100644 --- a/doc/src/fix_qeq_comb.txt +++ b/doc/src/fix_qeq_comb.txt @@ -62,10 +62,9 @@ equilibration calculation is written to the specified file. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -77,8 +76,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_qeq_reax.txt b/doc/src/fix_qeq_reax.txt index 18450c7cd5c0852c30e2324f3c683d84a2b63479..a534a66c09f15fc9862f3f7b264a6e9b4cd653f7 100644 --- a/doc/src/fix_qeq_reax.txt +++ b/doc/src/fix_qeq_reax.txt @@ -80,10 +80,9 @@ This fix is invoked during "energy minimization"_minimize.html. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -95,8 +94,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_reax_bonds.txt b/doc/src/fix_reax_bonds.txt index 54aa7faef802f3061f795c54a7449d6d93265d0b..50f0b77d524d770345969306f87f7dd8ed5162b5 100644 --- a/doc/src/fix_reax_bonds.txt +++ b/doc/src/fix_reax_bonds.txt @@ -34,6 +34,8 @@ written to {filename} on timesteps that are multiples of {Nevery}, including timestep 0. For time-averaged chemical species analysis, please see the "fix reaxc/c/species"_fix_reaxc_species.html command. +The specified group-ID is ignored by this fix. + The format of the output file should be reasonably self-explanatory. The meaning of the column header abbreviations is as follows: @@ -70,7 +72,7 @@ This fix is not invoked during "energy minimization"_minimize.html. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section_accelerate"_Section_accelerate.html +hardware, as discussed in "Speed"_Speed.html of the manual. The accelerated styles take the same arguments and should produce the same results, except for round-off and precision issues. @@ -85,7 +87,7 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section_accelerate"_Section_accelerate.html of the manual for +See "Speed"_Speed.html of the manual for more instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_reaxc_species.txt b/doc/src/fix_reaxc_species.txt index 7c920791f7b10bd923da0402c35a8215a15bf650..75e4598ca5b4c468ff4774224789468528e2eb65 100644 --- a/doc/src/fix_reaxc_species.txt +++ b/doc/src/fix_reaxc_species.txt @@ -139,7 +139,7 @@ minimization"_minimize.html. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section_accelerate"_Section_accelerate.html +hardware, as discussed in "Speed"_Speed.html of the manual. The accelerated styles take the same arguments and should produce the same results, except for round-off and precision issues. @@ -154,7 +154,7 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section_accelerate"_Section_accelerate.html of the manual for +See "Speed"_Speed.html of the manual for more instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_restrain.txt b/doc/src/fix_restrain.txt index c8ec20daaa4ae3953b2660a2770607b15610533e..9de63defb700fb0f713187d87f4077fd35b86e0f 100644 --- a/doc/src/fix_restrain.txt +++ b/doc/src/fix_restrain.txt @@ -24,10 +24,12 @@ keyword = {bond} or {angle} or {dihedral} :l atom1,atom2,atom3 = IDs of 3 atoms in angle, atom2 = middle atom Kstart,Kstop = restraint coefficients at start/end of run (energy units) theta0 = equilibrium angle theta (degrees) - {dihedral} args = atom1 atom2 atom3 atom4 Kstart Kstop phi0 + {dihedral} args = atom1 atom2 atom3 atom4 Kstart Kstop phi0 keyword/value atom1,atom2,atom3,atom4 = IDs of 4 atoms in dihedral in linear order Kstart,Kstop = restraint coefficients at start/end of run (energy units) - phi0 = equilibrium dihedral angle phi (degrees) :pre + phi0 = equilibrium dihedral angle phi (degrees) + keyword/value = optional keyword value pairs. supported keyword/value pairs: + {mult} n = dihedral multiplicity n (integer >= 0, default = 1) :pre :ule [Examples:] @@ -155,11 +157,13 @@ associated with the restraint is with the following coefficients: K (energy) -n = 1 +n (multiplicity, >= 0) d (degrees) = phi0 + 180 :ul -K and phi0 are specified with the fix. Note that the value of n is -hard-wired to 1. Also note that the energy will be a minimum when the +K and phi0 are specified with the fix. Note that the value of the +dihedral multiplicity {n} is set by default to 1. You can use the +optional {mult} keyword to set it to a different positive integer. +Also note that the energy will be a minimum when the current dihedral angle phi is equal to phi0. :line @@ -183,10 +187,17 @@ added forces to be included in the total potential energy of the system (the quantity being minimized), you MUST enable the "fix_modify"_fix_modify.html {energy} option for this fix. -This fix computes a global scalar, which can be accessed by various -"output commands"_Section_howto.html#howto_15. The scalar is the -potential energy for all the restraints as discussed above. The scalar -value calculated by this fix is "extensive". +This fix computes a global scalar and a global vector of length 3, which +can be accessed by various "output commands"_Section_howto.html#howto_15. +The scalar is the total potential energy for {all} the restraints as +discussed above. The vector values are the sum of contributions to the +following individual categories: + +1 = bond energy +2 = angle energy +3 = dihedral energy :ul + +The scalar and vector values calculated by this fix are "extensive". No parameter of this fix can be used with the {start/stop} keywords of the "run"_run.html command. diff --git a/doc/src/fix_rigid.txt b/doc/src/fix_rigid.txt index eced602c4b3540bf95ef8fe17278e7baf697e4c0..f3dd20daa3504e0f0c898edafa1858139ddb4bf2 100644 --- a/doc/src/fix_rigid.txt +++ b/doc/src/fix_rigid.txt @@ -223,10 +223,10 @@ via several options. NOTE: With the {rigid/small} styles, which require that {bodystyle} be specified as {molecule} or {custom}, you can define a system that has -no rigid bodies initially. This is useful when you are using the {mol} -keyword in conjunction with another fix that is adding rigid bodies -on-the-fly as molecules, such as "fix deposit"_fix_deposit.html or -"fix pour"_fix_pour.html. +no rigid bodies initially. This is useful when you are using the +{mol} keyword in conjunction with another fix that is adding rigid +bodies on-the-fly as molecules, such as "fix deposit"_fix_deposit.html +or "fix pour"_fix_pour.html. For bodystyle {single} the entire fix group of atoms is treated as one rigid body. This option is only allowed for the {rigid} styles. @@ -241,19 +241,17 @@ molecule ID = 0) surrounding rigid bodies, this may not be what you want. Thus you should be careful to use a fix group that only includes atoms you want to be part of rigid bodies. -Bodystyle {custom} is similar to bodystyle {molecule}, however some -custom properties are used to group atoms into rigid bodies. The -special case for molecule/body ID = 0 is not available. Possible -custom properties are an integer property associated with atoms through -"fix property/atom"_fix_property_atom.html or an atom style variable -or an atomfile style variable. For the latter two, the variable value -will be rounded to an integer and then rigid bodies defined from -those values. - -For bodystyle {group}, each of the listed groups is treated as a -separate rigid body. Only atoms that are also in the fix group are -included in each rigid body. This option is only allowed for the -{rigid} styles. +Bodystyle {custom} is similar to bodystyle {molecule} except that it +is more flexible in using other per-atom properties to define the sets +of atoms that form rigid bodies. An integer vector defined by the +"fix property/atom"_fix_property_atom.txt command can be used. Or an +"atom-style or atomfile-style variable"_variable.html can be used; the +floating-point value produced by the variable is rounded to an +integer. As with bondstyle {molecule}, each set of atoms in the fix +groups with the same integer value is treated as a different rigid +body. Since fix property/atom vectors and atom-style variables +produce values for all atoms, you should be careful to use a fix group +that only includes atoms you want to be part of rigid bodies. NOTE: To compute the initial center-of-mass position and other properties of each rigid body, the image flags for each atom in the @@ -692,10 +690,9 @@ rigid/nvt. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -707,8 +704,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line @@ -742,6 +739,11 @@ used to calculate the instantaneous pressure tensor. Note that the 2 NVT rigid fixes do not use any external compute to compute instantaneous temperature. +The "fix_modify"_fix_modify.html {bodyforces} option is supported by +all rigid styles to set whether per-body forces and torques are +computed early or late in a timestep, i.e. at the post-force stage or +at the final-integrate stage or the timestep, respectively. + The 2 NVE rigid fixes compute a global scalar which can be accessed by various "output commands"_Section_howto.html#howto_15. The scalar value calculated by these fixes is "intensive". The scalar is the diff --git a/doc/src/fix_rx.txt b/doc/src/fix_rx.txt index 0810a347408f33cf20586448cf2141fb4c037275..aff3303f4353b3889edbfd3e72113609983cade5 100644 --- a/doc/src/fix_rx.txt +++ b/doc/src/fix_rx.txt @@ -186,10 +186,9 @@ read_data data.dpd fix foo_SPECIES NULL Species Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -201,8 +200,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_setforce.txt b/doc/src/fix_setforce.txt index f5be0f93a54c459ead80c691dd4905df678760c4..0af1c929228e6fcb1ba8d99589a11ab9084d41a4 100644 --- a/doc/src/fix_setforce.txt +++ b/doc/src/fix_setforce.txt @@ -65,12 +65,12 @@ to it. :line -Styles with a r {kk} suffix are functionally the same as the -corresponding style without the suffix. They have been optimized to -run faster, depending on your available hardware, as discussed in -"Section 5"_Section_accelerate.html of the manual. The -accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are +functionally the same as the corresponding style without the suffix. +They have been optimized to run faster, depending on your available +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. The region keyword is also supported by Kokkos, but a Kokkos-enabled region must be used. See the region "region"_region.html command for @@ -85,8 +85,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_shake.txt b/doc/src/fix_shake.txt index 46452a1f7e932eaf2531525f7ee6d557fceffb37..7428b30a146a7053c99c208c05e09c73d881ef78 100644 --- a/doc/src/fix_shake.txt +++ b/doc/src/fix_shake.txt @@ -145,12 +145,12 @@ info of atoms in the molecule. :line -Styles with a suffix are functionally the same as the corresponding -style without the suffix. They have been optimized to run faster, -depending on your available hardware, as discussed in -"Section 5"_Section_accelerate.html of the manual. The -accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are +functionally the same as the corresponding style without the suffix. +They have been optimized to run faster, depending on your available +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -162,8 +162,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_shardlow.txt b/doc/src/fix_shardlow.txt index 24726d8610abf0a79db6e14b163731d61ff46404..6d14346334c8beac00d4edbbc206e6213a414ac0 100644 --- a/doc/src/fix_shardlow.txt +++ b/doc/src/fix_shardlow.txt @@ -56,10 +56,9 @@ examples/USER/dpd directory. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -71,8 +70,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_vector.txt b/doc/src/fix_vector.txt index 47b3cfc67a2dbe667ce2af1799368b50dc741f50..385d24cff19594096b6193443dd88fc8ad3a2f54 100644 --- a/doc/src/fix_vector.txt +++ b/doc/src/fix_vector.txt @@ -94,7 +94,7 @@ output"_thermo_style.html or other fixes such as "fix nvt"_fix_nh.html or "fix temp/rescale"_fix_temp_rescale.html. See the doc pages for these commands which give the IDs of these computes. Users can also write code for their own compute styles and "add them to -LAMMPS"_Section_modify.html. +LAMMPS"_Modify.html. If a value begins with "f_", a fix ID must follow which has been previously defined in the input script. If no bracketed term is @@ -105,7 +105,7 @@ calculated by the fix is used. Note that some fixes only produce their values on certain timesteps, which must be compatible with {Nevery}, else an error will result. Users can also write code for their own fix styles and "add them to -LAMMPS"_Section_modify.html. +LAMMPS"_Modify.html. If a value begins with "v_", a variable name must follow which has been previously defined in the input script. An equal-style or diff --git a/doc/src/fix_wall.txt b/doc/src/fix_wall.txt index e814c89a0743af6b7d744ac71d62d71df5c3053d..959a103f02cf87fff21ce36b5f75607c5005c397 100644 --- a/doc/src/fix_wall.txt +++ b/doc/src/fix_wall.txt @@ -288,10 +288,9 @@ option for this fix. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -303,8 +302,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fix_wall_body_polygon.txt b/doc/src/fix_wall_body_polygon.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ba16b56c79fab2c4cecf6798a71a895b862c5cf --- /dev/null +++ b/doc/src/fix_wall_body_polygon.txt @@ -0,0 +1,104 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +fix wall/body/polygon command :h3 + +[Syntax:] + +fix ID group-ID wall/body/polygon k_n c_n c_t wallstyle args keyword values ... :pre + +ID, group-ID are documented in "fix"_fix.html command :ulb,l +wall/body/polygon = style name of this fix command :l +k_n = normal repulsion strength (force/distance or pressure units) :l +c_n = normal damping coefficient (force/distance or pressure units) :l +c_t = tangential damping coefficient (force/distance or pressure units) :l +wallstyle = {xplane} or {yplane} or {zplane} or {zcylinder} :l +args = list of arguments for a particular style :l + {xplane} or {yplane} args = lo hi + lo,hi = position of lower and upper plane (distance units), either can be NULL) + {zcylinder} args = radius + radius = cylinder radius (distance units) :pre +zero or more keyword/value pairs may be appended to args :l +keyword = {wiggle} :l + {wiggle} values = dim amplitude period + dim = {x} or {y} or {z} + amplitude = size of oscillation (distance units) + period = time of oscillation (time units) :pre +:ule + +[Examples:] + +fix 1 all wall/body/polygon 1000.0 20.0 5.0 xplane -10.0 10.0 + +[Description:] + +This fix is for use with 2d models of body particles of style +{rounded/polygon}. It bounds the simulation domain with wall(s). All +particles in the group interact with the wall when they are close +enough to touch it. The nature of the interaction between the wall +and the polygon particles is the same as that between the polygon +particles themselves, which is similar to a Hookean potential. See +"Section 6.14"_Section_howto.html#howto_14 of the manual and the +"body"_body.html doc page for more details on using body particles. + +The parameters {k_n}, {c_n}, {c_t} have the same meaning and units as +those specified with the "pair_style +body/rounded/polygon"_pair_body_rounded_polygon.html command. + +The {wallstyle} can be planar or cylindrical. The 2 planar options +specify a pair of walls in a dimension. Wall positions are given by +{lo} and {hi}. Either of the values can be specified as NULL if a +single wall is desired. For a {zcylinder} wallstyle, the cylinder's +axis is at x = y = 0.0, and the radius of the cylinder is specified. + +Optionally, the wall can be moving, if the {wiggle} keyword is +appended. + +For the {wiggle} keyword, the wall oscillates sinusoidally, similar to +the oscillations of particles which can be specified by the "fix +move"_fix_move.html command. This is useful in packing simulations of +particles. The arguments to the {wiggle} keyword specify a dimension +for the motion, as well as it's {amplitude} and {period}. Note that +if the dimension is in the plane of the wall, this is effectively a +shearing motion. If the dimension is perpendicular to the wall, it is +more of a shaking motion. A {zcylinder} wall can only be wiggled in +the z dimension. + +Each timestep, the position of a wiggled wall in the appropriate {dim} +is set according to this equation: + +position = coord + A - A cos (omega * delta) :pre + +where {coord} is the specified initial position of the wall, {A} is +the {amplitude}, {omega} is 2 PI / {period}, and {delta} is the time +elapsed since the fix was specified. The velocity of the wall is set +to the derivative of this expression. + +[Restart, fix_modify, output, run start/stop, minimize info:] + +None of the "fix_modify"_fix_modify.html options are relevant to this +fix. No global or per-atom quantities are stored by this fix for +access by various "output commands"_Section_howto.html#howto_15. No +parameter of this fix can be used with the {start/stop} keywords of +the "run"_run.html command. This fix is not invoked during "energy +minimization"_minimize.html. + +[Restrictions:] + +This fix is part of the BODY package. It is only enabled if LAMMPS +was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. + +Any dimension (xy) that has a wall must be non-periodic. + +[Related commands:] + +"atom_style body"_atom_style.html, "pair_style +body/rounded/polygon"_pair_body_rounded_polygon.html + +[Default:] none diff --git a/doc/src/fix_wall_body_polyhedron.txt b/doc/src/fix_wall_body_polyhedron.txt new file mode 100644 index 0000000000000000000000000000000000000000..c937cbdbbc80a6c711c845212a0a47d85d0800be --- /dev/null +++ b/doc/src/fix_wall_body_polyhedron.txt @@ -0,0 +1,103 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +fix wall/body/polyhedron command :h3 + +[Syntax:] + +fix ID group-ID wall/body/polyhedron k_n c_n c_t wallstyle args keyword values ... :pre + +ID, group-ID are documented in "fix"_fix.html command :ulb,l +wall/body/polyhedron = style name of this fix command :l +k_n = normal repulsion strength (force/distance units or pressure units - see discussion below) :l +c_n = normal damping coefficient (force/distance units or pressure units - see discussion below) :l +c_t = tangential damping coefficient (force/distance units or pressure units - see discussion below) :l +wallstyle = {xplane} or {yplane} or {zplane} or {zcylinder} :l +args = list of arguments for a particular style :l + {xplane} or {yplane} args = lo hi + lo,hi = position of lower and upper plane (distance units), either can be NULL) + {zcylinder} args = radius + radius = cylinder radius (distance units) :pre +zero or more keyword/value pairs may be appended to args :l +keyword = {wiggle} :l + {wiggle} values = dim amplitude period + dim = {x} or {y} or {z} + amplitude = size of oscillation (distance units) + period = time of oscillation (time units) :pre +:ule + +[Examples:] + +fix 1 all wall/body/polyhedron 1000.0 20.0 5.0 xplane -10.0 10.0 + +[Description:] + +This fix is for use with 3d models of body particles of style +{rounded/polyhedron}. It bounds the simulation domain with wall(s). +All particles in the group interact with the wall when they are close +enough to touch it. The nature of the interaction between the wall +and the polygon particles is the same as that between the polygon +particles themselves, which is similar to a Hookean potential. See +"Section 6.14"_Section_howto.html#howto_14 of the manual and the +"body"_body.html doc page for more details on using body particles. + +The parameters {k_n}, {c_n}, {c_t} have the same meaning and units as +those specified with the "pair_style +body/rounded/polyhedron"_pair_body_rounded_polyhedron.html command. + +The {wallstyle} can be planar or cylindrical. The 3 planar options +specify a pair of walls in a dimension. Wall positions are given by +{lo} and {hi}. Either of the values can be specified as NULL if a +single wall is desired. For a {zcylinder} wallstyle, the cylinder's +axis is at x = y = 0.0, and the radius of the cylinder is specified. + +Optionally, the wall can be moving, if the {wiggle} keyword is appended. + +For the {wiggle} keyword, the wall oscillates sinusoidally, similar to +the oscillations of particles which can be specified by the "fix +move"_fix_move.html command. This is useful in packing simulations of +particles. The arguments to the {wiggle} keyword specify a dimension +for the motion, as well as it's {amplitude} and {period}. Note that +if the dimension is in the plane of the wall, this is effectively a +shearing motion. If the dimension is perpendicular to the wall, it is +more of a shaking motion. A {zcylinder} wall can only be wiggled in +the z dimension. + +Each timestep, the position of a wiggled wall in the appropriate {dim} +is set according to this equation: + +position = coord + A - A cos (omega * delta) :pre + +where {coord} is the specified initial position of the wall, {A} is +the {amplitude}, {omega} is 2 PI / {period}, and {delta} is the time +elapsed since the fix was specified. The velocity of the wall is set +to the derivative of this expression. + +[Restart, fix_modify, output, run start/stop, minimize info:] + +None of the "fix_modify"_fix_modify.html options are relevant to this +fix. No global or per-atom quantities are stored by this fix for +access by various "output commands"_Section_howto.html#howto_15. No +parameter of this fix can be used with the {start/stop} keywords of +the "run"_run.html command. This fix is not invoked during "energy +minimization"_minimize.html. + +[Restrictions:] + +This fix is part of the BODY package. It is only enabled if +LAMMPS was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. + +Any dimension (xyz) that has a wall must be non-periodic. + +[Related commands:] + +"atom_style body"_atom_style.html, "pair_style +body/rounded/polyhedron"_pair_body_rounded_polyhedron.html + +[Default:] none diff --git a/doc/src/fix_wall_reflect.txt b/doc/src/fix_wall_reflect.txt index 954ec65bf6a1c059226c1beac58bea86fab0fb84..5380bdf738c5435352f090bcff46073ddd2b02a7 100644 --- a/doc/src/fix_wall_reflect.txt +++ b/doc/src/fix_wall_reflect.txt @@ -130,10 +130,9 @@ position = c0 + A (1 - cos(omega*delta)) :pre Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -145,8 +144,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/fixes.txt b/doc/src/fixes.txt index c3fcc06bf1c53e780b9b7bc3ce9885671fc9f690..7a45ed8086a14cdc201eea9cce5f28f80b4df00e 100644 --- a/doc/src/fixes.txt +++ b/doc/src/fixes.txt @@ -20,9 +20,11 @@ Fixes :h1 fix_ave_time fix_aveforce fix_balance + fix_bocs fix_bond_break fix_bond_create fix_bond_swap + fix_bond_react fix_box_relax fix_cmap fix_colvars @@ -59,6 +61,7 @@ Fixes :h1 fix_langevin fix_langevin_drude fix_langevin_eff + fix_langevin_spin fix_latte fix_lb_fluid fix_lb_momentum @@ -97,6 +100,7 @@ Fixes :h1 fix_nve_manifold_rattle fix_nve_noforce fix_nve_sphere + fix_nve_spin fix_nve_tri fix_nvk fix_nvt_asphere @@ -112,6 +116,7 @@ Fixes :h1 fix_planeforce fix_poems fix_pour + fix_precession_spin fix_press_berendsen fix_print fix_property_atom @@ -163,6 +168,8 @@ Fixes :h1 fix_viscosity fix_viscous fix_wall + fix_wall_body_polygon + fix_wall_body_polyhedron fix_wall_ees fix_wall_gran fix_wall_gran_region diff --git a/doc/src/improper_class2.txt b/doc/src/improper_class2.txt index 14ec6258de654a466ec429328014f420e81cb999..ef2abf5091854d6f75c37100b0c626fca48c7121 100644 --- a/doc/src/improper_class2.txt +++ b/doc/src/improper_class2.txt @@ -87,10 +87,9 @@ radians internally; hence the units of M are in energy/radian^2. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -102,8 +101,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/improper_cossq.txt b/doc/src/improper_cossq.txt index 138a6a16503b125003b15ec1ceb394f18963e1eb..22ba990ba4885b4eaba923f5672a86d821c5d22e 100644 --- a/doc/src/improper_cossq.txt +++ b/doc/src/improper_cossq.txt @@ -53,10 +53,9 @@ X0 (degrees) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -68,8 +67,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/improper_cvff.txt b/doc/src/improper_cvff.txt index 5f69eccc60a1d060b894c89f487d591fa1a8b0b8..1662d93b140420f9b89066a0ba475f6b9b2e224c 100644 --- a/doc/src/improper_cvff.txt +++ b/doc/src/improper_cvff.txt @@ -54,10 +54,9 @@ n (0,1,2,3,4,6) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -69,8 +68,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/improper_fourier.txt b/doc/src/improper_fourier.txt index f9062da207b329cb7616ca38420e8878675252b4..99132b893193ba9b7855d4b0a2a75c9dbfd54471 100644 --- a/doc/src/improper_fourier.txt +++ b/doc/src/improper_fourier.txt @@ -48,10 +48,9 @@ all (integer >= 0) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -63,8 +62,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/improper_harmonic.txt b/doc/src/improper_harmonic.txt index bb17e5a641e8da1b4b92f3e1b5ecfe8245fddf1a..f37338e468567487c8409203ae3911e451e2e335 100644 --- a/doc/src/improper_harmonic.txt +++ b/doc/src/improper_harmonic.txt @@ -58,10 +58,9 @@ internally; hence the units of K are in energy/radian^2. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -73,8 +72,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/improper_ring.txt b/doc/src/improper_ring.txt index c02d39247403622fe51e1ffbc4e47df43e11db77..84c35f9f5c19f998196ab0044af01bdb4ffccf63 100644 --- a/doc/src/improper_ring.txt +++ b/doc/src/improper_ring.txt @@ -57,10 +57,9 @@ theta0 (degrees) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -72,8 +71,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/improper_umbrella.txt b/doc/src/improper_umbrella.txt index d6df9ee6cccc8ec2f391a2583ac495caa0ad07e9..e72cc7f0ad16c293a458e1870c42539f1fd4e983 100644 --- a/doc/src/improper_umbrella.txt +++ b/doc/src/improper_umbrella.txt @@ -51,10 +51,9 @@ omega0 (degrees) :ul Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -66,8 +65,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/kspace_style.txt b/doc/src/kspace_style.txt index 4f27c9aa78e95cb2819b65d44be17acfb53e4a6f..8dbb3dde49adff950c3f9a035e11575bf6081dac 100644 --- a/doc/src/kspace_style.txt +++ b/doc/src/kspace_style.txt @@ -145,8 +145,8 @@ speedup in the KSpace time (8x less mesh points, 2x more expensive). However, for low relative accuracy, the staggered PPPM mesh size may be essentially the same as for regular PPPM, which means the method will be up to 2x slower in the KSpace time (simply 2x more expensive). -For more details and timings, see -"Section 5"_Section_accelerate.html. +For more details and timings, see the "Speed tips"_Speed_tips.html doc +page. NOTE: Using {pppm/stagger} may not give the same increase in the accuracy of energy and pressure as it does in forces, so some caution @@ -267,10 +267,9 @@ relative RMS error. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. More specifically, the {pppm/gpu} style performs charge assignment and force interpolation calculations on the GPU. These processes are @@ -291,8 +290,8 @@ KOKKOS, USER-OMP, and OPT packages respectively. They are only enabled if LAMMPS was built with those packages. See the "Making LAMMPS"_Section_start.html#start_3 section for more info. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/lammps.book b/doc/src/lammps.book index ec34f41872db2aa143628ce3f99c249a8641cda9..f9798da2276f8ecee234a26539c1be75d2070774 100644 --- a/doc/src/lammps.book +++ b/doc/src/lammps.book @@ -4,20 +4,56 @@ Manual.html Section_intro.html Section_start.html Section_commands.html -Section_packages.html -Section_accelerate.html -accelerate_gpu.html -accelerate_intel.html -accelerate_kokkos.html -accelerate_omp.html -accelerate_opt.html +Packages.html +Packages_standard.html +Packages_user.html +Packages_details.html +Speed.html +Speed_bench.html +Speed_measure.html +Speed_tips.html +Speed_packages.html +Speed_gpu.html +Speed_intel.html +Speed_kokkos.html +Speed_omp.html +Speed_opt.html +Speed_compare.html Section_howto.html -Section_example.html -Section_perf.html -Section_tools.html -Section_modify.html -Section_python.html -Section_errors.html +Examples.html +Tools.html +Modify.html +Modify_overview.html +Modify_contribute.html +Modify_atom.html +Modify_pair.html +Modify_bond.html +Modify_compute.html +Modify_fix.html +Modify_command.html +Modify_dump.html +Modify_kspace.html +Modify_min.html +Modify_region.html +Modify_body.html +Modify_thermo.html +Modify_variable.html +Python.html +Python_overview.html +Python_run.html +Python_shlib.html +Python_install.html +Python_mpi.html +Python_test.html +Python_library.html +Python_pylammps.html +Python_examples.html +Python_call.html +Errors.html +Errors_common.html +Errors_bugs.html +Errors_messages.html +Errors_warnings.html Section_history.html lammps_tutorials.html @@ -135,8 +171,10 @@ fix_ave_histo.html fix_ave_time.html fix_aveforce.html fix_balance.html +fix_bocs.html fix_bond_break.html fix_bond_create.html +fix_bond_react.html fix_bond_swap.html fix_box_relax.html fix_cmap.html @@ -174,6 +212,7 @@ fix_ipi.html fix_langevin.html fix_langevin_drude.html fix_langevin_eff.html +fix_langevin_spin.html fix_latte.html fix_lb_fluid.html fix_lb_momentum.html @@ -211,6 +250,7 @@ fix_nve_line.html fix_nve_manifold_rattle.html fix_nve_noforce.html fix_nve_sphere.html +fix_nve_spin.html fix_nve_tri.html fix_nvk.html fix_nvt_asphere.html @@ -227,6 +267,7 @@ fix_pimd.html fix_planeforce.html fix_poems.html fix_pour.html +fix_precession_spin.html fix_press_berendsen.html fix_print.html fix_property_atom.html @@ -278,6 +319,8 @@ fix_vector.html fix_viscosity.html fix_viscous.html fix_wall.html +fix_wall_body_polygon.html +fix_wall_body_polyhedron.html fix_wall_ees.html fix_wall_gran.html fix_wall_gran_region.html @@ -315,6 +358,7 @@ compute_displace_atom.html compute_dpd.html compute_dpd_atom.html compute_edpd_temp_atom.html +compute_entropy_atom.html compute_erotate_asphere.html compute_erotate_rigid.html compute_erotate_sphere.html @@ -379,6 +423,7 @@ compute_smd_ulsph_strain_rate.html compute_smd_ulsph_stress.html compute_smd_vol.html compute_sna_atom.html +compute_spin.html compute_stress_atom.html compute_tally.html compute_tdpd_cc_atom.html @@ -417,8 +462,9 @@ pair_agni.html pair_airebo.html pair_awpmd.html pair_beck.html -pair_body.html +pair_body_nparticle.html pair_body_rounded_polygon.html +pair_body_rounded_polyhedron.html pair_bop.html pair_born.html pair_brownian.html @@ -504,6 +550,10 @@ pair_sph_lj.html pair_sph_rhosum.html pair_sph_taitwater.html pair_sph_taitwater_morris.html +pair_spin_dmi.html +pair_spin_exchange.html +pair_spin_magelec.html +pair_spin_neel.html pair_srp.html pair_sw.html pair_table.html @@ -580,6 +630,7 @@ dihedral_opls.html dihedral_quadratic.html dihedral_spherical.html dihedral_table.html +dihedral_table_cut.html dihedral_zero.html lammps_commands_improper.html diff --git a/doc/src/molecule.txt b/doc/src/molecule.txt index ecec62256a82a3b2e67f9fe64a2af6f796f0c66e..cd9ecce42c8b8750e52389e6b48c08885a7cae3f 100644 --- a/doc/src/molecule.txt +++ b/doc/src/molecule.txt @@ -98,19 +98,20 @@ molecule (header keyword = inertia). NOTE: The molecule command can be used to define molecules with bonds, angles, dihedrals, imporopers, or special bond lists of neighbors within a molecular topology, so that you can later add the molecules -to your simulation, via one or more of the commands listed above. If -such molecules do not already exist when LAMMPS creates the simulation -box, via the "create_box"_create_box.html or -"read_data"_read_data.html command, when you later add them you may -overflow the pre-allocated data structures which store molecular -topology information with each atom, and an error will be generated. -Both the "create_box"_create_box.html command and the data files read -by the "read_data"_read_data.html command have "extra" options which +to your simulation, via one or more of the commands listed above. +Since this topology-related information requires that suitable storage +is reserved when LAMMPS creates the simulation box (e.g. when using +the "create_box"_create_box.html command or the +"read_data"_read_data.html command) suitable space has to be reserved +so you do not overflow those pre-allocated data structures when adding +molecules later. Both the "create_box"_create_box.html command and +the "read_data"_read_data.html command have "extra" options which insure space is allocated for storing topology info for molecules that are added later. -The format of an individual molecule file is similar to the data file -read by the "read_data"_read_data.html commands, and is as follows. +The format of an individual molecule file is similar but +(not identical) to the data file read by the "read_data"_read_data.html +commands, and is as follows. A molecule file has a header and a body. The header appears first. The first line of the header is always skipped; it typically contains @@ -455,7 +456,11 @@ of SHAKE clusters. :line -[Restrictions:] none +[Restrictions:] + +This command must come after the simulation box is define by a +"read_data"_read_data.html, "read_restart"_read_restart.html, or +"create_box"_create_box.html command. [Related commands:] diff --git a/doc/src/package.txt b/doc/src/package.txt index 5c698934e857bfa31bdceac69bb3296ff76961c3..81e1db9bd8116656f328deb10bc6b449a6f049be 100644 --- a/doc/src/package.txt +++ b/doc/src/package.txt @@ -33,8 +33,10 @@ args = arguments specific to the style :l last = ID of last GPU to be used on each node {tpa} value = Nthreads Nthreads = # of GPU threads used per atom - {device} value = device_type - device_type = {kepler} or {fermi} or {cypress} or {generic} + {device} value = device_type or platform_id:device_type or platform_id:custom,val1,val2,val3,..,val13 + platform_id = numerical OpenCL platform id (default: -1) + device_type = {kepler} or {fermi} or {cypress} or {intel} or {phi} or {generic} or {custom} + val1,val2,... = custom OpenCL tune parameters (see below for details) {blocksize} value = size size = thread block size for pair force computation {intel} args = NPhi keyword value ... @@ -96,6 +98,9 @@ args = arguments specific to the style :l package gpu 1 package gpu 1 split 0.75 package gpu 2 split -1.0 +package gpu 1 device kepler +package gpu 1 device 2:generic +package gpu 1 device custom,32,4,8,256,11,128,256,128,32,64,8,128,128 package kokkos neigh half comm device package omp 0 neigh no package omp 4 @@ -144,9 +149,9 @@ the style options are set, either to default values or to specified settings. I.e. settings from previous invocations do not persist across multiple invocations. -See the "Section 5.3"_Section_accelerate.html#acc_3 section of the -manual for more details about using the various accelerator packages -for speeding up LAMMPS simulations. +See the "Speed packages"_Speed_packages.html doc page for more details +about using the various accelerator packages for speeding up LAMMPS +simulations. :line @@ -244,12 +249,40 @@ the value can improve performance. The number of threads per atom must be a power of 2 and currently cannot be greater than 32. The {device} keyword can be used to tune parameters optimized for a -specific accelerator, when using OpenCL. For CUDA, the {device} -keyword is ignored. Currently, the device type is limited to NVIDIA -Kepler, NVIDIA Fermi, AMD Cypress, or a generic device. More devices -may be added later. The default device type can be specified when -building LAMMPS with the GPU library, via settings in the -lib/gpu/Makefile that is used. +specific accelerator and platform when using OpenCL. OpenCL supports +the concept of a [platform], which represents one or more devices that +share the same driver (e.g. there would be a different platform for +GPUs from different vendors or for CPU based accelerator support). +In LAMMPS only one platform can be active at a time and by default +the first platform with an accelerator is selected. This is equivalent +to using a platform ID of -1. The platform ID is a number corresponding +to the output of the ocl_get_devices tool. The platform ID is passed +to the GPU library, by prefixing the {device} keyword with that number +separated by a colon. For CUDA, the {device} keyword is ignored. +Currently, the device tuning support is limited to NVIDIA Kepler, NVIDIA +Fermi, AMD Cypress, Intel x86_64 CPU, Intel Xeon Phi, or a generic device. +More devices may be added later. The default device type can be +specified when building LAMMPS with the GPU library, via setting a +variable in the lib/gpu/Makefile that is used. + +In addition, a device type {custom} is available, which is followed by +13 comma separated numbers, which allows to set those tweakable parameters +from the package command. It can be combined with the (colon separated) +platform id. The individual settings are: + +MEM_THREADS +THREADS_PER_ATOM +THREADS_PER_CHARGE +BLOCK_PAIR +MAX_SHARED_TYPES +BLOCK_NBOR_BUILD +BLOCK_BIO_PAIR +BLOCK_ELLIPSE +WARP_SIZE +PPPM_BLOCK_1D +BLOCK_CELL_2D +BLOCK_CELL_ID +MAX_BIO_SHARED_TYPES :ul The {blocksize} keyword allows you to tweak the number of threads used per thread block. This number should be a multiple of 32 (for GPUs) diff --git a/doc/src/pair_adp.txt b/doc/src/pair_adp.txt index 9d2a48dcbca399bc00f09458c56941cf3f622b5e..1ba59b7732e164b7f3643100f20d172833b5151b 100644 --- a/doc/src/pair_adp.txt +++ b/doc/src/pair_adp.txt @@ -125,10 +125,9 @@ array tabulated with a scaling by r. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -140,8 +139,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_agni.txt b/doc/src/pair_agni.txt index 402e537dadf39bc5728d6001d32a0709d17e54c0..352e00249a4198506ea9cd5b54f6a34d2dc3cea9 100644 --- a/doc/src/pair_agni.txt +++ b/doc/src/pair_agni.txt @@ -58,11 +58,11 @@ and input files are provided in the examples/USER/misc/agni directory. :line Styles with {omp} suffix is functionally the same as the corresponding -style without the suffix. They have been optimized to run faster, depending -on your available hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated style takes the same arguments and -should produce the same results, except for round-off and precision -issues. +style without the suffix. They have been optimized to run faster, +depending on your available hardware, as discussed on the "Speed +packages"_Speed_packages.html doc page. The accelerated style takes +the same arguments and should produce the same results, except for +round-off and precision issues. The accelerated style is part of the USER-OMP. They are only enabled if LAMMPS was built with those packages. See the "Making @@ -73,8 +73,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_airebo.txt b/doc/src/pair_airebo.txt index 1aa017f2786ac95e60556d84b5a900fcab5a1704..b5add21f2431c77cb40406ec98e1cba6509771fc 100644 --- a/doc/src/pair_airebo.txt +++ b/doc/src/pair_airebo.txt @@ -176,10 +176,9 @@ thermo_style custom step temp epair v_REBO v_LJ v_TORSION :pre Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -191,8 +190,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_beck.txt b/doc/src/pair_beck.txt index e160f09b3d6fc5764c24bdd367d284e93db55622..1aca4b4f9ac88f93cf20ee110d356db6c7b12c38 100644 --- a/doc/src/pair_beck.txt +++ b/doc/src/pair_beck.txt @@ -51,10 +51,9 @@ Rc is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -66,8 +65,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_body.txt b/doc/src/pair_body_nparticle.txt similarity index 93% rename from doc/src/pair_body.txt rename to doc/src/pair_body_nparticle.txt index 7899da832bdbf722bb1c5403dd547890bae5cdb1..8c5b6e155d801729a72b99276373ef4b0f525185 100644 --- a/doc/src/pair_body.txt +++ b/doc/src/pair_body_nparticle.txt @@ -10,21 +10,21 @@ pair_style body command :h3 [Syntax:] -pair_style body cutoff :pre +pair_style body/nparticle cutoff :pre cutoff = global cutoff for interactions (distance units) [Examples:] -pair_style body 3.0 +pair_style body/nparticle 3.0 pair_coeff * * 1.0 1.0 pair_coeff 1 1 1.0 1.5 2.5 :pre [Description:] -Style {body} is for use with body particles and calculates pairwise -body/body interactions as well as interactions between body and -point-particles. See "Section 6.14"_Section_howto.html#howto_14 +Style {body/nparticle} is for use with body particles and calculates +pairwise body/body interactions as well as interactions between body +and point-particles. See "Section 6.14"_Section_howto.html#howto_14 of the manual and the "body"_body.html doc page for more details on using body particles. diff --git a/doc/src/pair_body_rounded_polygon.txt b/doc/src/pair_body_rounded_polygon.txt index b6dc2e37b5a80fce04b7b753ffb7e007c4703ae6..9daeb08e9a9e3310380c4b5e40534aecedd59b09 100644 --- a/doc/src/pair_body_rounded_polygon.txt +++ b/doc/src/pair_body_rounded_polygon.txt @@ -8,12 +8,127 @@ pair_style body/rounded/polygon command :h3 +[Syntax:] + +pair_style body/rounded/polygon c_n c_t mu delta_ua cutoff :pre + +c_n = normal damping coefficient +c_t = tangential damping coefficient +mu = normal friction coefficient during gross sliding +delta_ua = multiple contact scaling factor +cutoff = global separation cutoff for interactions (distance units), see below for definition :pre + +[Examples:] + +pair_style body/rounded/polygon 20.0 5.0 0.0 1.0 0.5 +pair_coeff * * 100.0 1.0 +pair_coeff 1 1 100.0 1.0 :pre + [Description:] -Note: This feature is not yet implemented. +Style {body/rounded/polygon} is for use with 2d models of body +particles of style {rounded/polygon}. It calculates pairwise +body/body interactions which can include body particles modeled as +1-vertex circular disks with a specified diameter. See "Section +6.14"_Section_howto.html#howto_14 of the manual and the +"body"_body.html doc page for more details on using body +rounded/polygon particles. + +This pairwise interaction between rounded polygons is described in +"Fraige"_#pair-Fraige, where a polygon does not have sharp corners, +but is rounded at its vertices by circles centered on each vertex with +a specified diameter. The edges of the polygon are defined between +pairs of adjacent vertices. The circle diameter for each polygon is +specified in the data file read by the "read data"_read_data.html +command. This is a 2d discrete element model (DEM) which allows for +multiple contact points. + +Note that when two particles interact, the effective surface of each +polygon particle is displaced outward from each of its vertices and +edges by half its circle diameter (as in the diagram below of a gray +and yellow square particle). The interaction forces and energies +between two particles are defined with respect to the separation of +their respective rounded surfaces, not by the separation of the +vertices and edges themselves. + +This means that the specified cutoff in the pair_style command is the +cutoff distance, r_c, for the surface separation, \delta_n (see figure +below). This is the distance at which two particles no longer +interact. If r_c is specified as 0.0, then it is a contact-only +interaction. I.e. the two particles must overlap in order to exert a +repulsive force on each other. If r_c > 0.0, then the force between +two particles will be attractive for surface separations from 0 to +r_c, and repulsive once the particles overlap. + +Note that unlike for other pair styles, the specified cutoff is not +the distance between the centers of two particles at which they stop +interacting. This center-to-center distance depends on the shape and +size of the two particles and their relative orientation. LAMMPS +takes that into account when computing the surface separation distance +and applying the r_c cutoff. + +The forces between vertex-vertex, vertex-edge, and edge-edge overlaps +are given by: + +:c,image(Eqs/pair_body_rounded.jpg) + +:c,image(JPG/pair_body_rounded.jpg) + +Note that F_n and F_t are functions of the surface separation \delta_n += d - (R_i + R_j). In this model, when (R_i + R_j) < d < (R_i + R_j) ++ r_c, that is, 0 < \delta_n < r_c, the cohesive region of the two +surfaces overlap and the two surfaces are attractive to each other. + +In "Fraige"_#pair-Fraige, the tangential friction force between two +particles that are in contact is modeled differently prior to gross +sliding (i.e. static friction) and during gross-sliding (kinetic +friction). The latter takes place when the tangential deformation +exceeds the Coulomb frictional limit. In the current implementation, +however, we do not take into account frictional history, i.e. we do +not keep track of how many time steps the two particles have been in +contact nor calculate the tangential deformation. Instead, we assume +that gross sliding takes place as soon as two particles are in +contact. + +The following coefficients must be defined for each pair of atom types +via the "pair_coeff"_pair_coeff.html command as in the examples above, +or in the data file read by the "read_data"_read_data.html command: + +k_n (energy/distance^2 units) +k_na (energy/distance^2 units) :ul + +Effectively, k_n and k_na are the slopes of the red lines in the plot +above for force versus surface separation, for \delta_n < 0 and 0 < +\delta_n < r_c respectively. + +[Mixing, shift, table, tail correction, restart, rRESPA info]: + +This pair style does not support the "pair_modify"_pair_modify.html +mix, shift, table, and tail options. + +This pair style does not write its information to "binary restart +files"_restart.html. Thus, you need to re-specify the pair_style and +pair_coeff commands in an input script that reads a restart file. + +This pair style can only be used via the {pair} keyword of the +"run_style respa"_run_style.html command. It does not support the +{inner}, {middle}, {outer} keywords. + +[Restrictions:] + +These pair styles are part of the BODY package. They are only enabled +if LAMMPS was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. + +This pair style requires the "newton"_newton.html setting to be "on" +for pair interactions. [Related commands:] -"pair_style body"_pair_body.html +"pair_coeff"_pair_coeff.html [Default:] none + +:link(pair-Fraige) +[(Fraige)] F. Y. Fraige, P. A. Langston, A. J. Matchett, J. Dodds, +Particuology, 6, 455 (2008). diff --git a/doc/src/pair_body_rounded_polyhedron.txt b/doc/src/pair_body_rounded_polyhedron.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc559feaafb6715e7f4b06800103951725078964 --- /dev/null +++ b/doc/src/pair_body_rounded_polyhedron.txt @@ -0,0 +1,130 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +pair_style body/rounded/polyhedron command :h3 + +[Syntax:] + +pair_style body/rounded/polyhedron c_n c_t mu delta_ua cutoff :pre + +c_n = normal damping coefficient +c_t = tangential damping coefficient +mu = normal friction coefficient during gross sliding +delta_ua = multiple contact scaling factor +cutoff = global separation cutoff for interactions (distance units), see below for definition :pre + +[Examples:] + +pair_style body/rounded/polyhedron 20.0 5.0 0.0 1.0 0.5 +pair_coeff * * 100.0 1.0 +pair_coeff 1 1 100.0 1.0 :pre + +[Description:] + +Style {body/rounded/polygon} is for use with 3d models of body +particles of style {rounded/polyhedron}. It calculates pairwise +body/body interactions which can include body particles modeled as +1-vertex spheres with a specified diameter. See "Section +6.14"_Section_howto.html#howto_14 of the manual and the +"body"_body.html doc page for more details on using body +rounded/polyhedron particles. + +This pairwise interaction between the rounded polyhedra is described +in "Wang"_#pair-Wang, where a polyhedron does not have sharp corners +and edges, but is rounded at its vertices and edges by spheres +centered on each vertex with a specified diameter. The edges if the +polyhedron are defined between pairs of adjacent vertices. Its faces +are defined by a loop of edges. The sphere diameter for each polygon +is specified in the data file read by the "read data"_read_data.html +command. This is a discrete element model (DEM) which allows for +multiple contact points. + +Note that when two particles interact, the effective surface of each +polyhedron particle is displaced outward from each of its vertices, +edges, and faces by half its sphere diameter. The interaction forces +and energies between two particles are defined with respect to the +separation of their respective rounded surfaces, not by the separation +of the vertices, edges, and faces themselves. + +This means that the specified cutoff in the pair_style command is the +cutoff distance, r_c, for the surface separation, \delta_n (see figure +below). This is the distance at which two particles no longer +interact. If r_c is specified as 0.0, then it is a contact-only +interaction. I.e. the two particles must overlap in order to exert a +repulsive force on each other. If r_c > 0.0, then the force between +two particles will be attractive for surface separations from 0 to +r_c, and repulsive once the particles overlap. + +Note that unlike for other pair styles, the specified cutoff is not +the distance between the centers of two particles at which they stop +interacting. This center-to-center distance depends on the shape and +size of the two particles and their relative orientation. LAMMPS +takes that into account when computing the surface separation distance +and applying the r_c cutoff. + +The forces between vertex-vertex, vertex-edge, vertex-face, edge-edge, +and edge-face overlaps are given by: + +:c,image(Eqs/pair_body_rounded.jpg) + +:c,image(JPG/pair_body_rounded.jpg) + +In "Wang"_#pair-Wang, the tangential friction force between two +particles that are in contact is modeled differently prior to gross +sliding (i.e. static friction) and during gross-sliding (kinetic +friction). The latter takes place when the tangential deformation +exceeds the Coulomb frictional limit. In the current implementation, +however, we do not take into account frictional history, i.e. we do +not keep track of how many time steps the two particles have been in +contact nor calculate the tangential deformation. Instead, we assume +that gross sliding takes place as soon as two particles are in +contact. + +The following coefficients must be defined for each pair of atom types +via the "pair_coeff"_pair_coeff.html command as in the examples above, +or in the data file read by the "read_data"_read_data.html command: + +k_n (energy/distance^2 units) +k_na (energy/distance^2 units) :ul + +Effectively, k_n and k_na are the slopes of the red lines in the plot +above for force versus surface separation, for \delta_n < 0 and 0 < +\delta_n < r_c respectively. + +[Mixing, shift, table, tail correction, restart, rRESPA info]: + +This pair style does not support the "pair_modify"_pair_modify.html +mix, shift, table, and tail options. + +This pair style does not write its information to "binary restart +files"_restart.html. Thus, you need to re-specify the pair_style and +pair_coeff commands in an input script that reads a restart file. + +This pair style can only be used via the {pair} keyword of the +"run_style respa"_run_style.html command. It does not support the +{inner}, {middle}, {outer} keywords. + +[Restrictions:] + +These pair styles are part of the BODY package. They are only enabled +if LAMMPS was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. + +This pair style requires the "newton"_newton.html setting to be "on" +for pair interactions. + +[Related commands:] + +"pair_coeff"_pair_coeff.html + +[Default:] none + +:link(pair-Wang) +[(Wang)] J. Wang, H. S. Yu, P. A. Langston, F. Y. Fraige, Granular +Matter, 13, 1 (2011). + diff --git a/doc/src/pair_born.txt b/doc/src/pair_born.txt index a016f77fa3ba6c96ef18fbb7d1094e79a0475aab..2504fb7e25c8e9651eb95963d244e478688b93cb 100644 --- a/doc/src/pair_born.txt +++ b/doc/src/pair_born.txt @@ -12,12 +12,14 @@ pair_style born/omp command :h3 pair_style born/gpu command :h3 pair_style born/coul/long command :h3 pair_style born/coul/long/cs command :h3 +pair_style born/coul/long/cs/gpu command :h3 pair_style born/coul/long/gpu command :h3 pair_style born/coul/long/omp command :h3 pair_style born/coul/msm command :h3 pair_style born/coul/msm/omp command :h3 pair_style born/coul/wolf command :h3 pair_style born/coul/wolf/cs command :h3 +pair_style born/coul/wolf/cs/gpu command :h3 pair_style born/coul/wolf/gpu command :h3 pair_style born/coul/wolf/omp command :h3 pair_style born/coul/dsf command :h3 @@ -143,10 +145,9 @@ pair_style command. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -158,8 +159,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_brownian.txt b/doc/src/pair_brownian.txt index 79b71e91c73e3d6a99b129472cea4831e6905324..8d30f0cec65628515add8cab9d6897d06a3301d5 100644 --- a/doc/src/pair_brownian.txt +++ b/doc/src/pair_brownian.txt @@ -74,7 +74,7 @@ must be specified. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "this section"_Section_accelerate.html of +hardware, as discussed in "this section"_Speed.html of the manual. The accelerated styles take the same arguments and should produce the same results, except for round-off and precision issues. @@ -88,7 +88,7 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "this section"_Section_accelerate.html of the manual for more +See "this section"_Speed.html of the manual for more instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_buck.txt b/doc/src/pair_buck.txt index d18b39d5d92b0bf7882f51a3a32149ed5d9e56d6..de247b9c0165595b9e70b8717f62abffbde5ce3d 100644 --- a/doc/src/pair_buck.txt +++ b/doc/src/pair_buck.txt @@ -140,10 +140,9 @@ pair_style command. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -155,8 +154,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_buck_long.txt b/doc/src/pair_buck_long.txt index 05e760e1b22b44c5901f9160b9fa4f3eaaa44c5c..94bf6a2d7c4228083f6ed16de5d4a7f82d64f63e 100644 --- a/doc/src/pair_buck_long.txt +++ b/doc/src/pair_buck_long.txt @@ -102,10 +102,9 @@ global Coulombic cutoff is allowed. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -117,8 +116,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_charmm.txt b/doc/src/pair_charmm.txt index 75a8e4bff944f8b6786f61bb50aa7eefe1e082c7..af20661bbd3d50b690927d12dc24739b085ddd0e 100644 --- a/doc/src/pair_charmm.txt +++ b/doc/src/pair_charmm.txt @@ -184,10 +184,9 @@ the pair_style command. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -199,8 +198,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_class2.txt b/doc/src/pair_class2.txt index 36fae5068b6e055adac9b7a2fb475e0df513968c..e62971a64572099caa98854967e90754ba7942f5 100644 --- a/doc/src/pair_class2.txt +++ b/doc/src/pair_class2.txt @@ -102,10 +102,9 @@ cutoff distance. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -117,8 +116,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_colloid.txt b/doc/src/pair_colloid.txt index 83b15b358bf532f6725853f8fc7e7b2329419ac5..a7bb0db08a4f505ed14897e56199fc0f59ee0472 100644 --- a/doc/src/pair_colloid.txt +++ b/doc/src/pair_colloid.txt @@ -127,10 +127,9 @@ commands for efficiency: "neighbor multi"_neighbor.html and Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -142,8 +141,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_comb.txt b/doc/src/pair_comb.txt index f5461b1cbc208ca0c5cd01583416f1821b0a6ec8..6949ca50c20d7a805d6bb41c77d8e1eb84dacb12 100644 --- a/doc/src/pair_comb.txt +++ b/doc/src/pair_comb.txt @@ -112,10 +112,9 @@ nor file {ffield.comb3} with style {comb}. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -127,8 +126,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_coul.txt b/doc/src/pair_coul.txt index 4cca5ee0d78a529162e782121855150daa162e06..650575d05515f152d2582897ce38e640df7dca50 100644 --- a/doc/src/pair_coul.txt +++ b/doc/src/pair_coul.txt @@ -20,6 +20,7 @@ pair_style coul/dsf/kk command :h3 pair_style coul/dsf/omp command :h3 pair_style coul/long command :h3 pair_style coul/long/cs command :h3 +pair_style coul/long/cs/gpu command :h3 pair_style coul/long/omp command :h3 pair_style coul/long/gpu command :h3 pair_style coul/long/kk command :h3 @@ -267,10 +268,9 @@ command. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -282,8 +282,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_dipole.txt b/doc/src/pair_dipole.txt index 2516e5eae4d00113892dd8e97558b59ca13b97e3..e7d196d599985795a484703d90d609337a63c56d 100644 --- a/doc/src/pair_dipole.txt +++ b/doc/src/pair_dipole.txt @@ -186,10 +186,9 @@ type pair. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -201,8 +200,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_dpd.txt b/doc/src/pair_dpd.txt index 9e29e93430602fd485bef467602d7001c8534fab..a36029ea63af50a98db8b207c7089317a67f6357 100644 --- a/doc/src/pair_dpd.txt +++ b/doc/src/pair_dpd.txt @@ -110,10 +110,9 @@ random force. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -125,8 +124,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_dpd_fdt.txt b/doc/src/pair_dpd_fdt.txt index 867f3f2315dcb9d908438f91710016abe4ccf9d8..129d3c84af29af18d35100b27415ec07087c9e40 100644 --- a/doc/src/pair_dpd_fdt.txt +++ b/doc/src/pair_dpd_fdt.txt @@ -129,10 +129,9 @@ significantly larger timesteps to be taken. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -144,8 +143,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_eam.txt b/doc/src/pair_eam.txt index 03e77f53ab0f291be3054b1464d1936b057e95e6..b3c770179fb948329d4b746b863041a101c83436 100644 --- a/doc/src/pair_eam.txt +++ b/doc/src/pair_eam.txt @@ -371,10 +371,9 @@ are listed. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -386,7 +385,7 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for more +See the "Speed packages"_Speed_packages.html doc page for more instructions on how to use the accelerated styles effectively. :line @@ -414,15 +413,10 @@ The eam pair styles can only be used via the {pair} keyword of the [Restrictions:] -All of these styles except the {eam/cd} style are part of the MANYBODY -package. They are only enabled if LAMMPS was built with that package. +All of these styles are part of the MANYBODY package. They are only +enabled if LAMMPS was built with that package. See the "Making LAMMPS"_Section_start.html#start_3 section for more info. -The {eam/cd} style is part of the USER-MISC package and also requires -the MANYBODY package. It is only enabled if LAMMPS was built with -those packages. See the "Making LAMMPS"_Section_start.html#start_3 -section for more info. - [Related commands:] "pair_coeff"_pair_coeff.html diff --git a/doc/src/pair_edip.txt b/doc/src/pair_edip.txt index e5b1420b5938eed1008b780fc226e1258d0c3fa5..f0d1927812b263fdcbeadc8b5e5843492c9f7bea 100644 --- a/doc/src/pair_edip.txt +++ b/doc/src/pair_edip.txt @@ -109,10 +109,9 @@ the EDIP package. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -124,8 +123,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_eim.txt b/doc/src/pair_eim.txt index 75ad2d4683ee64716ebc003ca5267d5733302760..7f94d919f2a62053d6b32142c914b9797f38e607 100644 --- a/doc/src/pair_eim.txt +++ b/doc/src/pair_eim.txt @@ -136,10 +136,9 @@ needs. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -151,8 +150,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_exp6_rx.txt b/doc/src/pair_exp6_rx.txt index 7eafa235434386bcfe3438367cee1cec1852e74b..dec660fd1dbbe2f4ef7c42529a2fac083d120159 100644 --- a/doc/src/pair_exp6_rx.txt +++ b/doc/src/pair_exp6_rx.txt @@ -153,10 +153,9 @@ pair interaction. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -168,8 +167,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_gauss.txt b/doc/src/pair_gauss.txt index f6f46a2de8ace2a7f982d305728b77f42f350ded..7716f89f174a1d8ce1637c09c13d10c9e4b6b6d5 100644 --- a/doc/src/pair_gauss.txt +++ b/doc/src/pair_gauss.txt @@ -84,10 +84,9 @@ is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -99,8 +98,8 @@ by including their suffix, or you can use the "-suffix command-line switch7_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_gayberne.txt b/doc/src/pair_gayberne.txt index c9235785866f6856ad438fb934afdcc64d4ba781..e9a98a0b8426f1a980ddd508d57fa06b72951a1f 100644 --- a/doc/src/pair_gayberne.txt +++ b/doc/src/pair_gayberne.txt @@ -133,10 +133,9 @@ pair_coeff sigma to 1.0 as well. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -148,8 +147,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_gran.txt b/doc/src/pair_gran.txt index d7e87af013f002a6e6472a4ae45e3f5c27fd3de5..86b04f96dede877734a479a5a6dc8fbfc0f91705 100644 --- a/doc/src/pair_gran.txt +++ b/doc/src/pair_gran.txt @@ -179,10 +179,9 @@ potential. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -194,8 +193,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_gromacs.txt b/doc/src/pair_gromacs.txt index ec84a2d57a13d7066fb49624cba932a425447656..7daf805e2bedff4409f44a66022220f2f2aec371 100644 --- a/doc/src/pair_gromacs.txt +++ b/doc/src/pair_gromacs.txt @@ -91,10 +91,9 @@ cutoff(s) specified in the pair_style command. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -106,8 +105,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_gw.txt b/doc/src/pair_gw.txt index fcf63b1bc4e0da31deef339a15da096b245bd4f1..8f1251cf1f3a96aa50e8f9339a69f20b893336bb 100644 --- a/doc/src/pair_gw.txt +++ b/doc/src/pair_gw.txt @@ -95,9 +95,9 @@ This pair style can only be used via the {pair} keyword of the [Restrictions:] -This pair style is part of the USER-MISC package. It is only enabled -if LAMMPS was built with that package. See -the "Making LAMMPS"_Section_start.html#start_3 section for more info. +This pair style is part of the MANYBODY package. It is only enabled if +LAMMPS was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. This pair style requires the "newton"_newton.html setting to be "on" for pair interactions. @@ -117,4 +117,5 @@ appropriate units if your simulation doesn't use "metal" units. :line :link(Gao) -[(Gao)] Gao and Weber, Nuclear Instruments and Methods in Physics Research B 191 (2012) 504. +[(Gao)] Gao and Weber, Nuclear Instruments and Methods in Physics +Research B 191 (2012) 504. diff --git a/doc/src/pair_hbond_dreiding.txt b/doc/src/pair_hbond_dreiding.txt index d3cf90ec14c2172faf4eec91a5247724acc3428a..45f852c25421350665da121175d9f403ac1b0c4b 100644 --- a/doc/src/pair_hbond_dreiding.txt +++ b/doc/src/pair_hbond_dreiding.txt @@ -166,10 +166,9 @@ optional parameters. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -181,8 +180,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_hybrid.txt b/doc/src/pair_hybrid.txt index d37dedc709b82c43e6c49701f3b7916db93ef6d8..9503256d2696919579fce47f655a853e19c08409 100644 --- a/doc/src/pair_hybrid.txt +++ b/doc/src/pair_hybrid.txt @@ -315,8 +315,8 @@ off C/C interaction, i.e. by setting the appropriate coefficients to Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. Since the {hybrid} and {hybrid/overlay} styles delegate computation to the individual sub-styles, the suffix versions of the {hybrid} and @@ -334,8 +334,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_ilp_graphene_hbn.txt b/doc/src/pair_ilp_graphene_hbn.txt index 32fe002a306d508de4f3ad7b048df32218e7d856..dbc9c458e2997d372b58b7aae7a87cca389c2168 100644 --- a/doc/src/pair_ilp_graphene_hbn.txt +++ b/doc/src/pair_ilp_graphene_hbn.txt @@ -23,15 +23,15 @@ pair_coeff * * ilp/graphene/hbn BNCH.ILP B N C :pre pair_style hybrid/overlay rebo tersoff ilp/graphene/hbn 16.0 coul/shield 16.0 pair_coeff * * rebo CH.airebo NULL NULL C pair_coeff * * tersoff BNC.tersoff B N NULL -pair_coeff * * ilp/graphene/hbn BNCH.ILP B N C :pre +pair_coeff * * ilp/graphene/hbn BNCH.ILP B N C pair_coeff 1 1 coul/shield 0.70 pair_coeff 1 2 coul/shield 0.69498201415576216335 -pair_coeff 2 2 coul/shield 0.69 +pair_coeff 2 2 coul/shield 0.69 :pre [Description:] The {ilp/graphene/hbn} style computes the registry-dependent interlayer -potential (RDILP) potential as described in "(Leven)"_#Leven and +potential (ILP) potential as described in "(Leven)"_#Leven and "(Maaravi)"_#Maaravi2. The normals are calculated in the way as described in "(Kolmogorov)"_#Kolmogorov2. @@ -61,13 +61,13 @@ NOTE: The parameters presented in the parameter file (e.g. BNCH.ILP), are fitted with taper function by setting the cutoff equal to 16.0 Angstrom. Using different cutoff or taper function should be careful. -NOTE: Two parameter files (BNCH.ILP and BNCH-old.ILP) are presented, -BNCH-old.ILP contains the parameters published in "(Leven)"_#Leven and -"(Maaravi)"_#Maaravi2, which is only suitable for long-range -interaction. The parameters in BNCH.ILP provides a good description both -for short- and long-range interaction. This is useful for simulations in -the high pressure (small interlayer distances) regime. The comparison of -two sets of parameters can be found in "(Ouyang)"_#Ouyang. +NOTE: Two new sets of parameters of ILP for two-dimensional hexagonal Materials +are presented in "(Ouyang)"_#Ouyang1. These parameters provide a good description +in both short- and long-range interaction regime, while the old ILP parameters +published in "(Leven)"_#Leven and "(Maaravi)"_#Maaravi2 are only suitable for +long-range interaction regime. This feature is essential for simulations in +high-pressure regime (i.e., the interlayer distance smaller than the equilibrium distance). +The benchmark tests and comparison of these parameters can be found in "(Ouyang)"_#Ouyang1. This potential must be used in combination with hybrid/overlay. Other interactions can be set to zero using pair_style {none}. @@ -101,12 +101,12 @@ units, if your simulation does not use {metal} units. [Related commands:] -"pair_coeff"_pair_coeff.html -"pair_none"_pair_none.html -"pair_style hybrid/overlay"_pair_hybrid.html -"pair_style pair_kolmogorov_crespi_z"_pair_kolmogorov_crespi_z.html -"pair_style pair_kolmogorov_crespi_full"_pair_kolmogorov_crespi_full.html -"pair_style pair_coul_shield"_pair_coul_shield.html +"pair_coeff"_pair_coeff.html, +"pair_none"_pair_none.html, +"pair_style hybrid/overlay"_pair_hybrid.html, +"pair_style pair_kolmogorov_crespi_z"_pair_kolmogorov_crespi_z.html, +"pair_style pair_kolmogorov_crespi_full"_pair_kolmogorov_crespi_full.html, +"pair_style pair_coul_shield"_pair_coul_shield.html. [Default:] tap_flag = 1 @@ -121,5 +121,5 @@ units, if your simulation does not use {metal} units. :link(Kolmogorov2) [(Kolmogorov)] A. N. Kolmogorov, V. H. Crespi, Phys. Rev. B 71, 235415 (2005) -:link(Ouyang) -[(Ouyang)] W. Ouyang, D. Mandelli, O. Hod, M. Urbakh, In preparation. +:link(Ouyang1) +[(Ouyang)] W. Ouyang, D. Mandelli, M. Urbakh, O. Hod, arXiv:1806.09555 (2018). diff --git a/doc/src/pair_kim.txt b/doc/src/pair_kim.txt index c5d910e27c841f9d71e5e6dfd160bfce0a949b46..fc2c1405af78057496fa7d291e9c3adce7ce0be7 100644 --- a/doc/src/pair_kim.txt +++ b/doc/src/pair_kim.txt @@ -46,8 +46,8 @@ are included in the KIM library by default, in the "What is in the KIM API source package?" section. To use this pair style, you must first download and install the KIM -API library from the "OpenKIM website"_https://openkim.org. The "KIM -section of Section packages"_Section_packages.html#KIM has +API library from the "OpenKIM website"_https://openkim.org. The KIM +section of the "Packages details"_Packages_details.html doc page has instructions on how to do this with a simple make command, when building LAMMPS. diff --git a/doc/src/pair_kolmogorov_crespi_full.txt b/doc/src/pair_kolmogorov_crespi_full.txt index 7df1b4d02d364eeadfdb1eefc2d32ae2aac45c9c..a16d123b89abc938fe172a3a73d123c896687588 100644 --- a/doc/src/pair_kolmogorov_crespi_full.txt +++ b/doc/src/pair_kolmogorov_crespi_full.txt @@ -27,7 +27,7 @@ pair_coeff * * kolmogorov/crespi/full CC.KC C C :pre [Description:] -The {kolmogorov/crespi/full} style computes the Kolmogorov-Crespi +The {kolmogorov/crespi/full} style computes the Kolmogorov-Crespi (KC) interaction potential as described in "(Kolmogorov)"_#Kolmogorov1. No simplification is made, @@ -51,6 +51,15 @@ and {rcut} are included in the parameter file. {S} is designed to facilitate scaling of energies. {rcut} is designed to build the neighbor list for calculating the normals for each atom pair. +NOTE: A new set of parameters of KC potential for hydrocarbons (CH.KC) +is presented in "(Ouyang)"_#Ouyang2. The parameters in CH.KC provides +a good description in both short- and long-range interaction regime, +while the original parameters (CC.KC) published in "(Kolmogorov)"_#Kolmogorov1 +are only suitable for long-range interaction regime. +This feature is essential for simulations in high-pressure regime +(i.e., the interlayer distance smaller than the equilibrium distance). +The benchmark tests and comparison of these parameters can be found in "(Ouyang)"_#Ouyang2. + This potential must be used in combination with hybrid/overlay. Other interactions can be set to zero using pair_style {none}. @@ -83,11 +92,11 @@ units. [Related commands:] -"pair_coeff"_pair_coeff.html -"pair_none"_pair_none.html -"pair_style hybrid/overlay"_pair_hybrid.html -"pair_style kolmogorov/crespi/z"_pair_kolmogorov_crespi_z.html -"pair_style ilp/graphene/hbn"_pair_ilp_graphene_hbn.html +"pair_coeff"_pair_coeff.html, +"pair_none"_pair_none.html, +"pair_style hybrid/overlay"_pair_hybrid.html, +"pair_style kolmogorov/crespi/z"_pair_kolmogorov_crespi_z.html, +"pair_style ilp/graphene/hbn"_pair_ilp_graphene_hbn.html. [Default:] tap_flag = 0 @@ -95,3 +104,6 @@ units. :link(Kolmogorov1) [(Kolmogorov)] A. N. Kolmogorov, V. H. Crespi, Phys. Rev. B 71, 235415 (2005) + +:link(Ouyang2) +[(Ouyang)] W. Ouyang, D. Mandelli, M. Urbakh, O. Hod, arXiv:1806.09555 (2018). diff --git a/doc/src/pair_kolmogorov_crespi_z.txt b/doc/src/pair_kolmogorov_crespi_z.txt index c7e005a591c04b712f0bb2ed3a640b1ea8e3e5e1..97f132eacd41e00cd4318cfde24b09e29b4a6ae1 100644 --- a/doc/src/pair_kolmogorov_crespi_z.txt +++ b/doc/src/pair_kolmogorov_crespi_z.txt @@ -38,7 +38,7 @@ This shift is achieved by the last term in the equation for {Vij} above. This potential is intended for interactions between two layers of graphene. Therefore, to avoid interaction between layers in multi-layered materials, each layer should have a separate atom type and interactions should only -be computed between atom types of neighbouring layers. +be computed between atom types of neighboring layers. The parameter file (e.g. CC.KC), is intended for use with metal "units"_units.html, with energies in meV. An additional parameter, {S}, diff --git a/doc/src/pair_lj.txt b/doc/src/pair_lj.txt index e297d479bc3ae16d3054130ba67d9bb7fe3a0a97..c2968ffdf3fea69aca87ce0cb726f56515af4011 100644 --- a/doc/src/pair_lj.txt +++ b/doc/src/pair_lj.txt @@ -269,10 +269,9 @@ pair_style command. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -284,8 +283,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_lj96.txt b/doc/src/pair_lj96.txt index 83f6ec063d4dd6476555a068a7eac6374544a3be..a0a9971474ac61c14d25d7eb80aac78338146648 100644 --- a/doc/src/pair_lj96.txt +++ b/doc/src/pair_lj96.txt @@ -49,10 +49,9 @@ cutoff specified in the pair_style command is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -64,8 +63,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_lj_cubic.txt b/doc/src/pair_lj_cubic.txt index 4ca8c3c141c39c9c874902f96f5178a1b1941d7a..c4e2af506210f3bc1db893101f31239b4698afed 100644 --- a/doc/src/pair_lj_cubic.txt +++ b/doc/src/pair_lj_cubic.txt @@ -63,10 +63,9 @@ located at rmin = 2^(1/6)*sigma. In the above example, sigma = Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -78,8 +77,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_lj_expand.txt b/doc/src/pair_lj_expand.txt index e0838426f637da3e3669fc4c35a17afaa6d6083b..c156fefef250fac814660a90901c948826f70737 100644 --- a/doc/src/pair_lj_expand.txt +++ b/doc/src/pair_lj_expand.txt @@ -53,10 +53,9 @@ optional. If not specified, the global LJ cutoff is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -68,8 +67,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_lj_long.txt b/doc/src/pair_lj_long.txt index 6be4562d18849130536383878ac5acc084b20f20..bc851adb746588359bbb724f00fb8e399c15cb04 100644 --- a/doc/src/pair_lj_long.txt +++ b/doc/src/pair_lj_long.txt @@ -156,10 +156,9 @@ specified in the pair_style command. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -171,8 +170,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_lj_smooth.txt b/doc/src/pair_lj_smooth.txt index b1678cad5862cf4670a80a68e7c2074337250ba9..653520966b512fc5bb7b8e79e87683303f4b0d48 100644 --- a/doc/src/pair_lj_smooth.txt +++ b/doc/src/pair_lj_smooth.txt @@ -62,10 +62,9 @@ specified, the global values for Rin and Rc are used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -77,8 +76,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_lj_smooth_linear.txt b/doc/src/pair_lj_smooth_linear.txt index 5f7c226cee3ccc7b83c6139bf2a6c25dd2c13468..aebde2e65355a27867903d36d96365a09f925477 100644 --- a/doc/src/pair_lj_smooth_linear.txt +++ b/doc/src/pair_lj_smooth_linear.txt @@ -49,10 +49,9 @@ LJ cutoff specified in the pair_style command is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -64,8 +63,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_lj_soft.txt b/doc/src/pair_lj_soft.txt index 2ef133da554adf3d141e337e3c1b9f4139f72f35..7add9f623d8276855d80c17f4e4fcd434ed651a0 100644 --- a/doc/src/pair_lj_soft.txt +++ b/doc/src/pair_lj_soft.txt @@ -207,10 +207,9 @@ directory tree, under examples/USER/fep. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -222,8 +221,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_lubricate.txt b/doc/src/pair_lubricate.txt index b39c7545c7e2bdbc90f72631eaadeca06cfe40c5..2a16aa2a9dad961966abc8fd85fbb087bca0b7a2 100644 --- a/doc/src/pair_lubricate.txt +++ b/doc/src/pair_lubricate.txt @@ -143,7 +143,7 @@ must be specified. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "this section"_Section_accelerate.html of +hardware, as discussed in "this section"_Speed.html of the manual. The accelerated styles take the same arguments and should produce the same results, except for round-off and precision issues. @@ -157,7 +157,7 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "this section"_Section_accelerate.html of the manual for more +See "this section"_Speed.html of the manual for more instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_meam_spline.txt b/doc/src/pair_meam_spline.txt index 6653b397a0cd04e7dfb56aa1f4c8df9159a9e4a9..74242e32b9900d01ef67157dd3ded68cc7d63c9f 100644 --- a/doc/src/pair_meam_spline.txt +++ b/doc/src/pair_meam_spline.txt @@ -106,10 +106,9 @@ MEAM files. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -121,8 +120,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_morse.txt b/doc/src/pair_morse.txt index 3eb5ac5afe5b8cb089d5dea24ed02cdea1ec0eec..34876011a1c0553999916fb6ba40c41cd70b782d 100644 --- a/doc/src/pair_morse.txt +++ b/doc/src/pair_morse.txt @@ -101,10 +101,9 @@ cutoff is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -116,8 +115,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_multi_lucy_rx.txt b/doc/src/pair_multi_lucy_rx.txt index 57abcf4a4c30c904b55cd07464ca60118ca13d3c..b043030907f775eb56241b0f3092882e7341f2a0 100644 --- a/doc/src/pair_multi_lucy_rx.txt +++ b/doc/src/pair_multi_lucy_rx.txt @@ -204,10 +204,9 @@ This pair style can only be used via the {pair} keyword of the Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -219,8 +218,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_nb3b_harmonic.txt b/doc/src/pair_nb3b_harmonic.txt index 2395707fb45b63425456a1ca612895b90bc289c8..e6e103f517855f1a8b37f6e4c8dc028954e138d0 100644 --- a/doc/src/pair_nb3b_harmonic.txt +++ b/doc/src/pair_nb3b_harmonic.txt @@ -92,10 +92,9 @@ a particular simulation; LAMMPS ignores those entries. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -107,8 +106,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_nm.txt b/doc/src/pair_nm.txt index 81cea1a38d4a255b6fdd01d080cecc67602c3a89..08c3393993bc15e0d6d851b30c30d2ad7165261b 100644 --- a/doc/src/pair_nm.txt +++ b/doc/src/pair_nm.txt @@ -133,10 +133,9 @@ the "run_style respa"_run_style.html command. They do not support the Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -148,8 +147,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Restrictions:] diff --git a/doc/src/pair_oxdna.txt b/doc/src/pair_oxdna.txt index 26a205bcf9b449ee20eea88ce5aff6a3feca024b..f272d15a8680d6499df5f7164186789426589413 100644 --- a/doc/src/pair_oxdna.txt +++ b/doc/src/pair_oxdna.txt @@ -71,9 +71,11 @@ the temperature coefficients have to be matched to the one used in the fix. Example input and data files for DNA duplexes can be found in examples/USER/cgdna/examples/oxDNA/ and /oxDNA2/. A simple python setup tool which creates single straight or helical DNA strands, DNA duplexes or arrays of DNA duplexes can be found in examples/USER/cgdna/util/. -A technical report with more information on the model, the structure of the input file, -the setup tool and the performance of the LAMMPS-implementation of oxDNA -can be found "here"_PDF/USER-CGDNA-overview.pdf. + +Please cite "(Henrich)"_#Henrich1 and the relevant oxDNA articles in any publication that uses this implementation. +The article contains more information on the model, the structure of the input file, the setup tool +and the performance of the LAMMPS-implementation of oxDNA. +The preprint version of the article can be found "here"_PDF/USER-CGDNA.pdf. :line @@ -92,6 +94,9 @@ LAMMPS"_Section_start.html#start_3 section for more info on packages. :line +:link(Henrich1) +[(Henrich)] O. Henrich, Y. A. Gutierrez-Fosado, T. Curk, T. E. Ouldridge, Eur. Phys. J. E 41, 57 (2018). + :link(Sulc1) [(Sulc)] P. Sulc, F. Romano, T.E. Ouldridge, L. Rovigatti, J.P.K. Doye, A.A. Louis, J. Chem. Phys. 137, 135101 (2012). diff --git a/doc/src/pair_oxdna2.txt b/doc/src/pair_oxdna2.txt index 2408c02d101135639561652db8f5e74dae7e037f..1b55031b2c97dc8c935c0ddb83a567f24d64ab6f 100644 --- a/doc/src/pair_oxdna2.txt +++ b/doc/src/pair_oxdna2.txt @@ -77,9 +77,11 @@ the temperature coefficients have to be matched to the one used in the fix. Example input and data files for DNA duplexes can be found in examples/USER/cgdna/examples/oxDNA/ and /oxDNA2/. A simple python setup tool which creates single straight or helical DNA strands, DNA duplexes or arrays of DNA duplexes can be found in examples/USER/cgdna/util/. -A technical report with more information on the model, the structure of the input file, -the setup tool and the performance of the LAMMPS-implementation of oxDNA -can be found "here"_PDF/USER-CGDNA-overview.pdf. + +Please cite "(Henrich)"_#Henrich and the relevant oxDNA articles in any publication that uses this implementation. +The article contains more information on the model, the structure of the input file, the setup tool +and the performance of the LAMMPS-implementation of oxDNA. +The preprint version of the article can be found "here"_PDF/USER-CGDNA.pdf. :line @@ -98,6 +100,9 @@ LAMMPS"_Section_start.html#start_3 section for more info on packages. :line +:link(Henrich) +[(Henrich)] O. Henrich, Y. A. Gutierrez-Fosado, T. Curk, T. E. Ouldridge, Eur. Phys. J. E 41, 57 (2018). + :link(Sulc2) [(Sulc)] P. Sulc, F. Romano, T.E. Ouldridge, L. Rovigatti, J.P.K. Doye, A.A. Louis, J. Chem. Phys. 137, 135101 (2012). diff --git a/doc/src/pair_peri.txt b/doc/src/pair_peri.txt index deca093e3bb1cebb7183f9bb7b8b0df866c09df8..432700305718db3b0ae720079a7943b7cf81d90f 100644 --- a/doc/src/pair_peri.txt +++ b/doc/src/pair_peri.txt @@ -139,10 +139,9 @@ details please see the description in "(Mtchell2011a)". Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -154,8 +153,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_reaxc.txt b/doc/src/pair_reaxc.txt index b9dc6e0ed861dccef018578664c70ba510927222..8d8c7e84e744185c4438a328ad534338d0b6042c 100644 --- a/doc/src/pair_reaxc.txt +++ b/doc/src/pair_reaxc.txt @@ -47,13 +47,14 @@ the "(Aktulga)"_#Aktulga paper. The {reax/c} style was initially implemented as a stand-alone C code and is now integrated into LAMMPS as a package. -The {reax/c/kk} style is a Kokkos version of the ReaxFF potential that is -derived from the {reax/c} style. The Kokkos version can run on GPUs and -can also use OpenMP multithreading. For more information about the Kokkos package, -see "Section 4"_Section_packages.html#kokkos and "Section 5.3.3"_accelerate_kokkos.html. -One important consideration when using the {reax/c/kk} style is the choice of either -half or full neighbor lists. This setting can be changed using the Kokkos "package"_package.html -command. +The {reax/c/kk} style is a Kokkos version of the ReaxFF potential that +is derived from the {reax/c} style. The Kokkos version can run on GPUs +and can also use OpenMP multithreading. For more information about the +Kokkos package, see "Packages details"_Packages_details.html and +"Speed kokkos"_Speed_kokkos.html doc pages. One important +consideration when using the {reax/c/kk} style is the choice of either +half or full neighbor lists. This setting can be changed using the +Kokkos "package"_package.html command. The {reax/c} style differs from the "pair_style reax"_pair_reax.html command in the lo-level implementation details. The {reax} style is a @@ -80,9 +81,8 @@ parameterizations for different classes of materials. You can submit a contact request at the Materials Computation Center (MCC) website "https://www.mri.psu.edu/materials-computation-center/connect-mcc"_https://www.mri.psu.edu/materials-computation-center/connect-mcc, describing the material(s) you are interested in modeling with ReaxFF. -They can tell -you what is currently available or what it would take to create a -suitable ReaxFF parameterization. +They can tell you what is currently available or what it would take to +create a suitable ReaxFF parameterization. The {cfile} setting can be specified as NULL, in which case default settings are used. A control file can be specified which defines @@ -120,28 +120,31 @@ assign to each atom will be used for computing the electrostatic interactions in the system. See the "fix qeq/reax"_fix_qeq_reax.html command for details. -Using the optional keyword {lgvdw} with the value {yes} turns on -the low-gradient correction of the ReaxFF/C for long-range -London Dispersion, as described in the "(Liu)"_#Liu_2011 paper. Force field +Using the optional keyword {lgvdw} with the value {yes} turns on the +low-gradient correction of the ReaxFF/C for long-range London +Dispersion, as described in the "(Liu)"_#Liu_2011 paper. Force field file {ffield.reax.lg} is designed for this correction, and is trained for several energetic materials (see "Liu"). When using lg-correction, recommended value for parameter {thb} is 0.01, which can be set in the control file. Note: Force field files are different for the original -or lg corrected pair styles, using wrong ffield file generates an error message. +or lg corrected pair styles, using wrong ffield file generates an +error message. Using the optional keyword {enobonds} with the value {yes}, the energy of atoms with no bonds (i.e. isolated atoms) is included in the total potential energy and the per-atom energy of that atom. If the value -{no} is specified then the energy of atoms with no bonds is set to zero. -The latter behavior is usual not desired, as it causes discontinuities -in the potential energy when the bonding of an atom drops to zero. +{no} is specified then the energy of atoms with no bonds is set to +zero. The latter behavior is usual not desired, as it causes +discontinuities in the potential energy when the bonding of an atom +drops to zero. Optional keywords {safezone} and {mincap} are used for allocating -reax/c arrays. Increasing these values can avoid memory problems, such -as segmentation faults and bondchk failed errors, that could occur under -certain conditions. These keywords aren't used by the Kokkos version, which -instead uses a more robust memory allocation scheme that checks if the sizes of -the arrays have been exceeded and automatically allocates more memory. +reax/c arrays. Increasing these values can avoid memory problems, +such as segmentation faults and bondchk failed errors, that could +occur under certain conditions. These keywords aren't used by the +Kokkos version, which instead uses a more robust memory allocation +scheme that checks if the sizes of the arrays have been exceeded and +automatically allocates more memory. The thermo variable {evdwl} stores the sum of all the ReaxFF potential energy contributions, with the exception of the Coulombic and charge @@ -153,7 +156,8 @@ This pair style tallies a breakdown of the total ReaxFF potential energy into sub-categories, which can be accessed via the "compute pair"_compute_pair.html command as a vector of values of length 14. The 14 values correspond to the following sub-categories (the variable -names in italics match those used in the original FORTRAN ReaxFF code): +names in italics match those used in the original FORTRAN ReaxFF +code): {eb} = bond energy {ea} = atom energy @@ -299,10 +303,9 @@ This pair style can only be used via the {pair} keyword of the Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -314,8 +317,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line @@ -340,8 +343,8 @@ reax"_pair_reax.html [Default:] -The keyword defaults are checkqeq = yes, enobonds = yes, lgvdw = no, safezone = 1.2, -mincap = 50. +The keyword defaults are checkqeq = yes, enobonds = yes, lgvdw = no, +safezone = 1.2, mincap = 50. :line diff --git a/doc/src/pair_resquared.txt b/doc/src/pair_resquared.txt index 9ad95eb5fc4e9ddc0bb3f9eda4a1751b0afba726..6ea5c73c0dd1c3cd7036b7aae2d0b492155b81f5 100644 --- a/doc/src/pair_resquared.txt +++ b/doc/src/pair_resquared.txt @@ -145,10 +145,9 @@ specified in the pair_style command is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -160,8 +159,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_sdk.txt b/doc/src/pair_sdk.txt index 360136a4eaef3df735b65cfc0f8e7ce5ca78dc16..4cd56bc43d63c88af6a6fb53bfe1e1eede9623c1 100644 --- a/doc/src/pair_sdk.txt +++ b/doc/src/pair_sdk.txt @@ -85,10 +85,9 @@ pair_style command. Styles with a {gpu}, {intel}, {kk}, {omp} or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP, and OPT packages respectively. They are only enabled if @@ -100,8 +99,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_snap.txt b/doc/src/pair_snap.txt index 27dcf6082b892b5a5df64442f2045215c8d5dbd8..c3d6e67e82f24e603fcbe49e77fd9a622ffc78f3 100644 --- a/doc/src/pair_snap.txt +++ b/doc/src/pair_snap.txt @@ -175,10 +175,9 @@ This pair style can only be used via the {pair} keyword of the Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -190,8 +189,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_soft.txt b/doc/src/pair_soft.txt index 08fa88c477961677b4aafd786e13ad1b89befed9..adbfa596c9c677506fcc4c273ed5641a7701bed4 100644 --- a/doc/src/pair_soft.txt +++ b/doc/src/pair_soft.txt @@ -82,10 +82,9 @@ variables. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -97,8 +96,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_spin_dmi.txt b/doc/src/pair_spin_dmi.txt new file mode 100644 index 0000000000000000000000000000000000000000..a1d0cb2265b9f58a46d33072c9e819acb364c00f --- /dev/null +++ b/doc/src/pair_spin_dmi.txt @@ -0,0 +1,91 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +pair_style spin/dmi command :h3 + +[Syntax:] + +pair_style spin/dmi cutoff :pre + +cutoff = global cutoff pair (distance in metal units) :ulb,l + +:ule + +[Examples:] + +pair_style spin/dmi 4.0 +pair_coeff * * dmi 2.6 0.001 1.0 0.0 0.0 +pair_coeff 1 2 dmi 4.0 0.00109 0.0 0.0 1.0 :pre + +[Description:] + +Style {spin/dmi} computes the Dzyaloshinskii-Moriya (DM) interaction +between pairs of magnetic spins. +According to the expression reported in "(Rohart)"_#Rohart, one has +the following DM energy: + +:c,image(Eqs/pair_spin_dmi_interaction.jpg) + +where si and sj are two neighboring magnetic spins of two particles, +eij = (ri - rj)/|ri-rj| is the unit vector between sites i and j, +and D is the DM vector defining the intensity (in eV) and the direction +of the interaction. + +In "(Rohart)"_#Rohart, D is defined as the direction normal to the film oriented +from the high spin-orbit layer to the magnetic ultrathin film. + +The application of a spin-lattice Poisson bracket to this energy (as described +in "(Tranchida)"_#Tranchida5) allows to derive a magnetic torque omega, and a +mechanical force F (for spin-lattice calculations only) for each magnetic +particle i: + +:c,image(Eqs/pair_spin_dmi_forces.jpg) + +More details about the derivation of these torques/forces are reported in +"(Tranchida)"_#Tranchida5. + +For the {spin/dmi} pair style, the following coefficients must be defined for +each pair of atoms types via the "pair_coeff"_pair_coeff.html command as in +the examples above, or in the data file or restart files read by the +"read_data"_read_data.html or "read_restart"_read_restart.html commands, and +set in the following order: + +rc (distance units) +|D| (energy units) +Dx, Dy, Dz (direction of D) :ul + +Note that rc is the radius cutoff of the considered DM interaction, |D| is +the norm of the DM vector (in eV), and Dx, Dy and Dz define its direction. + +None of those coefficients is optional. If not specified, the {spin/dmi} +pair style cannot be used. + +:line + +[Restrictions:] + +All the {pair/spin} styles are part of the SPIN package. +These styles are only enabled if LAMMPS was built with this package, and +if the atom_style "spin" was declared. +See the "Making LAMMPS"_Section_start.html#start_3 section for more info. + +[Related commands:] + +"atom_style spin"_atom_style.html, "pair_coeff"_pair_coeff.html, +"pair_eam"_pair_eam.html, + +[Default:] none + +:line + +:link(Rohart) +[(Rohart)] Rohart and Thiaville, +Physical Review B, 88(18), 184422. (2013). +:link(Tranchida5) +[(Tranchida)] Tranchida, Plimpton, Thibaudeau and Thompson, +Journal of Computational Physics, (2018). diff --git a/doc/src/pair_spin_exchange.txt b/doc/src/pair_spin_exchange.txt new file mode 100644 index 0000000000000000000000000000000000000000..a4f37a98eb4e9a205f8c08842d70ef3b6035276d --- /dev/null +++ b/doc/src/pair_spin_exchange.txt @@ -0,0 +1,98 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +pair_style spin/exchange command :h3 + +[Syntax:] + +pair_style spin/exchange cutoff :pre + +cutoff = global cutoff pair (distance in metal units) :ulb,l + +:ule + +[Examples:] + +pair_style spin/exchange 4.0 +pair_coeff * * exchange 4.0 0.0446928 0.003496 1.4885 +pair_coeff 1 2 exchange 6.0 -0.01575 0.0 1.965 :pre + +[Description:] + +Style {spin/exchange} computes the exchange interaction between +pairs of magnetic spins: + +:c,image(Eqs/pair_spin_exchange_interaction.jpg) + +where si and sj are two neighboring magnetic spins of two particles, +rij = ri - rj is the inter-atomic distance between the two particles, +and J(rij) is a function defining the intensity and the sign of the exchange +interaction for different neighboring shells. This function is defined as: + +:c,image(Eqs/pair_spin_exchange_function.jpg) + +where a, b and d are the three constant coefficients defined in the associated +"pair_coeff" command (see below for more explanations). + +The coefficients a, b, and d need to be fitted so that the function above matches with +the value of the exchange interaction for the N neighbor shells taken into account. +Examples and more explanations about this function and its parametrization are reported +in "(Tranchida)"_#Tranchida3. + +From this exchange interaction, each spin i will be submitted +to a magnetic torque omega, and its associated atom can be submitted to a +force F for spin-lattice calculations (see "fix_nve_spin"_fix_nve_spin.html), +such as: + +:c,image(Eqs/pair_spin_exchange_forces.jpg) + +with h the Planck constant (in metal units), and eij = (ri - rj)/|ri-rj| the unit +vector between sites i and j. + +More details about the derivation of these torques/forces are reported in +"(Tranchida)"_#Tranchida3. + +For the {spin/exchange} pair style, the following coefficients must be defined +for each pair of atoms types via the "pair_coeff"_pair_coeff.html command as in +the examples above, or in the data file or restart files read by the +"read_data"_read_data.html or "read_restart"_read_restart.html commands, and +set in the following order: + +rc (distance units) +a (energy units) +b (adim parameter) +d (distance units) :ul + +Note that rc is the radius cutoff of the considered exchange interaction, +and a, b and d are the three coefficients performing the parametrization +of the function J(rij) defined above. + +None of those coefficients is optional. If not specified, the +{spin/exchange} pair style cannot be used. + +:line + +[Restrictions:] + +All the {pair/spin} styles are part of the SPIN package. +These styles are only enabled if LAMMPS was built with this package, and +if the atom_style "spin" was declared. +See the "Making LAMMPS"_Section_start.html#start_3 section for more info. + +[Related commands:] + +"atom_style spin"_atom_style.html, "pair_coeff"_pair_coeff.html, +"pair_eam"_pair_eam.html, + +[Default:] none + +:line + +:link(Tranchida3) +[(Tranchida)] Tranchida, Plimpton, Thibaudeau and Thompson, +Journal of Computational Physics, (2018). diff --git a/doc/src/pair_spin_magelec.txt b/doc/src/pair_spin_magelec.txt new file mode 100644 index 0000000000000000000000000000000000000000..8ba24c46af2b98102e872b16f4c423336410338a --- /dev/null +++ b/doc/src/pair_spin_magelec.txt @@ -0,0 +1,73 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +pair_style spin/me command :h3 + +[Syntax:] + +pair_style spin/me cutoff :pre + +cutoff = global cutoff pair (distance in metal units) :ulb,l + +:ule + +[Examples:] + +pair_style spin/me 4.5 +pair_coeff * * me 4.5 0.00109 1.0 1.0 1.0 :pre + +[Description:] + +Style {spin/me} computes a magneto-electric interaction between +pairs of magnetic spins. According to the derivation reported in +"(Katsura)"_#Katsura1, this interaction is defined as: + +:c,image(Eqs/pair_spin_me_interaction.jpg) + +where si and sj are neighboring magnetic spins of two particles, +eij = (ri - rj)/|ri-rj| is the normalized separation vector between the +two particles, and E is an electric polarization vector. +The norm and direction of E are giving the intensity and the +direction of a screened dielectric atomic polarization (in eV). + +From this magneto-electric interaction, each spin i will be submitted +to a magnetic torque omega, and its associated atom can be submitted to a +force F for spin-lattice calculations (see "fix_nve_spin"_fix_nve_spin.html), +such as: + +:c,image(Eqs/pair_spin_me_forces.jpg) + +with h the Planck constant (in metal units). + +More details about the derivation of these torques/forces are reported in +"(Tranchida)"_#Tranchida4. + +:line + +[Restrictions:] + +All the {pair/spin} styles are part of the SPIN package. +These styles are only enabled if LAMMPS was built with this package, and +if the atom_style "spin" was declared. +See the "Making LAMMPS"_Section_start.html#start_3 section for more info. + +[Related commands:] + +"atom_style spin"_atom_style.html, "pair_coeff"_pair_coeff.html, +"pair_spin_exchange"_pair_spin_exchange.html, "pair_eam"_pair_eam.html, + +[Default:] none + +:line + +:link(Katsura1) +[(Katsura)] H. Katsura, N. Nagaosa, A.V. Balatsky. Phys. Rev. Lett., 95(5), 057205. (2005) + +:link(Tranchida4) +[(Tranchida)] Tranchida, Plimpton, Thibaudeau, and Thompson, +Journal of Computational Physics, (2018). diff --git a/doc/src/pair_spin_neel.txt b/doc/src/pair_spin_neel.txt new file mode 100644 index 0000000000000000000000000000000000000000..8551f8d63650f50fd355903028cefd64eb96ed4c --- /dev/null +++ b/doc/src/pair_spin_neel.txt @@ -0,0 +1,81 @@ +"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c + +:link(lws,http://lammps.sandia.gov) +:link(ld,Manual.html) +:link(lc,Section_commands.html#comm) + +:line + +pair_style spin/neel command :h3 + +[Syntax:] + +pair_style spin/neel cutoff :pre + +cutoff = global cutoff pair (distance in metal units) :ulb,l + +:ule + +[Examples:] + +pair_style spin/neel 4.0 +pair_coeff * * neel 4.0 0.0048 0.234 1.168 2.6905 0.705 0.652 +pair_coeff 1 2 neel 4.0 0.0048 0.234 1.168 0.0 0.0 1.0 :pre + +[Description:] + +Style {spin/neel} computes the Neel pair anisotropy model +between pairs of magnetic spins: + +:c,image(Eqs/pair_spin_neel_interaction.jpg) + +where si and sj are two neighboring magnetic spins of two particles, +rij = ri - rj is the inter-atomic distance between the two particles, +eij = (ri - rj)/|ri-rj| is their normalized separation vector +and g1, q1 and q2 are three functions defining the intensity of the +dipolar and quadrupolar contributions, with: + +:c,image(Eqs/pair_spin_neel_functions.jpg) + +With the functions g(rij) and q(rij) defined and fitted according to the same +Bethe-Slater function used to fit the exchange interaction: + +:c,image(Eqs/pair_spin_exchange_function.jpg) + +where a, b and d are the three constant coefficients defined in the associated +"pair_coeff" command. + +The coefficients a, b, and d need to be fitted so that the function above matches with +the values of the magneto-elastic constant of the materials at stake. + +Examples and more explanations about this function and its parametrization are reported +in "(Tranchida)"_#Tranchida6. More examples of parametrization will be provided in +future work. + +From this DM interaction, each spin i will be submitted to a magnetic torque +omega and its associated atom to a force F (for spin-lattice calculations only). + +More details about the derivation of these torques/forces are reported in +"(Tranchida)"_#Tranchida6. + +:line + +[Restrictions:] + +All the {pair/spin} styles are part of the SPIN package. +These styles are only enabled if LAMMPS was built with this package, and +if the atom_style "spin" was declared. +See the "Making LAMMPS"_Section_start.html#start_3 section for more info. + +[Related commands:] + +"atom_style spin"_atom_style.html, "pair_coeff"_pair_coeff.html, +"pair_eam"_pair_eam.html, + +[Default:] none + +:line + +:link(Tranchida6) +[(Tranchida)] Tranchida, Plimpton, Thibaudeau and Thompson, +Journal of Computational Physics, (2018). diff --git a/doc/src/pair_sw.txt b/doc/src/pair_sw.txt index 6ed8f00236e2e4a4f441401c39823586802818a3..7c9ce4a4f90728fcc0191caa45fdcfd07ca69723 100644 --- a/doc/src/pair_sw.txt +++ b/doc/src/pair_sw.txt @@ -144,10 +144,9 @@ taken from the ij and ik pairs (sigma, a, gamma) Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -164,8 +163,8 @@ additional 5 to 10 percent performance improvement when the Stillinger-Weber parameters p and q are set to 4 and 0 respectively. These parameters are common for modeling silicon and water. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line @@ -192,8 +191,8 @@ This pair style can only be used via the {pair} keyword of the [Restrictions:] This pair style is part of the MANYBODY package. It is only enabled -if LAMMPS was built with that package. See -the "Making LAMMPS"_Section_start.html#start_3 section for more info. +if LAMMPS was built with that package. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info. This pair style requires the "newton"_newton.html setting to be "on" for pair interactions. diff --git a/doc/src/pair_table.txt b/doc/src/pair_table.txt index b99491b477224e621da4429d10c0b20b84c66c0d..f5e69a6d542110394747848f70a0041d79fe3a79 100644 --- a/doc/src/pair_table.txt +++ b/doc/src/pair_table.txt @@ -217,10 +217,9 @@ one that matches the specified keyword. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -232,8 +231,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_table_rx.txt b/doc/src/pair_table_rx.txt index cd3a7ef31b87d15268cfe93050889b4699a4adc7..52760c396bb2daf15ca8b2d7d004e9c40dadd1a1 100644 --- a/doc/src/pair_table_rx.txt +++ b/doc/src/pair_table_rx.txt @@ -227,10 +227,9 @@ This pair style can only be used via the {pair} keyword of the Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -242,8 +241,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_tersoff.txt b/doc/src/pair_tersoff.txt index 918e88992440045bda099cb2ad9849ab4faeff14..70fe207f0afa1e69b2414ce802a760b894abf1eb 100644 --- a/doc/src/pair_tersoff.txt +++ b/doc/src/pair_tersoff.txt @@ -179,10 +179,9 @@ defined in various papers. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -194,8 +193,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_tersoff_mod.txt b/doc/src/pair_tersoff_mod.txt index e0c2b5a5cbb07b7c525d58d48eab97cb763971ca..aced6d40d69ed54e3b1aafb415dbff4b8759f6de 100644 --- a/doc/src/pair_tersoff_mod.txt +++ b/doc/src/pair_tersoff_mod.txt @@ -131,10 +131,9 @@ for SiSiSi means Si bonded to a Si with another Si atom influencing the bond. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -146,8 +145,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_tersoff_zbl.txt b/doc/src/pair_tersoff_zbl.txt index 21d57e4e8841570f44f114961af653ad9dde93b4..838c2f39cf772b2342681a8e70337be2e7f160ef 100644 --- a/doc/src/pair_tersoff_zbl.txt +++ b/doc/src/pair_tersoff_zbl.txt @@ -189,10 +189,9 @@ providing the base ZBL implementation. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -204,8 +203,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_thole.txt b/doc/src/pair_thole.txt index 41a4059cee8d4de828d136343a282310f493403d..11d4b85cff15688fbf5ca15dd3a238de42a48bbe 100644 --- a/doc/src/pair_thole.txt +++ b/doc/src/pair_thole.txt @@ -130,10 +130,9 @@ the {pair_style} command line. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -145,8 +144,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. [Mixing]: diff --git a/doc/src/pair_ufm.txt b/doc/src/pair_ufm.txt index 88a22864ccaf960472dbe5ea3f985ea2d375ab23..5af8741502efdf511657435179ed3ea53f8cb0ad 100644 --- a/doc/src/pair_ufm.txt +++ b/doc/src/pair_ufm.txt @@ -69,10 +69,9 @@ NOTE: The thermodynamic integration procedure can be performed with this potenti Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -84,8 +83,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_vashishta.txt b/doc/src/pair_vashishta.txt index d9c66d45c0cae201fa12b3799bdf562dc9f55a91..e90a9d8f5005a0d2bb15658a060800574c79e1eb 100644 --- a/doc/src/pair_vashishta.txt +++ b/doc/src/pair_vashishta.txt @@ -171,10 +171,9 @@ two-body parameters from the CCC and CSiSi entries. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -186,8 +185,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_yukawa.txt b/doc/src/pair_yukawa.txt index e7c063ded9f41227210e17970dc9fb7cc59ed757..979165dda0e97afb88bfb4c1a00e91193589b076 100644 --- a/doc/src/pair_yukawa.txt +++ b/doc/src/pair_yukawa.txt @@ -49,10 +49,9 @@ cutoff is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -64,8 +63,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_yukawa_colloid.txt b/doc/src/pair_yukawa_colloid.txt index 2037a9451f9e77079971382afde16709657c88e7..a1752c261ed65c29e4f25644c40c99fc8da3dfb5 100644 --- a/doc/src/pair_yukawa_colloid.txt +++ b/doc/src/pair_yukawa_colloid.txt @@ -80,10 +80,9 @@ yukawa/colloid cutoff is used. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -95,8 +94,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pair_zbl.txt b/doc/src/pair_zbl.txt index 1984cd831f6bf2fef81c9f2ef39c16b04284e309..0507083295671c1458a485a311629152b432b2fd 100644 --- a/doc/src/pair_zbl.txt +++ b/doc/src/pair_zbl.txt @@ -71,10 +71,9 @@ copper. Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are functionally the same as the corresponding style without the suffix. They have been optimized to run faster, depending on your available -hardware, as discussed in "Section 5"_Section_accelerate.html -of the manual. The accelerated styles take the same arguments and -should produce the same results, except for round-off and precision -issues. +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. These accelerated styles are part of the GPU, USER-INTEL, KOKKOS, USER-OMP and OPT packages, respectively. They are only enabled if @@ -86,8 +85,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/pairs.txt b/doc/src/pairs.txt index 202aaa9c0f8354ebadf7a2f24156e3fb19b02fd2..4c3eef2cd11c32ea4801ebb830a6a985cc5a734b 100644 --- a/doc/src/pairs.txt +++ b/doc/src/pairs.txt @@ -10,8 +10,9 @@ Pair Styles :h1 pair_airebo pair_awpmd pair_beck - pair_body + pair_body_nparticle pair_body_rounded_polygon + pair_body_rounded_polyhedron pair_bop pair_born pair_brownian @@ -97,6 +98,10 @@ Pair Styles :h1 pair_sph_rhosum pair_sph_taitwater pair_sph_taitwater_morris + pair_spin_dmi + pair_spin_exchange + pair_spin_magelec + pair_spin_neel pair_srp pair_sw pair_table diff --git a/doc/src/python.txt b/doc/src/python.txt index 1ac2b48528c073a1b40ea4fd210dfb5dfb91a1ae..d670fcc77f8ef4377c829ae0fa486fa9ba8347a1 100644 --- a/doc/src/python.txt +++ b/doc/src/python.txt @@ -99,10 +99,9 @@ They can be substituted for directly in an input script. Or they can be passed to various commands as arguments, so that the variable is evaluated during a simulation run. -A broader overview of how Python can be used with LAMMPS is -given in "Section 11"_Section_python.html. There is an -examples/python directory which illustrates use of the python -command. +A broader overview of how Python can be used with LAMMPS is given on +the "Python"_Python.html doc page. There is an examples/python +directory which illustrates use of the python command. :line @@ -331,9 +330,9 @@ to the screen and log file. Note that since the LAMMPS print command itself takes a string in quotes as its argument, the Python string must be delimited with a different style of quotes. -"Section 11.7"_Section_python.html#py_7 describes the syntax for how -Python wraps the various functions included in the LAMMPS library -interface. +The "Pytnon library"_Python_library.html doc page describes the syntax +for how Python wraps the various functions included in the LAMMPS +library interface. A more interesting example is in the examples/python/in.python script which loads and runs the following function from examples/python/funcs.py: @@ -484,15 +483,16 @@ building LAMMPS. LAMMPS must also be built as a shared library and your Python function must be able to to load the Python module in python/lammps.py that wraps the LAMMPS library interface. These are the same steps required to use Python by itself to wrap LAMMPS. -Details on these steps are explained in "Section -python"_Section_python.html. Note that it is important that the -stand-alone LAMMPS executable and the LAMMPS shared library be -consistent (built from the same source code files) in order for this -to work. If the two have been built at different times using -different source files, problems may occur. +Details on these steps are explained on the "Python"_Python.html doc +page. Note that it is important that the stand-alone LAMMPS +executable and the LAMMPS shared library be consistent (built from the +same source code files) in order for this to work. If the two have +been built at different times using different source files, problems +may occur. [Related commands:] -"shell"_shell.html, "variable"_variable.html, "fix python/invoke"_fix_python_invoke.html +"shell"_shell.html, "variable"_variable.html, "fix +python/invoke"_fix_python_invoke.html [Default:] none diff --git a/doc/src/read_dump.txt b/doc/src/read_dump.txt index 23f6274582ee9d1ef579ce96ce9692a892866f29..21c6df5017a50b8bf35ef43198c659f60ae4fb51 100644 --- a/doc/src/read_dump.txt +++ b/doc/src/read_dump.txt @@ -282,11 +282,11 @@ conditions are applied to remap an atom back into the simulation box. NOTE: If you get a warning about inconsistent image flags after reading in a dump snapshot, it means one or more pairs of bonded atoms -now have inconsistent image flags. As discussed in "Section -errors"_Section_errors.html this may or may not cause problems for -subsequent simulations, One way this can happen is if you read image -flag fields from the dump file but do not also use the dump file box -parameters. +now have inconsistent image flags. As discussed on the "Errors +common"_Errors_common.html doc page this may or may not cause problems +for subsequent simulations. One way this can happen is if you read +image flag fields from the dump file but do not also use the dump file +box parameters. LAMMPS knows how to compute unscaled and remapped coordinates for the snapshot column labels discussed above, e.g. {x}, {xs}, {xu}, {xsu}. diff --git a/doc/src/read_restart.txt b/doc/src/read_restart.txt index a5a2bfcc9743d7402eeb57bfa3dcda678f357829..6f6a82822929d26afd5d0a10ad9c28aa3bd252f7 100644 --- a/doc/src/read_restart.txt +++ b/doc/src/read_restart.txt @@ -76,8 +76,7 @@ different than if the run had continued. These pair styles include If a restarted run is immediately different than the run which produced the restart file, it could be a LAMMPS bug, so consider -"reporting it"_Section_errors.html#err_2 if you think the behavior is -wrong. +"reporting it"_Errors_bugs.html if you think the behavior is a bug. Because restart files are binary, they may not be portable to other machines. In this case, you can use the "-restart command-line diff --git a/doc/src/region.txt b/doc/src/region.txt index 5039e4a51615164a410bd85ff6572ac41d3a8bf6..1ac3861e675834c262bbf615764caedfd6e25781 100644 --- a/doc/src/region.txt +++ b/doc/src/region.txt @@ -358,12 +358,12 @@ sub-regions can be defined with the {open} keyword. :line -Styles with a {kk} suffix are functionally the same as the -corresponding style without the suffix. They have been optimized to -run faster, depending on your available hardware, as discussed in -"Section 5"_Section_accelerate.html of the manual. The -accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +Styles with a {gpu}, {intel}, {kk}, {omp}, or {opt} suffix are +functionally the same as the corresponding style without the suffix. +They have been optimized to run faster, depending on your available +hardware, as discussed on the "Speed packages"_Speed_packages.html doc +page. The accelerated styles take the same arguments and should +produce the same results, except for round-off and precision issues. The code using the region (such as a fix or compute) must also be supported by Kokkos or no acceleration will occur. Currently, only {block} style @@ -378,8 +378,8 @@ by including their suffix, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line diff --git a/doc/src/run.txt b/doc/src/run.txt index 311560d66b57585c0dfb9e0fae8c64d8f39ea236..913d81bb4d05c46274d5127bed7e6fb483732507 100644 --- a/doc/src/run.txt +++ b/doc/src/run.txt @@ -126,9 +126,8 @@ and interleaving commands in your input script. For example, a be redefined, e.g. to reset a thermostat temperature. Or this could be useful for invoking a command you have added to LAMMPS that wraps some other code (e.g. as a library) to perform a computation -periodically during a long LAMMPS run. See "this -section"_Section_modify.html of the documentation for info about how -to add new commands to LAMMPS. See "this +periodically during a long LAMMPS run. See the "Modify"_Modify.html +doc page for info about how to add new commands to LAMMPS. See "this section"_Section_howto.html#howto_10 of the documentation for ideas about how to couple LAMMPS to other codes. diff --git a/doc/src/run_style.txt b/doc/src/run_style.txt index ba836a07dd1510b48e48ad5c8f2714bd5c6252b9..6f1f719d6445f0d813c732c24790946359b74c3a 100644 --- a/doc/src/run_style.txt +++ b/doc/src/run_style.txt @@ -119,13 +119,13 @@ switches"_Section_start.html#start_6 to change this. The log and screen file for the 2nd partition will not contain thermodynamic output beyond the 1st timestep of the run. -See "Section 5"_Section_accelerate.html of the manual for -performance details of the speed-up offered by the {verlet/split} -style. One important performance consideration is the assignment of -logical processors in the 2 partitions to the physical cores of a -parallel machine. The "processors"_processors.html command has -options to support this, and strategies are discussed in -"Section 5"_Section_accelerate.html of the manual. +See the "Speed packages"_Speed_packages.html doc page for performance +details of the speed-up offered by the {verlet/split} style. One +important performance consideration is the assignment of logical +processors in the 2 partitions to the physical cores of a parallel +machine. The "processors"_processors.html command has options to +support this, and strategies are discussed in "Section +5"_Speed.html of the manual. :line @@ -138,13 +138,19 @@ iterations of level 1 for a single iteration of level 2, N2 is the iterations of level 2 per iteration of level 3, etc. N-1 looping parameters must be specified. -The "timestep"_timestep.html command sets the timestep for the -outermost rRESPA level. Thus if the example command above for a -4-level rRESPA had an outer timestep of 4.0 fmsec, the inner timestep -would be 8x smaller or 0.5 fmsec. All other LAMMPS commands that -specify number of timesteps (e.g. "neigh_modify"_neigh_modify.html -parameters, "dump"_dump.html every N timesteps, etc) refer to the -outermost timesteps. +Thus with a 4-level respa setting of "2 2 2" for the 3 loop factors, +you could choose to have bond interactions computed 8x per large +timestep, angle interactions computed 4x, pair interactions computed +2x, and long-range interactions once per large timestep. + +The "timestep"_timestep.html command sets the large timestep for the +outermost rRESPA level. Thus if the 3 loop factors are "2 2 2" for +4-level rRESPA, and the outer timestep is set to 4.0 fmsec, then the +inner timestep would be 8x smaller or 0.5 fmsec. All other LAMMPS +commands that specify number of timesteps (e.g. "thermo"_thermo.html +for thermo output every N steps, "neigh_modify +delay/every"_neigh_modify.html parameters, "dump"_dump.html every N +steps, etc) refer to the outermost timesteps. The rRESPA keywords enable you to specify at what level of the hierarchy various forces will be computed. If not specified, the @@ -167,11 +173,17 @@ have their force go ramped to 0.0 so the overlap with the next regime compute forces for all pairs from 5.0 outward, with those from 5.0 to 6.0 having their value ramped in an inverse manner. -Only some pair potentials support the use of the {inner} and {middle} -and {outer} keywords. If not, only the {pair} keyword can be used -with that pair style, meaning all pairwise forces are computed at the -same rRESPA level. See the doc pages for individual pair styles for -details.i +Note that you can use {inner} and {outer} without using {middle} to +split the pairwise computations into two portions instead of three. +Unless you are using a very long pairwise cutoff, a 2-way split is +often faster than a 3-way split, since it avoids too much duplicate +computation of pairwise interactions near the intermediate cutoffs. + +Also note that only a few pair potentials support the use of the +{inner} and {middle} and {outer} keywords. If not, only the {pair} +keyword can be used with that pair style, meaning all pairwise forces +are computed at the same rRESPA level. See the doc pages for +individual pair styles for details. Another option for using pair potentials with rRESPA is with the {hybrid} keyword, which requires the use of the "pair_style hybrid or @@ -238,42 +250,54 @@ roughly a 1.5 fold speedup over the {verlet} style with SHAKE and a For non-biomolecular simulations, the {respa} style can be advantageous if there is a clear separation of time scales - fast and -slow modes in the simulation. Even a LJ system can benefit from -rRESPA if the interactions are divided by the inner, middle and outer -keywords. A 2-fold or more speedup can be obtained while maintaining -good energy conservation. In real units, for a pure LJ fluid at -liquid density, with a sigma of 3.0 angstroms, and epsilon of 0.1 -Kcal/mol, the following settings seem to work well: +slow modes in the simulation. For example, a system of slowly-moving +charged polymer chains could be setup as follows: + +timestep 4.0 +run_style respa 2 8 :pre + +This is two-level rRESPA with an 8x difference between the short and +long timesteps. The bonds, angles, dihedrals will be computed every +0.5 fs (assuming real units), while the pair and kspace interactions +will be computed once every 4 fs. These are the default settings for +each kind of interaction, so no additional keywords are necessary. + +Even a LJ system can benefit from rRESPA if the interactions are +divided by the inner, middle and outer keywords. A 2-fold or more +speedup can be obtained while maintaining good energy conservation. +In real units, for a pure LJ fluid at liquid density, with a sigma of +3.0 angstroms, and epsilon of 0.1 Kcal/mol, the following settings +seem to work well: timestep 36.0 run_style respa 3 3 4 inner 1 3.0 4.0 middle 2 6.0 7.0 outer 3 :pre :line -The {respa/omp} styles is a variant of {respa} adapted for use with +The {respa/omp} style is a variant of {respa} adapted for use with pair, bond, angle, dihedral, improper, or kspace styles with an {omp} -suffix. It is functionally equivalent to {respa} but performs additional -operations required for managing {omp} styles. For more on {omp} styles -see the "Section 5"_Section_accelerate.html of the manual. -Accelerated styles take the same arguments and should produce the same -results, except for round-off and precision issues. +suffix. It is functionally equivalent to {respa} but performs +additional operations required for managing {omp} styles. For more on +{omp} styles see the "Speed omp"_Speed_omp.html doc page. Accelerated +styles take the same arguments and should produce the same results, +except for round-off and precision issues. You can specify {respa/omp} explicitly in your input script, or you can use the "-suffix command-line switch"_Section_start.html#start_6 when you invoke LAMMPS, or you can use the "suffix"_suffix.html command in your input script. -See "Section 5"_Section_accelerate.html of the manual for -more instructions on how to use the accelerated styles effectively. +See the "Speed packages"_Speed_packages.html doc page for more +instructions on how to use the accelerated styles effectively. :line [Restrictions:] The {verlet/split} style can only be used if LAMMPS was built with the -REPLICA package. Correspondingly the {respa/omp} style is available only -if the USER-OMP package was included. See the "Making LAMMPS"_Section_start.html#start_3 -section for more info on packages. +REPLICA package. Correspondingly the {respa/omp} style is available +only if the USER-OMP package was included. See the "Making +LAMMPS"_Section_start.html#start_3 section for more info on packages. Whenever using rRESPA, the user should experiment with trade-offs in speed and accuracy for their system, and verify that they are @@ -287,6 +311,17 @@ conserving energy to adequate precision. run_style verlet :pre +For run_style respa, the default assignment of interactions +to rRESPA levels is as follows: + +bond forces = level 1 (innermost loop) +angle forces = same level as bond forces +dihedral forces = same level as angle forces +improper forces = same level as dihedral forces +pair forces = leven N (outermost level) +kspace forces = same level as pair forces +inner, middle, outer forces = no default :ul + :line :link(Tuckerman3) diff --git a/doc/src/set.txt b/doc/src/set.txt index 4757d1c5758f9ed027a9932c07452ddcc2567f95..d2235d5c32bc03426c8f7c584c10c5fc2b6a7f1c 100644 --- a/doc/src/set.txt +++ b/doc/src/set.txt @@ -17,6 +17,7 @@ ID = atom ID range or type range or mol ID range or group ID or region ID :l one or more keyword/value pairs may be appended :l keyword = {type} or {type/fraction} or {mol} or {x} or {y} or {z} or \ {charge} or {dipole} or {dipole/random} or {quat} or \ + {spin} or {spin/random} or {quat} or \ {quat/random} or {diameter} or {shape} or \ {length} or {tri} or {theta} or {theta/random} or \ {angmom} or {omega} or \ @@ -35,6 +36,8 @@ keyword = {type} or {type/fraction} or {mol} or {x} or {y} or {z} or \ value can be an atom-style variable (see below) {x},{y},{z} value = atom coordinate (distance units) value can be an atom-style variable (see below) + {vx},{vy},{vz} value = atom velocity (velocity units) + value can be an atom-style variable (see below) {charge} value = atomic charge (charge units) value can be an atom-style variable (see below) {dipole} values = x y z @@ -43,6 +46,13 @@ keyword = {type} or {type/fraction} or {mol} or {x} or {y} or {z} or \ {dipole/random} value = seed Dlen seed = random # seed (positive integer) for dipole moment orientations Dlen = magnitude of dipole moment (dipole units) + {spin} values = g x y z + g = magnitude of magnetic spin vector (in Bohr magneton's unit) + x,y,z = orientation of magnetic spin vector + any of x,y,z can be an atom-style variable (see below) + {spin/random} value = seed Dlen + seed = random # seed (positive integer) for magnetic spin orientations + Dlen = magnitude of magnetic spin vector (in Bohr magneton's unit) {quat} values = a b c theta a,b,c = unit vector to rotate particle around via right-hand rule theta = rotation angle (degrees) @@ -119,6 +129,7 @@ set type 3 charge 0.5 set type 1*3 charge 0.5 set atom * charge v_atomfile set atom 100*200 x 0.5 y 1.0 +set atom 100 vx 0.0 vy 0.0 vz -1.0 set atom 1492 type 3 :pre [Description:] @@ -217,7 +228,8 @@ IDs. Keywords {x}, {y}, {z}, and {charge} set the coordinates or charge of all selected atoms. For {charge}, the "atom style"_atom_style.html -being used must support the use of atomic charge. +being used must support the use of atomic charge. Keywords {vx}, {vy}, +and {vz} set the velocities of all selected atoms. Keyword {dipole} uses the specified x,y,z values as components of a vector to set as the orientation of the dipole moment vectors of the @@ -232,6 +244,15 @@ the orientation of a particular atom is the same, regardless of how many processors are being used. This keyword does not allow use of an atom-style variable. +Keyword {spin} uses the specified g value to set the magnitude of the +magnetic spin vectors, and the x,y,z values as components of a vector +to set as the orientation of the magnetic spin vectors of the selected +atoms. + +Keyword {spin/random} randomizes the orientation of the magnetic spin +vectors for the selected atoms and sets the magnitude of each to the +specified {Dlen} value. + Keyword {quat} uses the specified values to create a quaternion (4-vector) that represents the orientation of the selected atoms. The particles must define a quaternion for their orientation diff --git a/doc/src/thermo_style.txt b/doc/src/thermo_style.txt index 6102169ee363ca2bdb9dc41d1663f9c1dcb442aa..18c5ad5ba1ce9ecedf74156c8f78a073101e8374 100644 --- a/doc/src/thermo_style.txt +++ b/doc/src/thermo_style.txt @@ -108,12 +108,11 @@ Style {custom} is the most general setting and allows you to specify which of the keywords listed above you want printed on each thermodynamic timestep. Note that the keywords c_ID, f_ID, v_name are references to "computes"_compute.html, "fixes"_fix.html, and -equal-style "variables"_variable.html that have been defined -elsewhere in the input script or can even be new styles which users -have added to LAMMPS (see the "Section 10"_Section_modify.html -section of the documentation). Thus the {custom} style provides a -flexible means of outputting essentially any desired quantity as a -simulation proceeds. +equal-style "variables"_variable.html that have been defined elsewhere +in the input script or can even be new styles which users have added +to LAMMPS. See the "Modify"_Modify.html doc page for details on the +latter. Thus the {custom} style provides a flexible means of +outputting essentially any desired quantity as a simulation proceeds. All styles except {custom} have {vol} appended to their list of outputs if the simulation box volume changes during the simulation. diff --git a/doc/src/tutorial_github.txt b/doc/src/tutorial_github.txt index 3e10b821aecf3b8bce1f1f9e54198720bd521ce5..fc261bdb958e18bdb19511f4a0ec8ecad8ad8c3e 100644 --- a/doc/src/tutorial_github.txt +++ b/doc/src/tutorial_github.txt @@ -25,8 +25,8 @@ or improvements to LAMMPS, as it significantly reduces the amount of work required by the LAMMPS developers. Consequently, creating a pull request will increase your chances to have your contribution included and will reduce the time until the integration is complete. For more -information on the requirements to have your code included into LAMMPS -please see "Section 10.15"_Section_modify.html#mod_15 +information on the requirements to have your code included in LAMMPS, +see the "Modify contribute"_Modify_contribute.html doc page. :line diff --git a/doc/src/variable.txt b/doc/src/variable.txt index c0851464c3f14e11629b8e65ee58a171499a4e45..717c77c07908099a76f4f32991697bfcb8294bc6 100644 --- a/doc/src/variable.txt +++ b/doc/src/variable.txt @@ -296,17 +296,24 @@ list of runs (e.g. 1000) without having to list N strings in the input script. For the {string} style, a single string is assigned to the variable. -The only difference between this and using the {index} style with a -single string is that a variable with {string} style can be redefined. -E.g. by another command later in the input script, or if the script is -read again in a loop. +Two differences between this this and using the {index} style exist: +a variable with {string} style can be redefined, e.g. by another command later +in the input script, or if the script is read again in a loop. The other +difference is that {string} performs variable substitution even if the +string parameter is quoted. For the {format} style, an equal-style variable is specified along with a C-style format string, e.g. "%f" or "%.10g", which must be appropriate for formatting a double-precision floating-point value. -This allows an equal-style variable to be formatted specifically for -output as a string, e.g. by the "print"_print.html command, if the -default format "%.15g" has too much precision. +The default format is "%.15g". This variable style allows an +equal-style variable to be formatted precisely when it is evaluated. + +If you simply wish to print a variable value with desired precision to +the screen or logfile via the "print"_print.html or "fix +print"_fix_print.html commands, you can also do this by specifying an +"immediate" variable with a trailing colon and format string, as part +of the string argument of those commands. This is explained in +"Section 3.2"_Section_commands.html#cmd_2. For the {getenv} style, a single string is assigned to the variable which should be the name of an environment variable. When the diff --git a/doc/src/write_data.txt b/doc/src/write_data.txt index 39e5a7f8114627a358350f4b7bb4c799fddb27cc..c76f20319c3182a2d9298d8aada887cb806878f3 100644 --- a/doc/src/write_data.txt +++ b/doc/src/write_data.txt @@ -16,6 +16,7 @@ file = name of data file to write out :ulb,l zero or more keyword/value pairs may be appended :l keyword = {pair} or {nocoeff} :l {nocoeff} = do not write out force field info + {nofix} = do not write out extra sections read by fixes {pair} value = {ii} or {ij} {ii} = write one line of pair coefficient info per atom type {ij} = write one line of pair coefficient info per IJ atom type pair :pre @@ -83,6 +84,12 @@ be written to the data file. This can be very helpful, if one wants to make significant changes to the force field or if the parameters are read in separately anyway, e.g. from an include file. +The {nofix} keyword requests that no extra sections read by fixes +should be written to the data file (see the {fix} option of the +"read_data"_read_data.html command for details). For example, this +option excludes sections for user-created per-atom properties +from "fix property/atom"_fix_property_atom.html. + The {pair} keyword lets you specify in what format the pair coefficient information is written into the data file. If the value is specified as {ii}, then one line per atom type is written, to @@ -120,4 +127,3 @@ setup, atom masses initialized, etc). [Default:] The option defaults are pair = ii. - diff --git a/doc/utils/converters/lammpsdoc/txt2html.py b/doc/utils/converters/lammpsdoc/txt2html.py index 79a75d72f6e4be7796e685e7025adbef0d9eb5ff..ed9f47a4e4ae3cfe4c6363a34ab9b7deb42b8c0c 100755 --- a/doc/utils/converters/lammpsdoc/txt2html.py +++ b/doc/utils/converters/lammpsdoc/txt2html.py @@ -662,14 +662,15 @@ class TxtConverter: parser = self.get_argument_parser() parsed_args = parser.parse_args(args) - write_to_files = len(parsed_args.files) > 1 + write_to_files = parsed_args.output_dir or (len(parsed_args.files) > 1) for filename in parsed_args.files: if parsed_args.skip_files and filename in parsed_args.skip_files: continue with open(filename, 'r') as f: - print("Converting", filename, "...", file=err) + if parsed_args.verbose: + print("Converting", filename, "...", file=err) content = f.read() converter = self.create_converter(parsed_args) @@ -683,7 +684,10 @@ class TxtConverter: result = msg if write_to_files: - output_filename = self.get_output_filename(filename) + if parsed_args.output_dir: + output_filename = os.path.join(parsed_args.output_dir, os.path.basename(self.get_output_filename(filename))) + else: + output_filename = self.get_output_filename(filename) with open(output_filename, "w+t") as outfile: outfile.write(result) else: @@ -698,6 +702,8 @@ class Txt2HtmlConverter(TxtConverter): 'HTML file. useful when set of HTML files' ' will be converted to PDF') parser.add_argument('-x', metavar='file-to-skip', dest='skip_files', action='append') + parser.add_argument('--verbose', '-v', dest='verbose', action='store_true') + parser.add_argument('--output-directory', '-o', dest='output_dir') parser.add_argument('--generate-title', dest='create_title', action='store_true', help='add HTML head page' 'title based on first ' 'h1,h2,h3,h4... element') diff --git a/doc/utils/converters/lammpsdoc/txt2rst.py b/doc/utils/converters/lammpsdoc/txt2rst.py index 17d0916157a4f2d9b07ec655522ac6999b6978cb..8119ad3a7869c5345ffad166536f98ffa7bd20ba 100755 --- a/doc/utils/converters/lammpsdoc/txt2rst.py +++ b/doc/utils/converters/lammpsdoc/txt2rst.py @@ -395,6 +395,8 @@ class Txt2RstConverter(TxtConverter): parser = argparse.ArgumentParser(description='converts a text file with simple formatting & markup into ' 'Restructured Text for Sphinx.') parser.add_argument('-x', metavar='file-to-skip', dest='skip_files', action='append') + parser.add_argument('--verbose', '-v', dest='verbose', action='store_true') + parser.add_argument('--output-directory', '-o', dest='output_dir') parser.add_argument('files', metavar='file', nargs='+', help='one or more files to convert') return parser diff --git a/doc/utils/requirements.txt b/doc/utils/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..2806c164989aa9137a6c1860716ae9abccef75ad --- /dev/null +++ b/doc/utils/requirements.txt @@ -0,0 +1 @@ +Sphinx diff --git a/doc/utils/txt2html/txt2html b/doc/utils/txt2html/txt2html new file mode 100755 index 0000000000000000000000000000000000000000..023631eac1b472cdcaf4e8c4757c72c386446ecf Binary files /dev/null and b/doc/utils/txt2html/txt2html differ diff --git a/examples/COUPLE/lammps_quest/lmpqst.cpp b/examples/COUPLE/lammps_quest/lmpqst.cpp index e7f2d92c1dfeb0d512ab64b24d05ab34f2b42e3a..76a89f1d064b289be0e68b6252dd262a7d8ec549 100644 --- a/examples/COUPLE/lammps_quest/lmpqst.cpp +++ b/examples/COUPLE/lammps_quest/lmpqst.cpp @@ -6,10 +6,10 @@ // in.lammps = LAMMPS input script // in.quest = Quest input script -#include "mpi.h" -#include "stdio.h" -#include "stdlib.h" -#include "string.h" +#include +#include +#include +#include #include "stdint.h" #include "many2one.h" diff --git a/examples/COUPLE/lammps_spparks/lmpspk.cpp b/examples/COUPLE/lammps_spparks/lmpspk.cpp index da6d2523696bebe87c759b56a874ca41f6bd4061..2e234c89f1fadb6bbbcdde2a0c579de1a8c97b54 100644 --- a/examples/COUPLE/lammps_spparks/lmpspk.cpp +++ b/examples/COUPLE/lammps_spparks/lmpspk.cpp @@ -7,10 +7,10 @@ // Sfactor = multiplier on strain effect // in.spparks = SPPARKS input script -#include "mpi.h" -#include "stdio.h" -#include "stdlib.h" -#include "string.h" +#include +#include +#include +#include #include "lammps_data_write.h" #include "many2many.h" diff --git a/examples/COUPLE/library/error.cpp b/examples/COUPLE/library/error.cpp index f538dce23f103035181620a99f4d0e3a27f31f42..b7a59b8c72344159a77fcd7326f0d606035f7110 100644 --- a/examples/COUPLE/library/error.cpp +++ b/examples/COUPLE/library/error.cpp @@ -1,6 +1,6 @@ #include -#include -#include +#include +#include #include "error.h" /* ---------------------------------------------------------------------- */ diff --git a/examples/COUPLE/library/files.cpp b/examples/COUPLE/library/files.cpp index 0d98e69a9e0bb80d4594fef1b2c39ce50f45a777..d4d707a6c91fdfcee12e9c446515ba147019bfb9 100644 --- a/examples/COUPLE/library/files.cpp +++ b/examples/COUPLE/library/files.cpp @@ -1,5 +1,5 @@ -#include -#include +#include +#include #include "files.h" #define MAXLINE 256 diff --git a/examples/COUPLE/library/irregular.cpp b/examples/COUPLE/library/irregular.cpp index aea9b8332ca4b60ab523c44e7f19d1fcd0308c3a..b822fc859d4dbb25de9cfff9eb4924c3d032e471 100644 --- a/examples/COUPLE/library/irregular.cpp +++ b/examples/COUPLE/library/irregular.cpp @@ -1,6 +1,6 @@ -#include "stdio.h" -#include "stdlib.h" -#include "string.h" +#include +#include +#include #include "irregular.h" #include "memory.h" #include "error.h" diff --git a/examples/COUPLE/library/lammps_data_write.cpp b/examples/COUPLE/library/lammps_data_write.cpp index cb525871e20f054e44dafc94dedca9ef6f18f7d2..9d1039ff4732e79b2a6823fe752a894a74cc3173 100644 --- a/examples/COUPLE/library/lammps_data_write.cpp +++ b/examples/COUPLE/library/lammps_data_write.cpp @@ -1,6 +1,6 @@ #include -#include -#include +#include +#include #include "lammps_data_write.h" #include "memory.h" #include "error.h" diff --git a/examples/COUPLE/library/lammps_data_write.h b/examples/COUPLE/library/lammps_data_write.h index 9a6de2b63c3406142c719d00873078a83dc9b8aa..0192c17e2984356c330022b55c7f3124038d1bb1 100644 --- a/examples/COUPLE/library/lammps_data_write.h +++ b/examples/COUPLE/library/lammps_data_write.h @@ -1,7 +1,7 @@ #ifndef LAMMPS_DATA_WRITE_H #define LAMMPS_DATA_WRITE_H -#include +#include #include "send2one.h" class LAMMPSDataWrite : public Send2One { diff --git a/examples/COUPLE/library/many2many.cpp b/examples/COUPLE/library/many2many.cpp index 3ca9ca63bbcb5f36e9193d4eb514d3f05aa580e2..cbf5da8e6ef57dc307940d2894c2e0ef6e9f286f 100644 --- a/examples/COUPLE/library/many2many.cpp +++ b/examples/COUPLE/library/many2many.cpp @@ -1,6 +1,6 @@ #include -#include -#include +#include +#include #include "many2many.h" #include "irregular.h" #include "memory.h" diff --git a/examples/COUPLE/library/many2one.cpp b/examples/COUPLE/library/many2one.cpp index 5b5467aa61d325abf2afb324e35320a49b4718ad..ba227bf4719a162559350888ec0a548f53f79b4e 100644 --- a/examples/COUPLE/library/many2one.cpp +++ b/examples/COUPLE/library/many2one.cpp @@ -1,6 +1,6 @@ -#include "mpi.h" -#include "stdio.h" -#include "stdlib.h" +#include +#include +#include #include "many2one.h" #include "memory.h" diff --git a/examples/COUPLE/library/memory.cpp b/examples/COUPLE/library/memory.cpp index 9d299a8376e27c7126d9a62d881cd3eae73584e1..98ef8bafc02cbad582fb9b97dcc703a0bcdcb84b 100644 --- a/examples/COUPLE/library/memory.cpp +++ b/examples/COUPLE/library/memory.cpp @@ -1,6 +1,6 @@ #include -#include -#include +#include +#include #include "memory.h" #include "error.h" diff --git a/examples/COUPLE/library/one2many.cpp b/examples/COUPLE/library/one2many.cpp index 5c4a1799ba8ac3ee78271bcef27ed921755d5462..aa4a03720a54729c2937abf089642317b1285f34 100644 --- a/examples/COUPLE/library/one2many.cpp +++ b/examples/COUPLE/library/one2many.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include "one2many.h" #include "memory.h" diff --git a/examples/COUPLE/library/send2one.cpp b/examples/COUPLE/library/send2one.cpp index d969b4678d3563413d8d0011197c2aed121d66bb..d35cf19a4ecee245b740ae1959ae1c2c0a3b06c8 100644 --- a/examples/COUPLE/library/send2one.cpp +++ b/examples/COUPLE/library/send2one.cpp @@ -1,6 +1,6 @@ -#include "mpi.h" -#include "stdlib.h" -#include "stdio.h" +#include +#include +#include #include "send2one.h" #include "memory.h" #include "error.h" diff --git a/examples/COUPLE/multiple/multiple.cpp b/examples/COUPLE/multiple/multiple.cpp index f2de959bac43c37cdc8472f3d6b02e221a1ec6cd..c58c3c78a97624b8eb0ff9237eec4d134549da8d 100644 --- a/examples/COUPLE/multiple/multiple.cpp +++ b/examples/COUPLE/multiple/multiple.cpp @@ -23,10 +23,10 @@ // Tdelta = incremental temperature for each of N runs // See README for compilation instructions -#include "stdio.h" -#include "stdlib.h" -#include "string.h" -#include "mpi.h" +#include +#include +#include +#include #include "lammps.h" // these are LAMMPS include files #include "input.h" diff --git a/examples/COUPLE/simple/simple.cpp b/examples/COUPLE/simple/simple.cpp index 912f4b868954e913e92010354bc6b3a296068297..a76ed8a6e9f4785ee19305279a1eb614d33c4621 100644 --- a/examples/COUPLE/simple/simple.cpp +++ b/examples/COUPLE/simple/simple.cpp @@ -19,15 +19,16 @@ // in.lammps = LAMMPS input script // See README for compilation instructions -#include "stdio.h" -#include "stdlib.h" -#include "string.h" -#include "mpi.h" - -#include "lammps.h" // these are LAMMPS include files -#include "input.h" -#include "atom.h" -#include "library.h" +#include +#include +#include +#include + +// these are LAMMPS include files +#include +#include +#include +#include using namespace LAMMPS_NS; diff --git a/examples/SPIN/README b/examples/SPIN/README new file mode 100644 index 0000000000000000000000000000000000000000..5ad252e7f2c71ee1d0232ec1f67f4ee39a91f612 --- /dev/null +++ b/examples/SPIN/README @@ -0,0 +1,20 @@ +This directory contains examples and applications of the SPIN package +===================================================================== + +- the iron, cobalt_hcp, cobalt_fcc and nickel directories provide +examples of spin-lattice calculations. + +- the bfo repository provides an example of spin dynamics calculation +performed on a fixed lattice, and applied to the multiferroic +material bismuth-oxide. + +- the read_restart directory provides examples allowing to write or +read data files, and restart magneto-mechanical simulations. + +- vizualization of the dump files can be achieved using Ovito or +VMD. See the vmd repository for help vizualizing results with VMD. + +** Note, the aim of this repository is mainly to provide users with +examples. Better values and tuning of the magnetic and mechanical +interactions can be achieved for more accurate materials +simulations. ** diff --git a/examples/SPIN/bfo/in.spin.bfo b/examples/SPIN/bfo/in.spin.bfo new file mode 100644 index 0000000000000000000000000000000000000000..de23ba87ba2b825c129b88fd55fcfcb33703eb01 --- /dev/null +++ b/examples/SPIN/bfo/in.spin.bfo @@ -0,0 +1,56 @@ +# layer sc iron atoms (in the [001] plane) in bismuth oxide + +clear +units metal +atom_style spin + +dimension 3 +boundary p p f + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice sc 3.96 +region box block 0.0 34.0 0.0 34.0 0.0 5.0 +create_box 1 box +create_atoms 1 box + +# setting mass, mag. moments, and interactions for bfo + +mass 1 1.0 + +set group all spin/random 11 2.50 + +#pair_style hybrid/overlay spin/exchange 6.0 spin/magelec 4.5 +pair_style hybrid/overlay spin/exchange 6.0 spin/magelec 4.5 spin/dmi 4.5 +pair_coeff * * spin/exchange exchange 6.0 -0.01575 0.0 1.965 +pair_coeff * * spin/magelec magelec 4.5 0.000109 1.0 1.0 1.0 +pair_coeff * * spin/dmi dmi 4.5 0.00005 1.0 1.0 1.0 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin anisotropy 0.0000033 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.1 21 +fix 3 all nve/spin lattice no + +timestep 0.0002 + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +#thermo_style custom step time v_magnorm v_emag temp etotal +thermo_style custom step time v_magnorm pe ke v_emag temp etotal +thermo 10 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_bfo.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 2000 diff --git a/examples/SPIN/bfo/log.11May18.spin.bfo.g++.1 b/examples/SPIN/bfo/log.11May18.spin.bfo.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..8e9eb82d1fe23962eb6110ea22c17319f406792e --- /dev/null +++ b/examples/SPIN/bfo/log.11May18.spin.bfo.g++.1 @@ -0,0 +1,212 @@ +LAMMPS (11 May 2018) +# layer sc iron atoms (in the [001] plane) in bismuth oxide + +clear +units metal +atom_style spin + +dimension 3 +boundary p p f + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice sc 3.96 +Lattice spacing in x,y,z = 3.96 3.96 3.96 +region box block 0.0 34.0 0.0 34.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (134.64 134.64 19.8) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 5780 atoms + Time spent = 0.0013566 secs + +# setting mass, mag. moments, and interactions for bfo + +mass 1 1.0 + +set group all spin/random 11 2.50 + 5780 settings made for spin/random + +pair_style hybrid/overlay spin/exchange 6.0 spin/magelec 4.5 +pair_coeff * * spin/exchange exchange 6.0 -0.01575 0.0 1.965 +pair_coeff * * spin/magelec magelec 4.5 0.000109 1.0 1.0 1.0 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin anisotropy 0.0000033 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.1 21 +fix 3 all nve/spin lattice no + +timestep 0.0002 + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp etotal +thermo 50 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_bfo.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 5000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.1 + ghost atom cutoff = 6.1 + binsize = 3.05, bins = 45 45 7 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard + (2) pair spin/magelec, perpetual, copy from (1) + attributes: full, newton on + pair build: copy + stencil: none + bin: none +Per MPI rank memory allocation (min/avg/max) = 7.272 | 7.272 | 7.272 Mbytes +Step Time v_magnorm v_emag Temp TotEng + 0 0 0.010071723 -0.13298298 0 -0.12034311 + 50 0.01 0.0098643821 -1.3898985 0 -1.3772103 + 100 0.02 0.0096526211 -2.6381677 0 -2.6254222 + 150 0.03 0.0094342235 -3.8784006 0 -3.8656019 + 200 0.04 0.0092074832 -5.111441 0 -5.0986001 + 250 0.05 0.0089713115 -6.3380611 0 -6.3251904 + 300 0.06 0.0087256081 -7.5587787 0 -7.5458894 + 350 0.07 0.0084715548 -8.7738491 0 -8.7609521 + 400 0.08 0.008211486 -9.9833855 0 -9.9704932 + 450 0.09 0.0079483243 -11.18751 0 -11.174637 + 500 0.1 0.0076849713 -12.386462 0 -12.37362 + 550 0.11 0.007424064 -13.580633 0 -13.567832 + 600 0.12 0.0071680699 -14.770519 0 -14.757759 + 650 0.13 0.0069192726 -15.956579 0 -15.943853 + 700 0.14 0.0066793495 -17.139049 0 -17.126343 + 750 0.15 0.0064488038 -18.317803 0 -18.305099 + 800 0.16 0.0062267571 -19.492336 0 -19.479616 + 850 0.17 0.0060112235 -20.661925 0 -20.649176 + 900 0.18 0.0057995251 -21.825931 0 -21.813141 + 950 0.19 0.0055886511 -22.98413 0 -22.971297 + 1000 0.2 0.0053757923 -24.136967 0 -24.124095 + 1050 0.21 0.0051592263 -25.285621 0 -25.272717 + 1100 0.22 0.0049391661 -26.431928 0 -26.419004 + 1150 0.23 0.0047179149 -27.578212 0 -27.565281 + 1200 0.24 0.0044991004 -28.727051 0 -28.714128 + 1250 0.25 0.0042864034 -29.880967 0 -29.868062 + 1300 0.26 0.0040824475 -31.042054 0 -31.029173 + 1350 0.27 0.0038883007 -32.21165 0 -32.198795 + 1400 0.28 0.0037036595 -33.390159 0 -33.377326 + 1450 0.29 0.0035274815 -34.577121 0 -34.564302 + 1500 0.3 0.0033587207 -35.771483 0 -35.758672 + 1550 0.31 0.0031969501 -36.971996 0 -36.95919 + 1600 0.32 0.0030429081 -38.177601 0 -38.164801 + 1650 0.33 0.0028989804 -39.387757 0 -39.374962 + 1700 0.34 0.0027692024 -40.602665 0 -40.589873 + 1750 0.35 0.0026581403 -41.823341 0 -41.81054 + 1800 0.36 0.0025686991 -43.05145 0 -43.038628 + 1850 0.37 0.002500124 -44.288966 0 -44.276111 + 1900 0.38 0.0024477804 -45.537752 0 -45.52486 + 1950 0.39 0.0024050049 -46.799255 0 -46.786336 + 2000 0.4 0.0023657031 -48.074388 0 -48.061466 + 2050 0.41 0.0023260844 -49.363587 0 -49.350695 + 2100 0.42 0.0022848329 -50.666866 0 -50.654039 + 2150 0.43 0.0022419759 -51.983781 0 -51.971055 + 2200 0.44 0.0021972506 -53.31336 0 -53.300764 + 2250 0.45 0.0021488322 -54.654121 0 -54.641676 + 2300 0.46 0.0020929483 -56.004207 0 -55.991918 + 2350 0.47 0.0020244601 -57.361586 0 -57.349442 + 2400 0.48 0.001938225 -58.72428 0 -58.712247 + 2450 0.49 0.0018309419 -60.09064 0 -60.078671 + 2500 0.5 0.0017030436 -61.459658 0 -61.447705 + 2550 0.51 0.0015599449 -62.831213 0 -62.819237 + 2600 0.52 0.0014117554 -64.206088 0 -64.194074 + 2650 0.53 0.0012709942 -65.585701 0 -65.573657 + 2700 0.54 0.0011490452 -66.971565 0 -66.959515 + 2750 0.55 0.001053009 -68.364663 0 -68.352635 + 2800 0.56 0.00098415327 -69.765002 0 -69.753017 + 2850 0.57 0.00093809306 -71.171532 0 -71.159598 + 2900 0.58 0.00090656933 -72.58234 0 -72.570459 + 2950 0.59 0.00088069677 -73.994931 0 -73.983099 + 3000 0.6 0.00085472643 -75.406507 0 -75.39472 + 3050 0.61 0.00082842902 -76.814319 0 -76.802575 + 3100 0.62 0.00080642618 -78.216074 0 -78.204373 + 3150 0.63 0.00079463972 -79.610246 0 -79.598589 + 3200 0.64 0.0007962304 -80.996103 0 -80.984494 + 3250 0.65 0.00080980411 -82.37346 0 -82.361903 + 3300 0.66 0.00083070982 -83.742356 0 -83.730855 + 3350 0.67 0.00085389185 -85.102808 0 -85.091374 + 3400 0.68 0.00087624091 -86.454619 0 -86.443259 + 3450 0.69 0.00089741986 -87.797089 0 -87.785814 + 3500 0.7 0.00091910796 -89.12875 0 -89.117567 + 3550 0.71 0.00094318459 -90.447312 0 -90.436232 + 3600 0.72 0.00096989367 -91.750008 0 -91.739046 + 3650 0.73 0.00099713096 -93.034224 0 -93.023402 + 3700 0.74 0.0010212995 -94.298186 0 -94.287529 + 3750 0.75 0.0010391164 -95.5414 0 -95.530926 + 3800 0.76 0.0010491462 -96.764626 0 -96.754338 + 3850 0.77 0.0010521238 -97.969346 0 -97.95923 + 3900 0.78 0.0010500324 -99.156875 0 -99.146899 + 3950 0.79 0.0010447043 -100.32743 0 -100.31756 + 4000 0.8 0.0010368986 -101.4796 0 -101.46978 + 4050 0.81 0.0010263632 -102.61044 0 -102.60064 + 4100 0.82 0.0010126933 -103.71619 0 -103.70639 + 4150 0.83 0.00099631895 -104.79338 0 -104.78358 + 4200 0.84 0.0009789075 -105.8398 0 -105.82998 + 4250 0.85 0.00096287608 -106.85496 0 -106.84515 + 4300 0.86 0.00095034023 -107.84011 0 -107.83029 + 4350 0.87 0.00094219078 -108.7976 0 -108.78778 + 4400 0.88 0.00093779428 -109.73016 0 -109.72031 + 4450 0.89 0.0009354459 -110.63996 0 -110.63008 + 4500 0.9 0.00093342614 -111.52805 0 -111.51812 + 4550 0.91 0.0009311077 -112.39417 0 -112.38416 + 4600 0.92 0.00092926689 -113.23706 0 -113.22697 + 4650 0.93 0.00092921566 -114.05512 0 -114.04495 + 4700 0.94 0.00093142598 -114.84701 0 -114.83675 + 4750 0.95 0.00093479851 -115.61197 0 -115.60164 + 4800 0.96 0.0009369799 -116.3499 0 -116.33951 + 4850 0.97 0.00093516768 -117.06128 0 -117.05084 + 4900 0.98 0.00092684411 -117.74695 0 -117.73645 + 4950 0.99 0.00091046222 -118.40798 0 -118.39742 + 5000 1 0.00088619957 -119.04554 0 -119.03492 +Loop time of 128.304 on 1 procs for 5000 steps with 5780 atoms + +Performance: 0.673 ns/day, 35.640 hours/ns, 38.970 timesteps/s +99.6% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 24.227 | 24.227 | 24.227 | 0.0 | 18.88 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.081048 | 0.081048 | 0.081048 | 0.0 | 0.06 +Output | 39.796 | 39.796 | 39.796 | 0.0 | 31.02 +Modify | 64.112 | 64.112 | 64.112 | 0.0 | 49.97 +Other | | 0.08788 | | | 0.07 + +Nlocal: 5780 ave 5780 max 5780 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 1065 ave 1065 max 1065 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 92480 ave 92480 max 92480 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 92480 +Ave neighs/atom = 16 +Neighbor list builds = 0 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:02:08 diff --git a/examples/SPIN/bfo/log.11May18.spin.bfo.g++.4 b/examples/SPIN/bfo/log.11May18.spin.bfo.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..c0f96b81954d032ece3935718bf95099e22c643e --- /dev/null +++ b/examples/SPIN/bfo/log.11May18.spin.bfo.g++.4 @@ -0,0 +1,212 @@ +LAMMPS (11 May 2018) +# layer sc iron atoms (in the [001] plane) in bismuth oxide + +clear +units metal +atom_style spin + +dimension 3 +boundary p p f + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice sc 3.96 +Lattice spacing in x,y,z = 3.96 3.96 3.96 +region box block 0.0 34.0 0.0 34.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (134.64 134.64 19.8) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 5780 atoms + Time spent = 0.000355959 secs + +# setting mass, mag. moments, and interactions for bfo + +mass 1 1.0 + +set group all spin/random 11 2.50 + 5780 settings made for spin/random + +pair_style hybrid/overlay spin/exchange 6.0 spin/magelec 4.5 +pair_coeff * * spin/exchange exchange 6.0 -0.01575 0.0 1.965 +pair_coeff * * spin/magelec magelec 4.5 0.000109 1.0 1.0 1.0 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin anisotropy 0.0000033 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.1 21 +fix 3 all nve/spin lattice no + +timestep 0.0002 + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp etotal +thermo 50 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_bfo.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 5000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.1 + ghost atom cutoff = 6.1 + binsize = 3.05, bins = 45 45 7 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard + (2) pair spin/magelec, perpetual, copy from (1) + attributes: full, newton on + pair build: copy + stencil: none + bin: none +Per MPI rank memory allocation (min/avg/max) = 6.862 | 6.862 | 6.862 Mbytes +Step Time v_magnorm v_emag Temp TotEng + 0 0 0.010071723 -0.13298298 0 -0.12034311 + 50 0.01 0.0098643821 -1.3898985 0 -1.3772103 + 100 0.02 0.009652621 -2.6381677 0 -2.6254222 + 150 0.03 0.0094342234 -3.8784007 0 -3.8656019 + 200 0.04 0.009207483 -5.1114411 0 -5.0986001 + 250 0.05 0.0089713114 -6.3380611 0 -6.3251904 + 300 0.06 0.0087256079 -7.5587787 0 -7.5458894 + 350 0.07 0.0084715546 -8.7738491 0 -8.7609521 + 400 0.08 0.0082114858 -9.9833855 0 -9.9704932 + 450 0.09 0.0079483242 -11.18751 0 -11.174637 + 500 0.1 0.0076849711 -12.386462 0 -12.37362 + 550 0.11 0.0074240638 -13.580633 0 -13.567832 + 600 0.12 0.0071680697 -14.770519 0 -14.757759 + 650 0.13 0.0069192724 -15.956579 0 -15.943853 + 700 0.14 0.0066793493 -17.139049 0 -17.126343 + 750 0.15 0.0064488035 -18.317803 0 -18.305099 + 800 0.16 0.0062267569 -19.492336 0 -19.479616 + 850 0.17 0.0060112233 -20.661925 0 -20.649176 + 900 0.18 0.005799525 -21.825931 0 -21.813141 + 950 0.19 0.0055886511 -22.98413 0 -22.971297 + 1000 0.2 0.0053757923 -24.136967 0 -24.124095 + 1050 0.21 0.0051592265 -25.285621 0 -25.272717 + 1100 0.22 0.0049391664 -26.431928 0 -26.419004 + 1150 0.23 0.0047179153 -27.578212 0 -27.565281 + 1200 0.24 0.0044991009 -28.727051 0 -28.714128 + 1250 0.25 0.0042864039 -29.880967 0 -29.868062 + 1300 0.26 0.004082448 -31.042054 0 -31.029174 + 1350 0.27 0.0038883012 -32.21165 0 -32.198795 + 1400 0.28 0.0037036599 -33.390159 0 -33.377326 + 1450 0.29 0.0035274817 -34.577121 0 -34.564302 + 1500 0.3 0.0033587208 -35.771483 0 -35.758672 + 1550 0.31 0.0031969501 -36.971996 0 -36.95919 + 1600 0.32 0.0030429079 -38.177601 0 -38.164801 + 1650 0.33 0.0028989801 -39.387757 0 -39.374962 + 1700 0.34 0.0027692022 -40.602666 0 -40.589873 + 1750 0.35 0.0026581401 -41.823341 0 -41.81054 + 1800 0.36 0.002568699 -43.05145 0 -43.038628 + 1850 0.37 0.0025001242 -44.288966 0 -44.276111 + 1900 0.38 0.0024477808 -45.537752 0 -45.52486 + 1950 0.39 0.0024050056 -46.799255 0 -46.786336 + 2000 0.4 0.002365704 -48.074388 0 -48.061466 + 2050 0.41 0.0023260854 -49.363587 0 -49.350695 + 2100 0.42 0.002284834 -50.666866 0 -50.654039 + 2150 0.43 0.0022419771 -51.983781 0 -51.971055 + 2200 0.44 0.0021972518 -53.31336 0 -53.300764 + 2250 0.45 0.0021488333 -54.654121 0 -54.641676 + 2300 0.46 0.0020929494 -56.004207 0 -55.991918 + 2350 0.47 0.0020244612 -57.361586 0 -57.349441 + 2400 0.48 0.0019382262 -58.72428 0 -58.712247 + 2450 0.49 0.001830943 -60.090639 0 -60.078671 + 2500 0.5 0.0017030446 -61.459658 0 -61.447704 + 2550 0.51 0.0015599459 -62.831213 0 -62.819237 + 2600 0.52 0.0014117562 -64.206088 0 -64.194074 + 2650 0.53 0.001270995 -65.5857 0 -65.573657 + 2700 0.54 0.001149046 -66.971565 0 -66.959515 + 2750 0.55 0.0010530098 -68.364663 0 -68.352635 + 2800 0.56 0.00098415418 -69.765002 0 -69.753017 + 2850 0.57 0.00093809402 -71.171532 0 -71.159598 + 2900 0.58 0.00090657031 -72.58234 0 -72.570459 + 2950 0.59 0.00088069773 -73.994931 0 -73.983099 + 3000 0.6 0.00085472731 -75.406507 0 -75.39472 + 3050 0.61 0.00082842975 -76.814319 0 -76.802575 + 3100 0.62 0.00080642669 -78.216074 0 -78.204373 + 3150 0.63 0.00079464 -79.610246 0 -79.59859 + 3200 0.64 0.00079623049 -80.996103 0 -80.984494 + 3250 0.65 0.00080980416 -82.373461 0 -82.361903 + 3300 0.66 0.00083070997 -83.742356 0 -83.730856 + 3350 0.67 0.00085389223 -85.102809 0 -85.091374 + 3400 0.68 0.00087624159 -86.454619 0 -86.44326 + 3450 0.69 0.00089742086 -87.79709 0 -87.785815 + 3500 0.7 0.00091910931 -89.12875 0 -89.117568 + 3550 0.71 0.00094318635 -90.447312 0 -90.436233 + 3600 0.72 0.00096989594 -91.750008 0 -91.739047 + 3650 0.73 0.00099713386 -93.034224 0 -93.023403 + 3700 0.74 0.0010213031 -94.298186 0 -94.287529 + 3750 0.75 0.0010391209 -95.541401 0 -95.530926 + 3800 0.76 0.0010491514 -96.764626 0 -96.754339 + 3850 0.77 0.0010521296 -97.969347 0 -97.959231 + 3900 0.78 0.0010500386 -99.156876 0 -99.146899 + 3950 0.79 0.0010447106 -100.32743 0 -100.31756 + 4000 0.8 0.0010369046 -101.4796 0 -101.46978 + 4050 0.81 0.0010263688 -102.61044 0 -102.60064 + 4100 0.82 0.0010126985 -103.71619 0 -103.70639 + 4150 0.83 0.00099632366 -104.79338 0 -104.78358 + 4200 0.84 0.00097891183 -105.8398 0 -105.82998 + 4250 0.85 0.00096288003 -106.85496 0 -106.84515 + 4300 0.86 0.00095034371 -107.84011 0 -107.83029 + 4350 0.87 0.00094219371 -108.7976 0 -108.78778 + 4400 0.88 0.00093779663 -109.73016 0 -109.72031 + 4450 0.89 0.00093544766 -110.63996 0 -110.63008 + 4500 0.9 0.00093342739 -111.52805 0 -111.51812 + 4550 0.91 0.00093110855 -112.39417 0 -112.38416 + 4600 0.92 0.00092926746 -113.23706 0 -113.22697 + 4650 0.93 0.00092921608 -114.05512 0 -114.04495 + 4700 0.94 0.0009314263 -114.84701 0 -114.83675 + 4750 0.95 0.0009347987 -115.61197 0 -115.60164 + 4800 0.96 0.00093697985 -116.3499 0 -116.33951 + 4850 0.97 0.00093516726 -117.06128 0 -117.05084 + 4900 0.98 0.00092684316 -117.74695 0 -117.73645 + 4950 0.99 0.00091046061 -118.40798 0 -118.39742 + 5000 1 0.00088619727 -119.04554 0 -119.03492 +Loop time of 37.142 on 4 procs for 5000 steps with 5780 atoms + +Performance: 2.326 ns/day, 10.317 hours/ns, 134.619 timesteps/s +98.7% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 6.2804 | 6.3487 | 6.4569 | 2.7 | 17.09 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.15385 | 0.27957 | 0.36215 | 14.6 | 0.75 +Output | 10.573 | 10.784 | 10.994 | 4.8 | 29.03 +Modify | 19.48 | 19.707 | 19.925 | 3.7 | 53.06 +Other | | 0.02255 | | | 0.06 + +Nlocal: 1445 ave 1445 max 1445 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 555 ave 555 max 555 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +FullNghs: 23120 ave 23120 max 23120 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 92480 +Ave neighs/atom = 16 +Neighbor list builds = 0 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:37 diff --git a/examples/SPIN/cobalt_fcc/Co_PurjaPun_2012.eam.alloy b/examples/SPIN/cobalt_fcc/Co_PurjaPun_2012.eam.alloy new file mode 100644 index 0000000000000000000000000000000000000000..3af058baf721c59a57e61971e1211bee9a8e9305 --- /dev/null +++ b/examples/SPIN/cobalt_fcc/Co_PurjaPun_2012.eam.alloy @@ -0,0 +1,6006 @@ +Cobalt EAM potential: G. P. Purja Pun and Y. Mishin, Phys. Rev. B xx, 004100 (2012) (in press) +Data below r = 1.5 A is extrapolated. F(Rho) data not extrapolated. +Created on Wed Sep 26 17:29:54 2012 +1 Co +10000 4.788742913000000e-04 10000 6.499539000000001e-04 6.499539000000000e+00 +27 5.893320000000000e+01 2.507000000000000e+00 hcp + -1.680303080000000e-02 -1.879913964471138e-02 -2.091739081044659e-02 -2.303564197615629e-02 -2.503175082079116e-02 + -2.681996612041136e-02 -2.846010103933253e-02 -3.003179469400266e-02 -3.154842562124295e-02 -3.300931506782415e-02 + -3.442381570000001e-02 -3.580233366714632e-02 -3.714945763166951e-02 -3.846832763111274e-02 -3.976210669053554e-02 + -4.103374908125148e-02 -4.228535107207521e-02 -4.351872320172212e-02 -4.473539109100971e-02 -4.593674531110434e-02 + -4.712392115246503e-02 -4.829795108118731e-02 -4.945971154662068e-02 -5.061001094949964e-02 -5.174954151284258e-02 + -5.287894548568519e-02 -5.399878139884967e-02 -5.510957102742049e-02 -5.621177284174523e-02 -5.730581735016625e-02 + -5.839208651773948e-02 -5.947094067448531e-02 -6.054270215356945e-02 -6.160767623453070e-02 -6.266613797925552e-02 + -6.371834880435967e-02 -6.476454576302854e-02 -6.580495483863194e-02 -6.683978209870683e-02 -6.786922452279202e-02 + -6.889346265426707e-02 -6.991266949659354e-02 -7.092700432972064e-02 -7.193662011890395e-02 -7.294165829413661e-02 + -7.394225494811188e-02 -7.493853635958479e-02 -7.593062425993033e-02 -7.691863200494162e-02 -7.790266905197404e-02 + -7.888283764021425e-02 -7.985923664258643e-02 -8.083195868513401e-02 -8.180109346997461e-02 -8.276672525040257e-02 + -8.372893572415932e-02 -8.468780181559693e-02 -8.564339820511864e-02 -8.659579537072190e-02 -8.754506181558984e-02 + -8.849126234605453e-02 -8.943446001410092e-02 -9.037471455117625e-02 -9.131208412841478e-02 -9.224662399623559e-02 + -9.317838801321032e-02 -9.410742739123597e-02 -9.503379209498646e-02 -9.595752974691800e-02 -9.687868684755546e-02 + -9.779730775191570e-02 -9.871343580120046e-02 -9.962711242685958e-02 -1.005383781439554e-01 -1.014472717117523e-01 + -1.023538310651938e-01 -1.032580925977369e-01 -1.041600919387366e-01 -1.050598632026273e-01 -1.059574398208095e-01 + -1.068528540074704e-01 -1.077461373458066e-01 -1.086373201122683e-01 -1.095264320028559e-01 -1.104135016985198e-01 + -1.112985573626335e-01 -1.121816261033156e-01 -1.130627345294291e-01 -1.139419083080692e-01 -1.148191726662944e-01 + -1.156945520127823e-01 -1.165680703406650e-01 -1.174397507992727e-01 -1.183096161572101e-01 -1.191776885039839e-01 + -1.200439895800373e-01 -1.209085404086571e-01 -1.217713616730546e-01 -1.226324734132936e-01 -1.234918953788508e-01 + -1.243496468000000e-01 -1.252057466264230e-01 -1.260602132046348e-01 -1.269130646065986e-01 -1.277643184092350e-01 + -1.286139919512837e-01 -1.294621021138015e-01 -1.303086655551642e-01 -1.311536985007052e-01 -1.319972169590798e-01 + -1.328392365052704e-01 -1.336797725161469e-01 -1.345188400098036e-01 -1.353564538215464e-01 -1.361926284143060e-01 + -1.370273780803152e-01 -1.378607168013910e-01 -1.386926583917836e-01 -1.395232163058920e-01 -1.403524038515728e-01 + -1.411802341103638e-01 -1.420067200256853e-01 -1.428318742148069e-01 -1.436557091565456e-01 -1.444782371020595e-01 + -1.452994701862315e-01 -1.461194203065015e-01 -1.469380992388567e-01 -1.477555185109162e-01 -1.485716895480879e-01 + -1.493866236153044e-01 -1.502003318703277e-01 -1.510128252027127e-01 -1.518241144121522e-01 -1.526342102070998e-01 + -1.534431232126203e-01 -1.542508638114616e-01 -1.550574422930448e-01 -1.558628688157988e-01 -1.566671534698807e-01 + -1.574703062033520e-01 -1.582723368973844e-01 -1.590732553076882e-01 -1.598730711132973e-01 -1.606717938120008e-01 + -1.614694328459875e-01 -1.622659976162905e-01 -1.630614974730487e-01 -1.638559416039789e-01 -1.646493391351259e-01 + -1.654416991082678e-01 -1.662330305252601e-01 -1.670233423125346e-01 -1.678126433512354e-01 -1.686009424167802e-01 + -1.693882482431861e-01 -1.701745695045948e-01 -1.709599148401449e-01 -1.717442928088396e-01 -1.725277119385885e-01 + -1.733101807130639e-01 -1.740917075837066e-01 -1.748723009172683e-01 -1.756519690655456e-01 -1.764307204052008e-01 + -1.772085632840185e-01 -1.779855059094047e-01 -1.787615564692287e-01 -1.795367232135896e-01 -1.803110143830451e-01 + -1.810844381177561e-01 -1.818570025406103e-01 -1.826287158057983e-01 -1.833995860626770e-01 -1.841696214099643e-01 + -1.849388299454831e-01 -1.857072198141128e-01 -1.864747991526175e-01 -1.872415760182443e-01 -1.880075584641173e-01 + -1.887727546063884e-01 -1.895371725773110e-01 -1.903008205105196e-01 -1.910637065418589e-01 -1.918258388146347e-01 + -1.925872254807121e-01 -1.933478747187342e-01 -1.941077947209150e-01 -1.948669937069724e-01 -1.956254799127480e-01 + -1.963832616110719e-01 -1.971403470967068e-01 -1.978967447151567e-01 -1.986524628291068e-01 -1.994075098192274e-01 + -2.001618941005484e-01 -2.009156242075518e-01 -2.016687086990372e-01 -2.024211561116226e-01 -2.031729750127928e-01 + -2.039241741156804e-01 -2.046747621691974e-01 -2.054247479197256e-01 -2.061741401521784e-01 -2.069229478081280e-01 + -2.076711798806499e-01 -2.084188454121736e-01 -2.091659534755806e-01 -2.099125132162076e-01 -2.106585338443872e-01 + -2.114040247579823e-01 -2.121489953974893e-01 -2.128934551864067e-01 -2.136374136027109e-01 -2.143808803592873e-01 + -2.151238652468154e-01 -2.158663781322411e-01 -2.166084289346303e-01 -2.173500277052638e-01 -2.180911845646947e-01 + -2.188319097783510e-01 -2.195722136949507e-01 -2.203121068514981e-01 -2.210515998518519e-01 -2.217907033790026e-01 + -2.225294282016381e-01 -2.232677853521022e-01 -2.240057859531163e-01 -2.247434412252567e-01 -2.254807624804862e-01 + -2.262177612984613e-01 -2.269544493586047e-01 -2.276908384717110e-01 -2.284269405581227e-01 -2.291627678450005e-01 + -2.298983326532392e-01 -2.306336473718499e-01 -2.313687245044682e-01 -2.321035769451089e-01 -2.328382177230701e-01 + -2.335726600184018e-01 -2.343069171312917e-01 -2.350410026917230e-01 -2.357749304696442e-01 -2.365087144650665e-01 + -2.372423688046511e-01 -2.379759078915950e-01 -2.387093462817347e-01 -2.394426988649284e-01 -2.401759806938325e-01 + -2.409092071382775e-01 -2.416423937275558e-01 -2.423755563116356e-01 -2.431087109081851e-01 -2.438418738849959e-01 + -2.445750618045980e-01 -2.453082916583512e-01 -2.460415806101058e-01 -2.467749460848467e-01 -2.475084057095742e-01 + -2.482419776582159e-01 -2.489756803241430e-01 -2.497095324315720e-01 -2.504435529132133e-01 -2.511777612049070e-01 + -2.519121769824342e-01 -2.526468203782122e-01 -2.533817117688987e-01 -2.541168720514789e-01 -2.548523223627430e-01 + -2.555880842783758e-01 -2.563241796571988e-01 -2.570606310516858e-01 -2.577974612919421e-01 -2.585346936249472e-01 + -2.592723515924181e-01 -2.600104594981498e-01 -2.607490419576605e-01 -2.614881240712832e-01 -2.622277312727207e-01 + -2.629678898443362e-01 -2.637086264051527e-01 -2.644499680721714e-01 -2.651919423187013e-01 -2.659345775453039e-01 + -2.666779025531186e-01 -2.674219468183432e-01 -2.681667401972407e-01 -2.689123133912765e-01 -2.696586975492495e-01 + -2.704059247640904e-01 -2.711540275538941e-01 -2.719030391932789e-01 -2.726529934197978e-01 -2.734039250662187e-01 + -2.741558694758598e-01 -2.749088629390239e-01 -2.756629422674556e-01 -2.764181454116789e-01 -2.771745108563868e-01 + -2.779320780841674e-01 -2.786908871694924e-01 -2.794509795564719e-01 -2.802123972949423e-01 -2.809751834880072e-01 + -2.817393818716988e-01 -2.825050376604960e-01 -2.832721967688652e-01 -2.840409064327807e-01 -2.848112145951165e-01 + -2.855831707048412e-01 -2.863568249759762e-01 -2.871322291766564e-01 -2.879094358829076e-01 -2.886884993482028e-01 + -2.894694746623641e-01 -2.902524185831628e-01 -2.910373887617654e-01 -2.918244447549689e-01 -2.926136470970381e-01 + -2.934050583264800e-01 -2.941987419693519e-01 -2.949947634976693e-01 -2.957931894604184e-01 -2.965940887685082e-01 + -2.973975314584912e-01 -2.982035897075678e-01 -2.990123368838905e-01 -2.998238489787670e-01 -3.006382032814213e-01 + -3.014554796495834e-01 -3.022757592753754e-01 -3.030991261199829e-01 -3.039256655881672e-01 -3.047554660899296e-01 + -3.055886175640754e-01 -3.064252130593845e-01 -3.072653472379187e-01 -3.081091181048918e-01 -3.089566254021406e-01 + -3.098079724748395e-01 -3.106632645082006e-01 -3.115226104442510e-01 -3.123861211846884e-01 -3.132539117130802e-01 + -3.141260990998875e-01 -3.150028046812773e-01 -3.158841520361693e-01 -3.167702694487885e-01 -3.176612875689104e-01 + -3.185573418032087e-01 -3.194585700942650e-01 -3.203651157713922e-01 -3.212771249044592e-01 -3.221947491388281e-01 + -3.231181430183639e-01 -3.240474671054514e-01 -3.249828850672117e-01 -3.259245669711927e-01 -3.268726862299913e-01 + -3.278274232359761e-01 -3.287889619469540e-01 -3.297574936027157e-01 -3.307332132733838e-01 -3.317163240684192e-01 + -3.327070332351553e-01 -3.337055565330767e-01 -3.347121141277095e-01 -3.357269352965953e-01 -3.367502540927247e-01 + -3.377823145588749e-01 -3.388233658450175e-01 -3.398736675401181e-01 -3.409334847493447e-01 -3.420030942036733e-01 + -3.430827786115977e-01 -3.441728329658748e-01 -3.452735586625544e-01 -3.463852704265985e-01 -3.475082899277179e-01 + -3.486429532857090e-01 -3.497896041380748e-01 -3.509486017430585e-01 -3.521203134619261e-01 -3.533051234472958e-01 + -3.545034246605078e-01 -3.557156285064298e-01 -3.569421559513399e-01 -3.581834477636310e-01 -3.594399550688090e-01 + -3.607121506187135e-01 -3.620005184199024e-01 -3.633055658714727e-01 -3.646278119965309e-01 -3.659677989216845e-01 + -3.673260803339768e-01 -3.687032330586966e-01 -3.700998457090232e-01 -3.715165309114429e-01 -3.729539131544640e-01 + -3.744126403613781e-01 -3.758933720658462e-01 -3.773967908082255e-01 -3.789235902651524e-01 -3.804744856516886e-01 + -3.820502023195389e-01 -3.836514846285581e-01 -3.852790856353807e-01 -3.869337741756033e-01 -3.886163256972291e-01 + -3.903275263189269e-01 -3.920681658458204e-01 -3.938390381581898e-01 -3.956409370872805e-01 -3.974746521930466e-01 + -3.993409682701225e-01 -4.012406553231547e-01 -4.031744727439548e-01 -4.051431522629808e-01 -4.071474082130475e-01 + -4.091879129977703e-01 -4.112653138348391e-01 -4.133801991274390e-01 -4.155331235094092e-01 -4.177245653517079e-01 + -4.199549603385881e-01 -4.222246496703586e-01 -4.245339230260172e-01 -4.268829584832519e-01 -4.292718744431503e-01 + -4.317006622016948e-01 -4.341692468068394e-01 -4.366774154195978e-01 -4.392248845800756e-01 -4.418112262316757e-01 + -4.444359401252420e-01 -4.470983818380713e-01 -4.497978365893122e-01 -4.525334523390530e-01 -4.553043120100788e-01 + -4.581093756350076e-01 -4.609475466791835e-01 -4.638176252290113e-01 -4.667183660407072e-01 -4.696484459287199e-01 + -4.726065094563343e-01 -4.755911501239359e-01 -4.786009429283761e-01 -4.816344399152602e-01 -4.846901882843556e-01 + -4.877667388033212e-01 -4.908626497957108e-01 -4.939765062407663e-01 -4.971069114027755e-01 -5.002525150305011e-01 + -5.034119937007041e-01 -5.065840848176727e-01 -5.097675587133593e-01 -5.129612566028576e-01 -5.161640565945169e-01 + -5.193749134865747e-01 -5.225928209640586e-01 -5.258168515692775e-01 -5.290461169135583e-01 -5.322798060270272e-01 + -5.355171460831645e-01 -5.387574394100244e-01 -5.420000245805213e-01 -5.452443099924439e-01 -5.484897376520451e-01 + -5.517358141745681e-01 -5.549820769247875e-01 -5.582281216566209e-01 -5.614735718423751e-01 -5.647181034387753e-01 + -5.679614169890416e-01 -5.712032588979591e-01 -5.744433972991336e-01 -5.776816413798681e-01 -5.809178193507762e-01 + -5.841517944620215e-01 -5.873834463985003e-01 -5.906126855444893e-01 -5.938394364748391e-01 -5.970636498273136e-01 + -6.002852884426439e-01 -6.035043379105128e-01 -6.067207941645156e-01 -6.099346717649501e-01 -6.131459940881434e-01 + -6.163548011478311e-01 -6.195611404873568e-01 -6.227650731310865e-01 -6.259666663617727e-01 -6.291659990146931e-01 + -6.323631552654742e-01 -6.355582290986170e-01 -6.387513188871106e-01 -6.419425307490256e-01 -6.451319745539882e-01 + -6.483197674327603e-01 -6.515060293214946e-01 -6.546908841167685e-01 -6.578744572836812e-01 -6.610568766009968e-01 + -6.642382709221243e-01 -6.674187710853904e-01 -6.705985088370179e-01 -6.737776175698923e-01 -6.769562312911304e-01 + -6.801344848181089e-01 -6.833125134999645e-01 -6.864904540026142e-01 -6.896684434132225e-01 -6.928466191871651e-01 + -6.960251190039876e-01 -6.992040810717012e-01 -7.023836437724149e-01 -7.055639456561626e-01 -7.087451254024176e-01 + -7.119273220404884e-01 -7.151106745784721e-01 -7.182953215897911e-01 -7.214814016245582e-01 -7.246690535743215e-01 + -7.278584163200112e-01 -7.310496283586513e-01 -7.342428280442573e-01 -7.374381535427195e-01 -7.406357429444993e-01 + -7.438357342264661e-01 -7.470382651689156e-01 -7.502434728794412e-01 -7.534514943101106e-01 -7.566624664635970e-01 + -7.598765262236051e-01 -7.630938099473661e-01 -7.663144537782537e-01 -7.695385935306881e-01 -7.727663648349232e-01 + -7.759979029135046e-01 -7.792333428394971e-01 -7.824728194957561e-01 -7.857164675195603e-01 -7.889644207560909e-01 + -7.922168128628783e-01 -7.954737775389469e-01 -7.987354483417761e-01 -8.020019582211745e-01 -8.052734399002169e-01 + -8.085500258027153e-01 -8.118318481538471e-01 -8.151190386835121e-01 -8.184117289678831e-01 -8.217100504635063e-01 + -8.250141343769457e-01 -8.283241110344656e-01 -8.316401105683494e-01 -8.349622632152548e-01 -8.382906990624389e-01 + -8.416255474951805e-01 -8.449669376504778e-01 -8.483149983741850e-01 -8.516698583310095e-01 -8.550316457522134e-01 + -8.584004886419279e-01 -8.617765145292081e-01 -8.651598508088844e-01 -8.685506248139727e-01 -8.719489622521989e-01 + -8.753549823919468e-01 -8.787687997490927e-01 -8.821905162688262e-01 -8.856202278084699e-01 -8.890580184445617e-01 + -8.925039663319011e-01 -8.959581377191167e-01 -8.994205926453692e-01 -9.028913782181163e-01 -9.063705352609543e-01 + -9.098580923937473e-01 -9.133540718558304e-01 -9.168584825681617e-01 -9.203713268261465e-01 -9.238925937413506e-01 + -9.274222656928153e-01 -9.309603113133150e-01 -9.345066924037853e-01 -9.380613571840678e-01 -9.416242468397124e-01 + -9.451952880001965e-01 -9.487744002152808e-01 -9.523614892719469e-01 -9.559564538973973e-01 -9.595591783425093e-01 + -9.631695396882074e-01 -9.667874008119273e-01 -9.704126174878044e-01 -9.740450312802591e-01 -9.776844767743714e-01 + -9.813307748475731e-01 -9.849837394560669e-01 -9.886431705787867e-01 -9.923088615430331e-01 -9.959805930468456e-01 + -9.996581394281877e-01 -1.003341262213973e+00 -1.007029716826452e+00 -1.010723247080268e+00 -1.014421591236032e+00 + -1.018124476945841e+00 -1.021831626529500e+00 -1.025542751586175e+00 -1.029257558992056e+00 -1.032975747452084e+00 + -1.036697011770175e+00 -1.040421039317395e+00 -1.044147513860548e+00 -1.047876112182243e+00 -1.051606508161453e+00 + -1.055338371046766e+00 -1.059071368055605e+00 -1.062805162911107e+00 -1.066539417837194e+00 -1.070273792555226e+00 + -1.074007946119602e+00 -1.077741537419413e+00 -1.081474225260823e+00 -1.085205668283577e+00 -1.088935525821090e+00 + -1.092663460147868e+00 -1.096389134999202e+00 -1.100112217012435e+00 -1.103832374788097e+00 -1.107549281877421e+00 + -1.111262614364874e+00 -1.114972053517157e+00 -1.118677283811066e+00 -1.122377997381517e+00 -1.126073890115035e+00 + -1.129764665246453e+00 -1.133450029987863e+00 -1.137129700112097e+00 -1.140803395884355e+00 -1.144470846978575e+00 + -1.148131787996958e+00 -1.151785963846005e+00 -1.155433124321719e+00 -1.159073028473816e+00 -1.162705440550504e+00 + -1.166330136340245e+00 -1.169946897198408e+00 -1.173555515207745e+00 -1.177155787675114e+00 -1.180747522076412e+00 + -1.184330531453910e+00 -1.187904640946331e+00 -1.191469681045491e+00 -1.195025491559137e+00 -1.198571917630371e+00 + -1.202108816427798e+00 -1.205636050425976e+00 -1.209153491297797e+00 -1.212661015717853e+00 -1.216158511169199e+00 + -1.219645870103956e+00 -1.223122994042052e+00 -1.226589789250444e+00 -1.230046171916402e+00 -1.233492062734542e+00 + -1.236927390508550e+00 -1.240352088211073e+00 -1.243766097381527e+00 -1.247169363751694e+00 -1.250561841256042e+00 + -1.253943487695246e+00 -1.257314268132119e+00 -1.260674151007197e+00 -1.264023111009775e+00 -1.267361126327042e+00 + -1.270688182889021e+00 -1.274004269717549e+00 -1.277309380458899e+00 -1.280603511471348e+00 -1.283886665336751e+00 + -1.287158847447705e+00 -1.290420068216200e+00 -1.293670340397085e+00 -1.296909681097245e+00 -1.300138109654688e+00 + -1.303355649979877e+00 -1.306562327924205e+00 -1.309758172530325e+00 -1.312943214678930e+00 -1.316117489411603e+00 + -1.319281033477409e+00 -1.322433886294459e+00 -1.325576088655014e+00 -1.328707684178879e+00 -1.331828717822939e+00 + -1.334939237064845e+00 -1.338039290534788e+00 -1.341128928952336e+00 -1.344208204044806e+00 -1.347277169481128e+00 + -1.350335879836220e+00 -1.353384391367341e+00 -1.356422761075585e+00 -1.359451047255056e+00 -1.362469308854003e+00 + -1.365477606144248e+00 -1.368475999956682e+00 -1.371464552034891e+00 -1.374443324607048e+00 -1.377412380926959e+00 + -1.380371784452904e+00 -1.383321598435415e+00 -1.386261886043311e+00 -1.389192710326296e+00 -1.392114134331963e+00 + -1.395026221218571e+00 -1.397929034013782e+00 -1.400822635112213e+00 -1.403707086730599e+00 -1.406582451007194e+00 + -1.409448790047375e+00 -1.412306165903488e+00 -1.415154640386279e+00 -1.417994274393129e+00 -1.420825128672226e+00 + -1.423647264288326e+00 -1.426460742270041e+00 -1.429265623184807e+00 -1.432061967292326e+00 -1.434849834082543e+00 + -1.437629282863016e+00 -1.440400372981510e+00 -1.443163163644870e+00 -1.445917713456040e+00 -1.448664080745027e+00 + -1.451402323353998e+00 -1.454132498983212e+00 -1.456854665253158e+00 -1.459568879518891e+00 -1.462275198153495e+00 + -1.464973677286479e+00 -1.467664373054985e+00 -1.470347341460922e+00 -1.473022637957602e+00 -1.475690317602213e+00 + -1.478350434416031e+00 -1.481003042251009e+00 -1.483648195317718e+00 -1.486285947650543e+00 -1.488916352220507e+00 + -1.491539461636770e+00 -1.494155328124374e+00 -1.496764003712290e+00 -1.499365540029296e+00 -1.501959988475343e+00 + -1.504547399935251e+00 -1.507127824972320e+00 -1.509701313378898e+00 -1.512267914702716e+00 -1.514827678283996e+00 + -1.517380653263305e+00 -1.519926888190102e+00 -1.522466431291609e+00 -1.524999330097196e+00 -1.527525631932397e+00 + -1.530045384005255e+00 -1.532558633226744e+00 -1.535065425437065e+00 -1.537565806237489e+00 -1.540059821344337e+00 + -1.542547516227056e+00 -1.545028935252552e+00 -1.547504122520188e+00 -1.549973122161691e+00 -1.552435978060152e+00 + -1.554892733071735e+00 -1.557343429814709e+00 -1.559788110982664e+00 -1.562226819032855e+00 -1.564659595401864e+00 + -1.567086481207361e+00 -1.569507517312065e+00 -1.571922744465970e+00 -1.574332203223133e+00 -1.576735933784567e+00 + -1.579133975135047e+00 -1.581526366095511e+00 -1.583913146047792e+00 -1.586294354132112e+00 -1.588670027961349e+00 + -1.591040204840321e+00 -1.593404922368944e+00 -1.595764217997401e+00 -1.598118128281829e+00 -1.600466689560657e+00 + -1.602809938195509e+00 -1.605147910317183e+00 -1.607480641109968e+00 -1.609808165462235e+00 -1.612130518025190e+00 + -1.614447733364541e+00 -1.616759845941160e+00 -1.619066889913862e+00 -1.621368898338053e+00 -1.623665904067572e+00 + -1.625957940253400e+00 -1.628245039905108e+00 -1.630527235169479e+00 -1.632804557955816e+00 -1.635077040086276e+00 + -1.637344713164072e+00 -1.639607608003776e+00 -1.641865755216986e+00 -1.644119185392045e+00 -1.646367929030376e+00 + -1.648612016308968e+00 -1.650851477080719e+00 -1.653086340226579e+00 -1.655316634503563e+00 -1.657542389144867e+00 + -1.659763633269537e+00 -1.661980395063818e+00 -1.664192702419508e+00 -1.666400582983419e+00 -1.668604064251645e+00 + -1.670803173362428e+00 -1.672997937236383e+00 -1.675188382281491e+00 -1.677374534802169e+00 -1.679556421201192e+00 + -1.681734067628149e+00 -1.683907499121518e+00 -1.686076740528519e+00 -1.688241817042459e+00 -1.690402753749855e+00 + -1.692559574964003e+00 -1.694712304797627e+00 -1.696860967334408e+00 -1.699005586454806e+00 -1.701146185255449e+00 + -1.703282786721620e+00 -1.705415414177082e+00 -1.707544090831449e+00 -1.709668839099297e+00 -1.711789681156861e+00 + -1.713906639022084e+00 -1.716019734585396e+00 -1.718128989385494e+00 -1.720234424849230e+00 -1.722336062307809e+00 + -1.724433922917529e+00 -1.726528027230686e+00 -1.728618395721282e+00 -1.730705049154116e+00 -1.732788008101886e+00 + -1.734867292078088e+00 -1.736942920442919e+00 -1.739014913002594e+00 -1.741083289547465e+00 -1.743148069358425e+00 + -1.745209271450225e+00 -1.747266914282488e+00 -1.749321016270471e+00 -1.751371596207075e+00 -1.753418672811714e+00 + -1.755462264132180e+00 -1.757502388000569e+00 -1.759539062057792e+00 -1.761572303881055e+00 -1.763602130983907e+00 + -1.765628560778196e+00 -1.767651610332621e+00 -1.769671296580689e+00 -1.771687636258316e+00 -1.773700645994041e+00 + -1.775710342184503e+00 -1.777716741146727e+00 -1.779719859111176e+00 -1.781719712181211e+00 -1.783716316038327e+00 + -1.785709686327057e+00 -1.787699838965949e+00 -1.789686789700248e+00 -1.791670553307960e+00 -1.793651144443631e+00 + -1.795628578235185e+00 -1.797602869852874e+00 -1.799574034162875e+00 -1.801542085839167e+00 -1.803507039091021e+00 + -1.805468908052258e+00 -1.807427707019619e+00 -1.809383450209764e+00 -1.811336151356113e+00 -1.813285824110837e+00 + -1.815232482284336e+00 -1.817176139592257e+00 -1.819116809213001e+00 -1.821054504262256e+00 -1.822989238142106e+00 + -1.824921024174149e+00 -1.826849875071642e+00 -1.828775803432498e+00 -1.830698822001605e+00 -1.832618943490715e+00 + -1.834536180332052e+00 -1.836450544855570e+00 -1.838362049261658e+00 -1.840270705693083e+00 -1.842176526191684e+00 + -1.844079522732226e+00 -1.845979707122125e+00 -1.847877091069540e+00 -1.849771686052976e+00 -1.851663503515020e+00 + -1.853552554984233e+00 -1.855438851906239e+00 -1.857322405308933e+00 -1.859203226114476e+00 -1.861081325239847e+00 + -1.862956713608023e+00 -1.864829402171162e+00 -1.866699401811557e+00 -1.868566723102871e+00 -1.870431376467943e+00 + -1.872293372034969e+00 -1.874152719980291e+00 -1.876009430967454e+00 -1.877863515541558e+00 -1.879714983286677e+00 + -1.881563843740828e+00 -1.883410107218835e+00 -1.885253783963326e+00 -1.887094883151373e+00 -1.888933413891583e+00 + -1.890769386084288e+00 -1.892602809677417e+00 -1.894433694017575e+00 -1.896262048252058e+00 -1.898087881332244e+00 + -1.899911202238771e+00 -1.901732020265218e+00 -1.903550344662578e+00 -1.905366184198560e+00 -1.907179547502340e+00 + -1.908990443132265e+00 -1.910798879695625e+00 -1.912604866066330e+00 -1.914408411061036e+00 -1.916209523000752e+00 + -1.918008210058423e+00 -1.919804480310377e+00 -1.921598341888620e+00 -1.923389803244497e+00 -1.925178872754823e+00 + -1.926965558178970e+00 -1.928749867237572e+00 -1.930531808113790e+00 -1.932311388923252e+00 -1.934088617048956e+00 + -1.935863499807747e+00 -1.937636044984464e+00 -1.939406260367225e+00 -1.941174153289245e+00 -1.942939731044444e+00 + -1.944703001224463e+00 -1.946463971324967e+00 -1.948222648160018e+00 -1.949979038559213e+00 -1.951733150095908e+00 + -1.953484990331042e+00 -1.955234566032130e+00 -1.956981883796339e+00 -1.958726950332857e+00 -1.960469772453529e+00 + -1.962210357268799e+00 -1.963948711773954e+00 -1.965684842205069e+00 -1.967418754747339e+00 -1.969150456141664e+00 + -1.970879953151972e+00 -1.972607252078582e+00 -1.974332359180596e+00 -1.976055281015821e+00 -1.977776024078765e+00 + -1.979494594312026e+00 -1.981210997612849e+00 -1.982925240248993e+00 -1.984637328483028e+00 -1.986347268186276e+00 + -1.988055065135925e+00 -1.989760725123873e+00 -1.991464254028801e+00 -1.993165658061782e+00 -1.994864943305917e+00 + -1.996562115000000e+00 -1.998257178352118e+00 -1.999950139291834e+00 -2.001641003786081e+00 -2.003329777229788e+00 + -2.005016464899233e+00 -2.006701072168050e+00 -2.008383604435580e+00 -2.010064067106614e+00 -2.011742465557514e+00 + -2.013418805045480e+00 -2.015093090790721e+00 -2.016765327984645e+00 -2.018435521788566e+00 -2.020103677272243e+00 + -2.021769799450648e+00 -2.023433893211152e+00 -2.025095963440481e+00 -2.026756015150358e+00 -2.028414053372033e+00 + -2.030070083089858e+00 -2.031724109167109e+00 -2.033376136029651e+00 -2.035026168111125e+00 -2.036674210313675e+00 + -2.038320267543339e+00 -2.039964344253219e+00 -2.041606444873179e+00 -2.043246574193053e+00 -2.044884736927830e+00 + -2.046520937133174e+00 -2.048155178894251e+00 -2.049787467073582e+00 -2.051417806490505e+00 -2.053046201014273e+00 + -2.054672654449746e+00 -2.056297171294283e+00 -2.057919756136151e+00 -2.059540413234731e+00 -2.061159146675282e+00 + -2.062775960175462e+00 -2.064390857518372e+00 -2.066003843116474e+00 -2.067614921377108e+00 -2.069224096057763e+00 + -2.070831370870978e+00 -2.072436749999330e+00 -2.074040237602111e+00 -2.075641837275425e+00 -2.077241552544816e+00 + -2.078839387216755e+00 -2.080435345153352e+00 -2.082029430158359e+00 -2.083621645967183e+00 -2.085211996100236e+00 + -2.086800484128769e+00 -2.088387114042385e+00 -2.089971889736969e+00 -2.091554814315162e+00 -2.093135890870968e+00 + -2.094715123257078e+00 -2.096292515329556e+00 -2.097868070199266e+00 -2.099441790929908e+00 -2.101013681141721e+00 + -2.102583744473837e+00 -2.104151984084442e+00 -2.105718403103298e+00 -2.107283005027429e+00 -2.108845793364375e+00 + -2.110406771296459e+00 -2.111965941910842e+00 -2.113523308239219e+00 -2.115078873308544e+00 -2.116632640182243e+00 + -2.118184611994434e+00 -2.119734792125529e+00 -2.121283183887100e+00 -2.122829790069075e+00 -2.124374613416041e+00 + -2.125917657012881e+00 -2.127458923984833e+00 -2.128998417278243e+00 -2.130536139767974e+00 -2.132072094221826e+00 + -2.133606283403289e+00 -2.135138710165668e+00 -2.136669377406417e+00 -2.138198288109766e+00 -2.139725445172409e+00 + -2.141250851054121e+00 -2.142774508270670e+00 -2.144296419998729e+00 -2.145816589318136e+00 -2.147335018260493e+00 + -2.148851708859426e+00 -2.150366664204882e+00 -2.151879887475646e+00 -2.153391381149525e+00 -2.154901147551277e+00 + -2.156409189094421e+00 -2.157915508301146e+00 -2.159420108039566e+00 -2.160922991060322e+00 -2.162424159298261e+00 + -2.163923614721020e+00 -2.165421360243191e+00 -2.166917398765767e+00 -2.168411732188371e+00 -2.169904362385663e+00 + -2.171395292133801e+00 -2.172884524283159e+00 -2.174372061079477e+00 -2.175857904621596e+00 -2.177342057025400e+00 + -2.178824520458782e+00 -2.180305297280612e+00 -2.181784389836284e+00 -2.183261800226323e+00 -2.184737530553230e+00 + -2.186211583172279e+00 -2.187683960396664e+00 -2.189154664118480e+00 -2.190623696232450e+00 -2.192091059064924e+00 + -2.193556754973807e+00 -2.195020786011611e+00 -2.196483154140098e+00 -2.197943861263397e+00 -2.199402909290797e+00 + -2.200860300209873e+00 -2.202316036078389e+00 -2.203770119156592e+00 -2.205222551620105e+00 -2.206673335103553e+00 + -2.208122471221687e+00 -2.209569962050753e+00 -2.211015809743800e+00 -2.212460016299604e+00 -2.213902583604158e+00 + -2.215343513246597e+00 -2.216782806815468e+00 -2.218220466193829e+00 -2.219656493330310e+00 -2.221090890141300e+00 + -2.222523658493742e+00 -2.223954800089009e+00 -2.225384316635711e+00 -2.226812210036953e+00 -2.228238482128524e+00 + -2.229663134282465e+00 -2.231086167933421e+00 -2.232507585230206e+00 -2.233927388263609e+00 -2.235345578178182e+00 + -2.236762156112363e+00 -2.238177124126393e+00 -2.239590484325721e+00 -2.241002238074839e+00 -2.242412386688506e+00 + -2.243820932023517e+00 -2.245227875877045e+00 -2.246633219265731e+00 -2.248036963296034e+00 -2.249439110214208e+00 + -2.250839662216949e+00 -2.252238620162919e+00 -2.253635984842608e+00 -2.255031758111861e+00 -2.256425941987018e+00 + -2.257818538061035e+00 -2.259209547728066e+00 -2.260598972010440e+00 -2.261986811976363e+00 -2.263373069249392e+00 + -2.264757745520950e+00 -2.266140842198597e+00 -2.267522360622610e+00 -2.268902302148032e+00 -2.270280668153553e+00 + -2.271657460097697e+00 -2.273032679375423e+00 -2.274406327047590e+00 -2.275778404191426e+00 -2.277148912283742e+00 + -2.278517852852843e+00 -2.279885227233438e+00 -2.281251036662961e+00 -2.282615282183361e+00 -2.283977964870765e+00 + -2.285339086133513e+00 -2.286698647429660e+00 -2.288056650083893e+00 -2.289413095312870e+00 -2.290767984034498e+00 + -2.292121317209354e+00 -2.293473096267451e+00 -2.294823322630535e+00 -2.296171997217860e+00 -2.297519120939147e+00 + -2.298864695168495e+00 -2.300208721271999e+00 -2.301551200119357e+00 -2.302892132586471e+00 -2.304231520070443e+00 + -2.305569363951571e+00 -2.306905665021753e+00 -2.308240424043668e+00 -2.309573642251534e+00 -2.310905320943594e+00 + -2.312235461202651e+00 -2.313564064009707e+00 -2.314891130153991e+00 -2.316216660462560e+00 -2.317540656105554e+00 + -2.318863118293744e+00 -2.320184048057342e+00 -2.321503446385586e+00 -2.322821314284393e+00 -2.324137652689092e+00 + -2.325452462235987e+00 -2.326765743634779e+00 -2.328077498187803e+00 -2.329387727168217e+00 -2.330696431139842e+00 + -2.332003610675342e+00 -2.333309267092103e+00 -2.334613401701304e+00 -2.335916015044585e+00 -2.337217107588464e+00 + -2.338516680268511e+00 -2.339814734134101e+00 -2.341111270220800e+00 -2.342406289434137e+00 -2.343699792173311e+00 + -2.344991778936741e+00 -2.346282251126043e+00 -2.347571210092017e+00 -2.348858656078995e+00 -2.350144589310363e+00 + -2.351429011032167e+00 -2.352711922533504e+00 -2.353993324252988e+00 -2.355273216536063e+00 -2.356551600205969e+00 + -2.357828476165661e+00 -2.359103845159169e+00 -2.360377707896761e+00 -2.361650065112589e+00 -2.362920917562625e+00 + -2.364190266066228e+00 -2.365458111389245e+00 -2.366724454020086e+00 -2.367989294422349e+00 -2.369252633237819e+00 + -2.370514471195048e+00 -2.371774809191487e+00 -2.373033648052395e+00 -2.374290988145372e+00 -2.375546829856004e+00 + -2.376801174099476e+00 -2.378054021758188e+00 -2.379305373053798e+00 -2.380555228228685e+00 -2.381803588268867e+00 + -2.383050454170042e+00 -2.384295826222999e+00 -2.385539704659158e+00 -2.386782090177350e+00 -2.388022983519428e+00 + -2.389262385131917e+00 -2.390500295440986e+00 -2.391736715086700e+00 -2.392971644747536e+00 -2.394205085041701e+00 + -2.395437036486230e+00 -2.396667499253712e+00 -2.397896473568759e+00 -2.399123960208524e+00 -2.400349959968320e+00 + -2.401574473163553e+00 -2.402797500049246e+00 -2.404019041118798e+00 -2.405239096931802e+00 -2.406457668074259e+00 + -2.407674755052769e+00 -2.408890358029935e+00 -2.410104477201394e+00 -2.411317113238899e+00 -2.412528266823138e+00 + -2.413737938194389e+00 -2.414946127524263e+00 -2.416152835150093e+00 -2.417358061488310e+00 -2.418561807106014e+00 + -2.419764072540869e+00 -2.420964858062149e+00 -2.422164163883997e+00 -2.423361990268478e+00 -2.424558337539998e+00 + -2.425753206224426e+00 -2.426946596778449e+00 -2.428138509180588e+00 -2.429328943436301e+00 -2.430517900136966e+00 + -2.431705379929064e+00 -2.432891383093559e+00 -2.434075909789072e+00 -2.435258960050367e+00 -2.436440534002261e+00 + -2.437620632253666e+00 -2.438799255363957e+00 -2.439976403210287e+00 -2.441152075652963e+00 -2.442326273167121e+00 + -2.443498996281469e+00 -2.444670245124171e+00 -2.445840019720089e+00 -2.447008320081434e+00 -2.448175146330043e+00 + -2.449340499038912e+00 -2.450504378726154e+00 -2.451666785239187e+00 -2.452827718349615e+00 -2.453987178196479e+00 + -2.455145165027037e+00 -2.456301679153984e+00 -2.457456720843679e+00 -2.458610290111703e+00 -2.459762386895362e+00 + -2.460913011069636e+00 -2.462062162618941e+00 -2.463209842027783e+00 -2.464356049701044e+00 -2.465500785225038e+00 + -2.466644048210323e+00 -2.467785839182998e+00 -2.468926158651886e+00 -2.470065006141172e+00 -2.471202381154697e+00 + -2.472338284099561e+00 -2.473472715451581e+00 -2.474605675058163e+00 -2.475737162666682e+00 -2.476867178252799e+00 + -2.477995721814551e+00 -2.479122793211214e+00 -2.480248392312651e+00 -2.481372519169843e+00 -2.482495173828069e+00 + -2.483616356128687e+00 -2.484736065895716e+00 -2.485854303087743e+00 -2.486971067738408e+00 -2.488086360047014e+00 + -2.489200180083995e+00 -2.490312527238630e+00 -2.491423400907520e+00 -2.492532801197714e+00 -2.493640728315912e+00 + -2.494747182157012e+00 -2.495852162518061e+00 -2.496955669116524e+00 -2.498057701682506e+00 -2.499158260076250e+00 + -2.500257344205291e+00 -2.501354954036191e+00 -2.502451089487258e+00 -2.503545750224782e+00 -2.504638935878569e+00 + -2.505730646184535e+00 -2.506820880947837e+00 -2.507909640144502e+00 -2.508996923692245e+00 -2.510082731104683e+00 + -2.511167061905791e+00 -2.512249916065080e+00 -2.513331293568936e+00 -2.514411194025691e+00 -2.515489616993924e+00 + -2.516566562211253e+00 -2.517642029416175e+00 -2.518716018171676e+00 -2.519788528087044e+00 -2.520859559132313e+00 + -2.521929111272669e+00 -2.522997184093166e+00 -2.524063777123772e+00 -2.525128890054233e+00 -2.526192522577199e+00 + -2.527254674237163e+00 -2.528315344566595e+00 -2.529374533198041e+00 -2.530432239809303e+00 -2.531488464159136e+00 + -2.532543206017777e+00 -2.533596465120445e+00 -2.534648241083385e+00 -2.535698533081969e+00 -2.536747340380982e+00 + -2.537794663043710e+00 -2.538840501172024e+00 -2.539884854223596e+00 -2.540927721482817e+00 -2.541969102185147e+00 + -2.543008995720672e+00 -2.544047402146914e+00 -2.545084321505733e+00 -2.546119753108897e+00 -2.547153696148885e+00 + -2.548186150071097e+00 -2.549217114438763e+00 -2.550246589033513e+00 -2.551274573561718e+00 -2.552301067210345e+00 + -2.553326069170913e+00 -2.554349579172571e+00 -2.555371597001575e+00 -2.556392122135012e+00 -2.557411153995589e+00 + -2.558428692097672e+00 -2.559444735964176e+00 -2.560459285060548e+00 -2.561472338773803e+00 -2.562483896234721e+00 + -2.563493956701396e+00 -2.564502520197407e+00 -2.565509586690590e+00 -2.566515155160310e+00 -2.567519224484451e+00 + -2.568521794123430e+00 -2.569522863722881e+00 -2.570522433086768e+00 -2.571520501879673e+00 -2.572517069050324e+00 + -2.573512133570669e+00 -2.574505695221420e+00 -2.575497753777856e+00 -2.576488308184784e+00 -2.577477357385580e+00 + -2.578464901148367e+00 -2.579450939304331e+00 -2.580435471112168e+00 -2.581418495678755e+00 -2.582400012076188e+00 + -2.583380019545771e+00 -2.584358518040427e+00 -2.585335507388502e+00 -2.586310986208430e+00 -2.587284953146766e+00 + -2.588257408172476e+00 -2.589228351266687e+00 -2.590197781136742e+00 -2.591165696464199e+00 -2.592132097101227e+00 + -2.593096982965479e+00 -2.594060353065933e+00 -2.595022206300420e+00 -2.595982542030859e+00 -2.596941359648237e+00 + -2.597898658195753e+00 -2.598854436786441e+00 -2.599808695160485e+00 -2.600761432999720e+00 -2.601712649125437e+00 + -2.602662342322502e+00 -2.603610512090611e+00 -2.604557157983472e+00 -2.605502279056006e+00 -2.606445874333086e+00 + -2.607387943218189e+00 -2.608328485131743e+00 -2.609267499183389e+00 -2.610204984445080e+00 -2.611140940148811e+00 + -2.612075365584592e+00 -2.613008260114454e+00 -2.613939623006402e+00 -2.614869453080320e+00 -2.615797749224179e+00 + -2.616724511046408e+00 -2.617649738126216e+00 -2.618573429205448e+00 -2.619495583026503e+00 -2.620416199171340e+00 + -2.621335277249019e+00 -2.622252816137456e+00 -2.623168814653865e+00 -2.624083272103795e+00 -2.624996187859330e+00 + -2.625907561070358e+00 -2.626817390806325e+00 -2.627725676037143e+00 -2.628632415761536e+00 -2.629537609193020e+00 + -2.630441255587996e+00 -2.631343354159609e+00 -2.632243904045731e+00 -2.633142904126422e+00 -2.634040353337229e+00 + -2.634936251093461e+00 -2.635830596765059e+00 -2.636723389060725e+00 -2.637614626713354e+00 -2.638504309213838e+00 + -2.639392436080191e+00 -2.640279006180904e+00 -2.641164018251881e+00 -2.642047471148195e+00 -2.642929363899640e+00 + -2.643809696115713e+00 -2.644688467316341e+00 -2.645565676083456e+00 -2.646441320932559e+00 -2.647315401051427e+00 + -2.648187915755844e+00 -2.649058864201336e+00 -2.649928245427330e+00 -2.650796058169106e+00 -2.651662301248424e+00 + -2.652526974137104e+00 -2.653390076247662e+00 -2.654251606105329e+00 -2.655111562238285e+00 -2.655969944073783e+00 + -2.656826751086593e+00 -2.657681982042466e+00 -2.658535635661370e+00 -2.659387711189145e+00 -2.660238207837736e+00 + -2.661087124157626e+00 -2.661934458755756e+00 -2.662780211126336e+00 -2.663624380741185e+00 -2.664466966095276e+00 + -2.665307965694397e+00 -2.666147379064445e+00 -2.666985205710447e+00 -2.667821444033845e+00 -2.668656092405469e+00 + -2.669489150177272e+00 -2.670320616801000e+00 -2.671150491146469e+00 -2.671978771965001e+00 -2.672805458115896e+00 + -2.673630548501148e+00 -2.674454042085555e+00 -2.675275937884819e+00 -2.676096235055446e+00 -2.676914932653945e+00 + -2.677732029196031e+00 -2.678547523253807e+00 -2.679361414165717e+00 -2.680173701269736e+00 -2.680984383135636e+00 + -2.681793458321363e+00 -2.682600926105787e+00 -2.683406785794135e+00 -2.684211036076172e+00 -2.685013675548027e+00 + -2.685814703046789e+00 -2.686614117528503e+00 -2.687411918184072e+00 -2.688208104155523e+00 -2.689002674154484e+00 + -2.689795626844247e+00 -2.690586961125131e+00 -2.691376675931391e+00 -2.692164770096012e+00 -2.692951242468673e+00 + -2.693736092067127e+00 -2.694519317933390e+00 -2.695300919038479e+00 -2.696080894259941e+00 -2.696859242172434e+00 + -2.697635961409562e+00 -2.698411051143577e+00 -2.699184510529523e+00 -2.699956338114957e+00 -2.700726532498006e+00 + -2.701495093086574e+00 -2.702262019208106e+00 -2.703027309058428e+00 -2.703790960874505e+00 -2.704552974189474e+00 + -2.705313348537555e+00 -2.706072082161119e+00 -2.706829173257158e+00 -2.707584621133000e+00 -2.708338425191227e+00 + -2.709090584105120e+00 -2.709841096442358e+00 -2.710589961077480e+00 -2.711337176962203e+00 -2.712082743050078e+00 + -2.712826658235913e+00 -2.713568921177743e+00 -2.714309530527581e+00 -2.715048485150131e+00 -2.715785783993005e+00 + -2.716521426122757e+00 -2.717255410569124e+00 -2.717987736095623e+00 -2.718718401385704e+00 -2.719447405068731e+00 + -2.720174745881186e+00 -2.720900423042079e+00 -2.721624435690877e+00 -2.722346782166338e+00 -2.723067460855530e+00 + -2.723786471139474e+00 -2.724503812410580e+00 -2.725219483112852e+00 -2.725933481634188e+00 -2.726645807086471e+00 + -2.727356458650697e+00 -2.728065435060333e+00 -2.728772734953498e+00 -2.729478357034439e+00 -2.730182300087997e+00 + -2.730884563155262e+00 -2.731585145263588e+00 -2.732284045129153e+00 -2.732981261442558e+00 -2.733676793103288e+00 + -2.734370639038562e+00 -2.735062798077667e+00 -2.735753269071118e+00 -2.736442051052291e+00 -2.737129142959769e+00 + -2.737814543170111e+00 -2.738498250131983e+00 -2.739180263144520e+00 -2.739860581563291e+00 -2.740539204119172e+00 + -2.741216129405992e+00 -2.741891356094071e+00 -2.742564882952538e+00 -2.743236709069217e+00 -2.743906833523784e+00 + -2.744575255044610e+00 -2.745241972311204e+00 -2.745906984158941e+00 -2.746570289467025e+00 -2.747231887134115e+00 + -2.747891776057501e+00 -2.748549955109537e+00 -2.749206423158993e+00 -2.749861179085207e+00 -2.750514221765824e+00 + -2.751165550061125e+00 -2.751815162841771e+00 -2.752463059037292e+00 -2.753109237554207e+00 -2.753753697148108e+00 + -2.754396436622574e+00 -2.755037455124055e+00 -2.755676751755156e+00 -2.756314325100252e+00 -2.756950173779785e+00 + -2.757584297076699e+00 -2.758216694281619e+00 -2.758847364053396e+00 -2.759476305000437e+00 -2.760103516161140e+00 + -2.760728996610216e+00 -2.761352745137616e+00 -2.761974760563591e+00 -2.762595042114344e+00 -2.763213589016364e+00 + -2.763830400091322e+00 -2.764445474113015e+00 -2.765058810068553e+00 -2.765670407011266e+00 -2.766280264046035e+00 + -2.766888380201558e+00 -2.767494754150214e+00 -2.768099384646222e+00 -2.768702271127474e+00 -2.769303413030783e+00 + -2.769902809104988e+00 -2.770500458053093e+00 -2.771096359082754e+00 -2.771690511445131e+00 -2.772282914060774e+00 + -2.772873565847032e+00 -2.773462466039048e+00 -2.774049613856528e+00 -2.774635008139637e+00 -2.775218647762881e+00 + -2.775800532117688e+00 -2.776380660598635e+00 -2.776959032095993e+00 -2.777535645483684e+00 -2.778110500074552e+00 + -2.778683595228330e+00 -2.779254930053368e+00 -2.779824503611819e+00 -2.780392315032438e+00 -2.780958363471580e+00 + -2.781522648129417e+00 -2.782085168237396e+00 -2.782645923108263e+00 -2.783204912027138e+00 -2.783762134087364e+00 + -2.784317588365996e+00 -2.784871274066723e+00 -2.785423190471204e+00 -2.785973337046338e+00 -2.786521713227682e+00 + -2.787068318140169e+00 -2.787613150927563e+00 -2.788156211119559e+00 -2.788697498201977e+00 -2.789237011099205e+00 + -2.789774748795882e+00 -2.790310711079109e+00 -2.790844897774500e+00 -2.791377308059270e+00 -2.791907941021321e+00 + -2.792436796039691e+00 -2.792963872575855e+00 -2.793489170129877e+00 -2.794012688183935e+00 -2.794534426110070e+00 + -2.795054383269529e+00 -2.795572559090522e+00 -2.796088953089790e+00 -2.796603565071232e+00 -2.797116394731634e+00 + -2.797627441052200e+00 -2.798136703104035e+00 -2.798644181033428e+00 -2.799149874997305e+00 -2.799653784119957e+00 + -2.800155907491874e+00 -2.800656245100958e+00 -2.801154796934787e+00 -2.801651562082218e+00 -2.802146539693571e+00 + -2.802639730063738e+00 -2.803131133478864e+00 -2.803620749045517e+00 -2.804108575856467e+00 -2.804594614128865e+00 + -2.805078864118387e+00 -2.805561325110418e+00 -2.806041996375143e+00 -2.806520878092229e+00 -2.806997970489045e+00 + -2.807473273074300e+00 -2.807946785293329e+00 -2.808418507056632e+00 -2.808888438355500e+00 -2.809356579039224e+00 + -2.809822928959404e+00 -2.810287488118900e+00 -2.810750256531227e+00 -2.811211234101264e+00 -2.811670420689050e+00 + -2.812127816083888e+00 -2.812583420143096e+00 -2.813037233066774e+00 -2.813489255065615e+00 -2.813939486049919e+00 + -2.814387925944586e+00 -2.814834575033324e+00 -2.815279433542374e+00 -2.815722501109326e+00 -2.816163777438837e+00 + -2.816603263092504e+00 -2.817040958671196e+00 -2.817476864075942e+00 -2.817910979131784e+00 -2.818343304059641e+00 + -2.818773839208482e+00 -2.819202585043600e+00 -2.819629541969078e+00 -2.820054710027820e+00 -2.820478089265513e+00 + -2.820899680100151e+00 -2.821319482977751e+00 -2.821737498084143e+00 -2.822153725615352e+00 -2.822568166068396e+00 + -2.822980820018520e+00 -2.823391688052908e+00 -2.823800770674544e+00 -2.824208068037681e+00 -2.824613580315654e+00 + -2.825017308106835e+00 -2.825419252121360e+00 -2.825819413091381e+00 -2.826217791658008e+00 -2.826614388076187e+00 + -2.827009202624378e+00 -2.827402236061253e+00 -2.827793489256864e+00 -2.828182963046578e+00 -2.828570658171722e+00 + -2.828956575032161e+00 -2.829340714052488e+00 -2.829723076097664e+00 -2.830103662132774e+00 -2.830482473083023e+00 + -2.830859509823491e+00 -2.831234773068641e+00 -2.831608263528317e+00 -2.831979982054516e+00 -2.832349929557777e+00 + -2.832718107040651e+00 -2.833084515526141e+00 -2.833449156027042e+00 -2.833812029550204e+00 -2.834173137088914e+00 + -2.834532479620883e+00 -2.834890058075082e+00 -2.835245873448821e+00 -2.835599927061508e+00 -2.835952220243667e+00 + -2.836302754048190e+00 -2.836651529530672e+00 -2.836998548035129e+00 -2.837343810883671e+00 -2.837687319022324e+00 + -2.838029073490917e+00 -2.838369076080591e+00 -2.838707328586376e+00 -2.839043832067564e+00 -2.839378587474163e+00 + -2.839711596054793e+00 -2.840042859259108e+00 -2.840372379042276e+00 -2.840700157280677e+00 -2.841026195030013e+00 + -2.841350493343512e+00 -2.841673054085180e+00 -2.841993879190829e+00 -2.842312970072699e+00 -2.842630328108386e+00 + -2.842945955060471e+00 -2.843259852775203e+00 -2.843572023048496e+00 -2.843882467617769e+00 -2.844191188036773e+00 + -2.844498185884593e+00 -2.844803463025301e+00 -2.845107021413000e+00 -2.845408863076932e+00 -2.845708990020076e+00 + -2.846007404065244e+00 -2.846304107050338e+00 -2.846599101053807e+00 -2.846892388135785e+00 -2.847183970042619e+00 + -2.847473848570861e+00 -2.847762026031680e+00 -2.848048504803730e+00 -2.848333287020989e+00 -2.848616374754612e+00 + -2.848897770069131e+00 -2.849177475073159e+00 -2.849455492058227e+00 -2.849731823327478e+00 -2.850006471047571e+00 + -2.850279437434387e+00 -2.850550725037162e+00 -2.850820336439234e+00 -2.851088274026996e+00 -2.851354540133094e+00 + -2.851619137072155e+00 -2.851882067200814e+00 -2.852143333061782e+00 -2.852402937208544e+00 -2.852660882051651e+00 + -2.852917170055367e+00 -2.853171804041764e+00 -2.853424786850297e+00 -2.853676121032120e+00 -2.853925809140160e+00 + -2.854173854022716e+00 -2.854420258509995e+00 -2.854665025064492e+00 -2.854908156206457e+00 -2.855149655054884e+00 + -2.855389524765914e+00 -2.855627768045515e+00 -2.855864387531145e+00 -2.856099386036384e+00 -2.856332766480263e+00 + -2.856564532027491e+00 -2.856794685864488e+00 -2.857023231018833e+00 -2.857250170456676e+00 -2.857475507057297e+00 + -2.857699243787178e+00 -2.857921384048440e+00 -2.858141931205942e+00 -2.858360888039817e+00 -2.858578257403886e+00 + -2.858794043031427e+00 -2.859008248642304e+00 -2.859220877023269e+00 -2.859431930941042e+00 -2.859641414015340e+00 + -2.859849329964776e+00 -2.860055682050569e+00 -2.860260473522559e+00 -2.860463708042447e+00 -2.860665389218646e+00 + -2.860865520034553e+00 -2.861064103583913e+00 -2.861261144026887e+00 -2.861456645505078e+00 -2.861650611019446e+00 + -2.861843043539793e+00 -2.862033947051935e+00 -2.862223325674870e+00 -2.862411183044306e+00 -2.862597522669464e+00 + -2.862782348036900e+00 -2.862965662765951e+00 -2.863147471029718e+00 -2.863327776966641e+00 -2.863506584022756e+00 + -2.863683895649960e+00 -2.863859716016013e+00 -2.864034049304372e+00 -2.864206899045429e+00 -2.864378268816853e+00 + -2.864548163038503e+00 -2.864716586175495e+00 -2.864883542031795e+00 -2.865049034317118e+00 -2.865213067025303e+00 + -2.865375644227383e+00 -2.865536770019026e+00 -2.865696448531390e+00 -2.865854684012960e+00 -2.866011480747103e+00 + -2.866166843039399e+00 -2.866320775137251e+00 -2.866473281033156e+00 -2.866624364792500e+00 -2.866774031027124e+00 + -2.866922284373643e+00 -2.867069129021301e+00 -2.867214569108258e+00 -2.867358609015685e+00 -2.867501253183005e+00 + -2.867642506039625e+00 -2.867782372075631e+00 -2.867920856033839e+00 -2.868057962606175e+00 -2.868193696028257e+00 + -2.868328060561013e+00 -2.868461061022879e+00 -2.868592702303233e+00 -2.868722989017701e+00 -2.868851925722842e+00 + -2.868979517012722e+00 -2.869105767524959e+00 -2.869230682033886e+00 -2.869354265317122e+00 -2.869476522028743e+00 + -2.869597456891174e+00 -2.869717075023798e+00 -2.869835381525858e+00 -2.869952381019048e+00 -2.870068078133983e+00 + -2.870182478014490e+00 -2.870295585788873e+00 -2.870407406010122e+00 -2.870517943287246e+00 -2.870627203028626e+00 + -2.870735190678368e+00 -2.870841911024103e+00 -2.870947368779615e+00 -2.871051569019769e+00 -2.871154516959833e+00 + -2.871256218015620e+00 -2.871356677487263e+00 -2.871455900011655e+00 -2.871553890297982e+00 -2.871650654007871e+00 + -2.871746196881877e+00 -2.871840524023838e+00 -2.871933640394619e+00 -2.872025551019907e+00 -2.872116261043417e+00 + -2.872205776016155e+00 -2.872294101539941e+00 -2.872381243012580e+00 -2.872467205758066e+00 -2.872551995009178e+00 + -2.872635615995248e+00 -2.872718074023048e+00 -2.872799374482606e+00 -2.872879523019508e+00 -2.872958525324841e+00 + -2.873036387016140e+00 -2.873113113575017e+00 -2.873188710012942e+00 -2.873263181462381e+00 -2.873336534009911e+00 + -2.873408773769060e+00 -2.873479906007045e+00 -2.873549935889074e+00 -2.873618869018622e+00 -2.873686711126628e+00 + -2.873753468015626e+00 -2.873819145455355e+00 -2.873883749012791e+00 -2.873947284262238e+00 -2.874009757010115e+00 + -2.874071173064448e+00 -2.874131538007598e+00 -2.874190857408149e+00 -2.874249137005235e+00 -2.874306382592947e+00 + -2.874362600014657e+00 -2.874417795154723e+00 -2.874471974012172e+00 -2.874525142492177e+00 -2.874577306009839e+00 + -2.874628470067637e+00 -2.874678641007656e+00 -2.874727825164796e+00 -2.874776028005620e+00 -2.874823254939239e+00 + -2.874869512013286e+00 -2.874914805384953e+00 -2.874959141011137e+00 -2.875002524843012e+00 -2.875044963009132e+00 + -2.875086461553842e+00 -2.875127026007268e+00 -2.875166661990855e+00 -2.875205376005544e+00 -2.875243174521211e+00 + -2.875280063003956e+00 -2.875316046953741e+00 -2.875351133009737e+00 -2.875385327829893e+00 -2.875418637008044e+00 + -2.875451066029114e+00 -2.875482621006486e+00 -2.875513308222273e+00 -2.875543134005058e+00 -2.875572104616458e+00 + -2.875600226003760e+00 -2.875627504088381e+00 -2.875653945002586e+00 -2.875679554924722e+00 -2.875704340006628e+00 + -2.875728306365356e+00 -2.875751460005359e+00 -2.875773807024162e+00 -2.875795354004213e+00 -2.875816107441742e+00 + -2.875836073003188e+00 -2.875855256356105e+00 -2.875873664002281e+00 -2.875891302525273e+00 -2.875908178001488e+00 + -2.875924296429527e+00 -2.875939664003940e+00 -2.875954287022889e+00 -2.875968172003060e+00 -2.875981325374513e+00 + -2.875993753002293e+00 -2.876005460745149e+00 -2.876016455001635e+00 -2.876026742281703e+00 -2.876036329001085e+00 + -2.876045221511428e+00 -2.876053426002279e+00 -2.876060948682664e+00 -2.876067796001651e+00 -2.876073974394489e+00 + -2.876079490001126e+00 -2.876084348997735e+00 -2.876088558000703e+00 -2.876092123620084e+00 -2.876095052000378e+00 + -2.876097349275196e+00 -2.876099022000147e+00 -2.876100076780735e+00 -2.876100520000039e+00 -2.876100357977497e+00 + -2.876099597000405e+00 -2.876098243435337e+00 -2.876096303998139e+00 -2.876093785401991e+00 -2.876090694000126e+00 + -2.876087036076098e+00 -2.876082817994697e+00 -2.876078046153286e+00 -2.876072726998279e+00 -2.876066867041051e+00 + -2.876060473003754e+00 -2.876053551562065e+00 -2.876046108994973e+00 -2.876038151582050e+00 -2.876029686001908e+00 + -2.876020718975022e+00 -2.876011256990315e+00 -2.876001306494705e+00 -2.875990873998654e+00 -2.875979966015766e+00 + -2.875968589008655e+00 -2.875956749461299e+00 -2.875944453994101e+00 -2.875931709272467e+00 -2.875918522005370e+00 + -2.875904898821941e+00 -2.875890845988358e+00 -2.875876369796106e+00 -2.875861477000839e+00 -2.875846174460938e+00 + -2.875830468981534e+00 -2.875814367182402e+00 -2.875797874995170e+00 -2.875780998493851e+00 -2.875763745010153e+00 + -2.875746121853747e+00 -2.875728134988475e+00 -2.875709790337169e+00 -2.875691095004476e+00 -2.875672056151185e+00 + -2.875652679980860e+00 -2.875632972639220e+00 -2.875612940997824e+00 -2.875592591983200e+00 -2.875571932015899e+00 + -2.875550967463832e+00 -2.875529704990307e+00 -2.875508151305197e+00 -2.875486313009207e+00 -2.875464196688727e+00 + -2.875441808982035e+00 -2.875419156538716e+00 -2.875396246001703e+00 -2.875373083982446e+00 -2.875349676973115e+00 + -2.875326031456047e+00 -2.875302153993497e+00 -2.875278051224424e+00 -2.875253730014671e+00 -2.875229197164465e+00 + -2.875204458984698e+00 -2.875179521740897e+00 -2.875154392006447e+00 -2.875129076470253e+00 -2.875103581975416e+00 + -2.875077915323747e+00 -2.875052082997684e+00 -2.875026091410789e+00 -2.874999947020509e+00 -2.874973656330889e+00 + -2.874947225988491e+00 -2.874920662667701e+00 -2.874893973011697e+00 -2.874867163623783e+00 -2.874840240978976e+00 + -2.874813211559227e+00 -2.874786082002508e+00 -2.874758858958694e+00 -2.874731548969249e+00 -2.874704158521300e+00 + -2.874676693993052e+00 -2.874649161850167e+00 -2.874621569017096e+00 -2.874593922351292e+00 -2.874566227983435e+00 + -2.874538491996276e+00 -2.874510721007613e+00 -2.874482921761722e+00 -2.874455100973768e+00 -2.874427265275985e+00 + -2.874399420998023e+00 -2.874371574431975e+00 -2.874343732022288e+00 -2.874315900299783e+00 -2.874288085988434e+00 + -2.874260295776052e+00 -2.874232536012641e+00 -2.874204812974258e+00 -2.874177132978955e+00 -2.874149502426689e+00 + -2.874121928003048e+00 -2.874094416390038e+00 -2.874066973969692e+00 -2.874039607056358e+00 -2.874012321993617e+00 + -2.873985125156578e+00 -2.873958023017241e+00 -2.873931022092817e+00 -2.873904128984454e+00 -2.873877350227203e+00 + -2.873850692007775e+00 -2.873824160475146e+00 -2.873797761975665e+00 -2.873771502947487e+00 -2.873745389998629e+00 + -2.873719429664607e+00 -2.873693628021065e+00 -2.873667991196405e+00 -2.873642525989910e+00 -2.873617239207638e+00 + -2.873592137011854e+00 -2.873567225478465e+00 -2.873542510981722e+00 -2.873517999984164e+00 -2.873493699003122e+00 + -2.873469614539558e+00 -2.873445752974173e+00 -2.873422120664412e+00 -2.873398723994974e+00 -2.873375569341346e+00 + -2.873352663014937e+00 -2.873330011368907e+00 -2.873307620987516e+00 -2.873285498440290e+00 -2.873263650006746e+00 + -2.873242081977908e+00 -2.873220800980854e+00 -2.873199813610778e+00 -2.873179125999297e+00 -2.873158744269642e+00 + -2.873138674975094e+00 -2.873118924733721e+00 -2.873099499992696e+00 -2.873080407078925e+00 -2.873061652009151e+00 + -2.873043240951156e+00 -2.873025180987050e+00 -2.873007479104932e+00 -2.872990141002529e+00 -2.872973172348110e+00 + -2.872956579982463e+00 -2.872940370832477e+00 -2.872924550996914e+00 -2.872909126514257e+00 -2.872894104009989e+00 + -2.872879490127201e+00 -2.872865290992410e+00 -2.872851512733995e+00 -2.872838162004323e+00 -2.872825245427317e+00 + -2.872812768989124e+00 -2.872800738661925e+00 -2.872789160999820e+00 -2.872778042642130e+00 -2.872767389987160e+00 + -2.872757209355336e+00 -2.872747506996586e+00 -2.872738289140315e+00 -2.872729562004331e+00 -2.872721331833777e+00 + -2.872713604994726e+00 -2.872706387896571e+00 -2.872699687001068e+00 -2.872693508692679e+00 -2.872687858994343e+00 + -2.872682743943764e+00 -2.872678169999229e+00 -2.872674143639194e+00 -2.872670671002211e+00 -2.872667758252759e+00 + -2.872665411998920e+00 -2.872663638727966e+00 -2.872662444000314e+00 -2.872661833458480e+00 -2.872661814000242e+00 + -2.872662392564575e+00 -2.872663574999996e+00 -2.872665367034357e+00 -2.872667775003300e+00 -2.872670805307676e+00 + -2.872674464001362e+00 -2.872678757122995e+00 -2.872683690997219e+00 -2.872689271947241e+00 -2.872695506004511e+00 + -2.872702399218003e+00 -2.872709957998547e+00 -2.872718188690384e+00 -2.872727097009549e+00 -2.872736688669513e+00 + -2.872746970001709e+00 -2.872757947412680e+00 -2.872769626991446e+00 -2.872782014787135e+00 -2.872795117006809e+00 + -2.872808939808297e+00 -2.872823488994544e+00 -2.872838770359238e+00 -2.872854790013944e+00 -2.872871554154958e+00 + -2.872889068999627e+00 -2.872907340687168e+00 -2.872926375023218e+00 -2.872946177789640e+00 -2.872966755006795e+00 + -2.872988112738970e+00 -2.873010256987659e+00 -2.873033193743455e+00 -2.873056929016149e+00 -2.873081468798353e+00 + -2.873106818994782e+00 -2.873132985471494e+00 -2.873159974027786e+00 -2.873187790508094e+00 -2.873216441004140e+00 + -2.873245931584463e+00 -2.873276267977569e+00 -2.873307455856915e+00 -2.873339501015828e+00 -2.873372409342765e+00 + -2.873406186986854e+00 -2.873440840030674e+00 -2.873476374029945e+00 -2.873512794459630e+00 -2.873550106998518e+00 + -2.873588317466817e+00 -2.873627432046586e+00 -2.873667456808100e+00 -2.873708397012657e+00 -2.873750257967860e+00 + -2.873793045975522e+00 -2.873836767295967e+00 -2.873881427029366e+00 -2.873927030237608e+00 -2.873973582989610e+00 + -2.874021091436191e+00 -2.874069561048740e+00 -2.874118997257345e+00 -2.874169406006314e+00 -2.874220793186470e+00 + -2.874273163960479e+00 -2.874326523535612e+00 -2.874380878025728e+00 -2.874436233504353e+00 -2.874492594977105e+00 + -2.874549967456173e+00 -2.874608357047944e+00 -2.874667769870749e+00 -2.874728210996486e+00 -2.874789685444839e+00 + -2.874852199073056e+00 -2.874915757808161e+00 -2.874980367018717e+00 -2.875046031956011e+00 -2.875112757960702e+00 + -2.875180550448241e+00 -2.875249415043884e+00 -2.875319357389408e+00 -2.875390382982873e+00 -2.875462497200150e+00 + -2.875535705072081e+00 -2.875610011724477e+00 -2.875685423008027e+00 -2.875761944747628e+00 -2.875839581940104e+00 + -2.875918339524430e+00 -2.875998223036253e+00 -2.876079238083328e+00 -2.876161389965175e+00 -2.876244683897332e+00 + -2.876329125067640e+00 -2.876414718675390e+00 -2.876501469993362e+00 -2.876589384334920e+00 -2.876678467102276e+00 + -2.876768723646439e+00 -2.876860159024752e+00 -2.876952778311590e+00 -2.877046586943105e+00 -2.877141590285005e+00 + -2.877237793059432e+00 -2.877335200055582e+00 -2.877433816974432e+00 -2.877533649470098e+00 -2.877634702097487e+00 + -2.877736979404358e+00 -2.877840487009089e+00 -2.877945230580227e+00 -2.878051214916385e+00 -2.878158444703550e+00 + -2.878266925047163e+00 -2.878376661120778e+00 -2.878487657950954e+00 -2.878599920558564e+00 -2.878713454088738e+00 + -2.878828263638601e+00 -2.878944353988982e+00 -2.879061729871082e+00 -2.879180396133895e+00 -2.879300357745253e+00 + -2.879421620030550e+00 -2.879544188234639e+00 -2.879668066922659e+00 -2.879793260582870e+00 -2.879919774075741e+00 + -2.880047612428619e+00 -2.880176780964157e+00 -2.880307284823274e+00 -2.880439128124635e+00 -2.880572315044195e+00 + -2.880706851009318e+00 -2.880842741491739e+00 -2.880979990889281e+00 -2.881118603470176e+00 -2.881258584058220e+00 + -2.881399937594580e+00 -2.881542668934350e+00 -2.881686782880171e+00 -2.881832284110943e+00 -2.881979177270132e+00 + -2.882127466983199e+00 -2.882277157822698e+00 -2.882428254167564e+00 -2.882580760515876e+00 -2.882734682035907e+00 + -2.882890023809088e+00 -2.883046789899305e+00 -2.883204984344022e+00 -2.883364612092550e+00 -2.883525678164890e+00 + -2.883688186951939e+00 -2.883852142755886e+00 -2.884017550153203e+00 -2.884184413751485e+00 -2.884352738008543e+00 + -2.884522527349429e+00 -2.884693786217942e+00 -2.884866519029743e+00 -2.885040730069195e+00 -2.885216423722596e+00 + -2.885393604915286e+00 -2.885572278454246e+00 -2.885752448133968e+00 -2.885934117732660e+00 -2.886117291975880e+00 + -2.886301975695701e+00 -2.886488173202934e+00 -2.886675888645447e+00 -2.886865126040629e+00 -2.887055889528861e+00 + -2.887248183873006e+00 -2.887442013779875e+00 -2.887637383109605e+00 -2.887834295673936e+00 -2.888032755937675e+00 + -2.888232768417303e+00 -2.888434337182880e+00 -2.888637466267979e+00 -2.888842160006608e+00 -2.889048422705334e+00 + -2.889256258260521e+00 -2.889465670586525e+00 -2.889676664079871e+00 -2.889889243164732e+00 -2.890103411893701e+00 + -2.890319174230825e+00 -2.890536534157536e+00 -2.890755495690120e+00 -2.890976062966901e+00 -2.891198240133124e+00 + -2.891422031239666e+00 -2.891647440271526e+00 -2.891874471044534e+00 -2.892103127449178e+00 -2.892333413843735e+00 + -2.892565334531329e+00 -2.892798893126666e+00 -2.893034093211137e+00 -2.893270938921286e+00 -2.893509434394119e+00 + -2.893749583213363e+00 -2.893991388990754e+00 -2.894234856003367e+00 -2.894479988544211e+00 -2.894726790304690e+00 + -2.894975264880993e+00 -2.895225416090045e+00 -2.895477247800793e+00 -2.895730763869547e+00 -2.895985968110420e+00 + -2.896242864181383e+00 -2.896501455784724e+00 -2.896761746956156e+00 -2.897023741664482e+00 -2.897287443277443e+00 + -2.897552855132549e+00 -2.897819981047455e+00 -2.898088824960355e+00 -2.898359390811481e+00 -2.898631682423090e+00 + -2.898905703143506e+00 -2.899181456336644e+00 -2.899458945902694e+00 -2.899738175745144e+00 -2.900019149244370e+00 + -2.900301869748365e+00 -2.900586340998689e+00 -2.900872566741790e+00 -2.901160550350105e+00 -2.901450295205248e+00 + -2.901741805099525e+00 -2.902035083835090e+00 -2.902330134842785e+00 -2.902626961482952e+00 -2.902925567205262e+00 + -2.903225955501619e+00 -2.903528129943548e+00 -2.903832094083243e+00 -2.904137851315957e+00 -2.904445404943298e+00 + -2.904754758049239e+00 -2.905065913908475e+00 -2.905378876776237e+00 -2.905693650730528e+00 -2.906010238159916e+00 + -2.906328641477237e+00 -2.906648864881840e+00 -2.906970912612057e+00 -2.907294787275635e+00 -2.907620491421319e+00 + -2.907948028992455e+00 -2.908277404008211e+00 -2.908608619396449e+00 -2.908941677961907e+00 -2.909276583108139e+00 + -2.909613338320582e+00 -2.909951946813384e+00 -2.910292411733319e+00 -2.910634736228945e+00 -2.910978923497479e+00 + -2.911324976928991e+00 -2.911672899876866e+00 -2.912022695354926e+00 -2.912374366346152e+00 -2.912727916049746e+00 + -2.913083347735332e+00 -2.913440664738005e+00 -2.913799870293631e+00 -2.914160967175702e+00 -2.914523958205600e+00 + -2.914888846858668e+00 -2.915255636613397e+00 -2.915624330306910e+00 -2.915994930711883e+00 -2.916367440984558e+00 + -2.916741864289805e+00 -2.917118203443422e+00 -2.917496461287171e+00 -2.917876641115726e+00 -2.918258746264796e+00 + -2.918642779781321e+00 -2.919028744569610e+00 -2.919416643252220e+00 -2.919806478556714e+00 -2.920198253912409e+00 + -2.920591972698769e+00 -2.920987637394092e+00 -2.921385250442034e+00 -2.921784815048848e+00 -2.922186334507697e+00 + -2.922589811696789e+00 -2.922995249368979e+00 -2.923402650190686e+00 -2.923812016928122e+00 -2.924223352833133e+00 + -2.924636661116357e+00 -2.925051944337972e+00 -2.925469204994078e+00 -2.925888445974902e+00 -2.926309670222330e+00 + -2.926732880490753e+00 -2.927158079512877e+00 -2.927585270122142e+00 -2.928014455203420e+00 -2.928445637746579e+00 + -2.928878820641719e+00 -2.929314006274898e+00 -2.929751197043434e+00 -2.930190395893735e+00 -2.930631605816839e+00 + -2.931074829433217e+00 -2.931520069294359e+00 -2.931967328046430e+00 -2.932416608452995e+00 -2.932867913652596e+00 + -2.933321246608101e+00 -2.933776609204709e+00 -2.934234003435805e+00 -2.934693432805196e+00 -2.935154900804807e+00 + -2.935618409368617e+00 -2.936083960365691e+00 -2.936551556963400e+00 -2.937021202354904e+00 -2.937492898538196e+00 + -2.937966647468766e+00 -2.938442452127255e+00 -2.938920315642269e+00 -2.939400240709141e+00 -2.939882229846171e+00 + -2.940366285296803e+00 -2.940852409365155e+00 -2.941340604872910e+00 -2.941830874578781e+00 -2.942323220472084e+00 + -2.942817644603974e+00 -2.943314150042391e+00 -2.943812739919231e+00 -2.944313416605433e+00 -2.944816182292809e+00 + -2.945321039217627e+00 -2.945827989752984e+00 -2.946337036774817e+00 -2.946848183049044e+00 -2.947361430398659e+00 + -2.947876780695535e+00 -2.948394236949976e+00 -2.948913802216184e+00 -2.949435478585527e+00 -2.949959268045502e+00 + -2.950485173130951e+00 -2.951013196489051e+00 -2.951543340668991e+00 -2.952075608036040e+00 -2.952610000317780e+00 + -2.953146519451356e+00 -2.953685168849877e+00 -2.954225951787981e+00 -2.954768869510503e+00 -2.955313923227115e+00 + -2.955861116036636e+00 -2.956410451196468e+00 -2.956961930709160e+00 -2.957515556348660e+00 -2.958071330229310e+00 + -2.958629254704319e+00 -2.959189332741965e+00 -2.959751567143614e+00 -2.960315959427935e+00 -2.960882511105170e+00 + -2.961451224934558e+00 -2.962022103774683e+00 -2.962595149632548e+00 -2.963170364371659e+00 -2.963747750133120e+00 + -2.964327309260061e+00 -2.964909044626116e+00 -2.965492958892178e+00 -2.966079053337689e+00 -2.966667329311879e+00 + -2.967257789824588e+00 -2.967850437973655e+00 -2.968445275548303e+00 -2.969042304161408e+00 -2.969641526029084e+00 + -2.970242943489398e+00 -2.970846558764995e+00 -2.971452374012471e+00 -2.972060391239641e+00 -2.972670612566008e+00 + -2.973283040706606e+00 -2.973897678221620e+00 -2.974514526456296e+00 -2.975133586785449e+00 -2.975754861917081e+00 + -2.976378354633252e+00 -2.977004066679083e+00 -2.977631999719257e+00 -2.978262156133669e+00 -2.978894538388579e+00 + -2.979529148580497e+00 -2.980165988659094e+00 -2.980805060356407e+00 -2.981446365534977e+00 -2.982089906796993e+00 + -2.982735686662750e+00 -2.983383706585328e+00 -2.984033968085205e+00 -2.984686474019655e+00 -2.985341227187940e+00 + -2.985998228820469e+00 -2.986657480057624e+00 -2.987318983248517e+00 -2.987982740990944e+00 -2.988648755668708e+00 + -2.989317029403636e+00 -2.989987563483614e+00 -2.990660359350691e+00 -2.991335419897486e+00 -2.992012747963469e+00 + -2.992692344724977e+00 -2.993374211287029e+00 -2.994058350132512e+00 -2.994744763907397e+00 -2.995433454532118e+00 + -2.996124423756546e+00 -2.996817673373822e+00 -2.997513205283444e+00 -2.998211021767050e+00 -2.998911125033880e+00 + -2.999613516621449e+00 -3.000318198120732e+00 -3.001025172008281e+00 -3.001734440748973e+00 -3.002446005875424e+00 + -3.003159868783688e+00 -3.003876031255844e+00 -3.004594495323234e+00 -3.005315263628241e+00 -3.006038338638268e+00 + -3.006763721509772e+00 -3.007491413411925e+00 -3.008221416875716e+00 -3.008953734497098e+00 -3.009688367770095e+00 + -3.010425318036306e+00 -3.011164587129571e+00 -3.011906177113799e+00 -3.012650090480955e+00 -3.013396329533748e+00 + -3.014144895389836e+00 -3.014895789237767e+00 -3.015649013734712e+00 -3.016404571515447e+00 -3.017162463656545e+00 + -3.017922691248400e+00 -3.018685256994897e+00 -3.019450163571901e+00 -3.020217411929727e+00 -3.020987002987051e+00 + -3.021758939261538e+00 -3.022533223477289e+00 -3.023309857585168e+00 -3.024088843221124e+00 -3.024870181534668e+00 + -3.025653873871900e+00 -3.026439922851719e+00 -3.027228331077071e+00 -3.028019099814318e+00 -3.028812230192102e+00 + -3.029607724124773e+00 -3.030405583764245e+00 -3.031205811426982e+00 -3.032008409239547e+00 -3.032813378404362e+00 + -3.033620720145768e+00 -3.034430436699938e+00 -3.035242530366928e+00 -3.036057002690514e+00 -3.036873855182042e+00 + -3.037693089979441e+00 -3.038514709166424e+00 -3.039338713983260e+00 -3.040165105664532e+00 -3.040993886265523e+00 + -3.041825058080565e+00 -3.042658623539453e+00 -3.043494584770202e+00 -3.044332942558215e+00 -3.045173697755793e+00 + -3.046016852825442e+00 -3.046862410359265e+00 -3.047710371857544e+00 -3.048560738605269e+00 -3.049413512118055e+00 + -3.050268694173960e+00 -3.051126287370169e+00 -3.051986294136892e+00 -3.052848715417321e+00 -3.053713552140092e+00 + -3.054580806662679e+00 -3.055450481419417e+00 -3.056322577723267e+00 -3.057197096839233e+00 -3.058074040961857e+00 + -3.058953412280709e+00 -3.059835212035924e+00 -3.060719441405425e+00 -3.061606102267731e+00 -3.062495196777212e+00 + -3.063386727491054e+00 -3.064280696619269e+00 -3.065177104580330e+00 -3.066075951959016e+00 -3.066977241796834e+00 + -3.067880977177860e+00 -3.068787158899685e+00 -3.069695787543252e+00 -3.070606865109353e+00 -3.071520393938529e+00 + -3.072436376310475e+00 -3.073354814200677e+00 -3.074275708428639e+00 -3.075199059975246e+00 -3.076124871622891e+00 + -3.077053146054635e+00 -3.077983883754724e+00 -3.078917085313194e+00 -3.079852753942089e+00 -3.080790892784741e+00 + -3.081731502087634e+00 -3.082674582011150e+00 -3.083620135268097e+00 -3.084568164866139e+00 -3.085518672439932e+00 + -3.086471659270948e+00 -3.087427126600947e+00 -3.088385075921834e+00 -3.089345509765843e+00 -3.090308430518810e+00 + -3.091273838940665e+00 -3.092241735746584e+00 -3.093212123098609e+00 -3.094185003484481e+00 -3.095160379247863e+00 + -3.096138252358965e+00 -3.097118623438258e+00 -3.098101493262150e+00 -3.099086864580523e+00 -3.100074740150514e+00 + -3.101065120784818e+00 -3.102058007230942e+00 -3.103053401920080e+00 -3.104051307417155e+00 -3.105051725138318e+00 + -3.106054656274756e+00 -3.107060102266563e+00 -3.108068064811119e+00 -3.109078546386035e+00 -3.110091549326776e+00 + -3.111107074619999e+00 -3.112125123273996e+00 -3.113145697732417e+00 -3.114168800386244e+00 -3.115194431980418e+00 + -3.116222593318652e+00 -3.117253287085768e+00 -3.118286516039464e+00 -3.119322281347848e+00 -3.120360583948459e+00 + -3.121401425446115e+00 -3.122444807777008e+00 -3.123490733535526e+00 -3.124539205035892e+00 -3.125590222813487e+00 + -3.126643787500575e+00 -3.127699901895779e+00 -3.128758568841378e+00 -3.129819789187914e+00 -3.130883563634097e+00 + -3.131949894263071e+00 -3.133018783446947e+00 -3.134090233329311e+00 -3.135164245759380e+00 -3.136240821637432e+00 + -3.137319962039862e+00 -3.138401669696502e+00 -3.139485947209752e+00 -3.140572795018887e+00 -3.141662213641400e+00 + -3.142754206070774e+00 -3.143848775370422e+00 -3.144945922407469e+00 -3.146045647810740e+00 -3.147147953452156e+00 + -3.148252841552866e+00 -3.149360314487843e+00 -3.150470374336312e+00 -3.151583021840677e+00 -3.152698257836541e+00 + -3.153816084869129e+00 -3.154936505573740e+00 -3.156059521236365e+00 -3.157185132934072e+00 -3.158313342257567e+00 + -3.159444151127381e+00 -3.160577562269707e+00 -3.161713578058511e+00 -3.162852198653188e+00 -3.163993424406347e+00 + -3.165137258658042e+00 -3.166283704751602e+00 -3.167432763056018e+00 -3.168584433853514e+00 -3.169738720053572e+00 + -3.170895624664928e+00 -3.172055148466089e+00 -3.173217292044841e+00 -3.174382057456326e+00 -3.175549447119023e+00 + -3.176719463437418e+00 -3.177892108465135e+00 -3.179067382866334e+00 -3.180245287430775e+00 -3.181425824840074e+00 + -3.182608997807819e+00 -3.183794807283624e+00 -3.184983254083125e+00 -3.186174340249998e+00 -3.187368068149750e+00 + -3.188564440207163e+00 -3.189763458501066e+00 -3.190965123667219e+00 -3.192169436468204e+00 -3.193376399616980e+00 + -3.194586015855556e+00 -3.195798286091764e+00 -3.197013211234878e+00 -3.198230794034108e+00 -3.199451037209393e+00 + -3.200673941523666e+00 -3.201899507599942e+00 -3.203127737458575e+00 -3.204358633517069e+00 -3.205592198384193e+00 + -3.206828434306502e+00 -3.208067341890413e+00 -3.209308921829809e+00 -3.210553176808560e+00 -3.211800109598040e+00 + -3.213049721329648e+00 -3.214302012941719e+00 -3.215556986240311e+00 -3.216814643392485e+00 -3.218074987141617e+00 + -3.219338019837523e+00 -3.220603741679474e+00 -3.221872153094758e+00 -3.223143257573258e+00 -3.224417058543514e+00 + -3.225693556126080e+00 -3.226972750453261e+00 -3.228254645012327e+00 -3.229539243310538e+00 -3.230826545580160e+00 + -3.232116551831102e+00 -3.233409264458852e+00 -3.234704686394765e+00 -3.236002820328103e+00 -3.237303668413965e+00 + -3.238607230912866e+00 -3.239913508296335e+00 -3.241222503774527e+00 -3.242534220589764e+00 -3.243848659374397e+00 + -3.245165820540432e+00 -3.246485706228452e+00 -3.247808319087641e+00 -3.249133662073000e+00 -3.250461737608715e+00 + -3.251792545689908e+00 -3.253126086515263e+00 -3.254462363526813e+00 -3.255801380232294e+00 -3.257143137158927e+00 + -3.258487634736825e+00 -3.259834875988172e+00 -3.261184864013611e+00 -3.262537599635538e+00 -3.263893083453904e+00 + -3.265251317457108e+00 -3.266612304094287e+00 -3.267976046269084e+00 -3.269342546452898e+00 -3.270711804933652e+00 + -3.272083822201368e+00 -3.273458601737915e+00 -3.274836147008249e+00 -3.276216458417835e+00 -3.277599536106921e+00 + -3.278985382214368e+00 -3.280373999474050e+00 -3.281765391001240e+00 -3.283159559381294e+00 -3.284556504698475e+00 + -3.285956227223949e+00 -3.287358730477579e+00 -3.288764018003004e+00 -3.290172090190266e+00 -3.291582947391597e+00 + -3.292996592961586e+00 -3.294413030263101e+00 -3.295832259689772e+00 -3.297254281509102e+00 -3.298679098453292e+00 + -3.300106713632883e+00 -3.301537129207062e+00 -3.302970346938195e+00 -3.304406367952729e+00 -3.305845193592728e+00 + -3.307286826698660e+00 -3.308731270022015e+00 -3.310178524459931e+00 -3.311628590794006e+00 -3.313081471198005e+00 + -3.314537168271639e+00 -3.315995684926260e+00 -3.317457023622331e+00 -3.318921184705128e+00 -3.320388168757214e+00 + -3.321857979425488e+00 -3.323330620242623e+00 -3.324806091220061e+00 -3.326284392457951e+00 -3.327765527932510e+00 + -3.329249501635255e+00 -3.330736313742837e+00 -3.332225964151081e+00 -3.333718455447356e+00 -3.335213790816533e+00 + -3.336711973141963e+00 -3.338213004741188e+00 -3.339716885970061e+00 -3.341223617428788e+00 -3.342733202656698e+00 + -3.344245645175923e+00 -3.345760945500658e+00 -3.347279103963591e+00 -3.348800123179309e+00 -3.350324006237700e+00 + -3.351850755847976e+00 -3.353380374190363e+00 -3.354912861709826e+00 -3.356448219173252e+00 -3.357986450370467e+00 + -3.359527558984502e+00 -3.361071545248283e+00 -3.362618409368982e+00 -3.364168154900880e+00 -3.365720785489059e+00 + -3.367276301794712e+00 -3.368834704260551e+00 -3.370395995439248e+00 -3.371960178388195e+00 -3.373527256073704e+00 + -3.375097230883950e+00 -3.376670102985606e+00 -3.378245872877927e+00 -3.379824544611959e+00 -3.381406122149057e+00 + -3.382990605539988e+00 -3.384577994855671e+00 -3.386168294158221e+00 -3.387761507524905e+00 -3.389357635102426e+00 + -3.390956676825633e+00 -3.392558635712520e+00 -3.394163515324364e+00 -3.395771318312439e+00 -3.397382046745834e+00 + -3.398995701274896e+00 -3.400612282828281e+00 -3.402231794866633e+00 -3.403854240867662e+00 -3.405479621845378e+00 + -3.407107938586081e+00 -3.408739193428916e+00 -3.410373389185216e+00 -3.412010529002203e+00 -3.413650615518111e+00 + -3.415293648999326e+00 -3.416939629995896e+00 -3.418588562564371e+00 -3.420240450691449e+00 -3.421895294577897e+00 + -3.423553094414080e+00 -3.425213854134680e+00 -3.426877577792018e+00 -3.428544266164663e+00 -3.430213919689846e+00 + -3.431886540713168e+00 -3.433562132145608e+00 -3.435240697251321e+00 -3.436922238808692e+00 -3.438606757299870e+00 + -3.440294253397158e+00 -3.441984730829699e+00 -3.443678193368453e+00 -3.445374641894819e+00 -3.447074077051543e+00 + -3.448776501416308e+00 -3.450481918039497e+00 -3.452190329927366e+00 -3.453901739641781e+00 -3.455616148011183e+00 + -3.457333556082980e+00 -3.459053967513855e+00 -3.460777385853499e+00 -3.462503811614361e+00 -3.464233245386620e+00 + -3.465965691108627e+00 -3.467701152771073e+00 -3.469439631225878e+00 -3.471181127031554e+00 -3.472925642711720e+00 + -3.474673181335264e+00 -3.476423746187027e+00 -3.478177340029919e+00 -3.479933963323171e+00 -3.481693616824597e+00 + -3.483456304790008e+00 -3.485222031388338e+00 -3.486990796943019e+00 -3.488762601570069e+00 -3.490537448401365e+00 + -3.492315341151373e+00 -3.494096282849095e+00 -3.495880275915030e+00 -3.497667321021135e+00 -3.499457419173128e+00 + -3.501250574460328e+00 -3.503046790838973e+00 -3.504846068649357e+00 -3.506648408298966e+00 -3.508453814079994e+00 + -3.510262290280344e+00 -3.512073837286068e+00 -3.513888455301771e+00 -3.515706147708129e+00 -3.517526918395819e+00 + -3.519350770119465e+00 -3.521177705073145e+00 -3.523007724344773e+00 -3.524840829328240e+00 -3.526677023747485e+00 + -3.528516311267811e+00 -3.530358692989965e+00 -3.532204169811781e+00 -3.534052744384031e+00 -3.535904419874647e+00 + -3.537759199767289e+00 -3.539617087002065e+00 -3.541478082029144e+00 -3.543342185630307e+00 -3.545209402403708e+00 + -3.547079736777425e+00 -3.548953188682862e+00 -3.550829758143615e+00 -3.552709450048714e+00 -3.554592269345012e+00 + -3.556478216345227e+00 -3.558367291032073e+00 -3.560259496702344e+00 -3.562154837300620e+00 -3.564053316048536e+00 + -3.565954935512961e+00 -3.567859696364639e+00 -3.569767599635964e+00 -3.571678649702049e+00 -3.573592850895430e+00 + -3.575510204035641e+00 -3.577430709619281e+00 -3.579354370364244e+00 -3.581281189700099e+00 -3.583211171681835e+00 + -3.585144319721653e+00 -3.587080634035166e+00 -3.589020115063184e+00 -3.590962767343901e+00 -3.592908595415016e+00 + -3.594857599714854e+00 -3.596809780701911e+00 -3.598765143014713e+00 -3.600723691343250e+00 -3.602685426403352e+00 + -3.604650348553174e+00 -3.606618460694309e+00 -3.608589766473437e+00 -3.610564269974137e+00 -3.612541974573128e+00 + -3.614522880382737e+00 -3.616506987803558e+00 -3.618494301653613e+00 -3.620484826823921e+00 -3.622478564080036e+00 + -3.624475513850586e+00 -3.626475679341938e+00 -3.628479064392689e+00 -3.630485672592619e+00 -3.632495506905407e+00 + -3.634508568039156e+00 -3.636524857004877e+00 -3.638544378280809e+00 -3.640567136287224e+00 -3.642593131745308e+00 + -3.644622365423449e+00 -3.646654841977913e+00 -3.648690566065893e+00 -3.650729538460438e+00 -3.652771759626902e+00 + -3.654817232683972e+00 -3.656865961450936e+00 -3.658917949896158e+00 -3.660973201344661e+00 -3.663031716399031e+00 + -3.665093495929850e+00 -3.667158544602091e+00 -3.669226867066577e+00 -3.671298464123134e+00 -3.673373336353373e+00 + -3.675451487317045e+00 -3.677532921173144e+00 -3.679617641499514e+00 -3.681705651197185e+00 -3.683796951041065e+00 + -3.685891542158701e+00 -3.687989429214330e+00 -3.690090616811484e+00 -3.692195105774196e+00 -3.694302896934788e+00 + -3.696413994938233e+00 -3.698528404463948e+00 -3.700646126516483e+00 -3.702767161822413e+00 -3.704891513671268e+00 + -3.707019186005269e+00 -3.709150182814482e+00 -3.711284507419287e+00 -3.713422160413482e+00 -3.715563142750310e+00 + -3.717707459547388e+00 -3.719855115839397e+00 -3.722006112164920e+00 -3.724160448777861e+00 -3.726318129289493e+00 + -3.728479158099316e+00 -3.730643539402395e+00 -3.732811276589775e+00 -3.734982370040845e+00 -3.737156820495128e+00 + -3.739334633144358e+00 -3.741515813112657e+00 -3.743700360801490e+00 -3.745888276640612e+00 -3.748079565895588e+00 + -3.750274233918474e+00 -3.752472281571475e+00 -3.754673709335501e+00 -3.756878520656135e+00 -3.759086719721971e+00 + -3.761298310728990e+00 -3.763513297133539e+00 -3.765731679426046e+00 -3.767953458457793e+00 -3.770178639489403e+00 + -3.772407227784000e+00 -3.774639224205367e+00 -3.776874629489326e+00 -3.779113448259203e+00 -3.781355685279774e+00 + -3.783601341994148e+00 -3.785850419525435e+00 -3.788102921038436e+00 -3.790358850378410e+00 -3.792618212070778e+00 + -3.794881010002580e+00 -3.797147244827153e+00 -3.799416917428862e+00 -3.801690032849888e+00 -3.803966596190487e+00 + -3.806246608625402e+00 -3.808530070983860e+00 -3.810816986638503e+00 -3.813107359693981e+00 -3.815401194639556e+00 + -3.817698495297397e+00 -3.819999262436677e+00 -3.822303497093916e+00 -3.824611204428034e+00 -3.826922389548483e+00 + -3.829237053244454e+00 -3.831555196353405e+00 -3.833876824226091e+00 -3.836201942201953e+00 -3.838530551061888e+00 + -3.840862651326505e+00 -3.843198247033778e+00 -3.845537342919513e+00 -3.847879942993476e+00 -3.850226050562932e+00 + -3.852575666851148e+00 -3.854928793361406e+00 -3.857285434801036e+00 -3.859645595950435e+00 -3.862009278678248e+00 + -3.864376484523473e+00 -3.866747216618300e+00 -3.869121478726629e+00 -3.871499275546047e+00 -3.873880611182955e+00 + -3.876265486445322e+00 -3.878653902389424e+00 -3.881045864363169e+00 -3.883441377687285e+00 -3.885840443282151e+00 + -3.888243062046155e+00 -3.890649239190073e+00 -3.893058980047241e+00 -3.895472286128841e+00 -3.897889158595383e+00 + -3.900309601026809e+00 -3.902733617656517e+00 -3.905161212912323e+00 -3.907592390603840e+00 -3.910027151873432e+00 + -3.912465498159137e+00 -3.914907434748928e+00 -3.917352966879188e+00 -3.919802095729995e+00 -3.922254822259626e+00 + -3.924711150595445e+00 -3.927171085542605e+00 -3.929634631448325e+00 -3.932101791843537e+00 -3.934572567451927e+00 + -3.937046959532740e+00 -3.939524974294695e+00 -3.942006617767883e+00 -3.944491890318428e+00 -3.946980792233828e+00 + -3.949473329151056e+00 -3.951969506957779e+00 -3.954469327195002e+00 -3.956972790971958e+00 -3.959479902017460e+00 + -3.961990664762499e+00 -3.964505083827194e+00 -3.967023163167552e+00 -3.969544903893966e+00 -3.972070307479498e+00 + -3.974599379693463e+00 -3.977132126179292e+00 -3.979668547780628e+00 -3.982208645099321e+00 -3.984752422569858e+00 + -3.987299885436030e+00 -3.989851038346246e+00 -3.992405885069993e+00 -3.994964426456437e+00 -3.997526663815754e+00 + -4.000092603222488e+00 -4.002662250581340e+00 -4.005235606353252e+00 -4.007812671084819e+00 -4.010393451108941e+00 + -4.012977952843547e+00 -4.015566177260363e+00 -4.018158124897606e+00 -4.020753800005660e+00 -4.023353207686703e+00 + -4.025956352737950e+00 -4.028563239140089e+00 -4.031173867912699e+00 -4.033788240453579e+00 -4.036406362634527e+00 + -4.039028240314873e+00 -4.041653874830120e+00 -4.044283267179555e+00 -4.046916421541453e+00 -4.049553342894448e+00 + -4.052194036239657e+00 -4.054838505774454e+00 -4.057486752458788e+00 -4.060138777601743e+00 -4.062794587146426e+00 + -4.065454187011838e+00 -4.068117578386588e+00 -4.070784762448621e+00 -4.073455745063631e+00 -4.076130532171974e+00 + -4.078809125324914e+00 -4.081491525652789e+00 -4.084177736991329e+00 -4.086867764089578e+00 -4.089561612644448e+00 + -4.092259287473573e+00 -4.094960788929582e+00 -4.097666117736884e+00 -4.100375280572002e+00 -4.103088284211306e+00 + -4.105805129878449e+00 -4.108525818267906e+00 -4.111250353510137e+00 -4.113978740671802e+00 -4.116710985128399e+00 + -4.119447091422845e+00 -4.122187060458915e+00 -4.124930893522407e+00 -4.127678597066370e+00 -4.130430177441071e+00 + -4.133185635418395e+00 -4.135944971791250e+00 -4.138708193015015e+00 -4.141475305696859e+00 -4.144246311388639e+00 + -4.147021211130915e+00 -4.149800008974389e+00 -4.152582709893380e+00 -4.155369319546537e+00 -4.158159842709882e+00 + -4.160954279944561e+00 -4.163752632239020e+00 -4.166554906505763e+00 -4.169361109687737e+00 -4.172171242925584e+00 + -4.174985306927709e+00 -4.177803306475812e+00 -4.180625247195196e+00 -4.183451134012302e+00 -4.186280970992621e+00 + -4.189114759456745e+00 -4.191952501240072e+00 -4.194794202982180e+00 -4.197639871116617e+00 -4.200489506448629e+00 + -4.203343109834506e+00 -4.206200687962978e+00 -4.209062247657938e+00 -4.211927790451525e+00 -4.214797317400862e+00 + -4.217670832954751e+00 -4.220548342457539e+00 -4.223429851444060e+00 -4.226315364591702e+00 -4.229204882957573e+00 + -4.232098408004153e+00 -4.234995946435681e+00 -4.237897504949240e+00 -4.240803084971501e+00 -4.243712687544032e+00 + -4.246626317438374e+00 -4.249543980343883e+00 -4.252465681891192e+00 -4.255391426705907e+00 -4.258321215452209e+00 + -4.261255049361277e+00 -4.264192935893713e+00 -4.267134882389568e+00 -4.270080889477248e+00 -4.273030957691918e+00 + -4.275985093907401e+00 -4.278943305249538e+00 -4.281905593513557e+00 -4.284871959946388e+00 -4.287842408932329e+00 + -4.290816945777364e+00 -4.293795576336856e+00 -4.296778305653331e+00 -4.299765134968560e+00 -4.302756065899131e+00 + -4.305751105361620e+00 -4.308750260118541e+00 -4.311753531016159e+00 -4.314760919008608e+00 -4.317772431397722e+00 + -4.320788075591533e+00 -4.323807853075197e+00 -4.326831764792573e+00 -4.329859815445223e+00 -4.332892010759197e+00 + -4.335928356800809e+00 -4.338968858700405e+00 -4.342013517504197e+00 -4.345062334602749e+00 -4.348115316848165e+00 + -4.351172471198577e+00 -4.354233799574710e+00 -4.357299303495111e+00 -4.360368987907023e+00 -4.363442858590077e+00 + -4.366520921224746e+00 -4.369603180592436e+00 -4.372689637977453e+00 -4.375780295145305e+00 -4.378875159283436e+00 + -4.381974237486932e+00 -4.385077531059527e+00 -4.388185041309383e+00 -4.391296775353732e+00 -4.394412740393244e+00 + -4.397532938153312e+00 -4.400657369887305e+00 -4.403786040435705e+00 -4.406918955633090e+00 -4.410056121703311e+00 + -4.413197543940346e+00 -4.416343223529426e+00 -4.419493162052248e+00 -4.422647366785128e+00 -4.425805845047289e+00 + -4.428968598634965e+00 -4.432135628892382e+00 -4.435306940878729e+00 -4.438482540596634e+00 -4.441662434107552e+00 + -4.444846626509031e+00 -4.448035118984182e+00 -4.451227913265940e+00 -4.454425017200977e+00 -4.457626438485681e+00 + -4.460832178101560e+00 -4.464042236947444e+00 -4.467256622306292e+00 -4.470475341701105e+00 -4.473698397230936e+00 + -4.476925790483307e+00 -4.480157526423565e+00 -4.483393610985775e+00 -4.486634050601043e+00 -4.489878850742320e+00 + -4.493128012552872e+00 -4.496381537630165e+00 -4.499639433718156e+00 -4.502901708553144e+00 -4.506168363694287e+00 + -4.509439400268067e+00 -4.512714823847340e+00 -4.515994641019672e+00 -4.519278857985080e+00 -4.522567479881829e+00 + -4.525860507988668e+00 -4.529157944122721e+00 -4.532459796114085e+00 -4.535766071688615e+00 -4.539076772142213e+00 + -4.542391898765175e+00 -4.545711459255270e+00 -4.549035461446213e+00 -4.552363907308053e+00 -4.555696798263391e+00 + -4.559034139408705e+00 -4.562375936904542e+00 -4.565722197493832e+00 -4.569072926948550e+00 -4.572428126574475e+00 + -4.575787798129616e+00 -4.579151949647104e+00 -4.582520589075836e+00 -4.585893717752653e+00 -4.589271336639746e+00 + -4.592653451812744e+00 -4.596040070428725e+00 -4.599431198857142e+00 -4.602826842289216e+00 -4.606227001990830e+00 + -4.609631679831751e+00 -4.613040884022596e+00 -4.616454622677202e+00 -4.619872897181441e+00 -4.623295708819967e+00 + -4.626723065200532e+00 -4.630154974192006e+00 -4.633591438384649e+00 -4.637032459790966e+00 -4.640478043391029e+00 + -4.643928195196958e+00 -4.647382922381489e+00 -4.650842231139545e+00 -4.654306122594169e+00 -4.657774598295235e+00 + -4.661247666571815e+00 -4.664725335805659e+00 -4.668207607810025e+00 -4.671694483876048e+00 -4.675185969774820e+00 + -4.678682072408495e+00 -4.682182798723523e+00 -4.685688154522786e+00 -4.689198140990583e+00 -4.692712759891060e+00 + -4.696232019926335e+00 -4.699755929666950e+00 -4.703284490219185e+00 -4.706817702626076e+00 -4.710355575141943e+00 + -4.713898116290367e+00 -4.717445328460708e+00 -4.720997213393779e+00 -4.724553776370427e+00 -4.728115023824750e+00 + -4.731680963263822e+00 -4.735251601139764e+00 -4.738826938611875e+00 -4.742406977241646e+00 -4.745991725492132e+00 + -4.749581191958943e+00 -4.753175378866366e+00 -4.756774287871428e+00 -4.760377924733439e+00 -4.763986296289299e+00 + -4.767599409584012e+00 -4.771217270615820e+00 -4.774839880987831e+00 -4.778467242836293e+00 -4.782099364825118e+00 + -4.785736255481164e+00 -4.789377916255392e+00 -4.793024348603915e+00 -4.796675561079348e+00 -4.800331562360717e+00 + -4.803992354536202e+00 -4.807657939173200e+00 -4.811328322346788e+00 -4.815003511262576e+00 -4.818683513140625e+00 + -4.822368334073276e+00 -4.826057975627521e+00 -4.829752439872078e+00 -4.833451735407881e+00 -4.837155870922971e+00 + -4.840864848921632e+00 -4.844578671297884e+00 -4.848297343688468e+00 -4.852020872870312e+00 -4.855749266438375e+00 + -4.859482530948563e+00 -4.863220667982479e+00 -4.866963679596293e+00 -4.870711574718753e+00 -4.874464362148352e+00 + -4.878222043289993e+00 -4.881984619584831e+00 -4.885752100012597e+00 -4.889524493673498e+00 -4.893301802611106e+00 + -4.897084028340568e+00 -4.900871177319985e+00 -4.904663257144151e+00 -4.908460275011687e+00 -4.912262236942902e+00 + -4.916069144641015e+00 -4.919881000415621e+00 -4.923697813318887e+00 -4.927519592402767e+00 -4.931346339975771e+00 + -4.935178057730553e+00 -4.939014751639765e+00 -4.942856428895341e+00 -4.946703097286389e+00 -4.950554763469543e+00 + -4.954411428974413e+00 -4.958273095882141e+00 -4.962139773607051e+00 -4.966011471374763e+00 -4.969888190322918e+00 + -4.973769931656962e+00 -4.977656704941523e+00 -4.981548519919207e+00 -4.985445378685372e+00 -4.989347282670139e+00 + -4.993254238289898e+00 -4.997166253181426e+00 -5.001083334876794e+00 -5.005005489750602e+00 -5.008932719652265e+00 + -5.012865027026571e+00 -5.016802421224969e+00 -5.020744911403345e+00 -5.024692499028711e+00 -5.028645185619313e+00 + -5.032602980587180e+00 -5.036565893470627e+00 -5.040533926419334e+00 -5.044507081015939e+00 -5.048485363963517e+00 + -5.052468783200935e+00 -5.056457346489804e+00 -5.060451060330298e+00 -5.064449926354071e+00 -5.068453946757710e+00 + -5.072463130865962e+00 -5.076477488052552e+00 -5.080497020758939e+00 -5.084521730904982e+00 -5.088551625256381e+00 + -5.092586711696772e+00 -5.096626997735727e+00 -5.100672489712744e+00 -5.104723189661156e+00 -5.108779100266077e+00 + -5.112840231125939e+00 -5.116906591587866e+00 -5.120978183080382e+00 -5.125055007124604e+00 -5.129137073530554e+00 + -5.133224392250169e+00 -5.137316965514153e+00 -5.141414794882011e+00 -5.145517886949661e+00 -5.149626249667421e+00 + -5.153739891366810e+00 -5.157858819095347e+00 -5.161983034383363e+00 -5.166112539324860e+00 -5.170247343785729e+00 + -5.174387457616170e+00 -5.178532882831751e+00 -5.182683620936045e+00 -5.186839679219287e+00 -5.191001066208124e+00 + -5.195167789588259e+00 -5.199339855740569e+00 -5.203517266667578e+00 -5.207700025095241e+00 -5.211888141021600e+00 + -5.216081624199723e+00 -5.220280476130696e+00 -5.224484698310884e+00 -5.228694300469721e+00 -5.232909292611727e+00 + -5.237129677608738e+00 -5.241355457600706e+00 -5.245586638932716e+00 -5.249823229255573e+00 -5.254065237237846e+00 + -5.258312670369801e+00 -5.262565530410686e+00 -5.266823819583928e+00 -5.271087547700648e+00 -5.275356724632263e+00 + -5.279631352903723e+00 -5.283911434448228e+00 -5.288196976178466e+00 -5.292487986327965e+00 -5.296784473434150e+00 + -5.301086444698075e+00 -5.305393901671405e+00 -5.309706846569482e+00 -5.314025289911748e+00 -5.318349242027271e+00 + -5.322678704179561e+00 -5.327013677718438e+00 -5.331354173404511e+00 -5.335700202105029e+00 -5.340051765703035e+00 + -5.344408865432155e+00 -5.348771508912536e+00 -5.353139705124518e+00 -5.357513462102698e+00 -5.361892786505948e+00 + -5.366277680435933e+00 -5.370668146715638e+00 -5.375064195610523e+00 -5.379465837274747e+00 -5.383873073974794e+00 + -5.388285907439377e+00 -5.392704345133761e+00 -5.397128395890300e+00 -5.401558068273167e+00 -5.405993369375257e+00 + -5.410434300672517e+00 -5.414880864443758e+00 -5.419333071796174e+00 -5.423790933634701e+00 -5.428254451226888e+00 + -5.432723625834648e+00 -5.437198468334746e+00 -5.441678989715544e+00 -5.446165191796978e+00 -5.450657075821366e+00 + -5.455154649888983e+00 -5.459657923508107e+00 -5.464166904961132e+00 -5.468681600997277e+00 -5.473202013458992e+00 + -5.477728145011161e+00 -5.482260006515158e+00 -5.486797608759512e+00 -5.491340954044872e+00 -5.495890044003880e+00 + -5.500444886085005e+00 -5.505005489175888e+00 -5.509571862105057e+00 -5.514144012303452e+00 -5.518721941670775e+00 + -5.523305652810777e+00 -5.527895156674663e+00 -5.532490463993778e+00 -5.537091576272570e+00 -5.541698495053784e+00 + -5.546311231260242e+00 -5.550929796018560e+00 -5.555554191890502e+00 -5.560184420697174e+00 -5.564820489861896e+00 + -5.569462408240030e+00 -5.574110184812914e+00 -5.578763827204064e+00 -5.583423337479740e+00 -5.588088718319627e+00 + -5.592759980414353e+00 -5.597437134453794e+00 -5.602120183113874e+00 -5.606809128447821e+00 -5.611503978032022e+00 + -5.616204740842362e+00 -5.620911425929568e+00 -5.625624040919794e+00 -5.630342587666039e+00 -5.635067068763208e+00 + -5.639797495546991e+00 -5.644533879170592e+00 -5.649276221316504e+00 -5.654024523642824e+00 -5.658778797180806e+00 + -5.663539053129186e+00 -5.668305293983524e+00 -5.673077521581335e+00 -5.677855743831122e+00 -5.682639970117403e+00 + -5.687430209657800e+00 -5.692226470164904e+00 -5.697028753498052e+00 -5.701837062188433e+00 -5.706651407307890e+00 + -5.711471800003379e+00 -5.716298243181697e+00 -5.721130739014699e+00 -5.725969294974640e+00 -5.730813920019088e+00 + -5.735664623746429e+00 -5.740521414337008e+00 -5.745384293658165e+00 -5.750253264219532e+00 -5.755128337412918e+00 + -5.760009524502356e+00 -5.764896827358567e+00 -5.769790247833362e+00 -5.774689797096235e+00 -5.779595486532854e+00 + -5.784507319075965e+00 -5.789425296924678e+00 -5.794349427796488e+00 -5.799279720850703e+00 -5.804216185495535e+00 + -5.809158829710795e+00 -5.814107655513784e+00 -5.819062665706917e+00 -5.824023872195552e+00 -5.828991286593848e+00 + -5.833964910248241e+00 -5.838944744496904e+00 -5.843930800912663e+00 -5.848923091405570e+00 -5.853921618999967e+00 + -5.858926385866531e+00 -5.863937399646989e+00 -5.868954669511408e+00 -5.873978205272220e+00 -5.879008015280387e+00 + -5.884044101398642e+00 -5.889086466127434e+00 -5.894135121006329e+00 -5.899190077679159e+00 -5.904251339167730e+00 + -5.909318907675908e+00 -5.914392790757818e+00 -5.919472997569684e+00 -5.924559538325873e+00 -5.929652421747786e+00 + -5.934751649526802e+00 -5.939857223994977e+00 -5.944969157077114e+00 -5.950087460588470e+00 -5.955212136313389e+00 + -5.960343186070434e+00 -5.965480621845905e+00 -5.970624455737114e+00 -5.975774690117698e+00 -5.980931326619691e+00 + -5.986094373632355e+00 -5.991263841186835e+00 -5.996439739124646e+00 -6.001622075628632e+00 -6.006810852436582e+00 + -6.012006072105073e+00 -6.017207746910874e+00 -6.022415889122929e+00 -6.027630501258702e+00 -6.032851585034692e+00 + -6.038079148714933e+00 -6.043313202169935e+00 -6.048553755148549e+00 -6.053800815867540e+00 -6.059054386536941e+00 + -6.064314470164098e+00 -6.069581078952353e+00 -6.074854224823474e+00 -6.080133909377011e+00 -6.085420134277816e+00 + -6.090712911774160e+00 -6.096012254273324e+00 -6.101318164235261e+00 -6.106630643404864e+00 -6.111949700614082e+00 + -6.117275346267099e+00 -6.122607589969956e+00 -6.127946439669295e+00 -6.133291897472249e+00 -6.138643966380033e+00 + -6.144002658809652e+00 -6.149367987035877e+00 -6.154739953348771e+00 -6.160118559324411e+00 -6.165503813667637e+00 + -6.170895726810269e+00 -6.176294308963303e+00 -6.181699568610070e+00 -6.187111507544039e+00 -6.192530128394146e+00 + -6.197955443821025e+00 -6.203387466288188e+00 -6.208826197438971e+00 -6.214271638855750e+00 -6.219723802697215e+00 + -6.225182701452046e+00 -6.230648338352550e+00 -6.236120715733020e+00 -6.241599841591995e+00 -6.247085725644578e+00 + -6.252578378807894e+00 -6.258077810320607e+00 -6.263584021505486e+00 -6.269097014385768e+00 -6.274616801702433e+00 + -6.280143396389799e+00 -6.285676801437800e+00 -6.291217018848358e+00 -6.296764056615736e+00 -6.302317924554712e+00 + -6.307878633769864e+00 -6.313446193664602e+00 -6.319020605547922e+00 -6.324601871487839e+00 -6.330190004682891e+00 + -6.335785018206249e+00 -6.341386913499118e+00 -6.346995691980793e+00 -6.352611366614864e+00 -6.358233950592316e+00 + -6.363863446469443e+00 -6.369499855900457e+00 -6.375143187565898e+00 -6.380793451939097e+00 -6.386450659638202e+00 + -6.392114819555641e+00 -6.397785933536126e+00 -6.403464004233896e+00 -6.409149044588990e+00 -6.414841067513965e+00 + -6.420540075525660e+00 -6.426246070301758e+00 -6.431959060559017e+00 -6.437679056917068e+00 -6.443406070567963e+00 + -6.449140110779302e+00 -6.454881178548420e+00 -6.460629275812415e+00 -6.466384416537711e+00 -6.472146614484319e+00 + -6.477915870557313e+00 -6.483692185657911e+00 -6.489475573526882e+00 -6.495266048141532e+00 -6.501063611585819e+00 + -6.506868264986595e+00 -6.512680017535606e+00 -6.518498880384615e+00 -6.524324864460620e+00 -6.530157978732819e+00 + -6.535998224564008e+00 -6.541845604255500e+00 -6.547700131469085e+00 -6.553561819849423e+00 -6.559430671612207e+00 + -6.565306688088189e+00 -6.571189878497283e+00 -6.577080253965905e+00 -6.582977825357318e+00 -6.588882601649868e+00 + -6.594794584545345e+00 -6.600713776640095e+00 -6.606640191385222e+00 -6.612573842086468e+00 -6.618514730613387e+00 + -6.624462858757332e+00 -6.630418239433046e+00 -6.636380885778538e+00 -6.642350800701542e+00 -6.648327986279747e+00 + -6.654312451500913e+00 -6.660304207148021e+00 -6.666303264274883e+00 -6.672309632144893e+00 -6.678323312588955e+00 + -6.684344308236361e+00 -6.690372632342481e+00 -6.696408298209058e+00 -6.702451308697293e+00 -6.708501665794167e+00 + -6.714559378430309e+00 -6.720624457416141e+00 -6.726696914137652e+00 -6.732776758078630e+00 -6.738863990538500e+00 + -6.744958613795213e+00 -6.751060642225177e+00 -6.757170089911689e+00 -6.763286957667176e+00 -6.769411246357500e+00 + -6.775542970333119e+00 -6.781682144164359e+00 -6.787828769816468e+00 -6.793982848306231e+00 -6.800144389461610e+00 + -6.806313405086916e+00 -6.812489906080716e+00 -6.818673901333698e+00 -6.824865392610781e+00 -6.831064382650163e+00 + -6.837270885208925e+00 -6.843484914029985e+00 -6.849706471780753e+00 -6.855935560196301e+00 -6.862172188357874e+00 + -6.868416367348060e+00 -6.874668108908677e+00 -6.880927422841348e+00 -6.887194310527692e+00 -6.893468774218006e+00 + -6.899750828057308e+00 -6.906040486046904e+00 -6.912337749718504e+00 -6.918642620544160e+00 -6.924955112226868e+00 + -6.931275238742860e+00 -6.937603002930438e+00 -6.943938406703657e+00 -6.950281459417487e+00 -6.956632172330878e+00 + -6.962990556877839e+00 -6.969356622516854e+00 -6.975730370629293e+00 -6.982111803620415e+00 -6.988500936068168e+00 + -6.994897782349220e+00 -7.001302343862422e+00 -7.007714621896787e+00 -7.014134630279748e+00 -7.020562383120512e+00 + -7.026997883116998e+00 -7.033441132058707e+00 -7.039892139512705e+00 -7.046350916975187e+00 -7.052817475881351e+00 + -7.059291825658977e+00 -7.065773967767182e+00 -7.072263904706783e+00 -7.078761651114045e+00 -7.085267221537997e+00 + -7.091780618043302e+00 -7.098301841735545e+00 -7.104830902368316e+00 -7.111367811800725e+00 -7.117912581665987e+00 + -7.124465221496127e+00 -7.131025732644298e+00 -7.137594117517873e+00 -7.144170390919956e+00 -7.150754567380619e+00 + -7.157346647942116e+00 -7.163946633668109e+00 -7.170554539195697e+00 -7.177170379365883e+00 -7.183794156261903e+00 + -7.190425870988396e+00 -7.197065533493338e+00 -7.203713155838439e+00 -7.210368749697043e+00 -7.217032324589560e+00 + -7.223703881813015e+00 -7.230383423705708e+00 -7.237070964994412e+00 -7.243766520390449e+00 -7.250470092154861e+00 + -7.257181681552523e+00 -7.263901298313877e+00 -7.270628954301988e+00 -7.277364661444877e+00 -7.284108429522252e+00 + -7.290860259655573e+00 -7.297620154032538e+00 -7.304388127764033e+00 -7.311164195737019e+00 -7.317948359019635e+00 + -7.324740618617562e+00 -7.331540989105481e+00 -7.338349485298712e+00 -7.345166109406192e+00 -7.351990862719772e+00 + -7.358823755469352e+00 -7.365664799915581e+00 -7.372514007504119e+00 -7.379371387574386e+00 -7.386236941855793e+00 + -7.393110673113762e+00 -7.399992595867711e+00 -7.406882724521767e+00 -7.413781061264927e+00 -7.420687607444220e+00 + -7.427602373253923e+00 -7.434525370953283e+00 -7.441456612214240e+00 -7.448396106579596e+00 -7.455343855662903e+00 + -7.462299862106879e+00 -7.469264140600134e+00 -7.476236705537742e+00 -7.483217558094771e+00 -7.490206699573982e+00 + -7.497204145008848e+00 -7.504209909607961e+00 -7.511223995549668e+00 -7.518246403916826e+00 -7.525277144440522e+00 + -7.532316229110418e+00 -7.539363670302306e+00 -7.546419478207750e+00 -7.553483653895294e+00 -7.560556199398457e+00 + -7.567637129733686e+00 -7.574726459966183e+00 -7.581824192373288e+00 -7.588930328179804e+00 -7.596044877188221e+00 + -7.603167851392376e+00 -7.610299262973792e+00 -7.617439121971403e+00 -7.624587429666054e+00 -7.631744188388593e+00 + -7.638909413427992e+00 -7.646083119762239e+00 -7.653265308167305e+00 -7.660455979470388e+00 -7.667655148905554e+00 + -7.674862831955687e+00 -7.682079030692125e+00 -7.689303746121935e+00 -7.696536988406601e+00 -7.703778769965018e+00 + -7.711029103091334e+00 -7.718287997777487e+00 -7.725555454931286e+00 -7.732831476489904e+00 -7.740116077592081e+00 + -7.747409273463959e+00 -7.754711066479733e+00 -7.762021457991705e+00 -7.769340458116517e+00 -7.776668079072852e+00 + -7.784004332723263e+00 -7.791349228774319e+00 -7.798702768664788e+00 -7.806064954991001e+00 -7.813435803247359e+00 + -7.820815328504128e+00 -7.828203531237023e+00 -7.835600412067597e+00 -7.843005986795347e+00 -7.850420271453628e+00 + -7.857843267833355e+00 -7.865274976500961e+00 -7.872715407367362e+00 -7.880164572827870e+00 -7.887622485870939e+00 + -7.895089157097287e+00 -7.902564586963549e+00 -7.910048776908389e+00 -7.917541742442640e+00 -7.925043499243823e+00 + -7.932554049584044e+00 -7.940073394568305e+00 -7.947601544038569e+00 -7.955138510136092e+00 -7.962684305462377e+00 + -7.970238940357911e+00 -7.977802415658878e+00 -7.985374733292938e+00 -7.992955909057959e+00 -8.000545958501995e+00 + -8.008144882303682e+00 -8.015752681155906e+00 -8.023369370677967e+00 -8.030994966700497e+00 -8.038629470973136e+00 + -8.046272884117311e+00 -8.053925216322545e+00 -8.061586480220186e+00 -8.069256688640843e+00 -8.076935852017314e+00 + -8.084623970991846e+00 -8.092321047230506e+00 -8.100027096285098e+00 -8.107742133772728e+00 -8.115466161685978e+00 + -8.123199180963685e+00 -8.130941201954130e+00 -8.138692237272345e+00 -8.146452299190864e+00 -8.154221397655556e+00 + -8.161999533648068e+00 -8.169786709369063e+00 -8.177582940859525e+00 -8.185388243772254e+00 -8.193202618367051e+00 + -8.201026064968486e+00 -8.208858599553158e+00 -8.216700238370747e+00 -8.224550983111227e+00 -8.232410834288519e+00 + -8.240279802271914e+00 -8.248157899820946e+00 -8.256045139400785e+00 -8.263941531127587e+00 -8.271847076015916e+00 + -8.279761776165609e+00 -8.287685647119202e+00 -8.295618704371698e+00 -8.303560949785306e+00 -8.311512384182917e+00 + -8.319473017862927e+00 -8.327442863513763e+00 -8.335421933908444e+00 -8.343410239406900e+00 -8.351407780632112e+00 + -8.359414559352070e+00 -8.367430591651793e+00 -8.375455893292965e+00 -8.383490464426892e+00 -8.391534305333888e+00 + -8.399587432420665e+00 -8.407649862295598e+00 -8.415721596247392e+00 -8.423802634359653e+00 -8.431892987215194e+00 + -8.439992667917126e+00 -8.448101689150496e+00 -8.456220061058572e+00 -8.464347784035521e+00 -8.472484859778373e+00 + -8.480631304944675e+00 -8.488787135775029e+00 -8.496952351881781e+00 -8.505126952972617e+00 -8.513310955764712e+00 + -8.521504377280520e+00 -8.529707218754108e+00 -8.537919480083488e+00 -8.546141171610756e+00 -8.554372306334406e+00 + -8.562612897434500e+00 -8.570862955488629e+00 -8.579122480482935e+00 -8.587391473585072e+00 -8.595669951280222e+00 + -8.603957930092136e+00 -8.612255411381385e+00 -8.620562395277888e+00 -8.628878892152137e+00 -8.637204914976417e+00 + -8.645540476889700e+00 -8.653885588365707e+00 -8.662240249050400e+00 -8.670604460002718e+00 -8.678978238761259e+00 + -8.687361602440037e+00 -8.695754549975142e+00 -8.704157080317993e+00 -8.712569210659231e+00 -8.720990958572770e+00 + -8.729422324926496e+00 -8.737863309144757e+00 -8.746313921583734e+00 -8.754774175423437e+00 -8.763244084207386e+00 + -8.771723658743657e+00 -8.780212898534927e+00 -8.788711804325507e+00 -8.797220393131562e+00 -8.805738681960509e+00 + -8.814266671512945e+00 -8.822804361262596e+00 -8.831351762082482e+00 -8.839908887544672e+00 -8.848475750618142e+00 + -8.857052361519681e+00 -8.865638720060298e+00 -8.874234827408518e+00 -8.882840700568694e+00 -8.891456356239988e+00 + -8.900081794065120e+00 -8.908717013654563e+00 -8.917362031546196e+00 -8.926016864607513e+00 -8.934681514097109e+00 + -8.943355979966887e+00 -8.952040272550780e+00 -8.960734404827180e+00 -8.969438389970174e+00 -8.978152238557112e+00 + -8.986875950582608e+00 -8.995609527224275e+00 -9.004352984974421e+00 -9.013106340348738e+00 -9.021869594641789e+00 + -9.030642747850949e+00 -9.039425810005964e+00 -9.048218793898496e+00 -9.057021713335553e+00 -9.065834579375275e+00 + -9.074657391064932e+00 -9.083490148798390e+00 -9.092332870366718e+00 -9.101185573233034e+00 -9.110048256151465e+00 + -9.118920917820537e+00 -9.127803575425368e+00 -9.136696246597257e+00 -9.145598932265708e+00 -9.154511631860180e+00 + -9.163434355511646e+00 -9.172367116215408e+00 -9.181309927722621e+00 -9.190262801063124e+00 -9.199225735625708e+00 + -9.208198731948572e+00 -9.217181806808554e+00 -9.226174977077383e+00 -9.235178243767663e+00 -9.244191606592038e+00 + -9.253215075922315e+00 -9.262248664894432e+00 -9.271292387041701e+00 -9.280346253080740e+00 -9.289410262064051e+00 + -9.298484414471314e+00 -9.307568728155069e+00 -9.316663220573421e+00 -9.325767890233902e+00 -9.334882735648362e+00 + -9.344007774296474e+00 -9.353143024056331e+00 -9.362288485431986e+00 -9.371444157433135e+00 -9.380610050466057e+00 + -9.389786177888119e+00 -9.398972553464475e+00 -9.408169188076664e+00 -9.417376080663951e+00 -9.426593231436920e+00 + -9.435820657633688e+00 -9.445058376575700e+00 -9.454306388890288e+00 -9.463564693828612e+00 -9.472833301831271e+00 + -9.482112226230582e+00 -9.491401480736307e+00 -9.500701076124317e+00 -9.510011011057383e+00 -9.519331285649606e+00 + -9.528661917933491e+00 -9.538002925632075e+00 -9.547354307312132e+00 -9.556716061430350e+00 -9.566088205159264e+00 + -9.575470756067922e+00 -9.584863714595665e+00 -9.594267079809105e+00 -9.603680862413734e+00 -9.613105076017005e+00 + -9.622539734195460e+00 -9.631984847535897e+00 -9.641440414697058e+00 -9.650906435763309e+00 -9.660382928449559e+00 + -9.669869910482992e+00 -9.679367382009378e+00 -9.688875341677877e+00 -9.698393799732578e+00 -9.707922769547205e+00 + -9.717462265419133e+00 -9.727012298576232e+00 -9.736572867044643e+00 -9.746143970285512e+00 -9.755725626701739e+00 + -9.765317854403191e+00 -9.774920651385886e+00 -9.784534015610914e+00 -9.794157965013451e+00 -9.803792517858509e+00 + -9.813437673756464e+00 -9.823093430886084e+00 -9.832759800354408e+00 -9.842436796281985e+00 -9.852124431915341e+00 + -9.861822717446652e+00 -9.871531651724764e+00 -9.881251235098006e+00 -9.890981485255914e+00 -9.900722419735771e+00 + -9.910474038124631e+00 -9.920236338721825e+00 -9.930009332625946e+00 -9.939793033953066e+00 -9.949587456089942e+00 + -9.959392609292857e+00 -9.969208492025555e+00 -9.979035104343238e+00 -9.988872464459540e+00 -9.998720590171930e+00 + -1.000857947945488e+01 -1.001844913033355e+01 -1.002832956085879e+01 -1.003822078906736e+01 -1.004812281291406e+01 + -1.005803562971182e+01 -1.006795925428782e+01 -1.007789370360111e+01 -1.008783898562387e+01 -1.009779510571246e+01 + -1.010776206774677e+01 -1.011773987740720e+01 -1.012772854905251e+01 -1.013772809631413e+01 -1.014773852123577e+01 + -1.015775982444731e+01 -1.016779201251112e+01 -1.017783509576905e+01 -1.018788909374848e+01 -1.019795402262726e+01 + -1.020802987599985e+01 -1.021811664796306e+01 -1.022821435720666e+01 -1.023832302389762e+01 -1.024844264951883e+01 + -1.025857323411911e+01 -1.026871479069502e+01 -1.027886733277511e+01 -1.028903086306819e+01 -1.029920538356622e+01 + -1.030939090421369e+01 -1.031958743714735e+01 -1.032979499532081e+01 -1.034001358910991e+01 -1.035024321776280e+01 + -1.036048388191000e+01 -1.037073559883907e+01 -1.038099838556339e+01 -1.039127224134250e+01 -1.040155716512729e+01 + -1.041185317238784e+01 -1.042216027887615e+01 -1.043247848495290e+01 -1.044280779013644e+01 -1.045314820596725e+01 + -1.046349974688984e+01 -1.047386242694284e+01 -1.048423625623699e+01 -1.049462122957744e+01 -1.050501734396915e+01 + -1.051542462052187e+01 -1.052584308069211e+01 -1.053627272321853e+01 -1.054671354447971e+01 -1.055716555413174e+01 + -1.056762876571201e+01 -1.057810319500591e+01 -1.058858885406686e+01 -1.059908573777257e+01 -1.060959384260205e+01 + -1.062011318861535e+01 -1.063064379594653e+01 -1.064118566144451e+01 -1.065173878128750e+01 -1.066230317225584e+01 + -1.067287885251234e+01 -1.068346582514766e+01 -1.069406409086973e+01 -1.070467365592747e+01 -1.071529452946521e+01 + -1.072592672666786e+01 -1.073657026057826e+01 -1.074722512963040e+01 -1.075789133336255e+01 -1.076856889033910e+01 + -1.077925781838790e+01 -1.078995811336476e+01 -1.080066977044343e+01 -1.081139280404170e+01 -1.082212723175914e+01 + -1.083287306467895e+01 -1.084363031023443e+01 -1.085439896777578e+01 -1.086517903841335e+01 -1.087597053838113e+01 + -1.088677348334085e+01 -1.089758787154147e+01 -1.090841370173705e+01 -1.091925099211483e+01 -1.093009976068779e+01 + -1.094096000533889e+01 -1.095183172286895e+01 -1.096271492588021e+01 -1.097360962990334e+01 -1.098451584638146e+01 + -1.099543358339704e+01 -1.100636283967740e+01 -1.101730361593110e+01 -1.102825593014644e+01 -1.103921979985815e+01 + -1.105019522350652e+01 -1.106118219809120e+01 -1.107218073394329e+01 -1.108319084475604e+01 -1.109421254433972e+01 + -1.110524584310812e+01 -1.111629073777213e+01 -1.112734722664297e+01 -1.113841532813614e+01 -1.114949506055284e+01 + -1.116058642163307e+01 -1.117168940919924e+01 -1.118280404196459e+01 -1.119393033845125e+01 -1.120506829552628e+01 + -1.121621790821428e+01 -1.122737918582522e+01 -1.123855214233318e+01 -1.124973679608346e+01 -1.126093316109601e+01 + -1.127214122971816e+01 -1.128336099568353e+01 -1.129459247994368e+01 -1.130583570391351e+01 -1.131709066364352e+01 + -1.132835735316995e+01 -1.133963578383626e+01 -1.135092597165251e+01 -1.136222793398803e+01 -1.137354168289046e+01 + -1.138486720776133e+01 -1.139620450077960e+01 -1.140755358788016e+01 -1.141891449467379e+01 -1.143028721171902e+01 + -1.144167172931863e+01 -1.145306807180483e+01 -1.146447626363145e+01 -1.147589629570943e+01 -1.148732815744427e+01 + -1.149877186576219e+01 -1.151022744176966e+01 -1.152169489577362e+01 -1.153317423307527e+01 -1.154466544975234e+01 + -1.155616854500299e+01 -1.156768353973055e+01 -1.157921045411968e+01 -1.159074928377541e+01 -1.160230002278200e+01 + -1.161386268372032e+01 -1.162543728297182e+01 -1.163702383362365e+01 -1.164862234413445e+01 -1.166023280774309e+01 + -1.167185522083641e+01 -1.168348960761297e+01 -1.169513599109641e+01 -1.170679436179895e+01 -1.171846471050954e+01 + -1.173014706163534e+01 -1.174184143967664e+01 -1.175354783588804e+01 -1.176526623959987e+01 -1.177699666569085e+01 + -1.178873913359907e+01 -1.180049365545172e+01 -1.181226023874721e+01 -1.182403887977966e+01 -1.183582957710202e+01 + -1.184763234950681e+01 -1.185944721571250e+01 -1.187127417390187e+01 -1.188311322026980e+01 -1.189496436359524e+01 + -1.190682761635663e+01 -1.191870299324639e+01 -1.193059050542573e+01 -1.194249014771712e+01 -1.195440191732676e+01 + -1.196632583733436e+01 -1.197826192918009e+01 -1.199021018187259e+01 -1.200217058481946e+01 -1.201414316145583e+01 + -1.202612793653577e+01 -1.203812490606177e+01 -1.205013406283600e+01 -1.206215541561094e+01 -1.207418897775090e+01 + -1.208623476511758e+01 -1.209829279023755e+01 -1.211036304979982e+01 -1.212244554104682e+01 -1.213454027927224e+01 + -1.214664728029985e+01 -1.215876654402256e+01 -1.217089806888390e+01 -1.218304186346073e+01 -1.219519793969503e+01 + -1.220736631285608e+01 -1.221954699446002e+01 -1.223173997768314e+01 -1.224394525782826e+01 -1.225616285704409e+01 + -1.226839279716718e+01 -1.228063507193962e+01 -1.229288967419984e+01 -1.230515662126608e+01 -1.231743593190913e+01 + -1.232972760623024e+01 -1.234203164189830e+01 -1.235434804552219e+01 -1.236667682754052e+01 -1.237901800477097e+01 + -1.239137159078778e+01 -1.240373757981251e+01 -1.241611596680448e+01 -1.242850676902663e+01 -1.244091000477032e+01 + -1.245332567413717e+01 -1.246575377485128e+01 -1.247819431331654e+01 -1.249064729993889e+01 -1.250311275245252e+01 + -1.251559068470151e+01 -1.252808108764087e+01 -1.254058395403090e+01 -1.255309930674196e+01 -1.256562716858205e+01 + -1.257816753199971e+01 -1.259072038911156e+01 -1.260328576106586e+01 -1.261586366917709e+01 -1.262845410639316e+01 + -1.264105706405277e+01 -1.265367255542431e+01 -1.266630059802175e+01 -1.267894120441173e+01 -1.269159438291520e+01 + -1.270426012981745e+01 -1.271693844300063e+01 -1.272962933876972e+01 -1.274233283335257e+01 -1.275504892424538e+01 + -1.276777760888006e+01 -1.278051890316245e+01 -1.279327282335948e+01 -1.280603936870822e+01 -1.281881853703964e+01 + -1.283161033759003e+01 -1.284441478278821e+01 -1.285723188642777e+01 -1.287006165845383e+01 -1.288290409205257e+01 + -1.289575918258311e+01 -1.290862695085492e+01 -1.292150741744502e+01 -1.293440057655018e+01 -1.294730642109768e+01 + -1.296022496531707e+01 -1.297315622664438e+01 -1.298610021403966e+01 -1.299905693252094e+01 -1.301202637981436e+01 + -1.302500855607946e+01 -1.303800347850134e+01 -1.305101116311717e+01 -1.306403160434687e+01 -1.307706479749205e+01 + -1.309011076299821e+01 -1.310316952145874e+01 -1.311624106891474e+01 -1.312932539865738e+01 -1.314242251753035e+01 + -1.315553243732881e+01 -1.316865517610136e+01 -1.318179074759510e+01 -1.319493914209791e+01 -1.320810035188408e+01 + -1.322127440063306e+01 -1.323446131182036e+01 -1.324766107670098e+01 -1.326087368408213e+01 -1.327409914520021e+01 + -1.328733747660298e+01 -1.330058869365459e+01 -1.331385280702646e+01 -1.332712980980294e+01 -1.334041969690924e+01 + -1.335372248822127e+01 -1.336703820316815e+01 -1.338036683444133e+01 -1.339370837465144e+01 -1.340706284282357e+01 + -1.342043025877972e+01 -1.343381061911550e+01 -1.344720391854233e+01 -1.346061016746156e+01 -1.347402937953320e+01 + -1.348746156576247e+01 -1.350090673400032e+01 -1.351436488213541e+01 -1.352783600940468e+01 -1.354132013040003e+01 + -1.355481725974633e+01 -1.356832739684519e+01 -1.358185053959114e+01 -1.359538669507347e+01 -1.360893587411229e+01 + -1.362249809325635e+01 -1.363607336498644e+01 -1.364966167978290e+01 -1.366326303005515e+01 -1.367687743792930e+01 + -1.369050492543861e+01 -1.370414548452841e+01 -1.371779910680898e+01 -1.373146581263829e+01 -1.374514562258463e+01 + -1.375883852931014e+01 -1.377254452369323e+01 -1.378626361738342e+01 -1.379999582664259e+01 -1.381374116541099e+01 + -1.382749964295472e+01 -1.384127125216480e+01 -1.385505598801133e+01 -1.386885387015567e+01 -1.388266491822051e+01 + -1.389648912698253e+01 -1.391032648926665e+01 -1.392417701493663e+01 -1.393804071810552e+01 -1.395191761284479e+01 + -1.396580770902492e+01 -1.397971099975399e+01 -1.399362747983656e+01 -1.400755716762526e+01 -1.402150008127576e+01 + -1.403545621460787e+01 -1.404942556175519e+01 -1.406340814244217e+01 -1.407740397661280e+01 -1.409141305949836e+01 + -1.410543538386059e+01 -1.411947095729565e+01 -1.413351979216372e+01 -1.414758190504674e+01 -1.416165730817942e+01 + -1.417574599218579e+01 -1.418984794931155e+01 -1.420396319989974e+01 -1.421809176459019e+01 -1.423223363711269e+01 + -1.424638880961032e+01 -1.426055729478944e+01 -1.427473910897708e+01 -1.428893426241975e+01 -1.430314276106135e+01 + -1.431736459971596e+01 -1.433159977568000e+01 -1.434584830730895e+01 -1.436011021230267e+01 -1.437438548467938e+01 + -1.438867411856965e+01 -1.440297613223502e+01 -1.441729154417122e+01 -1.443162034967981e+01 -1.444596254173529e+01 + -1.446031812719803e+01 -1.447468711827448e+01 -1.448906953466952e+01 -1.450346539077074e+01 -1.451787467219810e+01 + -1.453229736674074e+01 -1.454673349963205e+01 -1.456118309651608e+01 -1.457564614723534e+01 -1.459012263904241e+01 + -1.460461258463169e+01 -1.461911600163362e+01 -1.463363290198108e+01 -1.464816329304780e+01 -1.466270716966852e+01 + -1.467726452861927e+01 -1.469183538698022e+01 -1.470641976118071e+01 -1.472101764474266e+01 -1.473562903182180e+01 + -1.475025394201659e+01 -1.476489239431922e+01 -1.477954437985420e+01 -1.479420988900897e+01 -1.480888893709030e+01 + -1.482358154289730e+01 -1.483828771427918e+01 -1.485300745484606e+01 -1.486774076220148e+01 -1.488248763590571e+01 + -1.489724808935241e+01 -1.491202213620220e+01 -1.492680977735018e+01 -1.494161101188853e+01 -1.495642584446314e+01 + -1.497125428281713e+01 -1.498609634152866e+01 -1.500095203243959e+01 -1.501582134961145e+01 -1.503070428834008e+01 + -1.504560086663885e+01 -1.506051110171047e+01 -1.507543498479744e+01 -1.509037250787217e+01 -1.510532369178669e+01 + -1.512028855781273e+01 -1.513526710002122e+01 -1.515025931004586e+01 -1.516526519697226e+01 -1.518028477406786e+01 + -1.519531805387558e+01 -1.521036504514735e+01 -1.522542574219565e+01 -1.524050014105165e+01 -1.525558825906066e+01 + -1.527069011317451e+01 -1.528580569745696e+01 -1.530093500454836e+01 -1.531607804428359e+01 -1.533123483115148e+01 + -1.534640538106230e+01 -1.536158970459035e+01 -1.537678778954449e+01 -1.539199962605270e+01 -1.540722523628471e+01 + -1.542246464244602e+01 -1.543771783484346e+01 -1.545298480379291e+01 -1.546826557154514e+01 -1.548356016030771e+01 + -1.549886856018057e+01 -1.551419075889859e+01 -1.552952676684366e+01 -1.554487659991805e+01 -1.556024027345857e+01 + -1.557561779759322e+01 -1.559100916218038e+01 -1.560641435912106e+01 -1.562183340875659e+01 -1.563726633124305e+01 + -1.565271311755539e+01 -1.566817375858786e+01 -1.568364827409284e+01 -1.569913668435983e+01 -1.571463898296877e+01 + -1.573015516140282e+01 -1.574568522946743e+01 -1.576122920078429e+01 -1.577678708591764e+01 -1.579235889192325e+01 + -1.580794461488044e+01 -1.582354425266206e+01 -1.583915782129173e+01 -1.585478533595468e+01 -1.587042679033195e+01 + -1.588608217713541e+01 -1.590175150670428e+01 -1.591743479377280e+01 -1.593313205302798e+01 -1.594884329356461e+01 + -1.596456850215542e+01 -1.598030766876410e+01 -1.599606081844003e+01 -1.601182797567503e+01 -1.602760912764517e+01 + -1.604340426053651e+01 -1.605921339389068e+01 -1.607503654929621e+01 -1.609087372317365e+01 -1.610672490846679e+01 + -1.612259010938000e+01 -1.613846933535691e+01 -1.615436260553746e+01 -1.617026993400350e+01 -1.618619130490810e+01 + -1.620212670496088e+01 -1.621807616102629e+01 -1.623403970021593e+01 -1.625001731047507e+01 -1.626600897617460e+01 + -1.628201470655392e+01 -1.629803451699528e+01 -1.631406842258372e+01 -1.633011643368945e+01 -1.634617854212047e+01 + -1.636225474110459e+01 -1.637834504811086e+01 -1.639444948009596e+01 -1.641056802772599e+01 -1.642670068226715e+01 + -1.644284746367691e+01 -1.645900839255391e+01 -1.647518346337059e+01 -1.649137266740475e+01 -1.650757600928198e+01 + -1.652379349905581e+01 -1.654002515514406e+01 -1.655627099138395e+01 -1.657253099492616e+01 -1.658880515436409e+01 + -1.660509349074862e+01 -1.662139602569388e+01 -1.663771275060954e+01 -1.665404365442992e+01 -1.667038874639235e+01 + -1.668674804082613e+01 -1.670312155212567e+01 -1.671950928959044e+01 -1.673591124207530e+01 -1.675232740091000e+01 + -1.676875778776886e+01 -1.678520242381186e+01 -1.680166129779755e+01 -1.681813439803682e+01 -1.683462174345131e+01 + -1.685112335404732e+01 -1.686763922355921e+01 -1.688416934305047e+01 -1.690071371917313e+01 -1.691727236387981e+01 + -1.693384529473730e+01 -1.695043252373442e+01 -1.696703403493436e+01 -1.698364981519248e+01 -1.700027989045860e+01 + -1.701692428668450e+01 -1.703358299073511e+01 -1.705025598664567e+01 -1.706694328621936e+01 -1.708364490699094e+01 + -1.710036086165371e+01 -1.711709115711999e+01 -1.713383578201967e+01 -1.715059472804424e+01 -1.716736801741393e+01 + -1.718415567151382e+01 -1.720095767785962e+01 -1.721777402421613e+01 -1.723460473321376e+01 -1.725144982735173e+01 + -1.726830929373925e+01 -1.728518311723097e+01 -1.730207130905323e+01 -1.731897388644410e+01 -1.733589086431708e+01 + -1.735282225151622e+01 -1.736976803493245e+01 -1.738672820398455e+01 -1.740370278015603e+01 -1.742069178532102e+01 + -1.743769521085149e+01 -1.745471304524893e+01 -1.747174529603476e+01 -1.748879197614670e+01 -1.750585310116775e+01 + -1.752292868122209e+01 -1.754001870195336e+01 -1.755712315207324e+01 -1.757424205704595e+01 -1.759137544124289e+01 + -1.760852328791187e+01 -1.762568558032359e+01 -1.764286234296404e+01 -1.766005360135051e+01 -1.767725934391039e+01 + -1.769447955614261e+01 -1.771171424892207e+01 -1.772896343807829e+01 -1.774622713388326e+01 -1.776350534196338e+01 + -1.778079805492016e+01 -1.779810526797336e+01 -1.781542699984077e+01 -1.783276326793605e+01 -1.785011406095838e+01 + -1.786747936642481e+01 -1.788485919583838e+01 -1.790225356596892e+01 -1.791966249066770e+01 -1.793708597750879e+01 + -1.795452401187612e+01 -1.797197658287230e+01 -1.798944371666477e+01 -1.800692543788475e+01 -1.802442172795408e+01 + -1.804193256819016e+01 -1.805945798270200e+01 -1.807699799758296e+01 -1.809455260407236e+01 -1.811212178929598e+01 + -1.812970555877947e+01 -1.814730392419934e+01 -1.816491690343573e+01 -1.818254450889657e+01 -1.820018672489731e+01 + -1.821784353770839e+01 -1.823551496951270e+01 -1.825320104351004e+01 -1.827090175105552e+01 -1.828861707995103e+01 + -1.830634703563002e+01 -1.832409162961503e+01 -1.834185088015348e+01 -1.835962479982180e+01 -1.837741337178776e+01 + -1.839521658191638e+01 -1.841303445627024e+01 -1.843086702044687e+01 -1.844871425798603e+01 -1.846657615155986e+01 + -1.848445272242748e+01 -1.850234399331442e+01 -1.852024995422484e+01 -1.853817059263430e+01 -1.855610591862525e+01 + -1.857405594751762e+01 -1.859202069297440e+01 -1.861000016303027e+01 -1.862799434486363e+01 -1.864600322762024e+01 + -1.866402682917165e+01 -1.868206516860479e+01 -1.870011824114266e+01 -1.871818603889838e+01 -1.873626856540951e+01 + -1.875436582948875e+01 -1.877247784962497e+01 -1.879060463922456e+01 -1.880874618168810e+01 -1.882690246254704e+01 + -1.884507350586227e+01 -1.886325933574866e+01 -1.888145993800745e+01 -1.889967529731236e+01 -1.891790543214035e+01 + -1.893615036295555e+01 -1.895441008436764e+01 -1.897268458788422e+01 -1.899097387845919e+01 -1.900927796546465e+01 + -1.902759686249918e+01 -1.904593057916082e+01 -1.906427910481893e+01 -1.908264243109121e+01 -1.910102057881749e+01 + -1.911941356739387e+01 -1.913782138121961e+01 -1.915624400568942e+01 -1.917468146517671e+01 -1.919313378404767e+01 + -1.921160094766128e+01 -1.923008293912871e+01 -1.924857977157690e+01 -1.926709146357444e+01 -1.928561802544077e+01 + -1.930415946120927e+01 -1.932271575801813e+01 -1.934128690695999e+01 -1.935987293184044e+01 -1.937847385553680e+01 + -1.939708966450047e+01 -1.941572034241033e+01 -1.943436589828115e+01 -1.945302634705033e+01 -1.947170170200994e+01 + -1.949039197138318e+01 -1.950909714476303e+01 -1.952781721398065e+01 -1.954655219845012e+01 -1.956530211609402e+01 + -1.958406695128608e+01 -1.960284668959667e+01 -1.962164135493148e+01 -1.964045097168231e+01 -1.965927552785040e+01 + -1.967811500826448e+01 -1.969696942145404e+01 -1.971583878200212e+01 -1.973472310500559e+01 -1.975362239928199e+01 + -1.977253664801789e+01 -1.979146583743514e+01 -1.981040999152762e+01 -1.982936913462439e+01 -1.984834325462312e+01 + -1.986733233626431e+01 -1.988633638809098e+01 -1.990535542475069e+01 -1.992438946150660e+01 -1.994343850724086e+01 + -1.996250254469571e+01 -1.998158155988759e+01 -2.000067557806942e+01 -2.001978462401460e+01 -2.003890868134189e+01 + -2.005804773353269e+01 -2.007720180467363e+01 -2.009637091866160e+01 -2.011555505802958e+01 -2.013475420367532e+01 + -2.015396837131929e+01 -2.017319758216888e+01 -2.019244184455664e+01 -2.021170116029698e+01 -2.023097551800653e+01 + -2.025026491057744e+01 -2.026956936120177e+01 -2.028888889127859e+01 -2.030822348473533e+01 -2.032757312336421e+01 + -2.034693781788847e+01 -2.036631758558183e+01 -2.038571244098909e+01 -2.040512239225047e+01 -2.042454742461679e+01 + -2.044398752597867e+01 -2.046344271767523e+01 -2.048291302072143e+01 -2.050239842138679e+01 -2.052189890581644e+01 + -2.054141449440303e+01 -2.056094520839277e+01 -2.058049103819856e+01 -2.060005197091200e+01 -2.061962801117254e+01 + -2.063921916971323e+01 -2.065882546409381e+01 -2.067844690614864e+01 -2.069808347798381e+01 -2.071773516441981e+01 + -2.073740199086278e+01 -2.075708398272239e+01 -2.077678112483692e+01 -2.079649339928443e+01 -2.081622081767353e+01 + -2.083596339752241e+01 -2.085572115045732e+01 -2.087549408142252e+01 -2.089528217452614e+01 -2.091508541798258e+01 + -2.093490383726751e+01 -2.095473745703866e+01 -2.097458626142068e+01 -2.099445023367205e+01 -2.101432939411960e+01 + -2.103422376365449e+01 -2.105413332835716e+01 -2.107405807288499e+01 -2.109399801101360e+01 -2.111395316146354e+01 + -2.113392353361706e+01 -2.115390913036233e+01 -2.117390993794961e+01 -2.119392594678185e+01 -2.121395718051052e+01 + -2.123400366165125e+01 -2.125406537492771e+01 -2.127414230292253e+01 -2.129423445744600e+01 -2.131434185603574e+01 + -2.133446450991120e+01 -2.135460242400538e+01 -2.137475558442359e+01 -2.139492398094176e+01 -2.141510763684612e+01 + -2.143530657354728e+01 -2.145552077144329e+01 -2.147575021223202e+01 -2.149599492382317e+01 -2.151625493458459e+01 + -2.153653022850520e+01 -2.155682078515937e+01 -2.157712661084235e+01 -2.159744772002078e+01 -2.161778413312624e+01 + -2.163813586321833e+01 -2.165850288790379e+01 -2.167888518769065e+01 -2.169928279014487e+01 -2.171969572392566e+01 + -2.174012397500749e+01 -2.176056752455845e+01 -2.178102637720577e+01 -2.180150054539059e+01 -2.182199004935065e+01 + -2.184249490264348e+01 -2.186301508430896e+01 -2.188355057625899e+01 -2.190410140641098e+01 -2.192466760199104e+01 + -2.194524914145450e+01 -2.196584600311797e+01 -2.198645821351363e+01 -2.200708580045210e+01 -2.202772874864248e+01 + -2.204838703903658e+01 -2.206906068065864e+01 -2.208974968965916e+01 -2.211045408262128e+01 -2.213117386881762e+01 + -2.215190902784613e+01 -2.217265954271720e+01 -2.219342543976576e+01 -2.221420674565993e+01 -2.223500344507609e+01 + -2.225581551916326e+01 -2.227664297695268e+01 -2.229748583458740e+01 -2.231834410877561e+01 -2.233921780886325e+01 + -2.236010691418214e+01 -2.238101140757746e+01 -2.240193131596196e+01 -2.242286666626994e+01 -2.244381744145418e+01 + -2.246478362333585e+01 -2.248576523319086e+01 -2.250676229308250e+01 -2.252777478876882e+01 -2.254880270395783e+01 + -2.256984605046237e+01 -2.259090484578745e+01 -2.261197910210208e+01 -2.263306882483333e+01 -2.265417399777652e+01 + -2.267529460825966e+01 -2.269643067937303e+01 -2.271758223358744e+01 -2.273874925513337e+01 -2.275993172840441e+01 + -2.278112967668665e+01 -2.280234312326570e+01 -2.282357205253301e+01 -2.284481644618636e+01 -2.286607631404299e+01 + -2.288735167241803e+01 -2.290864253549898e+01 -2.292994891082159e+01 -2.295127078144212e+01 -2.297260813386354e+01 + -2.299396099285480e+01 -2.301532938287575e+01 -2.303671328888409e+01 -2.305811269234469e+01 -2.307952760025338e+01 + -2.310095802706863e+01 -2.312240399156859e+01 -2.314386550544134e+01 -2.316534254769484e+01 -2.318683510020089e+01 + -2.320834318896662e+01 -2.322986684000025e+01 -2.325140603517923e+01 -2.327296075598023e+01 -2.329453102640753e+01 + -2.331611687084991e+01 -2.333771827270656e+01 -2.335933521295700e+01 -2.338096770389138e+01 -2.340261576396985e+01 + -2.342427940502197e+01 -2.344595863230511e+01 -2.346765343141823e+01 -2.348936379112492e+01 -2.351108973250527e+01 + -2.353283127622654e+01 -2.355458840898814e+01 -2.357636111469370e+01 -2.359814940003157e+01 -2.361995327887107e+01 + -2.364177277102066e+01 -2.366360788867084e+01 -2.368545860760097e+01 -2.370732490730504e+01 -2.372920681854641e+01 + -2.375110437181196e+01 -2.377301754521346e+01 -2.379494631547129e+01 -2.381689070611525e+01 -2.383885074279985e+01 + -2.386082641286912e+01 -2.388281770027697e+01 -2.390482461372720e+01 -2.392684716763744e+01 -2.394888537453080e+01 + -2.397093924094647e+01 -2.399300875138237e+01 -2.401509389381072e+01 -2.403719469214220e+01 -2.405931116939521e+01 + -2.408144330908079e+01 -2.410359109227195e+01 -2.412575452979684e+01 -2.414793363861520e+01 -2.417012843045825e+01 + -2.419233891107258e+01 -2.421456506749473e+01 -2.423680688969797e+01 -2.425906439811232e+01 -2.428133761196757e+01 + -2.430362651523593e+01 -2.432593109247103e+01 -2.434825136580965e+01 -2.437058735754595e+01 -2.439293905302052e+01 + -2.441530643508021e+01 -2.443768951355032e+01 -2.446008830475372e+01 -2.448250282402539e+01 -2.450493307947941e+01 + -2.452737905133441e+01 -2.454984072340254e+01 -2.457231812176549e+01 -2.459481127247106e+01 -2.461732015916192e+01 + -2.463984476198997e+01 -2.466238508954903e+01 -2.468494115731883e+01 -2.470751297988127e+01 -2.473010056541401e+01 + -2.475270389737600e+01 -2.477532296279144e+01 -2.479795778766421e+01 -2.482060839605179e+01 -2.484327476524651e+01 + -2.486595687297807e+01 -2.488865474549064e+01 -2.491136841050829e+01 -2.493409785316058e+01 -2.495684305468689e+01 + -2.497960402336061e+01 -2.500238077436705e+01 -2.502517332350563e+01 -2.504798167938967e+01 -2.507080582127416e+01 + -2.509364573240812e+01 -2.511650144137505e+01 -2.513937297643642e+01 -2.516226031923135e+01 -2.518516344740990e+01 + -2.520808236928804e+01 -2.523101710100030e+01 -2.525396765928963e+01 -2.527693405405919e+01 -2.529991626724470e+01 + -2.532291428361040e+01 -2.534592812720204e+01 -2.536895782110043e+01 -2.539200334524508e+01 -2.541506468057373e+01 + -2.543814185515816e+01 -2.546123489657537e+01 -2.548434378328921e+01 -2.550746849096137e+01 -2.553060903315797e+01 + -2.555376543163097e+01 -2.557693770297151e+01 -2.560012585444837e+01 -2.562332986120158e+01 -2.564654970308929e+01 + -2.566978541097076e+01 -2.569303701597250e+01 -2.571630449928904e+01 -2.573958783754457e+01 -2.576288703901380e+01 + -2.578620212017663e+01 -2.580953309868325e+01 -2.583287998467666e+01 -2.585624275710073e+01 -2.587962139846310e+01 + -2.590301593672573e+01 -2.592642639921134e+01 -2.594985276523152e+01 -2.597329501305775e+01 -2.599675316481207e+01 + -2.602022724494944e+01 -2.604371724340627e+01 -2.606722314554395e+01 -2.609074495294231e+01 -2.611428267453130e+01 + -2.613783633242288e+01 -2.616140594232113e+01 -2.618499148111656e+01 -2.620859292804694e+01 -2.623221031055255e+01 + -2.625584365675950e+01 -2.627949294933480e+01 -2.630315816707157e+01 -2.632683931872623e+01 -2.635053642045652e+01 + -2.637424948806206e+01 -2.639797853015353e+01 -2.642172352694394e+01 -2.644548446269175e+01 -2.646926136623515e+01 + -2.649305426487780e+01 -2.651686313520573e+01 -2.654068795336410e+01 -2.656452874445229e+01 -2.658838553565089e+01 + -2.661225831351167e+01 -2.663614706041860e+01 -2.666005178271351e+01 -2.668397249386109e+01 -2.670790921185966e+01 + -2.673186194785124e+01 -2.675583068101895e+01 -2.677981539336416e+01 -2.680381611012034e+01 -2.682783285712106e+01 + -2.685186561936856e+01 -2.687591437786270e+01 -2.689997913842517e+01 -2.692405991477839e+01 -2.694815672742597e+01 + -2.697226958936361e+01 -2.699639847677425e+01 -2.702054336911223e+01 -2.704470429573021e+01 -2.706888128546201e+01 + -2.709307431516761e+01 -2.711728336172764e+01 -2.714150845407871e+01 -2.716574962162754e+01 -2.719000684360529e+01 + -2.721428009605862e+01 -2.723856939247152e+01 -2.726287475352885e+01 -2.728719619128178e+01 -2.731153370993099e+01 + -2.733588729090867e+01 -2.736025692081293e+01 -2.738464262967399e+01 -2.740904444482641e+01 -2.743346233939021e+01 + -2.745789628706843e+01 -2.748234631811058e+01 -2.750681246441337e+01 -2.753129470791622e+01 -2.755579302585287e+01 + -2.758030742659158e+01 -2.760483792680023e+01 -2.762938454521084e+01 -2.765394729250735e+01 -2.767852614511706e+01 + -2.770312108289846e+01 -2.772773213369129e+01 -2.775235932608502e+01 -2.777700264368704e+01 -2.780166206614083e+01 + -2.782633760221619e+01 -2.785102926812099e+01 -2.787573708068912e+01 -2.790046104903706e+01 -2.792520115078565e+01 + -2.794995736764946e+01 -2.797472972921345e+01 -2.799951826412358e+01 -2.802432294939970e+01 -2.804914376169005e+01 + -2.807398072778233e+01 -2.809883387567351e+01 -2.812370318805837e+01 -2.814858864438241e+01 -2.817349025639583e+01 + -2.819840804241009e+01 -2.822334201467696e+01 -2.824829217820057e+01 -2.827325851505399e+01 -2.829824101147483e+01 + -2.832323969328987e+01 -2.834825458594292e+01 -2.837328567375688e+01 -2.839833293713809e+01 -2.842339638194745e+01 + -2.844847602232610e+01 -2.847357188008160e+01 -2.849868396869187e+01 -2.852381226064981e+01 -2.854895673259501e+01 + -2.857411741873861e+01 -2.859929435285462e+01 -2.862448750939692e+01 -2.864969686163745e+01 -2.867492243744038e+01 + -2.870016426611871e+01 -2.872542232818885e+01 -2.875069660076976e+01 -2.877598709618692e+01 -2.880129383482867e+01 + -2.882661683412842e+01 -2.885195610246809e+01 -2.887731161497835e+01 -2.890268335136361e+01 -2.892807134287440e+01 + -2.895347562064698e+01 -2.897889616381469e+01 -2.900433294736006e+01 -2.902978598166526e+01 -2.905525528595928e+01 + -2.908074087945912e+01 -2.910624277257485e+01 -2.913176094050105e+01 -2.915729536236611e+01 -2.918284606824940e+01 + -2.920841308797334e+01 -2.923399639938179e+01 -2.925959597987842e+01 -2.928521185708459e+01 -2.931084405942344e+01 + -2.933649256830759e+01 -2.936215736109871e+01 -2.938783844596477e+01 -2.941353583979598e+01 -2.943924956356517e+01 + -2.946497963001566e+01 -2.949072601489006e+01 -2.951648869675137e+01 -2.954226770244480e+01 -2.956806305999476e+01 + -2.959387475386040e+01 -2.961970276467950e+01 -2.964554710136948e+01 -2.967140778023144e+01 -2.969728481882160e+01 + -2.972317822671904e+01 -2.974908798033929e+01 -2.977501406036931e+01 -2.980095649774566e+01 -2.982691532231985e+01 + -2.985289050935425e+01 -2.987888203414534e+01 -2.990488992671488e+01 -2.993091421806754e+01 -2.995695488841446e+01 + -2.998301191396682e+01 -3.000908530572931e+01 -3.003517508294127e+01 -3.006128126298706e+01 -3.008740385472813e+01 + -3.011354283478899e+01 -3.013969818396866e+01 -3.016586993200092e+01 -3.019205810852835e+01 -3.021826269389396e+01 + -3.024448366459688e+01 -3.027072103106001e+01 -3.029697481234801e+01 -3.032324502816885e+01 -3.034953168930138e+01 + -3.037583477016444e+01 -3.040215424919064e+01 -3.042849015722735e+01 -3.045484252487287e+01 -3.048121132931426e+01 + -3.050759654718701e+01 -3.053399820633122e+01 -3.056041633582694e+01 -3.058685091850949e+01 -3.061330193277164e+01 + -3.063976938548045e+01 -3.066625329189824e+01 -3.069275367239408e+01 -3.071927054017274e+01 -3.074580387467516e+01 + -3.077235365736276e+01 -3.079891991154272e+01 -3.082550266154129e+01 -3.085210189391538e+01 -3.087871759159065e+01 + -3.090534976073683e+01 -3.093199841535169e+01 -3.095866357750086e+01 -3.098534526117247e+01 -3.101204343997652e+01 + -3.103875809113482e+01 -3.106548924669440e+01 -3.109223693806243e+01 -3.111900113926174e+01 -3.114578182447812e+01 + -3.117257902593346e+01 -3.119939277712214e+01 -3.122622305859262e+01 -3.125306984560579e+01 -3.127993314521812e+01 + -3.130681297362548e+01 -3.133370935178603e+01 -3.136062229292185e+01 -3.138755177454848e+01 -3.141449777743489e+01 + -3.144146033107010e+01 -3.146843946420585e+01 -3.149543515392452e+01 -3.152244737446985e+01 -3.154947614039987e+01 + -3.157652147508332e+01 -3.160358339681746e+01 -3.163066191390917e+01 -3.165775699977537e+01 -3.168486863280270e+01 + -3.171199684614663e+01 -3.173914167265754e+01 -3.176630308919665e+01 -3.179348107134120e+01 -3.182067564552154e+01 + -3.184788683989369e+01 -3.187511463866380e+01 -3.190235902163426e+01 -3.192961999494226e+01 -3.195689757352222e+01 + -3.198419178116283e+01 -3.201150263346307e+01 -3.203883010440887e+01 -3.206617417058478e+01 -3.209353486058297e+01 + -3.212091220418486e+01 -3.214830618392138e+01 -3.217571677868305e+01 -3.220314400004898e+01 -3.223058786708538e+01 + -3.225804839611857e+01 -3.228552559489243e+01 -3.231301943956095e+01 -3.234052991162765e+01 -3.236805704558397e+01 + -3.239560087404328e+01 -3.242316136911894e+01 -3.245073850255218e+01 -3.247833230509534e+01 -3.250594280965240e+01 + -3.253356999872297e+01 -3.256121385028732e+01 -3.258887437465276e+01 -3.261655158960600e+01 -3.264424551052439e+01 + -3.267195614529539e+01 -3.269968347425627e+01 -3.272742748229857e+01 -3.275518820008119e+01 -3.278296565603427e+01 + -3.281075982390590e+01 -3.283857067801981e+01 -3.286639824968410e+01 -3.289424257141810e+01 -3.292210362360176e+01 + -3.294998138240963e+01 -3.297787585933321e+01 -3.300578707421773e+01 -3.303371504500630e+01 -3.306165978102434e+01 + -3.308962125902853e+01 -3.311759946003357e+01 -3.314559441465483e+01 -3.317360615365304e+01 -3.320163465877013e+01 + -3.322967990687330e+01 -3.325774190434956e+01 -3.328582066713852e+01 -3.331391621987054e+01 -3.334202857831301e+01 + -3.337015771409062e+01 -3.339830360273710e+01 -3.342646627956469e+01 -3.345464577921614e+01 -3.348284207387808e+01 + -3.351105513572078e+01 -3.353928499930519e+01 -3.356753169996216e+01 -3.359579521371194e+01 -3.362407551222610e+01 + -3.365237260909204e+01 -3.368068652715969e+01 -3.370901728441355e+01 -3.373736488954338e+01 -3.376572931892538e+01 + -3.379411055342771e+01 -3.382250862419983e+01 -3.385092356238306e+01 -3.387935534880526e+01 -3.390780395979943e+01 + -3.393626940403256e+01 -3.396475169950308e+01 -3.399325086920118e+01 -3.402176692682492e+01 -3.405029984391190e+01 + -3.407884959628061e+01 -3.410741621903333e+01 -3.413599974690003e+01 -3.416460015383780e+01 -3.419321741347679e+01 + -3.422185155891206e+01 -3.425050262370409e+01 -3.427917058381036e+01 -3.430785541111823e+01 -3.433655711883738e+01 + -3.436527572977491e+01 -3.439401126380553e+01 -3.442276373145798e+01 -3.445153310880944e+01 -3.448031937598221e+01 + -3.450912256373026e+01 -3.453794270224409e+01 -3.456677976882821e+01 -3.459563373771100e+01 -3.462450462370172e+01 + -3.465339245071625e+01 -3.468229723851619e+01 -3.471121899611902e+01 -3.474015769371995e+01 -3.476911330776019e+01 + -3.479808587848705e+01 -3.482707544447295e+01 -3.485608197378501e+01 -3.488510543365825e+01 -3.491414585850467e+01 + -3.494320328527482e+01 -3.497227769389696e+01 -3.500136905869145e+01 -3.503047738856913e+01 -3.505960270226024e+01 + -3.508874502318216e+01 -3.511790436512474e+01 -3.514708069868058e+01 -3.517627399907308e+01 -3.520548430324607e+01 + -3.523471164812467e+01 -3.526395600883895e+01 -3.529321735592740e+01 -3.532249570335686e+01 -3.535179107461137e+01 + -3.538110348781549e+01 -3.541043295179184e+01 -3.543977944351469e+01 -3.546914294470585e+01 -3.549852348792567e+01 + -3.552792110371767e+01 -3.555733576371960e+01 -3.558676744035331e+01 -3.561621616808287e+01 -3.564568198278825e+01 + -3.567516486397158e+01 -3.570466478590109e+01 -3.573418175828719e+01 -3.576371580017962e+01 -3.579326693254331e+01 + -3.582283516733191e+01 -3.585242047853867e+01 -3.588202284498269e+01 -3.591164230274704e+01 -3.594127888660625e+01 + -3.597093256883734e+01 -3.600060331833949e+01 -3.603029115299790e+01 -3.605999610029281e+01 -3.608971817709886e+01 + -3.611945738978410e+01 -3.614921371329605e+01 -3.617898712799953e+01 -3.620877766734910e+01 -3.623858536391516e+01 + -3.626841019364145e+01 -3.629825213180558e+01 -3.632811120764664e+01 -3.635798745148868e+01 -3.638788084403422e+01 + -3.641779136227628e+01 -3.644771901799147e+01 -3.647766383142195e+01 -3.650762582188893e+01 -3.653760499949427e+01 + -3.656760133838370e+01 -3.659761481766282e+01 -3.662764547223315e+01 -3.665769333671685e+01 -3.668775838882340e+01 + -3.671784060113342e+01 -3.674793998262476e+01 -3.677805655273779e+01 -3.680819033636626e+01 -3.683834134900049e+01 + -3.686850956306390e+01 -3.689869495454472e+01 -3.692889755675729e+01 -3.695911740229619e+01 -3.698935446355054e+01 + -3.701960871343802e+01 -3.704988018719579e+01 -3.708016892120266e+01 -3.711047489408478e+01 -3.714079807933708e+01 + -3.717113848768184e+01 -3.720149613882988e+01 -3.723187105121882e+01 -3.726226323497034e+01 -3.729267266821555e+01 + -3.732309933333587e+01 -3.735354326170426e+01 -3.738400448395760e+01 -3.741448297879693e+01 -3.744497872108128e+01 + -3.747549172223736e+01 -3.750602200310610e+01 -3.753656958561755e+01 -3.756713448177913e+01 -3.759771666281819e+01 + -3.762831610507856e+01 -3.765893284615005e+01 -3.768956692232328e+01 -3.772021830344675e+01 -3.775088695941269e+01 + -3.778157292673024e+01 -3.781227624306894e+01 -3.784299688412320e+01 -3.787373482086582e+01 -3.790449006735824e+01 + -3.793526264738479e+01 -3.796605258053289e+01 -3.799685987630166e+01 -3.802768450803411e+01 -3.805852645435349e+01 + -3.808938575116029e+01 -3.812026243387959e+01 -3.815115647875793e+01 -3.818206785737669e+01 -3.821299658183555e+01 + -3.824394267407146e+01 -3.827490615485264e+01 -3.830588703573063e+01 -3.833688529255877e+01 -3.836790090523419e+01 + -3.839893390552727e+01 -3.842998432385276e+01 -3.846105213333004e+01 -3.849213730842061e+01 -3.852323988624988e+01 + -3.855435990371658e+01 -3.858549733414936e+01 -3.861665214665468e+01 -3.864782435702053e+01 -3.867901399128823e+01 + -3.871022106983104e+01 -3.874144560188923e+01 -3.877268755783931e+01 -3.880394691415978e+01 -3.883522371060106e+01 + -3.886651798555487e+01 -3.889782970870629e+01 -3.892915884903668e+01 -3.896050544141922e+01 -3.899186952243698e+01 + -3.902325106962145e+01 -3.905465005558139e+01 -3.908606649228560e+01 -3.911750040150871e+01 -3.914895180488885e+01 + -3.918042071436301e+01 -3.921190710320024e+01 -3.924341094905042e+01 -3.927493228575462e+01 -3.930647114756201e+01 + -3.933802751416320e+01 -3.936960136044893e+01 -3.940119269666864e+01 -3.943280154239230e+01 -3.946442791911308e+01 + -3.949607183932866e+01 -3.952773327763106e+01 -3.955941221301939e+01 -3.959110868002649e+01 -3.962282271157864e+01 + -3.965455427864192e+01 -3.968630335291520e+01 -3.971806997098832e+01 -3.974985417066340e+01 -3.978165592970123e+01 + -3.981347522024374e+01 -3.984531205199855e+01 -3.987716644515135e+01 -3.990903842423468e+01 -3.994092800366619e+01 + -3.997283515305731e+01 -4.000475984705376e+01 -4.003670212524431e+01 -4.006866202678586e+01 -4.010063952416471e+01 + -4.013263458527370e+01 -4.016464722630246e+01 -4.019667747391531e+01 -4.022872534837892e+01 -4.026079085897078e+01 + -4.029287397740929e+01 -4.032497468131004e+01 -4.035709300943645e+01 -4.038922899883853e+01 -4.042138261856475e+01 + -4.045355383733334e+01 -4.048574269054266e+01 -4.051794921541258e+01 -4.055017338976896e+01 -4.058241518694505e+01 + -4.061467462169752e+01 -4.064695171778673e+01 -4.067924649356458e+01 -4.071155895737036e+01 -4.074388908290122e+01 + -4.077623684962312e+01 -4.080860229471885e+01 -4.084098545450960e+01 -4.087338630415373e+01 -4.090580481395003e+01 + -4.093824099592192e+01 -4.097069487270115e+01 -4.100316646762842e+01 -4.103565579436854e+01 -4.106816282717386e+01 + -4.110068754422534e+01 -4.113322997883087e+01 -4.116579016300655e+01 -4.119836806847471e+01 -4.123096366815907e+01 + -4.126357700008218e+01 -4.129620810254014e+01 -4.132885694982463e+01 -4.136152351139461e+01 -4.139420780138244e+01 + -4.142690984447184e+01 -4.145962966287846e+01 -4.149236726828771e+01 -4.152512263273182e+01 -4.155789573295193e+01 + -4.159068660417814e+01 -4.162349528189675e+01 -4.165632174413023e+01 -4.168916596438000e+01 -4.172202795552684e+01 + -4.175490773972726e+01 -4.178780533686147e+01 -4.182072075745918e+01 -4.185365397692470e+01 -4.188660497553830e+01 + -4.191957378820953e+01 -4.195256044830271e+01 -4.198556492837179e+01 -4.201858720098863e+01 -4.205162729960676e+01 + -4.208468525919077e+01 -4.211776105986812e+01 -4.215085467691669e+01 -4.218396612105321e+01 -4.221709541226407e+01 + -4.225024257217616e+01 -4.228340761361360e+01 -4.231659051254899e+01 -4.234979124870078e+01 -4.238300985362200e+01 + -4.241624635885866e+01 -4.244950074409413e+01 -4.248277298525672e+01 -4.251606309511715e+01 -4.254937109530931e+01 + -4.258269700607782e+01 -4.261604083828603e+01 -4.264940256666174e+01 -4.268278217100897e+01 -4.271617968757233e+01 + -4.274959515039267e+01 -4.278302852825576e+01 -4.281647979114838e+01 -4.284994897911630e+01 -4.288343613339240e+01 + -4.291694122989936e+01 -4.295046423857267e+01 -4.298400517070971e+01 -4.301756404788966e+01 -4.305114089145757e+01 + -4.308473571388112e+01 -4.311834849235274e+01 -4.315197920801049e+01 -4.318562789305037e+01 -4.321929457904871e+01 + -4.325297924404543e+01 -4.328668186207582e+01 -4.332040244469275e+01 -4.335414101381126e+01 -4.338789759527743e+01 + -4.342167220389723e+01 -4.345546480638487e+01 -4.348927537558045e+01 -4.352310395691921e+01 -4.355695059370569e+01 + -4.359081524812669e+01 -4.362469788222823e+01 -4.365859853861065e+01 -4.369251726260594e+01 -4.372645402991838e+01 + -4.376040880917880e+01 -4.379438161035186e+01 -4.382837245512241e+01 -4.386238137072252e+01 -4.389640837367813e+01 + -4.393045343214298e+01 -4.396451651875527e+01 -4.399859767246311e+01 -4.403269693263155e+01 -4.406681427398399e+01 + -4.410094966630350e+01 -4.413510312425358e+01 -4.416927467295284e+01 -4.420346433446015e+01 -4.423767212069691e+01 + -4.427189800609401e+01 -4.430614196966567e+01 -4.434040404624994e+01 -4.437468426893484e+01 -4.440898260798443e+01 + -4.444329903479183e+01 -4.447763358808973e+01 -4.451198630763288e+01 -4.454635716992501e+01 -4.458074614621454e+01 + -4.461515324997958e+01 -4.464957850449220e+01 -4.468402192997090e+01 -4.471848353715485e+01 -4.475296330191956e+01 + -4.478746120505344e+01 -4.482197728186011e+01 -4.485651156648301e+01 -4.489106403390974e+01 -4.492563465506775e+01 + -4.496022344379944e+01 -4.499483042484561e+01 -4.502945562362576e+01 -4.506409905435962e+01 -4.509876068578905e+01 + -4.513344049220396e+01 -4.516813851556444e+01 -4.520285479589762e+01 -4.523758929782897e+01 -4.527234198687941e+01 + -4.530711290755342e+01 -4.534190210524451e+01 -4.537670954991925e+01 -4.541153520580425e+01 -4.544637908959269e+01 + -4.548124122972980e+01 -4.551612164920255e+01 -4.555102035951307e+01 -4.558593733168242e+01 -4.562087254236648e+01 + -4.565582603124118e+01 -4.569079783605451e+01 -4.572578792382265e+01 -4.576079626235065e+01 -4.579582289333027e+01 + -4.583086785976433e+01 -4.586593113601344e+01 -4.590101269036680e+01 -4.593611253546989e+01 -4.597123069530716e+01 + -4.600636719486254e+01 -4.604152204856955e+01 -4.607669522766013e+01 -4.611188670797630e+01 -4.614709652700154e+01 + -4.618232472227299e+01 -4.621757126990104e+01 -4.625283614113306e+01 -4.628811934919114e+01 -4.632342091751210e+01 + -4.635874086841728e+01 -4.639407921460932e+01 -4.642943593143147e+01 -4.646481099859044e+01 -4.650020445060623e+01 + -4.653561632090474e+01 -4.657104658372261e+01 -4.660649521327068e+01 -4.664196224284595e+01 -4.667744770698098e+01 + -4.671295158606459e+01 -4.674847385553061e+01 -4.678401452513644e+01 -4.681957361522331e+01 -4.685515115414413e+01 + -4.689074715945064e+01 -4.692636159747788e+01 -4.696199443933372e+01 -4.699764572643400e+01 -4.703331550121288e+01 + -4.706900373987032e+01 -4.710471041222129e+01 -4.714043552877479e+01 -4.717617911151273e+01 -4.721194118761495e+01 + -4.724772177397794e+01 -4.728352084116666e+01 -4.731933836391387e+01 -4.735517437995513e+01 -4.739102892624472e+01 + -4.742690197360956e+01 -4.746279349304486e+01 -4.749870352234630e+01 -4.753463210070628e+01 -4.757057920610364e+01 + -4.760654481072343e+01 -4.764252892478859e+01 -4.767853156968457e+01 -4.771455277340900e+01 -4.775059255327958e+01 + -4.778665087728216e+01 -4.782272771801416e+01 -4.785882311585065e+01 -4.789493711157514e+01 -4.793106967982698e+01 + -4.796722079021173e+01 -4.800339045834357e+01 -4.803957871014897e+01 -4.807578556679541e+01 -4.811201103905631e+01 + -4.814825510088780e+01 -4.818451773166895e+01 -4.822079896928767e+01 -4.825709884980719e+01 -4.829341734348342e+01 + -4.832975442115909e+01 -4.836611012183125e+01 -4.840248448526336e+01 -4.843887748613056e+01 -4.847528909416636e+01 + -4.851171932442625e+01 -4.854816820273300e+01 -4.858463575265701e+01 -4.862112198691646e+01 -4.865762687707282e+01 + -4.869415040003414e+01 -4.873069259525141e+01 -4.876725350118260e+01 -4.880383308977095e+01 -4.884043132904604e+01 + -4.887704823789731e+01 -4.891368384608068e+01 -4.895033817595851e+01 -4.898701123776245e+01 -4.902370300059485e+01 + -4.906041344002308e+01 -4.909714259860375e+01 -4.913389051725400e+01 -4.917065716334413e+01 -4.920744250429804e+01 + -4.924424658130064e+01 -4.928106943700116e+01 -4.931791104614518e+01 -4.935477137752828e+01 -4.939165044404930e+01 + -4.942854827009338e+01 -4.946546488188807e+01 -4.950240029454247e+01 -4.953935447684974e+01 -4.957632740294361e+01 + -4.961331911463601e+01 -4.965032965315336e+01 -4.968735898970213e+01 -4.972440709120082e+01 -4.976147397743583e+01 + -4.979855967878247e+01 -4.983566421510402e+01 -4.987278759472007e+01 -4.990992979028766e+01 -4.994709078100569e+01 + -4.998427060790318e+01 -5.002146930959274e+01 -5.005868685319148e+01 -5.009592320640078e+01 -5.013317841075434e+01 + -5.017045250915469e+01 -5.020774547614742e+01 -5.024505728017924e+01 -5.028238793365752e+01 -5.031973746104961e+01 + -5.035710589110189e+01 -5.039449324090066e+01 -5.043189947661289e+01 -5.046932456973549e+01 -5.050676856400442e+01 + -5.054423150327239e+01 -5.058171335962052e+01 -5.061921409929316e+01 -5.065673373695915e+01 -5.069427229950105e+01 + -5.073182981423184e+01 -5.076940629607507e+01 -5.080700170996615e+01 -5.084461602753602e+01 -5.088224929718589e+01 + -5.091990156525010e+01 -5.095757279302548e+01 -5.099526294209112e+01 -5.103297206019221e+01 -5.107070019605169e+01 + -5.110844731613729e+01 -5.114621338143406e+01 -5.118399841325091e+01 -5.122180244526444e+01 -5.125962550029841e+01 + -5.129746758802490e+01 -5.133532867636215e+01 -5.137320874011100e+01 -5.141110782335645e+01 -5.144902596945006e+01 + -5.148696314952589e+01 -5.152491932947918e+01 -5.156289452646703e+01 -5.160088876945014e+01 -5.163890208334180e+01 + -5.167693448081514e+01 -5.171498592963017e+01 -5.175305640369855e+01 -5.179114594645165e+01 -5.182925460014935e+01 + -5.186738233284598e+01 -5.190552911234031e+01 -5.194369497961412e+01 -5.198187997663295e+01 -5.202008407611459e+01 + -5.205830724580739e+01 -5.209654950282933e+01 -5.213481087573764e+01 -5.217309138947744e+01 -5.221139105690054e+01 + -5.224970984609732e+01 -5.228804773087789e+01 -5.232640475269200e+01 -5.236478095346914e+01 -5.240317630941821e+01 + -5.244159079031952e+01 -5.248002440595931e+01 -5.251847717885386e+01 -5.255694914243367e+01 -5.259544031823210e+01 + -5.263395066927961e+01 -5.267248016335085e+01 -5.271102884570031e+01 -5.274959676081755e+01 -5.278818387265291e+01 + -5.282679014593192e+01 -5.286541562901994e+01 -5.290406037048660e+01 -5.294272433607927e+01 -5.298140748616263e+01 + -5.302010984239256e+01 -5.305883143892672e+01 -5.309757229863885e+01 -5.313633243133304e+01 -5.317511180581835e+01 + -5.321391039785607e+01 -5.325272825201081e+01 -5.329156541074357e+01 -5.333042183929739e+01 -5.336929750308754e+01 + -5.340819244543594e+01 -5.344710671111962e+01 -5.348604027282968e+01 -5.352499309722418e+01 -5.356396519891433e+01 + -5.360295660504364e+01 -5.364196734493171e+01 -5.368099743556814e+01 -5.372004684244607e+01 -5.375911553606044e+01 + -5.379820355840945e+01 -5.383731095277006e+01 -5.387643769603123e+01 -5.391558375867469e+01 -5.395474915194053e+01 + -5.399393389872404e+01 -5.403313802778240e+01 -5.407236155707715e+01 -5.411160445552515e+01 -5.415086669663323e+01 + -5.419014832131279e+01 -5.422944936941720e+01 -5.426876980916325e+01 -5.430810960961936e+01 -5.434746881489674e+01 + -5.438684746929877e+01 -5.442624554285502e+01 -5.446566300018413e+01 -5.450509985853421e+01 -5.454455614758906e+01 + -5.458403189414573e+01 -5.462352711279953e+01 -5.466304177222543e+01 -5.470257584656953e+01 -5.474212937778257e+01 + -5.478170240720980e+01 -5.482129490597043e+01 -5.486090684084346e+01 -5.490053823147309e+01 -5.494018910890276e+01 + -5.497985949690793e+01 -5.501954940653937e+01 -5.505925880521750e+01 -5.509898766755921e+01 -5.513873604059781e+01 + -5.517850396943321e+01 -5.521829141901578e+01 -5.525809835354192e+01 -5.529792481434151e+01 -5.533777084523449e+01 + -5.537763642286803e+01 -5.541752151714192e+01 -5.545742613813913e+01 -5.549735030880384e+01 -5.553729406334213e+01 + -5.557725742375872e+01 -5.561724035199087e+01 -5.565724281465346e+01 -5.569726485713910e+01 -5.573730652628086e+01 + -5.577736779589668e+01 -5.581744863307357e+01 -5.585754905099014e+01 -5.589766907536871e+01 -5.593780873601526e+01 + -5.597796805069111e+01 -5.601814698489535e+01 -5.605834550959182e+01 -5.609856366986563e+01 -5.613880151023810e+01 + -5.617905899885479e+01 -5.621933610311022e+01 -5.625963286377015e+01 -5.629994932270948e+01 -5.634028545286861e+01 + -5.638064122221132e+01 -5.642101664772899e+01 -5.646141175844968e+01 -5.650182658252075e+01 -5.654226113528433e+01 + -5.658271538174220e+01 -5.662318929319503e+01 -5.666368291647893e+01 -5.670419629786259e+01 -5.674472940580990e+01 + -5.678528220346420e+01 -5.682585471049146e+01 -5.686644695909487e+01 -5.690705897510426e+01 -5.694769077129006e+01 + -5.698834231455854e+01 -5.702901357847642e+01 -5.706970460911611e+01 -5.711041545084194e+01 -5.715114606868026e+01 + -5.719189642778805e+01 -5.723266657318249e+01 -5.727345655110785e+01 -5.731426633285666e+01 -5.735509588339112e+01 + -5.739594521730356e+01 -5.743681436264626e+01 -5.747770335168147e+01 -5.751861220364783e+01 -5.755954088147938e+01 + -5.760048935348805e+01 -5.764145766580183e+01 -5.768244586550730e+01 -5.772345392571002e+01 -5.776448181276131e+01 + -5.780552953997691e+01 -5.784659713354442e+01 -5.788768462417462e+01 -5.792879202998626e+01 -5.796991931420698e+01 + -5.801106644664837e+01 -5.805223347834903e+01 -5.809342045860209e+01 -5.813462734849197e+01 -5.817585410820936e+01 + -5.821710078257841e+01 -5.825836741928538e+01 -5.829965399283203e+01 -5.834096047087346e+01 -5.838228686686274e+01 + -5.842363320676851e+01 -5.846499952082397e+01 -5.850638582715609e+01 -5.854779209120221e+01 -5.858921828442874e+01 + -5.863066445510763e+01 -5.867213065032231e+01 -5.871361683559694e+01 -5.875512297138874e+01 -5.879664907944645e+01 + -5.883819519466417e+01 -5.887976134322624e+01 -5.892134753756825e+01 -5.896295374384051e+01 -5.900457993500612e+01 + -5.904622615756436e+01 -5.908789245663575e+01 -5.912957879828990e+01 -5.917128514850664e+01 -5.921301155195771e+01 + -5.925475805384439e+01 -5.929652462279476e+01 -5.933831122286624e+01 -5.938011787640643e+01 -5.942194461763230e+01 + -5.946379146994821e+01 -5.950565844408734e+01 -5.954754551091072e+01 -5.958945264733813e+01 -5.963137989439624e+01 + -5.967332729249499e+01 -5.971529481547052e+01 -5.975728243227523e+01 -5.979929015889982e+01 -5.984131802305070e+01 + -5.988336605225896e+01 -5.992543426246962e+01 -5.996752262345901e+01 -6.000963111046766e+01 -6.005175976676178e+01 + -6.009390863383608e+01 -6.013607767807394e+01 -6.017826686618813e+01 -6.022047624132026e+01 -6.026270584835797e+01 + -6.030495566274465e+01 -6.034722565381767e+01 -6.038951583593452e+01 -6.043182623512069e+01 -6.047415687905394e+01 + -6.051650778421003e+01 -6.055887892060463e+01 -6.060127026325783e+01 -6.064368185366749e+01 -6.068611373308907e+01 + -6.072856587533070e+01 -6.077103824887340e+01 -6.081353086833690e+01 -6.085604376132918e+01 -6.089857696127247e+01 + -6.094113048823596e+01 -6.098370430306234e+01 -6.102629837247437e+01 -6.106891274594116e+01 -6.111154747264118e+01 + -6.115420251784390e+01 -6.119687784580902e+01 -6.123957350066591e+01 -6.128228952841628e+01 -6.132502590268162e+01 + -6.136778259056138e+01 -6.141055960544676e+01 -6.145335697380811e+01 -6.149617472814099e+01 -6.153901288864162e+01 + -6.158187142028389e+01 -6.162475029314290e+01 -6.166764955292113e+01 -6.171056924466600e+01 -6.175350933517737e+01 + -6.179646979123154e+01 -6.183945065775757e+01 -6.188245198047678e+01 -6.192547373012725e+01 -6.196851587175868e+01 + -6.201157842265037e+01 -6.205466141333163e+01 -6.209776487510229e+01 -6.214088882566958e+01 -6.218403322759970e+01 + -6.222719804958889e+01 -6.227038333999444e+01 -6.231358914752139e+01 -6.235681544260558e+01 -6.240006218936849e+01 + -6.244332940494305e+01 -6.248661712010740e+01 -6.252992536720910e+01 -6.257325416420860e+01 -6.261660346994837e+01 + -6.265997325077347e+01 -6.270336356215701e+01 -6.274677445777788e+01 -6.279020589501037e+01 -6.283365783085999e+01 + -6.287713031716163e+01 -6.292062340781234e+01 -6.296413707012920e+01 -6.300767126475596e+01 -6.305122601222295e+01 + -6.309480134635203e+01 -6.313839729424505e+01 -6.318201386936521e+01 -6.322565103734121e+01 -6.326930877093868e+01 + -6.331298711930568e+01 -6.335668613058504e+01 -6.340040577251647e+01 -6.344414600718050e+01 -6.348790685442323e+01 + -6.353168834759008e+01 -6.357549051625812e+01 -6.361931337593239e+01 -6.366315688959789e+01 -6.370702102749119e+01 + -6.375090584137499e+01 -6.379481138078580e+01 -6.383873760482961e+01 -6.388268447297220e+01 -6.392665203654889e+01 + -6.397064034897519e+01 -6.401464938011861e+01 -6.405867909237229e+01 -6.410272950177993e+01 -6.414680063823367e+01 + -6.419089253336912e+01 -6.423500520539493e+01 -6.427913861706836e+01 -6.432329273774181e+01 -6.436746761859949e+01 + -6.441166331065573e+01 -6.445587978241413e+01 -6.450011699516882e+01 -6.454437496388719e+01 -6.458865371852110e+01 + -6.463295329528786e+01 -6.467727371608086e+01 -6.472161493923234e+01 -6.476597692945877e+01 -6.481035974057480e+01 + -6.485476342551981e+01 -6.489918794463497e+01 -6.494363325783405e+01 -6.498809941591921e+01 -6.503258647107099e+01 + -6.507709439009531e+01 -6.512162313341831e+01 -6.516617272132122e+01 -6.521074318787740e+01 -6.525533456247440e+01 + -6.529994686059398e+01 -6.534458004678092e+01 -6.538923409250538e+01 -6.543390904787570e+01 -6.547860496211884e+01 + -6.552332180229843e+01 -6.556805952953434e+01 -6.561281816333469e+01 -6.565759773746066e+01 -6.570239828429803e+01 + -6.574721982146080e+01 -6.579206230885156e+01 -6.583692571363754e+01 -6.588181008975629e+01 -6.592671548982709e+01 + -6.597164187442638e+01 -6.601658920334479e+01 -6.606155752527242e+01 -6.610654689090467e+01 -6.615155727005924e+01 + -6.619658862652422e+01 -6.624164098084657e+01 -6.628671436645676e+01 -6.633180881156068e+01 -6.637692433038681e+01 + -6.642206088647883e+01 -6.646721845110714e+01 -6.651239707713407e+01 -6.655759681603797e+01 -6.660281763216933e+01 + -6.664805948389387e+01 -6.669332239276561e+01 -6.673860639512726e+01 -6.678391152328841e+01 -6.682923779433044e+01 + -6.687458516845543e+01 -6.691995361277515e+01 -6.696534317891920e+01 -6.701075391795754e+01 -6.705618579420361e+01 + -6.710163877100581e+01 -6.714711289460833e+01 -6.719260821321966e+01 -6.723812470001026e+01 -6.728366232121398e+01 + -6.732922109035582e+01 -6.737480103488133e+01 -6.742040219062761e+01 -6.746602458035952e+01 -6.751166816616187e+01 + -6.755733291529161e+01 -6.760301887637438e+01 -6.764872609859751e+01 -6.769445455202660e+01 -6.774020420051386e+01 + -6.778597506217976e+01 -6.783176716876942e+01 -6.787758055225885e+01 -6.792341523092826e+01 -6.796927116804379e+01 + -6.801514833341810e+01 -6.806104677806347e+01 -6.810696655123587e+01 -6.815290761396663e+01 -6.819886992772128e+01 + -6.824485354392678e+01 -6.829085851532395e+01 -6.833688480994840e+01 -6.838293238885097e+01 -6.842900126984890e+01 + -6.847509148538957e+01 -6.852120306967514e+01 -6.856733604269469e+01 -6.861349036583006e+01 -6.865966600658993e+01 + -6.870586301559659e+01 -6.875208144399036e+01 -6.879832126187024e+01 -6.884458243234171e+01 -6.889086497157696e+01 + -6.893716890990422e+01 -6.898349428120915e+01 -6.902984110598732e+01 -6.907620934761650e+01 -6.912259897511596e+01 + -6.916901003718877e+01 -6.921544258172949e+01 -6.926189657371528e+01 -6.930837197817074e+01 -6.935486884322755e+01 + -6.940138721768092e+01 -6.944792706987337e+01 -6.949448836290087e+01 -6.954107111932564e+01 -6.958767537490402e+01 + -6.963430115870300e+01 -6.968094848498497e+01 -6.972761731548312e+01 -6.977430762020695e+01 -6.982101945480034e+01 + -6.986775287255249e+01 -6.991450783170005e+01 -6.996128429032680e+01 -7.000808230095708e+01 -7.005490191787665e+01 + -7.010174310797666e+01 -7.014860583121035e+01 -7.019549010717337e+01 -7.024239597049470e+01 -7.028932345629492e+01 + -7.033627258446040e+01 -7.038324331344937e+01 -7.043023560838913e+01 -7.047724952251053e+01 -7.052428510987777e+01 + -7.057134233978515e+01 -7.061842117397924e+01 -7.066552162878578e+01 -7.071264373512433e+01 -7.075978752771100e+01 + -7.080695302731498e+01 -7.085414019512091e+01 -7.090134899910394e+01 -7.094857949398551e+01 -7.099583173235354e+01 + -7.104310567151599e+01 -7.109040126922885e+01 -7.113771858031990e+01 -7.118505766125368e+01 -7.123241847797109e+01 + -7.127980098937178e+01 -7.132720521671429e+01 -7.137463119544236e+01 -7.142207895538176e+01 -7.146954851252747e+01 + -7.151703983316882e+01 -7.156455289009196e+01 -7.161208773177542e+01 -7.165964440570248e+01 -7.170722287968356e+01 + -7.175482311646741e+01 -7.180244513822917e+01 -7.185008898098621e+01 -7.189775467669884e+01 -7.194544224180910e+01 + -7.199315163474331e+01 -7.204088282234626e+01 -7.208863586315185e+01 -7.213641081375658e+01 -7.218420763131780e+01 + -7.223202627227879e+01 -7.227986678966526e+01 -7.232772923884254e+01 -7.237561358795277e+01 -7.242351979769759e+01 + -7.247144788623903e+01 -7.251939788668284e+01 -7.256736983444897e+01 -7.261536375015235e+01 -7.266337959287341e+01 + -7.271141732841731e+01 -7.275947701102203e+01 -7.280755869538000e+01 -7.285566234956853e+01 -7.290378793432680e+01 + -7.295193546765573e+01 -7.300010498266862e+01 -7.304829651566631e+01 -7.309651008753943e+01 -7.314474565435016e+01 + -7.319300317971540e+01 -7.324128272229925e+01 -7.328958433981238e+01 -7.333790799110540e+01 -7.338625363374130e+01 + -7.343462131899291e+01 -7.348301110053259e+01 -7.353142294792167e+01 -7.357985682361442e+01 -7.362831274574745e+01 + -7.367679074711965e+01 -7.372529086349638e+01 -7.377381311579366e+01 -7.382235746256312e+01 -7.387092386912651e+01 + -7.391951239025020e+01 -7.396812308115555e+01 -7.401675590943988e+01 -7.406541083531380e+01 -7.411408787706513e+01 + -7.416278706814910e+01 -7.421150844461324e+01 -7.426025202733783e+01 -7.430901777394124e+01 -7.435780564940528e+01 + -7.440661571142732e+01 -7.445544801616209e+01 -7.450430252087864e+01 -7.455317918285648e+01 -7.460207805830268e+01 + -7.465099920497126e+01 -7.469994258787753e+01 -7.474890816454140e+01 -7.479789595523943e+01 -7.484690599592756e+01 + -7.489593832252380e+01 -7.494499295533201e+01 -7.499406985223764e+01 -7.504316897827101e+01 -7.509229038945979e+01 + -7.514143414169166e+01 -7.519060019929748e+01 -7.523978851997632e+01 -7.528899912645726e+01 -7.533823205657275e+01 + -7.538748734353926e+01 -7.543676500532445e+01 -7.548606500351643e+01 -7.553538730703876e+01 -7.558473197053598e+01 + -7.563409904619321e+01 -7.568348849063742e+01 -7.573290026170078e+01 -7.578233441759443e+01 -7.583179101796470e+01 + -7.588127002782028e+01 -7.593077140392674e+01 -7.598029516471465e+01 -7.602984134475692e+01 -7.607940998153097e+01 + -7.612900109746634e+01 -7.617861465189691e+01 -7.622825061065345e+01 -7.627790902865043e+01 -7.632758996032740e+01 + -7.637729336914126e+01 -7.642701921265419e+01 -7.647676751583191e+01 -7.652653831849052e+01 -7.657633165244424e+01 + -7.662614753370475e+01 -7.667598592307560e+01 -7.672584678949215e+01 -7.677573018962489e+01 -7.682563617769370e+01 + -7.687556471038147e+01 -7.692551574474433e+01 -7.697548933686781e+01 -7.702548554509247e+01 -7.707550433774978e+01 + -7.712554567498073e+01 -7.717560957417300e+01 -7.722569606768573e+01 -7.727580519051753e+01 -7.732593696392289e+01 + -7.737609135154067e+01 -7.742626832278943e+01 -7.747646792782194e+01 -7.752669021677298e+01 -7.757693515897095e+01 + -7.762720271798948e+01 -7.767749291518889e+01 -7.772780578562232e+01 -7.777814136132783e+01 -7.782849965970544e+01 + -7.787888064261847e+01 -7.792928427988689e+01 -7.797971062869398e+01 -7.803015974345008e+01 -7.808063158011076e+01 + -7.813112609521906e+01 -7.818164334612277e+01 -7.823218339188995e+01 -7.828274619766600e+01 -7.833333172107952e+01 + -7.838393998361434e+01 -7.843457102192369e+01 -7.848522486948340e+01 -7.853590154498607e+01 -7.858660101116894e+01 + -7.863732323758104e+01 -7.868806827697425e+01 -7.873883618163512e+01 -7.878962691878654e+01 -7.884044044940295e+01 + -7.889127679452803e+01 -7.894213598992800e+01 -7.899301807018992e+01 -7.904392305456564e+01 -7.909485090214494e+01 + -7.914580158005610e+01 -7.919677514774288e+01 -7.924777166238927e+01 -7.929879107982515e+01 -7.934983335558289e+01 + -7.940089854535901e+01 -7.945198670709752e+01 -7.950309780756868e+01 -7.955423180605224e+01 -7.960538872303847e+01 + -7.965656859466247e+01 -7.970777145842827e+01 -7.975899733555858e+01 -7.981024618078136e+01 -7.986151795697417e+01 + -7.991281272610696e+01 -7.996413054847572e+01 -8.001547137858779e+01 -8.006683517069925e+01 -8.011822198384908e+01 + -8.016963187855384e+01 -8.022106481645797e+01 -8.027252075224854e+01 -8.032399971165485e+01 -8.037550173585385e+01 + -8.042702685677139e+01 -8.047857509055929e+01 -8.053014639952434e+01 -8.058174075328817e+01 -8.063335820457638e+01 + -8.068499880610621e+01 -8.073666252745771e+01 -8.078834933088126e+01 -8.084005923244513e+01 -8.089179226408041e+01 + -8.094354846735196e+01 -8.099532786819320e+01 -8.104713042037783e+01 -8.109895608507813e+01 -8.115080492521992e+01 + -8.120267700205356e+01 -8.125457226837462e+01 -8.130649067623317e+01 -8.135843228315183e+01 -8.141039715010918e+01 + -8.146238524643556e+01 -8.151439653208425e+01 -8.156643102114791e+01 -8.161848874447259e+01 -8.167056974577932e+01 + -8.172267405314662e+01 -8.177480161920819e+01 -8.182695240289546e+01 -8.187912646377457e+01 -8.193132386298609e+01 + -8.198354456733288e+01 -8.203578853472443e+01 -8.208805578183410e+01 -8.214034634197473e+01 -8.219266025625411e+01 + -8.224499755029157e+01 -8.229735817995817e+01 -8.234974210798764e+01 -8.240214939431286e+01 -8.245458009683706e+01 + -8.250703416814667e+01 -8.255951156203467e+01 -8.261201234243612e+01 -8.266453657428882e+01 -8.271708421639993e+01 + -8.276965521981012e+01 -8.282224961062391e+01 -8.287486743131451e+01 -8.292750871476633e+01 -8.298017347733835e+01 + -8.303286167887651e+01 -8.308557328775250e+01 -8.313830836295337e+01 -8.319106696215761e+01 -8.324384904719405e+01 + -8.329665457280116e+01 -8.334948356120523e+01 -8.340233605179664e+01 -8.345521208513452e+01 -8.350811168407860e+01 + -8.356103479952203e+01 -8.361398139085040e+01 -8.366695152338559e+01 -8.371994526125894e+01 -8.377296255790387e+01 + -8.382600336547402e+01 -8.387906774170159e+01 -8.393215574692768e+01 -8.398526734635097e+01 -8.403840249721476e+01 + -8.409156122008268e+01 -8.414474355213920e+01 -8.419794953373223e+01 -8.425117918830632e+01 -8.430443246852916e+01 + -8.435770933516140e+01 -8.441100985211256e+01 -8.446433408298962e+01 -8.451768198704093e+01 -8.457105351533237e+01 + -8.462444869055821e+01 -8.467786755329161e+01 -8.473131014399300e+01 -8.478477648534972e+01 -8.483826652906932e+01 + -8.489178023573824e+01 -8.494531767243778e+01 -8.499887890373510e+01 -8.505246387764603e+01 -8.510607254206460e+01 + -8.515970496094809e+01 -8.521336120130535e+01 -8.526704122628841e+01 -8.532074498941530e+01 -8.537447250952404e+01 + -8.542822382319736e+01 -8.548199897267675e+01 -8.553579798342942e+01 -8.558962080816578e+01 -8.564346740685433e+01 + -8.569733784125194e+01 -8.575123217367282e+01 -8.580515036687339e+01 -8.585909237532205e+01 -8.591305821989287e+01 + -8.596704793875205e+01 -8.602106157282915e+01 -8.607509914567974e+01 -8.612916060859980e+01 -8.618324592155754e+01 + -8.623735515146925e+01 -8.629148836331387e+01 -8.634564550737286e+01 -8.639982653295500e+01 -8.645403150017543e+01 + -8.650826047252751e+01 -8.656251341621210e+01 -8.661679028858919e+01 -8.667109110894766e+01 -8.672541591317201e+01 + -8.677976474159972e+01 -8.683413761829634e+01 -8.688853449778628e+01 -8.694295534179228e+01 -8.699740021037117e+01 + -8.705186916402354e+01 -8.710636216669133e+01 -8.716087917454270e+01 -8.721542020920894e+01 -8.726998530877070e+01 + -8.732457451164281e+01 -8.737918783967393e+01 -8.743382524811331e+01 -8.748848670054353e+01 -8.754317226047976e+01 + -8.759788198894785e+01 -8.765261583708421e+01 -8.770737375634857e+01 -8.776215580938322e+01 -8.781696206132678e+01 + -8.787179247612183e+01 -8.792664700860111e+01 -8.798152567835336e+01 -8.803642852212045e+01 -8.809135558050070e+01 + -8.814630687756171e+01 -8.820128236739042e+01 -8.825628201129771e+01 -8.831130586947003e+01 -8.836635400284558e+01 + -8.842142637649435e+01 -8.847652294770472e+01 -8.853164373850628e+01 -8.858678878695027e+01 -8.864195813043362e+01 + -8.869715178945941e+01 -8.875236971760948e+01 -8.880761187808301e+01 -8.886287833946902e+01 -8.891816916696094e+01 + -8.897348430677987e+01 -8.902882370531137e+01 -8.908418742857141e+01 -8.913957554536425e+01 -8.919498801601753e+01 + -8.925042479199006e+01 -8.930588589774098e+01 -8.936137137472512e+01 -8.941688125937962e+01 -8.947241557120560e+01 + -8.952797426697802e+01 -8.958355731201681e+01 -8.963916476854843e+01 -8.969479669732335e+01 -8.975045305628245e+01 + -8.980613379692392e+01 -8.986183894778455e+01 -8.991756855389235e+01 -8.997332264920152e+01 -9.002910125051302e+01 + -9.008490431708829e+01 -9.014073181666647e+01 -9.019658380843681e+01 -9.025246034941333e+01 -9.030836139645970e+01 + -9.036428690661128e+01 -9.042023693773967e+01 -9.047621154925669e+01 -9.053221070589892e+01 -9.058823436476921e+01 + -9.064428254711031e+01 -9.070035529106499e+01 -9.075645263823618e+01 -9.081257461289793e+01 -9.086872116654884e+01 + -9.092489225918972e+01 -9.098108795760594e+01 -9.103730832657459e+01 -9.109355331605536e+01 -9.114982287548730e+01 + -9.120611706704364e+01 -9.126243595579022e+01 -9.131877950563008e+01 -9.137514767186437e+01 -9.143154047654943e+01 + -9.148795795857168e+01 -9.154440015738282e+01 -9.160086709537343e+01 -9.165735872612346e+01 -9.171387501169491e+01 + -9.177041601688784e+01 -9.182698180564800e+01 -9.188357233576582e+01 -9.194018755741556e+01 -9.199682749646104e+01 + -9.205349219658670e+01 -9.211018169707003e+01 -9.216689601912306e+01 -9.222363511610273e+01 -9.228039895018067e+01 + -9.233718758664240e+01 -9.239400108840672e+01 -9.245083940581294e+01 -9.250770248979978e+01 -9.256459040628322e+01 + -9.262150322244982e+01 -9.267844089559186e+01 -9.273540337476760e+01 -9.279239068599267e+01 -9.284940287335907e+01 + -9.290643997630693e+01 -9.296350201607783e+01 -9.302058894577094e+01 -9.307770072730455e+01 -9.313483742601555e+01 + -9.319199910633068e+01 -9.324918572561810e+01 -9.330639723351504e+01 -9.336363365579297e+01 -9.342089503640302e+01 + -9.347818141588093e+01 -9.353549281584256e+01 -9.359282918563940e+01 -9.365019048477910e+01 -9.370757678565749e+01 + -9.376498815769901e+01 -9.382242454555492e+01 -9.387988589305337e+01 -9.393737226550313e+01 -9.399488373202897e+01 + -9.405242025553964e+01 -9.410998178945039e+01 -9.416756835541781e+01 -9.422517999301114e+01 -9.428281674520871e+01 + -9.434047863667399e+01 -9.439816561540189e+01 -9.445587763836596e+01 -9.451361477512259e+01 -9.457137709520302e+01 + -9.462916455545547e+01 -9.468697710379740e+01 -9.474481476510589e+01 -9.480267758244509e+01 -9.486056559466863e+01 + -9.491847882335075e+01 -9.497641722515867e+01 -9.503438076487508e+01 -9.509236950465109e+01 -9.515038350409563e+01 + -9.520842271528107e+01 -9.526648709103007e+01 -9.532457669470300e+01 -9.538269159175374e+01 -9.544083174547335e+01 + -9.549899710997526e+01 -9.555718770482461e+01 -9.561540356780063e+01 -9.567364474408794e+01 -9.573191126075703e+01 + -9.579020306501620e+01 -9.584852011272490e+01 -9.590686247420874e+01 -9.596523021978578e+01 -9.602362330527772e+01 + -9.608204167783254e+01 -9.614048536439948e+01 -9.619895441016116e+01 -9.625744885343293e+01 -9.631596871403326e+01 + -9.637451394466026e+01 -9.643308450797647e+01 -9.649168047362274e+01 -9.655030190767742e+01 -9.660894875499127e+01 + -9.666762096089710e+01 -9.672631859388268e+01 -9.678504172537357e+01 -9.684379031539257e+01 -9.690256431417546e+01 + -9.696136374421286e+01 -9.702018864639355e+01 -9.707903906294442e+01 -9.713791501832830e+01 -9.719681646461351e+01 + -9.725574336170810e+01 -9.731469577327378e+01 -9.737367376351882e+01 -9.743267729508464e+01 -9.749170632178308e+01 + -9.755076086367355e+01 -9.760984095895955e+01 -9.766894665217343e+01 -9.772807797034233e+01 -9.778723486414395e+01 + -9.784641729236439e+01 -9.790562532257231e+01 -9.796485902036660e+01 -9.802411833468516e+01 -9.808340321418262e+01 + -9.814271372304191e+01 -9.820204992860188e+01 -9.826141179529722e+01 -9.832079927766843e+01 -9.838021239358226e+01 + -9.843965117935535e+01 -9.849911568177785e+01 -9.855860593025675e+01 -9.861812187419362e+01 -9.867766347002308e+01 + -9.873723078231735e+01 -9.879682387670165e+01 -9.885644271487612e+01 -9.891608724974174e+01 -9.897575750292785e+01 + -9.903545351466867e+01 -9.909517533088989e+01 -9.915492297862031e+01 -9.921469640360959e+01 -9.927449556058966e+01 + -9.933432052149955e+01 -9.939417135686639e+01 -9.945404801436261e+01 -9.951395044077229e+01 -9.957387870218038e+01 + -9.963383286719130e+01 -9.969381289518709e+01 -9.975381873630593e+01 -9.981385041293248e+01 -9.987390796877466e+01 + -9.993399146058783e+01 -9.999410091983435e+01 -1.000542362637563e+02 -1.001143974249114e+02 -1.001745845113392e+02 + -1.002347976270743e+02 -1.002950366846517e+02 -1.003553015922550e+02 -1.004155924321621e+02 -1.004759093011103e+02 + -1.005362521795820e+02 -1.005966210292817e+02 -1.006570158530568e+02 -1.007174366671700e+02 -1.007778835004040e+02 + -1.008383563749385e+02 -1.008988552740233e+02 -1.009593801813489e+02 -1.010199311212978e+02 -1.010805081231472e+02 + -1.011411111950619e+02 -1.012017403376325e+02 -1.012623955422635e+02 -1.013230768099676e+02 -1.013837841893743e+02 + -1.014445177207514e+02 -1.015052773633014e+02 -1.015660630775449e+02 -1.016268749103392e+02 -1.016877129150088e+02 + -1.017485770844115e+02 -1.018094673966629e+02 -1.018703838313761e+02 -1.019313263923028e+02 -1.019922951782496e+02 + -1.020532902664119e+02 -1.021143115524854e+02 -1.021753589342455e+02 -1.022364324992857e+02 -1.022975323519374e+02 + -1.023586584736673e+02 -1.024198108268543e+02 -1.024809894203941e+02 -1.025421942728475e+02 -1.026034253949216e+02 + -1.026646827901934e+02 -1.027259664415750e+02 -1.027872763473731e+02 -1.028486125881369e+02 -1.029099752254547e+02 + -1.029713641628286e+02 -1.030327793161952e+02 -1.030942208093169e+02 -1.031556887637190e+02 -1.032171830841550e+02 + -1.032787036718354e+02 -1.033402506305696e+02 -1.034018240681317e+02 -1.034634239055545e+02 -1.035250500515010e+02 + -1.035867025518952e+02 -1.036483814821213e+02 -1.037100868981441e+02 -1.037718188237329e+02 -1.038335771732939e+02 + -1.038953618747522e+02 -1.039571730194689e+02 -1.040190107055651e+02 -1.040808748947658e+02 -1.041427655331822e+02 + -1.042046826408667e+02 -1.042666262524425e+02 -1.043285963868752e+02 -1.043905930564436e+02 -1.044526162623378e+02 + -1.045146660069125e+02 -1.045767423082721e+02 -1.046388451777543e+02 -1.047009745838822e+02 -1.047631305085241e+02 + -1.048253130297424e+02 -1.048875222165416e+02 -1.049497580055002e+02 -1.050120203310284e+02 -1.050743092512860e+02 + -1.051366248384456e+02 -1.051989670969791e+02 -1.052613360137520e+02 -1.053237315729033e+02 -1.053861537661844e+02 + -1.054486026185219e+02 -1.055110781583045e+02 -1.055735803945944e+02 -1.056361093274371e+02 -1.056986649401382e+02 + -1.057612472323176e+02 -1.058238562855892e+02 -1.058864921618116e+02 -1.059491547618286e+02 -1.060118440001799e+02 + -1.060745600072047e+02 -1.061373029070868e+02 -1.062000725835928e+02 -1.062628689188559e+02 -1.063256920288941e+02 + -1.063885420424685e+02 -1.064514189054312e+02 -1.065143225392365e+02 -1.065772529506575e+02 -1.066402101774261e+02 + -1.067031942957903e+02 -1.067662053568374e+02 -1.068292432724951e+02 -1.068923079625714e+02 -1.069553995175528e+02 + -1.070185180380394e+02 -1.070816634944072e+02 -1.071448358336418e+02 -1.072080350393896e+02 -1.072712611247882e+02 + -1.073345141842783e+02 -1.073977942922143e+02 -1.074611013613008e+02 -1.075244353055826e+02 -1.075877962061142e+02 + -1.076511841502191e+02 -1.077145990832866e+02 -1.077780409492339e+02 -1.078415098280245e+02 -1.079050057992970e+02 + -1.079685288053471e+02 -1.080320787786834e+02 -1.080956557500093e+02 -1.081592597729443e+02 -1.082228908945775e+02 + -1.082865491424036e+02 -1.083502344720692e+02 -1.084139468448718e+02 -1.084776863165616e+02 -1.085414529440200e+02 + -1.086052466942038e+02 -1.086690675238350e+02 -1.087329154386204e+02 -1.087967904674474e+02 -1.088606926829425e+02 + -1.089246221377382e+02 -1.089885787607543e+02 -1.090525624876805e+02 -1.091165734050004e+02 -1.091806115963225e+02 + -1.092446769829633e+02 -1.093087694909110e+02 -1.093728892271333e+02 -1.094370362953419e+02 -1.095012106052476e+02 + -1.095654120623545e+02 -1.096296407493415e+02 -1.096938967647426e+02 -1.097581800933404e+02 -1.098224906984946e+02 + -1.098868285716250e+02 -1.099511937236656e+02 -1.100155862155477e+02 -1.100800060933800e+02 -1.101444532939841e+02 + -1.102089277564002e+02 -1.102734295378303e+02 -1.103379587096266e+02 -1.104025152815812e+02 -1.104670992426730e+02 + -1.105317105601886e+02 -1.105963492199813e+02 -1.106610153038629e+02 -1.107257088820756e+02 -1.107904298826226e+02 + -1.108551782361634e+02 -1.109199540262203e+02 -1.109847573373186e+02 -1.110495881051325e+02 -1.111144462586115e+02 + -1.111793318486534e+02 -1.112442449476576e+02 -1.113091855920787e+02 -1.113741537899001e+02 -1.114391494711626e+02 + -1.115041725824562e+02 -1.115692232145109e+02 -1.116343014623147e+02 -1.116994072937479e+02 -1.117645406555522e+02 + -1.118297015370191e+02 -1.118948899532702e+02 -1.119601059801944e+02 -1.120253496750247e+02 -1.120906209596036e+02 + -1.121559197660155e+02 -1.122212462027017e+02 -1.122866003728487e+02 -1.123519821822644e+02 -1.124173915349786e+02 + -1.124828285252852e+02 -1.125482932599049e+02 -1.126137857050017e+02 -1.126793058037530e+02 -1.127448535479451e+02 + -1.128104289543148e+02 -1.128760320907921e+02 -1.129416630123176e+02 -1.130073216706816e+02 -1.130730080183262e+02 + -1.131387221134510e+02 -1.132044640167948e+02 -1.132702336934948e+02 -1.133360310978225e+02 -1.134018562361866e+02 + -1.134677091387784e+02 -1.135335898787815e+02 -1.135994985091588e+02 -1.136654349589990e+02 -1.137313991629182e+02 + -1.137973912015162e+02 -1.138634111582333e+02 -1.139294589818884e+02 -1.139955346168527e+02 -1.140616381243277e+02 + -1.141277695680233e+02 -1.141939289048548e+02 -1.142601160860919e+02 -1.143263311472162e+02 -1.143925741390390e+02 + -1.144588450894802e+02 -1.145251440101338e+02 -1.145914708701818e+02 -1.146578256494022e+02 -1.147242084123678e+02 + -1.147906192149256e+02 -1.148570579932248e+02 -1.149235246826633e+02 -1.149900193353325e+02 -1.150565420227369e+02 + -1.151230927773426e+02 -1.151896716067799e+02 -1.152562784583746e+02 -1.153229132947855e+02 -1.153895762003063e+02 + -1.154562672526404e+02 -1.155229863814943e+02 -1.155897335150450e+02 -1.156565087233475e+02 -1.157233120892246e+02 + -1.157901436046917e+02 -1.158570032371645e+02 -1.159238909464663e+02 -1.159908067231330e+02 -1.160577506881430e+02 + -1.161247229415995e+02 -1.161917233696630e+02 -1.162587518588770e+02 -1.163258085112608e+02 -1.163928934406831e+02 + -1.164600065929374e+02 -1.165271479034755e+02 -1.165943174344564e+02 -1.166615152526160e+02 -1.167287413162901e+02 + -1.167959955757904e+02 -1.168632780577301e+02 -1.169305888112216e+02 -1.169979278990717e+02 -1.170652953548001e+02 + -1.171326910810820e+02 -1.172001149975291e+02 -1.172675672223445e+02 -1.173350478778825e+02 -1.174025569045121e+02 + -1.174700942215011e+02 -1.175376598456954e+02 -1.176052538191002e+02 -1.176728761867799e+02 -1.177405269796691e+02 + -1.178082061691247e+02 -1.178759137299273e+02 -1.179436497101298e+02 -1.180114141509050e+02 -1.180792069926326e+02 + -1.181470281872303e+02 -1.182148778335583e+02 -1.182827560287664e+02 -1.183506627162192e+02 -1.184185978220269e+02 + -1.184865613570652e+02 -1.185545533602401e+02 -1.186225738978121e+02 -1.186906230193939e+02 -1.187587006806511e+02 + -1.188268068350639e+02 -1.188949415213182e+02 -1.189631047837780e+02 -1.190312966043158e+02 -1.190995169567162e+02 + -1.191677658449030e+02 -1.192360432941998e+02 -1.193043493853908e+02 -1.193726841751893e+02 -1.194410475685670e+02 + -1.195094394794060e+02 -1.195778600089746e+02 -1.196463092648311e+02 -1.197147871923100e+02 -1.197832937276135e+02 + -1.198518289326376e+02 -1.199203928745778e+02 -1.199889855161324e+02 -1.200576068078755e+02 -1.201262567563797e+02 + -1.201949353935382e+02 -1.202636427965272e+02 -1.203323790196208e+02 -1.204011439802014e+02 -1.204699376081542e+02 + -1.205387600202684e+02 -1.206076113241917e+02 -1.206764914041025e+02 -1.207454001431820e+02 -1.208143376440890e+02 + -1.208833040296615e+02 -1.209522992839752e+02 -1.210213233653680e+02 -1.210903762679893e+02 -1.211594580022500e+02 + -1.212285686077949e+02 -1.212977081155049e+02 -1.213668764919694e+02 -1.214360737100132e+02 -1.215052998316942e+02 + -1.215745549154533e+02 -1.216438389160294e+02 -1.217131517838345e+02 -1.217824935556734e+02 -1.218518642837182e+02 + -1.219212639952166e+02 -1.219906927020717e+02 -1.220601503797327e+02 -1.221296370078328e+02 -1.221991526191948e+02 + -1.222686972509000e+02 -1.223382709038720e+02 -1.224078735702578e+02 -1.224775052432531e+02 -1.225471659287695e+02 + -1.226168556825330e+02 -1.226865745477072e+02 -1.227563224673916e+02 -1.228260993926653e+02 -1.228959054065903e+02 + -1.229657405910973e+02 -1.230356048916106e+02 -1.231054982500379e+02 -1.231754207307278e+02 -1.232453724007864e+02 + -1.233153532159101e+02 -1.233853631242201e+02 -1.234554021549459e+02 -1.235254703591199e+02 -1.235955677938801e+02 + -1.236656944915691e+02 -1.237358503792446e+02 -1.238060353939673e+02 -1.238762496180971e+02 -1.239464931371069e+02 + -1.240167659036240e+02 -1.240870678602586e+02 -1.241573990423949e+02 -1.242277595040581e+02 -1.242981492810638e+02 + -1.243685683872523e+02 -1.244390167667736e+02 -1.245094943779347e+02 -1.245800013053605e+02 -1.246505376299316e+02 + -1.247211032912332e+02 -1.247916982296097e+02 -1.248623225297382e+02 -1.249329762770640e+02 -1.250036594157741e+02 + -1.250743718736609e+02 -1.251451136541969e+02 -1.252158847947410e+02 -1.252866853925174e+02 -1.253575155184925e+02 + -1.254283750787370e+02 -1.254992639825418e+02 -1.255701823169751e+02 -1.256411301759969e+02 -1.257121075033584e+02 + -1.257831142369608e+02 -1.258541504415142e+02 -1.259252161922362e+02 -1.259963114795672e+02 -1.260674362758903e+02 + -1.261385905661348e+02 -1.262097743537985e+02 -1.262809877041053e+02 -1.263522306696565e+02 -1.264235031908370e+02 + -1.264948052148923e+02 -1.265661368287249e+02 -1.266374981169807e+02 -1.267088890156212e+02 -1.267803094502130e+02 + -1.268517594534262e+02 -1.269232390831601e+02 -1.269947483911282e+02 -1.270662874069690e+02 -1.271378560782095e+02 + -1.272094543594662e+02 -1.272810823158284e+02 -1.273527400123002e+02 -1.274244274030747e+02 -1.274961444355319e+02 + -1.275678911406106e+02 -1.276396675704015e+02 -1.277114737780431e+02 -1.277833097950603e+02 -1.278551755654751e+02 + -1.279270710424012e+02 -1.279989963028243e+02 -1.280709514152536e+02 -1.281429362904217e+02 -1.282149508513121e+02 + -1.282869952276877e+02 -1.283590695463467e+02 -1.284311737154509e+02 -1.285033076302067e+02 -1.285754713526335e+02 + -1.286476649682441e+02 -1.287198884897120e+02 -1.287921419051992e+02 -1.288644251776617e+02 -1.289367382880697e+02 + -1.290090813146567e+02 -1.290814543319980e+02 -1.291538573027727e+02 -1.292262901737162e+02 -1.292987529396840e+02 + -1.293712456190937e+02 -1.294437682764910e+02 -1.295163209673579e+02 -1.295889036647941e+02 -1.296615163353197e+02 + -1.297341590015173e+02 -1.298068316903185e+02 -1.298795343899871e+02 -1.299522670904091e+02 -1.300250298266263e+02 + -1.300978226354063e+02 -1.301706455152632e+02 -1.302434984561237e+02 -1.303163814518184e+02 -1.303892945098205e+02 + -1.304622376882688e+02 -1.305352110313897e+02 -1.306082144770936e+02 -1.306812479731976e+02 -1.307543116134598e+02 + -1.308274054850011e+02 -1.309005295024521e+02 -1.309736835845235e+02 -1.310468678387340e+02 -1.311200823754845e+02 + -1.311933271278942e+02 -1.312666020134129e+02 -1.313399070640916e+02 -1.314132423401880e+02 -1.314866079001839e+02 + -1.315600037753056e+02 -1.316334298895329e+02 -1.317068861777292e+02 -1.317803727255405e+02 -1.318538896215189e+02 + -1.319274368150577e+02 -1.320010142454794e+02 -1.320746219509807e+02 -1.321482599879661e+02 -1.322219283867981e+02 + -1.322956271602158e+02 -1.323693562765047e+02 -1.324431157110688e+02 -1.325169055122373e+02 -1.325907257242561e+02 + -1.326645763021127e+02 -1.327384572099461e+02 -1.328123685377604e+02 -1.328863103680995e+02 -1.329602826278048e+02 + -1.330342852393407e+02 -1.331083182633673e+02 -1.331823817787306e+02 -1.332564757988239e+02 -1.333306003141445e+02 + -1.334047552890586e+02 -1.334789407033280e+02 -1.335531566244299e+02 -1.336274031130300e+02 -1.337016801148342e+02 + -1.337759875748336e+02 -1.338503255501201e+02 -1.339246941130952e+02 -1.339990932852997e+02 -1.340735230609586e+02 + -1.341479833758948e+02 -1.342224741891434e+02 -1.342969956109889e+02 -1.343715477431406e+02 -1.344461305017541e+02 + -1.345207438015131e+02 -1.345953877367626e+02 -1.346700624038786e+02 -1.347447677276981e+02 -1.348195036263442e+02 + -1.348942701626209e+02 -1.349690674171868e+02 -1.350438953974369e+02 -1.351187540921076e+02 -1.351936434885642e+02 + -1.352685635848754e+02 -1.353435144232942e+02 -1.354184960414874e+02 -1.354935084145923e+02 -1.355685515128237e+02 + -1.356436253492364e+02 -1.357187299541088e+02 -1.357938653837732e+02 -1.358690316768758e+02 -1.359442287752637e+02 + -1.360194566279880e+02 -1.360947153097144e+02 -1.361700048911278e+02 -1.362453253013760e+02 -1.363206764782614e+02 + -1.363960585357406e+02 -1.364714715821978e+02 -1.365469155275740e+02 -1.366223902703805e+02 -1.366978958618521e+02 + -1.367734323848502e+02 -1.368489998960226e+02 -1.369245984210613e+02 -1.370002278880492e+02 -1.370758882331093e+02 + -1.371515795221331e+02 -1.372273018270698e+02 -1.373030551143317e+02 -1.373788393429953e+02 -1.374546545483291e+02 + -1.375305007816427e+02 -1.376063780822184e+02 -1.376822864668756e+02 -1.377582258746108e+02 -1.378341962588316e+02 + -1.379101977084133e+02 -1.379862303093919e+02 -1.380622940009784e+02 -1.381383887192652e+02 -1.382145145346940e+02 + -1.382906715205862e+02 -1.383668596274320e+02 -1.384430787972570e+02 -1.385193290610606e+02 -1.385956104734610e+02 + -1.386719230945808e+02 -1.387482669582360e+02 -1.388246419875133e+02 -1.389010481148665e+02 -1.389774854209464e+02 + -1.390539539951986e+02 -1.391304538140523e+02 -1.392069848343242e+02 -1.392835470473980e+02 -1.393601404693719e+02 + -1.394367651806349e+02 -1.395134212422815e+02 -1.395901085739362e+02 -1.396668271002043e+02 -1.397435769070855e+02 + -1.398203580874878e+02 -1.398971706005607e+02 -1.399740143977720e+02 -1.400508895336226e+02 -1.401277960614956e+02 + -1.402047339272718e+02 -1.402817030764181e+02 -1.403587035602461e+02 -1.404357354502877e+02 -1.405127987931110e+02 + -1.405898936026113e+02 -1.406670197869564e+02 -1.407441772794584e+02 -1.408213662197336e+02 -1.408985867371466e+02 + -1.409758387137537e+02 -1.410531220224061e+02 -1.411304367464428e+02 -1.412077829961380e+02 -1.412851607790223e+02 + -1.413625700771281e+02 -1.414400108732392e+02 -1.415174831646232e+02 -1.415949870057306e+02 -1.416725224388105e+02 + -1.417500894001226e+02 -1.418276878351835e+02 -1.419053178325258e+02 -1.419829794809226e+02 -1.420606727270934e+02 + -1.421383975074728e+02 -1.422161538594082e+02 -1.422939418408956e+02 -1.423717614916131e+02 -1.424496128273150e+02 + -1.425274957863782e+02 -1.426054103213069e+02 -1.426833565184944e+02 -1.427613344645970e+02 -1.428393441134355e+02 + -1.429173854035838e+02 -1.429954583454632e+02 -1.430735629773860e+02 -1.431516993773805e+02 -1.432298676007922e+02 + -1.433080675725197e+02 -1.433862992191345e+02 -1.434645626043482e+02 -1.435428578032951e+02 -1.436211847996638e+02 + -1.436995435672099e+02 -1.437779341314036e+02 -1.438563565210897e+02 -1.439348107268960e+02 -1.440132967358192e+02 + -1.440918145585468e+02 -1.441703642214681e+02 -1.442489457900865e+02 -1.443275593072134e+02 -1.444062046857781e+02 + -1.444848818522611e+02 -1.445635909172288e+02 -1.446423319927847e+02 -1.447211050130976e+02 -1.447999098925679e+02 + -1.448787466444589e+02 -1.449576153140356e+02 -1.450365159757091e+02 -1.451154486823820e+02 -1.451944133717774e+02 + -1.452734099863848e+02 -1.453524386029381e+02 -1.454314992962476e+02 -1.455105919991844e+02 -1.455897166474813e+02 + -1.456688733302556e+02 -1.457480621396693e+02 -1.458272830266799e+02 -1.459065359271370e+02 -1.459858208576615e+02 + -1.460651378591126e+02 -1.461444869885314e+02 -1.462238682831965e+02 -1.463032816851561e+02 -1.463827271416525e+02 + -1.464622047159361e+02 -1.465417144784923e+02 -1.466212564127396e+02 -1.467008304928943e+02 -1.467804367434297e+02 + -1.468600751934606e+02 -1.469397458404120e+02 -1.470194486722770e+02 -1.470991836710121e+02 -1.471789508433917e+02 + -1.472587503015001e+02 -1.473385821300154e+02 -1.474184461986837e+02 -1.474983423870870e+02 -1.475782708290815e+02 + -1.476582316674545e+02 -1.477382248264445e+02 -1.478182502096616e+02 -1.478983078567520e+02 -1.479783978350921e+02 + -1.480585201869469e+02 -1.481386749269736e+02 -1.482188619845118e+02 -1.482990813088785e+02 -1.483793330146163e+02 + -1.484596172099193e+02 -1.485399338123612e+02 -1.486202827323657e+02 -1.487006640423751e+02 -1.487810778248495e+02 + -1.488615240403001e+02 -1.489420026412511e+02 -1.490225136702235e+02 -1.491030571832025e+02 -1.491836332000337e+02 + -1.492642417202360e+02 -1.493448826981615e+02 -1.494255561054278e+02 -1.495062620278810e+02 -1.495870005487025e+02 + -1.496677716261896e+02 -1.497485751994623e+02 -1.498294112558179e+02 -1.499102798158717e+02 -1.499911809853331e+02 + -1.500721148441144e+02 -1.501530812838450e+02 -1.502340802026938e+02 -1.503151117132690e+02 -1.503961759364751e+02 + -1.504772728119622e+02 -1.505584022645880e+02 -1.506395643412949e+02 -1.507207591024668e+02 -1.508019865401696e+02 + -1.508832466324269e+02 -1.509645393694111e+02 -1.510458647628492e+02 -1.511272228985386e+02 -1.512086138412552e+02 + -1.512900374976176e+02 -1.513714937855876e+02 -1.514529828266537e+02 -1.515345047392310e+02 -1.516160594259147e+02 + -1.516976467776822e+02 -1.517792668548592e+02 -1.518609197460578e+02 -1.519426054836894e+02 -1.520243240750476e+02 + -1.521060754831553e+02 -1.521878596792744e+02 -1.522696767118938e+02 -1.523515266305248e+02 -1.524334094115421e+02 + -1.525153250314230e+02 -1.525972735401888e+02 -1.526792549864990e+02 -1.527612693400200e+02 -1.528433165631959e+02 + -1.529253966685747e+02 -1.530075096900777e+02 -1.530896556970147e+02 -1.531718347321965e+02 -1.532540466970516e+02 + -1.533362915133235e+02 -1.534185693253995e+02 -1.535008802693854e+02 -1.535832242256197e+02 -1.536656010621809e+02 + -1.537480108538752e+02 -1.538304537113657e+02 -1.539129296820158e+02 -1.539954387715506e+02 -1.540779808824423e+02 + -1.541605559457948e+02 -1.542431641104905e+02 -1.543258055115917e+02 -1.544084800111010e+02 -1.544911874726015e+02 + -1.545739280390565e+02 -1.546567018609975e+02 -1.547395088398511e+02 -1.548223488576198e+02 -1.549052219677139e+02 + -1.549881282595875e+02 -1.550710677954614e+02 -1.551540406026988e+02 -1.552370465964632e+02 -1.553200857053796e+02 + -1.554031580241178e+02 -1.554862636500489e+02 -1.555694025253043e+02 -1.556525745801794e+02 -1.557357798528659e+02 + -1.558190184045264e+02 -1.559022902803117e+02 -1.559855954979769e+02 -1.560689339817060e+02 -1.561523056771075e+02 + -1.562357107090587e+02 -1.563191491909100e+02 -1.564026210106382e+02 -1.564861260558312e+02 -1.565696644378976e+02 + -1.566532362813955e+02 -1.567368415396626e+02 -1.568204801387562e+02 -1.569041520668287e+02 -1.569878573487146e+02 + -1.570715960938785e+02 -1.571553683828581e+02 -1.572391740958522e+02 -1.573230131265335e+02 -1.574068856228085e+02 + -1.574907917295132e+02 -1.575747313249683e+02 -1.576587042737324e+02 -1.577427106518309e+02 -1.578267505715277e+02 + -1.579108240785769e+02 -1.579949311783184e+02 -1.580790717809458e+02 -1.581632458187553e+02 -1.582474534075981e+02 + -1.583316946623155e+02 -1.584159695101536e+02 -1.585002778727259e+02 -1.585846198367120e+02 -1.586689954874005e+02 + -1.587534047394542e+02 -1.588378475061590e+02 -1.589223238659185e+02 -1.590068339195322e+02 -1.590913776922658e+02 + -1.591759551748261e+02 -1.592605662952183e+02 -1.593452110061037e+02 -1.594298894214712e+02 -1.595146016508511e+02 + -1.595993476246111e+02 -1.596841272537272e+02 -1.597689405507699e+02 -1.598537875632453e+02 -1.599386683768111e+02 + -1.600235830481832e+02 -1.601085314801616e+02 -1.601935135899282e+02 -1.602785295061083e+02 -1.603635793509372e+02 + -1.604486630096468e+02 -1.605337803660765e+02 -1.606189315354990e+02 -1.607041166452176e+02 -1.607893356392255e+02 + -1.608745884397152e+02 -1.609598750649831e+02 -1.610451955612870e+02 -1.611305499906227e+02 -1.612159383917271e+02 + -1.613013606945609e+02 -1.613868168398436e+02 -1.614723069201057e+02 -1.615578310304217e+02 -1.616433891242326e+02 + -1.617289811339727e+02 -1.618146070496823e+02 -1.619002668955830e+02 -1.619859607750138e+02 -1.620716887676450e+02 + -1.621574507793529e+02 -1.622432467219253e+02 -1.623290767045893e+02 -1.624149408340039e+02 -1.625008390091176e+02 + -1.625867711331680e+02 -1.626727373342588e+02 -1.627587377384768e+02 -1.628447722389764e+02 -1.629308407201184e+02 + -1.630169432640222e+02 -1.631030799800713e+02 -1.631892508889492e+02 -1.632754559784962e+02 -1.633616951938801e+02 + -1.634479685044198e+02 -1.635342760187116e+02 -1.636206178291233e+02 -1.637069938238325e+02 -1.637934038942077e+02 + -1.638798481485683e+02 -1.639663267112721e+02 -1.640528395538795e+02 -1.641393866180353e+02 -1.642259678785196e+02 + -1.643125833411851e+02 -1.643992331030405e+02 -1.644859172470150e+02 -1.645726357085657e+02 -1.646593884180614e+02 + -1.647461754329907e+02 -1.648329968179324e+02 -1.649198525387065e+02 -1.650067425502886e+02 -1.650936668630355e+02 + -1.651806255134507e+02 -1.652676185872448e+02 -1.653546461444497e+02 -1.654417080931755e+02 -1.655288043499995e+02 + -1.656159350172886e+02 -1.657031001994683e+02 -1.657902998234105e+02 -1.658775338117127e+02 -1.659648022474274e+02 + -1.660521052162188e+02 -1.661394426537408e+02 -1.662268144894047e+02 -1.663142207776613e+02 -1.664016615975541e+02 + -1.664891370014617e+02 -1.665766470055737e+02 -1.666641915079906e+02 -1.667517704334961e+02 -1.668393839316945e+02 + -1.669270321420214e+02 -1.670147149384157e+02 -1.671024321837371e+02 -1.671901839620226e+02 -1.672779703889409e+02 + -1.673657914855093e+02 -1.674536472385115e+02 -1.675415375924466e+02 -1.676294625158688e+02 -1.677174221158364e+02 + -1.678054164853866e+02 -1.678934455229663e+02 -1.679815091339810e+02 -1.680696074462591e+02 -1.681577405863894e+02 + -1.682459084535819e+02 -1.683341109324726e+02 -1.684223480767776e+02 -1.685106199767677e+02 -1.685989266998525e+02 + -1.686872682758898e+02 -1.687756446073924e+02 -1.688640556163956e+02 -1.689525014303699e+02 -1.690409821718389e+02 + -1.691294977381033e+02 -1.692180480141565e+02 -1.693066330609834e+02 -1.693952529706734e+02 -1.694839077837423e+02 + -1.695725975104607e+02 -1.696613220916933e+02 -1.697500814887782e+02 -1.698388758143547e+02 -1.699277051650943e+02 + -1.700165694224996e+02 -1.701054684738952e+02 -1.701944024450633e+02 -1.702833714670375e+02 -1.703723754534025e+02 + -1.704614143033400e+02 -1.705504880758685e+02 -1.706395968591658e+02 -1.707287406982126e+02 -1.708179196055015e+02 + -1.709071335067704e+02 -1.709963823462651e+02 -1.710856662290167e+02 -1.711749852543236e+02 -1.712643393377691e+02 + -1.713537283867857e+02 -1.714431524599174e+02 -1.715326116432521e+02 -1.716221059819435e+02 -1.717116354891412e+02 + -1.718012000909151e+02 -1.718907997312464e+02 -1.719804345128430e+02 -1.720701045346718e+02 -1.721598097220100e+02 + -1.722495499971131e+02 -1.723393254438396e+02 -1.724291361494486e+02 -1.725189820532021e+02 -1.726088630837053e+02 + -1.726987792749333e+02 -1.727887306891670e+02 -1.728787173965418e+02 -1.729687394350333e+02 -1.730587967061244e+02 + -1.731488891286860e+02 -1.732390168276344e+02 -1.733291799265234e+02 -1.734193783374131e+02 -1.735096119603506e+02 + -1.735998808588243e+02 -1.736901851222248e+02 -1.737805247801124e+02 -1.738708998286339e+02 -1.739613101901119e+02 + -1.740517558114003e+02 -1.741422368113012e+02 -1.742327533050288e+02 -1.743233052214973e+02 -1.744138924793676e+02 + -1.745045151425876e+02 -1.745951732822802e+02 -1.746858668529805e+02 -1.747765958032038e+02 -1.748673601739718e+02 + -1.749581600245709e+02 -1.750489953948396e+02 -1.751398663036498e+02 -1.752307727054541e+02 -1.753217145616989e+02 + -1.754126919262226e+02 -1.755037048571098e+02 -1.755947533370347e+02 -1.756858373371216e+02 -1.757769568577038e+02 + -1.758681119173357e+02 -1.759593025782490e+02 -1.760505288876894e+02 -1.761417907892832e+02 -1.762330882344909e+02 + -1.763244213097290e+02 -1.764157900964081e+02 -1.765071945209611e+02 -1.765986345094344e+02 -1.766901101413071e+02 + -1.767816215026837e+02 -1.768731685527375e+02 -1.769647512369523e+02 -1.770563695729838e+02 -1.771480236027573e+02 + -1.772397133931058e+02 -1.773314389867134e+02 -1.774232003047593e+02 -1.775149972814722e+02 -1.776068300247813e+02 + -1.776986986385443e+02 -1.777906030366335e+02 -1.778825431235826e+02 -1.779745189565556e+02 -1.780665306226855e+02 + -1.781585781763529e+02 -1.782506616334199e+02 -1.783427808884287e+02 -1.784349358629673e+02 -1.785271267081259e+02 + -1.786193535668995e+02 -1.787116163204012e+02 -1.788039148425030e+02 -1.788962492399977e+02 -1.789886196318098e+02 + -1.790810259524725e+02 -1.791734681201561e+02 -1.792659461719689e+02 -1.793584601742520e+02 -1.794510101913400e+02 + -1.795435962594126e+02 -1.796362183040394e+02 -1.797288762617232e+02 -1.798215702233099e+02 -1.799143002757676e+02 + -1.800070663362093e+02 -1.800998683262517e+02 -1.801927063553792e+02 -1.802855805315161e+02 -1.803784907684791e+02 + -1.804714369692463e+02 -1.805644191875481e+02 -1.806574375103104e+02 -1.807504920064915e+02 -1.808435827084130e+02 + -1.809367095198169e+02 -1.810298723599504e+02 -1.811230713386593e+02 -1.812163065647390e+02 -1.813095779521854e+02 + -1.814028854036152e+02 -1.814962289709267e+02 -1.815896087407728e+02 -1.816830247895420e+02 -1.817764771515762e+02 + -1.818699657032943e+02 -1.819634903439186e+02 -1.820570512218083e+02 -1.821506484855823e+02 -1.822442820357622e+02 + -1.823379517614509e+02 -1.824316577541746e+02 -1.825254001134493e+02 -1.826191787683301e+02 -1.827129936397535e+02 + -1.828068447866412e+02 -1.829007322929544e+02 -1.829946562048259e+02 -1.830886165373395e+02 -1.831826132192083e+02 + -1.832766461922778e+02 -1.833707155372913e+02 -1.834648213380734e+02 -1.835589635518759e+02 -1.836531421229175e+02 + -1.837473570698571e+02 -1.838416084358642e+02 -1.839358962877114e+02 -1.840302206684350e+02 -1.841245815025237e+02 + -1.842189787235884e+02 -1.843134124202761e+02 -1.844078826806361e+02 -1.845023894352911e+02 -1.845969326205561e+02 + -1.846915123529413e+02 -1.847861287393624e+02 -1.848807816681596e+02 -1.849754710227848e+02 -1.850701968857076e+02 + -1.851649593688754e+02 -1.852597585031284e+02 -1.853545942804591e+02 -1.854494666185751e+02 -1.855443754618861e+02 + -1.856393209358935e+02 -1.857343031604275e+02 -1.858293220515437e+02 -1.859243775087027e+02 -1.860194695687597e+02 + -1.861145983033516e+02 -1.862097637858479e+02 -1.863049660540466e+02 -1.864002050017272e+02 -1.864954805431744e+02 + -1.865907928187129e+02 -1.866861419596013e+02 -1.867815278347963e+02 -1.868769503164351e+02 -1.869724095516791e+02 + -1.870679056966096e+02 -1.871634386679672e+02 -1.872590083560524e+02 -1.873546147847470e+02 -1.874502580123688e+02 + -1.875459381013990e+02 -1.876416550903780e+02 -1.877374089179168e+02 -1.878331995340542e+02 -1.879290270344656e+02 + -1.880248915055781e+02 -1.881207928511883e+02 -1.882167309755823e+02 -1.883127059676341e+02 -1.884087179360091e+02 + -1.885047668839511e+02 -1.886008527852007e+02 -1.886969756009047e+02 -1.887931353152428e+02 -1.888893320171184e+02 + -1.889855657829229e+02 -1.890818365342772e+02 -1.891781441947396e+02 -1.892744888503877e+02 -1.893708705921393e+02 + -1.894672893677523e+02 -1.895637451161106e+02 -1.896602378837592e+02 -1.897567677352667e+02 -1.898533346996371e+02 + -1.899499387807097e+02 -1.900465799172331e+02 -1.901432580674921e+02 -1.902399733330072e+02 -1.903367258125687e+02 + -1.904335154508099e+02 -1.905303421711713e+02 -1.906272059664800e+02 -1.907241068668330e+02 -1.908210449820209e+02 + -1.909180203947948e+02 -1.910150330000556e+02 -1.911120827002041e+02 -1.912091696154924e+02 -1.913062938635582e+02 + -1.914034553337337e+02 -1.915006539182285e+02 -1.915978897490666e+02 -1.916951629619544e+02 -1.917924734675151e+02 + -1.918898211586861e+02 -1.919872060827436e+02 -1.920846283161583e+02 -1.921820878978424e+02 -1.922795848438701e+02 + -1.923771191165239e+02 -1.924746906889474e+02 -1.925722996315181e+02 -1.926699460069926e+02 -1.927676297504074e+02 + -1.928653507913461e+02 -1.929631091652971e+02 -1.930609049367203e+02 -1.931587381800568e+02 -1.932566089358633e+02 + -1.933545170991796e+02 -1.934524625825225e+02 -1.935504455138344e+02 -1.936484660231147e+02 -1.937465240331655e+02 + -1.938446194535055e+02 -1.939427523477156e+02 -1.940409227930324e+02 -1.941391307672549e+02 -1.942373762317632e+02 + -1.943356591817002e+02 -1.944339796386271e+02 -1.945323376960147e+02 -1.946307334225392e+02 -1.947291667157886e+02 + -1.948276374816129e+02 -1.949261458299981e+02 -1.950246918758956e+02 -1.951232755499811e+02 -1.952218967672293e+02 + -1.953205555640852e+02 -1.954192520091347e+02 -1.955179861780584e+02 -1.956167581109271e+02 -1.957155676982765e+02 + -1.958144148511486e+02 -1.959132997121442e+02 -1.960122224157670e+02 -1.961111828325720e+02 -1.962101808324193e+02 + -1.963092165463342e+02 -1.964082901163006e+02 -1.965074014669716e+02 -1.966065505047830e+02 -1.967057372806285e+02 + -1.968049618689787e+02 -1.969042242941536e+02 -1.970035245570506e+02 -1.971028626150270e+02 -1.972022384428475e+02 + -1.973016521284466e+02 -1.974011037520065e+02 -1.975005932495305e+02 -1.976001205455443e+02 -1.976996856628438e+02 + -1.977992886519515e+02 -1.978989295760255e+02 -1.979986084767589e+02 -1.980983252973461e+02 -1.981980799861144e+02 + -1.982978726104215e+02 -1.983977032396124e+02 -1.984975718319531e+02 -1.985974783450467e+02 -1.986974228449224e+02 + -1.987974053983538e+02 -1.988974259666649e+02 -1.989974844962869e+02 -1.990975809795281e+02 -1.991977154414513e+02 + -1.992978879922588e+02 -1.993980987169082e+02 -1.994983475142392e+02 -1.995986342853965e+02 -1.996989591268633e+02 + -1.997993221398394e+02 -1.998997232490551e+02 -2.000001623829878e+02 -2.001006396615730e+02 -2.002011551976202e+02 + -2.003017088839768e+02 -2.004023006006677e+02 -2.005029303963877e+02 -2.006035983645368e+02 -2.007043046086661e+02 + -2.008050491826254e+02 -2.009058319313084e+02 -2.010066527248718e+02 -2.011075117434797e+02 -2.012084091672780e+02 + -2.013093448663347e+02 -2.014103186854462e+02 -2.015113306783989e+02 -2.016123809487723e+02 -2.017134695903300e+02 + -2.018145966520298e+02 -2.019157620134241e+02 -2.020169655668574e+02 -2.021182074252480e+02 -2.022194877090834e+02 + -2.023208063485549e+02 -2.024221632682046e+02 -2.025235585602719e+02 -2.026249923196053e+02 -2.027264644837921e+02 + -2.028279749730532e+02 -2.029295237954015e+02 -2.030311109992572e+02 -2.031327367068774e+02 -2.032344010007734e+02 + -2.033361037306376e+02 -2.034378447601810e+02 -2.035396242420057e+02 -2.036414423389593e+02 -2.037432989659801e+02 + -2.038451940079258e+02 -2.039471274772405e+02 -2.040490994323931e+02 -2.041511099883670e+02 -2.042531592234435e+02 + -2.043552470125819e+02 -2.044573732391661e+02 -2.045595380236004e+02 -2.046617414909655e+02 -2.047639835480296e+02 + -2.048662640993485e+02 -2.049685832589404e+02 -2.050709411450770e+02 -2.051733376835843e+02 -2.052757727854042e+02 + -2.053782464943871e+02 -2.054807588829732e+02 -2.055833100050551e+02 -2.056858998827895e+02 -2.057885284299405e+02 + -2.058911955783421e+02 -2.059939014405005e+02 -2.060966461276917e+02 -2.061994295656012e+02 -2.063022516666823e+02 + -2.064051124760526e+02 -2.065080120661920e+02 -2.066109504863692e+02 -2.067139277576765e+02 -2.068169438117121e+02 + -2.069199985973326e+02 -2.070230922219201e+02 -2.071262247789163e+02 -2.072293961474789e+02 -2.073326062201854e+02 + -2.074358551575783e+02 -2.075391431180403e+02 -2.076424699833530e+02 -2.077458356179337e+02 -2.078492400933438e+02 + -2.079526835133251e+02 -2.080561659031989e+02 -2.081596872578975e+02 -2.082632475292167e+02 -2.083668466898186e+02 + -2.084704848389632e+02 -2.085741620623951e+02 -2.086778782651976e+02 -2.087816333480700e+02 -2.088854273748348e+02 + -2.089892604383302e+02 -2.090931325843364e+02 -2.091970438282278e+02 -2.093009941108145e+02 -2.094049833841979e+02 + -2.095090117202067e+02 -2.096130791905716e+02 -2.097171857469022e+02 -2.098213313423286e+02 -2.099255160561849e+02 + -2.100297399619016e+02 -2.101340029830976e+02 -2.102383050403986e+02 -2.103426461922712e+02 -2.104470265253758e+02 + -2.105514461013085e+02 -2.106559049410852e+02 -2.107604029284658e+02 -2.108649399745926e+02 -2.109695162373935e+02 + -2.110741318706494e+02 -2.111787867647689e+02 -2.112834807867834e+02 -2.113882139735869e+02 -2.114929864074473e+02 + -2.115977981822681e+02 -2.117026493533424e+02 -2.118075398098887e+02 -2.119124694556393e+02 -2.120174384184601e+02 + -2.121224468216736e+02 -2.122274945462991e+02 -2.123325814769304e+02 -2.124377077547605e+02 -2.125428735238108e+02 + -2.126480786828185e+02 -2.127533231155498e+02 -2.128586068911697e+02 -2.129639301084739e+02 -2.130692927993837e+02 + -2.131746949622090e+02 -2.132801365276879e+02 -2.133856174488912e+02 -2.134911378357916e+02 -2.135966977951921e+02 + -2.137022972643151e+02 -2.138079361581469e+02 -2.139136144723085e+02 -2.140193322420075e+02 -2.141250895801643e+02 + -2.142308865713384e+02 -2.143367231089345e+02 -2.144425990899214e+02 -2.145485146166798e+02 -2.146544697958461e+02 + -2.147604645456698e+02 -2.148664987887291e+02 -2.149725726533044e+02 -2.150786862586875e+02 -2.151848394825147e+02 + -2.152910321964648e+02 -2.153972644900385e+02 -2.155035364828845e+02 -2.156098481974242e+02 -2.157161996246267e+02 + -2.158225907268823e+02 -2.159290214790141e+02 -2.160354919341570e+02 -2.161420021424622e+02 -2.162485520638355e+02 + -2.163551416576007e+02 -2.164617709709994e+02 -2.165684400663080e+02 -2.166751489780245e+02 -2.167818977145845e+02 + -2.168886862079515e+02 -2.169955144082682e+02 -2.171023824148656e+02 -2.172092903208214e+02 -2.173162380450137e+02 + -2.174232255130703e+02 -2.175302528518165e+02 -2.176373201799158e+02 -2.177444273821862e+02 -2.178515743317612e+02 + -2.179587610888773e+02 -2.180659877532527e+02 -2.181732543954297e+02 -2.182805610486399e+02 -2.183879076260487e+02 + -2.184952940541088e+02 -2.186027204324891e+02 -2.187101868605661e+02 -2.188176932633304e+02 -2.189252395535715e+02 + -2.190328257696591e+02 -2.191404519835346e+02 -2.192481182758485e+02 -2.193558246894080e+02 -2.194635711069396e+02 + -2.195713574321837e+02 -2.196791838130171e+02 -2.197870503917547e+02 -2.198949570443306e+02 -2.200029036478261e+02 + -2.201108903502962e+02 -2.202189173008489e+02 -2.203269843818326e+02 -2.204350914576510e+02 -2.205432385876858e+02 + -2.206514258738742e+02 -2.207596533933995e+02 -2.208679211808499e+02 -2.209762291251867e+02 -2.210845771334710e+02 + -2.211929653307878e+02 -2.213013938407175e+02 -2.214098625627986e+02 -2.215183713969045e+02 -2.216269204682873e+02 + -2.217355099024502e+02 -2.218441396005216e+02 -2.219528094497077e+02 -2.220615195058979e+02 -2.221702698646027e+02 + -2.222790606111339e+02 -2.223878917838657e+02 -2.224967632436199e+02 -2.226056748766821e+02 -2.227146268487432e+02 + -2.228236193240230e+02 -2.229326521814535e+02 -2.230417252803019e+02 -2.231508386864637e+02 -2.232599925050409e+02 + -2.233691867913336e+02 -2.234784215614204e+02 -2.235876967242961e+02 -2.236970122086523e+02 -2.238063681290529e+02 + -2.239157646015454e+02 -2.240252015622403e+02 -2.241346789340316e+02 -2.242441967668838e+02 -2.243537551247286e+02 + -2.244633540002964e+02 -2.245729933685804e+02 -2.246826732048266e+02 -2.247923935126906e+02 -2.249021544092157e+02 + -2.250119559889259e+02 -2.251217981428817e+02 -2.252316807628839e+02 -2.253416039471573e+02 -2.254515678046834e+02 + -2.255615722810486e+02 -2.256716173029860e+02 -2.257817028852108e+02 -2.258918290784169e+02 -2.260019959892315e+02 + -2.261122036854213e+02 -2.262224520233766e+02 -2.263327408802082e+02 -2.264430704272837e+02 -2.265534408332552e+02 + -2.266638519616550e+02 -2.267743036660735e+02 -2.268847960654481e+02 -2.269953292962885e+02 -2.271059033000460e+02 + -2.272165179952407e+02 -2.273271734037251e+02 -2.274378695801794e+02 -2.275486066072624e+02 -2.276593845334010e+02 + -2.277702032421150e+02 -2.278810626343348e+02 -2.279919628455381e+02 -2.281029040172474e+02 -2.282138860806176e+02 + -2.283249089376286e+02 -2.284359725839265e+02 -2.285470770593814e+02 -2.286582224870930e+02 -2.287694089544078e+02 + -2.288806363224278e+02 -2.289919044640359e+02 -2.291032135254801e+02 -2.292145636582007e+02 -2.293259547610424e+02 + -2.294373867252146e+02 -2.295488596639802e+02 -2.296603736910369e+02 -2.297719286997702e+02 -2.298835245768747e+02 + -2.299951614025932e+02 -2.301068392919157e+02 -2.302185583052736e+02 -2.303303184582155e+02 -2.304421196413199e+02 + -2.305539617649887e+02 -2.306658449438852e+02 -2.307777692999738e+02 -2.308897347801602e+02 -2.310017413072381e+02 + -2.311137888826106e+02 -2.312258775426401e+02 -2.313380073849178e+02 -2.314501784790464e+02 -2.315623907214496e+02 + -2.316746440227619e+02 -2.317869385236417e+02 -2.318992743527083e+02 -2.320116513604021e+02 -2.321240694060221e+02 + -2.322365286624793e+02 -2.323490293043759e+02 -2.324615711994689e+02 -2.325741541998047e+02 -2.326867784014305e+02 + -2.327994439322068e+02 -2.329121508032486e+02 -2.330248989898164e+02 -2.331376884404961e+02 -2.332505191272475e+02 + -2.333633911421986e+02 -2.334763045743060e+02 -2.335892593796759e+02 -2.337022554911374e+02 -2.338152928812627e+02 + -2.339283715644559e+02 -2.340414916827054e+02 -2.341546533474617e+02 -2.342678564204413e+02 -2.343811007676228e+02 + -2.344943865217682e+02 -2.346077138212040e+02 -2.347210825597340e+02 -2.348344926295532e+02 -2.349479441609453e+02 + -2.350614372851493e+02 -2.351749718991416e+02 -2.352885478850955e+02 -2.354021653002366e+02 -2.355158242429473e+02 + -2.356295248011875e+02 -2.357432670145577e+02 -2.358570507396431e+02 -2.359708758587992e+02 -2.360847425404777e+02 + -2.361986509531367e+02 -2.363126009791645e+02 -2.364265924750662e+02 -2.365406254798825e+02 -2.366547000814751e+02 + -2.367688163804559e+02 -2.368829744348273e+02 -2.369971741194025e+02 -2.371114153287764e+02 -2.372256982198593e+02 + -2.373400229428812e+02 -2.374543893590377e+02 -2.375687973238754e+02 -2.376832469593778e+02 -2.377977384043928e+02 + -2.379122715987879e+02 -2.380268464580362e+02 -2.381414629990116e+02 -2.382561212769444e+02 -2.383708213990897e+02 + -2.384855634334210e+02 -2.386003472387607e+02 -2.387151726904082e+02 -2.388300399387221e+02 -2.389449491374237e+02 + -2.390599001786255e+02 -2.391748929369255e+02 -2.392899274784697e+02 -2.394050039061344e+02 -2.395201222781684e+02 + -2.396352826134916e+02 -2.397504848183333e+02 -2.398657288168898e+02 -2.399810147179146e+02 -2.400963426277219e+02 + -2.402117124583125e+02 -2.403271241258893e+02 -2.404425777577767e+02 -2.405580734795174e+02 -2.406736111984077e+02 + -2.407891907995794e+02 -2.409048122977546e+02 -2.410204757554728e+02 -2.411361812969551e+02 -2.412519290053517e+02 + -2.413677187378485e+02 -2.414835503650167e+02 -2.415994240369316e+02 -2.417153399089511e+02 -2.418312978780588e+02 + -2.419472978191357e+02 -2.420633397770240e+02 -2.421794238369657e+02 -2.422955500758429e+02 -2.424117185344053e+02 + -2.425279291172331e+02 -2.426441817421263e+02 -2.427604765159341e+02 -2.428768135466203e+02 -2.429931927575585e+02 + -2.431096140668555e+02 -2.432260775561414e+02 -2.433425833145866e+02 -2.434591312980004e+02 -2.435757214497087e+02 + -2.436923537964655e+02 -2.438090283895336e+02 -2.439257452947832e+02 -2.440425045463603e+02 -2.441593060369063e+02 + -2.442761496825792e+02 -2.443930356351059e+02 -2.445099640393889e+02 -2.446269347774639e+02 -2.447439477225602e+02 + -2.448610029755453e+02 -2.449781006544274e+02 -2.450952407181387e+02 -2.452124231032676e+02 -2.453296478161015e+02 + -2.454469148921256e+02 -2.455642244139170e+02 -2.456815764363974e+02 -2.457989708567751e+02 -2.459164075868465e+02 + -2.460338867544718e+02 -2.461514084874868e+02 -2.462689726975661e+02 -2.463865792818051e+02 -2.465042282951439e+02 + -2.466219198202147e+02 -2.467396538925739e+02 -2.468574305187124e+02 -2.469752496359336e+02 -2.470931112029433e+02 + -2.472110153332446e+02 -2.473289621270786e+02 -2.474469514768406e+02 -2.475649832814832e+02 -2.476830576740329e+02 + -2.478011747871381e+02 -2.479193345178656e+02 -2.480375367456449e+02 -2.481557815149384e+02 -2.482740689103307e+02 + -2.483923990118631e+02 -2.485107718618152e+02 -2.486291873559622e+02 -2.487476454083695e+02 -2.488661461527674e+02 + -2.489846897184250e+02 -2.491032759971039e+02 -2.492219048675295e+02 -2.493405763937896e+02 -2.494592906781626e+02 + -2.495780477903268e+02 -2.496968477531592e+02 -2.498156904349301e+02 -2.499345757349562e+02 -2.500535038313474e+02 + -2.501724748933778e+02 -2.502914887761886e+02 -2.504105453266259e+02 -2.505296446724864e+02 -2.506487869586733e+02 + -2.507679721175656e+02 -2.508872000588222e+02 -2.510064708137437e+02 -2.511257844438344e+02 -2.512451410097723e+02 + -2.513645405425343e+02 -2.514839829551193e+02 -2.516034681806881e+02 -2.517229963510282e+02 -2.518425675906852e+02 + -2.519621817966139e+02 -2.520818388494823e+02 -2.522015387924022e+02 -2.523212817096907e+02 -2.524410676880414e+02 + -2.525608967718439e+02 -2.526807688338955e+02 -2.528006837687293e+02 -2.529206417294141e+02 -2.530406428681973e+02 + -2.531606870755077e+02 -2.532807742357317e+02 -2.534009044709059e+02 -2.535210779031462e+02 -2.536412944172385e+02 + -2.537615538911017e+02 -2.538818564125164e+02 -2.540022021028112e+02 -2.541225910076441e+02 -2.542430231270507e+02 + -2.543634983542462e+02 -2.544840166121418e+02 -2.546045780492533e+02 -2.547251828099108e+02 -2.548458307960956e+02 + -2.549665218842466e+02 -2.550872560909815e+02 -2.552080334828205e+02 -2.553288541857174e+02 -2.554497182835964e+02 + -2.555706256328296e+02 -2.556915761009198e+02 -2.558125698274442e+02 -2.559336069560756e+02 -2.560546873747970e+02 + -2.561758109689862e+02 -2.562969778692906e+02 -2.564181882127723e+02 -2.565394419168841e+02 -2.566607388759341e+02 + -2.567820791112567e+02 -2.569034626862424e+02 -2.570248897054782e+02 -2.571463602359873e+02 -2.572678741533426e+02 + -2.573894313462550e+02 -2.575110319474426e+02 -2.576326760938784e+02 -2.577543636955484e+02 -2.578760946446893e+02 + -2.579978689895271e+02 -2.581196868133063e+02 -2.582415481833543e+02 -2.583634531275302e+02 -2.584854015317316e+02 + -2.586073933093156e+02 -2.587294286254374e+02 -2.588515076317444e+02 -2.589736301740566e+02 -2.590957960996737e+02 + -2.592180055676404e+02 -2.593402587446819e+02 -2.594625555165019e+02 -2.595848957490105e+02 -2.597072795099639e+02 + -2.598297069067293e+02 -2.599521780032740e+02 -2.600746928207452e+02 -2.601972512524080e+02 -2.603198532148209e+02 + -2.604424988455961e+02 -2.605651882765137e+02 -2.606879213949725e+02 -2.608106980758151e+02 -2.609335183880386e+02 + -2.610563824372016e+02 -2.611792902809524e+02 -2.613022419394243e+02 -2.614252373306019e+02 -2.615482763897488e+02 + -2.616713592233935e+02 -2.617944859260970e+02 -2.619176563732862e+02 -2.620408704583867e+02 -2.621641283659552e+02 + -2.622874302706103e+02 -2.624107760160917e+02 -2.625341654302978e+02 -2.626575986086381e+02 -2.627810756876698e+02 + -2.629045967010318e+02 -2.630281616427657e+02 -2.631517704514422e+02 -2.632754230861743e+02 -2.633991196437133e+02 + -2.635228602105341e+02 -2.636466446943674e+02 -2.637704729984163e+02 -2.638943451865159e+02 -2.640182613561179e+02 + -2.641422215785110e+02 -2.642662258795402e+02 -2.643902741294400e+02 -2.645143662245587e+02 -2.646385023213122e+02 + -2.647626825745115e+02 -2.648869068724856e+02 -2.650111750962730e+02 -2.651354873642347e+02 -2.652598438005879e+02 + -2.653842443156531e+02 -2.655086888035231e+02 -2.656331773072787e+02 -2.657577099091213e+02 -2.658822866987512e+02 + -2.660069077230897e+02 -2.661315728504449e+02 -2.662562819710931e+02 -2.663810352417937e+02 -2.665058328192844e+02 + -2.666306745937331e+02 -2.667555604333347e+02 -2.668804903849584e+02 -2.670054645383429e+02 -2.671304829760297e+02 + -2.672555457413816e+02 -2.673806527282453e+02 -2.675058038464400e+02 -2.676309992191929e+02 -2.677562389652032e+02 + -2.678815229716541e+02 -2.680068511277727e+02 -2.681322235624782e+02 -2.682576404136338e+02 -2.683831016151858e+02 + -2.685086070756685e+02 -2.686341568058856e+02 -2.687597508516357e+02 -2.688853892964312e+02 -2.690110721950252e+02 + -2.691367994494158e+02 -2.692625709807897e+02 -2.693883869398372e+02 -2.695142474621058e+02 -2.696401523930688e+02 + -2.697661015819900e+02 -2.698920951833660e+02 -2.700181333642693e+02 -2.701442160368443e+02 -2.702703430840482e+02 + -2.703965145270174e+02 -2.705227304331903e+02 -2.706489909170355e+02 -2.707752960482972e+02 -2.709016456707917e+02 + -2.710280396495872e+02 -2.711544781606855e+02 -2.712809613853167e+02 -2.714074892146895e+02 -2.715340615102555e+02 + -2.716606783044584e+02 -2.717873396730564e+02 -2.719140456940721e+02 -2.720407964136753e+02 -2.721675917483545e+02 + -2.722944316245073e+02 -2.724213161378437e+02 -2.725482453844213e+02 -2.726752192923742e+02 -2.728022377909456e+02 + -2.729293009817382e+02 -2.730564089616648e+02 -2.731835616365174e+02 -2.733107589046467e+02 -2.734380008257563e+02 + -2.735652874983575e+02 -2.736926190148396e+02 -2.738199954194386e+02 -2.739474165698984e+02 -2.740748823405867e+02 + -2.742023928588563e+02 -2.743299482670098e+02 -2.744575485141638e+02 -2.745851935229188e+02 -2.747128833029967e+02 + -2.748406178969678e+02 -2.749683973916734e+02 -2.750962218440648e+02 -2.752240911472609e+02 -2.753520052060601e+02 + -2.754799641358123e+02 -2.756079680559450e+02 -2.757360168916492e+02 -2.758641105650285e+02 -2.759922491800748e+02 + -2.761204328366440e+02 -2.762486614361617e+02 -2.763769348745897e+02 -2.765052532244616e+02 -2.766336165883748e+02 + -2.767620250126050e+02 -2.768904785041199e+02 -2.770189769689730e+02 -2.771475203398639e+02 -2.772761087569904e+02 + -2.774047423518460e+02 -2.775334210136085e+02 -2.776621446145333e+02 -2.777909132015001e+02 -2.779197268642361e+02 + -2.780485856892346e+02 -2.781774897218528e+02 -2.783064388461343e+02 -2.784354329669438e+02 -2.785644722337429e+02 + -2.786935567875348e+02 -2.788226864908934e+02 -2.789518612068105e+02 -2.790810810783757e+02 -2.792103462555617e+02 + -2.793396566357773e+02 -2.794690121008859e+02 -2.795984127231330e+02 -2.797278586088501e+02 -2.798573498103315e+02 + -2.799868863353985e+02 -2.801164680680156e+02 -2.802460949220819e+02 -2.803757670550874e+02 -2.805054846206144e+02 + -2.806352475130235e+02 -2.807650555997772e+02 -2.808949088999684e+02 -2.810248074853591e+02 -2.811547514867556e+02 + -2.812847409903677e+02 -2.814147758449749e+02 -2.815448559108459e+02 -2.816749813316353e+02 -2.818051522586102e+02 + -2.819353685901064e+02 -2.820656302199222e+02 -2.821959372766401e+02 -2.823262898869716e+02 -2.824566879353637e+02 + -2.825871312931868e+02 -2.827176200217700e+02 -2.828481542276227e+02 -2.829787340080183e+02 -2.831093594072626e+02 + -2.832400302670260e+02 -2.833707464559445e+02 -2.835015081531469e+02 -2.836323155420096e+02 -2.837631685124079e+02 + -2.838940669226656e+02 -2.840250107984012e+02 -2.841560002155769e+02 -2.842870352842360e+02 -2.844181160721325e+02 + -2.845492424437817e+02 -2.846804142799303e+02 -2.848116317294889e+02 -2.849428949404899e+02 -2.850742037892878e+02 + -2.852055581519247e+02 -2.853369581748677e+02 -2.854684040068092e+02 -2.855998955349205e+02 -2.857314326251873e+02 + -2.858630153203723e+02 -2.859946437114748e+02 -2.861263179056654e+02 -2.862580379663874e+02 -2.863898037660037e+02 + -2.865216151879669e+02 -2.866534723511688e+02 -2.867853753832939e+02 -2.869173242117615e+02 -2.870493187426322e+02 + -2.871813589967982e+02 -2.873134450373917e+02 -2.874455769816758e+02 -2.875777549027032e+02 -2.877099786425546e+02 + -2.878422480619707e+02 -2.879745633273037e+02 -2.881069246090204e+02 -2.882393317884377e+02 -2.883717847366556e+02 + -2.885042835730584e+02 -2.886368284288774e+02 -2.887694192344474e+02 -2.889020558953364e+02 -2.890347384189399e+02 + -2.891674668528066e+02 -2.893002413032724e+02 -2.894330618447220e+02 -2.895659283649483e+02 -2.896988407604515e+02 + -2.898317991491523e+02 -2.899648036558058e+02 -2.900978542110840e+02 -2.902309507220182e+02 -2.903640931951591e+02 + -2.904972816775983e+02 -2.906305162790740e+02 -2.907637970750559e+02 -2.908971239412933e+02 -2.910304967707643e+02 + -2.911639157250792e+02 -2.912973809535366e+02 -2.914308922875549e+02 -2.915644495654761e+02 -2.916980529712119e+02 + -2.918317026983915e+02 -2.919653986339440e+02 -2.920991406314096e+02 -2.922329287174719e+02 -2.923667629702973e+02 + -2.925006435008390e+02 -2.926345703772706e+02 -2.927685434638595e+02 -2.929025626397000e+02 -2.930366280470975e+02 + -2.931707398343328e+02 -2.933048979103752e+02 -2.934391021578708e+02 -2.935733525934834e+02 -2.937076492857184e+02 + -2.938419923764308e+02 -2.939763819565550e+02 -2.941108178399977e+02 -2.942452998623305e+02 -2.943798282228154e+02 + -2.945144031200941e+02 -2.946490243866398e+02 -2.947836918481424e+02 -2.949184056693277e+02 -2.950531660302706e+02 + -2.951879728334102e+02 -2.953228259514730e+02 -2.954577254159683e+02 -2.955926713017622e+02 -2.957276636983648e+02 + -2.958627026572042e+02 -2.959977880627373e+02 -2.961329198152110e+02 -2.962680980450039e+02 -2.964033228802077e+02 + -2.965385942096344e+02 -2.966739119278574e+02 -2.968092761917713e+02 -2.969446871501122e+02 -2.970801446566606e+02 + -2.972156485544735e+02 -2.973511989386669e+02 -2.974867959450954e+02 -2.976224396205114e+02 -2.977581299655766e+02 + -2.978938668856917e+02 -2.980296503111913e+02 -2.981654803674056e+02 -2.983013571739824e+02 -2.984372806328453e+02 + -2.985732506311156e+02 -2.987092672144286e+02 -2.988453304703744e+02 -2.989814404958496e+02 -2.991175973412398e+02 + -2.992538008615809e+02 -2.993900509369414e+02 -2.995263477428711e+02 -2.996626914493826e+02 -2.997990819088619e+02 + -2.999355189707111e+02 -3.000720027900217e+02 -3.002085335269560e+02 -3.003451110562723e+02 -3.004817352353309e+02 + -3.006184061373012e+02 -3.007551238767678e+02 -3.008918885181671e+02 -3.010287000846923e+02 -3.011655584847104e+02 + -3.013024636430795e+02 -3.014394156654455e+02 -3.015764146559894e+02 -3.017134605322491e+02 -3.018505532010304e+02 + -3.019876927128527e+02 -3.021248791518991e+02 -3.022621125932933e+02 -3.023993930706231e+02 -3.025367204603900e+02 + -3.026740946641424e+02 -3.028115158406990e+02 -3.029489841386069e+02 -3.030864994080570e+02 -3.032240615026816e+02 + -3.033616705882347e+02 -3.034993268395738e+02 -3.036370301558538e+02 -3.037747804087723e+02 -3.039125776359002e+02 + -3.040504219146317e+02 -3.041883133157825e+02 -3.043262518737324e+02 -3.044642374836954e+02 -3.046022700638564e+02 + -3.047403497634464e+02 -3.048784767248004e+02 -3.050166508316213e+02 -3.051548719471290e+02 -3.052931401112401e+02 + -3.054314554166776e+02 -3.055698179906950e+02 -3.057082279030724e+02 -3.058466849591645e+02 -3.059851889955948e+02 + -3.061237402384871e+02 -3.062623389075358e+02 -3.064009848072192e+02 -3.065396777363650e+02 -3.066784178864098e+02 + -3.068172054654241e+02 -3.069560403554044e+02 -3.070949224023651e+02 -3.072338516344630e+02 -3.073728281334552e+02 + -3.075118520133569e+02 -3.076509233435525e+02 -3.077900419826468e+02 -3.079292078053290e+02 -3.080684209614084e+02 + -3.082076816048298e+02 -3.083469896309615e+02 -3.084863449149456e+02 -3.086257475095906e+02 -3.087651975081579e+02 + -3.089046949880547e+02 -3.090442399817611e+02 -3.091838323579038e+02 -3.093234720151574e+02 -3.094631591362355e+02 + -3.096028938900603e+02 -3.097426761063483e+02 -3.098825056148365e+02 -3.100223825845469e+02 -3.101623071983122e+02 + -3.103022793549238e+02 -3.104422989228102e+02 -3.105823659329897e+02 -3.107224804626276e+02 -3.108626426108901e+02 + -3.110028524323948e+02 -3.111431097815640e+02 -3.112834145351391e+02 -3.114237668593314e+02 -3.115641669247677e+02 + -3.117046146302696e+02 -3.118451098470761e+02 -3.119856526079039e+02 -3.121262429897644e+02 -3.122668810853719e+02 + -3.124075669478935e+02 -3.125483004566077e+02 -3.126890815070839e+02 -3.128299102339429e+02 -3.129707867704560e+02 + -3.131117110054437e+02 -3.132526828292356e+02 -3.133937023826453e+02 -3.135347698019019e+02 -3.136758849544115e+02 + -3.138170476993112e+02 -3.139582581314797e+02 -3.140995163841689e+02 -3.142408225083815e+02 -3.143821765079714e+02 + -3.145235782804463e+02 -3.146650277504123e+02 -3.148065250572144e+02 -3.149480703283944e+02 -3.150896634295446e+02 + -3.152313042212708e+02 -3.153729928061792e+02 -3.155147293192109e+02 -3.156565137826469e+02 -3.157983461803634e+02 + -3.159402264552761e+02 -3.160821545730877e+02 -3.162241306316100e+02 -3.163661547129774e+02 -3.165082267045055e+02 + -3.166503465083330e+02 -3.167925142807053e+02 -3.169347301718565e+02 -3.170769940538677e+02 -3.172193057829434e+02 + -3.173616654299331e+02 -3.175040731106142e+02 -3.176465289058318e+02 -3.177890328440690e+02 -3.179315847792938e+02 + -3.180741845934695e+02 -3.182168324550577e+02 -3.183595285351408e+02 -3.185022727287870e+02 -3.186450649049847e+02 + -3.187879051044167e+02 -3.189307934072479e+02 -3.190737298798787e+02 -3.192167145562098e+02 -3.193597473539087e+02 + -3.195028282067584e+02 -3.196459572292360e+02 -3.197891345287240e+02 -3.199323600035334e+02 -3.200756335516368e+02 + -3.202189552787263e+02 -3.203623252990410e+02 -3.205057435532916e+02 -3.206492099607363e+02 -3.207927245283494e+02 + -3.209362873029775e+02 -3.210798984032395e+02 -3.212235579095965e+02 -3.213672656781062e+02 -3.215110215776564e+02 + -3.216548257528610e+02 -3.217986783602123e+02 -3.219425793279964e+02 -3.220865285490494e+02 -3.222305260026159e+02 + -3.223745717228416e+02 -3.225186658770672e+02 -3.226628085862362e+02 -3.228069996525048e+02 -3.229512388959131e+02 + -3.230955265268207e+02 -3.232398627556209e+02 -3.233842474025269e+02 -3.235286802821290e+02 -3.236731615767077e+02 + -3.238176914785998e+02 -3.239622698526831e+02 -3.241068965416273e+02 -3.242515716267282e+02 -3.243962952303619e+02 + -3.245410674006047e+02 -3.246858881442026e+02 -3.248307573768830e+02 -3.249756750377737e+02 -3.251206412506237e+02 + -3.252656561247559e+02 -3.254107195271718e+02 -3.255558313340717e+02 -3.257009917007768e+02 -3.258462007853361e+02 + -3.259914584775946e+02 -3.261367646471811e+02 -3.262821193510638e+02 -3.264275226864755e+02 -3.265729747243638e+02 + -3.267184754961565e+02 -3.268640249014856e+02 -3.270096228564299e+02 -3.271552694746495e+02 -3.273009648690628e+02 + -3.274467089520415e+02 -3.275925016223748e+02 -3.277383429250694e+02 -3.278842329472037e+02 -3.280301717979274e+02 + -3.281761595333842e+02 -3.283221959756238e+02 -3.284682809773962e+02 -3.286144147483458e+02 -3.287605974914733e+02 + -3.289068290263132e+02 -3.290531091681708e+02 -3.291994380988984e+02 -3.293458160115122e+02 -3.294922427771376e+02 + -3.296387182388717e+02 -3.297852424495862e+02 -3.299318155124273e+02 -3.300784375218649e+02 -3.302251085265343e+02 + -3.303718284004092e+02 -3.305185970357408e+02 -3.306654145725511e+02 -3.308122811494171e+02 -3.309591966513669e+02 + -3.311061609508276e+02 -3.312531741233722e+02 -3.314002362831168e+02 -3.315473474952068e+02 -3.316945077733321e+02 + -3.318417169743284e+02 -3.319889749946440e+02 -3.321362820460264e+02 -3.322836383216903e+02 -3.324310436254205e+02 + -3.325784977579187e+02 -3.327260008969810e+02 -3.328735532388732e+02 -3.330211546766479e+02 -3.331688050699581e+02 + -3.333165044480712e+02 -3.334642528918999e+02 -3.336120505193238e+02 -3.337598974031960e+02 -3.339077933992973e+02 + -3.340557383761620e+02 -3.342037324704123e+02 -3.343517758263186e+02 -3.344998683506588e+02 -3.346480099317598e+02 + -3.347962006216366e+02 -3.349444405123485e+02 -3.350927296924430e+02 -3.352410681997821e+02 -3.353894558729969e+02 + -3.355378925848257e+02 -3.356863785436656e+02 -3.358349139484366e+02 -3.359834986244929e+02 -3.361321323883865e+02 + -3.362808153950241e+02 -3.364295478191028e+02 -3.365783295761255e+02 -3.367271605486342e+02 -3.368760407465185e+02 + -3.370249702279324e+02 -3.371739491167402e+02 -3.373229774932894e+02 -3.374720551981496e+02 -3.376211820935624e+02 + -3.377703583682330e+02 -3.379195842066430e+02 -3.380688594499171e+02 -3.382181839217990e+02 -3.383675577198622e+02 + -3.385169809890102e+02 -3.386664537896355e+02 -3.388159761271593e+02 -3.389655478716282e+02 -3.391151689236262e+02 + -3.392648394412631e+02 -3.394145595795439e+02 -3.395643292235305e+02 -3.397141482525620e+02 -3.398640167930273e+02 + -3.400139349724158e+02 -3.401639026755699e+02 -3.403139197760493e+02 -3.404639863449279e+02 -3.406141024957107e+02 + -3.407642683141136e+02 -3.409144838324194e+02 -3.410647488969659e+02 -3.412150633828331e+02 -3.413654274660125e+02 + -3.415158413252182e+02 -3.416663048491409e+02 -3.418168178992377e+02 -3.419673805180489e+02 -3.421179927901010e+02 + -3.422686547867838e+02 -3.424193665441726e+02 -3.425701279702224e+02 -3.427209389917095e+02 -3.428717997388184e+02 + -3.430227103286458e+02 -3.431736706225328e+02 -3.433246804902436e+02 -3.434757400909901e+02 -3.436268495884827e+02 + -3.437780088749811e+02 -3.439292178162220e+02 -3.440804764432992e+02 -3.442317848369893e+02 -3.443831431114438e+02 + -3.445345513395477e+02 -3.446860093957458e+02 -3.448375171638715e+02 -3.449890747637513e+02 -3.451406823209921e+02 + -3.452923397483303e+02 -3.454440469383874e+02 -3.455958039161959e+02 -3.457476107544265e+02 -3.458994675838882e+02 + -3.460513744837874e+02 -3.462033312687789e+02 -3.463553377809081e+02 -3.465073942363314e+02 -3.466595008454457e+02 + -3.468116574214998e+02 -3.469638637732855e+02 -3.471161200889126e+02 -3.472684265676839e+02 -3.474207830743587e+02 + -3.475731894457752e+02 -3.477256457416318e+02 -3.478781520698926e+02 -3.480307085087305e+02 -3.481833150905516e+02 + -3.483359716944890e+02 -3.484886782275422e+02 -3.486414348614480e+02 -3.487942417546251e+02 -3.489470987474849e+02 + -3.491000056682386e+02 -3.492529626143035e+02 -3.494059697303613e+02 -3.495590270809477e+02 -3.497121346735108e+02 + -3.498652923672977e+02 -3.500185000578142e+02 -3.501717579338015e+02 -3.503250661735650e+02 -3.504784246204307e+02 + -3.506318331106053e+02 -3.507852917867942e+02 -3.509388008057230e+02 -3.510923600737020e+02 -3.512459694729739e+02 + -3.513996290399252e+02 -3.515533388531561e+02 -3.517070990059733e+02 -3.518609095547224e+02 -3.520147703931951e+02 + -3.521686814254426e+02 -3.523226427591028e+02 -3.524766545004363e+02 -3.526307165466042e+02 -3.527848288024159e+02 + -3.529389914123712e+02 -3.530932045168612e+02 -3.532474680001527e+02 -3.534017817301934e+02 -3.535561457657783e+02 + -3.537105602073667e+02 -3.538650251312291e+02 -3.540195405716707e+02 -3.541741064193253e+02 -3.543287225825957e+02 + -3.544833891846346e+02 -3.546381063473606e+02 -3.547928739730113e+02 -3.549476919508821e+02 -3.551025603381796e+02 + -3.552574792297605e+02 -3.554124487031720e+02 -3.555674687945711e+02 -3.557225393918643e+02 -3.558776604020463e+02 + -3.560328319567154e+02 -3.561880541805177e+02 -3.563433269456882e+02 -3.564986501330765e+02 -3.566540239103983e+02 + -3.568094484429710e+02 -3.569649235996524e+02 -3.571204492251743e+02 -3.572760253642205e+02 -3.574316521198430e+02 + -3.575873296286128e+02 -3.577430579645793e+02 -3.578988369181832e+02 -3.580546663122107e+02 -3.582105463824335e+02 + -3.583664773634632e+02 -3.585224590722860e+02 -3.586784912980774e+02 -3.588345741363943e+02 -3.589907077420278e+02 + -3.591468922003262e+02 -3.593031275347307e+02 -3.594594135904955e+02 -3.596157502414973e+02 -3.597721376542854e+02 + -3.599285759961583e+02 -3.600850651447366e+02 -3.602416049709182e+02 -3.603981956083848e+02 -3.605548371920680e+02 + -3.607115295991184e+02 -3.608682726958015e+02 -3.610250665626241e+02 -3.611819113190277e+02 -3.613388070259530e+02 + -3.614957536972620e+02 -3.616527512170044e+02 -3.618097994957786e+02 -3.619668986801910e+02 -3.621240489112448e+02 + -3.622812500715253e+02 -3.624385020268735e+02 -3.625958048345691e+02 -3.627531585959862e+02 -3.629105633974360e+02 + -3.630680192762735e+02 -3.632255260890885e+02 -3.633830837209757e+02 -3.635406923518125e+02 -3.636983521500620e+02 + -3.638560629437486e+02 -3.640138245654421e+02 -3.641716372063300e+02 -3.643295010634408e+02 -3.644874159985495e+02 + -3.646453818454157e+02 -3.648033986609884e+02 -3.649614665547653e+02 -3.651195856232492e+02 -3.652777559169987e+02 + -3.654359773157880e+02 -3.655942497193339e+02 -3.657525732779061e+02 -3.659109481367831e+02 -3.660693741707290e+02 + -3.662278512419212e+02 -3.663863794327037e+02 -3.665449588644519e+02 -3.667035895945005e+02 -3.668622716357800e+02 + -3.670210048876434e+02 -3.671797892763418e+02 -3.673386249492966e+02 -3.674975120447079e+02 -3.676564504427247e+02 + -3.678154400208724e+02 -3.679744809042344e+02 -3.681335732252156e+02 -3.682927168979475e+02 -3.684519118222935e+02 + -3.686111580593141e+02 -3.687704557033292e+02 -3.689298048205014e+02 -3.690892054329191e+02 -3.692486574145354e+02 + -3.694081606700869e+02 -3.695677153755793e+02 -3.697273216946131e+02 -3.698869794698993e+02 -3.700466885253786e+02 + -3.702064489307988e+02 -3.703662608017668e+02 -3.705261241915196e+02 -3.706860391012269e+02 -3.708460053861607e+02 + -3.710060229388483e+02 -3.711660919467376e+02 -3.713262125796104e+02 -3.714863846416646e+02 -3.716466079328989e+02 + -3.718068826020972e+02 -3.719672088201144e+02 -3.721275864973102e+02 -3.722880155098476e+02 -3.724484958575989e+02 + -3.726090275883345e+02 -3.727696108177087e+02 -3.729302456171431e+02 -3.730909318132427e+02 -3.732516692484294e+02 + -3.734124580732086e+02 -3.735732984485285e+02 -3.737341902690280e+02 -3.738951333966488e+02 -3.740561278288502e+02 + -3.742171736164895e+02 -3.743782708884933e+02 -3.745394197314636e+02 -3.747006199846337e+02 -3.748618715145197e+02 + -3.750231745441332e+02 -3.751845292967938e+02 -3.753459356405600e+02 -3.755073934398666e+02 -3.756689028999150e+02 + -3.758304642401999e+02 -3.759920773966298e+02 -3.761537422764503e+02 -3.763154589558405e+02 -3.764772275566993e+02 + -3.766390482148706e+02 -3.768009210261144e+02 -3.769628459119104e+02 -3.771248228066682e+02 -3.772868518707951e+02 + -3.774489332703654e+02 -3.776110669681248e+02 -3.777732529036114e+02 -3.779354911268638e+02 -3.780977817328078e+02 + -3.782601248854201e+02 -3.784225207068740e+02 -3.785849690830777e+02 -3.787474699201715e+02 -3.789100234414875e+02 + -3.790726298611719e+02 -3.792352890394379e+02 -3.793980008403989e+02 -3.795607654977005e+02 -3.797235832511840e+02 + -3.798864539959452e+02 -3.800493775732837e+02 -3.802123539540593e+02 -3.803753831256555e+02 -3.805384650119894e+02 + -3.807015994897982e+02 -3.808647863105625e+02 -3.810280252452890e+02 -3.811913162683451e+02 -3.813546593533040e+02 + -3.815180542672069e+02 -3.816815007606327e+02 -3.818449987248433e+02 -3.820085480876401e+02 -3.821721487823003e+02 + -3.823358007029311e+02 -3.824995035814819e+02 -3.826632571794644e+02 -3.828270615387958e+02 -3.829909166775790e+02 + -3.831548222382581e+02 -3.833187778788636e+02 -3.834827836954302e+02 -3.836468397830658e+02 -3.838109457951704e+02 + -3.839751013606573e+02 -3.841393064522010e+02 -3.843035610985582e+02 -3.844678652090594e+02 -3.846322186342679e+02 + -3.847966211091070e+02 -3.849610723938522e+02 -3.851255724658270e+02 -3.852901213276589e+02 -3.854547188661456e+02 + -3.856193651039130e+02 -3.857840607227301e+02 -3.859488064858506e+02 -3.861136028233281e+02 -3.862784501283425e+02 + -3.864433489797775e+02 -3.866083000045549e+02 -3.867733038360474e+02 -3.869383610689728e+02 -3.871034721369783e+02 + -3.872686374886131e+02 -3.874338577931016e+02 -3.875991337168530e+02 -3.877644656943423e+02 -3.879298541437876e+02 + -3.880952996503134e+02 -3.882608028487801e+02 -3.884263644060860e+02 -3.885919849359946e+02 -3.887576648076931e+02 + -3.889234044110585e+02 -3.890892044633024e+02 -3.892550656828005e+02 -3.894209884652491e+02 -3.895869732058733e+02 + -3.897530206206903e+02 -3.899191314265681e+02 -3.900853060229904e+02 -3.902515447813749e+02 -3.904178482782592e+02 + -3.905842171832736e+02 -3.907506523333024e+02 -3.909171542011455e+02 -3.910837216360146e+02 -3.912503530200719e+02 + -3.914170464908692e+02 -3.915838000867597e+02 -3.917506116939103e+02 -3.919174791997058e+02 -3.920844006485843e+02 + -3.922513741233318e+02 -3.924183977030698e+02 -3.925854694180132e+02 -3.927525871064144e+02 -3.929197486330507e+02 + -3.930869521607613e+02 -3.932541958513385e+02 -3.934214775643266e+02 -3.935887951493436e+02 -3.937561467185514e+02 + -3.939235303999417e+02 -3.940909441222876e+02 -3.942583857858931e+02 -3.944258533764072e+02 -3.945933449213566e+02 + -3.947608585304349e+02 -3.949283922804248e+02 -3.950959440342958e+02 -3.952635116636291e+02 -3.954310932882606e+02 + -3.955986870327357e+02 -3.957662907921835e+02 -3.959339024467546e+02 -3.961015200461023e+02 -3.962691416638499e+02 + 1.070000000000000e-01 1.069682658750319e-01 1.069365186252596e-01 1.069047582677665e-01 1.068729848196356e-01 + 1.068411982979503e-01 1.068093987197937e-01 1.067775861022493e-01 1.067457604624000e-01 1.067139218173294e-01 + 1.066820701841205e-01 1.066502055798566e-01 1.066183280216209e-01 1.065864375264968e-01 1.065545341115673e-01 + 1.065226177939159e-01 1.064906885906257e-01 1.064587465187799e-01 1.064267915954618e-01 1.063948238377547e-01 + 1.063628432627417e-01 1.063308498875062e-01 1.062988437291314e-01 1.062668248047005e-01 1.062347931312967e-01 + 1.062027487260033e-01 1.061706916059036e-01 1.061386217880807e-01 1.061065392896180e-01 1.060744441275985e-01 + 1.060423363191058e-01 1.060102158812228e-01 1.059780828310330e-01 1.059459371856195e-01 1.059137789620655e-01 + 1.058816081774544e-01 1.058494248488693e-01 1.058172289933936e-01 1.057850206281103e-01 1.057527997701029e-01 + 1.057205664364545e-01 1.056883206442483e-01 1.056560624105677e-01 1.056237917524958e-01 1.055915086871159e-01 + 1.055592132315112e-01 1.055269054027650e-01 1.054945852179606e-01 1.054622526941811e-01 1.054299078485097e-01 + 1.053975506980299e-01 1.053651812598247e-01 1.053327995509774e-01 1.053004055885713e-01 1.052679993896897e-01 + 1.052355809714157e-01 1.052031503508325e-01 1.051707075450236e-01 1.051382525710719e-01 1.051057854460610e-01 + 1.050733061870738e-01 1.050408148111938e-01 1.050083113355042e-01 1.049757957770881e-01 1.049432681530288e-01 + 1.049107284804097e-01 1.048781767763138e-01 1.048456130578245e-01 1.048130373420250e-01 1.047804496459986e-01 + 1.047478499868284e-01 1.047152383815977e-01 1.046826148473898e-01 1.046499794012880e-01 1.046173320603753e-01 + 1.045846728417352e-01 1.045520017624508e-01 1.045193188396054e-01 1.044866240902822e-01 1.044539175315645e-01 + 1.044211991805354e-01 1.043884690542783e-01 1.043557271698764e-01 1.043229735444130e-01 1.042902081949712e-01 + 1.042574311386343e-01 1.042246423924855e-01 1.041918419736082e-01 1.041590298990855e-01 1.041262061860007e-01 + 1.040933708514369e-01 1.040605239124776e-01 1.040276653862059e-01 1.039947952897050e-01 1.039619136400582e-01 + 1.039290204543487e-01 1.038961157496599e-01 1.038631995430748e-01 1.038302718516768e-01 1.037973326925491e-01 + 1.037643820827749e-01 1.037314200394375e-01 1.036984465796201e-01 1.036654617204061e-01 1.036324654788785e-01 + 1.035994578721206e-01 1.035664389172158e-01 1.035334086312472e-01 1.035003670312980e-01 1.034673141344516e-01 + 1.034342499577912e-01 1.034011745183999e-01 1.033680878333612e-01 1.033349899197580e-01 1.033018807946739e-01 + 1.032687604751918e-01 1.032356289783953e-01 1.032024863213673e-01 1.031693325211913e-01 1.031361675949504e-01 + 1.031029915597278e-01 1.030698044326069e-01 1.030366062306709e-01 1.030033969710030e-01 1.029701766706864e-01 + 1.029369453468044e-01 1.029037030164402e-01 1.028704496966771e-01 1.028371854045984e-01 1.028039101572872e-01 + 1.027706239718267e-01 1.027373268653004e-01 1.027040188547913e-01 1.026706999573827e-01 1.026373701901580e-01 + 1.026040295702002e-01 1.025706781145926e-01 1.025373158404186e-01 1.025039427647613e-01 1.024705589047040e-01 + 1.024371642773299e-01 1.024037588997223e-01 1.023703427889643e-01 1.023369159621393e-01 1.023034784363305e-01 + 1.022700302286212e-01 1.022365713560945e-01 1.022031018358337e-01 1.021696216849221e-01 1.021361309204428e-01 + 1.021026295594792e-01 1.020691176191145e-01 1.020355951164319e-01 1.020020620685147e-01 1.019685184924461e-01 + 1.019349644053093e-01 1.019013998241876e-01 1.018678247661643e-01 1.018342392483225e-01 1.018006432877456e-01 + 1.017670369015167e-01 1.017334201067191e-01 1.016997929204361e-01 1.016661553597508e-01 1.016325074417466e-01 + 1.015988491835066e-01 1.015651806021141e-01 1.015315017146524e-01 1.014978125382047e-01 1.014641130898543e-01 + 1.014304033866843e-01 1.013966834457780e-01 1.013629532842187e-01 1.013292129190896e-01 1.012954623674739e-01 + 1.012617016464549e-01 1.012279307731159e-01 1.011941497645400e-01 1.011603586378106e-01 1.011265574100107e-01 + 1.010927460982239e-01 1.010589247195331e-01 1.010250932910217e-01 1.009912518297729e-01 1.009574003528701e-01 + 1.009235388773963e-01 1.008896674204348e-01 1.008557859990690e-01 1.008218946303820e-01 1.007879933314571e-01 + 1.007540821193774e-01 1.007201610112264e-01 1.006862300240872e-01 1.006522891750429e-01 1.006183384811770e-01 + 1.005843779595726e-01 1.005504076273130e-01 1.005164275014813e-01 1.004824375991610e-01 1.004484379374351e-01 + 1.004144285333870e-01 1.003804094040999e-01 1.003463805666569e-01 1.003123420381414e-01 1.002782938356367e-01 + 1.002442359762259e-01 1.002101684769922e-01 1.001760913550190e-01 1.001420046273895e-01 1.001079083111869e-01 + 1.000738024234945e-01 1.000396869813954e-01 1.000055620019730e-01 9.997142750231042e-02 9.993728349949102e-02 + 9.990313001059796e-02 9.986896705271456e-02 9.983479464292398e-02 9.980061279830947e-02 9.976642153595434e-02 + 9.973222087294174e-02 9.969801082635499e-02 9.966379141327726e-02 9.962956265079187e-02 9.959532455598200e-02 + 9.956107714593093e-02 9.952682043772192e-02 9.949255444843813e-02 9.945827919516288e-02 9.942399469497937e-02 + 9.938970096497086e-02 9.935539802222057e-02 9.932108588381178e-02 9.928676456682770e-02 9.925243408835159e-02 + 9.921809446546671e-02 9.918374571525623e-02 9.914938785480347e-02 9.911502090119163e-02 9.908064487150398e-02 + 9.904625978282372e-02 9.901186565223413e-02 9.897746249681845e-02 9.894305033365988e-02 9.890862917984172e-02 + 9.887419905244718e-02 9.883975996855951e-02 9.880531194526194e-02 9.877085499963774e-02 9.873638914877009e-02 + 9.870191440974231e-02 9.866743079963761e-02 9.863293833553920e-02 9.859843703453038e-02 9.856392691369432e-02 + 9.852940799011436e-02 9.849488028087365e-02 9.846034380305550e-02 9.842579857374308e-02 9.839124461001970e-02 + 9.835668192896858e-02 9.832211054767293e-02 9.828753048321603e-02 9.825294175268109e-02 9.821834437315143e-02 + 9.818373836171017e-02 9.814912373544066e-02 9.811450051142606e-02 9.807986870674969e-02 9.804522833849474e-02 + 9.801057942374444e-02 9.797592197958208e-02 9.794125602309085e-02 9.790658157135405e-02 9.787189864145487e-02 + 9.783720725047659e-02 9.780250741550246e-02 9.776779915361565e-02 9.773308248189948e-02 9.769835741743713e-02 + 9.766362397731190e-02 9.762888217860698e-02 9.759413203840565e-02 9.755937357379113e-02 9.752460680184671e-02 + 9.748983173965557e-02 9.745504840430097e-02 9.742025681286617e-02 9.738545698243438e-02 9.735064893008888e-02 + 9.731583267291286e-02 9.728100822798963e-02 9.724617561240236e-02 9.721133484323437e-02 9.717648593756885e-02 + 9.714162891248904e-02 9.710676378507821e-02 9.707189057241956e-02 9.703700929159639e-02 9.700211995969188e-02 + 9.696722259378933e-02 9.693231721097194e-02 9.689740382832296e-02 9.686248246292567e-02 9.682755313186324e-02 + 9.679261585221899e-02 9.675767064107609e-02 9.672271751551782e-02 9.668775649262741e-02 9.665278758948814e-02 + 9.661781082318323e-02 9.658282621079586e-02 9.654783376940938e-02 9.651283351610694e-02 9.647782546797186e-02 + 9.644280964208730e-02 9.640778605553657e-02 9.637275472540287e-02 9.633771566876947e-02 9.630266890271960e-02 + 9.626761444433649e-02 9.623255231070338e-02 9.619748251890356e-02 9.616240508602021e-02 9.612732002913663e-02 + 9.609222736533599e-02 9.605712711170160e-02 9.602201928531666e-02 9.598690390326445e-02 9.595178098262819e-02 + 9.591665054049109e-02 9.588151259393644e-02 9.584636716004745e-02 9.581121425590743e-02 9.577605389859950e-02 + 9.574088610520702e-02 9.570571089281314e-02 9.567052827850117e-02 9.563533827935435e-02 9.560014091245586e-02 + 9.556493619488900e-02 9.552972414373699e-02 9.549450477608308e-02 9.545927810901049e-02 9.542404415960248e-02 + 9.538880294494230e-02 9.535355448211316e-02 9.531829878819836e-02 9.528303588028109e-02 9.524776577544461e-02 + 9.521248849077216e-02 9.517720404334697e-02 9.514191245025229e-02 9.510661372857139e-02 9.507130789538748e-02 + 9.503599496778380e-02 9.500067496284360e-02 9.496534789765015e-02 9.493001378928664e-02 9.489467265483635e-02 + 9.485932451138250e-02 9.482396937600834e-02 9.478860726579713e-02 9.475323819783207e-02 9.471786218919645e-02 + 9.468247925697347e-02 9.464708941824643e-02 9.461169269009850e-02 9.457628908961296e-02 9.454087863387305e-02 + 9.450546133996199e-02 9.447003722496307e-02 9.443460630595948e-02 9.439916860003450e-02 9.436372412427137e-02 + 9.432827289575330e-02 9.429281493156354e-02 9.425735024878537e-02 9.422187886450198e-02 9.418640079579664e-02 + 9.415091605975259e-02 9.411542467345307e-02 9.407992665398136e-02 9.404442201842063e-02 9.400891078385415e-02 + 9.397339296736518e-02 9.393786858603695e-02 9.390233765695270e-02 9.386680019719568e-02 9.383125622384911e-02 + 9.379570575399625e-02 9.376014880472036e-02 9.372458539310466e-02 9.368901553623238e-02 9.365343925118678e-02 + 9.361785655505112e-02 9.358226746490858e-02 9.354667199784246e-02 9.351107017093598e-02 9.347546200127239e-02 + 9.343984750593494e-02 9.340422670200685e-02 9.336859960657137e-02 9.333296623671174e-02 9.329732660951121e-02 + 9.326168074205300e-02 9.322602865142039e-02 9.319037035469660e-02 9.315470586896488e-02 9.311903521130845e-02 + 9.308335839881057e-02 9.304767544855448e-02 9.301198637762342e-02 9.297629120310064e-02 9.294058994206936e-02 + 9.290488261161287e-02 9.286916922881436e-02 9.283344981075708e-02 9.279772437452428e-02 9.276199293719922e-02 + 9.272625551586512e-02 9.269051212760523e-02 9.265476278950278e-02 9.261900751864104e-02 9.258324633210324e-02 + 9.254747924697261e-02 9.251170628033240e-02 9.247592744926583e-02 9.244014277085617e-02 9.240435226218666e-02 + 9.236855594034055e-02 9.233275382240104e-02 9.229694592545142e-02 9.226113226657491e-02 9.222531286285476e-02 + 9.218948773137420e-02 9.215365688921646e-02 9.211782035346482e-02 9.208197814120249e-02 9.204613026951274e-02 + 9.201027675547878e-02 9.197441761618388e-02 9.193855286871126e-02 9.190268253014419e-02 9.186680661756588e-02 + 9.183092514805957e-02 9.179503813870854e-02 9.175914560659600e-02 9.172324756880521e-02 9.168734404241941e-02 + 9.165143504452181e-02 9.161552059219569e-02 9.157960070252427e-02 9.154367539259080e-02 9.150774467947854e-02 + 9.147180858027071e-02 9.143586711205055e-02 9.139992029190132e-02 9.136396813690625e-02 9.132801066414858e-02 + 9.129204789071155e-02 9.125607983367841e-02 9.122010651013239e-02 9.118412793715676e-02 9.114814413183472e-02 + 9.111215511124955e-02 9.107616089248448e-02 9.104016149262276e-02 9.100415692874760e-02 9.096814721794225e-02 + 9.093213237728998e-02 9.089611242387401e-02 9.086008737477760e-02 9.082405724708396e-02 9.078802205787638e-02 + 9.075198182423806e-02 9.071593656325225e-02 9.067988629200220e-02 9.064383102757116e-02 9.060777078704237e-02 + 9.057170558749904e-02 9.053563544602444e-02 9.049956037970180e-02 9.046348040561442e-02 9.042739554084545e-02 + 9.039130580247817e-02 9.035521120759583e-02 9.031911177328168e-02 9.028300751661894e-02 9.024689845469086e-02 + 9.021078460458068e-02 9.017466598337168e-02 9.013854260814702e-02 9.010241449599002e-02 9.006628166398388e-02 + 9.003014412921184e-02 8.999400190875718e-02 8.995785501970310e-02 8.992170347913286e-02 8.988554730412972e-02 + 8.984938651177689e-02 8.981322111915761e-02 8.977705114335516e-02 8.974087660145275e-02 8.970469751053363e-02 + 8.966851388768103e-02 8.963232574997822e-02 8.959613311450842e-02 8.955993599835491e-02 8.952373441860086e-02 + 8.948752839232957e-02 8.945131793662427e-02 8.941510306856817e-02 8.937888380524456e-02 8.934266016373665e-02 + 8.930643216112769e-02 8.927019981450095e-02 8.923396314093963e-02 8.919772215752698e-02 8.916147688134625e-02 + 8.912522732948071e-02 8.908897351901354e-02 8.905271546702803e-02 8.901645319060740e-02 8.898018670683491e-02 + 8.894391603279379e-02 8.890764118556729e-02 8.887136218223864e-02 8.883507903989107e-02 8.879879177560786e-02 + 8.876250040647221e-02 8.872620494956741e-02 8.868990542197666e-02 8.865360184078323e-02 8.861729422307035e-02 + 8.858098258592126e-02 8.854466694641919e-02 8.850834732164740e-02 8.847202372868912e-02 8.843569618462761e-02 + 8.839936470654611e-02 8.836302931152785e-02 8.832669001665606e-02 8.829034683901400e-02 8.825399979568492e-02 + 8.821764890375206e-02 8.818129418029862e-02 8.814493564240788e-02 8.810857330716310e-02 8.807220719164749e-02 + 8.803583731294432e-02 8.799946368813677e-02 8.796308633430815e-02 8.792670526854167e-02 8.789032050792057e-02 + 8.785393206952812e-02 8.781753997044753e-02 8.778114422776205e-02 8.774474485855495e-02 8.770834187990943e-02 + 8.767193530890875e-02 8.763552516263615e-02 8.759911145817488e-02 8.756269421260816e-02 8.752627344301928e-02 + 8.748984916649143e-02 8.745342140010788e-02 8.741699016095185e-02 8.738055546610660e-02 8.734411733265539e-02 + 8.730767577768141e-02 8.727123081826793e-02 8.723478247149821e-02 8.719833075445547e-02 8.716187568422298e-02 + 8.712541727788393e-02 8.708895555252159e-02 8.705249052521923e-02 8.701602221306004e-02 8.697955063312730e-02 + 8.694307580250422e-02 8.690659773827408e-02 8.687011645752010e-02 8.683363197732555e-02 8.679714431477362e-02 + 8.676065348694757e-02 8.672415951093065e-02 8.668766240380611e-02 8.665116218265721e-02 8.661465886456714e-02 + 8.657815246661917e-02 8.654164300589655e-02 8.650513049948251e-02 8.646861496446030e-02 8.643209641791315e-02 + 8.639557487692430e-02 8.635905035857701e-02 8.632252287995451e-02 8.628599245814005e-02 8.624945911021686e-02 + 8.621292285326819e-02 8.617638370437727e-02 8.613984168062737e-02 8.610329679910171e-02 8.606674907688353e-02 + 8.603019853105608e-02 8.599364517870259e-02 8.595708903690633e-02 8.592053012275053e-02 8.588396845331842e-02 + 8.584740404569323e-02 8.581083691695822e-02 8.577426708419665e-02 8.573769456449173e-02 8.570111937492672e-02 + 8.566454153258486e-02 8.562796105454940e-02 8.559137795790356e-02 8.555479225973059e-02 8.551820397711374e-02 + 8.548161312713624e-02 8.544501972688134e-02 8.540842379343229e-02 8.537182534387232e-02 8.533522439528468e-02 + 8.529862096475260e-02 8.526201506935933e-02 8.522540672618811e-02 8.518879595232219e-02 8.515218276484479e-02 + 8.511556718083918e-02 8.507894921738858e-02 8.504232889157626e-02 8.500570622048544e-02 8.496908122119934e-02 + 8.493245391080124e-02 8.489582430637438e-02 8.485919242500198e-02 8.482255828376728e-02 8.478592189975355e-02 + 8.474928329004400e-02 8.471264247172190e-02 8.467599946187047e-02 8.463935427757298e-02 8.460270693591267e-02 + 8.456605745397273e-02 8.452940584883646e-02 8.449275213758706e-02 8.445609633730780e-02 8.441943846508193e-02 + 8.438277853799266e-02 8.434611657312326e-02 8.430945258755695e-02 8.427278659837699e-02 8.423611862266661e-02 + 8.419944867750905e-02 8.416277677998756e-02 8.412610294718537e-02 8.408942719618576e-02 8.405274954407191e-02 + 8.401607000792713e-02 8.397938860483460e-02 8.394270535187759e-02 8.390602026613936e-02 8.386933336470312e-02 + 8.383264466465212e-02 8.379595418306962e-02 8.375926193703884e-02 8.372256794364304e-02 8.368587221996546e-02 + 8.364917478308932e-02 8.361247565009787e-02 8.357577483807437e-02 8.353907236410206e-02 8.350236824526415e-02 + 8.346566249864391e-02 8.342895514132459e-02 8.339224619038943e-02 8.335553566292164e-02 8.331882357600448e-02 + 8.328210994672121e-02 8.324539479215504e-02 8.320867812938924e-02 8.317195997550704e-02 8.313524034759166e-02 + 8.309851926272641e-02 8.306179673799445e-02 8.302507279047908e-02 8.298834743726349e-02 8.295162069543097e-02 + 8.291489258206473e-02 8.287816311424805e-02 8.284143230906414e-02 8.280470018359624e-02 8.276796675492762e-02 + 8.273123204014149e-02 8.269449605632111e-02 8.265775882054972e-02 8.262102034991055e-02 8.258428066148686e-02 + 8.254753977236187e-02 8.251079769961885e-02 8.247405446034105e-02 8.243731007161166e-02 8.240056455051395e-02 + 8.236381791413117e-02 8.232707017954656e-02 8.229032136384334e-02 8.225357148410478e-02 8.221682055741411e-02 + 8.218006860085458e-02 8.214331563150944e-02 8.210656166646188e-02 8.206980672279519e-02 8.203305081759260e-02 + 8.199629396793737e-02 8.195953619091272e-02 8.192277750360188e-02 8.188601792308813e-02 8.184925746645468e-02 + 8.181249615078479e-02 8.177573399316168e-02 8.173897101066861e-02 8.170220722038883e-02 8.166544263940556e-02 + 8.162867728480205e-02 8.159191117366156e-02 8.155514432306732e-02 8.151837675010254e-02 8.148160847185050e-02 + 8.144483950539445e-02 8.140806986781760e-02 8.137129957620320e-02 8.133452864763450e-02 8.129775709919475e-02 + 8.126098494796720e-02 8.122421221103504e-02 8.118743890548155e-02 8.115066504838998e-02 8.111389065684355e-02 + 8.107711574792552e-02 8.104034033871912e-02 8.100356444630759e-02 8.096678808777417e-02 8.093001128020215e-02 + 8.089323404067471e-02 8.085645638627510e-02 8.081967833408658e-02 8.078289990119239e-02 8.074612110467576e-02 + 8.070934196161997e-02 8.067256248910820e-02 8.063578270422375e-02 8.059900262404983e-02 8.056222226566968e-02 + 8.052544164616657e-02 8.048866078262369e-02 8.045187969212433e-02 8.041509839175172e-02 8.037831689858911e-02 + 8.034153522971973e-02 8.030475340222681e-02 8.026797143319361e-02 8.023118933970336e-02 8.019440713883932e-02 + 8.015762484768471e-02 8.012084248332278e-02 8.008406006283678e-02 8.004727760330994e-02 8.001049512182555e-02 + 7.997371263546676e-02 7.993693016131688e-02 7.990014771645915e-02 7.986336531797676e-02 7.982658298295300e-02 + 7.978980072847111e-02 7.975301857161432e-02 7.971623652946590e-02 7.967945461910902e-02 7.964267285762699e-02 + 7.960589126210302e-02 7.956910984962039e-02 7.953232863726228e-02 7.949554764211197e-02 7.945876688125271e-02 + 7.942198637176773e-02 7.938520613074028e-02 7.934842617525358e-02 7.931164652239087e-02 7.927486718923542e-02 + 7.923808819287045e-02 7.920130955037924e-02 7.916453127884499e-02 7.912775339535094e-02 7.909097591698037e-02 + 7.905419886081648e-02 7.901742224394255e-02 7.898064608344180e-02 7.894387039639746e-02 7.890709519989279e-02 + 7.887032051101103e-02 7.883354634683543e-02 7.879677272444922e-02 7.875999966093565e-02 7.872322717337794e-02 + 7.868645527885937e-02 7.864968399446313e-02 7.861291333727252e-02 7.857614332437074e-02 7.853937397284104e-02 + 7.850260529976670e-02 7.846583732223091e-02 7.842907005731693e-02 7.839230352210801e-02 7.835553773368738e-02 + 7.831877270913830e-02 7.828200846554398e-02 7.824524501998768e-02 7.820848238955266e-02 7.817172059132216e-02 + 7.813495964237939e-02 7.809819955980761e-02 7.806144036069006e-02 7.802468206210998e-02 7.798792468115062e-02 + 7.795116823489523e-02 7.791441274042703e-02 7.787765821482928e-02 7.784090467518520e-02 7.780415213857807e-02 + 7.776740062209107e-02 7.773065014280750e-02 7.769390071781057e-02 7.765715236418354e-02 7.762040509900967e-02 + 7.758365893937215e-02 7.754691390235426e-02 7.751017000503922e-02 7.747342726451029e-02 7.743668569785070e-02 + 7.739994532214370e-02 7.736320615447252e-02 7.732646821192042e-02 7.728973151157063e-02 7.725299607050642e-02 + 7.721626190581099e-02 7.717952903456758e-02 7.714279747385946e-02 7.710606724076986e-02 7.706933835238206e-02 + 7.703261082577922e-02 7.699588467804465e-02 7.695915992626157e-02 7.692243658751323e-02 7.688571467888285e-02 + 7.684899421745368e-02 7.681227522030898e-02 7.677555770453198e-02 7.673884168720593e-02 7.670212718541405e-02 + 7.666541421623961e-02 7.662870279676583e-02 7.659199294407595e-02 7.655528467525324e-02 7.651857800738091e-02 + 7.648187295754222e-02 7.644516954282041e-02 7.640846778029871e-02 7.637176768706039e-02 7.633506928018867e-02 + 7.629837257676678e-02 7.626167759387799e-02 7.622498434860552e-02 7.618829285803264e-02 7.615160313924255e-02 + 7.611491520931853e-02 7.607822908534380e-02 7.604154478440163e-02 7.600486232357523e-02 7.596818171994783e-02 + 7.593150299060271e-02 7.589482615262309e-02 7.585815122309225e-02 7.582147821909338e-02 7.578480715770973e-02 + 7.574813805602458e-02 7.571147093112113e-02 7.567480580008265e-02 7.563814267999236e-02 7.560148158793352e-02 + 7.556482254098935e-02 7.552816555624312e-02 7.549151065077807e-02 7.545485784167741e-02 7.541820714602442e-02 + 7.538155858090231e-02 7.534491216339434e-02 7.530826791058375e-02 7.527162583955378e-02 7.523498596738766e-02 + 7.519834831116866e-02 7.516171288797999e-02 7.512507971490495e-02 7.508844880902671e-02 7.505182018742854e-02 + 7.501519386719367e-02 7.497856986540538e-02 7.494194819914687e-02 7.490532888550142e-02 7.486871194155223e-02 + 7.483209738438257e-02 7.479548523107570e-02 7.475887549871482e-02 7.472226820438319e-02 7.468566336516404e-02 + 7.464906099814063e-02 7.461246112039621e-02 7.457586374901400e-02 7.453926890107723e-02 7.450267659366919e-02 + 7.446608684387307e-02 7.442949966877216e-02 7.439291508544965e-02 7.435633311098883e-02 7.431975376247291e-02 + 7.428317705698513e-02 7.424660301160878e-02 7.421003164342704e-02 7.417346296952319e-02 7.413689700698045e-02 + 7.410033377288210e-02 7.406377328431132e-02 7.402721555835140e-02 7.399066061208556e-02 7.395410846259706e-02 + 7.391755912696915e-02 7.388101262228504e-02 7.384446896562798e-02 7.380792817408122e-02 7.377139026472800e-02 + 7.373485525465158e-02 7.369832316093516e-02 7.366179400066203e-02 7.362526779091538e-02 7.358874454877849e-02 + 7.355222429133459e-02 7.351570703566694e-02 7.347919279885876e-02 7.344268159799329e-02 7.340617345015378e-02 + 7.336966837242348e-02 7.333316638188561e-02 7.329666749562345e-02 7.326017173072021e-02 7.322367910425913e-02 + 7.318718963332346e-02 7.315070333499644e-02 7.311422022636133e-02 7.307774032450136e-02 7.304126364649975e-02 + 7.300479020943977e-02 7.296832003040465e-02 7.293185312647765e-02 7.289538951474199e-02 7.285892921228092e-02 + 7.282247223617767e-02 7.278601860351550e-02 7.274956833137766e-02 7.271312143684736e-02 7.267667793700786e-02 + 7.264023784894239e-02 7.260380118973422e-02 7.256736797646657e-02 7.253093822622268e-02 7.249451195608582e-02 + 7.245808918313920e-02 7.242166992446607e-02 7.238525419714967e-02 7.234884201827325e-02 7.231243340492007e-02 + 7.227602837417331e-02 7.223962694311627e-02 7.220322912883217e-02 7.216683494840427e-02 7.213044441891579e-02 + 7.209405755744998e-02 7.205767438109009e-02 7.202129490691934e-02 7.198491915202099e-02 7.194854713347830e-02 + 7.191217886837446e-02 7.187581437379276e-02 7.183945366681642e-02 7.180309676452867e-02 7.176674368401278e-02 + 7.173039444235199e-02 7.169404905662952e-02 7.165770754392863e-02 7.162136992133256e-02 7.158503620592453e-02 + 7.154870641478780e-02 7.151238056500563e-02 7.147605867366123e-02 7.143974075783785e-02 7.140342683461876e-02 + 7.136711692108716e-02 7.133081103432631e-02 7.129450919141947e-02 7.125821140944985e-02 7.122191770550071e-02 + 7.118562809665530e-02 7.114934259999683e-02 7.111306123260858e-02 7.107678401157377e-02 7.104051095397565e-02 + 7.100424207689746e-02 7.096797739742244e-02 7.093171693263382e-02 7.089546069961486e-02 7.085920871544882e-02 + 7.082296099721888e-02 7.078671756200834e-02 7.075047842690044e-02 7.071424360897838e-02 7.067801312532543e-02 + 7.064178699302483e-02 7.060556522915983e-02 7.056934785081363e-02 7.053313487506954e-02 7.049692631901075e-02 + 7.046072219972052e-02 7.042452253428211e-02 7.038832733977872e-02 7.035213663329361e-02 7.031595043191004e-02 + 7.027976875271123e-02 7.024359161278042e-02 7.020741902920087e-02 7.017125101905583e-02 7.013508759942851e-02 + 7.009892878740216e-02 7.006277460006004e-02 7.002662505448538e-02 6.999048016776144e-02 6.995433995697144e-02 + 6.991820443919861e-02 6.988207363152622e-02 6.984594755103750e-02 6.980982621481568e-02 6.977370963994402e-02 + 6.973759784350578e-02 6.970149084258416e-02 6.966538865426242e-02 6.962929129562380e-02 6.959319878375156e-02 + 6.955711113572893e-02 6.952102836863913e-02 6.948495049956542e-02 6.944887754559105e-02 6.941280952379927e-02 + 6.937674645127329e-02 6.934068834509637e-02 6.930463522235174e-02 6.926858710012268e-02 6.923254399549238e-02 + 6.919650592554411e-02 6.916047290736112e-02 6.912444495802665e-02 6.908842209462392e-02 6.905240433423616e-02 + 6.901639169394666e-02 6.898038419083864e-02 6.894438184199533e-02 6.890838466449999e-02 6.887239267543585e-02 + 6.883640589188617e-02 6.880042433093415e-02 6.876444800966307e-02 6.872847694515619e-02 6.869251115449670e-02 + 6.865655065476786e-02 6.862059546305292e-02 6.858464559643512e-02 6.854870107199770e-02 6.851276190682393e-02 + 6.847682811799699e-02 6.844089972260017e-02 6.840497673771671e-02 6.836905918042983e-02 6.833314706782279e-02 + 6.829724041697882e-02 6.826133924498116e-02 6.822544356891308e-02 6.818955340585779e-02 6.815366877289854e-02 + 6.811778968711857e-02 6.808191616560114e-02 6.804604822542948e-02 6.801018588368681e-02 6.797432915745642e-02 + 6.793847806382150e-02 6.790263261986533e-02 6.786679284267115e-02 6.783095874932217e-02 6.779513035690166e-02 + 6.775930768249286e-02 6.772349074317900e-02 6.768767955604332e-02 6.765187413816909e-02 6.761607450663952e-02 + 6.758028067853786e-02 6.754449267094738e-02 6.750871050095128e-02 6.747293418563281e-02 6.743716374207524e-02 + 6.740139918736179e-02 6.736564053857570e-02 6.732988781280023e-02 6.729414102711860e-02 6.725840019861405e-02 + 6.722266534436987e-02 6.718693648146923e-02 6.715121362699542e-02 6.711549679803168e-02 6.707978601166123e-02 + 6.704408128496732e-02 6.700838263503321e-02 6.697269007894212e-02 6.693700363377729e-02 6.690132331662198e-02 + 6.686564914455943e-02 6.682998113467287e-02 6.679431930404556e-02 6.675866366976070e-02 6.672301424890158e-02 + 6.668737105855144e-02 6.665173411579348e-02 6.661610343771096e-02 6.658047904138716e-02 6.654486094390526e-02 + 6.650924916234854e-02 6.647364371380024e-02 6.643804461534360e-02 6.640245188406185e-02 6.636686553703826e-02 + 6.633128559135604e-02 6.629571206409844e-02 6.626014497234871e-02 6.622458433319009e-02 6.618903016370581e-02 + 6.615348248097914e-02 6.611794130209329e-02 6.608240664413152e-02 6.604687852417708e-02 6.601135695931318e-02 + 6.597584196662311e-02 6.594033356319007e-02 6.590483176609731e-02 6.586933659242808e-02 6.583384805926563e-02 + 6.579836618369318e-02 6.576289098279399e-02 6.572742247365128e-02 6.569196067334833e-02 6.565650559896835e-02 + 6.562105726759460e-02 6.558561569631030e-02 6.555018090219872e-02 6.551475290234308e-02 6.547933171382664e-02 + 6.544391735373260e-02 6.540850983914427e-02 6.537310918714484e-02 6.533771541481756e-02 6.530232853924568e-02 + 6.526694857751246e-02 6.523157554670111e-02 6.519620946389489e-02 6.516085034617702e-02 6.512549821063078e-02 + 6.509015307433939e-02 6.505481495438609e-02 6.501948386785412e-02 6.498415983182672e-02 6.494884286338716e-02 + 6.491353297961865e-02 6.487823019760443e-02 6.484293453442776e-02 6.480764600717190e-02 6.477236463292005e-02 + 6.473709042875546e-02 6.470182341176141e-02 6.466656359902111e-02 6.463131100761778e-02 6.459606565463470e-02 + 6.456082755715510e-02 6.452559673226224e-02 6.449037319703932e-02 6.445515696856961e-02 6.441994806393636e-02 + 6.438474650022280e-02 6.434955229451217e-02 6.431436546388770e-02 6.427918602543267e-02 6.424401399623028e-02 + 6.420884939336380e-02 6.417369223391646e-02 6.413854253497149e-02 6.410340031361215e-02 6.406826558692170e-02 + 6.403313837198334e-02 6.399801868588033e-02 6.396290654569593e-02 6.392780196851335e-02 6.389270497141585e-02 + 6.385761557148667e-02 6.382253378580906e-02 6.378745963146625e-02 6.375239312554147e-02 6.371733428511799e-02 + 6.368228312727903e-02 6.364723966910786e-02 6.361220392768768e-02 6.357717592010177e-02 6.354215566343337e-02 + 6.350714317476568e-02 6.347213847118198e-02 6.343714156976551e-02 6.340215248759951e-02 6.336717124176720e-02 + 6.333219784935186e-02 6.329723232743668e-02 6.326227469310496e-02 6.322732496343991e-02 6.319238315552476e-02 + 6.315744928644278e-02 6.312252337327721e-02 6.308760543311126e-02 6.305269548302821e-02 6.301779354011129e-02 + 6.298289962144372e-02 6.294801374410877e-02 6.291313592518968e-02 6.287826618176968e-02 6.284340453093201e-02 + 6.280855098975993e-02 6.277370557533665e-02 6.273886830474544e-02 6.270403919506955e-02 6.266921826339220e-02 + 6.263440552679662e-02 6.259960100236607e-02 6.256480470718381e-02 6.253001665833306e-02 6.249523687289707e-02 + 6.246046536795907e-02 6.242570216060229e-02 6.239094726791002e-02 6.235620070696547e-02 6.232146249485187e-02 + 6.228673264865250e-02 6.225201118545055e-02 6.221729812232930e-02 6.218259347637199e-02 6.214789726466187e-02 + 6.211320950428215e-02 6.207853021231610e-02 6.204385940584693e-02 6.200919710195792e-02 6.197454331773228e-02 + 6.193989807025328e-02 6.190526137660414e-02 6.187063325386812e-02 6.183601371912845e-02 6.180140278946837e-02 + 6.176680048197113e-02 6.173220681371997e-02 6.169762180179813e-02 6.166304546328885e-02 6.162847781527538e-02 + 6.159391887484095e-02 6.155936865906880e-02 6.152482718504219e-02 6.149029446984435e-02 6.145577053055853e-02 + 6.142125538426796e-02 6.138674904805590e-02 6.135225153900557e-02 6.131776287420022e-02 6.128328307072310e-02 + 6.124881214565744e-02 6.121435011608650e-02 6.117989699909349e-02 6.114545281176169e-02 6.111101757117431e-02 + 6.107659129441460e-02 6.104217399856583e-02 6.100776570071121e-02 6.097336641793399e-02 6.093897616731742e-02 + 6.090459496594473e-02 6.087022283089916e-02 6.083585977926396e-02 6.080150582812238e-02 6.076716099455765e-02 + 6.073282529565302e-02 6.069849874849172e-02 6.066418137015700e-02 6.062987317773211e-02 6.059557418830027e-02 + 6.056128441894475e-02 6.052700388674876e-02 6.049273260879557e-02 6.045847060216841e-02 6.042421788395052e-02 + 6.038997447122514e-02 6.035574038107552e-02 6.032151563058490e-02 6.028730023683652e-02 6.025309421691362e-02 + 6.021889758789946e-02 6.018471036687725e-02 6.015053257093025e-02 6.011636421714171e-02 6.008220532259485e-02 + 6.004805590437293e-02 6.001391597955918e-02 5.997978556523686e-02 5.994566467848918e-02 5.991155333639943e-02 + 5.987745155605081e-02 5.984335935452657e-02 5.980927674890997e-02 5.977520375628423e-02 5.974114039373261e-02 + 5.970708667833834e-02 5.967304262718466e-02 5.963900825735483e-02 5.960498358593206e-02 5.957096862999962e-02 + 5.953696340664075e-02 5.950296793293869e-02 5.946898222597666e-02 5.943500630283793e-02 5.940104018060574e-02 + 5.936708387636331e-02 5.933313740719390e-02 5.929920079018074e-02 5.926527404240709e-02 5.923135718095618e-02 + 5.919745022291125e-02 5.916355318535554e-02 5.912966608537230e-02 5.909578894004478e-02 5.906192176645620e-02 + 5.902806458168981e-02 5.899421740282887e-02 5.896038024695659e-02 5.892655313115624e-02 5.889273607251104e-02 + 5.885892908810425e-02 5.882513219501910e-02 5.879134541033884e-02 5.875756875114671e-02 5.872380223452595e-02 + 5.869004587755981e-02 5.865629969733151e-02 5.862256371092430e-02 5.858883793542144e-02 5.855512238790617e-02 + 5.852141708546170e-02 5.848772204517131e-02 5.845403728411822e-02 5.842036281938568e-02 5.838669866805692e-02 + 5.835304484721521e-02 5.831940137394376e-02 5.828576826532585e-02 5.825214553844467e-02 5.821853321038349e-02 + 5.818493129822556e-02 5.815133981905412e-02 5.811775878995240e-02 5.808418822800365e-02 5.805062815029110e-02 + 5.801707857389801e-02 5.798353951590760e-02 5.795001099340315e-02 5.791649302346786e-02 5.788298562318499e-02 + 5.784948880963779e-02 5.781600259990949e-02 5.778252701108333e-02 5.774906206024256e-02 5.771560776447041e-02 + 5.768216414085015e-02 5.764873120646499e-02 5.761530897839819e-02 5.758189747373298e-02 5.754849670955262e-02 + 5.751510670294033e-02 5.748172747097936e-02 5.744835903075296e-02 5.741500139934437e-02 5.738165459383683e-02 + 5.734831863131357e-02 5.731499352885785e-02 5.728167930355290e-02 5.724837597248197e-02 5.721508355272830e-02 + 5.718180206137512e-02 5.714853151550570e-02 5.711527193220325e-02 5.708202332855103e-02 5.704878572163228e-02 + 5.701555912853024e-02 5.698234356632816e-02 5.694913905210926e-02 5.691594560295680e-02 5.688276323595402e-02 + 5.684959196818416e-02 5.681643181673045e-02 5.678328279867616e-02 5.675014493110452e-02 5.671701823109875e-02 + 5.668390271574211e-02 5.665079840211785e-02 5.661770530730920e-02 5.658462344839940e-02 5.655155284247171e-02 + 5.651849350660935e-02 5.648544545789557e-02 5.645240871341362e-02 5.641938329024674e-02 5.638636920547815e-02 + 5.635336647619112e-02 5.632037511946889e-02 5.628739515239468e-02 5.625442659205174e-02 5.622146945552333e-02 + 5.618852375989267e-02 5.615558952224302e-02 5.612266675965761e-02 5.608975548921968e-02 5.605685572801247e-02 + 5.602396749311925e-02 5.599109080162322e-02 5.595822567060765e-02 5.592537211715578e-02 5.589253015835084e-02 + 5.585969981127608e-02 5.582688109301474e-02 5.579407402065006e-02 5.576127861126528e-02 5.572849488194366e-02 + 5.569572284976842e-02 5.566296253182280e-02 5.563021394519008e-02 5.559747710695345e-02 5.556475203419618e-02 + 5.553203874400151e-02 5.549933725345269e-02 5.546664757963294e-02 5.543396973962551e-02 5.540130375051366e-02 + 5.536864962938060e-02 5.533600739330961e-02 5.530337705938389e-02 5.527075864468672e-02 5.523815216630132e-02 + 5.520555764131094e-02 5.517297508679882e-02 5.514040451984819e-02 5.510784595754230e-02 5.507529941696442e-02 + 5.504276491519774e-02 5.501024246932555e-02 5.497773209643106e-02 5.494523381359754e-02 5.491274763790820e-02 + 5.488027358644629e-02 5.484781167629507e-02 5.481536192453777e-02 5.478292434825763e-02 5.475049896453790e-02 + 5.471808579046181e-02 5.468568484311261e-02 5.465329613957354e-02 5.462091969692785e-02 5.458855553225877e-02 + 5.455620366264955e-02 5.452386410518342e-02 5.449153687694363e-02 5.445922199501343e-02 5.442691947647604e-02 + 5.439462933841474e-02 5.436235159791274e-02 5.433008627205328e-02 5.429783337791962e-02 5.426559293259499e-02 + 5.423336495316264e-02 5.420114945670580e-02 5.416894646030773e-02 5.413675598105167e-02 5.410457803602083e-02 + 5.407241264229849e-02 5.404025981696787e-02 5.400811957711223e-02 5.397599193981480e-02 5.394387692215881e-02 + 5.391177454122753e-02 5.387968481410418e-02 5.384760775787202e-02 5.381554338961427e-02 5.378349172641418e-02 + 5.375145278535501e-02 5.371942658351998e-02 5.368741313799234e-02 5.365541246585533e-02 5.362342458419220e-02 + 5.359144951008617e-02 5.355948726062051e-02 5.352753785287844e-02 5.349560130394321e-02 5.346367763089808e-02 + 5.343176685082626e-02 5.339986898081100e-02 5.336798403793557e-02 5.333611203928318e-02 5.330425300193709e-02 + 5.327240694298052e-02 5.324057387949673e-02 5.320875382856897e-02 5.317694680728046e-02 5.314515283271445e-02 + 5.311337192195419e-02 5.308160409208292e-02 5.304984936018387e-02 5.301810774334029e-02 5.298637925860694e-02 + 5.295466392210174e-02 5.292296174881576e-02 5.289127275367324e-02 5.285959695159842e-02 5.282793435751552e-02 + 5.279628498634878e-02 5.276464885302243e-02 5.273302597246069e-02 5.270141635958780e-02 5.266982002932800e-02 + 5.263823699660550e-02 5.260666727634453e-02 5.257511088346935e-02 5.254356783290417e-02 5.251203813957321e-02 + 5.248052181840073e-02 5.244901888431094e-02 5.241752935222807e-02 5.238605323707637e-02 5.235459055378005e-02 + 5.232314131726334e-02 5.229170554245050e-02 5.226028324426572e-02 5.222887443763326e-02 5.219747913747734e-02 + 5.216609735872220e-02 5.213472911629205e-02 5.210337442511115e-02 5.207203330010370e-02 5.204070575619395e-02 + 5.200939180830615e-02 5.197809147136448e-02 5.194680476029321e-02 5.191553169001656e-02 5.188427227545876e-02 + 5.185302653154403e-02 5.182179447319664e-02 5.179057611534077e-02 5.175937147290068e-02 5.172818056080060e-02 + 5.169700339396475e-02 5.166583998731737e-02 5.163469035578269e-02 5.160355451428494e-02 5.157243247774834e-02 + 5.154132426109714e-02 5.151022987925555e-02 5.147914934714782e-02 5.144808267969817e-02 5.141702989183084e-02 + 5.138599099847005e-02 5.135496601454004e-02 5.132395495496503e-02 5.129295783466926e-02 5.126197466857695e-02 + 5.123100547161235e-02 5.120005025869967e-02 5.116910904476317e-02 5.113818184472704e-02 5.110726867351554e-02 + 5.107636954605289e-02 5.104548447726333e-02 5.101461348207109e-02 5.098375657540039e-02 5.095291377217546e-02 + 5.092208508732055e-02 5.089127053575987e-02 5.086047013241765e-02 5.082968389221815e-02 5.079891183008556e-02 + 5.076815396094415e-02 5.073741029971812e-02 5.070668086133172e-02 5.067596566070917e-02 5.064526471277472e-02 + 5.061457803245257e-02 5.058390563466697e-02 5.055324753434216e-02 5.052260374640234e-02 5.049197428577178e-02 + 5.046135916737467e-02 5.043075840613528e-02 5.040017201697781e-02 5.036960001482652e-02 5.033904241460560e-02 + 5.030849923123931e-02 5.027797047965189e-02 5.024745617476754e-02 5.021695633151052e-02 5.018647096480505e-02 + 5.015600008957535e-02 5.012554372074565e-02 5.009510187324022e-02 5.006467456198324e-02 5.003426180189897e-02 + 5.000386360791163e-02 4.997347999494546e-02 4.994311097792468e-02 4.991275657177353e-02 4.988241679141623e-02 + 4.985209165177702e-02 4.982178116778014e-02 4.979148535434980e-02 4.976120422641023e-02 4.973093779888569e-02 + 4.970068608670038e-02 4.967044910477855e-02 4.964022686804442e-02 4.961001939142222e-02 4.957982668983620e-02 + 4.954964877821057e-02 4.951948567146956e-02 4.948933738453741e-02 4.945920393233836e-02 4.942908532979662e-02 + 4.939898159183643e-02 4.936889273338203e-02 4.933881876935763e-02 4.930875971468749e-02 4.927871558429582e-02 + 4.924868639310685e-02 4.921867215604481e-02 4.918867288803395e-02 4.915868860399848e-02 4.912871931886263e-02 + 4.909876504755066e-02 4.906882580498677e-02 4.903890160609520e-02 4.900899246580018e-02 4.897909839902595e-02 + 4.894921942069672e-02 4.891935554573676e-02 4.888950678907025e-02 4.885967316562146e-02 4.882985469031461e-02 + 4.880005137807392e-02 4.877026324382362e-02 4.874049030248797e-02 4.871073256899117e-02 4.868099005825745e-02 + 4.865126278521108e-02 4.862155076477624e-02 4.859185401187720e-02 4.856217254143816e-02 4.853250636838338e-02 + 4.850285550763707e-02 4.847321997412347e-02 4.844359978276680e-02 4.841399494849130e-02 4.838440548622121e-02 + 4.835483141088075e-02 4.832527273739414e-02 4.829572948068564e-02 4.826620165567946e-02 4.823668927729983e-02 + 4.820719236047098e-02 4.817771092011715e-02 4.814824497116257e-02 4.811879452853147e-02 4.808935960714807e-02 + 4.805994022193662e-02 4.803053638782134e-02 4.800114811972645e-02 4.797177543257621e-02 4.794241834129482e-02 + 4.791307686080653e-02 4.788375100603556e-02 4.785444079190614e-02 4.782514623334252e-02 4.779586734526891e-02 + 4.776660414260955e-02 4.773735664028868e-02 4.770812485323050e-02 4.767890879635927e-02 4.764970848459921e-02 + 4.762052393287456e-02 4.759135515610954e-02 4.756220216922838e-02 4.753306498715533e-02 4.750394362481459e-02 + 4.747483809713041e-02 4.744574841902701e-02 4.741667460542864e-02 4.738761667125952e-02 4.735857463144388e-02 + 4.732954850090595e-02 4.730053829456995e-02 4.727154402736015e-02 4.724256571420073e-02 4.721360337001596e-02 + 4.718465700973005e-02 4.715572664826723e-02 4.712681230055175e-02 4.709791398150782e-02 4.706903170605968e-02 + 4.704016548913156e-02 4.701131534564769e-02 4.698248129053231e-02 4.695366333870963e-02 4.692486150510391e-02 + 4.689607580463934e-02 4.686730625224018e-02 4.683855286283068e-02 4.680981565133503e-02 4.678109463267748e-02 + 4.675238982178226e-02 4.672370123357359e-02 4.669502888297572e-02 4.666637278491287e-02 4.663773295430927e-02 + 4.660910940608916e-02 4.658050215517676e-02 4.655191121649629e-02 4.652333660497202e-02 4.649477833552815e-02 + 4.646623642308891e-02 4.643771088257853e-02 4.640920172892127e-02 4.638070897704132e-02 4.635223264186294e-02 + 4.632377273831036e-02 4.629532928130779e-02 4.626690228577947e-02 4.623849176664965e-02 4.621009773884253e-02 + 4.618172021728237e-02 4.615335921689338e-02 4.612501475259979e-02 4.609668683932586e-02 4.606837549199577e-02 + 4.604008072553380e-02 4.601180255486416e-02 4.598354099491107e-02 4.595529606059879e-02 4.592706776685152e-02 + 4.589885612859351e-02 4.587066116074899e-02 4.584248287824218e-02 4.581432129599732e-02 4.578617642893863e-02 + 4.575804829199037e-02 4.572993690007673e-02 4.570184226812196e-02 4.567376441105030e-02 4.564570334378597e-02 + 4.561765908125320e-02 4.558963163837623e-02 4.556162103007928e-02 4.553362727128659e-02 4.550565037692238e-02 + 4.547769036191089e-02 4.544974724117636e-02 4.542182102964300e-02 4.539391174223504e-02 4.536601939387674e-02 + 4.533814399949231e-02 4.531028557400597e-02 4.528244413234197e-02 4.525461968942453e-02 4.522681226017790e-02 + 4.519902185952628e-02 4.517124850239393e-02 4.514349220370505e-02 4.511575297838390e-02 4.508803084135470e-02 + 4.506032580754168e-02 4.503263789186907e-02 4.500496710926111e-02 4.497731347464200e-02 4.494967700293602e-02 + 4.492205770906736e-02 4.489445560796028e-02 4.486687071453899e-02 4.483930304372771e-02 4.481175261045071e-02 + 4.478421942963219e-02 4.475670351619640e-02 4.472920488506756e-02 4.470172355116988e-02 4.467425952942764e-02 + 4.464681283476502e-02 4.461938348210628e-02 4.459197148637566e-02 4.456457686249737e-02 4.453719962539564e-02 + 4.450983978999472e-02 4.448249737121881e-02 4.445517238399217e-02 4.442786484323902e-02 4.440057476388359e-02 + 4.437330216085012e-02 4.434604704906282e-02 4.431880944344595e-02 4.429158935892372e-02 4.426438681042035e-02 + 4.423720181286010e-02 4.421003438116718e-02 4.418288453026584e-02 4.415575227508029e-02 4.412863763053477e-02 + 4.410154061155352e-02 4.407446123306075e-02 4.404739950998071e-02 4.402035545723762e-02 4.399332908975571e-02 + 4.396632042245923e-02 4.393932947027238e-02 4.391235624811941e-02 4.388540077092456e-02 4.385846305361203e-02 + 4.383154311110608e-02 4.380464095833093e-02 4.377775661021081e-02 4.375089008166996e-02 4.372404138763258e-02 + 4.369721054302294e-02 4.367039756276526e-02 4.364360246178376e-02 4.361682525500267e-02 4.359006595734623e-02 + 4.356332458373868e-02 4.353660114910423e-02 4.350989566836711e-02 4.348320815645158e-02 4.345653862828184e-02 + 4.342988709878214e-02 4.340325358287669e-02 4.337663809548974e-02 4.335004065154552e-02 4.332346126596825e-02 + 4.329689995368217e-02 4.327035672961151e-02 4.324383160868049e-02 4.321732460581335e-02 4.319083573593433e-02 + 4.316436501396765e-02 4.313791245483754e-02 4.311147807346823e-02 4.308506188478395e-02 4.305866390370894e-02 + 4.303228414516742e-02 4.300592262408363e-02 4.297957935538180e-02 4.295325435398616e-02 4.292694763482094e-02 + 4.290065921281035e-02 4.287438910287866e-02 4.284813731995007e-02 4.282190387894883e-02 4.279568879479917e-02 + 4.276949208242530e-02 4.274331375675147e-02 4.271715383270192e-02 4.269101232520085e-02 4.266488924917250e-02 + 4.263878461954113e-02 4.261269845123093e-02 4.258663075916616e-02 4.256058155827103e-02 4.253455086346980e-02 + 4.250853868968667e-02 4.248254505184589e-02 4.245656996487169e-02 4.243061344368828e-02 4.240467550321991e-02 + 4.237875615839081e-02 4.235285542412521e-02 4.232697331534734e-02 4.230110984698143e-02 4.227526503395169e-02 + 4.224943889118240e-02 4.222363143359775e-02 4.219784267612198e-02 4.217207263367933e-02 4.214632132119402e-02 + 4.212058875359029e-02 4.209487494579236e-02 4.206917991272448e-02 4.204350366931086e-02 4.201784623047573e-02 + 4.199220761114335e-02 4.196658782623791e-02 4.194098689068368e-02 4.191540481940486e-02 4.188984162732570e-02 + 4.186429732937041e-02 4.183877194046326e-02 4.181326547552844e-02 4.178777794949019e-02 4.176230937727277e-02 + 4.173685977380037e-02 4.171142915399725e-02 4.168601753278764e-02 4.166062492509574e-02 4.163525134584580e-02 + 4.160989680996207e-02 4.158456133236876e-02 4.155924492799010e-02 4.153394761175032e-02 4.150866939857367e-02 + 4.148341030338436e-02 4.145817034110662e-02 4.143294952666470e-02 4.140774787498282e-02 4.138256540098521e-02 + 4.135740211959609e-02 4.133225804573972e-02 4.130713319434030e-02 4.128202758032209e-02 4.125694121860929e-02 + 4.123187412412615e-02 4.120682631179690e-02 4.118179779654577e-02 4.115678859329698e-02 4.113179871697477e-02 + 4.110682818250337e-02 4.108187700480702e-02 4.105694519880994e-02 4.103203277943635e-02 4.100713976161051e-02 + 4.098226616025662e-02 4.095741199029894e-02 4.093257726666168e-02 4.090776200426908e-02 4.088296621804536e-02 + 4.085818992291476e-02 4.083343313380151e-02 4.080869586562985e-02 4.078397813332400e-02 4.075927995180818e-02 + 4.073460133600665e-02 4.070994230084361e-02 4.068530286124331e-02 4.066068303212998e-02 4.063608282842784e-02 + 4.061150226506113e-02 4.058694135695408e-02 4.056240011903092e-02 4.053787856621588e-02 4.051337671343318e-02 + 4.048889457560707e-02 4.046443216766178e-02 4.043998950452153e-02 4.041556660111054e-02 4.039116347235307e-02 + 4.036678013317334e-02 4.034241659849556e-02 4.031807288324400e-02 4.029374900234285e-02 4.026944497071637e-02 + 4.024516080328877e-02 4.022089651498431e-02 4.019665212072718e-02 4.017242763544165e-02 4.014822307405193e-02 + 4.012403845148225e-02 4.009987378265685e-02 4.007572908249996e-02 4.005160436593580e-02 4.002749964788860e-02 + 4.000341494328261e-02 3.997935026862905e-02 3.995530565020248e-02 3.993128111798760e-02 3.990727670197625e-02 + 3.988329243216027e-02 3.985932833853151e-02 3.983538445108181e-02 3.981146079980302e-02 3.978755741468697e-02 + 3.976367432572553e-02 3.973981156291052e-02 3.971596915623379e-02 3.969214713568721e-02 3.966834553126258e-02 + 3.964456437295178e-02 3.962080369074663e-02 3.959706351463900e-02 3.957334387462071e-02 3.954964480068362e-02 + 3.952596632281957e-02 3.950230847102040e-02 3.947867127527795e-02 3.945505476558409e-02 3.943145897193063e-02 + 3.940788392430945e-02 3.938432965271236e-02 3.936079618713123e-02 3.933728355755788e-02 3.931379179398419e-02 + 3.929032092640197e-02 3.926687098480308e-02 3.924344199917935e-02 3.922003399952266e-02 3.919664701582481e-02 + 3.917328107807769e-02 3.914993621627309e-02 3.912661246040292e-02 3.910330984045896e-02 3.908002838643308e-02 + 3.905676812831715e-02 3.903352909610298e-02 3.901031131978242e-02 3.898711482934733e-02 3.896393965478955e-02 + 3.894078582610091e-02 3.891765337327326e-02 3.889454232629846e-02 3.887145271516833e-02 3.884838456987474e-02 + 3.882533792040951e-02 3.880231279676451e-02 3.877930922893155e-02 3.875632724690252e-02 3.873336688066923e-02 + 3.871042816022353e-02 3.868751111555727e-02 3.866461577666229e-02 3.864174217353044e-02 3.861889033615356e-02 + 3.859606029452349e-02 3.857325207863209e-02 3.855046571847119e-02 3.852770124403264e-02 3.850495868530828e-02 + 3.848223807228996e-02 3.845953943496952e-02 3.843686280333881e-02 3.841420820738967e-02 3.839157567711395e-02 + 3.836896524250349e-02 3.834637693355013e-02 3.832381078024572e-02 3.830126681258209e-02 3.827874506055112e-02 + 3.825624555414461e-02 3.823376832335444e-02 3.821131339817244e-02 3.818888080859045e-02 3.816647058460032e-02 + 3.814408275619389e-02 3.812171735336303e-02 3.809937440609954e-02 3.807705394439530e-02 3.805475599824214e-02 + 3.803248059763190e-02 3.801022777255643e-02 3.798799755300758e-02 3.796578996897719e-02 3.794360505045710e-02 + 3.792144282743916e-02 3.789930332991522e-02 3.787718658787710e-02 3.785509263131667e-02 3.783302149022577e-02 + 3.781097319459624e-02 3.778894777441992e-02 3.776694525968866e-02 3.774496568039430e-02 3.772300906652870e-02 + 3.770107544808367e-02 3.767916485505110e-02 3.765727731742280e-02 3.763541286519063e-02 3.761357152834642e-02 + 3.759175333688204e-02 3.756995832078931e-02 3.754818651006007e-02 3.752643793468620e-02 3.750471262465951e-02 + 3.748301060997186e-02 3.746133192061509e-02 3.743967658658105e-02 3.741804463786157e-02 3.739643610444850e-02 + 3.737485101633371e-02 3.735328940350900e-02 3.733175129596625e-02 3.731023672369729e-02 3.728874571669397e-02 + 3.726727830494812e-02 3.724583451845160e-02 3.722441438719625e-02 3.720301794117391e-02 3.718164521037644e-02 + 3.716029622479566e-02 3.713897101442343e-02 3.711766960925159e-02 3.709639203927199e-02 3.707513833447647e-02 + 3.705390852485687e-02 3.703270264040504e-02 3.701152071111283e-02 3.699036276697207e-02 3.696922883797462e-02 + 3.694811895411231e-02 3.692703314537699e-02 3.690597144176051e-02 3.688493387325471e-02 3.686392046985143e-02 + 3.684293126154253e-02 3.682196627831984e-02 3.680102555017520e-02 3.678010910710046e-02 3.675921697908748e-02 + 3.673834919612807e-02 3.671750578821411e-02 3.669668678533742e-02 3.667589221748987e-02 3.665512211466327e-02 + 3.663437650684950e-02 3.661365542404037e-02 3.659295889622776e-02 3.657228695340348e-02 3.655163962555941e-02 + 3.653101694268735e-02 3.651041893477919e-02 3.648984563182674e-02 3.646929706382188e-02 3.644877326075641e-02 + 3.642827425262220e-02 3.640780006941109e-02 3.638735074111494e-02 3.636692629772557e-02 3.634652676923484e-02 + 3.632615218563458e-02 3.630580257691665e-02 3.628547797307289e-02 3.626517840409513e-02 3.624490389997524e-02 + 3.622465449070505e-02 3.620443020627639e-02 3.618423107668113e-02 3.616405713191111e-02 3.614390840195816e-02 + 3.612378491681414e-02 3.610368670647089e-02 3.608361380092025e-02 3.606356623015406e-02 3.604354402416417e-02 + 3.602354721294244e-02 3.600357582648069e-02 3.598362989477077e-02 3.596370944780453e-02 3.594381451557382e-02 + 3.592394512807047e-02 3.590410131528634e-02 3.588428310721326e-02 3.586449053384308e-02 3.584472362516764e-02 + 3.582498241117880e-02 3.580526692186839e-02 3.578557718722826e-02 3.576591323725024e-02 3.574627510192620e-02 + 3.572666281124797e-02 3.570707639520740e-02 3.568751588379632e-02 3.566798130700659e-02 3.564847269483005e-02 + 3.562899007725854e-02 3.560953348428391e-02 3.559010294589800e-02 3.557069849209266e-02 3.555132015285974e-02 + 3.553196795819106e-02 3.551264193807849e-02 3.549334212251386e-02 3.547406854148901e-02 3.545482122499580e-02 + 3.543560020302607e-02 3.541640550557167e-02 3.539723716262443e-02 3.537809520417620e-02 3.535897966021882e-02 + 3.533989056074414e-02 3.532082793574401e-02 3.530179181521027e-02 3.528278222913475e-02 3.526379920750932e-02 + 3.524484278032580e-02 3.522591297757607e-02 3.520700982925193e-02 3.518813336534525e-02 3.516928361584787e-02 + 3.515046061075164e-02 3.513166438004838e-02 3.511289495372998e-02 3.509415236178823e-02 3.507543663421501e-02 + 3.505674780100216e-02 3.503808589214152e-02 3.501945093762493e-02 3.500084296744425e-02 3.498226201159130e-02 + 3.496370810005795e-02 3.494518126283602e-02 3.492668152991737e-02 3.490820893129385e-02 3.488976349695729e-02 + 3.487134525689954e-02 3.485295424111245e-02 3.483459047958785e-02 3.481625400231760e-02 3.479794483929353e-02 + 3.477966302050750e-02 3.476140857595134e-02 3.474318153561690e-02 3.472498192949603e-02 3.470680978758058e-02 + 3.468866513986237e-02 3.467054801633326e-02 3.465245844698509e-02 3.463439646180971e-02 3.461636209079897e-02 + 3.459835536394470e-02 3.458037631123875e-02 3.456242496267296e-02 3.454450134823919e-02 3.452660549792927e-02 + 3.450873744173504e-02 3.449089720964835e-02 3.447308483166107e-02 3.445530033776500e-02 3.443754375795202e-02 + 3.441981512221395e-02 3.440211446054266e-02 3.438444180292995e-02 3.436679717936773e-02 3.434918061984778e-02 + 3.433159215436199e-02 3.431403181290218e-02 3.429649962546020e-02 3.427899562202789e-02 3.426151983259711e-02 + 3.424407228715969e-02 3.422665301570748e-02 3.420926204823232e-02 3.419189941472606e-02 3.417456514518054e-02 + 3.415725926958761e-02 3.413998181793911e-02 3.412273282022688e-02 3.410551230644278e-02 3.408832030657864e-02 + 3.407115685062630e-02 3.405402196857762e-02 3.403691569042444e-02 3.401983804615860e-02 3.400278906577194e-02 + 3.398576877925633e-02 3.396877721660357e-02 3.395181440780554e-02 3.393488038285408e-02 3.391797517174103e-02 + 3.390109880445821e-02 3.388425131099751e-02 3.386743272135074e-02 3.385064306550976e-02 3.383388237346641e-02 + 3.381715067521254e-02 3.380044800073998e-02 3.378377438004059e-02 3.376712984310620e-02 3.375051441992868e-02 + 3.373392814049984e-02 3.371737103481155e-02 3.370084313285564e-02 3.368434446462396e-02 3.366787506010836e-02 + 3.365143466564878e-02 3.363501887624541e-02 3.361862209777612e-02 3.360224500875989e-02 3.358588827878357e-02 + 3.356955147090725e-02 3.355323458431880e-02 3.353693766165054e-02 3.352066065506343e-02 3.350440352193865e-02 + 3.348816624199871e-02 3.347194881659273e-02 3.345575121630599e-02 3.343957340404732e-02 3.342341535303144e-02 + 3.340727704441876e-02 3.339115845430404e-02 3.337505954322636e-02 3.335898029706669e-02 3.334292070921326e-02 + 3.332688074834195e-02 3.331086037969291e-02 3.329485957414917e-02 3.327887831864652e-02 3.326291658484171e-02 + 3.324697433542376e-02 3.323105156623186e-02 3.321514826023114e-02 3.319926437839098e-02 3.318339989412266e-02 + 3.316755478754796e-02 3.315172903929034e-02 3.313592261295018e-02 3.312013548124740e-02 3.310436764153749e-02 + 3.308861906981869e-02 3.307288973180764e-02 3.305717959801665e-02 3.304148865245999e-02 3.302581687574703e-02 + 3.301016422142487e-02 3.299453067800234e-02 3.297891624809741e-02 3.296332088425066e-02 3.294774455685354e-02 + 3.293218725810471e-02 3.291664896225673e-02 3.290112963401578e-02 3.288562923879117e-02 3.287014777263271e-02 + 3.285468522369568e-02 3.283924155670871e-02 3.282381674440858e-02 3.280841076589561e-02 3.279302360243119e-02 + 3.277765521941309e-02 3.276230558706894e-02 3.274697470113698e-02 3.273166254219040e-02 3.271636907936865e-02 + 3.270109428250347e-02 3.268583813280482e-02 3.267060061307020e-02 3.265538168459424e-02 3.264018132671115e-02 + 3.262499953449712e-02 3.260983628233858e-02 3.259469153939318e-02 3.257956527754512e-02 3.256445748091834e-02 + 3.254936812698490e-02 3.253429718174427e-02 3.251924463148387e-02 3.250421046229880e-02 3.248919464552218e-02 + 3.247419715298105e-02 3.245921796288541e-02 3.244425706251369e-02 3.242931441545717e-02 3.241438998652282e-02 + 3.239948378141620e-02 3.238459577882156e-02 3.236972593925531e-02 3.235487424670715e-02 3.234004068301546e-02 + 3.232522522137563e-02 3.231042782696456e-02 3.229564848261764e-02 3.228088718700101e-02 3.226614390644563e-02 + 3.225141860917057e-02 3.223671128042128e-02 3.222202190260593e-02 3.220735044835789e-02 3.219269687989033e-02 + 3.217806118663362e-02 3.216344336205739e-02 3.214884337811092e-02 3.213426120193776e-02 3.211969680852602e-02 + 3.210515019435922e-02 3.209062132655478e-02 3.207611016186721e-02 3.206161670288540e-02 3.204714093648681e-02 + 3.203268282961075e-02 3.201824236239234e-02 3.200381951210604e-02 3.198941424912934e-02 3.197502654604618e-02 + 3.196065638811887e-02 3.194630377248257e-02 3.193196866763873e-02 3.191765104079724e-02 3.190335087680102e-02 + 3.188906815766901e-02 3.187480285784819e-02 3.186055494296534e-02 3.184632440204734e-02 3.183211122836238e-02 + 3.181791538780577e-02 3.180373685568510e-02 3.178957561657719e-02 3.177543165075891e-02 3.176130492904844e-02 + 3.174719542079285e-02 3.173310312097031e-02 3.171902801589959e-02 3.170497007535993e-02 3.169092927256592e-02 + 3.167690558660036e-02 3.166289900092451e-02 3.164890948767075e-02 3.163493702375719e-02 3.162098160094597e-02 + 3.160704320149037e-02 3.159312179836957e-02 3.157921735868882e-02 3.156532987076624e-02 3.155145932224658e-02 + 3.153760566663864e-02 3.152376889172848e-02 3.150994900180672e-02 3.149614595827410e-02 3.148235973399625e-02 + 3.146859031868535e-02 3.145483769408502e-02 3.144110182886523e-02 3.142738268687409e-02 3.141368026942635e-02 + 3.139999456778463e-02 3.138632554513814e-02 3.137267318073906e-02 3.135903745883740e-02 3.134541835839263e-02 + 3.133181584694165e-02 3.131822989974722e-02 3.130466051752389e-02 3.129110768114365e-02 3.127757136018487e-02 + 3.126405153214003e-02 3.125054818119363e-02 3.123706128835145e-02 3.122359081277034e-02 3.121013674152311e-02 + 3.119669908223311e-02 3.118327780512727e-02 3.116987287740892e-02 3.115648427590923e-02 3.114311198755302e-02 + 3.112975599208620e-02 3.111641625878769e-02 3.110309278026453e-02 3.108978554429882e-02 3.107649451605467e-02 + 3.106321967573116e-02 3.104996101093369e-02 3.103671850522385e-02 3.102349212552239e-02 3.101028184118182e-02 + 3.099708765215899e-02 3.098390954305432e-02 3.097074748653887e-02 3.095760146577434e-02 3.094447145973171e-02 + 3.093135744175442e-02 3.091825938652267e-02 3.090517727892404e-02 3.089211111199125e-02 3.087906086415095e-02 + 3.086602651045607e-02 3.085300802884278e-02 3.084000540267990e-02 3.082701861024971e-02 3.081404762072755e-02 + 3.080109242772720e-02 3.078815302348911e-02 3.077522937271052e-02 3.076232145526043e-02 3.074942925853004e-02 + 3.073655275969265e-02 3.072369193358731e-02 3.071084675893487e-02 3.069801722815575e-02 3.068520332655950e-02 + 3.067240502926292e-02 3.065962230727411e-02 3.064685514336771e-02 3.063410352936318e-02 3.062136743092317e-02 + 3.060864682743443e-02 3.059594172387181e-02 3.058325209340110e-02 3.057057790484611e-02 3.055791914232513e-02 + 3.054527578866520e-02 3.053264782274670e-02 3.052003521936738e-02 3.050743796632342e-02 3.049485605420712e-02 + 3.048228945948342e-02 3.046973815764381e-02 3.045720212753895e-02 3.044468135532321e-02 3.043217582076147e-02 + 3.041968549967531e-02 3.040721038082923e-02 3.039475044749309e-02 3.038230567464306e-02 3.036987604544383e-02 + 3.035746154526919e-02 3.034506215632694e-02 3.033267784558463e-02 3.032030859116679e-02 3.030795439680851e-02 + 3.029561524020229e-02 3.028329109283977e-02 3.027098194217670e-02 3.025868776986960e-02 3.024640855125834e-02 + 3.023414425922958e-02 3.022189488753165e-02 3.020966043396606e-02 3.019744085927903e-02 3.018523614254973e-02 + 3.017304628070488e-02 3.016087124712451e-02 3.014871101490015e-02 3.013656556629268e-02 3.012443489643160e-02 + 3.011231899192166e-02 3.010021782348693e-02 3.008813136953290e-02 3.007605961443153e-02 3.006400254477032e-02 + 3.005196013216448e-02 3.003993235442936e-02 3.002791921520012e-02 3.001592069144608e-02 3.000393675083135e-02 + 2.999196738372897e-02 2.998001257673401e-02 2.996807230790781e-02 2.995614654679549e-02 2.994423528130847e-02 + 2.993233851118915e-02 2.992045620999083e-02 2.990858835120550e-02 2.989673491731453e-02 2.988489589805536e-02 + 2.987307127537464e-02 2.986126102011340e-02 2.984946511909828e-02 2.983768356331996e-02 2.982591633787642e-02 + 2.981416341477938e-02 2.980242477098497e-02 2.979070040412034e-02 2.977899028736241e-02 2.976729439085326e-02 + 2.975561271768286e-02 2.974394525020974e-02 2.973229195799546e-02 2.972065283153817e-02 2.970902785474345e-02 + 2.969741700233630e-02 2.968582025251779e-02 2.967423759388233e-02 2.966266902120933e-02 2.965111450751603e-02 + 2.963957402972690e-02 2.962804757853395e-02 2.961653513685447e-02 2.960503668212408e-02 2.959355219023237e-02 + 2.958208165129883e-02 2.957062505724755e-02 2.955918238857859e-02 2.954775362079399e-02 2.953633873283637e-02 + 2.952493771681483e-02 2.951355054848872e-02 2.950217720053436e-02 2.949081767862442e-02 2.947947196700992e-02 + 2.946814003034778e-02 2.945682185755054e-02 2.944551743582863e-02 2.943422674341014e-02 2.942294975870480e-02 + 2.941168646812421e-02 2.940043686618776e-02 2.938920093147064e-02 2.937797864134186e-02 2.936676998172867e-02 + 2.935557493479196e-02 2.934439347979633e-02 2.933322559583284e-02 2.932207127373048e-02 2.931093050463312e-02 + 2.929980326285230e-02 2.928868953142686e-02 2.927758929945683e-02 2.926650254799867e-02 2.925542925398767e-02 + 2.924436939550082e-02 2.923332296415483e-02 2.922228995044700e-02 2.921127033783603e-02 2.920026410004271e-02 + 2.918927122033416e-02 2.917829169471517e-02 2.916732549176795e-02 2.915637258777840e-02 2.914543298801943e-02 + 2.913450667577263e-02 2.912359362430894e-02 2.911269381274288e-02 2.910180723305731e-02 2.909093387402745e-02 + 2.908007369930849e-02 2.906922669822638e-02 2.905839287303405e-02 2.904757219714476e-02 2.903676465199738e-02 + 2.902597022808873e-02 2.901518890157972e-02 2.900442065055892e-02 2.899366546087253e-02 2.898292332562971e-02 + 2.897219423070421e-02 2.896147815085827e-02 2.895077507160809e-02 2.894008498122344e-02 2.892940786384609e-02 + 2.891874369517828e-02 2.890809245634708e-02 2.889745414621765e-02 2.888682874769054e-02 2.887621623583590e-02 + 2.886561659425123e-02 2.885502981116054e-02 2.884445587294774e-02 2.883389475319686e-02 2.882334643970105e-02 + 2.881281093000496e-02 2.880228819979298e-02 2.879177822929067e-02 2.878128100842524e-02 2.877079651898801e-02 + 2.876032473884395e-02 2.874986564740009e-02 2.873941924390505e-02 2.872898552052601e-02 2.871856444638324e-02 + 2.870815600507148e-02 2.869776018641480e-02 2.868737697516582e-02 2.867700634591397e-02 2.866664827916806e-02 + 2.865630278319325e-02 2.864596983917359e-02 2.863564941328856e-02 2.862534149829953e-02 2.861504608429113e-02 + 2.860476315234840e-02 2.859449267740666e-02 2.858423464566411e-02 2.857398905422620e-02 2.856375588402207e-02 + 2.855353511594846e-02 2.854332673804624e-02 2.853313073796621e-02 2.852294709429606e-02 2.851277577543872e-02 + 2.850261678440491e-02 2.849247012219593e-02 2.848233575178603e-02 2.847221365657614e-02 2.846210383116990e-02 + 2.845200625935100e-02 2.844192091752946e-02 2.843184778466237e-02 2.842178686053369e-02 2.841173813547823e-02 + 2.840170158739025e-02 2.839167719418843e-02 2.838166494245600e-02 2.837166482484053e-02 2.836167681707307e-02 + 2.835170090137019e-02 2.834173707461769e-02 2.833178532393912e-02 2.832184563033358e-02 2.831191797277370e-02 + 2.830200233825938e-02 2.829209871310940e-02 2.828220707523810e-02 2.827232741579271e-02 2.826245972853687e-02 + 2.825260399229306e-02 2.824276019064247e-02 2.823292831178126e-02 2.822310834132040e-02 2.821330025651807e-02 + 2.820350403438503e-02 2.819371967866794e-02 2.818394718049788e-02 2.817418651237375e-02 2.816443766090156e-02 + 2.815470061416237e-02 2.814497535504664e-02 2.813526186206681e-02 2.812556012131105e-02 2.811587013236315e-02 + 2.810619188120791e-02 2.809652534562629e-02 2.808687050311100e-02 2.807722734684383e-02 2.806759586949595e-02 + 2.805797603975531e-02 2.804836784541272e-02 2.803877128655403e-02 2.802918634812817e-02 2.801961300908425e-02 + 2.801005124931340e-02 2.800050106254358e-02 2.799096243185147e-02 2.798143533065562e-02 2.797191976200169e-02 + 2.796241571829330e-02 2.795292316767612e-02 2.794344209750147e-02 2.793397250080147e-02 2.792451436474921e-02 + 2.791506766429417e-02 2.790563238187514e-02 2.789620852426368e-02 2.788679607109519e-02 2.787739499448651e-02 + 2.786800529276515e-02 2.785862695250820e-02 2.784925995023579e-02 2.783990426851568e-02 2.783055990112446e-02 + 2.782122684523413e-02 2.781190507602721e-02 2.780259457625915e-02 2.779329533996523e-02 2.778400734510273e-02 + 2.777473057425486e-02 2.776546502209671e-02 2.775621067523501e-02 2.774696751775778e-02 2.773773553529171e-02 + 2.772851471226555e-02 2.771930503638066e-02 2.771010650156085e-02 2.770091908311444e-02 2.769174275675288e-02 + 2.768257752750487e-02 2.767342338343482e-02 2.766428030170250e-02 2.765514827509389e-02 2.764602728937508e-02 + 2.763691732224667e-02 2.762781835629091e-02 2.761873038318760e-02 2.760965340016332e-02 2.760058738918467e-02 + 2.759153233095657e-02 2.758248821223181e-02 2.757345502668101e-02 2.756443275844788e-02 2.755542137569210e-02 + 2.754642087861812e-02 2.753743126859248e-02 2.752845251726651e-02 2.751948461051369e-02 2.751052754088128e-02 + 2.750158129051000e-02 2.749264584112846e-02 2.748372117908398e-02 2.747480730190011e-02 2.746590419839729e-02 + 2.745701184777745e-02 2.744813023052759e-02 2.743925933666562e-02 2.743039916197098e-02 2.742154968107790e-02 + 2.741271087850060e-02 2.740388275814067e-02 2.739506530469222e-02 2.738625849608251e-02 2.737746231424592e-02 + 2.736867675514432e-02 2.735990180809817e-02 2.735113743878892e-02 2.734238364845174e-02 2.733364044336462e-02 + 2.732490778587926e-02 2.731618566204183e-02 2.730747407386686e-02 2.729877300249025e-02 2.729008242908668e-02 + 2.728140234030172e-02 2.727273272900814e-02 2.726407358354408e-02 2.725542488697956e-02 2.724678662927163e-02 + 2.723815879907967e-02 2.722954137935252e-02 2.722093434732608e-02 2.721233769152850e-02 2.720375141931018e-02 + 2.719517551218435e-02 2.718660994644712e-02 2.717805471481514e-02 2.716950980584153e-02 2.716097520393317e-02 + 2.715245089289530e-02 2.714393686286031e-02 2.713543310581999e-02 2.712693960497614e-02 2.711845634782483e-02 + 2.710998332519429e-02 2.710152051958041e-02 2.709306791441093e-02 2.708462549834906e-02 2.707619326918369e-02 + 2.706777121480425e-02 2.705935930907671e-02 2.705095754483260e-02 2.704256591454058e-02 2.703418439795306e-02 + 2.702581298145425e-02 2.701745165546447e-02 2.700910041075726e-02 2.700075923746808e-02 2.699242812272907e-02 + 2.698410704764140e-02 2.697579599978723e-02 2.696749496984126e-02 2.695920394125775e-02 2.695092290187428e-02 + 2.694265184396634e-02 2.693439075649869e-02 2.692613962541774e-02 2.691789843589869e-02 2.690966718080280e-02 + 2.690144584430361e-02 2.689323440003169e-02 2.688503284907665e-02 2.687684119009101e-02 2.686865940030225e-02 + 2.686048746353486e-02 2.685232536881714e-02 2.684417310662326e-02 2.683603066151065e-02 2.682789801897943e-02 + 2.681977517552054e-02 2.681166212021913e-02 2.680355883616239e-02 2.679546530889016e-02 2.678738152752996e-02 + 2.677930748200765e-02 2.677124315479004e-02 2.676318853591112e-02 2.675514362231527e-02 2.674710839396962e-02 + 2.673908283555094e-02 2.673106694339361e-02 2.672306070150655e-02 2.671506409151823e-02 2.670707710108217e-02 + 2.669909972943648e-02 2.669113197027321e-02 2.668317379682501e-02 2.667522519875436e-02 2.666728617090520e-02 + 2.665935669311371e-02 2.665143675159882e-02 2.664352634032146e-02 2.663562545659268e-02 2.662773408361464e-02 + 2.661985219717407e-02 2.661197979572226e-02 2.660411687169956e-02 2.659626340488144e-02 2.658841937631547e-02 + 2.658058477937751e-02 2.657275961893512e-02 2.656494387358596e-02 2.655713752275513e-02 2.654934056348008e-02 + 2.654155298332925e-02 2.653377476657220e-02 2.652600590198415e-02 2.651824638075199e-02 2.651049619255404e-02 + 2.650275532091429e-02 2.649502375487615e-02 2.648730148802552e-02 2.647958851263073e-02 2.647188480891689e-02 + 2.646419035368700e-02 2.645650515131691e-02 2.644882919484906e-02 2.644116246069965e-02 2.643350494181170e-02 + 2.642585663084689e-02 2.641821751242615e-02 2.641058756892747e-02 2.640296679007395e-02 2.639535517653221e-02 + 2.638775271175803e-02 2.638015937698240e-02 2.637257516664822e-02 2.636500007332271e-02 2.635743408373907e-02 + 2.634987717633525e-02 2.634232934391862e-02 2.633479058525924e-02 2.632726088227431e-02 2.631974022390311e-02 + 2.631222860499385e-02 2.630472600717760e-02 2.629723241433261e-02 2.628974781674581e-02 2.628227220621198e-02 + 2.627480557677242e-02 2.626734792215179e-02 2.625989921852152e-02 2.625245945041883e-02 2.624502862403611e-02 + 2.623760671958282e-02 2.623019371536040e-02 2.622278961237779e-02 2.621539440295659e-02 2.620800807254220e-02 + 2.620063060674004e-02 2.619326199404739e-02 2.618590222410475e-02 2.617855128386046e-02 2.617120916522779e-02 + 2.616387586230346e-02 2.615655135861502e-02 2.614923564213544e-02 2.614192870720641e-02 2.613463054125929e-02 + 2.612734112755428e-02 2.612006044964381e-02 2.611278850871195e-02 2.610552530050819e-02 2.609827080222275e-02 + 2.609102500359168e-02 2.608378789925431e-02 2.607655947900249e-02 2.606933972466179e-02 2.606212861946312e-02 + 2.605492616097670e-02 2.604773234503024e-02 2.604054716124884e-02 2.603337058950191e-02 2.602620261873257e-02 + 2.601904324395194e-02 2.601189244598317e-02 2.600475021758196e-02 2.599761656283118e-02 2.599049145836681e-02 + 2.598337488632347e-02 2.597626684662969e-02 2.596916733159564e-02 2.596207632537513e-02 2.595499380688753e-02 + 2.594791977426907e-02 2.594085422650568e-02 2.593379714560815e-02 2.592674851872178e-02 2.591970833661526e-02 + 2.591267658830654e-02 2.590565326173340e-02 2.589863834578747e-02 2.589163183398775e-02 2.588463371701131e-02 + 2.587764398252935e-02 2.587066261956569e-02 2.586368961749470e-02 2.585672496539723e-02 2.584976865103265e-02 + 2.584282066471713e-02 2.583588100000093e-02 2.582894964599770e-02 2.582202659070586e-02 2.581511182332461e-02 + 2.580820533343631e-02 2.580130710958863e-02 2.579441713875388e-02 2.578753541579036e-02 2.578066193633965e-02 + 2.577379668579866e-02 2.576693964640701e-02 2.576009080523955e-02 2.575325016689414e-02 2.574641771694009e-02 + 2.573959342940173e-02 2.573277731100565e-02 2.572596935753856e-02 2.571916954588383e-02 2.571237786264848e-02 + 2.570559430241213e-02 2.569881886299849e-02 2.569205152414907e-02 2.568529227185872e-02 2.567854111122693e-02 + 2.567179802594942e-02 2.566506299732867e-02 2.565833602386073e-02 2.565161709921462e-02 2.564490620914589e-02 + 2.563820333139000e-02 2.563150846268354e-02 2.562482160754986e-02 2.561814274902439e-02 2.561147187258114e-02 + 2.560480896924013e-02 2.559815402833877e-02 2.559150703774291e-02 2.558486798572520e-02 2.557823686789989e-02 + 2.557161367849433e-02 2.556499840587265e-02 2.555839103232124e-02 2.555179154834854e-02 2.554519995829834e-02 + 2.553861624178350e-02 2.553204037844031e-02 2.552547237202886e-02 2.551891221538829e-02 2.551235989397021e-02 + 2.550581539575596e-02 2.549927871458803e-02 2.549274984258965e-02 2.548622875540724e-02 2.547971544999134e-02 + 2.547320993631275e-02 2.546671219025347e-02 2.546022219347805e-02 2.545373994243675e-02 2.544726542971977e-02 + 2.544079864501286e-02 2.543433957656028e-02 2.542788821576999e-02 2.542144455508066e-02 2.541500858637495e-02 + 2.540858030019949e-02 2.540215968413957e-02 2.539574672197945e-02 2.538934140646816e-02 2.538294373410821e-02 + 2.537655369660362e-02 2.537017128263758e-02 2.536379648098229e-02 2.535742928550868e-02 2.535106968465225e-02 + 2.534471766277936e-02 2.533837321084466e-02 2.533203632423742e-02 2.532570699881585e-02 2.531938521813243e-02 + 2.531307097096266e-02 2.530676425602581e-02 2.530046505932213e-02 2.529417336607690e-02 2.528788916915281e-02 + 2.528161246489754e-02 2.527534324609989e-02 2.526908149634068e-02 2.526282720495094e-02 2.525658036572961e-02 + 2.525034097275206e-02 2.524410901058027e-02 2.523788446449190e-02 2.523166734234336e-02 2.522545763237074e-02 + 2.521925530838600e-02 2.521306037097086e-02 2.520687281776321e-02 2.520069263496993e-02 2.519451980442291e-02 + 2.518835431925369e-02 2.518219618546694e-02 2.517604538654039e-02 2.516990190396150e-02 2.516376573127799e-02 + 2.515763686639562e-02 2.515151530112912e-02 2.514540101358030e-02 2.513929399756280e-02 2.513319425347670e-02 + 2.512710177240427e-02 2.512101654329324e-02 2.511493855506050e-02 2.510886779787783e-02 2.510280425830826e-02 + 2.509674792451250e-02 2.509069880343641e-02 2.508465688466923e-02 2.507862214067907e-02 2.507259457630134e-02 + 2.506657418922008e-02 2.506056095604422e-02 2.505455486579475e-02 2.504855591546334e-02 2.504256410459500e-02 + 2.503657941982099e-02 2.503060184642849e-02 2.502463137903613e-02 2.501866800626509e-02 2.501271171663477e-02 + 2.500676250820755e-02 2.500082037092928e-02 2.499488529135626e-02 2.498895726677344e-02 2.498303628979692e-02 + 2.497712234741346e-02 2.497121542814719e-02 2.496531552247531e-02 2.495942262282587e-02 2.495353672310340e-02 + 2.494765781766853e-02 2.494178589943900e-02 2.493592095223772e-02 2.493006296439117e-02 2.492421193524048e-02 + 2.491836784922406e-02 2.491253069345717e-02 2.490670047398909e-02 2.490087718065651e-02 2.489506079631419e-02 + 2.488925131370227e-02 2.488344872747560e-02 2.487765302865731e-02 2.487186419727612e-02 2.486608223223404e-02 + 2.486030714174834e-02 2.485453889875117e-02 2.484877749156952e-02 2.484302292908405e-02 2.483727519324232e-02 + 2.483153426549052e-02 2.482580013961989e-02 2.482007281919668e-02 2.481435229933991e-02 2.480863855780388e-02 + 2.480293158683973e-02 2.479723138421890e-02 2.479153794250162e-02 2.478585124573938e-02 2.478017128120043e-02 + 2.477449805440481e-02 2.476883155587847e-02 2.476317176818658e-02 2.475751868877601e-02 2.475187231076201e-02 + 2.474623262098153e-02 2.474059960704484e-02 2.473497326224523e-02 2.472935358498410e-02 2.472374056978996e-02 + 2.471813420423485e-02 2.471253447111526e-02 2.470694136984621e-02 2.470135489678424e-02 2.469577503399494e-02 + 2.469020177298829e-02 2.468463511029760e-02 2.467907504169421e-02 2.467352155791407e-02 2.466797464651026e-02 + 2.466243429488579e-02 2.465690049712254e-02 2.465137324948606e-02 2.464585254039273e-02 2.464033836402688e-02 + 2.463483071739735e-02 2.462932958374225e-02 2.462383495186045e-02 2.461834681928389e-02 2.461286517898853e-02 + 2.460739002108202e-02 2.460192133524253e-02 2.459645911917798e-02 2.459100336526309e-02 2.458555405446716e-02 + 2.458011118496141e-02 2.457467475465895e-02 2.456924474486533e-02 2.456382114921245e-02 2.455840396700115e-02 + 2.455299319041756e-02 2.454758880740113e-02 2.454219080674820e-02 2.453679918638537e-02 2.453141393576077e-02 + 2.452603503863916e-02 2.452066249180092e-02 2.451529629410615e-02 2.450993644073534e-02 2.450458291517292e-02 + 2.449923570627392e-02 2.449389481263279e-02 2.448856022075961e-02 2.448323192252920e-02 2.447790992354739e-02 + 2.447259420740984e-02 2.446728475663024e-02 2.446198157303190e-02 2.445668465268695e-02 2.445139398411770e-02 + 2.444610955000165e-02 2.444083134675017e-02 2.443555937646448e-02 2.443029362647454e-02 2.442503408583922e-02 + 2.441978074770511e-02 2.441453360513738e-02 2.440929264714783e-02 2.440405786136508e-02 2.439882924944217e-02 + 2.439360680824694e-02 2.438839052372590e-02 2.438318038826778e-02 2.437797639360750e-02 2.437277852674977e-02 + 2.436758678074824e-02 2.436240115296091e-02 2.435722164202054e-02 2.435204823529888e-02 2.434688091817521e-02 + 2.434171968740183e-02 2.433656453724402e-02 2.433141545805634e-02 2.432627243782077e-02 2.432113546933723e-02 + 2.431600455029639e-02 2.431087967900234e-02 2.430576084399959e-02 2.430064802749307e-02 2.429554123205279e-02 + 2.429044044976694e-02 2.428534565606734e-02 2.428025685952290e-02 2.427517406275088e-02 2.427009724038350e-02 + 2.426502638834353e-02 2.425996150697585e-02 2.425490258288459e-02 2.424984960255012e-02 2.424480255754471e-02 + 2.423976144931379e-02 2.423472627405213e-02 2.422969702193537e-02 2.422467367993699e-02 2.421965624107330e-02 + 2.421464470176334e-02 2.420963904926960e-02 2.420463927567678e-02 2.419964537946393e-02 2.419465735323985e-02 + 2.418967518800793e-02 2.418469887545246e-02 2.417972840901141e-02 2.417476377855392e-02 2.416980496962540e-02 + 2.416485198688481e-02 2.415990483049387e-02 2.415496347565664e-02 2.415002792020104e-02 2.414509816788697e-02 + 2.414017420064829e-02 2.413525600526027e-02 2.413034357711665e-02 2.412543691925479e-02 2.412053602209589e-02 + 2.411564086852338e-02 2.411075145960207e-02 2.410586778967854e-02 2.410098984367492e-02 2.409611761892932e-02 + 2.409125110932578e-02 2.408639030144091e-02 2.408153519631380e-02 2.407668578962185e-02 2.407184206146642e-02 + 2.406700400909483e-02 2.406217163125833e-02 2.405734491326586e-02 2.405252385052364e-02 2.404770844026444e-02 + 2.404289866819192e-02 2.403809452984102e-02 2.403329602484744e-02 2.402850314011094e-02 2.402371586479471e-02 + 2.401893419282938e-02 2.401415812045089e-02 2.400938764313821e-02 2.400462275334547e-02 2.399986343578922e-02 + 2.399510968520409e-02 2.399036150812855e-02 2.398561888480285e-02 2.398088180164008e-02 2.397615026865237e-02 + 2.397142427338870e-02 2.396670380040281e-02 2.396198885088599e-02 2.395727942113068e-02 2.395257549962209e-02 + 2.394787706723708e-02 2.394318412617158e-02 2.393849668455232e-02 2.393381472012022e-02 2.392913822141401e-02 + 2.392446719065216e-02 2.391980162598514e-02 2.391514151312970e-02 2.391048683154523e-02 2.390583758880722e-02 + 2.390119378770886e-02 2.389655541357522e-02 2.389192245255953e-02 2.388729489743550e-02 2.388267274893805e-02 + 2.387805599705324e-02 2.387344463051915e-02 2.386883864637205e-02 2.386423804212813e-02 2.385964281176755e-02 + 2.385505294183017e-02 2.385046842474073e-02 2.384588925674739e-02 2.384131543037479e-02 2.383674693675093e-02 + 2.383218376863605e-02 2.382762592698097e-02 2.382307340607612e-02 2.381852619200930e-02 2.381398427584630e-02 + 2.380944765139419e-02 2.380491631418275e-02 2.380039026147703e-02 2.379586948695320e-02 2.379135397827495e-02 + 2.378684372855616e-02 2.378233873403001e-02 2.377783899070361e-02 2.377334448688785e-02 2.376885521259772e-02 + 2.376437117173840e-02 2.375989235311110e-02 2.375541874056297e-02 2.375095033967465e-02 2.374648714507580e-02 + 2.374202914136664e-02 2.373757632537944e-02 2.373312869288914e-02 2.372868623536894e-02 2.372424894471153e-02 + 2.371981681484819e-02 2.371538984133524e-02 2.371096801501392e-02 2.370655132827953e-02 2.370213977833190e-02 + 2.369773335765337e-02 2.369333205880069e-02 2.368893587883010e-02 2.368454481046802e-02 2.368015884444250e-02 + 2.367577797334512e-02 2.367140218742613e-02 2.366703147963686e-02 2.366266585606776e-02 2.365830530976384e-02 + 2.365394982335759e-02 2.364959939168465e-02 2.364525401200215e-02 2.364091367903051e-02 2.363657837870221e-02 + 2.363224810602428e-02 2.362792286773459e-02 2.362360264929340e-02 2.361928743769403e-02 2.361497723470610e-02 + 2.361067203383207e-02 2.360637182449869e-02 2.360207659794005e-02 2.359778635431920e-02 2.359350109143980e-02 + 2.358922079027601e-02 2.358494544772182e-02 2.358067506765588e-02 2.357640963547734e-02 2.357214914179353e-02 + 2.356789358468287e-02 2.356364296127548e-02 2.355939726289868e-02 2.355515647729875e-02 2.355092060314220e-02 + 2.354668963726047e-02 2.354246356971432e-02 2.353824239065819e-02 2.353402609608870e-02 2.352981468856027e-02 + 2.352560815209497e-02 2.352140647526573e-02 2.351720967050562e-02 2.351301772305351e-02 2.350883061252196e-02 + 2.350464834642137e-02 2.350047092197861e-02 2.349629832802946e-02 2.349213055910952e-02 2.348796760574937e-02 + 2.348380945835795e-02 2.347965612326723e-02 2.347550759163322e-02 2.347136384068571e-02 2.346722487769892e-02 + 2.346309070523777e-02 2.345896130833473e-02 2.345483667635093e-02 2.345071680463291e-02 2.344660169327714e-02 + 2.344249133136094e-02 2.343838570884467e-02 2.343428482723373e-02 2.343018868068117e-02 2.342609726030811e-02 + 2.342201056195244e-02 2.341792857876926e-02 2.341385130156056e-02 2.340977872164902e-02 2.340571083589386e-02 + 2.340164764377465e-02 2.339758913684304e-02 2.339353530825718e-02 2.338948615385810e-02 2.338544166438565e-02 + 2.338140183238109e-02 2.337736665460082e-02 2.337333612670094e-02 2.336931024309368e-02 2.336528899670786e-02 + 2.336127237782067e-02 2.335726037932775e-02 2.335325300092871e-02 2.334925023614406e-02 2.334525207670920e-02 + 2.334125851951941e-02 2.333726955725296e-02 2.333328518197435e-02 2.332930539416707e-02 2.332533018620607e-02 + 2.332135954429912e-02 2.331739346348105e-02 2.331343194297124e-02 2.330947498175055e-02 2.330552256758802e-02 + 2.330157469245372e-02 2.329763135682490e-02 2.329369255310137e-02 2.328975827131819e-02 2.328582850377367e-02 + 2.328190324900185e-02 2.327798250467623e-02 2.327406626164597e-02 2.327015451465238e-02 2.326624725851670e-02 + 2.326234448228765e-02 2.325844618291867e-02 2.325455236057939e-02 2.325066300636415e-02 2.324677811186985e-02 + 2.324289767062798e-02 2.323902167622130e-02 2.323515012509116e-02 2.323128301561370e-02 2.322742034088871e-02 + 2.322356209250113e-02 2.321970826255392e-02 2.321585884544971e-02 2.321201383858435e-02 2.320817324137425e-02 + 2.320433704277431e-02 2.320050523099401e-02 2.319667780275936e-02 2.319285475700314e-02 2.318903609087885e-02 + 2.318522179577433e-02 2.318141186586264e-02 2.317760629632794e-02 2.317380507773795e-02 2.317000820301008e-02 + 2.316621566880872e-02 2.316242747510807e-02 2.315864361575457e-02 2.315486407850317e-02 2.315108885694486e-02 + 2.314731794816131e-02 2.314355135044316e-02 2.313978905662257e-02 2.313603105913640e-02 2.313227735329952e-02 + 2.312852793585061e-02 2.312478280157292e-02 2.312104194073204e-02 2.311730534704967e-02 2.311357301587891e-02 + 2.310984494137890e-02 2.310612112341407e-02 2.310240155989217e-02 2.309868623130452e-02 2.309497513592190e-02 + 2.309126828241582e-02 2.308756565023808e-02 2.308386723175103e-02 2.308017303542274e-02 2.307648304592169e-02 + 2.307279725617671e-02 2.306911567493640e-02 2.306543828441958e-02 2.306176507302976e-02 2.305809605235563e-02 + 2.305443121050249e-02 2.305077053229759e-02 2.304711401909808e-02 2.304346166830784e-02 2.303981347406350e-02 + 2.303616943085239e-02 2.303252953349069e-02 2.302889377643319e-02 2.302526215247478e-02 2.302163465435939e-02 + 2.301801127709388e-02 2.301439202296127e-02 2.301077688440331e-02 2.300716584594829e-02 2.300355891234385e-02 + 2.299995607931316e-02 2.299635732709070e-02 2.299276266087610e-02 2.298917208378683e-02 2.298558558107965e-02 + 2.298200314503575e-02 2.297842477288603e-02 2.297485046311076e-02 2.297128020911345e-02 2.296771400315858e-02 + 2.296415184168031e-02 2.296059371667762e-02 2.295703962066644e-02 2.295348955785851e-02 2.294994352217295e-02 + 2.294640149900077e-02 2.294286348264926e-02 2.293932947451599e-02 2.293579947717141e-02 2.293227347444131e-02 + 2.292875145668869e-02 2.292523342863249e-02 2.292171938675970e-02 2.291820932208030e-02 2.291470322329688e-02 + 2.291120108573121e-02 2.290770290936340e-02 2.290420869564250e-02 2.290071843254762e-02 2.289723210840996e-02 + 2.289374972996874e-02 2.289027128684278e-02 2.288679676284003e-02 2.288332616596880e-02 2.287985949623025e-02 + 2.287639674290211e-02 2.287293789614104e-02 2.286948295143698e-02 2.286603190794522e-02 2.286258475709644e-02 + 2.285914149325583e-02 2.285570211629635e-02 2.285226661817064e-02 2.284883499242224e-02 2.284540723897847e-02 + 2.284198334984975e-02 2.283856331588243e-02 2.283514713353579e-02 2.283173480111027e-02 2.282832631556901e-02 + 2.282492166909090e-02 2.282152085461623e-02 2.281812386736860e-02 2.281473070606539e-02 2.281134136558116e-02 + 2.280795583769253e-02 2.280457411713410e-02 2.280119619914733e-02 2.279782207936136e-02 2.279445175627783e-02 + 2.279108522557549e-02 2.278772247795469e-02 2.278436350274908e-02 2.278100829770330e-02 2.277765687156956e-02 + 2.277430921150676e-02 2.277096530368425e-02 2.276762515226868e-02 2.276428875675497e-02 2.276095610802096e-02 + 2.275762718728153e-02 2.275430199700514e-02 2.275098054723153e-02 2.274766282325953e-02 2.274434881806882e-02 + 2.274103853245654e-02 2.273773195657694e-02 2.273442908251650e-02 2.273112990748000e-02 2.272783443024632e-02 + 2.272454264587135e-02 2.272125454541999e-02 2.271797012768606e-02 2.271468938883630e-02 2.271141231743784e-02 + 2.270813891155475e-02 2.270486917113991e-02 2.270160309030139e-02 2.269834065991423e-02 2.269508187421201e-02 + 2.269182673791773e-02 2.268857524219826e-02 2.268532737305624e-02 2.268208313254210e-02 2.267884251722086e-02 + 2.267560551920548e-02 2.267237214108131e-02 2.266914237609957e-02 2.266591620883689e-02 2.266269364166427e-02 + 2.265947467384046e-02 2.265625929499294e-02 2.265304750285308e-02 2.264983929495161e-02 2.264663466331073e-02 + 2.264343359962570e-02 2.264023610100446e-02 2.263704217283995e-02 2.263385180078203e-02 2.263066497176033e-02 + 2.262748170200772e-02 2.262430198020481e-02 2.262112578516977e-02 2.261795313211606e-02 2.261478401664109e-02 + 2.261161841743119e-02 2.260845633522814e-02 2.260529777070043e-02 2.260214271924124e-02 2.259899117823321e-02 + 2.259584314154298e-02 2.259269859890657e-02 2.258955754741791e-02 2.258641998536936e-02 2.258328590829124e-02 + 2.258015531052365e-02 2.257702818646037e-02 2.257390453172050e-02 2.257078434461123e-02 2.256766762198980e-02 + 2.256455435398716e-02 2.256144453344060e-02 2.255833815784602e-02 2.255523523027356e-02 2.255213574452021e-02 + 2.254903968810603e-02 2.254594705829782e-02 2.254285785514665e-02 2.253977207653749e-02 2.253668970834607e-02 + 2.253361074658835e-02 2.253053520058667e-02 2.252746305460894e-02 2.252439429792020e-02 2.252132894054988e-02 + 2.251826697539277e-02 2.251520839162438e-02 2.251215318778324e-02 2.250910135797150e-02 2.250605289615611e-02 + 2.250300780314812e-02 2.249996607511807e-02 2.249692770517706e-02 2.249389268897849e-02 2.249086101912092e-02 + 2.248783268793952e-02 2.248480769791340e-02 2.248178604607573e-02 2.247876772289102e-02 2.247575272657626e-02 + 2.247274105420605e-02 2.246973269884927e-02 2.246672765673356e-02 2.246372592391256e-02 2.246072749418018e-02 + 2.245773236145919e-02 2.245474052366870e-02 2.245175198466864e-02 2.244876673416187e-02 2.244578475935081e-02 + 2.244280606154297e-02 2.243983064008646e-02 2.243685849064164e-02 2.243388960632717e-02 2.243092397966235e-02 + 2.242796160524575e-02 2.242500248562306e-02 2.242204661762487e-02 2.241909399183298e-02 2.241614460666303e-02 + 2.241319845819517e-02 2.241025553754803e-02 2.240731584245553e-02 2.240437937032112e-02 2.240144611432051e-02 + 2.239851607018801e-02 2.239558923444239e-02 2.239266560299412e-02 2.238974517661811e-02 2.238682795331298e-02 + 2.238391391839321e-02 2.238100306495051e-02 2.237809539304577e-02 2.237519090301935e-02 2.237228958954325e-02 + 2.236939144530989e-02 2.236649647337483e-02 2.236360466636645e-02 2.236071600836286e-02 2.235783050633204e-02 + 2.235494816009726e-02 2.235206895420678e-02 2.234919288912077e-02 2.234631996540050e-02 2.234345017408028e-02 + 2.234058350741709e-02 2.233771996217690e-02 2.233485954108143e-02 2.233200223848051e-02 2.232914804618978e-02 + 2.232629696222737e-02 2.232344898389008e-02 2.232060410657171e-02 2.231776232362639e-02 2.231492363175558e-02 + 2.231208802922137e-02 2.230925550831191e-02 2.230642606279709e-02 2.230359969032392e-02 2.230077639232617e-02 + 2.229795616382932e-02 2.229513899284023e-02 2.229232488215048e-02 2.228951382986107e-02 2.228670582046145e-02 + 2.228390085767177e-02 2.228109894426768e-02 2.227830006461064e-02 2.227550421765863e-02 2.227271140560883e-02 + 2.226992161633195e-02 2.226713484518715e-02 2.226435109357777e-02 2.226157036041665e-02 2.225879263594571e-02 + 2.225601790864145e-02 2.225324618600033e-02 2.225047746610503e-02 2.224771173578603e-02 2.224494899695189e-02 + 2.224218924606724e-02 2.223943246967720e-02 2.223667867147697e-02 2.223392785229840e-02 2.223117999944780e-02 + 2.222843510958861e-02 2.222569318138216e-02 2.222295420869658e-02 2.222021819230338e-02 2.221748513172378e-02 + 2.221475501403353e-02 2.221202783347761e-02 2.220930358964832e-02 2.220658227937696e-02 2.220386389978368e-02 + 2.220114844711944e-02 2.219843591216284e-02 2.219572629440826e-02 2.219301959936691e-02 2.219031581219321e-02 + 2.218761492468887e-02 2.218491694233576e-02 2.218222185562244e-02 2.217952965986671e-02 2.217684036403281e-02 + 2.217415395419634e-02 2.217147041795686e-02 2.216878976537657e-02 2.216611199005385e-02 2.216343708084910e-02 + 2.216076504044857e-02 2.215809586407636e-02 2.215542954392592e-02 2.215276608232491e-02 2.215010547339664e-02 + 2.214744770611955e-02 2.214479278225410e-02 2.214214070177000e-02 2.213949145934428e-02 2.213684504847090e-02 + 2.213420146383213e-02 2.213156070201421e-02 2.212892275987791e-02 2.212628763520102e-02 2.212365532631548e-02 + 2.212102582567219e-02 2.211839912707401e-02 2.211577523186081e-02 2.211315413883962e-02 2.211053584219323e-02 + 2.210792033053083e-02 2.210530760247808e-02 2.210269766011106e-02 2.210009049378774e-02 2.209748609987134e-02 + 2.209488448015577e-02 2.209228563063591e-02 2.208968954607055e-02 2.208709622107550e-02 2.208450564887732e-02 + 2.208191782589816e-02 2.207933275252874e-02 2.207675042560285e-02 2.207417084119970e-02 2.207159399606388e-02 + 2.206901988424427e-02 2.206644850045388e-02 2.206387984291528e-02 2.206131390816773e-02 2.205875069196218e-02 + 2.205619019101501e-02 2.205363240248722e-02 2.205107732226570e-02 2.204852494231603e-02 2.204597526222870e-02 + 2.204342828418220e-02 2.204088399409952e-02 2.203834238815479e-02 2.203580347352047e-02 2.203326724064265e-02 + 2.203073368487589e-02 2.202820281109562e-02 2.202567460568826e-02 2.202314905892956e-02 2.202062617713913e-02 + 2.201810595951965e-02 2.201558839960293e-02 2.201307348855861e-02 2.201056122699519e-02 2.200805161543166e-02 + 2.200554464185156e-02 2.200304030240887e-02 2.200053859846551e-02 2.199803952619762e-02 2.199554308107517e-02 + 2.199304925941878e-02 2.199055805969111e-02 2.198806947716193e-02 2.198558350490501e-02 2.198310014348315e-02 + 2.198061939050182e-02 2.197814123774413e-02 2.197566568143648e-02 2.197319271829654e-02 2.197072234409288e-02 + 2.196825456242376e-02 2.196578937054303e-02 2.196332674903257e-02 2.196086670076693e-02 2.195840923401799e-02 + 2.195595433798292e-02 2.195350200785295e-02 2.195105224287541e-02 2.194860503638501e-02 2.194616038337459e-02 + 2.194371828086876e-02 2.194127872478465e-02 2.193884171275727e-02 2.193640724439015e-02 2.193397531871202e-02 + 2.193154592984012e-02 2.192911906730429e-02 2.192669472874541e-02 2.192427291582612e-02 2.192185362988310e-02 + 2.191943685926103e-02 2.191702259589666e-02 2.191461084837004e-02 2.191220161094460e-02 2.190979487232746e-02 + 2.190739062981033e-02 2.190498888177591e-02 2.190258962778606e-02 2.190019287048831e-02 2.189779860038415e-02 + 2.189540680312951e-02 2.189301748590321e-02 2.189063064823816e-02 2.188824627921663e-02 2.188586438035036e-02 + 2.188348494945867e-02 2.188110797669410e-02 2.187873346273279e-02 2.187636140793982e-02 2.187399180563438e-02 + 2.187162464701073e-02 2.186925992764394e-02 2.186689765219864e-02 2.186453782016761e-02 2.186218042520733e-02 + 2.185982545624109e-02 2.185747291143151e-02 2.185512279286289e-02 2.185277509428750e-02 2.185042981497303e-02 + 2.184808695595145e-02 2.184574650317918e-02 2.184340845337333e-02 2.184107281435048e-02 2.183873957690715e-02 + 2.183640873122354e-02 2.183408027442373e-02 2.183175421068970e-02 2.182943053984947e-02 2.182710925220595e-02 + 2.182479034512406e-02 2.182247381639650e-02 2.182015965839264e-02 2.181784786935527e-02 2.181553844939510e-02 + 2.181323139439093e-02 2.181092669994856e-02 2.180862436262286e-02 2.180632438083940e-02 2.180402674952244e-02 + 2.180173146217098e-02 2.179943851892379e-02 2.179714791838810e-02 2.179485965603752e-02 2.179257372764807e-02 + 2.179029013045416e-02 2.178800886254997e-02 2.178572991731780e-02 2.178345329019238e-02 2.178117898198011e-02 + 2.177890698980304e-02 2.177663730909087e-02 2.177436993586566e-02 2.177210486810286e-02 2.176984210277431e-02 + 2.176758163245009e-02 2.176532345522340e-02 2.176306757137086e-02 2.176081397536724e-02 2.175856266623576e-02 + 2.175631364444715e-02 2.175406689861889e-02 2.175182242380624e-02 2.174958022311289e-02 2.174734029291431e-02 + 2.174510262809328e-02 2.174286722491656e-02 2.174063408336708e-02 2.173840320169586e-02 2.173617457340815e-02 + 2.173394819180500e-02 2.173172405255836e-02 2.172950215559655e-02 2.172728250040623e-02 2.172506508580887e-02 + 2.172284990969628e-02 2.172063696250313e-02 2.171842623537083e-02 2.171621773566752e-02 2.171401146093844e-02 + 2.171180740120238e-02 2.170960555830954e-02 2.170740592901658e-02 2.170520850408856e-02 2.170301328419004e-02 + 2.170082027006994e-02 2.169862945830807e-02 2.169644084240343e-02 2.169425441572978e-02 2.169207017401216e-02 + 2.168988812007480e-02 2.168770825534887e-02 2.168553057272023e-02 2.168335506533793e-02 2.168118172867985e-02 + 2.167901056214399e-02 2.167684156632982e-02 2.167467473989915e-02 2.167251007478243e-02 2.167034756604321e-02 + 2.166818721221639e-02 2.166602901099679e-02 2.166387295840019e-02 2.166171905012346e-02 2.165956728718834e-02 + 2.165741766632386e-02 2.165527017845730e-02 2.165312482355555e-02 2.165098160273919e-02 2.164884051303741e-02 + 2.164670154730472e-02 2.164456469954934e-02 2.164242996946321e-02 2.164029735885670e-02 2.163816686523918e-02 + 2.163603847533059e-02 2.163391219068715e-02 2.163178801684997e-02 2.162966593882407e-02 2.162754595404139e-02 + 2.162542806873079e-02 2.162331227177066e-02 2.162119856181649e-02 2.161908694674025e-02 2.161697741144211e-02 + 2.161486994763257e-02 2.161276456243416e-02 2.161066125301312e-02 2.160856001324272e-02 2.160646083892226e-02 + 2.160436373197112e-02 2.160226869104043e-02 2.160017570438035e-02 2.159808476849354e-02 2.159599588501710e-02 + 2.159390905460169e-02 2.159182427010056e-02 2.158974152429478e-02 2.158766082444429e-02 2.158558216760809e-02 + 2.158350554187339e-02 2.158143094233737e-02 2.157935837033232e-02 2.157728782941571e-02 2.157521931196140e-02 + 2.157315281164952e-02 2.157108832745493e-02 2.156902585566251e-02 2.156696539445298e-02 2.156490694526656e-02 + 2.156285049964247e-02 2.156079605212440e-02 2.155874360997529e-02 2.155669316474123e-02 2.155464470676604e-02 + 2.155259824484399e-02 2.155055377365348e-02 2.154851128035285e-02 2.154647076406023e-02 2.154443222886153e-02 + 2.154239567713112e-02 2.154036109691455e-02 2.153832848380287e-02 2.153629784162443e-02 2.153426916110383e-02 + 2.153224243839968e-02 2.153021767928900e-02 2.152819487735599e-02 2.152617402486068e-02 2.152415511969989e-02 + 2.152213816346627e-02 2.152012315489333e-02 2.151811008517867e-02 2.151609895106827e-02 2.151408975350627e-02 + 2.151208249405811e-02 2.151007716412923e-02 2.150807375412716e-02 2.150607227139823e-02 2.150407271389111e-02 + 2.150207507178008e-02 2.150007934512424e-02 2.149808553345600e-02 2.149609363244227e-02 2.149410363369511e-02 + 2.149211553597770e-02 2.149012934592863e-02 2.148814505588094e-02 2.148616265955859e-02 2.148418215959600e-02 + 2.148220354775919e-02 2.148022681859241e-02 2.147825198020547e-02 2.147627902590631e-02 2.147430794498996e-02 + 2.147233873858447e-02 2.147037140717467e-02 2.146840594879004e-02 2.146644235912430e-02 2.146448063553682e-02 + 2.146252077578778e-02 2.146056277288728e-02 2.145860662318243e-02 2.145665232726965e-02 2.145469988438242e-02 + 2.145274929256557e-02 2.145080054831608e-02 2.144885364454498e-02 2.144690857746641e-02 2.144496534942983e-02 + 2.144302395654175e-02 2.144108439499599e-02 2.143914666610025e-02 2.143721076355154e-02 2.143527668029283e-02 + 2.143334441800114e-02 2.143141397685691e-02 2.142948535268880e-02 2.142755853497146e-02 2.142563352602930e-02 + 2.142371033388222e-02 2.142178894500280e-02 2.141986935358769e-02 2.141795156402302e-02 2.141603556793572e-02 + 2.141412136230918e-02 2.141220895321441e-02 2.141029833297722e-02 2.140838949470163e-02 2.140648244009975e-02 + 2.140457716697424e-02 2.140267367166504e-02 2.140077195168551e-02 2.139887200433115e-02 2.139697382547902e-02 + 2.139507740888590e-02 2.139318275720074e-02 2.139128987343195e-02 2.138939874415982e-02 2.138750936775835e-02 + 2.138562175102568e-02 2.138373588641631e-02 2.138185176599392e-02 2.137996938652284e-02 2.137808875223814e-02 + 2.137620986251236e-02 2.137433270909064e-02 2.137245728978030e-02 2.137058360186242e-02 2.136871163953864e-02 + 2.136684140688612e-02 2.136497290390506e-02 2.136310611597474e-02 2.136124104345297e-02 2.135937769212130e-02 + 2.135751605860686e-02 2.135565613610374e-02 2.135379791822062e-02 2.135194140402438e-02 2.135008659417071e-02 + 2.134823348788390e-02 2.134638207760105e-02 2.134453236032835e-02 2.134268433814086e-02 2.134083800772077e-02 + 2.133899336411597e-02 2.133715040305821e-02 2.133530912424798e-02 2.133346952672500e-02 2.133163160670673e-02 + 2.132979536297411e-02 2.132796079152963e-02 2.132612788229375e-02 2.132429663915477e-02 2.132246706798375e-02 + 2.132063916037057e-02 2.131881290769116e-02 2.131698830582932e-02 2.131516535978050e-02 2.131334407028698e-02 + 2.131152443198118e-02 2.130970643552249e-02 2.130789007885127e-02 2.130607536669811e-02 2.130426229682303e-02 + 2.130245086421657e-02 2.130064106313053e-02 2.129883288837854e-02 2.129702633875496e-02 2.129522141788389e-02 + 2.129341812290223e-02 2.129161644909972e-02 2.128981639414264e-02 2.128801795585396e-02 2.128622113110773e-02 + 2.128442591509673e-02 2.128263230760480e-02 2.128084030772261e-02 2.127904990395241e-02 2.127726109953179e-02 + 2.127547390424031e-02 2.127368830171838e-02 2.127190428479188e-02 2.127012186038021e-02 2.126834102886177e-02 + 2.126656178481652e-02 2.126478411995624e-02 2.126300803603507e-02 2.126123353191450e-02 2.125946059821390e-02 + 2.125768923851055e-02 2.125591945439615e-02 2.125415123382016e-02 2.125238457915817e-02 2.125061949358618e-02 + 2.124885596288304e-02 2.124709398735697e-02 2.124533357303348e-02 2.124357470952245e-02 2.124181739435340e-02 + 2.124006163206048e-02 2.123830741948956e-02 2.123655475001017e-02 2.123480361731545e-02 2.123305402409987e-02 + 2.123130596739953e-02 2.122955943693203e-02 2.122781443910126e-02 2.122607097723360e-02 2.122432904130337e-02 + 2.122258862659696e-02 2.122084973282204e-02 2.121911236175234e-02 2.121737650789419e-02 2.121564216387619e-02 + 2.121390932803162e-02 2.121217800425756e-02 2.121044819455527e-02 2.120871988671843e-02 2.120699307684077e-02 + 2.120526776795157e-02 2.120354395552526e-02 2.120182163603621e-02 2.120010080901829e-02 2.119838147500087e-02 + 2.119666363123091e-02 2.119494727091758e-02 2.119323238927472e-02 2.119151898655034e-02 2.118980706773010e-02 + 2.118809662574528e-02 2.118638765303925e-02 2.118468015121633e-02 2.118297411864271e-02 2.118126955146517e-02 + 2.117956644637810e-02 2.117786480292237e-02 2.117616462067450e-02 2.117446589411339e-02 2.117276862084477e-02 + 2.117107280130004e-02 2.116937843379139e-02 2.116768551256503e-02 2.116599403067535e-02 2.116430399205533e-02 + 2.116261539753040e-02 2.116092824074994e-02 2.115924251858398e-02 2.115755822756320e-02 2.115587536308644e-02 + 2.115419393062315e-02 2.115251393109511e-02 2.115083534999197e-02 2.114915818684827e-02 2.114748244571777e-02 + 2.114580812117730e-02 2.114413521000233e-02 2.114246371011731e-02 2.114079361630021e-02 2.113912493113981e-02 + 2.113745765864524e-02 2.113579178347091e-02 2.113412730283017e-02 2.113246422731517e-02 2.113080255018658e-02 + 2.112914226466844e-02 2.112748336987266e-02 2.112582586239263e-02 2.112416973838773e-02 2.112251499585494e-02 + 2.112086163946853e-02 2.111920966923609e-02 2.111755907231158e-02 2.111590984741022e-02 2.111426199652882e-02 + 2.111261551330255e-02 2.111097039854193e-02 2.110932665501722e-02 2.110768427494188e-02 2.110604325159932e-02 + 2.110440358337455e-02 2.110276527755971e-02 2.110112832954347e-02 2.109949272542061e-02 2.109785847270291e-02 + 2.109622557382813e-02 2.109459401840321e-02 2.109296380279178e-02 2.109133492634166e-02 2.108970738897449e-02 + 2.108808119187406e-02 2.108645633261542e-02 2.108483280177793e-02 2.108321059649476e-02 2.108158971816587e-02 + 2.107997016818712e-02 2.107835194176262e-02 2.107673503228282e-02 2.107511943992769e-02 2.107350516482023e-02 + 2.107189220511111e-02 2.107028055587330e-02 2.106867021606288e-02 2.106706118735907e-02 2.106545346293816e-02 + 2.106384703796383e-02 2.106224191316689e-02 2.106063808955507e-02 2.105903556250238e-02 2.105743432153898e-02 + 2.105583437513380e-02 2.105423572746437e-02 2.105263836035830e-02 2.105104227142354e-02 2.104944746729932e-02 + 2.104785395134047e-02 2.104626171573087e-02 2.104467074966839e-02 2.104308105452007e-02 2.104149263222363e-02 + 2.103990548218236e-02 2.103831959968388e-02 2.103673498293864e-02 2.103515163200819e-02 2.103356953798411e-02 + 2.103198869775456e-02 2.103040911733209e-02 2.102883079574534e-02 2.102725372695269e-02 2.102567790273802e-02 + 2.102410332486244e-02 2.102252999507990e-02 2.102095790737760e-02 2.101938706174730e-02 2.101781745879964e-02 + 2.101624909192282e-02 2.101468195450770e-02 2.101311604447429e-02 2.101155137000445e-02 2.100998792857284e-02 + 2.100842571064132e-02 2.100686471849675e-02 2.100530495078897e-02 2.100374640001838e-02 2.100218906014547e-02 + 2.100063293273019e-02 2.099907802537045e-02 2.099752433031871e-02 2.099597184169578e-02 2.099442056340826e-02 + 2.099287048844137e-02 2.099132161182849e-02 2.098977394056553e-02 2.098822746767990e-02 2.098668218492037e-02 + 2.098513809937855e-02 2.098359520656010e-02 2.098205349870481e-02 2.098051298433238e-02 2.097897365788888e-02 + 2.097743550607582e-02 2.097589853771057e-02 2.097436275317134e-02 2.097282814179318e-02 2.097129470444368e-02 + 2.096976244194844e-02 2.096823135057212e-02 2.096670142502171e-02 2.096517266432222e-02 2.096364507294766e-02 + 2.096211864290872e-02 2.096059336882086e-02 2.095906925902597e-02 2.095754630598820e-02 2.095602449947026e-02 + 2.095450384463222e-02 2.095298434369944e-02 2.095146599313072e-02 2.094994878341327e-02 2.094843271500539e-02 + 2.094691779352117e-02 2.094540401073429e-02 2.094389136288097e-02 2.094237985194064e-02 2.094086947133280e-02 + 2.093936021927527e-02 2.093785210108921e-02 2.093634511142213e-02 2.093483924325246e-02 2.093333449385128e-02 + 2.093183086645815e-02 2.093032836253444e-02 2.092882697593887e-02 2.092732670311165e-02 2.092582754108962e-02 + 2.092432948474122e-02 2.092283253800634e-02 2.092133670446908e-02 2.091984196956714e-02 2.091834833166288e-02 + 2.091685579922333e-02 2.091536436905392e-02 2.091387403364116e-02 2.091238478662568e-02 2.091089663391256e-02 + 2.090940957508328e-02 2.090792359986955e-02 2.090643871032298e-02 2.090495490818039e-02 2.090347218811059e-02 + 2.090199054718417e-02 2.090050998308706e-02 2.089903049243704e-02 2.089755207414248e-02 2.089607472810411e-02 + 2.089459845325996e-02 2.089312324594328e-02 2.089164910255710e-02 2.089017602427597e-02 2.088870401009232e-02 + 2.088723305634642e-02 2.088576315893389e-02 2.088429431601771e-02 2.088282652696964e-02 2.088135978615913e-02 + 2.087989409321534e-02 2.087842945395569e-02 2.087696586275656e-02 2.087550331287119e-02 2.087404180207852e-02 + 2.087258132736208e-02 2.087112188861259e-02 2.086966349090147e-02 2.086820612891688e-02 2.086674979608584e-02 + 2.086529449590395e-02 2.086384022331517e-02 2.086238697045790e-02 2.086093474039187e-02 2.085948353444753e-02 + 2.085803335091995e-02 2.085658418796912e-02 2.085513604081134e-02 2.085368890289571e-02 2.085224277300881e-02 + 2.085079765267601e-02 2.084935354393509e-02 2.084791044341373e-02 2.084646834711395e-02 2.084502725286095e-02 + 2.084358715744794e-02 2.084214805848912e-02 2.084070995598070e-02 2.083927284909677e-02 2.083783673573611e-02 + 2.083640161226469e-02 2.083496747523998e-02 2.083353432223483e-02 2.083210215303235e-02 2.083067096927498e-02 + 2.082924077044086e-02 2.082781154460241e-02 2.082638329211299e-02 2.082495602309350e-02 2.082352972509603e-02 + 2.082210439277076e-02 2.082068003454410e-02 2.081925664261260e-02 2.081783421113447e-02 2.081641274508624e-02 + 2.081499224082686e-02 2.081357269450268e-02 2.081215410878219e-02 2.081073647873721e-02 2.080931979776872e-02 + 2.080790406592918e-02 2.080648928500749e-02 2.080507545608266e-02 2.080366257645188e-02 2.080225063919177e-02 + 2.080083963814898e-02 2.079942957984240e-02 2.079802046255642e-02 2.079661227641324e-02 2.079520502452446e-02 + 2.079379870732677e-02 2.079239331877295e-02 2.079098886066600e-02 2.078958533155146e-02 2.078818272238310e-02 + 2.078678103594075e-02 2.078538027480030e-02 2.078398043169412e-02 2.078258150517176e-02 2.078118349582184e-02 + 2.077978640032045e-02 2.077839021518007e-02 2.077699493798996e-02 2.077560056860569e-02 2.077420710626992e-02 + 2.077281454908150e-02 2.077142289397691e-02 2.077003213665487e-02 2.076864227381708e-02 2.076725331084939e-02 + 2.076586524753700e-02 2.076447807479244e-02 2.076309178893910e-02 2.076170639200464e-02 2.076032188924749e-02 + 2.075893827075576e-02 2.075755552867013e-02 2.075617367037054e-02 2.075479269394757e-02 2.075341259415677e-02 + 2.075203337133167e-02 2.075065502119062e-02 2.074927754004291e-02 2.074790093527532e-02 2.074652520196147e-02 + 2.074515032814618e-02 2.074377631824518e-02 2.074240317461906e-02 2.074103089389617e-02 2.073965947285912e-02 + 2.073828890806665e-02 2.073691919635770e-02 2.073555033844026e-02 2.073418233381763e-02 2.073281517823886e-02 + 2.073144886803073e-02 2.073008340377233e-02 2.072871879147831e-02 2.072735502222402e-02 2.072599208688765e-02 + 2.072462999392301e-02 2.072326873860233e-02 2.072190831224300e-02 2.072054872378210e-02 2.071918997148765e-02 + 2.071783204556565e-02 2.071647494755481e-02 2.071511867766477e-02 2.071376323196711e-02 2.071240860565183e-02 + 2.071105479791370e-02 2.070970181180314e-02 2.070834964331268e-02 2.070699828917085e-02 2.070564775075080e-02 + 2.070429802727900e-02 2.070294911380581e-02 2.070160100113699e-02 2.070025369244763e-02 2.069890719322030e-02 + 2.069756149841416e-02 2.069621660331007e-02 2.069487250616514e-02 2.069352920972353e-02 2.069218670843115e-02 + 2.069084499406914e-02 2.068950407478504e-02 2.068816395008570e-02 2.068682460979861e-02 2.068548605525363e-02 + 2.068414828647597e-02 2.068281129879088e-02 2.068147509294542e-02 2.068013966727868e-02 2.067880501481977e-02 + 2.067747113766845e-02 2.067613803889334e-02 2.067480571527677e-02 2.067347415977921e-02 2.067214336769299e-02 + 2.067081334319025e-02 2.066948408776949e-02 2.066815559807265e-02 2.066682786498898e-02 2.066550088830383e-02 + 2.066417467341183e-02 2.066284921698086e-02 2.066152451475288e-02 2.066020056372571e-02 2.065887736182303e-02 + 2.065755490839281e-02 2.065623320354572e-02 2.065491224367795e-02 2.065359202675738e-02 2.065227255436574e-02 + 2.065095382314874e-02 2.064963582941213e-02 2.064831857270797e-02 2.064700204957123e-02 2.064568625651786e-02 + 2.064437119414936e-02 2.064305686324694e-02 2.064174326345409e-02 2.064043039179931e-02 2.063911824280925e-02 + 2.063780681176866e-02 2.063649610237503e-02 2.063518611610314e-02 2.063387684909248e-02 2.063256829217405e-02 + 2.063126044539576e-02 2.062995331851188e-02 2.062864690334512e-02 2.062734119190086e-02 2.062603618600375e-02 + 2.062473188642144e-02 2.062342829221786e-02 2.062212540064643e-02 2.062082320714733e-02 2.061952170915304e-02 + 2.061822091004314e-02 2.061692080716460e-02 2.061562139605911e-02 2.061432267954307e-02 2.061302465323251e-02 + 2.061172730955065e-02 2.061043065371613e-02 2.060913468523504e-02 2.060783939685846e-02 2.060654478913799e-02 + 2.060525086119714e-02 2.060395760866959e-02 2.060266503271371e-02 2.060137313244415e-02 2.060008190215519e-02 + 2.059879134465455e-02 2.059750146004468e-02 2.059621223782829e-02 2.059492368052522e-02 2.059363579225837e-02 + 2.059234856405708e-02 2.059106199328788e-02 2.058977608130871e-02 2.058849082556723e-02 2.058720622498806e-02 + 2.058592227959311e-02 2.058463898696043e-02 2.058335634281647e-02 2.058207434376584e-02 2.058079299573017e-02 + 2.057951229614279e-02 2.057823223269817e-02 2.057695281356401e-02 2.057567404187197e-02 2.057439590387300e-02 + 2.057311839681732e-02 2.057184152455586e-02 2.057056529173392e-02 2.056928969078429e-02 2.056801471376779e-02 + 2.056674036634529e-02 2.056546664830153e-02 2.056419355486686e-02 2.056292108306100e-02 2.056164923170236e-02 + 2.056037800067255e-02 2.055910738924650e-02 2.055783739340399e-02 2.055656800859636e-02 2.055529924146672e-02 + 2.055403109005562e-02 2.055276354110791e-02 2.055149659755915e-02 2.055023026272679e-02 2.054896453244645e-02 + 2.054769940766287e-02 2.054643488681757e-02 2.054517096062926e-02 2.054390763218316e-02 2.054264490512525e-02 + 2.054138276915942e-02 2.054012122328143e-02 2.053886027085424e-02 2.053759990682471e-02 2.053634012878631e-02 + 2.053508093799464e-02 2.053382233647706e-02 2.053256431985532e-02 2.053130687980379e-02 2.053005001911220e-02 + 2.052879373804411e-02 2.052753803104820e-02 2.052628289842169e-02 2.052502834052905e-02 2.052377435424499e-02 + 2.052252093383405e-02 2.052126807833591e-02 2.052001579579881e-02 2.051876408076618e-02 2.051751292558091e-02 + 2.051626233431153e-02 2.051501230108543e-02 2.051376281904528e-02 2.051251389905356e-02 2.051126553806812e-02 + 2.051001772450580e-02 2.050877046477720e-02 2.050752375748313e-02 2.050627759308629e-02 2.050503197764233e-02 + 2.050378691120845e-02 2.050254238346269e-02 2.050129839647772e-02 2.050005495152270e-02 2.049881204279591e-02 + 2.049756967049427e-02 2.049632783497685e-02 2.049508653204386e-02 2.049384576061373e-02 2.049260552085964e-02 + 2.049136581124810e-02 2.049012662828215e-02 2.048888796855573e-02 2.048764983217528e-02 2.048641222055239e-02 + 2.048517513365279e-02 2.048393856449956e-02 2.048270250702790e-02 2.048146696002243e-02 2.048023193267689e-02 + 2.047899742444990e-02 2.047776342204647e-02 2.047652992557144e-02 2.047529693666283e-02 2.047406445284291e-02 + 2.047283247820367e-02 2.047160101124722e-02 2.047037003705319e-02 2.046913955996649e-02 2.046790958805229e-02 + 2.046668011290463e-02 2.046545112747173e-02 2.046422263048016e-02 2.046299462941648e-02 2.046176712182623e-02 + 2.046054009863872e-02 2.045931356011635e-02 2.045808750875261e-02 2.045686194483555e-02 2.045563685869128e-02 + 2.045441224888558e-02 2.045318812405373e-02 2.045196447539730e-02 2.045074129851060e-02 2.044951860203706e-02 + 2.044829637561388e-02 2.044707461146781e-02 2.044585332076453e-02 2.044463250090934e-02 2.044341214478788e-02 + 2.044219225389736e-02 2.044097282684260e-02 2.043975385980242e-02 2.043853534979080e-02 2.043731729516990e-02 + 2.043609969584751e-02 2.043488255365452e-02 2.043366586840525e-02 2.043244963622695e-02 2.043123384788510e-02 + 2.043001850356880e-02 2.042880361352058e-02 2.042758917125052e-02 2.042637516923373e-02 2.042516160738241e-02 + 2.042394848596822e-02 2.042273580364956e-02 2.042152355668345e-02 2.042031174421715e-02 2.041910036711696e-02 + 2.041788942589821e-02 2.041667891618270e-02 2.041546883283581e-02 2.041425917723074e-02 2.041304994671302e-02 + 2.041184113736942e-02 2.041063275507356e-02 2.040942479864618e-02 2.040821725911453e-02 2.040701013329647e-02 + 2.040580342336421e-02 2.040459713364973e-02 2.040339125626194e-02 2.040218578748979e-02 2.040098073437600e-02 + 2.039977609190064e-02 2.039857185194057e-02 2.039736801200263e-02 2.039616457948628e-02 2.039496155847034e-02 + 2.039375893548800e-02 2.039255670811317e-02 2.039135487906758e-02 2.039015344139171e-02 2.038895239754324e-02 + 2.038775175394349e-02 2.038655150008423e-02 2.038535163468296e-02 2.038415216492024e-02 2.038295307932101e-02 + 2.038175437156158e-02 2.038055604740632e-02 2.037935811014152e-02 2.037816055719221e-02 2.037696338008003e-02 + 2.037576657774965e-02 2.037457015197002e-02 2.037337410306159e-02 2.037217842811476e-02 2.037098312337542e-02 + 2.036978818702816e-02 2.036859361901312e-02 2.036739941883561e-02 2.036620558232109e-02 2.036501210897116e-02 + 2.036381899981477e-02 2.036262624936801e-02 2.036143385733716e-02 2.036024182706139e-02 2.035905014947786e-02 + 2.035785882153747e-02 2.035666784977269e-02 2.035547723079831e-02 2.035428696142468e-02 2.035309704319765e-02 + 2.035190747134853e-02 2.035071824110532e-02 2.034952935293085e-02 2.034834080749865e-02 2.034715260430401e-02 + 2.034596474052595e-02 2.034477721202228e-02 2.034359001578161e-02 2.034240315367684e-02 2.034121662664043e-02 + 2.034003043357028e-02 2.033884457132868e-02 2.033765903741480e-02 2.033647382949949e-02 2.033528894162872e-02 + 2.033410437471255e-02 2.033292013620119e-02 2.033173621775026e-02 2.033055261459435e-02 2.032936933387398e-02 + 2.032818637173341e-02 2.032700371995237e-02 2.032582137330103e-02 2.032463934032926e-02 2.032345762721536e-02 + 2.032227621977112e-02 2.032109511380310e-02 2.031991431266943e-02 2.031873381713771e-02 2.031755362367381e-02 + 2.031637372822898e-02 2.031519413522404e-02 2.031401484060572e-02 2.031283583475656e-02 2.031165712768451e-02 + 2.031047872082618e-02 2.030930060067025e-02 2.030812276414845e-02 2.030694521582938e-02 2.030576796297434e-02 + 2.030459099391277e-02 2.030341430130414e-02 2.030223789822972e-02 2.030106177803277e-02 2.029988592949474e-02 + 2.029871035725545e-02 2.029753506661443e-02 2.029636005659757e-02 2.029518531267896e-02 2.029401083596470e-02 + 2.029283663654064e-02 2.029166270589052e-02 2.029048903923464e-02 2.028931563858370e-02 2.028814250195392e-02 + 2.028696962711050e-02 2.028579701358946e-02 2.028462466440920e-02 2.028345257575578e-02 2.028228073462766e-02 + 2.028110914546667e-02 2.027993781542017e-02 2.027876674182124e-02 2.027759591671596e-02 2.027642533515473e-02 + 2.027525500323221e-02 2.027408491983729e-02 2.027291508043819e-02 2.027174548650143e-02 2.027057613494678e-02 + 2.026940701983228e-02 2.026823814087089e-02 2.026706949898955e-02 2.026590109425394e-02 2.026473292320746e-02 + 2.026356498366547e-02 2.026239727592488e-02 2.026122979922282e-02 2.026006255023894e-02 2.025889552388743e-02 + 2.025772872449768e-02 2.025656215399196e-02 2.025539580342713e-02 2.025422967119250e-02 2.025306375830951e-02 + 2.025189806183918e-02 2.025073258129647e-02 2.024956731656576e-02 2.024840226339874e-02 2.024723742127980e-02 + 2.024607279125879e-02 2.024490836776212e-02 2.024374415071052e-02 2.024258014353189e-02 2.024141633571028e-02 + 2.024025272656142e-02 2.023908932762591e-02 2.023792612793740e-02 2.023676312010299e-02 2.023560031179207e-02 + 2.023443769779265e-02 2.023327527310789e-02 2.023211304323675e-02 2.023095100708355e-02 2.022978916007167e-02 + 2.022862749919407e-02 2.022746602379288e-02 2.022630473371739e-02 2.022514362648272e-02 2.022398270121405e-02 + 2.022282195791762e-02 2.022166139402294e-02 2.022050100551405e-02 2.021934078921764e-02 2.021818074920451e-02 + 2.021702088593813e-02 2.021586119314628e-02 2.021470166428228e-02 2.021354230080554e-02 2.021238311308448e-02 + 2.021122409287018e-02 2.021006523025651e-02 2.020890652716039e-02 2.020774798484683e-02 2.020658960393083e-02 + 2.020543138529554e-02 2.020427332378045e-02 2.020311541298552e-02 2.020195765397637e-02 2.020080004744672e-02 + 2.019964259236717e-02 2.019848528642001e-02 2.019732812869024e-02 2.019617111926010e-02 2.019501425544548e-02 + 2.019385753379127e-02 2.019270095135025e-02 2.019154450793482e-02 2.019038820298517e-02 2.018923203417478e-02 + 2.018807600019563e-02 2.018692010151906e-02 2.018576433995726e-02 2.018460870891364e-02 2.018345320296787e-02 + 2.018229782843392e-02 2.018114258172615e-02 2.017998745649097e-02 2.017883245877245e-02 2.017767758620927e-02 + 2.017652283054322e-02 2.017536819223788e-02 2.017421367319040e-02 2.017305927292809e-02 2.017190498313902e-02 + 2.017075080461503e-02 2.016959674752286e-02 2.016844280049332e-02 2.016728895684716e-02 2.016613522539111e-02 + 2.016498159847723e-02 2.016382807033869e-02 2.016267465040216e-02 2.016152133310211e-02 2.016036811076429e-02 + 2.015921498985646e-02 2.015806197025070e-02 2.015690904702832e-02 2.015575621731957e-02 2.015460347791708e-02 + 2.015345082711757e-02 2.015229826996444e-02 2.015114580452791e-02 2.014999342256183e-02 2.014884112402139e-02 + 2.014768891079059e-02 2.014653678283008e-02 2.014538473229735e-02 2.014423275838842e-02 2.014308087159530e-02 + 2.014192906336537e-02 2.014077732405132e-02 2.013962565684693e-02 2.013847406112768e-02 2.013732253607323e-02 + 2.013617108558620e-02 2.013501970367529e-02 2.013386838304751e-02 2.013271713092954e-02 2.013156594450895e-02 + 2.013041481517404e-02 2.012926374836556e-02 2.012811274375330e-02 2.012696179396415e-02 2.012581089842930e-02 + 2.012466005832842e-02 2.012350927388322e-02 2.012235854139777e-02 2.012120785897021e-02 2.012005722808521e-02 + 2.011890664240422e-02 2.011775609861771e-02 2.011660560342765e-02 2.011545514995805e-02 2.011430473248947e-02 + 2.011315436328775e-02 2.011200403690588e-02 2.011085374071231e-02 2.010970347811273e-02 2.010855325123000e-02 + 2.010740305829795e-02 2.010625289543029e-02 2.010510276184403e-02 2.010395265874816e-02 2.010280258124321e-02 + 2.010165252783862e-02 2.010050250168409e-02 2.009935249835288e-02 2.009820251528310e-02 2.009705255512517e-02 + 2.009590261098061e-02 2.009475267797075e-02 2.009360276160796e-02 2.009245286068316e-02 2.009130297235736e-02 + 2.009015309860190e-02 2.008900323371492e-02 2.008785337125678e-02 2.008670351711407e-02 2.008555367122358e-02 + 2.008440382812401e-02 2.008325398588614e-02 2.008210414433437e-02 2.008095430334925e-02 2.007980445913736e-02 + 2.007865461009197e-02 2.007750475755383e-02 2.007635489836262e-02 2.007520502856765e-02 2.007405514609401e-02 + 2.007290525369839e-02 2.007175535352643e-02 2.007060544261636e-02 2.006945551378952e-02 2.006830556246986e-02 + 2.006715559358176e-02 2.006600560685722e-02 2.006485559907452e-02 2.006370557035152e-02 2.006255552017783e-02 + 2.006140544519211e-02 2.006025533608720e-02 2.005910519424486e-02 2.005795502866486e-02 2.005680483150780e-02 + 2.005565460068358e-02 2.005450434307724e-02 2.005335404752871e-02 2.005220370751987e-02 2.005105333078331e-02 + 2.004990291380246e-02 2.004875245256121e-02 2.004760195075808e-02 2.004645140541610e-02 2.004530081249103e-02 + 2.004415017386308e-02 2.004299948719255e-02 2.004184874893760e-02 2.004069796075558e-02 2.003954711861807e-02 + 2.003839621652469e-02 2.003724525928808e-02 2.003609424691447e-02 2.003494317431652e-02 2.003379204407136e-02 + 2.003264085311753e-02 2.003148959193977e-02 2.003033826577724e-02 2.002918687817827e-02 2.002803542325049e-02 + 2.002688389828578e-02 2.002573230084169e-02 2.002458062668545e-02 2.002342887779152e-02 2.002227705716231e-02 + 2.002112516254241e-02 2.001997318998642e-02 2.001882113644655e-02 2.001766900292078e-02 2.001651678857442e-02 + 2.001536448981540e-02 2.001421210083374e-02 2.001305962366636e-02 2.001190706486020e-02 2.001075441600587e-02 + 2.000960167234195e-02 2.000844883687991e-02 2.000729590520412e-02 2.000614287591466e-02 2.000498975435740e-02 + 2.000383653574291e-02 2.000268321490327e-02 2.000152979351511e-02 2.000037626872929e-02 1.999922263743778e-02 + 1.999806890154111e-02 1.999691505794393e-02 1.999576110265488e-02 1.999460703886217e-02 1.999345286480270e-02 + 1.999229857569377e-02 1.999114417297134e-02 1.998998965543275e-02 1.998883501902821e-02 1.998768026399775e-02 + 1.998652538946059e-02 1.998537039260291e-02 1.998421527483334e-02 1.998306003351848e-02 1.998190465988335e-02 + 1.998074915750420e-02 1.997959352937345e-02 1.997843776879367e-02 1.997728187765045e-02 1.997612585705249e-02 + 1.997496969649909e-02 1.997381339760593e-02 1.997265696528752e-02 1.997150039002939e-02 1.997034367059401e-02 + 1.996918681208352e-02 1.996802981226081e-02 1.996687266788810e-02 1.996571537594770e-02 1.996455793197006e-02 + 1.996340033608642e-02 1.996224259309599e-02 1.996108470119043e-02 1.995992665416334e-02 1.995876844505867e-02 + 1.995761008193637e-02 1.995645156786617e-02 1.995529288784624e-02 1.995413404457776e-02 1.995297504246996e-02 + 1.995181586885687e-02 1.995065652904149e-02 1.994949703248385e-02 1.994833736513130e-02 1.994717752162546e-02 + 1.994601750553184e-02 1.994485731663886e-02 1.994369695406686e-02 1.994253641736701e-02 1.994137570693218e-02 + 1.994021481716852e-02 1.993905373876526e-02 1.993789248152490e-02 1.993673104732284e-02 1.993556942048493e-02 + 1.993440760773439e-02 1.993324561433191e-02 1.993208342679873e-02 1.993092104568069e-02 1.992975847582151e-02 + 1.992859571315939e-02 1.992743275300710e-02 1.992626959353599e-02 1.992510623927749e-02 1.992394268911061e-02 + 1.992277893654564e-02 1.992161497535049e-02 1.992045080942924e-02 1.991928644769617e-02 1.991812187931771e-02 + 1.991695709651699e-02 1.991579210148713e-02 1.991462689658082e-02 1.991346148075462e-02 1.991229584907280e-02 + 1.991113000189043e-02 1.990996393932216e-02 1.990879765723607e-02 1.990763115454515e-02 1.990646443148474e-02 + 1.990529748687400e-02 1.990413031580006e-02 1.990296291532720e-02 1.990179529310021e-02 1.990062744303953e-02 + 1.989945935329500e-02 1.989829103342642e-02 1.989712248515872e-02 1.989595370004318e-02 1.989478467737964e-02 + 1.989361541884726e-02 1.989244592499573e-02 1.989127618925862e-02 1.989010620674421e-02 1.988893597834538e-02 + 1.988776550466197e-02 1.988659478703524e-02 1.988542382727661e-02 1.988425261506333e-02 1.988308114268849e-02 + 1.988190942098788e-02 1.988073745006194e-02 1.987956522359536e-02 1.987839274079954e-02 1.987722000000555e-02 + 1.987604699732070e-02 1.987487372670402e-02 1.987370019241589e-02 1.987252640362364e-02 1.987135234678179e-02 + 1.987017801708705e-02 1.986900342417090e-02 1.986782856130232e-02 1.986665342124566e-02 1.986547800516037e-02 + 1.986430231940191e-02 1.986312636323797e-02 1.986195012209680e-02 1.986077359858922e-02 1.985959679883774e-02 + 1.985841971608161e-02 1.985724235007767e-02 1.985606470192896e-02 1.985488676268764e-02 1.985370853173279e-02 + 1.985253001389235e-02 1.985135120589531e-02 1.985017210671596e-02 1.984899271721913e-02 1.984781303008921e-02 + 1.984663304141680e-02 1.984545275323681e-02 1.984427216416261e-02 1.984309127447186e-02 1.984191008724042e-02 + 1.984072859600846e-02 1.983954679442092e-02 1.983836468369445e-02 1.983718226650526e-02 1.983599954091759e-02 + 1.983481649574990e-02 1.983363313683907e-02 1.983244947316962e-02 1.983126549121019e-02 1.983008118452795e-02 + 1.982889655650101e-02 1.982771161407836e-02 1.982652635127155e-02 1.982534075477381e-02 1.982415483542671e-02 + 1.982296859699974e-02 1.982178202865004e-02 1.982059512679342e-02 1.981940789099672e-02 1.981822032140366e-02 + 1.981703241807743e-02 1.981584417989424e-02 1.981465560415464e-02 1.981346669171603e-02 1.981227744136961e-02 + 1.981108784415540e-02 1.980989790130036e-02 1.980870761757638e-02 1.980751698807925e-02 1.980632600934410e-02 + 1.980513468056937e-02 1.980394300171975e-02 1.980275097143216e-02 1.980155858653555e-02 1.980036584235624e-02 + 1.979917273943820e-02 1.979797928262491e-02 1.979678546489206e-02 1.979559128379798e-02 1.979439674657348e-02 + 1.979320184217468e-02 1.979200656369760e-02 1.979081092352834e-02 1.978961491694981e-02 1.978841853542797e-02 + 1.978722178317891e-02 1.978602465925507e-02 1.978482715855289e-02 1.978362927697639e-02 1.978243101628911e-02 + 1.978123238058121e-02 1.978003336668686e-02 1.977883396860304e-02 1.977763418131442e-02 1.977643400902304e-02 + 1.977523345232920e-02 1.977403250607500e-02 1.977283117205557e-02 1.977162944865208e-02 1.977042732702634e-02 + 1.976922480613855e-02 1.976802188997964e-02 1.976681858355301e-02 1.976561487769950e-02 1.976441076369096e-02 + 1.976320624890566e-02 1.976200133147697e-02 1.976079600616600e-02 1.975959027757971e-02 1.975838414138116e-02 + 1.975717758909272e-02 1.975597062600439e-02 1.975476325369590e-02 1.975355546738499e-02 1.975234726242962e-02 + 1.975113863825908e-02 1.974992959762522e-02 1.974872013640206e-02 1.974751025163228e-02 1.974629994489470e-02 + 1.974508921425132e-02 1.974387805573186e-02 1.974266646519683e-02 1.974145444319864e-02 1.974024199150465e-02 + 1.973902910920840e-02 1.973781579519036e-02 1.973660204598839e-02 1.973538785240977e-02 1.973417321684443e-02 + 1.973295814730416e-02 1.973174263781577e-02 1.973052668253849e-02 1.972931027913797e-02 1.972809342747564e-02 + 1.972687612827085e-02 1.972565838187941e-02 1.972444018482310e-02 1.972322153363352e-02 1.972200242687443e-02 + 1.972078286440720e-02 1.971956284541047e-02 1.971834236691286e-02 1.971712142485657e-02 1.971590001741145e-02 + 1.971467814826898e-02 1.971345581852119e-02 1.971223302479186e-02 1.971100975804211e-02 1.970978601823674e-02 + 1.970856181065497e-02 1.970733713228995e-02 1.970611197806177e-02 1.970488634450282e-02 1.970366023582840e-02 + 1.970243364879734e-02 1.970120657299705e-02 1.969997901837739e-02 1.969875098677333e-02 1.969752246217473e-02 + 1.969629345274012e-02 1.969506396226801e-02 1.969383397141272e-02 1.969260348756574e-02 1.969137252109090e-02 + 1.969014105730648e-02 1.968890909233832e-02 1.968767662961491e-02 1.968644366805134e-02 1.968521020635475e-02 + 1.968397624286150e-02 1.968274177331172e-02 1.968150679588088e-02 1.968027131148579e-02 1.967903532058098e-02 + 1.967779882218197e-02 1.967656181292412e-02 1.967532428489620e-02 1.967408623811289e-02 1.967284768294825e-02 + 1.967160860971293e-02 1.967036900987211e-02 1.966912889102269e-02 1.966788825153749e-02 1.966664708600774e-02 + 1.966540539310703e-02 1.966416317292449e-02 1.966292042476060e-02 1.966167714455673e-02 1.966043333167102e-02 + 1.965918898702837e-02 1.965794410650064e-02 1.965669868705162e-02 1.965545272765306e-02 1.965420622710374e-02 + 1.965295918609461e-02 1.965171160585919e-02 1.965046347855766e-02 1.964921480087875e-02 1.964796557872257e-02 + 1.964671580769246e-02 1.964546548231519e-02 1.964421460325605e-02 1.964296317129598e-02 1.964171118580111e-02 + 1.964045864365522e-02 1.963920554157133e-02 1.963795187629582e-02 1.963669764477085e-02 1.963544284945441e-02 + 1.963418749362842e-02 1.963293156932153e-02 1.963167507295046e-02 1.963041800662418e-02 1.962916036936736e-02 + 1.962790216073956e-02 1.962664338014056e-02 1.962538401760687e-02 1.962412407160046e-02 1.962286355381917e-02 + 1.962160245501161e-02 1.962034076606272e-02 1.961907849332115e-02 1.961781563715828e-02 1.961655219371613e-02 + 1.961528815879130e-02 1.961402353224150e-02 1.961275831461461e-02 1.961149250160691e-02 1.961022609250104e-02 + 1.960895908768241e-02 1.960769148013132e-02 1.960642326897369e-02 1.960515445887448e-02 1.960388504699325e-02 + 1.960261502901453e-02 1.960134440209794e-02 1.960007316755673e-02 1.959880132269796e-02 1.959752885956289e-02 + 1.959625578572781e-02 1.959498210471557e-02 1.959370780282661e-02 1.959243287776576e-02 1.959115733236078e-02 + 1.958988116575855e-02 1.958860437570835e-02 1.958732696070351e-02 1.958604892230215e-02 1.958477025538254e-02 + 1.958349095293616e-02 1.958221102005211e-02 1.958093045820349e-02 1.957964926225915e-02 1.957836742427244e-02 + 1.957708494595253e-02 1.957580183693370e-02 1.957451808573694e-02 1.957323368588814e-02 1.957194864588927e-02 + 1.957066295908808e-02 1.956937661864716e-02 1.956808962863577e-02 1.956680198857452e-02 1.956551369740821e-02 + 1.956422475810978e-02 1.956293516289206e-02 1.956164490198652e-02 1.956035397935251e-02 1.955906239928264e-02 + 1.955777016187055e-02 1.955647725858155e-02 1.955518368630142e-02 1.955388944730695e-02 1.955259453790914e-02 + 1.955129895574477e-02 1.955000270138056e-02 1.954870577278503e-02 1.954740816848287e-02 1.954610988870274e-02 + 1.954481093111385e-02 1.954351129226784e-02 1.954221096901902e-02 1.954090996078360e-02 1.953960826724446e-02 + 1.953830588603245e-02 1.953700281656794e-02 1.953569905855491e-02 1.953439460897686e-02 1.953308946443935e-02 + 1.953178362233442e-02 1.953047708245082e-02 1.952916984426731e-02 1.952786190592496e-02 1.952655326324738e-02 + 1.952524391408689e-02 1.952393385929222e-02 1.952262309949111e-02 1.952131163370209e-02 1.951999945844595e-02 + 1.951868656751035e-02 1.951737295829730e-02 1.951605863555755e-02 1.951474359789877e-02 1.951342784097203e-02 + 1.951211136184995e-02 1.951079415956861e-02 1.950947623396647e-02 1.950815758387342e-02 1.950683820574165e-02 + 1.950551809587482e-02 1.950419725560715e-02 1.950287568354725e-02 1.950155337574423e-02 1.950023033242808e-02 + 1.949890655251627e-02 1.949758203322258e-02 1.949625677745909e-02 1.949493078034667e-02 1.949360402739089e-02 + 1.949227653112452e-02 1.949094829757290e-02 1.948961930480046e-02 1.948828955781861e-02 1.948695906691206e-02 + 1.948562782150981e-02 1.948429581598615e-02 1.948296304982478e-02 1.948162952319633e-02 1.948029523591830e-02 + 1.947896018726217e-02 1.947762437581102e-02 1.947628779922486e-02 1.947495045397724e-02 1.947361233489661e-02 + 1.947227344348770e-02 1.947093378593678e-02 1.946959335022997e-02 1.946825212971076e-02 1.946691013283964e-02 + 1.946556736109183e-02 1.946422381089845e-02 1.946287947598024e-02 1.946153435147304e-02 1.946018843640089e-02 + 1.945884173551620e-02 1.945749424593349e-02 1.945614596164208e-02 1.945479688244431e-02 1.945344700980195e-02 + 1.945209634356683e-02 1.945074487666461e-02 1.944939260492236e-02 1.944803952905332e-02 1.944668565282712e-02 + 1.944533097303948e-02 1.944397548026850e-02 1.944261917903520e-02 1.944126207147254e-02 1.943990414971487e-02 + 1.943854540610747e-02 1.943718584222317e-02 1.943582547177293e-02 1.943446428245481e-02 1.943310226105812e-02 + 1.943173942068859e-02 1.943037575924362e-02 1.942901126749138e-02 1.942764594793762e-02 1.942627979717840e-02 + 1.942491280913776e-02 1.942354498868186e-02 1.942217633546996e-02 1.942080684436220e-02 1.941943651933332e-02 + 1.941806535493775e-02 1.941669333695301e-02 1.941532047644210e-02 1.941394677715704e-02 1.941257222315028e-02 + 1.941119681542690e-02 1.940982056035791e-02 1.940844345901757e-02 1.940706550055424e-02 1.940568667678698e-02 + 1.940430699663802e-02 1.940292645883611e-02 1.940154505765652e-02 1.940016279578962e-02 1.939877966977487e-02 + 1.939739567223053e-02 1.939601080219835e-02 1.939462506233509e-02 1.939323845462366e-02 1.939185096971125e-02 + 1.939046260516801e-02 1.938907336764642e-02 1.938768325184633e-02 1.938629225021856e-02 1.938490035911401e-02 + 1.938350758330235e-02 1.938211392651081e-02 1.938071938447496e-02 1.937932394922459e-02 1.937792761695239e-02 + 1.937653039473651e-02 1.937513227779157e-02 1.937373325789699e-02 1.937233333934693e-02 1.937093252080456e-02 + 1.936953079702195e-02 1.936812816928827e-02 1.936672463690015e-02 1.936532019607867e-02 1.936391484345597e-02 + 1.936250857586552e-02 1.936110139138094e-02 1.935969329410197e-02 1.935828428412852e-02 1.935687435366041e-02 + 1.935546349795341e-02 1.935405171682407e-02 1.935263901452006e-02 1.935122538845629e-02 1.934981083240821e-02 + 1.934839534117787e-02 1.934697891910190e-02 1.934556156924906e-02 1.934414327695751e-02 1.934272404361874e-02 + 1.934130387854031e-02 1.933988276959641e-02 1.933846071416343e-02 1.933703771882020e-02 1.933561377409585e-02 + 1.933418887831357e-02 1.933276303945045e-02 1.933133624375953e-02 1.932990848653697e-02 1.932847978247962e-02 + 1.932705012296452e-02 1.932561949662077e-02 1.932418790536504e-02 1.932275535526071e-02 1.932132184669807e-02 + 1.931988736608416e-02 1.931845191123332e-02 1.931701548648173e-02 1.931557809132799e-02 1.931413972218449e-02 + 1.931270037603072e-02 1.931126005688787e-02 1.930981875761609e-02 1.930837646527647e-02 1.930693319154590e-02 + 1.930548893938918e-02 1.930404369700001e-02 1.930259746628386e-02 1.930115024647330e-02 1.929970202824377e-02 + 1.929825281461415e-02 1.929680260792617e-02 1.929535140092010e-02 1.929389919235001e-02 1.929244598266550e-02 + 1.929099176842190e-02 1.928953654639375e-02 1.928808031414528e-02 1.928662307035359e-02 1.928516481711372e-02 + 1.928370555611205e-02 1.928224527966380e-02 1.928078398206115e-02 1.927932166173262e-02 1.927785831899656e-02 + 1.927639395364510e-02 1.927492856464996e-02 1.927346215243780e-02 1.927199471282116e-02 1.927052623652251e-02 + 1.926905672766994e-02 1.926758618873705e-02 1.926611461056382e-02 1.926464199150991e-02 1.926316833245443e-02 + 1.926169363057714e-02 1.926021788634381e-02 1.925874109903830e-02 1.925726325940621e-02 1.925578436860509e-02 + 1.925430443199749e-02 1.925282343948819e-02 1.925134138889128e-02 1.924985828498051e-02 1.924837411847957e-02 + 1.924688888599618e-02 1.924540259377309e-02 1.924391524090012e-02 1.924242682077230e-02 1.924093732460676e-02 + 1.923944675829762e-02 1.923795512510602e-02 1.923646241448938e-02 1.923496862521413e-02 1.923347375911634e-02 + 1.923197781292445e-02 1.923048078180134e-02 1.922898266296426e-02 1.922748346006174e-02 1.922598317069195e-02 + 1.922448178990142e-02 1.922297932164773e-02 1.922147575963824e-02 1.921997109174737e-02 1.921846532805457e-02 + 1.921695846861228e-02 1.921545049993734e-02 1.921394143207274e-02 1.921243126559395e-02 1.921091998083786e-02 + 1.920940758472120e-02 1.920789408374423e-02 1.920637946562360e-02 1.920486373146851e-02 1.920334688393281e-02 + 1.920182891329169e-02 1.920030981699324e-02 1.919878959725658e-02 1.919726825432456e-02 1.919574578635056e-02 + 1.919422218928470e-02 1.919269745661605e-02 1.919117158884151e-02 1.918964459045353e-02 1.918811645370936e-02 + 1.918658717454346e-02 1.918505675553962e-02 1.918352519296369e-02 1.918199248296462e-02 1.918045862469436e-02 + 1.917892361805418e-02 1.917738746182788e-02 1.917585015265352e-02 1.917431168820606e-02 1.917277206550804e-02 + 1.917123127946213e-02 1.916968933132487e-02 1.916814622316750e-02 1.916660194885779e-02 1.916505650873668e-02 + 1.916350990423480e-02 1.916196212155291e-02 1.916041316033273e-02 1.915886303062994e-02 1.915731172194125e-02 + 1.915575922930148e-02 1.915420555876758e-02 1.915265070860661e-02 1.915109467332810e-02 1.914953744666585e-02 + 1.914797902645569e-02 1.914641941412443e-02 1.914485861314037e-02 1.914329661713828e-02 1.914173341932142e-02 + 1.914016902223032e-02 1.913860342379879e-02 1.913703662029905e-02 1.913546861279183e-02 1.913389939805644e-02 + 1.913232897075573e-02 1.913075733118505e-02 1.912918447844714e-02 1.912761040908805e-02 1.912603511839811e-02 + 1.912445860715432e-02 1.912288088009771e-02 1.912130192853472e-02 1.911972174626816e-02 1.911814033569584e-02 + 1.911655769224527e-02 1.911497381452394e-02 1.911338870990516e-02 1.911180236957772e-02 1.911021478317005e-02 + 1.910862595492130e-02 1.910703588697045e-02 1.910544457683553e-02 1.910385201685182e-02 1.910225820527016e-02 + 1.910066314375077e-02 1.909906682830796e-02 1.909746925477876e-02 1.909587042200599e-02 1.909427033688354e-02 + 1.909266899402551e-02 1.909106637643193e-02 1.908946249114346e-02 1.908785734491775e-02 1.908625093213804e-02 + 1.908464324204344e-02 1.908303427175084e-02 1.908142403234494e-02 1.907981251534393e-02 1.907819971100440e-02 + 1.907658562789714e-02 1.907497026158614e-02 1.907335360333112e-02 1.907173565762024e-02 1.907011642370295e-02 + 1.906849589616872e-02 1.906687407274958e-02 1.906525095073851e-02 1.906362652703246e-02 1.906200080112851e-02 + 1.906037377260159e-02 1.905874543999789e-02 1.905711580005939e-02 1.905548484883143e-02 1.905385258297056e-02 + 1.905221900422594e-02 1.905058411108648e-02 1.904894789413228e-02 1.904731035325132e-02 1.904567149183364e-02 + 1.904403130952197e-02 1.904238980136186e-02 1.904074696113758e-02 1.903910278612417e-02 1.903745727544392e-02 + 1.903581042868199e-02 1.903416224385271e-02 1.903251272055347e-02 1.903086185871027e-02 1.902920965236104e-02 + 1.902755609551852e-02 1.902590118543579e-02 1.902424492713456e-02 1.902258731926820e-02 1.902092835050054e-02 + 1.901926802409253e-02 1.901760634215130e-02 1.901594329530476e-02 1.901427888303375e-02 1.901261310655987e-02 + 1.901094596056572e-02 1.900927744335199e-02 1.900760755425454e-02 1.900593628837979e-02 1.900426364429972e-02 + 1.900258962310978e-02 1.900091422355684e-02 1.899923743835855e-02 1.899755925950979e-02 1.899587969656637e-02 + 1.899419874741247e-02 1.899251639645128e-02 1.899083265299966e-02 1.898914752052511e-02 1.898746098477085e-02 + 1.898577304386013e-02 1.898408369969058e-02 1.898239295076986e-02 1.898070079269564e-02 1.897900722255288e-02 + 1.897731224261929e-02 1.897561584849886e-02 1.897391803334516e-02 1.897221879605241e-02 1.897051814026927e-02 + 1.896881606767167e-02 1.896711256470153e-02 1.896540762798833e-02 1.896370126437186e-02 1.896199347193909e-02 + 1.896028424413336e-02 1.895857357350164e-02 1.895686146124061e-02 1.895514791045918e-02 1.895343292131205e-02 + 1.895171648302300e-02 1.894999858923527e-02 1.894827924721451e-02 1.894655845419708e-02 1.894483620522033e-02 + 1.894311250187257e-02 1.894138733732357e-02 1.893966070463249e-02 1.893793261072514e-02 1.893620305335951e-02 + 1.893447202418282e-02 1.893273952309081e-02 1.893100555094376e-02 1.892927010627177e-02 1.892753318110494e-02 + 1.892579477108063e-02 1.892405487784487e-02 1.892231350329449e-02 1.892057064453369e-02 1.891882629307712e-02 + 1.891708044683251e-02 1.891533310610873e-02 1.891358427035544e-02 1.891183393696100e-02 1.891008210291091e-02 + 1.890832876617924e-02 1.890657392211156e-02 1.890481756749361e-02 1.890305970669826e-02 1.890130033664154e-02 + 1.889953944876527e-02 1.889777703845312e-02 1.889601310905792e-02 1.889424766560776e-02 1.889248069356991e-02 + 1.889071219005931e-02 1.888894216610460e-02 1.888717060771540e-02 1.888539750970531e-02 1.888362288621832e-02 + 1.888184672351093e-02 1.888006901097801e-02 1.887828976119468e-02 1.887650896887177e-02 1.887472662448569e-02 + 1.887294273026847e-02 1.887115728373587e-02 1.886937028132879e-02 1.886758172601296e-02 1.886579161241305e-02 + 1.886399993232671e-02 1.886220669095003e-02 1.886041188581822e-02 1.885861550746470e-02 1.885681755698847e-02 + 1.885501803485419e-02 1.885321693733238e-02 1.885141425906957e-02 1.884960999916156e-02 1.884780416185130e-02 + 1.884599674103886e-02 1.884418772927479e-02 1.884237712445391e-02 1.884056492700234e-02 1.883875113673901e-02 + 1.883693574995443e-02 1.883511876102816e-02 1.883330016667216e-02 1.883147997149076e-02 1.882965817385698e-02 + 1.882783476601560e-02 1.882600973926643e-02 1.882418309568715e-02 1.882235484340025e-02 1.882052497417560e-02 + 1.881869348031539e-02 1.881686035975185e-02 1.881502561164409e-02 1.881318923741505e-02 1.881135123913003e-02 + 1.880951160558249e-02 1.880767032900146e-02 1.880582741534564e-02 1.880398286136111e-02 1.880213666245483e-02 + 1.880028882149621e-02 1.879843933370182e-02 1.879658819228311e-02 1.879473539862031e-02 1.879288094991765e-02 + 1.879102484097325e-02 1.878916707209326e-02 1.878730764191372e-02 1.878544654683108e-02 1.878358378459472e-02 + 1.878171935183507e-02 1.877985324430765e-02 1.877798546179407e-02 1.877611600228067e-02 1.877424486050507e-02 + 1.877237203778229e-02 1.877049753324887e-02 1.876862133863330e-02 1.876674345293673e-02 1.876486387617420e-02 + 1.876298260257535e-02 1.876109963059111e-02 1.875921496034764e-02 1.875732858848502e-02 1.875544051216185e-02 + 1.875355072885378e-02 1.875165923449702e-02 1.874976602623304e-02 1.874787110336161e-02 1.874597446797304e-02 + 1.874407611425766e-02 1.874217603022874e-02 1.874027422146802e-02 1.873837068906284e-02 1.873646542198345e-02 + 1.873455842189881e-02 1.873264969164939e-02 1.873073922656172e-02 1.872882701964194e-02 1.872691306648714e-02 + 1.872499736923527e-02 1.872307992509612e-02 1.872116072949887e-02 1.871923978227258e-02 1.871731708186487e-02 + 1.871539262387551e-02 1.871346640021372e-02 1.871153841041527e-02 1.870960865979342e-02 1.870767714578883e-02 + 1.870574386089293e-02 1.870380879685916e-02 1.870187195798613e-02 1.869993334446320e-02 1.869799294696750e-02 + 1.869605076691687e-02 1.869410680376838e-02 1.869216104730458e-02 1.869021349836844e-02 1.868826416022470e-02 + 1.868631302853863e-02 1.868436009644664e-02 1.868240535897862e-02 1.868044881818047e-02 1.867849047172725e-02 + 1.867653031474529e-02 1.867456834731333e-02 1.867260456736053e-02 1.867063897034608e-02 1.866867155351236e-02 + 1.866670231459311e-02 1.866473125095620e-02 1.866275835809391e-02 1.866078363356833e-02 1.865880707775009e-02 + 1.865682868564128e-02 1.865484845476688e-02 1.865286638889887e-02 1.865088247751579e-02 1.864889671303901e-02 + 1.864690910747520e-02 1.864491965354244e-02 1.864292833855512e-02 1.864093516946379e-02 1.863894014384585e-02 + 1.863694325319922e-02 1.863494449952898e-02 1.863294388193027e-02 1.863094139526787e-02 1.862893703607748e-02 + 1.862693080034535e-02 1.862492268387857e-02 1.862291268732941e-02 1.862090081042848e-02 1.861888704957227e-02 + 1.861687140151818e-02 1.861485386231105e-02 1.861283442704270e-02 1.861081309610335e-02 1.860878986806025e-02 + 1.860676473338590e-02 1.860473769529663e-02 1.860270875778476e-02 1.860067790615180e-02 1.859864513789995e-02 + 1.859661045850656e-02 1.859457386260990e-02 1.859253534675110e-02 1.859049490946049e-02 1.858845254228221e-02 + 1.858640824383296e-02 1.858436201966219e-02 1.858231386031445e-02 1.858026376148910e-02 1.857821173011040e-02 + 1.857615775674864e-02 1.857410183289329e-02 1.857204396224591e-02 1.856998414158087e-02 1.856792236630606e-02 + 1.856585863699762e-02 1.856379295088432e-02 1.856172530348682e-02 1.855965569223371e-02 1.855758411493529e-02 + 1.855551056872843e-02 1.855343504862798e-02 1.855135755357239e-02 1.854927808391809e-02 1.854719662999937e-02 + 1.854511318947389e-02 1.854302776884543e-02 1.854094036342127e-02 1.853885096469986e-02 1.853675956540365e-02 + 1.853466616668727e-02 1.853257077183708e-02 1.853047338096206e-02 1.852837398473379e-02 1.852627257507170e-02 + 1.852416915520061e-02 1.852206372211816e-02 1.851995627104085e-02 1.851784680396669e-02 1.851573531468755e-02 + 1.851362179508880e-02 1.851150625260910e-02 1.850938868433302e-02 1.850726907790290e-02 1.850514743267316e-02 + 1.850302375022463e-02 1.850089802974987e-02 1.849877026321467e-02 1.849664044568886e-02 1.849450857919205e-02 + 1.849237466328984e-02 1.849023869225825e-02 1.848810065567833e-02 1.848596056072587e-02 1.848381841125062e-02 + 1.848167418759208e-02 1.847952788817062e-02 1.847737952020788e-02 1.847522908039946e-02 1.847307656165976e-02 + 1.847092195736722e-02 1.846876526733367e-02 1.846660649126623e-02 1.846444562782898e-02 1.846228267641075e-02 + 1.846011763022634e-02 1.845795047822359e-02 1.845578122357826e-02 1.845360986824314e-02 1.845143640646702e-02 + 1.844926083412144e-02 1.844708314829677e-02 1.844490334652741e-02 1.844272142526039e-02 1.844053738232335e-02 + 1.843835121884711e-02 1.843616292877729e-02 1.843397250473794e-02 1.843177994759022e-02 1.842958525561723e-02 + 1.842738842512387e-02 1.842518945510765e-02 1.842298833954339e-02 1.842078507029563e-02 1.841857965103055e-02 + 1.841637208298309e-02 1.841416236088061e-02 1.841195047731196e-02 1.840973642948215e-02 1.840752022011446e-02 + 1.840530184216091e-02 1.840308128892246e-02 1.840085856103635e-02 1.839863365911139e-02 1.839640658087383e-02 + 1.839417731924000e-02 1.839194587083986e-02 1.838971223370895e-02 1.838747640300020e-02 1.838523837692452e-02 + 1.838299815548432e-02 1.838075573582631e-02 1.837851111106092e-02 1.837626427462707e-02 1.837401523350234e-02 + 1.837176398539980e-02 1.836951051641877e-02 1.836725482529124e-02 1.836499691387402e-02 1.836273678151691e-02 + 1.836047442118306e-02 1.835820982858270e-02 1.835594300692513e-02 1.835367394977665e-02 1.835140264983480e-02 + 1.834912910825698e-02 1.834685332362546e-02 1.834457529066184e-02 1.834229500068380e-02 1.834001245612868e-02 + 1.833772766191195e-02 1.833544060380268e-02 1.833315127769170e-02 1.833085968975407e-02 1.832856583633842e-02 + 1.832626971106521e-02 1.832397130817964e-02 1.832167062581619e-02 1.831936766045366e-02 1.831706240632338e-02 + 1.831475486820015e-02 1.831244504576387e-02 1.831013292472488e-02 1.830781850356614e-02 1.830550178468002e-02 + 1.830318276421879e-02 1.830086143845657e-02 1.829853780375753e-02 1.829621185558813e-02 1.829388359300937e-02 + 1.829155301569956e-02 1.828922011662799e-02 1.828688489153528e-02 1.828454733892483e-02 1.828220745351499e-02 + 1.827986523367206e-02 1.827752068069898e-02 1.827517378500067e-02 1.827282454323407e-02 1.827047296291425e-02 + 1.826811903643735e-02 1.826576275326505e-02 1.826340410954280e-02 1.826104310998728e-02 1.825867975496676e-02 + 1.825631402943589e-02 1.825394593365713e-02 1.825157547349511e-02 1.824920264235266e-02 1.824682743095013e-02 + 1.824444983334214e-02 1.824206985531418e-02 1.823968749396920e-02 1.823730273947125e-02 1.823491559405069e-02 + 1.823252605635143e-02 1.823013411851380e-02 1.822773977727079e-02 1.822534302885856e-02 1.822294386817581e-02 + 1.822054229933361e-02 1.821813832218229e-02 1.821573192447362e-02 1.821332310276354e-02 1.821091185568656e-02 + 1.820849817689734e-02 1.820608206836350e-02 1.820366353310689e-02 1.820124256311412e-02 1.819881915016099e-02 + 1.819639328969794e-02 1.819396498477247e-02 1.819153423068764e-02 1.818910101812068e-02 1.818666535246774e-02 + 1.818422723286477e-02 1.818178664914423e-02 1.817934360000525e-02 1.817689808189780e-02 1.817445008627356e-02 + 1.817199961756547e-02 1.816954667558178e-02 1.816709124568389e-02 1.816463332917677e-02 1.816217292950077e-02 + 1.815971003769815e-02 1.815724465123547e-02 1.815477676809149e-02 1.815230637650250e-02 1.814983348051392e-02 + 1.814735808823705e-02 1.814488018072306e-02 1.814239975267995e-02 1.813991681262074e-02 1.813743135508509e-02 + 1.813494337086823e-02 1.813245285281114e-02 1.812995980445686e-02 1.812746422731492e-02 1.812496611573551e-02 + 1.812246546481565e-02 1.811996226848969e-02 1.811745651920204e-02 1.811494821957559e-02 1.811243737133842e-02 + 1.810992396481434e-02 1.810740799805441e-02 1.810488947142559e-02 1.810236837745802e-02 1.809984471224923e-02 + 1.809731847419077e-02 1.809478965788605e-02 1.809225826197647e-02 1.808972428730369e-02 1.808718772623545e-02 + 1.808464857219165e-02 1.808210682315950e-02 1.807956248210254e-02 1.807701554512131e-02 1.807446599893149e-02 + 1.807191384222250e-02 1.806935907649996e-02 1.806680169977935e-02 1.806424171112906e-02 1.806167910639137e-02 + 1.805911387430984e-02 1.805654601234490e-02 1.805397552118165e-02 1.805140239539148e-02 1.804882663464111e-02 + 1.804624823872755e-02 1.804366719439020e-02 1.804108350087335e-02 1.803849716547347e-02 1.803590817366155e-02 + 1.803331652090480e-02 1.803072221546651e-02 1.802812524400898e-02 1.802552559998909e-02 1.802292329257977e-02 + 1.802031831251088e-02 1.801771065083283e-02 1.801510031065072e-02 1.801248728509480e-02 1.800987156794499e-02 + 1.800725316456288e-02 1.800463207196059e-02 1.800200828229563e-02 1.799938179038418e-02 1.799675259135415e-02 + 1.799412068157979e-02 1.799148606152016e-02 1.798884872978088e-02 1.798620868169797e-02 1.798356590941466e-02 + 1.798092041139825e-02 1.797827219073602e-02 1.797562123473000e-02 1.797296753674024e-02 1.797031110360818e-02 + 1.796765193280976e-02 1.796499001786419e-02 1.796232535287627e-02 1.795965793501132e-02 1.795698776183851e-02 + 1.795431482887613e-02 1.795163913285315e-02 1.794896067070983e-02 1.794627943785036e-02 1.794359543174794e-02 + 1.794090865000600e-02 1.793821908548673e-02 1.793552673496832e-02 1.793283159877326e-02 1.793013367385930e-02 + 1.792743295577707e-02 1.792472944026945e-02 1.792202312682011e-02 1.791931400976357e-02 1.791660207728341e-02 + 1.791388733234035e-02 1.791116977642004e-02 1.790844939977351e-02 1.790572620127331e-02 1.790300018053203e-02 + 1.790027132960331e-02 1.789753964610457e-02 1.789480512776976e-02 1.789206776371137e-02 1.788932755546883e-02 + 1.788658450796398e-02 1.788383860557862e-02 1.788108984645815e-02 1.787833823870088e-02 1.787558376650758e-02 + 1.787282642238153e-02 1.787006621288861e-02 1.786730313584615e-02 1.786453718506033e-02 1.786176835331611e-02 + 1.785899663566110e-02 1.785622203220682e-02 1.785344454733639e-02 1.785066416506327e-02 1.784788087479271e-02 + 1.784509469481547e-02 1.784230561688990e-02 1.783951362363962e-02 1.783671871969004e-02 1.783392090351773e-02 + 1.783112016693977e-02 1.782831650359620e-02 1.782550991644932e-02 1.782270041052123e-02 1.781988796773664e-02 + 1.781707258188517e-02 1.781425426228424e-02 1.781143299909701e-02 1.780860878344276e-02 1.780578161636334e-02 + 1.780295150019453e-02 1.780011843142990e-02 1.779728239750767e-02 1.779444339320670e-02 1.779160141853593e-02 + 1.778875647528820e-02 1.778590855799184e-02 1.778305765851556e-02 1.778020377358821e-02 1.777734690358035e-02 + 1.777448704738365e-02 1.777162419310320e-02 1.776875833746895e-02 1.776588948369731e-02 1.776301762263940e-02 + 1.776014274927566e-02 1.775726486578331e-02 1.775438397030816e-02 1.775150005486545e-02 1.774861310790110e-02 + 1.774572313526677e-02 1.774283013776283e-02 1.773993409898065e-02 1.773703502220879e-02 1.773413291089222e-02 + 1.773122774923129e-02 1.772831953604024e-02 1.772540827370780e-02 1.772249394894422e-02 1.771957656009896e-02 + 1.771665611194296e-02 1.771373259698992e-02 1.771080600888477e-02 1.770787634473108e-02 1.770494360249459e-02 + 1.770200777818149e-02 1.769906886558849e-02 1.769612685929023e-02 1.769318175770428e-02 1.769023356261796e-02 + 1.768728226707501e-02 1.768432786370409e-02 1.768137035050212e-02 1.767840972761326e-02 1.767544598996190e-02 + 1.767247912224100e-02 1.766950912887429e-02 1.766653601772543e-02 1.766355977437013e-02 1.766058039164660e-02 + 1.765759786981226e-02 1.765461220736955e-02 1.765162339764906e-02 1.764863143247870e-02 1.764563631444012e-02 + 1.764263804044564e-02 1.763963660052613e-02 1.763663199590508e-02 1.763362422648862e-02 1.763061328532627e-02 + 1.762759916389677e-02 1.762458185742205e-02 1.762156136756127e-02 1.761853769290762e-02 1.761551082691653e-02 + 1.761248075761478e-02 1.760944748669641e-02 1.760641101894919e-02 1.760337134551661e-02 1.760032845807722e-02 + 1.759728235211478e-02 1.759423302856655e-02 1.759118048266074e-02 1.758812470690578e-02 1.758506570645847e-02 + 1.758200347417691e-02 1.757893799151254e-02 1.757586926700291e-02 1.757279730534286e-02 1.756972209521438e-02 + 1.756664362962799e-02 1.756356190543487e-02 1.756047692143249e-02 1.755738866974527e-02 1.755429714394244e-02 + 1.755120234663686e-02 1.754810427470094e-02 1.754500292288027e-02 1.754189829041229e-02 1.753879037098419e-02 + 1.753567915477636e-02 1.753256463576890e-02 1.752944681640228e-02 1.752632570156945e-02 1.752320127895599e-02 + 1.752007354011609e-02 1.751694248500407e-02 1.751380811099548e-02 1.751067041466748e-02 1.750752939229762e-02 + 1.750438503712632e-02 1.750123734468025e-02 1.749808631552286e-02 1.749493194526630e-02 1.749177422703599e-02 + 1.748861315463852e-02 1.748544872591071e-02 1.748228094036503e-02 1.747910979560325e-02 1.747593528635296e-02 + 1.747275740493088e-02 1.746957614261004e-02 1.746639150171011e-02 1.746320348827029e-02 1.746001208402579e-02 + 1.745681728232032e-02 1.745361909228664e-02 1.745041750587895e-02 1.744721251527593e-02 1.744400411995098e-02 + 1.744079231626219e-02 1.743757709612158e-02 1.743435844889677e-02 1.743113638300998e-02 1.742791090294012e-02 + 1.742468198827393e-02 1.742144963687445e-02 1.741821385208018e-02 1.741497462017237e-02 1.741173194001650e-02 + 1.740848581625378e-02 1.740523623716524e-02 1.740198319673262e-02 1.739872669626729e-02 1.739546673433575e-02 + 1.739220330474240e-02 1.738893639777237e-02 1.738566600801745e-02 1.738239213410604e-02 1.737911477739739e-02 + 1.737583393441487e-02 1.737254959973500e-02 1.736926176792087e-02 1.736597043319887e-02 1.736267559029083e-02 + 1.735937723525189e-02 1.735607536431420e-02 1.735276997535949e-02 1.734946106967137e-02 1.734614863942214e-02 + 1.734283267462293e-02 1.733951317984790e-02 1.733619014933173e-02 1.733286356952035e-02 1.732953344236944e-02 + 1.732619976822115e-02 1.732286254123125e-02 1.731952175476255e-02 1.731617740506982e-02 1.731282949118149e-02 + 1.730947800429541e-02 1.730612293897103e-02 1.730276429900506e-02 1.729940207772190e-02 1.729603626710180e-02 + 1.729266686687025e-02 1.728929387127552e-02 1.728591727431661e-02 1.728253707811547e-02 1.727915327486350e-02 + 1.727576585445017e-02 1.727237482415143e-02 1.726898017713387e-02 1.726558189725253e-02 1.726217999255776e-02 + 1.725877446141184e-02 1.725536528836806e-02 1.725195247427305e-02 1.724853602088567e-02 1.724511592318061e-02 + 1.724169217016580e-02 1.723826475637563e-02 1.723483368674653e-02 1.723139894995541e-02 1.722796053633534e-02 + 1.722451845482723e-02 1.722107270070567e-02 1.721762326419149e-02 1.721417014587169e-02 1.721071333868621e-02 + 1.720725283251134e-02 1.720378862838028e-02 1.720032072298445e-02 1.719684910908383e-02 1.719337378669194e-02 + 1.718989475327181e-02 1.718641200187306e-02 1.718292552719872e-02 1.717943532374793e-02 1.717594138625576e-02 + 1.717244371734551e-02 1.716894231509765e-02 1.716543716617480e-02 1.716192826455456e-02 1.715841561099909e-02 + 1.715489920993168e-02 1.715137904713604e-02 1.714785510917266e-02 1.714432741097788e-02 1.714079594608009e-02 + 1.713726069602739e-02 1.713372166332687e-02 1.713017885016558e-02 1.712663225240283e-02 1.712308185705881e-02 + 1.711952765873538e-02 1.711596966109396e-02 1.711240786053498e-02 1.710884225051524e-02 1.710527282476134e-02 + 1.710169958307061e-02 1.709812252022495e-02 1.709454162136748e-02 1.709095688985418e-02 1.708736832996113e-02 + 1.708377593024533e-02 1.708017968752960e-02 1.707657960032946e-02 1.707297565703870e-02 1.706936785401023e-02 + 1.706575619189593e-02 1.706214066346443e-02 1.705852126552140e-02 1.705489799818787e-02 1.705127085519305e-02 + 1.704763983091843e-02 1.704400492089210e-02 1.704036611449886e-02 1.703672340943711e-02 1.703307681394708e-02 + 1.702942631772786e-02 1.702577190966809e-02 1.702211358937508e-02 1.701845135582294e-02 1.701478520463906e-02 + 1.701111512687454e-02 1.700744111902223e-02 1.700376317991698e-02 1.700008130526762e-02 1.699639548886451e-02 + 1.699270572517141e-02 1.698901201362202e-02 1.698531434790372e-02 1.698161271901581e-02 1.697790713038581e-02 + 1.697419757947398e-02 1.697048405591379e-02 1.696676655885514e-02 1.696304508413142e-02 1.695931962055792e-02 + 1.695559016575875e-02 1.695185672007940e-02 1.694811928170539e-02 1.694437784303563e-02 1.694063239701608e-02 + 1.693688294268234e-02 1.693312947555357e-02 1.692937198914621e-02 1.692561047849961e-02 1.692184494218333e-02 + 1.691807537819241e-02 1.691430177590003e-02 1.691052413380094e-02 1.690674245501956e-02 1.690295672392027e-02 + 1.689916693403359e-02 1.689537309141036e-02 1.689157519031890e-02 1.688777322481082e-02 1.688396719247375e-02 + 1.688015708323470e-02 1.687634289028026e-02 1.687252461641300e-02 1.686870225976892e-02 1.686487581335405e-02 + 1.686104526641643e-02 1.685721061978611e-02 1.685337187596560e-02 1.684952902423863e-02 1.684568205626177e-02 + 1.684183096806695e-02 1.683797575916921e-02 1.683411642637722e-02 1.683025296370582e-02 1.682638536598722e-02 + 1.682251363071521e-02 1.681863775630957e-02 1.681475773295268e-02 1.681087355358095e-02 1.680698521822956e-02 + 1.680309272743823e-02 1.679919607564722e-02 1.679529524908240e-02 1.679139024683375e-02 1.678748107079098e-02 + 1.678356771499038e-02 1.677965016895157e-02 1.677572842703558e-02 1.677180249929987e-02 1.676787237703614e-02 + 1.676393804299063e-02 1.675999950051788e-02 1.675605674951069e-02 1.675210978219402e-02 1.674815858725950e-02 + 1.674420316518524e-02 1.674024352454331e-02 1.673627964747038e-02 1.673231152527195e-02 1.672833916857912e-02 + 1.672436256552257e-02 1.672038170373856e-02 1.671639658470834e-02 1.671240720840105e-02 1.670841357063555e-02 + 1.670441566220705e-02 1.670041347959014e-02 1.669640702110204e-02 1.669239628051189e-02 1.668838125191250e-02 + 1.668436193143650e-02 1.668033831890629e-02 1.667631040878886e-02 1.667227819212758e-02 1.666824166734860e-02 + 1.666420083129591e-02 1.666015567735254e-02 1.665610620005455e-02 1.665205239678242e-02 1.664799426695549e-02 + 1.664393180284348e-02 1.663986499713315e-02 1.663579384792829e-02 1.663171835503466e-02 1.662763851356003e-02 + 1.662355430939835e-02 1.661946574092143e-02 1.661537281150426e-02 1.661127551677910e-02 1.660717384720702e-02 + 1.660306779425839e-02 1.659895736095696e-02 1.659484254425630e-02 1.659072333444665e-02 1.658659972465595e-02 + 1.658247171530552e-02 1.657833931027815e-02 1.657420249617699e-02 1.657006126301349e-02 1.656591561144095e-02 + 1.656176553662080e-02 1.655761103381663e-02 1.655345210211223e-02 1.654928873901935e-02 1.654512093811135e-02 + 1.654094868807454e-02 1.653677198858015e-02 1.653259084096055e-02 1.652840523447503e-02 1.652421516561530e-02 + 1.652002063436291e-02 1.651582163151349e-02 1.651161815099949e-02 1.650741019156900e-02 1.650319775344297e-02 + 1.649898082810461e-02 1.649475940168675e-02 1.649053348141889e-02 1.648630306850305e-02 1.648206814836095e-02 + 1.647782871114676e-02 1.647358475732917e-02 1.646933629656457e-02 1.646508330893651e-02 1.646082578033714e-02 + 1.645656373337251e-02 1.645229715576629e-02 1.644802602626009e-02 1.644375035674409e-02 1.643947014097659e-02 + 1.643518536281393e-02 1.643089602671802e-02 1.642660213310334e-02 1.642230367492405e-02 1.641800064388943e-02 + 1.641369303446324e-02 1.640938084474308e-02 1.640506407467653e-02 1.640074271742540e-02 1.639641675907646e-02 + 1.639208620097271e-02 1.638775104513307e-02 1.638341128505268e-02 1.637906691499287e-02 1.637471792980197e-02 + 1.637036432400064e-02 1.636600609175647e-02 1.636164322915392e-02 1.635727573684415e-02 1.635290360792794e-02 + 1.634852683359730e-02 1.634414541697593e-02 1.633975935494602e-02 1.633536863669590e-02 1.633097325119221e-02 + 1.632657319870386e-02 1.632216848742881e-02 1.631775910539292e-02 1.631334504210032e-02 1.630892629731235e-02 + 1.630450287107613e-02 1.630007475715268e-02 1.629564194133085e-02 1.629120442381021e-02 1.628676220752001e-02 + 1.628231528645751e-02 1.627786365361661e-02 1.627340730437480e-02 1.626894623909321e-02 1.626448044809207e-02 + 1.626000991935131e-02 1.625553465710418e-02 1.625105466086324e-02 1.624656992364918e-02 1.624208044008659e-02 + 1.623758620493278e-02 1.623308721259990e-02 1.622858345750622e-02 1.622407493651434e-02 1.621956164908100e-02 + 1.621504359102545e-02 1.621052075671857e-02 1.620599314061202e-02 1.620146073758967e-02 1.619692354185834e-02 + 1.619238154678624e-02 1.618783475477294e-02 1.618328316706134e-02 1.617872676957040e-02 1.617416555535298e-02 + 1.616959952441603e-02 1.616502867670949e-02 1.616045300241566e-02 1.615587248863419e-02 1.615128714307292e-02 + 1.614669696726644e-02 1.614210195036420e-02 1.613750207990814e-02 1.613289735436475e-02 1.612828778261194e-02 + 1.612367334765880e-02 1.611905403879705e-02 1.611442986870223e-02 1.610980082722066e-02 1.610516690212456e-02 + 1.610052809916244e-02 1.609588441136000e-02 1.609123582829610e-02 1.608658235171540e-02 1.608192397521171e-02 + 1.607726068992654e-02 1.607259250083978e-02 1.606791940362701e-02 1.606324138657220e-02 1.605855844962495e-02 + 1.605387058768025e-02 1.604917779011535e-02 1.604448006054786e-02 1.603977739874237e-02 1.603506979420087e-02 + 1.603035723984084e-02 1.602563973257448e-02 1.602091727188371e-02 1.601618984720332e-02 1.601145745295015e-02 + 1.600672010067149e-02 1.600197777942985e-02 1.599723047266619e-02 1.599247818462375e-02 1.598772091449355e-02 + 1.598295865408641e-02 1.597819139147786e-02 1.597341912912636e-02 1.596864187530068e-02 1.596385961058315e-02 + 1.595907232771693e-02 1.595428003613896e-02 1.594948272828454e-02 1.594468039178993e-02 1.593987301780130e-02 + 1.593506061365002e-02 1.593024318102167e-02 1.592542070422077e-02 1.592059317798925e-02 1.591576060279083e-02 + 1.591092297799217e-02 1.590608029141302e-02 1.590123253274349e-02 1.589637971157846e-02 1.589152182656434e-02 + 1.588665886609507e-02 1.588179081847464e-02 1.587691768450550e-02 1.587203947045915e-02 1.586715616213467e-02 + 1.586226775168990e-02 1.585737424168921e-02 1.585247562649581e-02 1.584757190117160e-02 1.584266306445842e-02 + 1.583774911091078e-02 1.583283003450806e-02 1.582790583090947e-02 1.582297649499978e-02 1.581804202355953e-02 + 1.581310241701619e-02 1.580815766650671e-02 1.580320776320766e-02 1.579825271139450e-02 1.579329250537274e-02 + 1.578832713506978e-02 1.578335660262603e-02 1.577838090296324e-02 1.577340002574811e-02 1.576841397243399e-02 + 1.576342274326813e-02 1.575842633194578e-02 1.575342472205075e-02 1.574841791148685e-02 1.574340591569888e-02 + 1.573838872006093e-02 1.573336631006632e-02 1.572833869008299e-02 1.572330586230670e-02 1.571826781924578e-02 + 1.571322454052314e-02 1.570817603062760e-02 1.570312230059812e-02 1.569806333998715e-02 1.569299913693516e-02 + 1.568792968457186e-02 1.568285498663007e-02 1.567777503779379e-02 1.567268982728102e-02 1.566759935997030e-02 + 1.566250363482262e-02 1.565740264102256e-02 1.565229637077196e-02 1.564718482295817e-02 1.564206800099241e-02 + 1.563694589151567e-02 1.563181848599405e-02 1.562668579194260e-02 1.562154780177149e-02 1.561640450642917e-02 + 1.561125590888111e-02 1.560610200797837e-02 1.560094279515962e-02 1.559577825343192e-02 1.559060838842812e-02 + 1.558543321151646e-02 1.558025270088283e-02 1.557506685188879e-02 1.556987567405825e-02 1.556467915294808e-02 + 1.555947727806998e-02 1.555427005014520e-02 1.554905747326830e-02 1.554383954557267e-02 1.553861625685508e-02 + 1.553338760005679e-02 1.552815357203842e-02 1.552291417232042e-02 1.551766939022104e-02 1.551241921985975e-02 + 1.550716367246923e-02 1.550190274051892e-02 1.549663640983429e-02 1.549136467943576e-02 1.548608754911306e-02 + 1.548080501516420e-02 1.547551706650131e-02 1.547022370107663e-02 1.546492492363977e-02 1.545962073006300e-02 + 1.545431111106912e-02 1.544899605692932e-02 1.544367557060635e-02 1.543834964941066e-02 1.543301828099291e-02 + 1.542768146907574e-02 1.542233921474585e-02 1.541699150599057e-02 1.541163833967913e-02 1.540627971422265e-02 + 1.540091562222576e-02 1.539554606062004e-02 1.539017102808156e-02 1.538479052048013e-02 1.537940453376258e-02 + 1.537401306270197e-02 1.536861609811398e-02 1.536321364249661e-02 1.535780570199338e-02 1.535239225620149e-02 + 1.534697329939463e-02 1.534154884369051e-02 1.533611887960563e-02 1.533068339829330e-02 1.532524239983298e-02 + 1.531979587995433e-02 1.531434383110085e-02 1.530888624554550e-02 1.530342313142362e-02 1.529795449144603e-02 + 1.529248030485156e-02 1.528700056732233e-02 1.528151528324413e-02 1.527602445059826e-02 1.527052806021316e-02 + 1.526502610370102e-02 1.525951858764995e-02 1.525400550804322e-02 1.524848685322667e-02 1.524296262660809e-02 + 1.523743282528689e-02 1.523189743753784e-02 1.522635646012132e-02 1.522080989370855e-02 1.521525773883866e-02 + 1.520969998584297e-02 1.520413662809972e-02 1.519856766896251e-02 1.519299310438481e-02 1.518741292689401e-02 + 1.518182713051541e-02 1.517623571498702e-02 1.517063867977171e-02 1.516503601659771e-02 1.515942772580205e-02 + 1.515381380882217e-02 1.514819425008754e-02 1.514256904339338e-02 1.513693819284546e-02 1.513130169987854e-02 + 1.512565955837021e-02 1.512001175774349e-02 1.511435830052952e-02 1.510869918485496e-02 1.510303439909880e-02 + 1.509736393861015e-02 1.509168780464220e-02 1.508600600178219e-02 1.508031852355242e-02 1.507462535986425e-02 + 1.506892650464710e-02 1.506322195838325e-02 1.505751172137055e-02 1.505179578553525e-02 1.504607414992266e-02 + 1.504034681527993e-02 1.503461377008154e-02 1.502887501067205e-02 1.502313053999477e-02 1.501738035243006e-02 + 1.501162444030474e-02 1.500586279803602e-02 1.500009542963074e-02 1.499432233574762e-02 1.498854350912934e-02 + 1.498275894315130e-02 1.497696863387312e-02 1.497117258012378e-02 1.496537077480856e-02 1.495956321394884e-02 + 1.495374990400090e-02 1.494793083920974e-02 1.494210600904758e-02 1.493627541059610e-02 1.493043904648383e-02 + 1.492459691659297e-02 1.491874900408085e-02 1.491289530722370e-02 1.490703583623931e-02 1.490117058646935e-02 + 1.489529954725381e-02 1.488942270892006e-02 1.488354007804980e-02 1.487765165385858e-02 1.487175742273507e-02 + 1.486585738883519e-02 1.485995155398175e-02 1.485403990610964e-02 1.484812243988829e-02 1.484219915557141e-02 + 1.483627005584607e-02 1.483033513203473e-02 1.482439437542072e-02 1.481844779264578e-02 1.481249538141862e-02 + 1.480653713381494e-02 1.480057304868135e-02 1.479460312202780e-02 1.478862734716873e-02 1.478264572087699e-02 + 1.477665824308106e-02 1.477066491441443e-02 1.476466572742758e-02 1.475866067903805e-02 1.475264977269339e-02 + 1.474663299844858e-02 1.474061034872640e-02 1.473458182710518e-02 1.472854743115566e-02 1.472250715651883e-02 + 1.471646100132783e-02 1.471040896256117e-02 1.470435103749897e-02 1.469828722554372e-02 1.469221751827344e-02 + 1.468614190646898e-02 1.468006039547928e-02 1.467397298615093e-02 1.466787967378610e-02 1.466178045636883e-02 + 1.465567533041493e-02 1.464956428982840e-02 1.464344732703370e-02 1.463732444018100e-02 1.463119563426315e-02 + 1.462506090797482e-02 1.461892025637629e-02 1.461277367320199e-02 1.460662115516677e-02 1.460046270026797e-02 + 1.459429830605704e-02 1.458812796887011e-02 1.458195168595082e-02 1.457576945823491e-02 1.456958128559711e-02 + 1.456338716422361e-02 1.455718708308891e-02 1.455098103823577e-02 1.454476903226018e-02 1.453855106504101e-02 + 1.453232713525658e-02 1.452609724028033e-02 1.451986137384772e-02 1.451361953112174e-02 1.450737171027855e-02 + 1.450111790831084e-02 1.449485812287890e-02 1.448859235383744e-02 1.448232060352556e-02 1.447604287018101e-02 + 1.446975914267516e-02 1.446346941597466e-02 1.445717368938523e-02 1.445087196279080e-02 1.444456423724572e-02 + 1.443825051237331e-02 1.443193078136921e-02 1.442560503975330e-02 1.441927328581930e-02 1.441293551683267e-02 + 1.440659172970616e-02 1.440024192165075e-02 1.439388609177658e-02 1.438752424156573e-02 1.438115637277796e-02 + 1.437478247503487e-02 1.436840254149195e-02 1.436201657648160e-02 1.435562457263202e-02 1.434922652522855e-02 + 1.434282244486077e-02 1.433641232984850e-02 1.432999617114929e-02 1.432357396196595e-02 1.431714570255755e-02 + 1.431071139387867e-02 1.430427102559402e-02 1.429782460021014e-02 1.429137212732056e-02 1.428491359501307e-02 + 1.427844899676062e-02 1.427197833606156e-02 1.426550161130239e-02 1.425901881685885e-02 1.425252994564961e-02 + 1.424603499980085e-02 1.423953398385027e-02 1.423302689906778e-02 1.422651373475527e-02 1.421999448399202e-02 + 1.421346915585374e-02 1.420693774198730e-02 1.420040023237321e-02 1.419385663850131e-02 1.418730696003290e-02 + 1.418075118751426e-02 1.417418931634679e-02 1.416762135086922e-02 1.416104729584521e-02 1.415446713263836e-02 + 1.414788085973522e-02 1.414128849363525e-02 1.413469002361970e-02 1.412808544052846e-02 1.412147474772301e-02 + 1.411485794712882e-02 1.410823503604182e-02 1.410160600672222e-02 1.409497085818714e-02 1.408832959214252e-02 + 1.408168220875668e-02 1.407502870564407e-02 1.406836907961611e-02 1.406170332864153e-02 1.405503144837146e-02 + 1.404835343608425e-02 1.404166929852345e-02 1.403497903248639e-02 1.402828262916828e-02 1.402158009603205e-02 + 1.401487143048169e-02 1.400815661918214e-02 1.400143566703935e-02 1.399470857625501e-02 1.398797534046779e-02 + 1.398123596549795e-02 1.397449045134991e-02 1.396773878380821e-02 1.396098096640959e-02 1.395421700271061e-02 + 1.394744688102961e-02 1.394067060648909e-02 1.393388818692338e-02 1.392709961198955e-02 1.392030488001634e-02 + 1.391350399327543e-02 1.390669694254475e-02 1.389988372719557e-02 1.389306435287330e-02 1.388623881438261e-02 + 1.387940711188756e-02 1.387256925103053e-02 1.386572522405790e-02 1.385887502683316e-02 1.385201866296698e-02 + 1.384515612379329e-02 1.383828740611332e-02 1.383141252098464e-02 1.382453146615934e-02 1.381764423695148e-02 + 1.381075083621117e-02 1.380385125926009e-02 1.379694549932224e-02 1.379003355634722e-02 1.378311543405784e-02 + 1.377619113577579e-02 1.376926065784134e-02 1.376232399626086e-02 1.375538114862362e-02 1.374843211529037e-02 + 1.374147689626999e-02 1.373451549097131e-02 1.372754790081035e-02 1.372057412482435e-02 1.371359415880417e-02 + 1.370660800191563e-02 1.369961565562416e-02 1.369261712158748e-02 1.368561239160383e-02 1.367860146147292e-02 + 1.367158434223160e-02 1.366456103295884e-02 1.365753152816715e-02 1.365049582984413e-02 1.364345393626983e-02 + 1.363640584363454e-02 1.362935155197557e-02 1.362229106201978e-02 1.361522437421294e-02 1.360815148809621e-02 + 1.360107240365773e-02 1.359398712117658e-02 1.358689563898480e-02 1.357979795217255e-02 1.357269405533802e-02 + 1.356558396017600e-02 1.355846767355538e-02 1.355134518540141e-02 1.354421648973967e-02 1.353708158728038e-02 + 1.352994048497773e-02 1.352279317412557e-02 1.351563964921714e-02 1.350847993234027e-02 1.350131401794928e-02 + 1.349414188812881e-02 1.348696355361660e-02 1.347977901858603e-02 1.347258827670450e-02 1.346539132112732e-02 + 1.345818815687027e-02 1.345097879723517e-02 1.344376323611521e-02 1.343654146470481e-02 1.342931348024562e-02 + 1.342207929164266e-02 1.341483890125029e-02 1.340759229714105e-02 1.340033948592649e-02 1.339308047488992e-02 + 1.338581525615185e-02 1.337854383232506e-02 1.337126620737807e-02 1.336398237245951e-02 1.335669232490426e-02 + 1.334939606999042e-02 1.334209361886319e-02 1.333478496691931e-02 1.332747010093965e-02 1.332014902896288e-02 + 1.331282175723704e-02 1.330548828381385e-02 1.329814860211957e-02 1.329080271412866e-02 1.328345063097246e-02 + 1.327609234424045e-02 1.326872784914616e-02 1.326135715657202e-02 1.325398026514318e-02 1.324659716972378e-02 + 1.323920787031880e-02 1.323181236976987e-02 1.322441067219326e-02 1.321700278123619e-02 1.320958869473772e-02 + 1.320216840889533e-02 1.319474192647233e-02 1.318730924299288e-02 1.317987035320805e-02 1.317242527523754e-02 + 1.316497401404441e-02 1.315751655750498e-02 1.315005290457417e-02 1.314258305915991e-02 1.313510702533477e-02 + 1.312762479749873e-02 1.312013637454663e-02 1.311264176674524e-02 1.310514097528989e-02 1.309763399743803e-02 + 1.309012083240218e-02 1.308260148524151e-02 1.307507595779872e-02 1.306754423810231e-02 1.306000633130083e-02 + 1.305246225068735e-02 1.304491199415833e-02 1.303735555888092e-02 1.302979294561730e-02 1.302222416114251e-02 + 1.301464920127586e-02 1.300706805512286e-02 1.299948074007148e-02 1.299188726392925e-02 1.298428761376350e-02 + 1.297668178953030e-02 1.296906979917289e-02 1.296145165196894e-02 1.295382733572278e-02 1.294619684321666e-02 + 1.293856019418804e-02 1.293091739361701e-02 1.292326843600229e-02 1.291561331594024e-02 1.290795203962965e-02 + 1.290028461406370e-02 1.289261102589192e-02 1.288493127982097e-02 1.287724539399148e-02 1.286955336728896e-02 + 1.286185519483855e-02 1.285415087393522e-02 1.284644040779901e-02 1.283872379943217e-02 1.283100105007112e-02 + 1.282327216499671e-02 1.281553714651719e-02 1.280779599126801e-02 1.280004870582322e-02 1.279229529551004e-02 + 1.278453575462785e-02 1.277677008230648e-02 1.276899828322272e-02 1.276122036637128e-02 1.275343633303281e-02 + 1.274564618082443e-02 1.273784991358546e-02 1.273004753391990e-02 1.272223904101719e-02 1.271442442957637e-02 + 1.270660370794978e-02 1.269877689384363e-02 1.269094397773904e-02 1.268310495443295e-02 1.267525983383190e-02 + 1.266740862159357e-02 1.265955131610305e-02 1.265168790986125e-02 1.264381841321034e-02 1.263594283614933e-02 + 1.262806117310012e-02 1.262017342951705e-02 1.261227961209872e-02 1.260437971406514e-02 1.259647373729069e-02 + 1.258856168925583e-02 1.258064357239260e-02 1.257271939240096e-02 1.256478915520078e-02 1.255685285459754e-02 + 1.254891049173029e-02 1.254096207570647e-02 1.253300760376554e-02 1.252504707668881e-02 1.251708050378790e-02 + 1.250910789128773e-02 1.250112924190730e-02 1.249314455497329e-02 1.248515382942968e-02 1.247715706626537e-02 + 1.246915427066142e-02 1.246114545004359e-02 1.245313061093009e-02 1.244510975519442e-02 1.243708288271855e-02 + 1.242904999334644e-02 1.242101108960597e-02 1.241296617602342e-02 1.240491525784085e-02 1.239685833832253e-02 + 1.238879542265411e-02 1.238072651672425e-02 1.237265161832934e-02 1.236457072972670e-02 1.235648385971585e-02 + 1.234839100475330e-02 1.234029216644840e-02 1.233218735967670e-02 1.232407658450629e-02 1.231595983825897e-02 + 1.230783712734204e-02 1.229970846199802e-02 1.229157384500942e-02 1.228343326032102e-02 1.227528672233900e-02 + 1.226713425500730e-02 1.225897584359588e-02 1.225081148758153e-02 1.224264120133804e-02 1.223446498720786e-02 + 1.222628284514866e-02 1.221809477711035e-02 1.220990079161559e-02 1.220170089405064e-02 1.219349508434973e-02 + 1.218528336781141e-02 1.217706575082829e-02 1.216884223701085e-02 1.216061282093886e-02 1.215237750559525e-02 + 1.214413631491834e-02 1.213588924765066e-02 1.212763629639266e-02 1.211937747504947e-02 1.211111278696468e-02 + 1.210284222899338e-02 1.209456580676226e-02 1.208628352659129e-02 1.207799539529086e-02 1.206970142400196e-02 + 1.206140161359375e-02 1.205309595715539e-02 1.204478446558403e-02 1.203646714593309e-02 1.202814399601385e-02 + 1.201981502726849e-02 1.201148024892713e-02 1.200313965960066e-02 1.199479326438714e-02 1.198644106975963e-02 + 1.197808307814890e-02 1.196971928979660e-02 1.196134970757412e-02 1.195297434273665e-02 1.194459320579336e-02 + 1.193620630286995e-02 1.192781363156250e-02 1.191941519457288e-02 1.191101099930699e-02 1.190260104978759e-02 + 1.189418535108248e-02 1.188576391078268e-02 1.187733673904143e-02 1.186890383909906e-02 1.186046520717658e-02 + 1.185202085452967e-02 1.184357078721630e-02 1.183511499765447e-02 1.182665350164435e-02 1.181818631619212e-02 + 1.180971343948878e-02 1.180123487113532e-02 1.179275061618258e-02 1.178426068678883e-02 1.177576508273127e-02 + 1.176726380098327e-02 1.175875685721244e-02 1.175024426443667e-02 1.174172602804813e-02 1.173320214474543e-02 + 1.172467261918110e-02 1.171613746318596e-02 1.170759667473828e-02 1.169905025976067e-02 1.169049823639713e-02 + 1.168194060529573e-02 1.167337736787376e-02 1.166480853596695e-02 1.165623411322526e-02 1.164765410079015e-02 + 1.163906850325271e-02 1.163047732858534e-02 1.162188058835008e-02 1.161327829716097e-02 1.160467045202270e-02 + 1.159605704763531e-02 1.158743810702480e-02 1.157881363156412e-02 1.157018361041755e-02 1.156154807040710e-02 + 1.155290702254676e-02 1.154426045745637e-02 1.153560838867705e-02 1.152695082724772e-02 1.151828777265603e-02 + 1.150961922666123e-02 1.150094519786783e-02 1.149226570234640e-02 1.148358074611148e-02 1.147489033148848e-02 + 1.146619446355201e-02 1.145749315215113e-02 1.144878640491215e-02 1.144007421936342e-02 1.143135660500108e-02 + 1.142263357779597e-02 1.141390514531738e-02 1.140517131031360e-02 1.139643207471360e-02 1.138768744746770e-02 + 1.137893743736065e-02 1.137018205114591e-02 1.136142129485616e-02 1.135265517811921e-02 1.134388371322748e-02 + 1.133510690045416e-02 1.132632474439678e-02 1.131753726104511e-02 1.130874445081251e-02 1.129994631541456e-02 + 1.129114287234474e-02 1.128233413053084e-02 1.127352009524980e-02 1.126470077646612e-02 1.125587617975814e-02 + 1.124704630615814e-02 1.123821115477194e-02 1.122937074388692e-02 1.122052509984340e-02 1.121167421843202e-02 + 1.120281809651728e-02 1.119395674175946e-02 1.118509017235879e-02 1.117621839625571e-02 1.116734140890626e-02 + 1.115845922925729e-02 1.114957187162777e-02 1.114067933143962e-02 1.113178161769016e-02 1.112287874451852e-02 + 1.111397072153178e-02 1.110505754694771e-02 1.109613922373310e-02 1.108721577854856e-02 1.107828721826434e-02 + 1.106935353946150e-02 1.106041475521090e-02 1.105147087839408e-02 1.104252191603393e-02 1.103356786436798e-02 + 1.102460873384026e-02 1.101564454870664e-02 1.100667531791245e-02 1.099770104268406e-02 1.098872172333136e-02 + 1.097973737703280e-02 1.097074801492989e-02 1.096175363206450e-02 1.095275424291130e-02 1.094374986633713e-02 + 1.093474051123777e-02 1.092572618232803e-02 1.091670688531980e-02 1.090768263148204e-02 1.089865342255811e-02 + 1.088961926240844e-02 1.088058018050034e-02 1.087153618780464e-02 1.086248727940419e-02 1.085343346361914e-02 + 1.084437475261139e-02 1.083531115780061e-02 1.082624268419920e-02 1.081716934144050e-02 1.080809114559821e-02 + 1.079900810312026e-02 1.078992022093278e-02 1.078082751184906e-02 1.077172998533364e-02 1.076262764813011e-02 + 1.075352050586474e-02 1.074440857092024e-02 1.073529185762834e-02 1.072617037570664e-02 1.071704413251609e-02 + 1.070791313635956e-02 1.069877740113652e-02 1.068963693244828e-02 1.068049173224424e-02 1.067134181766250e-02 + 1.066218720670161e-02 1.065302791162099e-02 1.064386393117340e-02 1.063469527249458e-02 1.062552195483164e-02 + 1.061634397913101e-02 1.060716135205155e-02 1.059797409807024e-02 1.058878223029125e-02 1.057958575437316e-02 + 1.057038467384018e-02 1.056117900039964e-02 1.055196874533382e-02 1.054275390960051e-02 1.053353451406393e-02 + 1.052431058354873e-02 1.051508211263400e-02 1.050584910821505e-02 1.049661158906674e-02 1.048736956269110e-02 + 1.047812303544552e-02 1.046887201730896e-02 1.045961652742825e-02 1.045035657823219e-02 1.044109217270465e-02 + 1.043182332652317e-02 1.042255005238709e-02 1.041327235213399e-02 1.040399023555266e-02 1.039470371859749e-02 + 1.038541282005145e-02 1.037611754740451e-02 1.036681790639924e-02 1.035751391340543e-02 1.034820558036888e-02 + 1.033889291336949e-02 1.032957591435120e-02 1.032025460242317e-02 1.031092900384275e-02 1.030159911688449e-02 + 1.029226495054825e-02 1.028292652729243e-02 1.027358385071069e-02 1.026423692589549e-02 1.025488576741323e-02 + 1.024553039300053e-02 1.023617081698821e-02 1.022680704740226e-02 1.021743909457171e-02 1.020806697035185e-02 + 1.019869068658227e-02 1.018931025066223e-02 1.017992567348438e-02 1.017053697875713e-02 1.016114417776936e-02 + 1.015174727399650e-02 1.014234627700861e-02 1.013294120450803e-02 1.012353207457940e-02 1.011411888599992e-02 + 1.010470164920459e-02 1.009528038851809e-02 1.008585511657422e-02 1.007642584330934e-02 1.006699257991301e-02 + 1.005755533847607e-02 1.004811412861271e-02 1.003866895746225e-02 1.002921984502842e-02 1.001976681035788e-02 + 1.001030986009602e-02 1.000084900502786e-02 9.991384259025663e-03 9.981915635495017e-03 9.972443141719819e-03 + 9.962966786689603e-03 9.953486595586885e-03 9.944002583039199e-03 9.934514754395770e-03 9.925023122335749e-03 + 9.915527701693664e-03 9.906028505794947e-03 9.896525539473492e-03 9.887018817044350e-03 9.877508364713565e-03 + 9.867994191756903e-03 9.858476305769829e-03 9.848954721540815e-03 9.839429453723526e-03 9.829900512927632e-03 + 9.820367904529967e-03 9.810831649938153e-03 9.801291772225836e-03 9.791748277276684e-03 9.782201174956444e-03 + 9.772650480173910e-03 9.763096209214261e-03 9.753538370443265e-03 9.743976971083063e-03 9.734412038356991e-03 + 9.724843589152831e-03 9.715271627378256e-03 9.705696167153652e-03 9.696117225097080e-03 9.686534815487291e-03 + 9.676948943754414e-03 9.667359623576509e-03 9.657766883492007e-03 9.648170733986708e-03 9.638571181819185e-03 + 9.628968243024477e-03 9.619361933494769e-03 9.609752265452595e-03 9.600139245296816e-03 9.590522893495216e-03 + 9.580903234511828e-03 9.571280275331249e-03 9.561654026946651e-03 9.552024506017841e-03 9.542391727779683e-03 + 9.532755702177183e-03 9.523116437885958e-03 9.513473960404769e-03 9.503828289303256e-03 9.494179431678001e-03 + 9.484527400058637e-03 9.474872210511853e-03 9.465213879778082e-03 9.455552415295903e-03 9.445887829718797e-03 + 9.436220151655284e-03 9.426549394486200e-03 9.416875565725477e-03 9.407198681221749e-03 9.397518758018270e-03 + 9.387835810148322e-03 9.378149843813783e-03 9.368460878589471e-03 9.358768941430739e-03 9.349074041571485e-03 + 9.339376189353358e-03 9.329675400879622e-03 9.319971694171958e-03 9.310265081086165e-03 9.300555568605354e-03 + 9.290843182951191e-03 9.281127946492163e-03 9.271409865969660e-03 9.261688954922952e-03 9.251965230660204e-03 + 9.242238709904914e-03 9.232509401801155e-03 9.222777318787652e-03 9.213042489474691e-03 9.203304930168641e-03 + 9.193564649383718e-03 9.183821661973759e-03 9.174075985705271e-03 9.164327637046287e-03 9.154576623077591e-03 + 9.144822962285418e-03 9.135066683045857e-03 9.125307796249328e-03 9.115546312613307e-03 9.105782249286811e-03 + 9.096015624756502e-03 9.086246452281876e-03 9.076474739187750e-03 9.066700510968253e-03 9.056923792083085e-03 + 9.047144590189744e-03 9.037362919662660e-03 9.027578799121916e-03 9.017792245480461e-03 9.008003268928564e-03 + 8.998211881680073e-03 8.988418113610518e-03 8.978621982540696e-03 8.968823496265647e-03 8.959022672124209e-03 + 8.949219528590024e-03 8.939414081469170e-03 8.929606339864140e-03 8.919796321979990e-03 8.909984056877767e-03 + 8.900169557867096e-03 8.890352835957138e-03 8.880533907981049e-03 8.870712793191068e-03 8.860889506593549e-03 + 8.851064055633283e-03 8.841236465905915e-03 8.831406764712287e-03 8.821574959648875e-03 8.811741064546590e-03 + 8.801905099237244e-03 8.792067082696866e-03 8.782227026145442e-03 8.772384940188230e-03 8.762540855386065e-03 + 8.752694792574688e-03 8.742846759945761e-03 8.732996774006149e-03 8.723144854408183e-03 8.713291019755398e-03 + 8.703435278608567e-03 8.693577647775636e-03 8.683718159456632e-03 8.673856827661263e-03 8.663993662505663e-03 + 8.654128683145933e-03 8.644261909320558e-03 8.634393356690426e-03 8.624523033451901e-03 8.614650964506795e-03 + 8.604777179373340e-03 8.594901686657006e-03 8.585024500118565e-03 8.575145640490715e-03 8.565265126670765e-03 + 8.555382971806235e-03 8.545499187654319e-03 8.535613803632294e-03 8.525726842250045e-03 8.515838312646278e-03 + 8.505948232174527e-03 8.496056621077198e-03 8.486163497882877e-03 8.476268872748003e-03 8.466372762116349e-03 + 8.456475199094931e-03 8.446576199856061e-03 8.436675774300739e-03 8.426773941795081e-03 8.416870722731803e-03 + 8.406966134358667e-03 8.397060186389057e-03 8.387152901959176e-03 8.377244311160385e-03 8.367334425300299e-03 + 8.357423258296441e-03 8.347510830980188e-03 8.337597163605794e-03 8.327682270401855e-03 8.317766161869340e-03 + 8.307848867754637e-03 8.297930413816063e-03 8.288010810083676e-03 8.278090072673102e-03 8.268168221765407e-03 + 8.258245278027963e-03 8.248321253600945e-03 8.238396163758082e-03 8.228470040664376e-03 8.218542903042886e-03 + 8.208614761992156e-03 8.198685637447353e-03 8.188755549837494e-03 8.178824516773604e-03 8.168892549578916e-03 + 8.158959670459199e-03 8.149025910256038e-03 8.139091282816925e-03 8.129155801857130e-03 8.119219487437710e-03 + 8.109282361690508e-03 8.099344440765549e-03 8.089405733754036e-03 8.079466270417937e-03 8.069526079135253e-03 + 8.059585169010465e-03 8.049643556954327e-03 8.039701265060109e-03 8.029758314127560e-03 8.019814717074126e-03 + 8.009870488264625e-03 7.999925660293698e-03 7.989980254561855e-03 7.980034282561204e-03 7.970087763203990e-03 + 7.960140717914167e-03 7.950193166721423e-03 7.940245120231920e-03 7.930296599391260e-03 7.920347637831796e-03 + 7.910398250263278e-03 7.900448449763646e-03 7.890498257622273e-03 7.880547695356892e-03 7.870596780430528e-03 + 7.860645524802819e-03 7.850693955430419e-03 7.840742100859013e-03 7.830789973961963e-03 7.820837591210042e-03 + 7.810884973654219e-03 7.800932143705464e-03 7.790979115476222e-03 7.781025902060369e-03 7.771072537550891e-03 + 7.761119045304192e-03 7.751165435253132e-03 7.741211727248220e-03 7.731257943744334e-03 7.721304105116559e-03 + 7.711350222852130e-03 7.701396316987202e-03 7.691442422531397e-03 7.681488555826352e-03 7.671534729460651e-03 + 7.661580965493510e-03 7.651627286213397e-03 7.641673709645761e-03 7.631720246474624e-03 7.621766924002147e-03 + 7.611813774300424e-03 7.601860809420407e-03 7.591908045212342e-03 7.581955503946372e-03 7.572003208680656e-03 + 7.562051174726026e-03 7.552099414296815e-03 7.542147961065804e-03 7.532196840825635e-03 7.522246063843738e-03 + 7.512295650102864e-03 7.502345622322073e-03 7.492396000716249e-03 7.482446799189802e-03 7.472498037196947e-03 + 7.462549747897286e-03 7.452601950331629e-03 7.442654658211039e-03 7.432707892744488e-03 7.422761676416634e-03 + 7.412816028768508e-03 7.402870961455420e-03 7.392926500328647e-03 7.382982678429822e-03 7.373039508794957e-03 + 7.363097007225734e-03 7.353155196864952e-03 7.343214100532815e-03 7.333273734782904e-03 7.323334112197604e-03 + 7.313395265021593e-03 7.303457220900774e-03 7.293519991033275e-03 7.283583594600794e-03 7.273648054943689e-03 + 7.263713394446934e-03 7.253779626580373e-03 7.243846768480717e-03 7.233914855435080e-03 7.223983908518886e-03 + 7.214053940460562e-03 7.204124972417771e-03 7.194197027491048e-03 7.184270126394881e-03 7.174344280726286e-03 + 7.164419514784642e-03 7.154495863236941e-03 7.144573340914020e-03 7.134651962993328e-03 7.124731752265264e-03 + 7.114812732100897e-03 7.104894920638768e-03 7.094978330575343e-03 7.085062992246606e-03 7.075148934793896e-03 + 7.065236171017366e-03 7.055324719420953e-03 7.045414603125002e-03 7.035505845669364e-03 7.025598461448587e-03 + 7.015692466009597e-03 7.005787894887785e-03 6.995884771371198e-03 6.985983107977662e-03 6.976082925249031e-03 + 6.966184246523457e-03 6.956287093797063e-03 6.946391479271966e-03 6.936497425652844e-03 6.926604968509339e-03 + 6.916714124366364e-03 6.906824907731460e-03 6.896937340931554e-03 6.887051448149962e-03 6.877167248699087e-03 + 6.867284753979424e-03 6.857403994050719e-03 6.847525000658012e-03 6.837647785670592e-03 6.827772367409923e-03 + 6.817898770109592e-03 6.808027016717447e-03 6.798157122708669e-03 6.788289103240300e-03 6.778422992931511e-03 + 6.768558816798320e-03 6.758696587557012e-03 6.748836325648165e-03 6.738978054348659e-03 6.729121795949092e-03 + 6.719267563927435e-03 6.709415379633438e-03 6.699565278400954e-03 6.689717278120727e-03 6.679871393303892e-03 + 6.670027647355804e-03 6.660186063525513e-03 6.650346660981845e-03 6.640509452367944e-03 6.630674466396449e-03 + 6.620841735868644e-03 6.611011273308148e-03 6.601183096392477e-03 6.591357229649247e-03 6.581533696087914e-03 + 6.571712512145987e-03 6.561893692372858e-03 6.552077270290561e-03 6.542263272668194e-03 6.532451712617284e-03 + 6.522642609933696e-03 6.512835987879551e-03 6.503031869590782e-03 6.493230268870023e-03 6.483431205156500e-03 + 6.473634714105858e-03 6.463840816056773e-03 6.454049525191551e-03 6.444260863046832e-03 6.434474853362258e-03 + 6.424691517208967e-03 6.414910866799055e-03 6.405132928351729e-03 6.395357735592168e-03 6.385585303753894e-03 + 6.375815649717760e-03 6.366048796411005e-03 6.356284767471845e-03 6.346523580477974e-03 6.336765248927921e-03 + 6.327009805730009e-03 6.317257279178600e-03 6.307507681412946e-03 6.297761032647583e-03 6.288017356862164e-03 + 6.278276676438099e-03 6.268539005625230e-03 6.258804362658888e-03 6.249072783406197e-03 6.239344289504087e-03 + 6.229618894349891e-03 6.219896619699197e-03 6.210177489065160e-03 6.200461523673893e-03 6.190748736475173e-03 + 6.181039151999554e-03 6.171332804226705e-03 6.161629709556120e-03 6.151929884103313e-03 6.142233350147177e-03 + 6.132540131644584e-03 6.122850247356021e-03 6.113163710170625e-03 6.103480551213418e-03 6.093800800141988e-03 + 6.084124469547710e-03 6.074451578566364e-03 6.064782150905211e-03 6.055116209626953e-03 6.045453769994722e-03 + 6.035794848740185e-03 6.026139480474754e-03 6.016487688229946e-03 6.006839485237500e-03 5.997194892776407e-03 + 5.987553934341584e-03 5.977916631713333e-03 5.968282997802390e-03 5.958653055343909e-03 5.949026838944569e-03 + 5.939404365780911e-03 5.929785651209331e-03 5.920170717549854e-03 5.910559587858684e-03 5.900952281370824e-03 + 5.891348811852907e-03 5.881749208142844e-03 5.872153500225121e-03 5.862561701850070e-03 5.852973831530551e-03 + 5.843389912374926e-03 5.833809966833203e-03 5.824234011006907e-03 5.814662060999971e-03 5.805094150375409e-03 + 5.795530303292347e-03 5.785970532524381e-03 5.776414859211175e-03 5.766863306294991e-03 5.757315894674337e-03 + 5.747772638659374e-03 5.738233559732430e-03 5.728698691311226e-03 5.719168051719483e-03 5.709641656042984e-03 + 5.700119526414031e-03 5.690601685377130e-03 5.681088152168133e-03 5.671578940158426e-03 5.662074076665564e-03 + 5.652573592801510e-03 5.643077502877857e-03 5.633585823810169e-03 5.624098577633230e-03 5.614615788052954e-03 + 5.605137471831965e-03 5.595663642810052e-03 5.586194333773162e-03 5.576729570469775e-03 5.567269364923084e-03 + 5.557813736696195e-03 5.548362708847973e-03 5.538916303890826e-03 5.529474534822445e-03 5.520037420561356e-03 + 5.510604996543656e-03 5.501177281279281e-03 5.491754287530179e-03 5.482336037985177e-03 5.472922555453679e-03 + 5.463513859119052e-03 5.454109961206277e-03 5.444710887376439e-03 5.435316669896643e-03 5.425927322428118e-03 + 5.416542861379438e-03 5.407163309793553e-03 5.397788689388935e-03 5.388419016905312e-03 5.379054306533677e-03 + 5.369694588817857e-03 5.360339890208465e-03 5.350990223294556e-03 5.341645606645782e-03 5.332306062415535e-03 + 5.322971612709802e-03 5.313642271564683e-03 5.304318056285795e-03 5.294999000250198e-03 5.285685123732157e-03 + 5.276376439554206e-03 5.267072968338082e-03 5.257774732353860e-03 5.248481751732874e-03 5.239194038865901e-03 + 5.229911616755654e-03 5.220634516968343e-03 5.211362754853240e-03 5.202096346092698e-03 5.192835312362628e-03 + 5.183579674966123e-03 5.174329450821569e-03 5.165084652994387e-03 5.155845310548846e-03 5.146611450951191e-03 + 5.137383086378589e-03 5.128160234647254e-03 5.118942917508807e-03 5.109731156137037e-03 5.100524965000140e-03 + 5.091324360054826e-03 5.082129373049942e-03 5.072940025255639e-03 5.063756329149303e-03 5.054578304260502e-03 + 5.045405972366202e-03 5.036239353680495e-03 5.027078459118392e-03 5.017923310123222e-03 5.008773940483098e-03 + 4.999630364315774e-03 4.990492594829337e-03 4.981360654331298e-03 4.972234563790402e-03 4.963114339923834e-03 + 4.953999995020500e-03 4.944891556281875e-03 4.935789051765770e-03 4.926692493194353e-03 4.917601897109304e-03 + 4.908517284729773e-03 4.899438676825864e-03 4.890366088012707e-03 4.881299532722441e-03 4.872239041569468e-03 + 4.863184636415129e-03 4.854136328649667e-03 4.845094137498133e-03 4.836058083872883e-03 4.827028186746977e-03 + 4.818004458681770e-03 4.808986918914880e-03 4.799975597861264e-03 4.790970512088721e-03 4.781971675128856e-03 + 4.772979106768043e-03 4.763992827229902e-03 4.755012853632298e-03 4.746039197549013e-03 4.737071883993436e-03 + 4.728110941197518e-03 4.719156380399636e-03 4.710208217424537e-03 4.701266473663848e-03 4.692331168251817e-03 + 4.683402315353613e-03 4.674479928383867e-03 4.665564036556664e-03 4.656654662394768e-03 4.647751816371710e-03 + 4.638855516650367e-03 4.629965783672686e-03 4.621082635909843e-03 4.612206084994354e-03 4.603336148102954e-03 + 4.594472856159325e-03 4.585616225744373e-03 4.576766268345947e-03 4.567923003199363e-03 4.559086450091263e-03 + 4.550256626033265e-03 4.541433541986122e-03 4.532617220194613e-03 4.523807688535670e-03 4.515004959722835e-03 + 4.506209047920159e-03 4.497419972185719e-03 4.488637751873642e-03 4.479862401381760e-03 4.471093932025212e-03 + 4.462332371280023e-03 4.453577742726973e-03 4.444830056583276e-03 4.436089328917552e-03 4.427355578888171e-03 + 4.418628824988929e-03 4.409909078668640e-03 4.401196354933857e-03 4.392490684030716e-03 4.383792083151365e-03 + 4.375100562120779e-03 4.366416138313078e-03 4.357738831525952e-03 4.349068659591380e-03 4.340405630957790e-03 + 4.331749765364269e-03 4.323101091949651e-03 4.314459623208851e-03 4.305825371349630e-03 4.297198354190413e-03 + 4.288578590720092e-03 4.279966095343473e-03 4.271360877578565e-03 4.262762963097229e-03 4.254172376200769e-03 + 4.245589126222103e-03 4.237013227440267e-03 4.228444697962537e-03 4.219883556022182e-03 4.211329813254019e-03 + 4.202783482548908e-03 4.194244591796649e-03 4.185713159116739e-03 4.177189194188086e-03 4.168672712320958e-03 + 4.160163731860882e-03 4.151662270610665e-03 4.143168336754119e-03 4.134681947397693e-03 4.126203130809124e-03 + 4.117731899759874e-03 4.109268265260960e-03 4.100812244167818e-03 4.092363854125291e-03 4.083923109325604e-03 + 4.075490018959178e-03 4.067064605609816e-03 4.058646892914489e-03 4.050236890474988e-03 4.041834611549669e-03 + 4.033440073099425e-03 4.025053291802670e-03 4.016674279190388e-03 4.008303046950822e-03 3.999939621219669e-03 + 3.991584019864232e-03 3.983236251035503e-03 3.974896329846703e-03 3.966564273682151e-03 3.958240098637734e-03 + 3.949923812376889e-03 3.941615430268695e-03 3.933314980874398e-03 3.925022475755094e-03 3.916737923312982e-03 + 3.908461340476090e-03 3.900192744628528e-03 3.891932149238224e-03 3.883679560814138e-03 3.875435000263637e-03 + 3.867198492508630e-03 3.858970045729460e-03 3.850749670926077e-03 3.842537384120139e-03 3.834333202377867e-03 + 3.826137136626801e-03 3.817949195349815e-03 3.809769403427763e-03 3.801597779587331e-03 3.793434330750140e-03 + 3.785279069923421e-03 3.777132013373491e-03 3.768993177352847e-03 3.760862568898475e-03 3.752740200334732e-03 + 3.744626099044159e-03 3.736520277340854e-03 3.728422742215669e-03 3.720333508785603e-03 3.712252593018920e-03 + 3.704180008090329e-03 3.696115760631814e-03 3.688059868276574e-03 3.680012354362612e-03 3.671973228138760e-03 + 3.663942499526064e-03 3.655920182566113e-03 3.647906292785413e-03 3.639900840938008e-03 3.631903834337251e-03 + 3.623915295229000e-03 3.615935242250758e-03 3.607963681828620e-03 3.600000626081414e-03 3.592046089865790e-03 + 3.584100087061132e-03 3.576162625323692e-03 3.568233715505030e-03 3.560313381862740e-03 3.552401637255495e-03 + 3.544498488187401e-03 3.536603947761108e-03 3.528718030587010e-03 3.520840749407267e-03 3.512972109975055e-03 + 3.505112127471606e-03 3.497260824593953e-03 3.489418209893856e-03 3.481584291815555e-03 3.473759083632174e-03 + 3.465942599385497e-03 3.458134849136788e-03 3.450335838875430e-03 3.442545588595099e-03 3.434764116831954e-03 + 3.426991428902786e-03 3.419227535146918e-03 3.411472449427477e-03 3.403726185233638e-03 3.395988749408295e-03 + 3.388260149964055e-03 3.380540409506120e-03 3.372829541439428e-03 3.365127551327278e-03 3.357434450344299e-03 + 3.349750251864305e-03 3.342074968176267e-03 3.334408603200120e-03 3.326751169911567e-03 3.319102691777129e-03 + 3.311463175183513e-03 3.303832626198486e-03 3.296211059114474e-03 3.288598486024217e-03 3.280994915398627e-03 + 3.273400352769854e-03 3.265814815709593e-03 3.258238322074859e-03 3.250670876135365e-03 3.243112486983179e-03 + 3.235563167624456e-03 3.228022929479646e-03 3.220491779361285e-03 3.212969724272006e-03 3.205456783570964e-03 + 3.197952970426890e-03 3.190458290104943e-03 3.182972751519780e-03 3.175496366385864e-03 3.168029146873250e-03 + 3.160571096621216e-03 3.153122225636278e-03 3.145682555500280e-03 3.138252093348739e-03 3.130830843615626e-03 + 3.123418817816768e-03 3.116016027518625e-03 3.108622481356378e-03 3.101238183229207e-03 3.093863147897005e-03 + 3.086497392737253e-03 3.079140921752824e-03 3.071793741871484e-03 3.064455864252268e-03 3.057127299904285e-03 + 3.049808055146270e-03 3.042498134791386e-03 3.035197556645182e-03 3.027906333235584e-03 3.020624467536793e-03 + 3.013351968343262e-03 3.006088846580162e-03 2.998835112089031e-03 2.991590768047797e-03 2.984355822285627e-03 + 2.977130294631421e-03 2.969914192263928e-03 2.962707518230782e-03 2.955510282832787e-03 2.948322496039390e-03 + 2.941144165204636e-03 2.933975293458325e-03 2.926815893073326e-03 2.919665980487675e-03 2.912525559332239e-03 + 2.905394635071103e-03 2.898273217656210e-03 2.891161316595433e-03 2.884058936906487e-03 2.876966081111658e-03 + 2.869882766189157e-03 2.862809005041444e-03 2.855744798230348e-03 2.848690153100023e-03 2.841645079496137e-03 + 2.834609585256340e-03 2.827583673848185e-03 2.820567351490293e-03 2.813560634590312e-03 2.806563530531927e-03 + 2.799576041999259e-03 2.792598177467573e-03 2.785629945309582e-03 2.778671351607254e-03 2.771722398039775e-03 + 2.764783095014263e-03 2.757853459091809e-03 2.750933492568204e-03 2.744023198517816e-03 2.737122585640385e-03 + 2.730231662189404e-03 2.723350432970404e-03 2.716478899800820e-03 2.709617075896625e-03 2.702764973241287e-03 + 2.695922593060963e-03 2.689089940152226e-03 2.682267022316270e-03 2.675453847914084e-03 2.668650418902243e-03 + 2.661856738145520e-03 2.655072822033232e-03 2.648298678030288e-03 2.641534306206961e-03 2.634779712258937e-03 + 2.628034904058933e-03 2.621299888635041e-03 2.614574665771587e-03 2.607859242632423e-03 2.601153634957146e-03 + 2.594457844452072e-03 2.587771872555374e-03 2.581095727373358e-03 2.574429415266960e-03 2.567772939497474e-03 + 2.561126300777387e-03 2.554489510835181e-03 2.547862581281132e-03 2.541245510713479e-03 2.534638303078699e-03 + 2.528040966193904e-03 2.521453505493298e-03 2.514875922225054e-03 2.508308218200437e-03 2.501750407164573e-03 + 2.495202496081871e-03 2.488664484118587e-03 2.482136376281468e-03 2.475618178705269e-03 2.469109895957427e-03 + 2.462611527825166e-03 2.456123079328407e-03 2.449644563898542e-03 2.443175984269443e-03 2.436717340526153e-03 + 2.430268636964234e-03 2.423829879853036e-03 2.417401073311931e-03 2.410982215756923e-03 2.404573315098301e-03 + 2.398174382071132e-03 2.391785416912405e-03 2.385406421217447e-03 2.379037399546287e-03 2.372678357701878e-03 + 2.366329296305038e-03 2.359990214012962e-03 2.353661123666590e-03 2.347342032379030e-03 2.341032936953993e-03 + 2.334733840455562e-03 2.328444748068140e-03 2.322165663885325e-03 2.315896586946297e-03 2.309637519733881e-03 + 2.303388473653537e-03 2.297149451184649e-03 2.290920451297887e-03 2.284701476927273e-03 2.278492533074980e-03 + 2.272293622898508e-03 2.266104742447669e-03 2.259925897918875e-03 2.253757100645447e-03 2.247598348619136e-03 + 2.241449641489242e-03 2.235310983406359e-03 2.229182378556762e-03 2.223063827011661e-03 2.216955326220785e-03 + 2.210856885615230e-03 2.204768511855369e-03 2.198690202073136e-03 2.192621957162963e-03 2.186563780523993e-03 + 2.180515675851768e-03 2.174477640514074e-03 2.168449674335647e-03 2.162431789038673e-03 2.156423986093689e-03 + 2.150426261719325e-03 2.144438618887063e-03 2.138461061015507e-03 2.132493589319895e-03 2.126536199820428e-03 + 2.120588896234097e-03 2.114651688169617e-03 2.108724573757348e-03 2.102807551461262e-03 2.096900623831682e-03 + 2.091003792760502e-03 2.085117057433877e-03 2.079240415028002e-03 2.073373872799373e-03 2.067517436442142e-03 + 2.061671101563673e-03 2.055834867994772e-03 2.050008738194652e-03 2.044192713868095e-03 2.038386792128391e-03 + 2.032590971333173e-03 2.026805260662020e-03 2.021029661329869e-03 2.015264168518725e-03 2.009508783500123e-03 + 2.003763508166370e-03 1.998028342654997e-03 1.992303282805534e-03 1.986588330078225e-03 1.980883492165770e-03 + 1.975188767039759e-03 1.969504151730439e-03 1.963829647004430e-03 1.958165254218237e-03 1.952510971963634e-03 + 1.946866794889960e-03 1.941232728159857e-03 1.935608777640074e-03 1.929994938329363e-03 1.924391207914093e-03 + 1.918797587114099e-03 1.913214077256622e-03 1.907640674795718e-03 1.902077375557082e-03 1.896524186430478e-03 + 1.890981108949087e-03 1.885448138032121e-03 1.879925272541809e-03 1.874412513138102e-03 1.868909859971047e-03 + 1.863417306389931e-03 1.857934851379391e-03 1.852462503653811e-03 1.847000259754348e-03 1.841548114039762e-03 + 1.836106066817225e-03 1.830674118529854e-03 1.825252266916765e-03 1.819840505202892e-03 1.814438836319749e-03 + 1.809047265638602e-03 1.803665787133681e-03 1.798294397101445e-03 1.792933095135866e-03 1.787581880369786e-03 + 1.782240749155103e-03 1.776909697172910e-03 1.771588728179710e-03 1.766277842767543e-03 1.760977035675204e-03 + 1.755686304337379e-03 1.750405647484752e-03 1.745135063548007e-03 1.739874546386865e-03 1.734624093589025e-03 + 1.729383711586370e-03 1.724153396315838e-03 1.718933140719367e-03 1.713722944309894e-03 1.708522806163372e-03 + 1.703332722978997e-03 1.698152687791741e-03 1.692982700783420e-03 1.687822765464940e-03 1.682672875794938e-03 + 1.677533027054054e-03 1.672403217813849e-03 1.667283446525115e-03 1.662173708173832e-03 1.657073995739192e-03 + 1.651984312946546e-03 1.646904660364047e-03 1.641835029387390e-03 1.636775416468660e-03 1.631725820220986e-03 + 1.626686238226539e-03 1.621656663682810e-03 1.616637091835148e-03 1.611627526662728e-03 1.606627964700548e-03 + 1.601638398623349e-03 1.596658825754688e-03 1.591689243408400e-03 1.586729647378206e-03 1.581780030725023e-03 + 1.576840391697073e-03 1.571910732264727e-03 1.566991046477593e-03 1.562081328242421e-03 1.557181574037859e-03 + 1.552291781114454e-03 1.547411944138861e-03 1.542542055154552e-03 1.537682115822498e-03 1.532832126356767e-03 + 1.527992077470792e-03 1.523161963747274e-03 1.518341782422417e-03 1.513531530571088e-03 1.508731200913292e-03 + 1.503940786876937e-03 1.499160290964809e-03 1.494389709200610e-03 1.489629032745148e-03 1.484878257820629e-03 + 1.480137381279299e-03 1.475406398389162e-03 1.470685299850305e-03 1.465974082141071e-03 1.461272748080975e-03 + 1.456581290224651e-03 1.451899700275850e-03 1.447227974089072e-03 1.442566108566721e-03 1.437914097994959e-03 + 1.433271932504185e-03 1.428639611034298e-03 1.424017133356480e-03 1.419404490680891e-03 1.414801676491448e-03 + 1.410208686553135e-03 1.405625516589791e-03 1.401052158609908e-03 1.396488604511052e-03 1.391934855472548e-03 + 1.387390907364871e-03 1.382856750165021e-03 1.378332378783991e-03 1.373817788890047e-03 1.369312974750468e-03 + 1.364817927255285e-03 1.360332641059443e-03 1.355857116711623e-03 1.351391347026849e-03 1.346935323100728e-03 + 1.342489039284644e-03 1.338052491255308e-03 1.333625672740901e-03 1.329208572800934e-03 1.324801188462658e-03 + 1.320403519143769e-03 1.316015555822497e-03 1.311637290544184e-03 1.307268717472159e-03 1.302909831116118e-03 + 1.298560623326278e-03 1.294221085253892e-03 1.289891216124110e-03 1.285571011566486e-03 1.281260461060531e-03 + 1.276959557618139e-03 1.272668295740209e-03 1.268386669608614e-03 1.264114669618853e-03 1.259852288349743e-03 + 1.255599524419093e-03 1.251356371085625e-03 1.247122819189722e-03 1.242898861265979e-03 1.238684491359706e-03 + 1.234479702756933e-03 1.230284484841117e-03 1.226098832748256e-03 1.221922744434409e-03 1.217756210326720e-03 + 1.213599221362577e-03 1.209451770765583e-03 1.205313852635065e-03 1.201185458480448e-03 1.197066577985755e-03 + 1.192957208640432e-03 1.188857345511447e-03 1.184766976969275e-03 1.180686095693037e-03 1.176614695732404e-03 + 1.172552769621902e-03 1.168500307042727e-03 1.164457299537124e-03 1.160423745213695e-03 1.156399636114517e-03 + 1.152384961360659e-03 1.148379714206853e-03 1.144383887440774e-03 1.140397472403066e-03 1.136420458871837e-03 + 1.132452840804467e-03 1.128494614815977e-03 1.124545770440235e-03 1.120606297984056e-03 1.116676190709075e-03 + 1.112755440623707e-03 1.108844038267568e-03 1.104941973598277e-03 1.101049242215234e-03 1.097165838523137e-03 + 1.093291750933755e-03 1.089426970747485e-03 1.085571490835547e-03 1.081725303225761e-03 1.077888396808512e-03 + 1.074060761522748e-03 1.070242395009795e-03 1.066433289590875e-03 1.062633433332422e-03 1.058842817553080e-03 + 1.055061434373011e-03 1.051289275348505e-03 1.047526329409495e-03 1.043772588486000e-03 1.040028047931513e-03 + 1.036292698203525e-03 1.032566529042292e-03 1.028849531681517e-03 1.025141697676040e-03 1.021443017315572e-03 + 1.017753479165712e-03 1.014073077446178e-03 1.010401806565697e-03 1.006739654876394e-03 1.003086612170896e-03 + 9.994426698862881e-04 9.958078198244436e-04 9.921820510029489e-04 9.885653522799815e-04 9.849577193159157e-04 + 9.813591440739670e-04 9.777696142556011e-04 9.741891204675346e-04 9.706176542328248e-04 9.670552065524777e-04 + 9.635017651512704e-04 9.599573207794398e-04 9.564218691437683e-04 9.528953995809905e-04 9.493779002331982e-04 + 9.458693621672339e-04 9.423697766254766e-04 9.388791334439822e-04 9.353974200435674e-04 9.319246293443443e-04 + 9.284607555133966e-04 9.250057861419034e-04 9.215597102726345e-04 9.181225189615299e-04 9.146942031524666e-04 + 9.112747514066988e-04 9.078641516289516e-04 9.044623983719834e-04 9.010694834242857e-04 8.976853937790154e-04 + 8.943101192935385e-04 8.909436508104612e-04 8.875859786393426e-04 8.842370902316334e-04 8.808969751654204e-04 + 8.775656281905130e-04 8.742430385918343e-04 8.709291937982416e-04 8.676240840155020e-04 8.643276998573467e-04 + 8.610400308208924e-04 8.577610636611962e-04 8.544907899714905e-04 8.512292035626933e-04 8.479762917886125e-04 + 8.447320428739457e-04 8.414964471843920e-04 8.382694949325988e-04 8.350511744137459e-04 8.318414728923707e-04 + 8.286403836395943e-04 8.254478982373706e-04 8.222640032931049e-04 8.190886878204532e-04 8.159219419987107e-04 + 8.127637556794064e-04 8.096141160179775e-04 8.064730115089579e-04 8.033404360997527e-04 8.002163789609624e-04 + 7.971008268111541e-04 7.939937692507287e-04 7.908951962853333e-04 7.878050969946667e-04 7.847234577702081e-04 + 7.816502689905088e-04 7.785855239466778e-04 7.755292098590464e-04 7.724813142232633e-04 7.694418267842021e-04 + 7.664107372089749e-04 7.633880335334087e-04 7.603737023812342e-04 7.573677358642847e-04 7.543701253849379e-04 + 7.513808572285544e-04 7.483999196962093e-04 7.454273024026923e-04 7.424629947358947e-04 7.395069836664074e-04 + 7.365592567622367e-04 7.336198070174806e-04 7.306886236388442e-04 7.277656929130117e-04 7.248510036837761e-04 + 7.219445453636994e-04 7.190463067357669e-04 7.161562739946586e-04 7.132744364309508e-04 7.104007867132190e-04 + 7.075353120392018e-04 7.046779992824802e-04 7.018288375861283e-04 6.989878161882759e-04 6.961549229362052e-04 + 6.933301438820412e-04 6.905134700383686e-04 6.877048926511914e-04 6.849043978549774e-04 6.821119732944710e-04 + 6.793276080246700e-04 6.765512910034699e-04 6.737830090783149e-04 6.710227490756584e-04 6.682705030776122e-04 + 6.655262603091742e-04 6.627900067379164e-04 6.600617305924390e-04 6.573414207627890e-04 6.546290656955580e-04 + 6.519246513982958e-04 6.492281662548372e-04 6.465396024423735e-04 6.438589471596415e-04 6.411861867028291e-04 + 6.385213096762252e-04 6.358643049114898e-04 6.332151601148890e-04 6.305738609661260e-04 6.279403974635571e-04 + 6.253147606410383e-04 6.226969365620930e-04 6.200869123319087e-04 6.174846765257772e-04 6.148902176504979e-04 + 6.123035224628875e-04 6.097245772740803e-04 6.071533733723410e-04 6.045898999580564e-04 6.020341426510520e-04 + 5.994860891934145e-04 5.969457280748620e-04 5.944130474177512e-04 5.918880332091087e-04 5.893706730594447e-04 + 5.868609584534629e-04 5.843588766665737e-04 5.818644136544619e-04 5.793775576682911e-04 5.768982970317317e-04 + 5.744266191686133e-04 5.719625097277512e-04 5.695059578510202e-04 5.670569542308351e-04 5.646154849082753e-04 + 5.621815365284883e-04 5.597550972743215e-04 5.573361553519681e-04 5.549246974872960e-04 5.525207095632259e-04 + 5.501241820142805e-04 5.477351040267441e-04 5.453534610951853e-04 5.429792405131840e-04 5.406124304314462e-04 + 5.382530187447214e-04 5.359009913605971e-04 5.335563351904396e-04 5.312190411682156e-04 5.288890968140364e-04 + 5.265664878332606e-04 5.242512018091515e-04 5.219432267978740e-04 5.196425502978362e-04 5.173491576918976e-04 + 5.150630373381158e-04 5.127841797796618e-04 5.105125710953982e-04 5.082481974966798e-04 5.059910467933278e-04 + 5.037411069671739e-04 5.014983647643853e-04 4.992628057533249e-04 4.970344196034297e-04 4.948131954905409e-04 + 4.925991188614672e-04 4.903921766298550e-04 4.881923566574878e-04 4.859996466359864e-04 4.838140324815327e-04 + 4.816355005995136e-04 4.794640414647377e-04 4.772996426854546e-04 4.751422896755638e-04 4.729919697488023e-04 + 4.708486707166207e-04 4.687123799720691e-04 4.665830828962369e-04 4.644607671738101e-04 4.623454230212830e-04 + 4.602370366779194e-04 4.581355941018685e-04 4.560410828358216e-04 4.539534906171381e-04 4.518728041821612e-04 + 4.497990089033435e-04 4.477320938149108e-04 4.456720481170030e-04 4.436188572707195e-04 4.415725078895158e-04 + 4.395329875976124e-04 4.375002838422590e-04 4.354743826722610e-04 4.334552702201095e-04 4.314429363226086e-04 + 4.294373687059989e-04 4.274385527576286e-04 4.254464755700176e-04 4.234611247199864e-04 4.214824874479911e-04 + 4.195105492176435e-04 4.175452972239935e-04 4.155867214135851e-04 4.136348082067204e-04 4.116895433467350e-04 + 4.097509141339746e-04 4.078189081189173e-04 4.058935120995524e-04 4.039747114386321e-04 4.020624945699733e-04 + 4.001568506324645e-04 3.982577652062802e-04 3.963652246433777e-04 3.944792163840573e-04 3.925997278951708e-04 + 3.907267452820787e-04 3.888602542761684e-04 3.870002443827855e-04 3.851467035420477e-04 3.832996170232135e-04 + 3.814589716941001e-04 3.796247550166885e-04 3.777969542187427e-04 3.759755548771444e-04 3.741605437648361e-04 + 3.723519105456335e-04 3.705496418343326e-04 3.687537232626712e-04 3.669641420580878e-04 3.651808856652343e-04 + 3.634039408935104e-04 3.616332930379869e-04 3.598689301103073e-04 3.581108413327368e-04 3.563590123412032e-04 + 3.546134293224166e-04 3.528740796868620e-04 3.511409507353364e-04 3.494140287293094e-04 3.476932993968030e-04 + 3.459787517007610e-04 3.442703736842207e-04 3.425681507579447e-04 3.408720696736798e-04 3.391821178070990e-04 + 3.374982823340253e-04 3.358205489790399e-04 3.341489042294683e-04 3.324833375391577e-04 3.308238358267097e-04 + 3.291703846864138e-04 3.275229711235071e-04 3.258815824857735e-04 3.242462057388915e-04 3.226168264116891e-04 + 3.209934320343741e-04 3.193760116170641e-04 3.177645512713499e-04 3.161590371207419e-04 3.145594562690266e-04 + 3.129657961319975e-04 3.113780432227079e-04 3.097961831114660e-04 3.082202043645004e-04 3.066500952444524e-04 + 3.050858414009347e-04 3.035274294402161e-04 3.019748466354355e-04 3.004280802320956e-04 2.988871162192853e-04 + 2.973519409077311e-04 2.958225434173786e-04 2.942989109163873e-04 2.927810290941792e-04 2.912688849504159e-04 + 2.897624658129895e-04 2.882617587216531e-04 2.867667493909568e-04 2.852774250910157e-04 2.837937747837379e-04 + 2.823157848000407e-04 2.808434412718301e-04 2.793767313619733e-04 2.779156424588856e-04 2.764601612241833e-04 + 2.750102732798498e-04 2.735659669757869e-04 2.721272307826111e-04 2.706940504177620e-04 2.692664125118005e-04 + 2.678443044384447e-04 2.664277133531666e-04 2.650166254907073e-04 2.636110271946842e-04 2.622109073508727e-04 + 2.608162534146021e-04 2.594270512444905e-04 2.580432877716125e-04 2.566649503351083e-04 2.552920261463284e-04 + 2.539245011192165e-04 2.525623623480746e-04 2.512055988243127e-04 2.498541971146173e-04 2.485081433825346e-04 + 2.471674249383843e-04 2.458320291468696e-04 2.445019428356345e-04 2.431771519464020e-04 2.418576445147758e-04 + 2.405434090455539e-04 2.392344316436903e-04 2.379306989304936e-04 2.366321982706708e-04 2.353389171046539e-04 + 2.340508418959193e-04 2.327679588365217e-04 2.314902568213100e-04 2.302177235947735e-04 2.289503450019842e-04 + 2.276881081822984e-04 2.264310006278554e-04 2.251790095285085e-04 2.239321211178975e-04 2.226903224828012e-04 + 2.214536025966827e-04 2.202219483393713e-04 2.189953459440866e-04 2.177737827672056e-04 2.165572463172210e-04 + 2.153457236927424e-04 2.141392010208329e-04 2.129376661694288e-04 2.117411078009580e-04 2.105495123800498e-04 + 2.093628666254358e-04 2.081811579562958e-04 2.070043738711933e-04 2.058325011765904e-04 2.046655262979033e-04 + 2.035034378928387e-04 2.023462239716796e-04 2.011938707312936e-04 2.000463653117907e-04 1.989036953143001e-04 + 1.977658482429478e-04 1.966328105707422e-04 1.955045692837424e-04 1.943811134060168e-04 1.932624302421221e-04 + 1.921485062157297e-04 1.910393287336514e-04 1.899348854684124e-04 1.888351638115297e-04 1.877401500482506e-04 + 1.866498319949601e-04 1.855641985831636e-04 1.844832365124926e-04 1.834069326310023e-04 1.823352746298841e-04 + 1.812682501147551e-04 1.802058461455679e-04 1.791480493724017e-04 1.780948483852737e-04 1.770462314872484e-04 + 1.760021851824818e-04 1.749626967491274e-04 1.739277539439587e-04 1.728973444305181e-04 1.718714550470096e-04 + 1.708500728855944e-04 1.698331869571933e-04 1.688207849549946e-04 1.678128535713188e-04 1.668093803524777e-04 + 1.658103531111011e-04 1.648157594964937e-04 1.638255861976382e-04 1.628398210066413e-04 1.618584529166454e-04 + 1.608814690931768e-04 1.599088565742865e-04 1.589406031206167e-04 1.579766966509897e-04 1.570171246224424e-04 + 1.560618738321770e-04 1.551109328208930e-04 1.541642902068764e-04 1.532219328717612e-04 1.522838482661923e-04 + 1.513500243337891e-04 1.504204489591066e-04 1.494951093483970e-04 1.485739927662749e-04 1.476570882997282e-04 + 1.467443839796364e-04 1.458358667202351e-04 1.449315243896633e-04 1.440313449862068e-04 1.431353162531848e-04 + 1.422434254066872e-04 1.413556604013758e-04 1.404720102486319e-04 1.395924625558734e-04 1.387170046489957e-04 + 1.378456244430427e-04 1.369783100559194e-04 1.361150493062282e-04 1.352558293490397e-04 1.344006387024136e-04 + 1.335494662293593e-04 1.327022993333140e-04 1.318591256583063e-04 1.310199332689028e-04 1.301847103692820e-04 + 1.293534446013900e-04 1.285261234477974e-04 1.277027359881715e-04 1.268832706365997e-04 1.260677147052468e-04 + 1.252560562359565e-04 1.244482834803957e-04 1.236443845356053e-04 1.228443469528238e-04 1.220481588198588e-04 + 1.212558093699401e-04 1.204672865809282e-04 1.196825780471873e-04 1.189016720308052e-04 1.181245568536085e-04 + 1.173512205995857e-04 1.165816508484800e-04 1.158158362776897e-04 1.150537660210759e-04 1.142954277590100e-04 + 1.135408094568152e-04 1.127898995954114e-04 1.120426864956402e-04 1.112991581353023e-04 1.105593024093304e-04 + 1.098231085283700e-04 1.090905652465313e-04 1.083616601800625e-04 1.076363816399760e-04 1.069147182196831e-04 + 1.061966583782502e-04 1.054821899944032e-04 1.047713013150353e-04 1.040639818640637e-04 1.033602200082437e-04 + 1.026600035826387e-04 1.019633211976323e-04 1.012701615275282e-04 1.005805130149820e-04 9.989436355203399e-05 + 9.921170194739147e-05 9.853251765411631e-05 9.785679881782247e-05 9.718453366352614e-05 9.651571091087277e-05 + 9.585031930594751e-05 9.518834724915350e-05 9.452978284703146e-05 9.387461543789448e-05 9.322283420353250e-05 + 9.257442723618249e-05 9.192938310286574e-05 9.128769066247626e-05 9.064933872161225e-05 9.001431561187756e-05 + 8.938260983500139e-05 8.875421104519957e-05 8.812910809646098e-05 8.750728925694059e-05 8.688874335824857e-05 + 8.627345936363417e-05 8.566142611724158e-05 8.505263195150667e-05 8.444706587898619e-05 8.384471762172232e-05 + 8.324557578035348e-05 8.264962891132210e-05 8.205686604727953e-05 8.146727626544971e-05 8.088084838175318e-05 + 8.029757088191735e-05 7.971743327705584e-05 7.914042512047892e-05 7.856653495630607e-05 7.799575166346450e-05 + 7.742806441871695e-05 7.686346239245813e-05 7.630193435494130e-05 7.574346911053080e-05 7.518805653837606e-05 + 7.463568593117825e-05 7.408634594826592e-05 7.354002575090044e-05 7.299671464423979e-05 7.245640185167563e-05 + 7.191907614532941e-05 7.138472679150608e-05 7.085334380230530e-05 7.032491623916224e-05 6.979943301854977e-05 + 6.927688351841825e-05 6.875725716877753e-05 6.824054320182008e-05 6.772673050550591e-05 6.721580881996242e-05 + 6.670776807704407e-05 6.620259726868480e-05 6.570028562031883e-05 6.520082266140781e-05 6.470419793220322e-05 + 6.421040064958054e-05 6.371941996817583e-05 6.323124601185380e-05 6.274586851226631e-05 6.226327655003573e-05 + 6.178345963615301e-05 6.130640743984757e-05 6.083210957777482e-05 6.036055527561582e-05 5.989173409263222e-05 + 5.942563633391719e-05 5.896225154191688e-05 5.850156903007261e-05 5.804357852627766e-05 5.758826983099529e-05 + 5.713563260712647e-05 5.668565617514362e-05 5.623833053838233e-05 5.579364600051564e-05 5.535159201768813e-05 + 5.491215819134343e-05 5.447533442712218e-05 5.404111064124177e-05 5.360947650466450e-05 5.318042157160001e-05 + 5.275393622516995e-05 5.233001062811153e-05 5.190863431238880e-05 5.148979716458554e-05 5.107348923404401e-05 + 5.065970053025621e-05 5.024842074849432e-05 4.983963979263951e-05 4.943334827635427e-05 4.902953621108006e-05 + 4.862819332553702e-05 4.822930973793706e-05 4.783287562882953e-05 4.743888107972067e-05 4.704731588033618e-05 + 4.665817033540254e-05 4.627143510842172e-05 4.588710014690383e-05 4.550515545082771e-05 4.512559130332447e-05 + 4.474839802715817e-05 4.437356575264515e-05 4.400108444300858e-05 4.363094478314062e-05 4.326313737450849e-05 + 4.289765220307346e-05 4.253447954450777e-05 4.217360984935306e-05 4.181503354031293e-05 4.145874078526325e-05 + 4.110472186234567e-05 4.075296770939578e-05 4.040346881442376e-05 4.005621534517384e-05 3.971119780891244e-05 + 3.936840678851008e-05 3.902783280379881e-05 3.868946611492773e-05 3.835329736378580e-05 3.801931758461789e-05 + 3.768751721520911e-05 3.735788667634669e-05 3.703041665089796e-05 3.670509786268472e-05 3.638192090588934e-05 + 3.606087620758478e-05 3.574195476070656e-05 3.542514758568229e-05 3.511044516462031e-05 3.479783817623805e-05 + 3.448731747191980e-05 3.417887390941621e-05 3.387249813623169e-05 3.356818082938366e-05 3.326591326488256e-05 + 3.296568640239042e-05 3.266749086476883e-05 3.237131756688427e-05 3.207715751232477e-05 3.178500166911470e-05 + 3.149484077201404e-05 3.120666582870710e-05 3.092046825328168e-05 3.063623897047349e-05 3.035396883732847e-05 + 3.007364895961203e-05 2.979527048619034e-05 2.951882447255356e-05 2.924430180184470e-05 2.897169381596313e-05 + 2.870099196601076e-05 2.843218722351712e-05 2.816527069305565e-05 2.790023364581556e-05 2.763706736588794e-05 + 2.737576298520704e-05 2.711631161938774e-05 2.685870489191871e-05 2.660293422952212e-05 2.634899073350601e-05 + 2.609686574272242e-05 2.584655068622352e-05 2.559803697386157e-05 2.535131582907573e-05 2.510637865851451e-05 + 2.486321726016628e-05 2.462182305120829e-05 2.438218734168926e-05 2.414430166313400e-05 2.390815760058303e-05 + 2.367374667612129e-05 2.344106023464476e-05 2.321008999935892e-05 2.298082786356460e-05 2.275326527748312e-05 + 2.252739378233606e-05 2.230320509258137e-05 2.208069093512809e-05 2.185984291941186e-05 2.164065260635458e-05 + 2.142311199522572e-05 2.120721298028661e-05 2.099294714303281e-05 2.078030625998752e-05 2.056928220029127e-05 + 2.035986682231265e-05 2.015205183896797e-05 1.994582907956633e-05 1.974119073954575e-05 1.953812872162773e-05 + 1.933663479825456e-05 1.913670094979531e-05 1.893831919578259e-05 1.874148151575467e-05 1.854617976080873e-05 + 1.835240605058427e-05 1.816015268982217e-05 1.796941162992672e-05 1.778017486956627e-05 1.759243456762222e-05 + 1.740618289118282e-05 1.722141193137039e-05 1.703811372777776e-05 1.685628066375182e-05 1.667590509374455e-05 + 1.649697910104339e-05 1.631949489857415e-05 1.614344479286407e-05 1.596882111103627e-05 1.579561606259506e-05 + 1.562382191518076e-05 1.545343126338709e-05 1.528443649706141e-05 1.511682986511545e-05 1.495060379262073e-05 + 1.478575075387210e-05 1.462226320346460e-05 1.446013347627832e-05 1.429935410828208e-05 1.413991783947596e-05 + 1.398181711799591e-05 1.382504440087988e-05 1.366959229690567e-05 1.351545344207288e-05 1.336262041089977e-05 + 1.321108569966174e-05 1.306084210743495e-05 1.291188246012095e-05 1.276419932540445e-05 1.261778537439798e-05 + 1.247263337350260e-05 1.232873611168182e-05 1.218608628547451e-05 1.204467661277090e-05 1.190450010670460e-05 + 1.176554964839514e-05 1.162781797531038e-05 1.149129796332477e-05 1.135598253898601e-05 1.122186462622714e-05 + 1.108893706038782e-05 1.095719281332111e-05 1.082662505098182e-05 1.069722672643097e-05 1.056899077370047e-05 + 1.044191025341683e-05 1.031597825830204e-05 1.019118784797653e-05 1.006753201372614e-05 9.945003972957807e-06 + 9.823597003224701e-06 9.703304169766936e-06 9.584118614966616e-06 9.466033570975281e-06 9.349042284940899e-06 + 9.233137946012443e-06 9.118313747892748e-06 9.004563126071509e-06 8.891879438415634e-06 8.780255908737012e-06 + 8.669685879934477e-06 8.560162746518096e-06 8.451679906731882e-06 8.344230688978416e-06 8.237808513777729e-06 + 8.132406985376577e-06 8.028019552616531e-06 7.924639629701503e-06 7.822260741691212e-06 7.720876445763237e-06 + 7.620480284148957e-06 7.521065743540658e-06 7.422626477381218e-06 7.325156218634066e-06 7.228648532638821e-06 + 7.133097034958690e-06 7.038495423985100e-06 6.944837416133499e-06 6.852116691729515e-06 6.760326924607246e-06 + 6.669461983453847e-06 6.579515704432944e-06 6.490481806747385e-06 6.402354101863004e-06 6.315126452251840e-06 + 6.228792731669073e-06 6.143346764859859e-06 6.058782435540508e-06 5.975093791198315e-06 5.892274772590937e-06 + 5.810319279027480e-06 5.729221306547671e-06 5.648974882411472e-06 5.569574030477156e-06 5.491012732167998e-06 + 5.413285091010444e-06 5.336385298912571e-06 5.260307420244722e-06 5.185045547999291e-06 5.110593849728286e-06 + 5.036946516955677e-06 4.964097720721464e-06 4.892041619202182e-06 4.820772525961763e-06 4.750284753859853e-06 + 4.680572517390150e-06 4.611630102585562e-06 4.543451844884654e-06 4.476032095169469e-06 4.409365173309600e-06 + 4.343445435493855e-06 4.278267378107974e-06 4.213825432046252e-06 4.150113986510229e-06 4.087127510654963e-06 + 4.024860505544460e-06 3.963307478207591e-06 3.902462905546128e-06 3.842321351732513e-06 3.782877469285005e-06 + 3.724125818875267e-06 3.666060976275786e-06 3.608677584308628e-06 3.551970310325800e-06 3.495933813913828e-06 + 3.440562742860537e-06 3.385851865026623e-06 3.331795968547279e-06 3.278389763636986e-06 3.225628015585682e-06 + 3.173505536483180e-06 3.122017155106099e-06 3.071157684657154e-06 3.020921961442045e-06 2.971304937503200e-06 + 2.922301530764381e-06 2.873906622400171e-06 2.826115159163556e-06 2.778922119160790e-06 2.732322492500433e-06 + 2.686311250918327e-06 2.640883427466542e-06 2.596034137909800e-06 2.551758437600915e-06 2.508051388712647e-06 + 2.464908112415978e-06 2.422323753722291e-06 2.380293459852445e-06 2.338812372063220e-06 2.297875719562253e-06 + 2.257478763762930e-06 2.217616712073996e-06 2.178284811840686e-06 2.139478353112250e-06 2.101192645402220e-06 + 2.063422994293474e-06 2.026164721213360e-06 1.989413239181793e-06 1.953163950788084e-06 1.917412231009713e-06 + 1.882153506609316e-06 1.847383234461138e-06 1.813096887995954e-06 1.779289933937322e-06 1.745957881749227e-06 + 1.713096313387221e-06 1.680700776153704e-06 1.648766820412035e-06 1.617290047665242e-06 1.586266083282953e-06 + 1.555690561349229e-06 1.525559115412809e-06 1.495867444877275e-06 1.466611286844381e-06 1.437786342321971e-06 + 1.409388342689011e-06 1.381413059137875e-06 1.353856283643994e-06 1.326713811980504e-06 1.299981452903499e-06 + 1.273655087535907e-06 1.247730601634883e-06 1.222203862466376e-06 1.197070780161529e-06 1.172327293218336e-06 + 1.147969358200551e-06 1.123992934949297e-06 1.100394014305713e-06 1.077168647815731e-06 1.054312872343777e-06 + 1.031822727943270e-06 1.009694299029158e-06 9.879236928228051e-07 9.665070295488333e-07 9.454404356909418e-07 + 9.247200854784831e-07 9.043421911847067e-07 8.843029477247774e-07 8.645985728173436e-07 8.452253193362285e-07 + 8.261794626052351e-07 8.074572875932502e-07 7.890550921071068e-07 7.709692301619030e-07 7.531960701353248e-07 + 7.357319715620587e-07 7.185733287203112e-07 7.017165630618881e-07 6.851581162834306e-07 6.688944388625421e-07 + 6.529220052598067e-07 6.372373411274385e-07 6.218369717692920e-07 6.067174274527125e-07 5.918752755194360e-07 + 5.773071063798692e-07 5.630095271034721e-07 5.489791556312369e-07 5.352126455394792e-07 5.217066864180125e-07 + 5.084579644193884e-07 4.954631845887763e-07 4.827190834887087e-07 4.702224204045173e-07 4.579699684713550e-07 + 4.459585154334098e-07 4.341848919935187e-07 4.226459485782965e-07 4.113385363883691e-07 4.002595352312233e-07 + 3.894058504065020e-07 3.787744086301839e-07 3.683621500987016e-07 3.581660355932383e-07 3.481830676805770e-07 + 3.384102581524441e-07 3.288446273745833e-07 3.194832275224818e-07 3.103231330843525e-07 3.013614373207315e-07 + 2.925952486098954e-07 2.840217031010630e-07 2.756379695267500e-07 2.674412234106971e-07 2.594286576386206e-07 + 2.515974937029081e-07 2.439449754383926e-07 2.364683632309526e-07 2.291649345383248e-07 2.220320002407473e-07 + 2.150668931442167e-07 2.082669548865648e-07 2.016295514473211e-07 1.951520727682157e-07 1.888319311586693e-07 + 1.826665552837694e-07 1.766533931743509e-07 1.707899271779558e-07 1.650736547045015e-07 1.595020857916059e-07 + 1.540727581256184e-07 1.487832309302349e-07 1.436310837043274e-07 1.386139140291348e-07 1.337293426531939e-07 + 1.289750194034745e-07 1.243486077550924e-07 1.198477884856861e-07 1.154702687444825e-07 1.112137774078364e-07 + 1.070760615754017e-07 1.030548878714015e-07 9.914804983102429e-08 9.535336319532080e-08 9.166865877274502e-08 + 8.809178921148019e-08 8.462062987184363e-08 8.125307865123530e-08 7.798705169188094e-08 7.482048486743137e-08 + 7.175134265372113e-08 6.877760756933380e-08 6.589727849023001e-08 6.310837918621049e-08 6.040895419177239e-08 + 5.779706919084610e-08 5.527080986023133e-08 5.282828275733461e-08 5.046762055622123e-08 4.818697371034567e-08 + 4.598451068334482e-08 4.385842456607357e-08 4.180692971968811e-08 3.982825980405518e-08 3.792066966127786e-08 + 3.608243718277188e-08 3.431186206040581e-08 3.260726312426322e-08 3.096697968233847e-08 2.938937298745983e-08 + 2.787282684203093e-08 2.641574418968914e-08 2.501654849393015e-08 2.367368813134603e-08 2.238563078881267e-08 + 2.115086344400587e-08 1.996789606940446e-08 1.883525886916157e-08 1.775150390948272e-08 1.671520402936120e-08 + 1.572495208680648e-08 1.477936511938296e-08 1.387707990026544e-08 1.301675220490221e-08 1.219706138041649e-08 + 1.141670750179082e-08 1.067441065312196e-08 9.968913113355902e-09 9.298978133402818e-09 8.663390331238368e-09 + 8.060955677291694e-09 7.490500025975069e-09 6.950870854385858e-09 6.440937996309972e-09 5.959590797852082e-09 + 5.505739944416565e-09 5.078318901633865e-09 4.676280806472903e-09 4.298600029449081e-09 3.944272776496124e-09 + 3.612315204086912e-09 3.301765808464261e-09 3.011683971683484e-09 2.741149022073358e-09 2.489263438950313e-09 + 2.255150010734707e-09 2.037951439802415e-09 1.836833426869985e-09 1.650981924522248e-09 1.479603458288696e-09 + 1.321927088896133e-09 1.177201927023745e-09 1.044698361371603e-09 9.237089042804517e-10 8.135457713165132e-10 + 7.135428727606122e-10 6.230561233086797e-10 5.414610837010692e-10 4.681552957722881e-10 4.025579739718386e-10 + 3.441080911031397e-10 2.922668865200973e-10 2.465167169238545e-10 2.063598966733955e-10 1.713213823559041e-10 + 1.409467301732644e-10 1.148017117805301e-10 9.247489436372923e-11 7.357503403670199e-11 5.773147403071901e-11 + 4.459623415664643e-11 3.384125546419585e-11 2.515956035071991e-11 1.826656159304613e-11 1.289741553721677e-11 + 8.808852910154413e-12 5.779611749592996e-12 3.608107240050744e-12 2.114775563702074e-12 1.141629414770904e-12 + 5.504076981088132e-13 2.252028793998774e-13 7.135404618680312e-14 1.400208835054596e-14 2.858282411901289e-16 + 0.000000000000000e+00 3.280907692410757e+00 6.559093802140417e+00 9.834554467967374e+00 1.310728583537977e+01 + 1.637728405657552e+01 1.964454529046227e+01 2.290906570265743e+01 2.617084146548816e+01 2.942986875799139e+01 + 3.268614376591378e+01 3.593966268171175e+01 3.919042170455148e+01 4.243841704030890e+01 4.568364490156970e+01 + 4.892610150762930e+01 5.216578308449292e+01 5.540268586487547e+01 5.863680608820168e+01 6.186814000060598e+01 + 6.509668385493259e+01 6.832243391073550e+01 7.154538643427834e+01 7.476553769853463e+01 7.798288398318758e+01 + 8.119742157463018e+01 8.440914676596513e+01 8.761805585700493e+01 9.082414515427180e+01 9.402741097099775e+01 + 9.722784962712448e+01 1.004254574493035e+02 1.036202307708961e+02 1.068121659319733e+02 1.100012592793157e+02 + 1.131875071664140e+02 1.163709059534683e+02 1.195514520073887e+02 1.227291417017950e+02 1.259039714170167e+02 + 1.290759375400930e+02 1.322450364647731e+02 1.354112645915156e+02 1.385746183274891e+02 1.417350940865720e+02 + 1.448926882893522e+02 1.480473973631275e+02 1.511992177419055e+02 1.543481458664036e+02 1.574941781840487e+02 + 1.606373111489777e+02 1.637775412220371e+02 1.669148648707833e+02 1.700492785694823e+02 1.731807787991100e+02 + 1.763093620473519e+02 1.794350248086033e+02 1.825577635839695e+02 1.856775748812652e+02 1.887944552150149e+02 + 1.919084011064531e+02 1.950194090835239e+02 1.981274756808810e+02 2.012325974398883e+02 2.043347709086188e+02 + 2.074339926418558e+02 2.105302592010923e+02 2.136235671545306e+02 2.167139130770834e+02 2.198012935503726e+02 + 2.228857051627302e+02 2.259671445091978e+02 2.290456081915269e+02 2.321210928181784e+02 2.351935950043234e+02 + 2.382631113718425e+02 2.413296385493261e+02 2.443931731720744e+02 2.474537118820972e+02 2.505112513281143e+02 + 2.535657881655549e+02 2.566173190565586e+02 2.596658406699738e+02 2.627113496813596e+02 2.657538427729843e+02 + 2.687933166338259e+02 2.718297679595726e+02 2.748631934526219e+02 2.778935898220815e+02 2.809209537837683e+02 + 2.839452820602094e+02 2.869665713806416e+02 2.899848184810112e+02 2.930000201039745e+02 2.960121729988974e+02 + 2.990212739218558e+02 3.020273196356349e+02 3.050303069097302e+02 3.080302325203465e+02 3.110270932503987e+02 + 3.140208858895110e+02 3.170116072340180e+02 3.199992540869634e+02 3.229838232581013e+02 3.259653115638948e+02 + 3.289437158275174e+02 3.319190328788521e+02 3.348912595544916e+02 3.378603926977383e+02 3.408264291586049e+02 + 3.437893657938130e+02 3.467491994667945e+02 3.497059270476910e+02 3.526595454133537e+02 3.556100514473437e+02 + 3.585574420399318e+02 3.615017140880985e+02 3.644428644955341e+02 3.673808901726388e+02 3.703157880365222e+02 + 3.732475550110041e+02 3.761761880266134e+02 3.791016840205897e+02 3.820240399368814e+02 3.849432527261474e+02 + 3.878593193457557e+02 3.907722367597846e+02 3.936820019390219e+02 3.965886118609651e+02 3.994920635098217e+02 + 4.023923538765087e+02 4.052894799586530e+02 4.081834387605912e+02 4.110742272933696e+02 4.139618425747443e+02 + 4.168462816291812e+02 4.197275414878559e+02 4.226056191886540e+02 4.254805117761704e+02 4.283522163017099e+02 + 4.312207298232872e+02 4.340860494056267e+02 4.369481721201628e+02 4.398070950450389e+02 4.426628152651090e+02 + 4.455153298719365e+02 4.483646359637945e+02 4.512107306456656e+02 4.540536110292430e+02 4.568932742329288e+02 + 4.597297173818351e+02 4.625629376077841e+02 4.653929320493071e+02 4.682196978516460e+02 4.710432321667516e+02 + 4.738635321532851e+02 4.766805949766169e+02 4.794944178088276e+02 4.823049978287075e+02 4.851123322217564e+02 + 4.879164181801841e+02 4.907172529029099e+02 4.935148335955632e+02 4.963091574704831e+02 4.991002217467178e+02 + 5.018880236500261e+02 5.046725604128764e+02 5.074538292744463e+02 5.102318274806237e+02 5.130065522840063e+02 + 5.157780009439010e+02 5.185461707263250e+02 5.213110589040049e+02 5.240726627563774e+02 5.268309795695885e+02 + 5.295860066364945e+02 5.323377412566609e+02 5.350861807363634e+02 5.378313223885873e+02 5.405731635330272e+02 + 5.433117014960885e+02 5.460469336108854e+02 5.487788572172420e+02 5.515074696616928e+02 5.542327682974811e+02 + 5.569547504845609e+02 5.596734135895950e+02 5.623887549859570e+02 5.651007720537292e+02 5.678094621797045e+02 + 5.705148227573850e+02 5.732168511869830e+02 5.759155448754203e+02 5.786109012363282e+02 5.813029176900482e+02 + 5.839915916636313e+02 5.866769205908384e+02 5.893589019121401e+02 5.920375330747167e+02 5.947128115324583e+02 + 5.973847347459648e+02 6.000533001825459e+02 6.027185053162206e+02 6.053803476277183e+02 6.080388246044777e+02 + 6.106939337406476e+02 6.133456725370861e+02 6.159940385013617e+02 6.186390291477520e+02 6.212806419972447e+02 + 6.239188745775372e+02 6.265537244230364e+02 6.291851890748597e+02 6.318132660808333e+02 6.344379529954938e+02 + 6.370592473800871e+02 6.396771468025696e+02 6.422916488376064e+02 6.449027510665734e+02 6.475104510775553e+02 + 6.501147464653474e+02 6.527156348314542e+02 6.553131137840901e+02 6.579071809381794e+02 6.604978339153558e+02 + 6.630850703439634e+02 6.656688878590552e+02 6.682492841023947e+02 6.708262567224546e+02 6.733998033744177e+02 + 6.759699217201766e+02 6.785366094283333e+02 6.810998641742000e+02 6.836596836397980e+02 6.862160655138592e+02 + 6.887690074918247e+02 6.913185072758453e+02 6.938645625747821e+02 6.964071711042051e+02 6.989463305863949e+02 + 7.014820387503412e+02 7.040142933317441e+02 7.065430920730126e+02 7.090684327232666e+02 7.115903130383348e+02 + 7.141087307807558e+02 7.166236837197782e+02 7.191351696313601e+02 7.216431862981700e+02 7.241477315095852e+02 + 7.266488030616937e+02 7.291463987572921e+02 7.316405164058881e+02 7.341311538236981e+02 7.366183088336488e+02 + 7.391019792653765e+02 7.415821629552270e+02 7.440588577462564e+02 7.465320614882301e+02 7.490017720376235e+02 + 7.514679872576214e+02 7.539307050181191e+02 7.563899231957208e+02 7.588456396737411e+02 7.612978523422037e+02 + 7.637465590978424e+02 7.661917578441014e+02 7.686334464911333e+02 7.710716229558018e+02 7.735062851616793e+02 + 7.759374310390485e+02 7.783650585249019e+02 7.807891655629417e+02 7.832097501035795e+02 7.856268101039369e+02 + 7.880403435278453e+02 7.904503483458460e+02 7.928568225351897e+02 7.952597640798369e+02 7.976591709704585e+02 + 8.000550412044341e+02 8.024473727858536e+02 8.048361637255169e+02 8.072214120409334e+02 8.096031157563222e+02 + 8.119812729026120e+02 8.143558815174417e+02 8.167269396451593e+02 8.190944453368236e+02 8.214583966502021e+02 + 8.238187916497725e+02 8.261756284067224e+02 8.285289049989487e+02 8.308786195110586e+02 8.332247700343684e+02 + 8.355673546669050e+02 8.379063715134042e+02 8.402418186853124e+02 8.425736943007848e+02 8.449019964846872e+02 + 8.472267233685945e+02 8.495478730907921e+02 8.518654437962743e+02 8.541794336367457e+02 8.564898407706205e+02 + 8.587966633630226e+02 8.610998995857861e+02 8.633995476174539e+02 8.656956056432798e+02 8.679880718552264e+02 + 8.702769444519665e+02 8.725622216388828e+02 8.748439016280670e+02 8.771219826383219e+02 8.793964628951586e+02 + 8.816673406307990e+02 8.839346140841741e+02 8.861982815009252e+02 8.884583411334027e+02 8.907147912406675e+02 + 8.929676300884897e+02 8.952168559493493e+02 8.974624671024361e+02 8.997044618336495e+02 9.019428384355992e+02 + 9.041775952076036e+02 9.064087304556922e+02 9.086362424926032e+02 9.108601296377846e+02 9.130803902173951e+02 + 9.152970225643020e+02 9.175100250180832e+02 9.197193959250255e+02 9.219251336381268e+02 9.241272365170935e+02 + 9.263257029283417e+02 9.285205312449986e+02 9.307117198468995e+02 9.328992671205907e+02 9.350831714593277e+02 + 9.372634312630761e+02 9.394400449385104e+02 9.416130108990160e+02 9.437823275646871e+02 9.459479933623287e+02 + 9.481100067254541e+02 9.502683660942876e+02 9.524230699157629e+02 9.545741166435229e+02 9.567215047379214e+02 + 9.588652326660207e+02 9.610052989015940e+02 9.631417019251231e+02 9.652744402238004e+02 9.674035122915279e+02 + 9.695289166289172e+02 9.716506517432896e+02 9.737687161486764e+02 9.758831083658184e+02 9.779938269221661e+02 + 9.801008703518804e+02 9.822042371958310e+02 9.843039260015983e+02 9.863999353234714e+02 9.884922637224498e+02 + 9.905809097662435e+02 9.926658720292703e+02 9.947471490926598e+02 9.968247395442500e+02 9.988986419785891e+02 + 1.000968854996935e+03 1.003035377207256e+03 1.005098207224229e+03 1.007157343669241e+03 1.009212785170389e+03 + 1.011264530362480e+03 1.013312577887031e+03 1.015356926392268e+03 1.017397574533126e+03 1.019434520971252e+03 + 1.021467764375000e+03 1.023497303419437e+03 1.025523136786337e+03 1.027545263164185e+03 1.029563681248175e+03 + 1.031578389740212e+03 1.033589387348909e+03 1.035596672789591e+03 1.037600244784291e+03 1.039600102061752e+03 + 1.041596243357428e+03 1.043588667413480e+03 1.045577372978782e+03 1.047562358808916e+03 1.049543623666173e+03 + 1.051521166319557e+03 1.053494985544777e+03 1.055465080124256e+03 1.057431448847125e+03 1.059394090509224e+03 + 1.061353003913104e+03 1.063308187868025e+03 1.065259641189957e+03 1.067207362701581e+03 1.069151351232285e+03 + 1.071091605618170e+03 1.073028124702043e+03 1.074960907333424e+03 1.076889952368542e+03 1.078815258670335e+03 + 1.080736825108451e+03 1.082654650559248e+03 1.084568733905793e+03 1.086479074037864e+03 1.088385669851947e+03 + 1.090288520251241e+03 1.092187624145651e+03 1.094082980451794e+03 1.095974588092995e+03 1.097862445999292e+03 + 1.099746553107428e+03 1.101626908360861e+03 1.103503510709754e+03 1.105376359110983e+03 1.107245452528133e+03 + 1.109110789931497e+03 1.110972370298081e+03 1.112830192611597e+03 1.114684255862470e+03 1.116534559047833e+03 + 1.118381101171529e+03 1.120223881244111e+03 1.122062898282842e+03 1.123898151311694e+03 1.125729639361349e+03 + 1.127557361469200e+03 1.129381316679347e+03 1.131201504042604e+03 1.133017922616489e+03 1.134830571465235e+03 + 1.136639449659783e+03 1.138444556277782e+03 1.140245890403593e+03 1.142043451128286e+03 1.143837237549640e+03 + 1.145627248772146e+03 1.147413483907002e+03 1.149195942072117e+03 1.150974622392110e+03 1.152749523998310e+03 + 1.154520646028755e+03 1.156287987628192e+03 1.158051547948079e+03 1.159811326146585e+03 1.161567321388586e+03 + 1.163319532845669e+03 1.165067959696131e+03 1.166812601124979e+03 1.168553456323928e+03 1.170290524491405e+03 + 1.172023804832545e+03 1.173753296559195e+03 1.175478998889909e+03 1.177200911049953e+03 1.178919032271301e+03 + 1.180633361792637e+03 1.182343898859357e+03 1.184050642723563e+03 1.185753592644071e+03 1.187452747886402e+03 + 1.189148107722792e+03 1.190839671432183e+03 1.192527438300227e+03 1.194211407619287e+03 1.195891578688435e+03 + 1.197567950813455e+03 1.199240523306837e+03 1.200909295487783e+03 1.202574266682204e+03 1.204235436222721e+03 + 1.205892803448666e+03 1.207546367706079e+03 1.209196128347710e+03 1.210842084733019e+03 1.212484236228177e+03 + 1.214122582206062e+03 1.215757122046265e+03 1.217387855135084e+03 1.219014780865528e+03 1.220637898637316e+03 + 1.222257207856876e+03 1.223872707937346e+03 1.225484398298575e+03 1.227092278367119e+03 1.228696347576247e+03 + 1.230296605365935e+03 1.231893051182870e+03 1.233485684480449e+03 1.235074504718779e+03 1.236659511364675e+03 + 1.238240703891664e+03 1.239818081779981e+03 1.241391644516571e+03 1.242961391595090e+03 1.244527322515903e+03 + 1.246089436786084e+03 1.247647733919417e+03 1.249202213436398e+03 1.250752874864230e+03 1.252299717736826e+03 + 1.253842741594810e+03 1.255381945985516e+03 1.256917330462986e+03 1.258448894587972e+03 1.259976637927938e+03 + 1.261500560057056e+03 1.263020660556207e+03 1.264536939012984e+03 1.266049395021687e+03 1.267558028183329e+03 + 1.269062838105629e+03 1.270563824403019e+03 1.272060986696640e+03 1.273554324614341e+03 1.275043837790682e+03 + 1.276529525866934e+03 1.278011388491075e+03 1.279489425317796e+03 1.280963636008494e+03 1.282434020231280e+03 + 1.283900577660971e+03 1.285363307979095e+03 1.286822210873891e+03 1.288277286040307e+03 1.289728533179999e+03 + 1.291175952001336e+03 1.292619542219393e+03 1.294059303555960e+03 1.295495235739530e+03 1.296927338505312e+03 + 1.298355611595221e+03 1.299780054757883e+03 1.301200667748633e+03 1.302617450329516e+03 1.304030402269289e+03 + 1.305439523343415e+03 1.306844813334069e+03 1.308246272030136e+03 1.309643899227210e+03 1.311037694727594e+03 + 1.312427658340302e+03 1.313813789881058e+03 1.315196089172293e+03 1.316574556043153e+03 1.317949190329488e+03 + 1.319319991873862e+03 1.320686960525546e+03 1.322050096140523e+03 1.323409398581483e+03 1.324764867717829e+03 + 1.326116503425671e+03 1.327464305587830e+03 1.328808274093838e+03 1.330148408839934e+03 1.331484709729068e+03 + 1.332817176670901e+03 1.334145809581802e+03 1.335470608384850e+03 1.336791573009835e+03 1.338108703393256e+03 + 1.339421999478320e+03 1.340731461214948e+03 1.342037088559766e+03 1.343338881476113e+03 1.344636839934036e+03 + 1.345930963910293e+03 1.347221253388351e+03 1.348507708358388e+03 1.349790328817288e+03 1.351069114768650e+03 + 1.352344066222779e+03 1.353615183196692e+03 1.354882465714113e+03 1.356145913805479e+03 1.357405527507935e+03 + 1.358661306865335e+03 1.359913251928245e+03 1.361161362753938e+03 1.362405639406399e+03 1.363646081956323e+03 + 1.364882690481112e+03 1.366115465064880e+03 1.367344405798451e+03 1.368569512779358e+03 1.369790786111843e+03 + 1.371008225906858e+03 1.372221832282067e+03 1.373431605361840e+03 1.374637545277261e+03 1.375839652166119e+03 + 1.377037926172918e+03 1.378232367448867e+03 1.379422976151887e+03 1.380609752446609e+03 1.381792696504374e+03 + 1.382971808503231e+03 1.384147088627939e+03 1.385318537069970e+03 1.386486154027501e+03 1.387649939705423e+03 + 1.388809894315333e+03 1.389966018075540e+03 1.391118311211063e+03 1.392266773953630e+03 1.393411406541678e+03 + 1.394552209220356e+03 1.395689182241520e+03 1.396822325863737e+03 1.397951640352285e+03 1.399077125979150e+03 + 1.400198783023028e+03 1.401316611769325e+03 1.402430612510158e+03 1.403540785544351e+03 1.404647131177441e+03 + 1.405749649721672e+03 1.406848341496000e+03 1.407943206826088e+03 1.409034246044311e+03 1.410121459489754e+03 + 1.411204847508209e+03 1.412284410452182e+03 1.413360148680885e+03 1.414432062560241e+03 1.415500152462884e+03 + 1.416564418768155e+03 1.417624861862108e+03 1.418681482137504e+03 1.419734279993815e+03 1.420783255837224e+03 + 1.421828410080621e+03 1.422869743143608e+03 1.423907255452495e+03 1.424940947440303e+03 1.425970819546763e+03 + 1.426996872218314e+03 1.428019105908108e+03 1.429037521076003e+03 1.430052118188569e+03 1.431062897719085e+03 + 1.432069860147540e+03 1.433073005960632e+03 1.434072335651771e+03 1.435067849721075e+03 1.436059548675370e+03 + 1.437047433028196e+03 1.438031503299800e+03 1.439011760017138e+03 1.439988203713878e+03 1.440960834930396e+03 + 1.441929654213780e+03 1.442894662117825e+03 1.443855859203037e+03 1.444813246036631e+03 1.445766823192535e+03 + 1.446716591251382e+03 1.447662550800518e+03 1.448604702433997e+03 1.449543046752585e+03 1.450477584363755e+03 + 1.451408315881691e+03 1.452335241927287e+03 1.453258363128147e+03 1.454177680118583e+03 1.455093193539620e+03 + 1.456004904038989e+03 1.456912812271134e+03 1.457816918897206e+03 1.458717224585068e+03 1.459613730009291e+03 + 1.460506435851157e+03 1.461395342798658e+03 1.462280451546494e+03 1.463161762796076e+03 1.464039277255525e+03 + 1.464912995639670e+03 1.465782918670054e+03 1.466649047074924e+03 1.467511381589240e+03 1.468369922954673e+03 + 1.469224671919600e+03 1.470075629239112e+03 1.470922795675006e+03 1.471766171995790e+03 1.472605758976684e+03 + 1.473441557399614e+03 1.474273568053219e+03 1.475101791732846e+03 1.475926229240551e+03 1.476746881385102e+03 + 1.477563748981976e+03 1.478376832853358e+03 1.479186133828146e+03 1.479991652741944e+03 1.480793390437068e+03 + 1.481591347762545e+03 1.482385525574108e+03 1.483175924734204e+03 1.483962546111986e+03 1.484745390583318e+03 + 1.485524459030776e+03 1.486299752343644e+03 1.487071271417914e+03 1.487839017156289e+03 1.488602990468185e+03 + 1.489363192269722e+03 1.490119623483735e+03 1.490872285039765e+03 1.491621177874064e+03 1.492366302929595e+03 + 1.493107661156030e+03 1.493845253509749e+03 1.494579080953843e+03 1.495309144458115e+03 1.496035444999074e+03 + 1.496757983559942e+03 1.497476761130647e+03 1.498191778707831e+03 1.498903037294843e+03 1.499610537901742e+03 + 1.500314281545298e+03 1.501014269248990e+03 1.501710502043006e+03 1.502402980964245e+03 1.503091707056315e+03 + 1.503776681369534e+03 1.504457904960931e+03 1.505135378894241e+03 1.505809104239914e+03 1.506479082075105e+03 + 1.507145313483682e+03 1.507807799556220e+03 1.508466541390007e+03 1.509121540089038e+03 1.509772796764020e+03 + 1.510420312532367e+03 1.511064088518205e+03 1.511704125852369e+03 1.512340425672404e+03 1.512972989122564e+03 + 1.513601817353814e+03 1.514226911523828e+03 1.514848272796989e+03 1.515465902344391e+03 1.516079801343838e+03 + 1.516689970979842e+03 1.517296412443626e+03 1.517899126933124e+03 1.518498115652977e+03 1.519093379814537e+03 + 1.519684920635866e+03 1.520272739341736e+03 1.520856837163628e+03 1.521437215339733e+03 1.522013875114953e+03 + 1.522586817740897e+03 1.523156044475887e+03 1.523721556584951e+03 1.524283355339831e+03 1.524841442018975e+03 + 1.525395817907543e+03 1.525946484297405e+03 1.526493442487138e+03 1.527036693782033e+03 1.527576239494086e+03 + 1.528112080942007e+03 1.528644219451213e+03 1.529172656353831e+03 1.529697392988700e+03 1.530218430701367e+03 + 1.530735770844087e+03 1.531249414775829e+03 1.531759363862268e+03 1.532265619475790e+03 1.532768182995492e+03 + 1.533267055807180e+03 1.533762239303368e+03 1.534253734883281e+03 1.534741543952856e+03 1.535225667924735e+03 + 1.535706108218275e+03 1.536182866259539e+03 1.536655943481301e+03 1.537125341323045e+03 1.537591061230964e+03 + 1.538053104657961e+03 1.538511473063650e+03 1.538966167914353e+03 1.539417190683102e+03 1.539864542849641e+03 + 1.540308225900420e+03 1.540748241328602e+03 1.541184590634058e+03 1.541617275323370e+03 1.542046296909827e+03 + 1.542471656913432e+03 1.542893356860894e+03 1.543311398285634e+03 1.543725782727782e+03 1.544136511734178e+03 + 1.544543586858370e+03 1.544947009660620e+03 1.545346781707894e+03 1.545742904573873e+03 1.546135379838945e+03 + 1.546524209090207e+03 1.546909393921469e+03 1.547290935933248e+03 1.547668836732771e+03 1.548043097933976e+03 + 1.548413721157510e+03 1.548780708030729e+03 1.549144060187701e+03 1.549503779269201e+03 1.549859866922715e+03 + 1.550212324802440e+03 1.550561154569281e+03 1.550906357890854e+03 1.551247936441483e+03 1.551585891902203e+03 + 1.551920225960758e+03 1.552250940311604e+03 1.552578036655905e+03 1.552901516701533e+03 1.553221382163073e+03 + 1.553537634761818e+03 1.553850276225772e+03 1.554159308289647e+03 1.554464732694865e+03 1.554766551189559e+03 + 1.555064765528572e+03 1.555359377473454e+03 1.555650388792468e+03 1.555937801260586e+03 1.556221616659488e+03 + 1.556501836777564e+03 1.556778463409917e+03 1.557051498358356e+03 1.557320943431401e+03 1.557586800444283e+03 + 1.557849071218940e+03 1.558107757584023e+03 1.558362861374890e+03 1.558614384433611e+03 1.558862328608964e+03 + 1.559106695756438e+03 1.559347487738230e+03 1.559584706423249e+03 1.559818353687112e+03 1.560048431412147e+03 + 1.560274941487391e+03 1.560497885808591e+03 1.560717266278204e+03 1.560933084805396e+03 1.561145343306044e+03 + 1.561354043702732e+03 1.561559187924758e+03 1.561760777908126e+03 1.561958815595552e+03 1.562153302936461e+03 + 1.562344241886987e+03 1.562531634409975e+03 1.562715482474979e+03 1.562895788058264e+03 1.563072553142803e+03 + 1.563245779718279e+03 1.563415469781085e+03 1.563581625334326e+03 1.563744248387813e+03 1.563903340958068e+03 + 1.564058905068325e+03 1.564210942748526e+03 1.564359456035321e+03 1.564504446972073e+03 1.564645917608853e+03 + 1.564783870002442e+03 1.564918306216331e+03 1.565049228320720e+03 1.565176638392519e+03 1.565300538515349e+03 + 1.565420930779540e+03 1.565537817282130e+03 1.565651200126870e+03 1.565761081424219e+03 1.565867463291344e+03 + 1.565970347852125e+03 1.566069737237150e+03 1.566165633583717e+03 1.566258039035835e+03 1.566346955744220e+03 + 1.566432385866300e+03 1.566514331566212e+03 1.566592795014803e+03 1.566667778389629e+03 1.566739283874957e+03 + 1.566807313661764e+03 1.566871869947734e+03 1.566932954937263e+03 1.566990570841457e+03 1.567044719878131e+03 + 1.567095404271811e+03 1.567142626253729e+03 1.567186388061831e+03 1.567226691940771e+03 1.567263540141913e+03 + 1.567296934923331e+03 1.567326878549808e+03 1.567353373292836e+03 1.567376421430620e+03 1.567396025248071e+03 + 1.567412187036812e+03 1.567424909095176e+03 1.567434193728203e+03 1.567440043247646e+03 1.567442459971967e+03 + 1.567441446226336e+03 1.567437004342634e+03 1.567429136659453e+03 1.567417845522091e+03 1.567403133282561e+03 + 1.567385002299581e+03 1.567363454938582e+03 1.567338493571702e+03 1.567310120577791e+03 1.567278338342408e+03 + 1.567243149257822e+03 1.567204555723011e+03 1.567162560143663e+03 1.567117164932177e+03 1.567068372507660e+03 + 1.567016185295929e+03 1.566960605729512e+03 1.566901636247646e+03 1.566839279296277e+03 1.566773537328063e+03 + 1.566704412802369e+03 1.566631908185271e+03 1.566556025949555e+03 1.566476768574717e+03 1.566394138546961e+03 + 1.566308138359204e+03 1.566218770511069e+03 1.566126037508891e+03 1.566029941865714e+03 1.565930486101294e+03 + 1.565827672742092e+03 1.565721504321283e+03 1.565611983378751e+03 1.565499112461087e+03 1.565382894121595e+03 + 1.565263330920288e+03 1.565140425423888e+03 1.565014180205826e+03 1.564884597846246e+03 1.564751680931997e+03 + 1.564615432056643e+03 1.564475853820452e+03 1.564332948830408e+03 1.564186719700199e+03 1.564037169050227e+03 + 1.563884299507601e+03 1.563728113706142e+03 1.563568614286379e+03 1.563405803895550e+03 1.563239685187607e+03 + 1.563070260823207e+03 1.562897533469719e+03 1.562721505801220e+03 1.562542180498501e+03 1.562359560249057e+03 + 1.562173647747097e+03 1.561984445693539e+03 1.561791956796009e+03 1.561596183768845e+03 1.561397129333092e+03 + 1.561194796216507e+03 1.560989187153558e+03 1.560780304885418e+03 1.560568152159974e+03 1.560352731731822e+03 + 1.560134046362267e+03 1.559912098819323e+03 1.559686891877715e+03 1.559458428318879e+03 1.559226710930956e+03 + 1.558991742508803e+03 1.558753525853981e+03 1.558512063774766e+03 1.558267359086140e+03 1.558019414609795e+03 + 1.557768233174136e+03 1.557513817614273e+03 1.557256170772030e+03 1.556995295495938e+03 1.556731194641239e+03 + 1.556463871069885e+03 1.556193327650536e+03 1.555919567258564e+03 1.555642592776049e+03 1.555362407091783e+03 + 1.555079013101264e+03 1.554792413706704e+03 1.554502611817021e+03 1.554209610347846e+03 1.553913412221517e+03 + 1.553614020367084e+03 1.553311437720305e+03 1.553005667223649e+03 1.552696711826295e+03 1.552384574484129e+03 + 1.552069258159750e+03 1.551750765822466e+03 1.551429100448294e+03 1.551104265019960e+03 1.550776262526902e+03 + 1.550445095965265e+03 1.550110768337907e+03 1.549773282654394e+03 1.549432641931000e+03 1.549088849190713e+03 + 1.548741907463227e+03 1.548391819784946e+03 1.548038589198987e+03 1.547682218755173e+03 1.547322711510039e+03 + 1.546960070526829e+03 1.546594298875496e+03 1.546225399632705e+03 1.545853375881829e+03 1.545478230712950e+03 + 1.545099967222861e+03 1.544718588515066e+03 1.544334097699777e+03 1.543946497893915e+03 1.543555792221112e+03 + 1.543161983811711e+03 1.542765075802762e+03 1.542365071338026e+03 1.541961973567975e+03 1.541555785649789e+03 + 1.541146510747358e+03 1.540734152031283e+03 1.540318712678874e+03 1.539900195874149e+03 1.539478604807839e+03 + 1.539053942677383e+03 1.538626212686929e+03 1.538195418047336e+03 1.537761561976173e+03 1.537324647697717e+03 + 1.536884678442957e+03 1.536441657449592e+03 1.535995587962026e+03 1.535546473231378e+03 1.535094316515475e+03 + 1.534639121078853e+03 1.534180890192759e+03 1.533719627135150e+03 1.533255335190690e+03 1.532788017650757e+03 + 1.532317677813435e+03 1.531844318983518e+03 1.531367944472514e+03 1.530888557598635e+03 1.530406161686807e+03 + 1.529920760068664e+03 1.529432356082550e+03 1.528940953073517e+03 1.528446554393331e+03 1.527949163400464e+03 + 1.527448783460099e+03 1.526945417944129e+03 1.526439070231157e+03 1.525929743706494e+03 1.525417441762163e+03 + 1.524902167796895e+03 1.524383925216131e+03 1.523862717432025e+03 1.523338547863434e+03 1.522811419935932e+03 + 1.522281337081799e+03 1.521748302740024e+03 1.521212320356308e+03 1.520673393383061e+03 1.520131525279401e+03 + 1.519586719511159e+03 1.519038979550873e+03 1.518488308877793e+03 1.517934710977876e+03 1.517378189343791e+03 + 1.516818747474916e+03 1.516256388877339e+03 1.515691117063858e+03 1.515122935553979e+03 1.514551847873920e+03 + 1.513977857556607e+03 1.513400968141679e+03 1.512821183175479e+03 1.512238506211065e+03 1.511652940808203e+03 + 1.511064490533368e+03 1.510473158959745e+03 1.509878949667230e+03 1.509281866242427e+03 1.508681912278651e+03 + 1.508079091375926e+03 1.507473407140987e+03 1.506864863187277e+03 1.506253463134950e+03 1.505639210610869e+03 + 1.505022109248608e+03 1.504402162688449e+03 1.503779374577385e+03 1.503153748569118e+03 1.502525288324061e+03 + 1.501893997509335e+03 1.501259879798773e+03 1.500622938872914e+03 1.499983178419011e+03 1.499340602131025e+03 + 1.498695213709626e+03 1.498047016862194e+03 1.497396015302820e+03 1.496742212752304e+03 1.496085612938155e+03 + 1.495426219594593e+03 1.494764036462547e+03 1.494099067289655e+03 1.493431315830267e+03 1.492760785845442e+03 + 1.492087481102946e+03 1.491411405377259e+03 1.490732562449567e+03 1.490050956107769e+03 1.489366590146471e+03 + 1.488679468366991e+03 1.487989594577355e+03 1.487296972592300e+03 1.486601606233272e+03 1.485903499328426e+03 + 1.485202655712629e+03 1.484499079227457e+03 1.483792773721193e+03 1.483083743048834e+03 1.482371991072084e+03 + 1.481657521659358e+03 1.480940338685780e+03 1.480220446033183e+03 1.479497847590113e+03 1.478772547251821e+03 + 1.478044548920272e+03 1.477313856504138e+03 1.476580473918802e+03 1.475844405086357e+03 1.475105653935605e+03 + 1.474364224402058e+03 1.473620120427938e+03 1.472873345962177e+03 1.472123904960415e+03 1.471371801385004e+03 + 1.470617039205005e+03 1.469859622396187e+03 1.469099554941032e+03 1.468336840828730e+03 1.467571484055180e+03 + 1.466803488622991e+03 1.466032858541484e+03 1.465259597826687e+03 1.464483710501340e+03 1.463705200594890e+03 + 1.462924072143496e+03 1.462140329190026e+03 1.461353975784058e+03 1.460565015981880e+03 1.459773453846489e+03 + 1.458979293447591e+03 1.458182538861605e+03 1.457383194171656e+03 1.456581263467582e+03 1.455776750845927e+03 + 1.454969660409948e+03 1.454159996269611e+03 1.453347762541590e+03 1.452532963349272e+03 1.451715602822750e+03 + 1.450895685098830e+03 1.450073214321026e+03 1.449248194639563e+03 1.448420630211373e+03 1.447590525200101e+03 + 1.446757883776100e+03 1.445922710116434e+03 1.445085008404874e+03 1.444244782831905e+03 1.443402037594718e+03 + 1.442556776897215e+03 1.441709004950008e+03 1.440858725970420e+03 1.440005944182481e+03 1.439150663816933e+03 + 1.438292889111226e+03 1.437432624309523e+03 1.436569873662692e+03 1.435704641428314e+03 1.434836931870678e+03 + 1.433966749260786e+03 1.433094097876346e+03 1.432218982001777e+03 1.431341405928208e+03 1.430461373953479e+03 + 1.429578890382137e+03 1.428693959525441e+03 1.427806585701360e+03 1.426916773234569e+03 1.426024526456458e+03 + 1.425129849705122e+03 1.424232747325370e+03 1.423333223668719e+03 1.422431283093393e+03 1.421526929964331e+03 + 1.420620168653178e+03 1.419711003538289e+03 1.418799439004731e+03 1.417885479444278e+03 1.416969129255415e+03 + 1.416050392843337e+03 1.415129274619950e+03 1.414205779003866e+03 1.413279910420411e+03 1.412351673301618e+03 + 1.411421072086230e+03 1.410488111219700e+03 1.409552795154193e+03 1.408615128348581e+03 1.407675115268446e+03 + 1.406732760386080e+03 1.405788068180486e+03 1.404841043137375e+03 1.403891689749170e+03 1.402940012515001e+03 + 1.401986015940709e+03 1.401029704538846e+03 1.400071082828672e+03 1.399110155336157e+03 1.398146926593981e+03 + 1.397181401141535e+03 1.396213583524918e+03 1.395243478296938e+03 1.394271090017116e+03 1.393296423251680e+03 + 1.392319482573570e+03 1.391340272562432e+03 1.390358797804626e+03 1.389375062893219e+03 1.388389072427989e+03 + 1.387400831015423e+03 1.386410343268718e+03 1.385417613807782e+03 1.384422647259231e+03 1.383425448256391e+03 + 1.382426021439299e+03 1.381424371454700e+03 1.380420502956051e+03 1.379414420603515e+03 1.378406129063970e+03 + 1.377395633010999e+03 1.376382937124898e+03 1.375368046092671e+03 1.374350964608031e+03 1.373331697371403e+03 + 1.372310249089921e+03 1.371286624477428e+03 1.370260828254477e+03 1.369232865148331e+03 1.368202739892964e+03 + 1.367170457229056e+03 1.366136021904002e+03 1.365099438671902e+03 1.364060712293568e+03 1.363019847536522e+03 + 1.361976849174995e+03 1.360931721989928e+03 1.359884470768972e+03 1.358835100306487e+03 1.357783615403544e+03 + 1.356730020867921e+03 1.355674321514110e+03 1.354616522163310e+03 1.353556627643430e+03 1.352494642789090e+03 + 1.351430572441617e+03 1.350364421449050e+03 1.349296194666138e+03 1.348225896954338e+03 1.347153533181818e+03 + 1.346079108223457e+03 1.345002626960841e+03 1.343924094282267e+03 1.342843515082743e+03 1.341760894263984e+03 + 1.340676236734416e+03 1.339589547409177e+03 1.338500831210112e+03 1.337410093065776e+03 1.336317337911434e+03 + 1.335222570689062e+03 1.334125796347346e+03 1.333027019841677e+03 1.331926246134163e+03 1.330823480193616e+03 + 1.329718726995561e+03 1.328611991522230e+03 1.327503278762568e+03 1.326392593712228e+03 1.325279941373571e+03 + 1.324165326755672e+03 1.323048754874311e+03 1.321930230751983e+03 1.320809759417887e+03 1.319687345907936e+03 + 1.318562995264752e+03 1.317436712537665e+03 1.316308502782716e+03 1.315178371062656e+03 1.314046322446946e+03 + 1.312912362011755e+03 1.311776494839963e+03 1.310638726021160e+03 1.309499060651645e+03 1.308357503834428e+03 + 1.307214060679228e+03 1.306068736302473e+03 1.304921535827301e+03 1.303772464383560e+03 1.302621527107810e+03 + 1.301468729143317e+03 1.300314075640058e+03 1.299157571754721e+03 1.297999222650704e+03 1.296839033498112e+03 + 1.295677009473761e+03 1.294513155761180e+03 1.293347477550602e+03 1.292179980038974e+03 1.291010668429951e+03 + 1.289839547933899e+03 1.288666623767893e+03 1.287491901155716e+03 1.286315385327865e+03 1.285137081521542e+03 + 1.283956994980662e+03 1.282775130955849e+03 1.281591494704436e+03 1.280406091490466e+03 1.279218926584693e+03 + 1.278030005264579e+03 1.276839332814297e+03 1.275646914524728e+03 1.274452755693465e+03 1.273256861624810e+03 + 1.272059237629775e+03 1.270859889026079e+03 1.269658821138155e+03 1.268456039297144e+03 1.267251548840895e+03 + 1.266045355113969e+03 1.264837463467636e+03 1.263627879259876e+03 1.262416607855379e+03 1.261203654625543e+03 + 1.259989024948479e+03 1.258772724209004e+03 1.257554757798647e+03 1.256335131115646e+03 1.255113849564950e+03 + 1.253890918558217e+03 1.252666343513813e+03 1.251440129856817e+03 1.250212283019015e+03 1.248982808438904e+03 + 1.247751711561691e+03 1.246518997839292e+03 1.245284672730334e+03 1.244048741700151e+03 1.242811210220790e+03 + 1.241572083771006e+03 1.240331367836264e+03 1.239089067908740e+03 1.237845189487317e+03 1.236599738077590e+03 + 1.235352719191863e+03 1.234104138349150e+03 1.232854001075175e+03 1.231602312902370e+03 1.230349079369880e+03 + 1.229094306023557e+03 1.227837998415964e+03 1.226580162106373e+03 1.225320802660766e+03 1.224059925651835e+03 + 1.222797536658982e+03 1.221533641268318e+03 1.220268245072664e+03 1.219001353671552e+03 1.217732972671222e+03 + 1.216463107684624e+03 1.215191764331420e+03 1.213918948237977e+03 1.212644665037377e+03 1.211368920369408e+03 + 1.210091719880570e+03 1.208813069224072e+03 1.207532974059833e+03 1.206251440054480e+03 1.204968472881353e+03 + 1.203684078220499e+03 1.202398261758676e+03 1.201111029189351e+03 1.199822386212701e+03 1.198532338535615e+03 + 1.197240891871687e+03 1.195948051941225e+03 1.194653824471246e+03 1.193358215195474e+03 1.192061229854346e+03 + 1.190762874195007e+03 1.189463153971313e+03 1.188162074943828e+03 1.186859642879827e+03 1.185555863553295e+03 + 1.184250742744927e+03 1.182944286242125e+03 1.181636499839004e+03 1.180327389336388e+03 1.179016960541809e+03 + 1.177705219269511e+03 1.176392171340446e+03 1.175077822582277e+03 1.173762178829377e+03 1.172445245922827e+03 + 1.171127029710419e+03 1.169807536046655e+03 1.168486770792745e+03 1.167164739816612e+03 1.165841448992886e+03 + 1.164516904202907e+03 1.163191111334726e+03 1.161864076283103e+03 1.160535804949508e+03 1.159206303242120e+03 + 1.157875577075829e+03 1.156543632372233e+03 1.155210475059642e+03 1.153876111073074e+03 1.152540546354257e+03 + 1.151203786851631e+03 1.149865838520342e+03 1.148526707322247e+03 1.147186399225916e+03 1.145844920206624e+03 + 1.144502276246358e+03 1.143158473333815e+03 1.141813517464402e+03 1.140467414640234e+03 1.139120170870139e+03 + 1.137771792169650e+03 1.136422284561014e+03 1.135071654073185e+03 1.133719906741829e+03 1.132367048609320e+03 + 1.131013085724743e+03 1.129658024143891e+03 1.128301869929270e+03 1.126944629150092e+03 1.125586307882280e+03 + 1.124226912208469e+03 1.122866448218001e+03 1.121504922006928e+03 1.120142339678013e+03 1.118778707340729e+03 + 1.117414031111256e+03 1.116048317112488e+03 1.114681571474025e+03 1.113313800332179e+03 1.111945009829970e+03 + 1.110575206117129e+03 1.109204395350097e+03 1.107832583692024e+03 1.106459777312770e+03 1.105085982388904e+03 + 1.103711205103706e+03 1.102335451647166e+03 1.100958728215983e+03 1.099581041013564e+03 1.098202396250028e+03 + 1.096822800142205e+03 1.095442258913632e+03 1.094060778794555e+03 1.092678366021934e+03 1.091295026839436e+03 + 1.089910767497437e+03 1.088525594253023e+03 1.087139513369993e+03 1.085752531118851e+03 1.084364653776815e+03 + 1.082975887627809e+03 1.081586238962469e+03 1.080195714078142e+03 1.078804319278880e+03 1.077412060875450e+03 + 1.076018945185327e+03 1.074624978532693e+03 1.073230167248444e+03 1.071834517670182e+03 1.070438036142223e+03 + 1.069040729015589e+03 1.067642602648012e+03 1.066243663403937e+03 1.064843917654515e+03 1.063443371777609e+03 + 1.062042032157791e+03 1.060639905186343e+03 1.059236997261256e+03 1.057833314787232e+03 1.056428864175682e+03 + 1.055023651844726e+03 1.053617684219196e+03 1.052210967730631e+03 1.050803508817282e+03 1.049395313897890e+03 + 1.047986388534756e+03 1.046576737255851e+03 1.045166364529164e+03 1.043755274824231e+03 1.042343472612131e+03 + 1.040930962365484e+03 1.039517748558457e+03 1.038103835666756e+03 1.036689228167636e+03 1.035273930539893e+03 + 1.033857947263865e+03 1.032441282821436e+03 1.031023941696033e+03 1.029605928372625e+03 1.028187247337727e+03 + 1.026767903079397e+03 1.025347900087235e+03 1.023927242852386e+03 1.022505935867538e+03 1.021083983626923e+03 + 1.019661390626317e+03 1.018238161363038e+03 1.016814300335948e+03 1.015389812045455e+03 1.013964700993507e+03 + 1.012538971683598e+03 1.011112628620765e+03 1.009685676311588e+03 1.008258119264191e+03 1.006829961988242e+03 + 1.005401208994952e+03 1.003971864797076e+03 1.002541933908912e+03 1.001111420846301e+03 9.996803301266303e+02 + 9.982486662688275e+02 9.968164337933661e+02 9.953836372222621e+02 9.939502810790750e+02 9.925163698889086e+02 + 9.910819081784098e+02 9.896469004757686e+02 9.882113513107199e+02 9.867752652145410e+02 9.853386467200531e+02 + 9.839015003616214e+02 9.824638306751541e+02 9.810256421981031e+02 9.795869394694643e+02 9.781477270297768e+02 + 9.767080094211232e+02 9.752677911871300e+02 9.738270768729670e+02 9.723858710253478e+02 9.709441781925295e+02 + 9.695020029243127e+02 9.680593497720415e+02 9.666162232886040e+02 9.651726280284314e+02 9.637285685474986e+02 + 9.622840494033246e+02 9.608390751549712e+02 9.593936503630440e+02 9.579477795896925e+02 9.565014673986094e+02 + 9.550547183550314e+02 9.536075370257383e+02 9.521599279790540e+02 9.507118957848456e+02 9.492634450145238e+02 + 9.478145802410424e+02 9.463653060389005e+02 9.449156269841388e+02 9.434655476543426e+02 9.420150726286407e+02 + 9.405642064877048e+02 9.391129538137513e+02 9.376613191905399e+02 9.362093072033728e+02 9.347569224390970e+02 + 9.333041694861028e+02 9.318510529343232e+02 9.303975773752362e+02 9.289437474018629e+02 9.274895676087672e+02 + 9.260350425920570e+02 9.245801769493847e+02 9.231249752799448e+02 9.216694421844763e+02 9.202135822652619e+02 + 9.187574001261273e+02 9.173009003724419e+02 9.158440876111187e+02 9.143869664506148e+02 9.129295415009306e+02 + 9.114718173736089e+02 9.100137986817383e+02 9.085554900399494e+02 9.070968960644165e+02 9.056380213728581e+02 + 9.041788705845360e+02 9.027194483202552e+02 9.012597592023648e+02 8.997998078547574e+02 8.983395989028686e+02 + 8.968791369736786e+02 8.954184266957105e+02 8.939574726990309e+02 8.924962796152502e+02 8.910348520775226e+02 + 8.895731947205452e+02 8.881113121805595e+02 8.866492090953504e+02 8.851868901042455e+02 8.837243598481174e+02 + 8.822616229693809e+02 8.807986841119955e+02 8.793355479214636e+02 8.778722190448314e+02 8.764087021306887e+02 + 8.749450018291686e+02 8.734811227919481e+02 8.720170696722481e+02 8.705528471248323e+02 8.690884598060085e+02 + 8.676239123736278e+02 8.661592094870851e+02 8.646943558073189e+02 8.632293559968109e+02 8.617642147195870e+02 + 8.602989366412162e+02 8.588335264288111e+02 8.573679887510280e+02 8.559023282780669e+02 8.544365496816713e+02 + 8.529706576351281e+02 8.515046568132680e+02 8.500385518924651e+02 8.485723475506371e+02 8.471060484672456e+02 + 8.456396593232956e+02 8.441731848013352e+02 8.427066295854568e+02 8.412399983612960e+02 8.397732958160319e+02 + 8.383065266383875e+02 8.368396955186294e+02 8.353728071485672e+02 8.339058662215547e+02 8.324388774324890e+02 + 8.309718454778108e+02 8.295047750555044e+02 8.280376708650979e+02 8.265705376076626e+02 8.251033799858133e+02 + 8.236362027037090e+02 8.221690104670519e+02 8.207018079830875e+02 8.192345999606056e+02 8.177673911099388e+02 + 8.163001861429635e+02 8.148329897731001e+02 8.133658067153123e+02 8.118986416861073e+02 8.104314994035359e+02 + 8.089643845871925e+02 8.074973019582153e+02 8.060302562392853e+02 8.045632521546285e+02 8.030962944300132e+02 + 8.016293877927517e+02 8.001625369717000e+02 7.986957466972576e+02 7.972290217013673e+02 7.957623667175162e+02 + 7.942957864807344e+02 7.928292857275953e+02 7.913628691962167e+02 7.898965416262595e+02 7.884303077589279e+02 + 7.869641723369706e+02 7.854981401046790e+02 7.840322158078881e+02 7.825664041939773e+02 7.811007100118686e+02 + 7.796351380120283e+02 7.781696929464658e+02 7.767043795687346e+02 7.752392026339312e+02 7.737741668986956e+02 + 7.723092771212124e+02 7.708445380612087e+02 7.693799544799557e+02 7.679155311402681e+02 7.664512728065041e+02 + 7.649871842445651e+02 7.635232702218972e+02 7.620595355074889e+02 7.605959848718730e+02 7.591326230871256e+02 + 7.576694549268664e+02 7.562064851662584e+02 7.547437185820088e+02 7.532811599523681e+02 7.518188140571300e+02 + 7.503566856776325e+02 7.488947795967565e+02 7.474331005989271e+02 7.459716534701122e+02 7.445104429978242e+02 + 7.430494739711182e+02 7.415887511805935e+02 7.401282794183929e+02 7.386680634782024e+02 7.372081081552518e+02 + 7.357484182463149e+02 7.342889985497084e+02 7.328298538652926e+02 7.313709889944722e+02 7.299124087401947e+02 + 7.284541179069513e+02 7.269961213007771e+02 7.255384237292504e+02 7.240810300014931e+02 7.226239449281712e+02 + 7.211671733214938e+02 7.197107199952134e+02 7.182545897646269e+02 7.167987874465738e+02 7.153433178594373e+02 + 7.138881858231457e+02 7.124333961591685e+02 7.109789536905207e+02 7.095248632417597e+02 7.080711296389870e+02 + 7.066177577098478e+02 7.051647522835304e+02 7.037121181907675e+02 7.022598602638342e+02 7.008079833365500e+02 + 6.993564922442782e+02 6.979053918239249e+02 6.964546869139400e+02 6.950043823543177e+02 6.935544829865950e+02 + 6.921049936538523e+02 6.906559192007142e+02 6.892072644733491e+02 6.877590343194680e+02 6.863112335883264e+02 + 6.848638671307228e+02 6.834169397989994e+02 6.819704564470420e+02 6.805244219302806e+02 6.790788411056876e+02 + 6.776337188317796e+02 6.761890599686175e+02 6.747448693778041e+02 6.733011519224871e+02 6.718579124673579e+02 + 6.704151558786504e+02 6.689728870241429e+02 6.675311107731571e+02 6.660898319965579e+02 6.646490555667547e+02 + 6.632087863576994e+02 6.617690292448882e+02 6.603297891053608e+02 6.588910708177000e+02 6.574528792620325e+02 + 6.560152193200289e+02 6.545780958749028e+02 6.531415138114120e+02 6.517054780158572e+02 6.502699933760831e+02 + 6.488350647814780e+02 6.474006971229736e+02 6.459668952930450e+02 6.445336641857116e+02 6.431010086965356e+02 + 6.416689337226230e+02 6.402374441626239e+02 6.388065449167315e+02 6.373762408866819e+02 6.359465369757564e+02 + 6.345174380887786e+02 6.330889491321157e+02 6.316610750136796e+02 6.302338206429247e+02 6.288071909308491e+02 + 6.273811907899951e+02 6.259558251344477e+02 6.245310988798360e+02 6.231070169433332e+02 6.216835842436550e+02 + 6.202608057010611e+02 6.188386862373554e+02 6.174172307758844e+02 6.159964442415383e+02 6.145763315607522e+02 + 6.131568976615030e+02 6.117381474733122e+02 6.103200859272448e+02 6.089027179559087e+02 6.074860484934565e+02 + 6.060700824755835e+02 6.046548248395288e+02 6.032402805240755e+02 6.018264544695495e+02 6.004133516178208e+02 + 5.990009769123031e+02 5.975893352979532e+02 5.961784317212720e+02 5.947682711303036e+02 5.933588584746357e+02 + 5.919501987053994e+02 5.905422967752705e+02 5.891351576384668e+02 5.877287862507508e+02 5.863231875694282e+02 + 5.849183665533477e+02 5.835143281629030e+02 5.821110773600302e+02 5.807086191082091e+02 5.793069583724634e+02 + 5.779061001193606e+02 5.765060493170109e+02 5.751068109350690e+02 5.737083899447330e+02 5.723107913187440e+02 + 5.709140200313871e+02 5.695180810584912e+02 5.681229793774282e+02 5.667287199671144e+02 5.653353078080089e+02 + 5.639427478821145e+02 5.625510451729782e+02 5.611602046656897e+02 5.597702313468828e+02 5.583811302047351e+02 + 5.569929062289672e+02 5.556055644108436e+02 5.542191097431725e+02 5.528335472203050e+02 5.514488818381369e+02 + 5.500651185941068e+02 5.486822624871968e+02 5.473003185179330e+02 5.459192916883851e+02 5.445391870021655e+02 + 5.431600094644319e+02 5.417817640818839e+02 5.404044558627653e+02 5.390280898168637e+02 5.376526709555103e+02 + 5.362782042915790e+02 5.349046948394886e+02 5.335321476152006e+02 5.321605676362202e+02 5.307899599215965e+02 + 5.294203294919217e+02 5.280516813693320e+02 5.266840205775071e+02 5.253173521416702e+02 5.239516810885877e+02 + 5.225870124465707e+02 5.212233512454725e+02 5.198607025166908e+02 5.184990712931668e+02 5.171384626093851e+02 + 5.157788815013741e+02 5.144203330067055e+02 5.130628221644946e+02 5.117063540154008e+02 5.103509336016263e+02 + 5.089965659669175e+02 5.076432561565640e+02 5.062910092173990e+02 5.049398301977998e+02 5.035897241476866e+02 + 5.022406961185235e+02 5.008927511633182e+02 4.995458943366220e+02 4.982001306945292e+02 4.968554652946787e+02 + 4.955119031962524e+02 4.941694494599757e+02 4.928281091481178e+02 4.914878873244913e+02 4.901487890544524e+02 + 4.888108194049014e+02 4.874739834442815e+02 4.861382862425793e+02 4.848037328713260e+02 4.834703284035954e+02 + 4.821380779140055e+02 4.808069864787175e+02 4.794770591754360e+02 4.781483010834104e+02 4.768207172834317e+02 + 4.754943128578365e+02 4.741690928905032e+02 4.728450624668552e+02 4.715222266738587e+02 4.702005906000235e+02 + 4.688801593354034e+02 4.675609379715956e+02 4.662429316017405e+02 4.649261453205227e+02 4.636105842241698e+02 + 4.622962534104534e+02 4.609831579786886e+02 4.596713030297340e+02 4.583606936659914e+02 4.570513349914071e+02 + 4.557432321114703e+02 4.544363901332138e+02 4.531308141652141e+02 4.518265093175915e+02 4.505234807020092e+02 + 4.492217334316751e+02 4.479212726213398e+02 4.466221033872973e+02 4.453242308473862e+02 4.440276601209875e+02 + 4.427323963290266e+02 4.414384445939725e+02 4.401458100398370e+02 4.388544977921764e+02 4.375645129780900e+02 + 4.362758607262207e+02 4.349885461667554e+02 4.337025744314242e+02 4.324179506535007e+02 4.311346799678025e+02 + 4.298527675106906e+02 4.285722184200691e+02 4.272930378353866e+02 4.260152308976346e+02 4.247388027493482e+02 + 4.234637585346064e+02 4.221901033990317e+02 4.209178424897899e+02 4.196469809555908e+02 4.183775239466873e+02 + 4.171094766148764e+02 4.158428441134982e+02 4.145776315974367e+02 4.133138442231195e+02 4.120514871485177e+02 + 4.107905655331455e+02 4.095310845380616e+02 4.082730493258674e+02 4.070164650607085e+02 4.057613369082738e+02 + 4.045076700357962e+02 4.032554696120511e+02 4.020047408073589e+02 4.007554887935824e+02 3.995077187441286e+02 + 3.982614358339480e+02 3.970166452395346e+02 3.957733521389259e+02 3.945315617117033e+02 3.932912791389912e+02 + 3.920525096034583e+02 3.908152582893162e+02 3.895795303823206e+02 3.883453310697706e+02 3.871126655405087e+02 + 3.858815389849212e+02 3.846519565949380e+02 3.834239235640323e+02 3.821974450872211e+02 3.809725263610652e+02 + 3.797491725836686e+02 3.785273889546788e+02 3.773071806752873e+02 3.760885529482291e+02 3.748715109777822e+02 + 3.736560599697692e+02 3.724422051315553e+02 3.712299516720498e+02 3.700193048017055e+02 3.688102697325187e+02 + 3.676028516780295e+02 3.663970558533210e+02 3.651928874750207e+02 3.639903517612993e+02 3.627894539318706e+02 + 3.615901992079928e+02 3.603925928124674e+02 3.591966399696389e+02 3.580023459053963e+02 3.568097158471716e+02 + 3.556187550239405e+02 3.544294686662223e+02 3.532418620060801e+02 3.520559402771199e+02 3.508717087144923e+02 + 3.496891725548904e+02 3.485083370365518e+02 3.473292073992571e+02 3.461517888843309e+02 3.449760867346407e+02 + 3.438021061945983e+02 3.426298525101589e+02 3.414593309288210e+02 3.402905466996269e+02 3.391235050731623e+02 + 3.379582113015570e+02 3.367946706384836e+02 3.356328883391590e+02 3.344728696603431e+02 3.333146198603399e+02 + 3.321581441989965e+02 3.310034479377038e+02 3.298505363393963e+02 3.286994146685523e+02 3.275500881911931e+02 + 3.264025621748842e+02 3.252568418887342e+02 3.241129326033955e+02 3.229708395910641e+02 3.218305681254797e+02 + 3.206921234819250e+02 3.195555109372272e+02 3.184207357697562e+02 3.172878032594259e+02 3.161567186876940e+02 + 3.150274873375612e+02 3.139001144935722e+02 3.127746054418153e+02 3.116509654699221e+02 3.105291998670680e+02 + 3.094093139239718e+02 3.082913129328962e+02 3.071752021876472e+02 3.060609869835743e+02 3.049486726175709e+02 + 3.038382643880739e+02 3.027297675950632e+02 3.016231875400634e+02 3.005185295261418e+02 2.994157988579094e+02 + 2.983150008415209e+02 2.972161407846750e+02 2.961192239966130e+02 2.950242557881208e+02 2.939312414715272e+02 + 2.928401863607048e+02 2.917510957710699e+02 2.906639750195822e+02 2.895788294247451e+02 2.884956643066055e+02 + 2.874144849867538e+02 2.863352967883243e+02 2.852581050359946e+02 2.841829150559857e+02 2.831097321760628e+02 + 2.820385617255341e+02 2.809694090352515e+02 2.799022794376108e+02 2.788371782665511e+02 2.777741108575549e+02 + 2.767130825476488e+02 2.756540986754025e+02 2.745971645809293e+02 2.735422856058867e+02 2.724894670934750e+02 + 2.714387143884384e+02 2.703900328370648e+02 2.693434277871856e+02 2.682989045881756e+02 2.672564685909533e+02 + 2.662161251479810e+02 2.651778796132642e+02 2.641417373423522e+02 2.631077036923379e+02 2.620757840218578e+02 + 2.610459836910915e+02 2.600183080617631e+02 2.589927624971394e+02 2.579693523620314e+02 2.569480830227931e+02 + 2.559289598473227e+02 2.549119882050614e+02 2.538971734669946e+02 2.528845210056507e+02 2.518740361951020e+02 + 2.508657244109642e+02 2.498595910303967e+02 2.488556414321026e+02 2.478538809963281e+02 2.468543151048638e+02 + 2.458569491410431e+02 2.448617884897432e+02 2.438688385373852e+02 2.428781046719333e+02 2.418895922828956e+02 + 2.409033067613238e+02 2.399192534998131e+02 2.389374378925019e+02 2.379578653350729e+02 2.369805412247519e+02 + 2.360054709603084e+02 2.350326599420553e+02 2.340621135718494e+02 2.330938372530911e+02 2.321278363907239e+02 + 2.311641163912353e+02 2.302026826626565e+02 2.292435406145617e+02 2.282866956580692e+02 2.273321532058407e+02 + 2.263799186720815e+02 2.254299974725404e+02 2.244823950245099e+02 2.235371167468261e+02 2.225941680598685e+02 + 2.216535543855603e+02 2.207152811473682e+02 2.197793537703028e+02 2.188457776809178e+02 2.179145583073106e+02 + 2.169857010791227e+02 2.160592114275385e+02 2.151350947852860e+02 2.142133565866376e+02 2.132940022674083e+02 + 2.123770372649571e+02 2.114624670181867e+02 2.105502969675431e+02 2.096405325550162e+02 2.087331792241393e+02 + 2.078282424199890e+02 2.069257275891860e+02 2.060256401798943e+02 2.051279856418216e+02 2.042327694262190e+02 + 2.033399969858813e+02 2.024496737751469e+02 2.015618052498977e+02 2.006763968675590e+02 1.997934540871004e+02 + 1.989129823690343e+02 1.980349871754169e+02 1.971594739698481e+02 1.962864482174713e+02 1.954159153849736e+02 + 1.945478809405854e+02 1.936823503540812e+02 1.928193290967781e+02 1.919588226415381e+02 1.911008364627658e+02 + 1.902453760364096e+02 1.893924468399617e+02 1.885420543524577e+02 1.876942040544768e+02 1.868489014281417e+02 + 1.860061519571189e+02 1.851659611266184e+02 1.843283344233937e+02 1.834932773357418e+02 1.826607953535034e+02 + 1.818308939680629e+02 1.810035786723481e+02 1.801788549608304e+02 1.793567283295249e+02 1.785372042759901e+02 + 1.777202882993282e+02 1.769059859001850e+02 1.760943025807497e+02 1.752852438447554e+02 1.744788151974785e+02 + 1.736750221457390e+02 1.728738701979007e+02 1.720753648638706e+02 1.712795116550998e+02 1.704863160845825e+02 + 1.696957836668566e+02 1.689079199180039e+02 1.681227303556493e+02 1.673402204989617e+02 1.665603958686532e+02 + 1.657832619869799e+02 1.650088243777409e+02 1.642370885662795e+02 1.634680600794823e+02 1.627017444457793e+02 + 1.619381471951445e+02 1.611772738590951e+02 1.604191299706921e+02 1.596637210645399e+02 1.589110526767867e+02 + 1.581611303451241e+02 1.574139596087874e+02 1.566695460085554e+02 1.559278950867503e+02 1.551890123872385e+02 + 1.544529034554292e+02 1.537195738382757e+02 1.529890290842748e+02 1.522612747434666e+02 1.515363163674351e+02 + 1.508141595093076e+02 1.500948097237555e+02 1.493782725669932e+02 1.486645535967789e+02 1.479536583724143e+02 + 1.472455924547449e+02 1.465403614061596e+02 1.458379707905909e+02 1.451384261735148e+02 1.444417331219514e+02 + 1.437478972044633e+02 1.430569239911578e+02 1.423688190536853e+02 1.416835879652396e+02 1.410012363005585e+02 + 1.403217696359229e+02 1.396451935491577e+02 1.389715136196312e+02 1.383007354282553e+02 1.376328645574854e+02 + 1.369679065913208e+02 1.363058671153038e+02 1.356467517165207e+02 1.349905659836014e+02 1.343373155067194e+02 + 1.336870058775913e+02 1.330396426894780e+02 1.323952315371832e+02 1.317537780170550e+02 1.311152877269845e+02 + 1.304797662664065e+02 1.298472192362996e+02 1.292176522391855e+02 1.285910708791301e+02 1.279674807617425e+02 + 1.273468874941753e+02 1.267292966851250e+02 1.261147139448316e+02 1.255031448850783e+02 1.248945951191923e+02 + 1.242890702620443e+02 1.236865759300485e+02 1.230871177411627e+02 1.224907013148884e+02 1.218973322722703e+02 + 1.213070162358971e+02 1.207197588299010e+02 1.201355656799576e+02 1.195544424132864e+02 1.189763946586499e+02 + 1.184014280463548e+02 1.178295482082510e+02 1.172607607777323e+02 1.166950713897357e+02 1.161324856807421e+02 + 1.155730092887757e+02 1.150166478534045e+02 1.144634070157400e+02 1.139132924184372e+02 1.133663097056950e+02 + 1.128224645232555e+02 1.122817625184044e+02 1.117442093399712e+02 1.112098106383290e+02 1.106785720653942e+02 + 1.101504843345202e+02 1.096253193854976e+02 1.091027814759659e+02 1.085828903190926e+02 1.080656662057070e+02 + 1.075510744401853e+02 1.070391017583160e+02 1.065297369211215e+02 1.060229642403793e+02 1.055187689946627e+02 + 1.050171373101604e+02 1.045180558156006e+02 1.040215103049707e+02 1.035274865113781e+02 1.030359706887152e+02 + 1.025469492169604e+02 1.020604083357866e+02 1.015763340040288e+02 1.010947131078929e+02 1.006155327791835e+02 + 1.001387792631148e+02 9.966443911893010e+01 9.919249927205091e+01 9.872294669690289e+01 9.825576811144268e+01 + 9.779095024426459e+01 9.732848086108395e+01 9.686834738339628e+01 9.641053663288847e+01 9.595503591883143e+01 + 9.550183276437639e+01 9.505091470489599e+01 9.460226894357737e+01 9.415588307372171e+01 9.371174549820027e+01 + 9.326984390100915e+01 9.283016578095182e+01 9.239269910989660e+01 9.195743199867270e+01 9.152435246657959e+01 + 9.109344822825337e+01 9.066470776170968e+01 9.023811990175319e+01 8.981367265385576e+01 8.939135422700863e+01 + 8.897115319588202e+01 8.855305819940260e+01 8.813705766268812e+01 8.772313993524557e+01 8.731129428898021e+01 + 8.690150981214184e+01 8.649377498492467e+01 8.608807868460502e+01 8.568441000539183e+01 8.528275807208179e+01 + 8.488311171021131e+01 8.448546000255536e+01 8.408979283578468e+01 8.369609949978657e+01 8.330436902264381e+01 + 8.291459088961614e+01 8.252675470341519e+01 8.214085000107356e+01 8.175686603719873e+01 8.137479266933553e+01 + 8.099462018292702e+01 8.061633811896954e+01 8.023993612969721e+01 7.986540422509246e+01 7.949273245617202e+01 + 7.912191071864751e+01 7.875292880591886e+01 7.838577728963824e+01 7.802044667908689e+01 7.765692688210476e+01 + 7.729520814701189e+01 7.693528093921003e+01 7.657713574044320e+01 7.622076279877933e+01 7.586615250876412e+01 + 7.551329599462582e+01 7.516218394284439e+01 7.481280673973237e+01 7.446515517211270e+01 7.411922012543234e+01 + 7.377499243991551e+01 7.343246273248482e+01 7.309162206375170e+01 7.275246194060588e+01 7.241497325488510e+01 + 7.207914691168762e+01 7.174497413637995e+01 7.141244624067238e+01 7.108155440657860e+01 7.075228964021176e+01 + 7.042464364044737e+01 7.009860816502822e+01 6.977417437950896e+01 6.945133371117183e+01 6.913007780419414e+01 + 6.881039831641085e+01 6.849228672098478e+01 6.817573455985929e+01 6.786073404036127e+01 6.754727706019318e+01 + 6.723535518365489e+01 6.692496029976250e+01 6.661608442214438e+01 6.630871955818391e+01 6.600285747074972e+01 + 6.569849025826812e+01 6.539561050984807e+01 6.509421028016476e+01 6.479428156422156e+01 6.449581665898590e+01 + 6.419880794007263e+01 6.390324769379086e+01 6.360912802573969e+01 6.331644161216560e+01 6.302518126952705e+01 + 6.273533924838438e+01 6.244690800283556e+01 6.215988021335375e+01 6.187424856554645e+01 6.159000558852496e+01 + 6.130714382209544e+01 6.102565642873360e+01 6.074553634647369e+01 6.046677613965124e+01 6.018936867893675e+01 + 5.991330696615304e+01 5.963858400265185e+01 5.936519255461710e+01 5.909312563142009e+01 5.882237675846172e+01 + 5.855293899151076e+01 5.828480526925385e+01 5.801796883717194e+01 5.775242299813667e+01 5.748816098906929e+01 + 5.722517588172157e+01 5.696346118973321e+01 5.670301063052477e+01 5.644381744585571e+01 5.618587497447161e+01 + 5.592917675378749e+01 5.567371639288440e+01 5.541948735564524e+01 5.516648303666721e+01 5.491469740133566e+01 + 5.466412430128952e+01 5.441475721341882e+01 5.416658984866251e+01 5.391961604526729e+01 5.367382965707854e+01 + 5.342922435049869e+01 5.318579394824101e+01 5.294353276046760e+01 5.270243471566913e+01 5.246249358126801e+01 + 5.222370341980431e+01 5.198605834991378e+01 5.174955243603662e+01 5.151417956992881e+01 5.127993401538280e+01 + 5.104681029539683e+01 5.081480246751264e+01 5.058390465007635e+01 5.035411117607305e+01 5.012541641928832e+01 + 4.989781463692880e+01 4.967129999443014e+01 4.944586717469857e+01 4.922151081792142e+01 4.899822516393252e+01 + 4.877600466591702e+01 4.855484391176263e+01 4.833473749525371e+01 4.811567985888949e+01 4.789766553100244e+01 + 4.768068948486052e+01 4.746474643299185e+01 4.724983089968822e+01 4.703593761581940e+01 4.682306140175855e+01 + 4.661119706938157e+01 4.640033923440899e+01 4.619048280117971e+01 4.598162297433280e+01 4.577375454810339e+01 + 4.556687232031752e+01 4.536097129194708e+01 4.515604651624491e+01 4.495209295916556e+01 4.474910546848848e+01 + 4.454707932343867e+01 4.434600983627007e+01 4.414589194663536e+01 4.394672075425581e+01 4.374849149110094e+01 + 4.355119939554362e+01 4.335483958155968e+01 4.315940720272008e+01 4.296489783321342e+01 4.277130684141869e+01 + 4.257862938067940e+01 4.238686082011235e+01 4.219599659307687e+01 4.200603211268383e+01 4.181696265307154e+01 + 4.162878369849639e+01 4.144149102922540e+01 4.125508008000694e+01 4.106954625154178e+01 4.088488514080404e+01 + 4.070109237453877e+01 4.051816351991027e+01 4.033609404369983e+01 4.015487975529847e+01 3.997451654390139e+01 + 3.979499995457292e+01 3.961632565249730e+01 3.943848943565658e+01 3.926148710146721e+01 3.908531435163689e+01 + 3.890996689581685e+01 3.873544082272831e+01 3.856173207783515e+01 3.838883637414560e+01 3.821674961156019e+01 + 3.804546776546066e+01 3.787498680517137e+01 3.770530255859592e+01 3.753641100849845e+01 3.736830845518836e+01 + 3.720099088344971e+01 3.703445420945200e+01 3.686869456603723e+01 3.670370808841574e+01 3.653949085950763e+01 + 3.637603888796111e+01 3.621334844811717e+01 3.605141592615973e+01 3.589023740445852e+01 3.572980904042850e+01 + 3.557012712196481e+01 3.541118795282225e+01 3.525298774403768e+01 3.509552267323749e+01 3.493878928773343e+01 + 3.478278404343990e+01 3.462750313614663e+01 3.447294293878365e+01 3.431909990161546e+01 3.416597046087814e+01 + 3.401355094900445e+01 3.386183779648810e+01 3.371082772101448e+01 3.356051721064496e+01 3.341090265530899e+01 + 3.326198061398263e+01 3.311374767636361e+01 3.296620040125966e+01 3.281933525310492e+01 3.267314891432770e+01 + 3.252763821351709e+01 3.238279969616838e+01 3.223862995512887e+01 3.209512571750849e+01 3.195228370249094e+01 + 3.181010057023420e+01 3.166857295105629e+01 3.152769775432829e+01 3.138747186368265e+01 3.124789194582367e+01 + 3.110895478177638e+01 3.097065722333928e+01 3.083299612203396e+01 3.069596823521478e+01 3.055957038379009e+01 + 3.042379968490992e+01 3.028865305190764e+01 3.015412726448298e+01 3.002021927954454e+01 2.988692608783410e+01 + 2.975424465393443e+01 2.962217185358958e+01 2.949070472525562e+01 2.935984046863818e+01 2.922957605244617e+01 + 2.909990844798608e+01 2.897083474125067e+01 2.884235205411202e+01 2.871445744621140e+01 2.858714789194334e+01 + 2.846042066311678e+01 2.833427304434733e+01 2.820870204788112e+01 2.808370481822039e+01 2.795927858955916e+01 + 2.783542056310479e+01 2.771212788710439e+01 2.758939774558937e+01 2.746722754519704e+01 2.734561457842300e+01 + 2.722455602005491e+01 2.710404915757552e+01 2.698409131619408e+01 2.686467981339180e+01 2.674581188504884e+01 + 2.662748489299116e+01 2.650969637323688e+01 2.639244364869198e+01 2.627572402574995e+01 2.615953493480668e+01 + 2.604387380499337e+01 2.592873803144385e+01 2.581412497154068e+01 2.570003216993883e+01 2.558645721031992e+01 + 2.547339748309297e+01 2.536085044648649e+01 2.524881363723968e+01 2.513728460374055e+01 2.502626081142699e+01 + 2.491573971820056e+01 2.480571905896494e+01 2.469619646153339e+01 2.458716938319504e+01 2.447863542000312e+01 + 2.437059221927192e+01 2.426303741725681e+01 2.415596854366440e+01 2.404938323139217e+01 2.394327933047775e+01 + 2.383765447837906e+01 2.373250626120992e+01 2.362783239922733e+01 2.352363062421024e+01 2.341989863680159e+01 + 2.331663407933185e+01 2.321383475989216e+01 2.311149855755017e+01 2.300962316438995e+01 2.290820631357202e+01 + 2.280724581327735e+01 2.270673948178020e+01 2.260668508940155e+01 2.250708039173678e+01 2.240792334786956e+01 + 2.230921186720802e+01 2.221094371595302e+01 2.211311674173436e+01 2.201572884123411e+01 2.191877792312015e+01 + 2.182226182065280e+01 2.172617842216956e+01 2.163052579410284e+01 2.153530186271772e+01 2.144050449256298e+01 + 2.134613164544727e+01 2.125218130870039e+01 2.115865145244560e+01 2.106553997668644e+01 2.097284492087666e+01 + 2.088056441996010e+01 2.078869643251129e+01 2.069723893213309e+01 2.060618996606658e+01 2.051554761096601e+01 + 2.042530989859754e+01 2.033547481777502e+01 2.024604054022628e+01 2.015700522393599e+01 2.006836688994228e+01 + 1.998012363072147e+01 1.989227358045817e+01 1.980481486918973e+01 1.971774557717947e+01 1.963106382303616e+01 + 1.954476789103884e+01 1.945885594703988e+01 1.937332608222908e+01 1.928817649453870e+01 1.920340539662878e+01 + 1.911901098077130e+01 1.903499138773951e+01 1.895134486255558e+01 1.886806974988112e+01 1.878516424109755e+01 + 1.870262653275597e+01 1.862045489823334e+01 1.853864761644500e+01 1.845720293609644e+01 1.837611907561623e+01 + 1.829539441141390e+01 1.821502731690405e+01 1.813501600648008e+01 1.805535878852776e+01 1.797605402680784e+01 + 1.789710004813803e+01 1.781849513976010e+01 1.774023761822760e+01 1.766232596769640e+01 1.758475857461898e+01 + 1.750753373031707e+01 1.743064982368309e+01 1.735410526816905e+01 1.727789846424588e+01 1.720202775432962e+01 + 1.712649156263800e+01 1.705128842771503e+01 1.697641675133914e+01 1.690187492053174e+01 1.682766139576636e+01 + 1.675377465125957e+01 1.668021313537254e+01 1.660697525047803e+01 1.653405953620346e+01 1.646146456303875e+01 + 1.638918876353225e+01 1.631723061252691e+01 1.624558863577738e+01 1.617426136715184e+01 1.610324729276991e+01 + 1.603254489420701e+01 1.596215281065743e+01 1.589206962268447e+01 1.582229381597797e+01 1.575282394813798e+01 + 1.568365860435203e+01 1.561479636559848e+01 1.554623575841051e+01 1.547797536749664e+01 1.541001389568697e+01 + 1.534234992945672e+01 1.527498202635700e+01 1.520790881496337e+01 1.514112893627654e+01 1.507464101206718e+01 + 1.500844361854594e+01 1.494253544400039e+01 1.487691522461213e+01 1.481158156982783e+01 1.474653311471545e+01 + 1.468176854391490e+01 1.461728655322583e+01 1.455308580005108e+01 1.448916492494823e+01 1.442552270891503e+01 + 1.436215789907635e+01 1.429906914560298e+01 1.423625515786986e+01 1.417371467503432e+01 1.411144643634281e+01 + 1.404944913182382e+01 1.398772148936426e+01 1.392626235467004e+01 1.386507047757601e+01 1.380414456703780e+01 + 1.374348339923097e+01 1.368308576360786e+01 1.362295043539383e+01 1.356307614411792e+01 1.350346171009224e+01 + 1.344410601461897e+01 1.338500782259274e+01 1.332616591200318e+01 1.326757911048049e+01 1.320924625504148e+01 + 1.315116615215319e+01 1.309333758418828e+01 1.303575945915385e+01 1.297843067064863e+01 1.292135001185642e+01 + 1.286451632934388e+01 1.280792850075226e+01 1.275158540067995e+01 1.269548586414703e+01 1.263962874841400e+01 + 1.258401302186647e+01 1.252863758019894e+01 1.247350127006052e+01 1.241860299544399e+01 1.236394167532885e+01 + 1.230951622025856e+01 1.225532549825102e+01 1.220136844757296e+01 1.214764407513537e+01 1.209415128431592e+01 + 1.204088897936275e+01 1.198785611322907e+01 1.193505164847797e+01 1.188247452422181e+01 1.183012365035161e+01 + 1.177799804372636e+01 1.172609672645034e+01 1.167441862559045e+01 1.162296270435431e+01 1.157172795813644e+01 + 1.152071338824009e+01 1.146991795771504e+01 1.141934063624516e+01 1.136898050295155e+01 1.131883658051165e+01 + 1.126890783457083e+01 1.121919328583311e+01 1.116969196974251e+01 1.112040291453270e+01 1.107132511138846e+01 + 1.102245760367597e+01 1.097379950683186e+01 1.092534984778681e+01 1.087710764406476e+01 1.082907196010627e+01 + 1.078124186863284e+01 1.073361642501848e+01 1.068619465441603e+01 1.063897567074718e+01 1.059195860734133e+01 + 1.054514250814830e+01 1.049852644360809e+01 1.045210951602862e+01 1.040589083229813e+01 1.035986946911022e+01 + 1.031404450080543e+01 1.026841510170119e+01 1.022298040707346e+01 1.017773949095798e+01 1.013269147478631e+01 + 1.008783549702620e+01 1.004317069189082e+01 9.998696157456914e+00 9.954411030186206e+00 9.910314523784715e+00 + 9.866405774945729e+00 9.822683900561229e+00 9.779148062474189e+00 9.735797433007823e+00 9.692631171490490e+00 + 9.649648402951970e+00 9.606848328743531e+00 9.564230182014787e+00 9.521793107635142e+00 9.479536270440141e+00 + 9.437458869806633e+00 9.395560106559989e+00 9.353839157926716e+00 9.312295192835592e+00 9.270927467731591e+00 + 9.229735216231479e+00 9.188717610212938e+00 9.147873860369382e+00 9.107203196336844e+00 9.066704846764596e+00 + 9.026378005702853e+00 8.986221892357717e+00 8.946235805206038e+00 8.906418978693665e+00 8.866770619316361e+00 + 8.827289975974383e+00 8.787976307390357e+00 8.748828863538764e+00 8.709846863139358e+00 8.671029583554503e+00 + 8.632376341244221e+00 8.593886376949055e+00 8.555558939921891e+00 8.517393311170933e+00 8.479388776756116e+00 + 8.441544603229096e+00 8.403860042243403e+00 8.366334424744339e+00 8.328967072292842e+00 8.291757243124138e+00 + 8.254704227472720e+00 8.217807335382002e+00 8.181065876905594e+00 8.144479133106664e+00 8.108046399433587e+00 + 8.071767047639053e+00 8.035640397926882e+00 7.999665736506032e+00 7.963842390434660e+00 7.928169696145141e+00 + 7.892646983285742e+00 7.857273552651162e+00 7.822048750599857e+00 7.786971968025827e+00 7.752042529333232e+00 + 7.717259758863888e+00 7.682623011133142e+00 7.648131647347260e+00 7.613785013617140e+00 7.579582436948184e+00 + 7.545523312250220e+00 7.511607037617057e+00 7.477832951167176e+00 7.444200413093294e+00 7.410708803334905e+00 + 7.377357505498556e+00 7.344145878673218e+00 7.311073286547245e+00 7.278139163173499e+00 7.245342906306997e+00 + 7.212683876663248e+00 7.180161467446147e+00 7.147775082852699e+00 7.115524124234772e+00 7.083407965702390e+00 + 7.051426016132217e+00 7.019577732801474e+00 6.987862512275252e+00 6.956279745475502e+00 6.924828855941318e+00 + 6.893509269882150e+00 6.862320401692200e+00 6.831261647888545e+00 6.800332460884749e+00 6.769532305211046e+00 + 6.738860589806862e+00 6.708316738463165e+00 6.677900193977888e+00 6.647610403615440e+00 6.617446795946176e+00 + 6.587408797932629e+00 6.557495898186097e+00 6.527707560796614e+00 6.498043211862364e+00 6.468502306113241e+00 + 6.439084309299234e+00 6.409788685242900e+00 6.380614873655190e+00 6.351562339061567e+00 6.322630595895343e+00 + 6.293819108127046e+00 6.265127326375664e+00 6.236554729526047e+00 6.208100805116588e+00 6.179765032202197e+00 + 6.151546864740690e+00 6.123445807150094e+00 6.095461385258917e+00 6.067593067877628e+00 6.039840335121551e+00 + 6.012202688508743e+00 5.984679633169969e+00 5.957270656961056e+00 5.929975240292937e+00 5.902792923627279e+00 + 5.875723232013562e+00 5.848765648702115e+00 5.821919682493143e+00 5.795184854142510e+00 5.768560683026402e+00 + 5.742046666390822e+00 5.715642318587924e+00 5.689347205919744e+00 5.663160851223163e+00 5.637082758311135e+00 + 5.611112458697719e+00 5.585249491519008e+00 5.559493390584049e+00 5.533843667789125e+00 5.508299872311603e+00 + 5.482861578646651e+00 5.457528314665947e+00 5.432299611523626e+00 5.407175018586152e+00 5.382154093094761e+00 + 5.357236378022760e+00 5.332421403106363e+00 5.307708752059064e+00 5.283098003376689e+00 5.258588694187007e+00 + 5.234180379291222e+00 5.209872626694981e+00 5.185665008050016e+00 5.161557074183171e+00 5.137548383980142e+00 + 5.113638545797982e+00 5.089827134282968e+00 5.066113702430728e+00 5.042497830741953e+00 5.018979105007048e+00 + 4.995557105455633e+00 4.972231392615168e+00 4.949001558388967e+00 4.925867224885915e+00 4.902827967986653e+00 + 4.879883363679411e+00 4.857033008673309e+00 4.834276503129009e+00 4.811613436797770e+00 4.789043387081744e+00 + 4.766565977795326e+00 4.744180833573695e+00 4.721887536130310e+00 4.699685684376157e+00 4.677574891583497e+00 + 4.655554772271826e+00 4.633624922898647e+00 4.611784942911348e+00 4.590034481232405e+00 4.568373160121153e+00 + 4.546800575450856e+00 4.525316347519302e+00 4.503920103923871e+00 4.482611469298424e+00 4.461390048788094e+00 + 4.440255471271009e+00 4.419207398665950e+00 4.398245451269402e+00 4.377369245425554e+00 4.356578419383048e+00 + 4.335872613273037e+00 4.315251459075552e+00 4.294714576337845e+00 4.274261622204341e+00 4.253892261314030e+00 + 4.233606119889290e+00 4.213402835603544e+00 4.193282059746365e+00 4.173243445650493e+00 4.153286631923412e+00 + 4.133411255497697e+00 4.113616998652003e+00 4.093903524786619e+00 4.074270469191258e+00 4.054717490515994e+00 + 4.035244253601178e+00 4.015850419023907e+00 3.996535633568783e+00 3.977299560905666e+00 3.958141896495164e+00 + 3.939062301025637e+00 3.920060427447142e+00 3.901135950094528e+00 3.882288544897898e+00 3.863517881118590e+00 + 3.844823615448907e+00 3.826205437051391e+00 3.807663047653544e+00 3.789196110563124e+00 3.770804297342049e+00 + 3.752487294212357e+00 3.734244789018890e+00 3.716076457976182e+00 3.697981972490954e+00 3.679961043694115e+00 + 3.662013372248035e+00 3.644138631063968e+00 3.626336509775109e+00 3.608606705542072e+00 3.590948914412318e+00 + 3.573362819793663e+00 3.555848115085657e+00 3.538404523614169e+00 3.521031745026515e+00 3.503729467883798e+00 + 3.486497394134707e+00 3.469335231734055e+00 3.452242686325544e+00 3.435219448952052e+00 3.418265234650198e+00 + 3.401379774604279e+00 3.384562769850576e+00 3.367813923930398e+00 3.351132951883403e+00 3.334519571031865e+00 + 3.317973491801103e+00 3.301494419647167e+00 3.285082090084510e+00 3.268736234671993e+00 3.252456560777042e+00 + 3.236242786971220e+00 3.220094639575606e+00 3.204011846234647e+00 3.187994121490988e+00 3.172041185626448e+00 + 3.156152791161071e+00 3.140328668842820e+00 3.124568535295174e+00 3.108872124034968e+00 3.093239171871656e+00 + 3.077669412161458e+00 3.062162565910707e+00 3.046718374098970e+00 3.031336596904380e+00 3.016016966139392e+00 + 3.000759212810465e+00 2.985563079528153e+00 2.970428312130104e+00 2.955354650145179e+00 2.940341825152254e+00 + 2.925389598488303e+00 2.910497731503551e+00 2.895665957526404e+00 2.880894022713473e+00 2.866181682137055e+00 + 2.851528688498591e+00 2.836934785005289e+00 2.822399718118186e+00 2.807923264019232e+00 2.793505182293368e+00 + 2.779145216423770e+00 2.764843124903896e+00 2.750598669795774e+00 2.736411610868753e+00 2.722281698431688e+00 + 2.708208697067331e+00 2.694192390113966e+00 2.680232535961204e+00 2.666328890540199e+00 2.652481222662398e+00 + 2.638689303226956e+00 2.624952898002155e+00 2.611271764144950e+00 2.597645683492627e+00 2.584074442444535e+00 + 2.570557801667266e+00 2.557095530257868e+00 2.543687406599445e+00 2.530333209423413e+00 2.517032707379746e+00 + 2.503785668122807e+00 2.490591889861845e+00 2.477451158950901e+00 2.464363243138197e+00 2.451327922049569e+00 + 2.438344980862380e+00 2.425414204994132e+00 2.412535368413293e+00 2.399708255484590e+00 2.386932671907132e+00 + 2.374208401602455e+00 2.361535223009603e+00 2.348912926727443e+00 2.336341305706971e+00 2.323820149408004e+00 + 2.311349238873846e+00 2.298928374328811e+00 2.286557363678248e+00 2.274235992966902e+00 2.261964052364815e+00 + 2.249741340335214e+00 2.237567658215990e+00 2.225442798573621e+00 2.213366549457367e+00 2.201338726388740e+00 + 2.189359138707274e+00 2.177427577694549e+00 2.165543843493499e+00 2.153707741170415e+00 2.141919076444355e+00 + 2.130177647034976e+00 2.118483256831743e+00 2.106835728234196e+00 2.095234867960482e+00 2.083680476325080e+00 + 2.072172364176171e+00 2.060710343839133e+00 2.049294224696878e+00 2.037923808395575e+00 2.026598913260298e+00 + 2.015319367985618e+00 2.004084979196668e+00 1.992895556108562e+00 1.981750916950703e+00 1.970650881000152e+00 + 1.959595261684839e+00 1.948583868145923e+00 1.937616532016987e+00 1.926693081878526e+00 1.915813328267264e+00 + 1.904977090405082e+00 1.894184192977273e+00 1.883434460875044e+00 1.872727710477953e+00 1.862063762090873e+00 + 1.851442457083682e+00 1.840863622251705e+00 1.830327074965862e+00 1.819832643502570e+00 1.809380158797907e+00 + 1.798969449793061e+00 1.788600336572885e+00 1.778272652771865e+00 1.767986244795942e+00 1.757740938619203e+00 + 1.747536560606076e+00 1.737372946411540e+00 1.727249932639099e+00 1.717167351154095e+00 1.707125028541288e+00 + 1.697122811212298e+00 1.687160545804055e+00 1.677238060829077e+00 1.667355192130723e+00 1.657511781312863e+00 + 1.647707669880958e+00 1.637942692337234e+00 1.628216684763444e+00 1.618529503053863e+00 1.608880992276723e+00 + 1.599270986915247e+00 1.589699330823691e+00 1.580165870897195e+00 1.570670452975510e+00 1.561212914561866e+00 + 1.551793103249197e+00 1.542410880472349e+00 1.533066090216831e+00 1.523758574579748e+00 1.514488184288800e+00 + 1.505254771462676e+00 1.496058184704016e+00 1.486898266759950e+00 1.477774877044576e+00 1.468687878023066e+00 + 1.459637114930725e+00 1.450622438289068e+00 1.441643704572125e+00 1.432700770639202e+00 1.423793487269355e+00 + 1.414921704769478e+00 1.406085292220042e+00 1.397284110913275e+00 1.388518010515092e+00 1.379786849127615e+00 + 1.371090488107240e+00 1.362428788219066e+00 1.353801602746353e+00 1.345208792137069e+00 1.336650231141558e+00 + 1.328125779708811e+00 1.319635294146069e+00 1.311178639017341e+00 1.302755680403749e+00 1.294366281732825e+00 + 1.286010300246468e+00 1.277687607130681e+00 1.269398079017509e+00 1.261141576506052e+00 1.252917963373013e+00 + 1.244727109229262e+00 1.236568884548108e+00 1.228443154841189e+00 1.220349783647821e+00 1.212288651549746e+00 + 1.204259634287000e+00 1.196262595500517e+00 1.188297406122070e+00 1.180363940507803e+00 1.172462072687314e+00 + 1.164591670206239e+00 1.156752605274376e+00 1.148944764287503e+00 1.141168021685895e+00 1.133422246839356e+00 + 1.125707316556084e+00 1.118023109341937e+00 1.110369501923575e+00 1.102746365022667e+00 1.095153580538906e+00 + 1.087591037394418e+00 1.080058609806265e+00 1.072556173728377e+00 1.065083611042832e+00 1.057640804167975e+00 + 1.050227631677888e+00 1.042843969448370e+00 1.035489708218281e+00 1.028164736497249e+00 1.020868930712798e+00 + 1.013602173363602e+00 1.006364350528145e+00 9.991553480860069e-01 9.919750464549014e-01 9.848233287198007e-01 + 9.777000916381701e-01 9.706052224312447e-01 9.635386022157533e-01 9.565001191688937e-01 9.494896630661879e-01 + 9.425071223228538e-01 9.355523797940184e-01 9.286253271866921e-01 9.217258644183214e-01 9.148538781303724e-01 + 9.080092551050607e-01 9.011918879859632e-01 8.944016703005543e-01 8.876384924746002e-01 8.809022413584221e-01 + 8.741928168976413e-01 8.675101190938330e-01 8.608540359442419e-01 8.542244603473701e-01 8.476212889430066e-01 + 8.410444181391276e-01 8.344937399710189e-01 8.279691476350027e-01 8.214705470141707e-01 8.149978368018493e-01 + 8.085509088588196e-01 8.021296614287111e-01 7.957339944800463e-01 7.893638070383275e-01 7.830189931350516e-01 + 7.766994532966268e-01 7.704050967403675e-01 7.641358215802615e-01 7.578915247022724e-01 7.516721083807270e-01 + 7.454774759379389e-01 7.393075284143857e-01 7.331621629407183e-01 7.270412875750237e-01 7.209448123528730e-01 + 7.148726361079928e-01 7.088246610576617e-01 7.028007931997213e-01 6.968009387204053e-01 6.908250000358214e-01 + 6.848728793751606e-01 6.789444908271167e-01 6.730397435251165e-01 6.671585392499849e-01 6.613007849024644e-01 + 6.554663896318030e-01 6.496552624588109e-01 6.438673070778183e-01 6.381024319556428e-01 6.323605552121262e-01 + 6.266415850605696e-01 6.209454272475601e-01 6.152719929073242e-01 6.096211942955035e-01 6.039929419697414e-01 + 5.983871423673978e-01 5.928037109278776e-01 5.872425665727200e-01 5.817036179262789e-01 5.761867757580472e-01 + 5.706919545755328e-01 5.652190691753797e-01 5.597680312855905e-01 5.543387515608681e-01 5.489311514266204e-01 + 5.435451491959484e-01 5.381806555529779e-01 5.328375858091706e-01 5.275158573424954e-01 5.222153871968650e-01 + 5.169360885007255e-01 5.116778775087658e-01 5.064406794925096e-01 5.012244118255510e-01 4.960289886382637e-01 + 4.908543290552675e-01 4.857003532629381e-01 4.805669801867241e-01 4.754541247133137e-01 4.703617092625736e-01 + 4.652896609026711e-01 4.602378967146020e-01 4.552063350475851e-01 4.501948983226124e-01 4.452035092771810e-01 + 4.402320879227842e-01 4.352805523654864e-01 4.303488309750054e-01 4.254368504386150e-01 4.205445290166767e-01 + 4.156717895856258e-01 4.108185573527897e-01 4.059847567861119e-01 4.011703090912549e-01 3.963751374739253e-01 + 3.915991740467544e-01 3.868423443729578e-01 3.821045699452743e-01 3.773857771630841e-01 3.726858934536713e-01 + 3.680048452743795e-01 3.633425553945757e-01 3.586989523890614e-01 3.540739701811214e-01 3.494675340422360e-01 + 3.448795694018267e-01 3.403100055229290e-01 3.357587720701978e-01 3.312257966625470e-01 3.267110046986084e-01 + 3.222143302305144e-01 3.177357072575733e-01 3.132750617821559e-01 3.088323230437107e-01 3.044074228278458e-01 + 3.000002929514869e-01 2.956108619814004e-01 2.912390591663653e-01 2.868848226223222e-01 2.825480855369588e-01 + 2.782287763584979e-01 2.739268276304007e-01 2.696421732978619e-01 2.653747469077652e-01 2.611244782932083e-01 + 2.568913016367161e-01 2.526751570146955e-01 2.484759769388697e-01 2.442936932048949e-01 2.401282413902519e-01 + 2.359795575701045e-01 2.318475761710866e-01 2.277322290127450e-01 2.236334554284879e-01 2.195511960314929e-01 + 2.154853836729677e-01 2.114359536211432e-01 2.074028437636633e-01 2.033859920182897e-01 1.993853337119912e-01 + 1.954008040589642e-01 1.914323463143237e-01 1.874799002688242e-01 1.835434007181165e-01 1.796227861758036e-01 + 1.757179964922509e-01 1.718289711649378e-01 1.679556465242757e-01 1.640979620393169e-01 1.602558632656972e-01 + 1.564292893436780e-01 1.526181778855338e-01 1.488224700413446e-01 1.450421075715582e-01 1.412770310767497e-01 + 1.375271785489454e-01 1.337924939887067e-01 1.300729236356154e-01 1.263684067750867e-01 1.226788841702678e-01 + 1.190042991249222e-01 1.153445951805052e-01 1.116997137432381e-01 1.080695954417651e-01 1.044541881911586e-01 + 1.008534377603918e-01 9.726728475975084e-02 9.369567294988820e-02 9.013854752144720e-02 8.659585347215112e-02 + 8.306753302147955e-02 7.955353046975124e-02 7.605379621791922e-02 7.256827534889604e-02 6.909691079142652e-02 + 6.563964883225221e-02 6.219643640409570e-02 5.876721959493493e-02 5.535194193553600e-02 5.195055179453398e-02 + 4.856300050562060e-02 4.518923308325209e-02 4.182919528191363e-02 3.848283536820589e-02 3.515010193539807e-02 + 3.183094185890936e-02 2.852530077920949e-02 2.523313079087341e-02 2.195438300307553e-02 1.868900335629075e-02 + 1.543694036357313e-02 1.219814405293583e-02 8.972564385828061e-03 5.760148923624660e-03 2.560846417529306e-03 + -6.253884489496408e-04 -3.798605206001689e-03 -6.958856024607482e-03 -1.010619000899848e-02 -1.324065554473652e-02 + -1.636230159824732e-02 -1.947117958312726e-02 -2.256733711284757e-02 -2.565081832749929e-02 -2.872167302619957e-02 + -3.177995089902724e-02 -3.482569914268617e-02 -3.785896464500105e-02 -4.087979562235380e-02 -4.388824175488684e-02 + -4.688434717766576e-02 -4.986815604286890e-02 -5.283971753775529e-02 -5.579907881824794e-02 -5.874628546589089e-02 + -6.168138307363240e-02 -6.460441923558070e-02 -6.751544105442296e-02 -7.041449003639784e-02 -7.330161087707579e-02 + -7.617685125406765e-02 -7.904025608548425e-02 -8.189186951723537e-02 -8.473173608907363e-02 -8.755990257827875e-02 + -9.037641289395969e-02 -9.318130717201861e-02 -9.597463047763352e-02 -9.875642835115833e-02 -1.015267439140877e-01 + -1.042856199263307e-01 -1.070331001684683e-01 -1.097692300567918e-01 -1.124940502948268e-01 -1.152076007898061e-01 + -1.179099262631479e-01 -1.206010699593113e-01 -1.232810735016665e-01 -1.259499784255051e-01 -1.286078279418341e-01 + -1.312546653333709e-01 -1.338905286984875e-01 -1.365154583874092e-01 -1.391294979538990e-01 -1.417326885345280e-01 + -1.443250704192513e-01 -1.469066841433861e-01 -1.494775722507627e-01 -1.520377752494497e-01 -1.545873297590701e-01 + -1.571262765202916e-01 -1.596546572452540e-01 -1.621725113907878e-01 -1.646798779801165e-01 -1.671767967821347e-01 + -1.696633092874520e-01 -1.721394530811854e-01 -1.746052643091513e-01 -1.770607836101869e-01 -1.795060506428017e-01 + -1.819411034225526e-01 -1.843659798390828e-01 -1.867807191554161e-01 -1.891853611111403e-01 -1.915799407499077e-01 + -1.939644945120454e-01 -1.963390621459183e-01 -1.987036813730624e-01 -2.010583889984393e-01 -2.034032219467188e-01 + -2.057382189127211e-01 -2.080634172465200e-01 -2.103788504106409e-01 -2.126845552585028e-01 -2.149805700057577e-01 + -2.172669307458855e-01 -2.195436731393316e-01 -2.218108333786645e-01 -2.240684493062661e-01 -2.263165556286022e-01 + -2.285551851690127e-01 -2.307843748874083e-01 -2.330041611277884e-01 -2.352145785311434e-01 -2.374156618282909e-01 + -2.396074467707450e-01 -2.417899696732801e-01 -2.439632627554057e-01 -2.461273590292558e-01 -2.482822949571798e-01 + -2.504281050002428e-01 -2.525648226666662e-01 -2.546924818382261e-01 -2.568111176810049e-01 -2.589207645010757e-01 + -2.610214530059819e-01 -2.631132165202481e-01 -2.651960899948890e-01 -2.672701065219724e-01 -2.693352987894519e-01 + -2.713916998229662e-01 -2.734393439668777e-01 -2.754782632038173e-01 -2.775084874639143e-01 -2.795300503441993e-01 + -2.815429852855671e-01 -2.835473240274155e-01 -2.855430981234691e-01 -2.875303400246380e-01 -2.895090831627840e-01 + -2.914793573631382e-01 -2.934411924374482e-01 -2.953946213942734e-01 -2.973396760049649e-01 -2.992763870705049e-01 + -3.012047853752455e-01 -3.031249029054077e-01 -3.050367713048046e-01 -3.069404187491607e-01 -3.088358754333808e-01 + -3.107231733999588e-01 -3.126023429151826e-01 -3.144734138246973e-01 -3.163364162512183e-01 -3.181913814969073e-01 + -3.200383391593082e-01 -3.218773166629695e-01 -3.237083442965246e-01 -3.255314526206347e-01 -3.273466708133588e-01 + -3.291540279174764e-01 -3.309535535062730e-01 -3.327452779044484e-01 -3.345292286746930e-01 -3.363054329977739e-01 + -3.380739209920870e-01 -3.398347217688169e-01 -3.415878634526212e-01 -3.433333743100879e-01 -3.450712833788954e-01 + -3.468016195958206e-01 -3.485244091566739e-01 -3.502396793974815e-01 -3.519474593420066e-01 -3.536477770380763e-01 + -3.553406598299846e-01 -3.570261348354672e-01 -3.587042307855341e-01 -3.603749751839582e-01 -3.620383929731605e-01 + -3.636945116923384e-01 -3.653433594409278e-01 -3.669849628231984e-01 -3.686193482790397e-01 -3.702465427747400e-01 + -3.718665743211436e-01 -3.734794684043725e-01 -3.750852495624684e-01 -3.766839451194457e-01 -3.782755819189342e-01 + -3.798601858648072e-01 -3.814377826321034e-01 -3.830083986549013e-01 -3.845720606417443e-01 -3.861287926090124e-01 + -3.876786193539286e-01 -3.892215675502101e-01 -3.907576628594260e-01 -3.922869303026715e-01 -3.938093947284727e-01 + -3.953250822556230e-01 -3.968340182497304e-01 -3.983362256494206e-01 -3.998317293097848e-01 -4.013205549386248e-01 + -4.028027272117153e-01 -4.042782703087232e-01 -4.057472086115670e-01 -4.072095677082399e-01 -4.086653712889545e-01 + -4.101146418277140e-01 -4.115574040934622e-01 -4.129936826934361e-01 -4.144235014035024e-01 -4.158468836578273e-01 + -4.172638535617268e-01 -4.186744357650895e-01 -4.200786523524958e-01 -4.214765258006608e-01 -4.228680805923657e-01 + -4.242533401481378e-01 -4.256323273241845e-01 -4.270050650780072e-01 -4.283715771591216e-01 -4.297318868367957e-01 + -4.310860152683936e-01 -4.324339850671611e-01 -4.337758197699306e-01 -4.351115419219263e-01 -4.364411736856622e-01 + -4.377647373653272e-01 -4.390822563519974e-01 -4.403937525793140e-01 -4.416992465950099e-01 -4.429987609092939e-01 + -4.442923180804305e-01 -4.455799398898891e-01 -4.468616477876415e-01 -4.481374637930542e-01 -4.494074106490894e-01 + -4.506715085877422e-01 -4.519297779021105e-01 -4.531822412097039e-01 -4.544289201442401e-01 -4.556698355752103e-01 + -4.569050083194456e-01 -4.581344599890250e-01 -4.593582121055255e-01 -4.605762842891920e-01 -4.617886970897419e-01 + -4.629954719556403e-01 -4.641966295426422e-01 -4.653921902577345e-01 -4.665821746143150e-01 -4.677666038635413e-01 + -4.689454981292748e-01 -4.701188761476531e-01 -4.712867586709557e-01 -4.724491664926360e-01 -4.736061192593240e-01 + -4.747576368456714e-01 -4.759037394682022e-01 -4.770444475543998e-01 -4.781797800875144e-01 -4.793097558338887e-01 + -4.804343950164401e-01 -4.815537175042383e-01 -4.826677426390972e-01 -4.837764894228364e-01 -4.848799775883490e-01 + -4.859782270303963e-01 -4.870712557287352e-01 -4.881590823344398e-01 -4.892417265305033e-01 -4.903192072931410e-01 + -4.913915433426016e-01 -4.924587534540600e-01 -4.935208569593936e-01 -4.945778724869024e-01 -4.956298174121960e-01 + -4.966767104426105e-01 -4.977185705977166e-01 -4.987554161795947e-01 -4.997872652579317e-01 -5.008141361357437e-01 + -5.018360477540788e-01 -5.028530175622089e-01 -5.038650625463708e-01 -5.048722015765362e-01 -5.058744527800632e-01 + -5.068718334710337e-01 -5.078643614554021e-01 -5.088520548881869e-01 -5.098349318298798e-01 -5.108130088001350e-01 + -5.117863028619736e-01 -5.127548322161382e-01 -5.137186142245088e-01 -5.146776659499980e-01 -5.156320045833772e-01 + -5.165816478015819e-01 -5.175266128170244e-01 -5.184669156304091e-01 -5.194025733016244e-01 -5.203336032597101e-01 + -5.212600221732120e-01 -5.221818466804444e-01 -5.230990936596679e-01 -5.240117804553392e-01 -5.249199232262068e-01 + -5.258235374392936e-01 -5.267226400387954e-01 -5.276172478389746e-01 -5.285073771019844e-01 -5.293930438910602e-01 + -5.302742646986305e-01 -5.311510563423283e-01 -5.320234339437281e-01 -5.328914129379527e-01 -5.337550101355577e-01 + -5.346142414983102e-01 -5.354691226448078e-01 -5.363196694209366e-01 -5.371658979374595e-01 -5.380078240078261e-01 + -5.388454624615836e-01 -5.396788287704753e-01 -5.405079388378121e-01 -5.413328081929075e-01 -5.421534521210617e-01 + -5.429698859177164e-01 -5.437821254261226e-01 -5.445901856060492e-01 -5.453940806517681e-01 -5.461938261275164e-01 + -5.469894375147514e-01 -5.477809296410460e-01 -5.485683172596564e-01 -5.493516154047422e-01 -5.501308394233321e-01 + -5.509060035978606e-01 -5.516771220917993e-01 -5.524442098036262e-01 -5.532072816062331e-01 -5.539663521228516e-01 + -5.547214355736525e-01 -5.554725467511782e-01 -5.562197004144761e-01 -5.569629099559865e-01 -5.577021895124128e-01 + -5.584375539231472e-01 -5.591690174427206e-01 -5.598965939391384e-01 -5.606202972403660e-01 -5.613401421520022e-01 + -5.620561426054913e-01 -5.627683113219669e-01 -5.634766626491997e-01 -5.641812109417922e-01 -5.648819696019924e-01 + -5.655789522526887e-01 -5.662721727674018e-01 -5.669616451334641e-01 -5.676473824290281e-01 -5.683293976251365e-01 + -5.690077046537543e-01 -5.696823171027902e-01 -5.703532481968968e-01 -5.710205111045815e-01 -5.716841193018837e-01 + -5.723440862989044e-01 -5.730004247377283e-01 -5.736531475408438e-01 -5.743022680808630e-01 -5.749477994635019e-01 + -5.755897545119250e-01 -5.762281459317424e-01 -5.768629872133108e-01 -5.774942912813225e-01 -5.781220698864685e-01 + -5.787463360372200e-01 -5.793671029370097e-01 -5.799843829591812e-01 -5.805981885004621e-01 -5.812085322229668e-01 + -5.818154271777390e-01 -5.824188854500640e-01 -5.830189187855023e-01 -5.836155400127914e-01 -5.842087616519486e-01 + -5.847985957903102e-01 -5.853850545399070e-01 -5.859681502822114e-01 -5.865478954643482e-01 -5.871243015837295e-01 + -5.876973804424807e-01 -5.882671445115567e-01 -5.888336058093040e-01 -5.893967761301214e-01 -5.899566672475657e-01 + -5.905132912554449e-01 -5.910666600004119e-01 -5.916167846344484e-01 -5.921636769312483e-01 -5.927073488739303e-01 + -5.932478119884005e-01 -5.937850777230974e-01 -5.943191576345895e-01 -5.948500635775013e-01 -5.953778067525587e-01 + -5.959023980172641e-01 -5.964238491804477e-01 -5.969421717317064e-01 -5.974573766302176e-01 -5.979694750153504e-01 + -5.984784782975928e-01 -5.989843980133127e-01 -5.994872448737363e-01 -5.999870296226286e-01 -6.004837635008013e-01 + -6.009774575116591e-01 -6.014681225640990e-01 -6.019557696406324e-01 -6.024404098188824e-01 -6.029220539582525e-01 + -6.034007123251734e-01 -6.038763957092128e-01 -6.043491151546724e-01 -6.048188811990667e-01 -6.052857043294740e-01 + -6.057495951725935e-01 -6.062105647034982e-01 -6.066686232996821e-01 -6.071237808282512e-01 -6.075760480581535e-01 + -6.080254356249652e-01 -6.084719536597242e-01 -6.089156123708600e-01 -6.093564221655233e-01 -6.097943936088406e-01 + -6.102295366277345e-01 -6.106618611466814e-01 -6.110913776082281e-01 -6.115180960018122e-01 -6.119420262061138e-01 + -6.123631785057825e-01 -6.127815629923925e-01 -6.131971895415724e-01 -6.136100679122567e-01 -6.140202079254689e-01 + -6.144276194632986e-01 -6.148323123693087e-01 -6.152342964516117e-01 -6.156335814880438e-01 -6.160301772367670e-01 + -6.164240932773791e-01 -6.168153390131846e-01 -6.172039241057757e-01 -6.175898582479540e-01 -6.179731510100582e-01 + -6.183538118537011e-01 -6.187318502245757e-01 -6.191072755983122e-01 -6.194800972241303e-01 -6.198503243163954e-01 + -6.202179663089392e-01 -6.205830326036273e-01 -6.209455324825972e-01 -6.213054750121583e-01 -6.216628693834372e-01 + -6.220177248671027e-01 -6.223700505100402e-01 -6.227198553511943e-01 -6.230671484590707e-01 -6.234119388224310e-01 + -6.237542354039819e-01 -6.240940471906395e-01 -6.244313833278470e-01 -6.247662526956897e-01 -6.250986637315333e-01 + -6.254286253149073e-01 -6.257561464374979e-01 -6.260812358699522e-01 -6.264039022632663e-01 -6.267241542804416e-01 + -6.270420007239386e-01 -6.273574502418447e-01 -6.276705113436000e-01 -6.279811924920996e-01 -6.282895022600340e-01 + -6.285954492669960e-01 -6.288990419377586e-01 -6.292002887596219e-01 -6.294991982474318e-01 -6.297957785295903e-01 + -6.300900379535952e-01 -6.303819851813233e-01 -6.306716282540937e-01 -6.309589752809680e-01 -6.312440348023121e-01 + -6.315268150763020e-01 -6.318073241903770e-01 -6.320855701836068e-01 -6.323615610879741e-01 -6.326353050044859e-01 + -6.329068101802829e-01 -6.331760846635813e-01 -6.334431363818833e-01 -6.337079733473078e-01 -6.339706034520735e-01 + -6.342310345121693e-01 -6.344892744839461e-01 -6.347453312805855e-01 -6.349992127114430e-01 -6.352509264768633e-01 + -6.355004804526597e-01 -6.357478826585540e-01 -6.359931404400122e-01 -6.362362612918424e-01 -6.364772532644518e-01 + -6.367161239398067e-01 -6.369528807876881e-01 -6.371875315012039e-01 -6.374200836672138e-01 -6.376505447719858e-01 + -6.378789222449943e-01 -6.381052236017390e-01 -6.383294563385360e-01 -6.385516277126226e-01 -6.387717451483415e-01 + -6.389898161925324e-01 -6.392058481779943e-01 -6.394198483013303e-01 -6.396318237129481e-01 -6.398417817583982e-01 + -6.400497298004382e-01 -6.402556751053731e-01 -6.404596246811356e-01 -6.406615856182318e-01 -6.408615652398488e-01 + -6.410595705960431e-01 -6.412556087124355e-01 -6.414496867908267e-01 -6.416418117430738e-01 -6.418319904244396e-01 + -6.420202299552208e-01 -6.422065373268501e-01 -6.423909194238488e-01 -6.425733831564441e-01 -6.427539354568388e-01 + -6.429325832107947e-01 -6.431093330874931e-01 -6.432841919278923e-01 -6.434571667152847e-01 -6.436282640341581e-01 + -6.437974905134223e-01 -6.439648529819666e-01 -6.441303582355420e-01 -6.442940129046214e-01 -6.444558234243410e-01 + -6.446157964842297e-01 -6.447739387669796e-01 -6.449302567289288e-01 -6.450847570451982e-01 -6.452374463418470e-01 + -6.453883308317777e-01 -6.455374170518916e-01 -6.456847116523639e-01 -6.458302208459006e-01 -6.459739509825424e-01 + -6.461159085765001e-01 -6.462561000624228e-01 -6.463945317857885e-01 -6.465312099893501e-01 -6.466661407794220e-01 + -6.467993305071421e-01 -6.469307857586633e-01 -6.470605124176557e-01 -6.471885165505020e-01 -6.473148048129491e-01 + -6.474393831451855e-01 -6.475622574433044e-01 -6.476834341411803e-01 -6.478029193005811e-01 -6.479207188186653e-01 + -6.480368387749067e-01 -6.481512852365653e-01 -6.482640642356557e-01 -6.483751817763184e-01 -6.484846438333333e-01 + -6.485924563559199e-01 -6.486986252696630e-01 -6.488031563964390e-01 -6.489060555062011e-01 -6.490073285956434e-01 + -6.491069816182633e-01 -6.492050203757027e-01 -6.493014505946639e-01 -6.493962779796888e-01 -6.494895082497514e-01 + -6.495811472172135e-01 -6.496712006463234e-01 -6.497596741452655e-01 -6.498465734697708e-01 -6.499319043537729e-01 + -6.500156722751166e-01 -6.500978828758883e-01 -6.501785418212779e-01 -6.502576544563589e-01 -6.503352264336196e-01 + -6.504112635780723e-01 -6.504857712206107e-01 -6.505587548117625e-01 -6.506302199692129e-01 -6.507001719669850e-01 + -6.507686161481057e-01 -6.508355580770583e-01 -6.509010033515999e-01 -6.509649573333303e-01 -6.510274250599254e-01 + -6.510884119408136e-01 -6.511479234691252e-01 -6.512059649357221e-01 -6.512625414820176e-01 -6.513176583196066e-01 + -6.513713209657690e-01 -6.514235346566493e-01 -6.514743044494572e-01 -6.515236355351222e-01 -6.515715331668240e-01 + -6.516180025498758e-01 -6.516630486086969e-01 -6.517066764698182e-01 -6.517488914696901e-01 -6.517896986474616e-01 + -6.518291029696229e-01 -6.518671094474887e-01 -6.519037232298822e-01 -6.519389493677847e-01 -6.519727927034696e-01 + -6.520052582102593e-01 -6.520363509344871e-01 -6.520660759114448e-01 -6.520944379877177e-01 -6.521214419863292e-01 + -6.521470929034477e-01 -6.521713955379932e-01 -6.521943546611896e-01 -6.522159753870301e-01 -6.522362625000242e-01 + -6.522552205660485e-01 -6.522728545508729e-01 -6.522891692872490e-01 -6.523041693781095e-01 -6.523178594474156e-01 + -6.523302443147758e-01 -6.523413289626511e-01 -6.523511179648659e-01 -6.523596158248584e-01 -6.523668271884714e-01 + -6.523727568212391e-01 -6.523774093997819e-01 -6.523807893579161e-01 -6.523829012952149e-01 -6.523837498990516e-01 + -6.523833397960367e-01 -6.523816754611410e-01 -6.523787613199525e-01 -6.523746019358498e-01 -6.523692018302728e-01 + -6.523625654555820e-01 -6.523546972248629e-01 -6.523456017173497e-01 -6.523352835702680e-01 -6.523237468711672e-01 + -6.523109959032295e-01 -6.522970353197415e-01 -6.522818693382445e-01 -6.522655022842732e-01 -6.522479388337681e-01 + -6.522291831409690e-01 -6.522092393163972e-01 -6.521881118419591e-01 -6.521658050464721e-01 -6.521423231008568e-01 + -6.521176700882644e-01 -6.520918504277817e-01 -6.520648685798258e-01 -6.520367284462982e-01 -6.520074341903623e-01 + -6.519769901852531e-01 -6.519454004576026e-01 -6.519126690272374e-01 -6.518788000417296e-01 -6.518437978790763e-01 + -6.518076667685843e-01 -6.517704106505043e-01 -6.517320333460206e-01 -6.516925389358605e-01 -6.516519318553129e-01 + -6.516102158220000e-01 -6.515673946405215e-01 -6.515234728464969e-01 -6.514784543315630e-01 -6.514323427842886e-01 + -6.513851423523833e-01 -6.513368570527661e-01 -6.512874907235414e-01 -6.512370470939771e-01 -6.511855301990920e-01 + -6.511329442190841e-01 -6.510792928715797e-01 -6.510245798816351e-01 -6.509688091361985e-01 -6.509119847142907e-01 + -6.508541103488035e-01 -6.507951894034477e-01 -6.507352259931611e-01 -6.506742241942834e-01 -6.506121876059120e-01 + -6.505491199228429e-01 -6.504850249436106e-01 -6.504199065016956e-01 -6.503537680222150e-01 -6.502866130342899e-01 + -6.502184457971011e-01 -6.501492700279957e-01 -6.500790890906794e-01 -6.500079066129352e-01 -6.499357263329657e-01 + -6.498625519683058e-01 -6.497883869826074e-01 -6.497132350047277e-01 -6.496370998048885e-01 -6.495599847614121e-01 + -6.494818934475555e-01 -6.494028297363450e-01 -6.493227969968260e-01 -6.492417985197620e-01 -6.491598378013752e-01 + -6.490769185970405e-01 -6.489930446200032e-01 -6.489082192796405e-01 -6.488224457999440e-01 -6.487357275334984e-01 + -6.486480682838258e-01 -6.485594713376021e-01 -6.484699398068251e-01 -6.483794774339799e-01 -6.482880877536140e-01 + -6.481957740532812e-01 -6.481025397024727e-01 -6.480083880017639e-01 -6.479133221889776e-01 -6.478173456351086e-01 + -6.477204618036257e-01 -6.476226741599570e-01 -6.475239858039916e-01 -6.474243999826228e-01 -6.473239202990485e-01 + -6.472225498463482e-01 -6.471202916312221e-01 -6.470171489638400e-01 -6.469131252405815e-01 -6.468082238277443e-01 + -6.467024479420175e-01 -6.465958006550642e-01 -6.464882850509053e-01 -6.463799044773618e-01 -6.462706620382276e-01 + -6.461605607272912e-01 -6.460496040101232e-01 -6.459377950690467e-01 -6.458251367734501e-01 -6.457116323868038e-01 + -6.455972850655802e-01 -6.454820977029684e-01 -6.453660732942879e-01 -6.452492150754419e-01 -6.451315264887545e-01 + -6.450130102914885e-01 -6.448936692680686e-01 -6.447735068128447e-01 -6.446525260129213e-01 -6.445307296530088e-01 + -6.444081203587793e-01 -6.442847014715996e-01 -6.441604765089356e-01 -6.440354480546840e-01 -6.439096188724848e-01 + -6.437829920095609e-01 -6.436555704731397e-01 -6.435273570693492e-01 -6.433983545533010e-01 -6.432685663163126e-01 + -6.431379953365300e-01 -6.430066439769492e-01 -6.428745153347271e-01 -6.427416124750638e-01 -6.426079380140648e-01 + -6.424734947555180e-01 -6.423382856273998e-01 -6.422023135830728e-01 -6.420655814260000e-01 -6.419280919255173e-01 + -6.417898479598759e-01 -6.416508523135933e-01 -6.415111076305331e-01 -6.413706163966455e-01 -6.412293816393564e-01 + -6.410874066048897e-01 -6.409446936267265e-01 -6.408012453136449e-01 -6.406570646910840e-01 -6.405121544270317e-01 + -6.403665170374713e-01 -6.402201550644944e-01 -6.400730715072882e-01 -6.399252691822962e-01 -6.397767504407681e-01 + -6.396275180930010e-01 -6.394775749890055e-01 -6.393269236107165e-01 -6.391755662191552e-01 -6.390235053902433e-01 + -6.388707445708105e-01 -6.387172861694177e-01 -6.385631322023312e-01 -6.384082857966726e-01 -6.382527494896121e-01 + -6.380965253642142e-01 -6.379396162401521e-01 -6.377820248167250e-01 -6.376237535602883e-01 -6.374648052204416e-01 + -6.373051823107587e-01 -6.371448870124290e-01 -6.369839218821269e-01 -6.368222895078627e-01 -6.366599923302766e-01 + -6.364970329561520e-01 -6.363334139746031e-01 -6.361691377885151e-01 -6.360042067688202e-01 -6.358386233547334e-01 + -6.356723901317635e-01 -6.355055093799952e-01 -6.353379833438523e-01 -6.351698147827204e-01 -6.350010061497325e-01 + -6.348315596278746e-01 -6.346614776297652e-01 -6.344907627044540e-01 -6.343194173354602e-01 -6.341474433478579e-01 + -6.339748431233465e-01 -6.338016197812808e-01 -6.336277753787244e-01 -6.334533118997744e-01 -6.332782318265875e-01 + -6.331025376588558e-01 -6.329262316544187e-01 -6.327493157114107e-01 -6.325717923863455e-01 -6.323936643403999e-01 + -6.322149336030685e-01 -6.320356024195775e-01 -6.318556731749607e-01 -6.316751480498738e-01 -6.314940290711796e-01 + -6.313123183267710e-01 -6.311300184615836e-01 -6.309471319109403e-01 -6.307636607640942e-01 -6.305796070902886e-01 + -6.303949730482692e-01 -6.302097608691579e-01 -6.300239725606558e-01 -6.298376103756032e-01 -6.296506769748604e-01 + -6.294631743864889e-01 -6.292751044804592e-01 -6.290864694027335e-01 -6.288972714311484e-01 -6.287075127245377e-01 + -6.285171950849623e-01 -6.283263208775478e-01 -6.281348926187029e-01 -6.279429120773061e-01 -6.277503812180564e-01 + -6.275573022752827e-01 -6.273636774541002e-01 -6.271695087389834e-01 -6.269747979757735e-01 -6.267795473573458e-01 + -6.265837591630624e-01 -6.263874355834504e-01 -6.261905784094625e-01 -6.259931895045528e-01 -6.257952710369122e-01 + -6.255968250363517e-01 -6.253978534898084e-01 -6.251983584520242e-01 -6.249983420853732e-01 -6.247978064572296e-01 + -6.245967533125147e-01 -6.243951846742302e-01 -6.241931026018996e-01 -6.239905086686763e-01 -6.237874050561640e-01 + -6.235837942608177e-01 -6.233796778475696e-01 -6.231750576026635e-01 -6.229699356978790e-01 -6.227643140512986e-01 + -6.225581944126894e-01 -6.223515785171654e-01 -6.221444686516174e-01 -6.219368669106876e-01 -6.217287748516653e-01 + -6.215201944179222e-01 -6.213111276341791e-01 -6.211015763012264e-01 -6.208915420627059e-01 -6.206810267189914e-01 + -6.204700325606027e-01 -6.202585614407183e-01 -6.200466150025669e-01 -6.198341952555039e-01 -6.196213039807257e-01 + -6.194079427661365e-01 -6.191941133919308e-01 -6.189798178811384e-01 -6.187650583625046e-01 -6.185498365366234e-01 + -6.183341539791172e-01 -6.181180123373080e-01 -6.179014136693182e-01 -6.176843597571294e-01 -6.174668518753883e-01 + -6.172488922358068e-01 -6.170304830078728e-01 -6.168116255085183e-01 -6.165923213940302e-01 -6.163725725542526e-01 + -6.161523808379610e-01 -6.159317477445455e-01 -6.157106747923912e-01 -6.154891641891720e-01 -6.152672177134336e-01 + -6.150448367622374e-01 -6.148220230127394e-01 -6.145987783325538e-01 -6.143751045698781e-01 -6.141510029326600e-01 + -6.139264750393221e-01 -6.137015231470567e-01 -6.134761489851926e-01 -6.132503540152313e-01 -6.130241396532106e-01 + -6.127975076851865e-01 -6.125704598048077e-01 -6.123429972989166e-01 -6.121151221351967e-01 -6.118868363314907e-01 + -6.116581411278224e-01 -6.114290380220153e-01 -6.111995287783158e-01 -6.109696151823703e-01 -6.107392985450728e-01 + -6.105085801024925e-01 -6.102774622058419e-01 -6.100459465922933e-01 -6.098140342484372e-01 -6.095817267256873e-01 + -6.093490257933440e-01 -6.091159331809802e-01 -6.088824500709522e-01 -6.086485779905337e-01 -6.084143191489354e-01 + -6.081796748129595e-01 -6.079446461968719e-01 -6.077092351925356e-01 -6.074734432434898e-01 -6.072372716150822e-01 + -6.070007218360295e-01 -6.067637956065657e-01 -6.065264946232775e-01 -6.062888203126375e-01 -6.060507740692458e-01 + -6.058123573561740e-01 -6.055735718185850e-01 -6.053344188005130e-01 -6.050948994718379e-01 -6.048550157592759e-01 + -6.046147693250087e-01 -6.043741612917217e-01 -6.041331930896253e-01 -6.038918662688606e-01 -6.036501823335466e-01 + -6.034081424814672e-01 -6.031657481058161e-01 -6.029230011393863e-01 -6.026799028730719e-01 -6.024364544399844e-01 + -6.021926574869638e-01 -6.019485136055120e-01 -6.017040241022006e-01 -6.014591897708976e-01 -6.012140122415236e-01 + -6.009684936432825e-01 -6.007226351565053e-01 -6.004764378633045e-01 -6.002299030368295e-01 -5.999830322604393e-01 + -5.997358269112610e-01 -5.994882881008079e-01 -5.992404174674395e-01 -5.989922165630734e-01 -5.987436865327392e-01 + -5.984948286273432e-01 -5.982456442781595e-01 -5.979961350600861e-01 -5.977463018616249e-01 -5.974961457245347e-01 + -5.972456688462123e-01 -5.969948725706038e-01 -5.967437577688297e-01 -5.964923259025159e-01 -5.962405782771161e-01 + -5.959885160038786e-01 -5.957361402849749e-01 -5.954834525607696e-01 -5.952304544228757e-01 -5.949771471628894e-01 + -5.947235319540697e-01 -5.944696099654433e-01 -5.942153825546195e-01 -5.939608509107162e-01 -5.937060159741117e-01 + -5.934508794411635e-01 -5.931954428951332e-01 -5.929397071302310e-01 -5.926836734445704e-01 -5.924273432987167e-01 + -5.921707177793331e-01 -5.919137978828047e-01 -5.916565847753502e-01 -5.913990801532651e-01 -5.911412853604616e-01 + -5.908832013941032e-01 -5.906248293335863e-01 -5.903661704565201e-01 -5.901072261246485e-01 -5.898479972855557e-01 + -5.895884850905705e-01 -5.893286910470348e-01 -5.890686164387193e-01 -5.888082623596927e-01 -5.885476297953414e-01 + -5.882867200485414e-01 -5.880255342895034e-01 -5.877640732646211e-01 -5.875023385228563e-01 -5.872403317009627e-01 + -5.869780535979796e-01 -5.867155052441069e-01 -5.864526878805291e-01 -5.861896026754034e-01 -5.859262506932092e-01 + -5.856626329801135e-01 -5.853987507817091e-01 -5.851346053972879e-01 -5.848701980701103e-01 -5.846055297559873e-01 + -5.843406014627009e-01 -5.840754143260567e-01 -5.838099692919883e-01 -5.835442675863415e-01 -5.832783108438364e-01 + -5.830120998737411e-01 -5.827456354637697e-01 -5.824789190313094e-01 -5.822119517157962e-01 -5.819447343999242e-01 + -5.816772678604962e-01 -5.814095534384316e-01 -5.811415926659900e-01 -5.808733865100626e-01 -5.806049358083534e-01 + -5.803362414940428e-01 -5.800673049021045e-01 -5.797981269727348e-01 -5.795287083747186e-01 -5.792590507223763e-01 + -5.789891553127540e-01 -5.787190227795775e-01 -5.784486540773595e-01 -5.781780503537821e-01 -5.779072127885909e-01 + -5.776361421027820e-01 -5.773648392415993e-01 -5.770933058481036e-01 -5.768215427543451e-01 -5.765495506173008e-01 + -5.762773307782053e-01 -5.760048843724456e-01 -5.757322122309633e-01 -5.754593149355522e-01 -5.751861936930261e-01 + -5.749128500443350e-01 -5.746392847733658e-01 -5.743654986749642e-01 -5.740914927526973e-01 -5.738172681170074e-01 + -5.735428256834612e-01 -5.732681661997935e-01 -5.729932909950833e-01 -5.727182011898047e-01 -5.724428973589288e-01 + -5.721673806475209e-01 -5.718916522032619e-01 -5.716157126986885e-01 -5.713395629769044e-01 -5.710632040862346e-01 + -5.707866372440725e-01 -5.705098634203313e-01 -5.702328834166335e-01 -5.699556980810941e-01 -5.696783084118523e-01 + -5.694007154024264e-01 -5.691229196446771e-01 -5.688449222662509e-01 -5.685667247951188e-01 -5.682883277592247e-01 + -5.680097317796297e-01 -5.677309379467054e-01 -5.674519473718960e-01 -5.671727608332666e-01 -5.668933787438524e-01 + -5.666138024324125e-01 -5.663340332775648e-01 -5.660540719736767e-01 -5.657739191147048e-01 -5.654935755198692e-01 + -5.652130424887296e-01 -5.649323205844615e-01 -5.646514102596061e-01 -5.643703131320561e-01 -5.640890302500955e-01 + -5.638075621229782e-01 -5.635259096013298e-01 -5.632440735413435e-01 -5.629620547371306e-01 -5.626798540413637e-01 + -5.623974724401825e-01 -5.621149109968532e-01 -5.618321704141040e-01 -5.615492514232792e-01 -5.612661549867731e-01 + -5.609828820346520e-01 -5.606994332802816e-01 -5.604158091721365e-01 -5.601320109850756e-01 -5.598480400285579e-01 + -5.595638966628304e-01 -5.592795815381203e-01 -5.589950956088516e-01 -5.587104398719418e-01 -5.584256150214867e-01 + -5.581406216413944e-01 -5.578554608147975e-01 -5.575701335442586e-01 -5.572846406020895e-01 -5.569989825973618e-01 + -5.567131602740183e-01 -5.564271745453506e-01 -5.561410260628522e-01 -5.558547156725416e-01 -5.555682445647333e-01 + -5.552816133007876e-01 -5.549948224318785e-01 -5.547078730025937e-01 -5.544207659049382e-01 -5.541335017868810e-01 + -5.538460810525171e-01 -5.535585047530838e-01 -5.532707741030544e-01 -5.529828895161875e-01 -5.526948516856666e-01 + -5.524066615722431e-01 -5.521183198617187e-01 -5.518298271294942e-01 -5.515411840216864e-01 -5.512523916981388e-01 + -5.509634510475757e-01 -5.506743625070015e-01 -5.503851268106821e-01 -5.500957448096843e-01 -5.498062173123895e-01 + -5.495165448046009e-01 -5.492267279674086e-01 -5.489367680360671e-01 -5.486466657159732e-01 -5.483564214808752e-01 + -5.480660360175322e-01 -5.477755101695411e-01 -5.474848446983241e-01 -5.471940399297857e-01 -5.469030967097296e-01 + -5.466120162347039e-01 -5.463207992130580e-01 -5.460294461220425e-01 -5.457379574365921e-01 -5.454463341419615e-01 + -5.451545769787555e-01 -5.448626863052353e-01 -5.445706629798505e-01 -5.442785079610155e-01 -5.439862220351145e-01 + -5.436938056623958e-01 -5.434012594168094e-01 -5.431085842649811e-01 -5.428157805859503e-01 -5.425228488112607e-01 + -5.422297902211034e-01 -5.419366056396356e-01 -5.416432955189590e-01 -5.413498603513526e-01 -5.410563008101139e-01 + -5.407626176406882e-01 -5.404688113584152e-01 -5.401748827259091e-01 -5.398808327262222e-01 -5.395866619984641e-01 + -5.392923710452394e-01 -5.389979603718316e-01 -5.387034307479797e-01 -5.384087828255361e-01 -5.381140170098579e-01 + -5.378191341794292e-01 -5.375241352697128e-01 -5.372290208939874e-01 -5.369337913756430e-01 -5.366384472427702e-01 + -5.363429897090184e-01 -5.360474189692397e-01 -5.357517350808286e-01 -5.354559397287709e-01 -5.351600336380363e-01 + -5.348640167550405e-01 -5.345678898586708e-01 -5.342716537895550e-01 -5.339753091509816e-01 -5.336788560795809e-01 + -5.333822952812678e-01 -5.330856281219807e-01 -5.327888549366336e-01 -5.324919760228772e-01 -5.321949921530423e-01 + -5.318979038948367e-01 -5.316007117591099e-01 -5.313034163655616e-01 -5.310060185016283e-01 -5.307085188690476e-01 + -5.304109178113635e-01 -5.301132159560333e-01 -5.298154141057816e-01 -5.295175129068631e-01 -5.292195125739295e-01 + -5.289214133220888e-01 -5.286232164928936e-01 -5.283249229043371e-01 -5.280265326905970e-01 -5.277280463629660e-01 + -5.274294646406563e-01 -5.271307882435877e-01 -5.268320172699235e-01 -5.265331522204252e-01 -5.262341943956992e-01 + -5.259351442515741e-01 -5.256360020246456e-01 -5.253367683007200e-01 -5.250374438802079e-01 -5.247380293156688e-01 + -5.244385244793137e-01 -5.241389303158239e-01 -5.238392481089597e-01 -5.235394779437145e-01 -5.232396201567239e-01 + -5.229396754457293e-01 -5.226396444439171e-01 -5.223395275325885e-01 -5.220393250130385e-01 -5.217390378529512e-01 + -5.214386667612969e-01 -5.211382119631184e-01 -5.208376739941909e-01 -5.205370535049869e-01 -5.202363510969753e-01 + -5.199355670763710e-01 -5.196347019022574e-01 -5.193337564915598e-01 -5.190327313042545e-01 -5.187316266472318e-01 + -5.184304431068453e-01 -5.181291813913007e-01 -5.178278420262173e-01 -5.175264249304404e-01 -5.172249309061349e-01 + -5.169233612064826e-01 -5.166217158673360e-01 -5.163199951550123e-01 -5.160181998004911e-01 -5.157163303784532e-01 + -5.154143871836301e-01 -5.151123703899823e-01 -5.148102810445049e-01 -5.145081200022412e-01 -5.142058873966443e-01 + -5.139035834879907e-01 -5.136012088439446e-01 -5.132987643470369e-01 -5.129962500176725e-01 -5.126936660139045e-01 + -5.123910137907831e-01 -5.120882937169244e-01 -5.117855056864241e-01 -5.114826505830118e-01 -5.111797289351894e-01 + -5.108767409175631e-01 -5.105736869791608e-01 -5.102705678009448e-01 -5.099673841164564e-01 -5.096641361609235e-01 + -5.093608243087677e-01 -5.090574492425100e-01 -5.087540114820200e-01 -5.084505112619658e-01 -5.081469486274651e-01 + -5.078433245912960e-01 -5.075396400795943e-01 -5.072358951124865e-01 -5.069320899536702e-01 -5.066282251477461e-01 + -5.063243014155288e-01 -5.060203189866231e-01 -5.057162780382299e-01 -5.054121795257869e-01 -5.051080240346536e-01 + -5.048038117428125e-01 -5.044995428560932e-01 -5.041952179946867e-01 -5.038908379779851e-01 -5.035864027540428e-01 + -5.032819126747086e-01 -5.029773687584369e-01 -5.026727713803431e-01 -5.023681207203433e-01 -5.020634170773620e-01 + -5.017586611304518e-01 -5.014538534087800e-01 -5.011489939472488e-01 -5.008440834008399e-01 -5.005391225202214e-01 + -5.002341114848970e-01 -4.999290507534227e-01 -4.996239408965545e-01 -4.993187821357916e-01 -4.990135746184980e-01 + -4.987083187010172e-01 -4.984030154770353e-01 -4.980976654859903e-01 -4.977922686591017e-01 -4.974868253646026e-01 + -4.971813362150598e-01 -4.968758018164073e-01 -4.965702219796178e-01 -4.962645970518764e-01 -4.959589283986423e-01 + -4.956532161259331e-01 -4.953474601672504e-01 -4.950416611894621e-01 -4.947358197709370e-01 -4.944299362131679e-01 + -4.941240104625670e-01 -4.938180432013966e-01 -4.935120353360559e-01 -4.932059869696777e-01 -4.928998983832586e-01 + -4.925937700937396e-01 -4.922876025288242e-01 -4.919813957951697e-01 -4.916751499430368e-01 -4.913688660561277e-01 + -4.910625447982750e-01 -4.907561860728009e-01 -4.904497902858990e-01 -4.901433579647613e-01 -4.898368894758774e-01 + -4.895303847877975e-01 -4.892238442443610e-01 -4.889172690570770e-01 -4.886106594399146e-01 -4.883040152916479e-01 + -4.879973371198497e-01 -4.876906255185612e-01 -4.873838808516193e-01 -4.870771028969680e-01 -4.867702923235035e-01 + -4.864634502410182e-01 -4.861565765237592e-01 -4.858496713307078e-01 -4.855427352755911e-01 -4.852357685536697e-01 + -4.849287714451036e-01 -4.846217444589359e-01 -4.843146879997467e-01 -4.840076025123002e-01 -4.837004885060202e-01 + -4.833933461066379e-01 -4.830861755003688e-01 -4.827789772517898e-01 -4.824717516127337e-01 -4.821644988235214e-01 + -4.818572195031119e-01 -4.815499140763169e-01 -4.812425828318353e-01 -4.809352261296052e-01 -4.806278443199989e-01 + -4.803204376463540e-01 -4.800130060714603e-01 -4.797055501717924e-01 -4.793980709573083e-01 -4.790905684347367e-01 + -4.787830426340720e-01 -4.784754939887473e-01 -4.781679231200341e-01 -4.778603302286951e-01 -4.775527150015833e-01 + -4.772450784284375e-01 -4.769374213667171e-01 -4.766297434623847e-01 -4.763220450397429e-01 -4.760143266869929e-01 + -4.757065886153464e-01 -4.753988310011543e-01 -4.750910541528841e-01 -4.747832586964973e-01 -4.744754450010169e-01 + -4.741676132522562e-01 -4.738597638648681e-01 -4.735518971269201e-01 -4.732440131603057e-01 -4.729361121339242e-01 + -4.726281945136708e-01 -4.723202610280838e-01 -4.720123119889466e-01 -4.717043475548789e-01 -4.713963678930571e-01 + -4.710883732580126e-01 -4.707803639362851e-01 -4.704723402372425e-01 -4.701643027667922e-01 -4.698562520096238e-01 + -4.695481878708884e-01 -4.692401107063794e-01 -4.689320210638210e-01 -4.686239190614940e-01 -4.683158048406638e-01 + -4.680076787162389e-01 -4.676995413185929e-01 -4.673913930202820e-01 -4.670832339045677e-01 -4.667750641928977e-01 + -4.664668842720264e-01 -4.661586945788764e-01 -4.658504950199774e-01 -4.655422858974875e-01 -4.652340682220931e-01 + -4.649258420178881e-01 -4.646176071935555e-01 -4.643093642460228e-01 -4.640011135361189e-01 -4.636928552533583e-01 + -4.633845894780055e-01 -4.630763167063440e-01 -4.627680375263447e-01 -4.624597520114774e-01 -4.621514604268375e-01 + -4.618431632080228e-01 -4.615348605890552e-01 -4.612265525685530e-01 -4.609182391698630e-01 -4.606099213200685e-01 + -4.603015994943055e-01 -4.599932734377760e-01 -4.596849434943749e-01 -4.593766101319814e-01 -4.590682736286037e-01 + -4.587599339472412e-01 -4.584515913122191e-01 -4.581432465762054e-01 -4.578348999443045e-01 -4.575265513883392e-01 + -4.572182012155285e-01 -4.569098498253546e-01 -4.566014974456956e-01 -4.562931438038699e-01 -4.559847894939479e-01 + -4.556764355440957e-01 -4.553680818446301e-01 -4.550597283221777e-01 -4.547513752454754e-01 -4.544430231318768e-01 + -4.541346721146189e-01 -4.538263219879204e-01 -4.535179736207505e-01 -4.532096276207381e-01 -4.529012837320638e-01 + -4.525929421989657e-01 -4.522846033793929e-01 -4.519762674029318e-01 -4.516679344715044e-01 -4.513596049388520e-01 + -4.510512793496801e-01 -4.507429578901284e-01 -4.504346405869434e-01 -4.501263277269192e-01 -4.498180196893253e-01 + -4.495097167463535e-01 -4.492014186979058e-01 -4.488931259139300e-01 -4.485848392328776e-01 -4.482765586745183e-01 + -4.479682843350483e-01 -4.476600166157323e-01 -4.473517555800268e-01 -4.470435013321629e-01 -4.467352542154915e-01 + -4.464270145748750e-01 -4.461187827567155e-01 -4.458105590951706e-01 -4.455023436689998e-01 -4.451941365719282e-01 + -4.448859382022067e-01 -4.445777486373541e-01 -4.442695679571050e-01 -4.439613968717006e-01 -4.436532356916815e-01 + -4.433450843880059e-01 -4.430369431657580e-01 -4.427288122616561e-01 -4.424206918620519e-01 -4.421125820372482e-01 + -4.418044832064567e-01 -4.414963960811867e-01 -4.411883204960218e-01 -4.408802564087612e-01 -4.405722043668788e-01 + -4.402641646390490e-01 -4.399561373068210e-01 -4.396481224088197e-01 -4.393401203468038e-01 -4.390321316119934e-01 + -4.387241564347777e-01 -4.384161947343386e-01 -4.381082465266398e-01 -4.378003125430411e-01 -4.374923928277115e-01 + -4.371844871230922e-01 -4.368765963346815e-01 -4.365687207997857e-01 -4.362608601883623e-01 -4.359530147661063e-01 + -4.356451849773876e-01 -4.353373711547212e-01 -4.350295729831375e-01 -4.347217906709347e-01 -4.344140253247259e-01 + -4.341062767701542e-01 -4.337985447574569e-01 -4.334908298973194e-01 -4.331831324142745e-01 -4.328754522838512e-01 + -4.325677895304312e-01 -4.322601446380396e-01 -4.319525182069930e-01 -4.316449103351276e-01 -4.313373209430619e-01 + -4.310297500384340e-01 -4.307221981580691e-01 -4.304146654764764e-01 -4.301071518609876e-01 -4.297996578556980e-01 + -4.294921838432407e-01 -4.291847298181669e-01 -4.288772959356691e-01 -4.285698824691314e-01 -4.282624896947286e-01 + -4.279551173581843e-01 -4.276477655542056e-01 -4.273404353166645e-01 -4.270331268873108e-01 -4.267258400671970e-01 + -4.264185747737768e-01 -4.261113314513503e-01 -4.258041105111009e-01 -4.254969114260224e-01 -4.251897346526543e-01 + -4.248825811839114e-01 -4.245754507348872e-01 -4.242683433304872e-01 -4.239612594489042e-01 -4.236541990429175e-01 + -4.233471621233121e-01 -4.230401489624036e-01 -4.227331599159186e-01 -4.224261953202194e-01 -4.221192554076946e-01 + -4.218123401221037e-01 -4.215054495276057e-01 -4.211985840665567e-01 -4.208917437341202e-01 -4.205849285470991e-01 + -4.202781391077526e-01 -4.199713756820169e-01 -4.196646382796324e-01 -4.193579269625680e-01 -4.190512419898234e-01 + -4.187445835885104e-01 -4.184379514023820e-01 -4.181313458657921e-01 -4.178247679943504e-01 -4.175182174706034e-01 + -4.172116941638125e-01 -4.169051985589959e-01 -4.165987308801878e-01 -4.162922910262470e-01 -4.159858787333477e-01 + -4.156794948456864e-01 -4.153731400237493e-01 -4.150668138055245e-01 -4.147605162480433e-01 -4.144542477033889e-01 + -4.141480084083939e-01 -4.138417983331389e-01 -4.135356175072968e-01 -4.132294665425894e-01 -4.129233456523720e-01 + -4.126172547353913e-01 -4.123111939769975e-01 -4.120051637027982e-01 -4.116991641480549e-01 -4.113931948631621e-01 + -4.110872561089984e-01 -4.107813489720965e-01 -4.104754732505308e-01 -4.101696286974395e-01 -4.098638156566466e-01 + -4.095580344057681e-01 -4.092522850492459e-01 -4.089465675148873e-01 -4.086408821301867e-01 -4.083352292811099e-01 + -4.080296090087697e-01 -4.077240214925531e-01 -4.074184669621912e-01 -4.071129454474836e-01 -4.068074568206541e-01 + -4.065020011172992e-01 -4.061965792344674e-01 -4.058911914234347e-01 -4.055858372701102e-01 -4.052805169731385e-01 + -4.049752308691225e-01 -4.046699791746853e-01 -4.043647616984872e-01 -4.040595785275335e-01 -4.037544302850327e-01 + -4.034493171430220e-01 -4.031442391412985e-01 -4.028391964411297e-01 -4.025341890399178e-01 -4.022292169515432e-01 + -4.019242804318620e-01 -4.016193797575413e-01 -4.013145151618574e-01 -4.010096867767989e-01 -4.007048946739946e-01 + -4.004001389575452e-01 -4.000954199442892e-01 -3.997907376333255e-01 -3.994860918450180e-01 -3.991814831388100e-01 + -3.988769118682245e-01 -3.985723779299208e-01 -3.982678813725196e-01 -3.979634224118638e-01 -3.976590013430957e-01 + -3.973546179557737e-01 -3.970502723184750e-01 -3.967459652757308e-01 -3.964416967373386e-01 -3.961374664325438e-01 + -3.958332748416728e-01 -3.955291221412219e-01 -3.952250082276700e-01 -3.949209329883424e-01 -3.946168969005399e-01 + -3.943129006192436e-01 -3.940089438207542e-01 -3.937050264421336e-01 -3.934011488327164e-01 -3.930973111392007e-01 + -3.927935133510078e-01 -3.924897554398895e-01 -3.921860379028622e-01 -3.918823611410527e-01 -3.915787251272155e-01 + -3.912751296302741e-01 -3.909715747221262e-01 -3.906680610479274e-01 -3.903645884467465e-01 -3.900611567141484e-01 + -3.897577665105899e-01 -3.894544180732338e-01 -3.891511112918067e-01 -3.888478460867855e-01 -3.885446227676595e-01 + -3.882414417069796e-01 -3.879383024897914e-01 -3.876352053351357e-01 -3.873321510269954e-01 -3.870291394376005e-01 + -3.867261704550462e-01 -3.864232442776043e-01 -3.861203610538394e-01 -3.858175208256477e-01 -3.855147235659399e-01 + -3.852119696012977e-01 -3.849092593053318e-01 -3.846065928280623e-01 -3.843039700003283e-01 -3.840013907871894e-01 + -3.836988557264463e-01 -3.833963646642737e-01 -3.830939173673272e-01 -3.827915146861536e-01 -3.824891567344230e-01 + -3.821868431312930e-01 -3.818845742897094e-01 -3.815823505036508e-01 -3.812801717050347e-01 -3.809780375081945e-01 + -3.806759481537249e-01 -3.803739045452896e-01 -3.800719066553854e-01 -3.797699542729503e-01 -3.794680474344709e-01 + -3.791661864151066e-01 -3.788643713579414e-01 -3.785626020610045e-01 -3.782608787892401e-01 -3.779592019649877e-01 + -3.776575717504184e-01 -3.773559879986245e-01 -3.770544506277551e-01 -3.767529601718599e-01 -3.764515165488658e-01 + -3.761501194541416e-01 -3.758487697291592e-01 -3.755474675286999e-01 -3.752462123142175e-01 -3.749450044400430e-01 + -3.746438442933219e-01 -3.743427319385532e-01 -3.740416670860849e-01 -3.737406497610264e-01 -3.734396805632812e-01 + -3.731387597991040e-01 -3.728378873981389e-01 -3.725370629746288e-01 -3.722362869751284e-01 -3.719355598195744e-01 + -3.716348809475082e-01 -3.713342505611615e-01 -3.710336692885385e-01 -3.707331373206220e-01 -3.704326544188714e-01 + -3.701322203470578e-01 -3.698318357923215e-01 -3.695315007664240e-01 -3.692312147431765e-01 -3.689309784821330e-01 + -3.686307923312130e-01 -3.683306558583173e-01 -3.680305692832940e-01 -3.677305328772401e-01 -3.674305466155561e-01 + -3.671306102835627e-01 -3.668307239979260e-01 -3.665308885123383e-01 -3.662311039528895e-01 -3.659313700864294e-01 + -3.656316867340536e-01 -3.653320542170925e-01 -3.650324728818179e-01 -3.647329423252613e-01 -3.644334627823841e-01 + -3.641340348652060e-01 -3.638346584224414e-01 -3.635353333854674e-01 -3.632360599381753e-01 -3.629368383087880e-01 + -3.626376683911322e-01 -3.623385498640058e-01 -3.620394834143431e-01 -3.617404694429358e-01 -3.614415075289109e-01 + -3.611425978472304e-01 -3.608437406892576e-01 -3.605449360396625e-01 -3.602461837170217e-01 -3.599474837636126e-01 + -3.596488368123176e-01 -3.593502429497555e-01 -3.590517019950174e-01 -3.587532141258951e-01 -3.584547794364419e-01 + -3.581563978967544e-01 -3.578580694598877e-01 -3.575597943932133e-01 -3.572615731273898e-01 -3.569634054963255e-01 + -3.566652915450074e-01 -3.563672316398869e-01 -3.560692255181004e-01 -3.557712730433470e-01 -3.554733745722332e-01 + -3.551755304325120e-01 -3.548777407381354e-01 -3.545800053200450e-01 -3.542823243820459e-01 -3.539846981602633e-01 + -3.536871265064687e-01 -3.533896092936707e-01 -3.530921466577667e-01 -3.527947392696623e-01 -3.524973870763591e-01 + -3.522000896417020e-01 -3.519028473926252e-01 -3.516056606257513e-01 -3.513085292624320e-01 -3.510114529438408e-01 + -3.507144318797571e-01 -3.504174668509267e-01 -3.501205576763053e-01 -3.498237041407538e-01 -3.495269064579332e-01 + -3.492301648012658e-01 -3.489334792023763e-01 -3.486368495320163e-01 -3.483402759532310e-01 -3.480437587608516e-01 + -3.477472981563033e-01 -3.474508940116457e-01 -3.471545462266357e-01 -3.468582552838557e-01 -3.465620210594309e-01 + -3.462658431862374e-01 -3.459697223261950e-01 -3.456736587298253e-01 -3.453776521244075e-01 -3.450817025977070e-01 + -3.447858103250944e-01 -3.444899754033867e-01 -3.441941976114102e-01 -3.438984770490408e-01 -3.436028143288083e-01 + -3.433072093931014e-01 -3.430116620696204e-01 -3.427161725111446e-01 -3.424207408695913e-01 -3.421253671506906e-01 + -3.418300511322294e-01 -3.415347931565998e-01 -3.412395936962896e-01 -3.409444525560181e-01 -3.406493696743920e-01 + -3.403543451949735e-01 -3.400593792856730e-01 -3.397644718554241e-01 -3.394696227303268e-01 -3.391748324448361e-01 + -3.388801012525273e-01 -3.385854289098167e-01 -3.382908154719833e-01 -3.379962610967925e-01 -3.377017658856785e-01 + -3.374073296405456e-01 -3.371129523992028e-01 -3.368186347618567e-01 -3.365243767275647e-01 -3.362301780997549e-01 + -3.359360390044588e-01 -3.356419595939377e-01 -3.353479398983790e-01 -3.350539796822969e-01 -3.347600792157354e-01 + -3.344662390001809e-01 -3.341724588683134e-01 -3.338787387386647e-01 -3.335850787505256e-01 -3.332914790393797e-01 + -3.329979395469141e-01 -3.327044601082655e-01 -3.324110411740308e-01 -3.321176830325031e-01 -3.318243854727410e-01 + -3.315311485033696e-01 -3.312379722613320e-01 -3.309448568815591e-01 -3.306518021855764e-01 -3.303588081394571e-01 + -3.300658753265905e-01 -3.297730038003383e-01 -3.294801933460689e-01 -3.291874440822869e-01 -3.288947561448500e-01 + -3.286021295596533e-01 -3.283095641084477e-01 -3.280170600152969e-01 -3.277246178092963e-01 -3.274322373144385e-01 + -3.271399184133136e-01 -3.268476612759387e-01 -3.265554660369243e-01 -3.262633326374516e-01 -3.259712608638953e-01 + -3.256792511518811e-01 -3.253873038511834e-01 -3.250954187049387e-01 -3.248035957166725e-01 -3.245118350464998e-01 + -3.242201368055027e-01 -3.239285008232202e-01 -3.236369270127419e-01 -3.233454159517716e-01 -3.230539677655248e-01 + -3.227625822208953e-01 -3.224712593689608e-01 -3.221799993547627e-01 -3.218888022707884e-01 -3.215976678728723e-01 + -3.213065962862219e-01 -3.210155880538063e-01 -3.207246430922022e-01 -3.204337612603162e-01 -3.201429426545060e-01 + -3.198521874188910e-01 -3.195614955407240e-01 -3.192708667833873e-01 -3.189803015317205e-01 -3.186898001852494e-01 + -3.183993624745159e-01 -3.181089883645859e-01 -3.178186780215274e-01 -3.175284315788672e-01 -3.172382488912609e-01 + -3.169481298117736e-01 -3.166580748847834e-01 -3.163680842820584e-01 -3.160781577505636e-01 -3.157882953403168e-01 + -3.154984971942622e-01 -3.152087634033934e-01 -3.149190937439705e-01 -3.146294882798918e-01 -3.143399475483734e-01 + -3.140504715109739e-01 -3.137610600081304e-01 -3.134717131245625e-01 -3.131824310053718e-01 -3.128932136614712e-01 + -3.126040608259110e-01 -3.123149728003283e-01 -3.120259500284038e-01 -3.117369923103007e-01 -3.114480995811182e-01 + -3.111592719695180e-01 -3.108705096041851e-01 -3.105818123704323e-01 -3.102931800853200e-01 -3.100046132424714e-01 + -3.097161120700553e-01 -3.094276763275429e-01 -3.091393060498078e-01 -3.088510013669117e-01 -3.085627623567511e-01 + -3.082745888090075e-01 -3.079864807413559e-01 -3.076984387104112e-01 -3.074104627037881e-01 -3.071225525229602e-01 + -3.068347082674415e-01 -3.065469300647063e-01 -3.062592179233167e-01 -3.059715715883658e-01 -3.056839913222955e-01 + -3.053964776128304e-01 -3.051090302429263e-01 -3.048216491115613e-01 -3.045343343664140e-01 -3.042470861256498e-01 + -3.039599042912569e-01 -3.036727886539801e-01 -3.033857396783212e-01 -3.030987576532087e-01 -3.028118423290159e-01 + -3.025249936916685e-01 -3.022382118572411e-01 -3.019514969324824e-01 -3.016648487319269e-01 -3.013782672163520e-01 + -3.010917529380510e-01 -3.008053059332530e-01 -3.005189259718208e-01 -3.002326131255288e-01 -2.999463675243501e-01 + -2.996601892115071e-01 -2.993740779431134e-01 -2.990880338991673e-01 -2.988020575697556e-01 -2.985161488129333e-01 + -2.982303074956766e-01 -2.979445337070337e-01 -2.976588275957710e-01 -2.973731891105994e-01 -2.970876179949718e-01 + -2.968021146693378e-01 -2.965166794729635e-01 -2.962313121299224e-01 -2.959460126205053e-01 -2.956607810824475e-01 + -2.953756176130727e-01 -2.950905220348498e-01 -2.948054942542040e-01 -2.945205348259674e-01 -2.942356438398593e-01 + -2.939508210351428e-01 -2.936660664737455e-01 -2.933813802767271e-01 -2.930967624892026e-01 -2.928122128931882e-01 + -2.925277316158055e-01 -2.922433191494531e-01 -2.919589753765323e-01 -2.916747001400424e-01 -2.913904935350139e-01 + -2.911063557118664e-01 -2.908222866434848e-01 -2.905382860439090e-01 -2.902543542778646e-01 -2.899704917370004e-01 + -2.896866981425306e-01 -2.894029734511842e-01 -2.891193178139609e-01 -2.888357313345801e-01 -2.885522138545054e-01 + -2.882687652243500e-01 -2.879853859636904e-01 -2.877020762131379e-01 -2.874188357014512e-01 -2.871356645025479e-01 + -2.868525627422169e-01 -2.865695304469716e-01 -2.862865673963798e-01 -2.860036736642309e-01 -2.857208497673618e-01 + -2.854380956360413e-01 -2.851554110854154e-01 -2.848727961880673e-01 -2.845902510831507e-01 -2.843077757793696e-01 + -2.840253700094237e-01 -2.837430340397069e-01 -2.834607682748240e-01 -2.831785725328111e-01 -2.828964467316310e-01 + -2.826143909542473e-01 -2.823324053101364e-01 -2.820504896922502e-01 -2.817686439371250e-01 -2.814868685136343e-01 + -2.812051636152371e-01 -2.809235289745332e-01 -2.806419646055033e-01 -2.803604706362606e-01 -2.800790471610514e-01 + -2.797976939416736e-01 -2.795164109639519e-01 -2.792351987736799e-01 -2.789540573481899e-01 -2.786729864814172e-01 + -2.783919862645312e-01 -2.781110567914744e-01 -2.778301980476193e-01 -2.775494098202491e-01 -2.772686923282846e-01 + -2.769880459823117e-01 -2.767074706347814e-01 -2.764269661749121e-01 -2.761465326612197e-01 -2.758661702373058e-01 + -2.755858788282252e-01 -2.753056582075042e-01 -2.750255088041456e-01 -2.747454308713073e-01 -2.744654241403574e-01 + -2.741854886058927e-01 -2.739056243892176e-01 -2.736258315782464e-01 -2.733461099674180e-01 -2.730664595012521e-01 + -2.727868807168794e-01 -2.725073736368404e-01 -2.722279380246611e-01 -2.719485739535283e-01 -2.716692815376729e-01 + -2.713900607905190e-01 -2.711109114418696e-01 -2.708318336740216e-01 -2.705528279896257e-01 -2.702738942089605e-01 + -2.699950321750810e-01 -2.697162419812612e-01 -2.694375237750356e-01 -2.691588774953904e-01 -2.688803028674867e-01 + -2.686018002777490e-01 -2.683233700490228e-01 -2.680450119322323e-01 -2.677667258920440e-01 -2.674885120321642e-01 + -2.672103704327183e-01 -2.669323009240009e-01 -2.666543034142266e-01 -2.663763784024609e-01 -2.660985259744725e-01 + -2.658207458961011e-01 -2.655430381891060e-01 -2.652654029648259e-01 -2.649878402880381e-01 -2.647103499069445e-01 + -2.644329319184849e-01 -2.641555868035665e-01 -2.638783144422805e-01 -2.636011146840161e-01 -2.633239876271375e-01 + -2.630469333706403e-01 -2.627699518665801e-01 -2.624930428881614e-01 -2.622162067361601e-01 -2.619394437425979e-01 + -2.616627537197243e-01 -2.613861365959049e-01 -2.611095924398818e-01 -2.608331213683194e-01 -2.605567232565551e-01 + -2.602803979638560e-01 -2.600041459185203e-01 -2.597279672559259e-01 -2.594518617711524e-01 -2.591758294668244e-01 + -2.588998704444723e-01 -2.586239847880919e-01 -2.583481722507706e-01 -2.580724328621725e-01 -2.577967671126083e-01 + -2.575211749406902e-01 -2.572456561780725e-01 -2.569702108956164e-01 -2.566948391959332e-01 -2.564195410517088e-01 + -2.561443162003717e-01 -2.558691649278121e-01 -2.555940876367002e-01 -2.553190840839927e-01 -2.550441541814838e-01 + -2.547692980445108e-01 -2.544945157803290e-01 -2.542198072584164e-01 -2.539451722830000e-01 -2.536706112997469e-01 + -2.533961245035316e-01 -2.531217116489478e-01 -2.528473727232912e-01 -2.525731078267265e-01 -2.522989170513077e-01 + -2.520248001810547e-01 -2.517507572028029e-01 -2.514767886096237e-01 -2.512028943623831e-01 -2.509290742545349e-01 + -2.506553283625735e-01 -2.503816568034038e-01 -2.501080595782905e-01 -2.498345364108095e-01 -2.495610875124447e-01 + -2.492877133133172e-01 -2.490144136112123e-01 -2.487411882994743e-01 -2.484680374856057e-01 -2.481949612635986e-01 + -2.479219595287280e-01 -2.476490320734136e-01 -2.473761793087864e-01 -2.471034014703498e-01 -2.468306982957061e-01 + -2.465580697844871e-01 -2.462855160432138e-01 -2.460130371204629e-01 -2.457406328233614e-01 -2.454683031113906e-01 + -2.451960484794311e-01 -2.449238689415910e-01 -2.446517642712055e-01 -2.443797345227543e-01 -2.441077797933181e-01 + -2.438359000947776e-01 -2.435640951889690e-01 -2.432923652315951e-01 -2.430207106571287e-01 -2.427491313175689e-01 + -2.424776270783986e-01 -2.422061980074125e-01 -2.419348442072336e-01 -2.416635656192684e-01 -2.413923620306189e-01 + -2.411212337762792e-01 -2.408501811283544e-01 -2.405792038734625e-01 -2.403083019688687e-01 -2.400374754936993e-01 + -2.397667245256450e-01 -2.394960488977194e-01 -2.392254485194238e-01 -2.389549238762380e-01 -2.386844750244205e-01 + -2.384141017100180e-01 -2.381438039886236e-01 -2.378735819631148e-01 -2.376034356560101e-01 -2.373333648418426e-01 + -2.370633696160408e-01 -2.367934504134751e-01 -2.365236071336530e-01 -2.362538396334552e-01 -2.359841479713349e-01 + -2.357145322333765e-01 -2.354449923780104e-01 -2.351755281955192e-01 -2.349061399838227e-01 -2.346368280467886e-01 + -2.343675921502802e-01 -2.340984322401892e-01 -2.338293484224673e-01 -2.335603407944267e-01 -2.332914091991481e-01 + -2.330225534791031e-01 -2.327537740958542e-01 -2.324850711724544e-01 -2.322164444575208e-01 -2.319478939696494e-01 + -2.316794198107119e-01 -2.314110220364787e-01 -2.311427004172850e-01 -2.308744549913938e-01 -2.306062862221652e-01 + -2.303381940399467e-01 -2.300701782673901e-01 -2.298022389505013e-01 -2.295343762055658e-01 -2.292665900251787e-01 + -2.289988801367178e-01 -2.287312467963517e-01 -2.284636903804389e-01 -2.281962106639611e-01 -2.279288075702767e-01 + -2.276614812041137e-01 -2.273942316314865e-01 -2.271270587234099e-01 -2.268599623216859e-01 -2.265929428586625e-01 + -2.263260004971463e-01 -2.260591349680134e-01 -2.257923462859340e-01 -2.255256345570404e-01 -2.252589998316905e-01 + -2.249924418873443e-01 -2.247259607239798e-01 -2.244595568451081e-01 -2.241932301870257e-01 -2.239269805236896e-01 + -2.236608079513920e-01 -2.233947125724077e-01 -2.231286943677930e-01 -2.228627530899186e-01 -2.225968889349937e-01 + -2.223311022938890e-01 -2.220653929888047e-01 -2.217997609137618e-01 -2.215342061492806e-01 -2.212687287997047e-01 + -2.210033287645195e-01 -2.207380058226258e-01 -2.204727603658667e-01 -2.202075926188733e-01 -2.199425023254976e-01 + -2.196774894791217e-01 -2.194125541827232e-01 -2.191476964953657e-01 -2.188829162198361e-01 -2.186182133017065e-01 + -2.183535882155842e-01 -2.180890409721393e-01 -2.178245713492862e-01 -2.175601793915103e-01 -2.172958651996608e-01 + -2.170316287941991e-01 -2.167674699222372e-01 -2.165033887351043e-01 -2.162393856655618e-01 -2.159754605317784e-01 + -2.157116131976179e-01 -2.154478437626437e-01 -2.151841523053365e-01 -2.149205387568082e-01 -2.146570029331132e-01 + -2.143935451423346e-01 -2.141301656253313e-01 -2.138668641770334e-01 -2.136036407648879e-01 -2.133404954698548e-01 + -2.130774283590253e-01 -2.128144392711416e-01 -2.125515281171839e-01 -2.122886953403734e-01 -2.120259409959825e-01 + -2.117632648531722e-01 -2.115006669388265e-01 -2.112381473557379e-01 -2.109757061544524e-01 -2.107133431005909e-01 + -2.104510582708100e-01 -2.101888520817322e-01 -2.099267244352251e-01 -2.096646751892664e-01 -2.094027043922436e-01 + -2.091408121382980e-01 -2.088789983898283e-01 -2.086172629233026e-01 -2.083556060294393e-01 -2.080940280081475e-01 + -2.078325286261216e-01 -2.075711078316715e-01 -2.073097657230958e-01 -2.070485023681648e-01 -2.067873176254528e-01 + -2.065262113703670e-01 -2.062651840261599e-01 -2.060042356935543e-01 -2.057433661320316e-01 -2.054825753736384e-01 + -2.052218635119340e-01 -2.049612305777034e-01 -2.047006763593381e-01 -2.044402009029163e-01 -2.041798046444743e-01 + -2.039194875091236e-01 -2.036592493288050e-01 -2.033990901597007e-01 -2.031390101041152e-01 -2.028790091364410e-01 + -2.026190869860804e-01 -2.023592439213894e-01 -2.020994803209571e-01 -2.018397959336108e-01 -2.015801906636277e-01 + -2.013206646163115e-01 -2.010612178968381e-01 -2.008018503846473e-01 -2.005425618909167e-01 -2.002833527994660e-01 + -2.000242232866459e-01 -1.997651731545872e-01 -1.995062023757428e-01 -1.992473110134654e-01 -1.989884991329442e-01 + -1.987297665552775e-01 -1.984711132804359e-01 -1.982125397288479e-01 -1.979540458641874e-01 -1.976956315048893e-01 + -1.974372966986851e-01 -1.971790415364275e-01 -1.969208660181268e-01 -1.966627699138122e-01 -1.964047534115951e-01 + -1.961468168792641e-01 -1.958889601415059e-01 -1.956311830976701e-01 -1.953734858227050e-01 -1.951158683885618e-01 + -1.948583307060198e-01 -1.946008726082255e-01 -1.943434944554087e-01 -1.940861964418109e-01 -1.938289783248288e-01 + -1.935718400929853e-01 -1.933147818435645e-01 -1.930578036445209e-01 -1.928009053047615e-01 -1.925440867668252e-01 + -1.922873484836986e-01 -1.920306904586313e-01 -1.917741124759950e-01 -1.915176145882685e-01 -1.912611968971867e-01 + -1.910048594156118e-01 -1.907486018758652e-01 -1.904924244300230e-01 -1.902363275204000e-01 -1.899803109613821e-01 + -1.897243746214878e-01 -1.894685186111405e-01 -1.892127429944364e-01 -1.889570476814606e-01 -1.887014324762902e-01 + -1.884458977092228e-01 -1.881904436322386e-01 -1.879350700181010e-01 -1.876797768445363e-01 -1.874245641980662e-01 + -1.871694321106837e-01 -1.869143804464632e-01 -1.866594091449939e-01 -1.864045185802509e-01 -1.861497088150435e-01 + -1.858949796742653e-01 -1.856403311585743e-01 -1.853857633524328e-01 -1.851312763093270e-01 -1.848768697910832e-01 + -1.846225438828809e-01 -1.843682990131126e-01 -1.841141350478542e-01 -1.838600518410295e-01 -1.836060494900988e-01 + -1.833521280737523e-01 -1.830982875326949e-01 -1.828445276569093e-01 -1.825908487213151e-01 -1.823372510073639e-01 + -1.820837342990139e-01 -1.818302985608840e-01 -1.815769438919524e-01 -1.813236703339543e-01 -1.810704777470943e-01 + -1.808173660274447e-01 -1.805643355946649e-01 -1.803113865319381e-01 -1.800585185867421e-01 -1.798057318207557e-01 + -1.795530263298101e-01 -1.793004021140676e-01 -1.790478589821669e-01 -1.787953969871552e-01 -1.785430165333783e-01 + -1.782907175616041e-01 -1.780384999147782e-01 -1.777863636186671e-01 -1.775343087850783e-01 -1.772823354138563e-01 + -1.770304432439544e-01 -1.767786324996124e-01 -1.765269035206169e-01 -1.762752561209628e-01 -1.760236902365481e-01 + -1.757722059508868e-01 -1.755208033072168e-01 -1.752694821962465e-01 -1.750182424985018e-01 -1.747670845873172e-01 + -1.745160085943736e-01 -1.742650142826787e-01 -1.740141016708582e-01 -1.737632708599284e-01 -1.735125219002990e-01 + -1.732618545819516e-01 -1.730112688968157e-01 -1.727607652962038e-01 -1.725103437360838e-01 -1.722600040199003e-01 + -1.720097462053399e-01 -1.717595703957765e-01 -1.715094765937824e-01 -1.712594645505801e-01 -1.710095344617568e-01 + -1.707596867053610e-01 -1.705099210652020e-01 -1.702602374503936e-01 -1.700106359820640e-01 -1.697611167032507e-01 + -1.695116795170456e-01 -1.692623242857098e-01 -1.690130513415946e-01 -1.687638608735592e-01 -1.685147526839133e-01 + -1.682657267304136e-01 -1.680167830834059e-01 -1.677679218434041e-01 -1.675191428301483e-01 -1.672704459776749e-01 + -1.670218317162355e-01 -1.667733000505553e-01 -1.665248507843929e-01 -1.662764839848620e-01 -1.660281997331086e-01 + -1.657799980211539e-01 -1.655318786421316e-01 -1.652838417439954e-01 -1.650358877061586e-01 -1.647880163635810e-01 + -1.645402275978841e-01 -1.642925215033296e-01 -1.640448981629310e-01 -1.637973575048030e-01 -1.635498993322754e-01 + -1.633025239587731e-01 -1.630552316214122e-01 -1.628080220971913e-01 -1.625608953706327e-01 -1.623138515347123e-01 + -1.620668906280902e-01 -1.618200125176413e-01 -1.615732171440627e-01 -1.613265048790783e-01 -1.610798757703294e-01 + -1.608333296326273e-01 -1.605868664946396e-01 -1.603404864451659e-01 -1.600941895233320e-01 -1.598479755194739e-01 + -1.596018445089071e-01 -1.593557968710357e-01 -1.591098325274174e-01 -1.588639513462271e-01 -1.586181533501567e-01 + -1.583724386633118e-01 -1.581268072684121e-01 -1.578812589110151e-01 -1.576357938605635e-01 -1.573904124176000e-01 + -1.571451143885420e-01 -1.568998997115455e-01 -1.566547684551118e-01 -1.564097207009810e-01 -1.561647563377750e-01 + -1.559198752534892e-01 -1.556750777971572e-01 -1.554303640753041e-01 -1.551857339241298e-01 -1.549411873472499e-01 + -1.546967244117141e-01 -1.544523451583313e-01 -1.542080493972972e-01 -1.539638371771692e-01 -1.537197089019022e-01 + -1.534756644902717e-01 -1.532317037874507e-01 -1.529878268669247e-01 -1.527440338285302e-01 -1.525003246495042e-01 + -1.522566990917994e-01 -1.520131573865194e-01 -1.517696998607227e-01 -1.515263263105132e-01 -1.512830366842278e-01 + -1.510398310896279e-01 -1.507967095609423e-01 -1.505536719818633e-01 -1.503107182379510e-01 -1.500678487166025e-01 + -1.498250635429138e-01 -1.495823624607518e-01 -1.493397455183047e-01 -1.490972128240516e-01 -1.488547643939502e-01 + -1.486124000468938e-01 -1.483701197975273e-01 -1.481279240643807e-01 -1.478858128086334e-01 -1.476437858541442e-01 + -1.474018432575297e-01 -1.471599850901578e-01 -1.469182113447434e-01 -1.466765218581870e-01 -1.464349167991909e-01 + -1.461933964691583e-01 -1.459519607332137e-01 -1.457106095126376e-01 -1.454693428712828e-01 -1.452281609001614e-01 + -1.449870635167667e-01 -1.447460505411944e-01 -1.445051223204885e-01 -1.442642790465533e-01 -1.440235204958664e-01 + -1.437828466645076e-01 -1.435422576460715e-01 -1.433017535021517e-01 -1.430613340788666e-01 -1.428209993367665e-01 + -1.425807496580667e-01 -1.423405850452980e-01 -1.421005053276286e-01 -1.418605105748216e-01 -1.416206008760722e-01 + -1.413807762310167e-01 -1.411410364179444e-01 -1.409013815814383e-01 -1.406618121114770e-01 -1.404223278620860e-01 + -1.401829287142080e-01 -1.399436147388266e-01 -1.397043860171121e-01 -1.394652424999606e-01 -1.392261840277533e-01 + -1.389872108800275e-01 -1.387483232704581e-01 -1.385095210193419e-01 -1.382708041155041e-01 -1.380321726381191e-01 + -1.377936266235328e-01 -1.375551659356028e-01 -1.373167905196480e-01 -1.370785007699294e-01 -1.368402967462084e-01 + -1.366021782602805e-01 -1.363641453151502e-01 -1.361261980034910e-01 -1.358883363925467e-01 -1.356505602730137e-01 + -1.354128697173978e-01 -1.351752651019714e-01 -1.349377463365720e-01 -1.347003133096952e-01 -1.344629660943524e-01 + -1.342257047644556e-01 -1.339885292721434e-01 -1.337514394288152e-01 -1.335144355004790e-01 -1.332775177574095e-01 + -1.330406860095451e-01 -1.328039402156265e-01 -1.325672804621033e-01 -1.323307068237664e-01 -1.320942191803451e-01 + -1.318578174250235e-01 -1.316215019436967e-01 -1.313852728254415e-01 -1.311491298574344e-01 -1.309130730812647e-01 + -1.306771025967214e-01 -1.304412184433993e-01 -1.302054204167683e-01 -1.299697085633917e-01 -1.297340833011096e-01 + -1.294985445422908e-01 -1.292630921400970e-01 -1.290277262032818e-01 -1.287924468024440e-01 -1.285572538860320e-01 + -1.283221472565841e-01 -1.280871271607027e-01 -1.278521939245786e-01 -1.276173473594251e-01 -1.273825873815436e-01 + -1.271479140654554e-01 -1.269133275291332e-01 -1.266788276689478e-01 -1.264444143112885e-01 -1.262100878411512e-01 + -1.259758484249543e-01 -1.257416958580221e-01 -1.255076301118343e-01 -1.252736512740011e-01 -1.250397594556589e-01 + -1.248059544551782e-01 -1.245722362561283e-01 -1.243386053032582e-01 -1.241050615437150e-01 -1.238716047916152e-01 + -1.236382351439431e-01 -1.234049527007845e-01 -1.231717574487822e-01 -1.229386491649988e-01 -1.227056280466961e-01 + -1.224726944551588e-01 -1.222398481939305e-01 -1.220070891810755e-01 -1.217744175349468e-01 -1.215418333321439e-01 + -1.213093364896874e-01 -1.210769268543440e-01 -1.208446047468073e-01 -1.206123703546746e-01 -1.203802234985189e-01 + -1.201481641556592e-01 -1.199161924040098e-01 -1.196843083373426e-01 -1.194525118101599e-01 -1.192208027778711e-01 + -1.189891816158967e-01 -1.187576483334740e-01 -1.185262027772708e-01 -1.182948450325541e-01 -1.180635751718018e-01 + -1.178323931740712e-01 -1.176012988598141e-01 -1.173702923768903e-01 -1.171393740841554e-01 -1.169085438684581e-01 + -1.166778016318426e-01 -1.164471474323627e-01 -1.162165813372163e-01 -1.159861033094216e-01 -1.157557132288848e-01 + -1.155254113554128e-01 -1.152951978878259e-01 -1.150650726784410e-01 -1.148350356935617e-01 -1.146050869998271e-01 + -1.143752266983624e-01 -1.141454546633286e-01 -1.139157708150553e-01 -1.136861755297615e-01 -1.134566688685596e-01 + -1.132272506625232e-01 -1.129979209389772e-01 -1.127686797968139e-01 -1.125395272939830e-01 -1.123104632216639e-01 + -1.120814876598629e-01 -1.118526009932446e-01 -1.116238031362107e-01 -1.113950939743172e-01 -1.111664735714766e-01 + -1.109379420230661e-01 -1.107094992989161e-01 -1.104811452047023e-01 -1.102528800189790e-01 -1.100247040176238e-01 + -1.097966169898620e-01 -1.095686189066022e-01 -1.093407098806465e-01 -1.091128899944971e-01 -1.088851591239916e-01 + -1.086575171512236e-01 -1.084299644451029e-01 -1.082025011238454e-01 -1.079751270251657e-01 -1.077478421434466e-01 + -1.075206465724022e-01 -1.072935404061887e-01 -1.070665234272605e-01 -1.068395956686409e-01 -1.066127575621145e-01 + -1.063860090403522e-01 -1.061593499609373e-01 -1.059327804074918e-01 -1.057063004552603e-01 -1.054799100848440e-01 + -1.052536091459819e-01 -1.050273978363624e-01 -1.048012764247322e-01 -1.045752447992682e-01 -1.043493029044653e-01 + -1.041234507912105e-01 -1.038976885616201e-01 -1.036720161437409e-01 -1.034464334142674e-01 -1.032209407082870e-01 + -1.029955381585720e-01 -1.027702255852857e-01 -1.025450030256683e-01 -1.023198705766582e-01 -1.020948282803886e-01 + -1.018698759615270e-01 -1.016450136357437e-01 -1.014202417243671e-01 -1.011955602054591e-01 -1.009709689162001e-01 + -1.007464679013254e-01 -1.005220572777319e-01 -1.002977370772110e-01 -1.000735070732387e-01 -9.984936745539402e-02 + -9.962531858349888e-02 -9.940136027998529e-02 -9.917749246814733e-02 -9.895371525770333e-02 -9.873002873335845e-02 + -9.850643282337790e-02 -9.828292738770521e-02 -9.805951276903688e-02 -9.783618914357473e-02 -9.761295629040607e-02 + -9.738981424317925e-02 -9.716676311420755e-02 -9.694380293900719e-02 -9.672093359332221e-02 -9.649815506782670e-02 + -9.627546771326484e-02 -9.605287156919239e-02 -9.583036651098850e-02 -9.560795255252680e-02 -9.538562978098189e-02 + -9.516339824129488e-02 -9.494125774199282e-02 -9.471920843970391e-02 -9.449725071216948e-02 -9.427538438593883e-02 + -9.405360936874554e-02 -9.383192580278800e-02 -9.361033376064058e-02 -9.338883317577901e-02 -9.316742389906425e-02 + -9.294610622995669e-02 -9.272488039403920e-02 -9.250374621386263e-02 -9.228270367992475e-02 -9.206175287916113e-02 + -9.184089387273792e-02 -9.162012656935895e-02 -9.139945093572596e-02 -9.117886729658348e-02 -9.095837571294788e-02 + -9.073797605928635e-02 -9.051766837713708e-02 -9.029745274779008e-02 -9.007732920697027e-02 -8.985729759887780e-02 + -8.963735802530043e-02 -8.941751083887589e-02 -8.919775594907166e-02 -8.897809325953572e-02 -8.875852286193828e-02 + -8.853904483959285e-02 -8.831965916578795e-02 -8.810036569419880e-02 -8.788116467295366e-02 -8.766205635082600e-02 + -8.744304058057480e-02 -8.722411733824492e-02 -8.700528670561582e-02 -8.678654875532379e-02 -8.656790339361393e-02 + -8.634935054757228e-02 -8.613089058374623e-02 -8.591252359970507e-02 -8.569424942256174e-02 -8.547606809595372e-02 + -8.525797972327777e-02 -8.503998436304407e-02 -8.482208183975883e-02 -8.460427219735964e-02 -8.438655581333676e-02 + -8.416893266387415e-02 -8.395140264416648e-02 -8.373396580036768e-02 -8.351662221748458e-02 -8.329937190808817e-02 + -8.308221474187347e-02 -8.286515089972675e-02 -8.264818063381729e-02 -8.243130387381740e-02 -8.221452057360500e-02 + -8.199783077068876e-02 -8.178123458056528e-02 -8.156473193866548e-02 -8.134832272179610e-02 -8.113200727104515e-02 + -8.091578573554094e-02 -8.069965795549490e-02 -8.048362394306618e-02 -8.026768379237301e-02 -8.005183759034226e-02 + -7.983608519016389e-02 -7.962042660317335e-02 -7.940486220827629e-02 -7.918939199917317e-02 -7.897401585103307e-02 + -7.875873382193239e-02 -7.854354599947752e-02 -7.832845240531904e-02 -7.811345290511561e-02 -7.789854765910142e-02 + -7.768373695009409e-02 -7.746902070156129e-02 -7.725439886068521e-02 -7.703987147751143e-02 -7.682543865920169e-02 + -7.661110037032860e-02 -7.639685648697914e-02 -7.618270730319152e-02 -7.596865299784139e-02 -7.575469343456721e-02 + -7.554082861289950e-02 -7.532705861915691e-02 -7.511338355056779e-02 -7.489980327273796e-02 -7.468631776375068e-02 + -7.447292742489155e-02 -7.425963225373161e-02 -7.404643208981297e-02 -7.383332706618533e-02 -7.362031725942129e-02 + -7.340740264369265e-02 -7.319458312424655e-02 -7.298185885257603e-02 -7.276923011698885e-02 -7.255669681825400e-02 + -7.234425890125808e-02 -7.213191646645117e-02 -7.191966959969415e-02 -7.170751827394115e-02 -7.149546237742448e-02 + -7.128350216363183e-02 -7.107163782537941e-02 -7.085986923051370e-02 -7.064819639413342e-02 -7.043661941815849e-02 + -7.022513838389523e-02 -7.001375316964638e-02 -6.980246372359999e-02 -6.959127044971054e-02 -6.938017339783993e-02 + -6.916917238807876e-02 -6.895826751099868e-02 -6.874745887832359e-02 -6.853674652264935e-02 -6.832613029387129e-02 + -6.811561029537151e-02 -6.790518687416305e-02 -6.769485994872884e-02 -6.748462944761908e-02 -6.727449549181348e-02 + -6.706445814195625e-02 -6.685451736224034e-02 -6.664467305023641e-02 -6.643492546019260e-02 -6.622527482862205e-02 + -6.601572100856345e-02 -6.580626400049541e-02 -6.559690390732385e-02 -6.538764078471235e-02 -6.517847455920224e-02 + -6.496940519404462e-02 -6.476043303620643e-02 -6.455155816426872e-02 -6.434278041275177e-02 -6.413409988235154e-02 + -6.392551667227454e-02 -6.371703078482928e-02 -6.350864213121965e-02 -6.330035079826633e-02 -6.309215709125325e-02 + -6.288406097171770e-02 -6.267606236590158e-02 -6.246816137578116e-02 -6.226035810132791e-02 -6.205265253482506e-02 + -6.184504450634240e-02 -6.163753424009603e-02 -6.143012204113525e-02 -6.122280779495761e-02 -6.101559145710207e-02 + -6.080847310111580e-02 -6.060145284620669e-02 -6.039453063876327e-02 -6.018770637541451e-02 -5.998098039534337e-02 + -5.977435284136760e-02 -5.956782355675167e-02 -5.936139258218223e-02 -5.915506002510895e-02 -5.894882595975996e-02 + -5.874269025717062e-02 -5.853665294379332e-02 -5.833071438748900e-02 -5.812487459491447e-02 -5.791913345983549e-02 + -5.771349104248068e-02 -5.750794745476003e-02 -5.730250273990040e-02 -5.709715674449271e-02 -5.689190963313420e-02 + -5.668676170442684e-02 -5.648171287301057e-02 -5.627676311138611e-02 -5.607191251359627e-02 -5.586716116856662e-02 + -5.566250902085241e-02 -5.545795595276776e-02 -5.525350230977423e-02 -5.504914828197500e-02 -5.484489368806074e-02 + -5.464073856561743e-02 -5.443668303623681e-02 -5.423272717677420e-02 -5.402887087270093e-02 -5.382511411736842e-02 + -5.362145727556954e-02 -5.341790037997223e-02 -5.321444331788154e-02 -5.301108618236487e-02 -5.280782907094528e-02 + -5.260467200594416e-02 -5.240161485390568e-02 -5.219865776343095e-02 -5.199580105954085e-02 -5.179304465507040e-02 + -5.159038850941820e-02 -5.138783273765680e-02 -5.118537740030552e-02 -5.098302246878324e-02 -5.078076787428482e-02 + -5.057861387937131e-02 -5.037656068404879e-02 -5.017460818262723e-02 -4.997275637519877e-02 -4.977100534878579e-02 + -4.956935521374012e-02 -4.936780587637167e-02 -4.916635729330274e-02 -4.896500983679772e-02 -4.876376358063662e-02 + -4.856261839799727e-02 -4.836157437280066e-02 -4.816063160553166e-02 -4.795979012910388e-02 -4.775904981223175e-02 + -4.755841077230219e-02 -4.735787336181510e-02 -4.715743752596301e-02 -4.695710319390285e-02 -4.675687045398216e-02 + -4.655673941737810e-02 -4.635671009364274e-02 -4.615678236145827e-02 -4.595695644691457e-02 -4.575723258610617e-02 + -4.555761069075770e-02 -4.535809077212207e-02 -4.515867291944397e-02 -4.495935719937229e-02 -4.476014355843901e-02 + -4.456103197632578e-02 -4.436202279051898e-02 -4.416311608901573e-02 -4.396431172960501e-02 -4.376560979706327e-02 + -4.356701040970479e-02 -4.336851362154585e-02 -4.317011930970618e-02 -4.297182755295056e-02 -4.277363871130811e-02 + -4.257555275870079e-02 -4.237756961321195e-02 -4.217968936488893e-02 -4.198191211978222e-02 -4.178423789759614e-02 + -4.158666657665847e-02 -4.138919837391426e-02 -4.119183356383482e-02 -4.099457203865310e-02 -4.079741379048268e-02 + -4.060035892668235e-02 -4.040340754077800e-02 -4.020655958670875e-02 -4.000981499812348e-02 -3.981317410229721e-02 + -3.961663704352115e-02 -3.942020369405195e-02 -3.922387410519079e-02 -3.902764838570288e-02 -3.883152661169272e-02 + -3.863550868276464e-02 -3.843959464464100e-02 -3.824378485096525e-02 -3.804807931112070e-02 -3.785247793879744e-02 + -3.765698082240899e-02 -3.746158806803077e-02 -3.726629970906549e-02 -3.707111562537097e-02 -3.687603600301111e-02 + -3.668106114329449e-02 -3.648619095542227e-02 -3.629142541706046e-02 -3.609676463615045e-02 -3.590220871216067e-02 + -3.570775761915167e-02 -3.551341127587861e-02 -3.531916998478909e-02 -3.512503392646860e-02 -3.493100298239093e-02 + -3.473707719308593e-02 -3.454325666569649e-02 -3.434954148093054e-02 -3.415593156072503e-02 -3.396242692622412e-02 + -3.376902792182854e-02 -3.357573459185429e-02 -3.338254684613227e-02 -3.318946476737597e-02 -3.299648846264201e-02 + -3.280361798076661e-02 -3.261085320981364e-02 -3.241819429994710e-02 -3.222564156785773e-02 -3.203319495411584e-02 + -3.184085442350271e-02 -3.164862007407277e-02 -3.145649201602077e-02 -3.126447024597763e-02 -3.107255466700169e-02 + -3.088074555671056e-02 -3.068904313085425e-02 -3.049744727803826e-02 -3.030595802638682e-02 -3.011457548570120e-02 + -2.992329974875160e-02 -2.973213075050443e-02 -2.954106848293515e-02 -2.935011329195715e-02 -2.915926525661732e-02 + -2.896852427673346e-02 -2.877789042941862e-02 -2.858736382466336e-02 -2.839694452567641e-02 -2.820663243092813e-02 + -2.801642765839682e-02 -2.782633053619610e-02 -2.763634102981755e-02 -2.744645909471058e-02 -2.725668483048721e-02 + -2.706701834793413e-02 -2.687745966148872e-02 -2.668800867127078e-02 -2.649866562411629e-02 -2.630943076513501e-02 + -2.612030399888650e-02 -2.593128533989631e-02 -2.574237489560391e-02 -2.555357276907920e-02 -2.536487891525730e-02 + -2.517629330290238e-02 -2.498781626631630e-02 -2.479944791947400e-02 -2.461118815951395e-02 -2.442303705775731e-02 + -2.423499472682666e-02 -2.404706124098910e-02 -2.385923651050157e-02 -2.367152062237768e-02 -2.348391391197065e-02 + -2.329641637680258e-02 -2.310902796361102e-02 -2.292174876507744e-02 -2.273457889435020e-02 -2.254751838574287e-02 + -2.236056713942959e-02 -2.217372537079298e-02 -2.198699334983061e-02 -2.180037099746794e-02 -2.161385831877313e-02 + -2.142745542221016e-02 -2.124116241611923e-02 -2.105497927356034e-02 -2.086890594375282e-02 -2.068294274565517e-02 + -2.049708982965088e-02 -2.031134709508492e-02 -2.012571460207244e-02 -1.994019246558534e-02 -1.975478077426674e-02 + -1.956947944878238e-02 -1.938428854559868e-02 -1.919920840769478e-02 -1.901423906121075e-02 -1.882938044349050e-02 + -1.864463264867233e-02 -1.845999578941159e-02 -1.827546991282947e-02 -1.809105492490821e-02 -1.790675101318496e-02 + -1.772255847013706e-02 -1.753847723077995e-02 -1.735450728912205e-02 -1.717064875577919e-02 -1.698690174123156e-02 + -1.680326624034783e-02 -1.661974219495428e-02 -1.643632989539235e-02 -1.625302952284425e-02 -1.606984099009794e-02 + -1.588676434582367e-02 -1.570379970237604e-02 -1.552094715767664e-02 -1.533820665109939e-02 -1.515557821470722e-02 + -1.497306218983010e-02 -1.479065863118324e-02 -1.460836746737021e-02 -1.442618879376636e-02 -1.424412272699600e-02 + -1.406216932715821e-02 -1.388032850365394e-02 -1.369860041414062e-02 -1.351698537084881e-02 -1.333548332713773e-02 + -1.315409426742165e-02 -1.297281830737383e-02 -1.279165555870565e-02 -1.261060603011550e-02 -1.242966965324022e-02 + -1.224884670128487e-02 -1.206813738892206e-02 -1.188754163203305e-02 -1.170705946859269e-02 -1.152669101347058e-02 + -1.134643637569507e-02 -1.116629550991553e-02 -1.098626842139487e-02 -1.080635544822676e-02 -1.062655668128806e-02 + -1.044687204494093e-02 -1.026730162280993e-02 -1.008784553433474e-02 -9.908503858526582e-03 -9.729276511698201e-03 + -9.550163618928804e-03 -9.371165505355611e-03 -9.192282154920128e-03 -9.013513542246960e-03 -8.834859775588668e-03 + -8.656320970291077e-03 -8.477897155130903e-03 -8.299588259899083e-03 -8.121394531144674e-03 -7.943316209259341e-03 + -7.765353219198069e-03 -7.587505591333328e-03 -7.409773443860054e-03 -7.232156891183837e-03 -7.054655906230881e-03 + -6.877270474033493e-03 -6.700000921715352e-03 -6.522847372218281e-03 -6.345809748257097e-03 -6.168888131399519e-03 + -5.992082642122597e-03 -5.815393366379400e-03 -5.638820235869921e-03 -5.462363348533388e-03 -5.286023033805962e-03 + -5.109799304673499e-03 -4.933692127821829e-03 -4.757701606393674e-03 -4.581827861470766e-03 -4.406070940931505e-03 + -4.230430770274698e-03 -4.054907567997104e-03 -3.879501600335772e-03 -3.704212807069328e-03 -3.529041210474627e-03 + -3.353986930090703e-03 -3.179050081041732e-03 -3.004230655593028e-03 -2.829528626659512e-03 -2.654944304289923e-03 + -2.480477843039907e-03 -2.306129168890747e-03 -2.131898354626704e-03 -1.957785522367332e-03 -1.783790769612464e-03 + -1.609914041309663e-03 -1.436155409326836e-03 -1.262515208025358e-03 -1.088993476198761e-03 -9.155901719868249e-04 + -7.423054008843995e-04 -5.691392854771952e-04 -3.960918865957833e-04 -2.231631331613931e-04 -5.035321608514060e-05 + 1.223375771945329e-04 2.949092895407656e-04 4.673619084872533e-04 6.396953140537370e-04 8.119093865188150e-04 + 9.840041155727759e-04 1.155979539871523e-03 1.327835367602612e-03 1.499571413663267e-03 1.671187748049661e-03 + 1.842684305331169e-03 2.014060960896812e-03 2.185317608856639e-03 2.356454289147141e-03 2.527470954200780e-03 + 2.698367270832486e-03 2.869143169831049e-03 3.039798698561594e-03 3.210333755176400e-03 3.380748214685887e-03 + 3.551042001872539e-03 3.721215182132198e-03 3.891267592694254e-03 4.061198929412137e-03 4.231009214636464e-03 + 4.400698444839332e-03 4.570266499650065e-03 4.739713256426893e-03 4.909038688279234e-03 5.078242841339914e-03 + 5.247325443294046e-03 5.416286280121805e-03 5.585125417934797e-03 5.753842797319914e-03 5.922438289361948e-03 + 6.090911784292105e-03 6.259263304936011e-03 6.427492823105761e-03 6.595600012759487e-03 6.763584774419725e-03 + 6.931447157908777e-03 7.099187064683324e-03 7.266804368739545e-03 7.434298984071849e-03 7.601670964899477e-03 + 7.768920175905106e-03 7.936046303989365e-03 8.103049345026314e-03 8.269929303195386e-03 8.436686062480435e-03 + 8.603319496825714e-03 8.769829559891583e-03 8.936216298209541e-03 9.102479469308070e-03 9.268618835503980e-03 + 9.434634442417017e-03 9.600526244002849e-03 9.766294116521254e-03 9.931937936947469e-03 1.009745771049027e-02 + 1.026285342997890e-02 1.042812477681206e-02 1.059327162144324e-02 1.075829401681754e-02 1.092319186819127e-02 + 1.108796504594824e-02 1.125261345370748e-02 1.141713713772357e-02 1.158153598704318e-02 1.174580967555363e-02 + 1.190995817803677e-02 1.207398151021485e-02 1.223787955540131e-02 1.240165218070774e-02 1.256529932365555e-02 + 1.272882103806231e-02 1.289221710280211e-02 1.305548725320952e-02 1.321863152957668e-02 1.338164989105289e-02 + 1.354454220587777e-02 1.370730835288826e-02 1.386994832163190e-02 1.403246211588375e-02 1.419484943187744e-02 + 1.435711010999991e-02 1.451924419921884e-02 1.468125161270911e-02 1.484313222013652e-02 1.500488591571896e-02 + 1.516651273046586e-02 1.532801257754355e-02 1.548938513124086e-02 1.565063033579857e-02 1.581174821092933e-02 + 1.597273864701365e-02 1.613360150922888e-02 1.629433671764488e-02 1.645494432276120e-02 1.661542413184349e-02 + 1.677577586209575e-02 1.693599953321696e-02 1.709609511287956e-02 1.725606247097126e-02 1.741590148147653e-02 + 1.757561211738663e-02 1.773519439308624e-02 1.789464801957598e-02 1.805397280960725e-02 1.821316881163111e-02 + 1.837223594327105e-02 1.853117406905512e-02 1.868998307594014e-02 1.884866298214414e-02 1.900721372338833e-02 + 1.916563497459167e-02 1.932392665507269e-02 1.948208878919649e-02 1.964012126059438e-02 1.979802393750615e-02 + 1.995579673545799e-02 2.011343968946751e-02 2.027095263124555e-02 2.042833526879373e-02 2.058558759933038e-02 + 2.074270959919291e-02 2.089970114286997e-02 2.105656209513535e-02 2.121329241031374e-02 2.136989211400533e-02 + 2.152636093833320e-02 2.168269866776463e-02 2.183890534086288e-02 2.199498088647827e-02 2.215092516911965e-02 + 2.230673806408907e-02 2.246241957468516e-02 2.261796965793072e-02 2.277338799181243e-02 2.292867446749406e-02 + 2.308382911412376e-02 2.323885181888266e-02 2.339374244699652e-02 2.354850090287507e-02 2.370312721409915e-02 + 2.385762123470989e-02 2.401198266010886e-02 2.416621147301771e-02 2.432030765671687e-02 2.447427107682733e-02 + 2.462810160176357e-02 2.478179917471193e-02 2.493536381795363e-02 2.508879528739230e-02 2.524209334527653e-02 + 2.539525801488748e-02 2.554828923354157e-02 2.570118686847216e-02 2.585395079171064e-02 2.600658098606827e-02 + 2.615907742012537e-02 2.631143978762620e-02 2.646366795301069e-02 2.661576194257877e-02 2.676772164859378e-02 + 2.691954693391293e-02 2.707123769272043e-02 2.722279394328245e-02 2.737421556407061e-02 2.752550224474631e-02 + 2.767665393933695e-02 2.782767063812680e-02 2.797855221700411e-02 2.812929853552858e-02 2.827990951702357e-02 + 2.843038519104858e-02 2.858072533585580e-02 2.873092969062032e-02 2.888099827101270e-02 2.903093101911967e-02 + 2.918072779556083e-02 2.933038847140823e-02 2.947991301658642e-02 2.962930141213865e-02 2.977855336278226e-02 + 2.992766870509821e-02 3.007664746318324e-02 3.022548953626840e-02 3.037419478553557e-02 3.052276309616091e-02 + 3.067119447416764e-02 3.081948881896879e-02 3.096764581778017e-02 3.111566540198458e-02 3.126354756710210e-02 + 3.141129218718559e-02 3.155889912410548e-02 3.170636829125183e-02 3.185369970791438e-02 3.200089317518744e-02 + 3.214794841776677e-02 3.229486543634106e-02 3.244164418203412e-02 3.258828451581320e-02 3.273478630264194e-02 + 3.288114949586567e-02 3.302737408530167e-02 3.317345979235018e-02 3.331940642975919e-02 3.346521401820098e-02 + 3.361088246101045e-02 3.375641161607764e-02 3.390180136352038e-02 3.404705169548587e-02 3.419216253016829e-02 + 3.433713355905806e-02 3.448196468652563e-02 3.462665590981111e-02 3.477120710939272e-02 3.491561814527116e-02 + 3.505988891618091e-02 3.520401943397326e-02 3.534800952666442e-02 3.549185891051008e-02 3.563556756111654e-02 + 3.577913543618631e-02 3.592256240340591e-02 3.606584831947614e-02 3.620899312153205e-02 3.635199681091714e-02 + 3.649485912620978e-02 3.663757985375464e-02 3.678015900636063e-02 3.692259649832257e-02 3.706489218607827e-02 + 3.720704593508108e-02 3.734905772908955e-02 3.749092751022131e-02 3.763265496742431e-02 3.777423997951684e-02 + 3.791568254953915e-02 3.805698256030369e-02 3.819813986869797e-02 3.833915436267914e-02 3.848002605018682e-02 + 3.862075477984065e-02 3.876134025391093e-02 3.890178243600422e-02 3.904208129158644e-02 3.918223668100989e-02 + 3.932224846044379e-02 3.946211655605483e-02 3.960184097189857e-02 3.974142146457355e-02 3.988085779819951e-02 + 4.002014997942075e-02 4.015929792921669e-02 4.029830150192959e-02 4.043716055991190e-02 4.057587507004282e-02 + 4.071444498657769e-02 4.085287001066611e-02 4.099114999824743e-02 4.112928495212512e-02 4.126727475679569e-02 + 4.140511926665246e-02 4.154281836167219e-02 4.168037204269245e-02 4.181778018003033e-02 4.195504246778908e-02 + 4.209215884913708e-02 4.222912929605258e-02 4.236595366776428e-02 4.250263182248033e-02 4.263916367566677e-02 + 4.277554922465009e-02 4.291178824859961e-02 4.304788049654025e-02 4.318382596138427e-02 4.331962457087349e-02 + 4.345527617981602e-02 4.359078064797250e-02 4.372613792550029e-02 4.386134797486977e-02 4.399641051415262e-02 + 4.413132537776133e-02 4.426609256403441e-02 4.440071196061698e-02 4.453518342174363e-02 4.466950682320869e-02 + 4.480368214879805e-02 4.493770928728694e-02 4.507158793990715e-02 4.520531802497359e-02 4.533889951667943e-02 + 4.547233228082954e-02 4.560561616979211e-02 4.573875108353129e-02 4.587173702317195e-02 4.600457379177124e-02 + 4.613726112101928e-02 4.626979898466685e-02 4.640218731770854e-02 4.653442597807410e-02 4.666651481740990e-02 + 4.679845378497393e-02 4.693024287357150e-02 4.706188178521280e-02 4.719337030512012e-02 4.732470843170088e-02 + 4.745589609974604e-02 4.758693317708736e-02 4.771781949014568e-02 4.784855500276729e-02 4.797913963655120e-02 + 4.810957311625792e-02 4.823985532440599e-02 4.836998622519359e-02 4.849996572088229e-02 4.862979364778694e-02 + 4.875946986129576e-02 4.888899438454671e-02 4.901836703838853e-02 4.914758752328308e-02 4.927665585368439e-02 + 4.940557196434897e-02 4.953433564666962e-02 4.966294680168561e-02 4.979140536998770e-02 4.991971127467005e-02 + 5.004786430086550e-02 5.017586426593462e-02 5.030371111424699e-02 5.043140473941395e-02 5.055894500969876e-02 + 5.068633180855401e-02 5.081356509387767e-02 5.094064477169723e-02 5.106757053524139e-02 5.119434226596677e-02 + 5.132095996453229e-02 5.144742351517578e-02 5.157373274644007e-02 5.169988750799723e-02 5.182588783131492e-02 + 5.195173357105356e-02 5.207742440366903e-02 5.220296027189056e-02 5.232834113948501e-02 5.245356688434039e-02 + 5.257863735375337e-02 5.270355244318054e-02 5.282831211610928e-02 5.295291615700908e-02 5.307736435753736e-02 + 5.320165668494783e-02 5.332579302368824e-02 5.344977322479061e-02 5.357359720391287e-02 5.369726488407797e-02 + 5.382077614890905e-02 5.394413077320572e-02 5.406732861255047e-02 5.419036960275756e-02 5.431325364836510e-02 + 5.443598061485443e-02 5.455855035736775e-02 5.468096283548277e-02 5.480321791614200e-02 5.492531533836561e-02 + 5.504725504027442e-02 5.516903696522249e-02 5.529066094250196e-02 5.541212681912044e-02 5.553343451105355e-02 + 5.565458402054679e-02 5.577557512714444e-02 5.589640757833542e-02 5.601708136214176e-02 5.613759637012277e-02 + 5.625795242697428e-02 5.637814944133901e-02 5.649818735356010e-02 5.661806606948155e-02 5.673778531909066e-02 + 5.685734496106067e-02 5.697674499811992e-02 5.709598525886500e-02 5.721506557962035e-02 5.733398588420521e-02 + 5.745274613557275e-02 5.757134619305772e-02 5.768978576165893e-02 5.780806477237931e-02 5.792618319490116e-02 + 5.804414085654030e-02 5.816193759992416e-02 5.827957333255503e-02 5.839704805764100e-02 5.851436157058919e-02 + 5.863151359019340e-02 5.874850407742044e-02 5.886533297606138e-02 5.898200016057164e-02 5.909850545490182e-02 + 5.921484876799358e-02 5.933103006596772e-02 5.944704910278828e-02 5.956290569090495e-02 5.967859979076014e-02 + 5.979413129454921e-02 5.990950006107775e-02 6.002470595625681e-02 6.013974894676900e-02 6.025462892974234e-02 + 6.036934559538653e-02 6.048389882575328e-02 6.059828859366181e-02 6.071251478747773e-02 6.082657726499330e-02 + 6.094047589468096e-02 6.105421060960093e-02 6.116778124880510e-02 6.128118760026364e-02 6.139442960439424e-02 + 6.150750715787331e-02 6.162042008748835e-02 6.173316829355946e-02 6.184575170612789e-02 6.195817023946892e-02 + 6.207042366308074e-02 6.218251178412997e-02 6.229443455021107e-02 6.240619187345142e-02 6.251778362644587e-02 + 6.262920965673664e-02 6.274046989094115e-02 6.285156423838029e-02 6.296249246083868e-02 6.307325441937692e-02 + 6.318385004239983e-02 6.329427920287174e-02 6.340454177652059e-02 6.351463766120390e-02 6.362456678994362e-02 + 6.373432899407734e-02 6.384392402667542e-02 6.395335181995393e-02 6.406261231361865e-02 6.417170537725830e-02 + 6.428063082883417e-02 6.438938856382127e-02 6.449797859582693e-02 6.460640069400744e-02 6.471465460887021e-02 + 6.482274028565467e-02 6.493065766530991e-02 6.503840663024645e-02 6.514598697176463e-02 6.525339863731919e-02 + 6.536064160053869e-02 6.546771556229376e-02 6.557462036169828e-02 6.568135597564134e-02 6.578792228094754e-02 + 6.589431913461476e-02 6.600054641494822e-02 6.610660407274732e-02 6.621249195669229e-02 6.631820979208959e-02 + 6.642375751800587e-02 6.652913508526218e-02 6.663434233390064e-02 6.673937912206085e-02 6.684424535139094e-02 + 6.694894096694531e-02 6.705346576057515e-02 6.715781952052316e-02 6.726200223606826e-02 6.736601378290344e-02 + 6.746985396850236e-02 6.757352270136854e-02 6.767701992273348e-02 6.778034554033589e-02 6.788349929667206e-02 + 6.798648102682574e-02 6.808929069330329e-02 6.819192820375723e-02 6.829439341428477e-02 6.839668615716293e-02 + 6.849880637697058e-02 6.860075397106770e-02 6.870252870886938e-02 6.880413046413429e-02 6.890555915577500e-02 + 6.900681468090485e-02 6.910789689150486e-02 6.920880565820778e-02 6.930954094436353e-02 6.941010257623929e-02 + 6.951049032497619e-02 6.961070411466443e-02 6.971074386483528e-02 6.981060945693285e-02 6.991030074013053e-02 + 7.000981760721879e-02 7.010915998226322e-02 7.020832768385020e-02 7.030732053981503e-02 7.040613843777971e-02 + 7.050478130476578e-02 7.060324902125202e-02 7.070154139632766e-02 7.079965841104072e-02 7.089759998592053e-02 + 7.099536579014293e-02 7.109295574922263e-02 7.119036986301433e-02 7.128760792254588e-02 7.138466979343019e-02 + 7.148155540894172e-02 7.157826467726322e-02 7.167479742578257e-02 7.177115345207208e-02 7.186733268619028e-02 + 7.196333504975572e-02 7.205916041090092e-02 7.215480858692887e-02 7.225027948023270e-02 7.234557308374470e-02 + 7.244068916926014e-02 7.253562753252076e-02 7.263038813284139e-02 7.272497087062332e-02 7.281937559790036e-02 + 7.291360215228662e-02 7.300765049821943e-02 7.310152057265214e-02 7.319521208383468e-02 7.328872490709243e-02 + 7.338205901635925e-02 7.347521425841259e-02 7.356819049091311e-02 7.366098761637971e-02 7.375360558736099e-02 + 7.384604424623381e-02 7.393830334347133e-02 7.403038279875497e-02 7.412228254437477e-02 7.421400245985316e-02 + 7.430554241104276e-02 7.439690229021774e-02 7.448808202204141e-02 7.457908141717452e-02 7.466990029970315e-02 + 7.476053861745356e-02 7.485099625058683e-02 7.494127304678436e-02 7.503136889191833e-02 7.512128371784581e-02 + 7.521101743547498e-02 7.530056981436373e-02 7.538994071268737e-02 7.547913007544443e-02 7.556813780083994e-02 + 7.565696374971752e-02 7.574560777501017e-02 7.583406981695588e-02 7.592234975180168e-02 7.601044736291800e-02 + 7.609836256769248e-02 7.618609528331391e-02 7.627364535037680e-02 7.636101265407126e-02 7.644819711937149e-02 + 7.653519868718589e-02 7.662201715447789e-02 7.670865230880411e-02 7.679510411035856e-02 7.688137246970578e-02 + 7.696745724207896e-02 7.705335828035317e-02 7.713907552614908e-02 7.722460893765626e-02 7.730995825366380e-02 + 7.739512330293280e-02 7.748010405365591e-02 7.756490042829636e-02 7.764951228919105e-02 7.773393946198498e-02 + 7.781818189157449e-02 7.790223948237281e-02 7.798611201876808e-02 7.806979939436651e-02 7.815330154059554e-02 + 7.823661834982702e-02 7.831974966729814e-02 7.840269536418043e-02 7.848545542109749e-02 7.856802968700778e-02 + 7.865041794492959e-02 7.873262009221961e-02 7.881463606524114e-02 7.889646578364969e-02 7.897810905385311e-02 + 7.905956578813299e-02 7.914083598393755e-02 7.922191938944982e-02 7.930281582198326e-02 7.938352526916173e-02 + 7.946404763288464e-02 7.954438277705837e-02 7.962453057021987e-02 7.970449093695484e-02 7.978426377009373e-02 + 7.986384886265184e-02 7.994324611178145e-02 8.002245546069972e-02 8.010147680163558e-02 8.018030998339011e-02 + 8.025895486859348e-02 8.033741142939121e-02 8.041567953647351e-02 8.049375898816008e-02 8.057164970191152e-02 + 8.064935159117341e-02 8.072686453538828e-02 8.080418841559016e-02 8.088132313650849e-02 8.095826861741187e-02 + 8.103502469212946e-02 8.111159121525567e-02 8.118796811657426e-02 8.126415526945288e-02 8.134015254787534e-02 + 8.141595988122388e-02 8.149157718184835e-02 8.156700432424771e-02 8.164224113093393e-02 8.171728750211138e-02 + 8.179214337283539e-02 8.186680860558979e-02 8.194128308109257e-02 8.201556671181809e-02 8.208965942384167e-02 + 8.216356107347705e-02 8.223727146913333e-02 8.231079055026533e-02 8.238411825286719e-02 8.245725445426123e-02 + 8.253019901019013e-02 8.260295182089074e-02 8.267551284923887e-02 8.274788192985057e-02 8.282005889192648e-02 + 8.289204367192234e-02 8.296383619751495e-02 8.303543635380874e-02 8.310684396376640e-02 8.317805898151856e-02 + 8.324908138250064e-02 8.331991092178788e-02 8.339054746670159e-02 8.346099098907200e-02 8.353124136246602e-02 + 8.360129848004999e-02 8.367116227251760e-02 8.374083263302687e-02 8.381030943134427e-02 8.387959252741883e-02 + 8.394868181167527e-02 8.401757720093640e-02 8.408627862550171e-02 8.415478594369409e-02 8.422309904154775e-02 + 8.429121790707177e-02 8.435914237533512e-02 8.442687225429805e-02 8.449440750560887e-02 8.456174803803686e-02 + 8.462889372267089e-02 8.469584447602406e-02 8.476260023136410e-02 8.482916090148240e-02 8.489552630009754e-02 + 8.496169630228255e-02 8.502767086164854e-02 8.509344988672647e-02 8.515903326018803e-02 8.522442086136313e-02 + 8.528961263471936e-02 8.535460848680074e-02 8.541940824041729e-02 8.548401181612168e-02 8.554841915131453e-02 + 8.561263012321893e-02 8.567664461211427e-02 8.574046253447680e-02 8.580408386832587e-02 8.586750845589863e-02 + 8.593073610333024e-02 8.599376680387132e-02 8.605660047760594e-02 8.611923696874126e-02 8.618167618396408e-02 + 8.624391807608472e-02 8.630596259724549e-02 8.636780954833972e-02 8.642945878839840e-02 8.649091029427977e-02 + 8.655216396695875e-02 8.661321970043215e-02 8.667407742210617e-02 8.673473702989365e-02 8.679519841504303e-02 + 8.685546148336530e-02 8.691552612855238e-02 8.697539224666265e-02 8.703505975750943e-02 8.709452857692032e-02 + 8.715379861893667e-02 8.721286980508075e-02 8.727174201224434e-02 8.733041510377958e-02 8.738888903629666e-02 + 8.744716372671989e-02 8.750523904187274e-02 8.756311491392924e-02 8.762079127795709e-02 8.767826803995526e-02 + 8.773554506310657e-02 8.779262223690780e-02 8.784949951260017e-02 8.790617682173207e-02 8.796265406226209e-02 + 8.801893109931651e-02 8.807500788687952e-02 8.813088437660771e-02 8.818656039674132e-02 8.824203585227545e-02 + 8.829731070095961e-02 8.835238486000704e-02 8.840725822106667e-02 8.846193068214857e-02 8.851640221803356e-02 + 8.857067273700293e-02 8.862474207580676e-02 8.867861014722141e-02 8.873227689758616e-02 8.878574227696898e-02 + 8.883900618220902e-02 8.889206851560667e-02 8.894492921167085e-02 8.899758815302622e-02 8.905004524008538e-02 + 8.910230044719054e-02 8.915435367300073e-02 8.920620479173334e-02 8.925785373448247e-02 8.930930045917142e-02 + 8.936054490961548e-02 8.941158695191696e-02 8.946242647641844e-02 8.951306341364354e-02 8.956349771969928e-02 + 8.961372931388180e-02 8.966375808278661e-02 8.971358396554302e-02 8.976320688963368e-02 8.981262675341668e-02 + 8.986184348935064e-02 8.991085703129179e-02 8.995966729258320e-02 9.000827417122792e-02 9.005667759770250e-02 + 9.010487756379584e-02 9.015287394264000e-02 9.020066659275561e-02 9.024825550203337e-02 9.029564061179933e-02 + 9.034282181894199e-02 9.038979902630290e-02 9.043657218570805e-02 9.048314126656666e-02 9.052950615463343e-02 + 9.057566675480395e-02 9.062162300961238e-02 9.066737484935303e-02 9.071292219781772e-02 9.075826498061153e-02 + 9.080340315127385e-02 9.084833664156222e-02 9.089306533771581e-02 9.093758915627431e-02 9.098190804149961e-02 + 9.102602195783284e-02 9.106993084471440e-02 9.111363462196023e-02 9.115713320054021e-02 9.120042650346059e-02 + 9.124351446434358e-02 9.128639702175202e-02 9.132907412994692e-02 9.137154573427010e-02 9.141381170435277e-02 + 9.145587198962597e-02 9.149772660800266e-02 9.153937542844172e-02 9.158081834977004e-02 9.162205535599281e-02 + 9.166308637778346e-02 9.170391133536025e-02 9.174453017072061e-02 9.178494285856946e-02 9.182514933661440e-02 + 9.186514945794547e-02 9.190494319482566e-02 9.194453054665523e-02 9.198391140758180e-02 9.202308569543158e-02 + 9.206205336702038e-02 9.210081441034919e-02 9.213936875086109e-02 9.217771627651770e-02 9.221585694962209e-02 + 9.225379072840771e-02 9.229151754885842e-02 9.232903734819613e-02 9.236635007909103e-02 9.240345570404732e-02 + 9.244035413434255e-02 9.247704529963750e-02 9.251352918345666e-02 9.254980573968512e-02 9.258587489795035e-02 + 9.262173657649034e-02 9.265739073985793e-02 9.269283735974691e-02 9.272807636276849e-02 9.276310769047050e-02 + 9.279793130272118e-02 9.283254716719631e-02 9.286695521394739e-02 9.290115536246511e-02 9.293514761281572e-02 + 9.296893192325742e-02 9.300250819824006e-02 9.303587638369953e-02 9.306903645092859e-02 9.310198837852499e-02 + 9.313473209662422e-02 9.316726755984403e-02 9.319959477466139e-02 9.323171364631608e-02 9.326362408592948e-02 + 9.329532610133226e-02 9.332681964339190e-02 9.335810464438972e-02 9.338918108249107e-02 9.342004893308628e-02 + 9.345070815580041e-02 9.348115868437977e-02 9.351140046962789e-02 9.354143348306601e-02 9.357125770365762e-02 + 9.360087308621738e-02 9.363027956518245e-02 9.365947710363894e-02 9.368846567300493e-02 9.371724524372237e-02 + 9.374581578300241e-02 9.377417725111503e-02 9.380232960142115e-02 9.383027280206080e-02 9.385800682788301e-02 + 9.388553164914089e-02 9.391284719773688e-02 9.393995342276806e-02 9.396685035781838e-02 9.399353796706621e-02 + 9.402001617537038e-02 9.404628495786660e-02 9.407234429781461e-02 9.409819417117830e-02 9.412383453169183e-02 + 9.414926534580341e-02 9.417448659641373e-02 9.419949825736050e-02 9.422430029380560e-02 9.424889267135104e-02 + 9.427327539998738e-02 9.429744844865905e-02 9.432141171534560e-02 9.434516522540957e-02 9.436870900006604e-02 + 9.439204294634228e-02 9.441516705436934e-02 9.443808133745002e-02 9.446078573953387e-02 9.448328023801857e-02 + 9.450556483411636e-02 9.452763950923013e-02 9.454950421611270e-02 9.457115890701832e-02 9.459260360830167e-02 + 9.461383832574666e-02 9.463486302352626e-02 9.465567765409444e-02 9.467628220109425e-02 9.469667668274938e-02 + 9.471686106967921e-02 9.473683533004949e-02 9.475659945563136e-02 9.477615343325803e-02 9.479549725292793e-02 + 9.481463091432241e-02 9.483355439545672e-02 9.485226766778346e-02 9.487077071788189e-02 9.488906353992572e-02 + 9.490714613644993e-02 9.492501852119042e-02 9.494268066964073e-02 9.496013253895599e-02 9.497737414244060e-02 + 9.499440547543551e-02 9.501122651272445e-02 9.502783728094538e-02 9.504423778187990e-02 9.506042797340242e-02 + 9.507640785191551e-02 9.509217742006319e-02 9.510773667189122e-02 9.512308563868060e-02 9.513822432123879e-02 + 9.515315264231193e-02 9.516787063845662e-02 9.518237836728226e-02 9.519667577724227e-02 9.521076284349063e-02 + 9.522463958294539e-02 9.523830604498588e-02 9.525176221483619e-02 9.526500804718509e-02 9.527804359769618e-02 + 9.529086886623650e-02 9.530348379689602e-02 9.531588845120076e-02 9.532808286166987e-02 9.534006699012688e-02 + 9.535184085361241e-02 9.536340447105748e-02 9.537475783364874e-02 9.538590095359538e-02 9.539683385237334e-02 + 9.540755654711666e-02 9.541806903829181e-02 9.542837132640679e-02 9.543846343230179e-02 9.544834536597921e-02 + 9.545801714100983e-02 9.546747880593646e-02 9.547673036184304e-02 9.548577178084619e-02 9.549460309483834e-02 + 9.550322434581640e-02 9.551163556335956e-02 9.551983673903520e-02 9.552782788036314e-02 9.553560902903191e-02 + 9.554318022933674e-02 9.555054148771730e-02 9.555769276632298e-02 9.556463412975340e-02 9.557136563747151e-02 + 9.557788725689133e-02 9.558419903459103e-02 9.559030102901959e-02 9.559619321427665e-02 9.560187562136102e-02 + 9.560734830883322e-02 9.561261127917654e-02 9.561766456108449e-02 9.562250820572099e-02 9.562714223416331e-02 + 9.563156666435306e-02 9.563578152405575e-02 9.563978686682097e-02 9.564358272631937e-02 9.564716910782914e-02 + 9.565054604965099e-02 9.565371359980702e-02 9.565667179877529e-02 9.565942066526258e-02 9.566196023293236e-02 + 9.566429057683135e-02 9.566641172752892e-02 9.566832368940979e-02 9.567002647518966e-02 9.567152016429874e-02 + 9.567280484915060e-02 9.567388053004788e-02 9.567474721294261e-02 9.567540493730267e-02 9.567585379392737e-02 + 9.567609383300600e-02 9.567612506298810e-02 9.567594754568214e-02 9.567556133790830e-02 9.567496647244744e-02 + 9.567416299512438e-02 9.567315095370396e-02 9.567193039196389e-02 9.567050136232016e-02 9.566886392120964e-02 + 9.566701812558283e-02 9.566496403827787e-02 9.566270170884209e-02 9.566023115264767e-02 9.565755243736668e-02 + 9.565466564791879e-02 9.565157080775241e-02 9.564826797386157e-02 9.564475723264595e-02 9.564103864027859e-02 + 9.563711223757489e-02 9.563297806735498e-02 9.562863621895812e-02 9.562408675116861e-02 9.561932968250994e-02 + 9.561436511583814e-02 9.560919313325968e-02 9.560381374743886e-02 9.559822704785555e-02 9.559243313048145e-02 + 9.558643203289170e-02 9.558022378864620e-02 9.557380846466877e-02 9.556718619530349e-02 9.556035703327785e-02 + 9.555332100122134e-02 9.554607821247386e-02 9.553862873475936e-02 9.553097259908433e-02 9.552310989218279e-02 + 9.551504070130773e-02 9.550676510186747e-02 9.549828317393894e-02 9.548959500356741e-02 9.548070067318166e-02 + 9.547160021295119e-02 9.546229369018946e-02 9.545278124506257e-02 9.544306292579091e-02 9.543313878273989e-02 + 9.542300894892854e-02 9.541267351639289e-02 9.540213254817664e-02 9.539138610562420e-02 9.538043425774057e-02 + 9.536927709152246e-02 9.535791472882026e-02 9.534634726779553e-02 9.533457478138217e-02 9.532259734256758e-02 + 9.531041503990305e-02 9.529802797105680e-02 9.528543620462085e-02 9.527263983869082e-02 9.525963900525855e-02 + 9.524643375927100e-02 9.523302417643500e-02 9.521941040061487e-02 9.520559252291068e-02 9.519157060486365e-02 + 9.517734471153570e-02 9.516291499670615e-02 9.514828160467456e-02 9.513344455080376e-02 9.511840393248631e-02 + 9.510315989360162e-02 9.508771251519674e-02 9.507206189457258e-02 9.505620814925633e-02 9.504015138530268e-02 + 9.502389169582724e-02 9.500742917228551e-02 9.499076394524120e-02 9.497389612890822e-02 9.495682580659018e-02 + 9.493955308203066e-02 9.492207807526097e-02 9.490440091330225e-02 9.488652168366014e-02 9.486844048723730e-02 + 9.485015747906970e-02 9.483167277063544e-02 9.481298644119306e-02 9.479409856622809e-02 9.477500930738031e-02 + 9.475571884085587e-02 9.473622721810367e-02 9.471653454723004e-02 9.469664098786204e-02 9.467654664635866e-02 + 9.465625162221861e-02 9.463575602621152e-02 9.461505999415500e-02 9.459416367044585e-02 9.457306719633034e-02 + 9.455177068421998e-02 9.453027423759350e-02 9.450857796468222e-02 9.448668199276268e-02 9.446458647203468e-02 + 9.444229157255099e-02 9.441979739649474e-02 9.439710403006842e-02 9.437421161454676e-02 9.435112031829759e-02 + 9.432783029179438e-02 9.430434160094567e-02 9.428065438538669e-02 9.425676883924589e-02 9.423268508508292e-02 + 9.420840322981890e-02 9.418392339716981e-02 9.415924578030670e-02 9.413437051700123e-02 9.410929767030043e-02 + 9.408402741009517e-02 9.405855992335012e-02 9.403289535840260e-02 9.400703383941893e-02 9.398097549341558e-02 + 9.395472046838550e-02 9.392826889502673e-02 9.390162091553057e-02 9.387477672023849e-02 9.384773645864139e-02 + 9.382050025947151e-02 9.379306828457251e-02 9.376544068778003e-02 9.373761760606118e-02 9.370959916011609e-02 + 9.368138552427184e-02 9.365297690930323e-02 9.362437342817573e-02 9.359557520850639e-02 9.356658243379877e-02 + 9.353739529945312e-02 9.350801394425273e-02 9.347843843855524e-02 9.344866901272440e-02 9.341870589097585e-02 + 9.338854915644307e-02 9.335819897637819e-02 9.332765555734250e-02 9.329691906420928e-02 9.326598960092489e-02 + 9.323486729288316e-02 9.320355242698486e-02 9.317204517635257e-02 9.314034562740874e-02 9.310845398153604e-02 + 9.307637042858882e-02 9.304409511565054e-02 9.301162817412864e-02 9.297896979469056e-02 9.294612022999450e-02 + 9.291307963943660e-02 9.287984815938743e-02 9.284642594887814e-02 9.281281319942865e-02 9.277901009754375e-02 + 9.274501679883909e-02 9.271083349621308e-02 9.267646039527271e-02 9.264189767811302e-02 9.260714551564306e-02 + 9.257220408228978e-02 9.253707357624473e-02 9.250175417101536e-02 9.246624602802385e-02 9.243054935165987e-02 + 9.239466434718238e-02 9.235859120974489e-02 9.232233012999355e-02 9.228588129454922e-02 9.224924488066757e-02 + 9.221242103323031e-02 9.217540995047416e-02 9.213821191347883e-02 9.210082709355732e-02 9.206325564930115e-02 + 9.202549780755387e-02 9.198755374602623e-02 9.194942363528436e-02 9.191110769995278e-02 9.187260614753277e-02 + 9.183391917841241e-02 9.179504701848260e-02 9.175598985687712e-02 9.171674785963810e-02 9.167732123351167e-02 + 9.163771019528422e-02 9.159791495855178e-02 9.155793572040530e-02 9.151777270193290e-02 9.147742614628342e-02 + 9.143689622063791e-02 9.139618310892414e-02 9.135528705455570e-02 9.131420824439858e-02 9.127294688450004e-02 + 9.123150325806001e-02 9.118987755991119e-02 9.114806996063474e-02 9.110608069642255e-02 9.106390998608170e-02 + 9.102155802996120e-02 9.097902503011562e-02 9.093631123402490e-02 9.089341690732793e-02 9.085034224655422e-02 + 9.080708743846595e-02 9.076365269164367e-02 9.072003828369785e-02 9.067624443485320e-02 9.063227129485288e-02 + 9.058811915193726e-02 9.054378827004000e-02 9.049927881221763e-02 9.045459103770109e-02 9.040972520178260e-02 + 9.036468147234690e-02 9.031946007844127e-02 9.027406127956829e-02 9.022848531585773e-02 9.018273243214560e-02 + 9.013680287341128e-02 9.009069686920407e-02 9.004441462623869e-02 8.999795635152021e-02 8.995132231203949e-02 + 8.990451276610797e-02 8.985752795281814e-02 8.981036812557305e-02 8.976303351703613e-02 8.971552434037033e-02 + 8.966784087291869e-02 8.961998334831080e-02 8.957195192338249e-02 8.952374693198487e-02 8.947536869631613e-02 + 8.942681737354224e-02 8.937809319632291e-02 8.932919644498671e-02 8.928012738635183e-02 8.923088623240803e-02 + 8.918147319450437e-02 8.913188858291199e-02 8.908213269254797e-02 8.903220577223506e-02 8.898210800726358e-02 + 8.893183965769864e-02 8.888140104180198e-02 8.883079233855783e-02 8.878001380541380e-02 8.872906581842580e-02 + 8.867794859494142e-02 8.862666233412557e-02 8.857520730323154e-02 8.852358381153494e-02 8.847179212845252e-02 + 8.841983243253916e-02 8.836770502123131e-02 8.831541022882371e-02 8.826294830990469e-02 8.821031949641793e-02 + 8.815752403748606e-02 8.810456224863354e-02 8.805143437639511e-02 8.799814063336710e-02 8.794468134879541e-02 + 8.789105684257616e-02 8.783726738270531e-02 8.778331316928159e-02 8.772919447874153e-02 8.767491167446911e-02 + 8.762046495069514e-02 8.756585454037039e-02 8.751108081839833e-02 8.745614408581825e-02 8.740104459021790e-02 + 8.734578256007368e-02 8.729035830815834e-02 8.723477214343743e-02 8.717902426868683e-02 8.712311501918556e-02 + 8.706704476846663e-02 8.701081371877695e-02 8.695442211628683e-02 8.689787027644420e-02 8.684115853767592e-02 + 8.678428714435096e-02 8.672725629439892e-02 8.667006642064547e-02 8.661271785522098e-02 8.655521075244504e-02 + 8.649754543067346e-02 8.643972223965939e-02 8.638174147222141e-02 8.632360334916610e-02 8.626530814542391e-02 + 8.620685627786050e-02 8.614824804295058e-02 8.608948367410735e-02 8.603056343813603e-02 8.597148768708160e-02 + 8.591225676580187e-02 8.585287085352321e-02 8.579333027004854e-02 8.573363543090719e-02 8.567378659419787e-02 + 8.561378404241062e-02 8.555362810687137e-02 8.549331906471129e-02 8.543285719635127e-02 8.537224281446841e-02 + 8.531147627953188e-02 8.525055791649624e-02 8.518948798167383e-02 8.512826679756995e-02 8.506689470133286e-02 + 8.500537199311337e-02 8.494369892596923e-02 8.488187579804041e-02 8.481990305210670e-02 8.475778099074194e-02 + 8.469550984763315e-02 8.463308996695838e-02 8.457052168539449e-02 8.450780530789033e-02 8.444494110975011e-02 + 8.438192942971584e-02 8.431877065438623e-02 8.425546507059704e-02 8.419201297696736e-02 8.412841471805475e-02 + 8.406467061549007e-02 8.400078097306259e-02 8.393674609180030e-02 8.387256634619757e-02 8.380824209666674e-02 + 8.374377362095807e-02 8.367916122870038e-02 8.361440526888680e-02 8.354950611900661e-02 8.348446403538942e-02 + 8.341927927704872e-02 8.335395233905314e-02 8.328848356223681e-02 8.322287316371958e-02 8.315712149574238e-02 + 8.309122893699929e-02 8.302519583647612e-02 8.295902243510637e-02 8.289270907781640e-02 8.282625623697057e-02 + 8.275966417678003e-02 8.269293318851907e-02 8.262606370095599e-02 8.255905601211083e-02 8.249191039312886e-02 + 8.242462718945633e-02 8.235720681988298e-02 8.228964967784431e-02 8.222195602541869e-02 8.215412621284769e-02 + 8.208616062445039e-02 8.201805954142698e-02 8.194982329150195e-02 8.188145225476894e-02 8.181294680713293e-02 + 8.174430731452863e-02 8.167553412282050e-02 8.160662752890076e-02 8.153758789030935e-02 8.146841562526554e-02 + 8.139911098330359e-02 8.132967428676124e-02 8.126010603531450e-02 8.119040656216225e-02 8.112057615694021e-02 + 8.105061517994502e-02 8.098052402265073e-02 8.091030303880128e-02 8.083995248093376e-02 8.076947276447492e-02 + 8.069886435754116e-02 8.062812754457355e-02 8.055726265736828e-02 8.048627008799529e-02 8.041515020636995e-02 + 8.034390332540668e-02 8.027252974489747e-02 8.020102993492553e-02 8.012940431195667e-02 8.005765317555476e-02 + 7.998577686939379e-02 7.991377577220368e-02 7.984165027334414e-02 7.976940065907111e-02 7.969702727793032e-02 + 7.962453065567111e-02 7.955191112254574e-02 7.947916895239987e-02 7.940630455590227e-02 7.933331833212637e-02 + 7.926021063894960e-02 7.918698178217287e-02 7.911363216326053e-02 7.904016223823181e-02 7.896657235187955e-02 + 7.889286283938438e-02 7.881903406306398e-02 7.874508643443230e-02 7.867102031060058e-02 7.859683599526633e-02 + 7.852253395767629e-02 7.844811463098400e-02 7.837357831424305e-02 7.829892537205134e-02 7.822415619643758e-02 + 7.814927116484589e-02 7.807427062910767e-02 7.799915496813195e-02 7.792392464520610e-02 7.784858004657273e-02 + 7.777312150359181e-02 7.769754936428309e-02 7.762186403791040e-02 7.754606594385612e-02 7.747015537442642e-02 + 7.739413273994507e-02 7.731799855521804e-02 7.724175314852555e-02 7.716539684747571e-02 7.708893004657069e-02 + 7.701235315053030e-02 7.693566653742440e-02 7.685887055661017e-02 7.678196565918903e-02 7.670495227727288e-02 + 7.662783073280909e-02 7.655060142689749e-02 7.647326478202995e-02 7.639582115595660e-02 7.631827089499127e-02 + 7.624061438211467e-02 7.616285210329320e-02 7.608498447266238e-02 7.600701183814436e-02 7.592893457493513e-02 + 7.585075308733022e-02 7.577246778116596e-02 7.569407897223836e-02 7.561558707997214e-02 7.553699264667676e-02 + 7.545829602219666e-02 7.537949752159374e-02 7.530059752746436e-02 7.522159652110559e-02 7.514249491290788e-02 + 7.506329293711217e-02 7.498399108869409e-02 7.490458989985715e-02 7.482508965268882e-02 7.474549074308040e-02 + 7.466579363230305e-02 7.458599868473173e-02 7.450610623924510e-02 7.442611667561436e-02 7.434603053570255e-02 + 7.426584824442337e-02 7.418557009969678e-02 7.410519651333995e-02 7.402472793153594e-02 7.394416477978479e-02 + 7.386350736456949e-02 7.378275607823381e-02 7.370191147772952e-02 7.362097394239986e-02 7.353994380500382e-02 + 7.345882147239775e-02 7.337760740248925e-02 7.329630201371148e-02 7.321490559729334e-02 7.313341861868546e-02 + 7.305184160923943e-02 7.297017492620234e-02 7.288841893034562e-02 7.280657402242413e-02 7.272464064227188e-02 + 7.264261917439505e-02 7.256050997585588e-02 7.247831356170273e-02 7.239603038649280e-02 7.231366079163171e-02 + 7.223120520116612e-02 7.214866404160214e-02 7.206603769517569e-02 7.198332653777370e-02 7.190053098792457e-02 + 7.181765153838118e-02 7.173468863077177e-02 7.165164265282598e-02 7.156851395212357e-02 7.148530298289761e-02 + 7.140201021117390e-02 7.131863593482980e-02 7.123518058493326e-02 7.115164469180060e-02 7.106802866653637e-02 + 7.098433289103630e-02 7.090055775733806e-02 7.081670370962735e-02 7.073277114629017e-02 7.064876042084919e-02 + 7.056467204467058e-02 7.048050649359339e-02 7.039626411522021e-02 7.031194531783586e-02 7.022755055007633e-02 + 7.014308026270048e-02 7.005853477507426e-02 6.997391445865883e-02 6.988921994223606e-02 6.980445161374127e-02 + 6.971960976161336e-02 6.963469490630880e-02 6.954970749457975e-02 6.946464787470261e-02 6.937951638488904e-02 + 6.929431352344900e-02 6.920903988440608e-02 6.912369577614699e-02 6.903828154824053e-02 6.895279768813133e-02 + 6.886724462309453e-02 6.878162274040467e-02 6.869593242264821e-02 6.861017418575431e-02 6.852434851303352e-02 + 6.843845573229547e-02 6.835249626715924e-02 6.826647058722328e-02 6.818037912112360e-02 6.809422221022603e-02 + 6.800800023353686e-02 6.792171381432285e-02 6.783536337902803e-02 6.774894920974223e-02 6.766247176656806e-02 + 6.757593152448671e-02 6.748932891036163e-02 6.740266425451470e-02 6.731593799992638e-02 6.722915072040272e-02 + 6.714230278026269e-02 6.705539454984789e-02 6.696842651283096e-02 6.688139909018249e-02 6.679431266253504e-02 + 6.670716761081900e-02 6.661996446504156e-02 6.653270374249923e-02 6.644538575792285e-02 6.635801090742725e-02 + 6.627057965598744e-02 6.618309245387675e-02 6.609554968705872e-02 6.600795173819872e-02 6.592029914958422e-02 + 6.583259238307172e-02 6.574483179767340e-02 6.565701780669353e-02 6.556915085921187e-02 6.548123140723705e-02 + 6.539325979064996e-02 6.530523643565112e-02 6.521716192687264e-02 6.512903665438342e-02 6.504086097557776e-02 + 6.495263535156262e-02 6.486436022769713e-02 6.477603601048113e-02 6.468766306269763e-02 6.459924187637454e-02 + 6.451077298036002e-02 6.442225675573160e-02 6.433369358016772e-02 6.424508387319842e-02 6.415642813133042e-02 + 6.406772674084167e-02 6.397898002556264e-02 6.389018858464109e-02 6.380135290132970e-02 6.371247325592760e-02 + 6.362355010153516e-02 6.353458392277617e-02 6.344557514446422e-02 6.335652411846264e-02 6.326743126079815e-02 + 6.317829713990436e-02 6.308912216326193e-02 6.299990668862973e-02 6.291065117630994e-02 6.282135608306753e-02 + 6.273202182393535e-02 6.264264873955985e-02 6.255323731562341e-02 6.246378810230178e-02 6.237430143094801e-02 + 6.228477769978175e-02 6.219521740601344e-02 6.210562097707054e-02 6.201598879095212e-02 6.192632121693314e-02 + 6.183661876812600e-02 6.174688193928092e-02 6.165711112558074e-02 6.156730673780070e-02 6.147746920022401e-02 + 6.138759893800432e-02 6.129769633241683e-02 6.120776180293847e-02 6.111779589683188e-02 6.102779903735479e-02 + 6.093777158500626e-02 6.084771398591046e-02 6.075762667844817e-02 6.066751007308262e-02 6.057736455111417e-02 + 6.048719057054321e-02 6.039698864588414e-02 6.030675917961215e-02 6.021650256672047e-02 6.012621923377075e-02 + 6.003590961818356e-02 5.994557411659043e-02 5.985521308639186e-02 5.976482706463886e-02 5.967441656528669e-02 + 5.958398192281734e-02 5.949352353003544e-02 5.940304183449088e-02 5.931253730252380e-02 5.922201027916447e-02 + 5.913146112197507e-02 5.904089044032181e-02 5.895029868043596e-02 5.885968615096351e-02 5.876905326755812e-02 + 5.867840050492581e-02 5.858772833116550e-02 5.849703703991720e-02 5.840632705235495e-02 5.831559896255584e-02 + 5.822485314806121e-02 5.813408997000494e-02 5.804330987759122e-02 5.795251328764216e-02 5.786170059865808e-02 + 5.777087221384987e-02 5.768002859772193e-02 5.758917021647553e-02 5.749829746896256e-02 5.740741077575853e-02 + 5.731651056875526e-02 5.722559725171274e-02 5.713467118430270e-02 5.704373274635539e-02 5.695278249332581e-02 + 5.686182088614487e-02 5.677084826809927e-02 5.667986504336005e-02 5.658887165217444e-02 5.649786853613976e-02 + 5.640685602792318e-02 5.631583453941855e-02 5.622480462822738e-02 5.613376666437993e-02 5.604272100502515e-02 + 5.595166813210956e-02 5.586060845174765e-02 5.576954232437998e-02 5.567847012652845e-02 5.558739236715193e-02 + 5.549630955542323e-02 5.540522197136583e-02 5.531413002536285e-02 5.522303422299683e-02 5.513193492275553e-02 + 5.504083247717721e-02 5.494972729209355e-02 5.485861988753332e-02 5.476751071228679e-02 5.467640010379995e-02 + 5.458528846418693e-02 5.449417622493567e-02 5.440306381105370e-02 5.431195155656662e-02 5.422083985771245e-02 + 5.412972927459819e-02 5.403862019627870e-02 5.394751295390937e-02 5.385640797531270e-02 5.376530569364821e-02 + 5.367420650537214e-02 5.358311072889269e-02 5.349201882499156e-02 5.340093132499041e-02 5.330984856991542e-02 + 5.321877091980749e-02 5.312769879767464e-02 5.303663263591166e-02 5.294557280318667e-02 5.285451962473617e-02 + 5.276347361952855e-02 5.267243525955664e-02 5.258140485845194e-02 5.249038280640431e-02 5.239936952998326e-02 + 5.230836544276557e-02 5.221737088032564e-02 5.212638621732711e-02 5.203541199430900e-02 5.194444860919033e-02 + 5.185349638284296e-02 5.176255572471577e-02 5.167162705674897e-02 5.158071077330502e-02 5.148980718747074e-02 + 5.139891673261619e-02 5.130803993485430e-02 5.121717713356427e-02 5.112632867301793e-02 5.103549496777923e-02 + 5.094467643725986e-02 5.085387344650644e-02 5.076308630673339e-02 5.067231551219451e-02 5.058156153920812e-02 + 5.049082469322039e-02 5.040010534612100e-02 5.030940391348503e-02 5.021872080090227e-02 5.012805633824483e-02 + 5.003741087422633e-02 4.994678493647212e-02 4.985617892926745e-02 4.976559315779018e-02 4.967502801470126e-02 + 4.958448390876292e-02 4.949396122643934e-02 4.940346027599988e-02 4.931298146262254e-02 4.922252530167843e-02 + 4.913209213539834e-02 4.904168229174269e-02 4.895129616994274e-02 4.886093417404704e-02 4.877059666413559e-02 + 4.868028394034647e-02 4.858999646754281e-02 4.849973472130898e-02 4.840949900241633e-02 4.831928966152828e-02 + 4.822910709871525e-02 4.813895171199074e-02 4.804882382564480e-02 4.795872376124456e-02 4.786865202942978e-02 + 4.777860903855367e-02 4.768859507592742e-02 4.759861051627762e-02 4.750865575639699e-02 4.741873117406014e-02 + 4.732883706721817e-02 4.723897381137243e-02 4.714914191200375e-02 4.705934171189571e-02 4.696957351961628e-02 + 4.687983771740974e-02 4.679013469431771e-02 4.670046480338604e-02 4.661082833156779e-02 4.652122571187634e-02 + 4.643165741520618e-02 4.634212373882778e-02 4.625262501422293e-02 4.616316162482947e-02 4.607373395212459e-02 + 4.598434231610999e-02 4.589498701904484e-02 4.580566854223844e-02 4.571638729424802e-02 4.562714355109129e-02 + 4.553793766452621e-02 4.544877001582995e-02 4.535964097502848e-02 4.527055082898004e-02 4.518149992236756e-02 + 4.509248874970542e-02 4.500351765014129e-02 4.491458690878355e-02 4.482569689376779e-02 4.473684797939540e-02 + 4.464804050747698e-02 4.455927474828068e-02 4.447055110499822e-02 4.438187004531898e-02 4.429323185876936e-02 + 4.420463685202721e-02 4.411608538888854e-02 4.402757783926076e-02 4.393911451733543e-02 4.385069570127949e-02 + 4.376232184208732e-02 4.367399334643604e-02 4.358571047769912e-02 4.349747356709084e-02 4.340928298020802e-02 + 4.332113907381294e-02 4.323304212320113e-02 4.314499244129432e-02 4.305699050668390e-02 4.296903665620930e-02 + 4.288113115167341e-02 4.279327434447749e-02 4.270546659199307e-02 4.261770822231841e-02 4.252999949469098e-02 + 4.244234077853745e-02 4.235473252680039e-02 4.226717502474875e-02 4.217966855846760e-02 4.209221347273914e-02 + 4.200481011967518e-02 4.191745880279663e-02 4.183015977695443e-02 4.174291346429643e-02 4.165572027077732e-02 + 4.156858044734360e-02 4.148149429654668e-02 4.139446216241891e-02 4.130748439363172e-02 4.122056125606220e-02 + 4.113369302794675e-02 4.104688016346336e-02 4.096012300095512e-02 4.087342178434451e-02 4.078677683583759e-02 + 4.070018849668031e-02 4.061365708919899e-02 4.052718285106741e-02 4.044076611819490e-02 4.035440733833207e-02 + 4.026810678092279e-02 4.018186470341873e-02 4.009568143909095e-02 4.000955732298062e-02 3.992349264534106e-02 + 3.983748763759326e-02 3.975154269055037e-02 3.966565820546299e-02 3.957983441649049e-02 3.949407160357907e-02 + 3.940837009289332e-02 3.932273021031552e-02 3.923715221270428e-02 3.915163635394041e-02 3.906618306202975e-02 + 3.898079266950179e-02 3.889546539672872e-02 3.881020154253283e-02 3.872500143016262e-02 3.863986536923758e-02 + 3.855479358615301e-02 3.846978637959592e-02 3.838484417257106e-02 3.829996723484980e-02 3.821515580420295e-02 + 3.813041018714970e-02 3.804573069687705e-02 3.796111761198420e-02 3.787657114752344e-02 3.779209165765486e-02 + 3.770767953120019e-02 3.762333499040284e-02 3.753905829251161e-02 3.745484974542636e-02 3.737070965331050e-02 + 3.728663825939783e-02 3.720263578933122e-02 3.711870264209954e-02 3.703483914671073e-02 3.695104550519348e-02 + 3.686732199057993e-02 3.678366890490292e-02 3.670008654113079e-02 3.661657511036890e-02 3.653313487804630e-02 + 3.644976625150438e-02 3.636646948823320e-02 3.628324479604935e-02 3.620009246605282e-02 3.611701279349350e-02 + 3.603400604041686e-02 3.595107239910939e-02 3.586821219020735e-02 3.578542579441001e-02 3.570271341631447e-02 + 3.562007528519529e-02 3.553751169069794e-02 3.545502291550906e-02 3.537260919186706e-02 3.529027072401183e-02 + 3.520800787214007e-02 3.512582095428173e-02 3.504371015751370e-02 3.496167573051010e-02 3.487971795476078e-02 + 3.479783710598274e-02 3.471603337811516e-02 3.463430699965583e-02 3.455265835796009e-02 3.447108770848941e-02 + 3.438959523450754e-02 3.430818119554624e-02 3.422684586511945e-02 3.414558949343227e-02 3.406441225419257e-02 + 3.398331443038755e-02 3.390229638782512e-02 3.382135832287533e-02 3.374050043789544e-02 3.365972299780525e-02 + 3.357902626321113e-02 3.349841045119794e-02 3.341787574130316e-02 3.333742246166845e-02 3.325705092272905e-02 + 3.317676129391954e-02 3.309655379649919e-02 3.301642868788483e-02 3.293638622159571e-02 3.285642658240021e-02 + 3.277654996949401e-02 3.269675673538998e-02 3.261704712715797e-02 3.253742130855802e-02 3.245787951722746e-02 + 3.237842200259459e-02 3.229904899349424e-02 3.221976065258773e-02 3.214055722659278e-02 3.206143905506719e-02 + 3.198240632628265e-02 3.190345921865954e-02 3.182459797365254e-02 3.174582282841434e-02 3.166713398447476e-02 + 3.158853160183031e-02 3.151001597036992e-02 3.143158738592136e-02 3.135324600516137e-02 3.127499202279022e-02 + 3.119682567104914e-02 3.111874718036912e-02 3.104075672462514e-02 3.096285447683152e-02 3.088504075536903e-02 + 3.080731579690068e-02 3.072967974437236e-02 3.065213281019982e-02 3.057467522135681e-02 3.049730718652442e-02 + 3.042002885157935e-02 3.034284042889533e-02 3.026574223701538e-02 3.018873445294931e-02 3.011181722724549e-02 + 3.003499077734359e-02 2.995825532248887e-02 2.988161104857855e-02 2.980505808548691e-02 2.972859668986686e-02 + 2.965222714891759e-02 2.957594959806504e-02 2.949976420500935e-02 2.942367118266701e-02 2.934767073798247e-02 + 2.927176302885600e-02 2.919594820074298e-02 2.912022654108078e-02 2.904459827654108e-02 2.896906352751058e-02 + 2.889362247668933e-02 2.881827533028623e-02 2.874302228403363e-02 2.866786346167200e-02 2.859279903706265e-02 + 2.851782931145582e-02 2.844295445253672e-02 2.836817458182308e-02 2.829348988995876e-02 2.821890057629359e-02 + 2.814440681221589e-02 2.807000870175516e-02 2.799570646465742e-02 2.792150037589211e-02 2.784739055623231e-02 + 2.777337714638600e-02 2.769946033688953e-02 2.762564030841585e-02 2.755191720229608e-02 2.747829114116882e-02 + 2.740476237631904e-02 2.733133112357609e-02 2.725799748998750e-02 2.718476162641247e-02 2.711162371095654e-02 + 2.703858392279279e-02 2.696564237390275e-02 2.689279920452167e-02 2.682005468428394e-02 2.674740897239565e-02 + 2.667486216835663e-02 2.660241443488607e-02 2.653006594727732e-02 2.645781686062815e-02 2.638566726160998e-02 + 2.631361733435826e-02 2.624166733570949e-02 2.616981737012440e-02 2.609806754771221e-02 2.602641803533937e-02 + 2.595486900051258e-02 2.588342056814261e-02 2.581207282360541e-02 2.574082599292273e-02 2.566968028470076e-02 + 2.559863577456860e-02 2.552769259041796e-02 2.545685089381796e-02 2.538611083889939e-02 2.531547252137675e-02 + 2.524493605061727e-02 2.517450166747065e-02 2.510416952086314e-02 2.503393968681819e-02 2.496381230163825e-02 + 2.489378751859868e-02 2.482386547683629e-02 2.475404624292582e-02 2.468432996264991e-02 2.461471687229032e-02 + 2.454520706873932e-02 2.447580063686782e-02 2.440649771598710e-02 2.433729844997764e-02 2.426820294893469e-02 + 2.419921127712116e-02 2.413032362216684e-02 2.406154017790910e-02 2.399286100816565e-02 2.392428621229386e-02 + 2.385581592554643e-02 2.378745028409909e-02 2.371918936700126e-02 2.365103325041379e-02 2.358298215018098e-02 + 2.351503620457756e-02 2.344719546326070e-02 2.337946004127276e-02 2.331183006962702e-02 2.324430566419196e-02 + 2.317688687789637e-02 2.310957382435168e-02 2.304236671579298e-02 2.297526563441205e-02 2.290827063843882e-02 + 2.284138184722980e-02 2.277459938171355e-02 2.270792333404544e-02 2.264135374860772e-02 2.257489077729924e-02 + 2.250853459738779e-02 2.244228525780410e-02 2.237614283279474e-02 2.231010743473913e-02 2.224417917668724e-02 + 2.217835812285958e-02 2.211264432248330e-02 2.204703795931322e-02 2.198153916317220e-02 2.191614796666107e-02 + 2.185086445220271e-02 2.178568872592581e-02 2.172062089111306e-02 2.165566098457172e-02 2.159080908357505e-02 + 2.152606537366001e-02 2.146142993110024e-02 2.139690279242156e-02 2.133248404619538e-02 2.126817379406035e-02 + 2.120397211607284e-02 2.113987903003668e-02 2.107589465469217e-02 2.101201915594272e-02 2.094825256288664e-02 + 2.088459492231405e-02 2.082104632696408e-02 2.075760686991806e-02 2.069427660166107e-02 2.063105554609518e-02 + 2.056794384972622e-02 2.050494162894281e-02 2.044204890243054e-02 2.037926573000831e-02 2.031659219454509e-02 + 2.025402837653619e-02 2.019157429898307e-02 2.012923000978476e-02 2.006699566765361e-02 2.000487133731908e-02 + 1.994285703240835e-02 1.988095281849638e-02 1.981915877663429e-02 1.975747497137283e-02 1.969590139839621e-02 + 1.963443814246610e-02 1.957308535571834e-02 1.951184305296579e-02 1.945071125524195e-02 1.938969003470093e-02 + 1.932877945979973e-02 1.926797956444602e-02 1.920729035294688e-02 1.914671194302782e-02 1.908624443873623e-02 + 1.902588783798898e-02 1.896564217312377e-02 1.890550750534374e-02 1.884548390173623e-02 1.878557136933607e-02 + 1.872576992282937e-02 1.866607969751645e-02 1.860650074902563e-02 1.854703306920867e-02 1.848767670108510e-02 + 1.842843170242723e-02 1.836929811895166e-02 1.831027593341436e-02 1.825136519709141e-02 1.819256603897189e-02 + 1.813387846842225e-02 1.807530248298604e-02 1.801683812530333e-02 1.795848544988909e-02 1.790024447932676e-02 + 1.784211518704799e-02 1.778409766075985e-02 1.772619199567190e-02 1.766839817113224e-02 1.761071619932593e-02 + 1.755314612276550e-02 1.749568797940397e-02 1.743834176385679e-02 1.738110747126647e-02 1.732398520795971e-02 + 1.726697501687009e-02 1.721007686976607e-02 1.715329079150987e-02 1.709661681774517e-02 1.704005496995066e-02 + 1.698360522175755e-02 1.692726759648597e-02 1.687104219632033e-02 1.681492902190890e-02 1.675892805218375e-02 + 1.670303930866012e-02 1.664726282100333e-02 1.659159859573434e-02 1.653604659349284e-02 1.648060687061485e-02 + 1.642527950537791e-02 1.637006446137386e-02 1.631496172845883e-02 1.625997133117372e-02 1.620509328829045e-02 + 1.615032758053278e-02 1.609567417924041e-02 1.604113316306734e-02 1.598670456411958e-02 1.593238833576510e-02 + 1.587818448257840e-02 1.582409302120838e-02 1.577011395254391e-02 1.571624723647299e-02 1.566249287063067e-02 + 1.560885093721684e-02 1.555532142372995e-02 1.550190428691725e-02 1.544859953345741e-02 1.539540716895692e-02 + 1.534232718045593e-02 1.528935952298772e-02 1.523650422043375e-02 1.518376132655854e-02 1.513113080051426e-02 + 1.507861261080395e-02 1.502620675643192e-02 1.497391324399307e-02 1.492173204313831e-02 1.486966309840608e-02 + 1.481770646058926e-02 1.476586215324725e-02 1.471413011485714e-02 1.466251032223325e-02 1.461100277337298e-02 + 1.455960746411957e-02 1.450832433725036e-02 1.445715335761371e-02 1.440609458945226e-02 1.435514801148310e-02 + 1.430431355790390e-02 1.425359121341204e-02 1.420298097105418e-02 1.415248280845771e-02 1.410209665546564e-02 + 1.405182250942155e-02 1.400166041623447e-02 1.395161031395394e-02 1.390167215017196e-02 1.385184591619880e-02 + 1.380213159317199e-02 1.375252913341631e-02 1.370303846818604e-02 1.365365962256361e-02 1.360439260851619e-02 + 1.355523734898775e-02 1.350619380184460e-02 1.345726194685572e-02 1.340844175819677e-02 1.335973317080697e-02 + 1.331113613029375e-02 1.326265067233158e-02 1.321427676765317e-02 1.316601433678336e-02 1.311786334248669e-02 + 1.306982375879771e-02 1.302189555021592e-02 1.297407863461756e-02 1.292637298076667e-02 1.287877861455418e-02 + 1.283129547339001e-02 1.278392348592105e-02 1.273666261347862e-02 1.268951282495219e-02 1.264247406704279e-02 + 1.259554625321822e-02 1.254872937642621e-02 1.250202343522368e-02 1.245542834900525e-02 1.240894405313941e-02 + 1.236257050462080e-02 1.231630767029411e-02 1.227015547343941e-02 1.222411383176151e-02 1.217818275998809e-02 + 1.213236222220244e-02 1.208665212384520e-02 1.204105241018576e-02 1.199556303854240e-02 1.195018395838791e-02 + 1.190491507365890e-02 1.185975632952753e-02 1.181470773836339e-02 1.176976922480089e-02 1.172494069835479e-02 + 1.168022211004454e-02 1.163561340968965e-02 1.159111452823667e-02 1.154672536811994e-02 1.150244589927961e-02 + 1.145827610670764e-02 1.141421589534856e-02 1.137026518661645e-02 1.132642392502224e-02 1.128269205281729e-02 + 1.123906948383837e-02 1.119555612518262e-02 1.115215196588227e-02 1.110885695891592e-02 1.106567099667937e-02 + 1.102259400831050e-02 1.097962593601935e-02 1.093676671505125e-02 1.089401623812122e-02 1.085137442757511e-02 + 1.080884127911701e-02 1.076641671182367e-02 1.072410061923310e-02 1.068189293399554e-02 1.063979359231152e-02 + 1.059780251428707e-02 1.055591958418482e-02 1.051414475108346e-02 1.047247799305691e-02 1.043091920126454e-02 + 1.038946827795377e-02 1.034812515386981e-02 1.030688975996647e-02 1.026576200007446e-02 1.022474176231751e-02 + 1.018382901647819e-02 1.014302370834395e-02 1.010232571551464e-02 1.006173495028295e-02 1.002125134058496e-02 + 9.980874808217161e-03 9.940605238090998e-03 9.900442533803457e-03 9.860386673211879e-03 9.820437566105797e-03 + 9.780595089730604e-03 9.740859166502601e-03 9.701229717604148e-03 9.661706648486619e-03 9.622289837555094e-03 + 9.582979211676392e-03 9.543774731762645e-03 9.504676285752028e-03 9.465683761437204e-03 9.426797070527869e-03 + 9.388016130061547e-03 9.349340837763126e-03 9.310771071700266e-03 9.272306774287777e-03 9.233947879847340e-03 + 9.195694263233465e-03 9.157545820041815e-03 9.119502462398593e-03 9.081564104605406e-03 9.043730620594144e-03 + 9.006001891771507e-03 8.968377884117109e-03 8.930858503326412e-03 8.893443610144467e-03 8.856133108771761e-03 + 8.818926910576046e-03 8.781824915337199e-03 8.744826984807866e-03 8.707933026764444e-03 8.671142997995955e-03 + 8.634456771198624e-03 8.597874217863410e-03 8.561395247729468e-03 8.525019762147885e-03 8.488747643810387e-03 + 8.452578758551675e-03 8.416513035074836e-03 8.380550402064440e-03 8.344690718755845e-03 8.308933866062409e-03 + 8.273279745485652e-03 8.237728259206089e-03 8.202279277607399e-03 8.166932668725525e-03 8.131688373197346e-03 + 8.096546291813443e-03 8.061506280849479e-03 8.026568229604077e-03 7.991732033790425e-03 7.956997581179438e-03 + 7.922364735477982e-03 7.887833385768220e-03 7.853403460644042e-03 7.819074838170454e-03 7.784847385209607e-03 + 7.750720988388416e-03 7.716695538073770e-03 7.682770912288046e-03 7.648946965667346e-03 7.615223607644973e-03 + 7.581600758648286e-03 7.548078272068747e-03 7.514656018308716e-03 7.481333888256649e-03 7.448111767084748e-03 + 7.414989518558892e-03 7.381967002509678e-03 7.349044141005179e-03 7.316220829119200e-03 7.283496916229069e-03 + 7.250872276568530e-03 7.218346796125786e-03 7.185920358959778e-03 7.153592811909379e-03 7.121364026156801e-03 + 7.089233934032213e-03 7.057202401526107e-03 7.025269274784423e-03 6.993434437254338e-03 6.961697770726437e-03 + 6.930059144137623e-03 6.898518406074085e-03 6.867075445461445e-03 6.835730169890301e-03 6.804482436531050e-03 + 6.773332103630715e-03 6.742279042830752e-03 6.711323134446215e-03 6.680464239400761e-03 6.649702204950062e-03 + 6.619036937093537e-03 6.588468325547939e-03 6.557996212108587e-03 6.527620458965777e-03 6.497340941897300e-03 + 6.467157538628341e-03 6.437070090473932e-03 6.407078453159759e-03 6.377182548096138e-03 6.347382238649846e-03 + 6.317677359750170e-03 6.288067782822399e-03 6.258553381641384e-03 6.229134019133821e-03 6.199809533909972e-03 + 6.170579803332374e-03 6.141444731866248e-03 6.112404164377095e-03 6.083457948651627e-03 6.054605954063168e-03 + 6.025848047899531e-03 5.997184082520315e-03 5.968613898555075e-03 5.940137388272029e-03 5.911754435973001e-03 + 5.883464876798197e-03 5.855268565478542e-03 5.827165369238958e-03 5.799155152943781e-03 5.771237757858197e-03 + 5.743413031370796e-03 5.715680873423079e-03 5.688041146137241e-03 5.660493683352233e-03 5.633038344713090e-03 + 5.605674994693767e-03 5.578403490874967e-03 5.551223666073857e-03 5.524135383482108e-03 5.497138538622371e-03 + 5.470232973711985e-03 5.443418527865922e-03 5.416695061766649e-03 5.390062436684385e-03 5.363520500801443e-03 + 5.337069085950208e-03 5.310708070645691e-03 5.284437334686721e-03 5.258256709167105e-03 5.232166039984466e-03 + 5.206165186351173e-03 5.180254006079314e-03 5.154432337116667e-03 5.128700017566677e-03 5.103056934758595e-03 + 5.077502948400768e-03 5.052037887552509e-03 5.026661602896529e-03 5.001373950974750e-03 4.976174783805283e-03 + 4.951063931174483e-03 4.926041244835856e-03 4.901106610871052e-03 4.876259869861805e-03 4.851500854152867e-03 + 4.826829416485723e-03 4.802245411238555e-03 4.777748682676776e-03 4.753339057595283e-03 4.729016402174706e-03 + 4.704780591018902e-03 4.680631452386119e-03 4.656568824906738e-03 4.632592561043116e-03 4.608702512089780e-03 + 4.584898512841469e-03 4.561180394112987e-03 4.537548032865621e-03 4.514001286180084e-03 4.490539978046344e-03 + 4.467163952568486e-03 4.443873060291688e-03 4.420667147623122e-03 4.397546041481102e-03 4.374509584352294e-03 + 4.351557654555007e-03 4.328690090868674e-03 4.305906719484884e-03 4.283207387010587e-03 4.260591942258349e-03 + 4.238060226010617e-03 4.215612060889534e-03 4.193247302342208e-03 4.170965820265097e-03 4.148767441443334e-03 + 4.126651998168965e-03 4.104619336614093e-03 4.082669303050944e-03 4.060801730082235e-03 4.039016442831475e-03 + 4.017313308452854e-03 3.995692181792875e-03 3.974152883344686e-03 3.952695251163741e-03 3.931319130911208e-03 + 3.910024364917125e-03 3.888810777810686e-03 3.867678204037116e-03 3.846626514691173e-03 3.825655547709963e-03 + 3.804765124734014e-03 3.783955087456414e-03 3.763225279741349e-03 3.742575538839424e-03 3.722005684569956e-03 + 3.701515563829318e-03 3.681105042529648e-03 3.660773945892437e-03 3.640522100973796e-03 3.620349349516141e-03 + 3.600255533338096e-03 3.580240483202974e-03 3.560304020332013e-03 3.540446002992503e-03 3.520666284206718e-03 + 3.500964682823155e-03 3.481341031384374e-03 3.461795171007476e-03 3.442326941040924e-03 3.422936165061433e-03 + 3.403622671201535e-03 3.384386323473485e-03 3.365226959961049e-03 3.346144399498565e-03 3.327138478378434e-03 + 3.308209036536853e-03 3.289355909461925e-03 3.270578915351533e-03 3.251877893639187e-03 3.233252706195778e-03 + 3.214703178029928e-03 3.196229132118811e-03 3.177830406368320e-03 3.159506839403438e-03 3.141258260810600e-03 + 3.123084488811596e-03 3.104985374197366e-03 3.086960768611876e-03 3.069010490077185e-03 3.051134366997480e-03 + 3.033332237019262e-03 3.015603936903380e-03 2.997949290147841e-03 2.980368120588831e-03 2.962860285290425e-03 + 2.945425622240710e-03 2.928063948810786e-03 2.910775098113858e-03 2.893558906982335e-03 2.876415208617919e-03 + 2.859343821344898e-03 2.842344578930633e-03 2.825417338731532e-03 2.808561926446875e-03 2.791778162629514e-03 + 2.775065882662152e-03 2.758424922052246e-03 2.741855109318431e-03 2.725356262118107e-03 2.708928224810950e-03 + 2.692570847204586e-03 2.676283947708203e-03 2.660067352018658e-03 2.643920895408666e-03 2.627844412630983e-03 + 2.611837727127577e-03 2.595900659591014e-03 2.580033062057212e-03 2.564234773200918e-03 2.548505609580814e-03 + 2.532845401329118e-03 2.517253983314282e-03 2.501731188088862e-03 2.486276834298587e-03 2.470890751027053e-03 + 2.455572791828030e-03 2.440322784214469e-03 2.425140547489158e-03 2.410025914370114e-03 2.394978718743150e-03 + 2.379998789312335e-03 2.365085943631231e-03 2.350240020749269e-03 2.335460868942443e-03 2.320748308349550e-03 + 2.306102163022297e-03 2.291522266200105e-03 2.277008450857895e-03 2.262560541519312e-03 2.248178358404482e-03 + 2.233861748393963e-03 2.219610550590767e-03 2.205424582540762e-03 2.191303672653564e-03 2.177247654150935e-03 + 2.163256358437406e-03 2.149329606085116e-03 2.135467224025938e-03 2.121669062135428e-03 2.107934949596006e-03 + 2.094264705479671e-03 2.080658161247730e-03 2.067115150052171e-03 2.053635501035216e-03 2.040219032033609e-03 + 2.026865578574763e-03 2.013574988607888e-03 2.000347084189316e-03 1.987181688126059e-03 1.974078632294973e-03 + 1.961037750159034e-03 1.948058867783843e-03 1.935141804192390e-03 1.922286403096425e-03 1.909492504980594e-03 + 1.896759928265229e-03 1.884088500763132e-03 1.871478055631251e-03 1.858928424089599e-03 1.846439428400912e-03 + 1.834010894228015e-03 1.821642669213327e-03 1.809334584628213e-03 1.797086460037203e-03 1.784898126770644e-03 + 1.772769417737367e-03 1.760700162615002e-03 1.748690181778845e-03 1.736739308394668e-03 1.724847388831493e-03 + 1.713014248130287e-03 1.701239709792772e-03 1.689523605558227e-03 1.677865768960374e-03 1.666266027776910e-03 + 1.654724201747776e-03 1.643240132443950e-03 1.631813662093462e-03 1.620444610863358e-03 1.609132806416696e-03 + 1.597878082462674e-03 1.586680271167799e-03 1.575539197124769e-03 1.564454685806544e-03 1.553426583192850e-03 + 1.542454723186195e-03 1.531538926942232e-03 1.520679025889417e-03 1.509874853790604e-03 1.499126242122267e-03 + 1.488433013507451e-03 1.477795000037597e-03 1.467212048115432e-03 1.456683985464255e-03 1.446210636719452e-03 + 1.435791835117153e-03 1.425427414393694e-03 1.415117204211151e-03 1.404861027594662e-03 1.394658724273689e-03 + 1.384510137356095e-03 1.374415090575271e-03 1.364373412382042e-03 1.354384937246215e-03 1.344449499301808e-03 + 1.334566925970926e-03 1.324737043332181e-03 1.314959696939330e-03 1.305234723823342e-03 1.295561947265019e-03 + 1.285941199528206e-03 1.276372315963847e-03 1.266855130463658e-03 1.257389468322312e-03 1.247975161599065e-03 + 1.238612057815808e-03 1.229299987951490e-03 1.220038778115428e-03 1.210828263449681e-03 1.201668279419893e-03 + 1.192558658328712e-03 1.183499226491516e-03 1.174489822883548e-03 1.165530291825810e-03 1.156620461345326e-03 + 1.147760161971411e-03 1.138949229776032e-03 1.130187500878873e-03 1.121474806129454e-03 1.112810973708310e-03 + 1.104195848566657e-03 1.095629271185936e-03 1.087111069073448e-03 1.078641075658101e-03 1.070219127753748e-03 + 1.061845062287274e-03 1.053518708913237e-03 1.045239900848634e-03 1.037008485418972e-03 1.028824298155823e-03 + 1.020687168641753e-03 1.012596933141099e-03 1.004553429894111e-03 9.965564952721074e-04 9.886059579764911e-04 + 9.807016577383673e-04 9.728434421263681e-04 9.650311428619217e-04 9.572645925441391e-04 9.495436296868831e-04 + 9.418680934992058e-04 9.342378189983833e-04 9.266526374013966e-04 9.191123940951565e-04 9.116169327210938e-04 + 9.041660846048507e-04 8.967596865276394e-04 8.893975784458786e-04 8.820795994475233e-04 8.748055834052338e-04 + 8.675753662309574e-04 8.603887967412885e-04 8.532457145816050e-04 8.461459528881801e-04 8.390893515597134e-04 + 8.320757512954288e-04 8.251049910410551e-04 8.181769052102455e-04 8.112913354889369e-04 8.044481307476467e-04 + 7.976471276304203e-04 7.908881626723219e-04 7.841710779271092e-04 7.774957151422038e-04 7.708619131557394e-04 + 7.642695077220146e-04 7.577183458379644e-04 7.512082748417916e-04 7.447391309361296e-04 7.383107537219758e-04 + 7.319229861740803e-04 7.255756719189899e-04 7.192686493738265e-04 7.130017570250109e-04 7.067748463319056e-04 + 7.005877618919097e-04 6.944403408515077e-04 6.883324261093659e-04 6.822638623160529e-04 6.762344932684062e-04 + 6.702441573916524e-04 6.642926986443232e-04 6.583799694858947e-04 6.525058122102392e-04 6.466700672293728e-04 + 6.408725793807691e-04 6.351131947715911e-04 6.293917574305099e-04 6.237081070877600e-04 6.180620932909059e-04 + 6.124535677685099e-04 6.068823714677426e-04 6.013483481700967e-04 5.958513451670206e-04 5.903912096703989e-04 + 5.849677853780454e-04 5.795809154020751e-04 5.742304534677881e-04 5.689162489783443e-04 5.636381442526738e-04 + 5.583959863498279e-04 5.531896240506697e-04 5.480189055622431e-04 5.428836748799696e-04 5.377837797240800e-04 + 5.327190759830209e-04 5.276894110958636e-04 5.226946300477827e-04 5.177345825024617e-04 5.128091188465486e-04 + 5.079180879528710e-04 5.030613351067660e-04 4.982387130290541e-04 4.934500776624026e-04 4.886952758062522e-04 + 4.839741558713263e-04 4.792865695826084e-04 4.746323688630657e-04 4.700114029595036e-04 4.654235198613055e-04 + 4.608685766627245e-04 4.563464280591107e-04 4.518569219186994e-04 4.473999099762359e-04 4.429752457691277e-04 + 4.385827824909558e-04 4.342223700107388e-04 4.298938604566902e-04 4.255971135329090e-04 4.213319826090788e-04 + 4.170983180859963e-04 4.128959744299958e-04 4.087248069577171e-04 4.045846700338900e-04 4.004754147907325e-04 + 3.963968979642262e-04 3.923489801919561e-04 3.883315144592717e-04 3.843443544269981e-04 3.803873568608614e-04 + 3.764603788261386e-04 3.725632754784107e-04 3.686959004384349e-04 3.648581147870281e-04 3.610497787686854e-04 + 3.572707463878945e-04 3.535208745539621e-04 3.498000220657478e-04 3.461080477383748e-04 3.424448076363575e-04 + 3.388101589386426e-04 3.352039657815740e-04 3.316260877532703e-04 3.280763812137888e-04 3.245547060139738e-04 + 3.210609229167205e-04 3.175948921405597e-04 3.141564711604799e-04 3.107455215081982e-04 3.073619088757455e-04 + 3.040054927848886e-04 3.006761327105527e-04 2.973736909925681e-04 2.940980303881470e-04 2.908490123115160e-04 + 2.876264965105581e-04 2.844303488008553e-04 2.812604353029198e-04 2.781166164989417e-04 2.749987551423296e-04 + 2.719067158817455e-04 2.688403633742989e-04 2.657995602462465e-04 2.627841695326067e-04 2.597940603791381e-04 + 2.568290988582687e-04 2.538891477672460e-04 2.509740728301346e-04 2.480837407612393e-04 2.452180180501483e-04 + 2.423767689150773e-04 2.395598604007145e-04 2.367671637065971e-04 2.339985452156380e-04 2.312538707417314e-04 + 2.285330086975239e-04 2.258358279521211e-04 2.231621965330517e-04 2.205119809474630e-04 2.178850522930381e-04 + 2.152812827957872e-04 2.127005401044592e-04 2.101426932429596e-04 2.076076129630843e-04 2.050951703707553e-04 + 2.026052350574154e-04 2.001376764695323e-04 1.976923692963255e-04 1.952691863631026e-04 1.928679973631469e-04 + 1.904886744667185e-04 1.881310908124045e-04 1.857951194428946e-04 1.834806317739651e-04 1.811875010647571e-04 + 1.789156043640377e-04 1.766648152326652e-04 1.744350063601967e-04 1.722260526922104e-04 1.700378296945535e-04 + 1.678702123432160e-04 1.657230742438847e-04 1.635962925697728e-04 1.614897461072756e-04 1.594033097074569e-04 + 1.573368592094730e-04 1.552902721810668e-04 1.532634264532060e-04 1.512561988693490e-04 1.492684659352835e-04 + 1.473001083560244e-04 1.453510059716440e-04 1.434210358729406e-04 1.415100771164913e-04 1.396180097223186e-04 + 1.377447137267307e-04 1.358900680130841e-04 1.340539526362652e-04 1.322362510498252e-04 1.304368442346035e-04 + 1.286556121626104e-04 1.268924368411170e-04 1.251472007379926e-04 1.234197860690376e-04 1.217100740639766e-04 + 1.200179485071157e-04 1.183432949752447e-04 1.166859960758634e-04 1.150459349477667e-04 1.134229962637926e-04 + 1.118170649981152e-04 1.102280255615328e-04 1.086557620076939e-04 1.071001616642248e-04 1.055611117192228e-04 + 1.040384970703678e-04 1.025322040262462e-04 1.010421198490596e-04 9.956813202096472e-05 9.811012722455996e-05 + 9.666799283658755e-05 9.524161921027426e-05 9.383089505710078e-05 9.243570803818307e-05 9.105594759252440e-05 + 8.969150364397068e-05 8.834226604286881e-05 8.700812397260034e-05 8.568896841419017e-05 8.438469212608002e-05 + 8.309518568825200e-05 8.182033994906239e-05 8.056004718218619e-05 7.931419998170841e-05 7.808269064296404e-05 + 7.686541112857092e-05 7.566225594198306e-05 7.447311991364301e-05 7.329789600792314e-05 7.213647827366786e-05 + 7.098876170896106e-05 6.985464163907488e-05 6.873401282606521e-05 6.762677039259616e-05 6.653281205307769e-05 + 6.545203459530543e-05 6.438433381335806e-05 6.332960688869456e-05 6.228775159650499e-05 6.125866586213212e-05 + 6.024224709312662e-05 5.923839394811549e-05 5.824700680510711e-05 5.726798458845817e-05 5.630122626966778e-05 + 5.534663202079377e-05 5.440410243697520e-05 5.347353805513213e-05 5.255483915897720e-05 5.164790790372327e-05 + 5.075264706713765e-05 4.986895809670387e-05 4.899674321102013e-05 4.813590548272275e-05 4.728634834520723e-05 + 4.644797500988253e-05 4.562068892036128e-05 4.480439551815946e-05 4.399899988301035e-05 4.320440633696577e-05 + 4.242052030402665e-05 4.164724778526068e-05 4.088449502887978e-05 4.013216802138054e-05 3.939017361734100e-05 + 3.865842020891389e-05 3.793681530287127e-05 3.722526637683801e-05 3.652368195642655e-05 3.583197100166348e-05 + 3.515004257550265e-05 3.447780563338777e-05 3.381517049939420e-05 3.316204825033269e-05 3.251834908257212e-05 + 3.188398376275541e-05 3.125886384349450e-05 3.064290126992314e-05 3.003600797392098e-05 2.943809607683111e-05 + 2.884907925556903e-05 2.826887119646782e-05 2.769738505988399e-05 2.713453488302094e-05 2.658023526748751e-05 + 2.603440114263312e-05 2.549694738792051e-05 2.496778949423694e-05 2.444684425976710e-05 2.393402805764408e-05 + 2.342925723948219e-05 2.293244905822871e-05 2.244352120797989e-05 2.196239159983278e-05 2.148897818423003e-05 + 2.102319990982268e-05 2.056497650699234e-05 2.011422722229805e-05 1.967087173846936e-05 1.923483045310688e-05 + 1.880602417859793e-05 1.838437386840237e-05 1.796980069033951e-05 1.756222699777835e-05 1.716157539169325e-05 + 1.676776819323897e-05 1.638072842752046e-05 1.600037965967140e-05 1.562664583506045e-05 1.525945101785764e-05 + 1.489871974108943e-05 1.454437762041471e-05 1.419635018600421e-05 1.385456300630342e-05 1.351894241351905e-05 + 1.318941519258516e-05 1.286590843459537e-05 1.254834939298960e-05 1.223666606495489e-05 1.193078719950152e-05 + 1.163064137727749e-05 1.133615754527981e-05 1.104726530816775e-05 1.076389469662666e-05 1.048597599093073e-05 + 1.021343974753131e-05 9.946217419267380e-06 9.684240838620889e-06 9.427441790773100e-06 9.175752643853506e-06 + 8.929106280098344e-06 8.687435997194528e-06 8.450675338936148e-06 8.218758257424963e-06 7.991619584870982e-06 + 7.769194298227330e-06 7.551417507621627e-06 7.338224987041431e-06 7.129552955942858e-06 6.925337997222138e-06 + 6.725516977155444e-06 6.530027335862672e-06 6.338807194551445e-06 6.151794769434223e-06 5.968928615355085e-06 + 5.790147878391894e-06 5.615392155261267e-06 5.444601365246586e-06 5.277715758699128e-06 5.114676291438329e-06 + 4.955424365336747e-06 4.799901525655197e-06 4.648049820836300e-06 4.499811793985402e-06 4.355130438087899e-06 + 4.213949069835453e-06 4.076211399540344e-06 3.941861865039729e-06 3.810845196499976e-06 3.683106361660463e-06 + 3.558590910585118e-06 3.437244835818923e-06 3.319014541070219e-06 3.203846795533912e-06 3.091688852089737e-06 + 2.982488579295818e-06 2.876194109656037e-06 2.772753925582794e-06 2.672117063800105e-06 2.574233014808049e-06 + 2.479051643033932e-06 2.386523210361943e-06 2.296598552297165e-06 2.209228971591383e-06 2.124366069775506e-06 + 2.041961906232304e-06 1.961969019732135e-06 1.884340423438541e-06 1.809029507182080e-06 1.735990071613592e-06 + 1.665176534356502e-06 1.596543687803830e-06 1.530046658503296e-06 1.465641105678908e-06 1.403283128309336e-06 + 1.342929271825179e-06 1.284536503035511e-06 1.228062233226246e-06 1.173464436795038e-06 1.120701460082181e-06 + 1.069732028902882e-06 1.020515399241352e-06 9.730112822753146e-07 9.271798002921477e-07 8.829815278752155e-07 + 8.403775374680640e-07 7.993293716485992e-07 7.597989809176624e-07 7.217487560416926e-07 6.851415619710593e-07 + 6.499407524191172e-07 6.161100929136179e-07 5.836137918783888e-07 5.524166028233452e-07 5.224836968385216e-07 + 4.937806609639881e-07 4.662735849361845e-07 4.399289991547822e-07 4.147139110260500e-07 3.905957813609555e-07 + 3.675425084859321e-07 3.455225231396512e-07 3.245046871736890e-07 3.044582778536548e-07 2.853530928283095e-07 + 2.671593859185241e-07 2.498478511400059e-07 2.333896726605378e-07 2.177564985206194e-07 2.029204500538344e-07 + 1.888541210793108e-07 1.755305458522738e-07 1.629232393506973e-07 1.510062144201093e-07 1.397539174372155e-07 + 1.291412703741045e-07 1.191437050672961e-07 1.097370923617762e-07 1.008977778162274e-07 9.260259669902208e-08 + 8.482883141984319e-08 7.755426670738778e-08 7.075715683240311e-08 6.441620467100832e-08 5.851063608240125e-08 + 5.302013495440350e-08 4.792483459927075e-08 4.320538955913144e-08 3.884291294265582e-08 3.481898425658018e-08 + 3.111569527451850e-08 2.771559342817648e-08 2.460171067137196e-08 2.175758348333717e-08 1.916719757773861e-08 + 1.681503457183268e-08 1.468607978947252e-08 1.276576812429566e-08 1.104003874048358e-08 9.495328649625366e-09 + 8.118528715645258e-09 6.897042498203040e-09 5.818760232281117e-09 4.872032311209139e-09 4.045732447740840e-09 + 3.329210679517489e-09 2.712284881132093e-09 2.185301687016959e-09 1.739076161987666e-09 1.364901589086205e-09 + 1.054599065845252e-09 8.004535320102697e-10 5.952414597054672e-10 4.322622496028902e-10 3.052766304104823e-10 + 2.085502003918036e-10 1.368642901349301e-10 8.546164059834664e-11 5.010215808832263e-11 2.705311520847365e-11 + 1.304599438344934e-11 5.339090781311160e-12 1.692041320615927e-12 3.321208355096226e-13 6.781366937015517e-15 diff --git a/examples/SPIN/cobalt_fcc/exchange_fit_fcc_co/exchange_fcc_cobalt.dat b/examples/SPIN/cobalt_fcc/exchange_fit_fcc_co/exchange_fcc_cobalt.dat new file mode 100644 index 0000000000000000000000000000000000000000..dce45c090dfb92ea3d9dd2c31fe925df9dc1bc01 --- /dev/null +++ b/examples/SPIN/cobalt_fcc/exchange_fit_fcc_co/exchange_fcc_cobalt.dat @@ -0,0 +1,5 @@ +2.503 0.01476 +3.54 0.001497 +4.33 0.001578 +5.01 -0.001224 +5.597 0.000354 diff --git a/examples/SPIN/cobalt_fcc/exchange_fit_fcc_co/exchange_fit.py b/examples/SPIN/cobalt_fcc/exchange_fit_fcc_co/exchange_fit.py new file mode 100644 index 0000000000000000000000000000000000000000..09be6db3e4de0ed5b564fdcc460c0ba3d9efbdb2 --- /dev/null +++ b/examples/SPIN/cobalt_fcc/exchange_fit_fcc_co/exchange_fit.py @@ -0,0 +1,32 @@ +#Program fitting the exchange interaction +#Model curve: Bethe-Slater function +import numpy as np, pylab, tkinter +import matplotlib.pyplot as plt +from scipy.optimize import curve_fit +from decimal import * + +print("Loop begin") + +#Definition of the Bethe-Slater function +def func(x,a,b,c): + return 4*a*((x/c)**2)*(1-b*(x/c)**2)*np.exp(-(x/c)**2) + +#Exchange coeff table (data to fit) +rdata, Jdata = np.loadtxt('exchange_fcc_cobalt.dat', usecols=(0,1), unpack=True) +plt.plot(rdata, Jdata, 'b-', label='data') + +#Perform the fit +popt, pcov = curve_fit(func, rdata, Jdata, bounds=(0, [500.,5.,5.])) +plt.plot(rdata, func(rdata, *popt), 'r--', label='fit') + +#Print the fitted params +print("Parameters: a={:.10} (in meV), b={:.10} (adim), c={:.10} (in Ang)".format(*popt)) + +#Ploting the result +plt.xlabel('r_ij') +pylab.xlim([0,6.5]) +plt.ylabel('J_ij') +plt.legend() +plt.show() + +print("Loop end") diff --git a/examples/SPIN/cobalt_fcc/in.spin.cobalt_fcc b/examples/SPIN/cobalt_fcc/in.spin.cobalt_fcc new file mode 100644 index 0000000000000000000000000000000000000000..fd6833727bebf8b13f795cfdec73100f8fc8a6f2 --- /dev/null +++ b/examples/SPIN/cobalt_fcc/in.spin.cobalt_fcc @@ -0,0 +1,63 @@ +# fcc cobalt in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice fcc 3.54 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +create_atoms 1 box + +# setting mass, mag. moments, and interactions for fcc cobalt + +mass 1 58.93 + +#set group all spin/random 31 1.72 +set group all spin 1.72 0.0 0.0 1.0 +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.0446928 0.003496 1.4885 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 1.0 0.0 0.0 1.0 +fix_modify 1 energy yes + +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +thermo_style custom f_1 + +variable magx equal c_out_mag[1] +variable magy equal c_out_mag[2] +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time f_1 v_magx v_magy v_magnorm v_emag temp etotal +thermo 50 + +#compute outsp all property/atom spx spy spz sp fmx fmy fmz +#dump 100 all custom 1 dump_cobalt_fcc.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 1000 diff --git a/examples/SPIN/cobalt_fcc/log.11May18.spin.cobalt_fcc.g++.1 b/examples/SPIN/cobalt_fcc/log.11May18.spin.cobalt_fcc.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..d832b0001a894877a2e512db25db55f4676ac61a --- /dev/null +++ b/examples/SPIN/cobalt_fcc/log.11May18.spin.cobalt_fcc.g++.1 @@ -0,0 +1,142 @@ +LAMMPS (11 May 2018) +# fcc cobalt in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice fcc 3.54 +Lattice spacing in x,y,z = 3.54 3.54 3.54 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (17.7 17.7 17.7) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 500 atoms + Time spent = 0.000651121 secs + +# setting mass, mag. moments, and interactions for fcc cobalt + +mass 1 58.93 + +#set group all spin/random 31 1.72 +set group all spin 1.72 0.0 0.0 1.0 + 500 settings made for spin +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.0446928 0.003496 1.4885 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 1.0 0.0 0.0 1.0 +fix_modify 1 energy yes + +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +thermo_style custom f_1 + +variable magx equal c_out_mag[1] +variable magy equal c_out_mag[2] +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time f_1 v_magx v_magy v_magnorm v_emag temp etotal +thermo 50 + +#compute outsp all property/atom spx spy spz sp fmx fmy fmz +#dump 100 all custom 1 dump_cobalt_fcc.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 1000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.59954 + ghost atom cutoff = 6.59954 + binsize = 3.29977, bins = 6 6 6 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.218 | 5.218 | 5.218 Mbytes +Step Time f_1 v_magx v_magy v_magnorm v_emag Temp TotEng + 0 0 0.049785486 0 0 1 -187.94116 100.00543 -2372.4636 + 50 0.005 0.049785486 0 0 1 -187.94112 95.094679 -2372.4636 + 100 0.01 0.049785486 0 0 1 -187.94071 81.578321 -2372.4636 + 150 0.015 0.049785486 0 0 1 -187.93912 62.802727 -2372.4636 + 200 0.02 0.049785486 0 0 1 -187.93551 43.35108 -2372.4636 + 250 0.025 0.049785486 0 0 1 -187.92942 27.749821 -2372.4636 + 300 0.03 0.049785486 0 0 1 -187.92118 19.149389 -2372.4636 + 350 0.035 0.049785486 0 0 1 -187.91199 18.453387 -2372.4636 + 400 0.04 0.049785486 0 0 1 -187.90364 24.249423 -2372.4636 + 450 0.045 0.049785486 0 0 1 -187.89806 33.548008 -2372.4636 + 500 0.05 0.049785486 0 0 1 -187.89668 42.973172 -2372.4636 + 550 0.055 0.049785486 0 0 1 -187.9 49.902539 -2372.4636 + 600 0.06 0.049785486 0 0 1 -187.90735 53.166772 -2372.4636 + 650 0.065 0.049785486 0 0 1 -187.91706 53.153416 -2372.4636 + 700 0.07 0.049785486 0 0 1 -187.92692 51.377187 -2372.4636 + 750 0.075 0.049785486 0 0 1 -187.9348 49.725449 -2372.4636 + 800 0.08 0.049785486 0 0 1 -187.93921 49.663576 -2372.4636 + 850 0.085 0.049785486 0 0 1 -187.93974 51.681567 -2372.4636 + 900 0.09 0.049785486 0 0 1 -187.937 55.166554 -2372.4636 + 950 0.095 0.049785486 0 0 1 -187.93239 58.718232 -2372.4636 + 1000 0.1 0.049785486 0 0 1 -187.92755 60.75567 -2372.4636 +Loop time of 4.1303 on 1 procs for 1000 steps with 500 atoms + +Performance: 2.092 ns/day, 11.473 hours/ns, 242.113 timesteps/s +99.9% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 2.142 | 2.142 | 2.142 | 0.0 | 51.86 +Neigh | 0.0094573 | 0.0094573 | 0.0094573 | 0.0 | 0.23 +Comm | 0.023293 | 0.023293 | 0.023293 | 0.0 | 0.56 +Output | 0.00031972 | 0.00031972 | 0.00031972 | 0.0 | 0.01 +Modify | 1.9488 | 1.9488 | 1.9488 | 0.0 | 47.18 +Other | | 0.006488 | | | 0.16 + +Nlocal: 500 ave 500 max 500 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 1956 ave 1956 max 1956 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 24065 ave 24065 max 24065 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 48130 ave 48130 max 48130 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 48130 +Ave neighs/atom = 96.26 +Neighbor list builds = 6 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:04 diff --git a/examples/SPIN/cobalt_fcc/log.11May18.spin.cobalt_fcc.g++.4 b/examples/SPIN/cobalt_fcc/log.11May18.spin.cobalt_fcc.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..358d7cfc7ab3c195d3056dc21fcbc358b18ac48e --- /dev/null +++ b/examples/SPIN/cobalt_fcc/log.11May18.spin.cobalt_fcc.g++.4 @@ -0,0 +1,142 @@ +LAMMPS (11 May 2018) +# fcc cobalt in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice fcc 3.54 +Lattice spacing in x,y,z = 3.54 3.54 3.54 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (17.7 17.7 17.7) + 1 by 2 by 2 MPI processor grid +create_atoms 1 box +Created 500 atoms + Time spent = 0.000240088 secs + +# setting mass, mag. moments, and interactions for fcc cobalt + +mass 1 58.93 + +#set group all spin/random 31 1.72 +set group all spin 1.72 0.0 0.0 1.0 + 500 settings made for spin +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.0446928 0.003496 1.4885 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 1.0 0.0 0.0 1.0 +fix_modify 1 energy yes + +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +thermo_style custom f_1 + +variable magx equal c_out_mag[1] +variable magy equal c_out_mag[2] +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time f_1 v_magx v_magy v_magnorm v_emag temp etotal +thermo 50 + +#compute outsp all property/atom spx spy spz sp fmx fmy fmz +#dump 100 all custom 1 dump_cobalt_fcc.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 1000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.59954 + ghost atom cutoff = 6.59954 + binsize = 3.29977, bins = 6 6 6 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.163 | 5.163 | 5.163 Mbytes +Step Time f_1 v_magx v_magy v_magnorm v_emag Temp TotEng + 0 0 0.049785486 0 0 1 -187.94116 100.00543 -2372.4636 + 50 0.005 0.049785486 0 0 1 -187.94101 95.174807 -2372.4636 + 100 0.01 0.049785486 0 0 1 -187.94029 81.854304 -2372.4636 + 150 0.015 0.049785486 0 0 1 -187.93834 63.270938 -2372.4636 + 200 0.02 0.049785486 0 0 1 -187.93446 43.867262 -2372.4636 + 250 0.025 0.049785486 0 0 1 -187.92831 28.075261 -2372.4636 + 300 0.03 0.049785486 0 0 1 -187.92031 19.046222 -2372.4636 + 350 0.035 0.049785486 0 0 1 -187.91161 17.79071 -2372.4636 + 400 0.04 0.049785486 0 0 1 -187.9039 23.079994 -2372.4636 + 450 0.045 0.049785486 0 0 1 -187.89895 32.127316 -2372.4636 + 500 0.05 0.049785486 0 0 1 -187.89801 41.709644 -2372.4636 + 550 0.055 0.049785486 0 0 1 -187.90146 49.246292 -2372.4636 + 600 0.06 0.049785486 0 0 1 -187.90859 53.465535 -2372.4636 + 650 0.065 0.049785486 0 0 1 -187.91778 54.522857 -2372.4636 + 700 0.07 0.049785486 0 0 1 -187.9269 53.635521 -2372.4636 + 750 0.075 0.049785486 0 0 1 -187.93396 52.419678 -2372.4636 + 800 0.08 0.049785486 0 0 1 -187.9376 52.176558 -2372.4636 + 850 0.085 0.049785486 0 0 1 -187.93744 53.380592 -2372.4636 + 900 0.09 0.049785486 0 0 1 -187.93412 55.551378 -2372.4636 + 950 0.095 0.049785486 0 0 1 -187.92902 57.540047 -2372.4636 + 1000 0.1 0.049785486 0 0 1 -187.92378 58.088674 -2372.4636 +Loop time of 1.71411 on 4 procs for 1000 steps with 500 atoms + +Performance: 5.041 ns/day, 4.761 hours/ns, 583.392 timesteps/s +97.7% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.54717 | 0.57392 | 0.58784 | 2.1 | 33.48 +Neigh | 0.0023484 | 0.0025793 | 0.0026793 | 0.3 | 0.15 +Comm | 0.058548 | 0.073335 | 0.10006 | 5.9 | 4.28 +Output | 0.00042272 | 0.00079203 | 0.0018559 | 0.0 | 0.05 +Modify | 1.0577 | 1.0611 | 1.0625 | 0.2 | 61.90 +Other | | 0.00239 | | | 0.14 + +Nlocal: 125 ave 133 max 116 min +Histogram: 1 0 0 0 0 2 0 0 0 1 +Nghost: 1099 ave 1108 max 1091 min +Histogram: 1 0 0 0 2 0 0 0 0 1 +Neighs: 6032.5 ave 6417 max 5489 min +Histogram: 1 0 0 0 0 0 1 1 0 1 +FullNghs: 12065 ave 13062 max 10970 min +Histogram: 1 0 0 0 0 2 0 0 0 1 + +Total # of neighbors = 48260 +Ave neighs/atom = 96.52 +Neighbor list builds = 6 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:01 diff --git a/examples/SPIN/cobalt_hcp/Co_PurjaPun_2012.eam.alloy b/examples/SPIN/cobalt_hcp/Co_PurjaPun_2012.eam.alloy new file mode 120000 index 0000000000000000000000000000000000000000..6a47c9eebef2dc333daa871fc882f2afc038bd4c --- /dev/null +++ b/examples/SPIN/cobalt_hcp/Co_PurjaPun_2012.eam.alloy @@ -0,0 +1 @@ +../cobalt_fcc/Co_PurjaPun_2012.eam.alloy \ No newline at end of file diff --git a/examples/SPIN/cobalt_hcp/exchange_fit_hcp_co/exchange_fit.py b/examples/SPIN/cobalt_hcp/exchange_fit_hcp_co/exchange_fit.py new file mode 100644 index 0000000000000000000000000000000000000000..fa7dba417e94468ce01ea5225db9a00aed2205dd --- /dev/null +++ b/examples/SPIN/cobalt_hcp/exchange_fit_hcp_co/exchange_fit.py @@ -0,0 +1,32 @@ +#Program fitting the exchange interaction +#Model curve: Bethe-Slater function +import numpy as np, pylab, tkinter +import matplotlib.pyplot as plt +from scipy.optimize import curve_fit +from decimal import * + +print("Loop begin") + +#Definition of the Bethe-Slater function +def func(x,a,b,c): + return 4*a*((x/c)**2)*(1-b*(x/c)**2)*np.exp(-(x/c)**2) + +#Exchange coeff table (data to fit) +rdata, Jdata = np.loadtxt('exchange_hcp_co.dat', usecols=(0,1), unpack=True) +plt.plot(rdata, Jdata, 'b-', label='data') + +#Perform the fit +popt, pcov = curve_fit(func, rdata, Jdata, bounds=(0, [500.,5.,5.])) +plt.plot(rdata, func(rdata, *popt), 'r--', label='fit') + +#Print the fitted params +print("Parameters: a={:.10} (in meV), b={:.10} (adim), c={:.10} (in Ang)".format(*popt)) + +#Ploting the result +plt.xlabel('r_ij') +pylab.xlim([0,6.5]) +plt.ylabel('J_ij') +plt.legend() +plt.show() + +print("Loop end") diff --git a/examples/SPIN/cobalt_hcp/exchange_fit_hcp_co/exchange_hcp_co.dat b/examples/SPIN/cobalt_hcp/exchange_fit_hcp_co/exchange_hcp_co.dat new file mode 100644 index 0000000000000000000000000000000000000000..0968fa3edb793657830c65c64e99656de20a8274 --- /dev/null +++ b/examples/SPIN/cobalt_hcp/exchange_fit_hcp_co/exchange_hcp_co.dat @@ -0,0 +1,9 @@ +2.25569176882662 73.37931034482759 +2.3817863397548162 47.99999999999999 +2.4518388791593697 34.39080459770115 +2.507880910683012 31.816091954022987 +2.5359019264448337 28.137931034482747 +2.5779334500875657 25.011494252873554 +2.6339754816112086 19.126436781609186 +2.760070052539404 13.241379310344826 +3.5446584938704033 6.068965517241367 diff --git a/examples/SPIN/cobalt_hcp/in.spin.cobalt_hcp b/examples/SPIN/cobalt_hcp/in.spin.cobalt_hcp new file mode 100644 index 0000000000000000000000000000000000000000..35aa1df86c4a2c2bdfff40f3e35f032939311b90 --- /dev/null +++ b/examples/SPIN/cobalt_hcp/in.spin.cobalt_hcp @@ -0,0 +1,59 @@ +# hcp cobalt in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice hcp 2.5071 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +create_atoms 1 box + +# setting mass, mag. moments, and interactions for hcp cobalt + +mass 1 58.93 + +set group all spin/random 31 1.72 +#set group all spin 1.72 0.0 0.0 1.0 +velocity all create 100 4928459 rot yes dist gaussian + +#pair_style hybrid/overlay eam/alloy spin/exchange 4.0 spin/neel 4.0 +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.3593 1.135028015e-05 1.064568567 +#pair_coeff * * spin/neel neel 4.0 0.0048 0.234 1.168 2.6905 0.705 0.652 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +#fix 1 all precession/spin zeeman 1.0 0.0 0.0 1.0 +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 +fix 3 all nve/spin lattice yes + +timestep 0.0001 + + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp etotal +thermo 10 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_cobalt_hcp.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 20000 diff --git a/examples/SPIN/cobalt_hcp/log.11May18.spin.cobalt_hcp.g++.1 b/examples/SPIN/cobalt_hcp/log.11May18.spin.cobalt_hcp.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..4bb513de18886c91f1a4ef0fb3909e188d998489 --- /dev/null +++ b/examples/SPIN/cobalt_hcp/log.11May18.spin.cobalt_hcp.g++.1 @@ -0,0 +1,318 @@ +LAMMPS (11 May 2018) +# hcp cobalt in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice hcp 2.5071 +Lattice spacing in x,y,z = 2.5071 4.34242 4.09408 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (12.5355 21.7121 20.4704) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 500 atoms + Time spent = 0.000801802 secs + +# setting mass, mag. moments, and interactions for hcp cobalt + +mass 1 58.93 + +#set group all spin/random 31 1.72 +set group all spin 1.72 0.0 0.0 1.0 + 500 settings made for spin +velocity all create 100 4928459 rot yes dist gaussian + +#pair_style hybrid/overlay eam/alloy spin/exchange 4.0 spin/neel 4.0 +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.3593 1.135028015e-05 1.064568567 +#pair_coeff * * spin/neel neel 4.0 0.0048 0.234 1.168 2.6905 0.705 0.652 + + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 1.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 +fix 3 all nve/spin lattice yes + +timestep 0.0001 + + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp etotal +thermo 10 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_cobalt_hcp.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 2000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.59954 + ghost atom cutoff = 6.59954 + binsize = 3.29977, bins = 4 7 7 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.401 | 7.401 | 7.401 Mbytes +Step Time v_magnorm v_emag Temp TotEng + 0 0 1 -187.29499 100.00543 -2375.8943 + 10 0.001 1 -187.29714 99.845593 -2375.8943 + 20 0.002 1 -187.30356 99.367234 -2375.8943 + 30 0.003 1 -187.31419 98.573996 -2375.8943 + 40 0.004 1 -187.32896 97.472027 -2375.8943 + 50 0.005 1 -187.34772 96.069944 -2375.8943 + 60 0.006 1 -187.37032 94.378764 -2375.8943 + 70 0.007 1 -187.39656 92.411827 -2375.8943 + 80 0.008 1 -187.4262 90.184697 -2375.8943 + 90 0.009 1 -187.459 87.715037 -2375.8943 + 100 0.01 1 -187.49466 85.022479 -2375.8943 + 110 0.011 1 -187.53289 82.128462 -2375.8943 + 120 0.012 1 -187.57334 79.05606 -2375.8943 + 130 0.013 1 -187.61568 75.82979 -2375.8943 + 140 0.014 1 -187.65953 72.475403 -2375.8943 + 150 0.015 1 -187.70453 69.019658 -2375.8943 + 160 0.016 1 -187.75028 65.490086 -2375.8943 + 170 0.017 1 -187.79642 61.914735 -2375.8943 + 180 0.018 1 -187.84254 58.321911 -2375.8943 + 190 0.019 1 -187.88828 54.739907 -2375.8943 + 200 0.02 1 -187.93324 51.196728 -2375.8943 + 210 0.021 1 -187.97708 47.719812 -2375.8943 + 220 0.022 1 -188.01947 44.335762 -2375.8943 + 230 0.023 1 -188.06003 41.07007 -2375.8943 + 240 0.024 1 -188.09853 37.946852 -2375.8944 + 250 0.025 1 -188.13457 34.988599 -2375.8944 + 260 0.026 1 -188.16795 32.215943 -2375.8944 + 270 0.027 1 -188.19851 29.647465 -2375.8944 + 280 0.028 1 -188.22593 27.299481 -2375.8944 + 290 0.029 1 -188.25011 25.185896 -2375.8944 + 300 0.03 1 -188.27095 23.318075 -2375.8945 + 310 0.031 1 -188.2883 21.70475 -2375.8945 + 320 0.032 1 -188.30213 20.35194 -2375.8945 + 330 0.033 1 -188.31251 19.262946 -2375.8945 + 340 0.034 1 -188.31928 18.438347 -2375.8945 + 350 0.035 1 -188.32258 17.876036 -2375.8945 + 360 0.036 1 -188.32249 17.571322 -2375.8945 + 370 0.037 1 -188.31913 17.517032 -2375.8945 + 380 0.038 1 -188.31264 17.703653 -2375.8945 + 390 0.039 1 -188.30321 18.119513 -2375.8945 + 400 0.04 1 -188.29102 18.750969 -2375.8945 + 410 0.041 1 -188.2763 19.582631 -2375.8945 + 420 0.042 1 -188.25929 20.597597 -2375.8945 + 430 0.043 1 -188.24025 21.777699 -2375.8945 + 440 0.044 1 -188.21945 23.103765 -2375.8945 + 450 0.045 1 -188.19719 24.555878 -2375.8946 + 460 0.046 1 -188.17368 26.113643 -2375.8946 + 470 0.047 1 -188.1493 27.756439 -2375.8946 + 480 0.048 1 -188.12429 29.463677 -2375.8946 + 490 0.049 1 -188.09895 31.21504 -2375.8946 + 500 0.05 1 -188.07354 32.990713 -2375.8946 + 510 0.051 1 -188.04832 34.771601 -2375.8945 + 520 0.052 1 -188.02358 36.539517 -2375.8945 + 530 0.053 1 -187.99951 38.27736 -2375.8945 + 540 0.054 1 -187.97636 39.969275 -2375.8945 + 550 0.055 1 -187.95437 41.600775 -2375.8945 + 560 0.056 1 -187.93364 43.158863 -2375.8944 + 570 0.057 1 -187.9144 44.632119 -2375.8944 + 580 0.058 1 -187.89669 46.010765 -2375.8944 + 590 0.059 1 -187.88074 47.286714 -2375.8944 + 600 0.06 1 -187.86658 48.453573 -2375.8944 + 610 0.061 1 -187.85422 49.506668 -2375.8943 + 620 0.062 1 -187.84377 50.443021 -2375.8943 + 630 0.063 1 -187.8352 51.261297 -2375.8943 + 640 0.064 1 -187.8285 51.961764 -2375.8943 + 650 0.065 1 -187.8236 52.54622 -2375.8943 + 660 0.066 1 -187.8205 53.017899 -2375.8943 + 670 0.067 1 -187.81909 53.381374 -2375.8943 + 680 0.068 1 -187.81926 53.64244 -2375.8943 + 690 0.069 1 -187.82092 53.807997 -2375.8943 + 700 0.07 1 -187.82391 53.885909 -2375.8943 + 710 0.071 1 -187.82814 53.884865 -2375.8943 + 720 0.072 1 -187.83339 53.814238 -2375.8943 + 730 0.073 1 -187.83952 53.68392 -2375.8943 + 740 0.074 1 -187.84635 53.504185 -2375.8943 + 750 0.075 1 -187.85375 53.285525 -2375.8943 + 760 0.076 1 -187.86153 53.038494 -2375.8943 + 770 0.077 1 -187.86952 52.773567 -2375.8943 + 780 0.078 1 -187.87758 52.500994 -2375.8943 + 790 0.079 1 -187.88549 52.230655 -2375.8943 + 800 0.08 1 -187.89313 51.971933 -2375.8943 + 810 0.081 1 -187.90035 51.733593 -2375.8943 + 820 0.082 1 -187.90702 51.523671 -2375.8943 + 830 0.083 1 -187.91302 51.349376 -2375.8943 + 840 0.084 1 -187.91824 51.217006 -2375.8943 + 850 0.085 1 -187.9226 51.131875 -2375.8943 + 860 0.086 1 -187.92602 51.098259 -2375.8943 + 870 0.087 1 -187.92844 51.119356 -2375.8943 + 880 0.088 1 -187.92979 51.197261 -2375.8943 + 890 0.089 1 -187.93011 51.332955 -2375.8943 + 900 0.09 1 -187.92937 51.526314 -2375.8943 + 910 0.091 1 -187.92757 51.77613 -2375.8943 + 920 0.092 1 -187.92475 52.080145 -2375.8943 + 930 0.093 1 -187.92096 52.435106 -2375.8943 + 940 0.094 1 -187.91624 52.836825 -2375.8943 + 950 0.095 1 -187.91068 53.280251 -2375.8943 + 960 0.096 1 -187.90435 53.759559 -2375.8943 + 970 0.097 1 -187.89734 54.268246 -2375.8943 + 980 0.098 1 -187.88981 54.799223 -2375.8943 + 990 0.099 1 -187.88185 55.344928 -2375.8943 + 1000 0.1 1 -187.87357 55.897438 -2375.8943 + 1010 0.101 1 -187.86511 56.448585 -2375.8943 + 1020 0.102 1 -187.8566 56.990069 -2375.8943 + 1030 0.103 1 -187.84817 57.513575 -2375.8943 + 1040 0.104 1 -187.83995 58.010887 -2375.8943 + 1050 0.105 1 -187.83208 58.474004 -2375.8943 + 1060 0.106 1 -187.8247 58.89524 -2375.8943 + 1070 0.107 1 -187.81789 59.267328 -2375.8943 + 1080 0.108 1 -187.81177 59.583518 -2375.8943 + 1090 0.109 1 -187.80646 59.837665 -2375.8943 + 1100 0.11 1 -187.80204 60.024306 -2375.8943 + 1110 0.111 1 -187.79861 60.138734 -2375.8943 + 1120 0.112 1 -187.79625 60.177056 -2375.8943 + 1130 0.113 1 -187.79497 60.136244 -2375.8943 + 1140 0.114 1 -187.79485 60.014176 -2375.8943 + 1150 0.115 1 -187.7959 59.809665 -2375.8943 + 1160 0.116 1 -187.79811 59.52248 -2375.8943 + 1170 0.117 1 -187.80157 59.153353 -2375.8943 + 1180 0.118 1 -187.80618 58.703971 -2375.8943 + 1190 0.119 1 -187.81193 58.176956 -2375.8943 + 1200 0.12 1 -187.81879 57.575849 -2375.8943 + 1210 0.121 1 -187.82668 56.905072 -2375.8943 + 1220 0.122 1 -187.83554 56.169878 -2375.8943 + 1230 0.123 1 -187.84528 55.376297 -2375.8943 + 1240 0.124 1 -187.85581 54.53107 -2375.8943 + 1250 0.125 1 -187.86702 53.641573 -2375.8943 + 1260 0.126 1 -187.8788 52.715739 -2375.8943 + 1270 0.127 1 -187.89103 51.761969 -2375.8943 + 1280 0.128 1 -187.90358 50.789036 -2375.8943 + 1290 0.129 1 -187.91632 49.805988 -2375.8943 + 1300 0.13 1 -187.92911 48.822045 -2375.8943 + 1310 0.131 1 -187.94182 47.846491 -2375.8943 + 1320 0.132 1 -187.95428 46.888574 -2375.8943 + 1330 0.133 1 -187.96643 45.957394 -2375.8943 + 1340 0.134 1 -187.9781 45.061794 -2375.8943 + 1350 0.135 1 -187.9892 44.210263 -2375.8943 + 1360 0.136 1 -187.99955 43.410832 -2375.8943 + 1370 0.137 1 -188.00907 42.670979 -2375.8943 + 1380 0.138 1 -188.01767 41.997547 -2375.8943 + 1390 0.139 1 -188.02525 41.396655 -2375.8943 + 1400 0.14 1 -188.03177 40.873631 -2375.8944 + 1410 0.141 1 -188.03711 40.432952 -2375.8944 + 1420 0.142 1 -188.04124 40.078172 -2375.8944 + 1430 0.143 1 -188.04413 39.811902 -2375.8944 + 1440 0.144 1 -188.04575 39.635775 -2375.8944 + 1450 0.145 1 -188.04607 39.550435 -2375.8943 + 1460 0.146 1 -188.04515 39.555512 -2375.8943 + 1470 0.147 1 -188.04298 39.649651 -2375.8943 + 1480 0.148 1 -188.03961 39.830523 -2375.8943 + 1490 0.149 1 -188.03508 40.094865 -2375.8943 + 1500 0.15 1 -188.02944 40.438519 -2375.8943 + 1510 0.151 1 -188.02275 40.856491 -2375.8943 + 1520 0.152 1 -188.01515 41.343019 -2375.8943 + 1530 0.153 1 -188.00671 41.891643 -2375.8943 + 1540 0.154 1 -187.99753 42.495295 -2375.8943 + 1550 0.155 1 -187.98772 43.14639 -2375.8943 + 1560 0.156 1 -187.9774 43.836918 -2375.8943 + 1570 0.157 1 -187.9667 44.558553 -2375.8943 + 1580 0.158 1 -187.95576 45.302751 -2375.8943 + 1590 0.159 1 -187.94466 46.060862 -2375.8943 + 1600 0.16 1 -187.93356 46.824226 -2375.8943 + 1610 0.161 1 -187.92257 47.584289 -2375.8943 + 1620 0.162 1 -187.91183 48.332703 -2375.8943 + 1630 0.163 1 -187.90145 49.061422 -2375.8943 + 1640 0.164 1 -187.89155 49.762798 -2375.8943 + 1650 0.165 1 -187.88222 50.429671 -2375.8943 + 1660 0.166 1 -187.87357 51.055445 -2375.8943 + 1670 0.167 1 -187.86569 51.634167 -2375.8943 + 1680 0.168 1 -187.85864 52.160588 -2375.8943 + 1690 0.169 1 -187.85249 52.630219 -2375.8943 + 1700 0.17 1 -187.8473 53.039377 -2375.8943 + 1710 0.171 1 -187.84311 53.385221 -2375.8943 + 1720 0.172 1 -187.83994 53.665778 -2375.8943 + 1730 0.173 1 -187.83781 53.879954 -2375.8943 + 1740 0.174 1 -187.83671 54.027539 -2375.8943 + 1750 0.175 1 -187.83663 54.109201 -2375.8943 + 1760 0.176 1 -187.83753 54.126472 -2375.8943 + 1770 0.177 1 -187.83941 54.081708 -2375.8943 + 1780 0.178 1 -187.8422 53.97806 -2375.8943 + 1790 0.179 1 -187.84584 53.819424 -2375.8943 + 1800 0.18 1 -187.85025 53.610389 -2375.8943 + 1810 0.181 1 -187.85535 53.356163 -2375.8943 + 1820 0.182 1 -187.86105 53.06251 -2375.8943 + 1830 0.183 1 -187.86723 52.735671 -2375.8943 + 1840 0.184 1 -187.87384 52.382262 -2375.8943 + 1850 0.185 1 -187.88075 52.009201 -2375.8943 + 1860 0.186 1 -187.88784 51.623613 -2375.8943 + 1870 0.187 1 -187.89501 51.232726 -2375.8943 + 1880 0.188 1 -187.90214 50.843782 -2375.8943 + 1890 0.189 1 -187.90912 50.463929 -2375.8943 + 1900 0.19 1 -187.91585 50.100133 -2375.8943 + 1910 0.191 1 -187.92222 49.759075 -2375.8943 + 1920 0.192 1 -187.92814 49.447064 -2375.8943 + 1930 0.193 1 -187.93351 49.169949 -2375.8943 + 1940 0.194 1 -187.93826 48.933036 -2375.8943 + 1950 0.195 1 -187.94232 48.741013 -2375.8943 + 1960 0.196 1 -187.94561 48.597888 -2375.8943 + 1970 0.197 1 -187.94809 48.506926 -2375.8943 + 1980 0.198 1 -187.94972 48.470605 -2375.8943 + 1990 0.199 1 -187.95047 48.490576 -2375.8943 + 2000 0.2 1 -187.95033 48.567643 -2375.8943 +Loop time of 10.5391 on 1 procs for 2000 steps with 500 atoms + +Performance: 1.640 ns/day, 14.638 hours/ns, 189.770 timesteps/s +99.6% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 4.9958 | 4.9958 | 4.9958 | 0.0 | 47.40 +Neigh | 0.020741 | 0.020741 | 0.020741 | 0.0 | 0.20 +Comm | 0.05899 | 0.05899 | 0.05899 | 0.0 | 0.56 +Output | 1.1598 | 1.1598 | 1.1598 | 0.0 | 11.00 +Modify | 4.2885 | 4.2885 | 4.2885 | 0.0 | 40.69 +Other | | 0.01522 | | | 0.14 + +Nlocal: 500 ave 500 max 500 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 2444 ave 2444 max 2444 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 27041 ave 27041 max 27041 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 54082 ave 54082 max 54082 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 54082 +Ave neighs/atom = 108.164 +Neighbor list builds = 12 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:10 diff --git a/examples/SPIN/cobalt_hcp/log.11May18.spin.cobalt_hcp.g++.4 b/examples/SPIN/cobalt_hcp/log.11May18.spin.cobalt_hcp.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..4e7e6b1b976dbccb98b136c39daa3ebc0689e3b6 --- /dev/null +++ b/examples/SPIN/cobalt_hcp/log.11May18.spin.cobalt_hcp.g++.4 @@ -0,0 +1,318 @@ +LAMMPS (11 May 2018) +# hcp cobalt in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice hcp 2.5071 +Lattice spacing in x,y,z = 2.5071 4.34242 4.09408 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (12.5355 21.7121 20.4704) + 1 by 2 by 2 MPI processor grid +create_atoms 1 box +Created 500 atoms + Time spent = 0.000241518 secs + +# setting mass, mag. moments, and interactions for hcp cobalt + +mass 1 58.93 + +#set group all spin/random 31 1.72 +set group all spin 1.72 0.0 0.0 1.0 + 500 settings made for spin +velocity all create 100 4928459 rot yes dist gaussian + +#pair_style hybrid/overlay eam/alloy spin/exchange 4.0 spin/neel 4.0 +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.3593 1.135028015e-05 1.064568567 +#pair_coeff * * spin/neel neel 4.0 0.0048 0.234 1.168 2.6905 0.705 0.652 + + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 1.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 +fix 3 all nve/spin lattice yes + +timestep 0.0001 + + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp etotal +thermo 10 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_cobalt_hcp.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 2000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.59954 + ghost atom cutoff = 6.59954 + binsize = 3.29977, bins = 4 7 7 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.313 | 7.314 | 7.314 Mbytes +Step Time v_magnorm v_emag Temp TotEng + 0 0 1 -187.29499 100.00543 -2375.8943 + 10 0.001 1 -187.29721 99.841045 -2375.8943 + 20 0.002 1 -187.30385 99.349208 -2375.8943 + 30 0.003 1 -187.31485 98.533905 -2375.8943 + 40 0.004 1 -187.33011 97.401749 -2375.8943 + 50 0.005 1 -187.34949 95.961938 -2375.8943 + 60 0.006 1 -187.37283 94.22618 -2375.8943 + 70 0.007 1 -187.39992 92.208606 -2375.8943 + 80 0.008 1 -187.43051 89.92566 -2375.8943 + 90 0.009 1 -187.46434 87.39597 -2375.8943 + 100 0.01 1 -187.5011 84.640195 -2375.8943 + 110 0.011 1 -187.54047 81.680862 -2375.8943 + 120 0.012 1 -187.5821 78.542172 -2375.8943 + 130 0.013 1 -187.62564 75.249797 -2375.8943 + 140 0.014 1 -187.67069 71.830656 -2375.8943 + 150 0.015 1 -187.71686 68.312673 -2375.8943 + 160 0.016 1 -187.76377 64.724523 -2375.8943 + 170 0.017 1 -187.81099 61.095365 -2375.8943 + 180 0.018 1 -187.85814 57.454566 -2375.8943 + 190 0.019 1 -187.90481 53.831412 -2375.8943 + 200 0.02 1 -187.95061 50.254822 -2375.8943 + 210 0.021 1 -187.99517 46.753056 -2375.8943 + 220 0.022 1 -188.03812 43.353428 -2375.8943 + 230 0.023 1 -188.07913 40.082023 -2375.8943 + 240 0.024 1 -188.11787 36.963429 -2375.8943 + 250 0.025 1 -188.15409 34.020481 -2375.8943 + 260 0.026 1 -188.1875 31.27403 -2375.8943 + 270 0.027 1 -188.21782 28.74271 -2375.8943 + 280 0.028 1 -188.2449 26.44276 -2375.8943 + 290 0.029 1 -188.26857 24.387875 -2375.8943 + 300 0.03 1 -188.28877 22.589076 -2375.8944 + 310 0.031 1 -188.30529 21.054615 -2375.8944 + 320 0.032 1 -188.31814 19.789913 -2375.8944 + 330 0.033 1 -188.3273 18.797563 -2375.8944 + 340 0.034 1 -188.33284 18.077336 -2375.8944 + 350 0.035 1 -188.33478 17.626237 -2375.8945 + 360 0.036 1 -188.33319 17.438611 -2375.8945 + 370 0.037 1 -188.32824 17.506247 -2375.8945 + 380 0.038 1 -188.32007 17.818564 -2375.8945 + 390 0.039 1 -188.30888 18.362769 -2375.8945 + 400 0.04 1 -188.2949 19.124086 -2375.8945 + 410 0.041 1 -188.27837 20.085983 -2375.8945 + 420 0.042 1 -188.25957 21.230423 -2375.8945 + 430 0.043 1 -188.23868 22.538112 -2375.8945 + 440 0.044 1 -188.21604 23.988778 -2375.8945 + 450 0.045 1 -188.19195 25.561447 -2375.8945 + 460 0.046 1 -188.16672 27.234703 -2375.8945 + 470 0.047 1 -188.14064 28.986964 -2375.8946 + 480 0.048 1 -188.11402 30.796738 -2375.8946 + 490 0.049 1 -188.08713 32.642869 -2375.8945 + 500 0.05 1 -188.06032 34.504776 -2375.8945 + 510 0.051 1 -188.03383 36.362662 -2375.8945 + 520 0.052 1 -188.00793 38.197721 -2375.8945 + 530 0.053 1 -187.98284 39.992314 -2375.8945 + 540 0.054 1 -187.95884 41.730127 -2375.8945 + 550 0.055 1 -187.93612 43.396298 -2375.8945 + 560 0.056 1 -187.91489 44.97754 -2375.8945 + 570 0.057 1 -187.89524 46.462224 -2375.8945 + 580 0.058 1 -187.87735 47.840443 -2375.8945 + 590 0.059 1 -187.8613 49.104064 -2375.8945 + 600 0.06 1 -187.84719 50.246744 -2375.8945 + 610 0.061 1 -187.83509 51.26393 -2375.8944 + 620 0.062 1 -187.82506 52.152839 -2375.8944 + 630 0.063 1 -187.81706 52.912413 -2375.8944 + 640 0.064 1 -187.81109 53.543272 -2375.8944 + 650 0.065 1 -187.80708 54.047636 -2375.8944 + 660 0.066 1 -187.80499 54.429234 -2375.8944 + 670 0.067 1 -187.8047 54.693202 -2375.8944 + 680 0.068 1 -187.80613 54.845965 -2375.8944 + 690 0.069 1 -187.80914 54.895106 -2375.8944 + 700 0.07 1 -187.81356 54.849238 -2375.8944 + 710 0.071 1 -187.81923 54.71786 -2375.8943 + 720 0.072 1 -187.82608 54.511181 -2375.8943 + 730 0.073 1 -187.83388 54.239987 -2375.8943 + 740 0.074 1 -187.84244 53.91548 -2375.8943 + 750 0.075 1 -187.85158 53.549112 -2375.8943 + 760 0.076 1 -187.86112 53.152433 -2375.8943 + 770 0.077 1 -187.87086 52.736925 -2375.8943 + 780 0.078 1 -187.88063 52.313858 -2375.8943 + 790 0.079 1 -187.89026 51.894138 -2375.8943 + 800 0.08 1 -187.89958 51.488169 -2375.8943 + 810 0.081 1 -187.90842 51.105725 -2375.8943 + 820 0.082 1 -187.91663 50.755829 -2375.8943 + 830 0.083 1 -187.92411 50.446651 -2375.8943 + 840 0.084 1 -187.93071 50.185404 -2375.8943 + 850 0.085 1 -187.93637 49.978262 -2375.8943 + 860 0.086 1 -187.94099 49.830307 -2375.8943 + 870 0.087 1 -187.9445 49.745473 -2375.8943 + 880 0.088 1 -187.94685 49.726517 -2375.8943 + 890 0.089 1 -187.94802 49.774999 -2375.8943 + 900 0.09 1 -187.94799 49.891282 -2375.8943 + 910 0.091 1 -187.94678 50.074549 -2375.8943 + 920 0.092 1 -187.94441 50.322833 -2375.8943 + 930 0.093 1 -187.94093 50.633063 -2375.8943 + 940 0.094 1 -187.93639 51.001126 -2375.8943 + 950 0.095 1 -187.93089 51.421938 -2375.8943 + 960 0.096 1 -187.9245 51.889531 -2375.8943 + 970 0.097 1 -187.91733 52.397148 -2375.8943 + 980 0.098 1 -187.9095 52.937345 -2375.8943 + 990 0.099 1 -187.90113 53.502108 -2375.8943 + 1000 0.1 1 -187.89236 54.082966 -2375.8943 + 1010 0.101 1 -187.88332 54.671115 -2375.8943 + 1020 0.102 1 -187.87415 55.257545 -2375.8943 + 1030 0.103 1 -187.86501 55.833162 -2375.8943 + 1040 0.104 1 -187.85602 56.388915 -2375.8943 + 1050 0.105 1 -187.84734 56.915918 -2375.8943 + 1060 0.106 1 -187.83909 57.405575 -2375.8943 + 1070 0.107 1 -187.83143 57.849686 -2375.8943 + 1080 0.108 1 -187.82446 58.240564 -2375.8943 + 1090 0.109 1 -187.8183 58.571132 -2375.8943 + 1100 0.11 1 -187.81306 58.835016 -2375.8943 + 1110 0.111 1 -187.80883 59.026633 -2375.8943 + 1120 0.112 1 -187.8057 59.141258 -2375.8943 + 1130 0.113 1 -187.80372 59.17509 -2375.8943 + 1140 0.114 1 -187.80295 59.125305 -2375.8943 + 1150 0.115 1 -187.80341 58.990092 -2375.8943 + 1160 0.116 1 -187.80515 58.76868 -2375.8943 + 1170 0.117 1 -187.80814 58.461352 -2375.8943 + 1180 0.118 1 -187.81244 58.069457 -2375.8943 + 1190 0.119 1 -187.81794 57.595377 -2375.8944 + 1200 0.12 1 -187.82458 57.042514 -2375.8944 + 1210 0.121 1 -187.83233 56.415256 -2375.8944 + 1220 0.122 1 -187.84112 55.718931 -2375.8944 + 1230 0.123 1 -187.85086 54.959744 -2375.8944 + 1240 0.124 1 -187.86145 54.144707 -2375.8944 + 1250 0.125 1 -187.87277 53.281562 -2375.8944 + 1260 0.126 1 -187.88471 52.378686 -2375.8944 + 1270 0.127 1 -187.89713 51.445 -2375.8944 + 1280 0.128 1 -187.9099 50.489858 -2375.8944 + 1290 0.129 1 -187.92288 49.522943 -2375.8944 + 1300 0.13 1 -187.93591 48.554147 -2375.8944 + 1310 0.131 1 -187.94886 47.593456 -2375.8944 + 1320 0.132 1 -187.96157 46.650829 -2375.8944 + 1330 0.133 1 -187.97391 45.736073 -2375.8944 + 1340 0.134 1 -187.98573 44.858733 -2375.8944 + 1350 0.135 1 -187.99691 44.027964 -2375.8944 + 1360 0.136 1 -188.00731 43.252426 -2375.8944 + 1370 0.137 1 -188.01678 42.540178 -2375.8943 + 1380 0.138 1 -188.02529 41.898568 -2375.8943 + 1390 0.139 1 -188.0327 41.334152 -2375.8943 + 1400 0.14 1 -188.03894 40.852606 -2375.8943 + 1410 0.141 1 -188.04396 40.45866 -2375.8944 + 1420 0.142 1 -188.04768 40.156041 -2375.8944 + 1430 0.143 1 -188.05007 39.947416 -2375.8944 + 1440 0.144 1 -188.05107 39.834367 -2375.8944 + 1450 0.145 1 -188.0507 39.817378 -2375.8944 + 1460 0.146 1 -188.04898 39.895828 -2375.8944 + 1470 0.147 1 -188.04595 40.068005 -2375.8945 + 1480 0.148 1 -188.04164 40.331129 -2375.8945 + 1490 0.149 1 -188.03603 40.681394 -2375.8945 + 1500 0.15 1 -188.02929 41.114003 -2375.8945 + 1510 0.151 1 -188.02148 41.623259 -2375.8945 + 1520 0.152 1 -188.0127 42.20263 -2375.8945 + 1530 0.153 1 -188.00302 42.844846 -2375.8945 + 1540 0.154 1 -187.99255 43.541977 -2375.8945 + 1550 0.155 1 -187.98148 44.285554 -2375.8945 + 1560 0.156 1 -187.96989 45.066666 -2375.8945 + 1570 0.157 1 -187.95793 45.876084 -2375.8945 + 1580 0.158 1 -187.94574 46.704378 -2375.8945 + 1590 0.159 1 -187.93346 47.542032 -2375.8945 + 1600 0.16 1 -187.92122 48.379564 -2375.8945 + 1610 0.161 1 -187.90916 49.207642 -2375.8945 + 1620 0.162 1 -187.89742 50.0172 -2375.8945 + 1630 0.163 1 -187.88613 50.799541 -2375.8945 + 1640 0.164 1 -187.87536 51.546446 -2375.8944 + 1650 0.165 1 -187.86531 52.250265 -2375.8944 + 1660 0.166 1 -187.85604 52.904001 -2375.8944 + 1670 0.167 1 -187.84765 53.501394 -2375.8944 + 1680 0.168 1 -187.84021 54.036987 -2375.8944 + 1690 0.169 1 -187.83379 54.506178 -2375.8944 + 1700 0.17 1 -187.82846 54.905273 -2375.8944 + 1710 0.171 1 -187.82424 55.231514 -2375.8944 + 1720 0.172 1 -187.82117 55.483104 -2375.8944 + 1730 0.173 1 -187.81922 55.659221 -2375.8944 + 1740 0.174 1 -187.81843 55.760007 -2375.8944 + 1750 0.175 1 -187.81881 55.786556 -2375.8944 + 1760 0.176 1 -187.82029 55.740888 -2375.8944 + 1770 0.177 1 -187.82284 55.625916 -2375.8944 + 1780 0.178 1 -187.82639 55.445397 -2375.8944 + 1790 0.179 1 -187.83088 55.203871 -2375.8944 + 1800 0.18 1 -187.83623 54.906597 -2375.8944 + 1810 0.181 1 -187.84235 54.559471 -2375.8944 + 1820 0.182 1 -187.84913 54.168949 -2375.8944 + 1830 0.183 1 -187.85646 53.741952 -2375.8943 + 1840 0.184 1 -187.86424 53.28578 -2375.8943 + 1850 0.185 1 -187.87239 52.807988 -2375.8943 + 1860 0.186 1 -187.88077 52.3163 -2375.8943 + 1870 0.187 1 -187.88925 51.81851 -2375.8943 + 1880 0.188 1 -187.89772 51.322368 -2375.8943 + 1890 0.189 1 -187.90605 50.835483 -2375.8943 + 1900 0.19 1 -187.91415 50.365218 -2375.8943 + 1910 0.191 1 -187.92189 49.9186 -2375.8943 + 1920 0.192 1 -187.92917 49.502222 -2375.8943 + 1930 0.193 1 -187.93591 49.122167 -2375.8943 + 1940 0.194 1 -187.94198 48.783928 -2375.8943 + 1950 0.195 1 -187.94737 48.492348 -2375.8943 + 1960 0.196 1 -187.95199 48.25154 -2375.8943 + 1970 0.197 1 -187.95576 48.064862 -2375.8943 + 1980 0.198 1 -187.95866 47.934875 -2375.8943 + 1990 0.199 1 -187.96065 47.863314 -2375.8943 + 2000 0.2 1 -187.96171 47.851079 -2375.8943 +Loop time of 4.40076 on 4 procs for 2000 steps with 500 atoms + +Performance: 3.927 ns/day, 6.112 hours/ns, 454.467 timesteps/s +96.2% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 1.2934 | 1.3683 | 1.432 | 4.2 | 31.09 +Neigh | 0.005039 | 0.0053418 | 0.0054908 | 0.2 | 0.12 +Comm | 0.12642 | 0.1922 | 0.26891 | 11.6 | 4.37 +Output | 0.39256 | 0.40875 | 0.43431 | 2.5 | 9.29 +Modify | 2.395 | 2.4202 | 2.4352 | 1.0 | 54.99 +Other | | 0.006007 | | | 0.14 + +Nlocal: 125 ave 130 max 122 min +Histogram: 1 1 0 1 0 0 0 0 0 1 +Nghost: 1324 ave 1330 max 1316 min +Histogram: 1 0 0 1 0 0 0 0 0 2 +Neighs: 6747 ave 6959 max 6652 min +Histogram: 2 1 0 0 0 0 0 0 0 1 +FullNghs: 13494 ave 14060 max 13186 min +Histogram: 2 0 0 1 0 0 0 0 0 1 + +Total # of neighbors = 53976 +Ave neighs/atom = 107.952 +Neighbor list builds = 12 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:04 diff --git a/examples/SPIN/iron/Fe_Mishin2006.eam.alloy b/examples/SPIN/iron/Fe_Mishin2006.eam.alloy new file mode 100644 index 0000000000000000000000000000000000000000..69231bb7eeed5677009482896fe520f4445413dd --- /dev/null +++ b/examples/SPIN/iron/Fe_Mishin2006.eam.alloy @@ -0,0 +1,15009 @@ +comment 1 +comment 2 +Converted by Ganga P Purja Pun using C++ code on Mon Nov 3 10:48:17 2014 +1 Fe +5001 2.400000000000000e-03 5001 1.134673400048920e-03 5.673367000244601e+00 +26 5.584700000000000e+01 2.855300000000000e+00 BCC + 0.000000000000000e+00 + -2.338738741480766e-02 + -4.628214468925276e-02 + -6.912258036387915e-02 + -9.175603963501618e-02 + -1.141497214000000e-01 + -1.363388222824136e-01 + -1.583226111166723e-01 + -1.800965752913192e-01 + -2.016645989796093e-01 + -2.230289901000000e-01 + -2.441907391820846e-01 + -2.651515164004249e-01 + -2.859130554412839e-01 + -3.064769176965011e-01 + -3.268446844000000e-01 + -3.470179531091855e-01 + -3.669982968636285e-01 + -3.867872784635140e-01 + -4.063864535839295e-01 + -4.257973671999999e-01 + -4.450215551034667e-01 + -4.640605423684923e-01 + -4.829158454463851e-01 + -5.015889707095635e-01 + -5.200814146000000e-01 + -5.383946650297390e-01 + -5.565301991603658e-01 + -5.744894857268537e-01 + -5.922739837155686e-01 + -6.098851423000000e-01 + -6.273244022645037e-01 + -6.445931939756846e-01 + -6.616929394780281e-01 + -6.786250511352716e-01 + -6.953909318999999e-01 + -7.119919765952718e-01 + -7.284295696432279e-01 + -7.447050873484842e-01 + -7.608198966551055e-01 + -7.767753551999997e-01 + -7.925728126189590e-01 + -8.082136084644670e-01 + -8.236990743647939e-01 + -8.390305327768360e-01 + -8.542092970000001e-01 + -8.692366724924486e-01 + -8.841139549244775e-01 + -8.988424321942350e-01 + -9.134233831702263e-01 + -9.278580778000000e-01 + -9.421477783833053e-01 + -9.562937376266863e-01 + -9.702972006149804e-01 + -9.841594035897939e-01 + -9.978815741999999e-01 + -1.011464932626877e+00 + -1.024910689374227e+00 + -1.038220047492379e+00 + -1.051394201530088e+00 + -1.064434338000000e+00 + -1.077341636148692e+00 + -1.090117264995124e+00 + -1.102762386491716e+00 + -1.115278154872840e+00 + -1.127665716000000e+00 + -1.139926208397942e+00 + -1.152060761127338e+00 + -1.164070496370367e+00 + -1.175956528594255e+00 + -1.187719964000000e+00 + -1.199361901614307e+00 + -1.210883431375302e+00 + -1.222285636497208e+00 + -1.233569592577916e+00 + -1.244736367000000e+00 + -1.255787020138112e+00 + -1.266722603828963e+00 + -1.277544163022812e+00 + -1.288252734706093e+00 + -1.298849349000000e+00 + -1.309335029515858e+00 + -1.319710789766606e+00 + -1.329977637188551e+00 + -1.340136572985217e+00 + -1.350188590000000e+00 + -1.360134674013246e+00 + -1.369975802739515e+00 + -1.379712947700534e+00 + -1.389347073262624e+00 + -1.398879136000000e+00 + -1.408310086019347e+00 + -1.417640866058629e+00 + -1.426872412303706e+00 + -1.436005653062347e+00 + -1.445041510000000e+00 + -1.453980898788701e+00 + -1.462824726507764e+00 + -1.471573894410746e+00 + -1.480229297407323e+00 + -1.488791823000000e+00 + -1.497262352264216e+00 + -1.505641758273629e+00 + -1.513930908641532e+00 + -1.522130664940848e+00 + -1.530241881000000e+00 + -1.538265404312065e+00 + -1.546202075663511e+00 + -1.554052729949587e+00 + -1.561818194964572e+00 + -1.569499292000000e+00 + -1.577096836740392e+00 + -1.584611637631811e+00 + -1.592044497451960e+00 + -1.599396212413425e+00 + -1.606667572000000e+00 + -1.613859360067553e+00 + -1.620972353850301e+00 + -1.628007324820493e+00 + -1.634965037585305e+00 + -1.641846251000000e+00 + -1.648651718746855e+00 + -1.655382187120556e+00 + -1.662038397074428e+00 + -1.668621083574689e+00 + -1.675130975000000e+00 + -1.681568794320005e+00 + -1.687935258528783e+00 + -1.694231079461267e+00 + -1.700456962682860e+00 + -1.706613607000000e+00 + -1.712701705964896e+00 + -1.718721948142722e+00 + -1.724675016499694e+00 + -1.730561586828580e+00 + -1.736382330000000e+00 + -1.742137912457411e+00 + -1.747828994017656e+00 + -1.753456229026646e+00 + -1.759020265526974e+00 + -1.764521747000000e+00 + -1.769961312537754e+00 + -1.775339594027171e+00 + -1.780657218386706e+00 + -1.785914807192779e+00 + -1.791112977000000e+00 + -1.796252339747382e+00 + -1.801333500673453e+00 + -1.806357060360666e+00 + -1.811323614328498e+00 + -1.816233753000000e+00 + -1.821088062150410e+00 + -1.825887120985276e+00 + -1.830631504346673e+00 + -1.835321782397329e+00 + -1.839958520000000e+00 + -1.844542277375300e+00 + -1.849073608812209e+00 + -1.853553064572349e+00 + -1.857981190434394e+00 + -1.862358526000000e+00 + -1.866685606181999e+00 + -1.870962962067843e+00 + -1.875191119963197e+00 + -1.879370599902195e+00 + -1.883501918000000e+00 + -1.887585586736770e+00 + -1.891622112755978e+00 + -1.895611998485404e+00 + -1.899555741651499e+00 + -1.903453835000000e+00 + -1.907306767129976e+00 + -1.911115021853308e+00 + -1.914879078883785e+00 + -1.918599413067872e+00 + -1.922276495000000e+00 + -1.925910791456493e+00 + -1.929502763824010e+00 + -1.933052869645757e+00 + -1.936561562187136e+00 + -1.940029290000000e+00 + -1.943456497684402e+00 + -1.946843625242175e+00 + -1.950191109032846e+00 + -1.953499381145042e+00 + -1.956768869000000e+00 + -1.959999996258605e+00 + -1.963193182622893e+00 + -1.966348843806269e+00 + -1.969467390558660e+00 + -1.972549230000000e+00 + -1.975594766012145e+00 + -1.978604397775412e+00 + -1.981578520793180e+00 + -1.984517526364655e+00 + -1.987421802000000e+00 + -1.990291731861874e+00 + -1.993127695559656e+00 + -1.995930069364364e+00 + -1.998699225767272e+00 + -2.001435533000000e+00 + -2.004139355858378e+00 + -2.006811055538481e+00 + -2.009450989763890e+00 + -2.012059511961222e+00 + -2.014636972000000e+00 + -2.017183716742461e+00 + -2.019700089231340e+00 + -2.022186429001382e+00 + -2.024643071393187e+00 + -2.027070349000000e+00 + -2.029468591629637e+00 + -2.031838124095820e+00 + -2.034179268100215e+00 + -2.036492342201070e+00 + -2.038777662000000e+00 + -2.041035540156417e+00 + -2.043266284490031e+00 + -2.045470200083453e+00 + -2.047647589335177e+00 + -2.049798751000000e+00 + -2.051923980684690e+00 + -2.054023570214561e+00 + -2.056097808968247e+00 + -2.058146983649728e+00 + -2.060171377000000e+00 + -2.062171268551674e+00 + -2.064146934640815e+00 + -2.066098649159696e+00 + -2.068026683134947e+00 + -2.069931304000000e+00 + -2.071812776276246e+00 + -2.073671361471072e+00 + -2.075507318519566e+00 + -2.077320903301032e+00 + -2.079112369000000e+00 + -2.080881966139512e+00 + -2.082629940879466e+00 + -2.084356537486872e+00 + -2.086061998635378e+00 + -2.087746563000000e+00 + -2.089410466229110e+00 + -2.091053941828707e+00 + -2.092677220771137e+00 + -2.094280530723314e+00 + -2.095864097000000e+00 + -2.097428142794787e+00 + -2.098972888139794e+00 + -2.100498550462023e+00 + -2.102005344216306e+00 + -2.103493482000000e+00 + -2.104963174393948e+00 + -2.106414628045970e+00 + -2.107848047779690e+00 + -2.109263636820768e+00 + -2.110661595000000e+00 + -2.112042119471926e+00 + -2.113405405101743e+00 + -2.114751645122076e+00 + -2.116081030815763e+00 + -2.117393750000000e+00 + -2.118689987937912e+00 + -2.119969928191390e+00 + -2.121233752504371e+00 + -2.122481640223532e+00 + -2.123713768000000e+00 + -2.124930310308645e+00 + -2.126131439345980e+00 + -2.127317325650607e+00 + -2.128488137848567e+00 + -2.129644042000000e+00 + -2.130785202020548e+00 + -2.131911779449632e+00 + -2.133023934312029e+00 + -2.134121824962966e+00 + -2.135205607000000e+00 + -2.136275433910872e+00 + -2.137331457489147e+00 + -2.138373827747866e+00 + -2.139402692469194e+00 + -2.140418197999999e+00 + -2.141420489142081e+00 + -2.142409707722756e+00 + -2.143385994030927e+00 + -2.144349486926974e+00 + -2.145300323000000e+00 + -2.146238637076898e+00 + -2.147164562479522e+00 + -2.148078231051947e+00 + -2.148979772720135e+00 + -2.149869315000000e+00 + -2.150746983835218e+00 + -2.151612904662093e+00 + -2.152467200947815e+00 + -2.153309993218032e+00 + -2.154141401000000e+00 + -2.154961542883784e+00 + -2.155770535619624e+00 + -2.156568494253713e+00 + -2.157355531798206e+00 + -2.158131760000000e+00 + -2.158897289576013e+00 + -2.159652229917454e+00 + -2.160396688379106e+00 + -2.161130769707277e+00 + -2.161854579000000e+00 + -2.162568220747540e+00 + -2.163271795520776e+00 + -2.163965403104795e+00 + -2.164649143391419e+00 + -2.165323114000000e+00 + -2.165987410839904e+00 + -2.166642128874188e+00 + -2.167287362019562e+00 + -2.167923202786971e+00 + -2.168549742000000e+00 + -2.169167069289456e+00 + -2.169775273557456e+00 + -2.170374442741976e+00 + -2.170964663390078e+00 + -2.171546020000000e+00 + -2.172118595836383e+00 + -2.172682474202094e+00 + -2.173237737093693e+00 + -2.173784464448991e+00 + -2.174322736000000e+00 + -2.174852630794634e+00 + -2.175374225221640e+00 + -2.175887595177988e+00 + -2.176392816678372e+00 + -2.176889964000000e+00 + -2.177379110090651e+00 + -2.177860327096639e+00 + -2.178333686466943e+00 + -2.178799258747679e+00 + -2.179257113000000e+00 + -2.179707317299531e+00 + -2.180149939409128e+00 + -2.180585046165010e+00 + -2.181012703042297e+00 + -2.181432975000000e+00 + -2.181845926509731e+00 + -2.182251621108717e+00 + -2.182650121032542e+00 + -2.183041486916871e+00 + -2.183425780000000e+00 + -2.183803061402426e+00 + -2.184173389857596e+00 + -2.184536823542827e+00 + -2.184893420600431e+00 + -2.185243238000000e+00 + -2.185586332004080e+00 + -2.185922759056265e+00 + -2.186252574500474e+00 + -2.186575831916728e+00 + -2.186892585000000e+00 + -2.187202887393400e+00 + -2.187506791832633e+00 + -2.187804350256584e+00 + -2.188095613705712e+00 + -2.188380633000000e+00 + -2.188659458643119e+00 + -2.188932140238827e+00 + -2.189198726845117e+00 + -2.189459267002233e+00 + -2.189713809000000e+00 + -2.189962400732430e+00 + -2.190205089044370e+00 + -2.190441920581333e+00 + -2.190672942002169e+00 + -2.190898199000000e+00 + -2.191117736662499e+00 + -2.191331600149922e+00 + -2.191539834109547e+00 + -2.191742482380937e+00 + -2.191939589000000e+00 + -2.192131197889608e+00 + -2.192317351831708e+00 + -2.192498093290244e+00 + -2.192673464653123e+00 + -2.192843508000000e+00 + -2.193008265149897e+00 + -2.193167777657277e+00 + -2.193322086821774e+00 + -2.193471233640668e+00 + -2.193615259000000e+00 + -2.193754203483761e+00 + -2.193888106693908e+00 + -2.194017008313546e+00 + -2.194140948496115e+00 + -2.194259967000000e+00 + -2.194374103230534e+00 + -2.194483396307522e+00 + -2.194587885225862e+00 + -2.194687608881331e+00 + -2.194782606000000e+00 + -2.194872915200472e+00 + -2.194958575082935e+00 + -2.195039623893670e+00 + -2.195116099394696e+00 + -2.195188040000000e+00 + -2.195255484352944e+00 + -2.195318470219860e+00 + -2.195377035223315e+00 + -2.195431217130485e+00 + -2.195481054000000e+00 + -2.195526583926446e+00 + -2.195567844428364e+00 + -2.195604873029958e+00 + -2.195637707516086e+00 + -2.195666386000000e+00 + -2.195690946583878e+00 + -2.195711426545218e+00 + -2.195727863658885e+00 + -2.195740296673043e+00 + -2.195748763000000e+00 + -2.195753299607926e+00 + -2.195753945356280e+00 + -2.195750739132009e+00 + -2.195743719093693e+00 + -2.195732923000000e+00 + -2.195718388771941e+00 + -2.195700155840199e+00 + -2.195678263244660e+00 + -2.195652748934943e+00 + -2.195623652000000e+00 + -2.195591012099144e+00 + -2.195554867993407e+00 + -2.195515258985693e+00 + -2.195472225489285e+00 + -2.195425807000000e+00 + -2.195376042760528e+00 + -2.195322973614639e+00 + -2.195266640267298e+00 + -2.195207082686241e+00 + -2.195144342000000e+00 + -2.195078459809379e+00 + -2.195009476453377e+00 + -2.194937433066797e+00 + -2.194862372466152e+00 + -2.194784337000000e+00 + -2.194703368615792e+00 + -2.194619509257747e+00 + -2.194532801771278e+00 + -2.194443290305841e+00 + -2.194351018000000e+00 + -2.194256027737437e+00 + -2.194158364279782e+00 + -2.194058072250755e+00 + -2.193955195446114e+00 + -2.193849779000000e+00 + -2.193741868885436e+00 + -2.193631510785602e+00 + -2.193518750557477e+00 + -2.193403634464252e+00 + -2.193286209000000e+00 + -2.193166521091908e+00 + -2.193044618884907e+00 + -2.192920550384463e+00 + -2.192794362988794e+00 + -2.192666105000000e+00 + -2.192535825071375e+00 + -2.192403570783236e+00 + -2.192269389306454e+00 + -2.192133327558461e+00 + -2.191995432000000e+00 + -2.191855748732582e+00 + -2.191714323538803e+00 + -2.191571201647935e+00 + -2.191426427571225e+00 + -2.191280046000000e+00 + -2.191132101498374e+00 + -2.190982637495000e+00 + -2.190831697104933e+00 + -2.190679323369808e+00 + -2.190525559000000e+00 + -2.190370446239990e+00 + -2.190214026313205e+00 + -2.190056340263544e+00 + -2.189897429222788e+00 + -2.189737334000000e+00 + -2.189576094894156e+00 + -2.189413751026334e+00 + -2.189250341662785e+00 + -2.189085906605225e+00 + -2.188920484000000e+00 + -2.188754111167896e+00 + -2.188586826517446e+00 + -2.188418667831656e+00 + -2.188249671505532e+00 + -2.188079874000000e+00 + -2.187909311655257e+00 + -2.187738019850499e+00 + -2.187566033827133e+00 + -2.187393388939138e+00 + -2.187220120000000e+00 + -2.187046261198758e+00 + -2.186871845656608e+00 + -2.186696906557450e+00 + -2.186521477499284e+00 + -2.186345591000000e+00 + -2.186169278929348e+00 + -2.185992573469870e+00 + -2.185815507881449e+00 + -2.185638116930091e+00 + -2.185460435000000e+00 + -2.185282496723147e+00 + -2.185104339046128e+00 + -2.184925999471230e+00 + -2.184747515559985e+00 + -2.184568926000000e+00 + -2.184390270419004e+00 + -2.184211589307456e+00 + -2.184032923638580e+00 + -2.183854314918697e+00 + -2.183675806000000e+00 + -2.183497440664645e+00 + -2.183319263062145e+00 + -2.183141318226586e+00 + -2.182963652427783e+00 + -2.182786312000000e+00 + -2.182609343803448e+00 + -2.182432796909005e+00 + -2.182256720850984e+00 + -2.182081165100584e+00 + -2.181906180000000e+00 + -2.181731816772078e+00 + -2.181558127901617e+00 + -2.181385166690271e+00 + -2.181212987245827e+00 + -2.181041644000000e+00 + -2.180871191888493e+00 + -2.180701687214938e+00 + -2.180533187286951e+00 + -2.180365750436408e+00 + -2.180199435000000e+00 + -2.180034299706266e+00 + -2.179870405073628e+00 + -2.179707812476292e+00 + -2.179546583956951e+00 + -2.179386782000000e+00 + -2.179228469569652e+00 + -2.179071710572415e+00 + -2.178916570209873e+00 + -2.178763115274171e+00 + -2.178611412000000e+00 + -2.178461526719817e+00 + -2.178313527960817e+00 + -2.178167485170301e+00 + -2.178023468394170e+00 + -2.177881548000000e+00 + -2.177741794911888e+00 + -2.177604281585152e+00 + -2.177469081134519e+00 + -2.177336267165003e+00 + -2.177205914000000e+00 + -2.177078096781969e+00 + -2.176952892179310e+00 + -2.176830377266735e+00 + -2.176710629289710e+00 + -2.176593727000000e+00 + -2.176479750089725e+00 + -2.176368778170715e+00 + -2.176260892035270e+00 + -2.176156174290115e+00 + -2.176054707000000e+00 + -2.175956572480315e+00 + -2.175861855847520e+00 + -2.175770642395214e+00 + -2.175683016800304e+00 + -2.175599066000000e+00 + -2.175518878125867e+00 + -2.175442540126260e+00 + -2.175370140365612e+00 + -2.175301769822078e+00 + -2.175237519000000e+00 + -2.175177478422601e+00 + -2.175121740498959e+00 + -2.175070398200953e+00 + -2.175023544771637e+00 + -2.174981275000000e+00 + -2.174943684570890e+00 + -2.174910868831887e+00 + -2.174882924320826e+00 + -2.174859949548785e+00 + -2.174842043000000e+00 + -2.174829303331104e+00 + -2.174821830410927e+00 + -2.174819725228089e+00 + -2.174823090027552e+00 + -2.174832027000000e+00 + -2.174846638699704e+00 + -2.174867029559900e+00 + -2.174893304738549e+00 + -2.174925569834485e+00 + -2.174963931000000e+00 + -2.175008495084293e+00 + -2.175059370394289e+00 + -2.175116665887380e+00 + -2.175180491027200e+00 + -2.175250956000000e+00 + -2.175328171805043e+00 + -2.175412250937077e+00 + -2.175503306357684e+00 + -2.175601451271103e+00 + -2.175706800000000e+00 + -2.175819467765500e+00 + -2.175939570549688e+00 + -2.176067225041086e+00 + -2.176202548787411e+00 + -2.176345660000000e+00 + -2.176496677644949e+00 + -2.176655722183164e+00 + -2.176822914601843e+00 + -2.176998376191533e+00 + -2.177182229000000e+00 + -2.177374595921169e+00 + -2.177575601341799e+00 + -2.177785370087074e+00 + -2.178004027196875e+00 + -2.178231699000000e+00 + -2.178468512862275e+00 + -2.178714597011325e+00 + -2.178970080062299e+00 + -2.179235091002944e+00 + -2.179509760000000e+00 + -2.179794218272507e+00 + -2.180088598277346e+00 + -2.180393032665419e+00 + -2.180707654074028e+00 + -2.181032597000000e+00 + -2.181367997183408e+00 + -2.181713990526695e+00 + -2.182070713375897e+00 + -2.182438302803596e+00 + -2.182816897000000e+00 + -2.183206635150288e+00 + -2.183607657686531e+00 + -2.184020105275964e+00 + -2.184444118610974e+00 + -2.184879840000000e+00 + -2.185327412889597e+00 + -2.185786981109685e+00 + -2.186258689137973e+00 + -2.186742682377725e+00 + -2.187239107000000e+00 + -2.187748109862624e+00 + -2.188269838801850e+00 + -2.188804442677439e+00 + -2.189352071523296e+00 + -2.189912875000000e+00 + -2.190487003093955e+00 + -2.191074608322116e+00 + -2.191675843787203e+00 + -2.192290862610885e+00 + -2.192919819000000e+00 + -2.193562867915730e+00 + -2.194220164552147e+00 + -2.194891865404003e+00 + -2.195578128862665e+00 + -2.196279113000000e+00 + -2.196994976008069e+00 + -2.197725877814248e+00 + -2.198471979076637e+00 + -2.199233441010543e+00 + -2.200010426000000e+00 + -2.200803097224683e+00 + -2.201611618154960e+00 + -2.202436152922896e+00 + -2.203276866629103e+00 + -2.204133924999999e+00 + -2.205007494076377e+00 + -2.205897739759803e+00 + -2.206804828380775e+00 + -2.207728927012060e+00 + -2.208670203000000e+00 + -2.209628824019662e+00 + -2.210604958519273e+00 + -2.211598775212799e+00 + -2.212610442959744e+00 + -2.213640131000000e+00 + -2.214688008997179e+00 + -2.215754247358006e+00 + -2.216839016713686e+00 + -2.217942487809252e+00 + -2.219064832000000e+00 + -2.220206221175054e+00 + -2.221366827800435e+00 + -2.222546824259503e+00 + -2.223746382727115e+00 + -2.224965677000000e+00 + -2.226204881636015e+00 + -2.227464170011377e+00 + -2.228743716360184e+00 + -2.230043696636770e+00 + -2.231364286000000e+00 + -2.232705659360148e+00 + -2.234067993079961e+00 + -2.235451464138931e+00 + -2.236856249856844e+00 + -2.238282527000000e+00 + -2.239730472524265e+00 + -2.241200265638654e+00 + -2.242692085287406e+00 + -2.244206109271373e+00 + -2.245742517000000e+00 + -2.247301488882056e+00 + -2.248883204910052e+00 + -2.250487845315945e+00 + -2.252115590911750e+00 + -2.253766623000000e+00 + -2.255441123360801e+00 + -2.257139274542631e+00 + -2.258861259219423e+00 + -2.260607260005651e+00 + -2.262377460000000e+00 + -2.264172042724291e+00 + -2.265991192137124e+00 + -2.267835092970031e+00 + -2.269703930922391e+00 + -2.271597891000000e+00 + -2.273517158096056e+00 + -2.275461918662951e+00 + -2.277432359442962e+00 + -2.279428667085979e+00 + -2.281451029000000e+00 + -2.283499633104788e+00 + -2.285574667389452e+00 + -2.287676320195930e+00 + -2.289804780398682e+00 + -2.291960237000000e+00 + -2.294142879454985e+00 + -2.296352898805551e+00 + -2.298590485768695e+00 + -2.300855830078550e+00 + -2.303149122999999e+00 + -2.305470556795997e+00 + -2.307820323545887e+00 + -2.310198615647936e+00 + -2.312605626084681e+00 + -2.315041548000000e+00 + -2.317506574745174e+00 + -2.320000900224320e+00 + -2.322524719122656e+00 + -2.325078227061991e+00 + -2.327661619000000e+00 + -2.330275089774933e+00 + -2.332918835677479e+00 + -2.335593053485966e+00 + -2.338297940187764e+00 + -2.341033693000000e+00 + -2.343800509406319e+00 + -2.346598587410773e+00 + -2.349428125303093e+00 + -2.352289321686241e+00 + -2.355182376000000e+00 + -2.358107488272472e+00 + -2.361064858786305e+00 + -2.364054687769198e+00 + -2.367077175375671e+00 + -2.370132523000000e+00 + -2.373220932737141e+00 + -2.376342606269360e+00 + -2.379497745810629e+00 + -2.382686554578887e+00 + -2.385909236000000e+00 + -2.389165993580208e+00 + -2.392457030846979e+00 + -2.395782552198058e+00 + -2.399142763298191e+00 + -2.402537869000000e+00 + -2.405968074028050e+00 + -2.409433584975734e+00 + -2.412934608682329e+00 + -2.416471351683178e+00 + -2.420044020999999e+00 + -2.423652824137149e+00 + -2.427297969206864e+00 + -2.430979664728804e+00 + -2.434698119632543e+00 + -2.438453543000000e+00 + -2.442246144168148e+00 + -2.446076133195298e+00 + -2.449943720571852e+00 + -2.453849117184546e+00 + -2.457792534000000e+00 + -2.461774182279110e+00 + -2.465794274341647e+00 + -2.469853022790889e+00 + -2.473950640299041e+00 + -2.478087340000000e+00 + -2.482263335430129e+00 + -2.486478840559030e+00 + -2.490734069661931e+00 + -2.495029237377275e+00 + -2.499364559000000e+00 + -2.503740250274207e+00 + -2.508156527124766e+00 + -2.512613605692700e+00 + -2.517111702474631e+00 + -2.521651035000000e+00 + -2.526231821279088e+00 + -2.530854278665131e+00 + -2.535518625205626e+00 + -2.540225080261870e+00 + -2.544973863000000e+00 + -2.549765192573217e+00 + -2.554599288888442e+00 + -2.559476372494764e+00 + -2.564396664604125e+00 + -2.569360386000000e+00 + -2.574367757513646e+00 + -2.579419001423863e+00 + -2.584514340338642e+00 + -2.589653996851589e+00 + -2.594838193999999e+00 + -2.600067155253186e+00 + -2.605341104662645e+00 + -2.610660266783872e+00 + -2.616024866689215e+00 + -2.621435129000000e+00 + -2.626891278432673e+00 + -2.632393541366548e+00 + -2.637942144571998e+00 + -2.643537314797249e+00 + -2.649179279000000e+00 + -2.654868264471787e+00 + -2.660604499292826e+00 + -2.666388211776204e+00 + -2.672219630341834e+00 + -2.678098984000000e+00 + -2.684026502306392e+00 + -2.690002415494505e+00 + -2.696026954017429e+00 + -2.702100348331385e+00 + -2.708222828000000e+00 + -2.714394620651795e+00 + -2.720615948464916e+00 + -2.726887030965477e+00 + -2.733208085290139e+00 + -2.739579324000000e+00 + -2.746000955816228e+00 + -2.752473185385865e+00 + -2.758996214641690e+00 + -2.765570242469367e+00 + -2.772195463000000e+00 + -2.778872066776275e+00 + -2.785600241574056e+00 + -2.792380171842594e+00 + -2.799212037606767e+00 + -2.806096015000000e+00 + -2.813032277129447e+00 + -2.820020994035244e+00 + -2.827062331911353e+00 + -2.834156451970738e+00 + -2.841303512999999e+00 + -2.848503671252426e+00 + -2.855757077985244e+00 + -2.863063881095023e+00 + -2.870424224890850e+00 + -2.877838249999999e+00 + -2.885306093928394e+00 + -2.892827890388094e+00 + -2.900403769651381e+00 + -2.908033857857018e+00 + -2.915718277999999e+00 + -2.923457150039019e+00 + -2.931250588977881e+00 + -2.939098706889091e+00 + -2.947001612872150e+00 + -2.954959411999998e+00 + -2.962972205810575e+00 + -2.971040091434060e+00 + -2.979163163083816e+00 + -2.987341511831155e+00 + -2.995575224999998e+00 + -3.003864386499012e+00 + -3.012209075546996e+00 + -3.020609368336417e+00 + -3.029065337835770e+00 + -3.037577052999999e+00 + -3.046144579520789e+00 + -3.054767979666142e+00 + -3.063447312238444e+00 + -3.072182631692820e+00 + -3.080973988999999e+00 + -3.089821432099915e+00 + -3.098725004829577e+00 + -3.107684748048404e+00 + -3.116700699185534e+00 + -3.125772890999999e+00 + -3.134901352715559e+00 + -3.144086110699870e+00 + -3.153327188100508e+00 + -3.162624603843408e+00 + -3.171978372999998e+00 + -3.181388507546933e+00 + -3.190855016073102e+00 + -3.200377903469057e+00 + -3.209957169965227e+00 + -3.219592812999998e+00 + -3.229284827363896e+00 + -3.239033203402719e+00 + -3.248837927724427e+00 + -3.258698982652799e+00 + -3.268616347999998e+00 + -3.278590000914418e+00 + -3.288619913401403e+00 + -3.298706054004673e+00 + -3.308848387625167e+00 + -3.319046875999998e+00 + -3.329301477934322e+00 + -3.339612147844228e+00 + -3.349978836592516e+00 + -3.360401490990458e+00 + -3.370880054999998e+00 + -3.381414469596773e+00 + -3.392004670266620e+00 + -3.402650589976440e+00 + -3.413352159446950e+00 + -3.424109303999998e+00 + -3.434921945057392e+00 + -3.445790001867386e+00 + -3.456713390096515e+00 + -3.467692020464062e+00 + -3.478725800999998e+00 + -3.489814636890736e+00 + -3.500958427789171e+00 + -3.512157070764700e+00 + -3.523410460589800e+00 + -3.534718486999998e+00 + -3.546081035880271e+00 + -3.557497990199610e+00 + -3.568969229634993e+00 + -3.580494629586285e+00 + -3.592074061999998e+00 + -3.603707395759104e+00 + -3.615394495446970e+00 + -3.627135222559569e+00 + -3.638929435115233e+00 + -3.650776987000000e+00 + -3.662677728742245e+00 + -3.674631507325805e+00 + -3.686638166579447e+00 + -3.698697546469576e+00 + -3.710809483000000e+00 + -3.722973808828209e+00 + -3.735190352595157e+00 + -3.747458940125227e+00 + -3.759779394010754e+00 + -3.772151532000000e+00 + -3.784575168342916e+00 + -3.797050115062026e+00 + -3.809576180292756e+00 + -3.822153166803174e+00 + -3.834780875000000e+00 + -3.847459102820189e+00 + -3.860187643203489e+00 + -3.872966285667494e+00 + -3.885794816080159e+00 + -3.898673017000000e+00 + -3.911600667911320e+00 + -3.924577543724543e+00 + -3.937603416269590e+00 + -3.950678053996523e+00 + -3.963801221000000e+00 + -3.976972678103186e+00 + -3.990192183512261e+00 + -4.003459491521890e+00 + -4.016774351164608e+00 + -4.030136509000000e+00 + -4.043545709147031e+00 + -4.057001691149858e+00 + -4.070504190840202e+00 + -4.084052939835804e+00 + -4.097647667000000e+00 + -4.111288098419088e+00 + -4.124973955231095e+00 + -4.138704955371648e+00 + -4.152480813397504e+00 + -4.166301240000000e+00 + -4.180165942572286e+00 + -4.194074624537170e+00 + -4.208026986370140e+00 + -4.222022725101974e+00 + -4.236061533000000e+00 + -4.250143098846027e+00 + -4.264267108996074e+00 + -4.278433246261039e+00 + -4.292641188627767e+00 + -4.306890611000000e+00 + -4.321181185386233e+00 + -4.335512579090955e+00 + -4.349884456391911e+00 + -4.364296478350024e+00 + -4.378748302000000e+00 + -4.393239580901771e+00 + -4.407769964394226e+00 + -4.422339098999587e+00 + -4.436946628138934e+00 + -4.451592191000000e+00 + -4.466275423153566e+00 + -4.480995955945297e+00 + -4.495753418053649e+00 + -4.510547435209278e+00 + -4.525377628000000e+00 + -4.540243613376725e+00 + -4.555145006346341e+00 + -4.570081418154680e+00 + -4.585052454714511e+00 + -4.600057719000000e+00 + -4.615096811360685e+00 + -4.630169328028963e+00 + -4.645274861878902e+00 + -4.660413001844071e+00 + -4.675583333000000e+00 + -4.690785437259527e+00 + -4.706018892955582e+00 + -4.721283275134317e+00 + -4.736578154793736e+00 + -4.751903099000000e+00 + -4.767257671719769e+00 + -4.782641433752779e+00 + -4.798053942304498e+00 + -4.813494749953581e+00 + -4.828963406000000e+00 + -4.844459456896403e+00 + -4.859982445123970e+00 + -4.875531909767719e+00 + -4.891107385884028e+00 + -4.906708405000000e+00 + -4.922334495555203e+00 + -4.937985181840751e+00 + -4.953659984814029e+00 + -4.969358421588884e+00 + -4.985080006000000e+00 + -5.000824248840914e+00 + -5.016590656340991e+00 + -5.032378731598668e+00 + -5.048187974277996e+00 + -5.064017880000000e+00 + -5.079867940973151e+00 + -5.095737645459726e+00 + -5.111626480823102e+00 + -5.127533934923204e+00 + -5.143459499999997e+00 + -5.159402672483111e+00 + -5.175362954369220e+00 + -5.191339851303958e+00 + -5.207332872891304e+00 + -5.223341533999998e+00 + -5.239365353688981e+00 + -5.255403855076862e+00 + -5.271456565155025e+00 + -5.287523015792912e+00 + -5.303602743999997e+00 + -5.319695290809813e+00 + -5.335800201177900e+00 + -5.351917023850607e+00 + -5.368045312413205e+00 + -5.384184625999997e+00 + -5.400334527792659e+00 + -5.416494583936292e+00 + -5.432664365069262e+00 + -5.448843447960337e+00 + -5.465031412999998e+00 + -5.481227843963791e+00 + -5.497432330198948e+00 + -5.513644465003656e+00 + -5.529863846001168e+00 + -5.546090074999998e+00 + -5.562322757794160e+00 + -5.578561506278419e+00 + -5.594805935740466e+00 + -5.611055664858841e+00 + -5.627310317999997e+00 + -5.643569523867812e+00 + -5.659832914603254e+00 + -5.676100126691991e+00 + -5.692370802379017e+00 + -5.708644587999997e+00 + -5.724921133351554e+00 + -5.741200092816319e+00 + -5.757481124931912e+00 + -5.773763893288205e+00 + -5.790048065999996e+00 + -5.806333315035348e+00 + -5.822619317227983e+00 + -5.838905753168464e+00 + -5.855192307810226e+00 + -5.871478670999998e+00 + -5.887764536642293e+00 + -5.904049603224381e+00 + -5.920333573291820e+00 + -5.936616154283948e+00 + -5.952897057999997e+00 + -5.969175999997380e+00 + -5.985452700712029e+00 + -6.001726884408804e+00 + -6.017998279848357e+00 + -6.034266620999998e+00 + -6.050531645917840e+00 + -6.066793096565948e+00 + -6.083050719154321e+00 + -6.099304265265417e+00 + -6.115553489999997e+00 + -6.131798152082848e+00 + -6.148038016850530e+00 + -6.164272852974367e+00 + -6.180502432221914e+00 + -6.196726531999996e+00 + -6.212944934149927e+00 + -6.229157424398349e+00 + -6.245363792906498e+00 + -6.261563835474968e+00 + -6.277757350999996e+00 + -6.293944141712862e+00 + -6.310124016459128e+00 + -6.326296787703612e+00 + -6.342462271423720e+00 + -6.358620288999997e+00 + -6.374770666045148e+00 + -6.390913231950829e+00 + -6.407047820441565e+00 + -6.423174270811367e+00 + -6.439292425999997e+00 + -6.455402132459349e+00 + -6.471503242529590e+00 + -6.487595612302881e+00 + -6.503679101824962e+00 + -6.519753575999998e+00 + -6.535818903908587e+00 + -6.551874959678351e+00 + -6.567921621040533e+00 + -6.583958769810407e+00 + -6.599986292999997e+00 + -6.616004081814032e+00 + -6.632012031732002e+00 + -6.648010042213294e+00 + -6.663998017633650e+00 + -6.679975866999997e+00 + -6.695943503153600e+00 + -6.711900843425355e+00 + -6.727847809100131e+00 + -6.743784326279565e+00 + -6.759710325999998e+00 + -6.775625743222601e+00 + -6.791530516957345e+00 + -6.807424590371784e+00 + -6.823307911868753e+00 + -6.839180434000000e+00 + -6.855042113095231e+00 + -6.870892911056689e+00 + -6.886732793343159e+00 + -6.902561729209182e+00 + -6.918379693000000e+00 + -6.934186663377454e+00 + -6.949982623974822e+00 + -6.965767562024019e+00 + -6.981541468861679e+00 + -6.997304341000000e+00 + -7.013056179149240e+00 + -7.028796988372566e+00 + -7.044526777567921e+00 + -7.060245560311449e+00 + -7.075953355000000e+00 + -7.091650184045992e+00 + -7.107336074531737e+00 + -7.123011057484204e+00 + -7.138675168614964e+00 + -7.154328448000000e+00 + -7.169970939523060e+00 + -7.185602692089082e+00 + -7.201223758621499e+00 + -7.216834196750369e+00 + -7.232434069000000e+00 + -7.248023441650831e+00 + -7.263602384451917e+00 + -7.279170972021925e+00 + -7.294729285389790e+00 + -7.310277408000000e+00 + -7.325815426345584e+00 + -7.341343434315181e+00 + -7.356861529294433e+00 + -7.372369811668458e+00 + -7.387868387000000e+00 + -7.403357365322682e+00 + -7.418836861854650e+00 + -7.434306995371617e+00 + -7.449767888578398e+00 + -7.465219669000000e+00 + -7.480662468362842e+00 + -7.496096423635060e+00 + -7.511521675509539e+00 + -7.526938368822738e+00 + -7.542346653000000e+00 + -7.557746681513402e+00 + -7.573138613106206e+00 + -7.588522610348394e+00 + -7.603898840111169e+00 + -7.619267474000000e+00 + -7.634628687556104e+00 + -7.649982660818226e+00 + -7.665329578157865e+00 + -7.680669629212444e+00 + -7.696003007000000e+00 + -7.711329908041110e+00 + -7.726650535322031e+00 + -7.741965095546557e+00 + -7.757273799081691e+00 + -7.772576861000000e+00 + -7.787874500482072e+00 + -7.803166941820082e+00 + -7.818454413357075e+00 + -7.833737148083599e+00 + -7.849015383000000e+00 + -7.864289358883056e+00 + -7.879559322305754e+00 + -7.894825523493435e+00 + -7.910088216491122e+00 + -7.925347660000000e+00 + -7.940604117030949e+00 + -7.955857856656654e+00 + -7.971109151088187e+00 + -7.986358275553978e+00 + -8.001605510999999e+00 + -8.016851143003514e+00 + -8.032095461580266e+00 + -8.047338760488806e+00 + -8.062581337981985e+00 + -8.077823497000001e+00 + -8.093065544394179e+00 + -8.108307791577566e+00 + -8.123550554205780e+00 + -8.138794153086785e+00 + -8.154038912999997e+00 + -8.169285162395173e+00 + -8.184533235306290e+00 + -8.199783469410583e+00 + -8.215036206329255e+00 + -8.230291792999997e+00 + -8.245550580528674e+00 + -8.260812923863309e+00 + -8.276079182235739e+00 + -8.291349720375887e+00 + -8.306624906999998e+00 + -8.321905114401627e+00 + -8.337190720129563e+00 + -8.352482105562956e+00 + -8.367779656388556e+00 + -8.383083762999997e+00 + -8.398394819954635e+00 + -8.413713227271362e+00 + -8.429039388338369e+00 + -8.444373710123081e+00 + -8.459716604999997e+00 + -8.475068489773328e+00 + -8.490429785807564e+00 + -8.505800918193746e+00 + -8.521182316459129e+00 + -8.536574414999997e+00 + -8.551977652264261e+00 + -8.567392471335332e+00 + -8.582819319266729e+00 + -8.598258647834163e+00 + -8.613710912999998e+00 + -8.629176574613023e+00 + -8.644656098315155e+00 + -8.660149953296175e+00 + -8.675658612460374e+00 + -8.691182553999997e+00 + -8.706722260346437e+00 + -8.722278218076596e+00 + -8.737850917931995e+00 + -8.753440855866357e+00 + -8.769048531999996e+00 + -8.784674450012169e+00 + -8.800319118245726e+00 + -8.815983049456063e+00 + -8.831666761752983e+00 + -8.847370776999997e+00 + -8.863095620572640e+00 + -8.878841823409489e+00 + -8.894609920288579e+00 + -8.910400450202564e+00 + -8.926213956999996e+00 + -8.942050988642462e+00 + -8.957912097948702e+00 + -8.973797841249739e+00 + -8.989708778929735e+00 + -9.005645476999996e+00 + -9.021608505891232e+00 + -9.037598440089864e+00 + -9.053615857732957e+00 + -9.069661341483132e+00 + -9.085735478999997e+00 + -9.101838862125330e+00 + -9.117972087538210e+00 + -9.134135755396374e+00 + -9.150330469883286e+00 + -9.166556840999997e+00 + -9.182815483079517e+00 + -9.199107013675079e+00 + -9.215432054583626e+00 + -9.231791233265957e+00 + -9.248185180999997e+00 + -9.264614532683632e+00 + -9.281079929109534e+00 + -9.297582014702897e+00 + -9.314121437654787e+00 + -9.330698850999996e+00 + -9.347314912003528e+00 + -9.363970283188971e+00 + -9.380665630745685e+00 + -9.397401624940878e+00 + -9.414178940999998e+00 + -9.430998258244742e+00 + -9.447860260503859e+00 + -9.464765635761319e+00 + -9.481715077019253e+00 + -9.498709280999996e+00 + -9.515748948037771e+00 + -9.532834784442173e+00 + -9.549967500513571e+00 + -9.567147810785697e+00 + -9.584376433999996e+00 + -9.601654092679016e+00 + -9.618981514566920e+00 + -9.636359431588877e+00 + -9.653788580476306e+00 + -9.671269701999998e+00 + -9.688803540653204e+00 + -9.706390846469759e+00 + -9.724032373152683e+00 + -9.741728878390186e+00 + -9.759481124999997e+00 + -9.777289880050315e+00 + -9.795155915261526e+00 + -9.813080006095444e+00 + -9.831062932433847e+00 + -9.849105478999997e+00 + -9.867208434586416e+00 + -9.885372592754736e+00 + -9.903598750780114e+00 + -9.921887710289466e+00 + -9.940240277999996e+00 + -9.958657264807959e+00 + -9.977139486156000e+00 + -9.995687760994512e+00 + -1.001430291248964e+01 + -1.003298577000000e+01 + -1.005173716741557e+01 + -1.007055794170109e+01 + -1.008944893313717e+01 + -1.010841098632109e+01 + -1.012744495000000e+01 + -1.014655167843811e+01 + -1.016573203809090e+01 + -1.018498689280856e+01 + -1.020431709913334e+01 + -1.022372353000000e+01 + -1.024320706932260e+01 + -1.026276860085199e+01 + -1.028240900753776e+01 + -1.030212917226508e+01 + -1.032192999000000e+01 + -1.034181236270672e+01 + -1.036177718920571e+01 + -1.038182537682789e+01 + -1.040195784652257e+01 + -1.042217551000000e+01 + -1.044247927800797e+01 + -1.046287008429113e+01 + -1.048334886197221e+01 + -1.050391653528098e+01 + -1.052457404000000e+01 + -1.054532232135862e+01 + -1.056616233045517e+01 + -1.058709501821704e+01 + -1.060812133414642e+01 + -1.062924224000000e+01 + -1.065045870478386e+01 + -1.067177169452023e+01 + -1.069318217826154e+01 + -1.071469113174534e+01 + -1.073629954000000e+01 + -1.075800839260036e+01 + -1.077981867489276e+01 + -1.080173138018267e+01 + -1.082374751517595e+01 + -1.084586808000000e+01 + -1.086809407471729e+01 + -1.089042651905600e+01 + -1.091286643223940e+01 + -1.093541482646511e+01 + -1.095807273000000e+01 + -1.098084118002027e+01 + -1.100372120627546e+01 + -1.102671384288809e+01 + -1.104982013415814e+01 + -1.107304113000000e+01 + -1.109637788366843e+01 + -1.111983144958023e+01 + -1.114340288661973e+01 + -1.116709326043168e+01 + -1.119090364000000e+01 + -1.121483509746141e+01 + -1.123888871051257e+01 + -1.126306556352589e+01 + -1.128736674843474e+01 + -1.131179335000000e+01 + -1.133634645465832e+01 + -1.136102717560643e+01 + -1.138583662099362e+01 + -1.141077588304154e+01 + -1.143584608000000e+01 + -1.146104834278586e+01 + -1.148638378227322e+01 + -1.151185351768562e+01 + -1.153745868860526e+01 + -1.156320043000000e+01 + -1.158907987623694e+01 + -1.161509817570602e+01 + -1.164125647703402e+01 + -1.166755592508495e+01 + -1.169399768000000e+01 + -1.172058291041322e+01 + -1.174731277861368e+01 + -1.177418844974534e+01 + -1.180121109657743e+01 + -1.182838189999999e+01 + -1.185570204579555e+01 + -1.188317272006268e+01 + -1.191079511332836e+01 + -1.193857042312863e+01 + -1.196649984999999e+01 + -1.199458459773775e+01 + -1.202282587700695e+01 + -1.205122490269986e+01 + -1.207978289369385e+01 + -1.210850107000000e+01 + -1.213738065440104e+01 + -1.216642287877588e+01 + -1.219562898067898e+01 + -1.222500020303083e+01 + -1.225453779000000e+01 + -1.228424298812801e+01 + -1.231411705144751e+01 + -1.234416123799292e+01 + -1.237437680934280e+01 + -1.240476502999999e+01 + -1.243532716862228e+01 + -1.246606450371358e+01 + -1.249697831672881e+01 + -1.252806989018327e+01 + -1.255934050999999e+01 + -1.259079146663310e+01 + -1.262242406008652e+01 + -1.265423959346900e+01 + -1.268623937120698e+01 + -1.271842469999999e+01 + -1.275079689157634e+01 + -1.278335727210730e+01 + -1.281610716656313e+01 + -1.284904789393346e+01 + -1.288218078999999e+01 + -1.291550719883721e+01 + -1.294902845305343e+01 + -1.298274589252790e+01 + -1.301666087289315e+01 + -1.305077474999999e+01 + -1.308508888000826e+01 + -1.311960462335401e+01 + -1.315432334734565e+01 + -1.318924642810263e+01 + -1.322437523999999e+01 + -1.325971115825294e+01 + -1.329525556797775e+01 + -1.333100986045822e+01 + -1.336697543256989e+01 + -1.340315367999999e+01 + -1.343954599979837e+01 + -1.347615379884262e+01 + -1.351297848978655e+01 + -1.355002149050285e+01 + -1.358728421999999e+01 + -1.362476809975143e+01 + -1.366247455932581e+01 + -1.370040503112116e+01 + -1.373856094968169e+01 + -1.377694375999999e+01 + -1.381555491216690e+01 + -1.385439585021465e+01 + -1.389346802391279e+01 + -1.393277289476898e+01 + -1.397231192999999e+01 + -1.401208659972945e+01 + -1.405209837359219e+01 + -1.409234872413346e+01 + -1.413283912961124e+01 + -1.417357107999999e+01 + -1.421454607102127e+01 + -1.425576559243092e+01 + -1.429723113890712e+01 + -1.433894421536596e+01 + -1.438090632999999e+01 + -1.442311899332400e+01 + -1.446558371903957e+01 + -1.450830202765583e+01 + -1.455127544879836e+01 + -1.459450550999999e+01 + -1.463799373973040e+01 + -1.468174167767078e+01 + -1.472575086722947e+01 + -1.477002285383887e+01 + -1.481455918999999e+01 + -1.485936143285468e+01 + -1.490443114031971e+01 + -1.494976987417127e+01 + -1.499537920245961e+01 + -1.504126069999999e+01 + -1.508741594534576e+01 + -1.513384651602358e+01 + -1.518055399754435e+01 + -1.522753998778076e+01 + -1.527480607999999e+01 + -1.532235386668537e+01 + -1.537018495189360e+01 + -1.541830094448208e+01 + -1.546670345694024e+01 + -1.551539410999999e+01 + -1.556437452805486e+01 + -1.561364632974880e+01 + -1.566321114034704e+01 + -1.571307059764629e+01 + -1.576322633999999e+01 + -1.581368000886133e+01 + -1.586443325932826e+01 + -1.591548774371123e+01 + -1.596684510633198e+01 + -1.601850700999999e+01 + -1.607047512763592e+01 + -1.612275112310131e+01 + -1.617533666634843e+01 + -1.622823344044972e+01 + -1.628144312999999e+01 + -1.633496741991010e+01 + -1.638880799548294e+01 + -1.644296655089035e+01 + -1.649744479372194e+01 + -1.655224442999999e+01 + -1.660736716535794e+01 + -1.666281471098534e+01 + -1.671858878335293e+01 + -1.677469110504862e+01 + -1.683112339999999e+01 + -1.688788739643611e+01 + -1.694498483759857e+01 + -1.700241746523662e+01 + -1.706018701398879e+01 + -1.711829522999999e+01 + -1.717674386844329e+01 + -1.723553468924849e+01 + -1.729466945458232e+01 + -1.735414992865347e+01 + -1.741397788000000e+01 + -1.747415508099178e+01 + -1.753468330867943e+01 + -1.759556434768274e+01 + -1.765679999203036e+01 + -1.771839203000000e+01 + -1.778034225038387e+01 + -1.784265246094084e+01 + -1.790532446959567e+01 + -1.796836007816754e+01 + -1.803176110000000e+01 + -1.809552935720682e+01 + -1.815966667575656e+01 + -1.822417488078262e+01 + -1.828905579597735e+01 + -1.835431126000000e+01 + -1.841994311958100e+01 + -1.848595321475806e+01 + -1.855234338946741e+01 + -1.861911549709020e+01 + -1.868627140000000e+01 + -1.875381296458075e+01 + -1.882174205218422e+01 + -1.889006052915166e+01 + -1.895877027181235e+01 + -1.902787316000000e+01 + -1.909737107797965e+01 + -1.916726592078253e+01 + -1.923755957952593e+01 + -1.930825393714747e+01 + -1.937935090000000e+01 + -1.945085238647674e+01 + -1.952276030080435e+01 + -1.959507655061933e+01 + -1.966780305499929e+01 + -1.974094174000000e+01 + -1.981449453618971e+01 + -1.988846337667131e+01 + -1.996285019538828e+01 + -2.003765692760933e+01 + -2.011288552000000e+01 + -2.018853792621815e+01 + -2.026461609876727e+01 + -2.034112199510926e+01 + -2.041805758075517e+01 + -2.049542482000000e+01 + -2.057322568006621e+01 + -2.065146214471047e+01 + -2.073013619484967e+01 + -2.080924980240138e+01 + -2.088880495999999e+01 + -2.096880367169853e+01 + -2.104924793164823e+01 + -2.113013973534757e+01 + -2.121148108557274e+01 + -2.129327399999999e+01 + -2.137552050224973e+01 + -2.145822260294134e+01 + -2.154138232011573e+01 + -2.162500168821614e+01 + -2.170908273999999e+01 + -2.179362750931509e+01 + -2.187863804236205e+01 + -2.196411638687395e+01 + -2.205006458870765e+01 + -2.213648469999998e+01 + -2.222337877888525e+01 + -2.231074889087196e+01 + -2.239859710699802e+01 + -2.248692550346576e+01 + -2.257573614999999e+01 + -2.266503111825121e+01 + -2.275481250533621e+01 + -2.284508240538831e+01 + -2.293584289979252e+01 + -2.302709608999998e+01 + -2.311884408797131e+01 + -2.321108899308483e+01 + -2.330383291176923e+01 + -2.339707796636268e+01 + -2.349082627999998e+01 + -2.358507997580010e+01 + -2.367984117841246e+01 + -2.377511201965127e+01 + -2.387089464198777e+01 + -2.396719118999998e+01 + -2.406400380890314e+01 + -2.416133464354705e+01 + -2.425918584868402e+01 + -2.435755959379285e+01 + -2.445645803999998e+01 + -2.455588334675619e+01 + -2.465583769169985e+01 + -2.475632325621871e+01 + -2.485734222078360e+01 + -2.495889676999998e+01 + -2.506098909313465e+01 + -2.516362138717989e+01 + -2.526679585042222e+01 + -2.537051468121954e+01 + -2.547478008999998e+01 + -2.557959429416147e+01 + -2.568495950782481e+01 + -2.579087794894506e+01 + -2.589735184307986e+01 + -2.600438342000000e+01 + -2.611197491414786e+01 + -2.622012856937007e+01 + -2.632884662779481e+01 + -2.643813132670684e+01 + -2.654798492000000e+01 + -2.665840967182968e+01 + -2.676940784333127e+01 + -2.688098169572292e+01 + -2.699313349264397e+01 + -2.710586551000000e+01 + -2.721918002998715e+01 + -2.733307932892397e+01 + -2.744756569229334e+01 + -2.756264142140602e+01 + -2.767830881000000e+01 + -2.779457014947893e+01 + -2.791142774510221e+01 + -2.802888390934165e+01 + -2.814694096000261e+01 + -2.826560121000000e+01 + -2.838486697334714e+01 + -2.850474058224100e+01 + -2.862522436986088e+01 + -2.874632066501767e+01 + -2.886803181000000e+01 + -2.899036015446983e+01 + -2.911330804180568e+01 + -2.923687781925054e+01 + -2.936107184331833e+01 + -2.948589248000000e+01 + -2.961134209910011e+01 + -2.973742306338333e+01 + -2.986413774439124e+01 + -2.999148852946843e+01 + -3.011947780000000e+01 + -3.024810793640462e+01 + -3.037738133418102e+01 + -3.050730039248281e+01 + -3.063786751048302e+01 + -3.076908508999995e+01 + -3.090095553801825e+01 + -3.103348127528379e+01 + -3.116666472242296e+01 + -3.130050829541340e+01 + -3.143501442000000e+01 + -3.157018552904646e+01 + -3.170602405762165e+01 + -3.184253244456109e+01 + -3.197971313442012e+01 + -3.211756857999995e+01 + -3.225610123724459e+01 + -3.239531355479052e+01 + -3.253520799120049e+01 + -3.267578702273956e+01 + -3.281705312000000e+01 + -3.295900875199519e+01 + -3.310165640007095e+01 + -3.324499854981137e+01 + -3.338903768896250e+01 + -3.353377630999994e+01 + -3.367921690900354e+01 + -3.382536198480008e+01 + -3.397221404252836e+01 + -3.411977559608952e+01 + -3.426804916000000e+01 + -3.441703725062087e+01 + -3.456674239208418e+01 + -3.471716711255165e+01 + -3.486831394366235e+01 + -3.502018541999994e+01 + -3.517278408030963e+01 + -3.532611247314257e+01 + -3.548017315006599e+01 + -3.563496866378715e+01 + -3.579050157000000e+01 + -3.594677442911821e+01 + -3.610378981290209e+01 + -3.626155029281482e+01 + -3.642005843692588e+01 + -3.657931682999995e+01 + -3.673932806450152e+01 + -3.690009471994529e+01 + -3.706161938636306e+01 + -3.722390467398576e+01 + -3.738695318000000e+01 + -3.755076749872251e+01 + -3.771535025114206e+01 + -3.788070405790332e+01 + -3.804683152981476e+01 + -3.821373528999994e+01 + -3.838141797088579e+01 + -3.854988220802454e+01 + -3.871913063690455e+01 + -3.888916589260551e+01 + -3.905999062000000e+01 + -3.923160747217621e+01 + -3.940401910958111e+01 + -3.957722819105772e+01 + -3.975123737141870e+01 + -3.992604931999993e+01 + -4.010166671506960e+01 + -4.027809223215413e+01 + -4.045532854769397e+01 + -4.063337834194039e+01 + -4.081224431000000e+01 + -4.099192915380458e+01 + -4.117243556512365e+01 + -4.135376624213356e+01 + -4.153592389680070e+01 + -4.171891123999993e+01 + -4.190273098404973e+01 + -4.208738585293229e+01 + -4.227287857304115e+01 + -4.245921187066173e+01 + -4.264638848000000e+01 + -4.283441114000928e+01 + -4.302328258823673e+01 + -4.321300556988346e+01 + -4.340358284230594e+01 + -4.359501715999993e+01 + -4.378731127802528e+01 + -4.398046796379431e+01 + -4.417448998677844e+01 + -4.436938011574802e+01 + -4.456514113000000e+01 + -4.476177581459606e+01 + -4.495928695037842e+01 + -4.515767732491430e+01 + -4.535694973791337e+01 + -4.555710698999992e+01 + -4.575815188265746e+01 + -4.596008722124420e+01 + -4.616291581815827e+01 + -4.636664049491562e+01 + -4.657126407000000e+01 + -4.677678936329625e+01 + -4.698321921012249e+01 + -4.719055644645270e+01 + -4.739880390447049e+01 + -4.760796442999992e+01 + -4.781804087601476e+01 + -4.802903608806237e+01 + -4.824095291782189e+01 + -4.845379422957746e+01 + -4.866756289000000e+01 + -4.888226176793614e+01 + -4.909789373759357e+01 + -4.931446167624577e+01 + -4.953196846445736e+01 + -4.975041698999991e+01 + -4.996981014490353e+01 + -5.019015082042799e+01 + -5.041144191483806e+01 + -5.063368633767777e+01 + -5.085688700000000e+01 + -5.108104681363623e+01 + -5.130616869222998e+01 + -5.153225555529192e+01 + -5.175931033093434e+01 + -5.198733594999992e+01 + -5.221633534632925e+01 + -5.244631146064819e+01 + -5.267726723814258e+01 + -5.290920562821528e+01 + -5.314212958000000e+01 + -5.337604204603855e+01 + -5.361094599406351e+01 + -5.384684439089011e+01 + -5.408374019738633e+01 + -5.432163638999991e+01 + -5.456053595406303e+01 + -5.480044186892415e+01 + -5.504135712069162e+01 + -5.528328470761400e+01 + -5.552622762000000e+01 + -5.577018884907901e+01 + -5.601517141284037e+01 + -5.626117832498171e+01 + -5.650821258404100e+01 + -5.675627720999991e+01 + -5.700537523542541e+01 + -5.725550968441112e+01 + -5.750668358361924e+01 + -5.775889996777224e+01 + -5.801216188000000e+01 + -5.826647236807500e+01 + -5.852183447842080e+01 + -5.877825126017432e+01 + -5.903572576827786e+01 + -5.929426106999990e+01 + -5.955386023803142e+01 + -5.981452633626228e+01 + -6.007626243395679e+01 + -6.033907161265666e+01 + -6.060295696000000e+01 + -6.086792156620618e+01 + -6.113396851889991e+01 + -6.140110091270849e+01 + -6.166932185413050e+01 + -6.193863444999990e+01 + -6.220904180836374e+01 + -6.248054704389698e+01 + -6.275315327303672e+01 + -6.302686361375484e+01 + -6.330168120000000e+01 + -6.357760917255472e+01 + -6.385465065869710e+01 + -6.413280879313753e+01 + -6.441208672717147e+01 + -6.469248761000000e+01 + -6.497401459207148e+01 + -6.525667083785252e+01 + -6.554045951020694e+01 + -6.582538376572784e+01 + -6.611144677999999e+01 + -6.639865173804421e+01 + -6.668700181225154e+01 + -6.697650018322166e+01 + -6.726715004865791e+01 + -6.755895460000001e+01 + -6.785191702754956e+01 + -6.814604053706709e+01 + -6.844132833746227e+01 + -6.873778363702108e+01 + -6.903540965000001e+01 + -6.933420959649558e+01 + -6.963418670433917e+01 + -6.993534420146086e+01 + -7.023768531400407e+01 + -7.054121327999999e+01 + -7.084593134500037e+01 + -7.115184275353549e+01 + -7.145895075432828e+01 + -7.176725860332733e+01 + -7.207676955999989e+01 + -7.238748688676215e+01 + -7.269941385037480e+01 + -7.301255372170849e+01 + -7.332690977697268e+01 + -7.364248530000000e+01 + -7.395928357816831e+01 + -7.427730789465394e+01 + -7.459656154154558e+01 + -7.491704782593285e+01 + -7.523877004999987e+01 + -7.556173151464178e+01 + -7.588593553169946e+01 + -7.621138541944168e+01 + -7.653808450163682e+01 + -7.686603610000000e+01 + -7.719524353805981e+01 + -7.752571015313293e+01 + -7.785743928572181e+01 + -7.819043427631229e+01 + -7.852469846999988e+01 + -7.886023521608357e+01 + -7.919704786882774e+01 + -7.953513978918475e+01 + -7.987451434652237e+01 + -8.021517491000000e+01 + -8.055712484895521e+01 + -8.090036753598372e+01 + -8.124490635250547e+01 + -8.159074469172391e+01 + -8.193788593999987e+01 + -8.228633348416081e+01 + -8.263609073313938e+01 + -8.298716109541151e+01 + -8.333954797103145e+01 + -8.369325477000000e+01 + -8.404828491028280e+01 + -8.440464181412719e+01 + -8.476232890793086e+01 + -8.512134962287996e+01 + -8.548170738999985e+01 + -8.584340564352934e+01 + -8.620644783199920e+01 + -8.657083740482393e+01 + -8.693657780824788e+01 + -8.730367250000000e+01 + -8.767212494371194e+01 + -8.804193859639375e+01 + -8.841311692593891e+01 + -8.878566341870939e+01 + -8.915958154999986e+01 + -8.953487479168578e+01 + -8.991154663471849e+01 + -9.028960057395298e+01 + -9.066904010318096e+01 + -9.104986872000001e+01 + -9.143208992686800e+01 + -9.181570723560402e+01 + -9.220072416114067e+01 + -9.258714421980083e+01 + -9.297497092999986e+01 + -9.336420781525349e+01 + -9.375485841426487e+01 + -9.414692626313253e+01 + -9.454041488965315e+01 + -9.493532784000000e+01 + -9.533166867059026e+01 + -9.572944092950100e+01 + -9.612864816948191e+01 + -9.652929395407540e+01 + -9.693138184999984e+01 + -9.733491542620831e+01 + -9.773989825487583e+01 + -9.814633391500892e+01 + -9.855422599474231e+01 + -9.896357808000000e+01 + -9.937439375553778e+01 + -9.978667660951464e+01 + -1.002004302498873e+02 + -1.006156583113964e+02 + -1.010323643999998e+02 + -1.014505521033422e+02 + -1.018702250167552e+02 + -1.022913867648504e+02 + -1.027140410123223e+02 + -1.031381914000000e+02 + -1.035638415489902e+02 + -1.039909950728156e+02 + -1.044196556182856e+02 + -1.048498268814360e+02 + -1.052815124999998e+02 + -1.057147160851634e+02 + -1.061494413040264e+02 + -1.065856918490972e+02 + -1.070234714266025e+02 + -1.074627837000000e+02 + -1.079036323073108e+02 + -1.083460208994117e+02 + -1.087899531790557e+02 + -1.092354329168266e+02 + -1.096824637999998e+02 + -1.101310494754678e+02 + -1.105811936593542e+02 + -1.110329000832090e+02 + -1.114861724712110e+02 + -1.119410145000000e+02 + -1.123974298499644e+02 + -1.128554223365672e+02 + -1.133149957276709e+02 + -1.137761536721920e+02 + -1.142388998999998e+02 + -1.147032381951767e+02 + -1.151691723223398e+02 + -1.156367060267053e+02 + -1.161058430340008e+02 + -1.165765871000000e+02 + -1.170489420136372e+02 + -1.175229116129598e+02 + -1.179984996644491e+02 + -1.184757098197581e+02 + -1.189545458999998e+02 + -1.194350118004852e+02 + -1.199171112501401e+02 + -1.204008480035419e+02 + -1.208862259161727e+02 + -1.213732488000000e+02 + -1.218619204419225e+02 + -1.223522446637547e+02 + -1.228442252993658e+02 + -1.233378661832514e+02 + -1.238331710999998e+02 + -1.243301438371392e+02 + -1.248287883218059e+02 + -1.253291084262349e+02 + -1.258311078947497e+02 + -1.263347906000000e+02 + -1.268401604692280e+02 + -1.273472212887372e+02 + -1.278559768940106e+02 + -1.283664312433523e+02 + -1.288785881999998e+02 + -1.293924515790011e+02 + -1.299080252758494e+02 + -1.304253131892150e+02 + -1.309443191941241e+02 + -1.314650472000000e+02 + -1.319875011267033e+02 + -1.325116848422910e+02 + -1.330376022476014e+02 + -1.335652573069860e+02 + -1.340946538999998e+02 + -1.346257958892211e+02 + -1.351586873010075e+02 + -1.356933320835031e+02 + -1.362297340185993e+02 + -1.367678971000000e+02 + -1.373078254089903e+02 + -1.378495227933144e+02 + -1.383929931342302e+02 + -1.389382404506380e+02 + -1.394852686999998e+02 + -1.400340818144768e+02 + -1.405846838138316e+02 + -1.411370786853171e+02 + -1.416912703410207e+02 + -1.422472628000000e+02 + -1.428050601118040e+02 + -1.433646661562381e+02 + -1.439260848884736e+02 + -1.444893204354731e+02 + -1.450543767999998e+02 + -1.456212579173106e+02 + -1.461899678121767e+02 + -1.467605105156440e+02 + -1.473328900351724e+02 + -1.479071104000000e+02 + -1.484831756560318e+02 + -1.490610898537698e+02 + -1.496408570188282e+02 + -1.502224811435522e+02 + -1.508059663000000e+02 + -1.513913165938295e+02 + -1.519785360517816e+02 + -1.525676287092765e+02 + -1.531585986433134e+02 + -1.537514498999998e+02 + -1.543461865304275e+02 + -1.549428126935839e+02 + -1.555413324987964e+02 + -1.561417499433451e+02 + -1.567440691000000e+02 + -1.573482940967384e+02 + -1.579544290618548e+02 + -1.585624781173004e+02 + -1.591724453723425e+02 + -1.597843348999998e+02 + -1.603981507727703e+02 + -1.610138971515657e+02 + -1.616315781879854e+02 + -1.622511979884414e+02 + -1.628727607000000e+02 + -1.634962704824068e+02 + -1.641217314319286e+02 + -1.647491476962519e+02 + -1.653785235159056e+02 + -1.660098629999998e+02 + -1.666431702132707e+02 + -1.672784494025457e+02 + -1.679157047805161e+02 + -1.685549404452619e+02 + -1.691961606000000e+02 + -1.698393694891200e+02 + -1.704845712252935e+02 + -1.711317699673001e+02 + -1.717809699904770e+02 + -1.724321754999998e+02 + -1.730853906636835e+02 + -1.737406197069920e+02 + -1.743978668390772e+02 + -1.750571362267288e+02 + -1.757184321000000e+02 + -1.763817587329360e+02 + -1.770471204015179e+02 + -1.777145213342737e+02 + -1.783839656916257e+02 + -1.790554576999997e+02 + -1.797290016348361e+02 + -1.804046017812607e+02 + -1.810822624074922e+02 + -1.817619877551305e+02 + -1.824437821000000e+02 + -1.831276497291853e+02 + -1.838135948809234e+02 + -1.845016218201234e+02 + -1.851917348679873e+02 + -1.858839382999998e+02 + -1.865782363787204e+02 + -1.872746334451072e+02 + -1.879731338116912e+02 + -1.886737417231232e+02 + -1.893764615000000e+02 + -1.900812975069574e+02 + -1.907882540726982e+02 + -1.914973354967214e+02 + -1.922085460544087e+02 + -1.929218900999998e+02 + -1.936373720194894e+02 + -1.943549961169706e+02 + -1.950747667123967e+02 + -1.957966881820183e+02 + -1.965207649000000e+02 + -1.972470012275908e+02 + -1.979754014928308e+02 + -1.987059700466389e+02 + -1.994387112870401e+02 + -2.001736295999997e+02 + -2.009107293657797e+02 + -2.016500149830146e+02 + -2.023914908231823e+02 + -2.031351612174878e+02 + -2.038810306000000e+02 + -2.046291034502658e+02 + -2.053793841544099e+02 + -2.061318770718700e+02 + -2.068865865659776e+02 + -2.076435170999997e+02 + -2.084026731731890e+02 + -2.091640591716557e+02 + -2.099276794995817e+02 + -2.106935386300690e+02 + -2.114616410000000e+02 + -2.122319910255027e+02 + -2.130045931490896e+02 + -2.137794518362718e+02 + -2.145565715736208e+02 + -2.153359567999997e+02 + -2.161176119510612e+02 + -2.169015415764713e+02 + -2.176877501734888e+02 + -2.184762421224458e+02 + -2.192670219000000e+02 + -2.200600940505141e+02 + -2.208554631128035e+02 + -2.216531335679009e+02 + -2.224531098207831e+02 + -2.232553963999997e+02 + -2.240599978997985e+02 + -2.248669188401317e+02 + -2.256761637092654e+02 + -2.264877369816284e+02 + -2.273016432000000e+02 + -2.281178869415660e+02 + -2.289364727411434e+02 + -2.297574051254879e+02 + -2.305806886273285e+02 + -2.314063277999997e+02 + -2.322343272067604e+02 + -2.330646913987978e+02 + -2.338974249389632e+02 + -2.347325324124834e+02 + -2.355700184000000e+02 + -2.364098874788788e+02 + -2.372521442301691e+02 + -2.380967932316097e+02 + -2.389438390563173e+02 + -2.397932862999997e+02 + -2.406451395699314e+02 + -2.414994034603918e+02 + -2.423560825773335e+02 + -2.432151815494090e+02 + -2.440767050000000e+02 + -2.449406575494712e+02 + -2.458070438246558e+02 + -2.466758684438366e+02 + -2.475471360143982e+02 + -2.484208511999996e+02 + -2.492970186823550e+02 + -2.501756430678903e+02 + -2.510567289807632e+02 + -2.519402811010791e+02 + -2.528263041000000e+02 + -2.537148026392507e+02 + -2.546057813786489e+02 + -2.554992449908618e+02 + -2.563951981686694e+02 + -2.572936455999996e+02 + -2.581945919701986e+02 + -2.590980419711499e+02 + -2.600040002856254e+02 + -2.609124715849065e+02 + -2.618234606000000e+02 + -2.627369720784054e+02 + -2.636530106775519e+02 + -2.645715811006028e+02 + -2.654926881465747e+02 + -2.664163364999997e+02 + -2.673425308135112e+02 + -2.682712759281322e+02 + -2.692025766270102e+02 + -2.701364375396030e+02 + -2.710728634000000e+02 + -2.720118590149941e+02 + -2.729534291763713e+02 + -2.738975786300543e+02 + -2.748443120676544e+02 + -2.757936342999997e+02 + -2.767455501787848e+02 + -2.777000643997414e+02 + -2.786571816989448e+02 + -2.796169069311608e+02 + -2.805792449000000e+02 + -2.815442003833780e+02 + -2.825117782146733e+02 + -2.834819832031981e+02 + -2.844548201023671e+02 + -2.854302936999997e+02 + -2.864084088239409e+02 + -2.873891703596309e+02 + -2.883725831483384e+02 + -2.893586519481404e+02 + -2.903473816000000e+02 + -2.913387769892773e+02 + -2.923328429461174e+02 + -2.933295843055886e+02 + -2.943290059327143e+02 + -2.953311126999996e+02 + -2.963359094688269e+02 + -2.973434010446480e+02 + -2.983535922946355e+02 + -2.993664881931061e+02 + -3.003820936000000e+02 + -3.014004133189056e+02 + -3.024214522481863e+02 + -3.034452153213495e+02 + -3.044717074825456e+02 + -3.055009335999997e+02 + -3.065328985120693e+02 + -3.075676071368449e+02 + -3.086050644279766e+02 + -3.096452753553112e+02 + -3.106882447999996e+02 + -3.117339776182681e+02 + -3.127824787990806e+02 + -3.138337533166528e+02 + -3.148878060732492e+02 + -3.159446419999996e+02 + -3.170042660531784e+02 + -3.180666831989414e+02 + -3.191318984100575e+02 + -3.201999166629245e+02 + -3.212707428999996e+02 + -3.223443820580361e+02 + -3.234208391391681e+02 + -3.245001191331626e+02 + -3.255822269890704e+02 + -3.266671677000000e+02 + -3.277549462905472e+02 + -3.288455677875165e+02 + -3.299390371822755e+02 + -3.310353594166140e+02 + -3.321345394999996e+02 + -3.332365824854958e+02 + -3.343414934139734e+02 + -3.354492773045120e+02 + -3.365599391517927e+02 + -3.376734840000000e+02 + -3.387899169180687e+02 + -3.399092429402671e+02 + -3.410314670886827e+02 + -3.421565943845668e+02 + -3.432846298999996e+02 + -3.444155787253185e+02 + -3.455494458929433e+02 + -3.466862364711880e+02 + -3.478259555971263e+02 + -3.489686083000000e+02 + -3.501141995805723e+02 + -3.512627346186799e+02 + -3.524142185495274e+02 + -3.535686563776662e+02 + -3.547260531999996e+02 + -3.558864141649047e+02 + -3.570497443588797e+02 + -3.582160488781844e+02 + -3.593853328562213e+02 + -3.605576014000000e+02 + -3.617328596203877e+02 + -3.629111127187760e+02 + -3.640923658296630e+02 + -3.652766239636252e+02 + -3.664638922999996e+02 + -3.676541760949210e+02 + -3.688474804479435e+02 + -3.700438104641370e+02 + -3.712431713192604e+02 + -3.724455682000000e+02 + -3.736510062917217e+02 + -3.748594907617601e+02 + -3.760710267615897e+02 + -3.772856194324323e+02 + -3.785032739999995e+02 + -3.797239957155368e+02 + -3.809477897125092e+02 + -3.821746611611994e+02 + -3.834046153278488e+02 + -3.846376574000000e+02 + -3.858737925371631e+02 + -3.871130260109560e+02 + -3.883553630688227e+02 + -3.896008088834330e+02 + -3.908493686999996e+02 + -3.921010477895665e+02 + -3.933558513233559e+02 + -3.946137845264227e+02 + -3.958748527376295e+02 + -3.971390612000000e+02 + -3.984064151109821e+02 + -3.996769197585321e+02 + -4.009505804131749e+02 + -4.022274022910074e+02 + -4.035073906999995e+02 + -4.047905509809469e+02 + -4.060768883569506e+02 + -4.073664080804837e+02 + -4.086591154923789e+02 + -4.099550159000000e+02 + -4.112541145837781e+02 + -4.125564168232350e+02 + -4.138619279264533e+02 + -4.151706532436620e+02 + -4.164825980999995e+02 + -4.177977678009782e+02 + -4.191161676484082e+02 + -4.204378029703449e+02 + -4.217626791355866e+02 + -4.230908015000000e+02 + -4.244221753941545e+02 + -4.257568060915354e+02 + -4.270946989435893e+02 + -4.284358594322071e+02 + -4.297802928999995e+02 + -4.311280046181774e+02 + -4.324789999621266e+02 + -4.338332843406102e+02 + -4.351908631680312e+02 + -4.365517418000000e+02 + -4.379159255766193e+02 + -4.392834199290754e+02 + -4.406542302894571e+02 + -4.420283620541414e+02 + -4.434058205999995e+02 + -4.447866113008026e+02 + -4.461707395611302e+02 + -4.475582108324218e+02 + -4.489490306166049e+02 + -4.503432043000000e+02 + -4.517407372272212e+02 + -4.531416348857516e+02 + -4.545459027469901e+02 + -4.559535462055746e+02 + -4.573645706999994e+02 + -4.587789817092769e+02 + -4.601967847429616e+02 + -4.616179852648949e+02 + -4.630425886631084e+02 + -4.644706004000000e+02 + -4.659020259847504e+02 + -4.673368709042424e+02 + -4.687751406384571e+02 + -4.702168406679589e+02 + -4.716619764999995e+02 + -4.731105536500806e+02 + -4.745625775980045e+02 + -4.760180538297375e+02 + -4.774769878558138e+02 + -4.789393852000000e+02 + -4.804052513950263e+02 + -4.818745919803221e+02 + -4.833474124743740e+02 + -4.848237183656923e+02 + -4.863035151999994e+02 + -4.877868085453354e+02 + -4.892736039052198e+02 + -4.907639068268139e+02 + -4.922577229425711e+02 + -4.937550578000000e+02 + -4.952559169027076e+02 + -4.967603058178435e+02 + -4.982682301416788e+02 + -4.997796954853789e+02 + -5.012947073999994e+02 + -5.028132714194502e+02 + -5.043353931676896e+02 + -5.058610782730644e+02 + -5.073903323321115e+02 + -5.089231609000000e+02 + -5.104595695386481e+02 + -5.119995639358939e+02 + -5.135431497453484e+02 + -5.150903325247945e+02 + -5.166411178999995e+02 + -5.181955115300345e+02 + -5.197535190105982e+02 + -5.213151459679927e+02 + -5.228803980937674e+02 + -5.244492810000000e+02 + -5.260218002787250e+02 + -5.275979616609960e+02 + -5.291777708470047e+02 + -5.307612334400695e+02 + -5.323483550999995e+02 + -5.339391415258532e+02 + -5.355335984055753e+02 + -5.371317314077364e+02 + -5.387335461786030e+02 + -5.403390484000000e+02 + -5.419482437848817e+02 + -5.435611380730882e+02 + -5.451777369746786e+02 + -5.467980461477442e+02 + -5.484220712999994e+02 + -5.500498181706811e+02 + -5.516812924850077e+02 + -5.533164999617454e+02 + -5.549554463178829e+02 + -5.565981372999994e+02 + -5.582445786620732e+02 + -5.598947761113077e+02 + -5.615487353817318e+02 + -5.632064622631164e+02 + -5.648679624999994e+02 + -5.665332418238921e+02 + -5.682023060429622e+02 + -5.698751609401672e+02 + -5.715518122344557e+02 + -5.732322656999993e+02 + -5.749165271427032e+02 + -5.766046023386582e+02 + -5.782964970855437e+02 + -5.799922172195480e+02 + -5.816917684999994e+02 + -5.833951566715182e+02 + -5.851023876259811e+02 + -5.868134672043320e+02 + -5.885284011210334e+02 + -5.902471951999993e+02 + -5.919698553287222e+02 + -5.936963873375214e+02 + -5.954267970459595e+02 + -5.971610902818754e+02 + -5.988992728999993e+02 + -6.006413507613062e+02 + -6.023873296844711e+02 + -6.041372155081436e+02 + -6.058910141182311e+02 + -6.076487313999993e+02 + -6.094103732273231e+02 + -6.111759454411804e+02 + -6.129454539033432e+02 + -6.147189045204622e+02 + -6.164963032000001e+02 + -6.182776558378988e+02 + -6.200629682925465e+02 + -6.218522464515877e+02 + -6.236454962577363e+02 + -6.254427235999993e+02 + -6.272439343587159e+02 + -6.290491345295636e+02 + -6.308583300588987e+02 + -6.326715267788347e+02 + -6.344887306000001e+02 + -6.363099474872770e+02 + -6.381351833941451e+02 + -6.399644442896572e+02 + -6.417977361628546e+02 + -6.436350648999993e+02 + -6.454764363684590e+02 + -6.473218566292518e+02 + -6.491713317125350e+02 + -6.510248675271151e+02 + -6.528824700000000e+02 + -6.547441451008573e+02 + -6.566098988943567e+02 + -6.584797373808955e+02 + -6.603536664383599e+02 + -6.622316920999993e+02 + -6.641138204605409e+02 + -6.660000574329696e+02 + -6.678904089961051e+02 + -6.697848812885560e+02 + -6.716834803000000e+02 + -6.735862119462199e+02 + -6.754930822688247e+02 + -6.774040973560088e+02 + -6.793192633079277e+02 + -6.812385860999992e+02 + -6.831620716800010e+02 + -6.850897262089175e+02 + -6.870215557906422e+02 + -6.889575663679858e+02 + -6.908977640000001e+02 + -6.928421548145254e+02 + -6.947907448778678e+02 + -6.967435402481692e+02 + -6.987005469959722e+02 + -7.006617711999993e+02 + -7.026272189534540e+02 + -7.045968963883171e+02 + -7.065708096021641e+02 + -7.085489646318440e+02 + -7.105313676000000e+02 + -7.125180246666655e+02 + -7.145089419064375e+02 + -7.165041254104643e+02 + -7.185035813280965e+02 + -7.205073157999993e+02 + -7.225153349567163e+02 + -7.245276449240899e+02 + -7.265442518464891e+02 + -7.285651618951177e+02 + -7.305903812000000e+02 + -7.326199158832851e+02 + -7.346537721472801e+02 + -7.366919561576724e+02 + -7.387344740033407e+02 + -7.407813318999993e+02 + -7.428325361060332e+02 + -7.448880927069067e+02 + -7.469480078569493e+02 + -7.490122878703525e+02 + -7.510809389000000e+02 + -7.531539670309830e+02 + -7.552313785295614e+02 + -7.573131796529314e+02 + -7.593993765758833e+02 + -7.614899754999992e+02 + -7.635849826556215e+02 + -7.656844042998581e+02 + -7.677882466626152e+02 + -7.698965159244972e+02 + -7.720092183000000e+02 + -7.741263600422619e+02 + -7.762479474594095e+02 + -7.783739868214470e+02 + -7.805044843222228e+02 + -7.826394461999992e+02 + -7.847788787331309e+02 + -7.869227882276110e+02 + -7.890711809493379e+02 + -7.912240631015031e+02 + -7.933814410000000e+02 + -7.955433210068886e+02 + -7.977097093640062e+02 + -7.998806123337483e+02 + -8.020560362523712e+02 + -8.042359873999992e+02 + -8.064204720446323e+02 + -8.086094965664213e+02 + -8.108030673053524e+02 + -8.130011905039750e+02 + -8.152038725000000e+02 + -8.174111196729889e+02 + -8.196229383028856e+02 + -8.218393347070877e+02 + -8.240603152936806e+02 + -8.262858863999992e+02 + -8.285160543327190e+02 + -8.307508254786889e+02 + -8.329902062108882e+02 + -8.352342028550189e+02 + -8.374828218000000e+02 + -8.397360694583805e+02 + -8.419939521636865e+02 + -8.442564762682848e+02 + -8.465236481828920e+02 + -8.487954742999991e+02 + -8.510719610066617e+02 + -8.533531147279726e+02 + -8.556389418758610e+02 + -8.579294488297842e+02 + -8.602246420000000e+02 + -8.625245278111681e+02 + -8.648291126593311e+02 + -8.671384029773127e+02 + -8.694524052578884e+02 + -8.717711258999991e+02 + -8.740945712693658e+02 + -8.764227478547659e+02 + -8.787556621558366e+02 + -8.810933206360036e+02 + -8.834357297000000e+02 + -8.857828957473700e+02 + -8.881348253000285e+02 + -8.904915248639498e+02 + -8.928530008754832e+02 + -8.952192597999992e+02 + -8.975903081273602e+02 + -8.999661523549036e+02 + -9.023467989915350e+02 + -9.047322545556517e+02 + -9.071225255000001e+02 + -9.095176182642568e+02 + -9.119175394073789e+02 + -9.143222954857910e+02 + -9.167318930073794e+02 + -9.191463384999990e+02 + -9.215656384936522e+02 + -9.239897994653498e+02 + -9.264188279352956e+02 + -9.288527305046009e+02 + -9.312915136999991e+02 + -9.337351840217814e+02 + -9.361837480744202e+02 + -9.386372124507991e+02 + -9.410955836845210e+02 + -9.435588682999991e+02 + -9.460270728408829e+02 + -9.485002039375468e+02 + -9.509782681943145e+02 + -9.534612721474879e+02 + -9.559492223999991e+02 + -9.584421255818636e+02 + -9.609399882443452e+02 + -9.634428169536077e+02 + -9.659506183300578e+02 + -9.684633989999990e+02 + -9.709811655949806e+02 + -9.735039247636544e+02 + -9.760316831188370e+02 + -9.785644472182881e+02 + -9.811022236999991e+02 + -9.836450192407020e+02 + -9.861928404528198e+02 + -9.887456939756197e+02 + -9.913035865101050e+02 + -9.938665246999991e+02 + -9.964345151588749e+02 + -9.990075645416573e+02 + -1.001585679508894e+03 + -1.004168866725833e+03 + -1.006757132999999e+03 + -1.009350485088950e+03 + -1.011948929193798e+03 + -1.014552472017065e+03 + -1.017161121149714e+03 + -1.019774882999999e+03 + -1.022393763477281e+03 + -1.025017769745607e+03 + -1.027646908706880e+03 + -1.030281186449000e+03 + -1.032920609999999e+03 + -1.035565186772393e+03 + -1.038214923106640e+03 + -1.040869825393126e+03 + -1.043529900494233e+03 + -1.046195154999999e+03 + -1.048865595518282e+03 + -1.051541229525064e+03 + -1.054222063914517e+03 + -1.056908104442841e+03 + -1.059599357999999e+03 + -1.062295832060889e+03 + -1.064997533253958e+03 + -1.067704468147946e+03 + -1.070416643533965e+03 + -1.073134066000000e+03 + -1.075856742179453e+03 + -1.078584679453085e+03 + -1.081317884808236e+03 + -1.084056364390976e+03 + -1.086800124999999e+03 + -1.089549173751501e+03 + -1.092303517161580e+03 + -1.095063162007773e+03 + -1.097828115663242e+03 + -1.100598385000000e+03 + -1.103373976558467e+03 + -1.106154896984741e+03 + -1.108941153067517e+03 + -1.111732751768433e+03 + -1.114529699999999e+03 + -1.117332004656191e+03 + -1.120139672719820e+03 + -1.122952711033347e+03 + -1.125771126202256e+03 + -1.128594925000000e+03 + -1.131424114391635e+03 + -1.134258701616623e+03 + -1.137098693726371e+03 + -1.139944097362279e+03 + -1.142794918999999e+03 + -1.145651165298781e+03 + -1.148512843975744e+03 + -1.151379962155369e+03 + -1.154252525751212e+03 + -1.157130542000000e+03 + -1.160014018647746e+03 + -1.162902961796701e+03 + -1.165797378002409e+03 + -1.168697275086654e+03 + -1.171602659999999e+03 + -1.174513539162380e+03 + -1.177429919411751e+03 + -1.180351807863387e+03 + -1.183279211838743e+03 + -1.186212138000000e+03 + -1.189150592852472e+03 + -1.192094584016226e+03 + -1.195044118757429e+03 + -1.197999203418656e+03 + -1.200959844999999e+03 + -1.203926050837031e+03 + -1.206897827704460e+03 + -1.209875182550288e+03 + -1.212858122751144e+03 + -1.215846655000000e+03 + -1.218840785789916e+03 + -1.221840522671824e+03 + -1.224845872987532e+03 + -1.227856843385819e+03 + -1.230873440999999e+03 + -1.233895673111333e+03 + -1.236923546192640e+03 + -1.239957067026041e+03 + -1.242996243170224e+03 + -1.246041082000000e+03 + -1.249091590572761e+03 + -1.252147775334870e+03 + -1.255209643154299e+03 + -1.258277201722480e+03 + -1.261350457999999e+03 + -1.264429418673061e+03 + -1.267514091394071e+03 + -1.270604483350415e+03 + -1.273700600740823e+03 + -1.276802451000000e+03 + -1.279910042060014e+03 + -1.283023380429426e+03 + -1.286142472688095e+03 + -1.289267326090673e+03 + -1.292397947999999e+03 + -1.295534345774196e+03 + -1.298676526619691e+03 + -1.301824497524618e+03 + -1.304978265240164e+03 + -1.308137837000000e+03 + -1.311303220289759e+03 + -1.314474422298625e+03 + -1.317651449999705e+03 + -1.320834310180745e+03 + -1.324023009999999e+03 + -1.327217556910311e+03 + -1.330417958531748e+03 + -1.333624221890711e+03 + -1.336836353161044e+03 + -1.340054360000000e+03 + -1.343278250622039e+03 + -1.346508031450468e+03 + -1.349743709083262e+03 + -1.352985291084887e+03 + -1.356232784999999e+03 + -1.359486198143600e+03 + -1.362745537187869e+03 + -1.366010809195683e+03 + -1.369282022032803e+03 + -1.372559183000000e+03 + -1.375842299046690e+03 + -1.379131377356324e+03 + -1.382426425045151e+03 + -1.385727449081319e+03 + -1.389034456999999e+03 + -1.392347456524483e+03 + -1.395666454635196e+03 + -1.398991458464414e+03 + -1.402322475610563e+03 + -1.405659513000000e+03 + -1.409002577344138e+03 + -1.412351676333446e+03 + -1.415706817605260e+03 + -1.419068008353351e+03 + -1.422435255999999e+03 + -1.425808567964313e+03 + -1.429187950969556e+03 + -1.432573411998037e+03 + -1.435964958719179e+03 + -1.439362599000000e+03 + -1.442766340439504e+03 + -1.446176189225631e+03 + -1.449592152360744e+03 + -1.453014238529275e+03 + -1.456442454999999e+03 + -1.459876808245435e+03 + -1.463317305593544e+03 + -1.466763954627232e+03 + -1.470216762966463e+03 + -1.473675738000000e+03 + -1.477140887005819e+03 + -1.480612217422037e+03 + -1.484089736511155e+03 + -1.487573451238554e+03 + -1.491063368999999e+03 + -1.494559497483912e+03 + -1.498061844364458e+03 + -1.501570417048641e+03 + -1.505085222548716e+03 + -1.508606267999999e+03 + -1.512133560790714e+03 + -1.515667108906144e+03 + -1.519206919999463e+03 + -1.522753000996140e+03 + -1.526305358999999e+03 + -1.529864001422905e+03 + -1.533428936276007e+03 + -1.537000171179230e+03 + -1.540577712963951e+03 + -1.544161568999999e+03 + -1.547751747018138e+03 + -1.551348254621497e+03 + -1.554951099280540e+03 + -1.558560288310355e+03 + -1.562175828999999e+03 + -1.565797728689906e+03 + -1.569425994958102e+03 + -1.573060635400619e+03 + -1.576701657553543e+03 + -1.580349068999999e+03 + -1.584002877314684e+03 + -1.587663089901193e+03 + -1.591329713983250e+03 + -1.595002756657312e+03 + -1.598682225999999e+03 + -1.602368130282464e+03 + -1.606060476003810e+03 + -1.609759270166310e+03 + -1.613464521194204e+03 + -1.617176236999999e+03 + -1.620894424965112e+03 + -1.624619091996676e+03 + -1.628350245392540e+03 + -1.632087893195996e+03 + -1.635832042999999e+03 + -1.639582702219653e+03 + -1.643339878880967e+03 + -1.647103580589531e+03 + -1.650873814125992e+03 + -1.654650586999999e+03 + -1.658433907212865e+03 + -1.662223782656940e+03 + -1.666020220927786e+03 + -1.669823229228366e+03 + -1.673632814999999e+03 + -1.677448985879331e+03 + -1.681271749582079e+03 + -1.685101113981527e+03 + -1.688937087086922e+03 + -1.692779675999999e+03 + -1.696628887589857e+03 + -1.700484730162859e+03 + -1.704347211664743e+03 + -1.708216339003609e+03 + -1.712092119999999e+03 + -1.715974562928047e+03 + -1.719863675285195e+03 + -1.723759464515762e+03 + -1.727661938269359e+03 + -1.731571103999999e+03 + -1.735486969207614e+03 + -1.739409542118944e+03 + -1.743338830603560e+03 + -1.747274841733617e+03 + -1.751217582999999e+03 + -1.755167062315964e+03 + -1.759123288009624e+03 + -1.763086267739076e+03 + -1.767056008086542e+03 + -1.771032516999999e+03 + -1.775015803098183e+03 + -1.779005873908525e+03 + -1.783002736756524e+03 + -1.787006399126180e+03 + -1.791016869000000e+03 + -1.795034154506543e+03 + -1.799058263107071e+03 + -1.803089202321619e+03 + -1.807126980015989e+03 + -1.811171603999998e+03 + -1.815223082025504e+03 + -1.819281421835726e+03 + -1.823346631247284e+03 + -1.827418718154363e+03 + -1.831497690000000e+03 + -1.835583554215247e+03 + -1.839676319355180e+03 + -1.843775993459518e+03 + -1.847882583413063e+03 + -1.851996096999998e+03 + -1.856116542493618e+03 + -1.860243927542824e+03 + -1.864378259929794e+03 + -1.868519547846306e+03 + -1.872667799000000e+03 + -1.876823020804590e+03 + -1.880985220849939e+03 + -1.885154407199114e+03 + -1.889330588466962e+03 + -1.893513771999998e+03 + -1.897703964771626e+03 + -1.901901175652285e+03 + -1.906105412964281e+03 + -1.910316683519642e+03 + -1.914534995000000e+03 + -1.918760355678869e+03 + -1.922992773607248e+03 + -1.927232256642219e+03 + -1.931478812455566e+03 + -1.935732448999998e+03 + -1.939993174351127e+03 + -1.944260996306766e+03 + -1.948535922544343e+03 + -1.952817960710870e+03 + -1.957107119000000e+03 + -1.961403405774432e+03 + -1.965706828656891e+03 + -1.970017395435863e+03 + -1.974335114379128e+03 + -1.978659992999998e+03 + -1.982992038634364e+03 + -1.987331259958815e+03 + -1.991677665406797e+03 + -1.996031262526477e+03 + -2.000392059000000e+03 + -2.004760062662544e+03 + -2.009135281420714e+03 + -2.013517723394651e+03 + -2.017907396963966e+03 + -2.022304309999998e+03 + -2.026708470129302e+03 + -2.031119885371980e+03 + -2.035538563783372e+03 + -2.039964513323241e+03 + -2.044397742000000e+03 + -2.048838257821666e+03 + -2.053286068652342e+03 + -2.057741182613919e+03 + -2.062203608203423e+03 + -2.066673352999998e+03 + -2.071150424296029e+03 + -2.075634830690161e+03 + -2.080126580708826e+03 + -2.084625682242698e+03 + -2.089132143000000e+03 + -2.093645970720743e+03 + -2.098167173603271e+03 + -2.102695759983049e+03 + -2.107231738184183e+03 + -2.111775115999998e+03 + -2.116325901057278e+03 + -2.120884101683680e+03 + -2.125449726108530e+03 + -2.130022782163747e+03 + -2.134603278000000e+03 + -2.139191221924691e+03 + -2.143786621957349e+03 + -2.148389485981318e+03 + -2.152999821836896e+03 + -2.157617637999998e+03 + -2.162242943074696e+03 + -2.166875744534069e+03 + -2.171516050262848e+03 + -2.176163869133622e+03 + -2.180819209000000e+03 + -2.185482077327040e+03 + -2.190152482871076e+03 + -2.194830433950524e+03 + -2.199515937814626e+03 + -2.204209002999998e+03 + -2.208909638535144e+03 + -2.213617851857877e+03 + -2.218333650781778e+03 + -2.223057044225780e+03 + -2.227788040000000e+03 + -2.232526645541351e+03 + -2.237272869895315e+03 + -2.242026721580949e+03 + -2.246788207788726e+03 + -2.251557336999999e+03 + -2.256334118250544e+03 + -2.261118559161676e+03 + -2.265910667352767e+03 + -2.270710451040453e+03 + -2.275517918999998e+03 + -2.280333080014267e+03 + -2.285155941593499e+03 + -2.289986511539142e+03 + -2.294824798563590e+03 + -2.299670810999998e+03 + -2.304524556927484e+03 + -2.309386044592275e+03 + -2.314255282195762e+03 + -2.319132277836808e+03 + -2.324017039999998e+03 + -2.328909577220459e+03 + -2.333809897224200e+03 + -2.338718008145149e+03 + -2.343633918994289e+03 + -2.348557637999998e+03 + -2.353489172912608e+03 + -2.358428531797252e+03 + -2.363375723128402e+03 + -2.368330755820120e+03 + -2.373293637999998e+03 + -2.378264377427878e+03 + -2.383242982526706e+03 + -2.388229461889857e+03 + -2.393223824063392e+03 + -2.398226076999998e+03 + -2.403236228525699e+03 + -2.408254287477974e+03 + -2.413280262494937e+03 + -2.418314161547432e+03 + -2.423355992999998e+03 + -2.428405765403690e+03 + -2.433463486890615e+03 + -2.438529165661329e+03 + -2.443602810190047e+03 + -2.448684428999998e+03 + -2.453774030522361e+03 + -2.458871622761939e+03 + -2.463977214083831e+03 + -2.469090813490053e+03 + -2.474212428999998e+03 + -2.479342068313477e+03 + -2.484479740528551e+03 + -2.489625454539379e+03 + -2.494779218375099e+03 + -2.499941039999998e+03 + -2.505110927624773e+03 + -2.510288890409285e+03 + -2.515474937052364e+03 + -2.520669075212765e+03 + -2.525871312999998e+03 + -2.531081658990217e+03 + -2.536300122220549e+03 + -2.541526711425658e+03 + -2.546761434689014e+03 + -2.552004299999998e+03 + -2.557255315555890e+03 + -2.562514490474060e+03 + -2.567781833501355e+03 + -2.573057352510476e+03 + -2.578341055999998e+03 + -2.583632952807378e+03 + -2.588933051312229e+03 + -2.594241359879810e+03 + -2.599557887014108e+03 + -2.604882640999998e+03 + -2.610215630196411e+03 + -2.615556863841929e+03 + -2.620906350516468e+03 + -2.626264097579904e+03 + -2.631630113999998e+03 + -2.637004409331177e+03 + -2.642386991059378e+03 + -2.647777867311749e+03 + -2.653177047878767e+03 + -2.658584540999998e+03 + -2.664000354190328e+03 + -2.669424496446296e+03 + -2.674856976816473e+03 + -2.680297803844182e+03 + -2.685746985999998e+03 + -2.691204531699670e+03 + -2.696670449221115e+03 + -2.702144747143579e+03 + -2.707627434527642e+03 + -2.713118519999998e+03 + -2.718618011850782e+03 + -2.724125918263655e+03 + -2.729642247949266e+03 + -2.735167010382318e+03 + -2.740700213999998e+03 + -2.746241866699575e+03 + -2.751791977076697e+03 + -2.757350554006517e+03 + -2.762917606479738e+03 + -2.768493143000000e+03 + -2.774077171851313e+03 + -2.779669701724049e+03 + -2.785270741295763e+03 + -2.790880299095185e+03 + -2.796498383999998e+03 + -2.802125004968091e+03 + -2.807760170344632e+03 + -2.813403888501788e+03 + -2.819056168106567e+03 + -2.824717018000000e+03 + -2.830386447079949e+03 + -2.836064464083062e+03 + -2.841751077483182e+03 + -2.847446295475182e+03 + -2.853150126999998e+03 + -2.858862581346520e+03 + -2.864583667200011e+03 + -2.870313392988722e+03 + -2.876051767015894e+03 + -2.881798798000000e+03 + -2.887554494917011e+03 + -2.893318866668325e+03 + -2.899091922031221e+03 + -2.904873669618204e+03 + -2.910664117999998e+03 + -2.916463275808826e+03 + -2.922271151990944e+03 + -2.928087755363771e+03 + -2.933913094445438e+03 + -2.939747178000000e+03 + -2.945590014959967e+03 + -2.951441614226611e+03 + -2.957301984588625e+03 + -2.963171134666888e+03 + -2.969049072999998e+03 + -2.974935808208847e+03 + -2.980831349417174e+03 + -2.986735705755709e+03 + -2.992648886132359e+03 + -2.998570899000000e+03 + -3.004501752659864e+03 + -3.010441455936329e+03 + -3.016390017858416e+03 + -3.022347447554316e+03 + -3.028313753999998e+03 + -3.034288946006182e+03 + -3.040273032141582e+03 + -3.046266021078663e+03 + -3.052267921739149e+03 + -3.058278743000000e+03 + -3.064298493698561e+03 + -3.070327182685398e+03 + -3.076364818827055e+03 + -3.082411411001809e+03 + -3.088466967999998e+03 + -3.094531498652569e+03 + -3.100605012177602e+03 + -3.106687517554494e+03 + -3.112779023262762e+03 + -3.118879538000000e+03 + -3.124989070695736e+03 + -3.131107630527278e+03 + -3.137235226491168e+03 + -3.143371867254447e+03 + -3.149517561999998e+03 + -3.155672319953097e+03 + -3.161836149115856e+03 + -3.168009058152651e+03 + -3.174191057129923e+03 + -3.180382155000000e+03 + -3.186582360055111e+03 + -3.192791681144167e+03 + -3.199010127274887e+03 + -3.205237707493432e+03 + -3.211474430999998e+03 + -3.217720306909038e+03 + -3.223975343611381e+03 + -3.230239549889151e+03 + -3.236512935355519e+03 + -3.242795509000000e+03 + -3.249087279482800e+03 + -3.255388255944051e+03 + -3.261698447489179e+03 + -3.268017862963467e+03 + -3.274346510999998e+03 + -3.280684400401313e+03 + -3.287031541121871e+03 + -3.293387942369432e+03 + -3.299753611888159e+03 + -3.306128559000000e+03 + -3.312512793688797e+03 + -3.318906324190636e+03 + -3.325309159228279e+03 + -3.331721308860119e+03 + -3.338142781999998e+03 + -3.344573586933190e+03 + -3.351013732692941e+03 + -3.357463228591956e+03 + -3.363922084041577e+03 + -3.370390307999997e+03 + -3.376867909193196e+03 + -3.383354896616435e+03 + -3.389851279509897e+03 + -3.396357067337695e+03 + -3.402872268999997e+03 + -3.409396893188545e+03 + -3.415930949268335e+03 + -3.422474446597307e+03 + -3.429027394238212e+03 + -3.435589800999997e+03 + -3.442161675674332e+03 + -3.448743027574159e+03 + -3.455333866086035e+03 + -3.461934200499129e+03 + -3.468544039999997e+03 + -3.475163393634110e+03 + -3.481792270131310e+03 + -3.488430678432703e+03 + -3.495078627927044e+03 + -3.501736127999997e+03 + -3.508403187927853e+03 + -3.515079816661691e+03 + -3.521766023349286e+03 + -3.528461817510494e+03 + -3.535167207999998e+03 + -3.541882203477436e+03 + -3.548606813620608e+03 + -3.555341047964333e+03 + -3.562084915431213e+03 + -3.568838424999997e+03 + -3.575601585773337e+03 + -3.582374407066678e+03 + -3.589156898185297e+03 + -3.595949068354316e+03 + -3.602750926999998e+03 + -3.609562483468940e+03 + -3.616383746264014e+03 + -3.623214724488114e+03 + -3.630055428392298e+03 + -3.636905866999997e+03 + -3.643766048793625e+03 + -3.650635983516456e+03 + -3.657515680680700e+03 + -3.664405149014039e+03 + -3.671304397999997e+03 + -3.678213437374473e+03 + -3.685132275760156e+03 + -3.692060922035369e+03 + -3.698999385901594e+03 + -3.705947676999997e+03 + -3.712905804797643e+03 + -3.719873778403308e+03 + -3.726851606752037e+03 + -3.733839298718909e+03 + -3.740836863999997e+03 + -3.747844312547997e+03 + -3.754861653211674e+03 + -3.761888895074585e+03 + -3.768926047955085e+03 + -3.775973120999997e+03 + -3.783030123074376e+03 + -3.790097063813473e+03 + -3.797173952745452e+03 + -3.804260798968512e+03 + -3.811357611999997e+03 + -3.818464401472386e+03 + -3.825581176303607e+03 + -3.832707945585785e+03 + -3.839844718954238e+03 + -3.846991505999998e+03 + -3.854148316201428e+03 + -3.861315158822798e+03 + -3.868492043129635e+03 + -3.875678978458987e+03 + -3.882875973999997e+03 + -3.890083038997269e+03 + -3.897300183310783e+03 + -3.904527416633095e+03 + -3.911764748154242e+03 + -3.919012186999997e+03 + -3.926269742452437e+03 + -3.933537424464352e+03 + -3.940815242621297e+03 + -3.948103205720294e+03 + -3.955401322999997e+03 + -3.962709604107895e+03 + -3.970028058998795e+03 + -3.977356697163350e+03 + -3.984695527326294e+03 + -3.992044558999997e+03 + -3.999403802144854e+03 + -4.006773266302151e+03 + -4.014152960820400e+03 + -4.021542894928240e+03 + -4.028943077999997e+03 + -4.036353519583599e+03 + -4.043774229513202e+03 + -4.051205217431756e+03 + -4.058646492564995e+03 + -4.066098063999997e+03 + -4.073559940995820e+03 + -4.081032133755226e+03 + -4.088514652104142e+03 + -4.096007504979870e+03 + -4.103510702000000e+03 + -4.111024253097677e+03 + -4.118548167510886e+03 + -4.126082454416708e+03 + -4.133627123225803e+03 + -4.141182184000000e+03 + -4.148747646853033e+03 + -4.156323520486682e+03 + -4.163909814098826e+03 + -4.171506538118098e+03 + -4.179113701999993e+03 + -4.186731314728609e+03 + -4.194359386189681e+03 + -4.201997926116393e+03 + -4.209646943720986e+03 + -4.217306449000000e+03 + -4.224976452122954e+03 + -4.232656961817923e+03 + -4.240347987240753e+03 + -4.248049538718602e+03 + -4.255761626000000e+03 + -4.263484258397591e+03 + -4.271217445246016e+03 + -4.278961196276451e+03 + -4.286715521743729e+03 + -4.294480431000000e+03 + -4.302255933066315e+03 + -4.310042038085233e+03 + -4.317838756007569e+03 + -4.325646096087124e+03 + -4.333464067999995e+03 + -4.341292681602012e+03 + -4.349131946225953e+03 + -4.356981871466000e+03 + -4.364842467485710e+03 + -4.372713744000000e+03 + -4.380595710372718e+03 + -4.388488375861229e+03 + -4.396391750264422e+03 + -4.404305844160006e+03 + -4.412230667000000e+03 + -4.420166227736474e+03 + -4.428112536405837e+03 + -4.436069603088062e+03 + -4.444037437481978e+03 + -4.452016049000000e+03 + -4.460005447074678e+03 + -4.468005641867199e+03 + -4.476016643204103e+03 + -4.484038460200805e+03 + -4.492071102999995e+03 + -4.500114582060231e+03 + -4.508168906299815e+03 + -4.516234085098625e+03 + -4.524310129075975e+03 + -4.532397048000000e+03 + -4.540494851104932e+03 + -4.548603547974418e+03 + -4.556723148595408e+03 + -4.564853663376500e+03 + -4.572995102000000e+03 + -4.581147473755137e+03 + -4.589310788334117e+03 + -4.597485055595826e+03 + -4.605670285497996e+03 + -4.613866488000000e+03 + -4.622073673035890e+03 + -4.630291850451470e+03 + -4.638521029781397e+03 + -4.646761220207367e+03 + -4.655012431999994e+03 + -4.663274675842531e+03 + -4.671547961173437e+03 + -4.679832297267551e+03 + -4.688127693710799e+03 + -4.696434161000000e+03 + -4.704751709752170e+03 + -4.713080348793824e+03 + -4.721420087561993e+03 + -4.729770937031085e+03 + -4.738132907000000e+03 + -4.746506006604411e+03 + -4.754890245715343e+03 + -4.763285634540516e+03 + -4.771692183448750e+03 + -4.780109901999994e+03 + -4.788538799466528e+03 + -4.796978886096308e+03 + -4.805430172162917e+03 + -4.813892667577567e+03 + -4.822366381999994e+03 + -4.830851325088147e+03 + -4.839347507060687e+03 + -4.847854938123849e+03 + -4.856373628221604e+03 + -4.864903587000000e+03 + -4.873444824101478e+03 + -4.881997349859994e+03 + -4.890561174364984e+03 + -4.899136307099045e+03 + -4.907722758000000e+03 + -4.916320537362784e+03 + -4.924929655587317e+03 + -4.933550122528648e+03 + -4.942181947260091e+03 + -4.950825139999994e+03 + -4.959479711457802e+03 + -4.968145671175524e+03 + -4.976823028809056e+03 + -4.985511794647833e+03 + -4.994211978999993e+03 + -5.002923592007461e+03 + -5.011646643245516e+03 + -5.020381142480443e+03 + -5.029127099988444e+03 + -5.037884526000000e+03 + -5.046653430641881e+03 + -5.055433823857634e+03 + -5.064225715527905e+03 + -5.073029115529123e+03 + -5.081844034000000e+03 + -5.090670481166524e+03 + -5.099508466925161e+03 + -5.108358001180135e+03 + -5.117219094017154e+03 + -5.126091755999993e+03 + -5.134975997626908e+03 + -5.143871827953957e+03 + -5.152779256704796e+03 + -5.161698295082459e+03 + -5.170628952999993e+03 + -5.179571239778229e+03 + -5.188525166029071e+03 + -5.197490742130520e+03 + -5.206467977662855e+03 + -5.215456883000000e+03 + -5.224457468752808e+03 + -5.233469744262066e+03 + -5.242493719420175e+03 + -5.251529405361101e+03 + -5.260576812000000e+03 + -5.269635948683524e+03 + -5.278706825911151e+03 + -5.287789454172008e+03 + -5.296883843495917e+03 + -5.305990003999993e+03 + -5.315107945871962e+03 + -5.324237679253967e+03 + -5.333379214299059e+03 + -5.342532561186867e+03 + -5.351697729999993e+03 + -5.360874730862462e+03 + -5.370063574314554e+03 + -5.379264270604972e+03 + -5.388476829418795e+03 + -5.397701261000000e+03 + -5.406937575887649e+03 + -5.416185784228891e+03 + -5.425445896082409e+03 + -5.434717921547790e+03 + -5.444001871000000e+03 + -5.453297754883592e+03 + -5.462605583222671e+03 + -5.471925366229407e+03 + -5.481257114511772e+03 + -5.490600837999993e+03 + -5.499956546429602e+03 + -5.509324250592133e+03 + -5.518703961068116e+03 + -5.528095687743725e+03 + -5.537499440999993e+03 + -5.546915231361128e+03 + -5.556343068498348e+03 + -5.565782962476614e+03 + -5.575234924238452e+03 + -5.584698964000000e+03 + -5.594175091687396e+03 + -5.603663318133420e+03 + -5.613163653827974e+03 + -5.622676108416792e+03 + -5.632200692000000e+03 + -5.641737415094019e+03 + -5.651286288507457e+03 + -5.660847322604374e+03 + -5.670420527008017e+03 + -5.680005911999993e+03 + -5.689603488367688e+03 + -5.699213267038800e+03 + -5.708835258184300e+03 + -5.718469470901945e+03 + -5.728115915999992e+03 + -5.737774605002216e+03 + -5.747445547634946e+03 + -5.757128753652110e+03 + -5.766824233562706e+03 + -5.776531998000000e+03 + -5.786252057564687e+03 + -5.795984422575620e+03 + -5.805729103393980e+03 + -5.815486110517342e+03 + -5.825255454000000e+03 + -5.835037143865786e+03 + -5.844831191184440e+03 + -5.854637606668529e+03 + -5.864456400127173e+03 + -5.874287581999993e+03 + -5.884131163070459e+03 + -5.893987153665426e+03 + -5.903855564090225e+03 + -5.913736404781277e+03 + -5.923629686000000e+03 + -5.933535418061928e+03 + -5.943453611973397e+03 + -5.953384278439786e+03 + -5.963327427438455e+03 + -5.973283069000000e+03 + -5.983251213525049e+03 + -5.993231872573540e+03 + -6.003225056744913e+03 + -6.013230774891098e+03 + -6.023249038000000e+03 + -6.033279857947543e+03 + -6.043323244258373e+03 + -6.053379206808452e+03 + -6.063447756872029e+03 + -6.073528904999992e+03 + -6.083622661322729e+03 + -6.093729036471069e+03 + -6.103848041095609e+03 + -6.113979685699232e+03 + -6.124123981000000e+03 + -6.134280937646101e+03 + -6.144450565430006e+03 + -6.154632874755873e+03 + -6.164827877191976e+03 + -6.175035583000000e+03 + -6.185256001935748e+03 + -6.195489145360168e+03 + -6.205735024246584e+03 + -6.215993648382001e+03 + -6.226265028000000e+03 + -6.236549173839082e+03 + -6.246846097225249e+03 + -6.257155808917487e+03 + -6.267478318647532e+03 + -6.277813636999993e+03 + -6.288161775039973e+03 + -6.298522743318929e+03 + -6.308896552332133e+03 + -6.319283212690151e+03 + -6.329682735000000e+03 + -6.340095129841887e+03 + -6.350520407726451e+03 + -6.360958579315570e+03 + -6.371409655512612e+03 + -6.381873647000000e+03 + -6.392350564293673e+03 + -6.402840417873253e+03 + -6.413343218449801e+03 + -6.423858977046060e+03 + -6.434387704000000e+03 + -6.444929409479182e+03 + -6.455484104800415e+03 + -6.466051800878468e+03 + -6.476632507643834e+03 + -6.487226235999992e+03 + -6.497832997260840e+03 + -6.508452801649206e+03 + -6.519085659445890e+03 + -6.529731581482401e+03 + -6.540390579000000e+03 + -6.551062663116751e+03 + -6.561747843536938e+03 + -6.572446130639311e+03 + -6.583157536279329e+03 + -6.593882071000000e+03 + -6.604619744763902e+03 + -6.615370568925604e+03 + -6.626134554413510e+03 + -6.636911711064461e+03 + -6.647702049999992e+03 + -6.658505582840396e+03 + -6.669322319643610e+03 + -6.680152270785791e+03 + -6.690995447680221e+03 + -6.701851860999993e+03 + -6.712721521095499e+03 + -6.723604439166686e+03 + -6.734500626205399e+03 + -6.745410092579864e+03 + -6.756332849000000e+03 + -6.767268906377159e+03 + -6.778218275408767e+03 + -6.789180966973428e+03 + -6.800156992270870e+03 + -6.811146362000000e+03 + -6.822149086596000e+03 + -6.833165176809022e+03 + -6.844194643583943e+03 + -6.855237498022965e+03 + -6.866293750999992e+03 + -6.877363413246921e+03 + -6.888446495554016e+03 + -6.899543008749155e+03 + -6.910652963678518e+03 + -6.921776370999992e+03 + -6.932913241460104e+03 + -6.944063586638155e+03 + -6.955227417524035e+03 + -6.966404743973952e+03 + -6.977595577000000e+03 + -6.988799928187199e+03 + -7.000017808173458e+03 + -7.011249227729020e+03 + -7.022494198140058e+03 + -7.033752730000000e+03 + -7.045024833685246e+03 + -7.056310520605544e+03 + -7.067609802022496e+03 + -7.078922688575014e+03 + -7.090249190999992e+03 + -7.101589320140114e+03 + -7.112943086874141e+03 + -7.124310502404821e+03 + -7.135691578318693e+03 + -7.147086324999992e+03 + -7.158494752468790e+03 + -7.169916872475182e+03 + -7.181352696510882e+03 + -7.192802235036809e+03 + -7.204265499000000e+03 + -7.215742499578333e+03 + -7.227233247391960e+03 + -7.238737753333357e+03 + -7.250256028887258e+03 + -7.261788085000000e+03 + -7.273333932305611e+03 + -7.284893581718426e+03 + -7.296467044458082e+03 + -7.308054332025791e+03 + -7.319655454999992e+03 + -7.331270423697963e+03 + -7.342899249833889e+03 + -7.354541944862027e+03 + -7.366198519315069e+03 + -7.377868983999992e+03 + -7.389553350032372e+03 + -7.401251628839381e+03 + -7.412963831476617e+03 + -7.424689968390403e+03 + -7.436430051000000e+03 + -7.448184091042194e+03 + -7.459952098877861e+03 + -7.471734085033887e+03 + -7.483530060856024e+03 + -7.495340038000000e+03 + -7.507164027981260e+03 + -7.519002041143363e+03 + -7.530854088088799e+03 + -7.542720180263871e+03 + -7.554600328999991e+03 + -7.566494545476364e+03 + -7.578402840747203e+03 + -7.590325225748156e+03 + -7.602261711334166e+03 + -7.614212308999990e+03 + -7.626177030375796e+03 + -7.638155885970103e+03 + -7.650148886679111e+03 + -7.662156044359298e+03 + -7.674177370000000e+03 + -7.686212874133715e+03 + -7.698262567927072e+03 + -7.710326462858042e+03 + -7.722404570574414e+03 + -7.734496902000000e+03 + -7.746603467726753e+03 + -7.758724278933637e+03 + -7.770859347070250e+03 + -7.783008683730720e+03 + -7.795172299999991e+03 + -7.807350206747154e+03 + -7.819542415323729e+03 + -7.831748936928582e+03 + -7.843969782379609e+03 + -7.856204962999991e+03 + -7.868454490389281e+03 + -7.880718375856472e+03 + -7.892996630459527e+03 + -7.905289265033489e+03 + -7.917596291000000e+03 + -7.929917719977670e+03 + -7.942253562811284e+03 + -7.954603830544003e+03 + -7.966968534806996e+03 + -7.979347687000000e+03 + -7.991741298275563e+03 + -8.004149379532312e+03 + -8.016571941875890e+03 + -8.029008996834256e+03 + -8.041460555999991e+03 + -8.053926630829063e+03 + -8.066407232164392e+03 + -8.078902371093302e+03 + -8.091412059283156e+03 + -8.103936307999991e+03 + -8.116475128348727e+03 + -8.129028531951320e+03 + -8.141596530160446e+03 + -8.154179133753471e+03 + -8.166776354000000e+03 + -8.179388202500601e+03 + -8.192014690774517e+03 + -8.204655830155478e+03 + -8.217311631752342e+03 + -8.229982107000000e+03 + -8.242667267443709e+03 + -8.255367124181290e+03 + -8.268081688506129e+03 + -8.280810972124258e+03 + -8.293554985999990e+03 + -8.306313740930424e+03 + -8.319087249046417e+03 + -8.331875522237864e+03 + -8.344678571514016e+03 + -8.357496408000001e+03 + -8.370329042981793e+03 + -8.383176487893126e+03 + -8.396038754236946e+03 + -8.408915853538949e+03 + -8.421807796999999e+03 + -8.434714595760075e+03 + -8.447636261558551e+03 + -8.460572806112319e+03 + -8.473524240852536e+03 + -8.486490577000000e+03 + -8.499471825734363e+03 + -8.512467998550057e+03 + -8.525479106914012e+03 + -8.538505162160651e+03 + -8.551546175999989e+03 + -8.564602160205039e+03 + -8.577673125806519e+03 + -8.590759084111069e+03 + -8.603860047081474e+03 + -8.616976026000000e+03 + -8.630107031891077e+03 + -8.643253076647045e+03 + -8.656414171854482e+03 + -8.669590328370747e+03 + -8.682781558000001e+03 + -8.695987872906602e+03 + -8.709209284090668e+03 + -8.722445802791402e+03 + -8.735697441007769e+03 + -8.748964210000000e+03 + -8.762246120773598e+03 + -8.775543185390141e+03 + -8.788855415760128e+03 + -8.802182823160678e+03 + -8.815525418999991e+03 + -8.828883214778334e+03 + -8.842256221886048e+03 + -8.855644451817980e+03 + -8.869047916276779e+03 + -8.882466627000000e+03 + -8.895900595656447e+03 + -8.909349833599377e+03 + -8.922814352320849e+03 + -8.936294163622882e+03 + -8.949789279000001e+03 + -8.963299709806102e+03 + -8.976825467697834e+03 + -8.990366564425331e+03 + -9.003923011733321e+03 + -9.017494820999989e+03 + -9.031082003570244e+03 + -9.044684571593196e+03 + -9.058302536801553e+03 + -9.071935910043938e+03 + -9.085584702999991e+03 + -9.099248927805194e+03 + -9.112928596071970e+03 + -9.126623719398038e+03 + -9.140334309541779e+03 + -9.154060378000000e+03 + -9.167801936143134e+03 + -9.181558995552323e+03 + -9.195331568052554e+03 + -9.209119665711642e+03 + -9.222923300000000e+03 + -9.236742482191501e+03 + -9.250577224366738e+03 + -9.264427538348678e+03 + -9.278293435300837e+03 + -9.292174926999989e+03 + -9.306072025514850e+03 + -9.319984742353185e+03 + -9.333913089239737e+03 + -9.347857078372264e+03 + -9.361816720999988e+03 + -9.375792028076301e+03 + -9.389783011923670e+03 + -9.403789684689073e+03 + -9.417812057757259e+03 + -9.431850143000000e+03 + -9.445903952452922e+03 + -9.459973497383473e+03 + -9.474058789280491e+03 + -9.488159840242311e+03 + -9.502276662000000e+03 + -9.516409266099370e+03 + -9.530557664431180e+03 + -9.544721868948835e+03 + -9.558901891554557e+03 + -9.573097743999990e+03 + -9.587309437907974e+03 + -9.601536984771086e+03 + -9.615780396443668e+03 + -9.630039685320193e+03 + -9.644314862999989e+03 + -9.658605940694017e+03 + -9.672912930240365e+03 + -9.687235843732506e+03 + -9.701574693379191e+03 + -9.715929491000001e+03 + -9.730300248146514e+03 + -9.744686976337332e+03 + -9.759089687418043e+03 + -9.773508393705906e+03 + -9.787943106999999e+03 + -9.802393838806964e+03 + -9.816860600913731e+03 + -9.831343405392694e+03 + -9.845842264577648e+03 + -9.860357189999990e+03 + -9.874888192875391e+03 + -9.889435285292540e+03 + -9.903998479577405e+03 + -9.918577788007758e+03 + -9.933173221999989e+03 + -9.947784792760667e+03 + -9.962412512866247e+03 + -9.977056394630243e+03 + -9.991716449514770e+03 + -1.000639269000000e+04 + -1.002108512827329e+04 + -1.003579377260607e+04 + -1.005051863510592e+04 + -1.006525973450424e+04 + -1.008001708000000e+04 + -1.009479067738785e+04 + -1.010958054488143e+04 + -1.012438669671707e+04 + -1.013920913701616e+04 + -1.015404787999999e+04 + -1.016890294387830e+04 + -1.018377433451942e+04 + -1.019866206104612e+04 + -1.021356614193473e+04 + -1.022848658999999e+04 + -1.024342341422066e+04 + -1.025837662498870e+04 + -1.027334623400460e+04 + -1.028833225445739e+04 + -1.030333470000000e+04 + -1.031835358368700e+04 + -1.033338891534757e+04 + -1.034844070623467e+04 + -1.036350897076085e+04 + -1.037859372000000e+04 + -1.039369496373519e+04 + -1.040881271589677e+04 + -1.042394698923176e+04 + -1.043909779325773e+04 + -1.045426513999999e+04 + -1.046944904320307e+04 + -1.048464951626011e+04 + -1.049986657147346e+04 + -1.051510021951631e+04 + -1.053035046999999e+04 + -1.054561733346490e+04 + -1.056090082649770e+04 + -1.057620096382862e+04 + -1.059151775501402e+04 + -1.060685121000000e+04 + -1.062220133982168e+04 + -1.063756815769902e+04 + -1.065295167679853e+04 + -1.066835190951487e+04 + -1.068376887000000e+04 + -1.069920257172756e+04 + -1.071465302083269e+04 + -1.073012022736731e+04 + -1.074560420973240e+04 + -1.076110497999999e+04 + -1.077662254698522e+04 + -1.079215692468130e+04 + -1.080770812602064e+04 + -1.082327616047952e+04 + -1.083886103999999e+04 + -1.085446277832030e+04 + -1.087008138917964e+04 + -1.088571688451933e+04 + -1.090136927381244e+04 + -1.091703857000000e+04 + -1.093272478707855e+04 + -1.094842793381667e+04 + -1.096414802233435e+04 + -1.097988507119364e+04 + -1.099563909000000e+04 + -1.101141008471468e+04 + -1.102719807131307e+04 + -1.104300306633410e+04 + -1.105882508291791e+04 + -1.107466412999999e+04 + -1.109052021511841e+04 + -1.110639335038349e+04 + -1.112228355101184e+04 + -1.113819083451417e+04 + -1.115411520999999e+04 + -1.117005668368749e+04 + -1.118601527242516e+04 + -1.120199099177015e+04 + -1.121798385114509e+04 + -1.123399386000000e+04 + -1.125002102929127e+04 + -1.126606537454743e+04 + -1.128212691149971e+04 + -1.129820565394142e+04 + -1.131430161000000e+04 + -1.133041478676655e+04 + -1.134654520134832e+04 + -1.136269286880464e+04 + -1.137885779750048e+04 + -1.139503999999999e+04 + -1.141123949060806e+04 + -1.142745627830015e+04 + -1.144369037489935e+04 + -1.145994179819328e+04 + -1.147621056000000e+04 + -1.149249666929363e+04 + -1.150880014040390e+04 + -1.152512098586926e+04 + -1.154145921396878e+04 + -1.155781484000000e+04 + -1.157418788116290e+04 + -1.159057834325663e+04 + -1.160698623573862e+04 + -1.162341157750990e+04 + -1.163985437999999e+04 + -1.165631465167572e+04 + -1.167279241049137e+04 + -1.168928767028212e+04 + -1.170580043559586e+04 + -1.172233071999999e+04 + -1.173887854137991e+04 + -1.175544390951204e+04 + -1.177202683447122e+04 + -1.178862732998528e+04 + -1.180524541000000e+04 + -1.182188108744826e+04 + -1.183853437152247e+04 + -1.185520527417456e+04 + -1.187189381268968e+04 + -1.188860000000000e+04 + -1.190532384555031e+04 + -1.192206535739879e+04 + -1.193882454957090e+04 + -1.195560144455150e+04 + -1.197239604999999e+04 + -1.198920836801576e+04 + -1.200603841862060e+04 + -1.202288622005816e+04 + -1.203975178087160e+04 + -1.205663510999999e+04 + -1.207353621858988e+04 + -1.209045512337030e+04 + -1.210739183876488e+04 + -1.212434637372514e+04 + -1.214131874000000e+04 + -1.215830895146994e+04 + -1.217531702204386e+04 + -1.219234296344827e+04 + -1.220938678454126e+04 + -1.222644850000000e+04 + -1.224352812665298e+04 + -1.226062567426862e+04 + -1.227774115320455e+04 + -1.229487457740941e+04 + -1.231202595999999e+04 + -1.232919531361497e+04 + -1.234638265190763e+04 + -1.236358798719477e+04 + -1.238081132944854e+04 + -1.239805268999999e+04 + -1.241531208224867e+04 + -1.243258952373459e+04 + -1.244988502746729e+04 + -1.246719859854622e+04 + -1.248453025000000e+04 + -1.250187999937352e+04 + -1.251924785997314e+04 + -1.253663384322633e+04 + -1.255403795942784e+04 + -1.257146022000000e+04 + -1.258890063824787e+04 + -1.260635923174130e+04 + -1.262383601348307e+04 + -1.264133098848631e+04 + -1.265884416999999e+04 + -1.267637557565735e+04 + -1.269392521755929e+04 + -1.271149310837373e+04 + -1.272907926320349e+04 + -1.274668368999999e+04 + -1.276430639533002e+04 + -1.278194739917555e+04 + -1.279960671868295e+04 + -1.281728436173200e+04 + -1.283498034000000e+04 + -1.285269466774105e+04 + -1.287042735763161e+04 + -1.288817842259290e+04 + -1.290594787633268e+04 + -1.292373573000000e+04 + -1.294154199365508e+04 + -1.295936667981993e+04 + -1.297720980264566e+04 + -1.299507137776778e+04 + -1.301295141999999e+04 + -1.303084994203483e+04 + -1.304876695061188e+04 + -1.306670245535235e+04 + -1.308465647270176e+04 + -1.310262901999999e+04 + -1.312062011245361e+04 + -1.313862975604251e+04 + -1.315665796055223e+04 + -1.317470474462057e+04 + -1.319277012000000e+04 + -1.321085409533674e+04 + -1.322895668661698e+04 + -1.324707790969205e+04 + -1.326521777718879e+04 + -1.328337630000000e+04 + -1.330155348851537e+04 + -1.331974935491385e+04 + -1.333796391362056e+04 + -1.335619718140170e+04 + -1.337444916999999e+04 + -1.339271988874384e+04 + -1.341100935082290e+04 + -1.342931756987852e+04 + -1.344764455872234e+04 + -1.346599032999999e+04 + -1.348435489664480e+04 + -1.350273827293541e+04 + -1.352114047045672e+04 + -1.353956149695641e+04 + -1.355800137000000e+04 + -1.357646010972569e+04 + -1.359493772045508e+04 + -1.361343421245217e+04 + -1.363194960986463e+04 + -1.365048392000000e+04 + -1.366903714425879e+04 + -1.368760930691950e+04 + -1.370620042690972e+04 + -1.372481050688227e+04 + -1.374343955999999e+04 + -1.376208760473736e+04 + -1.378075465005087e+04 + -1.379944070672178e+04 + -1.381814579185646e+04 + -1.383686991999999e+04 + -1.385561310323773e+04 + -1.387437535187516e+04 + -1.389315667691767e+04 + -1.391195709130158e+04 + -1.393077661000000e+04 + -1.394961524865979e+04 + -1.396847302075987e+04 + -1.398734993803961e+04 + -1.400624601054151e+04 + -1.402516125000000e+04 + -1.404409566989268e+04 + -1.406304928589068e+04 + -1.408202211294199e+04 + -1.410101416389908e+04 + -1.412002544999999e+04 + -1.413905598164077e+04 + -1.415810576964489e+04 + -1.417717482985645e+04 + -1.419626318438561e+04 + -1.421537083999999e+04 + -1.423449779870650e+04 + -1.425364408441530e+04 + -1.427280971628262e+04 + -1.429199469812906e+04 + -1.431119904000000e+04 + -1.433042275698022e+04 + -1.434966586475864e+04 + -1.436892837784737e+04 + -1.438821030874347e+04 + -1.440751167000000e+04 + -1.442683247464153e+04 + -1.444617273693482e+04 + -1.446553246845352e+04 + -1.448491167696990e+04 + -1.450431037999999e+04 + -1.452372859766022e+04 + -1.454316633455064e+04 + -1.456262360064903e+04 + -1.458210041914065e+04 + -1.460159679999998e+04 + -1.462111274782618e+04 + -1.464064828275210e+04 + -1.466020342227678e+04 + -1.467977817411577e+04 + -1.469937255000000e+04 + -1.471898656425745e+04 + -1.473862022905967e+04 + -1.475827355783788e+04 + -1.477794656667906e+04 + -1.479763927000000e+04 + -1.481735168022591e+04 + -1.483708380678435e+04 + -1.485683566151257e+04 + -1.487660726097236e+04 + -1.489639861999999e+04 + -1.491620975095499e+04 + -1.493604066191429e+04 + -1.495589136614776e+04 + -1.497576188555746e+04 + -1.499565223000000e+04 + -1.501556240451360e+04 + -1.503549242791256e+04 + -1.505544231896391e+04 + -1.507541209051985e+04 + -1.509540175000000e+04 + -1.511541130465759e+04 + -1.513544077375174e+04 + -1.515549017500820e+04 + -1.517555951933053e+04 + -1.519564881999999e+04 + -1.521575809081157e+04 + -1.523588734003694e+04 + -1.525603658036919e+04 + -1.527620583277191e+04 + -1.529639510999998e+04 + -1.531660442034102e+04 + -1.533683377728779e+04 + -1.535708319443415e+04 + -1.537735268372974e+04 + -1.539764226000000e+04 + -1.541795193921473e+04 + -1.543828173411788e+04 + -1.545863165713528e+04 + -1.547900172144165e+04 + -1.549939194000000e+04 + -1.551980232569260e+04 + -1.554023289178161e+04 + -1.556068365093051e+04 + -1.558115461506463e+04 + -1.560164579999999e+04 + -1.562215722197032e+04 + -1.564268888875843e+04 + -1.566324081295743e+04 + -1.568381301679686e+04 + -1.570440550999999e+04 + -1.572501829745089e+04 + -1.574565139909988e+04 + -1.576630483256334e+04 + -1.578697860613842e+04 + -1.580767273000000e+04 + -1.582838721786272e+04 + -1.584912209052793e+04 + -1.586987736246908e+04 + -1.589065303680525e+04 + -1.591144913000000e+04 + -1.593226566336701e+04 + -1.595310264072689e+04 + -1.597396007256353e+04 + -1.599483798518879e+04 + -1.601573638999999e+04 + -1.603665529105288e+04 + -1.605759470511345e+04 + -1.607855464838671e+04 + -1.609953513161670e+04 + -1.612053616999998e+04 + -1.614155778004294e+04 + -1.616259997081388e+04 + -1.618366275348782e+04 + -1.620474614514243e+04 + -1.622585016000000e+04 + -1.624697481007329e+04 + -1.626812010728422e+04 + -1.628928606592670e+04 + -1.631047270337715e+04 + -1.633168003000000e+04 + -1.635290805454565e+04 + -1.637415679800609e+04 + -1.639542627592296e+04 + -1.641671649164588e+04 + -1.643802745999998e+04 + -1.645935920179283e+04 + -1.648071172935930e+04 + -1.650208505431875e+04 + -1.652347919039644e+04 + -1.654489414999998e+04 + -1.656632994566724e+04 + -1.658778659427021e+04 + -1.660926410974226e+04 + -1.663076250029903e+04 + -1.665228178000000e+04 + -1.667382196574960e+04 + -1.669538306946903e+04 + -1.671696510420377e+04 + -1.673856808645374e+04 + -1.676019203000000e+04 + -1.678183694695306e+04 + -1.680350285053965e+04 + -1.682518975366077e+04 + -1.684689766850574e+04 + -1.686862660999998e+04 + -1.689037659405139e+04 + -1.691214763326874e+04 + -1.693393974023558e+04 + -1.695575292860696e+04 + -1.697758720999999e+04 + -1.699944259677470e+04 + -1.702131910964586e+04 + -1.704321676352935e+04 + -1.706513556209216e+04 + -1.708707552000000e+04 + -1.710903665790321e+04 + -1.713101898938551e+04 + -1.715302252479822e+04 + -1.717504727292061e+04 + -1.719709325000000e+04 + -1.721916047545785e+04 + -1.724124896174670e+04 + -1.726335872072246e+04 + -1.728548976595536e+04 + -1.730764210999998e+04 + -1.732981576548871e+04 + -1.735201074834581e+04 + -1.737422707347338e+04 + -1.739646475299950e+04 + -1.741872379999999e+04 + -1.744100422776899e+04 + -1.746330604747148e+04 + -1.748562927386205e+04 + -1.750797392735042e+04 + -1.753034002000000e+04 + -1.755272756012299e+04 + -1.757513656385630e+04 + -1.759756704698003e+04 + -1.762001902165879e+04 + -1.764249250000000e+04 + -1.766498749503509e+04 + -1.768750402279969e+04 + -1.771004209797560e+04 + -1.773260173223158e+04 + -1.775518293999998e+04 + -1.777778573725219e+04 + -1.780041013823985e+04 + -1.782305615380817e+04 + -1.784572379125812e+04 + -1.786841306999998e+04 + -1.789112401297027e+04 + -1.791385662520795e+04 + -1.793661091551944e+04 + -1.795938690506571e+04 + -1.798218461000000e+04 + -1.800500404157250e+04 + -1.802784520726593e+04 + -1.805070812126097e+04 + -1.807359280836476e+04 + -1.809649928000000e+04 + -1.811942754077938e+04 + -1.814237760512274e+04 + -1.816534949154946e+04 + -1.818834322012563e+04 + -1.821135879999998e+04 + -1.823439623670011e+04 + -1.825745554979138e+04 + -1.828053675712656e+04 + -1.830363986886144e+04 + -1.832676489999998e+04 + -1.834991186721417e+04 + -1.837308077964562e+04 + -1.839627164834952e+04 + -1.841948449011883e+04 + -1.844271932000000e+04 + -1.846597615248214e+04 + -1.848925500551537e+04 + -1.851255589141731e+04 + -1.853587881367952e+04 + -1.855922379000000e+04 + -1.858259084403384e+04 + -1.860597998459446e+04 + -1.862939122130964e+04 + -1.865282457086503e+04 + -1.867628004999998e+04 + -1.869975767367864e+04 + -1.872325745125265e+04 + -1.874677939400045e+04 + -1.877032351829797e+04 + -1.879388983999998e+04 + -1.881747837395618e+04 + -1.884108913346766e+04 + -1.886472213066709e+04 + -1.888837737699991e+04 + -1.891205489000000e+04 + -1.893575468867888e+04 + -1.895947678210836e+04 + -1.898322118083019e+04 + -1.900698790146692e+04 + -1.903077696000000e+04 + -1.905458837122149e+04 + -1.907842214817702e+04 + -1.910227830328199e+04 + -1.912615684887913e+04 + -1.915005779999998e+04 + -1.917398117252360e+04 + -1.919792697876641e+04 + -1.922189523162585e+04 + -1.924588594641727e+04 + -1.926989913999998e+04 + -1.929393482787026e+04 + -1.931799301676958e+04 + -1.934207372057390e+04 + -1.936617696590223e+04 + -1.939030276000000e+04 + -1.941445110358184e+04 + -1.943862202401437e+04 + -1.946281554213054e+04 + -1.948703165938676e+04 + -1.951127038999998e+04 + -1.953553175531375e+04 + -1.955981576784185e+04 + -1.958412243887696e+04 + -1.960845178142548e+04 + -1.963280380999998e+04 + -1.965717854010317e+04 + -1.968157598764983e+04 + -1.970599616682758e+04 + -1.973043908928781e+04 + -1.975490477000000e+04 + -1.977939322508017e+04 + -1.980390446612710e+04 + -1.982843850672890e+04 + -1.985299536464853e+04 + -1.987757505000000e+04 + -1.990217757132781e+04 + -1.992680295149982e+04 + -1.995145120910892e+04 + -1.997612235106852e+04 + -2.000081638999998e+04 + -2.002553334291399e+04 + -2.005027322692212e+04 + -2.007503605456619e+04 + -2.009982183242756e+04 + -2.012463057999998e+04 + -2.014946232050470e+04 + -2.017431705750974e+04 + -2.019919480128925e+04 + -2.022409557869796e+04 + -2.024901940000000e+04 + -2.027396626876084e+04 + -2.029893620825063e+04 + -2.032392923791251e+04 + -2.034894536415857e+04 + -2.037398460000000e+04 + -2.039904696273123e+04 + -2.042413246681671e+04 + -2.044924112749899e+04 + -2.047437296177629e+04 + -2.049952797999998e+04 + -2.052470619105544e+04 + -2.054990761544010e+04 + -2.057513226917888e+04 + -2.060038015795331e+04 + -2.062565129999998e+04 + -2.065094571854568e+04 + -2.067626342205840e+04 + -2.070160442063917e+04 + -2.072696873225083e+04 + -2.075235637000000e+04 + -2.077776734528838e+04 + -2.080320167696219e+04 + -2.082865938214449e+04 + -2.085414047244347e+04 + -2.087964496000000e+04 + -2.090517285805777e+04 + -2.093072418166662e+04 + -2.095629894648643e+04 + -2.098189716820891e+04 + -2.100751885999998e+04 + -2.103316403410750e+04 + -2.105883270565323e+04 + -2.108452489048020e+04 + -2.111024060421226e+04 + -2.113597985999998e+04 + -2.116174267011207e+04 + -2.118752904964539e+04 + -2.121333901446366e+04 + -2.123917258027344e+04 + -2.126502976000000e+04 + -2.129091056582378e+04 + -2.131681501406569e+04 + -2.134274311932949e+04 + -2.136869489244911e+04 + -2.139467035000000e+04 + -2.142066951097057e+04 + -2.144669238829770e+04 + -2.147273899344209e+04 + -2.149880933837191e+04 + -2.152490343999998e+04 + -2.155102131698669e+04 + -2.157716298229367e+04 + -2.160332844744082e+04 + -2.162951772437019e+04 + -2.165573082999998e+04 + -2.168196778300156e+04 + -2.170822859627157e+04 + -2.173451328139519e+04 + -2.176082185053812e+04 + -2.178715432000000e+04 + -2.181351070821111e+04 + -2.183989103150391e+04 + -2.186629530288904e+04 + -2.189272353140778e+04 + -2.191917573000000e+04 + -2.194565191497987e+04 + -2.197215210512397e+04 + -2.199867631637375e+04 + -2.202522455969623e+04 + -2.205179684999998e+04 + -2.207839320363563e+04 + -2.210501363148952e+04 + -2.213165814783550e+04 + -2.215832677350680e+04 + -2.218501951999998e+04 + -2.221173639532642e+04 + -2.223847741910094e+04 + -2.226524260850044e+04 + -2.229203197306979e+04 + -2.231884553000000e+04 + -2.234568329890952e+04 + -2.237254528774074e+04 + -2.239943150806158e+04 + -2.242634198094407e+04 + -2.245327672000000e+04 + -2.248023573585785e+04 + -2.250721904853940e+04 + -2.253422667413636e+04 + -2.256125861967753e+04 + -2.258831489999998e+04 + -2.261539553480252e+04 + -2.264250054093014e+04 + -2.266962993052693e+04 + -2.269678371062339e+04 + -2.272396189999998e+04 + -2.275116452153000e+04 + -2.277839158301363e+04 + -2.280564309534358e+04 + -2.283291907950545e+04 + -2.286021955000000e+04 + -2.288754451771620e+04 + -2.291489399812011e+04 + -2.294226800704672e+04 + -2.296966655917324e+04 + -2.299708967000000e+04 + -2.302453735490683e+04 + -2.305200962641978e+04 + -2.307950649734620e+04 + -2.310702798236498e+04 + -2.313457409999998e+04 + -2.316214486856879e+04 + -2.318974029613145e+04 + -2.321736039447026e+04 + -2.324500518448656e+04 + -2.327267467999998e+04 + -2.330036889175501e+04 + -2.332808783850466e+04 + -2.335583153764027e+04 + -2.338360000121357e+04 + -2.341139324000000e+04 + -2.343921126672951e+04 + -2.346705410394532e+04 + -2.349492176951476e+04 + -2.352281427072812e+04 + -2.355073162000000e+04 + -2.357867383414989e+04 + -2.360664093193761e+04 + -2.363463292919098e+04 + -2.366264983684289e+04 + -2.369069166999998e+04 + -2.371875844507638e+04 + -2.374685017193912e+04 + -2.377496686591387e+04 + -2.380310855200050e+04 + -2.383127523999998e+04 + -2.385946693403709e+04 + -2.388768365690810e+04 + -2.391592542840760e+04 + -2.394419225713039e+04 + -2.397248416000000e+04 + -2.400080115691363e+04 + -2.402914325571854e+04 + -2.405751046800998e+04 + -2.408590281513924e+04 + -2.411432031000000e+04 + -2.414276296293371e+04 + -2.417123079796694e+04 + -2.419972383203242e+04 + -2.422824206706797e+04 + -2.425678551999998e+04 + -2.428535421485334e+04 + -2.431394816200073e+04 + -2.434256737430352e+04 + -2.437121187300517e+04 + -2.439988166999998e+04 + -2.442857677325164e+04 + -2.445729720103540e+04 + -2.448604297194451e+04 + -2.451481410082247e+04 + -2.454361060000000e+04 + -2.457243248182022e+04 + -2.460127976431730e+04 + -2.463015246522100e+04 + -2.465905059942621e+04 + -2.468797417999998e+04 + -2.471692321945616e+04 + -2.474589773222362e+04 + -2.477489773480251e+04 + -2.480392324581322e+04 + -2.483297427999998e+04 + -2.486205084917968e+04 + -2.489115296405446e+04 + -2.492028064024748e+04 + -2.494943390068509e+04 + -2.497861275999998e+04 + -2.500781722863925e+04 + -2.503704732334474e+04 + -2.506630305872901e+04 + -2.509558444448151e+04 + -2.512489150000000e+04 + -2.515422424757818e+04 + -2.518358269497819e+04 + -2.521296685328307e+04 + -2.524237674371633e+04 + -2.527181237999998e+04 + -2.530127377273551e+04 + -2.533076094162915e+04 + -2.536027390311031e+04 + -2.538981266594794e+04 + -2.541937724999998e+04 + -2.544896767801531e+04 + -2.547858395406606e+04 + -2.550822608802068e+04 + -2.553789410507042e+04 + -2.556758802000000e+04 + -2.559730784246711e+04 + -2.562705359189478e+04 + -2.565682528525429e+04 + -2.568662293247029e+04 + -2.571644655000000e+04 + -2.574629615713407e+04 + -2.577617176604459e+04 + -2.580607338891535e+04 + -2.583600104095400e+04 + -2.586595473999998e+04 + -2.589593450400127e+04 + -2.592594034522632e+04 + -2.595597227610649e+04 + -2.598603031176017e+04 + -2.601611446999998e+04 + -2.604622476879967e+04 + -2.607636122042706e+04 + -2.610652383730750e+04 + -2.613671263455693e+04 + -2.616692763000000e+04 + -2.619716884161440e+04 + -2.622743628160562e+04 + -2.625772996246335e+04 + -2.628804989951923e+04 + -2.631839611000000e+04 + -2.634876861165059e+04 + -2.637916741999917e+04 + -2.640959254907723e+04 + -2.644004401148305e+04 + -2.647052181999998e+04 + -2.650102598983489e+04 + -2.653155654491748e+04 + -2.656211350103963e+04 + -2.659269685960091e+04 + -2.662330663999998e+04 + -2.665394286925502e+04 + -2.668460555517195e+04 + -2.671529470758218e+04 + -2.674601034670874e+04 + -2.677675249000000e+04 + -2.680752115154265e+04 + -2.683831634157976e+04 + -2.686913807564717e+04 + -2.689998637786448e+04 + -2.693086126000000e+04 + -2.696176272916689e+04 + -2.699269080763921e+04 + -2.702364551500381e+04 + -2.705462686113689e+04 + -2.708563485999998e+04 + -2.711666952809900e+04 + -2.714773087942122e+04 + -2.717881892991400e+04 + -2.720993369901594e+04 + -2.724107519999998e+04 + -2.727224344400496e+04 + -2.730343845029767e+04 + -2.733466023562860e+04 + -2.736590881019403e+04 + -2.739718419000000e+04 + -2.742848639412166e+04 + -2.745981543741902e+04 + -2.749117133427855e+04 + -2.752255410001475e+04 + -2.755396375000000e+04 + -2.758540029934807e+04 + -2.761686376223195e+04 + -2.764835415476579e+04 + -2.767987149599797e+04 + -2.771141579999997e+04 + -2.774298707825893e+04 + -2.777458534547961e+04 + -2.780621061813955e+04 + -2.783786291408934e+04 + -2.786954224999998e+04 + -2.790124864062599e+04 + -2.793298209650868e+04 + -2.796474263269793e+04 + -2.799653027215609e+04 + -2.802834503000000e+04 + -2.806018691678819e+04 + -2.809205594694776e+04 + -2.812395213748840e+04 + -2.815587550739401e+04 + -2.818782607000000e+04 + -2.821980383662756e+04 + -2.825180882556652e+04 + -2.828384105454396e+04 + -2.831590053775406e+04 + -2.834798728999998e+04 + -2.838010132665882e+04 + -2.841224266303304e+04 + -2.844441131398464e+04 + -2.847660729395342e+04 + -2.850883061999998e+04 + -2.854108131015271e+04 + -2.857335937943549e+04 + -2.860566484233479e+04 + -2.863799771378746e+04 + -2.867035801000000e+04 + -2.870274574643904e+04 + -2.873516093256026e+04 + -2.876760358436649e+04 + -2.880007372909855e+04 + -2.883257138000000e+04 + -2.886509654365616e+04 + -2.889764923870952e+04 + -2.893022948372628e+04 + -2.896283729252707e+04 + -2.899547267999998e+04 + -2.902813566168059e+04 + -2.906082625190441e+04 + -2.909354446650575e+04 + -2.912629032389195e+04 + -2.915906383999998e+04 + -2.919186502919167e+04 + -2.922469390650106e+04 + -2.925755048733507e+04 + -2.929043478725063e+04 + -2.932334682000000e+04 + -2.935628660019129e+04 + -2.938925415043921e+04 + -2.942224948806936e+04 + -2.945527261979538e+04 + -2.948832356000000e+04 + -2.952140232838030e+04 + -2.955450894361826e+04 + -2.958764342089699e+04 + -2.962080577090842e+04 + -2.965399600999997e+04 + -2.968721415715336e+04 + -2.972046022629084e+04 + -2.975373423280592e+04 + -2.978703619592538e+04 + -2.982036612999997e+04 + -2.985372404652352e+04 + -2.988710995909819e+04 + -2.992052388535540e+04 + -2.995396584761164e+04 + -2.998743586000000e+04 + -3.002093393306212e+04 + -3.005446008516229e+04 + -3.008801433415196e+04 + -3.012159669410924e+04 + -3.015520717999998e+04 + -3.018884580728562e+04 + -3.022251259030155e+04 + -3.025620754490144e+04 + -3.028993068950620e+04 + -3.032368203999997e+04 + -3.035746161072607e+04 + -3.039126941699663e+04 + -3.042510547393189e+04 + -3.045896979612689e+04 + -3.049286239999998e+04 + -3.052678330335746e+04 + -3.056073252467363e+04 + -3.059471007984014e+04 + -3.062871598061521e+04 + -3.066275024000000e+04 + -3.069681287356475e+04 + -3.073090390293319e+04 + -3.076502334621974e+04 + -3.079917121404217e+04 + -3.083334751999997e+04 + -3.086755228023463e+04 + -3.090178551167921e+04 + -3.093604723225209e+04 + -3.097033746063074e+04 + -3.100465620999998e+04 + -3.103900349175437e+04 + -3.107337932446759e+04 + -3.110778372555016e+04 + -3.114221670819769e+04 + -3.117667828999997e+04 + -3.121116848957679e+04 + -3.124568731744623e+04 + -3.128023478769976e+04 + -3.131481092268889e+04 + -3.134941574000000e+04 + -3.138404925321087e+04 + -3.141871147408727e+04 + -3.145340241670125e+04 + -3.148812209933996e+04 + -3.152287053999997e+04 + -3.155764775577736e+04 + -3.159245376185456e+04 + -3.162728857279384e+04 + -3.166215220315186e+04 + -3.169704466999997e+04 + -3.173196599132658e+04 + -3.176691618227545e+04 + -3.180189525721778e+04 + -3.183690323068162e+04 + -3.187194012000000e+04 + -3.190700594323912e+04 + -3.194210071422084e+04 + -3.197722444868163e+04 + -3.201237716636405e+04 + -3.204755888000000e+04 + -3.208276960047787e+04 + -3.211800935023939e+04 + -3.215327814773632e+04 + -3.218857600158763e+04 + -3.222390292999997e+04 + -3.225925895535199e+04 + -3.229464408973093e+04 + -3.233005834462857e+04 + -3.236550173499735e+04 + -3.240097427999997e+04 + -3.243647600017841e+04 + -3.247200691143220e+04 + -3.250756702669824e+04 + -3.254315635678932e+04 + -3.257877492000000e+04 + -3.261442273792899e+04 + -3.265009982555360e+04 + -3.268580619650297e+04 + -3.272154186523808e+04 + -3.275730685000000e+04 + -3.279310116911321e+04 + -3.282892483177912e+04 + -3.286477785354587e+04 + -3.290066026202923e+04 + -3.293657206999998e+04 + -3.297251328378459e+04 + -3.300848392497173e+04 + -3.304448401407080e+04 + -3.308051356412061e+04 + -3.311657258999998e+04 + -3.315266110752813e+04 + -3.318877912993135e+04 + -3.322492667413289e+04 + -3.326110376297835e+04 + -3.329731041000000e+04 + -3.333354662539115e+04 + -3.336981243131684e+04 + -3.340610784669931e+04 + -3.344243288124504e+04 + -3.347878755000000e+04 + -3.351517187197135e+04 + -3.355158586607149e+04 + -3.358802954742114e+04 + -3.362450292603845e+04 + -3.366100601999997e+04 + -3.369753885113907e+04 + -3.373410143432544e+04 + -3.377069378324004e+04 + -3.380731591267414e+04 + -3.384396783999997e+04 + -3.388064958319757e+04 + -3.391736115628571e+04 + -3.395410257481684e+04 + -3.399087385786547e+04 + -3.402767502000000e+04 + -3.406450607498593e+04 + -3.410136704569621e+04 + -3.413825794940452e+04 + -3.417517879208190e+04 + -3.421212959000000e+04 + -3.424911036577375e+04 + -3.428612113814977e+04 + -3.432316192150666e+04 + -3.436023272579379e+04 + -3.439733356999998e+04 + -3.443446447621852e+04 + -3.447162545467578e+04 + -3.450881651888796e+04 + -3.454603769159935e+04 + -3.458328898999997e+04 + -3.462057042742187e+04 + -3.465788201822977e+04 + -3.469522377879945e+04 + -3.473259572783916e+04 + -3.476999788000000e+04 + -3.480743024920274e+04 + -3.484489285737491e+04 + -3.488238572274076e+04 + -3.491990885516477e+04 + -3.495746227000000e+04 + -3.499504598627476e+04 + -3.503266002163332e+04 + -3.507030439252002e+04 + -3.510797911399110e+04 + -3.514568419999997e+04 + -3.518341966538968e+04 + -3.522118553105182e+04 + -3.525898181605689e+04 + -3.529680853433678e+04 + -3.533466569999997e+04 + -3.537255332834070e+04 + -3.541047143775194e+04 + -3.544842004484196e+04 + -3.548639916273562e+04 + -3.552440881000000e+04 + -3.556244900769237e+04 + -3.560051977192599e+04 + -3.563862111528000e+04 + -3.567675304773126e+04 + -3.571491559000000e+04 + -3.575310876677514e+04 + -3.579133259025522e+04 + -3.582958707123636e+04 + -3.586787222387752e+04 + -3.590618806999997e+04 + -3.594453463328037e+04 + -3.598291192576281e+04 + -3.602131995866808e+04 + -3.605975874687618e+04 + -3.609822830999997e+04 + -3.613672866872384e+04 + -3.617525983663845e+04 + -3.621382182906358e+04 + -3.625241466608051e+04 + -3.629103836000000e+04 + -3.632969292147818e+04 + -3.636837837559645e+04 + -3.640709474306420e+04 + -3.644584203277781e+04 + -3.648462026000000e+04 + -3.652342944409004e+04 + -3.656226960170399e+04 + -3.660114075023598e+04 + -3.664004290875195e+04 + -3.667897608999997e+04 + -3.671794030512006e+04 + -3.675693557547587e+04 + -3.679596192058374e+04 + -3.683501935339895e+04 + -3.687410788999997e+04 + -3.691322754870546e+04 + -3.695237834723054e+04 + -3.699156030212950e+04 + -3.703077342834224e+04 + -3.707001774000000e+04 + -3.710929325203417e+04 + -3.714859998429457e+04 + -3.718793795692067e+04 + -3.722730718808447e+04 + -3.726670768999997e+04 + -3.730613947399677e+04 + -3.734560256273038e+04 + -3.738509697431393e+04 + -3.742462271654350e+04 + -3.746417980999997e+04 + -3.750376828013417e+04 + -3.754338813660564e+04 + -3.758303939267375e+04 + -3.762272207245150e+04 + -3.766243618999997e+04 + -3.770218175518502e+04 + -3.774195878945678e+04 + -3.778176731257176e+04 + -3.782160733741773e+04 + -3.786147888000000e+04 + -3.790138195864309e+04 + -3.794131659132003e+04 + -3.798128279431332e+04 + -3.802128058166662e+04 + -3.806130996999997e+04 + -3.810137097737330e+04 + -3.814146362046005e+04 + -3.818158791697343e+04 + -3.822174388615621e+04 + -3.826193153999997e+04 + -3.830215088938532e+04 + -3.834240195971708e+04 + -3.838268477130731e+04 + -3.842299933188884e+04 + -3.846334565999997e+04 + -3.850372377842891e+04 + -3.854413369633216e+04 + -3.858457542816681e+04 + -3.862504900090371e+04 + -3.866555443000000e+04 + -3.870609172486966e+04 + -3.874666090332934e+04 + -3.878726198409722e+04 + -3.882789498399841e+04 + -3.886855991999997e+04 + -3.890925680946781e+04 + -3.894998567054054e+04 + -3.899074651957592e+04 + -3.903153937021765e+04 + -3.907236423999997e+04 + -3.911322114736439e+04 + -3.915411010384250e+04 + -3.919503112747372e+04 + -3.923598424716172e+04 + -3.927696946999997e+04 + -3.931798680038228e+04 + -3.935903628964794e+04 + -3.940011793259103e+04 + -3.944123164809230e+04 + -3.948237770000000e+04 + -3.952355620675491e+04 + -3.956476584662273e+04 + -3.960600801403134e+04 + -3.964728735507886e+04 + -3.968859104999997e+04 + 1.819886919039960e+01 + 1.816405130921966e+01 + 1.812918280091599e+01 + 1.809426424653407e+01 + 1.805929622711938e+01 + 1.802427932371738e+01 + 1.798921411737356e+01 + 1.795410118913339e+01 + 1.791894112004234e+01 + 1.788373449114589e+01 + 1.784848188348950e+01 + 1.781318387811866e+01 + 1.777784105607885e+01 + 1.774245399841551e+01 + 1.770702328617416e+01 + 1.767154950040025e+01 + 1.763603322213927e+01 + 1.760047503243666e+01 + 1.756487551233793e+01 + 1.752923524288855e+01 + 1.749355480513398e+01 + 1.745783478011969e+01 + 1.742207574889119e+01 + 1.738627829249391e+01 + 1.735044299197335e+01 + 1.731457042837498e+01 + 1.727866118274428e+01 + 1.724271583612671e+01 + 1.720673496956776e+01 + 1.717071916411290e+01 + 1.713466900080759e+01 + 1.709858506069732e+01 + 1.706246792482757e+01 + 1.702631817424381e+01 + 1.699013638999150e+01 + 1.695392315311613e+01 + 1.691767904466317e+01 + 1.688140464567809e+01 + 1.684510053720637e+01 + 1.680876730029348e+01 + 1.677240551598491e+01 + 1.673601576532611e+01 + 1.669959862936258e+01 + 1.666315468913977e+01 + 1.662668452570318e+01 + 1.659018872009826e+01 + 1.655366785337049e+01 + 1.651712250656536e+01 + 1.648055326072833e+01 + 1.644396069690488e+01 + 1.640734539614049e+01 + 1.637070793948063e+01 + 1.633404890797076e+01 + 1.629736888265638e+01 + 1.626066844458294e+01 + 1.622394817479593e+01 + 1.618720865434082e+01 + 1.615045046426309e+01 + 1.611367418560821e+01 + 1.607688039942165e+01 + 1.604006968674890e+01 + 1.600324262863542e+01 + 1.596639980612668e+01 + 1.592954180026817e+01 + 1.589266919210536e+01 + 1.585578256268371e+01 + 1.581888249304872e+01 + 1.578196956424585e+01 + 1.574504435732057e+01 + 1.570810745331836e+01 + 1.567115943328470e+01 + 1.563420087826506e+01 + 1.559723236930490e+01 + 1.556025448744972e+01 + 1.552326781374499e+01 + 1.548627292923617e+01 + 1.544927041496875e+01 + 1.541226085198818e+01 + 1.537524482133997e+01 + 1.533822290406956e+01 + 1.530119568122245e+01 + 1.526416373384410e+01 + 1.522712764298000e+01 + 1.519008798967561e+01 + 1.515304535497640e+01 + 1.511600031992786e+01 + 1.507895346557546e+01 + 1.504190537296467e+01 + 1.500485662314096e+01 + 1.496780779714983e+01 + 1.493075947603672e+01 + 1.489371224084713e+01 + 1.485666667262652e+01 + 1.481962335242037e+01 + 1.478258286127416e+01 + 1.474554578023335e+01 + 1.470851269034343e+01 + 1.467148417264987e+01 + 1.463446080819813e+01 + 1.459744317803371e+01 + 1.456043186320207e+01 + 1.452342744474869e+01 + 1.448643050371903e+01 + 1.444944162115858e+01 + 1.441246137811282e+01 + 1.437549035562720e+01 + 1.433852913474722e+01 + 1.430157829651834e+01 + 1.426463842198604e+01 + 1.422771009219579e+01 + 1.419079388819307e+01 + 1.415389039102334e+01 + 1.411700018173210e+01 + 1.408012384136481e+01 + 1.404326195096694e+01 + 1.400641509158398e+01 + 1.396958384426139e+01 + 1.393276879004464e+01 + 1.389597050997923e+01 + 1.385918958511061e+01 + 1.382242659648426e+01 + 1.378568212514566e+01 + 1.374895675214029e+01 + 1.371225105851361e+01 + 1.367556562531110e+01 + 1.363890103357824e+01 + 1.360225786436050e+01 + 1.356563669870335e+01 + 1.352903811765228e+01 + 1.349246270225274e+01 + 1.345591103355023e+01 + 1.341938369259021e+01 + 1.338288126041816e+01 + 1.334640431807955e+01 + 1.330995344661985e+01 + 1.327352922708455e+01 + 1.323713224051912e+01 + 1.320076306796902e+01 + 1.316442229047974e+01 + 1.312811048909675e+01 + 1.309182824486553e+01 + 1.305557613883154e+01 + 1.301935475204027e+01 + 1.298316466553718e+01 + 1.294700646036776e+01 + 1.291088071757748e+01 + 1.287478801821181e+01 + 1.283872894331622e+01 + 1.280270407393619e+01 + 1.276671399111720e+01 + 1.273075927590472e+01 + 1.269484050934423e+01 + 1.265895827248119e+01 + 1.262311314636109e+01 + 1.258730571202939e+01 + 1.255153655053158e+01 + 1.251580624291313e+01 + 1.248011537021950e+01 + 1.244446451349619e+01 + 1.240885425378865e+01 + 1.237328517214237e+01 + 1.233775784960283e+01 + 1.230227286721548e+01 + 1.226683080602582e+01 + 1.223143224707931e+01 + 1.219607777142142e+01 + 1.216076796009764e+01 + 1.212550339415344e+01 + 1.209028465463429e+01 + 1.205511232258567e+01 + 1.201998697905305e+01 + 1.198490920508190e+01 + 1.194987958171770e+01 + 1.191489869000593e+01 + 1.187996711099206e+01 + 1.184508542572157e+01 + 1.181025421523992e+01 + 1.177547406059259e+01 + 1.174074554282507e+01 + 1.170606924298281e+01 + 1.167144574211130e+01 + 1.163687562125602e+01 + 1.160235946146243e+01 + 1.156789784377601e+01 + 1.153349134924223e+01 + 1.149914055890657e+01 + 1.146484605381452e+01 + 1.143060841501152e+01 + 1.139642822354308e+01 + 1.136230606045464e+01 + 1.132824250679170e+01 + 1.129423814359974e+01 + 1.126029355192421e+01 + 1.122640931281059e+01 + 1.119258600730437e+01 + 1.115882421645102e+01 + 1.112512452129600e+01 + 1.109148750288479e+01 + 1.105791374226288e+01 + 1.102440382047573e+01 + 1.099095831856882e+01 + 1.095757781758762e+01 + 1.092426289857761e+01 + 1.089101414258426e+01 + 1.085783213065305e+01 + 1.082471744382945e+01 + 1.079167066315892e+01 + 1.075869236968697e+01 + 1.072578314445905e+01 + 1.069294356852064e+01 + 1.066017422291721e+01 + 1.062747568869424e+01 + 1.059484854689720e+01 + 1.056229337857157e+01 + 1.052981076476282e+01 + 1.049740128651643e+01 + 1.046506552487787e+01 + 1.043280406089261e+01 + 1.040061747560614e+01 + 1.036850635006392e+01 + 1.033647126531143e+01 + 1.030451280239414e+01 + 1.027263154235754e+01 + 1.024082806624708e+01 + 1.020910295510825e+01 + 1.017745678998653e+01 + 1.014589015192738e+01 + 1.011440362197629e+01 + 1.008299778117872e+01 + 1.005167321058014e+01 + 1.002043049122605e+01 + 9.989270204161905e+00 + 9.958192930433185e+00 + 9.927199251085362e+00 + 9.896289747163912e+00 + 9.865464999714312e+00 + 9.834725589782032e+00 + 9.804072098412551e+00 + 9.773505106651340e+00 + 9.743025195543877e+00 + 9.712632946135633e+00 + 9.682328939472086e+00 + 9.652113756598707e+00 + 9.621987978560973e+00 + 9.591952186404358e+00 + 9.562006961174337e+00 + 9.532152883916382e+00 + 9.502390535675973e+00 + 9.472720497498580e+00 + 9.443143350429677e+00 + 9.413659675514742e+00 + 9.384270053799249e+00 + 9.354975066328668e+00 + 9.325775294148480e+00 + 9.296671318304156e+00 + 9.267663719841170e+00 + 9.238753079804999e+00 + 9.209939979241115e+00 + 9.181224999194994e+00 + 9.152608720712111e+00 + 9.124091724837941e+00 + 9.095674592617954e+00 + 9.067357905097630e+00 + 9.039142243322441e+00 + 9.011028188337864e+00 + 8.983016292445305e+00 + 8.955106689123129e+00 + 8.927299195109086e+00 + 8.899593619314148e+00 + 8.871989770649284e+00 + 8.844487458025464e+00 + 8.817086490353660e+00 + 8.789786676544839e+00 + 8.762587825509975e+00 + 8.735489746160036e+00 + 8.708492247405990e+00 + 8.681595138158814e+00 + 8.654798227329470e+00 + 8.628101323828931e+00 + 8.601504236568170e+00 + 8.575006774458155e+00 + 8.548608746409855e+00 + 8.522309961334242e+00 + 8.496110228142285e+00 + 8.470009355744955e+00 + 8.444007153053219e+00 + 8.418103428978053e+00 + 8.392297992430423e+00 + 8.366590652321301e+00 + 8.340981217561657e+00 + 8.315469497062459e+00 + 8.290055299734679e+00 + 8.264738434489287e+00 + 8.239518710237252e+00 + 8.214395935889545e+00 + 8.189369920357137e+00 + 8.164440472550996e+00 + 8.139607401382095e+00 + 8.114870515761401e+00 + 8.090229624599887e+00 + 8.065684536808520e+00 + 8.041235061298275e+00 + 8.016881006980118e+00 + 7.992622182765018e+00 + 7.968458397563950e+00 + 7.944389460287880e+00 + 7.920415179847782e+00 + 7.896535365154623e+00 + 7.872749825119373e+00 + 7.849058368653004e+00 + 7.825460804666484e+00 + 7.801956942070785e+00 + 7.778546589776878e+00 + 7.755229556695729e+00 + 7.732005651738313e+00 + 7.708874683815599e+00 + 7.685836461838553e+00 + 7.662890794718152e+00 + 7.640037491365358e+00 + 7.617276360691148e+00 + 7.594607211606489e+00 + 7.572029853022352e+00 + 7.549544093849708e+00 + 7.527149742999527e+00 + 7.504846609382777e+00 + 7.482634501910429e+00 + 7.460513229493455e+00 + 7.438482601042820e+00 + 7.416542425469502e+00 + 7.394692511684465e+00 + 7.372932668598682e+00 + 7.351262705123121e+00 + 7.329682430168755e+00 + 7.308191652646553e+00 + 7.286790181467484e+00 + 7.265477825542517e+00 + 7.244254393782626e+00 + 7.223119695098779e+00 + 7.202073538401945e+00 + 7.181115732603097e+00 + 7.160246086613204e+00 + 7.139464409343233e+00 + 7.118770509704159e+00 + 7.098164196606950e+00 + 7.077645278962576e+00 + 7.057213565682006e+00 + 7.036868865676214e+00 + 7.016610987856166e+00 + 6.996439741132834e+00 + 6.976354934417186e+00 + 6.956356376620197e+00 + 6.936443876652832e+00 + 6.916617243426063e+00 + 6.896876285850862e+00 + 6.877220812838198e+00 + 6.857650633299039e+00 + 6.838165556144358e+00 + 6.818765390285123e+00 + 6.799449944632306e+00 + 6.780219028096876e+00 + 6.761072449589803e+00 + 6.742010018022058e+00 + 6.723031542304612e+00 + 6.704136831348434e+00 + 6.685325694064492e+00 + 6.666597939363759e+00 + 6.647953376157203e+00 + 6.629391813355797e+00 + 6.610913059870509e+00 + 6.592516924612310e+00 + 6.574203216492170e+00 + 6.555971744421058e+00 + 6.537822317309946e+00 + 6.519754744069803e+00 + 6.501768833611600e+00 + 6.483864394846306e+00 + 6.466041236684891e+00 + 6.448299168038327e+00 + 6.430637997817582e+00 + 6.413057534933630e+00 + 6.395557588297437e+00 + 6.378137966819973e+00 + 6.360798479412210e+00 + 6.343538934985117e+00 + 6.326359142449666e+00 + 6.309258910716826e+00 + 6.292238048697567e+00 + 6.275296365302859e+00 + 6.258433669443673e+00 + 6.241649770030978e+00 + 6.224944475975745e+00 + 6.208317596188945e+00 + 6.191768939581546e+00 + 6.175298315064517e+00 + 6.158905531548833e+00 + 6.142590397945462e+00 + 6.126352723165372e+00 + 6.110192316119535e+00 + 6.094108985718921e+00 + 6.078102540874499e+00 + 6.062172790497243e+00 + 6.046319543498117e+00 + 6.030542608788095e+00 + 6.014841795278149e+00 + 5.999216911879244e+00 + 5.983667767502356e+00 + 5.968194171058448e+00 + 5.952795931458497e+00 + 5.937472857613470e+00 + 5.922224758434336e+00 + 5.907051442832068e+00 + 5.891952719717633e+00 + 5.876928398002004e+00 + 5.861978286596150e+00 + 5.847102194411042e+00 + 5.832299930357648e+00 + 5.817571303346941e+00 + 5.802916122289888e+00 + 5.788334196097460e+00 + 5.773825333680629e+00 + 5.759389343950365e+00 + 5.745026035817635e+00 + 5.730735218193414e+00 + 5.716516699988668e+00 + 5.702370290114368e+00 + 5.688295797481486e+00 + 5.674293031000990e+00 + 5.660361799583851e+00 + 5.646501912141039e+00 + 5.632713177583526e+00 + 5.618995404822279e+00 + 5.605348402768269e+00 + 5.591771980332467e+00 + 5.578265946425844e+00 + 5.564830109959368e+00 + 5.551464279844009e+00 + 5.538168264990741e+00 + 5.524941874310529e+00 + 5.511784916714348e+00 + 5.498697201113163e+00 + 5.485678536417949e+00 + 5.472728731539672e+00 + 5.459847595389306e+00 + 5.447031950668924e+00 + 5.434258417587328e+00 + 5.421509378931341e+00 + 5.408790202589383e+00 + 5.396101725502927e+00 + 5.383442552149385e+00 + 5.370812984345576e+00 + 5.358213038980171e+00 + 5.345642546622406e+00 + 5.333101463094469e+00 + 5.320589727671893e+00 + 5.308107264570896e+00 + 5.295654006874094e+00 + 5.283229887334054e+00 + 5.270834837715376e+00 + 5.258468789944041e+00 + 5.246131676000384e+00 + 5.233823428164784e+00 + 5.221543979540164e+00 + 5.209293263422158e+00 + 5.197071212820756e+00 + 5.184877759775030e+00 + 5.172712837552656e+00 + 5.160576380473933e+00 + 5.148468322098453e+00 + 5.136388595958436e+00 + 5.124337135726472e+00 + 5.112313875048248e+00 + 5.100318748362747e+00 + 5.088351690727316e+00 + 5.076412636057685e+00 + 5.064501518839616e+00 + 5.052618274474592e+00 + 5.040762837425790e+00 + 5.028935142799786e+00 + 5.017135126690616e+00 + 5.005362723409764e+00 + 4.993617868159293e+00 + 4.981900498164465e+00 + 4.970210548621045e+00 + 4.958547954855285e+00 + 4.946912653797631e+00 + 4.935304581602165e+00 + 4.923723674430540e+00 + 4.912169869219803e+00 + 4.900643102722201e+00 + 4.889143311682699e+00 + 4.877670433140317e+00 + 4.866224404407401e+00 + 4.854805162838305e+00 + 4.843412645620055e+00 + 4.832046790470948e+00 + 4.820707535433044e+00 + 4.809394818449872e+00 + 4.798108577205163e+00 + 4.786848749644187e+00 + 4.775615274885523e+00 + 4.764408091170769e+00 + 4.753227136475494e+00 + 4.742072350593207e+00 + 4.730943672320340e+00 + 4.719841039761676e+00 + 4.708764392793848e+00 + 4.697713670947889e+00 + 4.686688813308958e+00 + 4.675689760077749e+00 + 4.664716450776882e+00 + 4.653768824355144e+00 + 4.642846821849820e+00 + 4.631950383864691e+00 + 4.621079449911801e+00 + 4.610233960271208e+00 + 4.599413855814052e+00 + 4.588619077726644e+00 + 4.577849566594633e+00 + 4.567105263324451e+00 + 4.556386109499332e+00 + 4.545692045920192e+00 + 4.535023013830533e+00 + 4.524378955558838e+00 + 4.513759812087895e+00 + 4.503165524982657e+00 + 4.492596037765430e+00 + 4.482051291649467e+00 + 4.471531227881555e+00 + 4.461035790191556e+00 + 4.450564920902143e+00 + 4.440118561957067e+00 + 4.429696656605228e+00 + 4.419299148008472e+00 + 4.408925979093191e+00 + 4.398577092681390e+00 + 4.388252432408600e+00 + 4.377951941955149e+00 + 4.367675563647617e+00 + 4.357423241911437e+00 + 4.347194921954801e+00 + 4.336990545878941e+00 + 4.326810057907454e+00 + 4.316653403787664e+00 + 4.306520526395858e+00 + 4.296411370095723e+00 + 4.286325880845187e+00 + 4.276264002847886e+00 + 4.266225680614548e+00 + 4.256210859410026e+00 + 4.246219484255977e+00 + 4.236251500111860e+00 + 4.226306852214246e+00 + 4.216385487075638e+00 + 4.206487350454588e+00 + 4.196612386873075e+00 + 4.186760542346591e+00 + 4.176931763412669e+00 + 4.167125996517556e+00 + 4.157343187931778e+00 + 4.147583283659849e+00 + 4.137846229598449e+00 + 4.128131973158434e+00 + 4.118440461620333e+00 + 4.108771640965568e+00 + 4.099125458381889e+00 + 4.089501861348100e+00 + 4.079900796648449e+00 + 4.070322211621146e+00 + 4.060766054068578e+00 + 4.051232271987449e+00 + 4.041720812903752e+00 + 4.032231624389123e+00 + 4.022764654839604e+00 + 4.013319852102482e+00 + 4.003897163974346e+00 + 3.994496539375360e+00 + 3.985117927005318e+00 + 3.975761275162846e+00 + 3.966426531955261e+00 + 3.957113646635731e+00 + 3.947822569087183e+00 + 3.938553247905866e+00 + 3.929305631685672e+00 + 3.920079669524097e+00 + 3.910875311427285e+00 + 3.901692507178291e+00 + 3.892531206204140e+00 + 3.883391358396833e+00 + 3.874272913657344e+00 + 3.865175821793835e+00 + 3.856100032879644e+00 + 3.847045497225832e+00 + 3.838012165320722e+00 + 3.828999987558789e+00 + 3.820008914413926e+00 + 3.811038896595444e+00 + 3.802089885254187e+00 + 3.793161831237620e+00 + 3.784254684890362e+00 + 3.775368398252875e+00 + 3.766502923100440e+00 + 3.757658209579520e+00 + 3.748834209295840e+00 + 3.740030874433959e+00 + 3.731248156753105e+00 + 3.722486008117639e+00 + 3.713744380387517e+00 + 3.705023225280349e+00 + 3.696322495070079e+00 + 3.687642142318910e+00 + 3.678982119432947e+00 + 3.670342378801804e+00 + 3.661722872867589e+00 + 3.653123554235752e+00 + 3.644544376023881e+00 + 3.635985291634798e+00 + 3.627446254192749e+00 + 3.618927216218316e+00 + 3.610428130335504e+00 + 3.601948951051534e+00 + 3.593489632231203e+00 + 3.585050126838500e+00 + 3.576630388153148e+00 + 3.568230370457688e+00 + 3.559850028500160e+00 + 3.551489315016799e+00 + 3.543148183918080e+00 + 3.534826590807976e+00 + 3.526524489935861e+00 + 3.518241835011243e+00 + 3.509978579991082e+00 + 3.501734680809670e+00 + 3.493510092697708e+00 + 3.485304769188242e+00 + 3.477118665289576e+00 + 3.468951736765370e+00 + 3.460803939385451e+00 + 3.452675227557384e+00 + 3.444565556219660e+00 + 3.436474882078371e+00 + 3.428403160505571e+00 + 3.420350346590145e+00 + 3.412316396304707e+00 + 3.404301265792477e+00 + 3.396304911176187e+00 + 3.388327288491305e+00 + 3.380368354160161e+00 + 3.372428064623584e+00 + 3.364506375833607e+00 + 3.356603244211646e+00 + 3.348718626640740e+00 + 3.340852480236101e+00 + 3.333004761693424e+00 + 3.325175427644580e+00 + 3.317364435527293e+00 + 3.309571742493616e+00 + 3.301797305408617e+00 + 3.294041081414062e+00 + 3.286303028194412e+00 + 3.278583103726798e+00 + 3.270881265443555e+00 + 3.263197471011956e+00 + 3.255531678390248e+00 + 3.247883845209004e+00 + 3.240253929642225e+00 + 3.232641890347850e+00 + 3.225047684908113e+00 + 3.217471271425511e+00 + 3.209912608923088e+00 + 3.202371655667555e+00 + 3.194848370181972e+00 + 3.187342711658790e+00 + 3.179854638881827e+00 + 3.172384110380890e+00 + 3.164931084707051e+00 + 3.157495521384956e+00 + 3.150077380058776e+00 + 3.142676619877814e+00 + 3.135293200073600e+00 + 3.127927079946843e+00 + 3.120578218905895e+00 + 3.113246577218404e+00 + 3.105932114937815e+00 + 3.098634790846833e+00 + 3.091354565058342e+00 + 3.084091398271724e+00 + 3.076845250485478e+00 + 3.069616081755534e+00 + 3.062403852244847e+00 + 3.055208522175611e+00 + 3.048030052549899e+00 + 3.040868404439169e+00 + 3.033723537524932e+00 + 3.026595412527113e+00 + 3.019483991059011e+00 + 3.012389234177664e+00 + 3.005311102428361e+00 + 2.998249556405217e+00 + 2.991204558170310e+00 + 2.984176069441633e+00 + 2.977164051262350e+00 + 2.970168464749357e+00 + 2.963189271462946e+00 + 2.956226433370632e+00 + 2.949279912203107e+00 + 2.942349669912605e+00 + 2.935435668735732e+00 + 2.928537870478263e+00 + 2.921656236941307e+00 + 2.914790730227295e+00 + 2.907941313056430e+00 + 2.901107948114753e+00 + 2.894290597705669e+00 + 2.887489224186201e+00 + 2.880703790004707e+00 + 2.873934257778331e+00 + 2.867180590721052e+00 + 2.860442752157053e+00 + 2.853720705060128e+00 + 2.847014412004529e+00 + 2.840323835735203e+00 + 2.833648939802342e+00 + 2.826989688360529e+00 + 2.820346045051714e+00 + 2.813717971838249e+00 + 2.807105432809830e+00 + 2.800508392739872e+00 + 2.793926814285955e+00 + 2.787360661385112e+00 + 2.780809898806732e+00 + 2.774274490318202e+00 + 2.767754399418414e+00 + 2.761249589980850e+00 + 2.754760027276096e+00 + 2.748285675987487e+00 + 2.741826499952791e+00 + 2.735382462817888e+00 + 2.728953529693038e+00 + 2.722539666591989e+00 + 2.716140837199994e+00 + 2.709757005928732e+00 + 2.703388138477217e+00 + 2.697034199719776e+00 + 2.690695154612969e+00 + 2.684370968516638e+00 + 2.678061606722120e+00 + 2.671767034388748e+00 + 2.665487216663756e+00 + 2.659222119420964e+00 + 2.652971708466898e+00 + 2.646735949170681e+00 + 2.640514807328682e+00 + 2.634308248813400e+00 + 2.628116239351709e+00 + 2.621938745026414e+00 + 2.615775731978081e+00 + 2.609627166192403e+00 + 2.603493014125890e+00 + 2.597373242133807e+00 + 2.591267815972944e+00 + 2.585176702619338e+00 + 2.579099869106871e+00 + 2.573037281022092e+00 + 2.566988905295047e+00 + 2.560954709471109e+00 + 2.554934660124372e+00 + 2.548928723658388e+00 + 2.542936866838776e+00 + 2.536959057454498e+00 + 2.530995262744329e+00 + 2.525045449466102e+00 + 2.519109584724339e+00 + 2.513187636248425e+00 + 2.507279571988880e+00 + 2.501385358975255e+00 + 2.495504964649074e+00 + 2.489638357011514e+00 + 2.483785503877440e+00 + 2.477946372993181e+00 + 2.472120932153270e+00 + 2.466309149445497e+00 + 2.460510993028623e+00 + 2.454726431004756e+00 + 2.448955431279121e+00 + 2.443197962222979e+00 + 2.437453992749473e+00 + 2.431723490873920e+00 + 2.426006424702946e+00 + 2.420302763016215e+00 + 2.414612474849150e+00 + 2.408935529060812e+00 + 2.403271894158963e+00 + 2.397621539164549e+00 + 2.391984432987164e+00 + 2.386360544006294e+00 + 2.380749841635097e+00 + 2.375152295549876e+00 + 2.369567874852914e+00 + 2.363996548806182e+00 + 2.358438286639424e+00 + 2.352893057314327e+00 + 2.347360830870365e+00 + 2.341841577523073e+00 + 2.336335266205249e+00 + 2.330841866367291e+00 + 2.325361348038680e+00 + 2.319893681430557e+00 + 2.314438836350213e+00 + 2.308996782525400e+00 + 2.303567490482044e+00 + 2.298150930506590e+00 + 2.292747072570897e+00 + 2.287355886755380e+00 + 2.281977343203661e+00 + 2.276611412298537e+00 + 2.271258065216148e+00 + 2.265917272602903e+00 + 2.260589004572198e+00 + 2.255273232290290e+00 + 2.249969926489583e+00 + 2.244679057245269e+00 + 2.239400595715412e+00 + 2.234134513404378e+00 + 2.228880781619142e+00 + 2.223639370658599e+00 + 2.218410251587366e+00 + 2.213193396784469e+00 + 2.207988776668006e+00 + 2.202796362022329e+00 + 2.197616125439223e+00 + 2.192448038696543e+00 + 2.187292072961057e+00 + 2.182148199232985e+00 + 2.177016389630072e+00 + 2.171896616273634e+00 + 2.166788850281173e+00 + 2.161693063906081e+00 + 2.156609229682959e+00 + 2.151537319229026e+00 + 2.146477304323076e+00 + 2.141429157241363e+00 + 2.136392850965788e+00 + 2.131368357474257e+00 + 2.126355648357996e+00 + 2.121354696293322e+00 + 2.116365474412895e+00 + 2.111387955644702e+00 + 2.106422111701483e+00 + 2.101467915161587e+00 + 2.096525339256323e+00 + 2.091594356269759e+00 + 2.086674939419586e+00 + 2.081767062556874e+00 + 2.076870697792070e+00 + 2.071985817585338e+00 + 2.067112395385072e+00 + 2.062250405333861e+00 + 2.057399820685575e+00 + 2.052560613690088e+00 + 2.047732757766644e+00 + 2.042916226752948e+00 + 2.038110994473384e+00 + 2.033317034456518e+00 + 2.028534320143143e+00 + 2.023762825026766e+00 + 2.019002522786289e+00 + 2.014253387371010e+00 + 2.009515392980107e+00 + 2.004788513366984e+00 + 2.000072722331970e+00 + 1.995367994084281e+00 + 1.990674302528751e+00 + 1.985991621875054e+00 + 1.981319927135009e+00 + 1.976659192144684e+00 + 1.972009390577169e+00 + 1.967370497271926e+00 + 1.962742487042732e+00 + 1.958125334423246e+00 + 1.953519013586483e+00 + 1.948923499307053e+00 + 1.944338766657414e+00 + 1.939764790288013e+00 + 1.935201544608222e+00 + 1.930649004305472e+00 + 1.926107145248571e+00 + 1.921575942429786e+00 + 1.917055370205972e+00 + 1.912545403920843e+00 + 1.908046018818900e+00 + 1.903557190023903e+00 + 1.899078893306255e+00 + 1.894611103753838e+00 + 1.890153795996532e+00 + 1.885706946418488e+00 + 1.881270530851602e+00 + 1.876844524133795e+00 + 1.872428902057808e+00 + 1.868023640555410e+00 + 1.863628715350075e+00 + 1.859244102235784e+00 + 1.854869776995271e+00 + 1.850505715382929e+00 + 1.846151893336109e+00 + 1.841808287113597e+00 + 1.837474873250078e+00 + 1.833151627500553e+00 + 1.828838525627810e+00 + 1.824535544058799e+00 + 1.820242659570220e+00 + 1.815959848693184e+00 + 1.811687087278560e+00 + 1.807424351697017e+00 + 1.803171618832717e+00 + 1.798928865872756e+00 + 1.794696068965575e+00 + 1.790473204047284e+00 + 1.786260248130819e+00 + 1.782057178544553e+00 + 1.777863972462110e+00 + 1.773680606381003e+00 + 1.769507057021776e+00 + 1.765343301422396e+00 + 1.761189316819223e+00 + 1.757045080431908e+00 + 1.752910569457795e+00 + 1.748785761158555e+00 + 1.744670632638435e+00 + 1.740565161064786e+00 + 1.736469324420783e+00 + 1.732383100261040e+00 + 1.728306465595185e+00 + 1.724239397824929e+00 + 1.720181874717039e+00 + 1.716133874165168e+00 + 1.712095373335323e+00 + 1.708066350172305e+00 + 1.704046783495335e+00 + 1.700036650108550e+00 + 1.696035927584721e+00 + 1.692044595228792e+00 + 1.688062630443701e+00 + 1.684090010658294e+00 + 1.680126714513943e+00 + 1.676172720475745e+00 + 1.672228006742128e+00 + 1.668292551293985e+00 + 1.664366332353613e+00 + 1.660449328407859e+00 + 1.656541518177628e+00 + 1.652642880144113e+00 + 1.648753392536404e+00 + 1.644873033459887e+00 + 1.641001782122826e+00 + 1.637139617814172e+00 + 1.633286518510287e+00 + 1.629442462986198e+00 + 1.625607430332010e+00 + 1.621781398816242e+00 + 1.617964347766720e+00 + 1.614156256896447e+00 + 1.610357104501046e+00 + 1.606566869528149e+00 + 1.602785531410984e+00 + 1.599013068753329e+00 + 1.595249460964023e+00 + 1.591494688099418e+00 + 1.587748729316499e+00 + 1.584011563661260e+00 + 1.580283170366302e+00 + 1.576563528988570e+00 + 1.572852618951484e+00 + 1.569150419635379e+00 + 1.565456911345500e+00 + 1.561772073862832e+00 + 1.558095886092752e+00 + 1.554428327545355e+00 + 1.550769378486889e+00 + 1.547119019605569e+00 + 1.543477229774924e+00 + 1.539843988467248e+00 + 1.536219276909035e+00 + 1.532603074921508e+00 + 1.528995362108325e+00 + 1.525396118748853e+00 + 1.521805324624735e+00 + 1.518222960029189e+00 + 1.514649006474386e+00 + 1.511083443428444e+00 + 1.507526250258141e+00 + 1.503977408416516e+00 + 1.500436898413773e+00 + 1.496904700394939e+00 + 1.493380795245864e+00 + 1.489865163193006e+00 + 1.486357784560608e+00 + 1.482858641108495e+00 + 1.479367713055452e+00 + 1.475884980161266e+00 + 1.472410424507970e+00 + 1.468944026943859e+00 + 1.465485767394345e+00 + 1.462035627142284e+00 + 1.458593587684006e+00 + 1.455159630175685e+00 + 1.451733734815932e+00 + 1.448315882934573e+00 + 1.444906056735074e+00 + 1.441504236540235e+00 + 1.438110403156542e+00 + 1.434724538391589e+00 + 1.431346623689521e+00 + 1.427976640530080e+00 + 1.424614570482120e+00 + 1.421260394583763e+00 + 1.417914094214416e+00 + 1.414575651360096e+00 + 1.411245047472556e+00 + 1.407922264020345e+00 + 1.404607282835409e+00 + 1.401300085863839e+00 + 1.398000654669480e+00 + 1.394708970355802e+00 + 1.391425015768138e+00 + 1.388148773421020e+00 + 1.384880223867722e+00 + 1.381619349200565e+00 + 1.378366132070768e+00 + 1.375120554406545e+00 + 1.371882598139520e+00 + 1.368652245409923e+00 + 1.365429478679455e+00 + 1.362214280063096e+00 + 1.359006631544336e+00 + 1.355806515436745e+00 + 1.352613914349998e+00 + 1.349428810943258e+00 + 1.346251187518860e+00 + 1.343081026346772e+00 + 1.339918309785753e+00 + 1.336763020411036e+00 + 1.333615141050152e+00 + 1.330474654669161e+00 + 1.327341544046787e+00 + 1.324215791384803e+00 + 1.321097378844990e+00 + 1.317986290481943e+00 + 1.314882509034005e+00 + 1.311786015892630e+00 + 1.308696795174431e+00 + 1.305614830505543e+00 + 1.302540104058677e+00 + 1.299472598550161e+00 + 1.296412297281467e+00 + 1.293359183920592e+00 + 1.290313241355424e+00 + 1.287274452437336e+00 + 1.284242800425524e+00 + 1.281218268758570e+00 + 1.278200840971845e+00 + 1.275190500607243e+00 + 1.272187230813499e+00 + 1.269191014801793e+00 + 1.266201836184906e+00 + 1.263219678244913e+00 + 1.260244524601725e+00 + 1.257276359774731e+00 + 1.254315166659556e+00 + 1.251360928048363e+00 + 1.248413628680403e+00 + 1.245473252809453e+00 + 1.242539783866816e+00 + 1.239613204552696e+00 + 1.236693499248504e+00 + 1.233780652886690e+00 + 1.230874648458874e+00 + 1.227975469917747e+00 + 1.225083101914005e+00 + 1.222197528080320e+00 + 1.219318732110022e+00 + 1.216446698153004e+00 + 1.213581411119631e+00 + 1.210722855169846e+00 + 1.207871013783067e+00 + 1.205025871252235e+00 + 1.202187412198626e+00 + 1.199355621285526e+00 + 1.196530482820713e+00 + 1.193711981112556e+00 + 1.190900100540550e+00 + 1.188094825240966e+00 + 1.185296139829988e+00 + 1.182504029475636e+00 + 1.179718478336080e+00 + 1.176939470878376e+00 + 1.174166992368249e+00 + 1.171401026812090e+00 + 1.168641558834780e+00 + 1.165888574598542e+00 + 1.163142057955574e+00 + 1.160401992993886e+00 + 1.157668365957760e+00 + 1.154941161055026e+00 + 1.152220362585152e+00 + 1.149505957086653e+00 + 1.146797929075238e+00 + 1.144096262593592e+00 + 1.141400943461258e+00 + 1.138711957183691e+00 + 1.136029288721929e+00 + 1.133352922646698e+00 + 1.130682844729473e+00 + 1.128019040871752e+00 + 1.125361495026299e+00 + 1.122710192813904e+00 + 1.120065120718956e+00 + 1.117426263156838e+00 + 1.114793605478939e+00 + 1.112167133798269e+00 + 1.109546832911627e+00 + 1.106932688501257e+00 + 1.104324686965964e+00 + 1.101722813149718e+00 + 1.099127052563592e+00 + 1.096537391606932e+00 + 1.093953815681381e+00 + 1.091376310184498e+00 + 1.088804860939953e+00 + 1.086239454210304e+00 + 1.083680075729654e+00 + 1.081126710640132e+00 + 1.078579345517792e+00 + 1.076037966489376e+00 + 1.073502558540405e+00 + 1.070973108232868e+00 + 1.068449602380304e+00 + 1.065932027008114e+00 + 1.063420367175204e+00 + 1.060914608734753e+00 + 1.058414739347230e+00 + 1.055920744292059e+00 + 1.053432609053344e+00 + 1.050950321750202e+00 + 1.048473868029229e+00 + 1.046003233045439e+00 + 1.043538404185668e+00 + 1.041079368203120e+00 + 1.038626111099421e+00 + 1.036178618557632e+00 + 1.033736877638818e+00 + 1.031300875738098e+00 + 1.028870598541307e+00 + 1.026446032279889e+00 + 1.024027163804816e+00 + 1.021613979927458e+00 + 1.019206467749757e+00 + 1.016804614201984e+00 + 1.014408404816817e+00 + 1.012017826403038e+00 + 1.009632866898133e+00 + 1.007253512894913e+00 + 1.004879750675442e+00 + 1.002511566831996e+00 + 1.000148949144661e+00 + 9.977918847145494e-01 + 9.954403597206510e-01 + 9.930943614528360e-01 + 9.907538771638876e-01 + 9.884188936740620e-01 + 9.860893982148410e-01 + 9.837653780132122e-01 + 9.814468200970017e-01 + 9.791337116433633e-01 + 9.768260399168340e-01 + 9.745237922184445e-01 + 9.722269558574113e-01 + 9.699355181124353e-01 + 9.676494662336389e-01 + 9.653687876978898e-01 + 9.630934699744002e-01 + 9.608235003289306e-01 + 9.585588662885656e-01 + 9.562995554410040e-01 + 9.540455551859868e-01 + 9.517968530931009e-01 + 9.495534368089285e-01 + 9.473152938858177e-01 + 9.450824119343849e-01 + 9.428547786515334e-01 + 9.406323818265262e-01 + 9.384152091378831e-01 + 9.362032482272097e-01 + 9.339964869112888e-01 + 9.317949130473703e-01 + 9.295985145023118e-01 + 9.274072791539573e-01 + 9.252211948367504e-01 + 9.230402494034374e-01 + 9.208644309329761e-01 + 9.186937274260252e-01 + 9.165281267878318e-01 + 9.143676170947915e-01 + 9.122121864230248e-01 + 9.100618228160294e-01 + 9.079165144228375e-01 + 9.057762494101416e-01 + 9.036410159434681e-01 + 9.015108022852656e-01 + 8.993855966397851e-01 + 8.972653871281971e-01 + 8.951501621417270e-01 + 8.930399100640233e-01 + 8.909346191274636e-01 + 8.888342777366450e-01 + 8.867388743114113e-01 + 8.846483971822027e-01 + 8.825628348501290e-01 + 8.804821758633001e-01 + 8.784064086961259e-01 + 8.763355218399448e-01 + 8.742695038377348e-01 + 8.722083433110044e-01 + 8.701520288632569e-01 + 8.681005490981059e-01 + 8.660538926659707e-01 + 8.640120483003465e-01 + 8.619750047630993e-01 + 8.599427507590320e-01 + 8.579152750196485e-01 + 8.558925663402844e-01 + 8.538746136199826e-01 + 8.518614056598554e-01 + 8.498529312415619e-01 + 8.478491793952468e-01 + 8.458501390477595e-01 + 8.438557990450950e-01 + 8.418661484572341e-01 + 8.398811762963594e-01 + 8.379008715007146e-01 + 8.359252231704962e-01 + 8.339542204095658e-01 + 8.319878522912720e-01 + 8.300261079597043e-01 + 8.280689765769632e-01 + 8.261164473121154e-01 + 8.241685093974929e-01 + 8.222251520716921e-01 + 8.202863645582569e-01 + 8.183521361157176e-01 + 8.164224560764958e-01 + 8.144973138478017e-01 + 8.125766987264839e-01 + 8.106606000443977e-01 + 8.087490072689457e-01 + 8.068419098143643e-01 + 8.049392971238847e-01 + 8.030411587461223e-01 + 8.011474841608780e-01 + 7.992582628576694e-01 + 7.973734844327619e-01 + 7.954931384582111e-01 + 7.936172145055983e-01 + 7.917457022017643e-01 + 7.898785912282000e-01 + 7.880158712799969e-01 + 7.861575320154112e-01 + 7.843035631939634e-01 + 7.824539546080472e-01 + 7.806086959262468e-01 + 7.787677769423338e-01 + 7.769311875560446e-01 + 7.750989176225404e-01 + 7.732709569908990e-01 + 7.714472955211897e-01 + 7.696279231052234e-01 + 7.678128297211314e-01 + 7.660020053954494e-01 + 7.641954400346342e-01 + 7.623931236302374e-01 + 7.605950462809293e-01 + 7.588011979868697e-01 + 7.570115688113509e-01 + 7.552261489288551e-01 + 7.534449284973839e-01 + 7.516678976340316e-01 + 7.498950464317325e-01 + 7.481263651057625e-01 + 7.463618439154999e-01 + 7.446014731170009e-01 + 7.428452429690515e-01 + 7.410931437272748e-01 + 7.393451656574506e-01 + 7.376012991597445e-01 + 7.358615346418724e-01 + 7.341258624174279e-01 + 7.323942728636854e-01 + 7.306667564033948e-01 + 7.289433034811010e-01 + 7.272239046205010e-01 + 7.255085503342084e-01 + 7.237972310231134e-01 + 7.220899372662432e-01 + 7.203866596915919e-01 + 7.186873887451811e-01 + 7.169921150530395e-01 + 7.153008293485266e-01 + 7.136135222426403e-01 + 7.119301843519804e-01 + 7.102508063464710e-01 + 7.085753789925818e-01 + 7.069038930034782e-01 + 7.052363390742027e-01 + 7.035727080638011e-01 + 7.019129907750439e-01 + 7.002571779481277e-01 + 6.986052604437083e-01 + 6.969572291357313e-01 + 6.953130748988353e-01 + 6.936727887020229e-01 + 6.920363614522840e-01 + 6.904037839913317e-01 + 6.887750473773369e-01 + 6.871501426160253e-01 + 6.855290605871678e-01 + 6.839117924040222e-01 + 6.822983292013320e-01 + 6.806886620123715e-01 + 6.790827818618205e-01 + 6.774806798407976e-01 + 6.758823471448717e-01 + 6.742877749381793e-01 + 6.726969543916550e-01 + 6.711098767181217e-01 + 6.695265330883416e-01 + 6.679469147191758e-01 + 6.663710129607012e-01 + 6.647988190816884e-01 + 6.632303243195694e-01 + 6.616655199754741e-01 + 6.601043974442724e-01 + 6.585469481315596e-01 + 6.569931633409668e-01 + 6.554430344698831e-01 + 6.538965529680326e-01 + 6.523537102216029e-01 + 6.508144977390269e-01 + 6.492789070902356e-01 + 6.477469297088367e-01 + 6.462185570471877e-01 + 6.446937806333431e-01 + 6.431725921186934e-01 + 6.416549831028872e-01 + 6.401409451291091e-01 + 6.386304698205402e-01 + 6.371235488250266e-01 + 6.356201737964903e-01 + 6.341203364004929e-01 + 6.326240283504814e-01 + 6.311312414023209e-01 + 6.296419672600960e-01 + 6.281561976359686e-01 + 6.266739242956670e-01 + 6.251951391194286e-01 + 6.237198339322255e-01 + 6.222480004492102e-01 + 6.207796305731890e-01 + 6.193147162378443e-01 + 6.178532493027741e-01 + 6.163952216645050e-01 + 6.149406252489860e-01 + 6.134894519984210e-01 + 6.120416938491114e-01 + 6.105973427932988e-01 + 6.091563909278429e-01 + 6.077188302116784e-01 + 6.062846526061169e-01 + 6.048538502614210e-01 + 6.034264152733694e-01 + 6.020023397068369e-01 + 6.005816156757759e-01 + 5.991642353027361e-01 + 5.977501907311656e-01 + 5.963394741611191e-01 + 5.949320777981851e-01 + 5.935279938331314e-01 + 5.921272144271874e-01 + 5.907297318514260e-01 + 5.893355384452119e-01 + 5.879446264415406e-01 + 5.865569881004723e-01 + 5.851726157460215e-01 + 5.837915017610071e-01 + 5.824136384878618e-01 + 5.810390182425506e-01 + 5.796676334763571e-01 + 5.782994765837256e-01 + 5.769345398883866e-01 + 5.755728159164172e-01 + 5.742142971757567e-01 + 5.728589760824728e-01 + 5.715068451452269e-01 + 5.701578968814059e-01 + 5.688121237820786e-01 + 5.674695184134964e-01 + 5.661300733449661e-01 + 5.647937811172017e-01 + 5.634606343850478e-01 + 5.621306258016221e-01 + 5.608037479323033e-01 + 5.594799934047830e-01 + 5.581593548937616e-01 + 5.568418251014721e-01 + 5.555273967809645e-01 + 5.542160626584934e-01 + 5.529078153599613e-01 + 5.516026476869607e-01 + 5.503005524879265e-01 + 5.490015224489507e-01 + 5.477055503706971e-01 + 5.464126291394721e-01 + 5.451227516109934e-01 + 5.438359105997491e-01 + 5.425520989229732e-01 + 5.412713094911021e-01 + 5.399935352390902e-01 + 5.387187691034094e-01 + 5.374470040087604e-01 + 5.361782329113639e-01 + 5.349124487848638e-01 + 5.336496445514358e-01 + 5.323898132502169e-01 + 5.311329480044003e-01 + 5.298790417206248e-01 + 5.286280874266170e-01 + 5.273800783238198e-01 + 5.261350074387794e-01 + 5.248928678300107e-01 + 5.236536526638225e-01 + 5.224173550711992e-01 + 5.211839681868924e-01 + 5.199534851768893e-01 + 5.187258992380968e-01 + 5.175012035574781e-01 + 5.162793913049719e-01 + 5.150604557657682e-01 + 5.138443902158373e-01 + 5.126311878387027e-01 + 5.114208419243966e-01 + 5.102133457996210e-01 + 5.090086927559088e-01 + 5.078068761246483e-01 + 5.066078892445277e-01 + 5.054117254264059e-01 + 5.042183780707232e-01 + 5.030278406156905e-01 + 5.018401064512819e-01 + 5.006551689399448e-01 + 4.994730214827681e-01 + 4.982936576173500e-01 + 4.971170708196209e-01 + 4.959432545161117e-01 + 4.947722021784954e-01 + 4.936039073158257e-01 + 4.924383634713059e-01 + 4.912755642215030e-01 + 4.901155031029966e-01 + 4.889581736357913e-01 + 4.878035694426762e-01 + 4.866516841617155e-01 + 4.855025114095978e-01 + 4.843560447562852e-01 + 4.832122778219742e-01 + 4.820712043014287e-01 + 4.809328179063641e-01 + 4.797971123302187e-01 + 4.786640812406847e-01 + 4.775337183184862e-01 + 4.764060173050261e-01 + 4.752809720122764e-01 + 4.741585762111217e-01 + 4.730388236459319e-01 + 4.719217080626099e-01 + 4.708072233097221e-01 + 4.696953632391141e-01 + 4.685861216425942e-01 + 4.674794923970907e-01 + 4.663754693817960e-01 + 4.652740464091041e-01 + 4.641752174102053e-01 + 4.630789763262008e-01 + 4.619853169869301e-01 + 4.608942333544824e-01 + 4.598057194461572e-01 + 4.587197692038988e-01 + 4.576363766028796e-01 + 4.565555356433393e-01 + 4.554772403132010e-01 + 4.544014845983438e-01 + 4.533282625263808e-01 + 4.522575682421708e-01 + 4.511893957834002e-01 + 4.501237391381080e-01 + 4.490605924783677e-01 + 4.479999499003729e-01 + 4.469418054464263e-01 + 4.458861533467765e-01 + 4.448329877503518e-01 + 4.437823027182840e-01 + 4.427340924804984e-01 + 4.416883512661691e-01 + 4.406450732493647e-01 + 4.396042525949710e-01 + 4.385658835318161e-01 + 4.375299603591805e-01 + 4.364964773180230e-01 + 4.354654286529535e-01 + 4.344368086449737e-01 + 4.334106115882546e-01 + 4.323868317973252e-01 + 4.313654636098987e-01 + 4.303465013528135e-01 + 4.293299393608014e-01 + 4.283157719943348e-01 + 4.273039936389254e-01 + 4.262945986862648e-01 + 4.252875815207442e-01 + 4.242829365388910e-01 + 4.232806581737543e-01 + 4.222807409163533e-01 + 4.212831792180283e-01 + 4.202879675160039e-01 + 4.192951002821390e-01 + 4.183045720190468e-01 + 4.173163772308877e-01 + 4.163305103895081e-01 + 4.153469660738844e-01 + 4.143657388899517e-01 + 4.133868232899575e-01 + 4.124102138463511e-01 + 4.114359052122226e-01 + 4.104638919136763e-01 + 4.094941685453110e-01 + 4.085267297797091e-01 + 4.075615702608746e-01 + 4.065986846247451e-01 + 4.056380675149961e-01 + 4.046797136100241e-01 + 4.037236175791848e-01 + 4.027697740867438e-01 + 4.018181778668817e-01 + 4.008688236537185e-01 + 3.999217061664900e-01 + 3.989768201804763e-01 + 3.980341604347806e-01 + 3.970937216243767e-01 + 3.961554986257766e-01 + 3.952194862561716e-01 + 3.942856791749246e-01 + 3.933540722797152e-01 + 3.924246604937682e-01 + 3.914974386057962e-01 + 3.905724013991230e-01 + 3.896495437210211e-01 + 3.887288605266558e-01 + 3.878103467384126e-01 + 3.868939972364765e-01 + 3.859798068708922e-01 + 3.850677705778728e-01 + 3.841578833358520e-01 + 3.832501400994028e-01 + 3.823445358203205e-01 + 3.814410654593080e-01 + 3.805397240004402e-01 + 3.796405064500310e-01 + 3.787434078281850e-01 + 3.778484231550217e-01 + 3.769555474293507e-01 + 3.760647756653435e-01 + 3.751761029803938e-01 + 3.742895244689736e-01 + 3.734050351897463e-01 + 3.725226302131253e-01 + 3.716423046174657e-01 + 3.707640535037849e-01 + 3.698878720450124e-01 + 3.690137553825144e-01 + 3.681416986254492e-01 + 3.672716969834960e-01 + 3.664037456169829e-01 + 3.655378396196581e-01 + 3.646739742353085e-01 + 3.638121447254376e-01 + 3.629523462980791e-01 + 3.620945741078652e-01 + 3.612388233782960e-01 + 3.603850894480597e-01 + 3.595333675652969e-01 + 3.586836529581271e-01 + 3.578359408972814e-01 + 3.569902267099870e-01 + 3.561465057284826e-01 + 3.553047732480240e-01 + 3.544650245489661e-01 + 3.536272549462773e-01 + 3.527914598373741e-01 + 3.519576346281267e-01 + 3.511257746893044e-01 + 3.502958753213151e-01 + 3.494679319027064e-01 + 3.486419398734283e-01 + 3.478178946841421e-01 + 3.469957917542031e-01 + 3.461756264906874e-01 + 3.453573943334770e-01 + 3.445410907466465e-01 + 3.437267112053919e-01 + 3.429142511753236e-01 + 3.421037061357636e-01 + 3.412950715914754e-01 + 3.404883430871680e-01 + 3.396835161220511e-01 + 3.388805861778083e-01 + 3.380795488742585e-01 + 3.372803997559251e-01 + 3.364831342820857e-01 + 3.356877480644493e-01 + 3.348942367473924e-01 + 3.341025959445759e-01 + 3.333128211902062e-01 + 3.325249080644813e-01 + 3.317388522349806e-01 + 3.309546493345364e-01 + 3.301722950123494e-01 + 3.293917849546400e-01 + 3.286131147929292e-01 + 3.278362801760134e-01 + 3.270612768173198e-01 + 3.262881004205997e-01 + 3.255167466776044e-01 + 3.247472112772871e-01 + 3.239794899591130e-01 + 3.232135784952971e-01 + 3.224494726613195e-01 + 3.216871681318617e-01 + 3.209266606147330e-01 + 3.201679460077643e-01 + 3.194110200806869e-01 + 3.186558785671545e-01 + 3.179025173467112e-01 + 3.171509322207308e-01 + 3.164011189537259e-01 + 3.156530734030461e-01 + 3.149067914068442e-01 + 3.141622688005587e-01 + 3.134195014964591e-01 + 3.126784853846941e-01 + 3.119392163234083e-01 + 3.112016901727622e-01 + 3.104659028247113e-01 + 3.097318502149898e-01 + 3.089995283319454e-01 + 3.082689330721005e-01 + 3.075400602663161e-01 + 3.068129059444455e-01 + 3.060874661234649e-01 + 3.053637367362504e-01 + 3.046417137079979e-01 + 3.039213930418579e-01 + 3.032027708160949e-01 + 3.024858429572295e-01 + 3.017706054435225e-01 + 3.010570543910775e-01 + 3.003451858060657e-01 + 2.996349956970866e-01 + 2.989264801519126e-01 + 2.982196352437723e-01 + 2.975144570351090e-01 + 2.968109415899733e-01 + 2.961090850010212e-01 + 2.954088833712375e-01 + 2.947103327960572e-01 + 2.940134293733013e-01 + 2.933181692489545e-01 + 2.926245486550200e-01 + 2.919325636534309e-01 + 2.912422103009782e-01 + 2.905534849067459e-01 + 2.898663836341845e-01 + 2.891809025716850e-01 + 2.884970379499296e-01 + 2.878147859946116e-01 + 2.871341429080666e-01 + 2.864551048929091e-01 + 2.857776681836698e-01 + 2.851018290276999e-01 + 2.844275836247271e-01 + 2.837549281975342e-01 + 2.830838590248334e-01 + 2.824143724756855e-01 + 2.817464648036653e-01 + 2.810801321714598e-01 + 2.804153709678348e-01 + 2.797521775256636e-01 + 2.790905480675208e-01 + 2.784304789557904e-01 + 2.777719665515425e-01 + 2.771150071618110e-01 + 2.764595971293084e-01 + 2.758057328280932e-01 + 2.751534106502780e-01 + 2.745026269461392e-01 + 2.738533780697315e-01 + 2.732056604090851e-01 + 2.725594703611444e-01 + 2.719148043516682e-01 + 2.712716588414341e-01 + 2.706300302048149e-01 + 2.699899148252890e-01 + 2.693513091897057e-01 + 2.687142097803046e-01 + 2.680786130525787e-01 + 2.674445154290628e-01 + 2.668119133864937e-01 + 2.661808034370396e-01 + 2.655511820876730e-01 + 2.649230457933240e-01 + 2.642963910212357e-01 + 2.636712143601993e-01 + 2.630475123173707e-01 + 2.624252813696634e-01 + 2.618045181320832e-01 + 2.611852191534089e-01 + 2.605673809346502e-01 + 2.599510000768786e-01 + 2.593360731482656e-01 + 2.587225966857610e-01 + 2.581105673020023e-01 + 2.574999816218594e-01 + 2.568908362541323e-01 + 2.562831277681717e-01 + 2.556768527608984e-01 + 2.550720078808991e-01 + 2.544685898158210e-01 + 2.538665952029344e-01 + 2.532660206235198e-01 + 2.526668627769018e-01 + 2.520691183671673e-01 + 2.514727840477828e-01 + 2.508778564832650e-01 + 2.502843323450471e-01 + 2.496922083184503e-01 + 2.491014811741685e-01 + 2.485121476502302e-01 + 2.479242043768022e-01 + 2.473376480750936e-01 + 2.467524755330193e-01 + 2.461686835577825e-01 + 2.455862688342147e-01 + 2.450052280577099e-01 + 2.444255580815592e-01 + 2.438472556710649e-01 + 2.432703175621061e-01 + 2.426947405763887e-01 + 2.421205215374063e-01 + 2.415476572469543e-01 + 2.409761444715131e-01 + 2.404059800179439e-01 + 2.398371607406130e-01 + 2.392696835287547e-01 + 2.387035451998669e-01 + 2.381387425460481e-01 + 2.375752724876774e-01 + 2.370131319015487e-01 + 2.364523176042576e-01 + 2.358928264341899e-01 + 2.353346553264918e-01 + 2.347778012643444e-01 + 2.342222610470114e-01 + 2.336680315481888e-01 + 2.331151097630285e-01 + 2.325634926002070e-01 + 2.320131769932555e-01 + 2.314641599195968e-01 + 2.309164382391606e-01 + 2.303700088852327e-01 + 2.298248689205450e-01 + 2.292810152383314e-01 + 2.287384447851956e-01 + 2.281971546639490e-01 + 2.276571417710518e-01 + 2.271184030444375e-01 + 2.265809356255705e-01 + 2.260447364485637e-01 + 2.255098024678978e-01 + 2.249761308577043e-01 + 2.244437185775247e-01 + 2.239125625576918e-01 + 2.233826599324974e-01 + 2.228540078061592e-01 + 2.223266032159731e-01 + 2.218004431318401e-01 + 2.212755246546400e-01 + 2.207518449320089e-01 + 2.202294009962271e-01 + 2.197081899542086e-01 + 2.191882089472320e-01 + 2.186694550184439e-01 + 2.181519252528444e-01 + 2.176356167922184e-01 + 2.171205268020538e-01 + 2.166066524055817e-01 + 2.160939907132310e-01 + 2.155825389406823e-01 + 2.150722942170351e-01 + 2.145632535999474e-01 + 2.140554143128364e-01 + 2.135487735713488e-01 + 2.130433285376680e-01 + 2.125390763961598e-01 + 2.120360143225986e-01 + 2.115341394866721e-01 + 2.110334491301104e-01 + 2.105339404911263e-01 + 2.100356107692428e-01 + 2.095384571593845e-01 + 2.090424768875718e-01 + 2.085476672286868e-01 + 2.080540254649787e-01 + 2.075615488420417e-01 + 2.070702345483775e-01 + 2.065800798220710e-01 + 2.060910819584345e-01 + 2.056032383022174e-01 + 2.051165461242101e-01 + 2.046310026800104e-01 + 2.041466052775261e-01 + 2.036633511978056e-01 + 2.031812377402102e-01 + 2.027002622847228e-01 + 2.022204221329609e-01 + 2.017417145657832e-01 + 2.012641369577989e-01 + 2.007876866366623e-01 + 2.003123609141739e-01 + 1.998381571847571e-01 + 1.993650728223044e-01 + 1.988931051658790e-01 + 1.984222515391579e-01 + 1.979525093566432e-01 + 1.974838760798574e-01 + 1.970163490394448e-01 + 1.965499255924087e-01 + 1.960846031634822e-01 + 1.956203792216227e-01 + 1.951572511456189e-01 + 1.946952162469976e-01 + 1.942342720345011e-01 + 1.937744160087473e-01 + 1.933156455855021e-01 + 1.928579581617409e-01 + 1.924013511601302e-01 + 1.919458220512063e-01 + 1.914913683490730e-01 + 1.910379875218400e-01 + 1.905856769690048e-01 + 1.901344342343178e-01 + 1.896842568245793e-01 + 1.892351421122624e-01 + 1.887870876905098e-01 + 1.883400911382459e-01 + 1.878941498265747e-01 + 1.874492612709913e-01 + 1.870054230608876e-01 + 1.865626327533365e-01 + 1.861208878413260e-01 + 1.856801858136446e-01 + 1.852405242290795e-01 + 1.848019006561455e-01 + 1.843643126785636e-01 + 1.839277579090688e-01 + 1.834922338318696e-01 + 1.830577379260484e-01 + 1.826242679175190e-01 + 1.821918214082343e-01 + 1.817603959062191e-01 + 1.813299890419420e-01 + 1.809005984096844e-01 + 1.804722215715290e-01 + 1.800448561676805e-01 + 1.796184998471616e-01 + 1.791931502428031e-01 + 1.787688049585256e-01 + 1.783454616010165e-01 + 1.779231178061076e-01 + 1.775017712916434e-01 + 1.770814197185338e-01 + 1.766620606643876e-01 + 1.762436917707559e-01 + 1.758263107475443e-01 + 1.754099153420786e-01 + 1.749945031691721e-01 + 1.745800718793870e-01 + 1.741666192327871e-01 + 1.737541428912765e-01 + 1.733426405128906e-01 + 1.729321098263452e-01 + 1.725225486037993e-01 + 1.721139545737653e-01 + 1.717063253659770e-01 + 1.712996586978482e-01 + 1.708939523524782e-01 + 1.704892041326627e-01 + 1.700854117308264e-01 + 1.696825728315613e-01 + 1.692806852413719e-01 + 1.688797467224855e-01 + 1.684797550119726e-01 + 1.680807078836749e-01 + 1.676826031516292e-01 + 1.672854386236076e-01 + 1.668892120257625e-01 + 1.664939211364053e-01 + 1.660995637803862e-01 + 1.657061377653481e-01 + 1.653136408872399e-01 + 1.649220709518862e-01 + 1.645314258210089e-01 + 1.641417032838678e-01 + 1.637529010922642e-01 + 1.633650171697226e-01 + 1.629780493848234e-01 + 1.625919955117979e-01 + 1.622068533722165e-01 + 1.618226208359533e-01 + 1.614392958070308e-01 + 1.610568761629498e-01 + 1.606753597398519e-01 + 1.602947443525945e-01 + 1.599150279328092e-01 + 1.595362083976419e-01 + 1.591582835876941e-01 + 1.587812513806259e-01 + 1.584051096895935e-01 + 1.580298564486488e-01 + 1.576554895336735e-01 + 1.572820068494865e-01 + 1.569094063844064e-01 + 1.565376859935812e-01 + 1.561668435389086e-01 + 1.557968770322644e-01 + 1.554277844430587e-01 + 1.550595637013555e-01 + 1.546922127252644e-01 + 1.543257294352004e-01 + 1.539601117962810e-01 + 1.535953578647676e-01 + 1.532314655336160e-01 + 1.528684326732572e-01 + 1.525062574192351e-01 + 1.521449377506904e-01 + 1.517844715391133e-01 + 1.514248568043021e-01 + 1.510660915767141e-01 + 1.507081738546517e-01 + 1.503511015850067e-01 + 1.499948728018673e-01 + 1.496394855976185e-01 + 1.492849379312514e-01 + 1.489312277844460e-01 + 1.485783532079666e-01 + 1.482263122946834e-01 + 1.478751030581660e-01 + 1.475247234388987e-01 + 1.471751715323068e-01 + 1.468264454469171e-01 + 1.464785432366154e-01 + 1.461314629165984e-01 + 1.457852025452889e-01 + 1.454397602433564e-01 + 1.450951340257908e-01 + 1.447513219420110e-01 + 1.444083221508569e-01 + 1.440661327109938e-01 + 1.437247516822454e-01 + 1.433841772072484e-01 + 1.430444073901374e-01 + 1.427054403077353e-01 + 1.423672740371242e-01 + 1.420299067307786e-01 + 1.416933365389871e-01 + 1.413575615237460e-01 + 1.410225798197031e-01 + 1.406883895901710e-01 + 1.403549889435149e-01 + 1.400223760032770e-01 + 1.396905489310608e-01 + 1.393595059398338e-01 + 1.390292451224472e-01 + 1.386997645496112e-01 + 1.383710625136722e-01 + 1.380431371824567e-01 + 1.377159866326167e-01 + 1.373896091055998e-01 + 1.370640027752214e-01 + 1.367391657592925e-01 + 1.364150963290927e-01 + 1.360917926783734e-01 + 1.357692529162330e-01 + 1.354474752994454e-01 + 1.351264580487222e-01 + 1.348061993122180e-01 + 1.344866973181728e-01 + 1.341679503229942e-01 + 1.338499565682958e-01 + 1.335327142013654e-01 + 1.332162214320106e-01 + 1.329004765902875e-01 + 1.325854779258548e-01 + 1.322712236439755e-01 + 1.319577119415115e-01 + 1.316449410589970e-01 + 1.313329092858229e-01 + 1.310216149439378e-01 + 1.307110562100912e-01 + 1.304012313067827e-01 + 1.300921386594473e-01 + 1.297837764741680e-01 + 1.294761429396481e-01 + 1.291692364743583e-01 + 1.288630553353233e-01 + 1.285575977268189e-01 + 1.282528620001082e-01 + 1.279488464604472e-01 + 1.276455493846629e-01 + 1.273429690961771e-01 + 1.270411039265308e-01 + 1.267399521912149e-01 + 1.264395121606617e-01 + 1.261397821624623e-01 + 1.258407605612416e-01 + 1.255424456647032e-01 + 1.252448358003494e-01 + 1.249479293256652e-01 + 1.246517245985584e-01 + 1.243562199440227e-01 + 1.240614136699035e-01 + 1.237673041530004e-01 + 1.234738897833225e-01 + 1.231811689369122e-01 + 1.228891399541342e-01 + 1.225978011897444e-01 + 1.223071510285007e-01 + 1.220171878485729e-01 + 1.217279100221359e-01 + 1.214393159216827e-01 + 1.211514039479249e-01 + 1.208641725134118e-01 + 1.205776200272462e-01 + 1.202917448643591e-01 + 1.200065453999493e-01 + 1.197220200388544e-01 + 1.194381672203820e-01 + 1.191549853738593e-01 + 1.188724728867774e-01 + 1.185906281982059e-01 + 1.183094497403516e-01 + 1.180289358802264e-01 + 1.177490851172322e-01 + 1.174698959467804e-01 + 1.171913666738082e-01 + 1.169134957966049e-01 + 1.166362818664215e-01 + 1.163597231976005e-01 + 1.160838182295854e-01 + 1.158085654926154e-01 + 1.155339634301463e-01 + 1.152600105152270e-01 + 1.149867052503320e-01 + 1.147140461081585e-01 + 1.144420315115333e-01 + 1.141706598827868e-01 + 1.138999297876022e-01 + 1.136298397724347e-01 + 1.133603883121320e-01 + 1.130915738073908e-01 + 1.128233947404400e-01 + 1.125558496925181e-01 + 1.122889371862514e-01 + 1.120226557224089e-01 + 1.117570037925019e-01 + 1.114919798574519e-01 + 1.112275824488763e-01 + 1.109638101830490e-01 + 1.107006615250319e-01 + 1.104381349837027e-01 + 1.101762291935612e-01 + 1.099149425817940e-01 + 1.096542736337556e-01 + 1.093942210611990e-01 + 1.091347833750166e-01 + 1.088759590309823e-01 + 1.086177465849946e-01 + 1.083601446468375e-01 + 1.081031518187680e-01 + 1.078467666394599e-01 + 1.075909876365943e-01 + 1.073358133695979e-01 + 1.070812424691808e-01 + 1.068272734935852e-01 + 1.065739049762412e-01 + 1.063211355273724e-01 + 1.060689637753818e-01 + 1.058173883167701e-01 + 1.055664076522099e-01 + 1.053160204177178e-01 + 1.050662253083730e-01 + 1.048170208178578e-01 + 1.045684055544151e-01 + 1.043203782231123e-01 + 1.040729373745031e-01 + 1.038260815947437e-01 + 1.035798095388146e-01 + 1.033341198496129e-01 + 1.030890111353506e-01 + 1.028444819874746e-01 + 1.026005310752415e-01 + 1.023571570589419e-01 + 1.021143585605686e-01 + 1.018721342063349e-01 + 1.016304826397723e-01 + 1.013894025261397e-01 + 1.011488925387934e-01 + 1.009089513225976e-01 + 1.006695774897203e-01 + 1.004307697412456e-01 + 1.001925267601519e-01 + 9.995484714928184e-02 + 9.971772961029543e-02 + 9.948117285600222e-02 + 9.924517553207431e-02 + 9.900973631553432e-02 + 9.877485389836264e-02 + 9.854052696321766e-02 + 9.830675420513860e-02 + 9.807353432053509e-02 + 9.784086599274402e-02 + 9.760874792461041e-02 + 9.737717882679013e-02 + 9.714615739564664e-02 + 9.691568233864475e-02 + 9.668575237168565e-02 + 9.645636620785530e-02 + 9.622752256709627e-02 + 9.599922017186617e-02 + 9.577145773476621e-02 + 9.554423398421420e-02 + 9.531754766036228e-02 + 9.509139748951084e-02 + 9.486578220406576e-02 + 9.464070054491446e-02 + 9.441615125061270e-02 + 9.419213306609350e-02 + 9.396864474309072e-02 + 9.374568502973517e-02 + 9.352325267700241e-02 + 9.330134644110695e-02 + 9.307996508088016e-02 + 9.285910736057421e-02 + 9.263877204899980e-02 + 9.241895790580944e-02 + 9.219966369924239e-02 + 9.198088821288498e-02 + 9.176263021506216e-02 + 9.154488848131032e-02 + 9.132766180778470e-02 + 9.111094897456264e-02 + 9.089474876186458e-02 + 9.067905996494766e-02 + 9.046388137755315e-02 + 9.024921179550818e-02 + 9.003505002157913e-02 + 8.982139485394958e-02 + 8.960824509461397e-02 + 8.939559956013639e-02 + 8.918345705664489e-02 + 8.897181638949078e-02 + 8.876067638185769e-02 + 8.855003585659860e-02 + 8.833989363307079e-02 + 8.813024852794749e-02 + 8.792109937217552e-02 + 8.771244500411417e-02 + 8.750428424959714e-02 + 8.729661594151820e-02 + 8.708943892038122e-02 + 8.688275202450782e-02 + 8.667655409894154e-02 + 8.647084399500883e-02 + 8.626562056133152e-02 + 8.606088264727801e-02 + 8.585662910508592e-02 + 8.565285879275303e-02 + 8.544957056834111e-02 + 8.524676329099723e-02 + 8.504443583456130e-02 + 8.484258706983651e-02 + 8.464121585953427e-02 + 8.444032107793580e-02 + 8.423990160173883e-02 + 8.403995630660985e-02 + 8.384048408000297e-02 + 8.364148380739438e-02 + 8.344295436518863e-02 + 8.324489464319758e-02 + 8.304730353631981e-02 + 8.285017993778075e-02 + 8.265352274723796e-02 + 8.245733086610936e-02 + 8.226160319325253e-02 + 8.206633863307464e-02 + 8.187153609323948e-02 + 8.167719448173898e-02 + 8.148331271120264e-02 + 8.128988969775824e-02 + 8.109692435907066e-02 + 8.090441561287741e-02 + 8.071236238052074e-02 + 8.052076359329230e-02 + 8.032961817777003e-02 + 8.013892505875637e-02 + 7.994868317110082e-02 + 7.975889145271257e-02 + 7.956954884117817e-02 + 7.938065427030368e-02 + 7.919220668490153e-02 + 7.900420503735811e-02 + 7.881664826626886e-02 + 7.862953532075569e-02 + 7.844286516277023e-02 + 7.825663674598571e-02 + 7.807084902471831e-02 + 7.788550095723919e-02 + 7.770059150356423e-02 + 7.751611963202924e-02 + 7.733208431808952e-02 + 7.714848452080215e-02 + 7.696531920714285e-02 + 7.678258736267791e-02 + 7.660028796508990e-02 + 7.641841999039113e-02 + 7.623698241865759e-02 + 7.605597423593993e-02 + 7.587539442823407e-02 + 7.569524197859213e-02 + 7.551551588287067e-02 + 7.533621514035872e-02 + 7.515733874432233e-02 + 7.497888568830134e-02 + 7.480085497230264e-02 + 7.462324560850588e-02 + 7.444605660139321e-02 + 7.426928695221670e-02 + 7.409293566891996e-02 + 7.391700176673981e-02 + 7.374148426439617e-02 + 7.356638217848553e-02 + 7.339169452681224e-02 + 7.321742033027905e-02 + 7.304355861552074e-02 + 7.287010840815517e-02 + 7.269706873346385e-02 + 7.252443862192341e-02 + 7.235221710900047e-02 + 7.218040323296335e-02 + 7.200899602923243e-02 + 7.183799453782064e-02 + 7.166739780328910e-02 + 7.149720486628935e-02 + 7.132741477295296e-02 + 7.115802657678706e-02 + 7.098903933028558e-02 + 7.082045208266741e-02 + 7.065226388294948e-02 + 7.048447379884398e-02 + 7.031708089501212e-02 + 7.015008422428966e-02 + 6.998348285005500e-02 + 6.981727584178653e-02 + 6.965146227138255e-02 + 6.948604121024822e-02 + 6.932101172952453e-02 + 6.915637290177927e-02 + 6.899212381049466e-02 + 6.882826353831664e-02 + 6.866479115768206e-02 + 6.850170575553913e-02 + 6.833900642241270e-02 + 6.817669223943085e-02 + 6.801476230171261e-02 + 6.785321570853013e-02 + 6.769205154760372e-02 + 6.753126891476798e-02 + 6.737086691265436e-02 + 6.721084464422118e-02 + 6.705120121123045e-02 + 6.689193571639933e-02 + 6.673304726820108e-02 + 6.657453497707803e-02 + 6.641639795452120e-02 + 6.625863531334618e-02 + 6.610124617104705e-02 + 6.594422964866814e-02 + 6.578758486543299e-02 + 6.563131094165708e-02 + 6.547540700031643e-02 + 6.531987216906585e-02 + 6.516470557837332e-02 + 6.500990635997374e-02 + 6.485547364331327e-02 + 6.470140656204018e-02 + 6.454770425495959e-02 + 6.439436585565442e-02 + 6.424139050518185e-02 + 6.408877735587415e-02 + 6.393652554954243e-02 + 6.378463422860429e-02 + 6.363310254304622e-02 + 6.348192964216136e-02 + 6.333111467891862e-02 + 6.318065681259971e-02 + 6.303055519506789e-02 + 6.288080898167979e-02 + 6.273141734118348e-02 + 6.258237943694549e-02 + 6.243369443027962e-02 + 6.228536148636779e-02 + 6.213737977420020e-02 + 6.198974846629291e-02 + 6.184246673830131e-02 + 6.169553375986874e-02 + 6.154894870195880e-02 + 6.140271075002260e-02 + 6.125681908485271e-02 + 6.111127288458502e-02 + 6.096607133498923e-02 + 6.082121362330186e-02 + 6.067669893778977e-02 + 6.053252647002724e-02 + 6.038869541057570e-02 + 6.024520494995262e-02 + 6.010205428441878e-02 + 5.995924261312039e-02 + 5.981676913606451e-02 + 5.967463305068377e-02 + 5.953283356000520e-02 + 5.939136987405440e-02 + 5.925024120274393e-02 + 5.910944675075109e-02 + 5.896898572024133e-02 + 5.882885733338872e-02 + 5.868906080796419e-02 + 5.854959534943303e-02 + 5.841046018167366e-02 + 5.827165452667381e-02 + 5.813317759547484e-02 + 5.799502862000658e-02 + 5.785720683145133e-02 + 5.771971144629215e-02 + 5.758254169802959e-02 + 5.744569682168989e-02 + 5.730917604038396e-02 + 5.717297859181381e-02 + 5.703710371771920e-02 + 5.690155065150715e-02 + 5.676631863514842e-02 + 5.663140691176988e-02 + 5.649681471550019e-02 + 5.636254129818796e-02 + 5.622858591623749e-02 + 5.609494780637568e-02 + 5.596162621719655e-02 + 5.582862040612746e-02 + 5.569592962469259e-02 + 5.556355312969728e-02 + 5.543149018219354e-02 + 5.529974004038473e-02 + 5.516830196534387e-02 + 5.503717522021812e-02 + 5.490635906464716e-02 + 5.477585276550550e-02 + 5.464565559606692e-02 + 5.451576682310098e-02 + 5.438618571514530e-02 + 5.425691154653305e-02 + 5.412794360021059e-02 + 5.399928115030668e-02 + 5.387092346220070e-02 + 5.374286982722595e-02 + 5.361511953114147e-02 + 5.348767184376742e-02 + 5.336052605560348e-02 + 5.323368145967647e-02 + 5.310713734132736e-02 + 5.298089299097181e-02 + 5.285494769998652e-02 + 5.272930075794034e-02 + 5.260395145882699e-02 + 5.247889910164562e-02 + 5.235414299012888e-02 + 5.222968242359068e-02 + 5.210551670083303e-02 + 5.198164512479836e-02 + 5.185806699751586e-02 + 5.173478162567831e-02 + 5.161178832737659e-02 + 5.148908640731603e-02 + 5.136667516904735e-02 + 5.124455393713079e-02 + 5.112272202541198e-02 + 5.100117874145336e-02 + 5.087992340415878e-02 + 5.075895533879782e-02 + 5.063827387090040e-02 + 5.051787831631814e-02 + 5.039776799903027e-02 + 5.027794224956293e-02 + 5.015840039018700e-02 + 5.003914174911826e-02 + 4.992016566217095e-02 + 4.980147146451835e-02 + 4.968305848565534e-02 + 4.956492605368701e-02 + 4.944707351707827e-02 + 4.932950021762891e-02 + 4.921220548403189e-02 + 4.909518865563611e-02 + 4.897844908008390e-02 + 4.886198610990230e-02 + 4.874579909103274e-02 + 4.862988736593407e-02 + 4.851425027765261e-02 + 4.839888718215429e-02 + 4.828379743688660e-02 + 4.816898039344981e-02 + 4.805443540666063e-02 + 4.794016183433197e-02 + 4.782615903628512e-02 + 4.771242637003347e-02 + 4.759896319572905e-02 + 4.748576888074151e-02 + 4.737284278529100e-02 + 4.726018427180961e-02 + 4.714779271742187e-02 + 4.703566749191604e-02 + 4.692380796083007e-02 + 4.681221349433169e-02 + 4.670088346648602e-02 + 4.658981725459431e-02 + 4.647901423861556e-02 + 4.636847379587147e-02 + 4.625819530165282e-02 + 4.614817813294777e-02 + 4.603842167462240e-02 + 4.592892531626435e-02 + 4.581968844113481e-02 + 4.571071043517037e-02 + 4.560199068716930e-02 + 4.549352858172214e-02 + 4.538532351139604e-02 + 4.527737487551017e-02 + 4.516968206047602e-02 + 4.506224446147816e-02 + 4.495506148526871e-02 + 4.484813252205796e-02 + 4.474145696749865e-02 + 4.463503423038843e-02 + 4.452886371233129e-02 + 4.442294481444441e-02 + 4.431727694184067e-02 + 4.421185950249874e-02 + 4.410669190344264e-02 + 4.400177354999718e-02 + 4.389710385863231e-02 + 4.379268224561385e-02 + 4.368850811842072e-02 + 4.358458089102907e-02 + 4.348089998166713e-02 + 4.337746480946211e-02 + 4.327427479290449e-02 + 4.317132935104961e-02 + 4.306862790538591e-02 + 4.296616988021409e-02 + 4.286395470044128e-02 + 4.276198178905291e-02 + 4.266025057462805e-02 + 4.255876048879523e-02 + 4.245751096050290e-02 + 4.235650142249979e-02 + 4.225573130868781e-02 + 4.215520004666404e-02 + 4.205490707118502e-02 + 4.195485182346907e-02 + 4.185503374212908e-02 + 4.175545226547943e-02 + 4.165610683241490e-02 + 4.155699688308426e-02 + 4.145812186261490e-02 + 4.135948121993713e-02 + 4.126107439911159e-02 + 4.116290084444992e-02 + 4.106496000347922e-02 + 4.096725133001662e-02 + 4.086977427671171e-02 + 4.077252829257245e-02 + 4.067551282880393e-02 + 4.057872734137224e-02 + 4.048217129089726e-02 + 4.038584413229004e-02 + 4.028974532214836e-02 + 4.019387432351806e-02 + 4.009823059884492e-02 + 4.000281360871143e-02 + 3.990762281263916e-02 + 3.981265768084040e-02 + 3.971791768404272e-02 + 3.962340228400397e-02 + 3.952911094818634e-02 + 3.943504314911767e-02 + 3.934119836154264e-02 + 3.924757605343093e-02 + 3.915417569553582e-02 + 3.906099677494528e-02 + 3.896803876462888e-02 + 3.887530113159737e-02 + 3.878278335807980e-02 + 3.869048493136602e-02 + 3.859840533540703e-02 + 3.850654403935494e-02 + 3.841490053099362e-02 + 3.832347430867683e-02 + 3.823226484521238e-02 + 3.814127162485314e-02 + 3.805049414568009e-02 + 3.795993189727254e-02 + 3.786958436838804e-02 + 3.777945104950908e-02 + 3.768953143238456e-02 + 3.759982501241896e-02 + 3.751033128919119e-02 + 3.742104976390229e-02 + 3.733197993101921e-02 + 3.724312127956968e-02 + 3.715447331892652e-02 + 3.706603555538170e-02 + 3.697780748276271e-02 + 3.688978860838169e-02 + 3.680197844047203e-02 + 3.671437648083043e-02 + 3.662698223859462e-02 + 3.653979522528233e-02 + 3.645281495050149e-02 + 3.636604092401768e-02 + 3.627947265609178e-02 + 3.619310965841749e-02 + 3.610695145022991e-02 + 3.602099755007137e-02 + 3.593524746722872e-02 + 3.584970072102484e-02 + 3.576435683502647e-02 + 3.567921532660211e-02 + 3.559427571435374e-02 + 3.550953752116312e-02 + 3.542500027693078e-02 + 3.534066350384148e-02 + 3.525652672170999e-02 + 3.517258946309138e-02 + 3.508885125628003e-02 + 3.500531162678291e-02 + 3.492197010940873e-02 + 3.483882623525817e-02 + 3.475587953263527e-02 + 3.467312953919303e-02 + 3.459057578876406e-02 + 3.450821781198862e-02 + 3.442605515251815e-02 + 3.434408734999198e-02 + 3.426231393723483e-02 + 3.418073445581654e-02 + 3.409934844816886e-02 + 3.401815545480084e-02 + 3.393715501912345e-02 + 3.385634668688416e-02 + 3.377573000557660e-02 + 3.369530452244349e-02 + 3.361506978424043e-02 + 3.353502533757853e-02 + 3.345517073173793e-02 + 3.337550551749302e-02 + 3.329602924688495e-02 + 3.321674147756795e-02 + 3.313764176353938e-02 + 3.305872964905672e-02 + 3.298000469915312e-02 + 3.290146647870388e-02 + 3.282311452928582e-02 + 3.274494841443989e-02 + 3.266696770524984e-02 + 3.258917195579586e-02 + 3.251156072835543e-02 + 3.243413358906379e-02 + 3.235689009597382e-02 + 3.227982981604406e-02 + 3.220295232152501e-02 + 3.212625717796667e-02 + 3.204974395335523e-02 + 3.197341221860803e-02 + 3.189726154412311e-02 + 3.182129149811844e-02 + 3.174550164996338e-02 + 3.166989158019418e-02 + 3.159446086552403e-02 + 3.151920907660396e-02 + 3.144413578635114e-02 + 3.136924057603768e-02 + 3.129452303273958e-02 + 3.121998273049806e-02 + 3.114561924523454e-02 + 3.107143216011856e-02 + 3.099742105799270e-02 + 3.092358552474080e-02 + 3.084992514925186e-02 + 3.077643951122557e-02 + 3.070312819305190e-02 + 3.062999078663620e-02 + 3.055702688363699e-02 + 3.048423607160382e-02 + 3.041161793396379e-02 + 3.033917207015753e-02 + 3.026689807846873e-02 + 3.019479554128978e-02 + 3.012286404982057e-02 + 3.005110320361238e-02 + 2.997951260681279e-02 + 2.990809185255966e-02 + 2.983684053226568e-02 + 2.976575824919644e-02 + 2.969484460522792e-02 + 2.962409920087884e-02 + 2.955352163824170e-02 + 2.948311151647172e-02 + 2.941286843696999e-02 + 2.934279201383451e-02 + 2.927288185012002e-02 + 2.920313754405053e-02 + 2.913355871301240e-02 + 2.906414496442064e-02 + 2.899489589842786e-02 + 2.892581113440367e-02 + 2.885689028447655e-02 + 2.878813295173805e-02 + 2.871953875071393e-02 + 2.865110730129668e-02 + 2.858283822298987e-02 + 2.851473112218837e-02 + 2.844678561226344e-02 + 2.837900131834860e-02 + 2.831137785774055e-02 + 2.824391484910513e-02 + 2.817661191561155e-02 + 2.810946867322990e-02 + 2.804248474261467e-02 + 2.797565975421473e-02 + 2.790899332866750e-02 + 2.784248508684310e-02 + 2.777613465729838e-02 + 2.770994166752542e-02 + 2.764390574354870e-02 + 2.757802651096095e-02 + 2.751230360164656e-02 + 2.744673664902718e-02 + 2.738132528259552e-02 + 2.731606912935157e-02 + 2.725096782054994e-02 + 2.718602099881922e-02 + 2.712122829441404e-02 + 2.705658933533107e-02 + 2.699210376654040e-02 + 2.692777122629619e-02 + 2.686359134766074e-02 + 2.679956376855050e-02 + 2.673568813034148e-02 + 2.667196407449100e-02 + 2.660839123653040e-02 + 2.654496925932325e-02 + 2.648169779209303e-02 + 2.641857647953893e-02 + 2.635560496230991e-02 + 2.629278288047702e-02 + 2.623010988365326e-02 + 2.616758562366618e-02 + 2.610520975031933e-02 + 2.604298190560967e-02 + 2.598090173551063e-02 + 2.591896889422694e-02 + 2.585718303968204e-02 + 2.579554382343284e-02 + 2.573405088890056e-02 + 2.567270388987125e-02 + 2.561150248485746e-02 + 2.555044633271165e-02 + 2.548953508798725e-02 + 2.542876840653832e-02 + 2.536814594843316e-02 + 2.530766736730480e-02 + 2.524733231969847e-02 + 2.518714047250964e-02 + 2.512709148651639e-02 + 2.506718502244662e-02 + 2.500742074738894e-02 + 2.494779831751132e-02 + 2.488831739145854e-02 + 2.482897764751662e-02 + 2.476977875068464e-02 + 2.471072035836960e-02 + 2.465180213557270e-02 + 2.459302375909131e-02 + 2.453438490494015e-02 + 2.447588522684439e-02 + 2.441752439632618e-02 + 2.435930209686822e-02 + 2.430121799563831e-02 + 2.424327176191257e-02 + 2.418546306971884e-02 + 2.412779159320392e-02 + 2.407025701015483e-02 + 2.401285899981317e-02 + 2.395559723318545e-02 + 2.389847138352894e-02 + 2.384148113010493e-02 + 2.378462615809818e-02 + 2.372790614977233e-02 + 2.367132078182184e-02 + 2.361486973012364e-02 + 2.355855267628842e-02 + 2.350236930912776e-02 + 2.344631931433045e-02 + 2.339040237260871e-02 + 2.333461816188979e-02 + 2.327896637661412e-02 + 2.322344670789084e-02 + 2.316805883183489e-02 + 2.311280243515378e-02 + 2.305767721100430e-02 + 2.300268285332459e-02 + 2.294781904779433e-02 + 2.289308548135576e-02 + 2.283848185163481e-02 + 2.278400785322520e-02 + 2.272966317657758e-02 + 2.267544750906289e-02 + 2.262136054576819e-02 + 2.256740198705395e-02 + 2.251357153295969e-02 + 2.245986887460843e-02 + 2.240629370372433e-02 + 2.235284572997816e-02 + 2.229952464835474e-02 + 2.224633014749699e-02 + 2.219326193897085e-02 + 2.214031972536749e-02 + 2.208750320104361e-02 + 2.203481207216736e-02 + 2.198224604054712e-02 + 2.192980480490446e-02 + 2.187748807809197e-02 + 2.182529556587840e-02 + 2.177322696546572e-02 + 2.172128198614426e-02 + 2.166946034002218e-02 + 2.161776173674180e-02 + 2.156618587797776e-02 + 2.151473246970182e-02 + 2.146340122648612e-02 + 2.141219186176581e-02 + 2.136110408595206e-02 + 2.131013760699968e-02 + 2.125929213929720e-02 + 2.120856739943827e-02 + 2.115796310282077e-02 + 2.110747896148574e-02 + 2.105711468773744e-02 + 2.100686999708853e-02 + 2.095674460640470e-02 + 2.090673823470377e-02 + 2.085685060390323e-02 + 2.080708143284909e-02 + 2.075743043865024e-02 + 2.070789733896461e-02 + 2.065848185338519e-02 + 2.060918370358626e-02 + 2.056000261352416e-02 + 2.051093830731156e-02 + 2.046199050841276e-02 + 2.041315893918832e-02 + 2.036444332670061e-02 + 2.031584339811113e-02 + 2.026735887003067e-02 + 2.021898947028043e-02 + 2.017073493461869e-02 + 2.012259498752183e-02 + 2.007456935661649e-02 + 2.002665777297167e-02 + 1.997885996051357e-02 + 1.993117564943755e-02 + 1.988360457741823e-02 + 1.983614647798445e-02 + 1.978880107994216e-02 + 1.974156811085027e-02 + 1.969444731166336e-02 + 1.964743841723802e-02 + 1.960054115227784e-02 + 1.955375525837354e-02 + 1.950708047707909e-02 + 1.946051654129042e-02 + 1.941406318497287e-02 + 1.936772014474174e-02 + 1.932148716119990e-02 + 1.927536398140690e-02 + 1.922935034564512e-02 + 1.918344598004621e-02 + 1.913765063001423e-02 + 1.909196404425976e-02 + 1.904638595925336e-02 + 1.900091612254435e-02 + 1.895555428061772e-02 + 1.891030016469744e-02 + 1.886515352637163e-02 + 1.882011411999479e-02 + 1.877518167521970e-02 + 1.873035594232305e-02 + 1.868563668110157e-02 + 1.864102363246424e-02 + 1.859651653826993e-02 + 1.855211514697215e-02 + 1.850781921692858e-02 + 1.846362849811174e-02 + 1.841954273425713e-02 + 1.837556167722399e-02 + 1.833168508274460e-02 + 1.828791270638760e-02 + 1.824424429587613e-02 + 1.820067960186819e-02 + 1.815721838079814e-02 + 1.811386039242822e-02 + 1.807060539155448e-02 + 1.802745312809132e-02 + 1.798440336027523e-02 + 1.794145584667328e-02 + 1.789861034396235e-02 + 1.785586661445831e-02 + 1.781322441713358e-02 + 1.777068350457842e-02 + 1.772824363606736e-02 + 1.768590457480606e-02 + 1.764366608520215e-02 + 1.760152792777148e-02 + 1.755948986314423e-02 + 1.751755165530868e-02 + 1.747571306959304e-02 + 1.743397386795286e-02 + 1.739233380686453e-02 + 1.735079266012027e-02 + 1.730935019969591e-02 + 1.726800617515195e-02 + 1.722676035861175e-02 + 1.718561252878033e-02 + 1.714456244423200e-02 + 1.710360987245781e-02 + 1.706275458478830e-02 + 1.702199634263978e-02 + 1.698133492251816e-02 + 1.694077010510486e-02 + 1.690030164730331e-02 + 1.685992932068962e-02 + 1.681965290804600e-02 + 1.677947217681714e-02 + 1.673938689521877e-02 + 1.669939683666028e-02 + 1.665950177991986e-02 + 1.661970150205939e-02 + 1.657999577711447e-02 + 1.654038437906895e-02 + 1.650086708478969e-02 + 1.646144367321789e-02 + 1.642211391798679e-02 + 1.638287759543946e-02 + 1.634373448754158e-02 + 1.630468437732129e-02 + 1.626572704186934e-02 + 1.622686225251448e-02 + 1.618808979718675e-02 + 1.614940946170872e-02 + 1.611082101996680e-02 + 1.607232425440962e-02 + 1.603391895041710e-02 + 1.599560489122978e-02 + 1.595738185903658e-02 + 1.591924963852954e-02 + 1.588120801872957e-02 + 1.584325677844977e-02 + 1.580539569909259e-02 + 1.576762457813194e-02 + 1.572994319938502e-02 + 1.569235134492561e-02 + 1.565484881311209e-02 + 1.561743538476679e-02 + 1.558011083839993e-02 + 1.554287497958433e-02 + 1.550572759639263e-02 + 1.546866846769255e-02 + 1.543169739218311e-02 + 1.539481416304957e-02 + 1.535801856691179e-02 + 1.532131039389481e-02 + 1.528468944222785e-02 + 1.524815551153465e-02 + 1.521170838270258e-02 + 1.517534784896265e-02 + 1.513907371629201e-02 + 1.510288577422132e-02 + 1.506678381600347e-02 + 1.503076764230081e-02 + 1.499483704594779e-02 + 1.495899182406707e-02 + 1.492323178010325e-02 + 1.488755670734373e-02 + 1.485196640180961e-02 + 1.481646066682016e-02 + 1.478103929846549e-02 + 1.474570209596410e-02 + 1.471044886603309e-02 + 1.467527940456368e-02 + 1.464019351058384e-02 + 1.460519099481427e-02 + 1.457027165550810e-02 + 1.453543528903122e-02 + 1.450068170024789e-02 + 1.446601069487559e-02 + 1.443142207965322e-02 + 1.439691566271563e-02 + 1.436249124410753e-02 + 1.432814862414793e-02 + 1.429388761459182e-02 + 1.425970802314729e-02 + 1.422560965483165e-02 + 1.419159231701311e-02 + 1.415765581387266e-02 + 1.412379995194592e-02 + 1.409002455116132e-02 + 1.405632941792580e-02 + 1.402271435207008e-02 + 1.398917917303820e-02 + 1.395572369124169e-02 + 1.392234770932106e-02 + 1.388905104392205e-02 + 1.385583350997071e-02 + 1.382269491788422e-02 + 1.378963507987753e-02 + 1.375665380791922e-02 + 1.372375091366015e-02 + 1.369092621121959e-02 + 1.365817951715469e-02 + 1.362551064978645e-02 + 1.359291942581090e-02 + 1.356040565686591e-02 + 1.352796915179558e-02 + 1.349560973812908e-02 + 1.346332723540702e-02 + 1.343112144483463e-02 + 1.339899219360082e-02 + 1.336693930891053e-02 + 1.333496260043193e-02 + 1.330306188734133e-02 + 1.327123699224855e-02 + 1.323948773476910e-02 + 1.320781393642416e-02 + 1.317621541705235e-02 + 1.314469199166208e-02 + 1.311324348463446e-02 + 1.308186972415766e-02 + 1.305057053367403e-02 + 1.301934573289238e-02 + 1.298819514247371e-02 + 1.295711859027024e-02 + 1.292611590142988e-02 + 1.289518689817567e-02 + 1.286433140253433e-02 + 1.283354924175516e-02 + 1.280284024626999e-02 + 1.277220424320462e-02 + 1.274164105512193e-02 + 1.271115050454398e-02 + 1.268073242580564e-02 + 1.265038664885281e-02 + 1.262011299771964e-02 + 1.258991130045622e-02 + 1.255978138928737e-02 + 1.252972309744999e-02 + 1.249973624798444e-02 + 1.246982067106488e-02 + 1.243997620568067e-02 + 1.241020267461013e-02 + 1.238049990730756e-02 + 1.235086774662455e-02 + 1.232130602051964e-02 + 1.229181455798258e-02 + 1.226239319685087e-02 + 1.223304176770951e-02 + 1.220376010347082e-02 + 1.217454804486660e-02 + 1.214540542341299e-02 + 1.211633207079968e-02 + 1.208732782681391e-02 + 1.205839252771904e-02 + 1.202952600673308e-02 + 1.200072809652295e-02 + 1.197199864009422e-02 + 1.194333748171596e-02 + 1.191474445503102e-02 + 1.188621939116683e-02 + 1.185776212675846e-02 + 1.182937251288597e-02 + 1.180105038815069e-02 + 1.177279558400601e-02 + 1.174460794107161e-02 + 1.171648730396891e-02 + 1.168843351609301e-02 + 1.166044641171630e-02 + 1.163252583370262e-02 + 1.160467163102319e-02 + 1.157688364263099e-02 + 1.154916170933044e-02 + 1.152150567570712e-02 + 1.149391538555893e-02 + 1.146639068095789e-02 + 1.143893140447911e-02 + 1.141153740781534e-02 + 1.138420853673168e-02 + 1.135694462854312e-02 + 1.132974552839056e-02 + 1.130261108533809e-02 + 1.127554114921167e-02 + 1.124853556496432e-02 + 1.122159417997002e-02 + 1.119471684585664e-02 + 1.116790340283271e-02 + 1.114115369710312e-02 + 1.111446758944324e-02 + 1.108784492177717e-02 + 1.106128553754357e-02 + 1.103478929728668e-02 + 1.100835604711145e-02 + 1.098198563223047e-02 + 1.095567791133747e-02 + 1.092943273475230e-02 + 1.090324994987072e-02 + 1.087712940981543e-02 + 1.085107096608238e-02 + 1.082507447053145e-02 + 1.079913977931768e-02 + 1.077326674497864e-02 + 1.074745521859533e-02 + 1.072170505538783e-02 + 1.069601611066200e-02 + 1.067038823886727e-02 + 1.064482129354728e-02 + 1.061931513219808e-02 + 1.059386961330933e-02 + 1.056848458681972e-02 + 1.054315990640127e-02 + 1.051789543133304e-02 + 1.049269102209236e-02 + 1.046754653920045e-02 + 1.044246184044743e-02 + 1.041743677288729e-02 + 1.039247119540387e-02 + 1.036756497988909e-02 + 1.034271797805630e-02 + 1.031793004647734e-02 + 1.029320105343422e-02 + 1.026853085073464e-02 + 1.024391929539164e-02 + 1.021936625852857e-02 + 1.019487159885800e-02 + 1.017043517132599e-02 + 1.014605683522427e-02 + 1.012173646293816e-02 + 1.009747392058842e-02 + 1.007326905588179e-02 + 1.004912173629082e-02 + 1.002503183346208e-02 + 1.000099920653610e-02 + 9.977023717087764e-03 + 9.953105229386335e-03 + 9.929243608872406e-03 + 9.905438720973011e-03 + 9.881690430827046e-03 + 9.857998603258316e-03 + 9.834363104786413e-03 + 9.810783802355094e-03 + 9.787260560990621e-03 + 9.763793247942843e-03 + 9.740381731591760e-03 + 9.717025877967826e-03 + 9.693725554510663e-03 + 9.670480630152000e-03 + 9.647290973567844e-03 + 9.624156453317901e-03 + 9.601076938062841e-03 + 9.578052297039983e-03 + 9.555082399653962e-03 + 9.532167115690399e-03 + 9.509306316445141e-03 + 9.486499872512266e-03 + 9.463747653553711e-03 + 9.441049530896879e-03 + 9.418405376662433e-03 + 9.395815063104617e-03 + 9.373278461427175e-03 + 9.350795443499088e-03 + 9.328365882617906e-03 + 9.305989651970981e-03 + 9.283666624824176e-03 + 9.261396674723778e-03 + 9.239179675408710e-03 + 9.217015500757821e-03 + 9.194904024947497e-03 + 9.172845123632957e-03 + 9.150838672277813e-03 + 9.128884544858834e-03 + 9.106982617538152e-03 + 9.085132766987650e-03 + 9.063334868396023e-03 + 9.041588798714301e-03 + 9.019894435479832e-03 + 8.998251654894885e-03 + 8.976660334271958e-03 + 8.955120351755344e-03 + 8.933631585369030e-03 + 8.912193913264732e-03 + 8.890807213885918e-03 + 8.869471366214972e-03 + 8.848186249259440e-03 + 8.826951742251321e-03 + 8.805767725383001e-03 + 8.784634078744540e-03 + 8.763550682317645e-03 + 8.742517416743529e-03 + 8.721534162832835e-03 + 8.700600801502468e-03 + 8.679717214101214e-03 + 8.658883282492529e-03 + 8.638098888885700e-03 + 8.617363915025602e-03 + 8.596678243443276e-03 + 8.576041757693640e-03 + 8.555454340593486e-03 + 8.534915875110577e-03 + 8.514426244844865e-03 + 8.493985333674233e-03 + 8.473593025909724e-03 + 8.453249206335058e-03 + 8.432953759374154e-03 + 8.412706569850796e-03 + 8.392507523503252e-03 + 8.372356505624580e-03 + 8.352253401838657e-03 + 8.332198098800467e-03 + 8.312190482450988e-03 + 8.292230438871008e-03 + 8.272317855399050e-03 + 8.252452619663047e-03 + 8.232634619050869e-03 + 8.212863740331295e-03 + 8.193139871755427e-03 + 8.173462902270600e-03 + 8.153832719956143e-03 + 8.134249213438031e-03 + 8.114712271802299e-03 + 8.095221784035302e-03 + 8.075777639824947e-03 + 8.056379729417138e-03 + 8.037027942938956e-03 + 8.017722170154111e-03 + 7.998462301028743e-03 + 7.979248227381455e-03 + 7.960079840401237e-03 + 7.940957030626293e-03 + 7.921879690329333e-03 + 7.902847711453821e-03 + 7.883860985421759e-03 + 7.864919405368889e-03 + 7.846022864037674e-03 + 7.827171253341911e-03 + 7.808364466777525e-03 + 7.789602397948123e-03 + 7.770884940051978e-03 + 7.752211987488857e-03 + 7.733583434567862e-03 + 7.714999174963997e-03 + 7.696459103766686e-03 + 7.677963116338556e-03 + 7.659511107448910e-03 + 7.641102971817726e-03 + 7.622738605046243e-03 + 7.604417904226960e-03 + 7.586140765207791e-03 + 7.567907083543369e-03 + 7.549716755813157e-03 + 7.531569679511053e-03 + 7.513465752109027e-03 + 7.495404870064185e-03 + 7.477386931039745e-03 + 7.459411833357052e-03 + 7.441479474804043e-03 + 7.423589753808636e-03 + 7.405742569108545e-03 + 7.387937818890154e-03 + 7.370175402616828e-03 + 7.352455220325825e-03 + 7.334777170378787e-03 + 7.317141152312192e-03 + 7.299547066866589e-03 + 7.281994814230038e-03 + 7.264484294760120e-03 + 7.247015409129196e-03 + 7.229588058070396e-03 + 7.212202142721502e-03 + 7.194857564639825e-03 + 7.177554225359851e-03 + 7.160292026920549e-03 + 7.143070871828701e-03 + 7.125890661781023e-03 + 7.108751299151369e-03 + 7.091652687463649e-03 + 7.074594729473165e-03 + 7.057577328092346e-03 + 7.040600386920140e-03 + 7.023663809440293e-03 + 7.006767499621119e-03 + 6.989911362283671e-03 + 6.973095301761098e-03 + 6.956319222246642e-03 + 6.939583028242014e-03 + 6.922886624933184e-03 + 6.906229917977133e-03 + 6.889612813237578e-03 + 6.873035215956658e-03 + 6.856497031627250e-03 + 6.839998167124653e-03 + 6.823538528849983e-03 + 6.807118022950776e-03 + 6.790736556102037e-03 + 6.774394036012678e-03 + 6.758090370503938e-03 + 6.741825465874382e-03 + 6.725599229831710e-03 + 6.709411571076730e-03 + 6.693262397262002e-03 + 6.677151616823099e-03 + 6.661079138883049e-03 + 6.645044871881905e-03 + 6.629048724424302e-03 + 6.613090605727208e-03 + 6.597170426169362e-03 + 6.581288095176429e-03 + 6.565443521393368e-03 + 6.549636616015259e-03 + 6.533867289690503e-03 + 6.518135451870410e-03 + 6.502441013826720e-03 + 6.486783886693610e-03 + 6.471163980906190e-03 + 6.455581208648475e-03 + 6.440035481784445e-03 + 6.424526710952946e-03 + 6.409054808194274e-03 + 6.393619686148648e-03 + 6.378221257389647e-03 + 6.362859434216829e-03 + 6.347534129405275e-03 + 6.332245256702231e-03 + 6.316992728926398e-03 + 6.301776458848883e-03 + 6.286596360249587e-03 + 6.271452347303485e-03 + 6.256344334335297e-03 + 6.241272235637497e-03 + 6.226235965289892e-03 + 6.211235437617355e-03 + 6.196270567881593e-03 + 6.181341271239764e-03 + 6.166447462747857e-03 + 6.151589057705613e-03 + 6.136765971896623e-03 + 6.121978121401951e-03 + 6.107225422158738e-03 + 6.092507790132517e-03 + 6.077825141615326e-03 + 6.063177393866219e-03 + 6.048564463915550e-03 + 6.033986268442907e-03 + 6.019442724444331e-03 + 6.004933749322879e-03 + 5.990459260846786e-03 + 5.976019176895193e-03 + 5.961613415583682e-03 + 5.947241895231883e-03 + 5.932904533953020e-03 + 5.918601250164555e-03 + 5.904331962789744e-03 + 5.890096590861083e-03 + 5.875895053571317e-03 + 5.861727270328322e-03 + 5.847593160694864e-03 + 5.833492644473149e-03 + 5.819425641715960e-03 + 5.805392072163253e-03 + 5.791391855962741e-03 + 5.777424914193254e-03 + 5.763491167389796e-03 + 5.749590536018355e-03 + 5.735722941127108e-03 + 5.721888304505554e-03 + 5.708086547766434e-03 + 5.694317591457392e-03 + 5.680581357894303e-03 + 5.666877769868901e-03 + 5.653206748498332e-03 + 5.639568216215936e-03 + 5.625962096156960e-03 + 5.612388310444156e-03 + 5.598846782244085e-03 + 5.585337435180374e-03 + 5.571860191464977e-03 + 5.558414974887664e-03 + 5.545001710146245e-03 + 5.531620319651646e-03 + 5.518270727342278e-03 + 5.504952858629092e-03 + 5.491666637149790e-03 + 5.478411987013346e-03 + 5.465188833301630e-03 + 5.451997101098349e-03 + 5.438836715460566e-03 + 5.425707601454353e-03 + 5.412609684284744e-03 + 5.399542889597323e-03 + 5.386507143481766e-03 + 5.373502371672819e-03 + 5.360528500347250e-03 + 5.347585456320476e-03 + 5.334673165238440e-03 + 5.321791553290573e-03 + 5.308940548233661e-03 + 5.296120077396591e-03 + 5.283330067535706e-03 + 5.270570445063373e-03 + 5.257841138170363e-03 + 5.245142075198895e-03 + 5.232473183108559e-03 + 5.219834389656078e-03 + 5.207225623450342e-03 + 5.194646813662877e-03 + 5.182097888019903e-03 + 5.169578774433769e-03 + 5.157089403379224e-03 + 5.144629703265777e-03 + 5.132199601938705e-03 + 5.119799030212023e-03 + 5.107427917986021e-03 + 5.095086194230444e-03 + 5.082773788422456e-03 + 5.070490630851877e-03 + 5.058236652191947e-03 + 5.046011782411770e-03 + 5.033815952050060e-03 + 5.021649092096963e-03 + 5.009511132708167e-03 + 4.997402004872952e-03 + 4.985321640554899e-03 + 4.973269971256597e-03 + 4.961246927915243e-03 + 4.949252441362114e-03 + 4.937286444284467e-03 + 4.925348869112448e-03 + 4.913439647407981e-03 + 4.901558711796497e-03 + 4.889705994683389e-03 + 4.877881427891544e-03 + 4.866084944974813e-03 + 4.854316479151838e-03 + 4.842575962313763e-03 + 4.830863328342665e-03 + 4.819178511323663e-03 + 4.807521444209243e-03 + 4.795892060902922e-03 + 4.784290295384500e-03 + 4.772716080911616e-03 + 4.761169351999607e-03 + 4.749650043687660e-03 + 4.738158090505544e-03 + 4.726693426328077e-03 + 4.715255985490762e-03 + 4.703845704177584e-03 + 4.692462517255530e-03 + 4.681106359266913e-03 + 4.669777166671382e-03 + 4.658474874679097e-03 + 4.647199418051047e-03 + 4.635950733693824e-03 + 4.624728757814554e-03 + 4.613533426035275e-03 + 4.602364675085555e-03 + 4.591222441193854e-03 + 4.580106660340010e-03 + 4.569017270133631e-03 + 4.557954207729684e-03 + 4.546917409606468e-03 + 4.535906813063030e-03 + 4.524922355662980e-03 + 4.513963975024341e-03 + 4.503031608847450e-03 + 4.492125194604706e-03 + 4.481244669721014e-03 + 4.470389973075004e-03 + 4.459561043403103e-03 + 4.448757818627942e-03 + 4.437980237157132e-03 + 4.427228237584914e-03 + 4.416501758569245e-03 + 4.405800739475310e-03 + 4.395125119625431e-03 + 4.384474837838549e-03 + 4.373849833628650e-03 + 4.363250046735974e-03 + 4.352675416676511e-03 + 4.342125883231542e-03 + 4.331601386396421e-03 + 4.321101866314548e-03 + 4.310627263408189e-03 + 4.300177518182486e-03 + 4.289752570999768e-03 + 4.279352362569397e-03 + 4.268976833692708e-03 + 4.258625924837488e-03 + 4.248299577436886e-03 + 4.237997733292803e-03 + 4.227720333115902e-03 + 4.217467318344088e-03 + 4.207238631130676e-03 + 4.197034213451204e-03 + 4.186854006892898e-03 + 4.176697952964437e-03 + 4.166565994071401e-03 + 4.156458073034852e-03 + 4.146374132669977e-03 + 4.136314114934178e-03 + 4.126277962231265e-03 + 4.116265617785051e-03 + 4.106277025130100e-03 + 4.096312127225507e-03 + 4.086370866498099e-03 + 4.076453186851077e-03 + 4.066559032318193e-03 + 4.056688346384167e-03 + 4.046841072375552e-03 + 4.037017154234894e-03 + 4.027216536753351e-03 + 4.017439163691562e-03 + 4.007684978984143e-03 + 3.997953927616382e-03 + 3.988245954341580e-03 + 3.978561003853811e-03 + 3.968899020987378e-03 + 3.959259950174110e-03 + 3.949643736363211e-03 + 3.940050325917084e-03 + 3.930479663940112e-03 + 3.920931695287086e-03 + 3.911406366153988e-03 + 3.901903622192779e-03 + 3.892423408886956e-03 + 3.882965672529350e-03 + 3.873530359308857e-03 + 3.864117415340676e-03 + 3.854726787040829e-03 + 3.845358421069152e-03 + 3.836012264203419e-03 + 3.826688263119290e-03 + 3.817386364639579e-03 + 3.808106515834866e-03 + 3.798848664119608e-03 + 3.789612756624806e-03 + 3.780398740246358e-03 + 3.771206562411011e-03 + 3.762036171140922e-03 + 3.752887514765301e-03 + 3.743760540740341e-03 + 3.734655196719529e-03 + 3.725571430980986e-03 + 3.716509192135922e-03 + 3.707468428387338e-03 + 3.698449087559120e-03 + 3.689451119263604e-03 + 3.680474472533827e-03 + 3.671519094850921e-03 + 3.662584935894309e-03 + 3.653671945297336e-03 + 3.644780071212910e-03 + 3.635909263417586e-03 + 3.627059471971036e-03 + 3.618230645951014e-03 + 3.609422734605362e-03 + 3.600635687799489e-03 + 3.591869456282116e-03 + 3.583123989955615e-03 + 3.574399238584414e-03 + 3.565695152845392e-03 + 3.557011682930304e-03 + 3.548348778903569e-03 + 3.539706391532652e-03 + 3.531084471778191e-03 + 3.522482970666699e-03 + 3.513901839239252e-03 + 3.505341028388093e-03 + 3.496800489111114e-03 + 3.488280173119797e-03 + 3.479780031892506e-03 + 3.471300016604386e-03 + 3.462840078578430e-03 + 3.454400170006921e-03 + 3.445980243580072e-03 + 3.437580250715228e-03 + 3.429200142992534e-03 + 3.420839872683964e-03 + 3.412499392748279e-03 + 3.404178655562702e-03 + 3.395877612913789e-03 + 3.387596218304602e-03 + 3.379334424898988e-03 + 3.371092184764359e-03 + 3.362869450661228e-03 + 3.354666175991870e-03 + 3.346482314543412e-03 + 3.338317819175880e-03 + 3.330172642972068e-03 + 3.322046740007612e-03 + 3.313940064235304e-03 + 3.305852569386344e-03 + 3.297784208976364e-03 + 3.289734936574093e-03 + 3.281704706272533e-03 + 3.273693473070924e-03 + 3.265701191257636e-03 + 3.257727814803984e-03 + 3.249773298074863e-03 + 3.241837595979994e-03 + 3.233920663596386e-03 + 3.226022455622204e-03 + 3.218142926555998e-03 + 3.210282031163023e-03 + 3.202439725215123e-03 + 3.194615964134223e-03 + 3.186810703067027e-03 + 3.179023897602838e-03 + 3.171255503398923e-03 + 3.163505475998486e-03 + 3.155773770652277e-03 + 3.148060343553685e-03 + 3.140365151430291e-03 + 3.132688149313277e-03 + 3.125029293443853e-03 + 3.117388541383308e-03 + 3.109765848736372e-03 + 3.102161171408776e-03 + 3.094574466373093e-03 + 3.087005690728782e-03 + 3.079454801280003e-03 + 3.071921754555924e-03 + 3.064406507880629e-03 + 3.056909018530570e-03 + 3.049429243338136e-03 + 3.041967139485151e-03 + 3.034522664377966e-03 + 3.027095775562892e-03 + 3.019686430816400e-03 + 3.012294588055786e-03 + 3.004920205212209e-03 + 2.997563239705405e-03 + 2.990223649173174e-03 + 2.982901392198357e-03 + 2.975596427311395e-03 + 2.968308712822513e-03 + 2.961038206776656e-03 + 2.953784867392937e-03 + 2.946548653201694e-03 + 2.939329523194637e-03 + 2.932127436582907e-03 + 2.924942352269057e-03 + 2.917774228121468e-03 + 2.910623023643702e-03 + 2.903488699056754e-03 + 2.896371212514376e-03 + 2.889270523304112e-03 + 2.882186591679052e-03 + 2.875119376658924e-03 + 2.868068837676741e-03 + 2.861034934776638e-03 + 2.854017627809473e-03 + 2.847016876513213e-03 + 2.840032640686938e-03 + 2.833064880681456e-03 + 2.826113557103426e-03 + 2.819178630449384e-03 + 2.812260060105674e-03 + 2.805357806481411e-03 + 2.798471831428214e-03 + 2.791602094948384e-03 + 2.784748557109701e-03 + 2.777911179108391e-03 + 2.771089922400815e-03 + 2.764284748007964e-03 + 2.757495616304825e-03 + 2.750722488782177e-03 + 2.743965327115693e-03 + 2.737224092409578e-03 + 2.730498746008289e-03 + 2.723789249648372e-03 + 2.717095565426717e-03 + 2.710417654358784e-03 + 2.703755477800617e-03 + 2.697108999073383e-03 + 2.690478179939920e-03 + 2.683862981660020e-03 + 2.677263366970269e-03 + 2.670679298051182e-03 + 2.664110736894467e-03 + 2.657557646411518e-03 + 2.651019989061974e-03 + 2.644497727126834e-03 + 2.637990823748049e-03 + 2.631499241776077e-03 + 2.625022943767310e-03 + 2.618561892619121e-03 + 2.612116051581085e-03 + 2.605685383984310e-03 + 2.599269852507916e-03 + 2.592869420565223e-03 + 2.586484052278204e-03 + 2.580113710814501e-03 + 2.573758359383719e-03 + 2.567417961609419e-03 + 2.561092481362380e-03 + 2.554781882413309e-03 + 2.548486128464411e-03 + 2.542205184036424e-03 + 2.535939013422343e-03 + 2.529687580238901e-03 + 2.523450848436006e-03 + 2.517228782352248e-03 + 2.511021346720505e-03 + 2.504828506444104e-03 + 2.498650225958320e-03 + 2.492486468967693e-03 + 2.486337200680032e-03 + 2.480202386472821e-03 + 2.474081990653096e-03 + 2.467975978460781e-03 + 2.461884315215007e-03 + 2.455806965243642e-03 + 2.449743893777428e-03 + 2.443695066608286e-03 + 2.437660449328877e-03 + 2.431640007119714e-03 + 2.425633705211946e-03 + 2.419641509634817e-03 + 2.413663385966202e-03 + 2.407699299632079e-03 + 2.401749216909934e-03 + 2.395813103777745e-03 + 2.389890925926915e-03 + 2.383982649399740e-03 + 2.378088240561300e-03 + 2.372207665865560e-03 + 2.366340891258303e-03 + 2.360487883037754e-03 + 2.354648608018378e-03 + 2.348823033118129e-03 + 2.343011124539103e-03 + 2.337212848054228e-03 + 2.331428171390765e-03 + 2.325657062040943e-03 + 2.319899486412222e-03 + 2.314155410784699e-03 + 2.308424802407836e-03 + 2.302707629600105e-03 + 2.297003858807791e-03 + 2.291313456815245e-03 + 2.285636391934661e-03 + 2.279972631361444e-03 + 2.274322142294874e-03 + 2.268684892803898e-03 + 2.263060850445441e-03 + 2.257449982675230e-03 + 2.251852257331842e-03 + 2.246267642469826e-03 + 2.240696106224612e-03 + 2.235137616698782e-03 + 2.229592141925271e-03 + 2.224059650030012e-03 + 2.218540109447705e-03 + 2.213033488566449e-03 + 2.207539755750870e-03 + 2.202058879448589e-03 + 2.196590827868759e-03 + 2.191135569406817e-03 + 2.185693073538250e-03 + 2.180263309295804e-03 + 2.174846245146934e-03 + 2.169441849486111e-03 + 2.164050091629877e-03 + 2.158670941358884e-03 + 2.153304367034930e-03 + 2.147950337590323e-03 + 2.142608822828710e-03 + 2.137279792340324e-03 + 2.131963215445541e-03 + 2.126659061301170e-03 + 2.121367299363035e-03 + 2.116087899310018e-03 + 2.110820830985273e-03 + 2.105566064252215e-03 + 2.100323568822542e-03 + 2.095093314356113e-03 + 2.089875271479949e-03 + 2.084669410319118e-03 + 2.079475699908646e-03 + 2.074294110902819e-03 + 2.069124614088778e-03 + 2.063967179294363e-03 + 2.058821776747180e-03 + 2.053688376991423e-03 + 2.048566950718572e-03 + 2.043457468582260e-03 + 2.038359901240009e-03 + 2.033274219398007e-03 + 2.028200393563254e-03 + 2.023138394473247e-03 + 2.018088193625467e-03 + 2.013049761808302e-03 + 2.008023069533293e-03 + 2.003008088023720e-03 + 1.998004788922133e-03 + 1.993013143739461e-03 + 1.988033123025423e-03 + 1.983064698401174e-03 + 1.978107841939004e-03 + 1.973162523959716e-03 + 1.968228716337500e-03 + 1.963306391971906e-03 + 1.958395521239848e-03 + 1.953496075620802e-03 + 1.948608028019931e-03 + 1.943731350228688e-03 + 1.938866013789267e-03 + 1.934011990485791e-03 + 1.929169252901841e-03 + 1.924337773155020e-03 + 1.919517522737516e-03 + 1.914708474346116e-03 + 1.909910600724645e-03 + 1.905123874118434e-03 + 1.900348266781407e-03 + 1.895583751238830e-03 + 1.890830300301618e-03 + 1.886087886140893e-03 + 1.881356481302734e-03 + 1.876636059328014e-03 + 1.871926593048255e-03 + 1.867228054886164e-03 + 1.862540417322874e-03 + 1.857863653843670e-03 + 1.853197738035545e-03 + 1.848542642643349e-03 + 1.843898340659710e-03 + 1.839264805482605e-03 + 1.834642010884087e-03 + 1.830029929675155e-03 + 1.825428534756660e-03 + 1.820837800826725e-03 + 1.816257700994342e-03 + 1.811688207883416e-03 + 1.807129296515363e-03 + 1.802580940478343e-03 + 1.798043112569654e-03 + 1.793515787775185e-03 + 1.788998939681262e-03 + 1.784492541016137e-03 + 1.779996567290557e-03 + 1.775510992946437e-03 + 1.771035790955467e-03 + 1.766570935188881e-03 + 1.762116400368900e-03 + 1.757672161650980e-03 + 1.753238193179788e-03 + 1.748814468721301e-03 + 1.744400962234815e-03 + 1.739997649147064e-03 + 1.735604504535336e-03 + 1.731221502449809e-03 + 1.726848617398671e-03 + 1.722485824273258e-03 + 1.718133098140551e-03 + 1.713790413411143e-03 + 1.709457744960287e-03 + 1.705135068710917e-03 + 1.700822359316501e-03 + 1.696519591326764e-03 + 1.692226740206531e-03 + 1.687943780998710e-03 + 1.683670689031842e-03 + 1.679407440586236e-03 + 1.675154010255336e-03 + 1.670910372590760e-03 + 1.666676504276520e-03 + 1.662452380680008e-03 + 1.658237976786625e-03 + 1.654033269138933e-03 + 1.649838233189823e-03 + 1.645652843894769e-03 + 1.641477077483747e-03 + 1.637310910181093e-03 + 1.633154317979306e-03 + 1.629007276710043e-03 + 1.624869761977525e-03 + 1.620741749539434e-03 + 1.616623216289868e-03 + 1.612514138626602e-03 + 1.608414492386588e-03 + 1.604324254066237e-03 + 1.600243399893093e-03 + 1.596171905775712e-03 + 1.592109748332882e-03 + 1.588056904380057e-03 + 1.584013350591343e-03 + 1.579979063015354e-03 + 1.575954018417919e-03 + 1.571938194458784e-03 + 1.567931567017785e-03 + 1.563934112240304e-03 + 1.559945807641685e-03 + 1.555966630779868e-03 + 1.551996558434039e-03 + 1.548035566441649e-03 + 1.544083632647983e-03 + 1.540140734902817e-03 + 1.536206849423688e-03 + 1.532281953055403e-03 + 1.528366023373284e-03 + 1.524459038476067e-03 + 1.520560975283225e-03 + 1.516671810636623e-03 + 1.512791522697568e-03 + 1.508920088807869e-03 + 1.505057486015793e-03 + 1.501203692209861e-03 + 1.497358685322736e-03 + 1.493522443062933e-03 + 1.489694942724099e-03 + 1.485876162194853e-03 + 1.482066079697174e-03 + 1.478264672890618e-03 + 1.474471919644568e-03 + 1.470687798121700e-03 + 1.466912286519041e-03 + 1.463145362594138e-03 + 1.459387003990816e-03 + 1.455637189563730e-03 + 1.451895897787254e-03 + 1.448163106500405e-03 + 1.444438793947980e-03 + 1.440722938760434e-03 + 1.437015519703072e-03 + 1.433316514691718e-03 + 1.429625901910583e-03 + 1.425943660193772e-03 + 1.422269768088744e-03 + 1.418604204318803e-03 + 1.414946947952337e-03 + 1.411297977567125e-03 + 1.407657271824714e-03 + 1.404024809794961e-03 + 1.400400570139807e-03 + 1.396784531434119e-03 + 1.393176672533590e-03 + 1.389576972970703e-03 + 1.385985412235932e-03 + 1.382401969107074e-03 + 1.378826622443783e-03 + 1.375259351219489e-03 + 1.371700134514839e-03 + 1.368148952079336e-03 + 1.364605783757036e-03 + 1.361070608632290e-03 + 1.357543405835987e-03 + 1.354024154621594e-03 + 1.350512834317403e-03 + 1.347009424934256e-03 + 1.343513906652181e-03 + 1.340026258589547e-03 + 1.336546459739890e-03 + 1.333074489680093e-03 + 1.329610329681042e-03 + 1.326153959375566e-03 + 1.322705357081586e-03 + 1.319264503327096e-03 + 1.315831378649060e-03 + 1.312405962942001e-03 + 1.308988235813027e-03 + 1.305578177302038e-03 + 1.302175767936687e-03 + 1.298780987783750e-03 + 1.295393816813521e-03 + 1.292014235092867e-03 + 1.288642222828844e-03 + 1.285277760581296e-03 + 1.281920829182064e-03 + 1.278571408463430e-03 + 1.275229478684235e-03 + 1.271895021211065e-03 + 1.268568016022571e-03 + 1.265248443161927e-03 + 1.261936283866222e-03 + 1.258631518851812e-03 + 1.255334128626978e-03 + 1.252044093890807e-03 + 1.248761395151665e-03 + 1.245486013113075e-03 + 1.242217929129610e-03 + 1.238957124307338e-03 + 1.235703579418827e-03 + 1.232457274959363e-03 + 1.229218191838193e-03 + 1.225986311430220e-03 + 1.222761615473843e-03 + 1.219544084856006e-03 + 1.216333699988417e-03 + 1.213130441964228e-03 + 1.209934292565758e-03 + 1.206745233676102e-03 + 1.203563245963205e-03 + 1.200388310525061e-03 + 1.197220409053557e-03 + 1.194059523052293e-03 + 1.190905633902454e-03 + 1.187758723052301e-03 + 1.184618772531461e-03 + 1.181485763720917e-03 + 1.178359677471923e-03 + 1.175240496495629e-03 + 1.172128202790389e-03 + 1.169022777016151e-03 + 1.165924201427151e-03 + 1.162832457974330e-03 + 1.159747527667428e-03 + 1.156669393342115e-03 + 1.153598037513975e-03 + 1.150533441195656e-03 + 1.147475586343000e-03 + 1.144424455192698e-03 + 1.141380029693999e-03 + 1.138342292070108e-03 + 1.135311224784675e-03 + 1.132286810371483e-03 + 1.129269030382949e-03 + 1.126257866687504e-03 + 1.123253302806332e-03 + 1.120255320585528e-03 + 1.117263901594027e-03 + 1.114279029333705e-03 + 1.111300685926414e-03 + 1.108328853214485e-03 + 1.105363515126287e-03 + 1.102404653695880e-03 + 1.099452250276090e-03 + 1.096506289065756e-03 + 1.093566752790314e-03 + 1.090633622975802e-03 + 1.087706882683815e-03 + 1.084786514992603e-03 + 1.081872502714538e-03 + 1.078964828755093e-03 + 1.076063476054719e-03 + 1.073168427526746e-03 + 1.070279665938792e-03 + 1.067397174442816e-03 + 1.064520936417689e-03 + 1.061650934087830e-03 + 1.058787150577005e-03 + 1.055929570192933e-03 + 1.053078175257412e-03 + 1.050232948596978e-03 + 1.047393874491941e-03 + 1.044560935952646e-03 + 1.041734115621369e-03 + 1.038913396581877e-03 + 1.036098763274602e-03 + 1.033290199394467e-03 + 1.030487686748966e-03 + 1.027691209748195e-03 + 1.024900752824401e-03 + 1.022116298137994e-03 + 1.019337829638554e-03 + 1.016565331581354e-03 + 1.013798786681050e-03 + 1.011038178744547e-03 + 1.008283492069452e-03 + 1.005534710312413e-03 + 1.002791817167788e-03 + 1.000054796401326e-03 + 9.973236317525795e-04 + 9.945983071579347e-04 + 9.918788066535795e-04 + 9.891651141399331e-04 + 9.864572135795289e-04 + 9.837550890187182e-04 + 9.810587245440681e-04 + 9.783681042165289e-04 + 9.756832121036981e-04 + 9.730040324093254e-04 + 9.703305493295432e-04 + 9.676627470403841e-04 + 9.650006098016114e-04 + 9.623441219373007e-04 + 9.596932677964791e-04 + 9.570480316324495e-04 + 9.544083978205768e-04 + 9.517743508934125e-04 + 9.491458752396962e-04 + 9.465229553012878e-04 + 9.439055756501852e-04 + 9.412937207895038e-04 + 9.386873752809525e-04 + 9.360865238076440e-04 + 9.334911509791107e-04 + 9.309012414140627e-04 + 9.283167798171848e-04 + 9.257377509839119e-04 + 9.231641396993918e-04 + 9.205959306774516e-04 + 9.180331088080401e-04 + 9.154756590138127e-04 + 9.129235660962607e-04 + 9.103768149701878e-04 + 9.078353906321772e-04 + 9.052992780955343e-04 + 9.027684623946166e-04 + 9.002429285800444e-04 + 8.977226617159664e-04 + 8.952076469091944e-04 + 8.926978693026045e-04 + 8.901933140640126e-04 + 8.876939664445818e-04 + 8.851998117353022e-04 + 8.827108351548252e-04 + 8.802270219825557e-04 + 8.777483575705740e-04 + 8.752748272927118e-04 + 8.728064165680979e-04 + 8.703431108522175e-04 + 8.678848955854838e-04 + 8.654317562117358e-04 + 8.629836782258149e-04 + 8.605406473168484e-04 + 8.581026490766350e-04 + 8.556696689660546e-04 + 8.532416927295966e-04 + 8.508187061075220e-04 + 8.484006947265324e-04 + 8.459876443379812e-04 + 8.435795407180884e-04 + 8.411763696276702e-04 + 8.387781169670006e-04 + 8.363847686436173e-04 + 8.339963104952486e-04 + 8.316127284703911e-04 + 8.292340085393665e-04 + 8.268601366269382e-04 + 8.244910987818749e-04 + 8.221268810991789e-04 + 8.197674696351961e-04 + 8.174128504795555e-04 + 8.150630097863373e-04 + 8.127179337987174e-04 + 8.103776086785577e-04 + 8.080420206116735e-04 + 8.057111559859151e-04 + 8.033850010442538e-04 + 8.010635420033148e-04 + 7.987467653572807e-04 + 7.964346575211490e-04 + 7.941272048473775e-04 + 7.918243938145987e-04 + 7.895262109139402e-04 + 7.872326426395918e-04 + 7.849436755404454e-04 + 7.826592961986925e-04 + 7.803794912312032e-04 + 7.781042473133076e-04 + 7.758335511109105e-04 + 7.735673892815593e-04 + 7.713057485643111e-04 + 7.690486157536814e-04 + 7.667959776727836e-04 + 7.645478211004869e-04 + 7.623041328912646e-04 + 7.600649000053854e-04 + 7.578301093264215e-04 + 7.555997477583347e-04 + 7.533738022910566e-04 + 7.511522599897612e-04 + 7.489351079282785e-04 + 7.467223331578882e-04 + 7.445139227962291e-04 + 7.423098639775247e-04 + 7.401101438263767e-04 + 7.379147496119391e-04 + 7.357236686066337e-04 + 7.335368879604144e-04 + 7.313543950177981e-04 + 7.291761771981462e-04 + 7.270022218267318e-04 + 7.248325162821272e-04 + 7.226670479949025e-04 + 7.205058044241288e-04 + 7.183487730730944e-04 + 7.161959414766152e-04 + 7.140472971809699e-04 + 7.119028277561113e-04 + 7.097625208231147e-04 + 7.076263641063239e-04 + 7.054943452576004e-04 + 7.033664519218169e-04 + 7.012426719956601e-04 + 6.991229932510109e-04 + 6.970074033540157e-04 + 6.948958902400331e-04 + 6.927884418689321e-04 + 6.906850461485944e-04 + 6.885856909689247e-04 + 6.864903643067344e-04 + 6.843990542306164e-04 + 6.823117487354689e-04 + 6.802284359113009e-04 + 6.781491039842488e-04 + 6.760737410664455e-04 + 6.740023352773578e-04 + 6.719348748282754e-04 + 6.698713480434448e-04 + 6.678117432465053e-04 + 6.657560487034911e-04 + 6.637042527655789e-04 + 6.616563438432147e-04 + 6.596123103782944e-04 + 6.575721408025738e-04 + 6.555358236048545e-04 + 6.535033473936704e-04 + 6.514747007198682e-04 + 6.494498721244171e-04 + 6.474288502266283e-04 + 6.454116237722280e-04 + 6.433981815196293e-04 + 6.413885120963034e-04 + 6.393826043225120e-04 + 6.373804471016686e-04 + 6.353820291728463e-04 + 6.333873394523912e-04 + 6.313963669651093e-04 + 6.294091005879305e-04 + 6.274255292885601e-04 + 6.254456421348147e-04 + 6.234694281911996e-04 + 6.214968766042923e-04 + 6.195279765738893e-04 + 6.175627172048796e-04 + 6.156010877068991e-04 + 6.136430774102346e-04 + 6.116886755862946e-04 + 6.097378715435904e-04 + 6.077906546697107e-04 + 6.058470144286753e-04 + 6.039069402835228e-04 + 6.019704216802507e-04 + 6.000374481409778e-04 + 5.981080092530985e-04 + 5.961820946588096e-04 + 5.942596940083503e-04 + 5.923407969721301e-04 + 5.904253932616448e-04 + 5.885134726736782e-04 + 5.866050250202793e-04 + 5.847000400980857e-04 + 5.827985078791194e-04 + 5.809004183470366e-04 + 5.790057613579966e-04 + 5.771145269606196e-04 + 5.752267052829598e-04 + 5.733422863841403e-04 + 5.714612604000550e-04 + 5.695836175305099e-04 + 5.677093480037018e-04 + 5.658384420678564e-04 + 5.639708900266142e-04 + 5.621066823022896e-04 + 5.602458092869138e-04 + 5.583882613744714e-04 + 5.565340290827777e-04 + 5.546831029664671e-04 + 5.528354736013446e-04 + 5.509911316015094e-04 + 5.491500676402182e-04 + 5.473122724461832e-04 + 5.454777367810608e-04 + 5.436464514412940e-04 + 5.418184072613321e-04 + 5.399935951226492e-04 + 5.381720060069473e-04 + 5.363536309736959e-04 + 5.345384609776805e-04 + 5.327264870731968e-04 + 5.309177004752346e-04 + 5.291120923593077e-04 + 5.273096539494221e-04 + 5.255103765544823e-04 + 5.237142514407170e-04 + 5.219212699733492e-04 + 5.201314236865307e-04 + 5.183447040146093e-04 + 5.165611024246747e-04 + 5.147806105331874e-04 + 5.130032200114061e-04 + 5.112289225530487e-04 + 5.094577098620987e-04 + 5.076895736854020e-04 + 5.059245058583464e-04 + 5.041624983517820e-04 + 5.024035430839573e-04 + 5.006476319990773e-04 + 4.988947572035529e-04 + 4.971449107942239e-04 + 4.953980848818115e-04 + 4.936542716805855e-04 + 4.919134634956966e-04 + 4.901756526846954e-04 + 4.884408316006080e-04 + 4.867089926403434e-04 + 4.849801282731475e-04 + 4.832542310892493e-04 + 4.815312937309208e-04 + 4.798113088560132e-04 + 4.780942690954599e-04 + 4.763801672259719e-04 + 4.746689961731605e-04 + 4.729607488395965e-04 + 4.712554181333483e-04 + 4.695529970142063e-04 + 4.678534786182833e-04 + 4.661568561056742e-04 + 4.644631226216267e-04 + 4.627722714285577e-04 + 4.610842958399921e-04 + 4.593991892076899e-04 + 4.577169450300335e-04 + 4.560375568336446e-04 + 4.543610181249096e-04 + 4.526873225594637e-04 + 4.510164638467393e-04 + 4.493484356950898e-04 + 4.476832319569833e-04 + 4.460208465382815e-04 + 4.443612733350173e-04 + 4.427045064285867e-04 + 4.410505399510805e-04 + 4.393993679504339e-04 + 4.377509846774214e-04 + 4.361053844834223e-04 + 4.344625616662297e-04 + 4.328225106365193e-04 + 4.311852259097922e-04 + 4.295507020701359e-04 + 4.279189337521271e-04 + 4.262899156467061e-04 + 4.246636425301464e-04 + 4.230401092565931e-04 + 4.214193107478168e-04 + 4.198012419839599e-04 + 4.181858979868060e-04 + 4.165732738692198e-04 + 4.149633649793705e-04 + 4.133561665739344e-04 + 4.117516738453971e-04 + 4.101498823326724e-04 + 4.085507876181731e-04 + 4.069543852399522e-04 + 4.053606707914893e-04 + 4.037696400086752e-04 + 4.021812887746215e-04 + 4.005956129436248e-04 + 3.990126084760660e-04 + 3.974322714846641e-04 + 3.958545980293214e-04 + 3.942795842513983e-04 + 3.927072264688036e-04 + 3.911375211195356e-04 + 3.895704646516968e-04 + 3.880060534869329e-04 + 3.864442842922655e-04 + 3.848851538066537e-04 + 3.833286587063809e-04 + 3.817747958651508e-04 + 3.802235622593628e-04 + 3.786749548688228e-04 + 3.771289708205180e-04 + 3.755856073392733e-04 + 3.740448616816441e-04 + 3.725067311649692e-04 + 3.709712132043737e-04 + 3.694383053790672e-04 + 3.679080053579325e-04 + 3.663803108503057e-04 + 3.648552195606523e-04 + 3.633327293646475e-04 + 3.618128382932607e-04 + 3.602955444344858e-04 + 3.587808459078391e-04 + 3.572687408998931e-04 + 3.557592277792442e-04 + 3.542523049927096e-04 + 3.527479710408145e-04 + 3.512462245019904e-04 + 3.497470640500036e-04 + 3.482504884770882e-04 + 3.467564967437580e-04 + 3.452650877985240e-04 + 3.437762605764859e-04 + 3.422900143250168e-04 + 3.408063483640538e-04 + 3.393252619896345e-04 + 3.378467546103840e-04 + 3.363708257653936e-04 + 3.348974751341996e-04 + 3.334267024660963e-04 + 3.319585075646510e-04 + 3.304928903038992e-04 + 3.290298507212495e-04 + 3.275693889604049e-04 + 3.261115052402690e-04 + 3.246561999078441e-04 + 3.232034733603981e-04 + 3.217533259984899e-04 + 3.203057585048498e-04 + 3.188607716794152e-04 + 3.174183662346357e-04 + 3.159785430822741e-04 + 3.145413032833238e-04 + 3.131066479369465e-04 + 3.116745782136557e-04 + 3.102450954058189e-04 + 3.088182010197684e-04 + 3.073938965650610e-04 + 3.059721835802734e-04 + 3.045530637916020e-04 + 3.031365390386899e-04 + 3.017226112552691e-04 + 3.003112824793533e-04 + 2.989025548234045e-04 + 2.974964304955006e-04 + 2.960929118913988e-04 + 2.946920014422941e-04 + 2.932937016150965e-04 + 2.918980151023185e-04 + 2.905049446767149e-04 + 2.891144931550728e-04 + 2.877266634923031e-04 + 2.863414587568181e-04 + 2.849588821248430e-04 + 2.835789368717610e-04 + 2.822016263526234e-04 + 2.808269540128114e-04 + 2.794549234525530e-04 + 2.780855383858511e-04 + 2.767188026160350e-04 + 2.753547199733251e-04 + 2.739932944362576e-04 + 2.726345302253411e-04 + 2.712784314751994e-04 + 2.699250024118205e-04 + 2.685742475595017e-04 + 2.672261714415124e-04 + 2.658807786371782e-04 + 2.645380739000219e-04 + 2.631980619957597e-04 + 2.618607478073471e-04 + 2.605261365239288e-04 + 2.591942332540738e-04 + 2.578650431168888e-04 + 2.565385715181067e-04 + 2.552148239188000e-04 + 2.538938058269625e-04 + 2.525755228940477e-04 + 2.512599808919393e-04 + 2.499471856899045e-04 + 2.486371432244064e-04 + 2.473298595107682e-04 + 2.460253406646765e-04 + 2.447235929605613e-04 + 2.434246227773826e-04 + 2.421284365723855e-04 + 2.408350408491505e-04 + 2.395444422583646e-04 + 2.382566475978551e-04 + 2.369716636126905e-04 + 2.356894972066169e-04 + 2.344101555067014e-04 + 2.331336455922197e-04 + 2.318599746393059e-04 + 2.305891500038487e-04 + 2.293211790903458e-04 + 2.280560693749351e-04 + 2.267938284406659e-04 + 2.255344639796373e-04 + 2.242779837481179e-04 + 2.230243955584571e-04 + 2.217737074088738e-04 + 2.205259273750273e-04 + 2.192810635194828e-04 + 2.180391240377155e-04 + 2.168001172473318e-04 + 2.155640515683406e-04 + 2.143309354202995e-04 + 2.131007772856537e-04 + 2.118735858306198e-04 + 2.106493698084787e-04 + 2.094281380089542e-04 + 2.082098992208740e-04 + 2.069946624015073e-04 + 2.057824366286796e-04 + 2.045732309577213e-04 + 2.033670545521807e-04 + 2.021639166762670e-04 + 2.009638266139778e-04 + 1.997667937615743e-04 + 1.985728276099416e-04 + 1.973819376249420e-04 + 1.961941334186818e-04 + 1.950094247288422e-04 + 1.938278211445808e-04 + 1.926493324216112e-04 + 1.914739685443153e-04 + 1.903017394244089e-04 + 1.891326549660665e-04 + 1.879667251315557e-04 + 1.868039600691931e-04 + 1.856443699312781e-04 + 1.844879648170397e-04 + 1.833347550402995e-04 + 1.821847509305592e-04 + 1.810379627269367e-04 + 1.798944008330572e-04 + 1.787540757117569e-04 + 1.776169978023503e-04 + 1.764831776083264e-04 + 1.753526257075039e-04 + 1.742253527510645e-04 + 1.731013693254543e-04 + 1.719806860311682e-04 + 1.708633135911149e-04 + 1.697492627671219e-04 + 1.686385443331759e-04 + 1.675311690584120e-04 + 1.664271477052953e-04 + 1.653264910845736e-04 + 1.642292101438652e-04 + 1.631353157524277e-04 + 1.620448187436031e-04 + 1.609577300754615e-04 + 1.598740606888992e-04 + 1.587938214812250e-04 + 1.577170233258566e-04 + 1.566436772168694e-04 + 1.555737942159133e-04 + 1.545073851968179e-04 + 1.534444610998845e-04 + 1.523850329588589e-04 + 1.513291117056277e-04 + 1.502767082718022e-04 + 1.492278336091406e-04 + 1.481824986061289e-04 + 1.471407142013266e-04 + 1.461024913960903e-04 + 1.450678410475480e-04 + 1.440367739871709e-04 + 1.430093010797408e-04 + 1.419854331666308e-04 + 1.409651810501559e-04 + 1.399485554884026e-04 + 1.389355672434459e-04 + 1.379262270311977e-04 + 1.369205454852166e-04 + 1.359185332657421e-04 + 1.349202010239166e-04 + 1.339255593445051e-04 + 1.329346186642912e-04 + 1.319473893926901e-04 + 1.309638820305585e-04 + 1.299841069283569e-04 + 1.290080743627276e-04 + 1.280357946577360e-04 + 1.270672779908064e-04 + 1.261025344295187e-04 + 1.251415740258344e-04 + 1.241844068414831e-04 + 1.232310428585276e-04 + 1.222814917974582e-04 + 1.213357634573326e-04 + 1.203938676644921e-04 + 1.194558139769228e-04 + 1.185216119071049e-04 + 1.175912709437735e-04 + 1.166648004395201e-04 + 1.157422096820540e-04 + 1.148235078941047e-04 + 1.139087041565015e-04 + 1.129978074560730e-04 + 1.120908266963163e-04 + 1.111877706801771e-04 + 1.102886481165339e-04 + 1.093934676008822e-04 + 1.085022375478793e-04 + 1.076149663238430e-04 + 1.067316622735248e-04 + 1.058523335072715e-04 + 1.049769880021785e-04 + 1.041056336506420e-04 + 1.032382782134568e-04 + 1.023749293560659e-04 + 1.015155946454073e-04 + 1.006602814254268e-04 + 9.980899691604087e-05 + 9.896174827822380e-05 + 9.811854249648769e-05 + 9.727938640362722e-05 + 9.644428669167931e-05 + 9.561324990949941e-05 + 9.478628247235907e-05 + 9.396339064407664e-05 + 9.314458052650697e-05 + 9.232985807344924e-05 + 9.151922908266137e-05 + 9.071269919463392e-05 + 8.991027389908417e-05 + 8.911195851702552e-05 + 8.831775819982511e-05 + 8.752767793866873e-05 + 8.674172256023528e-05 + 8.595989672073575e-05 + 8.518220490590348e-05 + 8.440865141920385e-05 + 8.363924039733809e-05 + 8.287397580722622e-05 + 8.211286142104977e-05 + 8.135590084051729e-05 + 8.060309749193613e-05 + 7.985445459658365e-05 + 7.910997520302950e-05 + 7.836966218298747e-05 + 7.763351820320998e-05 + 7.690154574559998e-05 + 7.617374709914362e-05 + 7.545012436145964e-05 + 7.473067944430294e-05 + 7.401541405207780e-05 + 7.330432968888297e-05 + 7.259742767376570e-05 + 7.189470911942744e-05 + 7.119617492698978e-05 + 7.050182580949816e-05 + 6.981166227552030e-05 + 6.912568461899398e-05 + 6.844389294104750e-05 + 6.776628713300132e-05 + 6.709286687130013e-05 + 6.642363163388969e-05 + 6.575858067871575e-05 + 6.509771305493562e-05 + 6.444102761503343e-05 + 6.378852298738557e-05 + 6.314019758583242e-05 + 6.249604962295056e-05 + 6.185607708979005e-05 + 6.122027775903875e-05 + 6.058864919749181e-05 + 5.996118875684596e-05 + 5.933789356597989e-05 + 5.871876053888907e-05 + 5.810378637807827e-05 + 5.749296757228591e-05 + 5.688630039241354e-05 + 5.628378087841946e-05 + 5.568540486517338e-05 + 5.509116797959273e-05 + 5.450106561933422e-05 + 5.391509296529475e-05 + 5.333324497665832e-05 + 5.275551640753726e-05 + 5.218190179953343e-05 + 5.161239545977182e-05 + 5.104699148146081e-05 + 5.048568375913861e-05 + 4.992846596763329e-05 + 4.937533154817934e-05 + 4.882627374147808e-05 + 4.828128557792042e-05 + 4.774035986717692e-05 + 4.720348921279551e-05 + 4.667066599018748e-05 + 4.614188237688400e-05 + 4.561713035194944e-05 + 4.509640165438987e-05 + 4.457968783032909e-05 + 4.406698023190481e-05 + 4.355826996891768e-05 + 4.305354796420506e-05 + 4.255280495560636e-05 + 4.205603144616347e-05 + 4.156321774032957e-05 + 4.107435395613752e-05 + 4.058942999665175e-05 + 4.010843556869507e-05 + 3.963136019085871e-05 + 3.915819316952545e-05 + 3.868892361719641e-05 + 3.822354046226270e-05 + 3.776203244031561e-05 + 3.730438809005640e-05 + 3.685059575689182e-05 + 3.640064360230198e-05 + 3.595451960373741e-05 + 3.551221155134442e-05 + 3.507370705450421e-05 + 3.463899354241650e-05 + 3.420805825588243e-05 + 3.378088825986720e-05 + 3.335747045272196e-05 + 3.293779155463552e-05 + 3.252183811026268e-05 + 3.210959649877579e-05 + 3.170105292073684e-05 + 3.129619341367949e-05 + 3.089500386055728e-05 + 3.049746997239612e-05 + 3.010357730585059e-05 + 2.971331126487755e-05 + 2.932665707619367e-05 + 2.894359982344077e-05 + 2.856412445132613e-05 + 2.818821573877814e-05 + 2.781585831987375e-05 + 2.744703669454755e-05 + 2.708173520948728e-05 + 2.671993807124836e-05 + 2.636162935767626e-05 + 2.600679300301263e-05 + 2.565541280257304e-05 + 2.530747242805460e-05 + 2.496295542635910e-05 + 2.462184521206604e-05 + 2.428412507785163e-05 + 2.394977819771233e-05 + 2.361878762181457e-05 + 2.329113628448998e-05 + 2.296680701293541e-05 + 2.264578251757474e-05 + 2.232804539557172e-05 + 2.201357814530585e-05 + 2.170236315904943e-05 + 2.139438272306276e-05 + 2.108961903561866e-05 + 2.078805419745760e-05 + 2.048967020582218e-05 + 2.019444897050880e-05 + 1.990237231614296e-05 + 1.961342197777572e-05 + 1.932757961462368e-05 + 1.904482680353188e-05 + 1.876514502948172e-05 + 1.848851571515060e-05 + 1.821492021640795e-05 + 1.794433980831370e-05 + 1.767675569461099e-05 + 1.741214902258527e-05 + 1.715050088166273e-05 + 1.689179228451716e-05 + 1.663600419203502e-05 + 1.638311752659296e-05 + 1.613311314360082e-05 + 1.588597184706167e-05 + 1.564167440067926e-05 + 1.540020151829502e-05 + 1.516153387453479e-05 + 1.492565211244357e-05 + 1.469253682958783e-05 + 1.446216858599219e-05 + 1.423452791421707e-05 + 1.400959531801727e-05 + 1.378735127470914e-05 + 1.356777623611474e-05 + 1.335085063337062e-05 + 1.313655487876277e-05 + 1.292486936494610e-05 + 1.271577446639333e-05 + 1.250925054517824e-05 + 1.230527796605363e-05 + 1.210383708165599e-05 + 1.190490823144681e-05 + 1.170847175649016e-05 + 1.151450799717159e-05 + 1.132299729345123e-05 + 1.113391999104486e-05 + 1.094725644586371e-05 + 1.076298702423590e-05 + 1.058109209097755e-05 + 1.040155202830912e-05 + 1.022434724511555e-05 + 1.004945815519835e-05 + 9.876865191434875e-06 + 9.706548817576976e-06 + 9.538489515829050e-06 + 9.372667791395497e-06 + 9.209064181113714e-06 + 9.047659251528417e-06 + 8.888433598428113e-06 + 8.731367852817854e-06 + 8.576442682615395e-06 + 8.423638791088146e-06 + 8.272936922653283e-06 + 8.124317863654203e-06 + 7.977762440936675e-06 + 7.833251528895281e-06 + 7.690766049713759e-06 + 7.550286971453687e-06 + 7.411795314787993e-06 + 7.275272152381047e-06 + 7.140698608042407e-06 + 7.008055865069554e-06 + 6.877325162999093e-06 + 6.748487797069182e-06 + 6.621525126924672e-06 + 6.496418573295794e-06 + 6.373149617974847e-06 + 6.251699810845691e-06 + 6.132050767139283e-06 + 6.014184168887862e-06 + 5.898081770597224e-06 + 5.783725394973654e-06 + 5.671096936050662e-06 + 5.560178365641361e-06 + 5.450951726966341e-06 + 5.343399138917566e-06 + 5.237502802602254e-06 + 5.133244993336976e-06 + 5.030608065950253e-06 + 4.929574461382145e-06 + 4.830126698086031e-06 + 4.732247378331277e-06 + 4.635919192753656e-06 + 4.541124912789582e-06 + 4.447847398958468e-06 + 4.356069602328335e-06 + 4.265774557056776e-06 + 4.176945389932598e-06 + 4.089565320281935e-06 + 4.003617653697645e-06 + 3.919085793399028e-06 + 3.835953236362346e-06 + 3.754203567594348e-06 + 3.673820472678765e-06 + 3.594787733829004e-06 + 3.517089224074456e-06 + 3.440708918621393e-06 + 3.365630891050476e-06 + 3.291839308866544e-06 + 3.219318444550688e-06 + 3.148052669614368e-06 + 3.078026451876596e-06 + 3.009224366838337e-06 + 2.941631088840265e-06 + 2.875231390541817e-06 + 2.810010156134118e-06 + 2.745952369256776e-06 + 2.683043113446972e-06 + 2.621267584374269e-06 + 2.560611078236376e-06 + 2.501058994098514e-06 + 2.442596843868032e-06 + 2.385210240033010e-06 + 2.328884899906223e-06 + 2.273606655048426e-06 + 2.219361438179688e-06 + 2.166135288678882e-06 + 2.113914360085187e-06 + 2.062684907096663e-06 + 2.012433292648363e-06 + 1.963145994708785e-06 + 1.914809593193956e-06 + 1.867410777738679e-06 + 1.820936351687259e-06 + 1.775373220609589e-06 + 1.730708401732302e-06 + 1.686929024947410e-06 + 1.644022323067757e-06 + 1.601975642837270e-06 + 1.560776441656341e-06 + 1.520412279298016e-06 + 1.480870830315665e-06 + 1.442139880698395e-06 + 1.404207319625165e-06 + 1.367061149777226e-06 + 1.330689483155573e-06 + 1.295080535963615e-06 + 1.260222640873472e-06 + 1.226104237141460e-06 + 1.192713867093549e-06 + 1.160040189500492e-06 + 1.128071969424555e-06 + 1.096798076008267e-06 + 1.066207493417804e-06 + 1.036289310659725e-06 + 1.007032721493895e-06 + 9.784270338592895e-07 + 9.504616588874799e-07 + 9.231261128777845e-07 + 8.964100256766087e-07 + 8.703031286825232e-07 + 8.447952585150839e-07 + 8.198763641874936e-07 + 7.955364948286083e-07 + 7.717658049346632e-07 + 7.485545598914059e-07 + 7.258931238786546e-07 + 7.037719665410901e-07 + 6.821816664988581e-07 + 6.611128998791421e-07 + 6.405564483055948e-07 + 6.205032003278225e-07 + 6.009441408121614e-07 + 5.818703600152187e-07 + 5.632730528626383e-07 + 5.451435094097432e-07 + 5.274731247677268e-07 + 5.102533965000488e-07 + 4.934759162480692e-07 + 4.771323800991179e-07 + 4.612145841662162e-07 + 4.457144176881476e-07 + 4.306238737382497e-07 + 4.159350428538716e-07 + 4.016401077051372e-07 + 3.877313539402903e-07 + 3.742011622647174e-07 + 3.610420046499709e-07 + 3.482464547968944e-07 + 3.358071790150475e-07 + 3.237169340794661e-07 + 3.119685770955318e-07 + 3.005550554375413e-07 + 2.894694062090586e-07 + 2.787047650882795e-07 + 2.682543557659438e-07 + 2.581114909968296e-07 + 2.482695801165890e-07 + 2.387221182727572e-07 + 2.294626890008751e-07 + 2.204849703818711e-07 + 2.117827241548630e-07 + 2.033497996067267e-07 + 1.951801384624956e-07 + 1.872677641420447e-07 + 1.796067867093452e-07 + 1.721914062527642e-07 + 1.650159027896018e-07 + 1.580746421942365e-07 + 1.513620776690125e-07 + 1.448727406655565e-07 + 1.386012477684331e-07 + 1.325423000867771e-07 + 1.266906752868051e-07 + 1.210412352836648e-07 + 1.155889239131470e-07 + 1.103287600176973e-07 + 1.052558455547364e-07 + 1.003653617115032e-07 + 9.565256321109978e-08 + 9.111278671292873e-08 + 8.674144556415159e-08 + 8.253402527034383e-08 + 7.848609177536523e-08 + 7.459328520671134e-08 + 7.085131661573615e-08 + 6.725597593242166e-08 + 6.380312478868793e-08 + 6.048869454868003e-08 + 5.730869376312298e-08 + 5.425920030057914e-08 + 5.133636064443935e-08 + 4.853639660958214e-08 + 4.585559704969457e-08 + 4.329031836991616e-08 + 4.083699031045398e-08 + 3.849210751108346e-08 + 3.625223113812888e-08 + 3.411399355038575e-08 + 3.207408998824199e-08 + 3.012928121511996e-08 + 2.827639696078167e-08 + 2.651232793166280e-08 + 2.483402934338396e-08 + 2.323852311474514e-08 + 2.172289034680298e-08 + 2.028427559044146e-08 + 1.891988778877689e-08 + 1.762699339728036e-08 + 1.640292125402531e-08 + 1.524506224991720e-08 + 1.415086320949184e-08 + 1.311783222446413e-08 + 1.214353712508316e-08 + 1.122560019257377e-08 + 1.036170378687137e-08 + 9.549587722603005e-09 + 8.787044877843281e-09 + 8.071926961605364e-09 + 7.402140903161946e-09 + 6.775645388472587e-09 + 6.190456604129221e-09 + 5.644643792323680e-09 + 5.136326726146161e-09 + 4.663681262833891e-09 + 4.224934232596794e-09 + 3.818361845837701e-09 + 3.442294891302550e-09 + 3.095113141246544e-09 + 2.775244665814773e-09 + 2.481170514027403e-09 + 2.211418834557044e-09 + 1.964565051498559e-09 + 1.739235878927056e-09 + 1.534103359980556e-09 + 1.347885831336700e-09 + 1.179351163642234e-09 + 1.027310894648576e-09 + 8.906218977827446e-10 + 7.681887799049897e-10 + 6.589582548472836e-10 + 5.619214238374888e-10 + 4.761152985830568e-10 + 4.006175343477256e-10 + 3.345492227248809e-10 + 2.770755362128679e-10 + 2.274009179016229e-10 + 1.847722840116674e-10 + 1.484788129161787e-10 + 1.178476648704315e-10 + 9.224748788184573e-11 + 7.108739902161543e-11 + 5.381328706422649e-11 + 3.991151299277479e-11 + 2.890715266694438e-11 + 2.036091648096713e-11 + 1.387293445657948e-11 + 9.080348320515963e-12 + 5.654863833225597e-12 + 3.306507674167889e-12 + 1.780689492983021e-12 + 8.563646514161430e-13 + 3.496037276049943e-13 + 1.104943293034196e-13 + 2.161027650041889e-14 + 5.028049336448720e-16 + 0.000000000000000e+00 + 0.000000000000000e+00 + 7.485272593961791e+04 + 1.493519318697679e+05 + 2.234970831294996e+05 + 2.972876533345640e+05 + 3.707231243774131e+05 + 4.438029864272003e+05 + 5.165267379297798e+05 + 5.888938856077072e+05 + 6.609039444602393e+05 + 7.325564377633340e+05 + 8.038508970696502e+05 + 8.747868622085482e+05 + 9.453638812860892e+05 + 1.015581510685036e+06 + 1.085439315064852e+06 + 1.154936867361703e+06 + 1.224073748788454e+06 + 1.292849548834672e+06 + 1.361263865266626e+06 + 1.429316304127287e+06 + 1.497006479736322e+06 + 1.564334014690106e+06 + 1.631298539861710e+06 + 1.697899694400910e+06 + 1.764137125734180e+06 + 1.830010489564698e+06 + 1.895519449872339e+06 + 1.960663678913685e+06 + 2.025442857222013e+06 + 2.089856673607306e+06 + 2.153904825156247e+06 + 2.217587017232217e+06 + 2.280902963475303e+06 + 2.343852385802290e+06 + 2.406435014406665e+06 + 2.468650587758616e+06 + 2.530498852605031e+06 + 2.591979563969503e+06 + 2.653092485152322e+06 + 2.713837387730482e+06 + 2.774214051557675e+06 + 2.834222264764299e+06 + 2.893861823757447e+06 + 2.953132533220919e+06 + 3.012034206115212e+06 + 3.070566663677527e+06 + 3.128729735421764e+06 + 3.186523259138526e+06 + 3.243947080895115e+06 + 3.301001055035538e+06 + 3.357685044180497e+06 + 3.413998919227402e+06 + 3.469942559350358e+06 + 3.525515852000176e+06 + 3.580718692904367e+06 + 3.635550986067140e+06 + 3.690012643769410e+06 + 3.744103586568788e+06 + 3.797823743299592e+06 + 3.851173051072835e+06 + 3.904151455276238e+06 + 3.956758909574216e+06 + 4.008995375907890e+06 + 4.060860824495079e+06 + 4.112355233830309e+06 + 4.163478590684799e+06 + 4.214230890106475e+06 + 4.264612135419963e+06 + 4.314622338226588e+06 + 4.364261518404378e+06 + 4.413529704108060e+06 + 4.462426931769069e+06 + 4.510953246095533e+06 + 4.559108700072286e+06 + 4.606893354960858e+06 + 4.654307280299488e+06 + 4.701350553903108e+06 + 4.748023261863358e+06 + 4.794325498548575e+06 + 4.840257366603798e+06 + 4.885818976950768e+06 + 4.931010448787929e+06 + 4.975831909590418e+06 + 5.020283495110085e+06 + 5.064365349375471e+06 + 5.108077624691823e+06 + 5.151420481641092e+06 + 5.194394089081923e+06 + 5.236998624149668e+06 + 5.279234272256376e+06 + 5.321101227090800e+06 + 5.362599690618395e+06 + 5.403729873081312e+06 + 5.444491992998408e+06 + 5.484886277165242e+06 + 5.524912960654069e+06 + 5.564572286813851e+06 + 5.603864507270245e+06 + 5.642789881925615e+06 + 5.681348678959022e+06 + 5.719541174826232e+06 + 5.757367654259708e+06 + 5.794828410268617e+06 + 5.831923744138825e+06 + 5.868653965432902e+06 + 5.905019391990117e+06 + 5.941020349926441e+06 + 5.976657173634544e+06 + 6.011930205783804e+06 + 6.046839797320290e+06 + 6.081386307466779e+06 + 6.115570103722748e+06 + 6.149391561864376e+06 + 6.182851065944540e+06 + 6.215949008292822e+06 + 6.248685789515501e+06 + 6.281061818495561e+06 + 6.313077512392686e+06 + 6.344733296643257e+06 + 6.376029604960365e+06 + 6.406966879333793e+06 + 6.437545570030033e+06 + 6.467766135592271e+06 + 6.497629042840399e+06 + 6.527134766871008e+06 + 6.556283791057392e+06 + 6.585076607049545e+06 + 6.613513714774162e+06 + 6.641595622434638e+06 + 6.669322846511072e+06 + 6.696695911760264e+06 + 6.723715351215711e+06 + 6.750381706187615e+06 + 6.776695526262878e+06 + 6.802657369305105e+06 + 6.828267801454599e+06 + 6.853527397128366e+06 + 6.878436739020114e+06 + 6.902996418100249e+06 + 6.927207033615881e+06 + 6.951069193090819e+06 + 6.974583512325577e+06 + 6.997750615397365e+06 + 7.020571134660101e+06 + 7.043045710744397e+06 + 7.065174992557568e+06 + 7.086959637283633e+06 + 7.108400310383311e+06 + 7.129497685594021e+06 + 7.150252444929884e+06 + 7.170665278681723e+06 + 7.190736885417059e+06 + 7.210467971980117e+06 + 7.229859253491821e+06 + 7.248911453349800e+06 + 7.267625303228384e+06 + 7.286001543078595e+06 + 7.304040921128170e+06 + 7.321744193881537e+06 + 7.339112126119829e+06 + 7.356145490900878e+06 + 7.372845069559221e+06 + 7.389211651706094e+06 + 7.405246035229432e+06 + 7.420949026293878e+06 + 7.436321439340766e+06 + 7.451364097088138e+06 + 7.466077830530737e+06 + 7.480463478940005e+06 + 7.494521889864086e+06 + 7.508253919127826e+06 + 7.521660430832772e+06 + 7.534742297357169e+06 + 7.547500399355968e+06 + 7.559935625760819e+06 + 7.572048873780073e+06 + 7.583841048898782e+06 + 7.595313064878696e+06 + 7.606465843758276e+06 + 7.617300315852673e+06 + 7.627817419753745e+06 + 7.638018102330050e+06 + 7.647903318726848e+06 + 7.657474032366097e+06 + 7.666731214946462e+06 + 7.675675846443305e+06 + 7.684308915108687e+06 + 7.692631417471377e+06 + 7.700644358336839e+06 + 7.708348750787240e+06 + 7.715745616181449e+06 + 7.722835984155037e+06 + 7.729620892620270e+06 + 7.736101387766127e+06 + 7.742278524058277e+06 + 7.748153364239094e+06 + 7.753726979327655e+06 + 7.759000448619737e+06 + 7.763974859687817e+06 + 7.768651308381077e+06 + 7.773030898825390e+06 + 7.777114743423343e+06 + 7.780903962854218e+06 + 7.784399686073998e+06 + 7.787603050315368e+06 + 7.790515201087713e+06 + 7.793137292177119e+06 + 7.795470485646380e+06 + 7.797515951834979e+06 + 7.799274869359110e+06 + 7.800748425111664e+06 + 7.801937814262233e+06 + 7.802844240257111e+06 + 7.803468914819297e+06 + 7.803813057948484e+06 + 7.803877897921070e+06 + 7.803664671290156e+06 + 7.803174622885538e+06 + 7.802409005813722e+06 + 7.801369081457905e+06 + 7.800056119477995e+06 + 7.798471397810592e+06 + 7.796616202669007e+06 + 7.794491828543244e+06 + 7.792099578200010e+06 + 7.789440762682715e+06 + 7.786516701311473e+06 + 7.783328721683091e+06 + 7.779878159671083e+06 + 7.776166359425665e+06 + 7.772194673373749e+06 + 7.767964462218953e+06 + 7.763477094941595e+06 + 7.758733948798692e+06 + 7.753736409323964e+06 + 7.748485870327833e+06 + 7.742983733897421e+06 + 7.737231410396548e+06 + 7.731230318465743e+06 + 7.724981885022229e+06 + 7.718487545259933e+06 + 7.711748742649483e+06 + 7.704766928938209e+06 + 7.697543564150140e+06 + 7.690080116586007e+06 + 7.682378062823243e+06 + 7.674438887715982e+06 + 7.666264084395060e+06 + 7.657855154268012e+06 + 7.649213607019073e+06 + 7.640340960609185e+06 + 7.631238741275986e+06 + 7.621908483533815e+06 + 7.612351730173716e+06 + 7.602570032263434e+06 + 7.592564949147409e+06 + 7.582338048446788e+06 + 7.571890906059416e+06 + 7.561225106159844e+06 + 7.550342241199316e+06 + 7.539243911905785e+06 + 7.527931727283904e+06 + 7.516407304615024e+06 + 7.504672269457198e+06 + 7.492728241314434e+06 + 7.480576638153253e+06 + 7.468218723741564e+06 + 7.455655760425863e+06 + 7.442889013018662e+06 + 7.429919748798485e+06 + 7.416749237509867e+06 + 7.403378751363355e+06 + 7.389809565035504e+06 + 7.376042955668893e+06 + 7.362080202872100e+06 + 7.347922588719724e+06 + 7.333571397752370e+06 + 7.319027916976659e+06 + 7.304293435865226e+06 + 7.289369246356713e+06 + 7.274256642855777e+06 + 7.258956922233087e+06 + 7.243471383825325e+06 + 7.227801329435183e+06 + 7.211948063331366e+06 + 7.195912892248592e+06 + 7.179697125387593e+06 + 7.163302074415106e+06 + 7.146729053463890e+06 + 7.129979379132709e+06 + 7.113054370486340e+06 + 7.095955349055575e+06 + 7.078683638837219e+06 + 7.061240566294081e+06 + 7.043627460354994e+06 + 7.025845652414794e+06 + 7.007896476334333e+06 + 6.989781268440476e+06 + 6.971501367526096e+06 + 6.953058114850082e+06 + 6.934452854137335e+06 + 6.915686931578767e+06 + 6.896761695831302e+06 + 6.877678498017876e+06 + 6.858438691727439e+06 + 6.839043633014950e+06 + 6.819494680401385e+06 + 6.799793194873727e+06 + 6.779940539884974e+06 + 6.759938081354136e+06 + 6.739787187666233e+06 + 6.719489229672301e+06 + 6.699045580689385e+06 + 6.678457616500544e+06 + 6.657726715354848e+06 + 6.636854257967380e+06 + 6.615841627519235e+06 + 6.594690209657516e+06 + 6.573401392495350e+06 + 6.551976566611862e+06 + 6.530417125052197e+06 + 6.508724463327511e+06 + 6.486899979414972e+06 + 6.464945073757762e+06 + 6.442861149265066e+06 + 6.420649611312096e+06 + 6.398311867740063e+06 + 6.375849328856199e+06 + 6.353263407433745e+06 + 6.330555518711952e+06 + 6.307727080396090e+06 + 6.284779512657427e+06 + 6.261714238133261e+06 + 6.238532681926889e+06 + 6.215236271607627e+06 + 6.191826437210800e+06 + 6.168304611237747e+06 + 6.144672228655818e+06 + 6.120930726898375e+06 + 6.097081545864792e+06 + 6.073126127920459e+06 + 6.049065917896771e+06 + 6.024902363091142e+06 + 6.000636913266994e+06 + 5.976271020653763e+06 + 5.951806139946896e+06 + 5.927243728307854e+06 + 5.902585245364108e+06 + 5.877832153209144e+06 + 5.852985916402456e+06 + 5.828048001969552e+06 + 5.803019879401957e+06 + 5.777903020657199e+06 + 5.752698900158828e+06 + 5.727408994796395e+06 + 5.702034783925475e+06 + 5.676577749367647e+06 + 5.651039375410506e+06 + 5.625421148807654e+06 + 5.599724558778713e+06 + 5.573951097009313e+06 + 5.548102257651095e+06 + 5.522179537321717e+06 + 5.496184435104840e+06 + 5.470118452550147e+06 + 5.443983093673326e+06 + 5.417779864956085e+06 + 5.391510275346133e+06 + 5.365175836257203e+06 + 5.338778061569033e+06 + 5.312318467627374e+06 + 5.285798573243992e+06 + 5.259219899696662e+06 + 5.232583970729172e+06 + 5.205892312551324e+06 + 5.179146453838928e+06 + 5.152347925733812e+06 + 5.125498261843814e+06 + 5.098598998242779e+06 + 5.071651673470572e+06 + 5.044657828533064e+06 + 5.017619006902143e+06 + 4.990536754515706e+06 + 4.963412619777663e+06 + 4.936248153557934e+06 + 4.909044909192459e+06 + 4.881804442483181e+06 + 4.854528311698059e+06 + 4.827218077571064e+06 + 4.799875303302180e+06 + 4.772501554557402e+06 + 4.745098399468737e+06 + 4.717667408634203e+06 + 4.690210155117837e+06 + 4.662728214449679e+06 + 4.635223164625784e+06 + 4.607696586108224e+06 + 4.580150061825077e+06 + 4.552585177170437e+06 + 4.525003520004408e+06 + 4.497406680653105e+06 + 4.469796251908661e+06 + 4.442173829029216e+06 + 4.414541009738924e+06 + 4.386899394227949e+06 + 4.359250585152469e+06 + 4.331596187634676e+06 + 4.303937809262771e+06 + 4.276277060090966e+06 + 4.248615552639492e+06 + 4.220954901894585e+06 + 4.193296725308497e+06 + 4.165642642799490e+06 + 4.137994276751838e+06 + 4.110353252015833e+06 + 4.082721195907769e+06 + 4.055099738209962e+06 + 4.027490511170732e+06 + 3.999895149504419e+06 + 3.972315290391369e+06 + 3.944752573477943e+06 + 3.917208640876513e+06 + 3.889685137165464e+06 + 3.862183709389194e+06 + 3.834706007058111e+06 + 3.807253682148634e+06 + 3.779828389103201e+06 + 3.752431784830255e+06 + 3.725065528704253e+06 + 3.697731282565667e+06 + 3.670430710720977e+06 + 3.643165479942679e+06 + 3.615937259469279e+06 + 3.588747721005293e+06 + 3.561598538721256e+06 + 3.534491389253709e+06 + 3.507427951705208e+06 + 3.480409907644318e+06 + 3.453438941105620e+06 + 3.426516738589706e+06 + 3.399644989063177e+06 + 3.372825383958653e+06 + 3.346070405300663e+06 + 3.319465764034668e+06 + 3.293075510459727e+06 + 3.266878224028187e+06 + 3.240869303162930e+06 + 3.215052515525467e+06 + 3.189425288821125e+06 + 3.163986116962672e+06 + 3.138734196986282e+06 + 3.113668261011591e+06 + 3.088787111422079e+06 + 3.064089610843659e+06 + 3.039574592322599e+06 + 3.015240898358055e+06 + 2.991087379108502e+06 + 2.967112887579310e+06 + 2.943316282301805e+06 + 2.919696425519270e+06 + 2.896252185185970e+06 + 2.872982434032476e+06 + 2.849886048305633e+06 + 2.826961910405915e+06 + 2.804208907130155e+06 + 2.781625929123051e+06 + 2.759211873644148e+06 + 2.736965641930875e+06 + 2.714886139213983e+06 + 2.692972277509980e+06 + 2.671222972611625e+06 + 2.649637144535781e+06 + 2.628213719738566e+06 + 2.606951628696007e+06 + 2.585849806893141e+06 + 2.564907195391811e+06 + 2.544122739173453e+06 + 2.523495389008342e+06 + 2.503024101022326e+06 + 2.482707834844927e+06 + 2.462545556054412e+06 + 2.442536236120740e+06 + 2.422678849863131e+06 + 2.402972377820649e+06 + 2.383415806334849e+06 + 2.364008125120872e+06 + 2.344748329835404e+06 + 2.325635421794777e+06 + 2.306668405813749e+06 + 2.287846292982958e+06 + 2.269168099757709e+06 + 2.250632846050586e+06 + 2.232239558087812e+06 + 2.213987266957964e+06 + 2.195875007435864e+06 + 2.177901821473463e+06 + 2.160066755143500e+06 + 2.142368857948063e+06 + 2.124807187017495e+06 + 2.107380803567688e+06 + 2.090088772295509e+06 + 2.072930165358991e+06 + 2.055904058912681e+06 + 2.039009532618940e+06 + 2.022245673041180e+06 + 2.005611571515091e+06 + 1.989106323649552e+06 + 1.972729030298793e+06 + 1.956478797095825e+06 + 1.940354734917566e+06 + 1.924355960016194e+06 + 1.908481592593613e+06 + 1.892730757829583e+06 + 1.877102587255698e+06 + 1.861596215902473e+06 + 1.846210783186639e+06 + 1.830945435012332e+06 + 1.815799321323061e+06 + 1.800771597138300e+06 + 1.785861422681660e+06 + 1.771067961851037e+06 + 1.756390384114008e+06 + 1.741827864373811e+06 + 1.727379581118251e+06 + 1.713044718232857e+06 + 1.698822464839031e+06 + 1.684712013805151e+06 + 1.670712563808684e+06 + 1.656823318006428e+06 + 1.643043483055245e+06 + 1.629372271790869e+06 + 1.615808901794204e+06 + 1.602352594044968e+06 + 1.589002574975609e+06 + 1.575758076322615e+06 + 1.562618333634041e+06 + 1.549582587186907e+06 + 1.536650081999105e+06 + 1.523820067124634e+06 + 1.511091797064626e+06 + 1.498464530780005e+06 + 1.485937531189585e+06 + 1.473510066471004e+06 + 1.461181408848471e+06 + 1.448950834625962e+06 + 1.436817625926470e+06 + 1.424781068397768e+06 + 1.412840451407005e+06 + 1.400995070309470e+06 + 1.389244224245752e+06 + 1.377587216393601e+06 + 1.366023355231714e+06 + 1.354551952598923e+06 + 1.343172324427429e+06 + 1.331883792566280e+06 + 1.320685682335073e+06 + 1.309577322956444e+06 + 1.298558048406515e+06 + 1.287627196362487e+06 + 1.276784109496439e+06 + 1.266028134784103e+06 + 1.255358622320226e+06 + 1.244774926866806e+06 + 1.234276408467881e+06 + 1.223862430240984e+06 + 1.213532358913532e+06 + 1.203285566621101e+06 + 1.193121428991948e+06 + 1.183039325468658e+06 + 1.173038640304339e+06 + 1.163118761212139e+06 + 1.153279079987504e+06 + 1.143518992564451e+06 + 1.133837898317260e+06 + 1.124235201394960e+06 + 1.114710310121780e+06 + 1.105262636013577e+06 + 1.095891594215875e+06 + 1.086596604396163e+06 + 1.077377090233802e+06 + 1.068232479242110e+06 + 1.059162202266971e+06 + 1.050165693700918e+06 + 1.041242393088349e+06 + 1.032391743039430e+06 + 1.023613189178869e+06 + 1.014906181731556e+06 + 1.006270174355871e+06 + 9.977046244036794e+05 + 9.892089935677024e+05 + 9.807827465832273e+05 + 9.724253516436865e+05 + 9.641362810046984e+05 + 9.559150102252770e+05 + 9.477610188719215e+05 + 9.396737899139688e+05 + 9.316528091743080e+05 + 9.236975665277143e+05 + 9.158075561735997e+05 + 9.079822751134991e+05 + 9.002212236533747e+05 + 8.925239057014534e+05 + 8.848898281604102e+05 + 8.773185021612709e+05 + 8.698094424648809e+05 + 8.623621663528095e+05 + 8.549761944053203e+05 + 8.476510510446843e+05 + 8.403862637513808e+05 + 8.331813638606276e+05 + 8.260358860837971e+05 + 8.189493675787508e+05 + 8.119213484350282e+05 + 8.049513730504208e+05 + 7.980389891667470e+05 + 7.911837471192866e+05 + 7.843852003599521e+05 + 7.776429053419405e+05 + 7.709564221446526e+05 + 7.643253140173181e+05 + 7.577491471803443e+05 + 7.512274911598503e+05 + 7.447599180231568e+05 + 7.383460026539576e+05 + 7.319853241781880e+05 + 7.256774641850799e+05 + 7.194220067146936e+05 + 7.132185395309449e+05 + 7.070666529520636e+05 + 7.009659400728574e+05 + 6.949159975085063e+05 + 6.889164244086053e+05 + 6.829668228095188e+05 + 6.770667979456050e+05 + 6.712159574726904e+05 + 6.654139120281750e+05 + 6.596602754201142e+05 + 6.539546638052445e+05 + 6.482966962660485e+05 + 6.426859949531512e+05 + 6.371221843431445e+05 + 6.316048918617199e+05 + 6.261337478197705e+05 + 6.207083848228143e+05 + 6.153284385055641e+05 + 6.099935472682050e+05 + 6.047033517354903e+05 + 5.994574954765684e+05 + 5.942556247644721e+05 + 5.890973881315375e+05 + 5.839824370501742e+05 + 5.789104255366600e+05 + 5.738810098259439e+05 + 5.688938490610282e+05 + 5.639486048510919e+05 + 5.590449410545636e+05 + 5.541825244030216e+05 + 5.493610239467514e+05 + 5.445801109611018e+05 + 5.398394595653637e+05 + 5.351387461239359e+05 + 5.304776492529869e+05 + 5.258558503354813e+05 + 5.212730328842620e+05 + 5.167288826663374e+05 + 5.122230881980868e+05 + 5.077553400369428e+05 + 5.033253309731948e+05 + 4.989327564601310e+05 + 4.945773139811803e+05 + 4.902587033143605e+05 + 4.859766266490913e+05 + 4.817307881770549e+05 + 4.775208945372272e+05 + 4.733466546121029e+05 + 4.692077791818720e+05 + 4.651039814988278e+05 + 4.610349770333872e+05 + 4.570004830895544e+05 + 4.530002193970305e+05 + 4.490339078641191e+05 + 4.451012721716975e+05 + 4.412020383482487e+05 + 4.373359346346440e+05 + 4.335026910461138e+05 + 4.297020398291695e+05 + 4.259337153289251e+05 + 4.221974536699117e+05 + 4.184929932504728e+05 + 4.148200744355357e+05 + 4.111784393468680e+05 + 4.075678324287459e+05 + 4.039879999559653e+05 + 4.004386899065928e+05 + 3.969196525836200e+05 + 3.934306400492930e+05 + 3.899714060581240e+05 + 3.865417066557175e+05 + 3.831412995849459e+05 + 3.797699442729113e+05 + 3.764274023566474e+05 + 3.731134371233769e+05 + 3.698278135622827e+05 + 3.665702987827645e+05 + 3.633406615280775e+05 + 3.601386722825769e+05 + 3.569641034535824e+05 + 3.538167290782596e+05 + 3.506963250581825e+05 + 3.476026690576235e+05 + 3.445355402744773e+05 + 3.414947198014101e+05 + 3.384799905288533e+05 + 3.354911367821696e+05 + 3.325279446663284e+05 + 3.295902021531574e+05 + 3.266776986085196e+05 + 3.237902250531212e+05 + 3.209275743946921e+05 + 3.180895409646722e+05 + 3.152759207164211e+05 + 3.124865112943467e+05 + 3.097211117598721e+05 + 3.069795229448014e+05 + 3.042615472339510e+05 + 3.015669883675390e+05 + 2.988956518738279e+05 + 2.962473447339852e+05 + 2.936218752484120e+05 + 2.910190535228683e+05 + 2.884386911235514e+05 + 2.858806009067059e+05 + 2.833445973150213e+05 + 2.808304963224871e+05 + 2.783381153152796e+05 + 2.758672731341289e+05 + 2.734177900017136e+05 + 2.709894875428715e+05 + 2.685821889451269e+05 + 2.661957187314447e+05 + 2.638299027837526e+05 + 2.614845683836235e+05 + 2.591595441417535e+05 + 2.568546601323142e+05 + 2.545697477628685e+05 + 2.523046396706559e+05 + 2.500591699434964e+05 + 2.478331740644226e+05 + 2.456264886409644e+05 + 2.434389516128850e+05 + 2.412704023657298e+05 + 2.391206814330098e+05 + 2.369896306904384e+05 + 2.348770933197599e+05 + 2.327829136173563e+05 + 2.307069372775990e+05 + 2.286490111745211e+05 + 2.266089832623643e+05 + 2.245867029748616e+05 + 2.225820209237310e+05 + 2.205947887183862e+05 + 2.186248592921233e+05 + 2.166720868039439e+05 + 2.147363264605261e+05 + 2.128174347706827e+05 + 2.109152693889452e+05 + 2.090296889843596e+05 + 2.071605535077064e+05 + 2.053077240108720e+05 + 2.034710625599661e+05 + 2.016504325007521e+05 + 1.998456982030229e+05 + 1.980567250370223e+05 + 1.962833797138016e+05 + 1.945255298870997e+05 + 1.927830441323482e+05 + 1.910557922964590e+05 + 1.893436452442803e+05 + 1.876464748512476e+05 + 1.859641540986015e+05 + 1.842965568967865e+05 + 1.826435581738182e+05 + 1.810050340354470e+05 + 1.793808614993985e+05 + 1.777709185575675e+05 + 1.761750842223128e+05 + 1.745932384546507e+05 + 1.730252623268235e+05 + 1.714710377603550e+05 + 1.699304475698536e+05 + 1.684033757560533e+05 + 1.668897071565261e+05 + 1.653893274220018e+05 + 1.639021233234161e+05 + 1.624279825159149e+05 + 1.609667934564489e+05 + 1.595184456811041e+05 + 1.580828296015031e+05 + 1.566598363968120e+05 + 1.552493582649543e+05 + 1.538512882702573e+05 + 1.524655202573447e+05 + 1.510919491064028e+05 + 1.497304705096718e+05 + 1.483809809029638e+05 + 1.470433777326744e+05 + 1.457175592117312e+05 + 1.444034242942686e+05 + 1.431008729933990e+05 + 1.418098060421684e+05 + 1.405301248671864e+05 + 1.392617319094920e+05 + 1.380045303259556e+05 + 1.367584239714278e+05 + 1.355233176631985e+05 + 1.342991169575939e+05 + 1.330857281367400e+05 + 1.318830583220329e+05 + 1.306910153813551e+05 + 1.295095079605118e+05 + 1.283384454277201e+05 + 1.271777378619642e+05 + 1.260272961737778e+05 + 1.248870320778846e+05 + 1.237568578844075e+05 + 1.226366865814357e+05 + 1.215264320654815e+05 + 1.204260088572700e+05 + 1.193353321256488e+05 + 1.182543179024696e+05 + 1.171828828329888e+05 + 1.161209441971572e+05 + 1.150684200368906e+05 + 1.140252290172446e+05 + 1.129912905290012e+05 + 1.119665246989244e+05 + 1.109508522377596e+05 + 1.099441945145749e+05 + 1.089464735474612e+05 + 1.079576119759672e+05 + 1.069775332658437e+05 + 1.060061613940063e+05 + 1.050434208615313e+05 + 1.040892370245828e+05 + 1.031435357647047e+05 + 1.022062434696232e+05 + 1.012772873208916e+05 + 1.003565950684523e+05 + 9.944409498683986e+04 + 9.853971604124359e+04 + 9.764338777276211e+04 + 9.675504027159151e+04 + 9.587460425195689e+04 + 9.500201099602232e+04 + 9.413719236230559e+04 + 9.328008081668093e+04 + 9.243060935253548e+04 + 9.158871152497102e+04 + 9.075432150057999e+04 + 8.992737394814150e+04 + 8.910780408381460e+04 + 8.829554772812854e+04 + 8.749054118346877e+04 + 8.669272128864085e+04 + 8.590202548133289e+04 + 8.511839166524833e+04 + 8.434175826486869e+04 + 8.357206428147563e+04 + 8.280924917713979e+04 + 8.205325293940101e+04 + 8.130401609766987e+04 + 8.056147962909786e+04 + 7.982558503959214e+04 + 7.909627435336930e+04 + 7.837349003289423e+04 + 7.765717506702039e+04 + 7.694727293156023e+04 + 7.624372753229675e+04 + 7.554648331079309e+04 + 7.485548516457589e+04 + 7.417067840840557e+04 + 7.349200889763620e+04 + 7.281942291879337e+04 + 7.215286716185752e+04 + 7.149228885123666e+04 + 7.083763563584826e+04 + 7.018885556144921e+04 + 6.954589717270633e+04 + 6.890870943981725e+04 + 6.827724174191867e+04 + 6.765144392787226e+04 + 6.703126624692857e+04 + 6.641665935636370e+04 + 6.580757439267423e+04 + 6.520396286738058e+04 + 6.460577668030654e+04 + 6.401296820028803e+04 + 6.342549017134596e+04 + 6.284329573351656e+04 + 6.226633845994343e+04 + 6.169457228450359e+04 + 6.112795154311772e+04 + 6.056643099463883e+04 + 6.000996574136701e+04 + 5.945851127624574e+04 + 5.891202351267684e+04 + 5.837045869755570e+04 + 5.783377345558033e+04 + 5.730192482224794e+04 + 5.677487016169035e+04 + 5.625256720967715e+04 + 5.573497408983271e+04 + 5.522204924870504e+04 + 5.471375150828325e+04 + 5.421004006036229e+04 + 5.371087441354901e+04 + 5.321621444975662e+04 + 5.272602039469258e+04 + 5.224025278120609e+04 + 5.175887251825204e+04 + 5.128184085536604e+04 + 5.080911934597862e+04 + 5.034066989608183e+04 + 4.987645473684455e+04 + 4.941643640415772e+04 + 4.896057778639881e+04 + 4.850884207769758e+04 + 4.806119277190277e+04 + 4.761759372195903e+04 + 4.717800906318111e+04 + 4.674240321587012e+04 + 4.631074096205200e+04 + 4.588298735942246e+04 + 4.545910774537743e+04 + 4.503906779825089e+04 + 4.462283347373459e+04 + 4.421037101686000e+04 + 4.380164697651120e+04 + 4.339662816996042e+04 + 4.299528171729217e+04 + 4.259757504220949e+04 + 4.220347581706527e+04 + 4.181295199605238e+04 + 4.142597183433527e+04 + 4.104250383855765e+04 + 4.066251680332360e+04 + 4.028597979815155e+04 + 3.991286213370509e+04 + 3.954313341370015e+04 + 3.917676350485435e+04 + 3.881372250661203e+04 + 3.845398080843414e+04 + 3.809750905736740e+04 + 3.774427812448402e+04 + 3.739425915595785e+04 + 3.704742356207799e+04 + 3.670374297805164e+04 + 3.636318929176292e+04 + 3.602573463927982e+04 + 3.569135138416072e+04 + 3.536001215672983e+04 + 3.503168981923036e+04 + 3.470635744840465e+04 + 3.438398837321134e+04 + 3.406455615393208e+04 + 3.374803457309094e+04 + 3.343439765983423e+04 + 3.312361965186892e+04 + 3.281567499925836e+04 + 3.251053841177231e+04 + 3.220818480242078e+04 + 3.190858928930939e+04 + 3.161172723179306e+04 + 3.131757418548949e+04 + 3.102610591483113e+04 + 3.073729842710719e+04 + 3.045112791454117e+04 + 3.016757076691534e+04 + 2.988660361584138e+04 + 2.960820327321778e+04 + 2.933234674204399e+04 + 2.905901125674980e+04 + 2.878817423326317e+04 + 2.851981328372868e+04 + 2.825390622682930e+04 + 2.799043106146120e+04 + 2.772936599846356e+04 + 2.747068942978120e+04 + 2.721437991599866e+04 + 2.696041623625263e+04 + 2.670877735469368e+04 + 2.645944239579323e+04 + 2.621239068106394e+04 + 2.596760172331024e+04 + 2.572505519859007e+04 + 2.548473096648493e+04 + 2.524660907253227e+04 + 2.501066972455740e+04 + 2.477689330466365e+04 + 2.454526037995217e+04 + 2.431575168300119e+04 + 2.408834810912627e+04 + 2.386303072521571e+04 + 2.363978076395976e+04 + 2.341857962988761e+04 + 2.319940888531031e+04 + 2.298225025100848e+04 + 2.276708562349589e+04 + 2.255389704384009e+04 + 2.234266670372097e+04 + 2.213337697918792e+04 + 2.192601038403303e+04 + 2.172054957464747e+04 + 2.151697738916041e+04 + 2.131527680276242e+04 + 2.111543093252480e+04 + 2.091742306098243e+04 + 2.072123660422193e+04 + 2.052685512482519e+04 + 2.033426234716574e+04 + 2.014344212098682e+04 + 1.995437843426629e+04 + 1.976705544479930e+04 + 1.958145743480243e+04 + 1.939756881213320e+04 + 1.921537413684756e+04 + 1.903485810052154e+04 + 1.885600554387774e+04 + 1.867880143037429e+04 + 1.850323084111479e+04 + 1.832927901452323e+04 + 1.815693131178678e+04 + 1.798617320994377e+04 + 1.781699034075772e+04 + 1.764936845332217e+04 + 1.748329340510924e+04 + 1.731875119617678e+04 + 1.715572795110660e+04 + 1.699420990919751e+04 + 1.683418344358223e+04 + 1.667563503873475e+04 + 1.651855128954979e+04 + 1.636291893365341e+04 + 1.620872481606836e+04 + 1.605595588699932e+04 + 1.590459923143625e+04 + 1.575464203906202e+04 + 1.560607160533683e+04 + 1.545887535681969e+04 + 1.531304082443131e+04 + 1.516855564487381e+04 + 1.502540756956110e+04 + 1.488358445432479e+04 + 1.474307426938193e+04 + 1.460386509288249e+04 + 1.446594509814283e+04 + 1.432930256776952e+04 + 1.419392589719183e+04 + 1.405980357729324e+04 + 1.392692420658459e+04 + 1.379527648729671e+04 + 1.366484921045415e+04 + 1.353563127160237e+04 + 1.340761167272577e+04 + 1.328077950662285e+04 + 1.315512397004589e+04 + 1.303063434970357e+04 + 1.290730001970431e+04 + 1.278511047006237e+04 + 1.266405528001385e+04 + 1.254412410683634e+04 + 1.242530670538782e+04 + 1.230759293022181e+04 + 1.219097272173875e+04 + 1.207543611008671e+04 + 1.196097321598039e+04 + 1.184757424417080e+04 + 1.173522949287449e+04 + 1.162392934478714e+04 + 1.151366426384512e+04 + 1.140442480834694e+04 + 1.129620161634352e+04 + 1.118898540470730e+04 + 1.108276698378667e+04 + 1.097753724013271e+04 + 1.087328713748510e+04 + 1.077000773143687e+04 + 1.066769015148828e+04 + 1.056632560317495e+04 + 1.046590537899618e+04 + 1.036642084361778e+04 + 1.026786343864257e+04 + 1.017022468912003e+04 + 1.007349618928313e+04 + 9.977669609110566e+03 + 9.882736699245763e+03 + 9.788689277747368e+03 + 9.695519238085319e+03 + 9.603218551128393e+03 + 9.511779252802526e+03 + 9.421193453258842e+03 + 9.331453338088948e+03 + 9.242551155902798e+03 + 9.154479227014926e+03 + 9.067229945268125e+03 + 8.980795767109534e+03 + 8.895169220035050e+03 + 8.810342900070031e+03 + 8.726309463870590e+03 + 8.643061639313548e+03 + 8.560592220958239e+03 + 8.478894062727115e+03 + 8.397960086705119e+03 + 8.317783279679375e+03 + 8.238356687487571e+03 + 8.159673421912185e+03 + 8.081726656780256e+03 + 8.004509624589081e+03 + 7.928015622553179e+03 + 7.852238006535134e+03 + 7.777170190090504e+03 + 7.702805651284038e+03 + 7.629137923269694e+03 + 7.556160595291118e+03 + 7.483867321684783e+03 + 7.412251809739373e+03 + 7.341307820993124e+03 + 7.271029178292266e+03 + 7.201409756944273e+03 + 7.132443488123264e+03 + 7.064124361053455e+03 + 6.996446414793790e+03 + 6.929403743407001e+03 + 6.862990497342477e+03 + 6.797200875139910e+03 + 6.732029129721631e+03 + 6.667469570161823e+03 + 6.603516551523545e+03 + 6.540164480186692e+03 + 6.477407817185619e+03 + 6.415241069687017e+03 + 6.353658796883785e+03 + 6.292655608307650e+03 + 6.232226157518487e+03 + 6.172365149982773e+03 + 6.113067340658933e+03 + 6.054327527853383e+03 + 5.996140560115221e+03 + 5.938501333076975e+03 + 5.881404784939355e+03 + 5.824845903828315e+03 + 5.768819722461626e+03 + 5.713321315085574e+03 + 5.658345805472132e+03 + 5.603888359764917e+03 + 5.549944184846402e+03 + 5.496508537213697e+03 + 5.443576713947663e+03 + 5.391144051368102e+03 + 5.339205932358427e+03 + 5.287757780134069e+03 + 5.236795058291703e+03 + 5.186313275265001e+03 + 5.136307977685731e+03 + 5.086774751617681e+03 + 5.037709226449485e+03 + 4.989107068721900e+03 + 4.940963984504954e+03 + 4.893275721702213e+03 + 4.846038063285039e+03 + 4.799246830729600e+03 + 4.752897888312231e+03 + 4.706987133608333e+03 + 4.661510499922751e+03 + 4.616463963202395e+03 + 4.571843532909213e+03 + 4.527645253893021e+03 + 4.483865209302220e+03 + 4.440499515324517e+03 + 4.397544325863069e+03 + 4.354995830474305e+03 + 4.312850249817291e+03 + 4.271103841242844e+03 + 4.229752898292512e+03 + 4.188793745275323e+03 + 4.148222740634546e+03 + 4.108036277499050e+03 + 4.068230779797937e+03 + 4.028802705831530e+03 + 3.989748546349355e+03 + 3.951064821861195e+03 + 3.912748086813885e+03 + 3.874794926585441e+03 + 3.837201956255947e+03 + 3.799965825835211e+03 + 3.763083213042953e+03 + 3.726550823283946e+03 + 3.690365398229224e+03 + 3.654523706502605e+03 + 3.619022543185401e+03 + 3.583858737044133e+03 + 3.549029144619817e+03 + 3.514530650270483e+03 + 3.480360168271582e+03 + 3.446514639490202e+03 + 3.412991033253400e+03 + 3.379786348393921e+03 + 3.346897609451590e+03 + 3.314321868815865e+03 + 3.282056205761040e+03 + 3.250097724763853e+03 + 3.218443559530467e+03 + 3.187090870156345e+03 + 3.156036839918450e+03 + 3.125278679259401e+03 + 3.094813626126841e+03 + 3.064638941053712e+03 + 3.034751909739014e+03 + 3.005149845581890e+03 + 2.975830084543172e+03 + 2.946789986568892e+03 + 2.918026936797055e+03 + 2.889538343339952e+03 + 2.861321641252218e+03 + 2.833374286700636e+03 + 2.805693756659566e+03 + 2.778277556469224e+03 + 2.751123212016022e+03 + 2.724228269242043e+03 + 2.697590301914011e+03 + 2.671206904109025e+03 + 2.645075688971241e+03 + 2.619194294405700e+03 + 2.593560380141823e+03 + 2.568171626715687e+03 + 2.543025737542386e+03 + 2.518120435211838e+03 + 2.493453462030127e+03 + 2.469022585172818e+03 + 2.444825590018873e+03 + 2.420860280374604e+03 + 2.397124484732366e+03 + 2.373616049394018e+03 + 2.350332838436762e+03 + 2.327272738609171e+03 + 2.304433655218562e+03 + 2.281813512846715e+03 + 2.259410255601743e+03 + 2.237221844685107e+03 + 2.215246260811306e+03 + 2.193481506123082e+03 + 2.171925598942706e+03 + 2.150576574458654e+03 + 2.129432488764117e+03 + 2.108491414442484e+03 + 2.087751441300839e+03 + 2.067210678851041e+03 + 2.046867252353801e+03 + 2.026719303565292e+03 + 2.006764993817073e+03 + 1.987002500493615e+03 + 1.967430017215378e+03 + 1.948045754608514e+03 + 1.928847939062915e+03 + 1.909834815497017e+03 + 1.891004644375446e+03 + 1.872355700452609e+03 + 1.853886275802303e+03 + 1.835594678424827e+03 + 1.817479231062563e+03 + 1.799538272810955e+03 + 1.781770158220284e+03 + 1.764173256646331e+03 + 1.746745953278825e+03 + 1.729486647489427e+03 + 1.712393752933919e+03 + 1.695465699568615e+03 + 1.678700930817119e+03 + 1.662097903850073e+03 + 1.645655091966725e+03 + 1.629370981458450e+03 + 1.613244072202941e+03 + 1.597272880432907e+03 + 1.581455933682248e+03 + 1.565791771294578e+03 + 1.550278951289465e+03 + 1.534916043199639e+03 + 1.519701626827566e+03 + 1.504634298568118e+03 + 1.489712666891078e+03 + 1.474935351996483e+03 + 1.460300988758884e+03 + 1.445808223853118e+03 + 1.431455716350942e+03 + 1.417242138357507e+03 + 1.403166173386480e+03 + 1.389226518010158e+03 + 1.375421881007569e+03 + 1.361750982089843e+03 + 1.348212553926219e+03 + 1.334805341072190e+03 + 1.321528098720046e+03 + 1.308379594477261e+03 + 1.295358607457036e+03 + 1.282463927300085e+03 + 1.269694355823267e+03 + 1.257048705895313e+03 + 1.244525800699936e+03 + 1.232124475203576e+03 + 1.219843575042076e+03 + 1.207681956049559e+03 + 1.195638485404256e+03 + 1.183712040621380e+03 + 1.171901509388141e+03 + 1.160205790292893e+03 + 1.148623791762007e+03 + 1.137154432301071e+03 + 1.125796641257775e+03 + 1.114549357263016e+03 + 1.103411528660030e+03 + 1.092382114454342e+03 + 1.081460082700689e+03 + 1.070644411095300e+03 + 1.059934087579793e+03 + 1.049328108720195e+03 + 1.038825480494848e+03 + 1.028425218971371e+03 + 1.018126348582361e+03 + 1.007927902927668e+03 + 9.978289254104482e+02 + 9.878284675679866e+02 + 9.779255898738762e+02 + 9.681193621623704e+02 + 9.584088623012988e+02 + 9.487931771658360e+02 + 9.392714022763922e+02 + 9.298426409505287e+02 + 9.205060057185552e+02 + 9.112606172437117e+02 + 9.021056036681564e+02 + 8.930401022331439e+02 + 8.840632580637879e+02 + 8.751742235821227e+02 + 8.663721600224155e+02 + 8.576562363107178e+02 + 8.490256285516970e+02 + 8.404795212594149e+02 + 8.320171064683727e+02 + 8.236375833541338e+02 + 8.153401590664150e+02 + 8.071240480244585e+02 + 7.989884718119321e+02 + 7.909326598382663e+02 + 7.829558483527250e+02 + 7.750572805483002e+02 + 7.672362073200991e+02 + 7.594918862313154e+02 + 7.518235817392584e+02 + 7.442305655888715e+02 + 7.367121158939042e+02 + 7.292675176279554e+02 + 7.218960630476328e+02 + 7.145970504767349e+02 + 7.073697847820883e+02 + 7.002135778527235e+02 + 6.931277475695276e+02 + 6.861116184218383e+02 + 6.791645215373005e+02 + 6.722857937677298e+02 + 6.654747784472139e+02 + 6.587308253877042e+02 + 6.520532900189463e+02 + 6.454415341582659e+02 + 6.388949257382737e+02 + 6.324128381494658e+02 + 6.259946511571761e+02 + 6.196397502963263e+02 + 6.133475264197438e+02 + 6.071173768094372e+02 + 6.009487042352257e+02 + 5.948409165626937e+02 + 5.887934278801442e+02 + 5.828056577149104e+02 + 5.768770306335107e+02 + 5.710069770500405e+02 + 5.651949326339243e+02 + 5.594403381224611e+02 + 5.537426401234757e+02 + 5.481012901152631e+02 + 5.425157443662293e+02 + 5.369854648776029e+02 + 5.315099185870243e+02 + 5.260885773011631e+02 + 5.207209179649268e+02 + 5.154064223119497e+02 + 5.101445770921985e+02 + 5.049348740937783e+02 + 4.997768095346806e+02 + 4.946698844046663e+02 + 4.896136047862775e+02 + 4.846074811232588e+02 + 4.796510285618583e+02 + 4.747437670096575e+02 + 4.698852205388910e+02 + 4.650749179071526e+02 + 4.603123926691712e+02 + 4.555971823563725e+02 + 4.509288288727789e+02 + 4.463068788207030e+02 + 4.417308827523721e+02 + 4.372003955530256e+02 + 4.327149765501697e+02 + 4.282741889383891e+02 + 4.238776002586995e+02 + 4.195247821802792e+02 + 4.152153101301976e+02 + 4.109487639564401e+02 + 4.067247273397822e+02 + 4.025427875685178e+02 + 3.984025363858318e+02 + 3.943035692477232e+02 + 3.902454851077117e+02 + 3.862278871965347e+02 + 3.822503823673904e+02 + 3.783125809462488e+02 + 3.744140974100913e+02 + 3.705545496319825e+02 + 3.667335588488600e+02 + 3.629507504654170e+02 + 3.592057531920941e+02 + 3.554981990087823e+02 + 3.518277237997781e+02 + 3.481939667588409e+02 + 3.445965704231110e+02 + 3.410351808614133e+02 + 3.375094474036331e+02 + 3.340190228447264e+02 + 3.305635632260179e+02 + 3.271427276872922e+02 + 3.237561788604219e+02 + 3.204035826343936e+02 + 3.170846077594078e+02 + 3.137989262426811e+02 + 3.105462135925898e+02 + 3.073261480789523e+02 + 3.041384108878384e+02 + 3.009826866110996e+02 + 2.978586626197819e+02 + 2.947660292278245e+02 + 2.917044799774912e+02 + 2.886737110898206e+02 + 2.856734216347172e+02 + 2.827033138205502e+02 + 2.797630925185924e+02 + 2.768524653868921e+02 + 2.739711430162750e+02 + 2.711188386172004e+02 + 2.682952682417776e+02 + 2.655001507075566e+02 + 2.627332073441469e+02 + 2.599941621974095e+02 + 2.572827420191948e+02 + 2.545986760992428e+02 + 2.519416963867954e+02 + 2.493115374004747e+02 + 2.467079361520411e+02 + 2.441306322519956e+02 + 2.415793676749632e+02 + 2.390538868162835e+02 + 2.365539368283623e+02 + 2.340792670618049e+02 + 2.316296291092408e+02 + 2.292047772816256e+02 + 2.268044680583002e+02 + 2.244284601550858e+02 + 2.220765149177526e+02 + 2.197483957886078e+02 + 2.174438683808943e+02 + 2.151627007150871e+02 + 2.129046628991759e+02 + 2.106695273325222e+02 + 2.084570687245048e+02 + 2.062670637405841e+02 + 2.040992912166423e+02 + 2.019535322675416e+02 + 1.998295699356443e+02 + 1.977271893831886e+02 + 1.956461779038128e+02 + 1.935863247355415e+02 + 1.915474213798307e+02 + 1.895292611678483e+02 + 1.875316391958052e+02 + 1.855543528482985e+02 + 1.835972014670904e+02 + 1.816599861324650e+02 + 1.797425099308505e+02 + 1.778445779263947e+02 + 1.759659969484732e+02 + 1.741065756739388e+02 + 1.722661246609050e+02 + 1.704444562587039e+02 + 1.686413847511611e+02 + 1.668567261386198e+02 + 1.650902980928235e+02 + 1.633419201885993e+02 + 1.616114136777071e+02 + 1.598986014805750e+02 + 1.582033083619683e+02 + 1.565253606828442e+02 + 1.548645864376032e+02 + 1.532208154238845e+02 + 1.515938789750561e+02 + 1.499836100268175e+02 + 1.483898432531407e+02 + 1.468124148175615e+02 + 1.452511624739094e+02 + 1.437059256375598e+02 + 1.421765451600804e+02 + 1.406628634671130e+02 + 1.391647245894945e+02 + 1.376819739463268e+02 + 1.362144585029153e+02 + 1.347620267668397e+02 + 1.333245285902542e+02 + 1.319018153476916e+02 + 1.304937399101563e+02 + 1.291001564496927e+02 + 1.277209206089626e+02 + 1.263558894821456e+02 + 1.250049214462411e+02 + 1.236678763269726e+02 + 1.223446153162142e+02 + 1.210350008534558e+02 + 1.197388968258891e+02 + 1.184561684202564e+02 + 1.171866820332312e+02 + 1.159303054814129e+02 + 1.146869078350233e+02 + 1.134563593521917e+02 + 1.122385316718855e+02 + 1.110332976232454e+02 + 1.098405311979204e+02 + 1.086601077608261e+02 + 1.074919038117468e+02 + 1.063357969778381e+02 + 1.051916662270612e+02 + 1.040593916259906e+02 + 1.029388543466298e+02 + 1.018299368341955e+02 + 1.007325226151947e+02 + 9.964649633160360e+01 + 9.857174381861689e+01 + 9.750815195741964e+01 + 9.645560874783912e+01 + 9.541400332430685e+01 + 9.438322582683587e+01 + 9.336316750654088e+01 + 9.235372071959520e+01 + 9.135477878367931e+01 + 9.036623609174318e+01 + 8.938798812110527e+01 + 8.841993128541375e+01 + 8.746196304638978e+01 + 8.651398190997742e+01 + 8.557588728936869e+01 + 8.464757961904559e+01 + 8.372896034435935e+01 + 8.281993180539014e+01 + 8.192039735296085e+01 + 8.103026128111058e+01 + 8.014942874495698e+01 + 7.927780590401203e+01 + 7.841529983858037e+01 + 7.756181847617736e+01 + 7.671727071446733e+01 + 7.588156631674119e+01 + 7.505461587372024e+01 + 7.423633095310755e+01 + 7.342662394299153e+01 + 7.262540803009301e+01 + 7.183259736215271e+01 + 7.104810687905130e+01 + 7.027185230277652e+01 + 6.950375028269488e+01 + 6.874371822566854e+01 + 6.799167430460268e+01 + 6.724753760248480e+01 + 6.651122793902957e+01 + 6.578266588744034e+01 + 6.506177289160765e+01 + 6.434847109859102e+01 + 6.364268339115934e+01 + 6.294433351272004e+01 + 6.225334589309644e+01 + 6.156964567793161e+01 + 6.089315882540817e+01 + 6.022381196253272e+01 + 5.956153243192431e+01 + 5.890624835784802e+01 + 5.825788851805937e+01 + 5.761638239540161e+01 + 5.698166019812880e+01 + 5.635365277455941e+01 + 5.573229169643452e+01 + 5.511750921575248e+01 + 5.450923819422894e+01 + 5.390741220139490e+01 + 5.331196548214332e+01 + 5.272283288224639e+01 + 5.213994992103501e+01 + 5.156325275682114e+01 + 5.099267813956413e+01 + 5.042816349744366e+01 + 4.986964685712531e+01 + 4.931706681520628e+01 + 4.877036264381848e+01 + 4.822947419115650e+01 + 4.769434186145065e+01 + 4.716490671386568e+01 + 4.664111036072763e+01 + 4.612289496053356e+01 + 4.561020331071316e+01 + 4.510297873475514e+01 + 4.460116508782800e+01 + 4.410470685618211e+01 + 4.361354903662819e+01 + 4.312763714409483e+01 + 4.264691728541290e+01 + 4.217133607138089e+01 + 4.170084064118655e+01 + 4.123537869187841e+01 + 4.077489840121474e+01 + 4.031934846724150e+01 + 3.986867813088396e+01 + 3.942283710103097e+01 + 3.898177559914080e+01 + 3.854544435810492e+01 + 3.811379455962712e+01 + 3.768677789368684e+01 + 3.726434656726136e+01 + 3.684645322013298e+01 + 3.643305096011807e+01 + 3.602409338288954e+01 + 3.561953452360934e+01 + 3.521932891649128e+01 + 3.482343153306697e+01 + 3.443179775085747e+01 + 3.404438343901749e+01 + 3.366114490993698e+01 + 3.328203887889210e+01 + 3.290702252020257e+01 + 3.253605343510379e+01 + 3.216908962260722e+01 + 3.180608952699355e+01 + 3.144701200592500e+01 + 3.109181631097627e+01 + 3.074046212448961e+01 + 3.039290952642646e+01 + 3.004911898312090e+01 + 2.970905136572861e+01 + 2.937266792505025e+01 + 2.903993030352619e+01 + 2.871080057194543e+01 + 2.838524113862799e+01 + 2.806321475945346e+01 + 2.774468462701056e+01 + 2.742961427426368e+01 + 2.711796757973106e+01 + 2.680970882898042e+01 + 2.650480264209962e+01 + 2.620321398820359e+01 + 2.590490820737408e+01 + 2.560985096325826e+01 + 2.531800827674159e+01 + 2.502934653543958e+01 + 2.474383242809609e+01 + 2.446143296972707e+01 + 2.418211555345684e+01 + 2.390584787621480e+01 + 2.363259794654911e+01 + 2.336233413255323e+01 + 2.309502509558490e+01 + 2.283063979379989e+01 + 2.256914753657127e+01 + 2.231051792982671e+01 + 2.205472087402378e+01 + 2.180172658443576e+01 + 2.155150556919213e+01 + 2.130402866286656e+01 + 2.105926696778129e+01 + 2.081719185319289e+01 + 2.057777503962135e+01 + 2.034098850331043e+01 + 2.010680447006149e+01 + 1.987519550063876e+01 + 1.964613442528577e+01 + 1.941959432580914e+01 + 1.919554855827313e+01 + 1.897397075515799e+01 + 1.875483482712853e+01 + 1.853811494931854e+01 + 1.832378554313712e+01 + 1.811182128985819e+01 + 1.790219714756028e+01 + 1.769488831219516e+01 + 1.748987022919803e+01 + 1.728711861052799e+01 + 1.708660939866258e+01 + 1.688831878332332e+01 + 1.669222321036695e+01 + 1.649829934690638e+01 + 1.630652410217020e+01 + 1.611687463464447e+01 + 1.592932831698975e+01 + 1.574386275792588e+01 + 1.556045580679505e+01 + 1.537908552081595e+01 + 1.519973018767385e+01 + 1.502236832516821e+01 + 1.484697865494502e+01 + 1.467354012841447e+01 + 1.450203191274907e+01 + 1.433243337158686e+01 + 1.416472409674524e+01 + 1.399888388846149e+01 + 1.383489273805109e+01 + 1.367273085728561e+01 + 1.351237865788487e+01 + 1.335381673920349e+01 + 1.319702591751814e+01 + 1.304198719993403e+01 + 1.288868177614133e+01 + 1.273709104714046e+01 + 1.258719659672914e+01 + 1.243898018736778e+01 + 1.229242378719869e+01 + 1.214750954184370e+01 + 1.200421977308728e+01 + 1.186253699764556e+01 + 1.172244390266849e+01 + 1.158392335040491e+01 + 1.144695839482221e+01 + 1.131153225250660e+01 + 1.117762830926809e+01 + 1.104523013501555e+01 + 1.091432145806843e+01 + 1.078488617566414e+01 + 1.065690836231677e+01 + 1.053037224372639e+01 + 1.040526220941685e+01 + 1.028156282144551e+01 + 1.015925878941852e+01 + 1.003833498402321e+01 + 9.918776439618298e+00 + 9.800568334039683e+00 + 9.683696005431957e+00 + 9.568144946174611e+00 + 9.453900787919052e+00 + 9.340949322860192e+00 + 9.229276489267212e+00 + 9.118868359446189e+00 + 9.009711163642070e+00 + 8.901791273796370e+00 + 8.795095191785947e+00 + 8.689609570648638e+00 + 8.585321201853549e+00 + 8.482217005296002e+00 + 8.380284046581689e+00 + 8.279509523576925e+00 + 8.179880760330461e+00 + 8.081385224417300e+00 + 7.984010508389771e+00 + 7.887744326863491e+00 + 7.792574535206823e+00 + 7.698489109519010e+00 + 7.605476146133772e+00 + 7.513523878187234e+00 + 7.422620653280592e+00 + 7.332754935473541e+00 + 7.243915322674125e+00 + 7.156090524556396e+00 + 7.069269365741123e+00 + 6.983440797017198e+00 + 6.898593877074525e+00 + 6.814717779007339e+00 + 6.731801797516630e+00 + 6.649835331100769e+00 + 6.568807890289103e+00 + 6.488709103685009e+00 + 6.409528699865692e+00 + 6.331256515961359e+00 + 6.253882503643640e+00 + 6.177396712290002e+00 + 6.101789297547966e+00 + 6.027050522250886e+00 + 5.953170745278158e+00 + 5.880140434362498e+00 + 5.807950156612827e+00 + 5.736590570385212e+00 + 5.666052441485230e+00 + 5.596326632559173e+00 + 5.527404095182261e+00 + 5.459275884510260e+00 + 5.391933149962507e+00 + 5.325367127621260e+00 + 5.259569151260657e+00 + 5.194530647433734e+00 + 5.130243129823101e+00 + 5.066698206416531e+00 + 5.003887570881058e+00 + 4.941803001453549e+00 + 4.880436373900456e+00 + 4.819779643419130e+00 + 4.759824844738533e+00 + 4.700564110200850e+00 + 4.641989649988083e+00 + 4.584093751736625e+00 + 4.526868793565781e+00 + 4.470307230074105e+00 + 4.414401594729965e+00 + 4.359144507919768e+00 + 4.304528662004969e+00 + 4.250546825086277e+00 + 4.197191851627622e+00 + 4.144456666159979e+00 + 4.092334266478478e+00 + 4.040817732600400e+00 + 3.989900213340690e+00 + 3.939574930757155e+00 + 3.889835183170760e+00 + 3.840674335613269e+00 + 3.792085827136757e+00 + 3.744063169627271e+00 + 3.696599938809659e+00 + 3.649689781941428e+00 + 3.603326418080199e+00 + 3.557503628382808e+00 + 3.512215261374414e+00 + 3.467455236465362e+00 + 3.423217534816642e+00 + 3.379496201686086e+00 + 3.336285348654454e+00 + 3.293579148649655e+00 + 3.251371841226642e+00 + 3.209657725464606e+00 + 3.168431157939940e+00 + 3.127686563504146e+00 + 3.087418425005168e+00 + 3.047621281181530e+00 + 3.008289735457784e+00 + 2.969418446796439e+00 + 2.931002129285814e+00 + 2.893035560502260e+00 + 2.855513571053400e+00 + 2.818431044951714e+00 + 2.781782927380857e+00 + 2.745564215550934e+00 + 2.709769959926351e+00 + 2.674395268211684e+00 + 2.639435297946605e+00 + 2.604885259637663e+00 + 2.570740420206636e+00 + 2.536996093812299e+00 + 2.503647644969884e+00 + 2.470690493614489e+00 + 2.438120105903952e+00 + 2.405931997235836e+00 + 2.374121735683807e+00 + 2.342684934097179e+00 + 2.311617253784086e+00 + 2.280914406216957e+00 + 2.250572146781167e+00 + 2.220586279273893e+00 + 2.190952653478714e+00 + 2.161667162009881e+00 + 2.132725747880213e+00 + 2.104124396422602e+00 + 2.075859132902099e+00 + 2.047926031580743e+00 + 2.020321209266692e+00 + 1.993040822266800e+00 + 1.966081073072867e+00 + 1.939438205166541e+00 + 1.913108500802827e+00 + 1.887088286918805e+00 + 1.861373929947225e+00 + 1.835961834345823e+00 + 1.810848447621857e+00 + 1.786030255213551e+00 + 1.761503779943143e+00 + 1.737265586321442e+00 + 1.713312275115213e+00 + 1.689640483715834e+00 + 1.666246890168493e+00 + 1.643128207113473e+00 + 1.620281182788458e+00 + 1.597702604935450e+00 + 1.575389294699183e+00 + 1.553338108095691e+00 + 1.531545938928566e+00 + 1.510009713407906e+00 + 1.488726392261371e+00 + 1.467692971937850e+00 + 1.446906480207705e+00 + 1.426363979153670e+00 + 1.406062564959602e+00 + 1.385999363940103e+00 + 1.366171536058216e+00 + 1.346576274130787e+00 + 1.327210800124654e+00 + 1.308072368828510e+00 + 1.289158266486426e+00 + 1.270465807665891e+00 + 1.251992339187792e+00 + 1.233735237889272e+00 + 1.215691907984316e+00 + 1.197859785096899e+00 + 1.180236333919823e+00 + 1.162819045897185e+00 + 1.145605442741095e+00 + 1.128593073973588e+00 + 1.111779515284567e+00 + 1.095162371880828e+00 + 1.078739275475473e+00 + 1.062507883334588e+00 + 1.046465881646835e+00 + 1.030610981874106e+00 + 1.014940920295882e+00 + 9.994534611152829e-01 + 9.841463930086627e-01 + 9.690175291593270e-01 + 9.540647093618980e-01 + 9.392857969051628e-01 + 9.246786792729085e-01 + 9.102412696338000e-01 + 8.959715035501604e-01 + 8.818673402027871e-01 + 8.679267639726700e-01 + 8.541477806828601e-01 + 8.405284189410931e-01 + 8.270667316623297e-01 + 8.137607925445277e-01 + 8.006086976874616e-01 + 7.876085666023992e-01 + 7.747585387876328e-01 + 7.620567754307064e-01 + 7.495014602973783e-01 + 7.370907966216457e-01 + 7.248230088485250e-01 + 7.126963429559050e-01 + 7.007090638413013e-01 + 6.888594572109231e-01 + 6.771458292779966e-01 + 6.655665045807759e-01 + 6.541198279036498e-01 + 6.428041637825399e-01 + 6.316178947210964e-01 + 6.205594229105623e-01 + 6.096271692194244e-01 + 5.988195719936049e-01 + 5.881350889221284e-01 + 5.775721954595900e-01 + 5.671293841176136e-01 + 5.568051664208875e-01 + 5.465980707194322e-01 + 5.365066418737608e-01 + 5.265294432641988e-01 + 5.166650544231339e-01 + 5.069120710261563e-01 + 4.972691065208522e-01 + 4.877347899800689e-01 + 4.783077664492044e-01 + 4.689866979017357e-01 + 4.597702612073233e-01 + 4.506571489021905e-01 + 4.416460700276524e-01 + 4.327357479310139e-01 + 4.239249212044141e-01 + 4.152123442913231e-01 + 4.065967853823845e-01 + 3.980770275573000e-01 + 3.896518691214699e-01 + 3.813201217302061e-01 + 3.730806117264635e-01 + 3.649321798861945e-01 + 3.568736798624809e-01 + 3.489039797704173e-01 + 3.410219613244947e-01 + 3.332265187013593e-01 + 3.255165605086018e-01 + 3.178910083898543e-01 + 3.103487958586359e-01 + 3.028888701360887e-01 + 2.955101913786422e-01 + 2.882117315106021e-01 + 2.809924755137371e-01 + 2.738514204626846e-01 + 2.667875748867065e-01 + 2.597999604522775e-01 + 2.528876103054370e-01 + 2.460495685714950e-01 + 2.392848919788540e-01 + 2.325926484518769e-01 + 2.259719167857841e-01 + 2.194217877354759e-01 + 2.129413627175208e-01 + 2.065297538274627e-01 + 2.001860848470379e-01 + 1.939094897086202e-01 + 1.876991127051828e-01 + 1.815541094417414e-01 + 1.754736452756007e-01 + 1.694568956974621e-01 + 1.635030470498157e-01 + 1.576112950508609e-01 + 1.517808453564031e-01 + 1.460109140364644e-01 + 1.403007261766342e-01 + 1.346495165784953e-01 + 1.290565300180611e-01 + 1.235210199704221e-01 + 1.180422494287421e-01 + 1.126194909047226e-01 + 1.072520253105725e-01 + 1.019391428882170e-01 + 9.668014295417104e-02 + 9.147433293860986e-02 + 8.632102939670111e-02 + 8.121955756354367e-02 + 7.616925052308399e-02 + 7.116945022739722e-02 + 6.621950693894064e-02 + 6.131877854698166e-02 + 5.646663155698649e-02 + 5.166244039926220e-02 + 4.690558691983024e-02 + 4.219546135291571e-02 + 3.753146148005052e-02 + 3.291299228995687e-02 + 2.833946692296159e-02 + 2.381030573044091e-02 + 1.932493608562982e-02 + 1.488279323951757e-02 + 1.048331933378767e-02 + 6.125963364112487e-03 + 1.810181928441051e-03 + -2.464561780353438e-03 + -6.698797872311066e-03 + -1.089304914227914e-02 + -1.504783206514415e-02 + -1.916365656771068e-02 + -2.324102555134537e-02 + -2.728043585421590e-02 + -3.128237791440187e-02 + -3.524733543518016e-02 + -3.917578628623598e-02 + -4.306820207473552e-02 + -4.692504798332473e-02 + -5.074678357205704e-02 + -5.453386225593208e-02 + -5.828673132987599e-02 + -6.200583267980977e-02 + -6.569160218738558e-02 + -6.934446987831328e-02 + -7.296486055963237e-02 + -7.655319319650564e-02 + -8.010988114185758e-02 + -8.363533270338043e-02 + -8.712995053780122e-02 + -9.059413193193132e-02 + -9.402826926020177e-02 + -9.743274938790861e-02 + -1.008079541064505e-01 + -1.041542604608216e-01 + -1.074720401131623e-01 + -1.107616598682374e-01 + -1.140234819193764e-01 + -1.172578632830942e-01 + -1.204651563472630e-01 + -1.236457089966172e-01 + -1.267998640735528e-01 + -1.299279600346222e-01 + -1.330303309819349e-01 + -1.361073061299021e-01 + -1.391592104828469e-01 + -1.421863647988072e-01 + -1.451890851855495e-01 + -1.481676836992942e-01 + -1.511224682100277e-01 + -1.540537421399553e-01 + -1.569618050599837e-01 + -1.598469524764272e-01 + -1.627094755828420e-01 + -1.655496618778017e-01 + -1.683677949236447e-01 + -1.711641541517163e-01 + -1.739390154343296e-01 + -1.766926508045859e-01 + -1.794253283544359e-01 + -1.821373127460387e-01 + -1.848288648981078e-01 + -1.875002419786971e-01 + -1.901516978443653e-01 + -1.927834826976386e-01 + -1.953958431846420e-01 + -1.979890227559544e-01 + -2.005632612952037e-01 + -2.031187952951354e-01 + -2.056558581586019e-01 + -2.081746798356756e-01 + -2.106754870586183e-01 + -2.131585035595214e-01 + -2.156239496932611e-01 + -2.180720427808593e-01 + -2.205029972492180e-01 + -2.229170242226580e-01 + -2.253143319488933e-01 + -2.276951258807381e-01 + -2.300596082676421e-01 + -2.324079786235529e-01 + -2.347404337552020e-01 + -2.370571673694448e-01 + -2.393583705568364e-01 + -2.416442317867498e-01 + -2.439149365965413e-01 + -2.461706679522762e-01 + -2.484116061949506e-01 + -2.506379289887288e-01 + -2.528498115997045e-01 + -2.550474267213886e-01 + -2.572309443123204e-01 + -2.594005320626763e-01 + -2.615563552809436e-01 + -2.636985766193694e-01 + -2.658273564814242e-01 + -2.679428529152917e-01 + -2.700452216727706e-01 + -2.721346163277996e-01 + -2.742111879420810e-01 + -2.762750854486131e-01 + -2.783264557785196e-01 + -2.803654434689624e-01 + -2.823921908087395e-01 + -2.844068381756654e-01 + -2.864095239109061e-01 + -2.884003839950212e-01 + -2.903795524955394e-01 + -2.923471617904532e-01 + -2.943033420191942e-01 + -2.962482212763220e-01 + -2.981819256807660e-01 + -3.001045795717013e-01 + -3.020163055275332e-01 + -3.039172239885258e-01 + -3.058074538261057e-01 + -3.076871122705734e-01 + -3.095563141516905e-01 + -3.114151727559051e-01 + -3.132637999546681e-01 + -3.151023057635463e-01 + -3.169307984585886e-01 + -3.187493845723606e-01 + -3.205581689117248e-01 + -3.223572548745565e-01 + -3.241467443749414e-01 + -3.259267374142799e-01 + -3.276973325691862e-01 + -3.294586270053045e-01 + -3.312107160890871e-01 + -3.329536937962613e-01 + -3.346876527428858e-01 + -3.364126840777460e-01 + -3.381288775295205e-01 + -3.398363212268976e-01 + -3.415351019703767e-01 + -3.432253052941175e-01 + -3.449070152459444e-01 + -3.465803145779997e-01 + -3.482452848007116e-01 + -3.499020059501182e-01 + -3.515505568826250e-01 + -3.531910152859590e-01 + -3.548234573752725e-01 + -3.564479582224311e-01 + -3.580645917875246e-01 + -3.596734306319520e-01 + -3.612745463110025e-01 + -3.628680093075062e-01 + -3.644538885605036e-01 + -3.660322520458910e-01 + -3.676031668332329e-01 + -3.691666987516095e-01 + -3.707229124779602e-01 + -3.722718716670178e-01 + -3.738136390608672e-01 + -3.753482761467254e-01 + -3.768758432749062e-01 + -3.783964002465877e-01 + -3.799100056353694e-01 + -3.814167166997948e-01 + -3.829165900177774e-01 + -3.844096813827866e-01 + -3.858960456354959e-01 + -3.873757364088854e-01 + -3.888488064600710e-01 + -3.903153077375676e-01 + -3.917752913452379e-01 + -3.932288075353338e-01 + -3.946759055987133e-01 + -3.961166339473677e-01 + -3.975510402779339e-01 + -3.989791715122148e-01 + -4.004010735521537e-01 + -4.018167915706618e-01 + -4.032263700983349e-01 + -4.046298528561717e-01 + -4.060272827301947e-01 + -4.074187016384220e-01 + -4.088041511045764e-01 + -4.101836719923956e-01 + -4.115573039941210e-01 + -4.129250863351419e-01 + -4.142870577221169e-01 + -4.156432559911067e-01 + -4.169937183587125e-01 + -4.183384813924751e-01 + -4.196775807600287e-01 + -4.210110517890521e-01 + -4.223389293056927e-01 + -4.236612469859990e-01 + -4.249780381358575e-01 + -4.262893357128523e-01 + -4.275951718561576e-01 + -4.288955781548201e-01 + -4.301905856512787e-01 + -4.314802245948859e-01 + -4.327645248125306e-01 + -4.340435157401011e-01 + -4.353172261319986e-01 + -4.365856843065750e-01 + -4.378489181140523e-01 + -4.391069545111200e-01 + -4.403598201489721e-01 + -4.416075414900063e-01 + -4.428501441617211e-01 + -4.440876533447125e-01 + -4.453200938994337e-01 + -4.465474900663732e-01 + -4.477698656375739e-01 + -4.489872440132049e-01 + -4.501996482091757e-01 + -4.514071007293397e-01 + -4.526096234423685e-01 + -4.538072381973440e-01 + -4.549999664346564e-01 + -4.561878287239103e-01 + -4.573708454564815e-01 + -4.585490367840940e-01 + -4.597224223838171e-01 + -4.608910215483196e-01 + -4.620548532229073e-01 + -4.632139359470852e-01 + -4.643682878385313e-01 + -4.655179266829866e-01 + -4.666628700026897e-01 + -4.678031349656974e-01 + -4.689387384105899e-01 + -4.700696968538801e-01 + -4.711960263436956e-01 + -4.723177425902391e-01 + -4.734348612979066e-01 + -4.745473978039702e-01 + -4.756553669920032e-01 + -4.767587833133353e-01 + -4.778576611599107e-01 + -4.789520147944609e-01 + -4.800418577229591e-01 + -4.811272034289876e-01 + -4.822080654661853e-01 + -4.832844566828151e-01 + -4.843563896207272e-01 + -4.854238767122197e-01 + -4.864869303811440e-01 + -4.875455627166793e-01 + -4.885997853037442e-01 + -4.896496095260600e-01 + -4.906950466868944e-01 + -4.917361080077966e-01 + -4.927728043326091e-01 + -4.938051461993963e-01 + -4.948331438840640e-01 + -4.958568075736277e-01 + -4.968761473512240e-01 + -4.978911731225704e-01 + -4.989018945002663e-01 + -4.999083208482176e-01 + -5.009104613021941e-01 + -5.019083248972503e-01 + -5.029019205602130e-01 + -5.038912570358333e-01 + -5.048763428126108e-01 + -5.058571862004539e-01 + -5.068337954285524e-01 + -5.078061785541023e-01 + -5.087743434557772e-01 + -5.097382978215317e-01 + -5.106980492175714e-01 + -5.116536051046018e-01 + -5.126049728172039e-01 + -5.135521595357905e-01 + -5.144951722594635e-01 + -5.154340177423219e-01 + -5.163687027408718e-01 + -5.172992340140365e-01 + -5.182256180631845e-01 + -5.191478612397169e-01 + -5.200659697981208e-01 + -5.209799499565910e-01 + -5.218898077706294e-01 + -5.227955490891694e-01 + -5.236971796844924e-01 + -5.245947053253370e-01 + -5.254881317688337e-01 + -5.263774645512288e-01 + -5.272627090126604e-01 + -5.281438703531137e-01 + -5.290209539977515e-01 + -5.298939652703512e-01 + -5.307629091340913e-01 + -5.316277904778723e-01 + -5.324886142110474e-01 + -5.333453852986519e-01 + -5.341981085648844e-01 + -5.350467886587517e-01 + -5.358914300418783e-01 + -5.367320373706596e-01 + -5.375686152841432e-01 + -5.384011680734792e-01 + -5.392297001047128e-01 + -5.400542157871245e-01 + -5.408747194069761e-01 + -5.416912150785628e-01 + -5.425037068232484e-01 + -5.433121987186342e-01 + -5.441166948984431e-01 + -5.449171994793097e-01 + -5.457137163885653e-01 + -5.465062494211190e-01 + -5.472948023341125e-01 + -5.480793790518950e-01 + -5.488599834110802e-01 + -5.496366191273470e-01 + -5.504092899443518e-01 + -5.511779994928784e-01 + -5.519427513029639e-01 + -5.527035490710489e-01 + -5.534603964642170e-01 + -5.542132970155166e-01 + -5.549622540841348e-01 + -5.557072711574547e-01 + -5.564483519201564e-01 + -5.571854997347668e-01 + -5.579187179919134e-01 + -5.586480102698358e-01 + -5.593733798207278e-01 + -5.600948299343745e-01 + -5.608123641702291e-01 + -5.615259858006734e-01 + -5.622356980349319e-01 + -5.629415042452564e-01 + -5.636434078437447e-01 + -5.643414121719204e-01 + -5.650355204128609e-01 + -5.657257359067179e-01 + -5.664120620074502e-01 + -5.670945018655422e-01 + -5.677730587569899e-01 + -5.684477360210265e-01 + -5.691185368946378e-01 + -5.697854646230838e-01 + -5.704485224954847e-01 + -5.711077138615709e-01 + -5.717630418949810e-01 + -5.724145097236072e-01 + -5.730621208149326e-01 + -5.737058785857441e-01 + -5.743457862811681e-01 + -5.749818469287452e-01 + -5.756140639044424e-01 + -5.762424408221788e-01 + -5.768669806578469e-01 + -5.774876866716016e-01 + -5.781045625480883e-01 + -5.787176116189466e-01 + -5.793268371095267e-01 + -5.799322422747063e-01 + -5.805338304985933e-01 + -5.811316053198213e-01 + -5.817255703521417e-01 + -5.823157287697720e-01 + -5.829020838792335e-01 + -5.834846393919914e-01 + -5.840633987477251e-01 + -5.846383653791880e-01 + -5.852095428966003e-01 + -5.857769347455314e-01 + -5.863405444497650e-01 + -5.869003757905312e-01 + -5.874564321893059e-01 + -5.880087171065591e-01 + -5.885572344676900e-01 + -5.891019879107314e-01 + -5.896429809482692e-01 + -5.901802172691951e-01 + -5.907137006344829e-01 + -5.912434348345698e-01 + -5.917694236578408e-01 + -5.922916709366750e-01 + -5.928101804947136e-01 + -5.933249560457028e-01 + -5.938360014505492e-01 + -5.943433207019595e-01 + -5.948469177828256e-01 + -5.953467966083078e-01 + -5.958429610716830e-01 + -5.963354151930935e-01 + -5.968241629967538e-01 + -5.973092085065336e-01 + -5.977905558475627e-01 + -5.982682091919279e-01 + -5.987421727060626e-01 + -5.992124504335189e-01 + -5.996790465513929e-01 + -6.001419654039183e-01 + -6.006012111567195e-01 + -6.010567880969444e-01 + -6.015087007096906e-01 + -6.019569532209035e-01 + -6.024015499278780e-01 + -6.028424953542454e-01 + -6.032797938560218e-01 + -6.037134498528102e-01 + -6.041434679778884e-01 + -6.045698527611498e-01 + -6.049926086966888e-01 + -6.054117403213235e-01 + -6.058272522301629e-01 + -6.062391491063152e-01 + -6.066474357377917e-01 + -6.070521167750024e-01 + -6.074531969194140e-01 + -6.078506811508277e-01 + -6.082445741313003e-01 + -6.086348804777613e-01 + -6.090216052590219e-01 + -6.094047534940796e-01 + -6.097843300758768e-01 + -6.101603397998798e-01 + -6.105327877567767e-01 + -6.109016791586246e-01 + -6.112670188349342e-01 + -6.116288118244032e-01 + -6.119870634033990e-01 + -6.123417788015699e-01 + -6.126929631816058e-01 + -6.130406216857481e-01 + -6.133847595846266e-01 + -6.137253821544012e-01 + -6.140624946688724e-01 + -6.143961025253998e-01 + -6.147262111225434e-01 + -6.150528258526081e-01 + -6.153759522847098e-01 + -6.156955958775930e-01 + -6.160117619293205e-01 + -6.163244560848270e-01 + -6.166336840291214e-01 + -6.169394513190288e-01 + -6.172417635406579e-01 + -6.175406263458638e-01 + -6.178360454670117e-01 + -6.181280266570051e-01 + -6.184165756494230e-01 + -6.187016981615432e-01 + -6.189834001775048e-01 + -6.192616876391890e-01 + -6.195365661632112e-01 + -6.198080416901866e-01 + -6.200761202902517e-01 + -6.203408078682074e-01 + -6.206021103982113e-01 + -6.208600339819080e-01 + -6.211145848662764e-01 + -6.213657689929696e-01 + -6.216135922609831e-01 + -6.218580610691606e-01 + -6.220991816188346e-01 + -6.223369599996067e-01 + -6.225714026287344e-01 + -6.228025157602012e-01 + -6.230303055354752e-01 + -6.232547783843585e-01 + -6.234759406837302e-01 + -6.236937987287140e-01 + -6.239083589372102e-01 + -6.241196278170006e-01 + -6.243276119301496e-01 + -6.245323178052680e-01 + -6.247337518435782e-01 + -6.249319204108740e-01 + -6.251268303788342e-01 + -6.253184884524475e-01 + -6.255069009766967e-01 + -6.256920746682559e-01 + -6.258740163701917e-01 + -6.260527328726909e-01 + -6.262282307801417e-01 + -6.264005167589047e-01 + -6.265695976839164e-01 + -6.267354804070123e-01 + -6.268981717782514e-01 + -6.270576786775590e-01 + -6.272140080071444e-01 + -6.273671666729116e-01 + -6.275171615794166e-01 + -6.276639997579259e-01 + -6.278076882572314e-01 + -6.279482340166599e-01 + -6.280856440870369e-01 + -6.282199255881125e-01 + -6.283510856176625e-01 + -6.284791313265480e-01 + -6.286040698559974e-01 + -6.287259082244099e-01 + -6.288446536460758e-01 + -6.289603134448759e-01 + -6.290728947784819e-01 + -6.291824049507972e-01 + -6.292888513285516e-01 + -6.293922409846477e-01 + -6.294925812787570e-01 + -6.295898797737625e-01 + -6.296841435561055e-01 + -6.297753800606519e-01 + -6.298635970427606e-01 + -6.299488015475858e-01 + -6.300310009429952e-01 + -6.301102030719377e-01 + -6.301864151575183e-01 + -6.302596446383568e-01 + -6.303298993873763e-01 + -6.303971867419816e-01 + -6.304615141097702e-01 + -6.305228892569528e-01 + -6.305813198299395e-01 + -6.306368133767261e-01 + -6.306893774095105e-01 + -6.307390196514921e-01 + -6.307857478830511e-01 + -6.308295697989852e-01 + -6.308704929504492e-01 + -6.309085250312678e-01 + -6.309436740902202e-01 + -6.309759477467396e-01 + -6.310053535533821e-01 + -6.310318994644450e-01 + -6.310555933584764e-01 + -6.310764430051494e-01 + -6.310944561130111e-01 + -6.311096405770181e-01 + -6.311220043955681e-01 + -6.311315554778594e-01 + -6.311383016234806e-01 + -6.311422506666780e-01 + -6.311434107412031e-01 + -6.311417897164122e-01 + -6.311373953205278e-01 + -6.311302357049288e-01 + -6.311203189243589e-01 + -6.311076528624781e-01 + -6.310922454230109e-01 + -6.310741047155799e-01 + -6.310532389686786e-01 + -6.310296560496979e-01 + -6.310033639455465e-01 + -6.309743708604478e-01 + -6.309426848479184e-01 + -6.309083139781310e-01 + -6.308712663782245e-01 + -6.308315500367087e-01 + -6.307891730465176e-01 + -6.307441436976022e-01 + -6.306964701860184e-01 + -6.306461606431758e-01 + -6.305932231701467e-01 + -6.305376659121696e-01 + -6.304794970062023e-01 + -6.304187245700347e-01 + -6.303553569805046e-01 + -6.302894025962669e-01 + -6.302208694979176e-01 + -6.301497657748981e-01 + -6.300760996409697e-01 + -6.299998795100692e-01 + -6.299211136514613e-01 + -6.298398102240708e-01 + -6.297559773915322e-01 + -6.296696236381925e-01 + -6.295807574013027e-01 + -6.294893864698483e-01 + -6.293955192818200e-01 + -6.292991645521353e-01 + -6.292003301703828e-01 + -6.290990243894826e-01 + -6.289952557946986e-01 + -6.288890326523825e-01 + -6.287803632353285e-01 + -6.286692558944412e-01 + -6.285557190083507e-01 + -6.284397608763040e-01 + -6.283213897612988e-01 + -6.282006141317734e-01 + -6.280774423035318e-01 + -6.279518824496017e-01 + -6.278239431715447e-01 + -6.276936329659792e-01 + -6.275609600561086e-01 + -6.274259327786519e-01 + -6.272885594754783e-01 + -6.271488484695774e-01 + -6.270068083043618e-01 + -6.268624473656752e-01 + -6.267157737459064e-01 + -6.265667960682418e-01 + -6.264155229504741e-01 + -6.262619625962428e-01 + -6.261061232036680e-01 + -6.259480131935671e-01 + -6.257876413121770e-01 + -6.256250157840939e-01 + -6.254601447340036e-01 + -6.252930366972961e-01 + -6.251237002207461e-01 + -6.249521437614608e-01 + -6.247783756272571e-01 + -6.246024042025771e-01 + -6.244242378628240e-01 + -6.242438848129136e-01 + -6.240613535991787e-01 + -6.238766528797192e-01 + -6.236897908519111e-01 + -6.235007757894835e-01 + -6.233096161276966e-01 + -6.231163203935827e-01 + -6.229208970207127e-01 + -6.227233543185018e-01 + -6.225237005131427e-01 + -6.223219439896936e-01 + -6.221180932821515e-01 + -6.219121568092019e-01 + -6.217041429518334e-01 + -6.214940600654550e-01 + -6.212819164164759e-01 + -6.210677203231969e-01 + -6.208514802076882e-01 + -6.206332045396580e-01 + -6.204129016762088e-01 + -6.201905798335827e-01 + -6.199662474146647e-01 + -6.197399127976954e-01 + -6.195115842446862e-01 + -6.192812702436963e-01 + -6.190489791767655e-01 + -6.188147191241502e-01 + -6.185784984898128e-01 + -6.183403256742428e-01 + -6.181002088023494e-01 + -6.178581563548247e-01 + -6.176141767575239e-01 + -6.173682779492388e-01 + -6.171204683326561e-01 + -6.168707564823446e-01 + -6.166191506410910e-01 + -6.163656588303806e-01 + -6.161102891648960e-01 + -6.158530502595377e-01 + -6.155939503803246e-01 + -6.153329975648972e-01 + -6.150702000825419e-01 + -6.148055662334609e-01 + -6.145391042808102e-01 + -6.142708224010276e-01 + -6.140007288452335e-01 + -6.137288318637003e-01 + -6.134551394181680e-01 + -6.131796597624336e-01 + -6.129024013716257e-01 + -6.126233721919256e-01 + -6.123425803085120e-01 + -6.120600340492245e-01 + -6.117757414641359e-01 + -6.114897106263320e-01 + -6.112019497520672e-01 + -6.109124671249474e-01 + -6.106212708396386e-01 + -6.103283687668304e-01 + -6.100337690977098e-01 + -6.097374799911853e-01 + -6.094395093910078e-01 + -6.091398653642833e-01 + -6.088385561024087e-01 + -6.085355898356886e-01 + -6.082309742898534e-01 + -6.079247173286892e-01 + -6.076168274335947e-01 + -6.073073125569597e-01 + -6.069961804304546e-01 + -6.066834389911383e-01 + -6.063690964791788e-01 + -6.060531610171422e-01 + -6.057356401425160e-01 + -6.054165419100932e-01 + -6.050958745176729e-01 + -6.047736455801236e-01 + -6.044498630713394e-01 + -6.041245351487873e-01 + -6.037976695799242e-01 + -6.034692741523835e-01 + -6.031393567367498e-01 + -6.028079252312161e-01 + -6.024749874110954e-01 + -6.021405510415967e-01 + -6.018046242357692e-01 + -6.014672148046522e-01 + -6.011283302871711e-01 + -6.007879786053585e-01 + -6.004461675660895e-01 + -6.001029047914931e-01 + -5.997581981158361e-01 + -5.994120553308485e-01 + -5.990644841299763e-01 + -5.987154923482985e-01 + -5.983650876334137e-01 + -5.980132773866208e-01 + -5.976600693793478e-01 + -5.973054714798371e-01 + -5.969494914365839e-01 + -5.965921366499265e-01 + -5.962334146660923e-01 + -5.958733334161985e-01 + -5.955119002909084e-01 + -5.951491227180785e-01 + -5.947850085981863e-01 + -5.944195652847630e-01 + -5.940528001366523e-01 + -5.936847210858313e-01 + -5.933153356463837e-01 + -5.929446511281147e-01 + -5.925726749957585e-01 + -5.921994146776245e-01 + -5.918248776317639e-01 + -5.914490714685531e-01 + -5.910720036664838e-01 + -5.906936815737919e-01 + -5.903141124838686e-01 + -5.899333037986367e-01 + -5.895512629817115e-01 + -5.891679973989596e-01 + -5.887835143677140e-01 + -5.883978211708401e-01 + -5.880109250637769e-01 + -5.876228334774148e-01 + -5.872335538851382e-01 + -5.868430932520374e-01 + -5.864514587624869e-01 + -5.860586578978172e-01 + -5.856646978273519e-01 + -5.852695857497323e-01 + -5.848733289413443e-01 + -5.844759343592291e-01 + -5.840774091773326e-01 + -5.836777608879199e-01 + -5.832769964405170e-01 + -5.828751228494087e-01 + -5.824721474461222e-01 + -5.820680771414760e-01 + -5.816629188869962e-01 + -5.812566799399100e-01 + -5.808493672421570e-01 + -5.804409877894702e-01 + -5.800315488931496e-01 + -5.796210574409676e-01 + -5.792095201878247e-01 + -5.787969440874288e-01 + -5.783833362006023e-01 + -5.779687035684036e-01 + -5.775530530727403e-01 + -5.771363914738108e-01 + -5.767187255974381e-01 + -5.763000625573806e-01 + -5.758804091701334e-01 + -5.754597721176316e-01 + -5.750381583420940e-01 + -5.746155745735496e-01 + -5.741920274506414e-01 + -5.737675239291555e-01 + -5.733420708457294e-01 + -5.729156748671344e-01 + -5.724883426083383e-01 + -5.720600807791615e-01 + -5.716308961653045e-01 + -5.712007954599810e-01 + -5.707697852850102e-01 + -5.703378722272431e-01 + -5.699050629355835e-01 + -5.694713639828742e-01 + -5.690367818720566e-01 + -5.686013232951076e-01 + -5.681649948578290e-01 + -5.677278029894381e-01 + -5.672897541841998e-01 + -5.668508549514105e-01 + -5.664111117923113e-01 + -5.659705312703284e-01 + -5.655291198708162e-01 + -5.650868839171556e-01 + -5.646438297396282e-01 + -5.641999637601537e-01 + -5.637552925169101e-01 + -5.633098223391846e-01 + -5.628635595080524e-01 + -5.624165104013904e-01 + -5.619686812129524e-01 + -5.615200782186582e-01 + -5.610707080464411e-01 + -5.606205767194389e-01 + -5.601696901727680e-01 + -5.597180550627928e-01 + -5.592656777039943e-01 + -5.588125640834879e-01 + -5.583587201544192e-01 + -5.579041522213387e-01 + -5.574488666805684e-01 + -5.569928694014434e-01 + -5.565361664370690e-01 + -5.560787640439252e-01 + -5.556206683493946e-01 + -5.551618853326125e-01 + -5.547024208857518e-01 + -5.542422809960397e-01 + -5.537814718214656e-01 + -5.533199995563840e-01 + -5.528578699065892e-01 + -5.523950887012330e-01 + -5.519316620139326e-01 + -5.514675956847120e-01 + -5.510028956792654e-01 + -5.505375681122012e-01 + -5.500716185256428e-01 + -5.496050526609592e-01 + -5.491378767346244e-01 + -5.486700964364043e-01 + -5.482017173715276e-01 + -5.477327453596050e-01 + -5.472631862648399e-01 + -5.467930458019109e-01 + -5.463223294669347e-01 + -5.458510432287255e-01 + -5.453791929736209e-01 + -5.449067840000759e-01 + -5.444338218966174e-01 + -5.439603123952597e-01 + -5.434862611282417e-01 + -5.430116738240560e-01 + -5.425365561436022e-01 + -5.420609134355956e-01 + -5.415847511352451e-01 + -5.411080748136494e-01 + -5.406308901525899e-01 + -5.401532026526268e-01 + -5.396750177177082e-01 + -5.391963408895222e-01 + -5.387171774649071e-01 + -5.382375326730170e-01 + -5.377574122460893e-01 + -5.372768215524759e-01 + -5.367957656717409e-01 + -5.363142502106338e-01 + -5.358322806031541e-01 + -5.353498619928253e-01 + -5.348669995911720e-01 + -5.343836987381033e-01 + -5.338999648334884e-01 + -5.334158029976483e-01 + -5.329312184607295e-01 + -5.324462166033185e-01 + -5.319608023124877e-01 + -5.314749807283198e-01 + -5.309887574568507e-01 + -5.305021373834015e-01 + -5.300151254489873e-01 + -5.295277270550899e-01 + -5.290399471460621e-01 + -5.285517906644440e-01 + -5.280632628772480e-01 + -5.275743687930865e-01 + -5.270851133485194e-01 + -5.265955015863814e-01 + -5.261055383771222e-01 + -5.256152286457003e-01 + -5.251245776074701e-01 + -5.246335901741112e-01 + -5.241422711040373e-01 + -5.236506252667474e-01 + -5.231586574906982e-01 + -5.226663726352896e-01 + -5.221737757253558e-01 + -5.216808715970676e-01 + -5.211876649797802e-01 + -5.206941607382560e-01 + -5.202003635069621e-01 + -5.197062778404161e-01 + -5.192119087096243e-01 + -5.187172609937223e-01 + -5.182223393579939e-01 + -5.177271482807863e-01 + -5.172316923981860e-01 + -5.167359765148800e-01 + -5.162400053033168e-01 + -5.157437833544083e-01 + -5.152473152222008e-01 + -5.147506055161414e-01 + -5.142536587718484e-01 + -5.137564794429633e-01 + -5.132590721404230e-01 + -5.127614414610688e-01 + -5.122635918987255e-01 + -5.117655278912282e-01 + -5.112672538418732e-01 + -5.107687741570007e-01 + -5.102700934318621e-01 + -5.097712161511054e-01 + -5.092721464952894e-01 + -5.087728887586368e-01 + -5.082734473837237e-01 + -5.077738269224511e-01 + -5.072740315773641e-01 + -5.067740655070005e-01 + -5.062739331645890e-01 + -5.057736389339202e-01 + -5.052731870571522e-01 + -5.047725816027976e-01 + -5.042718267556677e-01 + -5.037709267723895e-01 + -5.032698858620083e-01 + -5.027687082997551e-01 + -5.022673983228978e-01 + -5.017659599138892e-01 + -5.012643972224838e-01 + -5.007627144504877e-01 + -5.002609154317549e-01 + -4.997590043686060e-01 + -4.992569856498065e-01 + -4.987548629163329e-01 + -4.982526401066572e-01 + -4.977503215591422e-01 + -4.972479113357710e-01 + -4.967454132608579e-01 + -4.962428310876830e-01 + -4.957401690448965e-01 + -4.952374311333114e-01 + -4.947346209581790e-01 + -4.942317423902789e-01 + -4.937287995168010e-01 + -4.932257964768885e-01 + -4.927227367709692e-01 + -4.922196239985463e-01 + -4.917164622446805e-01 + -4.912132554897460e-01 + -4.907100074652099e-01 + -4.902067216434476e-01 + -4.897034018910860e-01 + -4.892000521396699e-01 + -4.886966760659724e-01 + -4.881932772071136e-01 + -4.876898592264887e-01 + -4.871864261030248e-01 + -4.866829812293292e-01 + -4.861795280147214e-01 + -4.856760706607693e-01 + -4.851726126266216e-01 + -4.846691571189501e-01 + -4.841657080652781e-01 + -4.836622690168214e-01 + -4.831588433295234e-01 + -4.826554347812969e-01 + -4.821520468729375e-01 + -4.816486828820545e-01 + -4.811453462713459e-01 + -4.806420406166251e-01 + -4.801387695127853e-01 + -4.796355363816449e-01 + -4.791323444815042e-01 + -4.786291970695780e-01 + -4.781260978727254e-01 + -4.776230503252043e-01 + -4.771200574973888e-01 + -4.766171228253449e-01 + -4.761142497486388e-01 + -4.756114415594656e-01 + -4.751087014547341e-01 + -4.746060327035595e-01 + -4.741034386828772e-01 + -4.736009226286348e-01 + -4.730984877717556e-01 + -4.725961373913972e-01 + -4.720938746127822e-01 + -4.715917026117559e-01 + -4.710896247171748e-01 + -4.705876440070008e-01 + -4.700857635192827e-01 + -4.695839864443119e-01 + -4.690823160197067e-01 + -4.685807553687465e-01 + -4.680793073815264e-01 + -4.675779752270572e-01 + -4.670767621237579e-01 + -4.665756710130068e-01 + -4.660747048828000e-01 + -4.655738667469987e-01 + -4.650731595624170e-01 + -4.645725864569897e-01 + -4.640721505529091e-01 + -4.635718546060059e-01 + -4.630717014390969e-01 + -4.625716940204364e-01 + -4.620718354412200e-01 + -4.615721285948061e-01 + -4.610725762550177e-01 + -4.605731814392849e-01 + -4.600739469669758e-01 + -4.595748755034438e-01 + -4.590759700613133e-01 + -4.585772335293120e-01 + -4.580786685902926e-01 + -4.575802780165928e-01 + -4.570820645542124e-01 + -4.565840309327809e-01 + -4.560861801183225e-01 + -4.555885148408127e-01 + -4.550910375242214e-01 + -4.545937511574892e-01 + -4.540966585092119e-01 + -4.535997618400510e-01 + -4.531030641427475e-01 + -4.526065682230286e-01 + -4.521102761991050e-01 + -4.516141909960451e-01 + -4.511183155232459e-01 + -4.506226519976986e-01 + -4.501272029129367e-01 + -4.496319709853875e-01 + -4.491369589904647e-01 + -4.486421693813144e-01 + -4.481476045149588e-01 + -4.476532669406306e-01 + -4.471591591812127e-01 + -4.466652837454304e-01 + -4.461716431800687e-01 + -4.456782399407630e-01 + -4.451850764283579e-01 + -4.446921550770006e-01 + -4.441994783152980e-01 + -4.437070485743053e-01 + -4.432148683148817e-01 + -4.427229399164072e-01 + -4.422312656936392e-01 + -4.417398479943503e-01 + -4.412486891611525e-01 + -4.407577915365379e-01 + -4.402671575060104e-01 + -4.397767893532367e-01 + -4.392866892910770e-01 + -4.387968597340107e-01 + -4.383073029681190e-01 + -4.378180210879689e-01 + -4.373290163087382e-01 + -4.368402909924953e-01 + -4.363518475687816e-01 + -4.358636880897754e-01 + -4.353758146064535e-01 + -4.348882293452391e-01 + -4.344009344375495e-01 + -4.339139321041776e-01 + -4.334272247184532e-01 + -4.329408142509990e-01 + -4.324547026649819e-01 + -4.319688922210647e-01 + -4.314833850702666e-01 + -4.309981832317592e-01 + -4.305132886299618e-01 + -4.300287034407881e-01 + -4.295444298858639e-01 + -4.290604699557538e-01 + -4.285768254794737e-01 + -4.280934983815344e-01 + -4.276104909880938e-01 + -4.271278053251724e-01 + -4.266454431999359e-01 + -4.261634065006114e-01 + -4.256816972235624e-01 + -4.252003173934318e-01 + -4.247192689049444e-01 + -4.242385536499166e-01 + -4.237581735472888e-01 + -4.232781305399061e-01 + -4.227984264773803e-01 + -4.223190631457318e-01 + -4.218400424415704e-01 + -4.213613663598799e-01 + -4.208830368540804e-01 + -4.204050553934426e-01 + -4.199274237890383e-01 + -4.194501442515862e-01 + -4.189732183034799e-01 + -4.184966476302857e-01 + -4.180204343198091e-01 + -4.175445800025869e-01 + -4.170690862458790e-01 + -4.165939547960728e-01 + -4.161191875920802e-01 + -4.156447863485650e-01 + -4.151707524172177e-01 + -4.146970878143395e-01 + -4.142237944432959e-01 + -4.137508735370036e-01 + -4.132783267358912e-01 + -4.128061559031381e-01 + -4.123343628419361e-01 + -4.118629489726368e-01 + -4.113919157251955e-01 + -4.109212649651476e-01 + -4.104509983224866e-01 + -4.099811172669397e-01 + -4.095116233202941e-01 + -4.090425181490535e-01 + -4.085738034100841e-01 + -4.081054804950061e-01 + -4.076375508831032e-01 + -4.071700161671795e-01 + -4.067028779692610e-01 + -4.062361376606066e-01 + -4.057697965353959e-01 + -4.053038563335837e-01 + -4.048383186645677e-01 + -4.043731849141807e-01 + -4.039084564103662e-01 + -4.034441345521896e-01 + -4.029802208230617e-01 + -4.025167167043049e-01 + -4.020536236099443e-01 + -4.015909428779320e-01 + -4.011286758375757e-01 + -4.006668238996902e-01 + -4.002053885607212e-01 + -3.997443712200008e-01 + -3.992837731698375e-01 + -3.988235956310492e-01 + -3.983638399923307e-01 + -3.979045076012857e-01 + -3.974455996644362e-01 + -3.969871175556028e-01 + -3.965290626455606e-01 + -3.960714361699136e-01 + -3.956142393772600e-01 + -3.951574735515524e-01 + -3.947011399985758e-01 + -3.942452398354794e-01 + -3.937897742524872e-01 + -3.933347447660869e-01 + -3.928801524442024e-01 + -3.924259983101159e-01 + -3.919722839283850e-01 + -3.915190103656777e-01 + -3.910661784756895e-01 + -3.906137895655892e-01 + -3.901618450499643e-01 + -3.897103461604648e-01 + -3.892592935529919e-01 + -3.888086884121152e-01 + -3.883585322771145e-01 + -3.879088261485191e-01 + -3.874595710701922e-01 + -3.870107681556456e-01 + -3.865624182556531e-01 + -3.861145225228043e-01 + -3.856670823544472e-01 + -3.852200986473037e-01 + -3.847735723987576e-01 + -3.843275047747315e-01 + -3.838818965026468e-01 + -3.834367486164244e-01 + -3.829920625791138e-01 + -3.825478392535004e-01 + -3.821040794322394e-01 + -3.816607841213338e-01 + -3.812179544462010e-01 + -3.807755914230820e-01 + -3.803336958584798e-01 + -3.798922686597118e-01 + -3.794513108818827e-01 + -3.790108236907996e-01 + -3.785708078449803e-01 + -3.781312640889848e-01 + -3.776921934895628e-01 + -3.772535969260590e-01 + -3.768154752452403e-01 + -3.763778294637203e-01 + -3.759406605249527e-01 + -3.755039692439986e-01 + -3.750677562951532e-01 + -3.746320226741715e-01 + -3.741967693787305e-01 + -3.737619968727901e-01 + -3.733277061470673e-01 + -3.728938983949728e-01 + -3.724605741247380e-01 + -3.720277341192338e-01 + -3.715953793429491e-01 + -3.711635103186269e-01 + -3.707321278978636e-01 + -3.703012331728173e-01 + -3.698708267439747e-01 + -3.694409092657609e-01 + -3.690114815572269e-01 + -3.685825444178367e-01 + -3.681540985405766e-01 + -3.677261445488677e-01 + -3.672986832474148e-01 + -3.668717154245260e-01 + -3.664452417818624e-01 + -3.660192630178876e-01 + -3.655937798167319e-01 + -3.651687928442244e-01 + -3.647443027770453e-01 + -3.643203103057334e-01 + -3.638968161236534e-01 + -3.634738208501973e-01 + -3.630513251204181e-01 + -3.626293296340570e-01 + -3.622078349959966e-01 + -3.617868418102546e-01 + -3.613663507559756e-01 + -3.609463624258993e-01 + -3.605268773947004e-01 + -3.601078962972172e-01 + -3.596894197319259e-01 + -3.592714482724653e-01 + -3.588539824938156e-01 + -3.584370229705016e-01 + -3.580205702765974e-01 + -3.576046249835235e-01 + -3.571891876270012e-01 + -3.567742587321382e-01 + -3.563598388637925e-01 + -3.559459285557617e-01 + -3.555325283179373e-01 + -3.551196386794110e-01 + -3.547072601423791e-01 + -3.542953931967586e-01 + -3.538840383835105e-01 + -3.534731961849680e-01 + -3.530628670336623e-01 + -3.526530514374770e-01 + -3.522437498876279e-01 + -3.518349628366106e-01 + -3.514266907403692e-01 + -3.510189340474827e-01 + -3.506116931966672e-01 + -3.502049686305037e-01 + -3.497987607886671e-01 + -3.493930701015490e-01 + -3.489878969787067e-01 + -3.485832418243141e-01 + -3.481791050461803e-01 + -3.477754870557839e-01 + -3.473723882547367e-01 + -3.469698090253131e-01 + -3.465677497415546e-01 + -3.461662107762984e-01 + -3.457651925045610e-01 + -3.453646952920019e-01 + -3.449647194961470e-01 + -3.445652654674211e-01 + -3.441663335489293e-01 + -3.437679240760669e-01 + -3.433700373751777e-01 + -3.429726737709668e-01 + -3.425758335909973e-01 + -3.421795171685511e-01 + -3.417837248082679e-01 + -3.413884567949557e-01 + -3.409937134173290e-01 + -3.405994949798623e-01 + -3.402058017865278e-01 + -3.398126341027504e-01 + -3.394199921921239e-01 + -3.390278763247643e-01 + -3.386362867748747e-01 + -3.382452237948665e-01 + -3.378546876227794e-01 + -3.374646785249709e-01 + -3.370751967392704e-01 + -3.366862424749215e-01 + -3.362978159833941e-01 + -3.359099174981644e-01 + -3.355225472182573e-01 + -3.351357053498810e-01 + -3.347493921057998e-01 + -3.343636076973308e-01 + -3.339783523006465e-01 + -3.335936261089775e-01 + -3.332094293460974e-01 + -3.328257621547543e-01 + -3.324426246881435e-01 + -3.320600171619409e-01 + -3.316779397280902e-01 + -3.312963925265998e-01 + -3.309153757279716e-01 + -3.305348894653861e-01 + -3.301549338737799e-01 + -3.297755091265357e-01 + -3.293966153413448e-01 + -3.290182526215280e-01 + -3.286404211114115e-01 + -3.282631209285871e-01 + -3.278863521751846e-01 + -3.275101149642331e-01 + -3.271344093953196e-01 + -3.267592355617253e-01 + -3.263845935667566e-01 + -3.260104834866909e-01 + -3.256369053882101e-01 + -3.252638593756906e-01 + -3.248913455268053e-01 + -3.245193638907094e-01 + -3.241479145199382e-01 + -3.237769974872735e-01 + -3.234066128661293e-01 + -3.230367606622389e-01 + -3.226674409186036e-01 + -3.222986537192250e-01 + -3.219303990783447e-01 + -3.215626770146125e-01 + -3.211954875680534e-01 + -3.208288307426270e-01 + -3.204627065455645e-01 + -3.200971150001409e-01 + -3.197320561103191e-01 + -3.193675298795836e-01 + -3.190035363166080e-01 + -3.186400754009213e-01 + -3.182771471114187e-01 + -3.179147514432106e-01 + -3.175528883799994e-01 + -3.171915578921511e-01 + -3.168307599394173e-01 + -3.164704945026028e-01 + -3.161107615528752e-01 + -3.157515610223091e-01 + -3.153928928534279e-01 + -3.150347570035595e-01 + -3.146771534412893e-01 + -3.143200821026652e-01 + -3.139635429048980e-01 + -3.136075357713601e-01 + -3.132520606345795e-01 + -3.128971174301287e-01 + -3.125427060850263e-01 + -3.121888265003789e-01 + -3.118354785699559e-01 + -3.114826622209773e-01 + -3.111303773636806e-01 + -3.107786238863177e-01 + -3.104274016699458e-01 + -3.100767106006651e-01 + -3.097265505731036e-01 + -3.093769214901858e-01 + -3.090278232197667e-01 + -3.086792556057311e-01 + -3.083312185528201e-01 + -3.079837119302323e-01 + -3.076367355606988e-01 + -3.072902893338402e-01 + -3.069443731087555e-01 + -3.065989866918071e-01 + -3.062541299629242e-01 + -3.059098027895394e-01 + -3.055660049841727e-01 + -3.052227363624680e-01 + -3.048799967605036e-01 + -3.045377860349815e-01 + -3.041961039937703e-01 + -3.038549504461246e-01 + -3.035143252370935e-01 + -3.031742281687436e-01 + -3.028346590287212e-01 + -3.024956176228422e-01 + -3.021571037727226e-01 + -3.018191172891879e-01 + -3.014816579447884e-01 + -3.011447255196590e-01 + -3.008083198102758e-01 + -3.004724406299011e-01 + -3.001370877400161e-01 + -2.998022608844934e-01 + -2.994679598576119e-01 + -2.991341844426006e-01 + -2.988009344054493e-01 + -2.984682095047237e-01 + -2.981360094999961e-01 + -2.978043341494513e-01 + -2.974731831997393e-01 + -2.971425563888731e-01 + -2.968124534589884e-01 + -2.964828741880918e-01 + -2.961538183196636e-01 + -2.958252855581221e-01 + -2.954972756291568e-01 + -2.951697882690829e-01 + -2.948428232168150e-01 + -2.945163801997789e-01 + -2.941904589349781e-01 + -2.938650591314966e-01 + -2.935401805013078e-01 + -2.932158227514122e-01 + -2.928919855851135e-01 + -2.925686687341852e-01 + -2.922458719001491e-01 + -2.919235947316832e-01 + -2.916018369508684e-01 + -2.912805982685433e-01 + -2.909598783275820e-01 + -2.906396768390501e-01 + -2.903199935181080e-01 + -2.900008280188033e-01 + -2.896821799916231e-01 + -2.893640491090957e-01 + -2.890464350819901e-01 + -2.887293375718574e-01 + -2.884127562142981e-01 + -2.880966906629407e-01 + -2.877811406014185e-01 + -2.874661057081589e-01 + -2.871515856017081e-01 + -2.868375799224188e-01 + -2.865240883310016e-01 + -2.862111104788733e-01 + -2.858986460098822e-01 + -2.855866945593247e-01 + -2.852752557499685e-01 + -2.849643292069009e-01 + -2.846539145659956e-01 + -2.843440114851778e-01 + -2.840346195818731e-01 + -2.837257384382189e-01 + -2.834173676812886e-01 + -2.831095069534547e-01 + -2.828021558855677e-01 + -2.824953140398479e-01 + -2.821889810170294e-01 + -2.818831564761255e-01 + -2.815778399984394e-01 + -2.812730311718642e-01 + -2.809687296216254e-01 + -2.806649349155874e-01 + -2.803616466281044e-01 + -2.800588643758425e-01 + -2.797565877594176e-01 + -2.794548163592918e-01 + -2.791535497376408e-01 + -2.788527874670974e-01 + -2.785525291296920e-01 + -2.782527743138438e-01 + -2.779535226034689e-01 + -2.776547735631448e-01 + -2.773565267276963e-01 + -2.770587816777879e-01 + -2.767615379983304e-01 + -2.764647952191276e-01 + -2.761685529026718e-01 + -2.758728106207560e-01 + -2.755775679024411e-01 + -2.752828243050798e-01 + -2.749885793975552e-01 + -2.746948327088052e-01 + -2.744015837838452e-01 + -2.741088321749212e-01 + -2.738165773969221e-01 + -2.735248189792139e-01 + -2.732335564721672e-01 + -2.729427894286903e-01 + -2.726525173657923e-01 + -2.723627397775934e-01 + -2.720734562117226e-01 + -2.717846661993187e-01 + -2.714963692431568e-01 + -2.712085648712142e-01 + -2.709212526021956e-01 + -2.706344319386959e-01 + -2.703481024077038e-01 + -2.700622635195931e-01 + -2.697769147573882e-01 + -2.694920556414950e-01 + -2.692076856844960e-01 + -2.689238043678598e-01 + -2.686404111894522e-01 + -2.683575056539274e-01 + -2.680750872618156e-01 + -2.677931554956217e-01 + -2.675117098420171e-01 + -2.672307498062658e-01 + -2.669502748541435e-01 + -2.666702844564393e-01 + -2.663907781339158e-01 + -2.661117553567487e-01 + -2.658332155842312e-01 + -2.655551583220328e-01 + -2.652775830228958e-01 + -2.650004891310402e-01 + -2.647238761635896e-01 + -2.644477435849875e-01 + -2.641720908275026e-01 + -2.638969173638899e-01 + -2.636222226679477e-01 + -2.633480062028563e-01 + -2.630742674151484e-01 + -2.628010057675256e-01 + -2.625282207270022e-01 + -2.622559117157733e-01 + -2.619840781930577e-01 + -2.617127196438671e-01 + -2.614418354712815e-01 + -2.611714251171109e-01 + -2.609014880694051e-01 + -2.606320237300626e-01 + -2.603630315312080e-01 + -2.600945109576975e-01 + -2.598264614192900e-01 + -2.595588823272051e-01 + -2.592917731268140e-01 + -2.590251332515323e-01 + -2.587589621335352e-01 + -2.584932592080277e-01 + -2.582280238899204e-01 + -2.579632555996659e-01 + -2.576989537753064e-01 + -2.574351178135512e-01 + -2.571717471205571e-01 + -2.569088411498421e-01 + -2.566463993032694e-01 + -2.563844209736399e-01 + -2.561229055922761e-01 + -2.558618525664796e-01 + -2.556012613001373e-01 + -2.553411312228936e-01 + -2.550814617199114e-01 + -2.548222521633088e-01 + -2.545635019702024e-01 + -2.543052105636615e-01 + -2.540473773489130e-01 + -2.537900016856341e-01 + -2.535330829668063e-01 + -2.532766206092137e-01 + -2.530206140025920e-01 + -2.527650625373169e-01 + -2.525099656058339e-01 + -2.522553225882911e-01 + -2.520011328519368e-01 + -2.517473957689335e-01 + -2.514941107682424e-01 + -2.512412772287477e-01 + -2.509888944763962e-01 + -2.507369619085763e-01 + -2.504854789235316e-01 + -2.502344448942996e-01 + -2.499838591881081e-01 + -2.497337211675947e-01 + -2.494840301941274e-01 + -2.492347856449565e-01 + -2.489859868896926e-01 + -2.487376332816026e-01 + -2.484897241934407e-01 + -2.482422589923619e-01 + -2.479952370263670e-01 + -2.477486576676466e-01 + -2.475025202765806e-01 + -2.472568241776227e-01 + -2.470115687463755e-01 + -2.467667533575219e-01 + -2.465223773319763e-01 + -2.462784400223504e-01 + -2.460349407926405e-01 + -2.457918789841980e-01 + -2.455492539346369e-01 + -2.453070649885519e-01 + -2.450653115068263e-01 + -2.448239928212929e-01 + -2.445831082525867e-01 + -2.443426571517872e-01 + -2.441026388729581e-01 + -2.438630527595843e-01 + -2.436238981283992e-01 + -2.433851743000419e-01 + -2.431468806082007e-01 + -2.429090164035606e-01 + -2.426715810065056e-01 + -2.424345737214870e-01 + -2.421979939156839e-01 + -2.419618409122474e-01 + -2.417261139893861e-01 + -2.414908125047008e-01 + -2.412559357926221e-01 + -2.410214831428485e-01 + -2.407874538901436e-01 + -2.405538473594189e-01 + -2.403206628448788e-01 + -2.400878996494245e-01 + -2.398555571012901e-01 + -2.396236345489386e-01 + -2.393921312730178e-01 + -2.391610465589564e-01 + -2.389303797400675e-01 + -2.387001301206918e-01 + -2.384702970040557e-01 + -2.382408797142012e-01 + -2.380118775445049e-01 + -2.377832897784107e-01 + -2.375551157141706e-01 + -2.373273546676602e-01 + -2.371000059435911e-01 + -2.368730688080822e-01 + -2.366465425799626e-01 + -2.364204265795865e-01 + -2.361947200488833e-01 + -2.359694222928865e-01 + -2.357445326362645e-01 + -2.355200503199650e-01 + -2.352959746331166e-01 + -2.350723049000333e-01 + -2.348490404054174e-01 + -2.346261804119323e-01 + -2.344037241869703e-01 + -2.341816710532240e-01 + -2.339600202844186e-01 + -2.337387711161095e-01 + -2.335179228570654e-01 + -2.332974748051559e-01 + -2.330774262250223e-01 + -2.328577763695832e-01 + -2.326385245095027e-01 + -2.324196699339893e-01 + -2.322012119071908e-01 + -2.319831496985562e-01 + -2.317654825913850e-01 + -2.315482098501277e-01 + -2.313313307350805e-01 + -2.311148445095759e-01 + -2.308987504304352e-01 + -2.306830477605995e-01 + -2.304677357746768e-01 + -2.302528137313455e-01 + -2.300382808821649e-01 + -2.298241364802842e-01 + -2.296103797849810e-01 + -2.293970100645507e-01 + -2.291840265929282e-01 + -2.289714285853380e-01 + -2.287592152687787e-01 + -2.285473859575702e-01 + -2.283359398767679e-01 + -2.281248762354934e-01 + -2.279141943457151e-01 + -2.277038934347241e-01 + -2.274939727028900e-01 + -2.272844314557521e-01 + -2.270752689260884e-01 + -2.268664843063303e-01 + -2.266580768713468e-01 + -2.264500458690802e-01 + -2.262423905203003e-01 + -2.260351100742427e-01 + -2.258282037663114e-01 + -2.256216708189812e-01 + -2.254155104759721e-01 + -2.252097219699820e-01 + -2.250043045201664e-01 + -2.247992573593203e-01 + -2.245945797283117e-01 + -2.243902708632074e-01 + -2.241863299547213e-01 + -2.239827562297785e-01 + -2.237795489631809e-01 + -2.235767073479459e-01 + -2.233742305913306e-01 + -2.231721179508258e-01 + -2.229703686190215e-01 + -2.227689817967141e-01 + -2.225679567331226e-01 + -2.223672926389324e-01 + -2.221669887137792e-01 + -2.219670441735496e-01 + -2.217674582593449e-01 + -2.215682301863681e-01 + -2.213693591068690e-01 + -2.211708442449674e-01 + -2.209726848493868e-01 + -2.207748801280919e-01 + -2.205774292618204e-01 + -2.203803314334422e-01 + -2.201835858632719e-01 + -2.199871917828554e-01 + -2.197911484006530e-01 + -2.195954548584606e-01 + -2.194001103587555e-01 + -2.192051141421317e-01 + -2.190104654040938e-01 + -2.188161633272981e-01 + -2.186222070944807e-01 + -2.184285959003400e-01 + -2.182353289399314e-01 + -2.180424054040691e-01 + -2.178498244760091e-01 + -2.176575853577229e-01 + -2.174656872563868e-01 + -2.172741293153170e-01 + -2.170829107184905e-01 + -2.168920306960583e-01 + -2.167014883907840e-01 + -2.165112829716549e-01 + -2.163214136638050e-01 + -2.161318796380734e-01 + -2.159426800456078e-01 + -2.157538140457635e-01 + -2.155652808465100e-01 + -2.153770796378261e-01 + -2.151892095617934e-01 + -2.150016698096599e-01 + -2.148144595574814e-01 + -2.146275779264766e-01 + -2.144410241083473e-01 + -2.142547972973645e-01 + -2.140688966286696e-01 + -2.138833212713278e-01 + -2.136980704068839e-01 + -2.135131431962469e-01 + -2.133285387811797e-01 + -2.131442563097479e-01 + -2.129602949644751e-01 + -2.127766538888946e-01 + -2.125933322205115e-01 + -2.124103291538361e-01 + -2.122276438425608e-01 + -2.120452754131807e-01 + -2.118632230196053e-01 + -2.116814858091140e-01 + -2.115000629262062e-01 + -2.113189535366684e-01 + -2.111381567835468e-01 + -2.109576717897184e-01 + -2.107774976942802e-01 + -2.105976336477213e-01 + -2.104180788038142e-01 + -2.102388322993181e-01 + -2.100598932684242e-01 + -2.098812608470688e-01 + -2.097029341689293e-01 + -2.095249123662445e-01 + -2.093471945702010e-01 + -2.091697799107427e-01 + -2.089926675162990e-01 + -2.088158565139439e-01 + -2.086393460309292e-01 + -2.084631351904399e-01 + -2.082872231124364e-01 + -2.081116089361562e-01 + -2.079362917906518e-01 + -2.077612707758083e-01 + -2.075865450013143e-01 + -2.074121135936494e-01 + -2.072379756933602e-01 + -2.070641303864229e-01 + -2.068905767613353e-01 + -2.067173139701657e-01 + -2.065443411403108e-01 + -2.063716573678470e-01 + -2.061992617242399e-01 + -2.060271533191409e-01 + -2.058553312792487e-01 + -2.056837947057731e-01 + -2.055125426973447e-01 + -2.053415743575506e-01 + -2.051708887985432e-01 + -2.050004850901530e-01 + -2.048303622987561e-01 + -2.046605195888223e-01 + -2.044909560501713e-01 + -2.043216707137636e-01 + -2.041526627003059e-01 + -2.039839311053935e-01 + -2.038154749924674e-01 + -2.036472934779214e-01 + -2.034793856435669e-01 + -2.033117505334730e-01 + -2.031443872603400e-01 + -2.029772949053144e-01 + -2.028104725040109e-01 + -2.026439191805672e-01 + -2.024776340229360e-01 + -2.023116160442759e-01 + -2.021458643362796e-01 + -2.019803779931268e-01 + -2.018151560674621e-01 + -2.016501976152565e-01 + -2.014855017030598e-01 + -2.013210674074579e-01 + -2.011568937830132e-01 + -2.009929798869589e-01 + -2.008293247967324e-01 + -2.006659275530022e-01 + -2.005027871933542e-01 + -2.003399027889975e-01 + -2.001772733993469e-01 + -2.000148980648089e-01 + -1.998527758076494e-01 + -1.996909056937942e-01 + -1.995292867991256e-01 + -1.993679181495860e-01 + -1.992067987609143e-01 + -1.990459276660739e-01 + -1.988853039482369e-01 + -1.987249266385540e-01 + -1.985647947339026e-01 + -1.984049072747179e-01 + -1.982452632992336e-01 + -1.980858618372365e-01 + -1.979267019229292e-01 + -1.977677825816225e-01 + -1.976091028269504e-01 + -1.974506616652059e-01 + -1.972924581269546e-01 + -1.971344912595772e-01 + -1.969767600601777e-01 + -1.968192635197257e-01 + -1.966620006473419e-01 + -1.965049704914111e-01 + -1.963481720619957e-01 + -1.961916043159508e-01 + -1.960352662866058e-01 + -1.958791570023236e-01 + -1.957232754408347e-01 + -1.955676205736371e-01 + -1.954121914050787e-01 + -1.952569869811404e-01 + -1.951020062511957e-01 + -1.949472481743376e-01 + -1.947927118000400e-01 + -1.946383960967118e-01 + -1.944843000224015e-01 + -1.943304226010136e-01 + -1.941767627996486e-01 + -1.940233195719773e-01 + -1.938700919198527e-01 + -1.937170788011597e-01 + -1.935642791691659e-01 + -1.934116920404960e-01 + -1.932593163702813e-01 + -1.931071510855982e-01 + -1.929551951739442e-01 + -1.928034476111422e-01 + -1.926519073523142e-01 + -1.925005733427448e-01 + -1.923494445333268e-01 + -1.921985198850023e-01 + -1.920477983694047e-01 + -1.918972789099489e-01 + -1.917469604078139e-01 + -1.915968418647559e-01 + -1.914469222323946e-01 + -1.912972003977130e-01 + -1.911476753153419e-01 + -1.909983459354311e-01 + -1.908492111828614e-01 + -1.907002699990133e-01 + -1.905515213021572e-01 + -1.904029639829450e-01 + -1.902545969863778e-01 + -1.901064192518998e-01 + -1.899584296832387e-01 + -1.898106271909556e-01 + -1.896630106872466e-01 + -1.895155790805884e-01 + -1.893683312769490e-01 + -1.892212661839438e-01 + -1.890743827110565e-01 + -1.889276797429612e-01 + -1.887811561730439e-01 + -1.886348109311961e-01 + -1.884886428944042e-01 + -1.883426509295119e-01 + -1.881968339481026e-01 + -1.880511908244114e-01 + -1.879057204210790e-01 + -1.877604216379617e-01 + -1.876152933660684e-01 + -1.874703344759240e-01 + -1.873255438107255e-01 + -1.871809202288037e-01 + -1.870364626111082e-01 + -1.868921698587295e-01 + -1.867480408184902e-01 + -1.866040743068453e-01 + -1.864602692045282e-01 + -1.863166243684211e-01 + -1.861731386269271e-01 + -1.860298108368848e-01 + -1.858866398430710e-01 + -1.857436244746902e-01 + -1.856007635808946e-01 + -1.854580560069532e-01 + -1.853155005825300e-01 + -1.851730961153894e-01 + -1.850308414342497e-01 + -1.848887353926573e-01 + -1.847467767859671e-01 + -1.846049644137440e-01 + -1.844632971091011e-01 + -1.843217736893654e-01 + -1.841803929497542e-01 + -1.840391536710132e-01 + -1.838980546953601e-01 + -1.837570948428414e-01 + -1.836162728527662e-01 + -1.834755875142904e-01 + -1.833350376404768e-01 + -1.831946220322505e-01 + -1.830543394615971e-01 + -1.829141886951903e-01 + -1.827741685199023e-01 + -1.826342777082210e-01 + -1.824945150204152e-01 + -1.823548792146146e-01 + -1.822153690716325e-01 + -1.820759833652730e-01 + -1.819367208114371e-01 + -1.817975801678411e-01 + -1.816585602158104e-01 + -1.815196596908165e-01 + -1.813808773333636e-01 + -1.812422118861797e-01 + -1.811036620617022e-01 + -1.809652266051679e-01 + -1.808269042761388e-01 + -1.806886937510042e-01 + -1.805505937426575e-01 + -1.804126030135119e-01 + -1.802747202867512e-01 + -1.801369442562599e-01 + -1.799992736029428e-01 + -1.798617070428147e-01 + -1.797242432859927e-01 + -1.795868810229852e-01 + -1.794496189531687e-01 + -1.793124557648680e-01 + -1.791753901302353e-01 + -1.790384207459855e-01 + -1.789015462957270e-01 + -1.787647654308534e-01 + -1.786280768266134e-01 + -1.784914791546937e-01 + -1.783549710639760e-01 + -1.782185512276328e-01 + -1.780822183108111e-01 + -1.779459709418989e-01 + -1.778098077766785e-01 + -1.776737274641330e-01 + -1.775377286080068e-01 + -1.774018098685905e-01 + -1.772659699092733e-01 + -1.771302073149079e-01 + -1.769945207098710e-01 + -1.768589087303928e-01 + -1.767233699571559e-01 + -1.765879030229077e-01 + -1.764525065751527e-01 + -1.763171791703831e-01 + -1.761819193770276e-01 + -1.760467257991546e-01 + -1.759115970764966e-01 + -1.757765317826701e-01 + -1.756415284467932e-01 + -1.755065856823099e-01 + -1.753717020824757e-01 + -1.752368761936218e-01 + -1.751021065398607e-01 + -1.749673916979465e-01 + -1.748327302843573e-01 + -1.746981207950505e-01 + -1.745635617515470e-01 + -1.744290517410085e-01 + -1.742945892830799e-01 + -1.741601728915786e-01 + -1.740258011048612e-01 + -1.738914724532109e-01 + -1.737571854631234e-01 + -1.736229386541751e-01 + -1.734887304969607e-01 + -1.733545594900176e-01 + -1.732204242005106e-01 + -1.730863230847530e-01 + -1.729522545880760e-01 + -1.728182172369972e-01 + -1.726842095169024e-01 + -1.725502298924380e-01 + -1.724162768405715e-01 + -1.722823488297978e-01 + -1.721484443102564e-01 + -1.720145617082366e-01 + -1.718806995062888e-01 + -1.717468561876117e-01 + -1.716130301380271e-01 + -1.714792197950507e-01 + -1.713454236195253e-01 + -1.712116399980747e-01 + -1.710778673588311e-01 + -1.709441041583024e-01 + -1.708103487974718e-01 + -1.706765996579921e-01 + -1.705428551238503e-01 + -1.704091136122197e-01 + -1.702753735243250e-01 + -1.701416332337174e-01 + -1.700078910979654e-01 + -1.698741454939726e-01 + -1.697403948188084e-01 + -1.696066374424440e-01 + -1.694728717024124e-01 + -1.693390959182572e-01 + -1.692053084687103e-01 + -1.690715077127793e-01 + -1.689376919605925e-01 + -1.688038595533757e-01 + -1.686700088249354e-01 + -1.685361380772680e-01 + -1.684022456043037e-01 + -1.682683297240474e-01 + -1.681343887869522e-01 + -1.680004210524648e-01 + -1.678664247764668e-01 + -1.677323982879569e-01 + -1.675983398888628e-01 + -1.674642478421112e-01 + -1.673301203727337e-01 + -1.671959557470875e-01 + -1.670617522514179e-01 + -1.669275081523977e-01 + -1.667932216748827e-01 + -1.666588910302535e-01 + -1.665245144618999e-01 + -1.663900902261115e-01 + -1.662556165573334e-01 + -1.661210916150787e-01 + -1.659865136192500e-01 + -1.658518808205523e-01 + -1.657171913793817e-01 + -1.655824434869752e-01 + -1.654476353589082e-01 + -1.653127651402884e-01 + -1.651778310039089e-01 + -1.650428311475997e-01 + -1.649077636947325e-01 + -1.647726268054878e-01 + -1.646374186795111e-01 + -1.645021374143022e-01 + -1.643667811219276e-01 + -1.642313479645375e-01 + -1.640958360797542e-01 + -1.639602435821208e-01 + -1.638245685678920e-01 + -1.636888091342957e-01 + -1.635529633807896e-01 + -1.634170294056715e-01 + -1.632810052843662e-01 + -1.631448890987297e-01 + -1.630086789505001e-01 + -1.628723728914803e-01 + -1.627359689604526e-01 + -1.625994652175857e-01 + -1.624628597296842e-01 + -1.623261505411777e-01 + -1.621893356498993e-01 + -1.620524130844338e-01 + -1.619153808874262e-01 + -1.617782370829140e-01 + -1.616409796594323e-01 + -1.615036066042981e-01 + -1.613661159511956e-01 + -1.612285056749289e-01 + -1.610907737177844e-01 + -1.609529180644884e-01 + -1.608149367058714e-01 + -1.606768276166446e-01 + -1.605385887249777e-01 + -1.604002179666082e-01 + -1.602617132920370e-01 + -1.601230726507729e-01 + -1.599842939686116e-01 + -1.598453751511857e-01 + -1.597063141136520e-01 + -1.595671087574746e-01 + -1.594277569704320e-01 + -1.592882566576958e-01 + -1.591486057239582e-01 + -1.590088020577491e-01 + -1.588688434990599e-01 + -1.587287278927537e-01 + -1.585884531125515e-01 + -1.584480170419727e-01 + -1.583074175205078e-01 + -1.581666523320080e-01 + -1.580257193426469e-01 + -1.578846164090064e-01 + -1.577433413163997e-01 + -1.576018918624315e-01 + -1.574602658488709e-01 + -1.573184610699215e-01 + -1.571764753211041e-01 + -1.570343063929105e-01 + -1.568919520623428e-01 + -1.567494100904384e-01 + -1.566066782348808e-01 + -1.564637542612438e-01 + -1.563206358983480e-01 + -1.561773208679784e-01 + -1.560338069324230e-01 + -1.558900918260982e-01 + -1.557461732592160e-01 + -1.556020489404925e-01 + -1.554577165574562e-01 + -1.553131737930803e-01 + -1.551684183667380e-01 + -1.550234479797016e-01 + -1.548782603038531e-01 + -1.547328529851514e-01 + -1.545872236759721e-01 + -1.544413700402710e-01 + -1.542952897416497e-01 + -1.541489804232354e-01 + -1.540024397056934e-01 + -1.538556652055174e-01 + -1.537086545589509e-01 + -1.535614054107616e-01 + -1.534139153265976e-01 + -1.532661818894184e-01 + -1.531182027303390e-01 + -1.529699754364569e-01 + -1.528214975805129e-01 + -1.526727667337492e-01 + -1.525237804315604e-01 + -1.523745362382714e-01 + -1.522250317710374e-01 + -1.520752645246755e-01 + -1.519252320010430e-01 + -1.517749318043420e-01 + -1.516243614355856e-01 + -1.514735183783821e-01 + -1.513224001894709e-01 + -1.511710043669709e-01 + -1.510193283881065e-01 + -1.508673697644896e-01 + -1.507151259726486e-01 + -1.505625944726656e-01 + -1.504097727456887e-01 + -1.502566582737337e-01 + -1.501032485283334e-01 + -1.499495409558064e-01 + -1.497955329817901e-01 + -1.496412220312461e-01 + -1.494866055649385e-01 + -1.493316810218445e-01 + -1.491764458131949e-01 + -1.490208973395277e-01 + -1.488650330073115e-01 + -1.487088502321930e-01 + -1.485523464347014e-01 + -1.483955190026080e-01 + -1.482383652905619e-01 + -1.480808826638546e-01 + -1.479230685198502e-01 + -1.477649202713839e-01 + -1.476064352431592e-01 + -1.474476107543291e-01 + -1.472884441602761e-01 + -1.471289328556787e-01 + -1.469690741904771e-01 + -1.468088654425319e-01 + -1.466483039513407e-01 + -1.464873870643751e-01 + -1.463261120992439e-01 + -1.461644763685366e-01 + -1.460024771711030e-01 + -1.458401117873900e-01 + -1.456773775256328e-01 + -1.455142717039091e-01 + -1.453507916253095e-01 + -1.451869345373153e-01 + -1.450226976893540e-01 + -1.448580783981553e-01 + -1.446930739597145e-01 + -1.445276816274984e-01 + -1.443618986028185e-01 + -1.441957221635531e-01 + -1.440291496154044e-01 + -1.438621781832398e-01 + -1.436948050802729e-01 + -1.435270275400491e-01 + -1.433588428498931e-01 + -1.431902482406432e-01 + -1.430212409022274e-01 + -1.428518180756519e-01 + -1.426819769869911e-01 + -1.425117148424586e-01 + -1.423410288662751e-01 + -1.421699162875700e-01 + -1.419983743276740e-01 + -1.418264001727286e-01 + -1.416539910114460e-01 + -1.414811440470098e-01 + -1.413078564852965e-01 + -1.411341255423312e-01 + -1.409599484327010e-01 + -1.407853222965617e-01 + -1.406102443173973e-01 + -1.404347117561954e-01 + -1.402587217519092e-01 + -1.400822714659246e-01 + -1.399053581557436e-01 + -1.397279789611117e-01 + -1.395501310267636e-01 + -1.393718115937786e-01 + -1.391930178402762e-01 + -1.390137469173205e-01 + -1.388339959972602e-01 + -1.386537622953096e-01 + -1.384730430031857e-01 + -1.382918352262208e-01 + -1.381101361784074e-01 + -1.379279430940128e-01 + -1.377452530885734e-01 + -1.375620633453186e-01 + -1.373783710804598e-01 + -1.371941734475252e-01 + -1.370094676273606e-01 + -1.368242508215203e-01 + -1.366385202106050e-01 + -1.364522729969404e-01 + -1.362655063841710e-01 + -1.360782175127518e-01 + -1.358904035964053e-01 + -1.357020618930480e-01 + -1.355131895302153e-01 + -1.353237837054462e-01 + -1.351338416922692e-01 + -1.349433606493001e-01 + -1.347523377766847e-01 + -1.345607703467432e-01 + -1.343686555800670e-01 + -1.341759906744941e-01 + -1.339827728348106e-01 + -1.337889993407819e-01 + -1.335946674413715e-01 + -1.333997743261954e-01 + -1.332043172962129e-01 + -1.330082936252972e-01 + -1.328117004983506e-01 + -1.326145352418741e-01 + -1.324167951779929e-01 + -1.322184775207451e-01 + -1.320195795498869e-01 + -1.318200985870884e-01 + -1.316200319613715e-01 + -1.314193769770063e-01 + -1.312181309395709e-01 + -1.310162911860090e-01 + -1.308138550466099e-01 + -1.306108198680959e-01 + -1.304071830473609e-01 + -1.302029419358534e-01 + -1.299980938748928e-01 + -1.297926362720222e-01 + -1.295865665431496e-01 + -1.293798820977739e-01 + -1.291725803345192e-01 + -1.289646586840201e-01 + -1.287561146028010e-01 + -1.285469455426532e-01 + -1.283371489741077e-01 + -1.281267223855238e-01 + -1.279156632656401e-01 + -1.277039691180485e-01 + -1.274916374652222e-01 + -1.272786658468367e-01 + -1.270650518164191e-01 + -1.268507929437779e-01 + -1.266358868257778e-01 + -1.264203310530910e-01 + -1.262041232080785e-01 + -1.259872609212462e-01 + -1.257697418614985e-01 + -1.255515637216261e-01 + -1.253327241582721e-01 + -1.251132208452764e-01 + -1.248930515084944e-01 + -1.246722139029198e-01 + -1.244507057917270e-01 + -1.242285249387353e-01 + -1.240056691417677e-01 + -1.237821362222557e-01 + -1.235579240163024e-01 + -1.233330303641722e-01 + -1.231074531412701e-01 + -1.228811902909497e-01 + -1.226542397328350e-01 + -1.224265993926709e-01 + -1.221982672554952e-01 + -1.219692413178169e-01 + -1.217395195880366e-01 + -1.215091001037845e-01 + -1.212779809466277e-01 + -1.210461602256936e-01 + -1.208136360512357e-01 + -1.205804065871132e-01 + -1.203464700244819e-01 + -1.201118245085727e-01 + -1.198764682774020e-01 + -1.196403996473917e-01 + -1.194036168896808e-01 + -1.191661183059585e-01 + -1.189279022478277e-01 + -1.186889671039581e-01 + -1.184493112863093e-01 + -1.182089332317922e-01 + -1.179678314226111e-01 + -1.177260043675167e-01 + -1.174834505981953e-01 + -1.172401686820595e-01 + -1.169961572351099e-01 + -1.167514149230550e-01 + -1.165059404117411e-01 + -1.162597324012717e-01 + -1.160127896494247e-01 + -1.157651109471359e-01 + -1.155166951180050e-01 + -1.152675410245315e-01 + -1.150176475647009e-01 + -1.147670136740031e-01 + -1.145156383362403e-01 + -1.142635205942373e-01 + -1.140106595167702e-01 + -1.137570541746248e-01 + -1.135027037005393e-01 + -1.132476072885310e-01 + -1.129917641930528e-01 + -1.127351736954119e-01 + -1.124778350964029e-01 + -1.122197477241451e-01 + -1.119609110122396e-01 + -1.117013244465126e-01 + -1.114409874638995e-01 + -1.111798996306716e-01 + -1.109180606010562e-01 + -1.106554699641756e-01 + -1.103921273860412e-01 + -1.101280326261970e-01 + -1.098631854961093e-01 + -1.095975858385727e-01 + -1.093312335328026e-01 + -1.090641285282797e-01 + -1.087962708201439e-01 + -1.085276604456853e-01 + -1.082582975002112e-01 + -1.079881821487157e-01 + -1.077173146235393e-01 + -1.074456951780328e-01 + -1.071733241222459e-01 + -1.069002018428373e-01 + -1.066263287812705e-01 + -1.063517054311524e-01 + -1.060763323447030e-01 + -1.058002101349244e-01 + -1.055233394662503e-01 + -1.052457210591484e-01 + -1.049673557111256e-01 + -1.046882442747131e-01 + -1.044083876525769e-01 + -1.041277868396362e-01 + -1.038464428925467e-01 + -1.035643569070283e-01 + -1.032815300276830e-01 + -1.029979634724506e-01 + -1.027136585692167e-01 + -1.024286166734134e-01 + -1.021428391952729e-01 + -1.018563276648054e-01 + -1.015690836461885e-01 + -1.012811087487812e-01 + -1.009924046817547e-01 + -1.007029732152899e-01 + -1.004128161832720e-01 + -1.001219355157012e-01 + -9.983033318947014e-02 + -9.953801123789381e-02 + -9.924497181065381e-02 + -9.895121710675164e-02 + -9.865674937610269e-02 + -9.836157098451072e-02 + -9.806568435550449e-02 + -9.776909196067303e-02 + -9.747179635418697e-02 + -9.717380018935569e-02 + -9.687510621844479e-02 + -9.657571724434684e-02 + -9.627563612429342e-02 + -9.597486578738405e-02 + -9.567340928055243e-02 + -9.537126972794066e-02 + -9.506845031433311e-02 + -9.476495428226560e-02 + -9.446078497156121e-02 + -9.415594584893169e-02 + -9.385044042616277e-02 + -9.354427227181475e-02 + -9.323744504129654e-02 + -9.292996250412121e-02 + -9.262182850819620e-02 + -9.231304696021701e-02 + -9.200362185853247e-02 + -9.169355729461479e-02 + -9.138285746240042e-02 + -9.107152658866502e-02 + -9.075956898041553e-02 + -9.044698911371001e-02 + -9.013379148226228e-02 + -8.981998063663986e-02 + -8.950556130228651e-02 + -8.919053824746566e-02 + -8.887491629233073e-02 + -8.855870039130662e-02 + -8.824189556852820e-02 + -8.792450692262105e-02 + -8.760653968435946e-02 + -8.728799913331863e-02 + -8.696889060279582e-02 + -8.664921956673162e-02 + -8.632899159487925e-02 + -8.600821233560418e-02 + -8.568688750540578e-02 + -8.536502290181033e-02 + -8.504262441718942e-02 + -8.471969805751253e-02 + -8.439624991228166e-02 + -8.407228614692197e-02 + -8.374781300392073e-02 + -8.342283682562317e-02 + -8.309736406563741e-02 + -8.277140122021633e-02 + -8.244495489588025e-02 + -8.211803185128563e-02 + -8.179063884910803e-02 + -8.146278271646745e-02 + -8.113447041766966e-02 + -8.080570906396743e-02 + -8.047650581443898e-02 + -8.014686781276095e-02 + -7.981680240792462e-02 + -7.948631704884632e-02 + -7.915541916537581e-02 + -7.882411634928695e-02 + -7.849241630024972e-02 + -7.816032674199919e-02 + -7.782785552351333e-02 + -7.749501058768483e-02 + -7.716179991262426e-02 + -7.682823159405887e-02 + -7.649431382724470e-02 + -7.616005485767063e-02 + -7.582546305035900e-02 + -7.549054686796573e-02 + -7.515531479419155e-02 + -7.481977542018518e-02 + -7.448393744841550e-02 + -7.414780964186224e-02 + -7.381140084542565e-02 + -7.347471999131863e-02 + -7.313777608894645e-02 + -7.280057821330421e-02 + -7.246313551410177e-02 + -7.212545725749871e-02 + -7.178755277686714e-02 + -7.144943146088469e-02 + -7.111110278446059e-02 + -7.077257629326426e-02 + -7.043386160590276e-02 + -7.009496843792977e-02 + -6.975590657859251e-02 + -6.941668588038064e-02 + -6.907731623736572e-02 + -6.873780762436528e-02 + -6.839817013263073e-02 + -6.805841390025939e-02 + -6.771854911509186e-02 + -6.737858603607710e-02 + -6.703853501790490e-02 + -6.669840646610939e-02 + -6.635821080020089e-02 + -6.601795854049251e-02 + -6.567766029345612e-02 + -6.533732672933422e-02 + -6.499696856244534e-02 + -6.465659655384894e-02 + -6.431622152906083e-02 + -6.397585437117004e-02 + -6.363550601749234e-02 + -6.329518746487584e-02 + -6.295490977261127e-02 + -6.261468405232740e-02 + -6.227452144919842e-02 + -6.193443314782195e-02 + -6.159443038613483e-02 + -6.125452449175782e-02 + -6.091472682299209e-02 + -6.057504875634485e-02 + -6.023550170757411e-02 + -5.989609715178513e-02 + -5.955684662483948e-02 + -5.921776169220818e-02 + -5.887885392543541e-02 + -5.854013491232313e-02 + -5.820161634720029e-02 + -5.786330995026137e-02 + -5.752522743033200e-02 + -5.718738052319666e-02 + -5.684978102238282e-02 + -5.651244078415603e-02 + -5.617537160914179e-02 + -5.583858533460867e-02 + -5.550209389764803e-02 + -5.516590918758542e-02 + -5.483004310132478e-02 + -5.449450760284144e-02 + -5.415931467224975e-02 + -5.382447627285256e-02 + -5.349000433169809e-02 + -5.315591089010736e-02 + -5.282220800586091e-02 + -5.248890761304951e-02 + -5.215602173570349e-02 + -5.182356244333215e-02 + -5.149154173522678e-02 + -5.115997163165661e-02 + -5.082886416999516e-02 + -5.049823136495267e-02 + -5.016808523392447e-02 + -4.983843779429676e-02 + -4.950930104255546e-02 + -4.918068697018742e-02 + -4.885260756307724e-02 + -4.852507478656667e-02 + -4.819810059193260e-02 + -4.787169691654435e-02 + -4.754587567726797e-02 + -4.722064876717863e-02 + -4.689602805511645e-02 + -4.657202539266345e-02 + -4.624865260469157e-02 + -4.592592148337583e-02 + -4.560384379218360e-02 + -4.528243126408893e-02 + -4.496169559628109e-02 + -4.464164845065374e-02 + -4.432230145577399e-02 + -4.400366620090135e-02 + -4.368575422918912e-02 + -4.336857704568598e-02 + -4.305214611378011e-02 + -4.273647284209545e-02 + -4.242156859535529e-02 + -4.210744469338823e-02 + -4.179411239819886e-02 + -4.148158291999365e-02 + -4.116986741259326e-02 + -4.085897697584740e-02 + -4.054892265423421e-02 + -4.023971542131075e-02 + -3.993136619382251e-02 + -3.962388583123071e-02 + -3.931728511726146e-02 + -3.901157477126550e-02 + -3.870676544906659e-02 + -3.840286772630143e-02 + -3.809989211312446e-02 + -3.779784905219891e-02 + -3.749674889469364e-02 + -3.719660192057603e-02 + -3.689741833904486e-02 + -3.659920826728452e-02 + -3.630198174507707e-02 + -3.600574873447752e-02 + -3.571051910326670e-02 + -3.541630263528623e-02 + -3.512310902944081e-02 + -3.483094789226868e-02 + -3.453982873906083e-02 + -3.424976098893085e-02 + -3.396075396966352e-02 + -3.367281691959212e-02 + -3.338595897696143e-02 + -3.310018917253339e-02 + -3.281551644593574e-02 + -3.253194963945627e-02 + -3.224949747985180e-02 + -3.196816859917648e-02 + -3.168797153104005e-02 + -3.140891468854379e-02 + -3.113100638362195e-02 + -3.085425482400445e-02 + -3.057866810270934e-02 + -3.030425420554928e-02 + -3.003102099769914e-02 + -2.975897623664901e-02 + -2.948812757423692e-02 + -2.921848253324668e-02 + -2.895004852283206e-02 + -2.868283284398848e-02 + -2.841684266935389e-02 + -2.815208505554401e-02 + -2.788856694668657e-02 + -2.762629515277662e-02 + -2.736527636581735e-02 + -2.710551716378724e-02 + -2.684702399109470e-02 + -2.658980317107453e-02 + -2.633386090723251e-02 + -2.607920326420626e-02 + -2.582583618939347e-02 + -2.557376551170278e-02 + -2.532299691452088e-02 + -2.507353595904179e-02 + -2.482538808499682e-02 + -2.457855859507147e-02 + -2.433305266394129e-02 + -2.408887533435539e-02 + -2.384603151841623e-02 + -2.360452600145211e-02 + -2.336436343201402e-02 + -2.312554832609387e-02 + -2.288808507226996e-02 + -2.265197791904223e-02 + -2.241723098404469e-02 + -2.218384825955722e-02 + -2.195183359578144e-02 + -2.172119070564114e-02 + -2.149192317903017e-02 + -2.126403446983029e-02 + -2.103752788800763e-02 + -2.081240661670658e-02 + -2.058867370373213e-02 + -2.036633206151460e-02 + -2.014538447470562e-02 + -1.992583358220780e-02 + -1.970768189350454e-02 + -1.949093179354288e-02 + -1.927558551890179e-02 + -1.906164517346932e-02 + -1.884911273803516e-02 + -1.863799005561765e-02 + -1.842827883084014e-02 + -1.821998063919436e-02 + -1.801309692347624e-02 + -1.780762899421212e-02 + -1.760357803216378e-02 + -1.740094507853177e-02 + -1.719973104881908e-02 + -1.699993673354589e-02 + -1.680156278321953e-02 + -1.660460972117107e-02 + -1.640907794332531e-02 + -1.621496771146485e-02 + -1.602227916433384e-02 + -1.583101231371427e-02 + -1.564116703862817e-02 + -1.545274309883748e-02 + -1.526574012772238e-02 + -1.508015761914186e-02 + -1.489599495303444e-02 + -1.471325139301425e-02 + -1.453192606709004e-02 + -1.435201798658663e-02 + -1.417352604127694e-02 + -1.399644899327932e-02 + -1.382078549302728e-02 + -1.364653407164367e-02 + -1.347369313289915e-02 + -1.330226097046918e-02 + -1.313223576283522e-02 + -1.296361556501821e-02 + -1.279639832327015e-02 + -1.263058187022890e-02 + -1.246616392163480e-02 + -1.230314208589229e-02 + -1.214151385550256e-02 + -1.198127661271531e-02 + -1.182242763705999e-02 + -1.166496409538715e-02 + -1.150888304589847e-02 + -1.135418144553720e-02 + -1.120085614521435e-02 + -1.104890388968280e-02 + -1.089832132231912e-02 + -1.074910498405016e-02 + -1.060125131793449e-02 + -1.045475666967276e-02 + -1.030961728045836e-02 + -1.016582929759894e-02 + -1.002338877483435e-02 + -9.882291666582974e-03 + -9.742533838318660e-03 + -9.604111064390042e-03 + -9.467019020603698e-03 + -9.331253297647066e-03 + -9.196809399717920e-03 + -9.063682741005771e-03 + -8.931868652392608e-03 + -8.801362376326071e-03 + -8.672159070075210e-03 + -8.544253813557785e-03 + -8.417641603575709e-03 + -8.292317355716863e-03 + -8.168275911736944e-03 + -8.045512032694060e-03 + -7.924020397696789e-03 + -7.803795618017998e-03 + -7.684832236645861e-03 + -7.567124714929550e-03 + -7.450667444285828e-03 + -7.335454748033539e-03 + -7.221480883382279e-03 + -7.108740043647531e-03 + -6.997226348639058e-03 + -6.886933855315346e-03 + -6.777856561420043e-03 + -6.669988397445708e-03 + -6.563323236817328e-03 + -6.457854897474280e-03 + -6.353577131920331e-03 + -6.250483639666226e-03 + -6.148568068731946e-03 + -6.047824005897748e-03 + -5.948244987599076e-03 + -5.849824501347084e-03 + -5.752555978513681e-03 + -5.656432807264865e-03 + -5.561448332218353e-03 + -5.467595840626229e-03 + -5.374868578311233e-03 + -5.283259752176146e-03 + -5.192762521793490e-03 + -5.103370006626977e-03 + -5.015075286629148e-03 + -4.927871401782054e-03 + -4.841751355904269e-03 + -4.756708115524279e-03 + -4.672734611342882e-03 + -4.589823741835811e-03 + -4.507968371897898e-03 + -4.427161334111035e-03 + -4.347395432360992e-03 + -4.268663440821394e-03 + -4.190958105123732e-03 + -4.114272145237943e-03 + -4.038598254543495e-03 + -3.963929102325757e-03 + -3.890257335680627e-03 + -3.817575578228647e-03 + -3.745876433060482e-03 + -3.675152484340320e-03 + -3.605396296371936e-03 + -3.536600416225055e-03 + -3.468757375181376e-03 + -3.401859688514519e-03 + -3.335899857279008e-03 + -3.270870369624132e-03 + -3.206763701552144e-03 + -3.143572317880366e-03 + -3.081288673370167e-03 + -3.019905214426235e-03 + -2.959414379161780e-03 + -2.899808598243805e-03 + -2.841080297295089e-03 + -2.783221897187762e-03 + -2.726225814481816e-03 + -2.670084462721576e-03 + -2.614790253659214e-03 + -2.560335598217736e-03 + -2.506712907773368e-03 + -2.453914594305456e-03 + -2.401933071402304e-03 + -2.350760756079694e-03 + -2.300390068609935e-03 + -2.250813433830373e-03 + -2.202023282926124e-03 + -2.154012052729510e-03 + -2.106772187286276e-03 + -2.060296139752280e-03 + -2.014576371403607e-03 + -1.969605353508076e-03 + -1.925375568654703e-03 + -1.881879509874747e-03 + -1.839109683164610e-03 + -1.797058608044933e-03 + -1.755718816706420e-03 + -1.715082857166331e-03 + -1.675143293280333e-03 + -1.635892703443056e-03 + -1.597323683697497e-03 + -1.559428848712492e-03 + -1.522200830321536e-03 + -1.485632280183934e-03 + -1.449715870092584e-03 + -1.414444291041649e-03 + -1.379810256474448e-03 + -1.345806501791486e-03 + -1.312425783716085e-03 + -1.279660883530597e-03 + -1.247504606026809e-03 + -1.215949779407020e-03 + -1.184989258561609e-03 + -1.154615923413642e-03 + -1.124822679454977e-03 + -1.095602461024569e-03 + -1.066948228352973e-03 + -1.038852968864840e-03 + -1.011309701783447e-03 + -9.843114734261671e-04 + -9.578513585924095e-04 + -9.319224654553773e-04 + -9.065179311555053e-04 + -8.816309237062864e-04 + -8.572546450286300e-04 + -8.333823272254078e-04 + -8.100072355517002e-04 + -7.871226705798197e-04 + -7.647219641139264e-04 + -7.427984826268421e-04 + -7.213456295816899e-04 + -7.003568409622573e-04 + -6.798255887472549e-04 + -6.597453829223955e-04 + -6.401097674232178e-04 + -6.209123240167792e-04 + -6.021466729184949e-04 + -5.838064694784330e-04 + -5.658854088227745e-04 + -5.483772251938055e-04 + -5.312756891491387e-04 + -5.145746125261390e-04 + -4.982678466736966e-04 + -4.823492804447342e-04 + -4.668128456938979e-04 + -4.516525141842837e-04 + -4.368622962674093e-04 + -4.224362466667431e-04 + -4.083684605074392e-04 + -3.946530726767535e-04 + -3.812842634726816e-04 + -3.682562540846601e-04 + -3.555633067280622e-04 + -3.431997298953713e-04 + -3.311598733734528e-04 + -3.194381292167991e-04 + -3.080289365424697e-04 + -2.969267761950205e-04 + -2.861261725181284e-04 + -2.756216974519896e-04 + -2.654079650780054e-04 + -2.554796342192304e-04 + -2.458314117831762e-04 + -2.364580472261255e-04 + -2.273543358783364e-04 + -2.185151214599497e-04 + -2.099352907310207e-04 + -2.016097775283348e-04 + -1.935335642058985e-04 + -1.857016766078902e-04 + -1.781091887621722e-04 + -1.707512232636694e-04 + -1.636229467286454e-04 + -1.567195750846747e-04 + -1.500363727286114e-04 + -1.435686485603325e-04 + -1.373117617901810e-04 + -1.312611200233150e-04 + -1.254121759173047e-04 + -1.197604333131590e-04 + -1.143014443478538e-04 + -1.090308067994204e-04 + -1.039441703359566e-04 + -9.903723276260782e-05 + -9.430573818110019e-05 + -8.974548326970851e-05 + -8.535231263786576e-05 + -8.112211782233505e-05 + -7.705084341917009e-05 + -7.313448187442813e-05 + -6.936907333027644e-05 + -6.575071119249467e-05 + -6.227553658275769e-05 + -5.893973914900695e-05 + -5.573956203853484e-05 + -5.267129595161032e-05 + -4.973128084575291e-05 + -4.691591029739419e-05 + -4.422162539456759e-05 + -4.164491727590835e-05 + -3.918233061143914e-05 + -3.683045757249665e-05 + -3.458594118927672e-05 + -3.244547785270521e-05 + -3.040581149216269e-05 + -2.846373767254703e-05 + -2.661610506551807e-05 + -2.485980997915884e-05 + -2.319180110803831e-05 + -2.160907991664170e-05 + -2.010869565536285e-05 + -1.868775067119526e-05 + -1.734339969669114e-05 + -1.607284546059277e-05 + -1.487334444060605e-05 + -1.374220506933501e-05 + -1.267678404087566e-05 + -1.167449238525668e-05 + -1.073279264625808e-05 + -9.849195952118955e-06 + -9.021268250139948e-06 + -8.246626567968640e-06 + -7.522936912951058e-06 + -6.847920492700095e-06 + -6.219349168072015e-06 + -5.635044236568559e-06 + -5.092882470932048e-06 + -4.590790895044201e-06 + -4.126746487291455e-06 + -3.698781859286729e-06 + -3.304979520120749e-06 + -2.943472506918129e-06 + -2.612449510984778e-06 + -2.310148834845521e-06 + -2.034859929271865e-06 + -1.784927798002038e-06 + -1.558746837246077e-06 + -1.354763241038800e-06 + -1.171478551126456e-06 + -1.007443551831214e-06 + -8.612614901318561e-07 + -7.315906671893518e-07 + -6.171385461507109e-07 + -5.166657190198488e-07 + -4.289874671965282e-07 + -3.529682224298676e-07 + -2.875261969469119e-07 + -2.316338735426513e-07 + -1.843129441850586e-07 + -1.446395043479685e-07 + -1.117434618507405e-07 + -8.480406305106530e-08 + -6.305553831873507e-08 + -4.578544870958251e-08 + -3.233089380928512e-08 + -2.208448022054805e-08 + -1.449165750478591e-08 + -9.047683233008124e-09 + -5.303766739728543e-09 + -2.863504097386866e-09 + -1.380623394721897e-09 + -5.650641971230870e-10 + -1.790372475752245e-10 + -3.511990521548007e-11 + -8.192061809269277e-13 + 0.000000000000000e+00 diff --git a/examples/SPIN/iron/exchange_fit_bcc_iron/exchange_bcc_iron.dat b/examples/SPIN/iron/exchange_fit_bcc_iron/exchange_bcc_iron.dat new file mode 100644 index 0000000000000000000000000000000000000000..58134f244466c5a60bb103b73e6f8ba61414e14b --- /dev/null +++ b/examples/SPIN/iron/exchange_fit_bcc_iron/exchange_bcc_iron.dat @@ -0,0 +1,5 @@ +2.4824 0.01948336 +2.8665 0.01109 +4.0538 -0.0002176 +4.753 -0.001714 +4.965 -0.001986 diff --git a/examples/SPIN/iron/exchange_fit_bcc_iron/exchange_fit.py b/examples/SPIN/iron/exchange_fit_bcc_iron/exchange_fit.py new file mode 100644 index 0000000000000000000000000000000000000000..ccf84fc233bbc4a29bcc01ab4d6336e00ba2ab6d --- /dev/null +++ b/examples/SPIN/iron/exchange_fit_bcc_iron/exchange_fit.py @@ -0,0 +1,32 @@ +#Program fitting the exchange interaction +#Model curve: Bethe-Slater function +import numpy as np, pylab, tkinter +import matplotlib.pyplot as plt +from scipy.optimize import curve_fit +from decimal import * + +print("Loop begin") + +#Definition of the Bethe-Slater function +def func(x,a,b,c): + return 4*a*((x/c)**2)*(1-b*(x/c)**2)*np.exp(-(x/c)**2) + +#Exchange coeff table (data to fit) +rdata, Jdata = np.loadtxt('exchange_bcc_iron.dat', usecols=(0,1), unpack=True) +plt.plot(rdata, Jdata, 'b-', label='data') + +#Perform the fit +popt, pcov = curve_fit(func, rdata, Jdata, bounds=(0, [500.,5.,5.])) +plt.plot(rdata, func(rdata, *popt), 'r--', label='fit') + +#Print the fitted params +print("Parameters: a={:.10} (in meV), b={:.10} (adim), c={:.10} (in Ang)".format(*popt)) + +#Ploting the result +plt.xlabel('r_ij') +pylab.xlim([0,6.5]) +plt.ylabel('J_ij') +plt.legend() +plt.show() + +print("Loop end") diff --git a/examples/SPIN/iron/fe_dd.dat b/examples/SPIN/iron/fe_dd.dat new file mode 100644 index 0000000000000000000000000000000000000000..a4b4c9a0d7c06a14f1a42cd33846405299e368a9 --- /dev/null +++ b/examples/SPIN/iron/fe_dd.dat @@ -0,0 +1,19 @@ + 6 8 + Optimal parameter set + 1 4.100199340884814 F + 2 1.565647547483517 F + 1 0.9332056681088162 T 3.000000000000000 + 2 -1.162558782567700 T 2.866666666666670 + 3 -0.3502026949249225 T 2.733333333333330 + 4 0.4287820835430028 T 2.600000000000000 + 5 4.907925057809273 T 2.400000000000000 + 6 -5.307049068415304 T 2.300000000000000 + 1 -0.1960674387419232 F 4.100000000000000 + 2 0.3687525935422963 F 3.800000000000000 + 3 -1.505333614924853 F 3.500000000000000 + 4 4.948907078156191 T 3.200000000000000 + 5 -4.894613262753399 T 2.900000000000000 + 6 3.468897724782442 T 2.600000000000000 + 7 -1.792218099820337 T 2.400000000000000 + 8 80.22069592246987 T 2.300000000000000 + diff --git a/examples/SPIN/iron/in.spin.iron b/examples/SPIN/iron/in.spin.iron new file mode 100644 index 0000000000000000000000000000000000000000..c2d5082cb6a27751627d72d850ed11ad8feade66 --- /dev/null +++ b/examples/SPIN/iron/in.spin.iron @@ -0,0 +1,56 @@ +# bcc iron in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice bcc 2.8665 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +create_atoms 1 box + +# setting mass, mag. moments, and interactions for bcc iron + +mass 1 55.845 + +set group all spin/random 31 2.2 +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 3.5 +pair_coeff * * eam/alloy Fe_Mishin2006.eam.alloy Fe +pair_coeff * * spin/exchange exchange 3.4 0.02726 0.2171 1.841 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_tmag temp v_emag ke pe etotal +thermo 50 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_iron.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 50000 diff --git a/examples/SPIN/iron/log.11May18.spin.iron.g++.1 b/examples/SPIN/iron/log.11May18.spin.iron.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..1b27478002833f74c99fc56572e8bc786c9f3b01 --- /dev/null +++ b/examples/SPIN/iron/log.11May18.spin.iron.g++.1 @@ -0,0 +1,1115 @@ +LAMMPS (11 May 2018) +# bcc iron in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice bcc 2.8665 +Lattice spacing in x,y,z = 2.8665 2.8665 2.8665 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (14.3325 14.3325 14.3325) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 250 atoms + Time spent = 0.000727415 secs + +# setting mass, mag. moments, and interactions for bcc iron + +mass 1 55.845 + +set group all spin/random 31 2.2 + 250 settings made for spin/random +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 3.5 +pair_coeff * * eam/alloy Fe_Mishin2006.eam.alloy Fe +pair_coeff * * spin/exchange exchange 3.4 0.02726 0.2171 1.841 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_tmag temp v_emag ke pe etotal +thermo 50 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_iron.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 50000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5.77337 + ghost atom cutoff = 5.77337 + binsize = 2.88668, bins = 5 5 5 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.319 | 7.319 | 7.319 Mbytes +Step Time v_magnorm v_tmag Temp v_emag KinEng PotEng TotEng + 0 0 0.076456975 9109.0924 100.00358 -0.85791269 3.2186929 -1070.8579 -1067.6392 + 50 0.005 0.076456974 9316.7659 96.663685 -0.86504718 3.1111957 -1070.7504 -1067.6392 + 100 0.01 0.076456983 9488.3743 86.965803 -0.88035771 2.7990619 -1070.4383 -1067.6392 + 150 0.015 0.076456973 9589.0566 72.421197 -0.8996913 2.3309324 -1069.9702 -1067.6392 + 200 0.02 0.076456944 9415.3095 55.633188 -0.921682 1.7905973 -1069.4298 -1067.6392 + 250 0.025 0.076456953 8878.9394 39.802206 -0.94649004 1.2810649 -1068.9203 -1067.6392 + 300 0.03 0.076457027 8203.3388 27.882295 -0.97253854 0.8974133 -1068.5366 -1067.6392 + 350 0.035 0.076457103 7720.309 21.776538 -0.99708692 0.70089477 -1068.3401 -1067.6392 + 400 0.04 0.076457117 7531.0683 21.857102 -1.0190244 0.70348778 -1068.3427 -1067.6392 + 450 0.045 0.076457072 7479.8073 26.959407 -1.0389343 0.86770942 -1068.5069 -1067.6392 + 500 0.05 0.076457001 7461.6683 34.92521 -1.0582008 1.124095 -1068.7633 -1067.6392 + 550 0.055 0.076456962 7396.1112 43.405912 -1.0785156 1.397053 -1069.0363 -1067.6392 + 600 0.06 0.076456997 7121.894 50.544844 -1.102048 1.626825 -1069.2661 -1067.6392 + 650 0.065 0.076457079 6683.4805 55.261218 -1.1296588 1.7786252 -1069.4179 -1067.6392 + 700 0.07 0.076457136 6313.6896 57.25083 -1.1595102 1.8426624 -1069.4819 -1067.6392 + 750 0.075 0.076457132 6199.0363 56.934336 -1.1893875 1.8324758 -1069.4717 -1067.6392 + 800 0.08 0.076457116 6265.997 55.266343 -1.2181223 1.7787901 -1069.418 -1067.6392 + 850 0.085 0.076457116 6326.5886 53.376453 -1.2443326 1.7179626 -1069.3572 -1067.6392 + 900 0.09 0.076457121 6336.1261 52.279557 -1.2676425 1.6826581 -1069.3219 -1067.6392 + 950 0.095 0.076457122 6288.4204 52.667743 -1.2902335 1.6951522 -1069.3344 -1067.6392 + 1000 0.1 0.076457135 6122.1622 54.684094 -1.314147 1.76005 -1069.3993 -1067.6392 + 1050 0.105 0.076457155 5830.2219 57.880399 -1.3392396 1.8629256 -1069.5022 -1067.6392 + 1100 0.11 0.076457162 5477.4214 61.505616 -1.3662331 1.979606 -1069.6188 -1067.6392 + 1150 0.115 0.076457195 5194.1423 64.810972 -1.3984474 2.0859914 -1069.7252 -1067.6392 + 1200 0.12 0.076457219 5096.2484 67.147472 -1.438326 2.1611935 -1069.8004 -1067.6392 + 1250 0.125 0.076457214 5180.7444 67.957533 -1.4822383 2.1872659 -1069.8265 -1067.6392 + 1300 0.13 0.076457208 5332.4483 66.96652 -1.5226303 2.1553694 -1069.7946 -1067.6392 + 1350 0.135 0.076457225 5441.1287 64.471602 -1.5553539 2.0750686 -1069.7143 -1067.6392 + 1400 0.14 0.076457244 5466.8622 61.292592 -1.5804721 1.9727496 -1069.612 -1067.6392 + 1450 0.145 0.07645724 5403.309 58.518161 -1.6006864 1.8834524 -1069.5227 -1067.6392 + 1500 0.15 0.076457224 5275.2171 57.1713 -1.6196756 1.8401027 -1069.4793 -1067.6392 + 1550 0.155 0.076457217 5122.7481 57.878063 -1.6407322 1.8628504 -1069.5021 -1067.6392 + 1600 0.16 0.076457217 4968.5049 60.639452 -1.6657935 1.9517278 -1069.591 -1067.6392 + 1650 0.165 0.076457208 4850.1861 64.668839 -1.690847 2.0814168 -1069.7206 -1067.6392 + 1700 0.17 0.076457217 4809.0194 68.693586 -1.7087416 2.2109564 -1069.8502 -1067.6392 + 1750 0.175 0.076457274 4835.8611 71.611033 -1.7188587 2.3048567 -1069.9441 -1067.6392 + 1800 0.18 0.076457318 4929.7428 72.815077 -1.7280248 2.3436098 -1069.9828 -1067.6392 + 1850 0.185 0.076457279 5036.6365 72.102335 -1.7426092 2.3206696 -1069.9599 -1067.6392 + 1900 0.19 0.076457222 5116.2436 69.579977 -1.7638235 2.2394856 -1069.8787 -1067.6392 + 1950 0.195 0.076457228 5207.2334 65.715745 -1.7895824 2.1151122 -1069.7543 -1067.6392 + 2000 0.2 0.076457288 5216.0413 61.340972 -1.8174915 1.9743068 -1069.6135 -1067.6392 + 2050 0.205 0.076457267 5023.1601 57.468628 -1.8456914 1.8496724 -1069.4889 -1067.6392 + 2100 0.21 0.076457198 4748.7818 55.033266 -1.8742291 1.7712884 -1069.4105 -1067.6392 + 2150 0.215 0.076457199 4558.1302 54.573806 -1.9035225 1.7565003 -1069.3957 -1067.6392 + 2200 0.22 0.076457185 4483.1644 56.074241 -1.9322669 1.804793 -1069.444 -1067.6392 + 2250 0.225 0.076457114 4430.1583 59.0552 -1.9577399 1.9007374 -1069.54 -1067.6392 + 2300 0.23 0.076457092 4353.7973 62.874849 -1.9801275 2.0236758 -1069.6629 -1067.6392 + 2350 0.235 0.076457145 4303.5275 66.892738 -2.0022129 2.1529947 -1069.7922 -1067.6392 + 2400 0.24 0.076457171 4258.6889 70.426826 -2.0233072 2.2667421 -1069.906 -1067.6392 + 2450 0.245 0.076457169 4178.5775 72.910422 -2.0405304 2.3466785 -1069.9859 -1067.6392 + 2500 0.25 0.07645717 4114.786 74.106367 -2.0531755 2.3851709 -1070.0244 -1067.6392 + 2550 0.255 0.076457136 4067.5017 74.169349 -2.0634674 2.3871981 -1070.0264 -1067.6392 + 2600 0.26 0.076457099 4045.3324 73.586199 -2.0755814 2.3684289 -1070.0077 -1067.6392 + 2650 0.265 0.076457099 4137.898 72.914235 -2.0913646 2.3468012 -1069.986 -1067.6392 + 2700 0.27 0.076457106 4332.063 72.583192 -2.1091075 2.3361464 -1069.9754 -1067.6392 + 2750 0.275 0.07645709 4465.1953 72.814559 -2.125099 2.3435931 -1069.9828 -1067.6392 + 2800 0.28 0.076457051 4516.5192 73.652154 -2.1371914 2.3705517 -1070.0098 -1067.6392 + 2850 0.285 0.076457019 4555.5962 75.060211 -2.1489378 2.4158711 -1070.0551 -1067.6392 + 2900 0.29 0.076457069 4544.2734 76.844795 -2.1667679 2.4733094 -1070.1125 -1067.6392 + 2950 0.295 0.076457172 4460.2109 78.48171 -2.1924421 2.5259948 -1070.1652 -1067.6392 + 3000 0.3 0.076457219 4323.2746 79.20682 -2.2209955 2.549333 -1070.1886 -1067.6392 + 3050 0.305 0.076457213 4155.688 78.543529 -2.2505299 2.5279844 -1070.1672 -1067.6392 + 3100 0.31 0.076457203 3969.6188 76.554785 -2.2858382 2.4639752 -1070.1032 -1067.6392 + 3150 0.315 0.076457187 3761.432 73.396149 -2.3245055 2.362312 -1070.0015 -1067.6392 + 3200 0.32 0.076457142 3602.8035 69.313196 -2.3577056 2.230899 -1069.8701 -1067.6392 + 3250 0.325 0.076457116 3505.707 65.032482 -2.3836874 2.0931209 -1069.7324 -1067.6392 + 3300 0.33 0.07645716 3424.8795 61.551539 -2.4057167 1.9810841 -1069.6203 -1067.6392 + 3350 0.335 0.076457236 3335.9672 59.709703 -2.4251844 1.9218031 -1069.561 -1067.6392 + 3400 0.34 0.076457298 3238.0186 60.026953 -2.4425501 1.9320141 -1069.5712 -1067.6392 + 3450 0.345 0.076457297 3185.0674 62.613739 -2.4593531 2.0152718 -1069.6545 -1067.6392 + 3500 0.35 0.07645723 3197.4087 67.011871 -2.4756907 2.1568291 -1069.7961 -1067.6392 + 3550 0.355 0.076457177 3216.1428 72.316209 -2.4911379 2.3275533 -1069.9668 -1067.6392 + 3600 0.36 0.076457165 3241.0326 77.550071 -2.5083858 2.4960092 -1070.1352 -1067.6392 + 3650 0.365 0.076457168 3309.6874 81.877688 -2.5306273 2.6352969 -1070.2745 -1067.6392 + 3700 0.37 0.07645718 3350.748 84.764646 -2.5595247 2.7282159 -1070.3674 -1067.6392 + 3750 0.375 0.07645721 3368.085 86.031781 -2.5938559 2.7689996 -1070.4082 -1067.6392 + 3800 0.38 0.076457208 3425.3173 85.733048 -2.6266899 2.7593847 -1070.3986 -1067.6392 + 3850 0.385 0.076457165 3420.4429 84.240647 -2.6514805 2.7113506 -1070.3506 -1067.6392 + 3900 0.39 0.076457146 3323.0403 82.320886 -2.6700966 2.6495616 -1070.2888 -1067.6392 + 3950 0.395 0.076457179 3273.2625 80.780607 -2.6892405 2.5999865 -1070.2392 -1067.6392 + 4000 0.4 0.076457229 3313.2671 79.92769 -2.709641 2.5725347 -1070.2118 -1067.6392 + 4050 0.405 0.076457272 3381.1117 79.663389 -2.7291493 2.564028 -1070.2033 -1067.6392 + 4100 0.41 0.07645731 3373.3005 79.895158 -2.7514856 2.5714877 -1070.2107 -1067.6392 + 4150 0.415 0.076457296 3279.6989 80.402828 -2.7788004 2.5878274 -1070.2271 -1067.6392 + 4200 0.42 0.076457251 3197.0478 80.770336 -2.8064773 2.599656 -1070.2389 -1067.6392 + 4250 0.425 0.076457243 3160.9065 80.756747 -2.8307967 2.5992186 -1070.2385 -1067.6392 + 4300 0.43 0.076457282 3173.9599 80.446488 -2.852192 2.5892326 -1070.2285 -1067.6392 + 4350 0.435 0.076457289 3185.8003 80.110494 -2.8726607 2.5784184 -1070.2177 -1067.6392 + 4400 0.44 0.076457262 3166.3054 80.045036 -2.8936787 2.5763116 -1070.2155 -1067.6392 + 4450 0.445 0.076457226 3177.4332 80.500194 -2.9171408 2.5909612 -1070.2302 -1067.6392 + 4500 0.45 0.076457174 3238.8362 81.573722 -2.9447352 2.6255135 -1070.2647 -1067.6392 + 4550 0.455 0.07645714 3277.7104 83.104228 -2.975052 2.6747741 -1070.314 -1067.6392 + 4600 0.46 0.076457157 3224.8571 84.845473 -3.0065552 2.7308174 -1070.37 -1067.6392 + 4650 0.465 0.076457215 3112.9952 86.608217 -3.03972 2.7875527 -1070.4268 -1067.6392 + 4700 0.47 0.076457254 3001.141 88.18732 -3.074928 2.8383773 -1070.4776 -1067.6392 + 4750 0.475 0.076457235 2904.0735 89.204263 -3.1082127 2.8711084 -1070.5103 -1067.6392 + 4800 0.48 0.076457195 2832.0276 89.24571 -3.134302 2.8724424 -1070.5117 -1067.6392 + 4850 0.485 0.076457172 2833.7453 88.206351 -3.1541802 2.8389899 -1070.4782 -1067.6392 + 4900 0.49 0.076457184 2941.993 86.310712 -3.1725372 2.7779773 -1070.4172 -1067.6392 + 4950 0.495 0.076457228 3082.4825 84.029047 -3.1931038 2.7045401 -1070.3438 -1067.6392 + 5000 0.5 0.07645727 3155.7095 81.99875 -3.2175967 2.6391934 -1070.2784 -1067.6392 + 5050 0.505 0.076457297 3162.1875 80.72053 -3.2420203 2.5980529 -1070.2373 -1067.6392 + 5100 0.51 0.076457279 3133.3889 80.483768 -3.2606472 2.5904325 -1070.2297 -1067.6392 + 5150 0.515 0.076457223 3144.6361 81.566513 -3.2759117 2.6252815 -1070.2645 -1067.6392 + 5200 0.52 0.076457166 3156.8183 84.062018 -3.2944729 2.7056013 -1070.3448 -1067.6392 + 5250 0.525 0.076457128 3059.9886 87.694328 -3.3209415 2.82251 -1070.4617 -1067.6392 + 5300 0.53 0.076457126 2891.6506 91.782947 -3.3547324 2.9541054 -1070.5933 -1067.6392 + 5350 0.535 0.076457151 2751.9451 95.417928 -3.3914125 3.0711001 -1070.7103 -1067.6392 + 5400 0.54 0.07645725 2681.0265 97.845096 -3.4276651 3.1492204 -1070.7885 -1067.6392 + 5450 0.545 0.076457325 2657.0871 98.736021 -3.4632111 3.1778955 -1070.8171 -1067.6392 + 5500 0.55 0.076457263 2653.1919 98.075727 -3.4957627 3.1566434 -1070.7959 -1067.6392 + 5550 0.555 0.076457185 2644.2053 96.114963 -3.5208827 3.0935347 -1070.7328 -1067.6392 + 5600 0.56 0.076457195 2622.4174 93.525807 -3.5389264 3.0102007 -1070.6494 -1067.6392 + 5650 0.565 0.07645725 2616.3851 91.264369 -3.5558733 2.9374145 -1070.5766 -1067.6392 + 5700 0.57 0.076457256 2608.2454 90.135397 -3.5771374 2.9010777 -1070.5403 -1067.6392 + 5750 0.575 0.076457193 2573.217 90.456889 -3.6030061 2.9114252 -1070.5507 -1067.6392 + 5800 0.58 0.076457145 2565.3325 92.099499 -3.6318265 2.9642939 -1070.6035 -1067.6392 + 5850 0.585 0.076457161 2566.2763 94.62532 -3.6627041 3.0455894 -1070.6848 -1067.6392 + 5900 0.59 0.076457186 2564.6814 97.321391 -3.6927592 3.1323645 -1070.7716 -1067.6392 + 5950 0.595 0.076457195 2570.6317 99.384979 -3.7170023 3.1987827 -1070.838 -1067.6392 + 6000 0.6 0.076457206 2556.8466 100.3814 -3.7363622 3.2308533 -1070.8701 -1067.6392 + 6050 0.605 0.076457195 2521.7989 100.35237 -3.7587516 3.2299188 -1070.8692 -1067.6392 + 6100 0.61 0.076457175 2476.1857 99.370382 -3.7869326 3.1983129 -1070.8375 -1067.6392 + 6150 0.615 0.076457178 2397.2805 97.465979 -3.8168635 3.1370182 -1070.7763 -1067.6392 + 6200 0.62 0.07645713 2286.8528 94.931714 -3.8450242 3.0554509 -1070.6947 -1067.6392 + 6250 0.625 0.076457116 2250.5238 92.438461 -3.8722441 2.9752036 -1070.6144 -1067.6392 + 6300 0.63 0.076457156 2338.521 90.714356 -3.9006124 2.9197119 -1070.5589 -1067.6392 + 6350 0.635 0.07645717 2433.0115 90.142291 -3.9291158 2.9012996 -1070.5405 -1067.6392 + 6400 0.64 0.076457159 2467.5348 90.771111 -3.9562691 2.9215387 -1070.5608 -1067.6392 + 6450 0.645 0.076457107 2475.8592 92.488016 -3.9828131 2.9767986 -1070.616 -1067.6392 + 6500 0.65 0.0764571 2489.7418 95.127451 -4.0122141 3.0617508 -1070.701 -1067.6392 + 6550 0.655 0.076457169 2500.4747 98.171693 -4.0419177 3.1597321 -1070.799 -1067.6392 + 6600 0.66 0.076457208 2530.7924 100.74938 -4.0631997 3.242697 -1070.8819 -1067.6392 + 6650 0.665 0.076457205 2539.1274 102.26227 -4.0743158 3.2913904 -1070.9306 -1067.6392 + 6700 0.67 0.076457193 2456.6296 102.74328 -4.083416 3.3068723 -1070.9461 -1067.6392 + 6750 0.675 0.076457138 2387.5795 102.56259 -4.0973623 3.3010567 -1070.9403 -1067.6392 + 6800 0.68 0.076457109 2401.1036 102.04306 -4.113996 3.284335 -1070.9236 -1067.6392 + 6850 0.685 0.076457149 2426.9334 101.49407 -4.1282015 3.2666654 -1070.9059 -1067.6392 + 6900 0.69 0.076457185 2389.4808 101.35428 -4.1401792 3.2621662 -1070.9014 -1067.6392 + 6950 0.695 0.076457175 2323.8732 101.97431 -4.1517617 3.2821222 -1070.9214 -1067.6392 + 7000 0.7 0.076457145 2273.8742 103.4638 -4.1630859 3.3300628 -1070.9693 -1067.6392 + 7050 0.705 0.076457126 2231.6619 105.80757 -4.1770066 3.4054989 -1071.0447 -1067.6392 + 7100 0.71 0.076457114 2185.0913 108.81901 -4.1989399 3.5024243 -1071.1417 -1067.6392 + 7150 0.715 0.076457137 2139.1488 111.85718 -4.2283649 3.60021 -1071.2394 -1067.6392 + 7200 0.72 0.076457149 2101.4843 113.84985 -4.2560033 3.6643459 -1071.3036 -1067.6392 + 7250 0.725 0.07645712 2118.2459 113.9441 -4.2761251 3.6673792 -1071.3066 -1067.6392 + 7300 0.73 0.076457121 2191.8612 111.95162 -4.2925363 3.6032496 -1071.2425 -1067.6392 + 7350 0.735 0.076457137 2227.2133 108.21226 -4.3103732 3.4828957 -1071.1221 -1067.6392 + 7400 0.74 0.076457111 2182.8818 103.43153 -4.3300151 3.329024 -1070.9683 -1067.6392 + 7450 0.745 0.076457109 2101.9195 98.839733 -4.354205 3.1812335 -1070.8205 -1067.6392 + 7500 0.75 0.076457149 2036.6331 95.828658 -4.3866968 3.0843197 -1070.7235 -1067.6392 + 7550 0.755 0.076457161 1994.7766 95.143411 -4.4221882 3.0622645 -1070.7015 -1067.6392 + 7600 0.76 0.076457127 1970.8688 96.749372 -4.4522754 3.1139536 -1070.7532 -1067.6392 + 7650 0.765 0.076457086 1994.0036 100.15642 -4.4763519 3.223612 -1070.8628 -1067.6392 + 7700 0.77 0.076457048 2073.628 104.50472 -4.498005 3.3635656 -1071.0028 -1067.6392 + 7750 0.775 0.076457027 2167.9613 108.65949 -4.5168957 3.49729 -1071.1365 -1067.6392 + 7800 0.78 0.07645702 2217.2571 111.71851 -4.5326316 3.5957471 -1071.235 -1067.6392 + 7850 0.785 0.076457018 2202.7741 113.32785 -4.548779 3.6475449 -1071.2868 -1067.6392 + 7900 0.79 0.076457015 2164.9013 113.50963 -4.5689927 3.6533954 -1071.2926 -1067.6392 + 7950 0.795 0.076457037 2130.7469 112.46016 -4.5932603 3.6196176 -1071.2589 -1067.6392 + 8000 0.8 0.076457043 2075.0145 110.59865 -4.6198672 3.5597035 -1071.1989 -1067.6392 + 8050 0.805 0.076457061 2007.4917 108.6927 -4.6506917 3.4983589 -1071.1376 -1067.6392 + 8100 0.81 0.076457077 1991.5702 107.59433 -4.6877068 3.4630069 -1071.1022 -1067.6392 + 8150 0.815 0.07645708 2031.0743 107.95739 -4.7305236 3.4746923 -1071.1139 -1067.6392 + 8200 0.82 0.076457089 2054.3404 109.99515 -4.7756305 3.5402792 -1071.1795 -1067.6392 + 8250 0.825 0.076457091 2082.2542 113.4122 -4.8195703 3.6502597 -1071.2895 -1067.6392 + 8300 0.83 0.076457089 2137.8944 117.42257 -4.8606167 3.7793367 -1071.4186 -1067.6392 + 8350 0.835 0.076457127 2145.0506 120.77123 -4.8931181 3.8871159 -1071.5263 -1067.6392 + 8400 0.84 0.076457184 2101.9996 122.34334 -4.9126837 3.9377155 -1071.5769 -1067.6392 + 8450 0.845 0.076457201 2057.1092 121.73484 -4.921619 3.9181301 -1071.5574 -1067.6392 + 8500 0.85 0.076457149 2005.1132 119.2385 -4.9251343 3.8377838 -1071.477 -1067.6392 + 8550 0.855 0.076457098 1942.6247 115.64537 -4.9291799 3.722136 -1071.3614 -1067.6392 + 8600 0.86 0.076457115 1910.1502 111.98317 -4.9396222 3.6042654 -1071.2435 -1067.6392 + 8650 0.865 0.076457185 1943.3663 109.19353 -4.9603011 3.5144784 -1071.1537 -1067.6392 + 8700 0.87 0.076457254 2019.4182 107.80177 -4.9898541 3.4696837 -1071.1089 -1067.6392 + 8750 0.875 0.076457249 2073.1225 107.76716 -5.0205034 3.4685697 -1071.1078 -1067.6392 + 8800 0.88 0.076457175 2088.6545 108.72646 -5.0437829 3.4994455 -1071.1387 -1067.6392 + 8850 0.885 0.076457093 2077.5406 110.36499 -5.0572565 3.5521827 -1071.1914 -1067.6392 + 8900 0.89 0.076457088 2039.5392 112.51291 -5.0650529 3.6213154 -1071.2605 -1067.6392 + 8950 0.895 0.076457167 2016.6853 114.99374 -5.0744542 3.7011627 -1071.3404 -1067.6392 + 9000 0.9 0.076457241 2000.3012 117.47475 -5.0917242 3.781016 -1071.4202 -1067.6392 + 9050 0.905 0.076457226 1957.0091 119.35854 -5.1139655 3.8416472 -1071.4809 -1067.6392 + 9100 0.91 0.076457166 1923.1545 120.23087 -5.1350957 3.869724 -1071.509 -1067.6392 + 9150 0.915 0.076457128 1933.618 120.11319 -5.1511544 3.8659364 -1071.5052 -1067.6392 + 9200 0.92 0.076457114 1961.4473 119.3017 -5.1596749 3.8398178 -1071.4791 -1067.6392 + 9250 0.925 0.076457136 1962.1 118.34889 -5.1642618 3.8091509 -1071.4484 -1067.6392 + 9300 0.93 0.076457156 1942.9357 117.84262 -5.1720815 3.7928561 -1071.4321 -1067.6392 + 9350 0.935 0.076457138 1911.4886 118.10075 -5.1877615 3.8011641 -1071.4404 -1067.6392 + 9400 0.94 0.076457123 1890.6033 118.99959 -5.2079977 3.830094 -1071.4693 -1067.6392 + 9450 0.945 0.076457145 1911.9879 120.23989 -5.2265042 3.8700141 -1071.5092 -1067.6392 + 9500 0.95 0.076457172 1944.8053 121.67513 -5.2423826 3.9162086 -1071.5554 -1067.6392 + 9550 0.955 0.076457175 1950.6137 123.16708 -5.2566963 3.9642282 -1071.6035 -1067.6392 + 9600 0.96 0.076457174 1953.467 124.46943 -5.2686278 4.0061451 -1071.6454 -1067.6392 + 9650 0.965 0.076457174 1991.321 125.52237 -5.2816008 4.0400348 -1071.6793 -1067.6392 + 9700 0.97 0.076457153 2064.4494 126.48746 -5.3037304 4.0710971 -1071.7103 -1067.6392 + 9750 0.975 0.076457119 2117.0576 127.38593 -5.3401962 4.100015 -1071.7392 -1067.6392 + 9800 0.98 0.076457147 2129.8396 127.90735 -5.38872 4.1167973 -1071.756 -1067.6392 + 9850 0.985 0.076457201 2114.5902 127.47883 -5.4369444 4.103005 -1071.7422 -1067.6392 + 9900 0.99 0.076457216 2054.2807 125.71916 -5.4695662 4.0463688 -1071.6856 -1067.6392 + 9950 0.995 0.076457168 1984.2158 123.01154 -5.4834672 3.9592219 -1071.5985 -1067.6392 + 10000 1 0.076457131 1962.6658 120.32305 -5.4872199 3.8726906 -1071.5119 -1067.6392 + 10050 1.005 0.076457159 1973.2973 118.61523 -5.4922129 3.8177233 -1071.457 -1067.6392 + 10100 1.01 0.076457216 1957.9424 118.36973 -5.5066432 3.8098215 -1071.4491 -1067.6392 + 10150 1.015 0.076457197 1942.1125 119.27525 -5.5290592 3.8389666 -1071.4782 -1067.6392 + 10200 1.02 0.076457142 1978.3009 120.6949 -5.5571675 3.8846591 -1071.5239 -1067.6392 + 10250 1.025 0.076457171 2058.9652 122.05983 -5.5914809 3.9285903 -1071.5678 -1067.6392 + 10300 1.03 0.07645722 2104.5325 122.92754 -5.6303584 3.9565181 -1071.5958 -1067.6392 + 10350 1.035 0.07645723 2072.9687 123.15237 -5.6697758 3.9637547 -1071.603 -1067.6392 + 10400 1.04 0.076457234 2012.912 123.02584 -5.7067292 3.9596822 -1071.5989 -1067.6392 + 10450 1.045 0.076457242 1971.6903 123.23438 -5.7426231 3.9663941 -1071.6056 -1067.6392 + 10500 1.05 0.0764573 1932.8929 124.43675 -5.7779702 4.0050935 -1071.6443 -1067.6392 + 10550 1.055 0.076457357 1892.1027 126.80016 -5.8082237 4.0811614 -1071.7204 -1067.6392 + 10600 1.06 0.076457317 1911.4422 130.09167 -5.8347562 4.1871012 -1071.8263 -1067.6392 + 10650 1.065 0.076457251 1994.4648 133.74505 -5.8634891 4.3046881 -1071.9439 -1067.6392 + 10700 1.07 0.076457242 2058.3043 136.94864 -5.8957766 4.4077983 -1072.047 -1067.6392 + 10750 1.075 0.076457284 2065.4421 138.83647 -5.9266133 4.4685595 -1072.1078 -1067.6392 + 10800 1.08 0.076457341 2054.3284 138.84647 -5.9519915 4.4688815 -1072.1081 -1067.6392 + 10850 1.085 0.076457339 2019.0718 136.8565 -5.9690783 4.4048328 -1072.0441 -1067.6392 + 10900 1.09 0.076457316 1950.5439 133.30535 -5.9772058 4.290536 -1071.9298 -1067.6392 + 10950 1.095 0.076457386 1880.7681 129.31046 -5.9839906 4.1619576 -1071.8012 -1067.6392 + 11000 1.1 0.076457422 1858.5762 126.17301 -5.9991286 4.0609761 -1071.7002 -1067.6392 + 11050 1.105 0.076457344 1895.8864 124.66179 -6.0225804 4.0123366 -1071.6516 -1067.6392 + 11100 1.11 0.076457251 1940.5442 124.88033 -6.0460181 4.0193704 -1071.6586 -1067.6392 + 11150 1.115 0.076457202 1961.4346 126.74742 -6.0683173 4.0794642 -1071.7187 -1067.6392 + 11200 1.12 0.076457268 1940.4836 129.91024 -6.0923522 4.1812618 -1071.8205 -1067.6392 + 11250 1.125 0.07645736 1893.8666 133.48134 -6.1129806 4.2962004 -1071.9354 -1067.6392 + 11300 1.13 0.076457404 1883.0365 136.68921 -6.127246 4.3994482 -1072.0387 -1067.6392 + 11350 1.135 0.076457466 1882.1011 139.1981 -6.1379481 4.480199 -1072.1194 -1067.6392 + 11400 1.14 0.076457485 1867.5435 140.91567 -6.1513193 4.5354803 -1072.1747 -1067.6392 + 11450 1.145 0.076457418 1847.4052 141.74281 -6.1759478 4.5621023 -1072.2013 -1067.6392 + 11500 1.15 0.076457338 1813.6291 141.28184 -6.2119682 4.5472657 -1072.1865 -1067.6392 + 11550 1.155 0.076457333 1784.6892 139.23575 -6.2525061 4.4814106 -1072.1206 -1067.6392 + 11600 1.16 0.076457369 1755.4332 135.80671 -6.2888206 4.3710442 -1072.0103 -1067.6392 + 11650 1.165 0.076457401 1699.9293 131.63594 -6.3110048 4.236805 -1071.876 -1067.6392 + 11700 1.17 0.076457404 1653.9907 128.00726 -6.3221466 4.120013 -1071.7592 -1067.6392 + 11750 1.175 0.076457374 1643.4316 126.38341 -6.3360107 4.067748 -1071.707 -1067.6392 + 11800 1.18 0.07645738 1673.0949 127.37545 -6.3582141 4.0996777 -1071.7389 -1067.6392 + 11850 1.185 0.076457443 1718.7225 130.55123 -6.3857492 4.2018928 -1071.8411 -1067.6392 + 11900 1.19 0.076457444 1724.682 134.87067 -6.4146926 4.3409171 -1071.9801 -1067.6392 + 11950 1.195 0.076457414 1724.3414 139.24431 -6.4451679 4.4816863 -1072.1209 -1067.6392 + 12000 1.2 0.07645743 1749.066 142.81679 -6.4797792 4.5966692 -1072.2359 -1067.6392 + 12050 1.205 0.076457426 1742.2617 144.86234 -6.5158489 4.6625067 -1072.3017 -1067.6392 + 12100 1.21 0.076457401 1675.5507 144.96503 -6.548258 4.6658119 -1072.305 -1067.6392 + 12150 1.215 0.076457385 1610.7217 143.28189 -6.5749551 4.6116388 -1072.2509 -1067.6392 + 12200 1.22 0.07645736 1594.8876 140.48135 -6.5962025 4.5215012 -1072.1607 -1067.6392 + 12250 1.225 0.076457308 1625.0427 137.50616 -6.6145044 4.4257425 -1072.065 -1067.6392 + 12300 1.23 0.076457299 1685.9568 135.20765 -6.6302129 4.3517632 -1071.991 -1067.6392 + 12350 1.235 0.07645735 1733.821 134.30584 -6.6414385 4.3227378 -1071.962 -1067.6392 + 12400 1.24 0.076457353 1729.246 135.30039 -6.6446018 4.3547479 -1071.994 -1067.6392 + 12450 1.245 0.076457334 1680.067 138.31057 -6.6400277 4.4516331 -1072.0909 -1067.6392 + 12500 1.25 0.076457325 1617.8899 143.09184 -6.6404768 4.6055219 -1072.2448 -1067.6392 + 12550 1.255 0.07645726 1599.1888 148.81179 -6.6580865 4.7896229 -1072.4289 -1067.6392 + 12600 1.26 0.076457209 1658.9431 154.06138 -6.6888278 4.9585849 -1072.5978 -1067.6392 + 12650 1.265 0.07645722 1736.4699 157.49898 -6.7220069 5.0692269 -1072.7085 -1067.6392 + 12700 1.27 0.076457274 1779.2323 158.32957 -6.7551291 5.09596 -1072.7352 -1067.6392 + 12750 1.275 0.076457311 1789.9676 156.14983 -6.7885643 5.0258035 -1072.665 -1067.6392 + 12800 1.28 0.076457268 1802.2393 151.08471 -6.8186653 4.8627787 -1072.502 -1067.6392 + 12850 1.285 0.076457196 1818.1637 144.48302 -6.8490939 4.650298 -1072.2895 -1067.6392 + 12900 1.29 0.076457211 1817.2314 138.47831 -6.8873527 4.4570318 -1072.0963 -1067.6392 + 12950 1.295 0.076457276 1820.0753 134.61334 -6.9279428 4.3326347 -1071.9719 -1067.6392 + 13000 1.3 0.076457312 1845.4907 133.46496 -6.9596793 4.2956734 -1071.9349 -1067.6392 + 13050 1.305 0.076457338 1874.3042 135.13413 -6.9813982 4.3493968 -1071.9886 -1067.6392 + 13100 1.31 0.076457326 1866.7738 139.17204 -6.9940579 4.4793602 -1072.1186 -1067.6392 + 13150 1.315 0.076457289 1832.5745 144.49783 -6.9974757 4.6507749 -1072.29 -1067.6392 + 13200 1.32 0.076457244 1807.0747 149.77919 -6.9983839 4.8207594 -1072.46 -1067.6392 + 13250 1.325 0.076457187 1796.8435 153.72265 -7.0061211 4.9476829 -1072.5869 -1067.6392 + 13300 1.33 0.076457166 1784.1488 155.25389 -7.0202393 4.9969671 -1072.6362 -1067.6392 + 13350 1.335 0.076457229 1753.2853 154.01439 -7.0330486 4.9570726 -1072.5963 -1067.6392 + 13400 1.34 0.0764573 1735.0082 150.84246 -7.0447346 4.8549818 -1072.4942 -1067.6392 + 13450 1.345 0.076457318 1726.8186 147.29221 -7.0628093 4.7407141 -1072.3799 -1067.6392 + 13500 1.35 0.076457297 1714.977 144.61665 -7.0896843 4.654599 -1072.2938 -1067.6392 + 13550 1.355 0.076457254 1740.268 143.14927 -7.1129029 4.6073704 -1072.2466 -1067.6392 + 13600 1.36 0.076457211 1795.1636 143.04769 -7.1231397 4.6041009 -1072.2433 -1067.6392 + 13650 1.365 0.076457195 1823.9739 144.93969 -7.1325 4.6649965 -1072.3042 -1067.6392 + 13700 1.37 0.076457222 1791.6272 148.76155 -7.1501954 4.7880059 -1072.4272 -1067.6392 + 13750 1.375 0.076457214 1717.918 153.25937 -7.1700837 4.9327719 -1072.572 -1067.6392 + 13800 1.38 0.076457173 1650.2116 156.96821 -7.1856522 5.0521435 -1072.6914 -1067.6392 + 13850 1.385 0.076457198 1622.7393 158.94614 -7.1959656 5.1158049 -1072.755 -1067.6392 + 13900 1.39 0.076457218 1637.783 158.98661 -7.2040613 5.1171074 -1072.7563 -1067.6392 + 13950 1.395 0.076457202 1657.4634 157.44492 -7.212632 5.0674868 -1072.7067 -1067.6392 + 14000 1.4 0.076457212 1629.5225 155.05742 -7.2266988 4.9906432 -1072.6299 -1067.6392 + 14050 1.405 0.076457239 1593.2904 152.54882 -7.2502659 4.909902 -1072.5491 -1067.6392 + 14100 1.41 0.07645727 1606.034 150.42146 -7.2818725 4.8414313 -1072.4807 -1067.6392 + 14150 1.415 0.076457309 1640.1759 149.04348 -7.3155252 4.7970802 -1072.4363 -1067.6392 + 14200 1.42 0.076457319 1638.1785 148.56697 -7.3411886 4.7817433 -1072.421 -1067.6392 + 14250 1.425 0.07645727 1612.0972 148.95521 -7.3526259 4.7942389 -1072.4335 -1067.6392 + 14300 1.43 0.076457238 1604.4691 150.10919 -7.3547431 4.8313808 -1072.4706 -1067.6392 + 14350 1.435 0.076457245 1636.4307 151.65208 -7.3541157 4.88104 -1072.5203 -1067.6392 + 14400 1.44 0.076457266 1696.8545 152.99826 -7.354098 4.9243678 -1072.5636 -1067.6392 + 14450 1.445 0.076457266 1741.9828 153.81879 -7.3623341 4.9507773 -1072.59 -1067.6392 + 14500 1.45 0.076457331 1723.2799 153.89268 -7.3834301 4.9531555 -1072.5924 -1067.6392 + 14550 1.455 0.076457432 1657.9319 152.98996 -7.4146781 4.9241004 -1072.5633 -1067.6392 + 14600 1.46 0.076457435 1610.2643 151.16037 -7.4510333 4.8652138 -1072.5044 -1067.6392 + 14650 1.465 0.076457345 1613.0087 148.97 -7.4863307 4.794715 -1072.4339 -1067.6392 + 14700 1.47 0.076457271 1634.4356 147.61305 -7.5183727 4.7510405 -1072.3903 -1067.6392 + 14750 1.475 0.076457283 1633.8891 148.27943 -7.5460376 4.7724886 -1072.4117 -1067.6392 + 14800 1.48 0.076457348 1618.243 151.33474 -7.5665855 4.870826 -1072.5101 -1067.6392 + 14850 1.485 0.076457439 1627.6856 156.2869 -7.5835708 5.0302153 -1072.6694 -1067.6392 + 14900 1.49 0.076457511 1648.6155 162.01117 -7.6018187 5.2144553 -1072.8537 -1067.6392 + 14950 1.495 0.076457476 1659.3058 167.117 -7.6196613 5.3787903 -1073.018 -1067.6392 + 15000 1.5 0.076457375 1669.5167 170.51349 -7.6348747 5.4881089 -1073.1273 -1067.6392 + 15050 1.505 0.076457377 1665.0495 171.6971 -7.6501299 5.5262045 -1073.1654 -1067.6392 + 15100 1.51 0.076457509 1653.5232 170.56263 -7.668555 5.4896905 -1073.1289 -1067.6392 + 15150 1.515 0.07645762 1663.0378 167.19624 -7.6903772 5.3813406 -1073.0206 -1067.6392 + 15200 1.52 0.076457618 1681.9976 161.85457 -7.7108297 5.209415 -1072.8486 -1067.6392 + 15250 1.525 0.076457556 1694.698 155.288 -7.7230717 4.9980649 -1072.6373 -1067.6392 + 15300 1.53 0.076457526 1707.5473 149.10693 -7.726013 4.7991221 -1072.4384 -1067.6392 + 15350 1.535 0.076457503 1714.975 145.26109 -7.7215489 4.6753408 -1072.3146 -1067.6392 + 15400 1.54 0.076457471 1739.6517 145.03787 -7.7121713 4.6681565 -1072.3074 -1067.6392 + 15450 1.545 0.076457463 1779.381 148.49637 -7.7068895 4.7794708 -1072.4187 -1067.6392 + 15500 1.55 0.07645747 1810.3562 154.24813 -7.7125777 4.9645959 -1072.6038 -1067.6392 + 15550 1.555 0.076457505 1808.4717 160.18471 -7.7266491 5.1556691 -1072.7949 -1067.6392 + 15600 1.56 0.076457526 1770.3298 164.69045 -7.7419766 5.3006898 -1072.9399 -1067.6392 + 15650 1.565 0.0764575 1738.214 167.21043 -7.7549828 5.3817975 -1073.021 -1067.6392 + 15700 1.57 0.076457497 1697.7709 168.21074 -7.7723359 5.4139933 -1073.0532 -1067.6392 + 15750 1.575 0.076457555 1621.7132 168.50851 -7.8026216 5.4235772 -1073.0628 -1067.6392 + 15800 1.58 0.076457525 1558.2186 168.47199 -7.8436156 5.4224019 -1073.0616 -1067.6392 + 15850 1.585 0.076457429 1502.1375 167.96717 -7.8883594 5.4061538 -1073.0454 -1067.6392 + 15900 1.59 0.076457478 1425.3742 166.66576 -7.932759 5.3642668 -1073.0035 -1067.6392 + 15950 1.595 0.076457632 1386.0338 164.33246 -7.9718972 5.2891677 -1072.9284 -1067.6392 + 16000 1.6 0.076457666 1419.1839 161.41038 -8.0074959 5.1951185 -1072.8344 -1067.6392 + 16050 1.605 0.076457544 1468.9614 158.91164 -8.0487546 5.1146946 -1072.7539 -1067.6392 + 16100 1.61 0.076457494 1490.7382 157.31753 -8.0937558 5.063387 -1072.7026 -1067.6392 + 16150 1.615 0.076457538 1474.5813 156.42997 -8.1330424 5.03482 -1072.6741 -1067.6392 + 16200 1.62 0.076457556 1437.0783 156.08614 -8.164616 5.0237536 -1072.663 -1067.6392 + 16250 1.625 0.07645755 1438.9601 156.34668 -8.1896203 5.0321393 -1072.6714 -1067.6392 + 16300 1.63 0.076457624 1484.8299 157.40778 -8.2067204 5.0662916 -1072.7055 -1067.6392 + 16350 1.635 0.076457699 1524.3051 159.66771 -8.218867 5.1390293 -1072.7783 -1067.6392 + 16400 1.64 0.076457644 1544.3149 163.28567 -8.2298125 5.255476 -1072.8947 -1067.6392 + 16450 1.645 0.076457498 1553.8417 167.83654 -8.2377547 5.4019493 -1073.0412 -1067.6392 + 16500 1.65 0.076457465 1570.695 172.8939 -8.2462061 5.5647244 -1073.204 -1067.6392 + 16550 1.655 0.076457507 1593.9327 178.16048 -8.2624521 5.7342334 -1073.3735 -1067.6392 + 16600 1.66 0.076457489 1603.2741 183.00592 -8.2872119 5.8901875 -1073.5294 -1067.6392 + 16650 1.665 0.076457496 1571.7154 186.29884 -8.312974 5.9961727 -1073.6354 -1067.6392 + 16700 1.67 0.07645753 1518.6156 186.99911 -8.3350509 6.0187115 -1073.6579 -1067.6392 + 16750 1.675 0.07645752 1499.821 184.74394 -8.3580495 5.9461271 -1073.5854 -1067.6392 + 16800 1.68 0.076457499 1530.7723 179.78119 -8.3875745 5.7863972 -1073.4256 -1067.6392 + 16850 1.685 0.076457548 1575.4962 172.5183 -8.4158429 5.5526355 -1073.1919 -1067.6392 + 16900 1.69 0.076457558 1612.3074 163.97541 -8.4338169 5.277676 -1072.9169 -1067.6392 + 16950 1.695 0.076457479 1635.3132 156.35605 -8.4487945 5.0324408 -1072.6717 -1067.6392 + 17000 1.7 0.076457438 1614.5636 151.92591 -8.4700427 4.8898534 -1072.5291 -1067.6392 + 17050 1.705 0.076457424 1564.7085 151.36605 -8.4902367 4.8718339 -1072.5111 -1067.6392 + 17100 1.71 0.076457358 1535.6285 153.90525 -8.4942176 4.95356 -1072.5928 -1067.6392 + 17150 1.715 0.07645735 1518.627 158.54937 -8.4805275 5.1030346 -1072.7423 -1067.6392 + 17200 1.72 0.07645738 1514.2327 164.40935 -8.4621733 5.2916425 -1072.9309 -1067.6392 + 17250 1.725 0.076457379 1551.5372 170.62245 -8.4562493 5.4916159 -1073.1308 -1067.6392 + 17300 1.73 0.076457343 1595.3198 176.25515 -8.4715899 5.6729089 -1073.3121 -1067.6392 + 17350 1.735 0.076457342 1587.5028 180.16731 -8.4978474 5.7988247 -1073.4381 -1067.6392 + 17400 1.74 0.076457376 1544.7126 181.61601 -8.5200915 5.8454522 -1073.4847 -1067.6392 + 17450 1.745 0.076457389 1509.6731 180.91787 -8.5397072 5.8229821 -1073.4622 -1067.6392 + 17500 1.75 0.076457336 1478.9973 178.87414 -8.56042 5.7572029 -1073.3964 -1067.6392 + 17550 1.755 0.076457332 1451.7239 176.20376 -8.5752611 5.6712547 -1073.3105 -1067.6392 + 17600 1.76 0.076457348 1448.0805 173.64327 -8.5784834 5.5888433 -1073.2281 -1067.6392 + 17650 1.765 0.076457351 1433.0266 171.81431 -8.5726784 5.5299771 -1073.1692 -1067.6392 + 17700 1.77 0.076457438 1390.9365 171.02874 -8.564521 5.5046929 -1073.1439 -1067.6392 + 17750 1.775 0.076457533 1349.1394 171.41687 -8.5621201 5.517185 -1073.1564 -1067.6392 + 17800 1.78 0.076457498 1329.3506 172.86493 -8.5713277 5.563792 -1073.203 -1067.6392 + 17850 1.785 0.076457438 1327.4567 174.82124 -8.5922814 5.6267573 -1073.266 -1067.6392 + 17900 1.79 0.076457427 1319.5199 176.42672 -8.6210646 5.6784309 -1073.3177 -1067.6392 + 17950 1.795 0.076457411 1304.8013 176.80992 -8.649668 5.6907647 -1073.33 -1067.6392 + 18000 1.8 0.076457418 1286.8171 175.49891 -8.6685582 5.6485687 -1073.2878 -1067.6392 + 18050 1.805 0.076457416 1286.4901 172.8819 -8.6780447 5.5643383 -1073.2036 -1067.6392 + 18100 1.81 0.076457432 1323.7883 169.97231 -8.6878072 5.4706908 -1073.1099 -1067.6392 + 18150 1.815 0.076457437 1368.7263 167.90229 -8.7078544 5.4040655 -1073.0433 -1067.6392 + 18200 1.82 0.076457419 1375.2794 167.69816 -8.7440081 5.3974953 -1073.0367 -1067.6392 + 18250 1.825 0.076457418 1341.4685 169.86898 -8.7923763 5.467365 -1073.1066 -1067.6392 + 18300 1.83 0.076457444 1302.4142 174.12507 -8.8422065 5.6043505 -1073.2436 -1067.6392 + 18350 1.835 0.07645748 1271.1442 179.47439 -8.8848553 5.7765226 -1073.4158 -1067.6392 + 18400 1.84 0.07645751 1240.9996 184.64305 -8.9194649 5.9428799 -1073.5821 -1067.6392 + 18450 1.845 0.07645748 1233.4446 188.58667 -8.9527618 6.0698084 -1073.709 -1067.6392 + 18500 1.85 0.07645741 1261.96 190.37217 -8.9842233 6.1272761 -1073.7665 -1067.6392 + 18550 1.855 0.076457388 1308.7001 189.47505 -9.0098977 6.0984017 -1073.7376 -1067.6392 + 18600 1.86 0.076457432 1358.6974 185.96915 -9.0244894 5.9855615 -1073.6248 -1067.6392 + 18650 1.865 0.076457467 1405.4436 180.67131 -9.0286656 5.8150463 -1073.4543 -1067.6392 + 18700 1.87 0.076457462 1433.4669 175.00624 -9.0350323 5.6327117 -1073.2719 -1067.6392 + 18750 1.875 0.0764574 1445.5264 170.24923 -9.048183 5.4796035 -1073.1188 -1067.6392 + 18800 1.88 0.07645736 1443.3405 167.50038 -9.0636349 5.3911298 -1073.0304 -1067.6392 + 18850 1.885 0.076457415 1447.0868 167.72835 -9.083147 5.3984671 -1073.0377 -1067.6392 + 18900 1.89 0.076457524 1458.9885 171.02105 -9.1096362 5.5044452 -1073.1437 -1067.6392 + 18950 1.895 0.076457539 1446.6895 176.34791 -9.1375492 5.6758943 -1073.3151 -1067.6392 + 19000 1.9 0.076457474 1411.5198 182.40529 -9.161382 5.8708558 -1073.5101 -1067.6392 + 19050 1.905 0.076457448 1385.2991 188.2183 -9.1852956 6.0579522 -1073.6972 -1067.6392 + 19100 1.91 0.076457528 1413.6999 192.85984 -9.215331 6.2073435 -1073.8466 -1067.6392 + 19150 1.915 0.076457582 1480.043 195.28016 -9.2474153 6.2852437 -1073.9245 -1067.6392 + 19200 1.92 0.076457539 1547.1186 195.01127 -9.2733006 6.2765891 -1073.9158 -1067.6392 + 19250 1.925 0.07645751 1605.8035 192.80171 -9.2939477 6.2054728 -1073.8447 -1067.6392 + 19300 1.93 0.076457473 1598.3059 190.10762 -9.3163636 6.1187613 -1073.758 -1067.6392 + 19350 1.935 0.076457416 1509.2408 188.03157 -9.3412168 6.0519421 -1073.6912 -1067.6392 + 19400 1.94 0.076457518 1434.6458 186.83194 -9.3626576 6.0133311 -1073.6526 -1067.6392 + 19450 1.945 0.076457638 1403.9558 186.03899 -9.3780305 5.9878093 -1073.627 -1067.6392 + 19500 1.95 0.076457559 1394.7584 185.05086 -9.3957021 5.9560055 -1073.5952 -1067.6392 + 19550 1.955 0.076457442 1413.4384 183.7353 -9.4257255 5.9136631 -1073.5529 -1067.6392 + 19600 1.96 0.076457383 1421.2339 182.69045 -9.4681432 5.880034 -1073.5193 -1067.6392 + 19650 1.965 0.076457413 1420.5968 182.99886 -9.5190918 5.8899604 -1073.5292 -1067.6392 + 19700 1.97 0.076457479 1422.3009 185.07328 -9.5688775 5.9567273 -1073.596 -1067.6392 + 19750 1.975 0.076457568 1401.8644 188.22803 -9.6031318 6.0582654 -1073.6975 -1067.6392 + 19800 1.98 0.076457554 1393.8386 191.47532 -9.6182282 6.1627819 -1073.802 -1067.6392 + 19850 1.985 0.076457465 1418.2809 194.07382 -9.6229072 6.2464164 -1073.8856 -1067.6392 + 19900 1.99 0.076457438 1451.5379 195.52045 -9.6257452 6.2929776 -1073.9322 -1067.6392 + 19950 1.995 0.076457422 1478.147 195.5996 -9.6318225 6.295525 -1073.9348 -1067.6392 + 20000 2 0.076457344 1467.9497 194.43701 -9.6465325 6.258106 -1073.8973 -1067.6392 + 20050 2.005 0.076457295 1455.781 192.15793 -9.6679695 6.1847521 -1073.824 -1067.6392 + 20100 2.01 0.076457282 1475.7234 188.99879 -9.6853381 6.0830729 -1073.7223 -1067.6392 + 20150 2.015 0.076457336 1511.2492 185.9129 -9.6914823 5.983751 -1073.623 -1067.6392 + 20200 2.02 0.076457369 1535.108 184.55863 -9.6947447 5.9401628 -1073.5794 -1067.6392 + 20250 2.025 0.07645738 1549.6908 186.04749 -9.7111475 5.9880829 -1073.6273 -1067.6392 + 20300 2.03 0.076457371 1573.2987 189.74993 -9.7443086 6.1072487 -1073.7465 -1067.6392 + 20350 2.035 0.076457335 1598.8027 193.78171 -9.7835665 6.2370146 -1073.8762 -1067.6392 + 20400 2.04 0.076457321 1612.4365 196.34944 -9.8182578 6.3196591 -1073.9589 -1067.6392 + 20450 2.045 0.076457294 1595.6224 196.49735 -9.8435079 6.3244197 -1073.9637 -1067.6392 + 20500 2.05 0.076457341 1551.0932 194.1488 -9.8554709 6.2488299 -1073.8881 -1067.6392 + 20550 2.055 0.076457438 1523.3882 190.11991 -9.8537895 6.1191568 -1073.7584 -1067.6392 + 20600 2.06 0.07645743 1505.948 186.07182 -9.8495482 5.9888659 -1073.6281 -1067.6392 + 20650 2.065 0.076457406 1490.3445 183.51625 -9.8537234 5.906613 -1073.5458 -1067.6392 + 20700 2.07 0.076457442 1490.946 182.9075 -9.8637593 5.8870197 -1073.5263 -1067.6392 + 20750 2.075 0.076457441 1481.0717 184.03654 -9.8709996 5.9233588 -1073.5626 -1067.6392 + 20800 2.08 0.076457493 1467.9055 186.97232 -9.8793685 6.0178494 -1073.6571 -1067.6392 + 20850 2.085 0.076457525 1469.5229 191.9059 -9.9019503 6.1766405 -1073.8159 -1067.6392 + 20900 2.09 0.07645743 1500.8747 198.14128 -9.9382469 6.3773308 -1074.0166 -1067.6392 + 20950 2.095 0.076457353 1522.7523 204.22851 -9.9761093 6.573253 -1074.2125 -1067.6392 + 21000 2.1 0.076457408 1493.9748 209.08499 -10.009592 6.7295628 -1074.3688 -1067.6392 + 21050 2.105 0.076457469 1446.2705 212.35054 -10.040544 6.8346669 -1074.4739 -1067.6392 + 21100 2.11 0.076457354 1411.2601 213.76664 -10.067187 6.8802453 -1074.5195 -1067.6392 + 21150 2.115 0.07645727 1391.2445 213.01118 -10.083619 6.8559303 -1074.4952 -1067.6392 + 21200 2.12 0.07645735 1371.2169 210.04448 -10.087484 6.7604446 -1074.3997 -1067.6392 + 21250 2.125 0.076457381 1340.7221 205.38603 -10.08789 6.6105088 -1074.2497 -1067.6392 + 21300 2.13 0.076457303 1325.8617 199.86436 -10.098269 6.4327894 -1074.072 -1067.6392 + 21350 2.135 0.076457273 1350.6616 194.28131 -10.12363 6.2530948 -1073.8923 -1067.6392 + 21400 2.14 0.076457275 1394.6898 189.37392 -10.157685 6.0951465 -1073.7344 -1067.6392 + 21450 2.145 0.076457319 1404.9529 186.00624 -10.193758 5.9867551 -1073.626 -1067.6392 + 21500 2.15 0.076457343 1377.3399 184.88515 -10.229093 5.950672 -1073.5899 -1067.6392 + 21550 2.155 0.076457316 1331.0234 185.97828 -10.259659 5.9858551 -1073.6251 -1067.6392 + 21600 2.16 0.076457281 1273.4665 188.83363 -10.28823 6.077757 -1073.717 -1067.6392 + 21650 2.165 0.076457288 1243.3898 192.93897 -10.322287 6.2098905 -1073.8491 -1067.6392 + 21700 2.17 0.076457281 1219.7561 197.68298 -10.364391 6.3625801 -1074.0018 -1067.6392 + 21750 2.175 0.076457285 1200.7077 202.03274 -10.403933 6.5025805 -1074.1418 -1067.6392 + 21800 2.18 0.076457259 1184.4538 204.87849 -10.429043 6.5941733 -1074.2334 -1067.6392 + 21850 2.185 0.076457258 1175.6721 205.68948 -10.440346 6.6202757 -1074.2595 -1067.6392 + 21900 2.19 0.076457315 1180.8341 204.8243 -10.448053 6.5924291 -1074.2317 -1067.6392 + 21950 2.195 0.07645731 1194.0301 203.45174 -10.464561 6.5482521 -1074.1875 -1067.6392 + 22000 2.2 0.076457233 1221.9791 202.73877 -10.493309 6.5253048 -1074.1645 -1067.6392 + 22050 2.205 0.076457231 1250.0249 203.00033 -10.523727 6.5337233 -1074.173 -1067.6392 + 22100 2.21 0.076457313 1249.3152 204.03327 -10.546944 6.5669691 -1074.2062 -1067.6392 + 22150 2.215 0.076457371 1237.3367 205.55066 -10.562365 6.6158075 -1074.255 -1067.6392 + 22200 2.22 0.076457296 1243.2787 207.11609 -10.573015 6.6661921 -1074.3054 -1067.6392 + 22250 2.225 0.076457216 1271.1183 208.31179 -10.585742 6.7046767 -1074.3439 -1067.6392 + 22300 2.23 0.076457244 1284.8837 208.8428 -10.603798 6.7217677 -1074.361 -1067.6392 + 22350 2.235 0.076457332 1283.4661 208.59905 -10.624708 6.7139222 -1074.3532 -1067.6392 + 22400 2.24 0.07645736 1303.7498 207.46236 -10.6408 6.6773371 -1074.3166 -1067.6392 + 22450 2.245 0.076457355 1335.4979 205.36278 -10.647746 6.6097605 -1074.249 -1067.6392 + 22500 2.25 0.076457336 1346.4145 202.64405 -10.654521 6.5222561 -1074.1615 -1067.6392 + 22550 2.255 0.076457311 1346.1625 199.76606 -10.666656 6.4296256 -1074.0689 -1067.6392 + 22600 2.26 0.076457308 1340.0768 197.47287 -10.68361 6.3558176 -1073.995 -1067.6392 + 22650 2.265 0.076457239 1331.9216 197.00994 -10.705717 6.3409178 -1073.9801 -1067.6392 + 22700 2.27 0.076457144 1323.8234 199.2165 -10.723115 6.4119377 -1074.0512 -1067.6392 + 22750 2.275 0.076457155 1328.8167 204.12885 -10.731517 6.5700455 -1074.2093 -1067.6392 + 22800 2.28 0.076457245 1341.6384 210.71157 -10.738456 6.7819153 -1074.4211 -1067.6392 + 22850 2.285 0.076457291 1356.1262 216.84292 -10.742858 6.9792578 -1074.6185 -1067.6392 + 22900 2.29 0.07645725 1366.5895 220.63144 -10.743306 7.1011942 -1074.7404 -1067.6392 + 22950 2.295 0.076457156 1344.6768 221.40356 -10.750585 7.1260454 -1074.7653 -1067.6392 + 23000 2.3 0.076457186 1294.1965 219.35393 -10.774867 7.0600763 -1074.6993 -1067.6392 + 23050 2.305 0.076457196 1239.1224 214.99785 -10.815487 6.9198728 -1074.5591 -1067.6392 + 23100 2.31 0.076457076 1215.0106 208.92641 -10.858673 6.7244588 -1074.3637 -1067.6392 + 23150 2.315 0.076457176 1230.6321 202.19142 -10.890066 6.5076879 -1074.1469 -1067.6392 + 23200 2.32 0.076457304 1238.2351 196.6442 -10.911075 6.3291462 -1073.9684 -1067.6392 + 23250 2.325 0.076457249 1239.4105 194.24059 -10.931389 6.2517841 -1073.891 -1067.6392 + 23300 2.33 0.076457161 1257.0758 195.88203 -10.952578 6.3046152 -1073.9438 -1067.6392 + 23350 2.335 0.076457197 1279.1537 200.82031 -10.967466 6.4635575 -1074.1028 -1067.6392 + 23400 2.34 0.076457257 1300.7395 207.5662 -10.975013 6.6806793 -1074.3199 -1067.6392 + 23450 2.345 0.07645726 1308.5908 214.80077 -10.98098 6.9135294 -1074.5528 -1067.6392 + 23500 2.35 0.076457272 1289.4755 221.18513 -10.987842 7.1190149 -1074.7582 -1067.6392 + 23550 2.355 0.076457236 1283.5991 225.44351 -10.997358 7.2560744 -1074.8953 -1067.6392 + 23600 2.36 0.076457163 1312.3799 226.64105 -11.007971 7.294618 -1074.9339 -1067.6392 + 23650 2.365 0.076457229 1344.3851 224.59123 -11.019084 7.2286432 -1074.8679 -1067.6392 + 23700 2.37 0.07645729 1365.885 219.94976 -11.030767 7.0792538 -1074.7185 -1067.6392 + 23750 2.375 0.076457227 1401.6314 214.22979 -11.045135 6.895152 -1074.5344 -1067.6392 + 23800 2.38 0.076457188 1427.6864 209.29217 -11.064939 6.7362309 -1074.3755 -1067.6392 + 23850 2.385 0.076457163 1408.8222 206.27856 -11.086967 6.6392355 -1074.2785 -1067.6392 + 23900 2.39 0.07645708 1385.5983 205.10952 -11.107172 6.6016091 -1074.2408 -1067.6392 + 23950 2.395 0.076457071 1387.0133 205.04577 -11.129799 6.5995574 -1074.2388 -1067.6392 + 24000 2.4 0.076457108 1390.5162 205.39894 -11.156831 6.6109242 -1074.2502 -1067.6392 + 24050 2.405 0.076457131 1357.8774 206.15789 -11.185375 6.6353518 -1074.2746 -1067.6392 + 24100 2.41 0.076457132 1299.8027 207.97437 -11.215364 6.6938165 -1074.333 -1067.6392 + 24150 2.415 0.076457046 1264.5476 211.18407 -11.243431 6.7971232 -1074.4364 -1067.6392 + 24200 2.42 0.076456997 1257.3066 215.49914 -11.266145 6.9360069 -1074.5752 -1067.6392 + 24250 2.425 0.076457004 1257.7398 220.04117 -11.280372 7.0821959 -1074.7214 -1067.6392 + 24300 2.43 0.07645702 1251.1577 223.4371 -11.283992 7.1914966 -1074.8307 -1067.6392 + 24350 2.435 0.076457022 1252.7715 224.64315 -11.285671 7.230314 -1074.8695 -1067.6392 + 24400 2.44 0.076456984 1265.9957 223.69761 -11.294539 7.1998812 -1074.8391 -1067.6392 + 24450 2.445 0.076456934 1262.7138 221.81546 -11.310639 7.1393028 -1074.7785 -1067.6392 + 24500 2.45 0.076456873 1233.0144 220.50339 -11.329658 7.0970727 -1074.7363 -1067.6392 + 24550 2.455 0.076456875 1202.6505 220.34157 -11.349408 7.0918644 -1074.7311 -1067.6392 + 24600 2.46 0.076456941 1202.6676 220.33665 -11.361751 7.0917062 -1074.7309 -1067.6392 + 24650 2.465 0.076456963 1226.7474 219.30132 -11.363433 7.058383 -1074.6976 -1067.6392 + 24700 2.47 0.076456936 1249.5386 217.48305 -11.36762 6.9998606 -1074.6391 -1067.6392 + 24750 2.475 0.076456975 1268.5471 215.9159 -11.38311 6.9494209 -1074.5887 -1067.6392 + 24800 2.48 0.076456964 1270.5323 215.29735 -11.406944 6.9295122 -1074.5687 -1067.6392 + 24850 2.485 0.076456848 1246.8523 215.79179 -11.434782 6.9454262 -1074.5847 -1067.6392 + 24900 2.49 0.076456767 1228.3555 217.27323 -11.464221 6.9931074 -1074.6323 -1067.6392 + 24950 2.495 0.076456798 1234.9605 219.39808 -11.48602 7.0614974 -1074.7007 -1067.6392 + 25000 2.5 0.076456902 1253.6133 221.8827 -11.487009 7.1414669 -1074.7807 -1067.6392 + 25050 2.505 0.076456945 1263.1766 224.65139 -11.467154 7.2305793 -1074.8698 -1067.6392 + 25100 2.51 0.076456885 1268.8469 227.19826 -11.44163 7.3125522 -1074.9518 -1067.6392 + 25150 2.515 0.076456776 1270.7217 228.36783 -11.425894 7.3501958 -1074.9894 -1067.6392 + 25200 2.52 0.076456734 1279.1408 227.30965 -11.424483 7.3161374 -1074.9554 -1067.6392 + 25250 2.525 0.076456742 1292.6915 224.19273 -11.429236 7.2158169 -1074.8551 -1067.6392 + 25300 2.53 0.07645679 1314.5843 219.60843 -11.430397 7.0682677 -1074.7075 -1067.6392 + 25350 2.535 0.07645686 1334.032 213.71531 -11.425496 6.8785933 -1074.5178 -1067.6392 + 25400 2.54 0.076456849 1349.3813 207.2907 -11.418326 6.6718121 -1074.311 -1067.6392 + 25450 2.545 0.07645677 1377.8998 202.81528 -11.421994 6.5277672 -1074.167 -1067.6392 + 25500 2.55 0.076456793 1396.8932 202.49375 -11.445285 6.5174184 -1074.1566 -1067.6392 + 25550 2.555 0.076456881 1384.3333 205.94001 -11.474157 6.628339 -1074.2676 -1067.6392 + 25600 2.56 0.076456893 1392.2099 211.07888 -11.490781 6.7937375 -1074.433 -1067.6392 + 25650 2.565 0.076456856 1425.474 216.44999 -11.500276 6.966611 -1074.6058 -1067.6392 + 25700 2.57 0.07645682 1422.3347 221.7408 -11.521064 7.1368997 -1074.7761 -1067.6392 + 25750 2.575 0.076456827 1389.5116 226.77774 -11.558724 7.2990176 -1074.9383 -1067.6392 + 25800 2.58 0.076456894 1376.0165 230.42348 -11.588294 7.4163587 -1075.0556 -1067.6392 + 25850 2.585 0.076456848 1392.9987 231.78982 -11.595522 7.4603351 -1075.0996 -1067.6392 + 25900 2.59 0.07645674 1406.285 231.56537 -11.605309 7.4531113 -1075.0923 -1067.6392 + 25950 2.595 0.076456751 1413.5397 230.66657 -11.635338 7.4241825 -1075.0634 -1067.6392 + 26000 2.6 0.076456899 1416.443 229.45699 -11.678587 7.3852513 -1075.0245 -1067.6392 + 26050 2.605 0.076457003 1403.885 228.28072 -11.723713 7.3473922 -1074.9866 -1067.6392 + 26100 2.61 0.076457021 1373.3644 227.67281 -11.766892 7.3278259 -1074.9671 -1067.6392 + 26150 2.615 0.076456911 1340.7862 227.79846 -11.809643 7.3318702 -1074.9711 -1067.6392 + 26200 2.62 0.076456907 1300.443 227.6998 -11.840279 7.3286948 -1074.9679 -1067.6392 + 26250 2.625 0.076456986 1245.9108 226.64351 -11.849238 7.2946973 -1074.9339 -1067.6392 + 26300 2.63 0.076456906 1213.3895 225.39942 -11.849142 7.2546552 -1074.8939 -1067.6392 + 26350 2.635 0.076456826 1226.1376 224.51387 -11.849268 7.2261533 -1074.8654 -1067.6392 + 26400 2.64 0.076456838 1277.7083 223.02405 -11.845728 7.1782022 -1074.8174 -1067.6392 + 26450 2.645 0.076456848 1348.5108 219.94872 -11.843068 7.0792202 -1074.7185 -1067.6392 + 26500 2.65 0.076456809 1384.7118 215.79754 -11.858605 6.9456112 -1074.5848 -1067.6392 + 26550 2.655 0.076456789 1365.0705 211.7995 -11.891933 6.8169312 -1074.4562 -1067.6392 + 26600 2.66 0.076456914 1299.543 209.09625 -11.921163 6.729925 -1074.3692 -1067.6392 + 26650 2.665 0.076457016 1239.2364 208.71915 -11.931351 6.7177878 -1074.357 -1067.6392 + 26700 2.67 0.076456972 1214.9068 211.699 -11.935106 6.8136966 -1074.4529 -1067.6392 + 26750 2.675 0.076456871 1213.0891 218.33214 -11.952461 7.0271895 -1074.6664 -1067.6392 + 26800 2.68 0.076456798 1223.6985 227.28091 -11.983537 7.3152126 -1074.9544 -1067.6392 + 26850 2.685 0.076456809 1225.5098 236.07415 -12.013499 7.5982297 -1075.2375 -1067.6392 + 26900 2.69 0.076456872 1227.6603 242.5254 -12.033513 7.8058683 -1075.4451 -1067.6392 + 26950 2.695 0.076456972 1258.3608 245.56912 -12.047317 7.9038328 -1075.5431 -1067.6392 + 27000 2.7 0.076456994 1275.6126 245.13472 -12.061439 7.8898512 -1075.5291 -1067.6392 + 27050 2.705 0.076456887 1268.2866 241.7328 -12.077934 7.7803577 -1075.4196 -1067.6392 + 27100 2.71 0.076456789 1276.6398 236.41209 -12.099691 7.6091067 -1075.2483 -1067.6392 + 27150 2.715 0.076456817 1285.086 230.59357 -12.127675 7.4218332 -1075.0611 -1067.6392 + 27200 2.72 0.076456956 1279.8644 225.6959 -12.152964 7.2641976 -1074.9034 -1067.6392 + 27250 2.725 0.076457008 1265.0918 222.9285 -12.162529 7.1751269 -1074.8144 -1067.6392 + 27300 2.73 0.076456892 1255.4758 223.34114 -12.160471 7.1884079 -1074.8276 -1067.6392 + 27350 2.735 0.076456791 1255.3028 227.16525 -12.168727 7.3114899 -1074.9507 -1067.6392 + 27400 2.74 0.07645683 1235.3098 232.49107 -12.190625 7.4829055 -1075.1221 -1067.6392 + 27450 2.745 0.076456913 1195.6445 236.20823 -12.208759 7.6025451 -1075.2418 -1067.6392 + 27500 2.75 0.076456943 1161.6213 236.76136 -12.22307 7.6203482 -1075.2596 -1067.6392 + 27550 2.755 0.076456918 1154.7881 234.39737 -12.238887 7.5442614 -1075.1835 -1067.6392 + 27600 2.76 0.076456852 1164.6343 230.1096 -12.253338 7.4062559 -1075.0455 -1067.6392 + 27650 2.765 0.07645681 1192.4719 225.31606 -12.266794 7.2519722 -1074.8912 -1067.6392 + 27700 2.77 0.076456909 1231.6135 221.89166 -12.281503 7.1417553 -1074.781 -1067.6392 + 27750 2.775 0.076457006 1235.7541 221.87696 -12.295173 7.1412822 -1074.7805 -1067.6392 + 27800 2.78 0.07645698 1208.1367 226.64974 -12.307425 7.2948978 -1074.9341 -1067.6392 + 27850 2.785 0.076456891 1176.1511 235.51318 -12.317651 7.5801745 -1075.2194 -1067.6392 + 27900 2.79 0.076456848 1164.9233 245.47424 -12.322706 7.9007791 -1075.54 -1067.6392 + 27950 2.795 0.076456846 1164.6239 253.11209 -12.32738 8.1466091 -1075.7858 -1067.6392 + 28000 2.8 0.076456848 1160.4177 256.41801 -12.347417 8.2530127 -1075.8922 -1067.6392 + 28050 2.805 0.076456824 1162.4022 254.7287 -12.389013 8.1986408 -1075.8379 -1067.6392 + 28100 2.81 0.076456816 1169.0586 248.13397 -12.435631 7.9863846 -1075.6256 -1067.6392 + 28150 2.815 0.076456796 1178.5376 238.03172 -12.470806 7.6612358 -1075.3005 -1067.6392 + 28200 2.82 0.076456763 1199.2585 227.28714 -12.495824 7.3154129 -1074.9546 -1067.6392 + 28250 2.825 0.07645681 1234.5536 218.97616 -12.518189 7.0479177 -1074.6871 -1067.6392 + 28300 2.83 0.076456865 1276.7135 215.42144 -12.539753 6.9335061 -1074.5727 -1067.6392 + 28350 2.835 0.076456943 1320.0112 217.52061 -12.555571 7.0010697 -1074.6403 -1067.6392 + 28400 2.84 0.07645694 1322.7705 223.90193 -12.561183 7.2064573 -1074.8457 -1067.6392 + 28450 2.845 0.076456873 1274.2662 231.82206 -12.558374 7.461373 -1075.1006 -1067.6392 + 28500 2.85 0.07645682 1212.3657 239.21446 -12.557378 7.6993032 -1075.3385 -1067.6392 + 28550 2.855 0.076456743 1168.3546 245.06433 -12.567018 7.8875858 -1075.5268 -1067.6392 + 28600 2.86 0.076456731 1159.1141 248.78928 -12.591534 8.007476 -1075.6467 -1067.6392 + 28650 2.865 0.07645684 1173.7764 249.83877 -12.632126 8.0412547 -1075.6805 -1067.6392 + 28700 2.87 0.076456919 1172.0608 247.79274 -12.684385 7.9754016 -1075.6146 -1067.6392 + 28750 2.875 0.076456876 1150.8061 243.05242 -12.738771 7.8228308 -1075.4621 -1067.6392 + 28800 2.88 0.076456855 1119.2348 237.23074 -12.782276 7.6354555 -1075.2747 -1067.6392 + 28850 2.885 0.076456907 1109.9511 233.14457 -12.809798 7.5039389 -1075.1432 -1067.6392 + 28900 2.89 0.076456909 1118.3015 233.7173 -12.825932 7.5223728 -1075.1616 -1067.6392 + 28950 2.895 0.076456802 1110.4763 239.3953 -12.836993 7.7051234 -1075.3444 -1067.6392 + 29000 2.9 0.076456789 1094.3593 246.77428 -12.846357 7.9426216 -1075.5819 -1067.6392 + 29050 2.905 0.076456914 1087.347 250.95238 -12.854444 8.077097 -1075.7163 -1067.6392 + 29100 2.91 0.076456912 1080.3745 249.15916 -12.864944 8.019381 -1075.6586 -1067.6392 + 29150 2.915 0.076456867 1077.8142 242.15509 -12.879291 7.7939495 -1075.4332 -1067.6392 + 29200 2.92 0.076456965 1073.411 233.44287 -12.891242 7.5135398 -1075.1528 -1067.6392 + 29250 2.925 0.076457115 1072.0744 227.42913 -12.90317 7.3199831 -1074.9592 -1067.6392 + 29300 2.93 0.076457151 1093.6395 227.10626 -12.933289 7.3095913 -1074.9488 -1067.6392 + 29350 2.935 0.076457038 1119.3849 232.36032 -12.988079 7.4786974 -1075.1179 -1067.6392 + 29400 2.94 0.076456921 1134.6243 240.72805 -13.055919 7.748019 -1075.3873 -1067.6392 + 29450 2.945 0.076456864 1141.918 249.49518 -13.118734 8.0301961 -1075.6694 -1067.6392 + 29500 2.95 0.076456941 1159.6822 257.15763 -13.165805 8.2768181 -1075.9161 -1067.6392 + 29550 2.955 0.07645714 1179.2951 262.93943 -13.20027 8.4629096 -1076.1021 -1067.6392 + 29600 2.96 0.07645717 1186.3391 265.77303 -13.225007 8.5541112 -1076.1933 -1067.6392 + 29650 2.965 0.076456962 1198.5613 265.15045 -13.244795 8.5340732 -1076.1733 -1067.6392 + 29700 2.97 0.07645683 1197.8883 261.64426 -13.26969 8.4212236 -1076.0605 -1067.6392 + 29750 2.975 0.076456909 1177.7226 255.9899 -13.299001 8.2392337 -1075.8785 -1067.6392 + 29800 2.98 0.076457063 1159.8441 249.00075 -13.322918 8.0142823 -1075.6535 -1067.6392 + 29850 2.985 0.076457146 1148.4764 242.18856 -13.338769 7.7950268 -1075.4343 -1067.6392 + 29900 2.99 0.076457089 1130.9903 237.45135 -13.348753 7.6425559 -1075.2818 -1067.6392 + 29950 2.995 0.076457001 1117.7814 236.46455 -13.358912 7.610795 -1075.25 -1067.6392 + 30000 3 0.076456942 1126.2416 239.60448 -13.37352 7.7118561 -1075.3511 -1067.6392 + 30050 3.005 0.076456886 1156.3534 245.25724 -13.389734 7.8937946 -1075.533 -1067.6392 + 30100 3.01 0.076456966 1190.7799 250.77536 -13.402583 8.0713994 -1075.7106 -1067.6392 + 30150 3.015 0.076457085 1203.6351 254.27554 -13.409529 8.1840557 -1075.8233 -1067.6392 + 30200 3.02 0.076457139 1204.0863 255.8356 -13.413637 8.2342673 -1075.8735 -1067.6392 + 30250 3.025 0.07645724 1221.2681 256.67609 -13.417029 8.2613191 -1075.9006 -1067.6392 + 30300 3.03 0.076457187 1256.9158 257.31837 -13.417166 8.2819915 -1075.9212 -1067.6392 + 30350 3.035 0.076457004 1278.7323 257.24074 -13.411793 8.2794928 -1075.9187 -1067.6392 + 30400 3.04 0.076457001 1251.5199 256.19386 -13.407137 8.2457981 -1075.885 -1067.6392 + 30450 3.045 0.076457164 1196.1208 254.69214 -13.410047 8.1974643 -1075.8367 -1067.6392 + 30500 3.05 0.076457257 1145.1647 253.23253 -13.415744 8.1504855 -1075.7897 -1067.6392 + 30550 3.055 0.076457144 1116.3699 251.85343 -13.417375 8.1060982 -1075.7453 -1067.6392 + 30600 3.06 0.076456997 1135.1489 250.16809 -13.409575 8.051854 -1075.6911 -1067.6392 + 30650 3.065 0.076457054 1166.8172 248.05389 -13.394954 7.9838071 -1075.623 -1067.6392 + 30700 3.07 0.076457216 1168.9659 245.96158 -13.389042 7.9164642 -1075.5557 -1067.6392 + 30750 3.075 0.076457229 1179.4894 244.10708 -13.40216 7.8567758 -1075.496 -1067.6392 + 30800 3.08 0.076457154 1215.0559 242.34737 -13.43183 7.8001383 -1075.4394 -1067.6392 + 30850 3.085 0.076457184 1249.0791 240.65467 -13.466111 7.7456575 -1075.3849 -1067.6392 + 30900 3.09 0.076457196 1263.3416 239.28699 -13.484792 7.7016376 -1075.3409 -1067.6392 + 30950 3.095 0.076457165 1271.4598 239.5317 -13.488388 7.7095135 -1075.3487 -1067.6392 + 31000 3.1 0.076457184 1286.9333 242.95851 -13.498706 7.8198081 -1075.459 -1067.6392 + 31050 3.105 0.076457244 1283.9706 249.40628 -13.524063 8.0273348 -1075.6666 -1067.6392 + 31100 3.11 0.076457303 1260.718 256.94623 -13.554227 8.2700138 -1075.9092 -1067.6392 + 31150 3.115 0.076457309 1234.9544 263.41539 -13.575646 8.4782287 -1076.1175 -1067.6392 + 31200 3.12 0.076457299 1221.679 267.76241 -13.587061 8.618141 -1076.2574 -1067.6392 + 31250 3.125 0.07645728 1205.3199 269.88964 -13.601419 8.6866074 -1076.3258 -1067.6392 + 31300 3.13 0.076457321 1193.2183 269.84108 -13.633868 8.6850446 -1076.3243 -1067.6392 + 31350 3.135 0.076457329 1188.8946 267.62378 -13.682779 8.6136792 -1076.2529 -1067.6392 + 31400 3.14 0.07645724 1172.3644 263.84237 -13.735657 8.4919716 -1076.1312 -1067.6392 + 31450 3.145 0.076457234 1156.6255 259.26765 -13.777686 8.3447306 -1075.984 -1067.6392 + 31500 3.15 0.076457352 1146.2606 254.31094 -13.801841 8.1851949 -1075.8244 -1067.6392 + 31550 3.155 0.076457413 1127.1739 249.59314 -13.819577 8.0333488 -1075.6726 -1067.6392 + 31600 3.16 0.076457375 1124.4259 245.82878 -13.842426 7.91219 -1075.5514 -1067.6392 + 31650 3.165 0.076457268 1141.1569 243.59222 -13.866183 7.8402047 -1075.4794 -1067.6392 + 31700 3.17 0.076457185 1142.9315 243.62712 -13.876409 7.8413279 -1075.4806 -1067.6392 + 31750 3.175 0.076457201 1127.0843 246.58578 -13.867806 7.9365548 -1075.5758 -1067.6392 + 31800 3.18 0.076457204 1110.3606 251.69266 -13.849255 8.1009235 -1075.7402 -1067.6392 + 31850 3.185 0.076457198 1090.6423 257.43936 -13.842194 8.2858857 -1075.9251 -1067.6392 + 31900 3.19 0.076457249 1070.2837 263.0995 -13.858302 8.4680616 -1076.1073 -1067.6392 + 31950 3.195 0.076457354 1038.4021 268.06563 -13.88309 8.6279005 -1076.2671 -1067.6392 + 32000 3.2 0.076457382 1003.1513 271.1038 -13.895783 8.7256861 -1076.3649 -1067.6392 + 32050 3.205 0.07645731 1001.503 271.56962 -13.890494 8.7406789 -1076.3799 -1067.6392 + 32100 3.21 0.076457342 1028.1672 270.88408 -13.884736 8.7186143 -1076.3578 -1067.6392 + 32150 3.215 0.076457246 1043.2279 270.60923 -13.897305 8.709768 -1076.349 -1067.6392 + 32200 3.22 0.076457163 1061.7278 269.95561 -13.919101 8.688731 -1076.328 -1067.6392 + 32250 3.225 0.076457192 1099.7924 267.40921 -13.929905 8.6067729 -1076.246 -1067.6392 + 32300 3.23 0.07645728 1115.399 262.77167 -13.926581 8.4575103 -1076.0967 -1067.6392 + 32350 3.235 0.076457358 1107.8892 257.08093 -13.924138 8.2743494 -1075.9136 -1067.6392 + 32400 3.24 0.076457338 1118.6333 252.33081 -13.927952 8.1214629 -1075.7607 -1067.6392 + 32450 3.245 0.076457214 1128.4292 251.44519 -13.927409 8.0929586 -1075.7322 -1067.6392 + 32500 3.25 0.076457246 1127.0405 254.99795 -13.916976 8.2073069 -1075.8465 -1067.6392 + 32550 3.255 0.076457307 1140.3298 259.54929 -13.905249 8.3537953 -1075.993 -1067.6392 + 32600 3.26 0.076457287 1141.9087 261.74213 -13.898995 8.4243735 -1076.0636 -1067.6392 + 32650 3.265 0.076457265 1125.1087 260.48084 -13.894888 8.3837781 -1076.023 -1067.6392 + 32700 3.27 0.076457288 1107.2451 256.23647 -13.88768 8.2471695 -1075.8864 -1067.6392 + 32750 3.275 0.076457331 1106.2294 250.66639 -13.887159 8.0678924 -1075.7071 -1067.6392 + 32800 3.28 0.076457361 1102.8873 245.7362 -13.901525 7.9092104 -1075.5484 -1067.6392 + 32850 3.285 0.0764573 1073.7918 243.36584 -13.927674 7.8329184 -1075.4721 -1067.6392 + 32900 3.29 0.076457246 1038.3344 245.33181 -13.96315 7.8961946 -1075.5354 -1067.6392 + 32950 3.295 0.076457262 1052.5387 251.76398 -14.002376 8.103219 -1075.7424 -1067.6392 + 33000 3.3 0.076457271 1099.7091 260.70233 -14.040774 8.3909068 -1076.0301 -1067.6392 + 33050 3.305 0.076457299 1122.3662 269.29951 -14.075396 8.6676137 -1076.3068 -1067.6392 + 33100 3.31 0.076457348 1133.2046 274.78945 -14.097368 8.8443117 -1076.4835 -1067.6392 + 33150 3.315 0.076457345 1144.5149 275.86818 -14.112263 8.8790314 -1076.5183 -1067.6392 + 33200 3.32 0.076457354 1152.0065 273.20166 -14.133828 8.7932075 -1076.4324 -1067.6392 + 33250 3.325 0.076457309 1165.8775 268.65705 -14.161563 8.6469357 -1076.2862 -1067.6392 + 33300 3.33 0.076457216 1161.3025 264.27145 -14.185104 8.5057818 -1076.145 -1067.6392 + 33350 3.335 0.076457256 1163.6382 261.21763 -14.196243 8.4074921 -1076.0467 -1067.6392 + 33400 3.34 0.076457414 1170.8832 259.37361 -14.192673 8.348141 -1075.9874 -1067.6392 + 33450 3.345 0.076457435 1147.1567 258.47673 -14.188523 8.3192742 -1075.9585 -1067.6392 + 33500 3.35 0.076457365 1105.1155 258.65363 -14.192309 8.3249679 -1075.9642 -1067.6392 + 33550 3.355 0.07645739 1090.5352 260.22936 -14.198584 8.3756839 -1076.0149 -1067.6392 + 33600 3.36 0.076457404 1090.7024 263.15737 -14.207014 8.469924 -1076.1092 -1067.6392 + 33650 3.365 0.076457298 1076.4632 266.48318 -14.215356 8.576968 -1076.2162 -1067.6392 + 33700 3.37 0.076457283 1073.0859 269.43944 -14.224471 8.6721174 -1076.3113 -1067.6392 + 33750 3.375 0.076457376 1089.3381 271.89961 -14.244593 8.7512999 -1076.3905 -1067.6392 + 33800 3.38 0.076457435 1103.4612 273.25721 -14.276978 8.7949953 -1076.4342 -1067.6392 + 33850 3.385 0.076457308 1111.4346 272.37848 -14.311851 8.7667127 -1076.4059 -1067.6392 + 33900 3.39 0.076457152 1121.3405 268.69095 -14.338922 8.6480268 -1076.2873 -1067.6392 + 33950 3.395 0.076457254 1157.28 262.95636 -14.353057 8.4634547 -1076.1027 -1067.6392 + 34000 3.4 0.076457397 1196.7048 257.60289 -14.365288 8.2911489 -1075.9304 -1067.6392 + 34050 3.405 0.076457474 1195.8072 255.33311 -14.384718 8.2180942 -1075.8573 -1067.6392 + 34100 3.41 0.076457516 1168.6865 257.33079 -14.404595 8.2823911 -1075.9216 -1067.6392 + 34150 3.415 0.076457484 1150.4642 263.06466 -14.423569 8.4669403 -1076.1062 -1067.6392 + 34200 3.42 0.076457454 1145.8816 270.24631 -14.440471 8.6980873 -1076.3373 -1067.6392 + 34250 3.425 0.076457414 1150.0173 275.63341 -14.450898 8.8714751 -1076.5107 -1067.6392 + 34300 3.43 0.076457415 1133.3958 276.80837 -14.458349 8.9092922 -1076.5485 -1067.6392 + 34350 3.435 0.076457417 1105.4056 273.08081 -14.468157 8.7893178 -1076.4286 -1067.6392 + 34400 3.44 0.07645741 1103.7812 265.31563 -14.480189 8.5393893 -1076.1786 -1067.6392 + 34450 3.445 0.076457445 1111.05 255.73892 -14.490895 8.2311555 -1075.8704 -1067.6392 + 34500 3.45 0.076457521 1110.7118 247.85989 -14.49958 7.9775629 -1075.6168 -1067.6392 + 34550 3.455 0.076457579 1130.7725 245.33622 -14.510207 7.8963366 -1075.5356 -1067.6392 + 34600 3.46 0.07645756 1160.5408 249.98597 -14.528291 8.0459926 -1075.6852 -1067.6392 + 34650 3.465 0.076457475 1173.3904 260.77724 -14.552952 8.393318 -1076.0325 -1067.6392 + 34700 3.47 0.076457459 1180.1124 274.58004 -14.57703 8.8375718 -1076.4768 -1067.6392 + 34750 3.475 0.076457431 1180.26 287.50066 -14.596337 9.2534319 -1076.8927 -1067.6392 + 34800 3.48 0.076457427 1168.0204 296.32134 -14.616838 9.5373322 -1077.1766 -1067.6392 + 34850 3.485 0.076457533 1160.6555 299.11042 -14.639374 9.6271011 -1077.2663 -1067.6392 + 34900 3.49 0.076457572 1154.8977 295.41469 -14.653836 9.5081511 -1077.1474 -1067.6392 + 34950 3.495 0.076457515 1144.2382 286.47523 -14.655017 9.2204277 -1076.8597 -1067.6392 + 35000 3.5 0.076457456 1136.3462 275.07037 -14.654715 8.8533533 -1076.4926 -1067.6392 + 35050 3.505 0.076457435 1137.4511 264.5464 -14.667149 8.5146312 -1076.1539 -1067.6392 + 35100 3.51 0.076457336 1147.1459 257.28562 -14.689408 8.2809373 -1075.9202 -1067.6392 + 35150 3.515 0.076457286 1150.785 253.77586 -14.702669 8.167973 -1075.8072 -1067.6392 + 35200 3.52 0.076457352 1139.7459 253.69403 -14.69943 8.1653391 -1075.8046 -1067.6392 + 35250 3.525 0.076457425 1116.52 256.58494 -14.694772 8.2583854 -1075.8976 -1067.6392 + 35300 3.53 0.07645748 1111.2173 261.10191 -14.6981 8.4037676 -1076.043 -1067.6392 + 35350 3.535 0.076457452 1135.6446 265.79828 -14.707669 8.554924 -1076.1942 -1067.6392 + 35400 3.54 0.076457288 1139.7867 270.36596 -14.724124 8.7019382 -1076.3412 -1067.6392 + 35450 3.545 0.076457217 1102.2707 274.78594 -14.743394 8.8441988 -1076.4834 -1067.6392 + 35500 3.55 0.076457301 1090.3939 278.40484 -14.763703 8.9606757 -1076.5999 -1067.6392 + 35550 3.555 0.076457358 1123.8334 280.40441 -14.795776 9.0250337 -1076.6643 -1067.6392 + 35600 3.56 0.076457339 1139.5536 280.69755 -14.849214 9.0344686 -1076.6737 -1067.6392 + 35650 3.565 0.076457352 1140.7103 280.04749 -14.917058 9.0135457 -1076.6528 -1067.6392 + 35700 3.57 0.076457331 1142.1674 279.62947 -14.981817 9.0000914 -1076.6393 -1067.6392 + 35750 3.575 0.07645736 1144.6546 281.13135 -15.039973 9.0484306 -1076.6877 -1067.6392 + 35800 3.58 0.076457452 1144.7784 285.20803 -15.085998 9.1796418 -1076.8189 -1067.6392 + 35850 3.585 0.076457435 1129.3741 290.12224 -15.107991 9.3378094 -1076.977 -1067.6392 + 35900 3.59 0.076457393 1112.74 293.01297 -15.11219 9.43085 -1077.0701 -1067.6392 + 35950 3.595 0.076457348 1103.3623 292.03339 -15.117469 9.3993213 -1077.0386 -1067.6392 + 36000 3.6 0.076457342 1092.3592 288.39522 -15.133694 9.282224 -1076.9215 -1067.6392 + 36050 3.605 0.076457368 1097.7068 284.33868 -15.15275 9.1516611 -1076.7909 -1067.6392 + 36100 3.61 0.076457447 1089.6532 278.3984 -15.16353 8.9604684 -1076.5997 -1067.6392 + 36150 3.615 0.076457405 1081.2352 270.14161 -15.16929 8.6947173 -1076.3339 -1067.6392 + 36200 3.62 0.076457246 1076.5583 262.87042 -15.178409 8.4606885 -1076.0999 -1067.6392 + 36250 3.625 0.076457235 1061.0661 259.62181 -15.1944 8.3561296 -1075.9954 -1067.6392 + 36300 3.63 0.07645747 1050.7866 261.15131 -15.213791 8.4053577 -1076.0446 -1067.6392 + 36350 3.635 0.076457644 1053.0141 266.64658 -15.238262 8.5822271 -1076.2215 -1067.6392 + 36400 3.64 0.076457572 1037.7841 274.52553 -15.272383 8.8358172 -1076.475 -1067.6392 + 36450 3.645 0.076457433 1003.6397 283.25391 -15.31747 9.1167468 -1076.756 -1067.6392 + 36500 3.65 0.076457386 978.50118 290.76048 -15.359824 9.3583516 -1076.9976 -1067.6392 + 36550 3.655 0.076457382 954.71445 294.4333 -15.380916 9.4765644 -1077.1158 -1067.6392 + 36600 3.66 0.076457454 934.6731 293.09974 -15.381452 9.4336425 -1077.0729 -1067.6392 + 36650 3.665 0.076457485 917.05162 288.19168 -15.372846 9.2756729 -1076.9149 -1067.6392 + 36700 3.67 0.076457404 904.52028 282.67475 -15.369934 9.0981062 -1076.7373 -1067.6392 + 36750 3.675 0.076457354 922.86218 278.65706 -15.385872 8.9687938 -1076.608 -1067.6392 + 36800 3.68 0.076457377 950.29972 276.39567 -15.411585 8.8960092 -1076.5352 -1067.6392 + 36850 3.685 0.076457379 947.97462 275.42079 -15.423194 8.864632 -1076.5039 -1067.6392 + 36900 3.69 0.076457359 941.51877 276.16385 -15.417289 8.8885477 -1076.5278 -1067.6392 + 36950 3.695 0.076457353 956.9108 279.42747 -15.409523 8.99359 -1076.6328 -1067.6392 + 37000 3.7 0.076457317 971.60851 284.78002 -15.412025 9.165866 -1076.8051 -1067.6392 + 37050 3.705 0.076457306 982.77877 290.53372 -15.432887 9.3510532 -1076.9903 -1067.6392 + 37100 3.71 0.076457343 997.15237 294.70552 -15.468502 9.4853259 -1077.1246 -1067.6392 + 37150 3.715 0.076457385 1016.0615 296.28658 -15.49906 9.5362134 -1077.1754 -1067.6392 + 37200 3.72 0.076457326 1051.0664 296.04901 -15.514614 9.5285671 -1077.1678 -1067.6392 + 37250 3.725 0.076457371 1089.2886 295.21317 -15.526145 9.501665 -1077.1409 -1067.6392 + 37300 3.73 0.076457452 1106.1528 293.87568 -15.548007 9.4586168 -1077.0978 -1067.6392 + 37350 3.735 0.076457445 1104.2757 291.48449 -15.577866 9.3816546 -1077.0209 -1067.6392 + 37400 3.74 0.076457331 1085.4998 288.23588 -15.602969 9.2770954 -1076.9163 -1067.6392 + 37450 3.745 0.076457268 1062.8115 285.35794 -15.620806 9.1844668 -1076.8237 -1067.6392 + 37500 3.75 0.076457259 1070.5416 284.37772 -15.640178 9.1529175 -1076.7921 -1067.6392 + 37550 3.755 0.076457261 1092.7901 285.9339 -15.668545 9.2030045 -1076.8422 -1067.6392 + 37600 3.76 0.076457268 1115.2985 288.69513 -15.700277 9.2918767 -1076.9311 -1067.6392 + 37650 3.765 0.076457312 1142.7167 290.22268 -15.717189 9.3410421 -1076.9803 -1067.6392 + 37700 3.77 0.076457266 1159.0972 289.01456 -15.704132 9.3021579 -1076.9414 -1067.6392 + 37750 3.775 0.076457153 1167.8654 285.54867 -15.672789 9.1906054 -1076.8298 -1067.6392 + 37800 3.78 0.076457127 1147.6845 281.59483 -15.654861 9.0633481 -1076.7026 -1067.6392 + 37850 3.785 0.076457194 1112.0309 278.61486 -15.657502 8.9674356 -1076.6067 -1067.6392 + 37900 3.79 0.076457284 1085.8713 277.75431 -15.666153 8.9397381 -1076.579 -1067.6392 + 37950 3.795 0.076457256 1063.8837 280.32673 -15.681907 9.0225334 -1076.6618 -1067.6392 + 38000 3.8 0.076457157 1076.2096 286.41182 -15.708072 9.2183866 -1076.8576 -1067.6392 + 38050 3.805 0.076457093 1101.2483 293.93325 -15.728993 9.4604696 -1077.0997 -1067.6392 + 38100 3.81 0.076457058 1093.1319 300.15342 -15.736321 9.6606707 -1077.2999 -1067.6392 + 38150 3.815 0.076457144 1052.1314 302.93086 -15.72822 9.7500647 -1077.3893 -1067.6392 + 38200 3.82 0.076457165 1022.6071 302.06991 -15.711588 9.7223544 -1077.3616 -1067.6392 + 38250 3.825 0.076457122 1033.0652 299.22877 -15.705515 9.6309102 -1077.2701 -1067.6392 + 38300 3.83 0.076457164 1062.0732 295.72691 -15.720213 9.5182002 -1077.1574 -1067.6392 + 38350 3.835 0.076457203 1064.4455 291.57116 -15.75021 9.384444 -1077.0237 -1067.6392 + 38400 3.84 0.076457185 1056.9879 286.00051 -15.778615 9.2051482 -1076.8444 -1067.6392 + 38450 3.845 0.076457163 1051.055 278.73145 -15.794206 8.971188 -1076.6104 -1067.6392 + 38500 3.85 0.076457045 1043.4921 270.84089 -15.799919 8.7172241 -1076.3565 -1067.6392 + 38550 3.855 0.07645701 1047.2952 264.8644 -15.80707 8.5248663 -1076.1641 -1067.6392 + 38600 3.86 0.076457105 1066.4021 263.59538 -15.821774 8.4840218 -1076.1232 -1067.6392 + 38650 3.865 0.076457109 1081.5763 268.25027 -15.841226 8.6338433 -1076.2731 -1067.6392 + 38700 3.87 0.076457016 1072.3855 277.54565 -15.859692 8.933022 -1076.5723 -1067.6392 + 38750 3.875 0.076456913 1054.1463 288.47412 -15.875746 9.2847635 -1076.924 -1067.6392 + 38800 3.88 0.076456918 1046.099 297.63078 -15.88286 9.5794778 -1077.2187 -1067.6392 + 38850 3.885 0.076456965 1035.9503 302.79444 -15.874155 9.745674 -1077.3849 -1067.6392 + 38900 3.89 0.076456968 1006.8277 304.00878 -15.862675 9.7847584 -1077.424 -1067.6392 + 38950 3.895 0.076456992 982.30541 302.68425 -15.866243 9.7421275 -1077.3814 -1067.6392 + 39000 3.9 0.076457051 964.15884 300.333 -15.885469 9.6664508 -1077.3057 -1067.6392 + 39050 3.905 0.07645708 963.47178 297.96261 -15.907738 9.5901579 -1077.2294 -1067.6392 + 39100 3.91 0.07645707 982.39789 295.77017 -15.919704 9.5195926 -1077.1588 -1067.6392 + 39150 3.915 0.07645701 986.19343 293.76453 -15.921564 9.4550395 -1077.0943 -1067.6392 + 39200 3.92 0.076456973 973.23149 292.25935 -15.917749 9.406594 -1077.0458 -1067.6392 + 39250 3.925 0.07645699 956.8331 292.06244 -15.915109 9.4002564 -1077.0395 -1067.6392 + 39300 3.93 0.076457091 947.66562 293.77507 -15.928151 9.4553785 -1077.0946 -1067.6392 + 39350 3.935 0.076457197 953.8454 296.30939 -15.95971 9.5369477 -1077.1762 -1067.6392 + 39400 3.94 0.076457123 941.598 297.57903 -16.001499 9.5778122 -1077.217 -1067.6392 + 39450 3.945 0.076456979 937.81347 295.88089 -16.028812 9.5231561 -1077.1624 -1067.6392 + 39500 3.95 0.076456966 972.55148 291.44854 -16.022183 9.3804973 -1077.0197 -1067.6392 + 39550 3.955 0.076456998 1016.9451 286.92489 -16.003393 9.2349002 -1076.8741 -1067.6392 + 39600 3.96 0.076457077 1044.6221 284.67636 -16.001645 9.1625296 -1076.8018 -1067.6392 + 39650 3.965 0.076457123 1054.2122 285.21332 -16.024476 9.179812 -1076.819 -1067.6392 + 39700 3.97 0.0764571 1065.5507 287.8143 -16.060544 9.2635265 -1076.9028 -1067.6392 + 39750 3.975 0.076457084 1090.1167 291.49835 -16.091023 9.3821005 -1077.0213 -1067.6392 + 39800 3.98 0.076457092 1088.6899 295.37171 -16.105973 9.5067677 -1077.146 -1067.6392 + 39850 3.985 0.076457119 1048.7529 298.22527 -16.109259 9.5986118 -1077.2378 -1067.6392 + 39900 3.99 0.076457095 1002.706 298.65816 -16.11916 9.6125446 -1077.2518 -1067.6392 + 39950 3.995 0.076457007 987.02608 295.67741 -16.143138 9.5166068 -1077.1558 -1067.6392 + 40000 4 0.076456959 991.32371 290.38741 -16.167165 9.3463442 -1076.9856 -1067.6392 + 40050 4.005 0.076456996 1005.4007 286.06135 -16.191789 9.2071066 -1076.8463 -1067.6392 + 40100 4.01 0.076457058 1012.3385 284.2928 -16.225309 9.1501844 -1076.7894 -1067.6392 + 40150 4.015 0.076457022 981.99522 284.09917 -16.253328 9.1439521 -1076.7832 -1067.6392 + 40200 4.02 0.076457038 941.79789 284.62665 -16.265654 9.1609297 -1076.8002 -1067.6392 + 40250 4.025 0.076457083 937.71916 286.12641 -16.277424 9.2092004 -1076.8484 -1067.6392 + 40300 4.03 0.076457088 965.18662 288.6347 -16.293112 9.2899318 -1076.9292 -1067.6392 + 40350 4.035 0.076457059 1017.9185 291.81257 -16.296246 9.3922139 -1077.0314 -1067.6392 + 40400 4.04 0.076456957 1076.0557 296.38482 -16.287869 9.5393756 -1077.1786 -1067.6392 + 40450 4.045 0.076456887 1095.6373 303.83922 -16.288858 9.779301 -1077.4185 -1067.6392 + 40500 4.05 0.076456882 1073.7393 314.05155 -16.311397 10.107993 -1077.7472 -1067.6392 + 40550 4.055 0.076456904 1044.4103 323.76759 -16.342897 10.420711 -1078.0599 -1067.6392 + 40600 4.06 0.076457029 1034.8473 329.10878 -16.368322 10.592622 -1078.2319 -1067.6392 + 40650 4.065 0.076457135 1060.2685 328.20348 -16.381961 10.563484 -1078.2027 -1067.6392 + 40700 4.07 0.076457112 1074.3918 321.48063 -16.381837 10.347104 -1077.9863 -1067.6392 + 40750 4.075 0.076457033 1068.0033 311.42134 -16.370626 10.023338 -1077.6626 -1067.6392 + 40800 4.08 0.076457002 1062.9309 301.40533 -16.356398 9.7009645 -1077.3402 -1067.6392 + 40850 4.085 0.076457035 1060.5178 293.82988 -16.353033 9.4571427 -1077.0964 -1067.6392 + 40900 4.09 0.076457118 1042.7869 289.64315 -16.36814 9.3223897 -1076.9616 -1067.6392 + 40950 4.095 0.076457102 1018.1514 288.9377 -16.391984 9.2996841 -1076.9389 -1067.6392 + 41000 4.1 0.076457101 1008.7893 291.04209 -16.410378 9.3674155 -1077.0066 -1067.6392 + 41050 4.105 0.076457128 1003.0943 294.82137 -16.429591 9.4890547 -1077.1283 -1067.6392 + 41100 4.11 0.07645713 988.07337 298.92586 -16.468813 9.6211607 -1077.2604 -1067.6392 + 41150 4.115 0.076457209 989.22727 301.53433 -16.530448 9.7051164 -1077.3443 -1067.6392 + 41200 4.12 0.076457137 995.23968 300.7184 -16.59589 9.6788552 -1077.3181 -1067.6392 + 41250 4.125 0.076457081 985.88397 295.87985 -16.651304 9.5231227 -1077.1624 -1067.6392 + 41300 4.13 0.076457157 984.43258 288.32296 -16.693415 9.2798984 -1076.9191 -1067.6392 + 41350 4.135 0.076457193 1006.7996 280.67631 -16.722715 9.033785 -1076.673 -1067.6392 + 41400 4.14 0.076457144 1035.0581 275.89522 -16.743941 8.8799019 -1076.5191 -1067.6392 + 41450 4.145 0.076457091 1055.193 276.48914 -16.770034 8.8990177 -1076.5382 -1067.6392 + 41500 4.15 0.076457094 1049.464 282.98604 -16.80422 9.1081253 -1076.7474 -1067.6392 + 41550 4.155 0.076457138 1033.4498 293.55036 -16.837757 9.448146 -1077.0874 -1067.6392 + 41600 4.16 0.076457177 1025.5053 305.59852 -16.868232 9.8359254 -1077.4752 -1067.6392 + 41650 4.165 0.076457144 1030.3407 316.75401 -16.9012 10.194974 -1077.8342 -1067.6392 + 41700 4.17 0.076457109 1042.8576 325.10515 -16.941062 10.463762 -1078.103 -1067.6392 + 41750 4.175 0.076457116 1041.7476 329.79088 -16.983477 10.614575 -1078.2538 -1067.6392 + 41800 4.18 0.076457129 1021.8465 330.97667 -17.012787 10.652741 -1078.292 -1067.6392 + 41850 4.185 0.076457027 1009.1192 329.54708 -17.026799 10.606729 -1078.246 -1067.6392 + 41900 4.19 0.076457044 1009.0074 326.75477 -17.042781 10.516856 -1078.1561 -1067.6392 + 41950 4.195 0.076457158 1008.7758 323.40391 -17.062093 10.409006 -1078.0482 -1067.6392 + 42000 4.2 0.076457147 1005.3634 320.10432 -17.080158 10.302806 -1077.942 -1067.6392 + 42050 4.205 0.076457115 991.88405 317.33885 -17.10087 10.213797 -1077.853 -1067.6392 + 42100 4.21 0.076457042 980.63929 315.014 -17.130865 10.13897 -1077.7782 -1067.6392 + 42150 4.215 0.076456975 998.50297 312.63763 -17.172141 10.062485 -1077.7017 -1067.6392 + 42200 4.22 0.07645708 1026.9562 310.54725 -17.204551 9.9952042 -1077.6344 -1067.6392 + 42250 4.225 0.07645718 1024.8324 310.92967 -17.213513 10.007513 -1077.6467 -1067.6392 + 42300 4.23 0.076457083 1017.3813 314.39712 -17.205294 10.119115 -1077.7583 -1067.6392 + 42350 4.235 0.076457003 1012.2184 317.86117 -17.191657 10.230608 -1077.8698 -1067.6392 + 42400 4.24 0.076457062 1014.6726 317.97177 -17.18376 10.234168 -1077.8734 -1067.6392 + 42450 4.245 0.076457115 1041.0192 313.50056 -17.1786 10.090259 -1077.7295 -1067.6392 + 42500 4.25 0.076457027 1065.6231 305.46596 -17.164761 9.8316589 -1077.4709 -1067.6392 + 42550 4.255 0.076456955 1061.963 296.42889 -17.133558 9.540794 -1077.18 -1067.6392 + 42600 4.26 0.076457002 1048.971 289.79488 -17.095891 9.327273 -1076.9665 -1067.6392 + 42650 4.265 0.076457008 1015.7483 288.18363 -17.073381 9.2754137 -1076.9146 -1067.6392 + 42700 4.27 0.076456971 966.63074 291.62369 -17.06781 9.3861349 -1077.0254 -1067.6392 + 42750 4.275 0.076456941 937.2059 298.17523 -17.069236 9.5970012 -1077.2362 -1067.6392 + 42800 4.28 0.076456915 941.41873 305.73809 -17.079494 9.8404177 -1077.4796 -1067.6392 + 42850 4.285 0.076456844 968.97273 312.62631 -17.099416 10.06212 -1077.7014 -1067.6392 + 42900 4.29 0.076456817 989.21318 317.5486 -17.113085 10.220548 -1077.8598 -1067.6392 + 42950 4.295 0.07645684 1007.6816 320.37965 -17.114449 10.311668 -1077.9509 -1067.6392 + 43000 4.3 0.076456884 1017.4556 321.9046 -17.116189 10.360749 -1078 -1067.6392 + 43050 4.305 0.076456934 997.36098 322.79504 -17.129186 10.389409 -1078.0286 -1067.6392 + 43100 4.31 0.076456922 976.5255 323.56991 -17.161651 10.414349 -1078.0536 -1067.6392 + 43150 4.315 0.076456789 965.28563 323.98987 -17.208478 10.427865 -1078.0671 -1067.6392 + 43200 4.32 0.076456656 976.013 322.91929 -17.253423 10.393408 -1078.0326 -1067.6392 + 43250 4.325 0.07645674 986.91303 319.71702 -17.290058 10.29034 -1077.9296 -1067.6392 + 43300 4.33 0.076456855 994.50735 315.51655 -17.319905 10.155145 -1077.7944 -1067.6392 + 43350 4.335 0.076456913 992.09776 312.98202 -17.344711 10.073569 -1077.7128 -1067.6392 + 43400 4.34 0.076456873 993.00971 314.05271 -17.361697 10.10803 -1077.7473 -1067.6392 + 43450 4.345 0.076456881 1011.1756 318.25407 -17.363193 10.243254 -1077.8825 -1067.6392 + 43500 4.35 0.076456916 1022.1325 324.00289 -17.356684 10.428285 -1078.0675 -1067.6392 + 43550 4.355 0.076456894 1001.5952 329.50567 -17.36965 10.605396 -1078.2446 -1067.6392 + 43600 4.36 0.076456787 990.25729 331.52244 -17.398294 10.670307 -1078.3095 -1067.6392 + 43650 4.365 0.076456812 1014.8329 327.94176 -17.418135 10.55506 -1078.1943 -1067.6392 + 43700 4.37 0.076456927 1009.9859 320.07607 -17.423852 10.301897 -1077.9411 -1067.6392 + 43750 4.375 0.076456903 969.415 310.42468 -17.431775 9.9912593 -1077.6305 -1067.6392 + 43800 4.38 0.076456845 959.2175 300.83991 -17.450035 9.6827659 -1077.322 -1067.6392 + 43850 4.385 0.076456904 972.76707 292.38261 -17.458814 9.4105611 -1077.0498 -1067.6392 + 43900 4.39 0.076456967 1000.7902 286.33658 -17.440879 9.215965 -1076.8552 -1067.6392 + 43950 4.395 0.076456908 1023.9806 285.0775 -17.417685 9.1754407 -1076.8147 -1067.6392 + 44000 4.4 0.076456873 1016.312 289.59884 -17.414064 9.3209636 -1076.9602 -1067.6392 + 44050 4.405 0.076456899 1002.0937 297.58236 -17.427534 9.5779192 -1077.2171 -1067.6392 + 44100 4.41 0.076456992 979.49413 305.48344 -17.460189 9.8322216 -1077.4715 -1067.6392 + 44150 4.415 0.076456954 957.12038 310.16996 -17.500467 9.983061 -1077.6223 -1067.6392 + 44200 4.42 0.076456909 969.36774 310.67664 -17.517203 9.9993688 -1077.6386 -1067.6392 + 44250 4.425 0.076457034 990.1925 309.6621 -17.501366 9.966715 -1077.6059 -1067.6392 + 44300 4.43 0.076457126 997.07426 311.42685 -17.48063 10.023515 -1077.6627 -1067.6392 + 44350 4.435 0.076457073 1012.156 317.95445 -17.477266 10.233611 -1077.8728 -1067.6392 + 44400 4.44 0.076456939 1014.2778 328.00805 -17.482372 10.557194 -1078.1964 -1067.6392 + 44450 4.445 0.076456926 999.33044 339.05571 -17.484164 10.912771 -1078.552 -1067.6392 + 44500 4.45 0.076457063 992.03592 348.59795 -17.490492 11.219896 -1078.8591 -1067.6392 + 44550 4.455 0.076457102 1000.0606 354.61439 -17.51719 11.413539 -1079.0528 -1067.6392 + 44600 4.46 0.076456962 996.40689 355.89465 -17.569196 11.454745 -1079.094 -1067.6392 + 44650 4.465 0.076456921 982.66296 351.92721 -17.625938 11.32705 -1078.9663 -1067.6392 + 44700 4.47 0.076457079 980.49035 343.41935 -17.667243 11.053218 -1078.6925 -1067.6392 + 44750 4.475 0.076457159 979.21197 332.02069 -17.68549 10.686344 -1078.3256 -1067.6392 + 44800 4.48 0.076457107 992.32881 320.06951 -17.687575 10.301685 -1077.9409 -1067.6392 + 44850 4.485 0.076456963 1013.5196 310.0827 -17.693112 9.9802522 -1077.6195 -1067.6392 + 44900 4.49 0.076456969 1001.5918 303.20339 -17.722904 9.7588364 -1077.3981 -1067.6392 + 44950 4.495 0.07645701 980.51163 298.27852 -17.770105 9.6003255 -1077.2396 -1067.6392 + 45000 4.5 0.076457008 965.95999 294.19092 -17.8048 9.4687631 -1077.108 -1067.6392 + 45050 4.505 0.076457017 961.98916 292.94732 -17.819999 9.4287368 -1077.068 -1067.6392 + 45100 4.51 0.07645703 971.83236 297.17494 -17.826582 9.5648062 -1077.204 -1067.6392 + 45150 4.515 0.076457062 971.3126 305.34652 -17.830021 9.8278148 -1077.467 -1067.6392 + 45200 4.52 0.076457088 967.70533 313.76007 -17.837312 10.098611 -1077.7378 -1067.6392 + 45250 4.525 0.076457101 978.16788 320.28707 -17.856874 10.308688 -1077.9479 -1067.6392 + 45300 4.53 0.076457058 976.86282 324.31727 -17.883352 10.438403 -1078.0776 -1067.6392 + 45350 4.535 0.076457004 957.06022 326.51332 -17.908809 10.509085 -1078.1483 -1067.6392 + 45400 4.54 0.076457052 942.23138 327.86211 -17.932213 10.552497 -1078.1917 -1067.6392 + 45450 4.545 0.07645704 939.40207 328.25924 -17.946431 10.565278 -1078.2045 -1067.6392 + 45500 4.55 0.076456984 936.0127 327.92287 -17.951349 10.554452 -1078.1937 -1067.6392 + 45550 4.555 0.076456984 943.56455 327.95367 -17.956533 10.555444 -1078.1947 -1067.6392 + 45600 4.56 0.076456952 970.72253 329.0502 -17.962098 10.590736 -1078.23 -1067.6392 + 45650 4.565 0.076456987 995.14598 331.17156 -17.959883 10.659014 -1078.2982 -1067.6392 + 45700 4.57 0.076457009 998.94348 333.51018 -17.947766 10.734284 -1078.3735 -1067.6392 + 45750 4.575 0.076456926 989.53969 334.52552 -17.932792 10.766963 -1078.4062 -1067.6392 + 45800 4.58 0.076456925 980.95008 333.13239 -17.931126 10.722125 -1078.3614 -1067.6392 + 45850 4.585 0.076457115 959.08206 328.86879 -17.93416 10.584897 -1078.2241 -1067.6392 + 45900 4.59 0.076457157 946.57457 322.43709 -17.923384 10.377888 -1078.0171 -1067.6392 + 45950 4.595 0.07645705 952.85741 316.41194 -17.913842 10.183964 -1077.8232 -1067.6392 + 46000 4.6 0.076456979 945.08309 313.54756 -17.919013 10.091772 -1077.731 -1067.6392 + 46050 4.605 0.076457016 924.59556 315.06793 -17.927039 10.140706 -1077.7799 -1067.6392 + 46100 4.61 0.076457109 914.10059 320.37764 -17.937025 10.311603 -1077.9508 -1067.6392 + 46150 4.615 0.076457104 917.2827 327.12661 -17.957731 10.528824 -1078.1681 -1067.6392 + 46200 4.62 0.076457168 920.84155 332.53739 -17.977107 10.702974 -1078.3422 -1067.6392 + 46250 4.625 0.076457189 935.24004 335.24356 -17.979199 10.790074 -1078.4293 -1067.6392 + 46300 4.63 0.0764571 956.82788 335.57661 -17.975075 10.800794 -1078.44 -1067.6392 + 46350 4.635 0.076457031 962.26794 334.10104 -17.978152 10.753301 -1078.3925 -1067.6392 + 46400 4.64 0.076457042 962.1098 331.07198 -17.987144 10.655809 -1078.295 -1067.6392 + 46450 4.645 0.076457107 952.75718 326.27068 -17.988379 10.501275 -1078.1405 -1067.6392 + 46500 4.65 0.076457159 948.45576 319.53501 -17.972857 10.284482 -1077.9237 -1067.6392 + 46550 4.655 0.076457197 951.57922 312.18572 -17.950863 10.04794 -1077.6872 -1067.6392 + 46600 4.66 0.076457169 953.72078 306.60692 -17.937745 9.8683816 -1077.5076 -1067.6392 + 46650 4.665 0.07645714 969.19209 304.86187 -17.945815 9.8122157 -1077.4514 -1067.6392 + 46700 4.67 0.076457121 982.50268 307.98161 -17.974576 9.9126272 -1077.5519 -1067.6392 + 46750 4.675 0.076457149 974.5768 314.91384 -18.000917 10.135746 -1077.775 -1067.6392 + 46800 4.68 0.076457222 954.17186 322.2853 -18.003497 10.373003 -1078.0122 -1067.6392 + 46850 4.685 0.076457263 943.539 327.31716 -17.991456 10.534957 -1078.1742 -1067.6392 + 46900 4.69 0.076457272 943.2156 329.68269 -17.979619 10.611093 -1078.2503 -1067.6392 + 46950 4.695 0.076457248 943.45366 330.93325 -17.974243 10.651343 -1078.2906 -1067.6392 + 47000 4.7 0.076457135 949.24404 332.85406 -17.979019 10.713166 -1078.3524 -1067.6392 + 47050 4.705 0.076457109 948.38347 335.49431 -17.990033 10.798145 -1078.4374 -1067.6392 + 47100 4.71 0.076457108 930.57759 336.79293 -18.000912 10.839942 -1078.4792 -1067.6392 + 47150 4.715 0.076457061 927.62433 334.90723 -18.010023 10.779249 -1078.4185 -1067.6392 + 47200 4.72 0.076457026 952.31461 330.77819 -18.012971 10.646353 -1078.2856 -1067.6392 + 47250 4.725 0.076457029 970.41647 328.26943 -18.01237 10.565606 -1078.2048 -1067.6392 + 47300 4.73 0.07645704 968.2995 329.56928 -18.014991 10.607443 -1078.2467 -1067.6392 + 47350 4.735 0.076457096 954.1138 332.31723 -18.02454 10.695888 -1078.3351 -1067.6392 + 47400 4.74 0.07645714 968.01812 333.90938 -18.038354 10.747133 -1078.3864 -1067.6392 + 47450 4.745 0.076457183 1006.2574 334.70242 -18.050106 10.772657 -1078.4119 -1067.6392 + 47500 4.75 0.076457147 1037.4547 335.39669 -18.062338 10.795003 -1078.4342 -1067.6392 + 47550 4.755 0.076457004 1027.5546 333.98227 -18.07862 10.749479 -1078.3887 -1067.6392 + 47600 4.76 0.076457078 986.81013 328.40773 -18.100384 10.570058 -1078.2093 -1067.6392 + 47650 4.765 0.076457236 980.12421 319.46388 -18.120191 10.282193 -1077.9214 -1067.6392 + 47700 4.77 0.076457087 973.75413 310.20532 -18.133538 9.984199 -1077.6234 -1067.6392 + 47750 4.775 0.076456955 944.49227 304.05996 -18.150575 9.7864056 -1077.4256 -1067.6392 + 47800 4.78 0.076457043 934.26558 302.74055 -18.16342 9.7439395 -1077.3832 -1067.6392 + 47850 4.785 0.076457163 946.5867 306.50326 -18.158739 9.8650453 -1077.5043 -1067.6392 + 47900 4.79 0.076457207 956.86274 314.93949 -18.15119 10.136572 -1077.7758 -1067.6392 + 47950 4.795 0.07645715 958.82327 326.06488 -18.164425 10.494651 -1078.1339 -1067.6392 + 48000 4.8 0.076457039 947.13341 336.0645 -18.196245 10.816497 -1078.4557 -1067.6392 + 48050 4.805 0.076457079 939.87276 341.25341 -18.222449 10.983506 -1078.6227 -1067.6392 + 48100 4.81 0.076457027 941.59608 340.87478 -18.232947 10.971319 -1078.6106 -1067.6392 + 48150 4.815 0.076456851 947.69448 337.06143 -18.235444 10.848584 -1078.4878 -1067.6392 + 48200 4.82 0.076456923 945.0083 331.93845 -18.226235 10.683697 -1078.3229 -1067.6392 + 48250 4.825 0.076457065 955.23353 326.88598 -18.206503 10.521079 -1078.1603 -1067.6392 + 48300 4.83 0.076457035 976.25082 323.10993 -18.198786 10.399544 -1078.0388 -1067.6392 + 48350 4.835 0.076456918 980.22652 320.95231 -18.21424 10.330099 -1077.9693 -1067.6392 + 48400 4.84 0.07645681 991.61794 319.56431 -18.236887 10.285425 -1077.9247 -1067.6392 + 48450 4.845 0.076456811 1004.3973 319.00657 -18.259638 10.267474 -1077.9067 -1067.6392 + 48500 4.85 0.076456872 1011.2382 320.78368 -18.281738 10.324672 -1077.9639 -1067.6392 + 48550 4.855 0.076456865 1011.4359 325.48338 -18.293785 10.475935 -1078.1152 -1067.6392 + 48600 4.86 0.076456844 1005.7488 332.46822 -18.305193 10.700748 -1078.34 -1067.6392 + 48650 4.865 0.076456876 989.87609 340.85827 -18.332595 10.970788 -1078.61 -1067.6392 + 48700 4.87 0.07645693 968.07155 348.89288 -18.372402 11.229388 -1078.8686 -1067.6392 + 48750 4.875 0.076456873 954.48433 354.07093 -18.412323 11.396048 -1079.0353 -1067.6392 + 48800 4.88 0.076456838 951.82821 354.8518 -18.445418 11.421181 -1079.0604 -1067.6392 + 48850 4.885 0.076456946 955.18291 351.65785 -18.473652 11.318381 -1078.9576 -1067.6392 + 48900 4.89 0.076457014 961.21122 345.9779 -18.498732 11.135567 -1078.7748 -1067.6392 + 48950 4.895 0.076456863 971.60448 338.99359 -18.517002 10.910772 -1078.55 -1067.6392 + 49000 4.9 0.076456715 983.55102 331.29604 -18.525123 10.66302 -1078.3022 -1067.6392 + 49050 4.905 0.076456793 965.60848 324.24302 -18.535514 10.436013 -1078.0752 -1067.6392 + 49100 4.91 0.076456864 944.53951 319.79955 -18.557009 10.292997 -1077.9322 -1067.6392 + 49150 4.915 0.076456768 947.20225 319.09103 -18.582911 10.270192 -1077.9094 -1067.6392 + 49200 4.92 0.076456734 944.86084 321.47471 -18.607567 10.346913 -1077.9861 -1067.6392 + 49250 4.925 0.076456851 940.6342 324.66116 -18.626242 10.449471 -1078.0887 -1067.6392 + 49300 4.93 0.076456872 950.6162 326.9518 -18.64032 10.523198 -1078.1624 -1067.6392 + 49350 4.935 0.076456643 952.42705 328.08816 -18.649274 10.559772 -1078.199 -1067.6392 + 49400 4.94 0.076456451 940.33548 329.05106 -18.66058 10.590764 -1078.23 -1067.6392 + 49450 4.945 0.076456558 946.93554 331.05799 -18.683544 10.655358 -1078.2946 -1067.6392 + 49500 4.95 0.076456719 968.13429 334.1178 -18.710726 10.753841 -1078.3931 -1067.6392 + 49550 4.955 0.076456712 989.14725 337.02333 -18.733226 10.847357 -1078.4866 -1067.6392 + 49600 4.96 0.076456681 986.97561 338.47429 -18.752155 10.894058 -1078.5333 -1067.6392 + 49650 4.965 0.076456692 980.18259 338.36307 -18.779369 10.890478 -1078.5297 -1067.6392 + 49700 4.97 0.076456776 962.29895 337.41689 -18.815353 10.860024 -1078.4993 -1067.6392 + 49750 4.975 0.076456852 943.47442 335.97999 -18.836611 10.813777 -1078.453 -1067.6392 + 49800 4.98 0.076456829 951.10385 334.29845 -18.839995 10.759655 -1078.3989 -1067.6392 + 49850 4.985 0.076456797 968.57767 333.00568 -18.84792 10.718046 -1078.3573 -1067.6392 + 49900 4.99 0.076456886 973.40031 332.98155 -18.860429 10.71727 -1078.3565 -1067.6392 + 49950 4.995 0.076456914 964.32242 335.13156 -18.853933 10.786469 -1078.4257 -1067.6392 + 50000 5 0.076456921 972.52311 340.63067 -18.841947 10.963463 -1078.6027 -1067.6392 +Loop time of 90.4316 on 1 procs for 50000 steps with 250 atoms + +Performance: 4.777 ns/day, 5.024 hours/ns, 552.904 timesteps/s +99.3% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 37.302 | 37.302 | 37.302 | 0.0 | 41.25 +Neigh | 0.386 | 0.386 | 0.386 | 0.0 | 0.43 +Comm | 0.7718 | 0.7718 | 0.7718 | 0.0 | 0.85 +Output | 15.35 | 15.35 | 15.35 | 0.0 | 16.97 +Modify | 36.465 | 36.465 | 36.465 | 0.0 | 40.32 +Other | | 0.1579 | | | 0.17 + +Nlocal: 250 ave 250 max 250 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 1327 ave 1327 max 1327 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 7747 ave 7747 max 7747 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 15494 ave 15494 max 15494 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 15494 +Ave neighs/atom = 61.976 +Neighbor list builds = 614 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:01:30 diff --git a/examples/SPIN/iron/log.11May18.spin.iron.g++.4 b/examples/SPIN/iron/log.11May18.spin.iron.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..1467f8e2c58a451299cb375773ef76f43a1bb8bc --- /dev/null +++ b/examples/SPIN/iron/log.11May18.spin.iron.g++.4 @@ -0,0 +1,1115 @@ +LAMMPS (11 May 2018) +# bcc iron in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice bcc 2.8665 +Lattice spacing in x,y,z = 2.8665 2.8665 2.8665 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (14.3325 14.3325 14.3325) + 1 by 2 by 2 MPI processor grid +create_atoms 1 box +Created 250 atoms + Time spent = 0.00023818 secs + +# setting mass, mag. moments, and interactions for bcc iron + +mass 1 55.845 + +set group all spin/random 31 2.2 + 250 settings made for spin/random +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 3.5 +pair_coeff * * eam/alloy Fe_Mishin2006.eam.alloy Fe +pair_coeff * * spin/exchange exchange 3.4 0.02726 0.2171 1.841 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_tmag temp v_emag ke pe etotal +thermo 50 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump_iron.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] + +run 50000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5.77337 + ghost atom cutoff = 5.77337 + binsize = 2.88668, bins = 5 5 5 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.265 | 7.265 | 7.265 Mbytes +Step Time v_magnorm v_tmag Temp v_emag KinEng PotEng TotEng + 0 0 0.076456975 9109.0924 100.00358 -0.85791269 3.2186929 -1070.8579 -1067.6392 + 50 0.005 0.076456995 9402.4007 96.298333 -0.85659448 3.0994366 -1070.7387 -1067.6392 + 100 0.01 0.076457028 9589.1846 86.330828 -0.87003341 2.7786247 -1070.4179 -1067.6392 + 150 0.015 0.076457074 9673.9268 71.603402 -0.89006992 2.3046111 -1069.9438 -1067.6392 + 200 0.02 0.076457106 9509.1148 54.648817 -0.91124541 1.7589146 -1069.3981 -1067.6392 + 250 0.025 0.076457128 9004.27 38.599515 -0.93187522 1.2423553 -1068.8816 -1067.6392 + 300 0.03 0.076457157 8353.4371 26.383018 -0.95082226 0.8491579 -1068.4884 -1067.6392 + 350 0.035 0.076457207 7911.1316 20.01039 -0.96826468 0.64404992 -1068.2833 -1067.6392 + 400 0.04 0.076457243 7775.9492 20.097682 -0.98706373 0.64685949 -1068.2861 -1067.6392 + 450 0.045 0.076457231 7737.1225 25.687511 -1.0095684 0.82677249 -1068.466 -1067.6392 + 500 0.05 0.076457204 7676.9809 34.604697 -1.0349855 1.113779 -1068.753 -1067.6392 + 550 0.055 0.076457196 7550.2809 44.251809 -1.0609123 1.4242788 -1069.0635 -1067.6392 + 600 0.06 0.076457188 7209.7657 52.475202 -1.0880854 1.6889551 -1069.3282 -1067.6392 + 650 0.065 0.07645718 6691.1787 57.926479 -1.1179657 1.8644087 -1069.5036 -1067.6392 + 700 0.07 0.076457185 6276.4003 60.030548 -1.1469999 1.9321298 -1069.5714 -1067.6392 + 750 0.075 0.07645719 6149.9253 59.122504 -1.1721939 1.9029037 -1069.5421 -1067.6392 + 800 0.08 0.076457195 6207.0587 56.349146 -1.1949365 1.813641 -1069.4529 -1067.6392 + 850 0.085 0.076457199 6328.4635 53.154464 -1.2164642 1.7108177 -1069.35 -1067.6392 + 900 0.09 0.076457199 6456.2716 50.837416 -1.2366018 1.6362417 -1069.2755 -1067.6392 + 950 0.095 0.076457222 6495.1064 50.234549 -1.2539657 1.6168379 -1069.2561 -1067.6392 + 1000 0.1 0.076457266 6416.775 51.592727 -1.2671834 1.6605519 -1069.2998 -1067.6392 + 1050 0.105 0.076457256 6305.9015 54.719414 -1.2794824 1.7611868 -1069.4004 -1067.6392 + 1100 0.11 0.076457222 6165.987 59.01343 -1.2960617 1.8993931 -1069.5386 -1067.6392 + 1150 0.115 0.076457194 5941.7807 63.475298 -1.317859 2.0430017 -1069.6822 -1067.6392 + 1200 0.12 0.076457182 5692.0982 67.036713 -1.3432854 2.1576286 -1069.7969 -1067.6392 + 1250 0.125 0.076457217 5543.1736 68.917405 -1.3719994 2.2181602 -1069.8574 -1067.6392 + 1300 0.13 0.076457263 5507.9968 68.753418 -1.4042339 2.2128821 -1069.8521 -1067.6392 + 1350 0.135 0.076457286 5500.7848 66.608286 -1.4385667 2.1438394 -1069.7831 -1067.6392 + 1400 0.14 0.076457254 5523.456 62.967429 -1.4712143 2.0266556 -1069.6659 -1067.6392 + 1450 0.145 0.076457188 5501.5777 58.75732 -1.4990458 1.89115 -1069.5304 -1067.6392 + 1500 0.15 0.076457175 5324.4931 55.246308 -1.5236774 1.7781453 -1069.4174 -1067.6392 + 1550 0.155 0.076457234 5025.5908 53.607297 -1.5492947 1.7253925 -1069.3646 -1067.6392 + 1600 0.16 0.076457297 4742.9546 54.443418 -1.5785798 1.7523036 -1069.3915 -1067.6392 + 1650 0.165 0.076457321 4558.083 57.572305 -1.6113848 1.8530093 -1069.4922 -1067.6392 + 1700 0.17 0.076457304 4479.4352 62.073307 -1.6443595 1.9978776 -1069.6371 -1067.6392 + 1750 0.175 0.076457272 4520.5577 66.677964 -1.6742729 2.146082 -1069.7853 -1067.6392 + 1800 0.18 0.076457253 4659.9114 70.277293 -1.7021557 2.2619292 -1069.9012 -1067.6392 + 1850 0.185 0.076457257 4734.1597 72.135028 -1.7307798 2.3217219 -1069.961 -1067.6392 + 1900 0.19 0.076457279 4632.2637 71.873382 -1.7598165 2.3133006 -1069.9525 -1067.6392 + 1950 0.195 0.076457276 4496.6621 69.52131 -1.7866398 2.2375973 -1069.8768 -1067.6392 + 2000 0.2 0.076457276 4507.4594 65.61098 -1.8106776 2.1117403 -1069.751 -1067.6392 + 2050 0.205 0.076457288 4652.9279 61.016261 -1.8317479 1.9638557 -1069.6031 -1067.6392 + 2100 0.21 0.076457307 4738.4188 56.745795 -1.8489776 1.8264074 -1069.4656 -1067.6392 + 2150 0.215 0.076457279 4643.423 53.837376 -1.8647516 1.7327977 -1069.372 -1067.6392 + 2200 0.22 0.076457215 4517.9871 53.044053 -1.8828305 1.707264 -1069.3465 -1067.6392 + 2250 0.225 0.07645717 4436.4399 54.521839 -1.9038753 1.7548277 -1069.3941 -1067.6392 + 2300 0.23 0.076457132 4318.8261 57.895634 -1.9276454 1.8634159 -1069.5026 -1067.6392 + 2350 0.235 0.076457114 4148.8616 62.484473 -1.9559372 2.0111113 -1069.6503 -1067.6392 + 2400 0.24 0.076457144 4014.8498 67.404243 -1.9902034 2.1694579 -1069.8087 -1067.6392 + 2450 0.245 0.076457189 4004.017 71.654167 -2.0278558 2.306245 -1069.9455 -1067.6392 + 2500 0.25 0.076457202 4109.5497 74.379393 -2.0629968 2.3939585 -1070.0332 -1067.6392 + 2550 0.255 0.076457205 4251.6933 75.255112 -2.0918484 2.4221442 -1070.0614 -1067.6392 + 2600 0.26 0.076457208 4320.6876 74.700611 -2.1169691 2.4042972 -1070.0435 -1067.6392 + 2650 0.265 0.076457197 4297.5527 73.627823 -2.143 2.3697686 -1070.009 -1067.6392 + 2700 0.27 0.076457213 4198.4852 72.957211 -2.1702374 2.3481845 -1069.9874 -1067.6392 + 2750 0.275 0.076457256 4019.2384 73.353574 -2.1967187 2.3609417 -1070.0002 -1067.6392 + 2800 0.28 0.076457288 3867.2492 75.083781 -2.2227117 2.4166298 -1070.0559 -1067.6392 + 2850 0.285 0.076457302 3879.8471 77.82546 -2.2488766 2.5048728 -1070.1441 -1067.6392 + 2900 0.29 0.076457321 4003.8986 80.741745 -2.2742584 2.5987357 -1070.238 -1067.6392 + 2950 0.295 0.076457347 4026.6754 82.934399 -2.3001834 2.669308 -1070.3085 -1067.6392 + 3000 0.3 0.076457334 3857.2183 83.701738 -2.3291113 2.6940054 -1070.3332 -1067.6392 + 3050 0.305 0.076457295 3640.7581 82.615991 -2.3614721 2.6590598 -1070.2983 -1067.6392 + 3100 0.31 0.07645725 3489.102 79.573679 -2.3943974 2.5611406 -1070.2004 -1067.6392 + 3150 0.315 0.076457232 3396.4301 74.896125 -2.4236621 2.4105899 -1070.0498 -1067.6392 + 3200 0.32 0.076457259 3378.11 69.450128 -2.4483292 2.2353063 -1069.8745 -1067.6392 + 3250 0.325 0.076457289 3463.7734 64.542714 -2.4729224 2.0773573 -1069.7166 -1067.6392 + 3300 0.33 0.076457318 3637.4971 61.346221 -2.500303 1.9744757 -1069.6137 -1067.6392 + 3350 0.335 0.076457361 3833.5389 60.346704 -2.5252732 1.9423055 -1069.5815 -1067.6392 + 3400 0.34 0.076457387 3965.2081 61.464125 -2.5426842 1.9782706 -1069.6175 -1067.6392 + 3450 0.345 0.076457375 3976.7956 64.41797 -2.5565409 2.0733424 -1069.7126 -1067.6392 + 3500 0.35 0.076457371 3862.8334 68.714547 -2.5743062 2.211631 -1069.8509 -1067.6392 + 3550 0.355 0.076457375 3697.284 73.534942 -2.5974674 2.3667792 -1070.006 -1067.6392 + 3600 0.36 0.076457362 3575.9012 77.902682 -2.6209385 2.5073583 -1070.1466 -1067.6392 + 3650 0.365 0.076457345 3550.0667 81.043684 -2.6394846 2.6084539 -1070.2477 -1067.6392 + 3700 0.37 0.076457309 3535.0981 82.730976 -2.65464 2.6627607 -1070.302 -1067.6392 + 3750 0.375 0.076457309 3444.1795 83.322515 -2.6736085 2.6817998 -1070.321 -1067.6392 + 3800 0.38 0.076457348 3323.7191 83.436143 -2.7008525 2.685457 -1070.3247 -1067.6392 + 3850 0.385 0.076457368 3252.5404 83.62535 -2.7353937 2.6915468 -1070.3308 -1067.6392 + 3900 0.39 0.076457344 3219.5349 84.088597 -2.7722909 2.7064568 -1070.3457 -1067.6392 + 3950 0.395 0.076457316 3210.4164 84.636475 -2.8060651 2.7240906 -1070.3633 -1067.6392 + 4000 0.4 0.076457319 3223.9708 85.042888 -2.8352998 2.7371713 -1070.3764 -1067.6392 + 4050 0.405 0.076457335 3232.7108 85.266853 -2.8607963 2.7443798 -1070.3836 -1067.6392 + 4100 0.41 0.076457314 3206.1428 85.444074 -2.8837721 2.7500838 -1070.3893 -1067.6392 + 4150 0.415 0.076457325 3146.4589 85.771643 -2.9074131 2.7606269 -1070.3999 -1067.6392 + 4200 0.42 0.076457395 3092.6283 86.24875 -2.9341331 2.775983 -1070.4152 -1067.6392 + 4250 0.425 0.07645742 3103.0319 86.563557 -2.9622203 2.7861153 -1070.4253 -1067.6392 + 4300 0.43 0.076457425 3116.9053 86.320099 -2.9880208 2.7782794 -1070.4175 -1067.6392 + 4350 0.435 0.076457427 3061.2259 85.306966 -3.0085539 2.7456709 -1070.3849 -1067.6392 + 4400 0.44 0.076457432 3033.5229 83.703441 -3.0243431 2.6940602 -1070.3333 -1067.6392 + 4450 0.445 0.076457411 3042.5167 82.058057 -3.0397518 2.6411023 -1070.2803 -1067.6392 + 4500 0.45 0.076457387 2994.5161 81.002427 -3.0597817 2.607126 -1070.2464 -1067.6392 + 4550 0.455 0.076457413 2868.381 80.936403 -3.086593 2.605001 -1070.2442 -1067.6392 + 4600 0.46 0.076457454 2716.5128 81.904984 -3.1192161 2.6361755 -1070.2754 -1067.6392 + 4650 0.465 0.076457402 2628.691 83.537981 -3.1529675 2.6887347 -1070.328 -1067.6392 + 4700 0.47 0.076457327 2609.7253 85.196185 -3.1819342 2.7421053 -1070.3813 -1067.6392 + 4750 0.475 0.076457328 2604.4797 86.479192 -3.2088497 2.7833999 -1070.4226 -1067.6392 + 4800 0.48 0.076457385 2610.7583 87.294321 -3.242028 2.8096355 -1070.4489 -1067.6392 + 4850 0.485 0.076457398 2649.7853 87.477655 -3.2810534 2.8155362 -1070.4548 -1067.6392 + 4900 0.49 0.076457371 2678.8351 86.820207 -3.3154833 2.7943757 -1070.4336 -1067.6392 + 4950 0.495 0.076457344 2687.9239 85.543066 -3.3381845 2.75327 -1070.3925 -1067.6392 + 5000 0.5 0.076457351 2720.6587 84.363474 -3.3508261 2.7153039 -1070.3545 -1067.6392 + 5050 0.505 0.076457408 2755.8291 84.030245 -3.3582878 2.7045787 -1070.3438 -1067.6392 + 5100 0.51 0.076457454 2753.2313 84.932962 -3.3648805 2.7336333 -1070.3729 -1067.6392 + 5150 0.515 0.076457453 2706.7195 86.928397 -3.3711152 2.7978579 -1070.4371 -1067.6392 + 5200 0.52 0.076457474 2678.1769 89.583728 -3.3768576 2.8833218 -1070.5226 -1067.6392 + 5250 0.525 0.076457519 2699.6153 92.51484 -3.3860255 2.9776619 -1070.6169 -1067.6392 + 5300 0.53 0.076457531 2703.4089 95.385751 -3.4040809 3.0700644 -1070.7093 -1067.6392 + 5350 0.535 0.076457501 2642.6927 97.779641 -3.4335521 3.1471136 -1070.7863 -1067.6392 + 5400 0.54 0.076457502 2536.3506 99.093181 -3.4686217 3.1893909 -1070.8286 -1067.6392 + 5450 0.545 0.076457526 2496.939 98.768918 -3.4975315 3.1789543 -1070.8182 -1067.6392 + 5500 0.55 0.07645752 2590.2958 96.816602 -3.5146308 3.1161175 -1070.7554 -1067.6392 + 5550 0.555 0.07645751 2736.4682 93.934193 -3.5252273 3.0233449 -1070.6626 -1067.6392 + 5600 0.56 0.076457511 2852.5255 91.119522 -3.5395987 2.9327525 -1070.572 -1067.6392 + 5650 0.565 0.07645752 2911.6957 89.034641 -3.5601373 2.865649 -1070.5049 -1067.6392 + 5700 0.57 0.076457504 2872.1072 87.822315 -3.578603 2.8266294 -1070.4659 -1067.6392 + 5750 0.575 0.076457514 2742.4368 87.594069 -3.5903293 2.8192831 -1070.4585 -1067.6392 + 5800 0.58 0.076457541 2620.8057 88.56771 -3.5997032 2.8506205 -1070.4899 -1067.6392 + 5850 0.585 0.076457558 2577.6654 90.685493 -3.6121768 2.918783 -1070.558 -1067.6392 + 5900 0.59 0.076457556 2603.2357 93.377822 -3.6265072 3.0054377 -1070.6447 -1067.6392 + 5950 0.595 0.076457545 2622.1452 95.785548 -3.6355062 3.0829322 -1070.7222 -1067.6392 + 6000 0.6 0.076457592 2584.5081 97.370124 -3.6379266 3.133933 -1070.7732 -1067.6392 + 6050 0.605 0.076457628 2511.2974 98.197855 -3.6436111 3.1605742 -1070.7998 -1067.6392 + 6100 0.61 0.076457605 2460.1929 98.607339 -3.6641341 3.1737537 -1070.813 -1067.6392 + 6150 0.615 0.076457552 2425.1563 98.77721 -3.7023511 3.1792212 -1070.8185 -1067.6392 + 6200 0.62 0.076457529 2378.8547 98.671042 -3.7529171 3.1758041 -1070.815 -1067.6392 + 6250 0.625 0.076457536 2373.6127 98.176109 -3.8075656 3.1598743 -1070.7991 -1067.6392 + 6300 0.63 0.076457584 2457.9835 97.287991 -3.8600042 3.1312895 -1070.7705 -1067.6392 + 6350 0.635 0.076457603 2571.5799 96.270875 -3.9092353 3.0985528 -1070.7378 -1067.6392 + 6400 0.64 0.076457558 2610.0081 95.435983 -3.9541076 3.0716812 -1070.7109 -1067.6392 + 6450 0.645 0.076457543 2587.7565 94.898723 -3.9898259 3.054389 -1070.6936 -1067.6392 + 6500 0.65 0.076457571 2592.6987 94.73176 -4.0156724 3.0490152 -1070.6882 -1067.6392 + 6550 0.655 0.076457601 2601.6462 95.026393 -4.0381259 3.0584982 -1070.6977 -1067.6392 + 6600 0.66 0.076457634 2566.7039 95.637128 -4.0616088 3.0781552 -1070.7174 -1067.6392 + 6650 0.665 0.076457648 2514.9262 96.272229 -4.0866885 3.0985964 -1070.7378 -1067.6392 + 6700 0.67 0.076457667 2469.8505 96.811573 -4.1148394 3.1159556 -1070.7552 -1067.6392 + 6750 0.675 0.076457679 2455.7259 97.232643 -4.1435989 3.1295081 -1070.7687 -1067.6392 + 6800 0.68 0.076457673 2468.7089 97.598131 -4.1658056 3.1412716 -1070.7805 -1067.6392 + 6850 0.685 0.076457641 2449.9304 98.364281 -4.1815157 3.1659307 -1070.8052 -1067.6392 + 6900 0.69 0.076457591 2353.8798 100.13599 -4.1974942 3.2229545 -1070.8622 -1067.6392 + 6950 0.695 0.076457574 2209.8271 103.01376 -4.2144962 3.3155778 -1070.9548 -1067.6392 + 7000 0.7 0.07645757 2076.4986 106.68059 -4.2313568 3.4335975 -1071.0728 -1067.6392 + 7050 0.705 0.076457532 2018.5403 110.71749 -4.2520079 3.5635282 -1071.2028 -1067.6392 + 7100 0.71 0.076457492 2065.9887 114.55487 -4.281219 3.6870374 -1071.3263 -1067.6392 + 7150 0.715 0.07645748 2155.5459 117.3116 -4.3158586 3.7757647 -1071.415 -1067.6392 + 7200 0.72 0.076457494 2209.3453 118.11442 -4.3476298 3.8016043 -1071.4408 -1067.6392 + 7250 0.725 0.076457549 2217.3813 116.73458 -4.3751538 3.757193 -1071.3964 -1067.6392 + 7300 0.73 0.076457599 2194.6993 113.55369 -4.4007611 3.6548138 -1071.294 -1067.6392 + 7350 0.735 0.07645757 2162.8509 109.25439 -4.4239789 3.5164373 -1071.1557 -1067.6392 + 7400 0.74 0.076457504 2179.0418 104.7754 -4.4453985 3.3722777 -1071.0115 -1067.6392 + 7450 0.745 0.076457518 2259.2856 101.07787 -4.4663409 3.2532696 -1070.8925 -1067.6392 + 7500 0.75 0.076457572 2343.5535 98.882501 -4.4873841 3.1826101 -1070.8218 -1067.6392 + 7550 0.755 0.076457589 2398.2908 98.45877 -4.5060042 3.1689719 -1070.8082 -1067.6392 + 7600 0.76 0.076457555 2420.4319 99.704417 -4.5200225 3.209064 -1070.8483 -1067.6392 + 7650 0.765 0.076457552 2411.7072 102.42806 -4.5350873 3.2967265 -1070.936 -1067.6392 + 7700 0.77 0.076457571 2387.7867 106.24775 -4.5597359 3.4196662 -1071.0589 -1067.6392 + 7750 0.775 0.076457574 2378.614 110.33425 -4.5954327 3.5511934 -1071.1904 -1067.6392 + 7800 0.78 0.076457546 2386.339 113.47426 -4.6333762 3.6522573 -1071.2915 -1067.6392 + 7850 0.785 0.076457584 2373.6185 114.65304 -4.6634531 3.6901971 -1071.3294 -1067.6392 + 7900 0.79 0.076457607 2346.7767 113.53184 -4.6813286 3.6541104 -1071.2933 -1067.6392 + 7950 0.795 0.076457576 2325.1204 110.53074 -4.6884073 3.5575175 -1071.1968 -1067.6392 + 8000 0.8 0.076457577 2299.9447 106.81524 -4.6940716 3.4379313 -1071.0772 -1067.6392 + 8050 0.805 0.076457592 2281.6434 103.78514 -4.7080773 3.3404052 -1070.9796 -1067.6392 + 8100 0.81 0.076457595 2279.2037 102.50084 -4.7334489 3.2990691 -1070.9383 -1067.6392 + 8150 0.815 0.076457635 2249.7793 103.47522 -4.7690042 3.3304303 -1070.9697 -1067.6392 + 8200 0.82 0.076457642 2189.9745 106.45522 -4.8073957 3.426344 -1071.0656 -1067.6392 + 8250 0.825 0.076457606 2149.0282 110.6545 -4.8397042 3.5615011 -1071.2007 -1067.6392 + 8300 0.83 0.076457542 2135.0181 115.25463 -4.8644908 3.7095598 -1071.3488 -1067.6392 + 8350 0.835 0.076457496 2133.8536 119.41482 -4.8843171 3.8434585 -1071.4827 -1067.6392 + 8400 0.84 0.076457518 2133.1467 122.18695 -4.8996144 3.932682 -1071.5719 -1067.6392 + 8450 0.845 0.076457578 2134.2861 123.01595 -4.9155444 3.9593637 -1071.5986 -1067.6392 + 8500 0.85 0.076457574 2141.613 121.9466 -4.9391276 3.9249459 -1071.5642 -1067.6392 + 8550 0.855 0.076457587 2138.9082 119.39807 -4.9693983 3.8429195 -1071.4822 -1067.6392 + 8600 0.86 0.076457616 2068.0673 116.09276 -5.000552 3.7365357 -1071.3758 -1067.6392 + 8650 0.865 0.076457587 1952.0961 112.98671 -5.0303107 3.6365649 -1071.2758 -1067.6392 + 8700 0.87 0.076457563 1866.7421 110.99219 -5.0605853 3.5723697 -1071.2116 -1067.6392 + 8750 0.875 0.07645759 1830.3031 110.63824 -5.0918767 3.5609778 -1071.2002 -1067.6392 + 8800 0.88 0.076457593 1839.3749 111.91657 -5.1197801 3.6021218 -1071.2414 -1067.6392 + 8850 0.885 0.07645757 1836.93 114.56856 -5.1423719 3.687478 -1071.3267 -1067.6392 + 8900 0.89 0.076457579 1795.2859 118.25516 -5.1643112 3.8061342 -1071.4454 -1067.6392 + 8950 0.895 0.076457614 1766.8498 122.31379 -5.1895303 3.9367641 -1071.576 -1067.6392 + 9000 0.9 0.076457668 1777.4862 125.80875 -5.2189311 4.0492522 -1071.6885 -1067.6392 + 9050 0.905 0.076457701 1778.9988 127.84202 -5.250791 4.1146947 -1071.7539 -1067.6392 + 9100 0.91 0.076457703 1756.3985 127.83199 -5.2809641 4.1143719 -1071.7536 -1067.6392 + 9150 0.915 0.076457636 1750.7698 125.64781 -5.3037451 4.0440723 -1071.6833 -1067.6392 + 9200 0.92 0.076457553 1795.5785 121.64446 -5.3145968 3.9152214 -1071.5545 -1067.6392 + 9250 0.925 0.076457546 1884.6389 116.77819 -5.317446 3.7585968 -1071.3978 -1067.6392 + 9300 0.93 0.076457575 1961.0059 112.44866 -5.3248028 3.6192473 -1071.2585 -1067.6392 + 9350 0.935 0.076457586 1988.8357 109.85485 -5.3452949 3.5357635 -1071.175 -1067.6392 + 9400 0.94 0.076457583 1972.3793 109.57616 -5.3783713 3.5267939 -1071.166 -1067.6392 + 9450 0.945 0.076457572 1948.7911 111.48324 -5.4161951 3.5881745 -1071.2274 -1067.6392 + 9500 0.95 0.076457563 1922.5709 114.9318 -5.4492314 3.6991693 -1071.3384 -1067.6392 + 9550 0.955 0.076457545 1887.2071 119.14996 -5.473804 3.8349339 -1071.4742 -1067.6392 + 9600 0.96 0.076457569 1854.7259 123.36854 -5.4904613 3.9707121 -1071.6099 -1067.6392 + 9650 0.965 0.076457622 1827.4781 126.8424 -5.4992845 4.0825212 -1071.7218 -1067.6392 + 9700 0.97 0.076457643 1811.2431 129.09763 -5.503264 4.1551074 -1071.7943 -1067.6392 + 9750 0.975 0.076457625 1802.4995 130.06103 -5.5091498 4.1861153 -1071.8253 -1067.6392 + 9800 0.98 0.076457569 1802.206 129.93881 -5.5226464 4.1821816 -1071.8214 -1067.6392 + 9850 0.985 0.076457512 1815.5438 128.98667 -5.542848 4.1515359 -1071.7908 -1067.6392 + 9900 0.99 0.076457501 1820.5473 127.45475 -5.5621249 4.1022301 -1071.7415 -1067.6392 + 9950 0.995 0.076457538 1816.8204 125.90549 -5.5773991 4.0523658 -1071.6916 -1067.6392 + 10000 1 0.076457537 1784.5276 125.28779 -5.5974427 4.0324847 -1071.6717 -1067.6392 + 10050 1.005 0.076457529 1720.376 126.28509 -5.6322599 4.0645836 -1071.7038 -1067.6392 + 10100 1.01 0.076457551 1689.9106 128.66253 -5.6814138 4.1411033 -1071.7803 -1067.6392 + 10150 1.015 0.076457539 1713.0249 131.40846 -5.7369528 4.2294833 -1071.8687 -1067.6392 + 10200 1.02 0.076457489 1743.8221 133.3229 -5.789472 4.2911009 -1071.9303 -1067.6392 + 10250 1.025 0.076457427 1770.5405 133.47365 -5.8284105 4.2959531 -1071.9352 -1067.6392 + 10300 1.03 0.076457402 1784.3689 131.77123 -5.852419 4.2411593 -1071.8804 -1067.6392 + 10350 1.035 0.076457432 1759.9766 128.82223 -5.8669372 4.1462436 -1071.7855 -1067.6392 + 10400 1.04 0.076457457 1756.0701 125.3228 -5.8723914 4.0336114 -1071.6728 -1067.6392 + 10450 1.045 0.076457431 1796.2676 122.12283 -5.8711897 3.930618 -1071.5698 -1067.6392 + 10500 1.05 0.076457363 1832.5849 120.24945 -5.8728862 3.870322 -1071.5096 -1067.6392 + 10550 1.055 0.076457315 1825.9591 120.26647 -5.8808515 3.8708698 -1071.5101 -1067.6392 + 10600 1.06 0.076457322 1783.5912 121.98369 -5.8879416 3.9261399 -1071.5654 -1067.6392 + 10650 1.065 0.07645737 1765.4445 124.88567 -5.8906657 4.0195423 -1071.6588 -1067.6392 + 10700 1.07 0.076457449 1789.2376 128.29349 -5.8943984 4.1292256 -1071.7685 -1067.6392 + 10750 1.075 0.076457481 1818.6141 131.12076 -5.9023895 4.2202233 -1071.8595 -1067.6392 + 10800 1.08 0.076457417 1821.6989 132.13157 -5.9106221 4.2527572 -1071.892 -1067.6392 + 10850 1.085 0.076457331 1835.7675 130.83646 -5.9174483 4.2110729 -1071.8503 -1067.6392 + 10900 1.09 0.076457313 1863.9325 127.86582 -5.9253528 4.1154608 -1071.7547 -1067.6392 + 10950 1.095 0.076457328 1879.7524 124.69175 -5.9376375 4.0133007 -1071.6525 -1067.6392 + 11000 1.1 0.07645735 1877.2445 122.96147 -5.9563654 3.9576103 -1071.5968 -1067.6392 + 11050 1.105 0.076457334 1853.502 123.73028 -5.9816201 3.9823552 -1071.6216 -1067.6392 + 11100 1.11 0.076457299 1840.4 127.02072 -6.0118687 4.0882605 -1071.7275 -1067.6392 + 11150 1.115 0.076457349 1868.0417 131.88474 -6.0432323 4.2448126 -1071.884 -1067.6392 + 11200 1.12 0.076457425 1906.0826 137.04774 -6.0742843 4.4109879 -1072.0502 -1067.6392 + 11250 1.125 0.076457409 1916.8851 141.44887 -6.1055084 4.5526417 -1072.1919 -1067.6392 + 11300 1.13 0.076457315 1929.063 144.55599 -6.1379843 4.6526467 -1072.2919 -1067.6392 + 11350 1.135 0.07645728 1963.9888 146.27645 -6.1715945 4.7080209 -1072.3473 -1067.6392 + 11400 1.14 0.076457317 2003.9719 146.52242 -6.201081 4.7159377 -1072.3552 -1067.6392 + 11450 1.145 0.076457337 2032.7751 145.14866 -6.2190123 4.6717222 -1072.311 -1067.6392 + 11500 1.15 0.076457346 2007.3165 142.48643 -6.228223 4.5860364 -1072.2253 -1067.6392 + 11550 1.155 0.076457364 1930.307 139.42166 -6.2424032 4.4873945 -1072.1266 -1067.6392 + 11600 1.16 0.076457384 1815.1751 136.55133 -6.2668555 4.3950107 -1072.0342 -1067.6392 + 11650 1.165 0.076457374 1692.3408 134.02582 -6.2982889 4.3137251 -1071.953 -1067.6392 + 11700 1.17 0.076457362 1632.1328 131.95661 -6.333283 4.2471259 -1071.8864 -1067.6392 + 11750 1.175 0.07645735 1668.5268 130.40398 -6.3655085 4.1971534 -1071.8364 -1067.6392 + 11800 1.18 0.076457303 1739.9788 129.31098 -6.3892439 4.1619742 -1071.8012 -1067.6392 + 11850 1.185 0.076457253 1807.7337 128.65584 -6.4083517 4.1408881 -1071.7801 -1067.6392 + 11900 1.19 0.0764573 1826.428 128.39557 -6.4305339 4.1325111 -1071.7717 -1067.6392 + 11950 1.195 0.076457354 1740.376 128.35778 -6.456201 4.1312949 -1071.7705 -1067.6392 + 12000 1.2 0.076457321 1628.3377 128.64127 -6.4864265 4.1404191 -1071.7797 -1067.6392 + 12050 1.205 0.076457228 1610.9113 129.62765 -6.5236327 4.1721667 -1071.8114 -1067.6392 + 12100 1.21 0.07645719 1647.6711 131.56179 -6.5624185 4.2344183 -1071.8736 -1067.6392 + 12150 1.215 0.076457244 1667.2405 134.45387 -6.593096 4.327502 -1071.9667 -1067.6392 + 12200 1.22 0.076457281 1650.0369 138.29884 -6.6148053 4.4512554 -1072.0905 -1067.6392 + 12250 1.225 0.076457269 1610.0214 142.96914 -6.6359085 4.6015728 -1072.2408 -1067.6392 + 12300 1.23 0.076457261 1594.6496 147.74828 -6.6580315 4.755393 -1072.3946 -1067.6392 + 12350 1.235 0.076457238 1609.8485 151.54432 -6.6730075 4.8775714 -1072.5168 -1067.6392 + 12400 1.24 0.076457201 1649.4384 153.78009 -6.6795567 4.9495317 -1072.5888 -1067.6392 + 12450 1.245 0.076457189 1676.2248 154.4468 -6.6837801 4.9709901 -1072.6102 -1067.6392 + 12500 1.25 0.076457239 1670.814 153.58107 -6.6881901 4.9431258 -1072.5824 -1067.6392 + 12550 1.255 0.076457285 1649.8854 151.2045 -6.6908201 4.8666342 -1072.5059 -1067.6392 + 12600 1.26 0.076457284 1650.7306 147.66332 -6.6919133 4.7526585 -1072.3919 -1067.6392 + 12650 1.265 0.076457189 1716.8308 143.58784 -6.6915867 4.6214861 -1072.2607 -1067.6392 + 12700 1.27 0.076457085 1831.8331 139.80608 -6.6912135 4.4997672 -1072.139 -1067.6392 + 12750 1.275 0.076457143 1914.1068 137.09279 -6.6943577 4.4124378 -1072.0517 -1067.6392 + 12800 1.28 0.076457209 1952.4216 135.78967 -6.7027456 4.370496 -1072.0097 -1067.6392 + 12850 1.285 0.076457218 1975.0105 135.8441 -6.71489 4.3722479 -1072.0115 -1067.6392 + 12900 1.29 0.076457295 1973.6709 137.16928 -6.7284709 4.4148997 -1072.0541 -1067.6392 + 12950 1.295 0.076457414 1949.6975 139.70897 -6.7419581 4.4966417 -1072.1359 -1067.6392 + 13000 1.3 0.076457467 1910.5263 143.0515 -6.7515077 4.6042234 -1072.2435 -1067.6392 + 13050 1.305 0.076457461 1863.8288 146.61488 -6.7594325 4.7189138 -1072.3581 -1067.6392 + 13100 1.31 0.07645739 1808.6316 149.91966 -6.7746805 4.8252807 -1072.4645 -1067.6392 + 13150 1.315 0.07645729 1782.3809 152.39881 -6.7984035 4.9050739 -1072.5443 -1067.6392 + 13200 1.32 0.076457252 1781.5232 153.48161 -6.8240019 4.9399248 -1072.5792 -1067.6392 + 13250 1.325 0.07645725 1763.5272 152.93985 -6.8501794 4.9224879 -1072.5617 -1067.6392 + 13300 1.33 0.076457252 1710.4946 150.83438 -6.8814293 4.8547215 -1072.494 -1067.6392 + 13350 1.335 0.076457258 1644.7486 147.30722 -6.9178941 4.7411971 -1072.3804 -1067.6392 + 13400 1.34 0.076457331 1605.6165 142.74866 -6.9539225 4.5944763 -1072.2337 -1067.6392 + 13450 1.345 0.076457403 1581.6983 137.98535 -6.9831256 4.4411657 -1072.0804 -1067.6392 + 13500 1.35 0.076457367 1564.3505 134.11939 -7.0019808 4.3167366 -1071.956 -1067.6392 + 13550 1.355 0.076457301 1574.5107 132.21611 -7.0146772 4.2554781 -1071.8947 -1067.6392 + 13600 1.36 0.076457257 1611.9755 132.80504 -7.0296151 4.2744333 -1071.9137 -1067.6392 + 13650 1.365 0.076457201 1640.7113 135.56674 -7.0513962 4.3633208 -1072.0026 -1067.6392 + 13700 1.37 0.076457189 1654.0361 139.6012 -7.0805562 4.4931729 -1072.1324 -1067.6392 + 13750 1.375 0.076457229 1678.441 143.86647 -7.1124767 4.6304539 -1072.2697 -1067.6392 + 13800 1.38 0.076457284 1686.1364 147.62332 -7.1379787 4.7513712 -1072.3906 -1067.6392 + 13850 1.385 0.076457274 1656.3348 150.77783 -7.1529695 4.8529016 -1072.4921 -1067.6392 + 13900 1.39 0.076457235 1597.0959 153.61417 -7.1618005 4.9441914 -1072.5834 -1067.6392 + 13950 1.395 0.076457252 1565.4065 156.26062 -7.170134 5.0293694 -1072.6686 -1067.6392 + 14000 1.4 0.076457261 1576.0797 158.74996 -7.1843908 5.1094907 -1072.7487 -1067.6392 + 14050 1.405 0.076457231 1597.0006 160.90398 -7.2025683 5.1788195 -1072.8181 -1067.6392 + 14100 1.41 0.076457223 1613.5592 162.39878 -7.2156174 5.2269309 -1072.8662 -1067.6392 + 14150 1.415 0.076457286 1629.6758 163.17046 -7.2245128 5.251768 -1072.891 -1067.6392 + 14200 1.42 0.076457403 1653.3044 163.16418 -7.2361077 5.2515657 -1072.8908 -1067.6392 + 14250 1.425 0.076457462 1662.8527 162.13868 -7.2521095 5.2185594 -1072.8578 -1067.6392 + 14300 1.43 0.076457412 1630.9111 160.1566 -7.2734168 5.1547645 -1072.794 -1067.6392 + 14350 1.435 0.076457382 1580.8899 157.80029 -7.3028008 5.0789247 -1072.7182 -1067.6392 + 14400 1.44 0.076457398 1564.0104 155.5646 -7.336948 5.0069673 -1072.6462 -1067.6392 + 14450 1.445 0.076457402 1558.3075 153.27872 -7.3628999 4.9333947 -1072.5726 -1067.6392 + 14500 1.45 0.076457377 1530.3969 150.48123 -7.3702551 4.8433552 -1072.4826 -1067.6392 + 14550 1.455 0.076457353 1511.7287 147.14899 -7.362315 4.7361044 -1072.3753 -1067.6392 + 14600 1.46 0.076457341 1535.6604 143.91325 -7.3525622 4.6319595 -1072.2712 -1067.6392 + 14650 1.465 0.076457346 1579.1663 141.56448 -7.3510104 4.5563627 -1072.1956 -1067.6392 + 14700 1.47 0.076457397 1612.3535 140.59549 -7.360296 4.5251749 -1072.1644 -1067.6392 + 14750 1.475 0.076457471 1642.2272 141.10169 -7.3761707 4.5414673 -1072.1807 -1067.6392 + 14800 1.48 0.076457425 1655.8317 143.06873 -7.3922813 4.604778 -1072.244 -1067.6392 + 14850 1.485 0.076457358 1635.8169 146.57617 -7.4084124 4.7176678 -1072.3569 -1067.6392 + 14900 1.49 0.07645736 1620.3521 151.43759 -7.4283243 4.8741364 -1072.5134 -1067.6392 + 14950 1.495 0.076457392 1613.6163 156.81465 -7.451549 5.0472011 -1072.6864 -1067.6392 + 15000 1.5 0.076457432 1641.9185 161.49441 -7.4752177 5.1978229 -1072.8371 -1067.6392 + 15050 1.505 0.076457454 1694.671 164.44492 -7.4987743 5.2927872 -1072.932 -1067.6392 + 15100 1.51 0.076457415 1736.9184 165.1692 -7.5221765 5.3160988 -1072.9553 -1067.6392 + 15150 1.515 0.076457338 1752.072 163.78444 -7.5411028 5.2715294 -1072.9108 -1067.6392 + 15200 1.52 0.076457306 1752.6181 161.09848 -7.553989 5.1850797 -1072.8243 -1067.6392 + 15250 1.525 0.076457359 1736.1908 158.22125 -7.5667375 5.0924736 -1072.7317 -1067.6392 + 15300 1.53 0.076457401 1730.7557 155.8948 -7.5868022 5.0175953 -1072.6568 -1067.6392 + 15350 1.535 0.076457406 1749.4877 154.29785 -7.6163309 4.9661959 -1072.6054 -1067.6392 + 15400 1.54 0.076457413 1767.8554 153.256 -7.646484 4.9326634 -1072.5719 -1067.6392 + 15450 1.545 0.076457408 1774.3702 152.86159 -7.6690389 4.9199689 -1072.5592 -1067.6392 + 15500 1.55 0.076457491 1770.2174 153.59646 -7.6870142 4.9436212 -1072.5829 -1067.6392 + 15550 1.555 0.076457608 1767.1771 155.78946 -7.7079221 5.0142046 -1072.6534 -1067.6392 + 15600 1.56 0.076457561 1738.6373 159.28425 -7.7334961 5.1266873 -1072.7659 -1067.6392 + 15650 1.565 0.076457428 1700.8184 163.47112 -7.7586601 5.2614448 -1072.9007 -1067.6392 + 15700 1.57 0.076457375 1688.1496 167.31488 -7.7745852 5.3851594 -1073.0244 -1067.6392 + 15750 1.575 0.076457393 1700.6524 169.85179 -7.7793279 5.4668117 -1073.106 -1067.6392 + 15800 1.58 0.076457312 1732.7457 170.75736 -7.7843367 5.4959582 -1073.1352 -1067.6392 + 15850 1.585 0.076457273 1770.0139 169.97991 -7.7986828 5.4709353 -1073.1102 -1067.6392 + 15900 1.59 0.076457392 1786.2936 167.32785 -7.8165236 5.3855768 -1073.0248 -1067.6392 + 15950 1.595 0.076457536 1758.2055 162.95664 -7.8294313 5.244886 -1072.8841 -1067.6392 + 16000 1.6 0.076457587 1701.2308 157.82826 -7.8390235 5.079825 -1072.7191 -1067.6392 + 16050 1.605 0.076457541 1658.3347 153.26331 -7.8499456 4.9328986 -1072.5721 -1067.6392 + 16100 1.61 0.076457398 1664.9861 150.22106 -7.8641896 4.8349815 -1072.4742 -1067.6392 + 16150 1.615 0.076457358 1704.9163 148.78635 -7.8778806 4.7888042 -1072.428 -1067.6392 + 16200 1.62 0.076457411 1717.877 148.52697 -7.8854701 4.7804557 -1072.4197 -1067.6392 + 16250 1.625 0.076457389 1676.6721 149.39648 -7.8911926 4.8084417 -1072.4477 -1067.6392 + 16300 1.63 0.076457343 1606.1432 151.67229 -7.9043128 4.8816903 -1072.5209 -1067.6392 + 16350 1.635 0.076457336 1579.1024 155.15678 -7.9251862 4.9938414 -1072.6331 -1067.6392 + 16400 1.64 0.076457384 1586.2825 159.18596 -7.949204 5.1235238 -1072.7628 -1067.6392 + 16450 1.645 0.076457396 1574.4855 163.18237 -7.976768 5.2521512 -1072.8914 -1067.6392 + 16500 1.65 0.07645733 1576.1962 166.71848 -8.0077333 5.3659636 -1073.0052 -1067.6392 + 16550 1.655 0.07645727 1597.1073 169.59771 -8.038467 5.4586339 -1073.0979 -1067.6392 + 16600 1.66 0.076457285 1599.917 171.99866 -8.06723 5.5359104 -1073.1751 -1067.6392 + 16650 1.665 0.076457312 1567.2444 174.07518 -8.0934269 5.6027449 -1073.242 -1067.6392 + 16700 1.67 0.076457288 1538.1861 175.68138 -8.1188007 5.6544416 -1073.2937 -1067.6392 + 16750 1.675 0.07645721 1511.9049 176.53933 -8.146985 5.6820555 -1073.3213 -1067.6392 + 16800 1.68 0.076457228 1468.497 176.55444 -8.1808459 5.6825417 -1073.3218 -1067.6392 + 16850 1.685 0.076457264 1431.494 175.8924 -8.2214633 5.6612334 -1073.3005 -1067.6392 + 16900 1.69 0.076457269 1415.3928 174.78298 -8.266249 5.6255257 -1073.2648 -1067.6392 + 16950 1.695 0.076457225 1452.9617 173.33174 -8.3082586 5.5788167 -1073.218 -1067.6392 + 17000 1.7 0.076457179 1470.3678 171.67883 -8.3449394 5.5256165 -1073.1648 -1067.6392 + 17050 1.705 0.076457163 1443.7364 169.99399 -8.3798127 5.4713883 -1073.1106 -1067.6392 + 17100 1.71 0.07645721 1420.9961 168.25292 -8.4131544 5.4153509 -1073.0546 -1067.6392 + 17150 1.715 0.076457295 1438.9266 166.52365 -8.4428287 5.3596929 -1072.9989 -1067.6392 + 17200 1.72 0.076457288 1491.1593 165.33242 -8.4714901 5.3213522 -1072.9606 -1067.6392 + 17250 1.725 0.076457246 1522.9686 165.31615 -8.5004148 5.3208287 -1072.9601 -1067.6392 + 17300 1.73 0.076457324 1507.7851 166.83662 -8.5254522 5.369766 -1073.009 -1067.6392 + 17350 1.735 0.076457348 1472.7382 169.83517 -8.5448034 5.4662768 -1073.1055 -1067.6392 + 17400 1.74 0.076457306 1446.0079 173.344 -8.5542116 5.5792111 -1073.2184 -1067.6392 + 17450 1.745 0.07645735 1428.36 175.90072 -8.5502511 5.661501 -1073.3007 -1067.6392 + 17500 1.75 0.076457419 1424.108 176.56743 -8.5390662 5.6829599 -1073.3222 -1067.6392 + 17550 1.755 0.076457329 1441.9785 175.33547 -8.5352293 5.6433082 -1073.2825 -1067.6392 + 17600 1.76 0.076457184 1458.608 172.71768 -8.5475316 5.5590527 -1073.1983 -1067.6392 + 17650 1.765 0.076457192 1468.4405 169.36794 -8.5725313 5.4512387 -1073.0905 -1067.6392 + 17700 1.77 0.076457276 1483.3347 165.84641 -8.6000497 5.3378954 -1072.9771 -1067.6392 + 17750 1.775 0.076457328 1488.5201 162.8195 -8.6287352 5.2404721 -1072.8797 -1067.6392 + 17800 1.78 0.07645732 1470.5993 161.04107 -8.6640671 5.1832319 -1072.8225 -1067.6392 + 17850 1.785 0.076457278 1462.6343 161.04849 -8.7048157 5.1834707 -1072.8227 -1067.6392 + 17900 1.79 0.076457233 1453.3573 163.16996 -8.7450188 5.2517519 -1072.891 -1067.6392 + 17950 1.795 0.076457161 1447.1007 167.58872 -8.7859818 5.3939729 -1073.0332 -1067.6392 + 18000 1.8 0.076457139 1440.0053 173.87077 -8.833056 5.5961657 -1073.2354 -1067.6392 + 18050 1.805 0.076457185 1418.2881 180.47756 -8.8792523 5.8088102 -1073.448 -1067.6392 + 18100 1.81 0.076457223 1401.1744 185.61692 -8.9125448 5.9742247 -1073.6135 -1067.6392 + 18150 1.815 0.07645727 1389.0345 188.42536 -8.9312647 6.0646165 -1073.7039 -1067.6392 + 18200 1.82 0.076457264 1387.7229 189.24556 -8.9469259 6.0910152 -1073.7302 -1067.6392 + 18250 1.825 0.076457202 1402.1898 188.92804 -8.9718195 6.0807957 -1073.72 -1067.6392 + 18300 1.83 0.076457177 1390.586 188.00713 -9.0028575 6.0511554 -1073.6904 -1067.6392 + 18350 1.835 0.076457182 1352.2199 186.92382 -9.0291119 6.0162881 -1073.6555 -1067.6392 + 18400 1.84 0.076457214 1348.252 186.22966 -9.0428346 5.9939461 -1073.6332 -1067.6392 + 18450 1.845 0.076457257 1391.9407 186.3174 -9.0469158 5.9967701 -1073.636 -1067.6392 + 18500 1.85 0.07645722 1426.8552 186.92904 -9.0496753 6.0164563 -1073.6557 -1067.6392 + 18550 1.855 0.076457185 1446.4566 187.30921 -9.0572556 6.0286923 -1073.6679 -1067.6392 + 18600 1.86 0.076457223 1464.9221 186.80304 -9.0713411 6.0124008 -1073.6516 -1067.6392 + 18650 1.865 0.076457199 1471.3202 185.06559 -9.0868448 5.9564798 -1073.5957 -1067.6392 + 18700 1.87 0.07645725 1461.0629 182.41219 -9.1051202 5.871078 -1073.5103 -1067.6392 + 18750 1.875 0.076457345 1431.7789 179.46716 -9.1294581 5.7762898 -1073.4155 -1067.6392 + 18800 1.88 0.076457274 1409.3438 176.48484 -9.1499481 5.6803016 -1073.3195 -1067.6392 + 18850 1.885 0.076457201 1370.4168 173.84236 -9.1643576 5.5952513 -1073.2345 -1067.6392 + 18900 1.89 0.076457245 1307.0644 172.24292 -9.1908564 5.543772 -1073.183 -1067.6392 + 18950 1.895 0.076457257 1298.5302 171.72024 -9.2357227 5.5269491 -1073.1662 -1067.6392 + 19000 1.9 0.076457286 1335.2088 171.37187 -9.2735952 5.5157366 -1073.155 -1067.6392 + 19050 1.905 0.076457382 1347.2532 170.91617 -9.2850717 5.5010696 -1073.1403 -1067.6392 + 19100 1.91 0.076457395 1332.8305 171.59912 -9.2864975 5.5230508 -1073.1623 -1067.6392 + 19150 1.915 0.076457344 1304.8597 174.54105 -9.2959387 5.6177392 -1073.257 -1067.6392 + 19200 1.92 0.076457301 1276.1592 179.42057 -9.309653 5.7747904 -1073.414 -1067.6392 + 19250 1.925 0.076457274 1260.6559 185.20252 -9.325615 5.9608868 -1073.6001 -1067.6392 + 19300 1.93 0.076457271 1265.939 190.71739 -9.3483129 6.1383871 -1073.7776 -1067.6392 + 19350 1.935 0.076457278 1304.535 194.87898 -9.3783203 6.2723313 -1073.9116 -1067.6392 + 19400 1.94 0.07645731 1362.5576 197.21347 -9.4193269 6.3474686 -1073.9867 -1067.6392 + 19450 1.945 0.076457423 1382.7886 197.45962 -9.4694007 6.355391 -1073.9946 -1067.6392 + 19500 1.95 0.076457472 1352.303 195.21464 -9.5133315 6.2831347 -1073.9224 -1067.6392 + 19550 1.955 0.076457413 1318.6835 190.89792 -9.5445597 6.1441978 -1073.7834 -1067.6392 + 19600 1.96 0.076457386 1300.0189 186.19759 -9.5724767 5.9929138 -1073.6321 -1067.6392 + 19650 1.965 0.076457417 1281.4514 182.93348 -9.6006152 5.8878559 -1073.5271 -1067.6392 + 19700 1.97 0.07645744 1265.2354 182.28868 -9.628322 5.8671025 -1073.5063 -1067.6392 + 19750 1.975 0.076457421 1267.1291 184.68067 -9.6640365 5.9440908 -1073.5833 -1067.6392 + 19800 1.98 0.076457374 1293.1065 189.3714 -9.7123982 6.0950654 -1073.7343 -1067.6392 + 19850 1.985 0.076457367 1329.191 194.76572 -9.7631294 6.268686 -1073.9079 -1067.6392 + 19900 1.99 0.076457418 1354.9407 199.74508 -9.810328 6.4289505 -1074.0682 -1067.6392 + 19950 1.995 0.076457493 1364.3708 203.86864 -9.8606606 6.5616706 -1074.2009 -1067.6392 + 20000 2 0.076457544 1370.452 206.23944 -9.9126035 6.6379764 -1074.2772 -1067.6392 + 20050 2.005 0.076457509 1383.7523 205.76789 -9.9571492 6.6227992 -1074.262 -1067.6392 + 20100 2.01 0.076457429 1414.7434 202.49809 -9.9940319 6.517558 -1074.1568 -1067.6392 + 20150 2.015 0.076457429 1440.4523 197.73428 -10.025459 6.3642312 -1074.0035 -1067.6392 + 20200 2.02 0.076457497 1438.5359 193.30554 -10.048612 6.2216888 -1073.8609 -1067.6392 + 20250 2.025 0.07645744 1414.6747 190.72151 -10.062382 6.1385198 -1073.7778 -1067.6392 + 20300 2.03 0.07645731 1378.8817 190.25946 -10.069669 6.1236485 -1073.7629 -1067.6392 + 20350 2.035 0.076457261 1346.5661 190.90571 -10.074723 6.1444483 -1073.7837 -1067.6392 + 20400 2.04 0.076457374 1317.3739 191.59018 -10.08691 6.1664785 -1073.8057 -1067.6392 + 20450 2.045 0.076457432 1298.4495 191.78045 -10.110389 6.1726027 -1073.8118 -1067.6392 + 20500 2.05 0.076457389 1307.5371 191.15865 -10.137263 6.1525895 -1073.7918 -1067.6392 + 20550 2.055 0.07645742 1349.47 189.92735 -10.166271 6.1129591 -1073.7522 -1067.6392 + 20600 2.06 0.076457466 1398.5195 188.8647 -10.202844 6.0787568 -1073.718 -1067.6392 + 20650 2.065 0.076457498 1429.8721 188.62808 -10.24022 6.0711412 -1073.7104 -1067.6392 + 20700 2.07 0.076457542 1418.3434 189.78814 -10.271874 6.1084787 -1073.7477 -1067.6392 + 20750 2.075 0.076457458 1385.6893 192.47669 -10.295734 6.1950118 -1073.8342 -1067.6392 + 20800 2.08 0.076457259 1384.4289 196.10104 -10.308523 6.3116642 -1073.9509 -1067.6392 + 20850 2.085 0.0764572 1421.2966 200.257 -10.317753 6.4454271 -1074.0847 -1067.6392 + 20900 2.09 0.076457326 1452.7855 205.19616 -10.341775 6.6043977 -1074.2436 -1067.6392 + 20950 2.095 0.076457501 1427.8013 210.86618 -10.385931 6.7868916 -1074.4261 -1067.6392 + 21000 2.1 0.076457596 1357.2483 216.14216 -10.43158 6.9567033 -1074.5959 -1067.6392 + 21050 2.105 0.07645759 1324.5353 219.6255 -10.462375 7.0688173 -1074.7081 -1067.6392 + 21100 2.11 0.076457496 1347.0889 220.73435 -10.48964 7.1045064 -1074.7437 -1067.6392 + 21150 2.115 0.076457458 1361.8801 219.46337 -10.529469 7.0635988 -1074.7028 -1067.6392 + 21200 2.12 0.076457466 1365.4715 216.13572 -10.578785 6.9564959 -1074.5957 -1067.6392 + 21250 2.125 0.076457537 1362.6717 211.57708 -10.625983 6.8097726 -1074.449 -1067.6392 + 21300 2.13 0.076457586 1340.2017 206.63829 -10.66147 6.6508137 -1074.29 -1067.6392 + 21350 2.135 0.076457554 1331.9946 201.93393 -10.679818 6.4994001 -1074.1386 -1067.6392 + 21400 2.14 0.076457547 1347.0023 198.28955 -10.68412 6.382103 -1074.0213 -1067.6392 + 21450 2.145 0.076457533 1340.6741 196.9082 -10.686481 6.3376433 -1073.9769 -1067.6392 + 21500 2.15 0.076457456 1316.0121 198.72879 -10.696049 6.3962403 -1074.0355 -1067.6392 + 21550 2.155 0.076457391 1324.8545 203.55687 -10.714867 6.551636 -1074.1909 -1067.6392 + 21600 2.16 0.076457382 1351.2014 209.51125 -10.739588 6.7432823 -1074.3825 -1067.6392 + 21650 2.165 0.076457455 1366.4862 213.95654 -10.765901 6.8863571 -1074.5256 -1067.6392 + 21700 2.17 0.076457459 1377.4225 215.23385 -10.795997 6.9274684 -1074.5667 -1067.6392 + 21750 2.175 0.076457481 1396.0304 212.90984 -10.825441 6.8526684 -1074.4919 -1067.6392 + 21800 2.18 0.076457615 1387.0649 207.72279 -10.844968 6.6857194 -1074.325 -1067.6392 + 21850 2.185 0.07645756 1347.9695 201.50492 -10.85814 6.4855922 -1074.1248 -1067.6392 + 21900 2.19 0.076457366 1323.2228 196.28581 -10.872625 6.3176113 -1073.9568 -1067.6392 + 21950 2.195 0.076457329 1315.1922 193.83068 -10.887085 6.2385908 -1073.8778 -1067.6392 + 22000 2.2 0.076457369 1307.9895 195.03955 -10.898532 6.2774994 -1073.9167 -1067.6392 + 22050 2.205 0.076457333 1302.1738 199.68283 -10.909377 6.4269467 -1074.0662 -1067.6392 + 22100 2.21 0.076457379 1305.5855 206.92378 -10.917331 6.6600025 -1074.2992 -1067.6392 + 22150 2.215 0.076457515 1304.6883 215.29251 -10.918892 6.9293567 -1074.5686 -1067.6392 + 22200 2.22 0.076457547 1296.8284 222.98568 -10.922929 7.1769673 -1074.8162 -1067.6392 + 22250 2.225 0.076457453 1286.8966 228.09069 -10.938316 7.341276 -1074.9805 -1067.6392 + 22300 2.23 0.076457432 1283.0205 228.97664 -10.961235 7.369791 -1075.009 -1067.6392 + 22350 2.235 0.076457491 1270.3982 225.44347 -10.985727 7.256073 -1074.8953 -1067.6392 + 22400 2.24 0.076457539 1249.8598 219.23739 -11.012893 7.0563256 -1074.6956 -1067.6392 + 22450 2.245 0.076457476 1240.8541 212.79326 -11.044291 6.8489162 -1074.4881 -1067.6392 + 22500 2.25 0.076457394 1216.6944 207.29518 -11.068062 6.6719563 -1074.3112 -1067.6392 + 22550 2.255 0.07645743 1199.1131 202.98585 -11.071495 6.5332571 -1074.1725 -1067.6392 + 22600 2.26 0.076457488 1212.1478 200.96232 -11.064393 6.4681283 -1074.1074 -1067.6392 + 22650 2.265 0.076457528 1237.8172 202.93395 -11.064895 6.5315867 -1074.1708 -1067.6392 + 22700 2.27 0.076457598 1271.2811 209.42782 -11.076273 6.740597 -1074.3798 -1067.6392 + 22750 2.275 0.076457625 1292.63 218.78195 -11.089805 7.0416668 -1074.6809 -1067.6392 + 22800 2.28 0.076457646 1294.2671 227.41133 -11.098416 7.31941 -1074.9586 -1067.6392 + 22850 2.285 0.07645765 1293.2803 231.3383 -11.10365 7.4458026 -1075.085 -1067.6392 + 22900 2.29 0.076457537 1276.9806 228.2557 -11.10958 7.346587 -1074.9858 -1067.6392 + 22950 2.295 0.076457429 1247.4583 218.93487 -11.118854 7.0465888 -1074.6858 -1067.6392 + 23000 2.3 0.07645749 1220.8505 206.99183 -11.13279 6.6621926 -1074.3014 -1067.6392 + 23050 2.305 0.076457684 1195.6985 196.96159 -11.149 6.3393615 -1073.9786 -1067.6392 + 23100 2.31 0.076457705 1177.6963 192.24501 -11.168942 6.1875548 -1073.8268 -1067.6392 + 23150 2.315 0.076457622 1189.909 193.63937 -11.194406 6.2324333 -1073.8717 -1067.6392 + 23200 2.32 0.076457629 1176.2126 199.45702 -11.222484 6.4196791 -1074.0589 -1067.6392 + 23250 2.325 0.076457691 1143.0276 207.378 -11.256925 6.6746219 -1074.3139 -1067.6392 + 23300 2.33 0.076457654 1149.5521 215.51136 -11.297612 6.9364003 -1074.5756 -1067.6392 + 23350 2.335 0.076457506 1175.2519 222.4968 -11.332657 7.1612322 -1074.8005 -1067.6392 + 23400 2.34 0.07645745 1206.0616 227.6206 -11.358013 7.3261457 -1074.9654 -1067.6392 + 23450 2.345 0.076457571 1244.7472 230.22754 -11.372594 7.4100522 -1075.0493 -1067.6392 + 23500 2.35 0.076457771 1284.7778 229.70862 -11.373027 7.3933501 -1075.0326 -1067.6392 + 23550 2.355 0.076457864 1311.4158 226.4096 -11.368792 7.2871688 -1074.9264 -1067.6392 + 23600 2.36 0.076457811 1306.2401 221.71694 -11.376759 7.1361318 -1074.7754 -1067.6392 + 23650 2.365 0.076457644 1286.7748 217.10502 -11.396699 6.9876935 -1074.6269 -1067.6392 + 23700 2.37 0.076457559 1285.9692 213.6234 -11.411758 6.8756348 -1074.5149 -1067.6392 + 23750 2.375 0.076457583 1315.8724 212.16671 -11.41765 6.8287501 -1074.468 -1067.6392 + 23800 2.38 0.076457631 1339.9814 212.92958 -11.42278 6.8533037 -1074.4925 -1067.6392 + 23850 2.385 0.076457734 1345.9875 214.96489 -11.430277 6.918812 -1074.558 -1067.6392 + 23900 2.39 0.076457858 1361.0323 217.03056 -11.439982 6.985297 -1074.6245 -1067.6392 + 23950 2.395 0.076457821 1349.6621 218.41589 -11.451629 7.0298849 -1074.6691 -1067.6392 + 24000 2.4 0.076457708 1314.3225 219.11487 -11.463434 7.0523821 -1074.6916 -1067.6392 + 24050 2.405 0.076457674 1317.1772 219.55885 -11.474327 7.066672 -1074.7059 -1067.6392 + 24100 2.41 0.076457767 1340.506 220.1472 -11.487319 7.0856086 -1074.7248 -1067.6392 + 24150 2.415 0.076457818 1335.5812 220.89722 -11.505688 7.1097485 -1074.749 -1067.6392 + 24200 2.42 0.076457791 1314.6836 221.34153 -11.523839 7.1240489 -1074.7633 -1067.6392 + 24250 2.425 0.0764578 1318.1131 221.06173 -11.535018 7.1150433 -1074.7543 -1067.6392 + 24300 2.43 0.076457733 1331.7464 220.35927 -11.543314 7.0924342 -1074.7317 -1067.6392 + 24350 2.435 0.076457676 1349.095 220.17248 -11.558019 7.0864221 -1074.7257 -1067.6392 + 24400 2.44 0.076457742 1356.5902 221.03788 -11.578741 7.1142759 -1074.7535 -1067.6392 + 24450 2.445 0.076457749 1335.6175 222.53673 -11.601255 7.1625175 -1074.8017 -1067.6392 + 24500 2.45 0.076457723 1333.7469 223.84826 -11.630787 7.2047301 -1074.844 -1067.6392 + 24550 2.455 0.07645779 1345.535 223.91615 -11.665528 7.2069151 -1074.8461 -1067.6392 + 24600 2.46 0.076457891 1349.7061 222.16848 -11.700181 7.1506649 -1074.7899 -1067.6392 + 24650 2.465 0.076457886 1343.7465 219.10866 -11.729696 7.0521824 -1074.6914 -1067.6392 + 24700 2.47 0.076457762 1339.7649 216.23529 -11.746431 6.9597005 -1074.5989 -1067.6392 + 24750 2.475 0.076457705 1355.939 215.51975 -11.750957 6.9366704 -1074.5759 -1067.6392 + 24800 2.48 0.076457776 1356.4139 218.30642 -11.757207 7.0263614 -1074.6656 -1067.6392 + 24850 2.485 0.076457848 1330.0312 224.05179 -11.772578 7.2112807 -1074.8505 -1067.6392 + 24900 2.49 0.076457863 1297.5013 230.5494 -11.792498 7.4204112 -1075.0596 -1067.6392 + 24950 2.495 0.076457868 1290.2485 235.49414 -11.816527 7.5795618 -1075.2188 -1067.6392 + 25000 2.5 0.076457817 1324.8441 237.34082 -11.84201 7.6389985 -1075.2782 -1067.6392 + 25050 2.505 0.076457813 1382.8669 235.99886 -11.868053 7.5958063 -1075.235 -1067.6392 + 25100 2.51 0.076457866 1404.5052 232.75422 -11.897872 7.4913751 -1075.1306 -1067.6392 + 25150 2.515 0.076457758 1373.5678 229.12093 -11.930189 7.3744349 -1075.0137 -1067.6392 + 25200 2.52 0.076457631 1340.2368 225.89973 -11.961129 7.2707582 -1074.91 -1067.6392 + 25250 2.525 0.076457603 1287.6672 223.17935 -11.988402 7.1832006 -1074.8224 -1067.6392 + 25300 2.53 0.076457707 1215.9369 221.04361 -12.017068 7.1144602 -1074.7537 -1067.6392 + 25350 2.535 0.076457838 1180.1736 219.67591 -12.055753 7.0704398 -1074.7097 -1067.6392 + 25400 2.54 0.076457842 1170.0761 218.91437 -12.098288 7.0459289 -1074.6852 -1067.6392 + 25450 2.545 0.076457763 1167.2929 218.81794 -12.132702 7.0428252 -1074.6821 -1067.6392 + 25500 2.55 0.076457742 1155.4395 219.83672 -12.154195 7.0756153 -1074.7148 -1067.6392 + 25550 2.555 0.076457848 1131.146 222.18391 -12.164224 7.1511617 -1074.7904 -1067.6392 + 25600 2.56 0.076457871 1116.0652 225.47579 -12.165095 7.2571134 -1074.8963 -1067.6392 + 25650 2.565 0.076457678 1117.8567 229.01451 -12.157967 7.3710097 -1075.0102 -1067.6392 + 25700 2.57 0.076457577 1115.2103 232.4771 -12.148741 7.4824559 -1075.1217 -1067.6392 + 25750 2.575 0.07645762 1102.8295 236.02578 -12.149186 7.5966728 -1075.2359 -1067.6392 + 25800 2.58 0.076457709 1096.6263 239.31704 -12.161384 7.7026045 -1075.3418 -1067.6392 + 25850 2.585 0.076457771 1099.7531 240.71012 -12.161592 7.747442 -1075.3867 -1067.6392 + 25900 2.59 0.076457794 1113.7391 239.15473 -12.139363 7.6973807 -1075.3366 -1067.6392 + 25950 2.595 0.07645781 1147.6615 235.77781 -12.120655 7.5886918 -1075.2279 -1067.6392 + 26000 2.6 0.076457803 1195.6627 232.4229 -12.122283 7.4807114 -1075.1199 -1067.6392 + 26050 2.605 0.076457723 1213.8878 230.05021 -12.134196 7.4043447 -1075.0436 -1067.6392 + 26100 2.61 0.076457662 1191.4257 228.34601 -12.14523 7.3494937 -1074.9887 -1067.6392 + 26150 2.615 0.076457767 1186.9577 226.17929 -12.149057 7.2797559 -1074.919 -1067.6392 + 26200 2.62 0.076457849 1226.0678 223.24397 -12.148604 7.1852804 -1074.8245 -1067.6392 + 26250 2.625 0.076457784 1270.1774 220.78885 -12.161228 7.1062605 -1074.7455 -1067.6392 + 26300 2.63 0.076457753 1268.5951 220.05927 -12.190785 7.0827783 -1074.722 -1067.6392 + 26350 2.635 0.076457796 1244.3015 221.38274 -12.221833 7.1253752 -1074.7646 -1067.6392 + 26400 2.64 0.076457904 1225.8939 224.5378 -12.241241 7.2269233 -1074.8662 -1067.6392 + 26450 2.645 0.076457928 1204.224 229.04038 -12.247464 7.3718425 -1075.0111 -1067.6392 + 26500 2.65 0.076457842 1199.5629 234.11351 -12.243703 7.5351249 -1075.1744 -1067.6392 + 26550 2.655 0.0764578 1235.5048 238.7946 -12.230359 7.6857895 -1075.325 -1067.6392 + 26600 2.66 0.076457721 1281.541 242.70107 -12.219967 7.8115224 -1075.4508 -1067.6392 + 26650 2.665 0.0764577 1281.3617 245.64082 -12.229105 7.9061404 -1075.5454 -1067.6392 + 26700 2.67 0.07645779 1230.3534 246.77381 -12.256827 7.9426067 -1075.5818 -1067.6392 + 26750 2.675 0.076457839 1175.2288 245.47917 -12.297669 7.9009375 -1075.5402 -1067.6392 + 26800 2.68 0.076457784 1149.9437 242.07494 -12.342321 7.7913698 -1075.4306 -1067.6392 + 26850 2.685 0.076457711 1169.6008 237.70339 -12.376334 7.650668 -1075.2899 -1067.6392 + 26900 2.69 0.076457632 1210.4254 233.714 -12.396735 7.5222663 -1075.1615 -1067.6392 + 26950 2.695 0.076457617 1244.0163 230.58832 -12.405269 7.4216639 -1075.0609 -1067.6392 + 27000 2.7 0.076457659 1257.3494 228.32233 -12.406329 7.3487312 -1074.988 -1067.6392 + 27050 2.705 0.076457668 1242.1629 227.1087 -12.40368 7.3096696 -1074.9489 -1067.6392 + 27100 2.71 0.076457682 1217.8126 227.49963 -12.404175 7.3222522 -1074.9615 -1067.6392 + 27150 2.715 0.076457706 1217.8124 229.8195 -12.417454 7.3969191 -1075.0361 -1067.6392 + 27200 2.72 0.076457701 1219.6581 233.1475 -12.435301 7.5040334 -1075.1433 -1067.6392 + 27250 2.725 0.076457686 1211.6763 235.8244 -12.43823 7.5901913 -1075.2294 -1067.6392 + 27300 2.73 0.076457643 1225.8491 236.93145 -12.423077 7.6258227 -1075.2651 -1067.6392 + 27350 2.735 0.076457549 1261.0199 236.94668 -12.410644 7.6263127 -1075.2655 -1067.6392 + 27400 2.74 0.076457483 1284.2546 236.98531 -12.421882 7.6275561 -1075.2668 -1067.6392 + 27450 2.745 0.076457556 1281.5681 237.67885 -12.455724 7.6498782 -1075.2891 -1067.6392 + 27500 2.75 0.076457685 1256.839 238.55422 -12.493006 7.6780526 -1075.3173 -1067.6392 + 27550 2.755 0.076457693 1220.0129 238.19759 -12.515867 7.6665742 -1075.3058 -1067.6392 + 27600 2.76 0.076457632 1193.1779 235.68564 -12.532016 7.5857252 -1075.225 -1067.6392 + 27650 2.765 0.076457609 1192.09 231.33982 -12.558081 7.4458516 -1075.0851 -1067.6392 + 27700 2.77 0.076457625 1202.0934 226.4355 -12.590497 7.2880024 -1074.9272 -1067.6392 + 27750 2.775 0.076457615 1223.3689 222.74878 -12.619082 7.1693425 -1074.8086 -1067.6392 + 27800 2.78 0.076457614 1236.1154 221.25926 -12.636081 7.1214011 -1074.7606 -1067.6392 + 27850 2.785 0.076457572 1215.5551 222.18867 -12.64127 7.1513149 -1074.7905 -1067.6392 + 27900 2.79 0.07645756 1193.3848 226.01602 -12.647063 7.2745009 -1074.9137 -1067.6392 + 27950 2.795 0.076457569 1199.0777 232.72902 -12.662048 7.4905641 -1075.1298 -1067.6392 + 28000 2.8 0.076457558 1226.0822 240.9006 -12.684171 7.7535728 -1075.3928 -1067.6392 + 28050 2.805 0.076457525 1250.6269 248.18701 -12.706245 7.9880915 -1075.6273 -1067.6392 + 28100 2.81 0.076457523 1248.7874 252.69422 -12.722605 8.1331597 -1075.7724 -1067.6392 + 28150 2.815 0.07645753 1230.0137 253.95916 -12.737961 8.1738726 -1075.8131 -1067.6392 + 28200 2.82 0.076457605 1234.0819 252.35766 -12.756693 8.1223272 -1075.7616 -1067.6392 + 28250 2.825 0.07645771 1254.628 248.5247 -12.774833 7.9989605 -1075.6382 -1067.6392 + 28300 2.83 0.07645778 1281.309 243.72026 -12.788447 7.8443256 -1075.4836 -1067.6392 + 28350 2.835 0.076457708 1285.3002 239.8707 -12.802912 7.7204245 -1075.3597 -1067.6392 + 28400 2.84 0.076457582 1256.9488 238.10994 -12.817628 7.6637532 -1075.303 -1067.6392 + 28450 2.845 0.076457576 1242.8447 238.02503 -12.821369 7.6610204 -1075.3003 -1067.6392 + 28500 2.85 0.076457672 1248.8453 238.87258 -12.815092 7.6882993 -1075.3275 -1067.6392 + 28550 2.855 0.07645771 1281.7135 240.3983 -12.811904 7.7374058 -1075.3766 -1067.6392 + 28600 2.86 0.07645762 1294.605 242.33371 -12.814653 7.7996987 -1075.4389 -1067.6392 + 28650 2.865 0.076457529 1252.3957 244.15537 -12.817984 7.8583301 -1075.4976 -1067.6392 + 28700 2.87 0.076457548 1213.8804 245.30616 -12.82322 7.8953691 -1075.5346 -1067.6392 + 28750 2.875 0.076457553 1200.6384 245.23015 -12.835086 7.8929227 -1075.5322 -1067.6392 + 28800 2.88 0.076457552 1189.7135 243.32741 -12.845696 7.8316815 -1075.4709 -1067.6392 + 28850 2.885 0.076457676 1171.5405 239.66267 -12.847297 7.7137291 -1075.353 -1067.6392 + 28900 2.89 0.076457794 1182.195 235.25919 -12.851038 7.5719995 -1075.2112 -1067.6392 + 28950 2.895 0.076457813 1224.8369 230.84518 -12.859984 7.4299314 -1075.0692 -1067.6392 + 29000 2.9 0.076457656 1269.692 226.8838 -12.858576 7.3024311 -1074.9417 -1067.6392 + 29050 2.905 0.076457468 1286.8403 225.08705 -12.856504 7.2446013 -1074.8838 -1067.6392 + 29100 2.91 0.0764575 1271.0526 226.82973 -12.880368 7.3006909 -1074.9399 -1067.6392 + 29150 2.915 0.07645747 1248.4957 230.86777 -12.929739 7.4306583 -1075.0699 -1067.6392 + 29200 2.92 0.07645748 1245.8599 234.77185 -12.982866 7.5563142 -1075.1955 -1067.6392 + 29250 2.925 0.076457588 1257.79 237.40229 -13.022402 7.6409768 -1075.2802 -1067.6392 + 29300 2.93 0.076457597 1260.7886 239.44496 -13.046942 7.7067219 -1075.346 -1067.6392 + 29350 2.935 0.07645748 1254.7882 242.29319 -13.065883 7.7983943 -1075.4376 -1067.6392 + 29400 2.94 0.076457359 1263.4607 246.63741 -13.085623 7.9382166 -1075.5774 -1067.6392 + 29450 2.945 0.076457332 1289.6554 251.59184 -13.099481 8.0976788 -1075.7369 -1067.6392 + 29500 2.95 0.076457414 1305.0692 255.25633 -13.098228 8.2156232 -1075.8549 -1067.6392 + 29550 2.955 0.076457494 1277.7916 256.65211 -13.088762 8.2605473 -1075.8998 -1067.6392 + 29600 2.96 0.076457446 1192.1394 256.67442 -13.090594 8.2612654 -1075.9005 -1067.6392 + 29650 2.965 0.076457417 1102.145 257.10406 -13.122356 8.2750937 -1075.9143 -1067.6392 + 29700 2.97 0.076457454 1062.1511 258.80127 -13.182596 8.3297196 -1075.969 -1067.6392 + 29750 2.975 0.076457483 1054.3636 261.18603 -13.249025 8.4064751 -1076.0457 -1067.6392 + 29800 2.98 0.076457498 1047.2927 263.27484 -13.304946 8.4737052 -1076.1129 -1067.6392 + 29850 2.985 0.076457496 1036.3496 264.2054 -13.347539 8.503656 -1076.1429 -1067.6392 + 29900 2.99 0.076457524 1049.8211 263.14933 -13.375057 8.4696654 -1076.1089 -1067.6392 + 29950 2.995 0.076457485 1086.8925 259.64496 -13.389366 8.3568747 -1075.9961 -1067.6392 + 30000 3 0.076457358 1121.0033 253.8035 -13.399945 8.1688626 -1075.8081 -1067.6392 + 30050 3.005 0.076457431 1153.305 246.37026 -13.414937 7.929618 -1075.5688 -1067.6392 + 30100 3.01 0.076457504 1145.6871 238.79622 -13.434682 7.6858415 -1075.3251 -1067.6392 + 30150 3.015 0.076457434 1115.5285 232.85496 -13.455727 7.4946177 -1075.1338 -1067.6392 + 30200 3.02 0.076457399 1103.9994 229.6959 -13.474938 7.392941 -1075.0322 -1067.6392 + 30250 3.025 0.076457501 1101.6296 229.35272 -13.488841 7.3818953 -1075.0211 -1067.6392 + 30300 3.03 0.076457539 1112.6865 231.35224 -13.495096 7.4462514 -1075.0855 -1067.6392 + 30350 3.035 0.076457548 1123.796 235.35091 -13.499855 7.5749517 -1075.2142 -1067.6392 + 30400 3.04 0.076457611 1111.9754 240.67564 -13.509248 7.7463324 -1075.3856 -1067.6392 + 30450 3.045 0.076457553 1103.8338 246.28636 -13.523249 7.9269177 -1075.5661 -1067.6392 + 30500 3.05 0.076457568 1119.7372 251.34267 -13.540792 8.089659 -1075.7289 -1067.6392 + 30550 3.055 0.076457571 1132.1966 255.24219 -13.56046 8.2151678 -1075.8544 -1067.6392 + 30600 3.06 0.076457421 1124.379 257.49852 -13.581214 8.2877897 -1075.927 -1067.6392 + 30650 3.065 0.076457351 1122.0717 257.82611 -13.600369 8.2983334 -1075.9376 -1067.6392 + 30700 3.07 0.076457488 1124.7347 256.51074 -13.616001 8.2559974 -1075.8952 -1067.6392 + 30750 3.075 0.076457614 1114.8471 254.66368 -13.629361 8.1965481 -1075.8358 -1067.6392 + 30800 3.08 0.076457581 1094.5902 253.68827 -13.6371 8.1651537 -1075.8044 -1067.6392 + 30850 3.085 0.076457515 1073.605 254.18179 -13.626926 8.1810381 -1075.8203 -1067.6392 + 30900 3.09 0.076457524 1059.6001 255.86129 -13.596369 8.2350942 -1075.8743 -1067.6392 + 30950 3.095 0.0764576 1050.7385 258.54322 -13.569865 8.3214142 -1075.9606 -1067.6392 + 31000 3.1 0.076457649 1033.7103 262.19251 -13.574242 8.4388695 -1076.0781 -1067.6392 + 31050 3.105 0.076457659 1023.1274 265.66302 -13.599347 8.5505704 -1076.1898 -1067.6392 + 31100 3.11 0.076457746 1039.0568 267.03003 -13.620524 8.5945689 -1076.2338 -1067.6392 + 31150 3.115 0.076457898 1064.7448 265.17792 -13.632089 8.5349571 -1076.1742 -1067.6392 + 31200 3.12 0.076458052 1085.3299 260.61936 -13.639394 8.3882363 -1076.0275 -1067.6392 + 31250 3.125 0.076457928 1090.3799 255.5305 -13.653293 8.2244474 -1075.8637 -1067.6392 + 31300 3.13 0.076457763 1073.4364 252.27482 -13.679887 8.1196609 -1075.7589 -1067.6392 + 31350 3.135 0.076457843 1055.311 251.62684 -13.710258 8.098805 -1075.738 -1067.6392 + 31400 3.14 0.07645797 1050.9396 252.63775 -13.731468 8.131342 -1075.7706 -1067.6392 + 31450 3.145 0.076457995 1046.9287 253.93922 -13.744029 8.1732308 -1075.8125 -1067.6392 + 31500 3.15 0.076457929 1022.8429 255.08707 -13.767257 8.2101752 -1075.8494 -1067.6392 + 31550 3.155 0.076457813 1004.9865 255.64995 -13.801963 8.228292 -1075.8675 -1067.6392 + 31600 3.16 0.076457767 1012.0538 254.8658 -13.829447 8.2030536 -1075.8423 -1067.6392 + 31650 3.165 0.076457802 1018.5353 252.69011 -13.844282 8.1330274 -1075.7723 -1067.6392 + 31700 3.17 0.076457799 1017.5009 249.999 -13.85414 8.0464118 -1075.6856 -1067.6392 + 31750 3.175 0.076457841 1019.8774 248.32876 -13.869648 7.9926539 -1075.6319 -1067.6392 + 31800 3.18 0.076457886 1027.7011 249.00645 -13.900943 8.014466 -1075.6537 -1067.6392 + 31850 3.185 0.07645785 1032.5018 251.69035 -13.947711 8.1008491 -1075.7401 -1067.6392 + 31900 3.19 0.076457837 1045.2307 254.29935 -13.987581 8.1848219 -1075.8241 -1067.6392 + 31950 3.195 0.076457885 1056.0235 255.3938 -14.000115 8.2200476 -1075.8593 -1067.6392 + 32000 3.2 0.076457879 1063.1819 256.13783 -14.001498 8.2439948 -1075.8832 -1067.6392 + 32050 3.205 0.076457704 1063.2852 258.5764 -14.010496 8.3224822 -1075.9617 -1067.6392 + 32100 3.21 0.076457634 1060.1503 263.31955 -14.023472 8.4751441 -1076.1144 -1067.6392 + 32150 3.215 0.07645773 1082.1484 268.96215 -14.036792 8.6567557 -1076.296 -1067.6392 + 32200 3.22 0.076457724 1103.843 273.4235 -14.055183 8.8003475 -1076.4396 -1067.6392 + 32250 3.225 0.076457625 1120.0414 275.94618 -14.084096 8.8815421 -1076.5208 -1067.6392 + 32300 3.23 0.076457606 1136.3108 276.73679 -14.116774 8.9069885 -1076.5462 -1067.6392 + 32350 3.235 0.07645768 1140.5919 275.77159 -14.139186 8.8759228 -1076.5152 -1067.6392 + 32400 3.24 0.076457802 1142.314 273.10495 -14.154735 8.7900947 -1076.4293 -1067.6392 + 32450 3.245 0.076457801 1159.6999 269.05809 -14.173996 8.6598435 -1076.2991 -1067.6392 + 32500 3.25 0.076457663 1174.6995 264.30819 -14.195702 8.5069643 -1076.1462 -1067.6392 + 32550 3.255 0.07645754 1185.7335 260.56202 -14.220076 8.3863908 -1076.0256 -1067.6392 + 32600 3.26 0.07645745 1198.982 259.45314 -14.241025 8.3507006 -1075.9899 -1067.6392 + 32650 3.265 0.076457456 1199.5794 261.37319 -14.253149 8.4124991 -1076.0517 -1067.6392 + 32700 3.27 0.076457573 1179.3566 265.3589 -14.262294 8.540782 -1076.18 -1067.6392 + 32750 3.275 0.076457607 1165.0216 269.79834 -14.273699 8.683669 -1076.3229 -1067.6392 + 32800 3.28 0.076457614 1173.1315 273.40897 -14.289043 8.7998799 -1076.4391 -1067.6392 + 32850 3.285 0.076457555 1178.2206 274.57793 -14.299588 8.8375039 -1076.4767 -1067.6392 + 32900 3.29 0.076457497 1160.0236 271.50252 -14.294919 8.7385195 -1076.3778 -1067.6392 + 32950 3.295 0.076457473 1144.3971 264.301 -14.284674 8.5067327 -1076.146 -1067.6392 + 33000 3.3 0.076457442 1138.8725 255.31826 -14.284777 8.2176163 -1075.8568 -1067.6392 + 33050 3.305 0.076457458 1135.3747 247.47369 -14.298209 7.9651327 -1075.6044 -1067.6392 + 33100 3.31 0.07645749 1148.9774 242.6502 -14.315521 7.809885 -1075.4491 -1067.6392 + 33150 3.315 0.076457432 1189.6279 241.36912 -14.324008 7.7686525 -1075.4079 -1067.6392 + 33200 3.32 0.076457424 1218.5788 243.90794 -14.331626 7.8503665 -1075.4896 -1067.6392 + 33250 3.325 0.076457482 1226.0538 250.03113 -14.352941 8.0474459 -1075.6867 -1067.6392 + 33300 3.33 0.076457454 1217.2314 257.73002 -14.374194 8.2952407 -1075.9345 -1067.6392 + 33350 3.335 0.076457399 1179.6803 264.28604 -14.379749 8.5062513 -1076.1455 -1067.6392 + 33400 3.34 0.076457379 1147.4971 267.79867 -14.373039 8.6193079 -1076.2585 -1067.6392 + 33450 3.345 0.076457399 1124.9366 267.92167 -14.366464 8.6232668 -1076.2625 -1067.6392 + 33500 3.35 0.076457444 1092.1841 265.9319 -14.368822 8.5592245 -1076.1985 -1067.6392 + 33550 3.355 0.076457408 1060.5254 264.14114 -14.37771 8.5015877 -1076.1408 -1067.6392 + 33600 3.36 0.07645736 1052.8302 265.02822 -14.389997 8.5301389 -1076.1694 -1067.6392 + 33650 3.365 0.076457327 1071.8382 269.77669 -14.410837 8.6829721 -1076.3222 -1067.6392 + 33700 3.37 0.076457378 1077.2229 277.22693 -14.442017 8.9227639 -1076.562 -1067.6392 + 33750 3.375 0.076457477 1071.9501 284.74963 -14.478049 9.1648879 -1076.8041 -1067.6392 + 33800 3.38 0.076457559 1090.056 289.50132 -14.506085 9.3178246 -1076.9571 -1067.6392 + 33850 3.385 0.076457575 1101.8505 289.82737 -14.514725 9.328319 -1076.9676 -1067.6392 + 33900 3.39 0.076457503 1091.3063 286.53466 -14.509436 9.2223404 -1076.8616 -1067.6392 + 33950 3.395 0.076457435 1087.1463 282.13005 -14.507235 9.0805746 -1076.7198 -1067.6392 + 34000 3.4 0.076457382 1079.0451 278.26682 -14.510716 8.9562337 -1076.5955 -1067.6392 + 34050 3.405 0.076457431 1073.4079 274.56089 -14.506574 8.8369554 -1076.4762 -1067.6392 + 34100 3.41 0.076457549 1080.3626 270.2225 -14.496075 8.6973209 -1076.3366 -1067.6392 + 34150 3.415 0.076457614 1081.8942 265.22981 -14.489633 8.5366274 -1076.1759 -1067.6392 + 34200 3.42 0.076457554 1102.3586 260.17866 -14.492136 8.3740522 -1076.0133 -1067.6392 + 34250 3.425 0.076457464 1141.421 255.94089 -14.50297 8.2376562 -1075.8769 -1067.6392 + 34300 3.43 0.076457528 1167.5346 253.78734 -14.520502 8.1683424 -1075.8076 -1067.6392 + 34350 3.435 0.076457597 1181.2246 255.29171 -14.550339 8.2167619 -1075.856 -1067.6392 + 34400 3.44 0.076457601 1162.4984 260.55233 -14.591365 8.386079 -1076.0253 -1067.6392 + 34450 3.445 0.076457485 1116.5653 267.61508 -14.63639 8.6133991 -1076.2526 -1067.6392 + 34500 3.45 0.07645735 1088.0554 273.74226 -14.675649 8.8106072 -1076.4498 -1067.6392 + 34550 3.455 0.076457477 1088.7296 277.3573 -14.702608 8.9269599 -1076.5662 -1067.6392 + 34600 3.46 0.076457673 1090.2675 279.19132 -14.732125 8.9859893 -1076.6252 -1067.6392 + 34650 3.465 0.07645765 1100.9294 280.27784 -14.77937 9.0209599 -1076.6602 -1067.6392 + 34700 3.47 0.076457569 1122.6353 279.51649 -14.824493 8.9964553 -1076.6357 -1067.6392 + 34750 3.475 0.076457534 1143.7477 275.73199 -14.844911 8.874648 -1076.5139 -1067.6392 + 34800 3.48 0.076457556 1165.0387 270.72066 -14.849166 8.7133545 -1076.3526 -1067.6392 + 34850 3.485 0.076457595 1162.8441 267.90858 -14.858627 8.6228456 -1076.2621 -1067.6392 + 34900 3.49 0.076457625 1139.7512 268.63619 -14.881699 8.6462643 -1076.2855 -1067.6392 + 34950 3.495 0.076457625 1112.7165 270.83924 -14.900675 8.7171711 -1076.3564 -1067.6392 + 35000 3.5 0.076457606 1086.0982 271.68623 -14.896016 8.7444321 -1076.3837 -1067.6392 + 35050 3.505 0.076457591 1071.7971 270.42576 -14.87744 8.703863 -1076.3431 -1067.6392 + 35100 3.51 0.076457658 1060.0049 267.97932 -14.863646 8.6251225 -1076.2644 -1067.6392 + 35150 3.515 0.076457689 1048.4698 265.72769 -14.860477 8.5526519 -1076.1919 -1067.6392 + 35200 3.52 0.076457634 1056.5787 265.02751 -14.865903 8.530116 -1076.1693 -1067.6392 + 35250 3.525 0.076457566 1046.9055 266.33972 -14.87323 8.5723504 -1076.2116 -1067.6392 + 35300 3.53 0.076457569 1013.1592 269.06436 -14.877187 8.6600451 -1076.2993 -1067.6392 + 35350 3.535 0.076457656 997.2022 272.57564 -14.87974 8.7730585 -1076.4123 -1067.6392 + 35400 3.54 0.07645767 994.65584 277.00538 -14.890358 8.9156331 -1076.5549 -1067.6392 + 35450 3.545 0.076457529 1001.1164 282.19926 -14.906943 9.0828022 -1076.722 -1067.6392 + 35500 3.55 0.076457424 1005.5196 287.07965 -14.918939 9.2398813 -1076.8791 -1067.6392 + 35550 3.555 0.076457509 997.69944 290.53612 -14.933609 9.3511304 -1076.9904 -1067.6392 + 35600 3.56 0.076457585 987.73643 291.05935 -14.952689 9.367971 -1077.0072 -1067.6392 + 35650 3.565 0.076457527 979.49042 287.4359 -14.968978 9.2513476 -1076.8906 -1067.6392 + 35700 3.57 0.07645746 984.55099 280.23031 -14.982301 9.01943 -1076.6587 -1067.6392 + 35750 3.575 0.07645748 1007.1391 271.88244 -14.993121 8.7507474 -1076.39 -1067.6392 + 35800 3.58 0.076457584 1039.0252 265.93314 -15.003434 8.5592646 -1076.1985 -1067.6392 + 35850 3.585 0.076457694 1068.9559 264.36704 -15.012954 8.5088585 -1076.1481 -1067.6392 + 35900 3.59 0.076457572 1070.9201 265.93574 -15.011002 8.559348 -1076.1986 -1067.6392 + 35950 3.595 0.076457429 1036.7314 268.37032 -15.000108 8.637707 -1076.2769 -1067.6392 + 36000 3.6 0.076457451 992.35033 270.35259 -15.003655 8.7015079 -1076.3407 -1067.6392 + 36050 3.605 0.076457474 975.3892 271.29311 -15.025665 8.7317792 -1076.371 -1067.6392 + 36100 3.61 0.076457434 1003.1636 271.41843 -15.049959 8.7358129 -1076.375 -1067.6392 + 36150 3.615 0.076457412 1027.3457 271.65889 -15.065017 8.7435522 -1076.3828 -1067.6392 + 36200 3.62 0.076457466 1042.0311 273.28003 -15.081242 8.79573 -1076.435 -1067.6392 + 36250 3.625 0.076457508 1050.9908 276.54947 -15.107217 8.9009594 -1076.5402 -1067.6392 + 36300 3.63 0.076457539 1064.6932 280.62712 -15.141343 9.0322016 -1076.6714 -1067.6392 + 36350 3.635 0.076457488 1085.4466 284.55482 -15.179271 9.1586178 -1076.7979 -1067.6392 + 36400 3.64 0.07645739 1094.0882 287.6198 -15.211097 9.2572665 -1076.8965 -1067.6392 + 36450 3.645 0.076457389 1092.1647 289.93627 -15.238113 9.3318239 -1076.9711 -1067.6392 + 36500 3.65 0.076457492 1082.1176 292.06035 -15.270924 9.4001889 -1077.0394 -1067.6392 + 36550 3.655 0.07645746 1078.0108 293.66619 -15.302636 9.4518744 -1077.0911 -1067.6392 + 36600 3.66 0.076457339 1094.3091 293.79253 -15.317422 9.4559406 -1077.0952 -1067.6392 + 36650 3.665 0.076457274 1100.3857 292.13609 -15.32291 9.4026267 -1077.0419 -1067.6392 + 36700 3.67 0.0764573 1059.1813 288.62112 -15.334691 9.2894948 -1076.9287 -1067.6392 + 36750 3.675 0.076457376 1010.0955 283.16513 -15.348493 9.1138894 -1076.7531 -1067.6392 + 36800 3.68 0.07645743 1004.7965 277.87783 -15.360479 8.9437136 -1076.5829 -1067.6392 + 36850 3.685 0.076457375 1018.8309 276.50784 -15.379064 8.8996193 -1076.5388 -1067.6392 + 36900 3.69 0.076457369 1028.961 278.28003 -15.401946 8.9566587 -1076.5959 -1067.6392 + 36950 3.695 0.076457388 1023.5143 278.85362 -15.418664 8.9751201 -1076.6144 -1067.6392 + 37000 3.7 0.076457408 1012.265 276.41504 -15.427991 8.8966325 -1076.5359 -1067.6392 + 37050 3.705 0.076457493 990.96196 271.81651 -15.438424 8.7486254 -1076.3879 -1067.6392 + 37100 3.71 0.076457562 981.1712 266.91048 -15.456878 8.5907211 -1076.23 -1067.6392 + 37150 3.715 0.076457539 986.354 263.91762 -15.48189 8.4943933 -1076.1336 -1067.6392 + 37200 3.72 0.076457423 996.09368 264.87626 -15.509807 8.525248 -1076.1645 -1067.6392 + 37250 3.725 0.076457402 997.16422 270.68182 -15.53609 8.7121043 -1076.3513 -1067.6392 + 37300 3.73 0.076457531 991.56754 280.3235 -15.553199 9.0224294 -1076.6617 -1067.6392 + 37350 3.735 0.076457475 983.899 291.64399 -15.567246 9.3867882 -1077.026 -1067.6392 + 37400 3.74 0.076457375 957.07127 302.31861 -15.591292 9.7303592 -1077.3696 -1067.6392 + 37450 3.745 0.076457441 915.9148 310.31227 -15.627635 9.9876414 -1077.6269 -1067.6392 + 37500 3.75 0.076457477 897.56201 314.34798 -15.671163 10.117534 -1077.7568 -1067.6392 + 37550 3.755 0.076457431 903.88431 313.87044 -15.71386 10.102164 -1077.7414 -1067.6392 + 37600 3.76 0.076457491 917.28579 308.82801 -15.749285 9.9398693 -1077.5791 -1067.6392 + 37650 3.765 0.076457525 942.06017 299.66951 -15.772048 9.6450956 -1077.2843 -1067.6392 + 37700 3.77 0.076457445 961.28174 287.88151 -15.778198 9.2656899 -1076.9049 -1067.6392 + 37750 3.775 0.076457477 958.2021 276.39254 -15.772569 8.8959083 -1076.5351 -1067.6392 + 37800 3.78 0.076457557 948.94806 268.64513 -15.765698 8.6465521 -1076.2858 -1067.6392 + 37850 3.785 0.076457556 947.78704 266.8871 -15.766401 8.5899684 -1076.2292 -1067.6392 + 37900 3.79 0.076457558 962.37609 270.88487 -15.776472 8.7186398 -1076.3579 -1067.6392 + 37950 3.795 0.076457526 991.61874 278.53558 -15.795866 8.9648839 -1076.6041 -1067.6392 + 38000 3.8 0.076457499 1010.916 287.47978 -15.824326 9.25276 -1076.892 -1067.6392 + 38050 3.805 0.076457489 993.35135 295.7602 -15.862726 9.5192717 -1077.1585 -1067.6392 + 38100 3.81 0.076457546 989.74778 301.47541 -15.907632 9.70322 -1077.3425 -1067.6392 + 38150 3.815 0.07645761 993.3824 303.44671 -15.946558 9.7666679 -1077.4059 -1067.6392 + 38200 3.82 0.076457588 988.80567 302.40203 -15.977266 9.733044 -1077.3723 -1067.6392 + 38250 3.825 0.07645753 984.55282 300.11697 -16.011838 9.6594977 -1077.2987 -1067.6392 + 38300 3.83 0.076457562 983.37008 297.61678 -16.053812 9.5790269 -1077.2183 -1067.6392 + 38350 3.835 0.076457613 1000.3554 294.80409 -16.085202 9.4884983 -1077.1277 -1067.6392 + 38400 3.84 0.076457626 1033.4664 291.876 -16.096115 9.3942555 -1077.0335 -1067.6392 + 38450 3.845 0.076457661 1047.3368 290.07519 -16.110059 9.3362953 -1076.9755 -1067.6392 + 38500 3.85 0.076457655 1024.7937 289.82293 -16.139554 9.328176 -1076.9674 -1067.6392 + 38550 3.855 0.076457638 1017.4806 289.8687 -16.161946 9.3296489 -1076.9689 -1067.6392 + 38600 3.86 0.076457592 1039.5043 289.37833 -16.169892 9.3138662 -1076.9531 -1067.6392 + 38650 3.865 0.076457557 1063.9366 288.50085 -16.171467 9.2856238 -1076.9249 -1067.6392 + 38700 3.87 0.076457677 1070.449 287.9452 -16.169902 9.2677398 -1076.907 -1067.6392 + 38750 3.875 0.076457662 1052.016 288.41298 -16.166026 9.2827956 -1076.922 -1067.6392 + 38800 3.88 0.076457605 1032.1006 289.76121 -16.162583 9.3261896 -1076.9654 -1067.6392 + 38850 3.885 0.076457712 1020.3335 291.3617 -16.16773 9.3777023 -1077.0169 -1067.6392 + 38900 3.89 0.076457683 1015.7433 292.68938 -16.184231 9.4204347 -1077.0597 -1067.6392 + 38950 3.895 0.076457564 1027.8269 293.63898 -16.21584 9.4509986 -1077.0902 -1067.6392 + 39000 3.9 0.076457619 1038.6319 293.97207 -16.254979 9.4617194 -1077.101 -1067.6392 + 39050 3.905 0.076457705 1044.5679 293.885 -16.278531 9.4589168 -1077.0981 -1067.6392 + 39100 3.91 0.076457709 1046.1788 295.0006 -16.27343 9.4948231 -1077.1341 -1067.6392 + 39150 3.915 0.076457649 1023.8873 298.98535 -16.251292 9.6230756 -1077.2623 -1067.6392 + 39200 3.92 0.076457633 1000.8332 305.48222 -16.233015 9.8321825 -1077.4714 -1067.6392 + 39250 3.925 0.07645756 988.14502 312.10448 -16.230005 10.045325 -1077.6846 -1067.6392 + 39300 3.93 0.076457575 997.35073 315.81405 -16.238203 10.16472 -1077.804 -1067.6392 + 39350 3.935 0.076457677 1028.5818 314.19089 -16.240391 10.112478 -1077.7517 -1067.6392 + 39400 3.94 0.076457714 1045.4201 306.98031 -16.22979 9.8803995 -1077.5196 -1067.6392 + 39450 3.945 0.076457711 1044.1918 297.96176 -16.221111 9.5901304 -1077.2294 -1067.6392 + 39500 3.95 0.076457669 1031.5483 292.5692 -16.214559 9.4165666 -1077.0558 -1067.6392 + 39550 3.955 0.07645756 1025.8724 290.92753 -16.201804 9.3637283 -1077.003 -1067.6392 + 39600 3.96 0.076457551 1043.0568 290.57097 -16.194891 9.3522522 -1076.9915 -1067.6392 + 39650 3.965 0.076457568 1064.0457 291.54866 -16.212818 9.3837199 -1077.0229 -1067.6392 + 39700 3.97 0.076457614 1074.2493 294.08039 -16.259022 9.4652057 -1077.1044 -1067.6392 + 39750 3.975 0.076457622 1045.9401 296.58886 -16.307783 9.5459427 -1077.1852 -1067.6392 + 39800 3.98 0.076457589 1003.4409 297.25507 -16.339872 9.5673852 -1077.2066 -1067.6392 + 39850 3.985 0.076457612 993.64485 295.77116 -16.361298 9.5196243 -1077.1589 -1067.6392 + 39900 3.99 0.076457712 1006.0484 293.1885 -16.376761 9.4364994 -1077.0757 -1067.6392 + 39950 3.995 0.076457679 991.57157 290.9198 -16.379302 9.3634795 -1077.0027 -1067.6392 + 40000 4 0.076457582 964.36543 290.23473 -16.367849 9.3414299 -1076.9807 -1067.6392 + 40050 4.005 0.076457559 954.79409 292.02726 -16.354715 9.3991239 -1077.0384 -1067.6392 + 40100 4.01 0.076457588 961.79789 296.03902 -16.354183 9.5282455 -1077.1675 -1067.6392 + 40150 4.015 0.0764576 986.86742 299.96659 -16.365093 9.6546575 -1077.2939 -1067.6392 + 40200 4.02 0.076457589 994.14866 300.89633 -16.372591 9.6845819 -1077.3238 -1067.6392 + 40250 4.025 0.076457645 996.14585 298.37892 -16.367541 9.6035572 -1077.2428 -1067.6392 + 40300 4.03 0.076457675 1009.035 295.25357 -16.358503 9.5029652 -1077.1422 -1067.6392 + 40350 4.035 0.076457598 1014.8105 294.51698 -16.354826 9.4792575 -1077.1185 -1067.6392 + 40400 4.04 0.076457586 1029.6311 295.9285 -16.358567 9.5246883 -1077.1639 -1067.6392 + 40450 4.045 0.076457599 1038.8165 296.70455 -16.37191 9.5496663 -1077.1889 -1067.6392 + 40500 4.05 0.076457523 1019.8005 294.96456 -16.392342 9.4936634 -1077.1329 -1067.6392 + 40550 4.055 0.076457428 1023.4475 291.60684 -16.41267 9.3855926 -1077.0248 -1067.6392 + 40600 4.06 0.076457444 1057.8107 289.35106 -16.430176 9.3129884 -1076.9522 -1067.6392 + 40650 4.065 0.076457557 1057.6424 290.01367 -16.442565 9.3343151 -1076.9735 -1067.6392 + 40700 4.07 0.076457689 1032.0152 293.01599 -16.440441 9.430947 -1077.0702 -1067.6392 + 40750 4.075 0.076457733 1027.6923 297.33249 -16.429161 9.5698769 -1077.2091 -1067.6392 + 40800 4.08 0.076457683 1049.2581 302.71656 -16.425908 9.7431675 -1077.3824 -1067.6392 + 40850 4.085 0.076457676 1062.7046 309.06748 -16.434404 9.9475769 -1077.5868 -1067.6392 + 40900 4.09 0.076457757 1056.9788 316.0858 -16.451775 10.173467 -1077.8127 -1067.6392 + 40950 4.095 0.076457774 1073.6105 322.63471 -16.485634 10.384248 -1078.0235 -1067.6392 + 41000 4.1 0.076457723 1102.1708 326.00311 -16.532097 10.492663 -1078.1319 -1067.6392 + 41050 4.105 0.076457742 1135.7358 323.78206 -16.572384 10.421177 -1078.0604 -1067.6392 + 41100 4.11 0.076457839 1150.9624 315.72207 -16.586201 10.16176 -1077.801 -1067.6392 + 41150 4.115 0.0764579 1133.6801 304.50129 -16.576495 9.8006105 -1077.4398 -1067.6392 + 41200 4.12 0.076457874 1106.7713 294.55355 -16.562247 9.4804346 -1077.1197 -1067.6392 + 41250 4.125 0.076457816 1077.861 288.97154 -16.546794 9.3007733 -1076.94 -1067.6392 + 41300 4.13 0.076457775 1049.8951 288.68305 -16.541043 9.2914881 -1076.9307 -1067.6392 + 41350 4.135 0.076457789 1040.6446 293.17749 -16.568222 9.4361451 -1077.0754 -1067.6392 + 41400 4.14 0.076457796 1062.3287 300.13752 -16.620751 9.660159 -1077.2994 -1067.6392 + 41450 4.145 0.076457888 1076.5853 306.09407 -16.668767 9.8518751 -1077.4911 -1067.6392 + 41500 4.15 0.076457877 1065.2199 308.61394 -16.698067 9.9329793 -1077.5722 -1067.6392 + 41550 4.155 0.076457852 1068.7881 308.03917 -16.719828 9.9144797 -1077.5537 -1067.6392 + 41600 4.16 0.07645779 1068.4578 306.44808 -16.737367 9.8632693 -1077.5025 -1067.6392 + 41650 4.165 0.076457748 1034.0147 305.80908 -16.739572 9.8427024 -1077.4819 -1067.6392 + 41700 4.17 0.076457762 999.13334 306.91055 -16.733356 9.8781543 -1077.5174 -1067.6392 + 41750 4.175 0.076457738 1002.966 308.67217 -16.740815 9.9348535 -1077.5741 -1067.6392 + 41800 4.18 0.076457662 1026.9401 309.28404 -16.76882 9.9545468 -1077.5938 -1067.6392 + 41850 4.185 0.076457785 1048.1545 308.26721 -16.803047 9.9218192 -1077.5611 -1067.6392 + 41900 4.19 0.076457896 1061.9672 306.79451 -16.828056 9.8744195 -1077.5136 -1067.6392 + 41950 4.195 0.076457788 1063.3452 305.81438 -16.838103 9.8428732 -1077.4821 -1067.6392 + 42000 4.2 0.076457653 1066.6376 305.00511 -16.838688 9.8168263 -1077.4561 -1067.6392 + 42050 4.205 0.076457619 1066.8981 303.458 -16.842064 9.7670311 -1077.4063 -1067.6392 + 42100 4.21 0.076457741 1057.308 300.62005 -16.861587 9.6756897 -1077.3149 -1067.6392 + 42150 4.215 0.076457798 1034.8812 296.98868 -16.899542 9.5588112 -1077.198 -1067.6392 + 42200 4.22 0.076457741 1006.9297 294.0721 -16.935797 9.4649389 -1077.1042 -1067.6392 + 42250 4.225 0.076457708 986.75051 293.0943 -16.947693 9.4334674 -1077.0727 -1067.6392 + 42300 4.23 0.076457808 969.75426 294.20406 -16.945858 9.4691862 -1077.1084 -1067.6392 + 42350 4.235 0.076457868 963.74596 296.59463 -16.946926 9.5461283 -1077.1854 -1067.6392 + 42400 4.24 0.076457778 979.44368 299.96439 -16.956659 9.6545866 -1077.2938 -1067.6392 + 42450 4.245 0.076457791 984.2135 304.59299 -16.974496 9.8035617 -1077.4428 -1067.6392 + 42500 4.25 0.076457854 979.70863 310.10222 -16.997517 9.9808808 -1077.6201 -1067.6392 + 42550 4.255 0.076457845 963.18828 315.17089 -17.018507 10.14402 -1077.7833 -1067.6392 + 42600 4.26 0.07645772 924.95483 318.99173 -17.029395 10.266996 -1077.9062 -1067.6392 + 42650 4.265 0.076457639 917.86112 322.34212 -17.035941 10.374831 -1078.0141 -1067.6392 + 42700 4.27 0.07645774 944.82028 325.38302 -17.047468 10.472705 -1078.1119 -1067.6392 + 42750 4.275 0.076457938 960.10214 326.61344 -17.067033 10.512307 -1078.1515 -1067.6392 + 42800 4.28 0.076458022 972.52239 325.00876 -17.091275 10.460659 -1078.0999 -1067.6392 + 42850 4.285 0.076458002 992.87865 320.17152 -17.108075 10.304969 -1077.9442 -1067.6392 + 42900 4.29 0.076457841 1006.327 311.59438 -17.103583 10.028907 -1077.6681 -1067.6392 + 42950 4.295 0.076457788 1002.2455 300.38593 -17.078254 9.6681543 -1077.3074 -1067.6392 + 43000 4.3 0.076457862 996.17457 290.24794 -17.044976 9.3418551 -1076.9811 -1067.6392 + 43050 4.305 0.076457877 1000.9547 285.54988 -17.01983 9.1906446 -1076.8299 -1067.6392 + 43100 4.31 0.076457942 988.65155 288.59122 -17.015533 9.2885325 -1076.9278 -1067.6392 + 43150 4.315 0.076457999 972.41145 298.32202 -17.033256 9.6017256 -1077.241 -1067.6392 + 43200 4.32 0.076458028 948.97512 311.09248 -17.065815 10.012753 -1077.652 -1067.6392 + 43250 4.325 0.076457935 916.82485 322.42515 -17.093329 10.377504 -1078.0167 -1067.6392 + 43300 4.33 0.076457873 899.77572 329.85568 -17.106846 10.616661 -1078.2559 -1067.6392 + 43350 4.335 0.076457929 878.86717 333.35452 -17.115682 10.729274 -1078.3685 -1067.6392 + 43400 4.34 0.076457966 874.70786 333.18911 -17.121427 10.72395 -1078.3632 -1067.6392 + 43450 4.345 0.076458006 891.26384 329.38375 -17.117357 10.601472 -1078.2407 -1067.6392 + 43500 4.35 0.076458001 898.35186 322.8122 -17.107186 10.389961 -1078.0292 -1067.6392 + 43550 4.355 0.076458013 901.74597 315.36342 -17.103127 10.150216 -1077.7894 -1067.6392 + 43600 4.36 0.076458088 926.67246 308.8075 -17.112922 9.9392091 -1077.5784 -1067.6392 + 43650 4.365 0.076458104 960.6166 303.94548 -17.140357 9.7827213 -1077.422 -1067.6392 + 43700 4.37 0.076458063 975.11769 300.59062 -17.177028 9.6747425 -1077.314 -1067.6392 + 43750 4.375 0.076458054 968.24523 298.47066 -17.207996 9.60651 -1077.2457 -1067.6392 + 43800 4.38 0.076458041 964.14007 298.09373 -17.232401 9.5943781 -1077.2336 -1067.6392 + 43850 4.385 0.076457954 965.79688 300.53579 -17.264344 9.6729776 -1077.3122 -1067.6392 + 43900 4.39 0.076457854 955.96603 305.88479 -17.306956 9.8451395 -1077.4844 -1067.6392 + 43950 4.395 0.076457896 941.12525 312.31823 -17.341534 10.052205 -1077.6914 -1067.6392 + 44000 4.4 0.076457859 938.67889 317.5795 -17.360921 10.221543 -1077.8608 -1067.6392 + 44050 4.405 0.076457719 947.63231 320.31294 -17.381896 10.309521 -1077.9488 -1067.6392 + 44100 4.41 0.076457755 969.34037 320.05455 -17.418322 10.301204 -1077.9404 -1067.6392 + 44150 4.415 0.076457877 994.80806 316.92978 -17.455307 10.200631 -1077.8399 -1067.6392 + 44200 4.42 0.076457883 994.27896 312.50804 -17.485343 10.058314 -1077.6975 -1067.6392 + 44250 4.425 0.076457773 973.05564 308.95598 -17.522396 9.943988 -1077.5832 -1067.6392 + 44300 4.43 0.076457724 951.78988 307.21327 -17.563966 9.8878976 -1077.5271 -1067.6392 + 44350 4.435 0.076457759 928.72012 308.03041 -17.602557 9.9141978 -1077.5534 -1067.6392 + 44400 4.44 0.076457834 916.44987 311.99524 -17.635148 10.041809 -1077.681 -1067.6392 + 44450 4.445 0.076457893 928.75804 317.70608 -17.652296 10.225617 -1077.8648 -1067.6392 + 44500 4.45 0.076457885 943.60516 322.59137 -17.661113 10.382853 -1078.0221 -1067.6392 + 44550 4.455 0.076457906 945.49994 325.00133 -17.680273 10.46042 -1078.0997 -1067.6392 + 44600 4.46 0.076457941 952.36178 325.6626 -17.717875 10.481703 -1078.1209 -1067.6392 + 44650 4.465 0.076457852 940.32266 326.47902 -17.757759 10.507981 -1078.1472 -1067.6392 + 44700 4.47 0.076457689 897.56364 327.57886 -17.783166 10.54338 -1078.1826 -1067.6392 + 44750 4.475 0.076457713 857.39373 327.4808 -17.804428 10.540224 -1078.1795 -1067.6392 + 44800 4.48 0.07645791 851.17923 325.52967 -17.833839 10.477425 -1078.1167 -1067.6392 + 44850 4.485 0.076458019 869.19875 322.22447 -17.859584 10.371045 -1078.0103 -1067.6392 + 44900 4.49 0.076457959 892.97974 318.64189 -17.864667 10.255737 -1077.895 -1067.6392 + 44950 4.495 0.076457921 899.76829 316.57454 -17.858322 10.189197 -1077.8284 -1067.6392 + 45000 4.5 0.07645794 879.79667 318.12269 -17.875334 10.239026 -1077.8783 -1067.6392 + 45050 4.505 0.076457864 861.6753 323.54624 -17.930753 10.413587 -1078.0528 -1067.6392 + 45100 4.51 0.076457773 868.31935 329.69269 -17.990903 10.611415 -1078.2506 -1067.6392 + 45150 4.515 0.076457818 892.5502 332.57348 -18.015322 10.704136 -1078.3434 -1067.6392 + 45200 4.52 0.076457979 934.55633 331.51408 -18.006044 10.670038 -1078.3093 -1067.6392 + 45250 4.525 0.076457934 969.26205 329.02929 -17.994029 10.590063 -1078.2293 -1067.6392 + 45300 4.53 0.076457821 986.82839 326.98424 -17.994973 10.524241 -1078.1635 -1067.6392 + 45350 4.535 0.076457878 969.0246 325.50185 -18.001111 10.47653 -1078.1158 -1067.6392 + 45400 4.54 0.076458012 949.66785 324.76289 -18.004536 10.452746 -1078.092 -1067.6392 + 45450 4.545 0.076457931 934.25079 325.87047 -18.014727 10.488394 -1078.1276 -1067.6392 + 45500 4.55 0.076457855 926.68239 328.82491 -18.026773 10.583485 -1078.2227 -1067.6392 + 45550 4.555 0.076457796 929.74295 331.7329 -18.027681 10.677081 -1078.3163 -1067.6392 + 45600 4.56 0.076457858 934.2471 332.34645 -18.020161 10.696829 -1078.3361 -1067.6392 + 45650 4.565 0.076457947 919.70747 330.09857 -18.007458 10.624479 -1078.2637 -1067.6392 + 45700 4.57 0.076457972 912.95486 326.17283 -17.995078 10.498126 -1078.1374 -1067.6392 + 45750 4.575 0.076457896 941.11127 321.60716 -17.994665 10.351176 -1077.9904 -1067.6392 + 45800 4.58 0.076457862 966.79612 317.78513 -18.009696 10.228161 -1077.8674 -1067.6392 + 45850 4.585 0.076457935 944.28578 315.85752 -18.027571 10.16612 -1077.8053 -1067.6392 + 45900 4.59 0.076458044 901.04422 316.68004 -18.043848 10.192593 -1077.8318 -1067.6392 + 45950 4.595 0.076458007 879.51756 320.93625 -18.067698 10.329582 -1077.9688 -1067.6392 + 46000 4.6 0.076457964 872.83739 327.90148 -18.094801 10.553764 -1078.193 -1067.6392 + 46050 4.605 0.076457967 876.29409 335.50363 -18.112035 10.798445 -1078.4377 -1067.6392 + 46100 4.61 0.076457881 897.82101 341.25719 -18.123994 10.983628 -1078.6229 -1067.6392 + 46150 4.615 0.076457848 917.72011 342.09311 -18.135768 11.010532 -1078.6498 -1067.6392 + 46200 4.62 0.076457904 935.79066 336.81461 -18.142721 10.84064 -1078.4799 -1067.6392 + 46250 4.625 0.07645791 958.856 329.24209 -18.153564 10.596912 -1078.2361 -1067.6392 + 46300 4.63 0.076457941 976.84674 323.74284 -18.177828 10.419914 -1078.0591 -1067.6392 + 46350 4.635 0.076457974 986.64452 321.53234 -18.208728 10.348768 -1077.988 -1067.6392 + 46400 4.64 0.076457862 996.7259 323.14828 -18.22492 10.400778 -1078.04 -1067.6392 + 46450 4.645 0.076457805 1006.0233 328.59085 -18.21408 10.575952 -1078.2152 -1067.6392 + 46500 4.65 0.076457941 1004.0925 335.85497 -18.186199 10.809753 -1078.449 -1067.6392 + 46550 4.655 0.076457976 986.50596 341.77518 -18.164044 11.0003 -1078.6395 -1067.6392 + 46600 4.66 0.076457959 977.94506 343.98758 -18.166618 11.071507 -1078.7107 -1067.6392 + 46650 4.665 0.07645792 979.65854 341.91053 -18.193889 11.004656 -1078.6439 -1067.6392 + 46700 4.67 0.07645783 995.8469 337.32643 -18.237006 10.857113 -1078.4963 -1067.6392 + 46750 4.675 0.076457742 996.88168 332.71719 -18.282271 10.708761 -1078.348 -1067.6392 + 46800 4.68 0.076457785 982.69373 328.43469 -18.306019 10.570925 -1078.2102 -1067.6392 + 46850 4.685 0.076457823 978.36015 323.5801 -18.306181 10.414677 -1078.0539 -1067.6392 + 46900 4.69 0.076457791 962.75325 318.03098 -18.3112 10.236074 -1077.8753 -1067.6392 + 46950 4.695 0.076457771 943.72644 312.62711 -18.333493 10.062146 -1077.7014 -1067.6392 + 47000 4.7 0.076457655 933.06364 309.79024 -18.359925 9.9708393 -1077.6101 -1067.6392 + 47050 4.705 0.076457527 923.63321 312.99794 -18.385002 10.074082 -1077.7133 -1067.6392 + 47100 4.71 0.076457491 918.61147 323.5351 -18.420653 10.413228 -1078.0525 -1067.6392 + 47150 4.715 0.076457637 920.24413 338.17027 -18.464512 10.884273 -1078.5235 -1067.6392 + 47200 4.72 0.076457729 914.26076 351.25395 -18.491106 11.305381 -1078.9446 -1067.6392 + 47250 4.725 0.07645769 894.45791 358.77754 -18.490423 11.547534 -1079.1868 -1067.6392 + 47300 4.73 0.076457673 866.24513 359.47999 -18.476062 11.570142 -1079.2094 -1067.6392 + 47350 4.735 0.076457644 850.87063 353.65236 -18.459228 11.382576 -1079.0218 -1067.6392 + 47400 4.74 0.07645765 861.60254 342.84162 -18.444647 11.034624 -1078.6739 -1067.6392 + 47450 4.745 0.076457629 868.52502 329.8691 -18.432312 10.617093 -1078.2563 -1067.6392 + 47500 4.75 0.076457475 874.96863 318.16288 -18.423034 10.240319 -1077.8795 -1067.6392 + 47550 4.755 0.076457461 893.70831 310.61468 -18.425459 9.9973745 -1077.6366 -1067.6392 + 47600 4.76 0.076457507 898.58686 308.29041 -18.437291 9.9225663 -1077.5618 -1067.6392 + 47650 4.765 0.076457495 906.98902 310.84197 -18.447354 10.00469 -1077.6439 -1067.6392 + 47700 4.77 0.076457476 917.08363 317.51731 -18.453233 10.219541 -1077.8588 -1067.6392 + 47750 4.775 0.07645741 913.18684 326.63525 -18.458615 10.513009 -1078.1522 -1067.6392 + 47800 4.78 0.076457341 914.30453 335.22798 -18.466228 10.789573 -1078.4288 -1067.6392 + 47850 4.785 0.076457324 930.54553 340.64884 -18.477564 10.964047 -1078.6033 -1067.6392 + 47900 4.79 0.076457362 944.82928 342.0923 -18.497904 11.010506 -1078.6497 -1067.6392 + 47950 4.795 0.076457403 948.97835 339.9758 -18.525445 10.942385 -1078.5816 -1067.6392 + 48000 4.8 0.076457478 949.55048 335.14347 -18.544304 10.786853 -1078.4261 -1067.6392 + 48050 4.805 0.076457492 934.49484 329.4616 -18.547259 10.603977 -1078.2432 -1067.6392 + 48100 4.81 0.076457483 906.2488 325.50663 -18.537762 10.476683 -1078.1159 -1067.6392 + 48150 4.815 0.076457537 907.61196 324.83016 -18.527959 10.454911 -1078.0941 -1067.6392 + 48200 4.82 0.076457521 928.41301 327.05163 -18.532299 10.526411 -1078.1656 -1067.6392 + 48250 4.825 0.076457453 941.11541 331.5379 -18.558254 10.670805 -1078.31 -1067.6392 + 48300 4.83 0.07645744 943.62955 337.63093 -18.594136 10.866914 -1078.5061 -1067.6392 + 48350 4.835 0.076457431 950.73848 343.5387 -18.62029 11.05706 -1078.6963 -1067.6392 + 48400 4.84 0.076457508 977.05827 347.46226 -18.634634 11.183342 -1078.8226 -1067.6392 + 48450 4.845 0.076457572 985.51176 349.38288 -18.652405 11.245159 -1078.8844 -1067.6392 + 48500 4.85 0.0764575 966.51991 350.00883 -18.680976 11.265306 -1078.9045 -1067.6392 + 48550 4.855 0.076457449 952.81522 348.84984 -18.705088 11.228003 -1078.8672 -1067.6392 + 48600 4.86 0.07645757 956.4504 345.07299 -18.706134 11.106442 -1078.7457 -1067.6392 + 48650 4.865 0.076457648 962.27213 339.6091 -18.687227 10.930583 -1078.5698 -1067.6392 + 48700 4.87 0.076457531 951.28586 335.48047 -18.675207 10.797699 -1078.4369 -1067.6392 + 48750 4.875 0.076457622 939.27346 335.37698 -18.691822 10.794368 -1078.4336 -1067.6392 + 48800 4.88 0.07645763 929.93644 338.62392 -18.723472 10.898874 -1078.5381 -1067.6392 + 48850 4.885 0.07645746 927.0018 341.61788 -18.739309 10.995236 -1078.6345 -1067.6392 + 48900 4.89 0.076457454 933.2133 341.45716 -18.734537 10.990064 -1078.6293 -1067.6392 + 48950 4.895 0.076457525 927.17347 338.03446 -18.732333 10.879901 -1078.5191 -1067.6392 + 49000 4.9 0.076457565 934.00454 333.29208 -18.749493 10.727264 -1078.3665 -1067.6392 + 49050 4.905 0.076457546 946.42674 329.88244 -18.783172 10.617522 -1078.2568 -1067.6392 + 49100 4.91 0.076457456 953.85036 329.62056 -18.816988 10.609094 -1078.2483 -1067.6392 + 49150 4.915 0.076457497 981.62511 332.41677 -18.829947 10.699092 -1078.3383 -1067.6392 + 49200 4.92 0.076457502 1010.935 336.90702 -18.819016 10.843614 -1078.4828 -1067.6392 + 49250 4.925 0.076457418 1025.5157 341.57069 -18.807495 10.993718 -1078.6329 -1067.6392 + 49300 4.93 0.076457502 1027.8193 344.89678 -18.811783 11.100771 -1078.74 -1067.6392 + 49350 4.935 0.076457543 1020.505 345.48293 -18.816811 11.119636 -1078.7589 -1067.6392 + 49400 4.94 0.076457478 1016.2039 342.92093 -18.803277 11.037176 -1078.6764 -1067.6392 + 49450 4.945 0.07645749 1018.2955 337.76884 -18.778837 10.871352 -1078.5106 -1067.6392 + 49500 4.95 0.07645759 1012.1553 330.63853 -18.761954 10.641858 -1078.2811 -1067.6392 + 49550 4.955 0.076457651 985.5222 322.69351 -18.765732 10.386141 -1078.0254 -1067.6392 + 49600 4.96 0.076457607 966.22788 316.25074 -18.798665 10.178775 -1077.818 -1067.6392 + 49650 4.965 0.076457494 961.04675 313.18195 -18.839015 10.080004 -1077.7192 -1067.6392 + 49700 4.97 0.076457431 960.65868 314.4735 -18.863274 10.121574 -1077.7608 -1067.6392 + 49750 4.975 0.076457515 966.54445 320.68235 -18.880959 10.32141 -1077.9606 -1067.6392 + 49800 4.98 0.076457498 965.47876 331.30789 -18.90627 10.663401 -1078.3026 -1067.6392 + 49850 4.985 0.076457382 964.05595 343.93887 -18.938996 11.069939 -1078.7092 -1067.6392 + 49900 4.99 0.076457357 944.93024 354.89734 -18.970612 11.422646 -1079.0619 -1067.6392 + 49950 4.995 0.076457532 918.77322 361.48317 -18.987516 11.634616 -1079.2739 -1067.6392 + 50000 5 0.07645762 900.51128 363.08297 -18.994661 11.686107 -1079.3253 -1067.6392 +Loop time of 52.5523 on 4 procs for 50000 steps with 250 atoms + +Performance: 8.220 ns/day, 2.920 hours/ns, 951.434 timesteps/s +94.1% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 10.242 | 10.478 | 10.799 | 6.3 | 19.94 +Neigh | 0.10368 | 0.10776 | 0.11329 | 1.1 | 0.21 +Comm | 2.4492 | 2.7097 | 2.8852 | 11.0 | 5.16 +Output | 5.5737 | 5.9107 | 6.2742 | 11.8 | 11.25 +Modify | 32.833 | 33.256 | 33.661 | 5.2 | 63.28 +Other | | 0.09063 | | | 0.17 + +Nlocal: 62.5 ave 66 max 57 min +Histogram: 1 0 0 0 0 1 0 0 1 1 +Nghost: 772 ave 785 max 755 min +Histogram: 1 0 0 0 0 0 2 0 0 1 +Neighs: 1931 ave 2025 max 1751 min +Histogram: 1 0 0 0 0 0 1 0 0 2 +FullNghs: 3862 ave 4082 max 3518 min +Histogram: 1 0 0 0 0 1 0 0 1 1 + +Total # of neighbors = 15448 +Ave neighs/atom = 61.792 +Neighbor list builds = 614 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:52 diff --git a/examples/SPIN/nickel/Ni99.eam.alloy b/examples/SPIN/nickel/Ni99.eam.alloy new file mode 100644 index 0000000000000000000000000000000000000000..458f550462147985aebc64bee947ca587bcb2200 --- /dev/null +++ b/examples/SPIN/nickel/Ni99.eam.alloy @@ -0,0 +1,30006 @@ + Ni EAM from Phys. Rev. B 59, 3393 (1999) in the LAMMPS setfl format. + Conversion by C. A. Becker from Y. Mishin files. + 14 February 2009. http://www.ctcms.nist.gov/potentials + 1 Ni +10000 0.2000000000000000E-03 10000 0.5803750000000001E-03 0.5803750000000000E+01 + 28 0.5871000000E+02 0.3520000000E+01 fcc + -0.3097002992599740E-10 + -0.6727670264584218E-03 + -0.1347243064545615E-02 + -0.2023426205791608E-02 + -0.2701314510756404E-02 + -0.3380906040000000E-02 + -0.4062198854082398E-02 + -0.4745191013563596E-02 + -0.5429880579003596E-02 + -0.6116265610962398E-02 + -0.6804344169999999E-02 + -0.7494114316748643E-02 + -0.8185574112129526E-02 + -0.8878721617136087E-02 + -0.9573554892761765E-02 + -0.1027007200000000E-01 + -0.1096827099948303E-01 + -0.1166814995039830E-01 + -0.1236970691157206E-01 + -0.1307293994183054E-01 + -0.1377784710000000E-01 + -0.1448442644595924E-01 + -0.1519267604379728E-01 + -0.1590259395865570E-01 + -0.1661417825567608E-01 + -0.1732742700000000E-01 + -0.1804233825508002E-01 + -0.1875891007761259E-01 + -0.1947714052260515E-01 + -0.2019702764506515E-01 + -0.2091856950000000E-01 + -0.2164176414412070E-01 + -0.2236660964095237E-01 + -0.2309310405572369E-01 + -0.2382124545366335E-01 + -0.2455103190000000E-01 + -0.2528246145883719E-01 + -0.2601553218977792E-01 + -0.2675024215130006E-01 + -0.2748658940188147E-01 + -0.2822457200000000E-01 + -0.2896418800453053E-01 + -0.2970543547593594E-01 + -0.3044831247507606E-01 + -0.3119281706281080E-01 + -0.3193894730000000E-01 + -0.3268670124784067E-01 + -0.3343607696887835E-01 + -0.3418707252599569E-01 + -0.3493968598207534E-01 + -0.3569391540000000E-01 + -0.3644975884170676E-01 + -0.3720721436535066E-01 + -0.3796628002814116E-01 + -0.3872695388728778E-01 + -0.3948923400000001E-01 + -0.4025311842453228E-01 + -0.4101860522331904E-01 + -0.4178569245983965E-01 + -0.4255437819757351E-01 + -0.4332466050000000E-01 + -0.4409653742976412E-01 + -0.4487000704617322E-01 + -0.4564506740770026E-01 + -0.4642171657281820E-01 + -0.4719995259999999E-01 + -0.4797977354841125E-01 + -0.4876117747998810E-01 + -0.4954416245735933E-01 + -0.5032872654315370E-01 + -0.5111486780000000E-01 + -0.5190258429019084E-01 + -0.5269187407467433E-01 + -0.5348273521406237E-01 + -0.5427516576896696E-01 + -0.5506916380000001E-01 + -0.5586472736762538E-01 + -0.5666185453171461E-01 + -0.5746054335199116E-01 + -0.5826079188817847E-01 + -0.5906259819999999E-01 + -0.5986596034730766E-01 + -0.6067087639046727E-01 + -0.6147734438997301E-01 + -0.6228536240631919E-01 + -0.6309492849999999E-01 + -0.6390604073194393E-01 + -0.6471869716481633E-01 + -0.6553289586171678E-01 + -0.6634863488574481E-01 + -0.6716591230000001E-01 + -0.6798472616651658E-01 + -0.6880507454306740E-01 + -0.6962695548635994E-01 + -0.7045036705310162E-01 + -0.7127530729999999E-01 + -0.7210177428518970E-01 + -0.7292976607251402E-01 + -0.7375928072724351E-01 + -0.7459031631464868E-01 + -0.7542287089999999E-01 + -0.7625694254712466E-01 + -0.7709252931407646E-01 + -0.7792962925746595E-01 + -0.7876824043390363E-01 + -0.7960836090000000E-01 + -0.8044998871351170E-01 + -0.8129312193678011E-01 + -0.8213775863329264E-01 + -0.8298389686653678E-01 + -0.8383153470000002E-01 + -0.8468067019642851E-01 + -0.8553130141560315E-01 + -0.8638342641656356E-01 + -0.8723704325834930E-01 + -0.8809214999999998E-01 + -0.8894874470077433E-01 + -0.8980682542080732E-01 + -0.9066639022045317E-01 + -0.9152743716006601E-01 + -0.9238996430000000E-01 + -0.9325396970207423E-01 + -0.9411945143396757E-01 + -0.9498640756482377E-01 + -0.9585483616378665E-01 + -0.9672473530000001E-01 + -0.9759610303892876E-01 + -0.9846893743132247E-01 + -0.9934323652425178E-01 + -0.1002189983647874E+00 + -0.1010962210000000E+00 + -0.1019749024790107E+00 + -0.1028550408591426E+00 + -0.1037366341997692E+00 + -0.1046196805602638E+00 + -0.1055041780000000E+00 + -0.1063901245826283E+00 + -0.1072775183889071E+00 + -0.1081663575038717E+00 + -0.1090566400125575E+00 + -0.1099483640000000E+00 + -0.1108415275424761E+00 + -0.1117361286812292E+00 + -0.1126321654487442E+00 + -0.1135296358775062E+00 + -0.1144285380000000E+00 + -0.1153288698554673E+00 + -0.1162306295101762E+00 + -0.1171338150371514E+00 + -0.1180384245094178E+00 + -0.1189444560000000E+00 + -0.1198519075796547E+00 + -0.1207607773100661E+00 + -0.1216710632506501E+00 + -0.1225827634608227E+00 + -0.1234958760000000E+00 + -0.1244103989299138E+00 + -0.1253263303215595E+00 + -0.1262436682482483E+00 + -0.1271624107832914E+00 + -0.1280825560000000E+00 + -0.1290041019646900E+00 + -0.1299270467156959E+00 + -0.1308513882843568E+00 + -0.1317771247020118E+00 + -0.1327042540000000E+00 + -0.1336327742193260E+00 + -0.1345626834396567E+00 + -0.1354939797503245E+00 + -0.1364266612406614E+00 + -0.1373607260000000E+00 + -0.1382961721100057E+00 + -0.1392329976216770E+00 + -0.1401712005783454E+00 + -0.1411107790233426E+00 + -0.1420517310000000E+00 + -0.1429940545566510E+00 + -0.1439377477616352E+00 + -0.1448828086882939E+00 + -0.1458292354099684E+00 + -0.1467770260000000E+00 + -0.1477261785273903E+00 + -0.1486766910437822E+00 + -0.1496285615964790E+00 + -0.1505817882327838E+00 + -0.1515363690000000E+00 + -0.1524923019497878E+00 + -0.1534495851512360E+00 + -0.1544082166777901E+00 + -0.1553681946028962E+00 + -0.1563295170000000E+00 + -0.1572921819374586E+00 + -0.1582561874632742E+00 + -0.1592215316203605E+00 + -0.1601882124516313E+00 + -0.1611562280000000E+00 + -0.1621255763163781E+00 + -0.1630962554836676E+00 + -0.1640682635927679E+00 + -0.1650415987345788E+00 + -0.1660162590000000E+00 + -0.1669922424690290E+00 + -0.1679695471780558E+00 + -0.1689481711525680E+00 + -0.1699281124180534E+00 + -0.1709093690000000E+00 + -0.1718919389355058E+00 + -0.1728758203081095E+00 + -0.1738610112129604E+00 + -0.1748475097452076E+00 + -0.1758353140000000E+00 + -0.1768244220609480E+00 + -0.1778148319655062E+00 + -0.1788065417395904E+00 + -0.1797995494091165E+00 + -0.1807938530000000E+00 + -0.1817894505487023E+00 + -0.1827863401338657E+00 + -0.1837845198446779E+00 + -0.1847839877703268E+00 + -0.1857847420000000E+00 + -0.1867867806162429E+00 + -0.1877901016750312E+00 + -0.1887947032256979E+00 + -0.1898005833175765E+00 + -0.1908077400000000E+00 + -0.1918161713223261E+00 + -0.1928258753340099E+00 + -0.1938368500845305E+00 + -0.1948490936233674E+00 + -0.1958626040000000E+00 + -0.1968773792704526E+00 + -0.1978934175169296E+00 + -0.1989107168281803E+00 + -0.1999292752929539E+00 + -0.2009490910000000E+00 + -0.2019701620278634E+00 + -0.2029924864142719E+00 + -0.2040160621867486E+00 + -0.2050408873728169E+00 + -0.2060669600000000E+00 + -0.2070942781060936E+00 + -0.2081228397699829E+00 + -0.2091526430808254E+00 + -0.2101836861277786E+00 + -0.2112159670000000E+00 + -0.2122494837797621E+00 + -0.2132842345217966E+00 + -0.2143202172739500E+00 + -0.2153574300840689E+00 + -0.2163958710000000E+00 + -0.2174355380708581E+00 + -0.2184764293508309E+00 + -0.2195185428953748E+00 + -0.2205618767599458E+00 + -0.2216064290000000E+00 + -0.2226521976728057E+00 + -0.2236991808428797E+00 + -0.2247473765765509E+00 + -0.2257967829401480E+00 + -0.2268473980000000E+00 + -0.2278992198219190E+00 + -0.2289522464696501E+00 + -0.2300064760064217E+00 + -0.2310619064954622E+00 + -0.2321185360000000E+00 + -0.2331763625835183E+00 + -0.2342353843105199E+00 + -0.2352955992457623E+00 + -0.2363570054540031E+00 + -0.2374196010000000E+00 + -0.2384833839480078E+00 + -0.2395483523602704E+00 + -0.2406145042985292E+00 + -0.2416818378245253E+00 + -0.2427503510000000E+00 + -0.2438200418804506E+00 + -0.2448909084963985E+00 + -0.2459629488721211E+00 + -0.2470361610318958E+00 + -0.2481105430000000E+00 + -0.2491860928181898E+00 + -0.2502628085981357E+00 + -0.2513406884689866E+00 + -0.2524197305598917E+00 + -0.2534999330000000E+00 + -0.2545812938947902E+00 + -0.2556638112550589E+00 + -0.2567474830679327E+00 + -0.2578323073205376E+00 + -0.2589182820000000E+00 + -0.2600054051146495E+00 + -0.2610936747576285E+00 + -0.2621830890432828E+00 + -0.2632736460859581E+00 + -0.2643653440000000E+00 + -0.2654581808866119E+00 + -0.2665521547944270E+00 + -0.2676472637589362E+00 + -0.2687435058156303E+00 + -0.2698408790000000E+00 + -0.2709393813549029E+00 + -0.2720390109526633E+00 + -0.2731397658729723E+00 + -0.2742416441955208E+00 + -0.2753446440000001E+00 + -0.2764487633577766E+00 + -0.2775540003069199E+00 + -0.2786603528771749E+00 + -0.2797678190982865E+00 + -0.2808763970000000E+00 + -0.2819860846219910E+00 + -0.2830968800436575E+00 + -0.2842087813543286E+00 + -0.2853217866433332E+00 + -0.2864358940000000E+00 + -0.2875511015062599E+00 + -0.2886674072144504E+00 + -0.2897848091695110E+00 + -0.2909033054163811E+00 + -0.2920228940000000E+00 + -0.2931435729689697E+00 + -0.2942653403865410E+00 + -0.2953881943196275E+00 + -0.2965121328351427E+00 + -0.2976371540000000E+00 + -0.2987632558818618E+00 + -0.2998904365513857E+00 + -0.3010186940799789E+00 + -0.3021480265390481E+00 + -0.3032784320000000E+00 + -0.3044099085275836E+00 + -0.3055424541599161E+00 + -0.3066760669284569E+00 + -0.3078107448646650E+00 + -0.3089464860000000E+00 + -0.3100832883758039E+00 + -0.3112211500729498E+00 + -0.3123600691821938E+00 + -0.3135000437942919E+00 + -0.3146410720000000E+00 + -0.3157831518812009E+00 + -0.3169262814842847E+00 + -0.3180704588467680E+00 + -0.3192156820061674E+00 + -0.3203619490000000E+00 + -0.3215092578753922E+00 + -0.3226576067179112E+00 + -0.3238069936227342E+00 + -0.3249574166850380E+00 + -0.3261088740000000E+00 + -0.3272613636492300E+00 + -0.3284148836600702E+00 + -0.3295694320462954E+00 + -0.3307250068216803E+00 + -0.3318816060000000E+00 + -0.3330392276076874E+00 + -0.3341978697218079E+00 + -0.3353575304320846E+00 + -0.3365182078282408E+00 + -0.3376799000000000E+00 + -0.3388426050320200E+00 + -0.3400063209886981E+00 + -0.3411710459293662E+00 + -0.3423367779133562E+00 + -0.3435035150000001E+00 + -0.3446712552482323E+00 + -0.3458399967153993E+00 + -0.3470097374584502E+00 + -0.3481804755343341E+00 + -0.3493522090000001E+00 + -0.3505249359110509E+00 + -0.3516986543177048E+00 + -0.3528733622688330E+00 + -0.3540490578133076E+00 + -0.3552257390000000E+00 + -0.3564034038835642E+00 + -0.3575820505417822E+00 + -0.3587616770582179E+00 + -0.3599422815164359E+00 + -0.3611238620000000E+00 + -0.3623064165866925E+00 + -0.3634899433311671E+00 + -0.3646744402822954E+00 + -0.3658599054889491E+00 + -0.3670463370000000E+00 + -0.3682337328656660E+00 + -0.3694220911415499E+00 + -0.3706114098846007E+00 + -0.3718016871517678E+00 + -0.3729929210000000E+00 + -0.3741851094866437E+00 + -0.3753782506706337E+00 + -0.3765723426113018E+00 + -0.3777673833679800E+00 + -0.3789633710000000E+00 + -0.3801603035717592E+00 + -0.3813581791679154E+00 + -0.3825569958781921E+00 + -0.3837567517923126E+00 + -0.3849574450000000E+00 + -0.3861590735783198E+00 + -0.3873616355537047E+00 + -0.3885651289399299E+00 + -0.3897695517507700E+00 + -0.3909749020000000E+00 + -0.3921811777149620E+00 + -0.3933883769772658E+00 + -0.3945964978820887E+00 + -0.3958055385246077E+00 + -0.3970154970000000E+00 + -0.3982263713938326E+00 + -0.3994381597532322E+00 + -0.4006508601157155E+00 + -0.4018644705187992E+00 + -0.4030789890000000E+00 + -0.4042944136057078E+00 + -0.4055107424178054E+00 + -0.4067279735270493E+00 + -0.4079461050241954E+00 + -0.4091651350000000E+00 + -0.4103850615353364E+00 + -0.4116058826715460E+00 + -0.4128275964400875E+00 + -0.4140502008724193E+00 + -0.4152736940000001E+00 + -0.4164980738609467E+00 + -0.4177233385200106E+00 + -0.4189494860486010E+00 + -0.4201765145181276E+00 + -0.4214044220000000E+00 + -0.4226332065648767E+00 + -0.4238628662804119E+00 + -0.4250933992135089E+00 + -0.4263248034310704E+00 + -0.4275570770000000E+00 + -0.4287902179835463E+00 + -0.4300242244303417E+00 + -0.4312590943853637E+00 + -0.4324948258935907E+00 + -0.4337314170000001E+00 + -0.4349688657569378E+00 + -0.4362071702462213E+00 + -0.4374463285570359E+00 + -0.4386863387785671E+00 + -0.4399271990000001E+00 + -0.4411689073007027E+00 + -0.4424114617207733E+00 + -0.4436548602904925E+00 + -0.4448991010401412E+00 + -0.4461441820000001E+00 + -0.4473901012082516E+00 + -0.4486368567346858E+00 + -0.4498844466569941E+00 + -0.4511328690528684E+00 + -0.4523821220000000E+00 + -0.4536322035702910E+00 + -0.4548831118124838E+00 + -0.4561348447695311E+00 + -0.4573874004843857E+00 + -0.4586407770000000E+00 + -0.4598949723665846E+00 + -0.4611499846633793E+00 + -0.4624058119768816E+00 + -0.4636624523935894E+00 + -0.4649199040000000E+00 + -0.4661781648753710E+00 + -0.4674372330699995E+00 + -0.4686971066269424E+00 + -0.4699577835892569E+00 + -0.4712192620000001E+00 + -0.4724815399079317E+00 + -0.4737446153846232E+00 + -0.4750084865073490E+00 + -0.4762731513533832E+00 + -0.4775386080000000E+00 + -0.4788048545169025E+00 + -0.4800718889435077E+00 + -0.4813397093116620E+00 + -0.4826083136532107E+00 + -0.4838777000000000E+00 + -0.4851478663924586E+00 + -0.4864188109053456E+00 + -0.4876905316220035E+00 + -0.4889630266257743E+00 + -0.4902362940000000E+00 + -0.4915103318252636E+00 + -0.4927851381711098E+00 + -0.4940607111043243E+00 + -0.4953370486916925E+00 + -0.4966141490000000E+00 + -0.4978920100904873E+00 + -0.4991706300022152E+00 + -0.5004500067686994E+00 + -0.5017301384234557E+00 + -0.5030110230000000E+00 + -0.5042926585407873E+00 + -0.5055750431240295E+00 + -0.5068581748368781E+00 + -0.5081420517664846E+00 + -0.5094266720000000E+00 + -0.5107120336183639E+00 + -0.5119981346776670E+00 + -0.5132849732277881E+00 + -0.5145725473186062E+00 + -0.5158608550000000E+00 + -0.5171498943217574E+00 + -0.5184396633333028E+00 + -0.5197301600839696E+00 + -0.5210213826230908E+00 + -0.5223133290000001E+00 + -0.5236059972706064E+00 + -0.5248993855171219E+00 + -0.5261934918283342E+00 + -0.5274883142930310E+00 + -0.5287838510000000E+00 + -0.5300801000278169E+00 + -0.5313770594142096E+00 + -0.5326747271866940E+00 + -0.5339731013727853E+00 + -0.5352721799999999E+00 + -0.5365719611061256E+00 + -0.5378724427700394E+00 + -0.5391736230808903E+00 + -0.5404755001278274E+00 + -0.5417780720000001E+00 + -0.5430813367796803E+00 + -0.5443852925216328E+00 + -0.5456899372737452E+00 + -0.5469952690839051E+00 + -0.5483012860000001E+00 + -0.5496079860711535E+00 + -0.5509153673514299E+00 + -0.5522234278961297E+00 + -0.5535321657605530E+00 + -0.5548415790000001E+00 + -0.5561516656717062E+00 + -0.5574624238406480E+00 + -0.5587738515737366E+00 + -0.5600859469378835E+00 + -0.5613987080000000E+00 + -0.5627121328260215E+00 + -0.5640262194779782E+00 + -0.5653409660169241E+00 + -0.5666563705039134E+00 + -0.5679724310000001E+00 + -0.5692891455682080E+00 + -0.5706065122794398E+00 + -0.5719245292065675E+00 + -0.5732431944224635E+00 + -0.5745625060000000E+00 + -0.5758824620051469E+00 + -0.5772030604762635E+00 + -0.5785242994448065E+00 + -0.5798461769422331E+00 + -0.5811686910000001E+00 + -0.5824918396592048E+00 + -0.5838156209995070E+00 + -0.5851400331102068E+00 + -0.5864650740806045E+00 + -0.5877907420000001E+00 + -0.5891170349500342E+00 + -0.5904439509817088E+00 + -0.5917714881383663E+00 + -0.5930996444633494E+00 + -0.5944284180000000E+00 + -0.5957578067966589E+00 + -0.5970878089216580E+00 + -0.5984184224483279E+00 + -0.5997496454499984E+00 + -0.6010814760000000E+00 + -0.6024139121673305E+00 + -0.6037469520036590E+00 + -0.6050805935563223E+00 + -0.6064148348726569E+00 + -0.6077496740000000E+00 + -0.6090851089900191E+00 + -0.6104211379117058E+00 + -0.6117577588383832E+00 + -0.6130949698433737E+00 + -0.6144327690000000E+00 + -0.6157711543765933E+00 + -0.6171101240215174E+00 + -0.6184496759781450E+00 + -0.6197898082898484E+00 + -0.6211305190000001E+00 + -0.6224718061596080E+00 + -0.6238136678502244E+00 + -0.6251561021610367E+00 + -0.6264991071812326E+00 + -0.6278426809999999E+00 + -0.6291868216969746E+00 + -0.6305315273135852E+00 + -0.6318767958817084E+00 + -0.6332226254332211E+00 + -0.6345690140000000E+00 + -0.6359159596204932E+00 + -0.6372634603594346E+00 + -0.6386115142881295E+00 + -0.6399601194778828E+00 + -0.6413092740000002E+00 + -0.6426589759250525E+00 + -0.6440092233206763E+00 + -0.6453600142537739E+00 + -0.6467113467912476E+00 + -0.6480632190000001E+00 + -0.6494156289432972E+00 + -0.6507685746698606E+00 + -0.6521220542247753E+00 + -0.6534760656531268E+00 + -0.6548306070000001E+00 + -0.6561856763177588E+00 + -0.6575412716878816E+00 + -0.6588973911991247E+00 + -0.6602540329402453E+00 + -0.6616111950000001E+00 + -0.6629688754576675E+00 + -0.6643270723546135E+00 + -0.6656857837227258E+00 + -0.6670450075938922E+00 + -0.6684047420000000E+00 + -0.6697649849795714E+00 + -0.6711257345976645E+00 + -0.6724869889259720E+00 + -0.6738487460361863E+00 + -0.6752110040000000E+00 + -0.6765737608880472E+00 + -0.6779370147667287E+00 + -0.6793007637013865E+00 + -0.6806650057573627E+00 + -0.6820297390000000E+00 + -0.6833949614922398E+00 + -0.6847606712874212E+00 + -0.6861268664364828E+00 + -0.6874935449903628E+00 + -0.6888607049999999E+00 + -0.6902283445189937E+00 + -0.6915964616115868E+00 + -0.6929650543446830E+00 + -0.6943341207851860E+00 + -0.6957036590000000E+00 + -0.6970736670557854E+00 + -0.6984441430182319E+00 + -0.6998150849527855E+00 + -0.7011864909248926E+00 + -0.7025583590000000E+00 + -0.7039306872418645E+00 + -0.7053034737074859E+00 + -0.7066767164521751E+00 + -0.7080504135312430E+00 + -0.7094245630000000E+00 + -0.7107991629127569E+00 + -0.7121742113198247E+00 + -0.7135497062705136E+00 + -0.7149256458141352E+00 + -0.7163020280000000E+00 + -0.7176788508831081E+00 + -0.7190561125412160E+00 + -0.7204338110577700E+00 + -0.7218119445162160E+00 + -0.7231905110000000E+00 + -0.7245695085868111E+00 + -0.7259489353313116E+00 + -0.7273287892824062E+00 + -0.7287090684890006E+00 + -0.7300897710000001E+00 + -0.7314708948656477E+00 + -0.7328524381415384E+00 + -0.7342343988846052E+00 + -0.7356167751517814E+00 + -0.7369995650000000E+00 + -0.7383827664865987E+00 + -0.7397663776705354E+00 + -0.7411503966111726E+00 + -0.7425348213678734E+00 + -0.7439196500000000E+00 + -0.7453048805719576E+00 + -0.7466905111683202E+00 + -0.7480765398787038E+00 + -0.7494629647927250E+00 + -0.7508497840000000E+00 + -0.7522369955775710E+00 + -0.7536245975521841E+00 + -0.7550125879380119E+00 + -0.7564009647492265E+00 + -0.7577897260000000E+00 + -0.7591788697177586E+00 + -0.7605683939829429E+00 + -0.7619582968892482E+00 + -0.7633485765303690E+00 + -0.7647392310000000E+00 + -0.7661302583833949E+00 + -0.7675216567320434E+00 + -0.7689134240889947E+00 + -0.7703055584972973E+00 + -0.7716980580000000E+00 + -0.7730909206446619E+00 + -0.7744841444968825E+00 + -0.7758777276267725E+00 + -0.7772716681044416E+00 + -0.7786659640000000E+00 + -0.7800606133819580E+00 + -0.7814556143124260E+00 + -0.7828509648519153E+00 + -0.7842466630609364E+00 + -0.7856427070000001E+00 + -0.7870390947315067E+00 + -0.7884358243254132E+00 + -0.7898328938535667E+00 + -0.7912303013878134E+00 + -0.7926280449999999E+00 + -0.7940261227560155E+00 + -0.7954245326979206E+00 + -0.7968232728618178E+00 + -0.7982223412838099E+00 + -0.7996217359999999E+00 + -0.8010214550524303E+00 + -0.8024214965069037E+00 + -0.8038218584351618E+00 + -0.8052225389089466E+00 + -0.8066235360000000E+00 + -0.8080248477782618E+00 + -0.8094264723064637E+00 + -0.8108284076455345E+00 + -0.8122306518564036E+00 + -0.8136332030000002E+00 + -0.8150360591385216E+00 + -0.8164392183392408E+00 + -0.8178426786706995E+00 + -0.8192464382014389E+00 + -0.8206504950000003E+00 + -0.8220548471316521E+00 + -0.8234594926485730E+00 + -0.8248644295996678E+00 + -0.8262696560338418E+00 + -0.8276751700000002E+00 + -0.8290809695508703E+00 + -0.8304870527544678E+00 + -0.8318934176826303E+00 + -0.8333000624071952E+00 + -0.8347069850000002E+00 + -0.8361141835288670E+00 + -0.8375216560455561E+00 + -0.8389294005978119E+00 + -0.8403374152333784E+00 + -0.8417456980000001E+00 + -0.8431542469496616E+00 + -0.8445630601513075E+00 + -0.8459721356781229E+00 + -0.8473814716032921E+00 + -0.8487910660000001E+00 + -0.8502009169364870E+00 + -0.8516110224612138E+00 + -0.8530213806176974E+00 + -0.8544319894494540E+00 + -0.8558428470000001E+00 + -0.8572539513203912E+00 + -0.8586653004918377E+00 + -0.8600768926030884E+00 + -0.8614887257428929E+00 + -0.8629007979999999E+00 + -0.8643131074539486E+00 + -0.8657256521474361E+00 + -0.8671384301139492E+00 + -0.8685514393869751E+00 + -0.8699646780000000E+00 + -0.8713781439918144E+00 + -0.8727918354224183E+00 + -0.8742057503571152E+00 + -0.8756198868612080E+00 + -0.8770342430000000E+00 + -0.8784488168427943E+00 + -0.8798636064748912E+00 + -0.8812786099855911E+00 + -0.8826938254641942E+00 + -0.8841092510000001E+00 + -0.8855248846690088E+00 + -0.8869407244940174E+00 + -0.8883567684845213E+00 + -0.8897730146500166E+00 + -0.8911894609999999E+00 + -0.8926061055611703E+00 + -0.8940229464290399E+00 + -0.8954399817163244E+00 + -0.8968572095357391E+00 + -0.8982746280000001E+00 + -0.8996922352063102E+00 + -0.9011100291898234E+00 + -0.9025280079701819E+00 + -0.9039461695670267E+00 + -0.9053645120000001E+00 + -0.9067830333015895E+00 + -0.9082017315556666E+00 + -0.9096206048589492E+00 + -0.9110396513081543E+00 + -0.9124588690000000E+00 + -0.9138782560193320E+00 + -0.9152978104035102E+00 + -0.9167175301780222E+00 + -0.9181374133683560E+00 + -0.9195574580000001E+00 + -0.9209776621090821E+00 + -0.9223980237742929E+00 + -0.9238185410849622E+00 + -0.9252392121304212E+00 + -0.9266600350000001E+00 + -0.9280810077763395E+00 + -0.9295021285153192E+00 + -0.9309233952661293E+00 + -0.9323448060779594E+00 + -0.9337663590000000E+00 + -0.9351880520815607E+00 + -0.9366098833724312E+00 + -0.9380318509225212E+00 + -0.9394539527817409E+00 + -0.9408761869999999E+00 + -0.9422985516334183E+00 + -0.9437210447629564E+00 + -0.9451436644757854E+00 + -0.9465664088590764E+00 + -0.9479892760000000E+00 + -0.9494122639767667E+00 + -0.9508353708317435E+00 + -0.9522585945983368E+00 + -0.9536819333099535E+00 + -0.9551053849999999E+00 + -0.9565289477075154E+00 + -0.9579526194940703E+00 + -0.9593763984268671E+00 + -0.9608002825731095E+00 + -0.9622242699999999E+00 + -0.9636483587771716E+00 + -0.9650725469839758E+00 + -0.9664968327021942E+00 + -0.9679212140136084E+00 + -0.9693456890000000E+00 + -0.9707702557357985E+00 + -0.9721949122660268E+00 + -0.9736196566283557E+00 + -0.9750444868604564E+00 + -0.9764694010000000E+00 + -0.9778943970876346E+00 + -0.9793194731759174E+00 + -0.9807446273203826E+00 + -0.9821698575765655E+00 + -0.9835951620000000E+00 + -0.9850205386496635E+00 + -0.9864459855983039E+00 + -0.9878715009221130E+00 + -0.9892970826972814E+00 + -0.9907227290000000E+00 + -0.9921484379137118E+00 + -0.9935742075508660E+00 + -0.9950000360311647E+00 + -0.9964259214743089E+00 + -0.9978518619999999E+00 + -0.9992778556874898E+00 + -0.1000703900454231E+01 + -0.1002129994177228E+01 + -0.1003556134733483E+01 + -0.1004982320000000E+01 + -0.1006408547912330E+01 + -0.1007834816640209E+01 + -0.1009261124411924E+01 + -0.1010687469455760E+01 + -0.1012113850000000E+01 + -0.1013540264247193E+01 + -0.1014966710296932E+01 + -0.1016393186223075E+01 + -0.1017819690099479E+01 + -0.1019246220000000E+01 + -0.1020672773978901E+01 + -0.1022099350012064E+01 + -0.1023525946055777E+01 + -0.1024952560066326E+01 + -0.1026379190000000E+01 + -0.1027805833837203E+01 + -0.1029232489654812E+01 + -0.1030659155553818E+01 + -0.1032085829635217E+01 + -0.1033512510000000E+01 + -0.1034939194752286E+01 + -0.1036365882008690E+01 + -0.1037792569888951E+01 + -0.1039219256512808E+01 + -0.1040645940000000E+01 + -0.1042072618433653E+01 + -0.1043499289750430E+01 + -0.1044925951850381E+01 + -0.1046352602633554E+01 + -0.1047779240000000E+01 + -0.1049205861913103E+01 + -0.1050632466589591E+01 + -0.1052059052309527E+01 + -0.1053485617352976E+01 + -0.1054912160000000E+01 + -0.1056338678473936E+01 + -0.1057765170771208E+01 + -0.1059191634831511E+01 + -0.1060618068594543E+01 + -0.1062044470000000E+01 + -0.1063470836991153E+01 + -0.1064897167525579E+01 + -0.1066323459564428E+01 + -0.1067749711068851E+01 + -0.1069175920000000E+01 + -0.1070602084361450E+01 + -0.1072028202326477E+01 + -0.1073454272110778E+01 + -0.1074880291930053E+01 + -0.1076306260000000E+01 + -0.1077732174523045E+01 + -0.1079158033648515E+01 + -0.1080583835512462E+01 + -0.1082009578250939E+01 + -0.1083435260000000E+01 + -0.1084860878826370E+01 + -0.1086286432519466E+01 + -0.1087711918799377E+01 + -0.1089137335386192E+01 + -0.1090562680000000E+01 + -0.1091987950491475E+01 + -0.1093413145233622E+01 + -0.1094838262730032E+01 + -0.1096263301484295E+01 + -0.1097688260000000E+01 + -0.1099113136647731E+01 + -0.1100537929266045E+01 + -0.1101962635560494E+01 + -0.1103387253236629E+01 + -0.1104811780000000E+01 + -0.1106236213637602E+01 + -0.1107660552262198E+01 + -0.1109084794067992E+01 + -0.1110508937249191E+01 + -0.1111932980000000E+01 + -0.1113356920481861E+01 + -0.1114780756725164E+01 + -0.1116204486727537E+01 + -0.1117628108486607E+01 + -0.1119051620000000E+01 + -0.1120475019314954E+01 + -0.1121898304677145E+01 + -0.1123321474381859E+01 + -0.1124744526724382E+01 + -0.1126167460000000E+01 + -0.1127590272418323E+01 + -0.1129012961846257E+01 + -0.1130435526065028E+01 + -0.1131857962855866E+01 + -0.1133280270000000E+01 + -0.1134702445331753E+01 + -0.1136124486897829E+01 + -0.1137546392798029E+01 + -0.1138968161132153E+01 + -0.1140389790000000E+01 + -0.1141811277534666E+01 + -0.1143232622002427E+01 + -0.1144653821702856E+01 + -0.1146074874935522E+01 + -0.1147495780000000E+01 + -0.1148916535089584E+01 + -0.1150337137972463E+01 + -0.1151757586310550E+01 + -0.1153177877765758E+01 + -0.1154598010000000E+01 + -0.1156017980826999E+01 + -0.1157437788667722E+01 + -0.1158857432094945E+01 + -0.1160276909681446E+01 + -0.1161696220000000E+01 + -0.1163115361442419E+01 + -0.1164534331676649E+01 + -0.1165953128189669E+01 + -0.1167371748468459E+01 + -0.1168790190000000E+01 + -0.1170208450443324E+01 + -0.1171626528145682E+01 + -0.1173044421626378E+01 + -0.1174462129404716E+01 + -0.1175879650000000E+01 + -0.1177296981824284E+01 + -0.1178714122860622E+01 + -0.1180131070984817E+01 + -0.1181547824072675E+01 + -0.1182964380000000E+01 + -0.1184380736659541E+01 + -0.1185796892011832E+01 + -0.1187212844034353E+01 + -0.1188628590704582E+01 + -0.1190044130000000E+01 + -0.1191459459937552E+01 + -0.1192874578692051E+01 + -0.1194289484477772E+01 + -0.1195704175508996E+01 + -0.1197118650000000E+01 + -0.1198532906150250E+01 + -0.1199946942099966E+01 + -0.1201360755974558E+01 + -0.1202774345899433E+01 + -0.1204187710000000E+01 + -0.1205600846341448E+01 + -0.1207013752748084E+01 + -0.1208426426983996E+01 + -0.1209838866813272E+01 + -0.1211251070000000E+01 + -0.1212663034403960E+01 + -0.1214074758267699E+01 + -0.1215486239929458E+01 + -0.1216897477727479E+01 + -0.1218308470000000E+01 + -0.1219719215002715E+01 + -0.1221129710661121E+01 + -0.1222539954818171E+01 + -0.1223949945316813E+01 + -0.1225359680000000E+01 + -0.1226769156785182E+01 + -0.1228178373887816E+01 + -0.1229587329597859E+01 + -0.1230996022205268E+01 + -0.1232404450000000E+01 + -0.1233812611216557E+01 + -0.1235220503867615E+01 + -0.1236628125910394E+01 + -0.1238035475302116E+01 + -0.1239442550000000E+01 + -0.1240849347948590E+01 + -0.1242255867041724E+01 + -0.1243662105160563E+01 + -0.1245068060186268E+01 + -0.1246473730000000E+01 + -0.1247879112589083E+01 + -0.1249284206365488E+01 + -0.1250689009847353E+01 + -0.1252093521552812E+01 + -0.1253497740000000E+01 + -0.1254901663535080E+01 + -0.1256305289816322E+01 + -0.1257708616330024E+01 + -0.1259111640562484E+01 + -0.1260514360000000E+01 + -0.1261916772310598E+01 + -0.1263318875889224E+01 + -0.1264720669312550E+01 + -0.1266122151157251E+01 + -0.1267523320000000E+01 + -0.1268924174262527E+01 + -0.1270324711746783E+01 + -0.1271724930099776E+01 + -0.1273124826968513E+01 + -0.1274524400000000E+01 + -0.1275923646959295E+01 + -0.1277322566083645E+01 + -0.1278721155728347E+01 + -0.1280119414248700E+01 + -0.1281517340000000E+01 + -0.1282914931260295E+01 + -0.1284312185998639E+01 + -0.1285709102106835E+01 + -0.1287105677476688E+01 + -0.1288501910000000E+01 + -0.1289897797599524E+01 + -0.1291293338321799E+01 + -0.1292688530244312E+01 + -0.1294083371444550E+01 + -0.1295477860000000E+01 + -0.1296871994021610E+01 + -0.1298265771754167E+01 + -0.1299659191475919E+01 + -0.1301052251465114E+01 + -0.1302444950000000E+01 + -0.1303837285274037E+01 + -0.1305229255141535E+01 + -0.1306620857372014E+01 + -0.1308012089734995E+01 + -0.1309402950000000E+01 + -0.1310793436002241E+01 + -0.1312183545839693E+01 + -0.1313573277676026E+01 + -0.1314962629674906E+01 + -0.1316351600000000E+01 + -0.1317740186797000E+01 + -0.1319128388139692E+01 + -0.1320516202083883E+01 + -0.1321903626685383E+01 + -0.1323290660000000E+01 + -0.1324677300089759E+01 + -0.1326063545041540E+01 + -0.1327449392948443E+01 + -0.1328834841903564E+01 + -0.1330219890000000E+01 + -0.1331604535323967E+01 + -0.1332988775934148E+01 + -0.1334372609882346E+01 + -0.1335756035220363E+01 + -0.1337139050000000E+01 + -0.1338521652294376E+01 + -0.1339903840261869E+01 + -0.1341285612082174E+01 + -0.1342666965934986E+01 + -0.1344047900000000E+01 + -0.1345428412378532E+01 + -0.1346808500858379E+01 + -0.1348188163148960E+01 + -0.1349567396959694E+01 + -0.1350946200000000E+01 + -0.1352324570111499E+01 + -0.1353702505664618E+01 + -0.1355080005161988E+01 + -0.1356457067106239E+01 + -0.1357833690000000E+01 + -0.1359209872215474E+01 + -0.1360585611603149E+01 + -0.1361960905883088E+01 + -0.1363335752775351E+01 + -0.1364710150000000E+01 + -0.1366084095346607E+01 + -0.1367457586882785E+01 + -0.1368830622745660E+01 + -0.1370203201072357E+01 + -0.1371575320000000E+01 + -0.1372946977678100E+01 + -0.1374318172305711E+01 + -0.1375688902094272E+01 + -0.1377059165255222E+01 + -0.1378428960000000E+01 + -0.1379798284500993E+01 + -0.1381167136774371E+01 + -0.1382535514797253E+01 + -0.1383903416546757E+01 + -0.1385270840000000E+01 + -0.1386637783117929E+01 + -0.1388004243796804E+01 + -0.1389370219916715E+01 + -0.1390735709357751E+01 + -0.1392100710000000E+01 + -0.1393465219827292E+01 + -0.1394829237238412E+01 + -0.1396192760735887E+01 + -0.1397555788822241E+01 + -0.1398918320000000E+01 + -0.1400280352612904E+01 + -0.1401641884369548E+01 + -0.1403002912819739E+01 + -0.1404363435513287E+01 + -0.1405723450000000E+01 + -0.1407082953961092E+01 + -0.1408441945603397E+01 + -0.1409800423265157E+01 + -0.1411158385284611E+01 + -0.1412515830000000E+01 + -0.1413872755702730E+01 + -0.1415229160496864E+01 + -0.1416585042439634E+01 + -0.1417940399588269E+01 + -0.1419295230000000E+01 + -0.1420649531707991E+01 + -0.1422003302649146E+01 + -0.1423356540736307E+01 + -0.1424709243882311E+01 + -0.1426061410000000E+01 + -0.1427413037065308E+01 + -0.1428764123306551E+01 + -0.1430114667015139E+01 + -0.1431464666482485E+01 + -0.1432814120000000E+01 + -0.1434163025790778E+01 + -0.1435511381804651E+01 + -0.1436859185923136E+01 + -0.1438206436027746E+01 + -0.1439553130000000E+01 + -0.1440899265771580E+01 + -0.1442244841474844E+01 + -0.1443589855292318E+01 + -0.1444934305406528E+01 + -0.1446278190000000E+01 + -0.1447621507202902E+01 + -0.1448964254935973E+01 + -0.1450306431067593E+01 + -0.1451648033466142E+01 + -0.1452989060000000E+01 + -0.1454329508616810E+01 + -0.1455669377581263E+01 + -0.1457008665237310E+01 + -0.1458347369928905E+01 + -0.1459685490000000E+01 + -0.1461023023689857E+01 + -0.1462359968818976E+01 + -0.1463696323103167E+01 + -0.1465032084258238E+01 + -0.1466367250000000E+01 + -0.1467701818143762E+01 + -0.1469035786902833E+01 + -0.1470369154590023E+01 + -0.1471701919518142E+01 + -0.1473034080000000E+01 + -0.1474365634295096E+01 + -0.1475696580449693E+01 + -0.1477026916456741E+01 + -0.1478356640309193E+01 + -0.1479685750000000E+01 + -0.1481014243555853E+01 + -0.1482342119138396E+01 + -0.1483669374943013E+01 + -0.1484996009165086E+01 + -0.1486322020000000E+01 + -0.1487647405561492E+01 + -0.1488972163636723E+01 + -0.1490296291931208E+01 + -0.1491619788150462E+01 + -0.1492942650000000E+01 + -0.1494264875318178E+01 + -0.1495586462474712E+01 + -0.1496907409972156E+01 + -0.1498227716313067E+01 + -0.1499547380000000E+01 + -0.1500866399405795E+01 + -0.1502184772384430E+01 + -0.1503502496660168E+01 + -0.1504819569957270E+01 + -0.1506135990000000E+01 + -0.1507451754578641E+01 + -0.1508766861747567E+01 + -0.1510081309627173E+01 + -0.1511395096337852E+01 + -0.1512708220000000E+01 + -0.1514020678759639E+01 + -0.1515332470865300E+01 + -0.1516643594591142E+01 + -0.1517954048211323E+01 + -0.1519263830000000E+01 + -0.1520572938142802E+01 + -0.1521881370471232E+01 + -0.1523189124728261E+01 + -0.1524496198656859E+01 + -0.1525802590000000E+01 + -0.1527108296589152E+01 + -0.1528413316609773E+01 + -0.1529717648335817E+01 + -0.1531021290041242E+01 + -0.1532324240000000E+01 + -0.1533626496460591E+01 + -0.1534928057569679E+01 + -0.1536228921448471E+01 + -0.1537529086218176E+01 + -0.1538828550000000E+01 + -0.1540127310848486E+01 + -0.1541425366551514E+01 + -0.1542722714830299E+01 + -0.1544019353406056E+01 + -0.1545315280000000E+01 + -0.1546610492465466E+01 + -0.1547904989184265E+01 + -0.1549198768670332E+01 + -0.1550491829437600E+01 + -0.1551784170000000E+01 + -0.1553075788729653E+01 + -0.1554366683431425E+01 + -0.1555656851768371E+01 + -0.1556946291403545E+01 + -0.1558235000000000E+01 + -0.1559522975335924E+01 + -0.1560810215650035E+01 + -0.1562096719296183E+01 + -0.1563382484628221E+01 + -0.1564667510000000E+01 + -0.1565951793686653E+01 + -0.1567235333648437E+01 + -0.1568518127766896E+01 + -0.1569800173923570E+01 + -0.1571081470000000E+01 + -0.1572362013917468E+01 + -0.1573641803756217E+01 + -0.1574920837636232E+01 + -0.1576199113677498E+01 + -0.1577476630000000E+01 + -0.1578753384723478E+01 + -0.1580029375966696E+01 + -0.1581304601848176E+01 + -0.1582579060486437E+01 + -0.1583852750000000E+01 + -0.1585125668468621E+01 + -0.1586397813816998E+01 + -0.1587669183931065E+01 + -0.1588939776696754E+01 + -0.1590209590000000E+01 + -0.1591478621802038E+01 + -0.1592746870365311E+01 + -0.1594014334027565E+01 + -0.1595281011126546E+01 + -0.1596546900000000E+01 + -0.1597811998883229E+01 + -0.1599076305601760E+01 + -0.1600339817878676E+01 + -0.1601602533437062E+01 + -0.1602864450000000E+01 + -0.1604125565385048E+01 + -0.1605385877787652E+01 + -0.1606645385497732E+01 + -0.1607904086805208E+01 + -0.1609161980000000E+01 + -0.1610419063336581E+01 + -0.1611675334927634E+01 + -0.1612930792850397E+01 + -0.1614185435182107E+01 + -0.1615439260000000E+01 + -0.1616692265348630E+01 + -0.1617944449141812E+01 + -0.1619195809260680E+01 + -0.1620446343586365E+01 + -0.1621696050000000E+01 + -0.1622944926468901E+01 + -0.1624192971305118E+01 + -0.1625440182906884E+01 + -0.1626686559672434E+01 + -0.1627932100000000E+01 + -0.1629176802135766E+01 + -0.1630420663717716E+01 + -0.1631663682231782E+01 + -0.1632905855163900E+01 + -0.1634147180000000E+01 + -0.1635387654428034E+01 + -0.1636627276944019E+01 + -0.1637866046245986E+01 + -0.1639103961031969E+01 + -0.1640341020000000E+01 + -0.1641577221672096E+01 + -0.1642812563866209E+01 + -0.1644047044224274E+01 + -0.1645280660388226E+01 + -0.1646513410000000E+01 + -0.1647745290803581E+01 + -0.1648976300951145E+01 + -0.1650206438696919E+01 + -0.1651435702295129E+01 + -0.1652664090000000E+01 + -0.1653891599993581E+01 + -0.1655118230169211E+01 + -0.1656343978348050E+01 + -0.1657568842351259E+01 + -0.1658792820000000E+01 + -0.1660015909222094E+01 + -0.1661238108372012E+01 + -0.1662459415910881E+01 + -0.1663679830299834E+01 + -0.1664899350000000E+01 + -0.1666117973358041E+01 + -0.1667335698262743E+01 + -0.1668552522488425E+01 + -0.1669768443809405E+01 + -0.1670983460000000E+01 + -0.1672197568865742E+01 + -0.1673410768337016E+01 + -0.1674623056375418E+01 + -0.1675834430942547E+01 + -0.1677044890000000E+01 + -0.1678254431578990E+01 + -0.1679463053989193E+01 + -0.1680670755609901E+01 + -0.1681877534820406E+01 + -0.1683083390000000E+01 + -0.1684288319458298E+01 + -0.1685492321226211E+01 + -0.1686695393264976E+01 + -0.1687897533535827E+01 + -0.1689098740000000E+01 + -0.1690299010587819E+01 + -0.1691498343105962E+01 + -0.1692696735330195E+01 + -0.1693894185036286E+01 + -0.1695090690000000E+01 + -0.1696286248110426E+01 + -0.1697480857709941E+01 + -0.1698674517254243E+01 + -0.1699867225199029E+01 + -0.1701058980000000E+01 + -0.1702249780010476E+01 + -0.1703439623174274E+01 + -0.1704628507332834E+01 + -0.1705816430327595E+01 + -0.1707003390000000E+01 + -0.1708189384247670E+01 + -0.1709374411192964E+01 + -0.1710558469014423E+01 + -0.1711741555890587E+01 + -0.1712923670000000E+01 + -0.1714104809478843E+01 + -0.1715284972293870E+01 + -0.1716464156369475E+01 + -0.1717642359630054E+01 + -0.1718819580000000E+01 + -0.1719995815436956E+01 + -0.1721171064031555E+01 + -0.1722345323907675E+01 + -0.1723518593189197E+01 + -0.1724690870000000E+01 + -0.1725862152453332E+01 + -0.1727032438619911E+01 + -0.1728201726559825E+01 + -0.1729370014333159E+01 + -0.1730537300000000E+01 + -0.1731703581629716E+01 + -0.1732868857328800E+01 + -0.1734033125213026E+01 + -0.1735196383398168E+01 + -0.1736358630000000E+01 + -0.1737519863107803E+01 + -0.1738680080704888E+01 + -0.1739839280748071E+01 + -0.1740997461194169E+01 + -0.1742154620000000E+01 + -0.1743310755139071E+01 + -0.1744465864651650E+01 + -0.1745619946594692E+01 + -0.1746772999025156E+01 + -0.1747925020000000E+01 + -0.1749076007615912E+01 + -0.1750225960128515E+01 + -0.1751374875833161E+01 + -0.1752522753025205E+01 + -0.1753669590000000E+01 + -0.1754815384957279E+01 + -0.1755960135714291E+01 + -0.1757103839992664E+01 + -0.1758246495514024E+01 + -0.1759388100000000E+01 + -0.1760528651274970E+01 + -0.1761668147574319E+01 + -0.1762806587236184E+01 + -0.1763943968598698E+01 + -0.1765080290000000E+01 + -0.1766215549702839E+01 + -0.1767349745668430E+01 + -0.1768482875782601E+01 + -0.1769614937931181E+01 + -0.1770745930000000E+01 + -0.1771875849913672E+01 + -0.1773004695751959E+01 + -0.1774132465633411E+01 + -0.1775259157676575E+01 + -0.1776384770000000E+01 + -0.1777509300722472E+01 + -0.1778632747963731E+01 + -0.1779755109843754E+01 + -0.1780876384482518E+01 + -0.1781996570000000E+01 + -0.1783115664476438E+01 + -0.1784233665833114E+01 + -0.1785350571951572E+01 + -0.1786466380713352E+01 + -0.1787581090000000E+01 + -0.1788694697771776E+01 + -0.1789807202303812E+01 + -0.1790918601949961E+01 + -0.1792028895064073E+01 + -0.1793138080000000E+01 + -0.1794246154996460E+01 + -0.1795353117831638E+01 + -0.1796458966168587E+01 + -0.1797563697670356E+01 + -0.1798667310000000E+01 + -0.1799769800962384E+01 + -0.1800871168929635E+01 + -0.1801971412415694E+01 + -0.1803070529934502E+01 + -0.1804168520000000E+01 + -0.1805265380994003E+01 + -0.1806361110769822E+01 + -0.1807455707048638E+01 + -0.1808549167551636E+01 + -0.1809641490000000E+01 + -0.1810732672181603E+01 + -0.1811822712151079E+01 + -0.1812911608029754E+01 + -0.1813999357938953E+01 + -0.1815085960000000E+01 + -0.1816171412359586E+01 + -0.1817255713265862E+01 + -0.1818338860992345E+01 + -0.1819420853812552E+01 + -0.1820501690000000E+01 + -0.1821581367740054E+01 + -0.1822659884865474E+01 + -0.1823737239120866E+01 + -0.1824813428250839E+01 + -0.1825888450000000E+01 + -0.1826962302200198E+01 + -0.1828034983032243E+01 + -0.1829106490764191E+01 + -0.1830176823664092E+01 + -0.1831245980000000E+01 + -0.1832313958019157E+01 + -0.1833380755885553E+01 + -0.1834446371742373E+01 + -0.1835510803732795E+01 + -0.1836574050000000E+01 + -0.1837636108603178E+01 + -0.1838696977265544E+01 + -0.1839756653626321E+01 + -0.1840815135324732E+01 + -0.1841872420000000E+01 + -0.1842928505968134E+01 + -0.1843983394252273E+01 + -0.1845037086552347E+01 + -0.1846089584568281E+01 + -0.1847140890000000E+01 + -0.1848191004324290E+01 + -0.1849239928125363E+01 + -0.1850287661764292E+01 + -0.1851334205602147E+01 + -0.1852379560000000E+01 + -0.1853423725534708E+01 + -0.1854466703646274E+01 + -0.1855508495990486E+01 + -0.1856549104223132E+01 + -0.1857588530000000E+01 + -0.1858626774816877E+01 + -0.1859663839529540E+01 + -0.1860699724833765E+01 + -0.1861734431425326E+01 + -0.1862767960000000E+01 + -0.1863800311357784E+01 + -0.1864831486715566E+01 + -0.1865861487394456E+01 + -0.1866890314715564E+01 + -0.1867917970000000E+01 + -0.1868944454471988E+01 + -0.1869969768968197E+01 + -0.1870993914228414E+01 + -0.1872016890992420E+01 + -0.1873038700000000E+01 + -0.1874059342114266E+01 + -0.1875078818691645E+01 + -0.1876097131211891E+01 + -0.1877114281154757E+01 + -0.1878130270000000E+01 + -0.1879145099070948E+01 + -0.1880158769065224E+01 + -0.1881171280524026E+01 + -0.1882182633988552E+01 + -0.1883192830000000E+01 + -0.1884201869281944E+01 + -0.1885209753287462E+01 + -0.1886216483652008E+01 + -0.1887222062011036E+01 + -0.1888226490000000E+01 + -0.1889229769081277E+01 + -0.1890231900024929E+01 + -0.1891232883427944E+01 + -0.1892232719887306E+01 + -0.1893231410000000E+01 + -0.1894228954472950E+01 + -0.1895225354452821E+01 + -0.1896220611196217E+01 + -0.1897214725959742E+01 + -0.1898207700000000E+01 + -0.1899199534546926E+01 + -0.1900190230723788E+01 + -0.1901179789627187E+01 + -0.1902168212353725E+01 + -0.1903155500000000E+01 + -0.1904141653659347E+01 + -0.1905126674412027E+01 + -0.1906110563335034E+01 + -0.1907093321505360E+01 + -0.1908074950000000E+01 + -0.1909055449855686E+01 + -0.1910034821948104E+01 + -0.1911013067112679E+01 + -0.1911990186184836E+01 + -0.1912966180000000E+01 + -0.1913941049477910E+01 + -0.1914914795875558E+01 + -0.1915887420534251E+01 + -0.1916858924795296E+01 + -0.1917829310000000E+01 + -0.1918798577432676E+01 + -0.1919766728149666E+01 + -0.1920733763150317E+01 + -0.1921699683433979E+01 + -0.1922664490000000E+01 + -0.1923628183831387E+01 + -0.1924590765845781E+01 + -0.1925552236944481E+01 + -0.1926512598028788E+01 + -0.1927471850000000E+01 + -0.1928429993801777E+01 + -0.1929387030547213E+01 + -0.1930342961391760E+01 + -0.1931297787490872E+01 + -0.1932251510000000E+01 + -0.1933204130081505E+01 + -0.1934155648925368E+01 + -0.1935106067728479E+01 + -0.1936055387687727E+01 + -0.1937003610000000E+01 + -0.1937950735792205E+01 + -0.1938896765911316E+01 + -0.1939841701134325E+01 + -0.1940785542238222E+01 + -0.1941728290000000E+01 + -0.1942669945309675E+01 + -0.1943610509509368E+01 + -0.1944549984054222E+01 + -0.1945488370399385E+01 + -0.1946425670000000E+01 + -0.1947361884169094E+01 + -0.1948297013651213E+01 + -0.1949231059048786E+01 + -0.1950164020964239E+01 + -0.1951095900000000E+01 + -0.1952026696893950E+01 + -0.1952956412925780E+01 + -0.1953885049510635E+01 + -0.1954812608063661E+01 + -0.1955739090000000E+01 + -0.1956664496655107E+01 + -0.1957588829045667E+01 + -0.1958512088108673E+01 + -0.1959434274781120E+01 + -0.1960355390000000E+01 + -0.1961275434725622E+01 + -0.1962194410011552E+01 + -0.1963112316934671E+01 + -0.1964029156571860E+01 + -0.1964944930000000E+01 + -0.1965859638282405E+01 + -0.1966773282428126E+01 + -0.1967685863432643E+01 + -0.1968597382291440E+01 + -0.1969507840000000E+01 + -0.1970417237584755E+01 + -0.1971325576195945E+01 + -0.1972232857014756E+01 + -0.1973139081222378E+01 + -0.1974044250000000E+01 + -0.1974948364498572E+01 + -0.1975851425748096E+01 + -0.1976753434748333E+01 + -0.1977654392499047E+01 + -0.1978554300000000E+01 + -0.1979453158260955E+01 + -0.1980350968331672E+01 + -0.1981247731271912E+01 + -0.1982143448141435E+01 + -0.1983038120000000E+01 + -0.1983931747897608E+01 + -0.1984824332845216E+01 + -0.1985715875844020E+01 + -0.1986606377895216E+01 + -0.1987495840000000E+01 + -0.1988384263188612E+01 + -0.1989271648607464E+01 + -0.1990157997432009E+01 + -0.1991043310837703E+01 + -0.1991927590000000E+01 + -0.1992810836067943E+01 + -0.1993693050084929E+01 + -0.1994574233067943E+01 + -0.1995454386033972E+01 + -0.1996333510000000E+01 + -0.1997211605979616E+01 + -0.1998088674972822E+01 + -0.1998964717976218E+01 + -0.1999839735986410E+01 + -0.2000713730000000E+01 + -0.2001586701053592E+01 + -0.2002458650343786E+01 + -0.2003329579107185E+01 + -0.2004199488580389E+01 + -0.2005068380000000E+01 + -0.2005936254526017E+01 + -0.2006803113012035E+01 + -0.2007668956235043E+01 + -0.2008533784972034E+01 + -0.2009397600000000E+01 + -0.2010260402202338E+01 + -0.2011122192888076E+01 + -0.2011982973472644E+01 + -0.2012842745371474E+01 + -0.2013701510000000E+01 + -0.2014559268664628E+01 + -0.2015416022235663E+01 + -0.2016271771474384E+01 + -0.2017126517142070E+01 + -0.2017980260000000E+01 + -0.2018833000899149E+01 + -0.2019684741049272E+01 + -0.2020535481749822E+01 + -0.2021385224300247E+01 + -0.2022233970000000E+01 + -0.2023081720058775E+01 + -0.2023928475327246E+01 + -0.2024774236566329E+01 + -0.2025619004536941E+01 + -0.2026462780000000E+01 + -0.2027305563825750E+01 + -0.2028147357321744E+01 + -0.2028988161904863E+01 + -0.2029827978991988E+01 + -0.2030666810000000E+01 + -0.2031504656238226E+01 + -0.2032341518585780E+01 + -0.2033177397814221E+01 + -0.2034012294695107E+01 + -0.2034846210000000E+01 + -0.2035679144581345E+01 + -0.2036511099615137E+01 + -0.2037342076358256E+01 + -0.2038172076067583E+01 + -0.2039001100000000E+01 + -0.2039829149356393E+01 + -0.2040656225113673E+01 + -0.2041482328192757E+01 + -0.2042307459514560E+01 + -0.2043131620000000E+01 + -0.2043954810633082E+01 + -0.2044777032650171E+01 + -0.2045598287350718E+01 + -0.2046418576034176E+01 + -0.2047237900000000E+01 + -0.2048056260431277E+01 + -0.2048873658045645E+01 + -0.2049690093444373E+01 + -0.2050505567228734E+01 + -0.2051320080000000E+01 + -0.2052133632521807E+01 + -0.2052946226207252E+01 + -0.2053757862631791E+01 + -0.2054568543370888E+01 + -0.2055378270000000E+01 + -0.2056187043961492E+01 + -0.2056994866165350E+01 + -0.2057801737388461E+01 + -0.2058607658407714E+01 + -0.2059412630000000E+01 + -0.2060216652992222E+01 + -0.2061019728411349E+01 + -0.2061821857334365E+01 + -0.2062623040838254E+01 + -0.2063423280000000E+01 + -0.2064222575909619E+01 + -0.2065020929709253E+01 + -0.2065818342554079E+01 + -0.2066614815599269E+01 + -0.2067410350000000E+01 + -0.2068204946889302E+01 + -0.2068998607311637E+01 + -0.2069791332289320E+01 + -0.2070583122844669E+01 + -0.2071373980000000E+01 + -0.2072163904773171E+01 + -0.2072952898164199E+01 + -0.2073740961168642E+01 + -0.2074528094782056E+01 + -0.2075314300000000E+01 + -0.2076099577858014E+01 + -0.2076883929551567E+01 + -0.2077667356316114E+01 + -0.2078449859387107E+01 + -0.2079231440000000E+01 + -0.2080012099314775E+01 + -0.2080791838189532E+01 + -0.2081570657406902E+01 + -0.2082348557749515E+01 + -0.2083125540000000E+01 + -0.2083901605042888E+01 + -0.2084676754170306E+01 + -0.2085450988776279E+01 + -0.2086224310254835E+01 + -0.2086996720000000E+01 + -0.2087768219313674E+01 + -0.2088538809129247E+01 + -0.2089308490287983E+01 + -0.2090077263631146E+01 + -0.2090845130000000E+01 + -0.2091612090262418E+01 + -0.2092378145392707E+01 + -0.2093143296391789E+01 + -0.2093907544260580E+01 + -0.2094670890000000E+01 + -0.2095433334676657E+01 + -0.2096194879619924E+01 + -0.2096955526224861E+01 + -0.2097715275886533E+01 + -0.2098474130000000E+01 + -0.2099232089830954E+01 + -0.2099989156127599E+01 + -0.2100745329508766E+01 + -0.2101500610593289E+01 + -0.2102255000000000E+01 + -0.2103008498479527E+01 + -0.2103761107309682E+01 + -0.2104512827900074E+01 + -0.2105263661660310E+01 + -0.2106013610000000E+01 + -0.2106762674250939E+01 + -0.2107510855433674E+01 + -0.2108258154490939E+01 + -0.2109004572365469E+01 + -0.2109750110000000E+01 + -0.2110494768356718E+01 + -0.2111238548475624E+01 + -0.2111981451416171E+01 + -0.2112723478237812E+01 + -0.2113464630000000E+01 + -0.2114204907762189E+01 + -0.2114944312583829E+01 + -0.2115682845524376E+01 + -0.2116420507643282E+01 + -0.2117157300000000E+01 + -0.2117893223634530E+01 + -0.2118628279509060E+01 + -0.2119362468566325E+01 + -0.2120095791749060E+01 + -0.2120828250000000E+01 + -0.2121559844339694E+01 + -0.2122290576099934E+01 + -0.2123020446690328E+01 + -0.2123749457520481E+01 + -0.2124477610000000E+01 + -0.2125204905406697E+01 + -0.2125931344491205E+01 + -0.2126656927872366E+01 + -0.2127381656169018E+01 + -0.2128105530000000E+01 + -0.2128828550113520E+01 + -0.2129550717775245E+01 + -0.2130272034380210E+01 + -0.2130992501323450E+01 + -0.2131712120000000E+01 + -0.2132430891739225E+01 + -0.2133148817607817E+01 + -0.2133865898606795E+01 + -0.2134582135737182E+01 + -0.2135297530000000E+01 + -0.2136012082369579E+01 + -0.2136725793713489E+01 + -0.2137438664872609E+01 + -0.2138150696687819E+01 + -0.2138861890000000E+01 + -0.2139572245742460E+01 + -0.2140281765218229E+01 + -0.2140990449822769E+01 + -0.2141698300951539E+01 + -0.2142405320000000E+01 + -0.2143111508260582E+01 + -0.2143816866613595E+01 + -0.2144521395836316E+01 + -0.2145225096706025E+01 + -0.2145927970000000E+01 + -0.2146630016575211E+01 + -0.2147331237607391E+01 + -0.2148031634351966E+01 + -0.2148731208064361E+01 + -0.2149429960000000E+01 + -0.2150127891358575E+01 + -0.2150825003116841E+01 + -0.2151521296195820E+01 + -0.2152216771516532E+01 + -0.2152911430000000E+01 + -0.2153605272630490E+01 + -0.2154298300645245E+01 + -0.2154990515344756E+01 + -0.2155681918029511E+01 + -0.2156372510000000E+01 + -0.2157062292439468E+01 + -0.2157751266062180E+01 + -0.2158439431465158E+01 + -0.2159126789245424E+01 + -0.2159813340000000E+01 + -0.2160499084491641E+01 + -0.2161184024146037E+01 + -0.2161868160554612E+01 + -0.2162551495308792E+01 + -0.2163234030000000E+01 + -0.2163915766073970E+01 + -0.2164596704393673E+01 + -0.2165276845676392E+01 + -0.2165956190639407E+01 + -0.2166634740000000E+01 + -0.2167312494572481E+01 + -0.2167989455559270E+01 + -0.2168665624259820E+01 + -0.2169341001973580E+01 + -0.2170015590000000E+01 + -0.2170689389556110E+01 + -0.2171362401529247E+01 + -0.2172034626724329E+01 + -0.2172706065946275E+01 + -0.2173376720000000E+01 + -0.2174046589763083E+01 + -0.2174715676403743E+01 + -0.2175383981162862E+01 + -0.2176051505281321E+01 + -0.2176718250000000E+01 + -0.2177384216511561E+01 + -0.2178049405815782E+01 + -0.2178713818864223E+01 + -0.2179377456608443E+01 + -0.2180040320000000E+01 + -0.2180702410030674E+01 + -0.2181363727853129E+01 + -0.2182024274660246E+01 + -0.2182684051644908E+01 + -0.2183343060000000E+01 + -0.2184001300885741E+01 + -0.2184658775331702E+01 + -0.2185315484334793E+01 + -0.2185971428891923E+01 + -0.2186626610000000E+01 + -0.2187281028666363E+01 + -0.2187934685940063E+01 + -0.2188587582880582E+01 + -0.2189239720547401E+01 + -0.2189891100000000E+01 + -0.2190541722288809E+01 + -0.2191191588428048E+01 + -0.2191840699422881E+01 + -0.2192489056278476E+01 + -0.2193136660000000E+01 + -0.2193783511618400E+01 + -0.2194429612267749E+01 + -0.2195074963107896E+01 + -0.2195719565298696E+01 + -0.2196363420000000E+01 + -0.2197006528357589E+01 + -0.2197648891460959E+01 + -0.2198290510385534E+01 + -0.2198931386206740E+01 + -0.2199571520000000E+01 + -0.2200210912791244E+01 + -0.2200849565408416E+01 + -0.2201487478629966E+01 + -0.2202124653234344E+01 + -0.2202761090000000E+01 + -0.2203396789837438E+01 + -0.2204031754185379E+01 + -0.2204665984614602E+01 + -0.2205299482695883E+01 + -0.2205932250000000E+01 + -0.2206564287939007E+01 + -0.2207195597290068E+01 + -0.2207826178671625E+01 + -0.2208456032702122E+01 + -0.2209085160000000E+01 + -0.2209713561286536E+01 + -0.2210341237694350E+01 + -0.2210968190458895E+01 + -0.2211594420815627E+01 + -0.2212219930000000E+01 + -0.2212844719234849E+01 + -0.2213468789692533E+01 + -0.2214092142532793E+01 + -0.2214714778915369E+01 + -0.2215336700000000E+01 + -0.2215957906894068E+01 + -0.2216578400495518E+01 + -0.2217198181649933E+01 + -0.2217817251202899E+01 + -0.2218435610000000E+01 + -0.2219053258948877E+01 + -0.2219670199205396E+01 + -0.2220286431987475E+01 + -0.2220901958513037E+01 + -0.2221516780000000E+01 + -0.2222130897630422E+01 + -0.2222744312442900E+01 + -0.2223357025440167E+01 + -0.2223969037624956E+01 + -0.2224580350000000E+01 + -0.2225190963569435E+01 + -0.2225800879343005E+01 + -0.2226410098331857E+01 + -0.2227018621547140E+01 + -0.2227626450000000E+01 + -0.2228233584731840E+01 + -0.2228840026905082E+01 + -0.2229445777712404E+01 + -0.2230050838346485E+01 + -0.2230655210000000E+01 + -0.2231258893823207E+01 + -0.2231861890796668E+01 + -0.2232464201858526E+01 + -0.2233065827946923E+01 + -0.2233666770000000E+01 + -0.2234267029015335E+01 + -0.2234866606228247E+01 + -0.2235465502933492E+01 + -0.2236063720425825E+01 + -0.2236661260000000E+01 + -0.2237258122835453E+01 + -0.2237854309650342E+01 + -0.2238449821047505E+01 + -0.2239044657629778E+01 + -0.2239638820000000E+01 + -0.2240232308922852E+01 + -0.2240825125810384E+01 + -0.2241417272236490E+01 + -0.2242008749775064E+01 + -0.2242599560000000E+01 + -0.2243189704353141E+01 + -0.2243779183748125E+01 + -0.2244367998966538E+01 + -0.2244956150789967E+01 + -0.2245543640000000E+01 + -0.2246130467424585E+01 + -0.2246716634077119E+01 + -0.2247302141017360E+01 + -0.2247886989305068E+01 + -0.2248471180000000E+01 + -0.2249054714188520E+01 + -0.2249637593063402E+01 + -0.2250219817844024E+01 + -0.2250801389749764E+01 + -0.2251382310000000E+01 + -0.2251962579741335E+01 + -0.2252542199829274E+01 + -0.2253121171046544E+01 + -0.2253699494175877E+01 + -0.2254277170000000E+01 + -0.2254854199406139E+01 + -0.2255430583699503E+01 + -0.2256006324289798E+01 + -0.2256581422586728E+01 + -0.2257155880000000E+01 + -0.2257729697834109E+01 + -0.2258302876972714E+01 + -0.2258875418194264E+01 + -0.2259447322277210E+01 + -0.2260018590000000E+01 + -0.2260589222217426E+01 + -0.2261159220089643E+01 + -0.2261728584853147E+01 + -0.2262297317744434E+01 + -0.2262865420000000E+01 + -0.2263432892816187E+01 + -0.2263999737228715E+01 + -0.2264565954233149E+01 + -0.2265131544825056E+01 + -0.2265696510000000E+01 + -0.2266260850757827E+01 + -0.2266824568115499E+01 + -0.2267387663094257E+01 + -0.2267950136715343E+01 + -0.2268511990000000E+01 + -0.2269073223992506E+01 + -0.2269633839829290E+01 + -0.2270193838669822E+01 + -0.2270753221673570E+01 + -0.2271311990000000E+01 + -0.2271870144792151E+01 + -0.2272427687127339E+01 + -0.2272984618066453E+01 + -0.2273540938670377E+01 + -0.2274096650000000E+01 + -0.2274651753078891E+01 + -0.2275206248781352E+01 + -0.2275760137944368E+01 + -0.2276313421404922E+01 + -0.2276866100000000E+01 + -0.2277418174652285E+01 + -0.2277969646627252E+01 + -0.2278520517276077E+01 + -0.2279070787949935E+01 + -0.2279620460000000E+01 + -0.2280169534711970E+01 + -0.2280718013109639E+01 + -0.2281265896151323E+01 + -0.2281813184795337E+01 + -0.2282359880000000E+01 + -0.2282905982739834E+01 + -0.2283451494054191E+01 + -0.2283996414998631E+01 + -0.2284540746628714E+01 + -0.2285084490000000E+01 + -0.2285627646168695E+01 + -0.2286170216193598E+01 + -0.2286712201134153E+01 + -0.2287253602049805E+01 + -0.2287794420000000E+01 + -0.2288334656025384E+01 + -0.2288874311091416E+01 + -0.2289413386144756E+01 + -0.2289951882132064E+01 + -0.2290489800000000E+01 + -0.2291027140769767E+01 + -0.2291563905760737E+01 + -0.2292100096366823E+01 + -0.2292635713981940E+01 + -0.2293170760000000E+01 + -0.2293705235695548E+01 + -0.2294239141865637E+01 + -0.2294772479187953E+01 + -0.2295305248340180E+01 + -0.2295837450000000E+01 + -0.2296369084928044E+01 + -0.2296900154216715E+01 + -0.2297430659041365E+01 + -0.2297960600577343E+01 + -0.2298489980000000E+01 + -0.2299018798512279E+01 + -0.2299547057427503E+01 + -0.2300074758086587E+01 + -0.2300601901830448E+01 + -0.2301128490000000E+01 + -0.2301654523822839E+01 + -0.2302180004073272E+01 + -0.2302704931412286E+01 + -0.2303229306500867E+01 + -0.2303753130000000E+01 + -0.2304276402676365E+01 + -0.2304799125719407E+01 + -0.2305321300424268E+01 + -0.2305842928086086E+01 + -0.2306364010000000E+01 + -0.2306884547391703E+01 + -0.2307404541209098E+01 + -0.2307923992330641E+01 + -0.2308442901634790E+01 + -0.2308961270000000E+01 + -0.2309479098396825E+01 + -0.2309996388164202E+01 + -0.2310513140733168E+01 + -0.2311029357534755E+01 + -0.2311545040000000E+01 + -0.2312060189420999E+01 + -0.2312574806534094E+01 + -0.2313088891936690E+01 + -0.2313602446226191E+01 + -0.2314115470000000E+01 + -0.2314627963999180E+01 + -0.2315139929539422E+01 + -0.2315651368080073E+01 + -0.2316162281080483E+01 + -0.2316672670000000E+01 + -0.2317182536182281E+01 + -0.2317691880508220E+01 + -0.2318200703743017E+01 + -0.2318709006651877E+01 + -0.2319216790000000E+01 + -0.2319724054631696E+01 + -0.2320230801707701E+01 + -0.2320737032467858E+01 + -0.2321242748152010E+01 + -0.2321747950000000E+01 + -0.2322252639210935E+01 + -0.2322756816820978E+01 + -0.2323260483825552E+01 + -0.2323763641220085E+01 + -0.2324266290000000E+01 + -0.2324768431164563E+01 + -0.2325270065728390E+01 + -0.2325771194709935E+01 + -0.2326271819127654E+01 + -0.2326771940000000E+01 + -0.2327271558370813E+01 + -0.2327770675385465E+01 + -0.2328269292214710E+01 + -0.2328767410029303E+01 + -0.2329265030000000E+01 + -0.2329762153272185E+01 + -0.2330258780889753E+01 + -0.2330754913871228E+01 + -0.2331250553235136E+01 + -0.2331745700000000E+01 + -0.2332240355180449E+01 + -0.2332734519775527E+01 + -0.2333228194780379E+01 + -0.2333721381190155E+01 + -0.2334214080000000E+01 + -0.2334706292246020E+01 + -0.2335198019128143E+01 + -0.2335689261887257E+01 + -0.2336180021764247E+01 + -0.2336670300000000E+01 + -0.2337160097755474E+01 + -0.2337649415871903E+01 + -0.2338138255110597E+01 + -0.2338626616232860E+01 + -0.2339114500000000E+01 + -0.2339601907292087E+01 + -0.2340088839464244E+01 + -0.2340575297990358E+01 + -0.2341061284344314E+01 + -0.2341546800000000E+01 + -0.2342031846276179E+01 + -0.2342516423871121E+01 + -0.2343000533327974E+01 + -0.2343484175189884E+01 + -0.2343967350000000E+01 + -0.2344450058483198E+01 + -0.2344932302091272E+01 + -0.2345414082457748E+01 + -0.2345895401216149E+01 + -0.2346376260000000E+01 + -0.2346856660271031E+01 + -0.2347336602803790E+01 + -0.2347816088201035E+01 + -0.2348295117065520E+01 + -0.2348773690000000E+01 + -0.2349251807712681E+01 + -0.2349729471333566E+01 + -0.2350206682098112E+01 + -0.2350683441241771E+01 + -0.2351159750000000E+01 + -0.2351635609598247E+01 + -0.2352111021221945E+01 + -0.2352585986046518E+01 + -0.2353060505247394E+01 + -0.2353534580000000E+01 + -0.2354008211414330E+01 + -0.2354481400338655E+01 + -0.2354954147555815E+01 + -0.2355426453848651E+01 + -0.2355898320000000E+01 + -0.2356369746904433E+01 + -0.2356840735903435E+01 + -0.2357311288450220E+01 + -0.2357781405998004E+01 + -0.2358251090000000E+01 + -0.2358720341767938E+01 + -0.2359189162047606E+01 + -0.2359657551443304E+01 + -0.2360125510559335E+01 + -0.2360593040000000E+01 + -0.2361060140503814E+01 + -0.2361526813346142E+01 + -0.2361993059936563E+01 + -0.2362458881684657E+01 + -0.2362924280000000E+01 + -0.2363389256216808E+01 + -0.2363853811367827E+01 + -0.2364317946410444E+01 + -0.2364781662302040E+01 + -0.2365244960000000E+01 + -0.2365707840468958E+01 + -0.2366170304702550E+01 + -0.2366632353701663E+01 + -0.2367093988467184E+01 + -0.2367555210000000E+01 + -0.2368016019347361E+01 + -0.2368476417741973E+01 + -0.2368936406462904E+01 + -0.2369395986789224E+01 + -0.2369855160000000E+01 + -0.2370313927261598E+01 + -0.2370772289289558E+01 + -0.2371230246686721E+01 + -0.2371687800055922E+01 + -0.2372144950000000E+01 + -0.2372601697286250E+01 + -0.2373058043339795E+01 + -0.2373513989750214E+01 + -0.2373969538107089E+01 + -0.2374424690000000E+01 + -0.2374879446873404E+01 + -0.2375333809591264E+01 + -0.2375787778872422E+01 + -0.2376241355435721E+01 + -0.2376694540000000E+01 + -0.2377147333380137E+01 + -0.2377599736775150E+01 + -0.2378051751480095E+01 + -0.2378503378790027E+01 + -0.2378954620000000E+01 + -0.2379405476326050E+01 + -0.2379855948668136E+01 + -0.2380306037847197E+01 + -0.2380755744684172E+01 + -0.2381205070000000E+01 + -0.2381654014675663E+01 + -0.2382102579832305E+01 + -0.2382550766651117E+01 + -0.2382998576313286E+01 + -0.2383446010000000E+01 + -0.2383893068891301E+01 + -0.2384339754162643E+01 + -0.2384786066988334E+01 + -0.2385232008542684E+01 + -0.2385677580000000E+01 + -0.2386122782479135E+01 + -0.2386567616877124E+01 + -0.2387012084035546E+01 + -0.2387456184795978E+01 + -0.2387899920000000E+01 + -0.2388343290552158E+01 + -0.2388786297608860E+01 + -0.2389228942389484E+01 + -0.2389671226113405E+01 + -0.2390113150000000E+01 + -0.2390554715232235E+01 + -0.2390995922847436E+01 + -0.2391436773846519E+01 + -0.2391877269230402E+01 + -0.2392317410000000E+01 + -0.2392757197158904E+01 + -0.2393196631721398E+01 + -0.2393635714704440E+01 + -0.2394074447124988E+01 + -0.2394512830000000E+01 + -0.2394950864372149E+01 + -0.2395388551386972E+01 + -0.2395825892215720E+01 + -0.2396262888029646E+01 + -0.2396699540000000E+01 + -0.2397135849272500E+01 + -0.2397571816890714E+01 + -0.2398007443872680E+01 + -0.2398442731236430E+01 + -0.2398877680000000E+01 + -0.2399312291177854E+01 + -0.2399746565770171E+01 + -0.2400180504773562E+01 + -0.2400614109184635E+01 + -0.2401047380000000E+01 + -0.2401480318256086E+01 + -0.2401912925148601E+01 + -0.2402345201913073E+01 + -0.2402777149785030E+01 + -0.2403208770000000E+01 + -0.2403640063717802E+01 + -0.2404071031795424E+01 + -0.2404501675014145E+01 + -0.2404931994155244E+01 + -0.2405361990000000E+01 + -0.2405791663432705E+01 + -0.2406221015749701E+01 + -0.2406650048350346E+01 + -0.2407078762633993E+01 + -0.2407507160000000E+01 + -0.2407935241751379E+01 + -0.2408363008805771E+01 + -0.2408790461984474E+01 + -0.2409217602108784E+01 + -0.2409644430000000E+01 + -0.2410070946521779E+01 + -0.2410497152707215E+01 + -0.2410923049631762E+01 + -0.2411348638370872E+01 + -0.2411773920000000E+01 + -0.2412198895601505E+01 + -0.2412623566285368E+01 + -0.2413047933168480E+01 + -0.2413471997367728E+01 + -0.2413895760000000E+01 + -0.2414319222192202E+01 + -0.2414742385111311E+01 + -0.2415165249934318E+01 + -0.2415587817838217E+01 + -0.2416010090000000E+01 + -0.2416432067549685E+01 + -0.2416853751429388E+01 + -0.2417275142534248E+01 + -0.2417696241759405E+01 + -0.2418117050000000E+01 + -0.2418537568169057E+01 + -0.2418957797251139E+01 + -0.2419377738248691E+01 + -0.2419797392164163E+01 + -0.2420216760000000E+01 + -0.2420635842814087E+01 + -0.2421054641886059E+01 + -0.2421473158550988E+01 + -0.2421891394143944E+01 + -0.2422309350000000E+01 + -0.2422727027374593E+01 + -0.2423144427204624E+01 + -0.2423561550347359E+01 + -0.2423978397660062E+01 + -0.2424394970000000E+01 + -0.2424811268247538E+01 + -0.2425227293375442E+01 + -0.2425643046379577E+01 + -0.2426058528255808E+01 + -0.2426473740000000E+01 + -0.2426888682675253E+01 + -0.2427303357613607E+01 + -0.2427717766214333E+01 + -0.2428131909876706E+01 + -0.2428545790000000E+01 + -0.2428959407851449E+01 + -0.2429372764170132E+01 + -0.2429785859563092E+01 + -0.2430198694637367E+01 + -0.2430611270000000E+01 + -0.2431023586398951E+01 + -0.2431435645145864E+01 + -0.2431847447693301E+01 + -0.2432258995493825E+01 + -0.2432670290000000E+01 + -0.2433081332552746E+01 + -0.2433492124046412E+01 + -0.2433902665263706E+01 + -0.2434312956987333E+01 + -0.2434723000000000E+01 + -0.2435132795150065E+01 + -0.2435542343548487E+01 + -0.2435951646371877E+01 + -0.2436360704796844E+01 + -0.2436769520000000E+01 + -0.2437178093166994E+01 + -0.2437586425519640E+01 + -0.2437994518288788E+01 + -0.2438402372705291E+01 + -0.2438809990000000E+01 + -0.2439217371301957E+01 + -0.2439624517332955E+01 + -0.2440031428712974E+01 + -0.2440438106061995E+01 + -0.2440844550000000E+01 + -0.2441250761305177E+01 + -0.2441656741388541E+01 + -0.2442062491819318E+01 + -0.2442468014166729E+01 + -0.2442873310000000E+01 + -0.2443278380757336E+01 + -0.2443683227352880E+01 + -0.2444087850569755E+01 + -0.2444492251191087E+01 + -0.2444896430000000E+01 + -0.2445300387825478E+01 + -0.2445704125679940E+01 + -0.2446107644621663E+01 + -0.2446510945708924E+01 + -0.2446914030000000E+01 + -0.2447316898580750E+01 + -0.2447719552647359E+01 + -0.2448121993423593E+01 + -0.2448524222133218E+01 + -0.2448926240000000E+01 + -0.2449328048171521E+01 + -0.2449729647490623E+01 + -0.2450131038723965E+01 + -0.2450532222638205E+01 + -0.2450933200000000E+01 + -0.2451333971693167E+01 + -0.2451734539070149E+01 + -0.2452134903600548E+01 + -0.2452535066753964E+01 + -0.2452935030000000E+01 + -0.2453334794655812E+01 + -0.2453734361428781E+01 + -0.2454133730873845E+01 + -0.2454532903545939E+01 + -0.2454931880000000E+01 + -0.2455330660963585E+01 + -0.2455729247854726E+01 + -0.2456127642264074E+01 + -0.2456525845782281E+01 + -0.2456923860000000E+01 + -0.2457321686369848E+01 + -0.2457719325792316E+01 + -0.2458116779029860E+01 + -0.2458514046844936E+01 + -0.2458911130000000E+01 + -0.2459308029317021E+01 + -0.2459704745856009E+01 + -0.2460101280736486E+01 + -0.2460497635077976E+01 + -0.2460893810000000E+01 + -0.2461289806602069E+01 + -0.2461685625903649E+01 + -0.2462081268904195E+01 + -0.2462476736603160E+01 + -0.2462872030000000E+01 + -0.2463267150114703E+01 + -0.2463662098049395E+01 + -0.2464056874926735E+01 + -0.2464451481869384E+01 + -0.2464845920000000E+01 + -0.2465240190459119E+01 + -0.2465634294458772E+01 + -0.2466028233228866E+01 + -0.2466422007999306E+01 + -0.2466815620000000E+01 + -0.2467209070368822E+01 + -0.2467602359875518E+01 + -0.2467995489197804E+01 + -0.2468388459013393E+01 + -0.2468781270000000E+01 + -0.2469173922945594E+01 + -0.2469566419079156E+01 + -0.2469958759739921E+01 + -0.2470350946267124E+01 + -0.2470742980000000E+01 + -0.2471134862248802E+01 + -0.2471526594207858E+01 + -0.2471918177042513E+01 + -0.2472309611918111E+01 + -0.2472700900000000E+01 + -0.2473092042379196E+01 + -0.2473483039849411E+01 + -0.2473873893130028E+01 + -0.2474264602940430E+01 + -0.2474655170000000E+01 + -0.2475045595114412E+01 + -0.2475435879434497E+01 + -0.2475826024197376E+01 + -0.2476216030640170E+01 + -0.2476605900000000E+01 + -0.2476995633323156E+01 + -0.2477385230892601E+01 + -0.2477774692800468E+01 + -0.2478164019138891E+01 + -0.2478553210000000E+01 + -0.2478942265432965E+01 + -0.2479331185315099E+01 + -0.2479719969480751E+01 + -0.2480108617764268E+01 + -0.2480497130000000E+01 + -0.2480885506064982E+01 + -0.2481273746007001E+01 + -0.2481661849916528E+01 + -0.2482049817884037E+01 + -0.2482437650000000E+01 + -0.2482825346307105E+01 + -0.2483212906656897E+01 + -0.2483600330853137E+01 + -0.2483987618699584E+01 + -0.2484374770000000E+01 + -0.2484761784626599E+01 + -0.2485148662725412E+01 + -0.2485535404510926E+01 + -0.2485922010197626E+01 + -0.2486308480000000E+01 + -0.2486694814066501E+01 + -0.2487081012281457E+01 + -0.2487467074463162E+01 + -0.2487853000429911E+01 + -0.2488238790000000E+01 + -0.2488624443027397E+01 + -0.2489009959508763E+01 + -0.2489395339476429E+01 + -0.2489780582962731E+01 + -0.2490165690000000E+01 + -0.2490550660623911E+01 + -0.2490935494883494E+01 + -0.2491320192831122E+01 + -0.2491704754519167E+01 + -0.2492089180000000E+01 + -0.2492473469276961E+01 + -0.2492857622157262E+01 + -0.2493241638399082E+01 + -0.2493625517760602E+01 + -0.2494009260000000E+01 + -0.2494392864988245E+01 + -0.2494776333047458E+01 + -0.2495159664612548E+01 + -0.2495542860118425E+01 + -0.2495925920000000E+01 + -0.2496308844530060E+01 + -0.2496691633332908E+01 + -0.2497074285870726E+01 + -0.2497456801605696E+01 + -0.2497839180000000E+01 + -0.2498221420651516E+01 + -0.2498603523700912E+01 + -0.2498985489424548E+01 + -0.2499367318098790E+01 + -0.2499749010000000E+01 + -0.2500130565343875E+01 + -0.2500511984103447E+01 + -0.2500893266191081E+01 + -0.2501274411519144E+01 + -0.2501655420000000E+01 + -0.2502036291572984E+01 + -0.2502417026285302E+01 + -0.2502797624211127E+01 + -0.2503178085424636E+01 + -0.2503558410000000E+01 + -0.2503938597964190E+01 + -0.2504318649155347E+01 + -0.2504698563364410E+01 + -0.2505078340382315E+01 + -0.2505457980000000E+01 + -0.2505837482090259E+01 + -0.2506216846853312E+01 + -0.2506596074571235E+01 + -0.2506975165526105E+01 + -0.2507354120000000E+01 + -0.2507732938154775E+01 + -0.2508111619671406E+01 + -0.2508490164110651E+01 + -0.2508868571033263E+01 + -0.2509246840000000E+01 + -0.2509624970730641E+01 + -0.2510002963581062E+01 + -0.2510380819066163E+01 + -0.2510758537700843E+01 + -0.2511136120000000E+01 + -0.2511513566282660E+01 + -0.2511890876084344E+01 + -0.2512268048744698E+01 + -0.2512645083603368E+01 + -0.2513021980000000E+01 + -0.2513398737498718E+01 + -0.2513775356561561E+01 + -0.2514151837875045E+01 + -0.2514528182125686E+01 + -0.2514904390000000E+01 + -0.2515280461962466E+01 + -0.2515656397589411E+01 + -0.2516032196235122E+01 + -0.2516407857253889E+01 + -0.2516783380000000E+01 + -0.2517158764011417E+01 + -0.2517534009560796E+01 + -0.2517909117104467E+01 + -0.2518284087098758E+01 + -0.2518658920000000E+01 + -0.2519033616151866E+01 + -0.2519408175447406E+01 + -0.2519782597667013E+01 + -0.2520156882591080E+01 + -0.2520531030000000E+01 + -0.2520905039701117E+01 + -0.2521278911609578E+01 + -0.2521652645667481E+01 + -0.2522026241816922E+01 + -0.2522399700000000E+01 + -0.2522773020163664E+01 + -0.2523146202274280E+01 + -0.2523519246303063E+01 + -0.2523892152221231E+01 + -0.2524264920000000E+01 + -0.2524637549644223E+01 + -0.2525010041293300E+01 + -0.2525382395120265E+01 + -0.2525754611298154E+01 + -0.2526126690000000E+01 + -0.2526498631339440E+01 + -0.2526870435192517E+01 + -0.2527242101375874E+01 + -0.2527613629706154E+01 + -0.2527985020000000E+01 + -0.2528356272118014E+01 + -0.2528727386096629E+01 + -0.2529098362016238E+01 + -0.2529469199957231E+01 + -0.2529839900000000E+01 + -0.2530210462188503E+01 + -0.2530580886420965E+01 + -0.2530951172559175E+01 + -0.2531321320464923E+01 + -0.2531691330000000E+01 + -0.2532061201047972E+01 + -0.2532430933579510E+01 + -0.2532800527587062E+01 + -0.2533169983063077E+01 + -0.2533539300000000E+01 + -0.2533908478419610E+01 + -0.2534277518460995E+01 + -0.2534646420292576E+01 + -0.2535015184082771E+01 + -0.2535383810000000E+01 + -0.2535752298153590E+01 + -0.2536120648416509E+01 + -0.2536488860602633E+01 + -0.2536856934525838E+01 + -0.2537224870000000E+01 + -0.2537592666886029E+01 + -0.2537960325232968E+01 + -0.2538327845136892E+01 + -0.2538695226693878E+01 + -0.2539062470000000E+01 + -0.2539429575102293E+01 + -0.2539796541851619E+01 + -0.2540163370049799E+01 + -0.2540530059498653E+01 + -0.2540896610000000E+01 + -0.2541263021424799E+01 + -0.2541629293920555E+01 + -0.2541995427703912E+01 + -0.2542361422991513E+01 + -0.2542727280000000E+01 + -0.2543092998878511E+01 + -0.2543458579506160E+01 + -0.2543824021694553E+01 + -0.2544189325255297E+01 + -0.2544554490000000E+01 + -0.2544919515781155E+01 + -0.2545284402614804E+01 + -0.2545649150557876E+01 + -0.2546013759667298E+01 + -0.2546378230000000E+01 + -0.2546742561596869E+01 + -0.2547106754434624E+01 + -0.2547470808473945E+01 + -0.2547834723675511E+01 + -0.2548198500000000E+01 + -0.2548562137431371E+01 + -0.2548925636046700E+01 + -0.2549288995946344E+01 + -0.2549652217230658E+01 + -0.2550015300000000E+01 + -0.2550378244277649E+01 + -0.2550741049778576E+01 + -0.2551103716140680E+01 + -0.2551466243001856E+01 + -0.2551828630000000E+01 + -0.2552190876898036E+01 + -0.2552552983958995E+01 + -0.2552914951570936E+01 + -0.2553276780121918E+01 + -0.2553638470000000E+01 + -0.2554000021490209E+01 + -0.2554361434465446E+01 + -0.2554722708695578E+01 + -0.2555083843950473E+01 + -0.2555444840000000E+01 + -0.2555805696661127E+01 + -0.2556166413939222E+01 + -0.2556526991886754E+01 + -0.2556887430556190E+01 + -0.2557247730000000E+01 + -0.2557607890265282E+01 + -0.2557967911377665E+01 + -0.2558327793357407E+01 + -0.2558687536224765E+01 + -0.2559047140000000E+01 + -0.2559406604677743E+01 + -0.2559765930150117E+01 + -0.2560125116283619E+01 + -0.2560484162944749E+01 + -0.2560843070000000E+01 + -0.2561201837343748E+01 + -0.2561560464981869E+01 + -0.2561918952948116E+01 + -0.2562277301276242E+01 + -0.2562635510000000E+01 + -0.2562993579147266E+01 + -0.2563351508722408E+01 + -0.2563709298723917E+01 + -0.2564066949150284E+01 + -0.2564424460000000E+01 + -0.2564781831267189E+01 + -0.2565139062928501E+01 + -0.2565496154956218E+01 + -0.2565853107322623E+01 + -0.2566209920000000E+01 + -0.2566566592983980E+01 + -0.2566923126363591E+01 + -0.2567279520251213E+01 + -0.2567635774759223E+01 + -0.2567991890000000E+01 + -0.2568347865996893E+01 + -0.2568703702417134E+01 + -0.2569059398838930E+01 + -0.2569414954840484E+01 + -0.2569770370000000E+01 + -0.2570125644068450E+01 + -0.2570480777487871E+01 + -0.2570835770873067E+01 + -0.2571190624838842E+01 + -0.2571545340000000E+01 + -0.2571899916769308E+01 + -0.2572254354751382E+01 + -0.2572608653348802E+01 + -0.2572962811964149E+01 + -0.2573316830000000E+01 + -0.2573670707014319E+01 + -0.2574024443186601E+01 + -0.2574378038851723E+01 + -0.2574731494344564E+01 + -0.2575084810000000E+01 + -0.2575437986053415E+01 + -0.2575791022342212E+01 + -0.2576143918604303E+01 + -0.2576496674577596E+01 + -0.2576849290000000E+01 + -0.2577201764692022E+01 + -0.2577554098804549E+01 + -0.2577906292571065E+01 + -0.2578258346225054E+01 + -0.2578610260000000E+01 + -0.2578962034058498E+01 + -0.2579313668279593E+01 + -0.2579665162471438E+01 + -0.2580016516442188E+01 + -0.2580367730000000E+01 + -0.2580718802993984E+01 + -0.2581069735437080E+01 + -0.2581420527383184E+01 + -0.2581771178886192E+01 + -0.2582121690000000E+01 + -0.2582472060765565E+01 + -0.2582822291172087E+01 + -0.2583172381195826E+01 + -0.2583522330813044E+01 + -0.2583872140000000E+01 + -0.2584221808743756E+01 + -0.2584571337074573E+01 + -0.2584920725033512E+01 + -0.2585269972661634E+01 + -0.2585619080000000E+01 + -0.2585968047059410E+01 + -0.2586316873729619E+01 + -0.2586665559870124E+01 + -0.2587014105340419E+01 + -0.2587362510000000E+01 + -0.2587710773738605E+01 + -0.2588058896566949E+01 + -0.2588406878525991E+01 + -0.2588754719656688E+01 + -0.2589102420000000E+01 + -0.2589449979586171E+01 + -0.2589797398402585E+01 + -0.2590144676425914E+01 + -0.2590491813632829E+01 + -0.2590838810000000E+01 + -0.2591185665516713E+01 + -0.2591532380222711E+01 + -0.2591878954170352E+01 + -0.2592225387411996E+01 + -0.2592571680000000E+01 + -0.2592917831946978E+01 + -0.2593263843106572E+01 + -0.2593609713292676E+01 + -0.2593955442319186E+01 + -0.2594301030000000E+01 + -0.2594646476215373E+01 + -0.2594991781111002E+01 + -0.2595336944898944E+01 + -0.2595681967791258E+01 + -0.2596026850000000E+01 + -0.2596371591671531E+01 + -0.2596716192689422E+01 + -0.2597060652871548E+01 + -0.2597404972035783E+01 + -0.2597749150000000E+01 + -0.2598093186618503E+01 + -0.2598437081891309E+01 + -0.2598780835854863E+01 + -0.2599124448545612E+01 + -0.2599467920000000E+01 + -0.2599811250254457E+01 + -0.2600154439345342E+01 + -0.2600497487308999E+01 + -0.2600840394181771E+01 + -0.2601183160000000E+01 + -0.2601525784763671E+01 + -0.2601868268327324E+01 + -0.2602210610509142E+01 + -0.2602552811127307E+01 + -0.2602894870000000E+01 + -0.2603236787010861E+01 + -0.2603578562305362E+01 + -0.2603920196094432E+01 + -0.2604261688589002E+01 + -0.2604603040000000E+01 + -0.2604944250472886E+01 + -0.2605285319891229E+01 + -0.2605626248073129E+01 + -0.2605967034836687E+01 + -0.2606307680000000E+01 + -0.2606648183417597E+01 + -0.2606988545089723E+01 + -0.2607328765053051E+01 + -0.2607668843344252E+01 + -0.2608008780000000E+01 + -0.2608348575056724E+01 + -0.2608688228549877E+01 + -0.2609027740514668E+01 + -0.2609367110986306E+01 + -0.2609706340000000E+01 + -0.2610045427555506E+01 + -0.2610384373510768E+01 + -0.2610723177688277E+01 + -0.2611061839910524E+01 + -0.2611400360000000E+01 + -0.2611738737841252E+01 + -0.2612076973567052E+01 + -0.2612415067372225E+01 + -0.2612753019451599E+01 + -0.2613090830000000E+01 + -0.2613428499159484E+01 + -0.2613766026861025E+01 + -0.2614103412982823E+01 + -0.2614440657403081E+01 + -0.2614777760000000E+01 + -0.2615114720640810E+01 + -0.2615451539148849E+01 + -0.2615788215336484E+01 + -0.2616124749016079E+01 + -0.2616461140000000E+01 + -0.2616797388197276E+01 + -0.2617133493903578E+01 + -0.2617469457511243E+01 + -0.2617805279412606E+01 + -0.2618140960000000E+01 + -0.2618476499530088E+01 + -0.2618811897716838E+01 + -0.2619147154138543E+01 + -0.2619482268373500E+01 + -0.2619817240000000E+01 + -0.2620152068722373E+01 + -0.2620486754749071E+01 + -0.2620821298414584E+01 + -0.2621155700053398E+01 + -0.2621489960000000E+01 + -0.2621824078460423E+01 + -0.2622158055126878E+01 + -0.2622491889563122E+01 + -0.2622825581332910E+01 + -0.2623159130000000E+01 + -0.2623492535275936E+01 + -0.2623825797463416E+01 + -0.2624158917012929E+01 + -0.2624491894374961E+01 + -0.2624824730000000E+01 + -0.2625157424195835E+01 + -0.2625489976699457E+01 + -0.2625822387105163E+01 + -0.2626154655007246E+01 + -0.2626486780000000E+01 + -0.2626818761780727E+01 + -0.2627150600458755E+01 + -0.2627482296246419E+01 + -0.2627813849356056E+01 + -0.2628145260000000E+01 + -0.2628476528361259E+01 + -0.2628807654505525E+01 + -0.2629138638469161E+01 + -0.2629469480288532E+01 + -0.2629800180000000E+01 + -0.2630130737574238E+01 + -0.2630461152719147E+01 + -0.2630791425076936E+01 + -0.2631121554289817E+01 + -0.2631451540000000E+01 + -0.2631781381981792E+01 + -0.2632111080537891E+01 + -0.2632440636103094E+01 + -0.2632770049112198E+01 + -0.2633099320000000E+01 + -0.2633428449058597E+01 + -0.2633757436009292E+01 + -0.2634086280430688E+01 + -0.2634414981901390E+01 + -0.2634743540000000E+01 + -0.2635071954423820E+01 + -0.2635400225344942E+01 + -0.2635728353054153E+01 + -0.2636056337842243E+01 + -0.2636384180000000E+01 + -0.2636711879726122E+01 + -0.2637039436850941E+01 + -0.2637366851112700E+01 + -0.2637694122249639E+01 + -0.2638021250000000E+01 + -0.2638348234191692E+01 + -0.2638675075011293E+01 + -0.2639001772735048E+01 + -0.2639328327639202E+01 + -0.2639654740000000E+01 + -0.2639981009987110E+01 + -0.2640307137343886E+01 + -0.2640633121707108E+01 + -0.2640958962713553E+01 + -0.2641284660000000E+01 + -0.2641610213299871E+01 + -0.2641935622733164E+01 + -0.2642260888516522E+01 + -0.2642586010866586E+01 + -0.2642910990000000E+01 + -0.2643235826093407E+01 + -0.2643560519163458E+01 + -0.2643885069186806E+01 + -0.2644209476140102E+01 + -0.2644533740000000E+01 + -0.2644857860726501E+01 + -0.2645181838213004E+01 + -0.2645505672336256E+01 + -0.2645829362973005E+01 + -0.2646152910000000E+01 + -0.2646476313320589E+01 + -0.2646799572944528E+01 + -0.2647122688908171E+01 + -0.2647445661247876E+01 + -0.2647768490000000E+01 + -0.2648091175191143E+01 + -0.2648413716808887E+01 + -0.2648736114831060E+01 + -0.2649058369235489E+01 + -0.2649380480000000E+01 + -0.2649702447114840E+01 + -0.2650024270619924E+01 + -0.2650345950567589E+01 + -0.2650667487010169E+01 + -0.2650988880000000E+01 + -0.2651310129549499E+01 + -0.2651631235511417E+01 + -0.2651952197698584E+01 + -0.2652273015923834E+01 + -0.2652593690000000E+01 + -0.2652914219807163E+01 + -0.2653234605494409E+01 + -0.2653554847278074E+01 + -0.2653874945374492E+01 + -0.2654194900000000E+01 + -0.2654514711301848E+01 + -0.2654834379150945E+01 + -0.2655153903349120E+01 + -0.2655473283698196E+01 + -0.2655792520000000E+01 + -0.2656111612105447E+01 + -0.2656430560061808E+01 + -0.2656749363965447E+01 + -0.2657068023912724E+01 + -0.2657386540000000E+01 + -0.2657704912276366E+01 + -0.2658023140601821E+01 + -0.2658341224789093E+01 + -0.2658659164650910E+01 + -0.2658976960000000E+01 + -0.2659294610709091E+01 + -0.2659612116890909E+01 + -0.2659929478718181E+01 + -0.2660246696363636E+01 + -0.2660563770000000E+01 + -0.2660880699767273E+01 + -0.2661197485674546E+01 + -0.2661514127698182E+01 + -0.2661830625814546E+01 + -0.2662146980000000E+01 + -0.2662463190221819E+01 + -0.2662779256410909E+01 + -0.2663095178489091E+01 + -0.2663410956378182E+01 + -0.2663726590000000E+01 + -0.2664042079265455E+01 + -0.2664357424041818E+01 + -0.2664672624185455E+01 + -0.2664987679552727E+01 + -0.2665302590000000E+01 + -0.2665617355436364E+01 + -0.2665931975981819E+01 + -0.2666246451809091E+01 + -0.2666560783090909E+01 + -0.2666874970000000E+01 + -0.2667189012669091E+01 + -0.2667502911070909E+01 + -0.2667816665138181E+01 + -0.2668130274803636E+01 + -0.2668443740000000E+01 + -0.2668757060687274E+01 + -0.2669070236934547E+01 + -0.2669383268838184E+01 + -0.2669696156494547E+01 + -0.2670008900000000E+01 + -0.2670321499381815E+01 + -0.2670633954390903E+01 + -0.2670946264709083E+01 + -0.2671258430018176E+01 + -0.2671570450000000E+01 + -0.2671882324425466E+01 + -0.2672194053421841E+01 + -0.2672505637205483E+01 + -0.2672817075992751E+01 + -0.2673128370000000E+01 + -0.2673439519396323E+01 + -0.2673750524161734E+01 + -0.2674061384228985E+01 + -0.2674372099530824E+01 + -0.2674682670000000E+01 + -0.2674993095589247E+01 + -0.2675303376331224E+01 + -0.2675613512278579E+01 + -0.2675923503483956E+01 + -0.2676233350000000E+01 + -0.2676543051846693E+01 + -0.2676852608913369E+01 + -0.2677162021056698E+01 + -0.2677471288133351E+01 + -0.2677780410000000E+01 + -0.2678089386543982E+01 + -0.2678398217775301E+01 + -0.2678706903734630E+01 + -0.2679015444462639E+01 + -0.2679323840000000E+01 + -0.2679632090377380E+01 + -0.2679940195585427E+01 + -0.2680248155604784E+01 + -0.2680555970416093E+01 + -0.2680863640000000E+01 + -0.2681171164346499E+01 + -0.2681478543482993E+01 + -0.2681785777446237E+01 + -0.2682092866272988E+01 + -0.2682399810000000E+01 + -0.2682706608636626E+01 + -0.2683013262082604E+01 + -0.2683319770210268E+01 + -0.2683626132891955E+01 + -0.2683932350000000E+01 + -0.2684238421427000E+01 + -0.2684544347146595E+01 + -0.2684850127152691E+01 + -0.2685155761439192E+01 + -0.2685461250000000E+01 + -0.2685766592855377E+01 + -0.2686071790131016E+01 + -0.2686376841978967E+01 + -0.2686681748551278E+01 + -0.2686986510000000E+01 + -0.2687291126431491E+01 + -0.2687595597769340E+01 + -0.2687899923891443E+01 + -0.2688204104675698E+01 + -0.2688508140000000E+01 + -0.2688812029738658E+01 + -0.2689115773751624E+01 + -0.2689419371895261E+01 + -0.2689722824025932E+01 + -0.2690026130000000E+01 + -0.2690329289733876E+01 + -0.2690632303384164E+01 + -0.2690935171167513E+01 + -0.2691237893300575E+01 + -0.2691540470000000E+01 + -0.2691842901405837E+01 + -0.2692145187351722E+01 + -0.2692447327594688E+01 + -0.2692749321891770E+01 + -0.2693051170000000E+01 + -0.2693352871762776E+01 + -0.2693654427368950E+01 + -0.2693955837093735E+01 + -0.2694257101212346E+01 + -0.2694558220000000E+01 + -0.2694859193623058E+01 + -0.2695160021812480E+01 + -0.2695460704190372E+01 + -0.2695761240378843E+01 + -0.2696061630000000E+01 + -0.2696361872784991E+01 + -0.2696661968901132E+01 + -0.2696961918624776E+01 + -0.2697261722232280E+01 + -0.2697561380000000E+01 + -0.2697860892116977E+01 + -0.2698160258422995E+01 + -0.2698459478670525E+01 + -0.2698758552612036E+01 + -0.2699057480000000E+01 + -0.2699356260667102E+01 + -0.2699654894766889E+01 + -0.2699953382533125E+01 + -0.2700251724199574E+01 + -0.2700549920000000E+01 + -0.2700847970094618E+01 + -0.2701145874349451E+01 + -0.2701443632556975E+01 + -0.2701741244509667E+01 + -0.2702038710000000E+01 + -0.2702336028874429E+01 + -0.2702633201195309E+01 + -0.2702930227078975E+01 + -0.2703227106641761E+01 + -0.2703523840000000E+01 + -0.2703820427207669E+01 + -0.2704116868069314E+01 + -0.2704413162327125E+01 + -0.2704709309723290E+01 + -0.2705005310000000E+01 + -0.2705301163014897E+01 + -0.2705596869087436E+01 + -0.2705892428652527E+01 + -0.2706187842145079E+01 + -0.2706483110000000E+01 + -0.2706778232492745E+01 + -0.2707073209260943E+01 + -0.2707368039782768E+01 + -0.2707662723536396E+01 + -0.2707957260000000E+01 + -0.2708251648774125E+01 + -0.2708545889948794E+01 + -0.2708839983736401E+01 + -0.2709133930349339E+01 + -0.2709427730000000E+01 + -0.2709721382890755E+01 + -0.2710014889183880E+01 + -0.2710308249031628E+01 + -0.2710601462586250E+01 + -0.2710894530000000E+01 + -0.2711187451342854E+01 + -0.2711480226355683E+01 + -0.2711772854697087E+01 + -0.2712065336025660E+01 + -0.2712357670000000E+01 + -0.2712649856377830E+01 + -0.2712941895313385E+01 + -0.2713233787060025E+01 + -0.2713525531871109E+01 + -0.2713817130000000E+01 + -0.2714108581625824E+01 + -0.2714399886630775E+01 + -0.2714691044822815E+01 + -0.2714982056009903E+01 + -0.2715272920000000E+01 + -0.2715563636638873E+01 + -0.2715854205923514E+01 + -0.2716144627888717E+01 + -0.2716434902569280E+01 + -0.2716725030000000E+01 + -0.2717015010218682E+01 + -0.2717304843275171E+01 + -0.2717594529222318E+01 + -0.2717884068112976E+01 + -0.2718173460000000E+01 + -0.2718462704886398E+01 + -0.2718751802575806E+01 + -0.2719040752822014E+01 + -0.2719329555378815E+01 + -0.2719618210000000E+01 + -0.2719906716555727E+01 + -0.2720195075381609E+01 + -0.2720483286929629E+01 + -0.2720771351651766E+01 + -0.2721059270000000E+01 + -0.2721347042250697E+01 + -0.2721634667977758E+01 + -0.2721922146579471E+01 + -0.2722209477454123E+01 + -0.2722496660000000E+01 + -0.2722783693801487E+01 + -0.2723070579187358E+01 + -0.2723357316672487E+01 + -0.2723643906771743E+01 + -0.2723930350000000E+01 + -0.2724216646703355E+01 + -0.2724502796552808E+01 + -0.2724788799050583E+01 + -0.2725074653698905E+01 + -0.2725360360000000E+01 + -0.2725645917625092E+01 + -0.2725931326921410E+01 + -0.2726216588405181E+01 + -0.2726501702592635E+01 + -0.2726786670000000E+01 + -0.2727071490956277E+01 + -0.2727356165041554E+01 + -0.2727640691648694E+01 + -0.2727925070170555E+01 + -0.2728209300000000E+01 + -0.2728493380709801E+01 + -0.2728777312592374E+01 + -0.2729061096120047E+01 + -0.2729344731765146E+01 + -0.2729628220000000E+01 + -0.2729911561164519E+01 + -0.2730194755068950E+01 + -0.2730477801391121E+01 + -0.2730760699808861E+01 + -0.2731043450000000E+01 + -0.2731326051752121E+01 + -0.2731608505291826E+01 + -0.2731890810955471E+01 + -0.2732172969079410E+01 + -0.2732454980000000E+01 + -0.2732736843906995E+01 + -0.2733018560403745E+01 + -0.2733300128946997E+01 + -0.2733581548993499E+01 + -0.2733862820000000E+01 + -0.2734143941579898E+01 + -0.2734424913973195E+01 + -0.2734705737576543E+01 + -0.2734986412786594E+01 + -0.2735266940000000E+01 + -0.2735547319533413E+01 + -0.2735827551383476E+01 + -0.2736107635466833E+01 + -0.2736387571700127E+01 + -0.2736667360000000E+01 + -0.2736947000286452E+01 + -0.2737226492492901E+01 + -0.2737505836556125E+01 + -0.2737785032412899E+01 + -0.2738064080000000E+01 + -0.2738342979240783E+01 + -0.2738621730004921E+01 + -0.2738900332148668E+01 + -0.2739178785528277E+01 + -0.2739457090000000E+01 + -0.2739735245470418E+01 + -0.2740013252047416E+01 + -0.2740291109889204E+01 + -0.2740568819153995E+01 + -0.2740846380000000E+01 + -0.2741123792557545E+01 + -0.2741401056845416E+01 + -0.2741678172854515E+01 + -0.2741955140575743E+01 + -0.2742231960000000E+01 + -0.2742508631099402E+01 + -0.2742785153770919E+01 + -0.2743061527892736E+01 + -0.2743337753343035E+01 + -0.2743613830000000E+01 + -0.2743889757764846E+01 + -0.2744165536630907E+01 + -0.2744441166614544E+01 + -0.2744716647732120E+01 + -0.2744991980000000E+01 + -0.2745267163441213E+01 + -0.2745542198105455E+01 + -0.2745817084049091E+01 + -0.2746091821328485E+01 + -0.2746366410000000E+01 + -0.2746640850070303E+01 + -0.2746915141347273E+01 + -0.2747189283589091E+01 + -0.2747463276553940E+01 + -0.2747737120000000E+01 + -0.2748010813797576E+01 + -0.2748284358265455E+01 + -0.2748557753834545E+01 + -0.2748831000935757E+01 + -0.2749104100000000E+01 + -0.2749377051299394E+01 + -0.2749649854470909E+01 + -0.2749922508992727E+01 + -0.2750195014343031E+01 + -0.2750467370000000E+01 + -0.2750739575564849E+01 + -0.2751011631130909E+01 + -0.2751283536914546E+01 + -0.2751555293132121E+01 + -0.2751826900000000E+01 + -0.2752098357721212E+01 + -0.2752369666445455E+01 + -0.2752640826309092E+01 + -0.2752911837448485E+01 + -0.2753182700000000E+01 + -0.2753453414030302E+01 + -0.2753723979327271E+01 + -0.2753994395609089E+01 + -0.2754264662593938E+01 + -0.2754534780000000E+01 + -0.2754804747597579E+01 + -0.2755074565365462E+01 + -0.2755344233334555E+01 + -0.2755613751535765E+01 + -0.2755883120000000E+01 + -0.2756152338779381E+01 + -0.2756421408010882E+01 + -0.2756690327852694E+01 + -0.2756959098463003E+01 + -0.2757227720000000E+01 + -0.2757496192564898E+01 + -0.2757764516031009E+01 + -0.2758032690214671E+01 + -0.2758300714932222E+01 + -0.2758568590000000E+01 + -0.2758836315281029E+01 + -0.2759103890825083E+01 + -0.2759371316728622E+01 + -0.2759638593088108E+01 + -0.2759905720000000E+01 + -0.2760172697510986E+01 + -0.2760439525468659E+01 + -0.2760706203670840E+01 + -0.2760972731915346E+01 + -0.2761239110000000E+01 + -0.2761505337795027E+01 + -0.2761771415460280E+01 + -0.2762037343228020E+01 + -0.2762303121330506E+01 + -0.2762568750000000E+01 + -0.2762834229388907E+01 + -0.2763099559330221E+01 + -0.2763364739577082E+01 + -0.2763629769882628E+01 + -0.2763894650000000E+01 + -0.2764159379769344E+01 + -0.2764423959378835E+01 + -0.2764688389103654E+01 + -0.2764952669218982E+01 + -0.2765216800000000E+01 + -0.2765480781613716E+01 + -0.2765744613794439E+01 + -0.2766008296168304E+01 + -0.2766271828361446E+01 + -0.2766535210000000E+01 + -0.2766798440815791E+01 + -0.2767061520963408E+01 + -0.2767324450703129E+01 + -0.2767587230295234E+01 + -0.2767849860000000E+01 + -0.2768112340003119E+01 + -0.2768374670191929E+01 + -0.2768636850379179E+01 + -0.2768898880377619E+01 + -0.2769160760000000E+01 + -0.2769422489091733E+01 + -0.2769684067628877E+01 + -0.2769945495620156E+01 + -0.2770206773074289E+01 + -0.2770467900000000E+01 + -0.2770728876429950E+01 + -0.2770989702492561E+01 + -0.2771250378340198E+01 + -0.2771510904125223E+01 + -0.2771771280000000E+01 + -0.2772031506068468E+01 + -0.2772291582240877E+01 + -0.2772551508379051E+01 + -0.2772811284344817E+01 + -0.2773070910000000E+01 + -0.2773330385216178E+01 + -0.2773589709903932E+01 + -0.2773848883983598E+01 + -0.2774107907375509E+01 + -0.2774366780000000E+01 + -0.2774625501786821E+01 + -0.2774884072703394E+01 + -0.2775142492726556E+01 + -0.2775400761833146E+01 + -0.2775658880000000E+01 + -0.2775916847236537E+01 + -0.2776174663682490E+01 + -0.2776432329510175E+01 + -0.2776689844891907E+01 + -0.2776947210000000E+01 + -0.2777204424947033E+01 + -0.2777461489606645E+01 + -0.2777718403792740E+01 + -0.2777975167319224E+01 + -0.2778231780000000E+01 + -0.2778488241695333E+01 + -0.2778744552450931E+01 + -0.2779000712358863E+01 + -0.2779256721511196E+01 + -0.2779512580000000E+01 + -0.2779768287871635E+01 + -0.2780023844989631E+01 + -0.2780279251171809E+01 + -0.2780534506235992E+01 + -0.2780789610000000E+01 + -0.2781044562338126E+01 + -0.2781299363350544E+01 + -0.2781554013193899E+01 + -0.2781808512024836E+01 + -0.2782062860000000E+01 + -0.2782317057255860E+01 + -0.2782571103848192E+01 + -0.2782824999812593E+01 + -0.2783078745184662E+01 + -0.2783332340000000E+01 + -0.2783585784238431E+01 + -0.2783839077656688E+01 + -0.2784092219955729E+01 + -0.2784345210836514E+01 + -0.2784598050000000E+01 + -0.2784850737230414E+01 + -0.2785103272645055E+01 + -0.2785355656444489E+01 + -0.2785607888829282E+01 + -0.2785859970000000E+01 + -0.2786111900119912E+01 + -0.2786363679203093E+01 + -0.2786615307226317E+01 + -0.2786866784166361E+01 + -0.2787118110000000E+01 + -0.2787369284689937E+01 + -0.2787620308142575E+01 + -0.2787871180250245E+01 + -0.2788121900905277E+01 + -0.2788372470000000E+01 + -0.2788622887440341E+01 + -0.2788873153186608E+01 + -0.2789123267212705E+01 + -0.2789373229492534E+01 + -0.2789623040000000E+01 + -0.2789872698748698E+01 + -0.2790122205910991E+01 + -0.2790371561698936E+01 + -0.2790620766324587E+01 + -0.2790869820000000E+01 + -0.2791118722844868E+01 + -0.2791367474609427E+01 + -0.2791616074951553E+01 + -0.2791864523529119E+01 + -0.2792112820000000E+01 + -0.2792360964111832E+01 + -0.2792608955971300E+01 + -0.2792856795774853E+01 + -0.2793104483718937E+01 + -0.2793352020000000E+01 + -0.2793599404787804E+01 + -0.2793846638145371E+01 + -0.2794093720109035E+01 + -0.2794340650715133E+01 + -0.2794587430000000E+01 + -0.2794834057936951E+01 + -0.2795080534247216E+01 + -0.2795326858589006E+01 + -0.2795573030620531E+01 + -0.2795819050000000E+01 + -0.2796064916504393E+01 + -0.2796310630385764E+01 + -0.2796556192014940E+01 + -0.2796801601762743E+01 + -0.2797046860000000E+01 + -0.2797291967005479E+01 + -0.2797536922689727E+01 + -0.2797781726871235E+01 + -0.2798026379368496E+01 + -0.2798270880000000E+01 + -0.2798515228593692E+01 + -0.2798759425015329E+01 + -0.2799003469140120E+01 + -0.2799247360843273E+01 + -0.2799491100000000E+01 + -0.2799734686539752E+01 + -0.2799978120608957E+01 + -0.2800221402408286E+01 + -0.2800464532138410E+01 + -0.2800707510000000E+01 + -0.2800950336127299E+01 + -0.2801193010388842E+01 + -0.2801435532586735E+01 + -0.2801677902523086E+01 + -0.2801920120000000E+01 + -0.2802162184871051E+01 + -0.2802404097195675E+01 + -0.2802645857084773E+01 + -0.2802887464649248E+01 + -0.2803128920000000E+01 + -0.2803370223188495E+01 + -0.2803611374028457E+01 + -0.2803852372274171E+01 + -0.2804093217679923E+01 + -0.2804333910000000E+01 + -0.2804574449094966E+01 + -0.2804814835250496E+01 + -0.2805055068858543E+01 + -0.2805295150311060E+01 + -0.2805535080000000E+01 + -0.2805774858191640E+01 + -0.2806014484649558E+01 + -0.2806253959011656E+01 + -0.2806493280915836E+01 + -0.2806732450000000E+01 + -0.2806971465978474E+01 + -0.2807210328871273E+01 + -0.2807449038774835E+01 + -0.2807687595785598E+01 + -0.2807926000000000E+01 + -0.2808164251494464E+01 + -0.2808402350265352E+01 + -0.2808640296289006E+01 + -0.2808878089541774E+01 + -0.2809115730000000E+01 + -0.2809353217643669E+01 + -0.2809590552467321E+01 + -0.2809827734469140E+01 + -0.2810064763647306E+01 + -0.2810301640000000E+01 + -0.2810538363530862E+01 + -0.2810774934265363E+01 + -0.2811011352234433E+01 + -0.2811247617469002E+01 + -0.2811483730000000E+01 + -0.2811719689832885E+01 + -0.2811955496871228E+01 + -0.2812191150993129E+01 + -0.2812426652076686E+01 + -0.2812662000000000E+01 + -0.2812897194657598E+01 + -0.2813132236009724E+01 + -0.2813367124033051E+01 + -0.2813601858704253E+01 + -0.2813836440000000E+01 + -0.2814070867936724E+01 + -0.2814305142689876E+01 + -0.2814539264474666E+01 + -0.2814773233506305E+01 + -0.2815007050000000E+01 + -0.2815240714075509E+01 + -0.2815474225470773E+01 + -0.2815707583828284E+01 + -0.2815940788790529E+01 + -0.2816173840000000E+01 + -0.2816406737201243E+01 + -0.2816639480547032E+01 + -0.2816872070292199E+01 + -0.2817104506691578E+01 + -0.2817336790000000E+01 + -0.2817568920399522E+01 + -0.2817800897781102E+01 + -0.2818032721962919E+01 + -0.2818264392763159E+01 + -0.2818495910000000E+01 + -0.2818727273520670E+01 + -0.2818958483288565E+01 + -0.2819189539296124E+01 + -0.2819420441535789E+01 + -0.2819651190000000E+01 + -0.2819881784717800E+01 + -0.2820112225864642E+01 + -0.2820342513652585E+01 + -0.2820572648293685E+01 + -0.2820802630000000E+01 + -0.2821032458888133E+01 + -0.2821262134692869E+01 + -0.2821491657053538E+01 + -0.2821721025609472E+01 + -0.2821950240000000E+01 + -0.2822179299969669E+01 + -0.2822408205683884E+01 + -0.2822636957413264E+01 + -0.2822865555428429E+01 + -0.2823094000000000E+01 + -0.2823322291313192E+01 + -0.2823550429211598E+01 + -0.2823778413453409E+01 + -0.2824006243796813E+01 + -0.2824233920000000E+01 + -0.2824461441897565E+01 + -0.2824688809629725E+01 + -0.2824916023413102E+01 + -0.2825143083464320E+01 + -0.2825369990000000E+01 + -0.2825596743176549E+01 + -0.2825823342909503E+01 + -0.2826049789054184E+01 + -0.2826276081465909E+01 + -0.2826502220000000E+01 + -0.2826728204516240E+01 + -0.2826954034892262E+01 + -0.2827179711010165E+01 + -0.2827405232752045E+01 + -0.2827630600000000E+01 + -0.2827855812678493E+01 + -0.2828080870881449E+01 + -0.2828305774745158E+01 + -0.2828530524405911E+01 + -0.2828755120000000E+01 + -0.2828979561649789E+01 + -0.2829203849421944E+01 + -0.2829427983369204E+01 + -0.2829651963544310E+01 + -0.2829875790000000E+01 + -0.2830099462722350E+01 + -0.2830322981430776E+01 + -0.2830546345778025E+01 + -0.2830769555416850E+01 + -0.2830992610000000E+01 + -0.2831215509300810E+01 + -0.2831438253574955E+01 + -0.2831660843198695E+01 + -0.2831883278548290E+01 + -0.2832105560000000E+01 + -0.2832327687834410E+01 + -0.2832549661949405E+01 + -0.2832771482147195E+01 + -0.2832993148229990E+01 + -0.2833214660000000E+01 + -0.2833436017281549E+01 + -0.2833657219987424E+01 + -0.2833878268052524E+01 + -0.2834099161411749E+01 + -0.2834319900000000E+01 + -0.2834540483759393E+01 + -0.2834760912660900E+01 + -0.2834981186682711E+01 + -0.2835201305803015E+01 + -0.2835421270000000E+01 + -0.2835641079280881E+01 + -0.2835860733768977E+01 + -0.2836080233616633E+01 + -0.2836299578976192E+01 + -0.2836518770000000E+01 + -0.2836737806797083E+01 + -0.2836956689303192E+01 + -0.2837175417410759E+01 + -0.2837393991012218E+01 + -0.2837612410000000E+01 + -0.2837830674250788E+01 + -0.2838048783578257E+01 + -0.2838266737780332E+01 + -0.2838484536654938E+01 + -0.2838702180000000E+01 + -0.2838919667719766E+01 + -0.2839137000143781E+01 + -0.2839354177707913E+01 + -0.2839571200848030E+01 + -0.2839788070000000E+01 + -0.2840004785430148E+01 + -0.2840221346726620E+01 + -0.2840437753308018E+01 + -0.2840654004592944E+01 + -0.2840870100000000E+01 + -0.2841086039119642E+01 + -0.2841301822229740E+01 + -0.2841517449780016E+01 + -0.2841732922220195E+01 + -0.2841948240000000E+01 + -0.2842163403451284E+01 + -0.2842378412434421E+01 + -0.2842593266691917E+01 + -0.2842807965966275E+01 + -0.2843022510000000E+01 + -0.2843236898595222E+01 + -0.2843451131792575E+01 + -0.2843665209692316E+01 + -0.2843879132394705E+01 + -0.2844092900000000E+01 + -0.2844306512567827E+01 + -0.2844519969995280E+01 + -0.2844733272138819E+01 + -0.2844946418854905E+01 + -0.2845159410000000E+01 + -0.2845372245453470E+01 + -0.2845584925186307E+01 + -0.2845797449192409E+01 + -0.2846009817465674E+01 + -0.2846222030000000E+01 + -0.2846434086818293E+01 + -0.2846645988059493E+01 + -0.2846857733891546E+01 + -0.2847069324482400E+01 + -0.2847280760000000E+01 + -0.2847492040553356E+01 + -0.2847703166015720E+01 + -0.2847914136201406E+01 + -0.2848124950924728E+01 + -0.2848335610000000E+01 + -0.2848546113288283E+01 + -0.2848756460837628E+01 + -0.2848966652742830E+01 + -0.2849176689098689E+01 + -0.2849386570000000E+01 + -0.2849596295493512E+01 + -0.2849805865433770E+01 + -0.2850015279627273E+01 + -0.2850224537880517E+01 + -0.2850433640000000E+01 + -0.2850642585857671E+01 + -0.2850851375587291E+01 + -0.2851060009388077E+01 + -0.2851268487459241E+01 + -0.2851476810000000E+01 + -0.2851684977155806E+01 + -0.2851892988857065E+01 + -0.2852100844980421E+01 + -0.2852308545402518E+01 + -0.2852516090000000E+01 + -0.2852723478639105E+01 + -0.2852930711144449E+01 + -0.2853137787330240E+01 + -0.2853344707010687E+01 + -0.2853551470000000E+01 + -0.2853758076207774E+01 + -0.2853964525925142E+01 + -0.2854170819538622E+01 + -0.2854376957434735E+01 + -0.2854582940000000E+01 + -0.2854788767489800E+01 + -0.2854994439634986E+01 + -0.2855199956035271E+01 + -0.2855405316290371E+01 + -0.2855610520000000E+01 + -0.2855815566873024E+01 + -0.2856020457054914E+01 + -0.2856225190800292E+01 + -0.2856429768363780E+01 + -0.2856634190000000E+01 + -0.2856838455898103E+01 + -0.2857042565985358E+01 + -0.2857246520123561E+01 + -0.2857450318174509E+01 + -0.2857653960000000E+01 + -0.2857857445454563E+01 + -0.2858060774363655E+01 + -0.2858263946545465E+01 + -0.2858466961818184E+01 + -0.2858669820000000E+01 + -0.2858872521003645E+01 + -0.2859075065120023E+01 + -0.2859277452734578E+01 + -0.2859479684232755E+01 + -0.2859681760000000E+01 + -0.2859883680290855E+01 + -0.2860085444836253E+01 + -0.2860287053236222E+01 + -0.2860488505090795E+01 + -0.2860689800000000E+01 + -0.2860890937672935E+01 + -0.2861091918254967E+01 + -0.2861292742000532E+01 + -0.2861493409164065E+01 + -0.2861693920000000E+01 + -0.2861894274697405E+01 + -0.2862094473183878E+01 + -0.2862294515321648E+01 + -0.2862494400972945E+01 + -0.2862694130000000E+01 + -0.2862893702257444E+01 + -0.2863093117569521E+01 + -0.2863292375752875E+01 + -0.2863491476624153E+01 + -0.2863690420000000E+01 + -0.2863889205792819E+01 + -0.2864087834298040E+01 + -0.2864286305906851E+01 + -0.2864484621010442E+01 + -0.2864682780000000E+01 + -0.2864880783131282E+01 + -0.2865078630118322E+01 + -0.2865276320539720E+01 + -0.2865473853974079E+01 + -0.2865671230000000E+01 + -0.2865868448322052E+01 + -0.2866065509148673E+01 + -0.2866262412814269E+01 + -0.2866459159653243E+01 + -0.2866655750000000E+01 + -0.2866852184060509E+01 + -0.2867048461526985E+01 + -0.2867244581963206E+01 + -0.2867440544932952E+01 + -0.2867636350000000E+01 + -0.2867831996875913E+01 + -0.2868027485863387E+01 + -0.2868222817412906E+01 + -0.2868417991974950E+01 + -0.2868613010000000E+01 + -0.2868807871795840E+01 + -0.2869002577099465E+01 + -0.2869197125505169E+01 + -0.2869391516607249E+01 + -0.2869585750000000E+01 + -0.2869779825380725E+01 + -0.2869973742858753E+01 + -0.2870167502646417E+01 + -0.2870361104956055E+01 + -0.2870554550000000E+01 + -0.2870747837961260E+01 + -0.2870940968905526E+01 + -0.2871133942869162E+01 + -0.2871326759888532E+01 + -0.2871519420000000E+01 + -0.2871711923174237E+01 + -0.2871904269119144E+01 + -0.2872096457476934E+01 + -0.2872288487889816E+01 + -0.2872480360000000E+01 + -0.2872672073581795E+01 + -0.2872863628937897E+01 + -0.2873055026503102E+01 + -0.2873246266712204E+01 + -0.2873437350000000E+01 + -0.2873628276658586E+01 + -0.2873819046409269E+01 + -0.2874009658830660E+01 + -0.2874200113501367E+01 + -0.2874390410000000E+01 + -0.2874580548023862E+01 + -0.2874770527745027E+01 + -0.2874960349454259E+01 + -0.2875150013442329E+01 + -0.2875339520000000E+01 + -0.2875528869325966E+01 + -0.2875718061250625E+01 + -0.2875907095512302E+01 + -0.2876095971849318E+01 + -0.2876284690000000E+01 + -0.2876473249792273E+01 + -0.2876661651412472E+01 + -0.2876849895136534E+01 + -0.2877037981240398E+01 + -0.2877225910000000E+01 + -0.2877413681584942E+01 + -0.2877601295739488E+01 + -0.2877788752101561E+01 + -0.2877976050309090E+01 + -0.2878163190000000E+01 + -0.2878350170907956E+01 + -0.2878536993149578E+01 + -0.2878723656937221E+01 + -0.2878910162483242E+01 + -0.2879096510000000E+01 + -0.2879282699663232E+01 + -0.2879468731502203E+01 + -0.2879654605509557E+01 + -0.2879840321677941E+01 + -0.2880025880000000E+01 + -0.2880211280439115E+01 + -0.2880396522841611E+01 + -0.2880581607024551E+01 + -0.2880766532804993E+01 + -0.2880951300000000E+01 + -0.2881135908500307E+01 + -0.2881320358491351E+01 + -0.2881504650232240E+01 + -0.2881688783982087E+01 + -0.2881872760000000E+01 + -0.2882056578439655E+01 + -0.2882240239032985E+01 + -0.2882423741406488E+01 + -0.2882607085186660E+01 + -0.2882790270000000E+01 + -0.2882973295581072E+01 + -0.2883156162096708E+01 + -0.2883338869821809E+01 + -0.2883521419031273E+01 + -0.2883703810000000E+01 + -0.2883886042916057E+01 + -0.2884068117620182E+01 + -0.2884250033866278E+01 + -0.2884431791408249E+01 + -0.2884613390000000E+01 + -0.2884794829474699E+01 + -0.2884976109982564E+01 + -0.2885157231753081E+01 + -0.2885338195015732E+01 + -0.2885519000000000E+01 + -0.2885699646865148E+01 + -0.2885880135489560E+01 + -0.2886060465681398E+01 + -0.2886240637248823E+01 + -0.2886420650000000E+01 + -0.2886600503784707E+01 + -0.2886780198619194E+01 + -0.2886959734561327E+01 + -0.2887139111668974E+01 + -0.2887318330000000E+01 + -0.2887497389596023E+01 + -0.2887676290433663E+01 + -0.2887855032473292E+01 + -0.2888033615675281E+01 + -0.2888212040000000E+01 + -0.2888390305431201E+01 + -0.2888568412046153E+01 + -0.2888746359945504E+01 + -0.2888924149229903E+01 + -0.2889101780000000E+01 + -0.2889279252279173E+01 + -0.2889456565781726E+01 + -0.2889633720144693E+01 + -0.2889810715005106E+01 + -0.2889987550000000E+01 + -0.2890164224892105E+01 + -0.2890340739946940E+01 + -0.2890517095555724E+01 + -0.2890693292109671E+01 + -0.2890869330000000E+01 + -0.2891045209512407E+01 + -0.2891220930510511E+01 + -0.2891396492752412E+01 + -0.2891571895996208E+01 + -0.2891747140000000E+01 + -0.2891922224578268E+01 + -0.2892097149771016E+01 + -0.2892271915674630E+01 + -0.2892446522385496E+01 + -0.2892620970000000E+01 + -0.2892795258574522E+01 + -0.2892969388005426E+01 + -0.2893143358149068E+01 + -0.2893317168861807E+01 + -0.2893490820000000E+01 + -0.2893664311443642E+01 + -0.2893837643167280E+01 + -0.2894010815169097E+01 + -0.2894183827447275E+01 + -0.2894356680000000E+01 + -0.2894529372850908E+01 + -0.2894701906125453E+01 + -0.2894874279974544E+01 + -0.2895046494549090E+01 + -0.2895218550000000E+01 + -0.2895390446432728E+01 + -0.2895562183770909E+01 + -0.2895733761892727E+01 + -0.2895905180676363E+01 + -0.2896076440000000E+01 + -0.2896247539738182E+01 + -0.2896418479750910E+01 + -0.2896589259894547E+01 + -0.2896759880025456E+01 + -0.2896930340000000E+01 + -0.2897100639734542E+01 + -0.2897270779385448E+01 + -0.2897440759169083E+01 + -0.2897610579301812E+01 + -0.2897780240000000E+01 + -0.2897949741403648E+01 + -0.2898119083347295E+01 + -0.2898288265589120E+01 + -0.2898457287887296E+01 + -0.2898626150000000E+01 + -0.2898794851770868E+01 + -0.2898963393385370E+01 + -0.2899131775114439E+01 + -0.2899299997229005E+01 + -0.2899468060000000E+01 + -0.2899635963592882E+01 + -0.2899803707751224E+01 + -0.2899971292113125E+01 + -0.2900138716316684E+01 + -0.2900305980000000E+01 + -0.2900473082897602E+01 + -0.2900640025129732E+01 + -0.2900806806913062E+01 + -0.2900973428464260E+01 + -0.2901139890000000E+01 + -0.2901306191696709E+01 + -0.2901472333569847E+01 + -0.2901638315594631E+01 + -0.2901804137746276E+01 + -0.2901969800000000E+01 + -0.2902135302315561E+01 + -0.2902300644590879E+01 + -0.2902465826708417E+01 + -0.2902630848550637E+01 + -0.2902795710000000E+01 + -0.2902960410961048E+01 + -0.2903124951426637E+01 + -0.2903289331411702E+01 + -0.2903453550931178E+01 + -0.2903617610000000E+01 + -0.2903781508640247E+01 + -0.2903945246902573E+01 + -0.2904108824844776E+01 + -0.2904272242524652E+01 + -0.2904435500000000E+01 + -0.2904598597277964E+01 + -0.2904761534163070E+01 + -0.2904924310409196E+01 + -0.2905086925770215E+01 + -0.2905249380000000E+01 + -0.2905411672967899E+01 + -0.2905573805005144E+01 + -0.2905735776558440E+01 + -0.2905897588074490E+01 + -0.2906059240000000E+01 + -0.2906220732610441E+01 + -0.2906382065496353E+01 + -0.2906543238077044E+01 + -0.2906704249771824E+01 + -0.2906865100000000E+01 + -0.2907025788350339E+01 + -0.2907186315089445E+01 + -0.2907346680653382E+01 + -0.2907506885478212E+01 + -0.2907666930000000E+01 + -0.2907826814548204E+01 + -0.2907986539025867E+01 + -0.2908146103229429E+01 + -0.2908305506955326E+01 + -0.2908464750000000E+01 + -0.2908623832176844E+01 + -0.2908782753367085E+01 + -0.2908941513468903E+01 + -0.2909100112380481E+01 + -0.2909258550000000E+01 + -0.2909416826264418E+01 + -0.2909574941265792E+01 + -0.2909732895134958E+01 + -0.2909890688002749E+01 + -0.2910048320000000E+01 + -0.2910205791245486E+01 + -0.2910363101809748E+01 + -0.2910520251751266E+01 + -0.2910677241128523E+01 + -0.2910834070000000E+01 + -0.2910990738353638E+01 + -0.2911147245895218E+01 + -0.2911303592259979E+01 + -0.2911459777083159E+01 + -0.2911615800000000E+01 + -0.2911771660779960E+01 + -0.2911927359729380E+01 + -0.2912082897288819E+01 + -0.2912238273898840E+01 + -0.2912393490000000E+01 + -0.2912548545886521E+01 + -0.2912703441267263E+01 + -0.2912858175704743E+01 + -0.2913012748761483E+01 + -0.2913167160000000E+01 + -0.2913321409113955E+01 + -0.2913475496321570E+01 + -0.2913629421972207E+01 + -0.2913783186415230E+01 + -0.2913936790000000E+01 + -0.2914090232937660E+01 + -0.2914243514886460E+01 + -0.2914396635366430E+01 + -0.2914549593897600E+01 + -0.2914702390000000E+01 + -0.2914855023375408E+01 + -0.2915007494452593E+01 + -0.2915159803842075E+01 + -0.2915311952154371E+01 + -0.2915463940000000E+01 + -0.2915615767800710E+01 + -0.2915767435223168E+01 + -0.2915918941745271E+01 + -0.2916070286844916E+01 + -0.2916221470000000E+01 + -0.2916372490781752E+01 + -0.2916523349134734E+01 + -0.2916674045096840E+01 + -0.2916824578705964E+01 + -0.2916974950000000E+01 + -0.2917125159072282E+01 + -0.2917275206237896E+01 + -0.2917425091867370E+01 + -0.2917574816331229E+01 + -0.2917724380000000E+01 + -0.2917873783089121E+01 + -0.2918023025193682E+01 + -0.2918172105753681E+01 + -0.2918321024209120E+01 + -0.2918469780000000E+01 + -0.2918618372731233E+01 + -0.2918766802667378E+01 + -0.2918915070237907E+01 + -0.2919063175872291E+01 + -0.2919211120000000E+01 + -0.2919358902945947E+01 + -0.2919506524616805E+01 + -0.2919653984814691E+01 + -0.2919801283341717E+01 + -0.2919948420000000E+01 + -0.2920095394604979E+01 + -0.2920242207025399E+01 + -0.2920388857143329E+01 + -0.2920535344840840E+01 + -0.2920681670000000E+01 + -0.2920827832554136E+01 + -0.2920973832641598E+01 + -0.2921119670451991E+01 + -0.2921265346174923E+01 + -0.2921410860000000E+01 + -0.2921556212058477E+01 + -0.2921701402248210E+01 + -0.2921846430408706E+01 + -0.2921991296379467E+01 + -0.2922136000000000E+01 + -0.2922280541131955E+01 + -0.2922424919725560E+01 + -0.2922569135753187E+01 + -0.2922713189187210E+01 + -0.2922857080000000E+01 + -0.2923000808213703E+01 + -0.2923144374049550E+01 + -0.2923287777778546E+01 + -0.2923431019671695E+01 + -0.2923574100000000E+01 + -0.2923717018893234E+01 + -0.2923859775916240E+01 + -0.2924002370492629E+01 + -0.2924144802046012E+01 + -0.2924287070000000E+01 + -0.2924429173973361E+01 + -0.2924571114365489E+01 + -0.2924712891770938E+01 + -0.2924854506784257E+01 + -0.2924995960000000E+01 + -0.2925137251853323E+01 + -0.2925278382141802E+01 + -0.2925419350503620E+01 + -0.2925560156576958E+01 + -0.2925700800000000E+01 + -0.2925841280453349E+01 + -0.2925981597787303E+01 + -0.2926121751894583E+01 + -0.2926261742667908E+01 + -0.2926401570000000E+01 + -0.2926541233853281E+01 + -0.2926680734468985E+01 + -0.2926820072158048E+01 + -0.2926959247231408E+01 + -0.2927098260000000E+01 + -0.2927237110693528E+01 + -0.2927375799216758E+01 + -0.2927514325393225E+01 + -0.2927652689046461E+01 + -0.2927790890000000E+01 + -0.2927928928092608E+01 + -0.2928066803223982E+01 + -0.2928204515309052E+01 + -0.2928342064262749E+01 + -0.2928479450000000E+01 + -0.2928616672456040E+01 + -0.2928753731647313E+01 + -0.2928890627610565E+01 + -0.2929027360382545E+01 + -0.2929163930000000E+01 + -0.2929300336483232E+01 + -0.2929436579786768E+01 + -0.2929572659848687E+01 + -0.2929708576607071E+01 + -0.2929844330000000E+01 + -0.2929979920011030E+01 + -0.2930115346805616E+01 + -0.2930250610594688E+01 + -0.2930385711589172E+01 + -0.2930520650000000E+01 + -0.2930655425952646E+01 + -0.2930790039230766E+01 + -0.2930924489532563E+01 + -0.2931058776556240E+01 + -0.2931192900000000E+01 + -0.2931326859618388E+01 + -0.2931460655391321E+01 + -0.2931594287355060E+01 + -0.2931727755545866E+01 + -0.2931861060000000E+01 + -0.2931994200773805E+01 + -0.2932127178003952E+01 + -0.2932259991847197E+01 + -0.2932392642460295E+01 + -0.2932525130000000E+01 + -0.2932657454566395E+01 + -0.2932789616032872E+01 + -0.2932921614216151E+01 + -0.2933053448932954E+01 + -0.2933185120000000E+01 + -0.2933316627280618E+01 + -0.2933447970824563E+01 + -0.2933579150728199E+01 + -0.2933710167087890E+01 + -0.2933841020000000E+01 + -0.2933971709511135E+01 + -0.2934102235468878E+01 + -0.2934232597671052E+01 + -0.2934362795915485E+01 + -0.2934492830000000E+01 + -0.2934622699794842E+01 + -0.2934752405459927E+01 + -0.2934881947227591E+01 + -0.2935011325330170E+01 + -0.2935140540000000E+01 + -0.2935269591389499E+01 + -0.2935398479331416E+01 + -0.2935527203578584E+01 + -0.2935655763883834E+01 + -0.2935784160000000E+01 + -0.2935912391767163E+01 + -0.2936040459374409E+01 + -0.2936168363098074E+01 + -0.2936296103214492E+01 + -0.2936423680000000E+01 + -0.2936551093621847E+01 + -0.2936678343810946E+01 + -0.2936805430189120E+01 + -0.2936932352378196E+01 + -0.2937059110000000E+01 + -0.2937185702785447E+01 + -0.2937312130901809E+01 + -0.2937438394625447E+01 + -0.2937564494232723E+01 + -0.2937690430000000E+01 + -0.2937816202116366E+01 + -0.2937941810421821E+01 + -0.2938067254669093E+01 + -0.2938192534610911E+01 + -0.2938317650000000E+01 + -0.2938442600669090E+01 + -0.2938567386770908E+01 + -0.2938692008538181E+01 + -0.2938816466203636E+01 + -0.2938940760000000E+01 + -0.2939064890087274E+01 + -0.2939188856334547E+01 + -0.2939312658538184E+01 + -0.2939436296494547E+01 + -0.2939559770000000E+01 + -0.2939683078901815E+01 + -0.2939806223250903E+01 + -0.2939929203149083E+01 + -0.2940052018698176E+01 + -0.2940174670000000E+01 + -0.2940297157105466E+01 + -0.2940419479861841E+01 + -0.2940541638065483E+01 + -0.2940663631512750E+01 + -0.2940785460000000E+01 + -0.2940907123396322E+01 + -0.2941028621861733E+01 + -0.2941149955628984E+01 + -0.2941271124930823E+01 + -0.2941392130000000E+01 + -0.2941512970989246E+01 + -0.2941633647731225E+01 + -0.2941754159978580E+01 + -0.2941874507483957E+01 + -0.2941994690000000E+01 + -0.2942114707366693E+01 + -0.2942234559773369E+01 + -0.2942354247496698E+01 + -0.2942473770813352E+01 + -0.2942593130000000E+01 + -0.2942712325223982E+01 + -0.2942831356215301E+01 + -0.2942950222594629E+01 + -0.2943068923982638E+01 + -0.2943187460000000E+01 + -0.2943305830377381E+01 + -0.2943424035285428E+01 + -0.2943542075004785E+01 + -0.2943659949816095E+01 + -0.2943777660000000E+01 + -0.2943895205746496E+01 + -0.2944012586882987E+01 + -0.2944129803146230E+01 + -0.2944246854272982E+01 + -0.2944363740000000E+01 + -0.2944480460156636E+01 + -0.2944597014942624E+01 + -0.2944713404650294E+01 + -0.2944829629571976E+01 + -0.2944945690000000E+01 + -0.2945061586106961E+01 + -0.2945177317586517E+01 + -0.2945292884012593E+01 + -0.2945408284959112E+01 + -0.2945523520000000E+01 + -0.2945638588855521E+01 + -0.2945753491831309E+01 + -0.2945868229379336E+01 + -0.2945982801951574E+01 + -0.2946097210000000E+01 + -0.2946211453830953E+01 + -0.2946325533168248E+01 + -0.2946439447590066E+01 + -0.2946553196674590E+01 + -0.2946666780000000E+01 + -0.2946780197260665E+01 + -0.2946893448615700E+01 + -0.2947006534340400E+01 + -0.2947119454710067E+01 + -0.2947232210000000E+01 + -0.2947344800406385E+01 + -0.2947457225808956E+01 + -0.2947569486008335E+01 + -0.2947681580805142E+01 + -0.2947793510000000E+01 + -0.2947905273433795E+01 + -0.2948016871108478E+01 + -0.2948128303066262E+01 + -0.2948239569349365E+01 + -0.2948350670000000E+01 + -0.2948461605058434E+01 + -0.2948572374557133E+01 + -0.2948682978526616E+01 + -0.2948793416997399E+01 + -0.2948903690000000E+01 + -0.2949013797532470E+01 + -0.2949123739462990E+01 + -0.2949233515627275E+01 + -0.2949343125861040E+01 + -0.2949452570000000E+01 + -0.2949561847931688E+01 + -0.2949670959750908E+01 + -0.2949779905604284E+01 + -0.2949888685638441E+01 + -0.2949997300000000E+01 + -0.2950105748820781E+01 + -0.2950214032173379E+01 + -0.2950322150115587E+01 + -0.2950430102705197E+01 + -0.2950537890000000E+01 + -0.2950645511985191E+01 + -0.2950752968355576E+01 + -0.2950860258733366E+01 + -0.2950967382740771E+01 + -0.2951074340000000E+01 + -0.2951181130278457E+01 + -0.2951287753924316E+01 + -0.2951394211430948E+01 + -0.2951500503291719E+01 + -0.2951606630000000E+01 + -0.2951712591860984E+01 + -0.2951818388427160E+01 + -0.2951924019062844E+01 + -0.2952029483132353E+01 + -0.2952134780000000E+01 + -0.2952239909237611E+01 + -0.2952344871247047E+01 + -0.2952449666637676E+01 + -0.2952554296018871E+01 + -0.2952658760000000E+01 + -0.2952763059028573E+01 + -0.2952867192904655E+01 + -0.2952971161266451E+01 + -0.2953074963752164E+01 + -0.2953178600000000E+01 + -0.2953282069688098E+01 + -0.2953385372654334E+01 + -0.2953488508776522E+01 + -0.2953591477932473E+01 + -0.2953694280000000E+01 + -0.2953796914939038E+01 + -0.2953899383038010E+01 + -0.2954001684667464E+01 + -0.2954103820197945E+01 + -0.2954205790000000E+01 + -0.2954307594315751E+01 + -0.2954409232873624E+01 + -0.2954510705273622E+01 + -0.2954612011115747E+01 + -0.2954713150000000E+01 + -0.2954814121637958E+01 + -0.2954914926187492E+01 + -0.2955015563918047E+01 + -0.2955116035099068E+01 + -0.2955216340000000E+01 + -0.2955316478812418E+01 + -0.2955416451416409E+01 + -0.2955516257614192E+01 + -0.2955615897207983E+01 + -0.2955715370000000E+01 + -0.2955814675832373E+01 + -0.2955913814706873E+01 + -0.2956012786665188E+01 + -0.2956111591749002E+01 + -0.2956210230000000E+01 + -0.2956308701458093E+01 + -0.2956407006156097E+01 + -0.2956505144125055E+01 + -0.2956603115396009E+01 + -0.2956700920000000E+01 + -0.2956798557935255E+01 + -0.2956896029068736E+01 + -0.2956993333234590E+01 + -0.2957090470266962E+01 + -0.2957187440000000E+01 + -0.2957284242320887E+01 + -0.2957380877328957E+01 + -0.2957477345176585E+01 + -0.2957573646016141E+01 + -0.2957669780000000E+01 + -0.2957765747261198E+01 + -0.2957861547855434E+01 + -0.2957957181819071E+01 + -0.2958052649188472E+01 + -0.2958147950000000E+01 + -0.2958243084234320E+01 + -0.2958338051649305E+01 + -0.2958432851947130E+01 + -0.2958527484829970E+01 + -0.2958621950000000E+01 + -0.2958716247241522E+01 + -0.2958810376667346E+01 + -0.2958904338472409E+01 + -0.2958998132851648E+01 + -0.2959091760000000E+01 + -0.2959185220079593E+01 + -0.2959278513121312E+01 + -0.2959371639123235E+01 + -0.2959464598083439E+01 + -0.2959557390000000E+01 + -0.2959650014840108E+01 + -0.2959742472447406E+01 + -0.2959834762634650E+01 + -0.2959926885214597E+01 + -0.2960018840000000E+01 + -0.2960110626879974E+01 + -0.2960202246049062E+01 + -0.2960293697778163E+01 + -0.2960384982338176E+01 + -0.2960476100000000E+01 + -0.2960567050919994E+01 + -0.2960657834796345E+01 + -0.2960748451212699E+01 + -0.2960838899752702E+01 + -0.2960929180000000E+01 + -0.2961019291680051E+01 + -0.2961109235085559E+01 + -0.2961199010651042E+01 + -0.2961288618811017E+01 + -0.2961378060000000E+01 + -0.2961467334519803E+01 + -0.2961556442141418E+01 + -0.2961645382503132E+01 + -0.2961734155243231E+01 + -0.2961822760000000E+01 + -0.2961911196480736E+01 + -0.2961999464668766E+01 + -0.2962087564616429E+01 + -0.2962175496376061E+01 + -0.2962263260000000E+01 + -0.2962350855557253E+01 + -0.2962438283183516E+01 + -0.2962525543031151E+01 + -0.2962612635252524E+01 + -0.2962699560000000E+01 + -0.2962786317370250E+01 + -0.2962872907237170E+01 + -0.2962959329418966E+01 + -0.2963045583733841E+01 + -0.2963131670000000E+01 + -0.2963217588081749E+01 + -0.2963303338027804E+01 + -0.2963388919932984E+01 + -0.2963474333892110E+01 + -0.2963559580000000E+01 + -0.2963644658302757E+01 + -0.2963729568651616E+01 + -0.2963814310849097E+01 + -0.2963898884697719E+01 + -0.2963983290000000E+01 + -0.2964067526627224E+01 + -0.2964151594725732E+01 + -0.2964235494510628E+01 + -0.2964319226197016E+01 + -0.2964402790000000E+01 + -0.2964486186068345E+01 + -0.2964569414285455E+01 + -0.2964652474468392E+01 + -0.2964735366434219E+01 + -0.2964818090000000E+01 + -0.2964900645019394E+01 + -0.2964983031492448E+01 + -0.2965065249455805E+01 + -0.2965147298946107E+01 + -0.2965229180000000E+01 + -0.2965310892654079E+01 + -0.2965392436944755E+01 + -0.2965473812908391E+01 + -0.2965555020581352E+01 + -0.2965636060000000E+01 + -0.2965716931164290E+01 + -0.2965797633928533E+01 + -0.2965878168110632E+01 + -0.2965958533528487E+01 + -0.2966038730000000E+01 + -0.2966118757408761E+01 + -0.2966198615901111E+01 + -0.2966278305689081E+01 + -0.2966357826984701E+01 + -0.2966437180000000E+01 + -0.2966516364880667E+01 + -0.2966595381507022E+01 + -0.2966674229693043E+01 + -0.2966752909252710E+01 + -0.2966831420000000E+01 + -0.2966909761788572E+01 + -0.2966987934630802E+01 + -0.2967065938578746E+01 + -0.2967143773684460E+01 + -0.2967221440000000E+01 + -0.2967298937565046E+01 + -0.2967376266369771E+01 + -0.2967453426391973E+01 + -0.2967530417609451E+01 + -0.2967607240000000E+01 + -0.2967683893551245E+01 + -0.2967760378290114E+01 + -0.2967836694253360E+01 + -0.2967912841477738E+01 + -0.2967988820000000E+01 + -0.2968064629829973E+01 + -0.2968140270869773E+01 + -0.2968215742994585E+01 + -0.2968291046079599E+01 + -0.2968366180000000E+01 + -0.2968441144648861E+01 + -0.2968515939990795E+01 + -0.2968590566008298E+01 + -0.2968665022683867E+01 + -0.2968739310000000E+01 + -0.2968813427974581E+01 + -0.2968887376767047E+01 + -0.2968961156572222E+01 + -0.2969034767584931E+01 + -0.2969108210000000E+01 + -0.2969181483932815E+01 + -0.2969254589181018E+01 + -0.2969327525462814E+01 + -0.2969400292496406E+01 + -0.2969472890000000E+01 + -0.2969545317734158E+01 + -0.2969617575628879E+01 + -0.2969689663656522E+01 + -0.2969761581789443E+01 + -0.2969833330000000E+01 + -0.2969904908330553E+01 + -0.2969976317103465E+01 + -0.2970047556711100E+01 + -0.2970118627545824E+01 + -0.2970189530000000E+01 + -0.2970260264303629E+01 + -0.2970330830037261E+01 + -0.2970401226619076E+01 + -0.2970471453467262E+01 + -0.2970541510000000E+01 + -0.2970611395814928E+01 + -0.2970681111227493E+01 + -0.2970750656732594E+01 + -0.2970820032825130E+01 + -0.2970889240000000E+01 + -0.2970958278596657E+01 + -0.2971027148332767E+01 + -0.2971095848770548E+01 + -0.2971164379472219E+01 + -0.2971232740000000E+01 + -0.2971300930038443E+01 + -0.2971368949761440E+01 + -0.2971436799465215E+01 + -0.2971504479445993E+01 + -0.2971571990000000E+01 + -0.2971639331329571E+01 + -0.2971706503261475E+01 + -0.2971773505528595E+01 + -0.2971840337863810E+01 + -0.2971907000000000E+01 + -0.2971973491763275E+01 + -0.2972039813352660E+01 + -0.2972105965060407E+01 + -0.2972171947178769E+01 + -0.2972237760000000E+01 + -0.2972303403697329E+01 + -0.2972368877967886E+01 + -0.2972434182389779E+01 + -0.2972499316541115E+01 + -0.2972564280000000E+01 + -0.2972629072487410E+01 + -0.2972693694295796E+01 + -0.2972758145860477E+01 + -0.2972822427616772E+01 + -0.2972886540000000E+01 + -0.2972950483313031E+01 + -0.2973014257328930E+01 + -0.2973077861688314E+01 + -0.2973141296031799E+01 + -0.2973204560000000E+01 + -0.2973267653300468E+01 + -0.2973330575908485E+01 + -0.2973393327866268E+01 + -0.2973455909216034E+01 + -0.2973518320000000E+01 + -0.2973580560285099E+01 + -0.2973642630237132E+01 + -0.2973704530046615E+01 + -0.2973766259904065E+01 + -0.2973827820000000E+01 + -0.2973889210439136E+01 + -0.2973950430982988E+01 + -0.2974011481307273E+01 + -0.2974072361087705E+01 + -0.2974133070000000E+01 + -0.2974193607798358E+01 + -0.2974253974550916E+01 + -0.2974314170404294E+01 + -0.2974374195505115E+01 + -0.2974434050000000E+01 + -0.2974493734047433E+01 + -0.2974553247853351E+01 + -0.2974612591635552E+01 + -0.2974671765611835E+01 + -0.2974730770000000E+01 + -0.2974789604891909E+01 + -0.2974848269875682E+01 + -0.2974906764413499E+01 + -0.2974965087967545E+01 + -0.2975023240000000E+01 + -0.2975081220144929E+01 + -0.2975139028723922E+01 + -0.2975196666230450E+01 + -0.2975254133157986E+01 + -0.2975311430000000E+01 + -0.2975368557088375E+01 + -0.2975425514108632E+01 + -0.2975482300584701E+01 + -0.2975538916040513E+01 + -0.2975595360000000E+01 + -0.2975651632141571E+01 + -0.2975707732761552E+01 + -0.2975763662310748E+01 + -0.2975819421239963E+01 + -0.2975875010000000E+01 + -0.2975930428905341E+01 + -0.2975985677725160E+01 + -0.2976040756092309E+01 + -0.2976095663639638E+01 + -0.2976150400000000E+01 + -0.2976204964877068E+01 + -0.2976259358257810E+01 + -0.2976313580200019E+01 + -0.2976367630761485E+01 + -0.2976421510000000E+01 + -0.2976475217986389E+01 + -0.2976528754843601E+01 + -0.2976582120707618E+01 + -0.2976635315714424E+01 + -0.2976688340000000E+01 + -0.2976741193657378E+01 + -0.2976793876607789E+01 + -0.2976846388729510E+01 + -0.2976898729900821E+01 + -0.2976950900000000E+01 + -0.2977002898904097E+01 + -0.2977054726485244E+01 + -0.2977106382614343E+01 + -0.2977157867162294E+01 + -0.2977209180000000E+01 + -0.2977260321046232E+01 + -0.2977311290411234E+01 + -0.2977362088253120E+01 + -0.2977412714730004E+01 + -0.2977463170000000E+01 + -0.2977513454190976E+01 + -0.2977563567309820E+01 + -0.2977613509333177E+01 + -0.2977663280237689E+01 + -0.2977712880000000E+01 + -0.2977762308589865E+01 + -0.2977811565949486E+01 + -0.2977860652014173E+01 + -0.2977909566719240E+01 + -0.2977958310000000E+01 + -0.2978006881769563E+01 + -0.2978055281852238E+01 + -0.2978103510050131E+01 + -0.2978151566165350E+01 + -0.2978199450000000E+01 + -0.2978247161451881E+01 + -0.2978294700801562E+01 + -0.2978342068425302E+01 + -0.2978389264699361E+01 + -0.2978436290000000E+01 + -0.2978483144582910E+01 + -0.2978529828221513E+01 + -0.2978576340568661E+01 + -0.2978622681277205E+01 + -0.2978668850000000E+01 + -0.2978714846456477E+01 + -0.2978760670632385E+01 + -0.2978806322580055E+01 + -0.2978851802351817E+01 + -0.2978897110000000E+01 + -0.2978942245591184E+01 + -0.2978987209248947E+01 + -0.2979032001111118E+01 + -0.2979076621315527E+01 + -0.2979121070000000E+01 + -0.2979165347258789E+01 + -0.2979209453011828E+01 + -0.2979253387135472E+01 + -0.2979297149506078E+01 + -0.2979340740000000E+01 + -0.2979384158493661E+01 + -0.2979427404863743E+01 + -0.2979470478986995E+01 + -0.2979513380740164E+01 + -0.2979556110000000E+01 + -0.2979598666686568E+01 + -0.2979641050893201E+01 + -0.2979683262756550E+01 + -0.2979725302413267E+01 + -0.2979767170000000E+01 + -0.2979808865640068E+01 + -0.2979850389403453E+01 + -0.2979891741346805E+01 + -0.2979932921526770E+01 + -0.2979973930000000E+01 + -0.2980014766753159E+01 + -0.2980055431492985E+01 + -0.2980095923856231E+01 + -0.2980136243479651E+01 + -0.2980176390000000E+01 + -0.2980216363187294E+01 + -0.2980256163344606E+01 + -0.2980295790908270E+01 + -0.2980335246314623E+01 + -0.2980374530000000E+01 + -0.2980413642257665E+01 + -0.2980452582808593E+01 + -0.2980491351230688E+01 + -0.2980529947101856E+01 + -0.2980568370000000E+01 + -0.2980606619622048E+01 + -0.2980644696141024E+01 + -0.2980682599848976E+01 + -0.2980720331037952E+01 + -0.2980757890000000E+01 + -0.2980795276934144E+01 + -0.2980832491667311E+01 + -0.2980869533933407E+01 + -0.2980906403466335E+01 + -0.2980943100000000E+01 + -0.2980979623361378E+01 + -0.2981015973749732E+01 + -0.2981052151457396E+01 + -0.2981088156776708E+01 + -0.2981123990000000E+01 + -0.2981159651300345E+01 + -0.2981195140373762E+01 + -0.2981230456797007E+01 + -0.2981265600146834E+01 + -0.2981300570000000E+01 + -0.2981335366077241E+01 + -0.2981369988675219E+01 + -0.2981404438234576E+01 + -0.2981438715195956E+01 + -0.2981472820000000E+01 + -0.2981506752950691E+01 + -0.2981540513805363E+01 + -0.2981574102184689E+01 + -0.2981607517709344E+01 + -0.2981640760000000E+01 + -0.2981673828759996E+01 + -0.2981706724023331E+01 + -0.2981739445906668E+01 + -0.2981771994526669E+01 + -0.2981804370000000E+01 + -0.2981836572409324E+01 + -0.2981868601701313E+01 + -0.2981900457788640E+01 + -0.2981932140583978E+01 + -0.2981963650000000E+01 + -0.2981994986002707E+01 + -0.2982026148771416E+01 + -0.2982057138538771E+01 + -0.2982087955537418E+01 + -0.2982118600000000E+01 + -0.2982149072059847E+01 + -0.2982179371453023E+01 + -0.2982209497816275E+01 + -0.2982239450786351E+01 + -0.2982269230000000E+01 + -0.2982298835197905E+01 + -0.2982328266536494E+01 + -0.2982357524276130E+01 + -0.2982386608677177E+01 + -0.2982415520000000E+01 + -0.2982444258428534E+01 + -0.2982472823841004E+01 + -0.2982501216039207E+01 + -0.2982529434824940E+01 + -0.2982557480000000E+01 + -0.2982585351407960E+01 + -0.2982613049059493E+01 + -0.2982640573007045E+01 + -0.2982667923303065E+01 + -0.2982695100000000E+01 + -0.2982722103139626E+01 + -0.2982748932721027E+01 + -0.2982775588732615E+01 + -0.2982802071162801E+01 + -0.2982828380000000E+01 + -0.2982854515233537E+01 + -0.2982880476856401E+01 + -0.2982906264862497E+01 + -0.2982931879245729E+01 + -0.2982957320000000E+01 + -0.2982982587126227E+01 + -0.2983007680653369E+01 + -0.2983032600617397E+01 + -0.2983057347054284E+01 + -0.2983081920000000E+01 + -0.2983106319461557E+01 + -0.2983130545330125E+01 + -0.2983154597467915E+01 + -0.2983178475737137E+01 + -0.2983202180000000E+01 + -0.2983225710147546E+01 + -0.2983249066186131E+01 + -0.2983272248150944E+01 + -0.2983295256077171E+01 + -0.2983318090000000E+01 + -0.2983340749948260E+01 + -0.2983363235925350E+01 + -0.2983385547928309E+01 + -0.2983407685954179E+01 + -0.2983429650000000E+01 + -0.2983451440059414E+01 + -0.2983473056112470E+01 + -0.2983494498135820E+01 + -0.2983515766106113E+01 + -0.2983536860000000E+01 + -0.2983557779814084E+01 + -0.2983578525624770E+01 + -0.2983599097528414E+01 + -0.2983619495621372E+01 + -0.2983639720000000E+01 + -0.2983659770684250E+01 + -0.2983679647388451E+01 + -0.2983699349750527E+01 + -0.2983718877408402E+01 + -0.2983738230000000E+01 + -0.2983757407288917E+01 + -0.2983776409541428E+01 + -0.2983795237149481E+01 + -0.2983813890505023E+01 + -0.2983832370000000E+01 + -0.2983850675920083E+01 + -0.2983868808125838E+01 + -0.2983886766371550E+01 + -0.2983904550411508E+01 + -0.2983922160000000E+01 + -0.2983939594950750E+01 + -0.2983956855315223E+01 + -0.2983973941204321E+01 + -0.2983990852728946E+01 + -0.2984007590000000E+01 + -0.2984024153076918E+01 + -0.2984040541813273E+01 + -0.2984056756011168E+01 + -0.2984072795472708E+01 + -0.2984088660000000E+01 + -0.2984104349461576E+01 + -0.2984119863991685E+01 + -0.2984135203791007E+01 + -0.2984150369060219E+01 + -0.2984165360000000E+01 + -0.2984180176756778E+01 + -0.2984194819259986E+01 + -0.2984209287384804E+01 + -0.2984223581006415E+01 + -0.2984237700000000E+01 + -0.2984251644231311E+01 + -0.2984265413528372E+01 + -0.2984279007709778E+01 + -0.2984292426594123E+01 + -0.2984305670000000E+01 + -0.2984318737837978E+01 + -0.2984331630386526E+01 + -0.2984344348016084E+01 + -0.2984356891097094E+01 + -0.2984369260000000E+01 + -0.2984381454976774E+01 + -0.2984393475805524E+01 + -0.2984405322145886E+01 + -0.2984416993657499E+01 + -0.2984428490000000E+01 + -0.2984439810894923E+01 + -0.2984450956311377E+01 + -0.2984461926280371E+01 + -0.2984472720832910E+01 + -0.2984483340000000E+01 + -0.2984493783843537E+01 + -0.2984504052548968E+01 + -0.2984514146332631E+01 + -0.2984524065410863E+01 + -0.2984533810000000E+01 + -0.2984543380210932E+01 + -0.2984552775732752E+01 + -0.2984561996149107E+01 + -0.2984571041043641E+01 + -0.2984579910000000E+01 + -0.2984588602752736E+01 + -0.2984597119640023E+01 + -0.2984605461150943E+01 + -0.2984613627774575E+01 + -0.2984621620000000E+01 + -0.2984629438138125E+01 + -0.2984637081787156E+01 + -0.2984644550367124E+01 + -0.2984651843298061E+01 + -0.2984658960000000E+01 + -0.2984665900054765E+01 + -0.2984672663691355E+01 + -0.2984679251300563E+01 + -0.2984685663273180E+01 + -0.2984691900000000E+01 + -0.2984697961802816E+01 + -0.2984703848727424E+01 + -0.2984709560750626E+01 + -0.2984715097849218E+01 + -0.2984720460000000E+01 + -0.2984725647133973E+01 + -0.2984730658998947E+01 + -0.2984735495296935E+01 + -0.2984740155729948E+01 + -0.2984744640000000E+01 + -0.2984748947901293E+01 + -0.2984753079596787E+01 + -0.2984757035341636E+01 + -0.2984760815390990E+01 + -0.2984764420000000E+01 + -0.2984767849340857E+01 + -0.2984771103253904E+01 + -0.2984774181496522E+01 + -0.2984777083826094E+01 + -0.2984779810000000E+01 + -0.2984782359855279E+01 + -0.2984784733547597E+01 + -0.2984786931312275E+01 + -0.2984788953384636E+01 + -0.2984790800000000E+01 + -0.2984792471318025E+01 + -0.2984793967195706E+01 + -0.2984795287414375E+01 + -0.2984796431755363E+01 + -0.2984797400000000E+01 + -0.2984798191992621E+01 + -0.2984798807829577E+01 + -0.2984799247670222E+01 + -0.2984799511673911E+01 + -0.2984799600000000E+01 + -0.2984799513031492E+01 + -0.2984799252045987E+01 + -0.2984798818544737E+01 + -0.2984798214028991E+01 + -0.2984797440000000E+01 + -0.2984796498041413E+01 + -0.2984795390066475E+01 + -0.2984794118070830E+01 + -0.2984792684050124E+01 + -0.2984791090000000E+01 + -0.2984789337842857E+01 + -0.2984787429208114E+01 + -0.2984785365651942E+01 + -0.2984783148730513E+01 + -0.2984780780000000E+01 + -0.2984778261067157E+01 + -0.2984775593741069E+01 + -0.2984772779881402E+01 + -0.2984769821347824E+01 + -0.2984766720000000E+01 + -0.2984763477648514E+01 + -0.2984760095907610E+01 + -0.2984756576342450E+01 + -0.2984752920518193E+01 + -0.2984749130000000E+01 + -0.2984745206418787E+01 + -0.2984741151668489E+01 + -0.2984736967708798E+01 + -0.2984732656499405E+01 + -0.2984728220000000E+01 + -0.2984723660116339E+01 + -0.2984718978538433E+01 + -0.2984714176902358E+01 + -0.2984709256844188E+01 + -0.2984704220000000E+01 + -0.2984699067995857E+01 + -0.2984693802417778E+01 + -0.2984688424841771E+01 + -0.2984682936843842E+01 + -0.2984677340000000E+01 + -0.2984671635980233E+01 + -0.2984665826830454E+01 + -0.2984659914690560E+01 + -0.2984653901700443E+01 + -0.2984647790000000E+01 + -0.2984641581603212E+01 + -0.2984635278020405E+01 + -0.2984628880635992E+01 + -0.2984622390834386E+01 + -0.2984615810000000E+01 + -0.2984609139606921E+01 + -0.2984602381487927E+01 + -0.2984595537565473E+01 + -0.2984588609762013E+01 + -0.2984581600000000E+01 + -0.2984574510129107E+01 + -0.2984567341707887E+01 + -0.2984560096222115E+01 + -0.2984552775157561E+01 + -0.2984545380000000E+01 + -0.2984537912356651E+01 + -0.2984530374320522E+01 + -0.2984522768106067E+01 + -0.2984515095927742E+01 + -0.2984507360000000E+01 + -0.2984499562364288E+01 + -0.2984491704370024E+01 + -0.2984483787193616E+01 + -0.2984475812011471E+01 + -0.2984467780000000E+01 + -0.2984459692506194E+01 + -0.2984451551559381E+01 + -0.2984443359359470E+01 + -0.2984435118106373E+01 + -0.2984426830000000E+01 + -0.2984418497130934E+01 + -0.2984410121152453E+01 + -0.2984401703608504E+01 + -0.2984393246043037E+01 + -0.2984384750000000E+01 + -0.2984376217050066E+01 + -0.2984367648870806E+01 + -0.2984359047166513E+01 + -0.2984350413641479E+01 + -0.2984341750000000E+01 + -0.2984333057948799E+01 + -0.2984324339204322E+01 + -0.2984315595485445E+01 + -0.2984306828511045E+01 + -0.2984298040000000E+01 + -0.2984289231714739E+01 + -0.2984280405591909E+01 + -0.2984271563611709E+01 + -0.2984262707754339E+01 + -0.2984253840000000E+01 + -0.2984244962232245E+01 + -0.2984236075948044E+01 + -0.2984227182547720E+01 + -0.2984218283431598E+01 + -0.2984209380000000E+01 + -0.2984200473756281E+01 + -0.2984191566615916E+01 + -0.2984182660597411E+01 + -0.2984173757719270E+01 + -0.2984164860000000E+01 + -0.2984155969382631E+01 + -0.2984147087508291E+01 + -0.2984138215942636E+01 + -0.2984129356251321E+01 + -0.2984120510000000E+01 + -0.2984111678793197E+01 + -0.2984102864390919E+01 + -0.2984094068592043E+01 + -0.2984085293195444E+01 + -0.2984076540000000E+01 + -0.2984067810804581E+01 + -0.2984059107408033E+01 + -0.2984050431609194E+01 + -0.2984041785206903E+01 + -0.2984033170000000E+01 + -0.2984024587748479E+01 + -0.2984016040056951E+01 + -0.2984007528491183E+01 + -0.2983999054616944E+01 + -0.2983990620000000E+01 + -0.2983982226281506E+01 + -0.2983973875404166E+01 + -0.2983965569386073E+01 + -0.2983957310245320E+01 + -0.2983949100000000E+01 + -0.2983940940565499E+01 + -0.2983932833446387E+01 + -0.2983924780044524E+01 + -0.2983916781761774E+01 + -0.2983908840000000E+01 + -0.2983900956256496E+01 + -0.2983893132410286E+01 + -0.2983885370435829E+01 + -0.2983877672307581E+01 + -0.2983870040000000E+01 + -0.2983862475448517E+01 + -0.2983854980432467E+01 + -0.2983847556692158E+01 + -0.2983840205967900E+01 + -0.2983832930000000E+01 + -0.2983825730509436E+01 + -0.2983818609139846E+01 + -0.2983811567515540E+01 + -0.2983804607260822E+01 + -0.2983797730000000E+01 + -0.2983790937393741E+01 + -0.2983784231248148E+01 + -0.2983777613405684E+01 + -0.2983771085708814E+01 + -0.2983764650000000E+01 + -0.2983758308075601E+01 + -0.2983752061547562E+01 + -0.2983745911981723E+01 + -0.2983739860943922E+01 + -0.2983733910000000E+01 + -0.2983728060783854E+01 + -0.2983722315201604E+01 + -0.2983716675227427E+01 + -0.2983711142835499E+01 + -0.2983705720000000E+01 + -0.2983700408628984E+01 + -0.2983695210366024E+01 + -0.2983690126788573E+01 + -0.2983685159474081E+01 + -0.2983680310000000E+01 + -0.2983675579980210E+01 + -0.2983670971174299E+01 + -0.2983666485378284E+01 + -0.2983662124388179E+01 + -0.2983657890000000E+01 + -0.2983653784010175E+01 + -0.2983649808216778E+01 + -0.2983645964418293E+01 + -0.2983642254413205E+01 + -0.2983638680000000E+01 + -0.2983635242939089E+01 + -0.2983631944838588E+01 + -0.2983628787268544E+01 + -0.2983625771799000E+01 + -0.2983622900000000E+01 + -0.2983620173513470E+01 + -0.2983617594268868E+01 + -0.2983615164267530E+01 + -0.2983612885510794E+01 + -0.2983610760000000E+01 + -0.2983608789647029E+01 + -0.2983606976005940E+01 + -0.2983605320541336E+01 + -0.2983603824717822E+01 + -0.2983602490000000E+01 + -0.2983601317898414E+01 + -0.2983600310107373E+01 + -0.2983599468367124E+01 + -0.2983598794417917E+01 + -0.2983598290000000E+01 + -0.2983597956919315E+01 + -0.2983597797244570E+01 + -0.2983597813110168E+01 + -0.2983598006650511E+01 + -0.2983598380000000E+01 + -0.2983598935144328E+01 + -0.2983599673474348E+01 + -0.2983600596232204E+01 + -0.2983601704660040E+01 + -0.2983603000000000E+01 + -0.2983604483623374E+01 + -0.2983606157418037E+01 + -0.2983608023401015E+01 + -0.2983610083589328E+01 + -0.2983612340000000E+01 + -0.2983614794602178E+01 + -0.2983617449173502E+01 + -0.2983620305443738E+01 + -0.2983623365142649E+01 + -0.2983626630000000E+01 + -0.2983630101727915E+01 + -0.2983633781967953E+01 + -0.2983637672344035E+01 + -0.2983641774480077E+01 + -0.2983646090000000E+01 + -0.2983650620566163E+01 + -0.2983655367994684E+01 + -0.2983660334140124E+01 + -0.2983665520857043E+01 + -0.2983670930000000E+01 + -0.2983676563367436E+01 + -0.2983682422533312E+01 + -0.2983688509015470E+01 + -0.2983694824331752E+01 + -0.2983701370000000E+01 + -0.2983708147644094E+01 + -0.2983715159312069E+01 + -0.2983722407157997E+01 + -0.2983729893335950E+01 + -0.2983737620000000E+01 + -0.2983745589176186E+01 + -0.2983753802378411E+01 + -0.2983762260992542E+01 + -0.2983770966404449E+01 + -0.2983779920000000E+01 + -0.2983789123251160E+01 + -0.2983798577974287E+01 + -0.2983808286071833E+01 + -0.2983818249446253E+01 + -0.2983828470000000E+01 + -0.2983838949579172E+01 + -0.2983849689804442E+01 + -0.2983860692240125E+01 + -0.2983871958450540E+01 + -0.2983883490000000E+01 + -0.2983895288512152E+01 + -0.2983907355847947E+01 + -0.2983919693927667E+01 + -0.2983932304671591E+01 + -0.2983945190000000E+01 + -0.2983958351812222E+01 + -0.2983971791923771E+01 + -0.2983985512129209E+01 + -0.2983999514223098E+01 + -0.2984013800000000E+01 + -0.2984028371198961E+01 + -0.2984043229336970E+01 + -0.2984058375875497E+01 + -0.2984073812276017E+01 + -0.2984089540000000E+01 + -0.2984105560591932E+01 + -0.2984121875928350E+01 + -0.2984138487968801E+01 + -0.2984155398672835E+01 + -0.2984172610000000E+01 + -0.2984190123873308E+01 + -0.2984207942069630E+01 + -0.2984226066329297E+01 + -0.2984244498392643E+01 + -0.2984263240000000E+01 + -0.2984282292874834E+01 + -0.2984301658673131E+01 + -0.2984321339034011E+01 + -0.2984341335596595E+01 + -0.2984361650000000E+01 + -0.2984382283907358E+01 + -0.2984403239077848E+01 + -0.2984424517294658E+01 + -0.2984446120340979E+01 + -0.2984468050000000E+01 + -0.2984490308055733E+01 + -0.2984512896295479E+01 + -0.2984535816507357E+01 + -0.2984559070479491E+01 + -0.2984582660000000E+01 + -0.2984606586829708E+01 + -0.2984630852620238E+01 + -0.2984655458995913E+01 + -0.2984680407581060E+01 + -0.2984705700000000E+01 + -0.2984731337905436E+01 + -0.2984757323063572E+01 + -0.2984783657268990E+01 + -0.2984810342316272E+01 + -0.2984837380000000E+01 + -0.2984864772108550E+01 + -0.2984892520405476E+01 + -0.2984920626648127E+01 + -0.2984949092593852E+01 + -0.2984977920000000E+01 + -0.2985007110620365E+01 + -0.2985036666194525E+01 + -0.2985066588458503E+01 + -0.2985096879148320E+01 + -0.2985127540000000E+01 + -0.2985158572769989E+01 + -0.2985189979296424E+01 + -0.2985221761437864E+01 + -0.2985253921052869E+01 + -0.2985286460000000E+01 + -0.2985319380059679E+01 + -0.2985352682699782E+01 + -0.2985386369310044E+01 + -0.2985420441280205E+01 + -0.2985454900000000E+01 + -0.2985489746991294E+01 + -0.2985524984304450E+01 + -0.2985560614121960E+01 + -0.2985596638626313E+01 + -0.2985633060000000E+01 + -0.2985669880295146E+01 + -0.2985707101042417E+01 + -0.2985744723642116E+01 + -0.2985782749494543E+01 + -0.2985821180000000E+01 + -0.2985860016628123E+01 + -0.2985899261125881E+01 + -0.2985938915309577E+01 + -0.2985978980995516E+01 + -0.2986019460000000E+01 + -0.2986060354152363E+01 + -0.2986101665334060E+01 + -0.2986143395439575E+01 + -0.2986185546363394E+01 + -0.2986228120000000E+01 + -0.2986271118202424E+01 + -0.2986314542657879E+01 + -0.2986358395012121E+01 + -0.2986402676910909E+01 + -0.2986447390000000E+01 + -0.2986492535917939E+01 + -0.2986538116274424E+01 + -0.2986584132671938E+01 + -0.2986630586712969E+01 + -0.2986677480000000E+01 + -0.2986724814205820E+01 + -0.2986772591284426E+01 + -0.2986820813260124E+01 + -0.2986869482157215E+01 + -0.2986918600000000E+01 + -0.2986968168698784E+01 + -0.2987018189707871E+01 + -0.2987068664367566E+01 + -0.2987119594018174E+01 + -0.2987170980000000E+01 + -0.2987222823799046E+01 + -0.2987275127484092E+01 + -0.2987327893269615E+01 + -0.2987381123370092E+01 + -0.2987434820000000E+01 + -0.2987488985225034E+01 + -0.2987543620515764E+01 + -0.2987598727193976E+01 + -0.2987654306581459E+01 + -0.2987710360000000E+01 + -0.2987766888900818E+01 + -0.2987823895252853E+01 + -0.2987881381154481E+01 + -0.2987939348704072E+01 + -0.2987997800000000E+01 + -0.2988056737011696E+01 + -0.2988116161192823E+01 + -0.2988176073868102E+01 + -0.2988236476362254E+01 + -0.2988297370000000E+01 + -0.2988358756252399E+01 + -0.2988420637175856E+01 + -0.2988483014973114E+01 + -0.2988545891846914E+01 + -0.2988609270000000E+01 + -0.2988673151498708E+01 + -0.2988737537863753E+01 + -0.2988802430479444E+01 + -0.2988867830730090E+01 + -0.2988933740000000E+01 + -0.2989000159752768E+01 + -0.2989067091769131E+01 + -0.2989134537909110E+01 + -0.2989202500032726E+01 + -0.2989270980000000E+01 + -0.2989339979650218E+01 + -0.2989409500739722E+01 + -0.2989479545004116E+01 + -0.2989550114179007E+01 + -0.2989621210000000E+01 + -0.2989692834206360E+01 + -0.2989764988551983E+01 + -0.2989837674794427E+01 + -0.2989910894691247E+01 + -0.2989984650000000E+01 + -0.2990058942484344E+01 + -0.2990133773932346E+01 + -0.2990209146138177E+01 + -0.2990285060896005E+01 + -0.2990361520000000E+01 + -0.2990438525216264E+01 + -0.2990516078198631E+01 + -0.2990594180572866E+01 + -0.2990672833964733E+01 + -0.2990752040000000E+01 + -0.2990831800330598E+01 + -0.2990912116713128E+01 + -0.2990992990930359E+01 + -0.2991074424765061E+01 + -0.2991156420000000E+01 + -0.2991238978421344E+01 + -0.2991322101828855E+01 + -0.2991405792025695E+01 + -0.2991490050815023E+01 + -0.2991574880000000E+01 + -0.2991660281344025E+01 + -0.2991746256451449E+01 + -0.2991832806886861E+01 + -0.2991919934214849E+01 + -0.2992007640000000E+01 + -0.2992095925882555E+01 + -0.2992184793805347E+01 + -0.2992274245786862E+01 + -0.2992364283845585E+01 + -0.2992454910000000E+01 + -0.2992546126165757E+01 + -0.2992637933847164E+01 + -0.2992730334445692E+01 + -0.2992823329362813E+01 + -0.2992916920000000E+01 + -0.2993011107854417E+01 + -0.2993105894805998E+01 + -0.2993201282830370E+01 + -0.2993297273903162E+01 + -0.2993393870000000E+01 + -0.2993491073056576E+01 + -0.2993588884848845E+01 + -0.2993687307112826E+01 + -0.2993786341584538E+01 + -0.2993885990000000E+01 + -0.2993986254079278E+01 + -0.2994087135478622E+01 + -0.2994188635838326E+01 + -0.2994290756798687E+01 + -0.2994393500000000E+01 + -0.2994496867106312E+01 + -0.2994600859876670E+01 + -0.2994705480093872E+01 + -0.2994810729540716E+01 + -0.2994916610000000E+01 + -0.2995023123255476E+01 + -0.2995130271094702E+01 + -0.2995238055306190E+01 + -0.2995346477678452E+01 + -0.2995455540000000E+01 + -0.2995565244031786E+01 + -0.2995675591424524E+01 + -0.2995786583801369E+01 + -0.2995898222785476E+01 + -0.2996010510000000E+01 + -0.2996123447097381E+01 + -0.2996237035847202E+01 + -0.2996351278048333E+01 + -0.2996466175499643E+01 + -0.2996581730000000E+01 + -0.2996697943338691E+01 + -0.2996814817266668E+01 + -0.2996932353525299E+01 + -0.2997050553855953E+01 + -0.2997169420000000E+01 + -0.2997288953707855E+01 + -0.2997409156766127E+01 + -0.2997530030970472E+01 + -0.2997651578116544E+01 + -0.2997773800000000E+01 + -0.2997896698389888E+01 + -0.2998020274948823E+01 + -0.2998144531312815E+01 + -0.2998269469117871E+01 + -0.2998395090000000E+01 + -0.2998521395612594E+01 + -0.2998648387678580E+01 + -0.2998776067938269E+01 + -0.2998904438131972E+01 + -0.2999033500000000E+01 + -0.2999163255319737E+01 + -0.2999293706016857E+01 + -0.2999424854054110E+01 + -0.2999556701394241E+01 + -0.2999689250000000E+01 + -0.2999822501748459E+01 + -0.2999956458173991E+01 + -0.3000091120725293E+01 + -0.3000226490851063E+01 + -0.3000362570000000E+01 + -0.3000499359686428E+01 + -0.3000636861687180E+01 + -0.3000775077844719E+01 + -0.3000914010001505E+01 + -0.3001053660000000E+01 + -0.3001194029665832E+01 + -0.3001335120757290E+01 + -0.3001476935015833E+01 + -0.3001619474182917E+01 + -0.3001762740000000E+01 + -0.3001906734210248E+01 + -0.3002051458563662E+01 + -0.3002196914811952E+01 + -0.3002343104706828E+01 + -0.3002490030000000E+01 + -0.3002637692453177E+01 + -0.3002786093868063E+01 + -0.3002935236056361E+01 + -0.3003085120829772E+01 + -0.3003235750000000E+01 + -0.3003387125337044E+01 + -0.3003539248444086E+01 + -0.3003692120882607E+01 + -0.3003845744214085E+01 + -0.3004000120000000E+01 + -0.3004155249878648E+01 + -0.3004311135795592E+01 + -0.3004467779773212E+01 + -0.3004625183833888E+01 + -0.3004783350000000E+01 + -0.3004942280188364E+01 + -0.3005101975893546E+01 + -0.3005262438504545E+01 + -0.3005423669410363E+01 + -0.3005585670000000E+01 + -0.3005748441767894E+01 + -0.3005911986630225E+01 + -0.3006076306608609E+01 + -0.3006241403724661E+01 + -0.3006407280000000E+01 + -0.3006573937380060E+01 + -0.3006741377505555E+01 + -0.3006909601941021E+01 + -0.3007078612250991E+01 + -0.3007248410000000E+01 + -0.3007418996791867E+01 + -0.3007590374387555E+01 + -0.3007762544587308E+01 + -0.3007935509191374E+01 + -0.3008109270000000E+01 + -0.3008283828812470E+01 + -0.3008459187424226E+01 + -0.3008635347629746E+01 + -0.3008812311223511E+01 + -0.3008990080000000E+01 + -0.3009168655718251E+01 + -0.3009348039995542E+01 + -0.3009528234413706E+01 + -0.3009709240554581E+01 + -0.3009891060000000E+01 + -0.3010073694394524E+01 + -0.3010257145633608E+01 + -0.3010441415675429E+01 + -0.3010626506478167E+01 + -0.3010812420000000E+01 + -0.3010999158143653E+01 + -0.3011186722590029E+01 + -0.3011375114964579E+01 + -0.3011564336892753E+01 + -0.3011754390000000E+01 + -0.3011945275910866E+01 + -0.3012136996246277E+01 + -0.3012329552626255E+01 + -0.3012522946670822E+01 + -0.3012717180000000E+01 + -0.3012912254292884E+01 + -0.3013108171464863E+01 + -0.3013304933490400E+01 + -0.3013502542343959E+01 + -0.3013701000000000E+01 + -0.3013900308357599E+01 + -0.3014100469014271E+01 + -0.3014301483492144E+01 + -0.3014503353313345E+01 + -0.3014706080000000E+01 + -0.3014909665156721E+01 + -0.3015114110718052E+01 + -0.3015319418701024E+01 + -0.3015525591122663E+01 + -0.3015732630000000E+01 + -0.3015940537255518E+01 + -0.3016149314433520E+01 + -0.3016358962983762E+01 + -0.3016569484356003E+01 + -0.3016780880000000E+01 + -0.3016993151421208E+01 + -0.3017206300347870E+01 + -0.3017420328563929E+01 + -0.3017635237853325E+01 + -0.3017851030000000E+01 + -0.3018067706819652E+01 + -0.3018285270255001E+01 + -0.3018503722280525E+01 + -0.3018723064870699E+01 + -0.3018943300000000E+01 + -0.3019164429540185E+01 + -0.3019386454952125E+01 + -0.3019609377593974E+01 + -0.3019833198823882E+01 + -0.3020057920000000E+01 + -0.3020283542619609E+01 + -0.3020510068736498E+01 + -0.3020737500543581E+01 + -0.3020965840233777E+01 + -0.3021195090000000E+01 + -0.3021425251901379E+01 + -0.3021656327461885E+01 + -0.3021888318071702E+01 + -0.3022121225121012E+01 + -0.3022355050000000E+01 + -0.3022589794174876E+01 + -0.3022825459415963E+01 + -0.3023062047569612E+01 + -0.3023299560482174E+01 + -0.3023538000000000E+01 + -0.3023777367959117E+01 + -0.3024017666154262E+01 + -0.3024258896369849E+01 + -0.3024501060390290E+01 + -0.3024744160000000E+01 + -0.3024988196948655E+01 + -0.3025233172846987E+01 + -0.3025479089270992E+01 + -0.3025725947796664E+01 + -0.3025973750000000E+01 + -0.3026222497526263E+01 + -0.3026472192297789E+01 + -0.3026722836306184E+01 + -0.3026974431543053E+01 + -0.3027226980000000E+01 + -0.3027480483586294E+01 + -0.3027734943881857E+01 + -0.3027990362384273E+01 + -0.3028246740591125E+01 + -0.3028504080000000E+01 + -0.3028762382208559E+01 + -0.3029021649214781E+01 + -0.3029281883116725E+01 + -0.3029543086012445E+01 + -0.3029805260000000E+01 + -0.3030068407019468E+01 + -0.3030332528379016E+01 + -0.3030597625228829E+01 + -0.3030863698719095E+01 + -0.3031130750000000E+01 + -0.3031398780433566E+01 + -0.3031667792229154E+01 + -0.3031937787807959E+01 + -0.3032208769591176E+01 + -0.3032480740000000E+01 + -0.3032753701246267E+01 + -0.3033027654704369E+01 + -0.3033302601539337E+01 + -0.3033578542916203E+01 + -0.3033855480000000E+01 + -0.3034133414101365E+01 + -0.3034412347113370E+01 + -0.3034692281074693E+01 + -0.3034973218024010E+01 + -0.3035255160000000E+01 + -0.3035538108988272E+01 + -0.3035822066762151E+01 + -0.3036107035041894E+01 + -0.3036393015547758E+01 + -0.3036680010000000E+01 + -0.3036968020105550E+01 + -0.3037257047518029E+01 + -0.3037547093877733E+01 + -0.3037838160824959E+01 + -0.3038130250000000E+01 + -0.3038423363069531E+01 + -0.3038717501805735E+01 + -0.3039012668007174E+01 + -0.3039308863472408E+01 + -0.3039606090000000E+01 + -0.3039904349376326E+01 + -0.3040203643339030E+01 + -0.3040503973613571E+01 + -0.3040805341925408E+01 + -0.3041107750000000E+01 + -0.3041411199585165E+01 + -0.3041715692518145E+01 + -0.3042021230658543E+01 + -0.3042327815865961E+01 + -0.3042635450000000E+01 + -0.3042944134843017E+01 + -0.3043253871868391E+01 + -0.3043564662472257E+01 + -0.3043876508050748E+01 + -0.3044189410000000E+01 + -0.3044503369842768E+01 + -0.3044818389608291E+01 + -0.3045134471452431E+01 + -0.3045451617531047E+01 + -0.3045769830000000E+01 + -0.3046089110905911E+01 + -0.3046409461858442E+01 + -0.3046730884358019E+01 + -0.3047053379905064E+01 + -0.3047376950000000E+01 + -0.3047701596213588E+01 + -0.3048027320397937E+01 + -0.3048354124475492E+01 + -0.3048682010368698E+01 + -0.3049010980000000E+01 + -0.3049341035199735E+01 + -0.3049672177429807E+01 + -0.3050004408060011E+01 + -0.3050337728460144E+01 + -0.3050672140000000E+01 + -0.3051007644187473E+01 + -0.3051344243082836E+01 + -0.3051681938884464E+01 + -0.3052020733790728E+01 + -0.3052360630000000E+01 + -0.3052701629570376E+01 + -0.3053043733998848E+01 + -0.3053386944642132E+01 + -0.3053731262856944E+01 + -0.3054076690000000E+01 + -0.3054423227531024E+01 + -0.3054770877321772E+01 + -0.3055119641347008E+01 + -0.3055469521581496E+01 + -0.3055820520000000E+01 + -0.3056172638545528E+01 + -0.3056525879034064E+01 + -0.3056880243249836E+01 + -0.3057235732977072E+01 + -0.3057592350000000E+01 + -0.3057950096046865E+01 + -0.3058308972621973E+01 + -0.3058668981173649E+01 + -0.3059030123150217E+01 + -0.3059392400000000E+01 + -0.3059755813267015E+01 + -0.3060120364878045E+01 + -0.3060486056855568E+01 + -0.3060852891222062E+01 + -0.3061220870000000E+01 + -0.3061589995125078E+01 + -0.3061960268185847E+01 + -0.3062331690684078E+01 + -0.3062704264121539E+01 + -0.3063077990000000E+01 + -0.3063452869912676E+01 + -0.3063828905818567E+01 + -0.3064206099768120E+01 + -0.3064584453811782E+01 + -0.3064963970000000E+01 + -0.3065344650264220E+01 + -0.3065726496059887E+01 + -0.3066109508723443E+01 + -0.3066493689591333E+01 + -0.3066879040000000E+01 + -0.3067265561430444E+01 + -0.3067653255941887E+01 + -0.3068042125738109E+01 + -0.3068432173022887E+01 + -0.3068823400000000E+01 + -0.3069215808734005E+01 + -0.3069609400732564E+01 + -0.3070004177364122E+01 + -0.3070400139997120E+01 + -0.3070797290000000E+01 + -0.3071195628833539E+01 + -0.3071595158327855E+01 + -0.3071995880405402E+01 + -0.3072397796988633E+01 + -0.3072800910000001E+01 + -0.3073205221291840E+01 + -0.3073610732436015E+01 + -0.3074017444934269E+01 + -0.3074425360288350E+01 + -0.3074834480000000E+01 + -0.3075244805679103E+01 + -0.3075656339368087E+01 + -0.3076069083217521E+01 + -0.3076483039377970E+01 + -0.3076898210000000E+01 + -0.3077314597111750E+01 + -0.3077732202251636E+01 + -0.3078151026835648E+01 + -0.3078571072279773E+01 + -0.3078992340000000E+01 + -0.3079414831473900E+01 + -0.3079838548425370E+01 + -0.3080263492639890E+01 + -0.3080689665902941E+01 + -0.3081117070000000E+01 + -0.3081545706752651E+01 + -0.3081975578126884E+01 + -0.3082406686124791E+01 + -0.3082839032748466E+01 + -0.3083272620000000E+01 + -0.3083707449755496E+01 + -0.3084143523387094E+01 + -0.3084580842140944E+01 + -0.3085019407263197E+01 + -0.3085459220000001E+01 + -0.3085900281745365E+01 + -0.3086342594484740E+01 + -0.3086786160351432E+01 + -0.3087230981478749E+01 + -0.3087677060000000E+01 + -0.3088124397983044E+01 + -0.3088572997233948E+01 + -0.3089022859493330E+01 + -0.3089473986501808E+01 + -0.3089926380000001E+01 + -0.3090380041682459E+01 + -0.3090834973059469E+01 + -0.3091291175595250E+01 + -0.3091748650754020E+01 + -0.3092207400000000E+01 + -0.3092667424887122E+01 + -0.3093128727328178E+01 + -0.3093591309325672E+01 + -0.3094055172882111E+01 + -0.3094520320000000E+01 + -0.3094986752609054E+01 + -0.3095454472347821E+01 + -0.3095923480782062E+01 + -0.3096393779477535E+01 + -0.3096865370000000E+01 + -0.3097338253956666E+01 + -0.3097812433120540E+01 + -0.3098287909306082E+01 + -0.3098764684327749E+01 + -0.3099242760000001E+01 + -0.3099722138124286E+01 + -0.3100202820450021E+01 + -0.3100684808713613E+01 + -0.3101168104651470E+01 + -0.3101652710000000E+01 + -0.3102138626506194E+01 + -0.3102625855959380E+01 + -0.3103114400159468E+01 + -0.3103604260906371E+01 + -0.3104095440000001E+01 + -0.3104587939210939E+01 + -0.3105081760192461E+01 + -0.3105576904568514E+01 + -0.3106073373963045E+01 + -0.3106571170000000E+01 + -0.3107070294330052E+01 + -0.3107570748710776E+01 + -0.3108072534926475E+01 + -0.3108575654761449E+01 + -0.3109080110000000E+01 + -0.3109585902428854E+01 + -0.3110093033844433E+01 + -0.3110601506045585E+01 + -0.3111111320831158E+01 + -0.3111622480000000E+01 + -0.3112134985314534E+01 + -0.3112648838391493E+01 + -0.3113164040811185E+01 + -0.3113680594153918E+01 + -0.3114198500000001E+01 + -0.3114717759993009E+01 + -0.3115238376029595E+01 + -0.3115760350069676E+01 + -0.3116283684073172E+01 + -0.3116808380000000E+01 + -0.3117334439753431E+01 + -0.3117861865010130E+01 + -0.3118390657390113E+01 + -0.3118920818513398E+01 + -0.3119452350000000E+01 + -0.3119985253473270E+01 + -0.3120519530569888E+01 + -0.3121055182929872E+01 + -0.3121592212193238E+01 + -0.3122130620000000E+01 + -0.3122670408033493E+01 + -0.3123211578150319E+01 + -0.3123754132250399E+01 + -0.3124298072233652E+01 + -0.3124843400000001E+01 + -0.3125390117432760E+01 + -0.3125938226348836E+01 + -0.3126487728548533E+01 + -0.3127038625832153E+01 + -0.3127590920000000E+01 + -0.3128144612795470E+01 + -0.3128699705734338E+01 + -0.3129256200275470E+01 + -0.3129814097877735E+01 + -0.3130373400000000E+01 + -0.3130934108185359E+01 + -0.3131496224313812E+01 + -0.3132059750349586E+01 + -0.3132624688256906E+01 + -0.3133191040000000E+01 + -0.3133758807503094E+01 + -0.3134327992530415E+01 + -0.3134898596806188E+01 + -0.3135470622054641E+01 + -0.3136044070000001E+01 + -0.3136618942362266E+01 + -0.3137195240844530E+01 + -0.3137772967145662E+01 + -0.3138352122964530E+01 + -0.3138932710000000E+01 + -0.3139514729927847E+01 + -0.3140098184331468E+01 + -0.3140683074771165E+01 + -0.3141269402807241E+01 + -0.3141857170000001E+01 + -0.3142446378006349E+01 + -0.3143037028869602E+01 + -0.3143629124729682E+01 + -0.3144222667726508E+01 + -0.3144817660000000E+01 + -0.3145414103566762E+01 + -0.3146011999950128E+01 + -0.3146611350550112E+01 + -0.3147212156766730E+01 + -0.3147814420000001E+01 + -0.3148418141726604E+01 + -0.3149023323729889E+01 + -0.3149629967869873E+01 + -0.3150238076006572E+01 + -0.3150847650000000E+01 + -0.3151458691686826E+01 + -0.3152071202810318E+01 + -0.3152685185090397E+01 + -0.3153300640246985E+01 + -0.3153917570000000E+01 + -0.3154535976086096E+01 + -0.3155155860308841E+01 + -0.3155777224488539E+01 + -0.3156400070445491E+01 + -0.3157024400000000E+01 + -0.3157650214928795E+01 + -0.3158277516834320E+01 + -0.3158906307275448E+01 + -0.3159536587811050E+01 + -0.3160168360000000E+01 + -0.3160801625478726E+01 + -0.3161436386193880E+01 + -0.3162072644169671E+01 + -0.3162710401430308E+01 + -0.3163349660000000E+01 + -0.3163990421796303E+01 + -0.3164632688310163E+01 + -0.3165276460925870E+01 + -0.3165921741027719E+01 + -0.3166568530000000E+01 + -0.3167216829336062E+01 + -0.3167866640965471E+01 + -0.3168517966926849E+01 + -0.3169170809258818E+01 + -0.3169825170000000E+01 + -0.3170481051099451E+01 + -0.3171138454147956E+01 + -0.3171797380646736E+01 + -0.3172457832097011E+01 + -0.3173119810000000E+01 + -0.3173783315946138E+01 + -0.3174448351882707E+01 + -0.3175114919846208E+01 + -0.3175783021873139E+01 + -0.3176452660000000E+01 + -0.3177123836156003E+01 + -0.3177796551841218E+01 + -0.3178470808448433E+01 + -0.3179146607370432E+01 + -0.3179823950000000E+01 + -0.3180502837829853E+01 + -0.3181183272752420E+01 + -0.3181865256760060E+01 + -0.3182548791845134E+01 + -0.3183233880000000E+01 + -0.3183920523164587E+01 + -0.3184608723069104E+01 + -0.3185298481391327E+01 + -0.3185989799809033E+01 + -0.3186682680000000E+01 + -0.3187377122711798E+01 + -0.3188073124971165E+01 + -0.3188770682874633E+01 + -0.3189469792518734E+01 + -0.3190170450000000E+01 + -0.3190872651428223E+01 + -0.3191576392966239E+01 + -0.3192281670790143E+01 + -0.3192988481076031E+01 + -0.3193696820000000E+01 + -0.3194406683735311E+01 + -0.3195118068443882E+01 + -0.3195830970284798E+01 + -0.3196545385417143E+01 + -0.3197261310000000E+01 + -0.3197978740190535E+01 + -0.3198697672138235E+01 + -0.3199418101990667E+01 + -0.3200140025895399E+01 + -0.3200863440000000E+01 + -0.3201588340462550E+01 + -0.3202314723483180E+01 + -0.3203042585272535E+01 + -0.3203771922041260E+01 + -0.3204502730000000E+01 + -0.3205235005319268E+01 + -0.3205968744009048E+01 + -0.3206703942039194E+01 + -0.3207440595379561E+01 + -0.3208178700000000E+01 + -0.3208918251940381E+01 + -0.3209659247520630E+01 + -0.3210401683130688E+01 + -0.3211145555160497E+01 + -0.3211890860000000E+01 + -0.3212637593959210E+01 + -0.3213385753028435E+01 + -0.3214135333118055E+01 + -0.3214886330138450E+01 + -0.3215638740000000E+01 + -0.3216392558702780E+01 + -0.3217147782605631E+01 + -0.3217904408157093E+01 + -0.3218662431805703E+01 + -0.3219421850000000E+01 + -0.3220182659069676E+01 + -0.3220944854869044E+01 + -0.3221708433133575E+01 + -0.3222473389598737E+01 + -0.3223239720000000E+01 + -0.3224007420218519E+01 + -0.3224776486718194E+01 + -0.3225546916108608E+01 + -0.3226318704999348E+01 + -0.3227091850000000E+01 + -0.3227866347576249E+01 + -0.3228642193618184E+01 + -0.3229419383871994E+01 + -0.3230197914083870E+01 + -0.3230977780000000E+01 + -0.3231758977476486E+01 + -0.3232541502809072E+01 + -0.3233325352403415E+01 + -0.3234110522665172E+01 + -0.3234897010000000E+01 + -0.3235684810757810E+01 + -0.3236473921065532E+01 + -0.3237264336994348E+01 + -0.3238056054615443E+01 + -0.3238849070000000E+01 + -0.3239643379252275E+01 + -0.3240438978608804E+01 + -0.3241235864339195E+01 + -0.3242034032713058E+01 + -0.3242833480000000E+01 + -0.3243634202393092E+01 + -0.3244436195779255E+01 + -0.3245239455968871E+01 + -0.3246043978772325E+01 + -0.3246849760000000E+01 + -0.3247656795575358E+01 + -0.3248465081874179E+01 + -0.3249274615385320E+01 + -0.3250085392597641E+01 + -0.3250897410000000E+01 + -0.3251710664025477E+01 + -0.3252525150884032E+01 + -0.3253340866729849E+01 + -0.3254157807717111E+01 + -0.3254975970000000E+01 + -0.3255795349682736E+01 + -0.3256615942669694E+01 + -0.3257437744815282E+01 + -0.3258260751973914E+01 + -0.3259084960000000E+01 + -0.3259910364843579E+01 + -0.3260736962837196E+01 + -0.3261564750409024E+01 + -0.3262393723987235E+01 + -0.3263223880000000E+01 + -0.3264055214782947E+01 + -0.3264887724301522E+01 + -0.3265721404428622E+01 + -0.3266556251037148E+01 + -0.3267392260000000E+01 + -0.3268229427304632E+01 + -0.3269067749396718E+01 + -0.3269907222836488E+01 + -0.3270747844184172E+01 + -0.3271589610000000E+01 + -0.3272432516718526E+01 + -0.3273276560271607E+01 + -0.3274121736465424E+01 + -0.3274968041106162E+01 + -0.3275815470000000E+01 + -0.3276664019021266E+01 + -0.3277513684316857E+01 + -0.3278364462101815E+01 + -0.3279216348591183E+01 + -0.3280069340000000E+01 + -0.3280923432556411E+01 + -0.3281778622540966E+01 + -0.3282634906247314E+01 + -0.3283492279969108E+01 + -0.3284350740000000E+01 + -0.3285210282593090E+01 + -0.3286070903839283E+01 + -0.3286932599788929E+01 + -0.3287795366492385E+01 + -0.3288659200000000E+01 + -0.3289524096351227E+01 + -0.3290390051541905E+01 + -0.3291257061556969E+01 + -0.3292125122381355E+01 + -0.3292994230000000E+01 + -0.3293864380482002E+01 + -0.3294735570233100E+01 + -0.3295607795743198E+01 + -0.3296481053502197E+01 + -0.3297355340000000E+01 + -0.3298230651640768E+01 + -0.3299106984485697E+01 + -0.3299984334510242E+01 + -0.3300862697689857E+01 + -0.3301742070000000E+01 + -0.3302622447434928E+01 + -0.3303503826064115E+01 + -0.3304386201975837E+01 + -0.3305269571258373E+01 + -0.3306153930000000E+01 + -0.3307039274299521E+01 + -0.3307925600297846E+01 + -0.3308812904146410E+01 + -0.3309701181996649E+01 + -0.3310590430000000E+01 + -0.3311480644326988E+01 + -0.3312371821224503E+01 + -0.3313263956958524E+01 + -0.3314157047795030E+01 + -0.3315051090000000E+01 + -0.3315946079832526E+01 + -0.3316842013524143E+01 + -0.3317738887299496E+01 + -0.3318636697383233E+01 + -0.3319535440000000E+01 + -0.3320435111302909E+01 + -0.3321335707158928E+01 + -0.3322237223363493E+01 + -0.3323139655712039E+01 + -0.3324043000000000E+01 + -0.3324947252155841E+01 + -0.3325852408640146E+01 + -0.3326758466046531E+01 + -0.3327665420968611E+01 + -0.3328573270000000E+01 + -0.3329482009593729E+01 + -0.3330391635640489E+01 + -0.3331302143890384E+01 + -0.3332213530093519E+01 + -0.3333125790000000E+01 + -0.3334038919469241E+01 + -0.3334952914797898E+01 + -0.3335867772391933E+01 + -0.3336783488657313E+01 + -0.3337700060000000E+01 + -0.3338617482769305E+01 + -0.3339535753087921E+01 + -0.3340454867021883E+01 + -0.3341374820637231E+01 + -0.3342295610000000E+01 + -0.3343217231213537E+01 + -0.3344139680530420E+01 + -0.3345062954240534E+01 + -0.3345987048633766E+01 + -0.3346911960000000E+01 + -0.3347837684536546E+01 + -0.3348764218070401E+01 + -0.3349691556335982E+01 + -0.3350619695067708E+01 + -0.3351548630000000E+01 + -0.3352478357040278E+01 + -0.3353408872787979E+01 + -0.3354340174015540E+01 + -0.3355272257495401E+01 + -0.3356205120000000E+01 + -0.3357138758102341E+01 + -0.3358073167577685E+01 + -0.3359008344001859E+01 + -0.3359944282950688E+01 + -0.3360880980000000E+01 + -0.3361818430870359E+01 + -0.3362756631861281E+01 + -0.3363695579417025E+01 + -0.3364635269981846E+01 + -0.3365575700000000E+01 + -0.3366516865856226E+01 + -0.3367458763697190E+01 + -0.3368401389610041E+01 + -0.3369344739681928E+01 + -0.3370288810000000E+01 + -0.3371233596664738E+01 + -0.3372179095829959E+01 + -0.3373125303662811E+01 + -0.3374072216330441E+01 + -0.3375019830000000E+01 + -0.3375968140844820E+01 + -0.3376917145062973E+01 + -0.3377866838858717E+01 + -0.3378817218436307E+01 + -0.3379768280000000E+01 + -0.3380720019715981E+01 + -0.3381672433598147E+01 + -0.3382625517622323E+01 + -0.3383579267764332E+01 + -0.3384533680000000E+01 + -0.3385488750371255E+01 + -0.3386444475184437E+01 + -0.3387400850811992E+01 + -0.3388357873626365E+01 + -0.3389315540000000E+01 + -0.3390273846239001E+01 + -0.3391232788384105E+01 + -0.3392192362409709E+01 + -0.3393152564290209E+01 + -0.3394113390000000E+01 + -0.3395074835552742E+01 + -0.3396036897119143E+01 + -0.3396999570909172E+01 + -0.3397962853132801E+01 + -0.3398926740000000E+01 + -0.3399891227710031E+01 + -0.3400856312419324E+01 + -0.3401821990273603E+01 + -0.3402788257418587E+01 + -0.3403755110000000E+01 + -0.3404722544167135E+01 + -0.3405690556083562E+01 + -0.3406659141916422E+01 + -0.3407628297832854E+01 + -0.3408598020000000E+01 + -0.3409568304581428E+01 + -0.3410539147726425E+01 + -0.3411510545580710E+01 + -0.3412482494289996E+01 + -0.3413454990000000E+01 + -0.3414428028867153E+01 + -0.3415401607090736E+01 + -0.3416375720880742E+01 + -0.3417350366447165E+01 + -0.3418325540000000E+01 + -0.3419301237709959E+01 + -0.3420277455590630E+01 + -0.3421254189616323E+01 + -0.3422231435761344E+01 + -0.3423209190000000E+01 + -0.3424187448373012E+01 + -0.3425166207186744E+01 + -0.3426145462813969E+01 + -0.3427125211627462E+01 + -0.3428105450000000E+01 + -0.3429086174237991E+01 + -0.3430067380382393E+01 + -0.3431049064407801E+01 + -0.3432031222288805E+01 + -0.3433013850000000E+01 + -0.3433996943555024E+01 + -0.3434980499123684E+01 + -0.3435964512914832E+01 + -0.3436948981137320E+01 + -0.3437933900000000E+01 + -0.3438919265701914E+01 + -0.3439905074402871E+01 + -0.3440891322252873E+01 + -0.3441878005401915E+01 + -0.3442865120000000E+01 + -0.3443852662197319E+01 + -0.3444840628144831E+01 + -0.3445829013993681E+01 + -0.3446817815895021E+01 + -0.3447807030000000E+01 + -0.3448796652468807E+01 + -0.3449786679497806E+01 + -0.3450777107292402E+01 + -0.3451767932057998E+01 + -0.3452759150000000E+01 + -0.3453750757287452E+01 + -0.3454742749943947E+01 + -0.3455735123956715E+01 + -0.3456727875312989E+01 + -0.3457721000000000E+01 + -0.3458714494061384E+01 + -0.3459708353766406E+01 + -0.3460702575440737E+01 + -0.3461697155410045E+01 + -0.3462692090000000E+01 + -0.3463687375507010E+01 + -0.3464683008110427E+01 + -0.3465678983960338E+01 + -0.3466675299206833E+01 + -0.3467671950000000E+01 + -0.3468668932470575E+01 + -0.3469666242671885E+01 + -0.3470663876637910E+01 + -0.3471661830402623E+01 + -0.3472660100000000E+01 + -0.3473658681490692E+01 + -0.3474657571042032E+01 + -0.3475656764848026E+01 + -0.3476656259102680E+01 + -0.3477656050000000E+01 + -0.3478656133726657E+01 + -0.3479656506439986E+01 + -0.3480657164289987E+01 + -0.3481658103426658E+01 + -0.3482659320000000E+01 + -0.3483660810162679E+01 + -0.3484662570078024E+01 + -0.3485664595912029E+01 + -0.3486666883830690E+01 + -0.3487669430000000E+01 + -0.3488672230582624E+01 + -0.3489675281727915E+01 + -0.3490678579581893E+01 + -0.3491682120290582E+01 + -0.3492685900000000E+01 + -0.3493689914866822E+01 + -0.3494694161090316E+01 + -0.3495698634880398E+01 + -0.3496703332446987E+01 + -0.3497708250000000E+01 + -0.3498713383710086E+01 + -0.3499718729590822E+01 + -0.3500724283616514E+01 + -0.3501730041761472E+01 + -0.3502736000000000E+01 + -0.3503742154372833E+01 + -0.3504748501186398E+01 + -0.3505755036813546E+01 + -0.3506761757627129E+01 + -0.3507768660000000E+01 + -0.3508775740238581E+01 + -0.3509782994383586E+01 + -0.3510790418409300E+01 + -0.3511798008290011E+01 + -0.3512805760000000E+01 + -0.3513813669552843E+01 + -0.3514821733119259E+01 + -0.3515829946909253E+01 + -0.3516838307132831E+01 + -0.3517846810000000E+01 + -0.3518855451710045E+01 + -0.3519864228419377E+01 + -0.3520873136273687E+01 + -0.3521882171418665E+01 + -0.3522891330000000E+01 + -0.3523900608166976E+01 + -0.3524910002083233E+01 + -0.3525919507916001E+01 + -0.3526929121832513E+01 + -0.3527938840000000E+01 + -0.3528948658582051E+01 + -0.3529958573727692E+01 + -0.3530968581582307E+01 + -0.3531978678291283E+01 + -0.3532988860000000E+01 + -0.3533999122864821E+01 + -0.3535009463086000E+01 + -0.3536019876874769E+01 + -0.3537030360442359E+01 + -0.3538040910000000E+01 + -0.3539051521718665E+01 + -0.3540062191608306E+01 + -0.3541072915638613E+01 + -0.3542083689779281E+01 + -0.3543094510000000E+01 + -0.3544105372340517E+01 + -0.3545116273120777E+01 + -0.3546127208730779E+01 + -0.3547138175560520E+01 + -0.3548149170000000E+01 + -0.3549160188359267E+01 + -0.3550171226628585E+01 + -0.3551182280718269E+01 + -0.3552193346538637E+01 + -0.3553204420000002E+01 + -0.3554215497102416E+01 + -0.3555226574204883E+01 + -0.3556237647756144E+01 + -0.3557248714204936E+01 + -0.3558259770000000E+01 + -0.3559270811471073E+01 + -0.3560281834471884E+01 + -0.3561292834737158E+01 + -0.3562303808001623E+01 + -0.3563314750000001E+01 + -0.3564325656613293E+01 + -0.3565336524307582E+01 + -0.3566347349695225E+01 + -0.3567358129388579E+01 + -0.3568368860000000E+01 + -0.3569379537995760E+01 + -0.3570390159257792E+01 + -0.3571400719521944E+01 + -0.3572411214524065E+01 + -0.3573421640000001E+01 + -0.3574431991803669E+01 + -0.3575442266261251E+01 + -0.3576452459817000E+01 + -0.3577462568915166E+01 + -0.3578472590000000E+01 + -0.3579482519429569E+01 + -0.3580492353217205E+01 + -0.3581502087290057E+01 + -0.3582511717575274E+01 + -0.3583521240000001E+01 + -0.3584530650558057E+01 + -0.3585539945509929E+01 + -0.3586549121182773E+01 + -0.3587558173903745E+01 + -0.3588567100000000E+01 + -0.3589575895778207E+01 + -0.3590584557463082E+01 + -0.3591593081258853E+01 + -0.3592601463369751E+01 + -0.3593609700000001E+01 + -0.3594617787289118E+01 + -0.3595625721117747E+01 + -0.3596633497301817E+01 + -0.3597641111657258E+01 + -0.3598648560000000E+01 + -0.3599655838265326E+01 + -0.3600662942865936E+01 + -0.3601669870333883E+01 + -0.3602676617201221E+01 + -0.3603683180000001E+01 + -0.3604689555169579E+01 + -0.3605695738778512E+01 + -0.3606701726802655E+01 + -0.3607707515217865E+01 + -0.3608713100000000E+01 + -0.3609718477136360E+01 + -0.3610723642660021E+01 + -0.3611728592615501E+01 + -0.3612733323047322E+01 + -0.3613737830000001E+01 + -0.3614742109564982E+01 + -0.3615746158021406E+01 + -0.3616749971695341E+01 + -0.3617753546912850E+01 + -0.3618756880000000E+01 + -0.3619759967243715E+01 + -0.3620762804774355E+01 + -0.3621765388683137E+01 + -0.3622767715061281E+01 + -0.3623769780000001E+01 + -0.3624771579620158E+01 + -0.3625773110161174E+01 + -0.3626774367892111E+01 + -0.3627775349082032E+01 + -0.3628776050000000E+01 + -0.3629776466835656E+01 + -0.3630776595460953E+01 + -0.3631776431668422E+01 + -0.3632775971250594E+01 + -0.3633775210000001E+01 + -0.3634774143837220E+01 + -0.3635772769195016E+01 + -0.3636771082634204E+01 + -0.3637769080715594E+01 + -0.3638766760000000E+01 + -0.3639764116935469E+01 + -0.3640761147518985E+01 + -0.3641757847634766E+01 + -0.3642754213167031E+01 + -0.3643750240000001E+01 + -0.3644745924100908E+01 + -0.3645741261769048E+01 + -0.3646736249386736E+01 + -0.3647730883336283E+01 + -0.3648725160000000E+01 + -0.3649719076580905E+01 + -0.3650712633564825E+01 + -0.3651705832258294E+01 + -0.3652698673967841E+01 + -0.3653691160000001E+01 + -0.3654683291735475E+01 + -0.3655675070851652E+01 + -0.3656666499100091E+01 + -0.3657657578232354E+01 + -0.3658648310000000E+01 + -0.3659638696157200E+01 + -0.3660628738468571E+01 + -0.3661618438701342E+01 + -0.3662607798622742E+01 + -0.3663596820000001E+01 + -0.3664585504515728E+01 + -0.3665573853514066E+01 + -0.3666561868254540E+01 + -0.3667549549996677E+01 + -0.3668536900000000E+01 + -0.3669523919619893E+01 + -0.3670510610595168E+01 + -0.3671496974760498E+01 + -0.3672483013950552E+01 + -0.3673468730000001E+01 + -0.3674454124684703E+01 + -0.3675439199545262E+01 + -0.3676423956063470E+01 + -0.3677408395721119E+01 + -0.3678392520000000E+01 + -0.3679376330441301E+01 + -0.3680359828823788E+01 + -0.3681343016985625E+01 + -0.3682325896764975E+01 + -0.3683308470000001E+01 + -0.3684290738430097E+01 + -0.3685272703399588E+01 + -0.3686254366154032E+01 + -0.3687235727938983E+01 + -0.3688216790000000E+01 + -0.3689197553678314E+01 + -0.3690178020697861E+01 + -0.3691158192878250E+01 + -0.3692138072039093E+01 + -0.3693117660000001E+01 + -0.3694096958536647E+01 + -0.3695075969248968E+01 + -0.3696054693692967E+01 + -0.3697033133424644E+01 + -0.3698011290000000E+01 + -0.3698989164975102E+01 + -0.3699966759906268E+01 + -0.3700944076349884E+01 + -0.3701921115862333E+01 + -0.3702897880000001E+01 + -0.3703874370362950E+01 + -0.3704850588725962E+01 + -0.3705826536907499E+01 + -0.3706802216726025E+01 + -0.3707777630000000E+01 + -0.3708752778453104E+01 + -0.3709727663429888E+01 + -0.3710702286180120E+01 + -0.3711676647953567E+01 + -0.3712650750000001E+01 + -0.3713624593664636E+01 + -0.3714598180674487E+01 + -0.3715571512852022E+01 + -0.3716544592019705E+01 + -0.3717517420000000E+01 + -0.3718489998568358E+01 + -0.3719462329312165E+01 + -0.3720434413771793E+01 + -0.3721406253487614E+01 + -0.3722377850000001E+01 + -0.3723349204861935E+01 + -0.3724320319676854E+01 + -0.3725291196060805E+01 + -0.3726261835629838E+01 + -0.3727232240000000E+01 + -0.3728202410783905E+01 + -0.3729172349580423E+01 + -0.3730142057984988E+01 + -0.3731111537593035E+01 + -0.3732080790000001E+01 + -0.3733049816802447E+01 + -0.3734018619601457E+01 + -0.3734987199999244E+01 + -0.3735955559598021E+01 + -0.3736923700000000E+01 + -0.3737891622806311E+01 + -0.3738859329613752E+01 + -0.3739826822018037E+01 + -0.3740794101614882E+01 + -0.3741761170000001E+01 + -0.3742728028772311E+01 + -0.3743694679543538E+01 + -0.3744661123928609E+01 + -0.3745627363542454E+01 + -0.3746593400000000E+01 + -0.3747559234904450E+01 + -0.3748524869812102E+01 + -0.3749490306267529E+01 + -0.3750455545815304E+01 + -0.3751420590000001E+01 + -0.3752385440409892E+01 + -0.3753350098808056E+01 + -0.3754314567001275E+01 + -0.3755278846796330E+01 + -0.3756242940000000E+01 + -0.3757206848335988E+01 + -0.3758170573195677E+01 + -0.3759134115887372E+01 + -0.3760097477719378E+01 + -0.3761060660000000E+01 + -0.3762023664086160E+01 + -0.3762986491529239E+01 + -0.3763949143929239E+01 + -0.3764911622886159E+01 + -0.3765873930000000E+01 + -0.3766836066919378E+01 + -0.3767798035487372E+01 + -0.3768759837595677E+01 + -0.3769721475135988E+01 + -0.3770682950000000E+01 + -0.3771644263996330E+01 + -0.3772605418601275E+01 + -0.3773566415208056E+01 + -0.3774527255209891E+01 + -0.3775487940000000E+01 + -0.3776448471015304E+01 + -0.3777408849867529E+01 + -0.3778369078212102E+01 + -0.3779329157704450E+01 + -0.3780289090000000E+01 + -0.3781248876742455E+01 + -0.3782208519528609E+01 + -0.3783168019943537E+01 + -0.3784127379572310E+01 + -0.3785086600000000E+01 + -0.3786045682814881E+01 + -0.3787004629618037E+01 + -0.3787963442013752E+01 + -0.3788922121606311E+01 + -0.3789880670000000E+01 + -0.3790839088798022E+01 + -0.3791797379599245E+01 + -0.3792755544001457E+01 + -0.3793713583602447E+01 + -0.3794671500000000E+01 + -0.3795629294793035E+01 + -0.3796586969584987E+01 + -0.3797544525980422E+01 + -0.3798501965583905E+01 + -0.3799459290000000E+01 + -0.3800416500829840E+01 + -0.3801373599660808E+01 + -0.3802330588076856E+01 + -0.3803287467661937E+01 + -0.3804244240000000E+01 + -0.3805200906687611E+01 + -0.3806157469371786E+01 + -0.3807113929712156E+01 + -0.3808070289368350E+01 + -0.3809026550000000E+01 + -0.3809982713219720E+01 + -0.3810938780452051E+01 + -0.3811894753074523E+01 + -0.3812850632464663E+01 + -0.3813806420000000E+01 + -0.3814762117153516E+01 + -0.3815717725780015E+01 + -0.3816673247829756E+01 + -0.3817628685252998E+01 + -0.3818584040000000E+01 + -0.3819539313926219E+01 + -0.3820494508507893E+01 + -0.3821449625126457E+01 + -0.3822404665163348E+01 + -0.3823359630000000E+01 + -0.3824314521061611E+01 + -0.3825269339948417E+01 + -0.3826224088304419E+01 + -0.3827178767773614E+01 + -0.3828133380000000E+01 + -0.3829087926627340E+01 + -0.3830042409298439E+01 + -0.3830996829655869E+01 + -0.3831951189342199E+01 + -0.3832905490000000E+01 + -0.3833859733229033E+01 + -0.3834813920457827E+01 + -0.3835768053072106E+01 + -0.3836722132457589E+01 + -0.3837676160000000E+01 + -0.3838630137176530E+01 + -0.3839584065830252E+01 + -0.3840537947895708E+01 + -0.3841491785307443E+01 + -0.3842445580000000E+01 + -0.3843399333824849E+01 + -0.3844353048301169E+01 + -0.3845306724865064E+01 + -0.3846260364952639E+01 + -0.3847213970000000E+01 + -0.3848167541444074E+01 + -0.3849121080725075E+01 + -0.3850074589284038E+01 + -0.3851028068562001E+01 + -0.3851981520000000E+01 + -0.3852934945118856E+01 + -0.3853888345758535E+01 + -0.3854841723838785E+01 + -0.3855795081279357E+01 + -0.3856748420000000E+01 + -0.3857701741840501E+01 + -0.3858655048320786E+01 + -0.3859608340880822E+01 + -0.3860561620960571E+01 + -0.3861514890000000E+01 + -0.3862468149439144E+01 + -0.3863421400718324E+01 + -0.3864374645277931E+01 + -0.3865327884558359E+01 + -0.3866281120000000E+01 + -0.3867234353122925E+01 + -0.3868187585765922E+01 + -0.3869140819847455E+01 + -0.3870094057285992E+01 + -0.3871047300000000E+01 + -0.3872000549829157E+01 + -0.3872953808297994E+01 + -0.3873907076852251E+01 + -0.3874860356937673E+01 + -0.3875813650000000E+01 + -0.3876766957480447E+01 + -0.3877720280802105E+01 + -0.3878673621383540E+01 + -0.3879626980643317E+01 + -0.3880580360000000E+01 + -0.3881533760969060E+01 + -0.3882487185453590E+01 + -0.3883440635453590E+01 + -0.3884394112969060E+01 + -0.3885347620000000E+01 + -0.3886301158403316E+01 + -0.3887254729463539E+01 + -0.3888208334322102E+01 + -0.3889161974120444E+01 + -0.3890115650000000E+01 + -0.3891069363257676E+01 + -0.3892023115812259E+01 + -0.3892976909738003E+01 + -0.3893930747109165E+01 + -0.3894884630000000E+01 + -0.3895838560325977E+01 + -0.3896792539367426E+01 + -0.3897746568245885E+01 + -0.3898700648082896E+01 + -0.3899654780000000E+01 + -0.3900608965278412E+01 + -0.3901563205838039E+01 + -0.3902517503758459E+01 + -0.3903471861119253E+01 + -0.3904426280000000E+01 + -0.3905380762320374E+01 + -0.3906335309360421E+01 + -0.3907289922240281E+01 + -0.3908244602080094E+01 + -0.3909199350000000E+01 + -0.3910154167280094E+01 + -0.3911109055840280E+01 + -0.3912064017760420E+01 + -0.3913019055120373E+01 + -0.3913974170000000E+01 + -0.3914929364319253E+01 + -0.3915884639358460E+01 + -0.3916839996238039E+01 + -0.3917795436078412E+01 + -0.3918750960000000E+01 + -0.3919706569282896E+01 + -0.3920662265845884E+01 + -0.3921618051767426E+01 + -0.3922573929125978E+01 + -0.3923529900000000E+01 + -0.3924485966309165E+01 + -0.3925442129338004E+01 + -0.3926398390212260E+01 + -0.3927354750057677E+01 + -0.3928311210000000E+01 + -0.3929267771320443E+01 + -0.3930224435922101E+01 + -0.3931181205863538E+01 + -0.3932138083203316E+01 + -0.3933095070000000E+01 + -0.3934052168169059E+01 + -0.3935009379053590E+01 + -0.3935966703853590E+01 + -0.3936924143769060E+01 + -0.3937881700000000E+01 + -0.3938839373843317E+01 + -0.3939797166983540E+01 + -0.3940755081202104E+01 + -0.3941713118280446E+01 + -0.3942671280000000E+01 + -0.3943629568137673E+01 + -0.3944587984452252E+01 + -0.3945546530697994E+01 + -0.3946505208629158E+01 + -0.3947464020000000E+01 + -0.3948422966485992E+01 + -0.3949382049447454E+01 + -0.3950341270165921E+01 + -0.3951300629922925E+01 + -0.3952260130000000E+01 + -0.3953219771758359E+01 + -0.3954179556877932E+01 + -0.3955139487118324E+01 + -0.3956099564239144E+01 + -0.3957059790000000E+01 + -0.3958020166160571E+01 + -0.3958980694480821E+01 + -0.3959941376720785E+01 + -0.3960902214640500E+01 + -0.3961863210000000E+01 + -0.3962824364479357E+01 + -0.3963785679438786E+01 + -0.3964747156158536E+01 + -0.3965708795918857E+01 + -0.3966670600000000E+01 + -0.3967632569762001E+01 + -0.3968594706884037E+01 + -0.3969557013125074E+01 + -0.3970519490244073E+01 + -0.3971482140000000E+01 + -0.3972444964152639E+01 + -0.3973407964465065E+01 + -0.3974371142701170E+01 + -0.3975334500624850E+01 + -0.3976298040000000E+01 + -0.3977261762507442E+01 + -0.3978225669495706E+01 + -0.3979189762230249E+01 + -0.3980154041976528E+01 + -0.3981118510000000E+01 + -0.3982083167657592E+01 + -0.3983048016672112E+01 + -0.3984013058857835E+01 + -0.3984978296029039E+01 + -0.3985943730000000E+01 + -0.3986909362542188E+01 + -0.3987875195255846E+01 + -0.3988841229698410E+01 + -0.3989807467427316E+01 + -0.3990773910000000E+01 + -0.3991740558973655E+01 + -0.3992707415904503E+01 + -0.3993674482348524E+01 + -0.3994641759861696E+01 + -0.3995609250000000E+01 + -0.3996576954363192E+01 + -0.3997544874726142E+01 + -0.3998513012907496E+01 + -0.3999481370725900E+01 + -0.4000449950000000E+01 + -0.4001418752453575E+01 + -0.4002387779430929E+01 + -0.4003357032181494E+01 + -0.4004326511954706E+01 + -0.4005296220000000E+01 + -0.4006266157662507E+01 + -0.4007236326670145E+01 + -0.4008206728846530E+01 + -0.4009177366015277E+01 + -0.4010148240000000E+01 + -0.4011119352576398E+01 + -0.4012090705328492E+01 + -0.4013062299792388E+01 + -0.4014034137504190E+01 + -0.4015006220000000E+01 + -0.4015978548831904E+01 + -0.4016951125615889E+01 + -0.4017923951983922E+01 + -0.4018897029567969E+01 + -0.4019870360000000E+01 + -0.4020843944895987E+01 + -0.4021817785807951E+01 + -0.4022791884271922E+01 + -0.4023766241823929E+01 + -0.4024740860000000E+01 + -0.4025715740384148E+01 + -0.4026690884752306E+01 + -0.4027666294928390E+01 + -0.4028641972736316E+01 + -0.4029617920000000E+01 + -0.4030594138447421E+01 + -0.4031570629422824E+01 + -0.4032547394174516E+01 + -0.4033524433950806E+01 + -0.4034501750000000E+01 + -0.4035479343666168E+01 + -0.4036457216676401E+01 + -0.4037435370853549E+01 + -0.4038413808020465E+01 + -0.4039392530000000E+01 + -0.4040371538567908E+01 + -0.4041350835311573E+01 + -0.4042330421771286E+01 + -0.4043310299487332E+01 + -0.4044290470000000E+01 + -0.4045270934862199E+01 + -0.4046251695677304E+01 + -0.4047232754061310E+01 + -0.4048214111630210E+01 + -0.4049195770000000E+01 + -0.4050177730783295E+01 + -0.4051159995579208E+01 + -0.4052142565983474E+01 + -0.4053125443591826E+01 + -0.4054108630000000E+01 + -0.4055092126804620E+01 + -0.4056075935605864E+01 + -0.4057060058004797E+01 + -0.4058044495602487E+01 + -0.4059029250000000E+01 + -0.4060014322798223E+01 + -0.4060999715597334E+01 + -0.4061985429997336E+01 + -0.4062971467598223E+01 + -0.4063957830000000E+01 + -0.4064944518802488E+01 + -0.4065931535604798E+01 + -0.4066918882005864E+01 + -0.4067906559604620E+01 + -0.4068894570000000E+01 + -0.4069882914791825E+01 + -0.4070871595583473E+01 + -0.4071860613979209E+01 + -0.4072849971583296E+01 + -0.4073839670000000E+01 + -0.4074829710830211E+01 + -0.4075820095661310E+01 + -0.4076810826077304E+01 + -0.4077801903662198E+01 + -0.4078793330000000E+01 + -0.4079785106687330E+01 + -0.4080777235371285E+01 + -0.4081769717711575E+01 + -0.4082762555367910E+01 + -0.4083755750000000E+01 + -0.4084749303220466E+01 + -0.4085743216453549E+01 + -0.4086737491076400E+01 + -0.4087732128466167E+01 + -0.4088727130000000E+01 + -0.4089722497150804E+01 + -0.4090718231774514E+01 + -0.4091714335822824E+01 + -0.4092710811247422E+01 + -0.4093707660000000E+01 + -0.4094704883936316E+01 + -0.4095702484528390E+01 + -0.4096700463152305E+01 + -0.4097698821184147E+01 + -0.4098697560000000E+01 + -0.4099696681023928E+01 + -0.4100696185871922E+01 + -0.4101696076207952E+01 + -0.4102696353695988E+01 + -0.4103697020000000E+01 + -0.4104698076767972E+01 + -0.4105699525583923E+01 + -0.4106701368015889E+01 + -0.4107703605631903E+01 + -0.4108706240000000E+01 + -0.4109709272704188E+01 + -0.4110712705392387E+01 + -0.4111716539728493E+01 + -0.4112720777376398E+01 + -0.4113725420000000E+01 + -0.4114730469215276E+01 + -0.4115735926446529E+01 + -0.4116741793070144E+01 + -0.4117748070462506E+01 + -0.4118754760000000E+01 + -0.4119761863154706E+01 + -0.4120769381781494E+01 + -0.4121777317830929E+01 + -0.4122785673253577E+01 + -0.4123794450000000E+01 + -0.4124803649925900E+01 + -0.4125813274507496E+01 + -0.4126823325126142E+01 + -0.4127833803163192E+01 + -0.4128844710000000E+01 + -0.4129856047061696E+01 + -0.4130867815948523E+01 + -0.4131880018304504E+01 + -0.4132892655773657E+01 + -0.4133905730000000E+01 + -0.4134919242627317E+01 + -0.4135933195298410E+01 + -0.4136947589655846E+01 + -0.4137962427342187E+01 + -0.4138977710000000E+01 + -0.4139993439229039E+01 + -0.4141009616457835E+01 + -0.4142026243072111E+01 + -0.4143043320457593E+01 + -0.4144060850000000E+01 + -0.4145078833176528E+01 + -0.4146097271830248E+01 + -0.4147116167895705E+01 + -0.4148135523307441E+01 + -0.4149155340000000E+01 + -0.4150175619824850E+01 + -0.4151196364301169E+01 + -0.4152217574865064E+01 + -0.4153239252952640E+01 + -0.4154261400000000E+01 + -0.4155284017444074E+01 + -0.4156307106725073E+01 + -0.4157330669284037E+01 + -0.4158354706562000E+01 + -0.4159379220000000E+01 + -0.4160404211118856E+01 + -0.4161429681758535E+01 + -0.4162455633838786E+01 + -0.4163482069279358E+01 + -0.4164508990000000E+01 + -0.4165536397840500E+01 + -0.4166564294320785E+01 + -0.4167592680880820E+01 + -0.4168621558960570E+01 + -0.4169650930000000E+01 + -0.4170680795439144E+01 + -0.4171711156718324E+01 + -0.4172742015277931E+01 + -0.4173773372558360E+01 + -0.4174805230000001E+01 + -0.4175837589122925E+01 + -0.4176870451765921E+01 + -0.4177903819847455E+01 + -0.4178937695285992E+01 + -0.4179972080000000E+01 + -0.4181006975829157E+01 + -0.4182042384297994E+01 + -0.4183078306852251E+01 + -0.4184114744937673E+01 + -0.4185151700000001E+01 + -0.4186189173480446E+01 + -0.4187227166802104E+01 + -0.4188265681383539E+01 + -0.4189304718643316E+01 + -0.4190344280000000E+01 + -0.4191384366969060E+01 + -0.4192424981453591E+01 + -0.4193466125453592E+01 + -0.4194507800969063E+01 + -0.4195550010000001E+01 + -0.4196592754403313E+01 + -0.4197636035463531E+01 + -0.4198679854322093E+01 + -0.4199724212120437E+01 + -0.4200769110000000E+01 + -0.4201814549257692E+01 + -0.4202860531812289E+01 + -0.4203907059738040E+01 + -0.4204954135109196E+01 + -0.4206001760000001E+01 + -0.4207049936325927E+01 + -0.4208098665367319E+01 + -0.4209147948245750E+01 + -0.4210197786082787E+01 + -0.4211248180000000E+01 + -0.4212299131278609E+01 + -0.4213350641838439E+01 + -0.4214402713758964E+01 + -0.4215455349119661E+01 + -0.4216508550000001E+01 + -0.4217562318319639E+01 + -0.4218616655358927E+01 + -0.4219671562238396E+01 + -0.4220727040078577E+01 + -0.4221783090000000E+01 + -0.4222839713282840E+01 + -0.4223896911845857E+01 + -0.4224954687767453E+01 + -0.4226013043126033E+01 + -0.4227071980000001E+01 + -0.4228131500309002E+01 + -0.4229191605337647E+01 + -0.4230252296211793E+01 + -0.4231313574057293E+01 + -0.4232375440000000E+01 + -0.4233437895321158E+01 + -0.4234500941923558E+01 + -0.4235564581865378E+01 + -0.4236628817204800E+01 + -0.4237693650000001E+01 + -0.4238759082166369E+01 + -0.4239825115048124E+01 + -0.4240891749846695E+01 + -0.4241958987763510E+01 + -0.4243026830000000E+01 + -0.4244095277853370E+01 + -0.4245164333003950E+01 + -0.4246233997227844E+01 + -0.4247304272301159E+01 + -0.4248375160000001E+01 + -0.4249446662100151E+01 + -0.4250518780376079E+01 + -0.4251591516601933E+01 + -0.4252664872551858E+01 + -0.4253738850000000E+01 + -0.4254813450626033E+01 + -0.4255888675731739E+01 + -0.4256964526524429E+01 + -0.4258041004211414E+01 + -0.4259118110000001E+01 + -0.4260195845235721E+01 + -0.4261274211816968E+01 + -0.4262353211780355E+01 + -0.4263432847162495E+01 + -0.4264513120000000E+01 + -0.4265594032191088E+01 + -0.4266675585080393E+01 + -0.4267757779874154E+01 + -0.4268840617778611E+01 + -0.4269924100000001E+01 + -0.4271008227839929E+01 + -0.4272093002981462E+01 + -0.4273178427203030E+01 + -0.4274264502283066E+01 + -0.4275351230000000E+01 + -0.4276438612129199E+01 + -0.4277526650433762E+01 + -0.4278615346673726E+01 + -0.4279704702609127E+01 + -0.4280794720000001E+01 + -0.4281885400523280E+01 + -0.4282976745523492E+01 + -0.4284068756262066E+01 + -0.4285161434000426E+01 + -0.4286254780000000E+01 + -0.4287348795617686E+01 + -0.4288443482592271E+01 + -0.4289538842758013E+01 + -0.4290634877949170E+01 + -0.4291731590000001E+01 + -0.4292828980685978E+01 + -0.4293927051547425E+01 + -0.4295025804065885E+01 + -0.4296125239722897E+01 + -0.4297225360000000E+01 + -0.4298326166438409E+01 + -0.4299427660818032E+01 + -0.4300529844978450E+01 + -0.4301632720759246E+01 + -0.4302736290000001E+01 + -0.4303840554440389E+01 + -0.4304945515420450E+01 + -0.4306051174180317E+01 + -0.4307157531960122E+01 + -0.4308264590000000E+01 + -0.4309372349640042E+01 + -0.4310480812620175E+01 + -0.4311589980780288E+01 + -0.4312699855960267E+01 + -0.4313810440000001E+01 + -0.4314921734679448E+01 + -0.4316033741538853E+01 + -0.4317146462058536E+01 + -0.4318259897718812E+01 + -0.4319374050000000E+01 + -0.4320488920442173E+01 + -0.4321604510824417E+01 + -0.4322720822985575E+01 + -0.4323837858764489E+01 + -0.4324955620000001E+01 + -0.4326074108431864E+01 + -0.4327193325403481E+01 + -0.4328313272159166E+01 + -0.4329433949943234E+01 + -0.4330555360000000E+01 + -0.4331677503670375E+01 + -0.4332800382681662E+01 + -0.4333923998857762E+01 + -0.4335048354022574E+01 + -0.4336173450000001E+01 + -0.4337299288566638E+01 + -0.4338425871309872E+01 + -0.4339553199769787E+01 + -0.4340681275486468E+01 + -0.4341810100000000E+01 + -0.4342939674863079E+01 + -0.4344070001678855E+01 + -0.4345201082063092E+01 + -0.4346332917631552E+01 + -0.4347465510000001E+01 + -0.4348598860781049E+01 + -0.4349732971574711E+01 + -0.4350867843977848E+01 + -0.4352003479587323E+01 + -0.4353139880000000E+01 + -0.4354277046812728E+01 + -0.4355414981622305E+01 + -0.4356553686025519E+01 + -0.4357693161619156E+01 + -0.4358833410000001E+01 + -0.4359974432768041E+01 + -0.4361116231536069E+01 + -0.4362258807920076E+01 + -0.4363402163536056E+01 + -0.4364546300000000E+01 + -0.4365691218915110E+01 + -0.4366836921833421E+01 + -0.4367983410294178E+01 + -0.4369130685836622E+01 + -0.4370278750000001E+01 + -0.4371427604371520E+01 + -0.4372577250730246E+01 + -0.4373727690903213E+01 + -0.4374878926717454E+01 + -0.4376030960000000E+01 + -0.4377183792478816E+01 + -0.4378337425485595E+01 + -0.4379491860252968E+01 + -0.4380647098013561E+01 + -0.4381803140000001E+01 + -0.4382959987553220E+01 + -0.4384117642447371E+01 + -0.4385276106564913E+01 + -0.4386435381788303E+01 + -0.4387595470000000E+01 + -0.4388756372988309E+01 + -0.4389918092164923E+01 + -0.4391080628847382E+01 + -0.4392243984353228E+01 + -0.4393408160000001E+01 + -0.4394573157213547E+01 + -0.4395738977852940E+01 + -0.4396905623885560E+01 + -0.4398073097278786E+01 + -0.4399241400000000E+01 + -0.4400410533917508E+01 + -0.4401580500503322E+01 + -0.4402751301130382E+01 + -0.4403922937171628E+01 + -0.4405095410000001E+01 + -0.4406268721036426E+01 + -0.4407442871893776E+01 + -0.4408617864232915E+01 + -0.4409793699714703E+01 + -0.4410970380000000E+01 + -0.4412147906736795E+01 + -0.4413326281521576E+01 + -0.4414505505937961E+01 + -0.4415685581569563E+01 + -0.4416866510000001E+01 + -0.4418048292816398E+01 + -0.4419230931619921E+01 + -0.4420414428015244E+01 + -0.4421598783607045E+01 + -0.4422784000000000E+01 + -0.4423970078797618E+01 + -0.4425157021598746E+01 + -0.4426344830001066E+01 + -0.4427533505602257E+01 + -0.4428723050000000E+01 + -0.4429913464793131E+01 + -0.4431104751585095E+01 + -0.4432296911980494E+01 + -0.4433489947583928E+01 + -0.4434683860000000E+01 + -0.4435878650829861E+01 + -0.4437074321660876E+01 + -0.4438270874076959E+01 + -0.4439468309662029E+01 + -0.4440666630000000E+01 + -0.4441865836687426E+01 + -0.4443065931371404E+01 + -0.4444266915711669E+01 + -0.4445468791367956E+01 + -0.4446671560000000E+01 + -0.4447875223220438E+01 + -0.4449079782453514E+01 + -0.4450285239076369E+01 + -0.4451491594466150E+01 + -0.4452698850000000E+01 + -0.4453907007150822E+01 + -0.4455116067774545E+01 + -0.4456326033822856E+01 + -0.4457536907247445E+01 + -0.4458748690000000E+01 + -0.4459961383936277E+01 + -0.4461174990528312E+01 + -0.4462389511152208E+01 + -0.4463604947184069E+01 + -0.4464821300000000E+01 + -0.4466038571024071E+01 + -0.4467256761872210E+01 + -0.4468475874208314E+01 + -0.4469695909696279E+01 + -0.4470916870000000E+01 + -0.4472138756767443E+01 + -0.4473361571582852E+01 + -0.4474585316014538E+01 + -0.4475809991630817E+01 + -0.4477035600000000E+01 + -0.4478262142706159E+01 + -0.4479489621396385E+01 + -0.4480718037733533E+01 + -0.4481947393380454E+01 + -0.4483177690000000E+01 + -0.4484408929207927E+01 + -0.4485641112431609E+01 + -0.4486874241051329E+01 + -0.4488108316447366E+01 + -0.4489343340000000E+01 + -0.4490579313182137E+01 + -0.4491816237837177E+01 + -0.4493054115901149E+01 + -0.4494292949310081E+01 + -0.4495532740000000E+01 + -0.4496773489823530E+01 + -0.4498015200299685E+01 + -0.4499257872864074E+01 + -0.4500501508952310E+01 + -0.4501746110000000E+01 + -0.4502991677443745E+01 + -0.4504238212724085E+01 + -0.4505485717282554E+01 + -0.4506734192560682E+01 + -0.4507983640000000E+01 + -0.4509234061121495E+01 + -0.4510485457763977E+01 + -0.4511737831845711E+01 + -0.4512991185284964E+01 + -0.4514245520000000E+01 + -0.4515500837830278E+01 + -0.4516757140300010E+01 + -0.4518014428854604E+01 + -0.4519272704939465E+01 + -0.4520531970000000E+01 + -0.4521792225477399E+01 + -0.4523053472795988E+01 + -0.4524315713375877E+01 + -0.4525578948637178E+01 + -0.4526843180000000E+01 + -0.4528108408980129E+01 + -0.4529374637476042E+01 + -0.4530641867481890E+01 + -0.4531910100991826E+01 + -0.4533179340000000E+01 + -0.4534449586362088E+01 + -0.4535720841379849E+01 + -0.4536993106216566E+01 + -0.4538266382035523E+01 + -0.4539540670000000E+01 + -0.4540815971411522E+01 + -0.4542092288124565E+01 + -0.4543369622131847E+01 + -0.4544647975426086E+01 + -0.4545927350000000E+01 + -0.4547207747751829E+01 + -0.4548489170201896E+01 + -0.4549771618776049E+01 + -0.4551055094900135E+01 + -0.4552339600000000E+01 + -0.4553625135501167E+01 + -0.4554911702827853E+01 + -0.4556199303403957E+01 + -0.4557487938653375E+01 + -0.4558777610000000E+01 + -0.4560068318963508E+01 + -0.4561360067446692E+01 + -0.4562652857448121E+01 + -0.4563946690966367E+01 + -0.4565241570000000E+01 + -0.4566537496404801E+01 + -0.4567834471465380E+01 + -0.4569132496323559E+01 + -0.4570431572121159E+01 + -0.4571731700000000E+01 + -0.4573032881257292E+01 + -0.4574335117811792E+01 + -0.4575638411737646E+01 + -0.4576942765109000E+01 + -0.4578248180000000E+01 + -0.4579554658326035E+01 + -0.4580862201367454E+01 + -0.4582170810245858E+01 + -0.4583480486082841E+01 + -0.4584791230000000E+01 + -0.4586103043278578E+01 + -0.4587415927838396E+01 + -0.4588729885758927E+01 + -0.4590044919119638E+01 + -0.4591361030000000E+01 + -0.4592678220319659E+01 + -0.4593996491358965E+01 + -0.4595315844238439E+01 + -0.4596636280078609E+01 + -0.4597957800000000E+01 + -0.4599280405282786E+01 + -0.4600604097845749E+01 + -0.4601928879767318E+01 + -0.4603254753125925E+01 + -0.4604581720000000E+01 + -0.4605909782309194E+01 + -0.4607238941338041E+01 + -0.4608569198212289E+01 + -0.4609900554057691E+01 + -0.4611233010000000E+01 + -0.4612566567320436E+01 + -0.4613901227922092E+01 + -0.4615236993863531E+01 + -0.4616573867203312E+01 + -0.4617911850000000E+01 + -0.4619250944169061E+01 + -0.4620591151053593E+01 + -0.4621932471853592E+01 + -0.4623274907769060E+01 + -0.4624618460000000E+01 + -0.4625963129843316E+01 + -0.4627308918983539E+01 + -0.4628655829202105E+01 + -0.4630003862280446E+01 + -0.4631353020000000E+01 + -0.4632703304137672E+01 + -0.4634054716452250E+01 + -0.4635407258697992E+01 + -0.4636760932629156E+01 + -0.4638115740000000E+01 + -0.4639471682485996E+01 + -0.4640828761447462E+01 + -0.4642186978165930E+01 + -0.4643546333922933E+01 + -0.4644906830000000E+01 + -0.4646268467758345E+01 + -0.4647631248877904E+01 + -0.4648995175118288E+01 + -0.4650360248239115E+01 + -0.4651726470000000E+01 + -0.4653093842160623E+01 + -0.4654462366480928E+01 + -0.4655832044720921E+01 + -0.4657202878640609E+01 + -0.4658574870000000E+01 + -0.4659948020479160E+01 + -0.4661322331438385E+01 + -0.4662697804158031E+01 + -0.4664074439918450E+01 + -0.4665452240000000E+01 + -0.4666831205762737E+01 + -0.4668211338885532E+01 + -0.4669592641126958E+01 + -0.4670975114245590E+01 + -0.4672358760000000E+01 + -0.4673743580149892E+01 + -0.4675129576459487E+01 + -0.4676516750694137E+01 + -0.4677905104619191E+01 + -0.4679294640000000E+01 + -0.4680685358517696E+01 + -0.4682077261516521E+01 + -0.4683470350256498E+01 + -0.4684864625997650E+01 + -0.4686260090000000E+01 + -0.4687656743619326E+01 + -0.4689054588594432E+01 + -0.4690453626759872E+01 + -0.4691853859950209E+01 + -0.4693255290000000E+01 + -0.4694657918685000E+01 + -0.4696061747545757E+01 + -0.4697466778064014E+01 + -0.4698873011721513E+01 + -0.4700280450000000E+01 + -0.4701689094440671E+01 + -0.4703098946822541E+01 + -0.4704510008984074E+01 + -0.4705922282763738E+01 + -0.4707335770000000E+01 + -0.4708750472432315E+01 + -0.4710166391404083E+01 + -0.4711583528159694E+01 + -0.4713001883943536E+01 + -0.4714421460000000E+01 + -0.4715842257670070E+01 + -0.4717264278681128E+01 + -0.4718687524857150E+01 + -0.4720111998022115E+01 + -0.4721537700000000E+01 + -0.4722964632567404E+01 + -0.4724392797311406E+01 + -0.4725822195771706E+01 + -0.4727252829488005E+01 + -0.4728684700000000E+01 + -0.4730117808860313E+01 + -0.4731552157673248E+01 + -0.4732987748056024E+01 + -0.4734424581625867E+01 + -0.4735862660000000E+01 + -0.4737301984791344E+01 + -0.4738742557595609E+01 + -0.4740184380004202E+01 + -0.4741627453608529E+01 + -0.4743071780000000E+01 + -0.4744517360774309E+01 + -0.4745964197544317E+01 + -0.4747412291927169E+01 + -0.4748861645540014E+01 + -0.4750312260000000E+01 + -0.4751764136911420E+01 + -0.4753217277827130E+01 + -0.4754671684287128E+01 + -0.4756127357831419E+01 + -0.4757584300000000E+01 + -0.4759042512380013E+01 + -0.4760501996747169E+01 + -0.4761962754924317E+01 + -0.4763424788734311E+01 + -0.4764888100000000E+01 + -0.4766352690448530E+01 + -0.4767818561424202E+01 + -0.4769285714175608E+01 + -0.4770754149951343E+01 + -0.4772223870000000E+01 + -0.4773694875665867E+01 + -0.4775167168676024E+01 + -0.4776640750853249E+01 + -0.4778115624020316E+01 + -0.4779591790000000E+01 + -0.4781069250568002E+01 + -0.4782548007311700E+01 + -0.4784028061771398E+01 + -0.4785509415487397E+01 + -0.4786992070000000E+01 + -0.4788476026862125E+01 + -0.4789961287677171E+01 + -0.4791447854061156E+01 + -0.4792935727630094E+01 + -0.4794424910000000E+01 + -0.4795915402783498E+01 + -0.4797407207579615E+01 + -0.4798900325983983E+01 + -0.4800394759592233E+01 + -0.4801890510000000E+01 + -0.4803387578803882E+01 + -0.4804885967604368E+01 + -0.4806385678002913E+01 + -0.4807886711600972E+01 + -0.4809389070000000E+01 + -0.4810892754800971E+01 + -0.4812397767602913E+01 + -0.4813904110004369E+01 + -0.4815411783603883E+01 + -0.4816920790000000E+01 + -0.4818431130792232E+01 + -0.4819942807583978E+01 + -0.4821455821979610E+01 + -0.4822970175583494E+01 + -0.4824485870000000E+01 + -0.4826002906830102E+01 + -0.4827521287661175E+01 + -0.4829041014077196E+01 + -0.4830562087662145E+01 + -0.4832084510000000E+01 + -0.4833608282687360E+01 + -0.4835133407371321E+01 + -0.4836659885711604E+01 + -0.4838187719367924E+01 + -0.4839716910000000E+01 + -0.4841247459220458E+01 + -0.4842779368453540E+01 + -0.4844312639076392E+01 + -0.4845847272466163E+01 + -0.4847383270000000E+01 + -0.4848920633150806E+01 + -0.4850459363774517E+01 + -0.4851999463822827E+01 + -0.4853540935247424E+01 + -0.4855083780000000E+01 + -0.4856627999936316E+01 + -0.4858173596528390E+01 + -0.4859720571152305E+01 + -0.4861268925184146E+01 + -0.4862818660000000E+01 + -0.4864369777023929E+01 + -0.4865922277871922E+01 + -0.4867476164207953E+01 + -0.4869031437695989E+01 + -0.4870588100000000E+01 + -0.4872146152767971E+01 + -0.4873705597583922E+01 + -0.4875266436015888E+01 + -0.4876828669631903E+01 + -0.4878392300000000E+01 + -0.4879957328704188E+01 + -0.4881523757392387E+01 + -0.4883091587728493E+01 + -0.4884660821376399E+01 + -0.4886231460000000E+01 + -0.4887803505215277E+01 + -0.4889376958446530E+01 + -0.4890951821070145E+01 + -0.4892528094462506E+01 + -0.4894105780000000E+01 + -0.4895684879154707E+01 + -0.4897265393781494E+01 + -0.4898847325830930E+01 + -0.4900430677253578E+01 + -0.4902015450000000E+01 + -0.4903601645925900E+01 + -0.4905189266507495E+01 + -0.4906778313126141E+01 + -0.4908368787163191E+01 + -0.4909960690000000E+01 + -0.4911554023061696E+01 + -0.4913148787948524E+01 + -0.4914744986304505E+01 + -0.4916342619773657E+01 + -0.4917941690000000E+01 + -0.4919542198627316E+01 + -0.4921144147298410E+01 + -0.4922747537655845E+01 + -0.4924352371342187E+01 + -0.4925958650000000E+01 + -0.4927566375229039E+01 + -0.4929175548457836E+01 + -0.4930786171072113E+01 + -0.4932398244457594E+01 + -0.4934011770000000E+01 + -0.4935626749176527E+01 + -0.4937243183830248E+01 + -0.4938861075895705E+01 + -0.4940480427307441E+01 + -0.4942101240000000E+01 + -0.4943723515824850E+01 + -0.4945347256301170E+01 + -0.4946972462865066E+01 + -0.4948599136952641E+01 + -0.4950227280000000E+01 + -0.4951856893444073E+01 + -0.4953487978725073E+01 + -0.4955120537284037E+01 + -0.4956754570562000E+01 + -0.4958390080000000E+01 + -0.4960027067118856E+01 + -0.4961665533758535E+01 + -0.4963305481838788E+01 + -0.4964946913279359E+01 + -0.4966589830000000E+01 + -0.4968234233840500E+01 + -0.4969880126320785E+01 + -0.4971527508880820E+01 + -0.4973176382960570E+01 + -0.4974826750000000E+01 + -0.4976478611439144E+01 + -0.4978131968718324E+01 + -0.4979786823277934E+01 + -0.4981443176558361E+01 + -0.4983101030000000E+01 + -0.4984760385122924E+01 + -0.4986421243765920E+01 + -0.4988083607847453E+01 + -0.4989747479285990E+01 + -0.4991412860000000E+01 + -0.4993079751829157E+01 + -0.4994748156297994E+01 + -0.4996418074852252E+01 + -0.4998089508937675E+01 + -0.4999762460000000E+01 + -0.5001436929480446E+01 + -0.5003112918802104E+01 + -0.5004790429383539E+01 + -0.5006469462643316E+01 + -0.5008150020000000E+01 + -0.5009832102969059E+01 + -0.5011515713453590E+01 + -0.5013200853453590E+01 + -0.5014887524969062E+01 + -0.5016575730000001E+01 + -0.5018265470403317E+01 + -0.5019956747463539E+01 + -0.5021649562322102E+01 + -0.5023343916120444E+01 + -0.5025039810000000E+01 + -0.5026737245257676E+01 + -0.5028436223812259E+01 + -0.5030136747738004E+01 + -0.5031838819109167E+01 + -0.5033542440000002E+01 + -0.5035247612325979E+01 + -0.5036954337367426E+01 + -0.5038662616245885E+01 + -0.5040372450082896E+01 + -0.5042083840000000E+01 + -0.5043796787278412E+01 + -0.5045511293838039E+01 + -0.5047227361758459E+01 + -0.5048944993119255E+01 + -0.5050664190000002E+01 + -0.5052384954320376E+01 + -0.5054107287360422E+01 + -0.5055831190240281E+01 + -0.5057556664080094E+01 + -0.5059283710000000E+01 + -0.5061012329280094E+01 + -0.5062742523840281E+01 + -0.5064474295760420E+01 + -0.5066207647120376E+01 + -0.5067942580000002E+01 + -0.5069679096319255E+01 + -0.5071417197358461E+01 + -0.5073156884238040E+01 + -0.5074898158078413E+01 + -0.5076641020000000E+01 + -0.5078385471282895E+01 + -0.5080131513845884E+01 + -0.5081879149767425E+01 + -0.5083628381125980E+01 + -0.5085379210000002E+01 + -0.5087131638309168E+01 + -0.5088885667338007E+01 + -0.5090641298212262E+01 + -0.5092398532057678E+01 + -0.5094157370000000E+01 + -0.5095917813320440E+01 + -0.5097679863922094E+01 + -0.5099443523863529E+01 + -0.5101208795203310E+01 + -0.5102975680000002E+01 + -0.5104744180169075E+01 + -0.5106514297053620E+01 + -0.5108286031853626E+01 + -0.5110059385769088E+01 + -0.5111834360000000E+01 + -0.5113610955843264E+01 + -0.5115389174983433E+01 + -0.5117169019201969E+01 + -0.5118950490280339E+01 + -0.5120733590000002E+01 + -0.5122518320137872E+01 + -0.5124304682452654E+01 + -0.5126092678698500E+01 + -0.5127882310629564E+01 + -0.5129673580000000E+01 + -0.5131466488485256E+01 + -0.5133261037445960E+01 + -0.5135057228164037E+01 + -0.5136855061921411E+01 + -0.5138654540000002E+01 + -0.5140455663761109E+01 + -0.5142258434883510E+01 + -0.5144062855125357E+01 + -0.5145868926244804E+01 + -0.5147676650000000E+01 + -0.5149486028150319E+01 + -0.5151297062460008E+01 + -0.5153109754694540E+01 + -0.5154924106619382E+01 + -0.5156740120000002E+01 + -0.5158557796517622E+01 + -0.5160377137516461E+01 + -0.5162198144256490E+01 + -0.5164020817997679E+01 + -0.5165845160000000E+01 + -0.5167671171619203E+01 + -0.5169498854594155E+01 + -0.5171328210759507E+01 + -0.5173159241949907E+01 + -0.5174991950000002E+01 + -0.5176826336685571E+01 + -0.5178662403546920E+01 + -0.5180500152065484E+01 + -0.5182339583722699E+01 + -0.5184180700000000E+01 + -0.5186023502438518E+01 + -0.5187867992818167E+01 + -0.5189714172978557E+01 + -0.5191562044759301E+01 + -0.5193411610000002E+01 + -0.5195262870440360E+01 + -0.5197115827420413E+01 + -0.5198970482180288E+01 + -0.5200826835960108E+01 + -0.5202684890000000E+01 + -0.5204544645640049E+01 + -0.5206406104620184E+01 + -0.5208269268780295E+01 + -0.5210134139960273E+01 + -0.5212000720000002E+01 + -0.5213869010679446E+01 + -0.5215739013538850E+01 + -0.5217610730058532E+01 + -0.5219484161718810E+01 + -0.5221359310000000E+01 + -0.5223236176442175E+01 + -0.5225114762824420E+01 + -0.5226995070985579E+01 + -0.5228877102764491E+01 + -0.5230760860000002E+01 + -0.5232646344431862E+01 + -0.5234533557403474E+01 + -0.5236422500159157E+01 + -0.5238313173943227E+01 + -0.5240205580000000E+01 + -0.5242099719670388E+01 + -0.5243995594681689E+01 + -0.5245893206857796E+01 + -0.5247792558022602E+01 + -0.5249693650000002E+01 + -0.5251596484566590E+01 + -0.5253501063309773E+01 + -0.5255407387769662E+01 + -0.5257315459486367E+01 + -0.5259225280000000E+01 + -0.5261136850863261E+01 + -0.5263050173679226E+01 + -0.5264965250063560E+01 + -0.5266882081631930E+01 + -0.5268800670000002E+01 + -0.5270721016780367E+01 + -0.5272643123573324E+01 + -0.5274566991976100E+01 + -0.5276492623585916E+01 + -0.5278420020000000E+01 + -0.5280349182815278E+01 + -0.5282280113627482E+01 + -0.5284212814032047E+01 + -0.5286147285624408E+01 + -0.5288083530000002E+01 + -0.5290021548758526E+01 + -0.5291961343516751E+01 + -0.5293902915895715E+01 + -0.5295846267516453E+01 + -0.5297791400000000E+01 + -0.5299738314950626E+01 + -0.5301687013905519E+01 + -0.5303637498385099E+01 + -0.5305589769909786E+01 + -0.5307543830000002E+01 + -0.5309499680238974E+01 + -0.5311457322461178E+01 + -0.5313416758563894E+01 + -0.5315377990444406E+01 + -0.5317341020000000E+01 + -0.5319305848973484E+01 + -0.5321272478489777E+01 + -0.5323240909519329E+01 + -0.5325211143032588E+01 + -0.5327183180000001E+01 + -0.5329157021627094E+01 + -0.5331132670059714E+01 + -0.5333110127678787E+01 + -0.5335089396865241E+01 + -0.5337070480000000E+01 + -0.5339053379238146E+01 + -0.5341038095831372E+01 + -0.5343024630805524E+01 + -0.5345012985186451E+01 + -0.5347003160000002E+01 + -0.5348995156380326E+01 + -0.5350988975894803E+01 + -0.5352984620219119E+01 + -0.5354982091028956E+01 + -0.5356981390000000E+01 + -0.5358982518840556E+01 + -0.5360985479389419E+01 + -0.5362990273518004E+01 + -0.5364996903097725E+01 + -0.5367005370000003E+01 + -0.5369015676017452E+01 + -0.5371027822627523E+01 + -0.5373041811228870E+01 + -0.5375057643220144E+01 + -0.5377075320000000E+01 + -0.5379094843009645E+01 + -0.5381116213860496E+01 + -0.5383139434206525E+01 + -0.5385164505701702E+01 + -0.5387191430000002E+01 + -0.5389220208743972E+01 + -0.5391250843530496E+01 + -0.5393283335945034E+01 + -0.5395317687573048E+01 + -0.5397353900000000E+01 + -0.5399391974814471E+01 + -0.5401431913617524E+01 + -0.5403473718013342E+01 + -0.5405517389606106E+01 + -0.5407562930000003E+01 + -0.5409610340798146E+01 + -0.5411659623599410E+01 + -0.5413710780001601E+01 + -0.5415763811602528E+01 + -0.5417818720000000E+01 + -0.5419875506792953E+01 + -0.5421934173584844E+01 + -0.5423994721980257E+01 + -0.5426057153583781E+01 + -0.5428121470000002E+01 + -0.5430187672830045E+01 + -0.5432255763661218E+01 + -0.5434325744077369E+01 + -0.5436397615662347E+01 + -0.5438471380000000E+01 + -0.5440547038686873E+01 + -0.5442624593370289E+01 + -0.5444704045710269E+01 + -0.5446785397366833E+01 + -0.5448868650000002E+01 + -0.5450953805222468E+01 + -0.5453040864457629E+01 + -0.5455129829081556E+01 + -0.5457220700470322E+01 + -0.5459313480000000E+01 + -0.5461408169143263E+01 + -0.5463504769759202E+01 + -0.5465603283803509E+01 + -0.5467703713231877E+01 + -0.5469806060000003E+01 + -0.5471910325964482E+01 + -0.5474016512585567E+01 + -0.5476124621224410E+01 + -0.5478234653242169E+01 + -0.5480346610000000E+01 + -0.5482460492918813E+01 + -0.5484576303658537E+01 + -0.5486694043938854E+01 + -0.5488813715479448E+01 + -0.5490935320000000E+01 + -0.5493058859160269E+01 + -0.5495184334380288E+01 + -0.5497311747020175E+01 + -0.5499441098440041E+01 + -0.5501572390000000E+01 + -0.5503705623160122E+01 + -0.5505840799780316E+01 + -0.5507977921820449E+01 + -0.5510116991240388E+01 + -0.5512258010000000E+01 + -0.5514400979959247E+01 + -0.5516545902578452E+01 + -0.5518692779218033E+01 + -0.5520841611238409E+01 + -0.5522992400000000E+01 + -0.5525145146922896E+01 + -0.5527299853665884E+01 + -0.5529456521947425E+01 + -0.5531615153485976E+01 + -0.5533775750000000E+01 + -0.5535938313149172E+01 + -0.5538102844358015E+01 + -0.5540269344992272E+01 + -0.5542437816417687E+01 + -0.5544608260000000E+01 + -0.5546780677200426E+01 + -0.5548955069862066E+01 + -0.5551131439923492E+01 + -0.5553309789323279E+01 + -0.5555490120000000E+01 + -0.5557672433809129E+01 + -0.5559856732273728E+01 + -0.5562043016833763E+01 + -0.5564231288929199E+01 + -0.5566421550000000E+01 + -0.5568613801483066E+01 + -0.5570808044803030E+01 + -0.5573004281381461E+01 + -0.5575202512639929E+01 + -0.5577402740000000E+01 + -0.5579604964978612E+01 + -0.5581809189474155E+01 + -0.5584015415480394E+01 + -0.5586223644991089E+01 + -0.5588433880000000E+01 + -0.5590646122362495E+01 + -0.5592860373380355E+01 + -0.5595076634216968E+01 + -0.5597294906035720E+01 + -0.5599515190000000E+01 + -0.5601737487411413E+01 + -0.5603961800124430E+01 + -0.5606188130131739E+01 + -0.5608416479426032E+01 + -0.5610646850000000E+01 + -0.5612879243751859E+01 + -0.5615113662201934E+01 + -0.5617350106776081E+01 + -0.5619588578900152E+01 + -0.5621829080000000E+01 + -0.5624071611501157E+01 + -0.5626316174827838E+01 + -0.5628562771403941E+01 + -0.5630811402653364E+01 + -0.5633062070000000E+01 + -0.5635314774963525E+01 + -0.5637569519446723E+01 + -0.5639826305448159E+01 + -0.5642085134966397E+01 + -0.5644346010000000E+01 + -0.5646608932404748E+01 + -0.5648873903465272E+01 + -0.5651140924323423E+01 + -0.5653409996121049E+01 + -0.5655681120000000E+01 + -0.5657954297257489E+01 + -0.5660229529812193E+01 + -0.5662506819738152E+01 + -0.5664786169109407E+01 + -0.5667067580000000E+01 + -0.5669351054325299E+01 + -0.5671636593365960E+01 + -0.5673924198243974E+01 + -0.5676213870081325E+01 + -0.5678505610000000E+01 + -0.5680799419281324E+01 + -0.5683095299843973E+01 + -0.5685393253765959E+01 + -0.5687693283125297E+01 + -0.5689995390000000E+01 + -0.5692299576309408E+01 + -0.5694605843338152E+01 + -0.5696914192212193E+01 + -0.5699224624057489E+01 + -0.5701537140000000E+01 + -0.5703851741321049E+01 + -0.5706168429923423E+01 + -0.5708487207865272E+01 + -0.5710808077204748E+01 + -0.5713131040000000E+01 + -0.5715456098166398E+01 + -0.5717783253048159E+01 + -0.5720112505846722E+01 + -0.5722443857763524E+01 + -0.5724777310000000E+01 + -0.5727112863853367E+01 + -0.5729450521003948E+01 + -0.5731790283227846E+01 + -0.5734132152301162E+01 + -0.5736476130000000E+01 + -0.5738822218100139E+01 + -0.5741170418376053E+01 + -0.5743520732601898E+01 + -0.5745873162551830E+01 + -0.5748227710000000E+01 + -0.5750584376626085E+01 + -0.5752943163731845E+01 + -0.5755304072524563E+01 + -0.5757667104211521E+01 + -0.5760032260000000E+01 + -0.5762399541235525E+01 + -0.5764768949816569E+01 + -0.5767140487779851E+01 + -0.5769514157162089E+01 + -0.5771889960000000E+01 + -0.5774267898191824E+01 + -0.5776647973081888E+01 + -0.5779030185876039E+01 + -0.5781414537780127E+01 + -0.5783801030000000E+01 + -0.5786189663837181E+01 + -0.5788580440975887E+01 + -0.5790973363195998E+01 + -0.5793368432277407E+01 + -0.5795765650000000E+01 + -0.5798165018139450E+01 + -0.5800566538454574E+01 + -0.5802970212699973E+01 + -0.5805376042630247E+01 + -0.5807784030000000E+01 + -0.5810194176485015E+01 + -0.5812606483445820E+01 + -0.5815020952164113E+01 + -0.5817437583921604E+01 + -0.5819856380000000E+01 + -0.5822277341760485E+01 + -0.5824700470882153E+01 + -0.5827125769123580E+01 + -0.5829553238243338E+01 + -0.5831982880000000E+01 + -0.5834414696153045E+01 + -0.5836848688465571E+01 + -0.5839284858701570E+01 + -0.5841723208625047E+01 + -0.5844163740000000E+01 + -0.5846606454507334E+01 + -0.5849051353495571E+01 + -0.5851498438230142E+01 + -0.5853947709976476E+01 + -0.5856399170000000E+01 + -0.5858852819657622E+01 + -0.5861308660672150E+01 + -0.5863766694857866E+01 + -0.5866226924029054E+01 + -0.5868689350000000E+01 + -0.5871153974542181E+01 + -0.5873620799255837E+01 + -0.5876089825698403E+01 + -0.5878561055427313E+01 + -0.5881034490000000E+01 + -0.5883510130973657E+01 + -0.5885987979904507E+01 + -0.5888468038348527E+01 + -0.5890950307861697E+01 + -0.5893434790000000E+01 + -0.5895921486363192E+01 + -0.5898410398726141E+01 + -0.5900901528907495E+01 + -0.5903394878725900E+01 + -0.5905890450000000E+01 + -0.5908388244453575E+01 + -0.5910888263430930E+01 + -0.5913390508181495E+01 + -0.5915894979954707E+01 + -0.5918401680000000E+01 + -0.5920910609662506E+01 + -0.5923421770670144E+01 + -0.5925935164846529E+01 + -0.5928450794015276E+01 + -0.5930968660000000E+01 + -0.5933488764576397E+01 + -0.5936011109328494E+01 + -0.5938535695792390E+01 + -0.5941062525504192E+01 + -0.5943591600000000E+01 + -0.5946122920831904E+01 + -0.5948656489615889E+01 + -0.5951192307983922E+01 + -0.5953730377567969E+01 + -0.5956270700000000E+01 + -0.5958813276895987E+01 + -0.5961358109807954E+01 + -0.5963905200271925E+01 + -0.5966454549823931E+01 + -0.5969006160000000E+01 + -0.5971560032384148E+01 + -0.5974116168752306E+01 + -0.5976674570928389E+01 + -0.5979235240736315E+01 + -0.5981798180000000E+01 + -0.5984363390447421E+01 + -0.5986930873422826E+01 + -0.5989500630174518E+01 + -0.5992072661950807E+01 + -0.5994646970000000E+01 + -0.5997223555666167E+01 + -0.5999802420676399E+01 + -0.6002383566853548E+01 + -0.6004966996020463E+01 + -0.6007552710000000E+01 + -0.6010140710567908E+01 + -0.6012730999311576E+01 + -0.6015323577771288E+01 + -0.6017918447487334E+01 + -0.6020515610000000E+01 + -0.6023115066862199E+01 + -0.6025716819677304E+01 + -0.6028320870061309E+01 + -0.6030927219630208E+01 + -0.6033535870000000E+01 + -0.6036146822783294E+01 + -0.6038760079579211E+01 + -0.6041375641983476E+01 + -0.6043993511591828E+01 + -0.6046613690000000E+01 + -0.6049236178804621E+01 + -0.6051860979605864E+01 + -0.6054488094004796E+01 + -0.6057117523602486E+01 + -0.6059749270000000E+01 + -0.6062383334798223E+01 + -0.6065019719597338E+01 + -0.6067658425997338E+01 + -0.6070299455598226E+01 + -0.6072942810000000E+01 + -0.6075588490802486E+01 + -0.6078236499604795E+01 + -0.6080886838005860E+01 + -0.6083539507604616E+01 + -0.6086194510000000E+01 + -0.6088851846791830E+01 + -0.6091511519583484E+01 + -0.6094173529979220E+01 + -0.6096837879583306E+01 + -0.6099504570000000E+01 + -0.6102173602830196E+01 + -0.6104844979661281E+01 + -0.6107518702077266E+01 + -0.6110194771662168E+01 + -0.6112873190000000E+01 + -0.6115553958687384E+01 + -0.6118237079371392E+01 + -0.6120922553711712E+01 + -0.6123610383368020E+01 + -0.6126300570000000E+01 + -0.6128993115220268E+01 + -0.6131688020453148E+01 + -0.6134385287075894E+01 + -0.6137084916465758E+01 + -0.6139786910000000E+01 + -0.6142491269151540E+01 + -0.6145197995776009E+01 + -0.6147907091824711E+01 + -0.6150618559248940E+01 + -0.6153332400000000E+01 + -0.6156048615933569E+01 + -0.6158767208522813E+01 + -0.6161488179145272E+01 + -0.6164211529178487E+01 + -0.6166937260000000E+01 + -0.6169665373034181E+01 + -0.6172395869892734E+01 + -0.6175128752234200E+01 + -0.6177864021717110E+01 + -0.6180601680000000E+01 + -0.6183341728729707E+01 + -0.6186084169506248E+01 + -0.6188829003917934E+01 + -0.6191576233553080E+01 + -0.6194325860000000E+01 + -0.6197077884846986E+01 + -0.6199832309682269E+01 + -0.6202589136094061E+01 + -0.6205348365670568E+01 + -0.6208110000000000E+01 + -0.6210874040682345E+01 + -0.6213640489364673E+01 + -0.6216409347705828E+01 + -0.6219180617364654E+01 + -0.6221954300000000E+01 + -0.6224730397223631E+01 + -0.6227508910459034E+01 + -0.6230289841082625E+01 + -0.6233073190470810E+01 + -0.6235858960000000E+01 + -0.6238647151143130E+01 + -0.6241437765759188E+01 + -0.6244230805803681E+01 + -0.6247026273232115E+01 + -0.6249824170000000E+01 + -0.6252624497963846E+01 + -0.6255427258584208E+01 + -0.6258232453222650E+01 + -0.6261040083240727E+01 + -0.6263850150000000E+01 + -0.6266662654921483E+01 + -0.6269477599663976E+01 + -0.6272294985945726E+01 + -0.6275114815484984E+01 + -0.6277937090000000E+01 + -0.6280761811150216E+01 + -0.6283588980359882E+01 + -0.6286418598994441E+01 + -0.6289250668419333E+01 + -0.6292085190000000E+01 + -0.6294922165197647E+01 + -0.6297761595856494E+01 + -0.6300603483916516E+01 + -0.6303447831317691E+01 + -0.6306294640000000E+01 + -0.6309143911819191E+01 + -0.6311995648294136E+01 + -0.6314849850859490E+01 + -0.6317706520949895E+01 + -0.6320565660000000E+01 + -0.6323427269445589E+01 + -0.6326291350726957E+01 + -0.6329157905285530E+01 + -0.6332026934562734E+01 + -0.6334898440000000E+01 + -0.6337772423118450E+01 + -0.6340648885758030E+01 + -0.6343527829838388E+01 + -0.6346409257279164E+01 + -0.6349293170000000E+01 + -0.6352179569840608E+01 + -0.6355068458320919E+01 + -0.6357959836880927E+01 + -0.6360853706960621E+01 + -0.6363750070000000E+01 + -0.6366648927439115E+01 + -0.6369550280718287E+01 + -0.6372454131277906E+01 + -0.6375360480558348E+01 + -0.6378269330000000E+01 + -0.6381180681122932E+01 + -0.6384094535765930E+01 + -0.6387010895847460E+01 + -0.6389929763285993E+01 + -0.6392851140000000E+01 + -0.6395775027829155E+01 + -0.6398701428297992E+01 + -0.6401630342852253E+01 + -0.6404561772937675E+01 + -0.6407495720000000E+01 + -0.6410432185480445E+01 + -0.6413371170802104E+01 + -0.6416312677383538E+01 + -0.6419256706643314E+01 + -0.6422203260000000E+01 + -0.6425152338969059E+01 + -0.6428103945453589E+01 + -0.6431058081453593E+01 + -0.6434014748969063E+01 + -0.6436973950000000E+01 + -0.6439935686403315E+01 + -0.6442899959463536E+01 + -0.6445866770322099E+01 + -0.6448836120120441E+01 + -0.6451808010000000E+01 + -0.6454782441257676E+01 + -0.6457759415812259E+01 + -0.6460738935738006E+01 + -0.6463721003109169E+01 + -0.6466705620000000E+01 + -0.6469692788325977E+01 + -0.6472682509367425E+01 + -0.6475674784245882E+01 + -0.6478669614082892E+01 + -0.6481667000000000E+01 + -0.6484666943278412E+01 + -0.6487669445838038E+01 + -0.6490674509758459E+01 + -0.6493682137119256E+01 + -0.6496692330000004E+01 + -0.6499705090320377E+01 + -0.6502720419360423E+01 + -0.6505738318240282E+01 + -0.6508758788080094E+01 + -0.6511781830000000E+01 + -0.6514807445280094E+01 + -0.6517835635840281E+01 + -0.6520866403760421E+01 + -0.6523899751120378E+01 + -0.6526935680000004E+01 + -0.6529974192319256E+01 + -0.6533015289358461E+01 + -0.6536058972238040E+01 + -0.6539105242078414E+01 + -0.6542154100000000E+01 + -0.6545205547282896E+01 + -0.6548259585845885E+01 + -0.6551316217767425E+01 + -0.6554375445125981E+01 + -0.6557437270000004E+01 + -0.6560501694309170E+01 + -0.6563568719338008E+01 + -0.6566638346212263E+01 + -0.6569710576057679E+01 + -0.6572785410000000E+01 + -0.6575862849320440E+01 + -0.6578942895922094E+01 + -0.6582025551863528E+01 + -0.6585110819203312E+01 + -0.6588198700000004E+01 + -0.6591289196169077E+01 + -0.6594382309053620E+01 + -0.6597478039853627E+01 + -0.6600576389769089E+01 + -0.6603677360000000E+01 + -0.6606780951843263E+01 + -0.6609887166983432E+01 + -0.6612996007201969E+01 + -0.6616107474280340E+01 + -0.6619221570000003E+01 + -0.6622338296137873E+01 + -0.6625457654452654E+01 + -0.6628579646698499E+01 + -0.6631704274629564E+01 + -0.6634831540000000E+01 + -0.6637961444485257E+01 + -0.6641093989445962E+01 + -0.6644229176164039E+01 + -0.6647367005921415E+01 + -0.6650507480000004E+01 + -0.6653650599761106E+01 + -0.6656796366883502E+01 + -0.6659944783125347E+01 + -0.6663095850244796E+01 + -0.6666249570000000E+01 + -0.6669405944150332E+01 + -0.6672564974460037E+01 + -0.6675726662694576E+01 + -0.6678891010619413E+01 + -0.6682058020000004E+01 + -0.6685227692517570E+01 + -0.6688400029516354E+01 + -0.6691575032256354E+01 + -0.6694752701997571E+01 + -0.6697933040000000E+01 + -0.6701116047619399E+01 + -0.6704301726594555E+01 + -0.6707490078760012E+01 + -0.6710681105950315E+01 + -0.6713874810000004E+01 + -0.6717071192684837E+01 + -0.6720270255545428E+01 + -0.6723472000063601E+01 + -0.6726676427721183E+01 + -0.6729883540000000E+01 + -0.6733093338441266E+01 + -0.6736305824823744E+01 + -0.6739521000985590E+01 + -0.6742738868764961E+01 + -0.6745959430000004E+01 + -0.6749182686430109E+01 + -0.6752408639399602E+01 + -0.6755637290154041E+01 + -0.6758868639938988E+01 + -0.6762102690000000E+01 + -0.6765339441678312E+01 + -0.6768578896697858E+01 + -0.6771821056878248E+01 + -0.6775065924039097E+01 + -0.6778313500000004E+01 + -0.6781563786536650E+01 + -0.6784816785248971E+01 + -0.6788072497692968E+01 + -0.6791330925424645E+01 + -0.6794592070000000E+01 + -0.6797855932975101E+01 + -0.6801122515906268E+01 + -0.6804391820349884E+01 + -0.6807663847862337E+01 + -0.6810938600000004E+01 + -0.6814216078362952E+01 + -0.6817496284725963E+01 + -0.6820779220907499E+01 + -0.6824064888726024E+01 + -0.6827353290000000E+01 + -0.6830644426453104E+01 + -0.6833938299429890E+01 + -0.6837234910180122E+01 + -0.6840534259953573E+01 + -0.6843836350000004E+01 + -0.6847141181664634E+01 + -0.6850448756674481E+01 + -0.6853759076852013E+01 + -0.6857072144019697E+01 + -0.6860387960000000E+01 + -0.6863706526568372E+01 + -0.6867027845312194E+01 + -0.6870351917771830E+01 + -0.6873678745487648E+01 + -0.6877008330000003E+01 + -0.6880340672861885E+01 + -0.6883675775676748E+01 + -0.6887013640060671E+01 + -0.6890354267629729E+01 + -0.6893697660000000E+01 + -0.6897043818784102E+01 + -0.6900392745580823E+01 + -0.6903744441985493E+01 + -0.6907098909593442E+01 + -0.6910456150000004E+01 + -0.6913816164801713E+01 + -0.6917178955599964E+01 + -0.6920544523997361E+01 + -0.6923912871596505E+01 + -0.6927284000000000E+01 + -0.6930657910809059E+01 + -0.6934034605619329E+01 + -0.6937414086025069E+01 + -0.6940796353620541E+01 + -0.6944181410000003E+01 + -0.6947569256762060E+01 + -0.6950959895522726E+01 + -0.6954353327902363E+01 + -0.6957749555521334E+01 + -0.6961148580000000E+01 + -0.6964550402942712E+01 + -0.6967955025889776E+01 + -0.6971362450365483E+01 + -0.6974772677894126E+01 + -0.6978185710000004E+01 + -0.6981601548267095E+01 + -0.6985020194518175E+01 + -0.6988441650635709E+01 + -0.6991865918502162E+01 + -0.6995293000000000E+01 + -0.6998722896868919E+01 + -0.7002155610277533E+01 + -0.7005591141251688E+01 + -0.7009029490817228E+01 + -0.7012470660000004E+01 + -0.7015914650017237E+01 + -0.7019361462851700E+01 + -0.7022811100677545E+01 + -0.7026263565668928E+01 + -0.7029718860000000E+01 + -0.7033176985702147E+01 + -0.7036637944235678E+01 + -0.7040101736918136E+01 + -0.7043568365067062E+01 + -0.7047037830000003E+01 + -0.7050510133094183E+01 + -0.7053985275965593E+01 + -0.7057463260289913E+01 + -0.7060944087742822E+01 + -0.7064427760000000E+01 + -0.7067914278721136E+01 + -0.7071403645501961E+01 + -0.7074895861922220E+01 + -0.7078390929561651E+01 + -0.7081888850000004E+01 + -0.7085389624821280E+01 + -0.7088893255626567E+01 + -0.7092399744021215E+01 + -0.7095909091610576E+01 + -0.7099421300000000E+01 + -0.7102936370793757E+01 + -0.7106454305591782E+01 + -0.7109975105992930E+01 + -0.7113498773596051E+01 + -0.7117025310000003E+01 + -0.7120554716803698E+01 + -0.7124086995606308E+01 + -0.7127622148007071E+01 + -0.7131160175605223E+01 + -0.7134701080000000E+01 + -0.7138244862791466E+01 + -0.7141791525582995E+01 + -0.7145341069978793E+01 + -0.7148893497583059E+01 + -0.7152448810000004E+01 + -0.7156007008830446E+01 + -0.7159568095661714E+01 + -0.7163132072077763E+01 + -0.7166698939662541E+01 + -0.7170268700000000E+01 + -0.7173841354686766E+01 + -0.7177416905370157E+01 + -0.7180995353710165E+01 + -0.7184576701366781E+01 + -0.7188160950000004E+01 + -0.7191748101222498E+01 + -0.7195338156457666E+01 + -0.7198931117081585E+01 + -0.7202526984470337E+01 + -0.7206125760000000E+01 + -0.7209727445143256E+01 + -0.7213332041759192E+01 + -0.7216939551803501E+01 + -0.7220549977231873E+01 + -0.7224163320000004E+01 + -0.7227779581964486E+01 + -0.7231398764585570E+01 + -0.7235020869224413E+01 + -0.7238645897242170E+01 + -0.7242273850000000E+01 + -0.7245904728918813E+01 + -0.7249538535658537E+01 + -0.7253175271938853E+01 + -0.7256814939479447E+01 + -0.7260457540000004E+01 + -0.7264103075160270E+01 + -0.7267751546380289E+01 + -0.7271402955020176E+01 + -0.7275057302440042E+01 + -0.7278714590000000E+01 + -0.7282374819160122E+01 + -0.7286037991780316E+01 + -0.7289704109820449E+01 + -0.7293373175240388E+01 + -0.7297045190000005E+01 + -0.7300720155959249E+01 + -0.7304398074578453E+01 + -0.7308078947218034E+01 + -0.7311762775238410E+01 + -0.7315449560000000E+01 + -0.7319139302922896E+01 + -0.7322832005665885E+01 + -0.7326527669947424E+01 + -0.7330226297485976E+01 + -0.7333927890000004E+01 + -0.7337632449149173E+01 + -0.7341339976358015E+01 + -0.7345050472992273E+01 + -0.7348763940417687E+01 + -0.7352480380000000E+01 + -0.7356199793200426E+01 + -0.7359922181862065E+01 + -0.7363647547923492E+01 + -0.7367375893323279E+01 + -0.7371107220000000E+01 + -0.7374841529809131E+01 + -0.7378578824273729E+01 + -0.7382319104833763E+01 + -0.7386062372929199E+01 + -0.7389808630000000E+01 + -0.7393557877483065E+01 + -0.7397310116803030E+01 + -0.7401065349381462E+01 + -0.7404823576639929E+01 + -0.7408584800000000E+01 + -0.7412349020978613E+01 + -0.7416116241474156E+01 + -0.7419886463480395E+01 + -0.7423659688991088E+01 + -0.7427435920000000E+01 + -0.7431215158362495E+01 + -0.7434997405380354E+01 + -0.7438782662216967E+01 + -0.7442570930035720E+01 + -0.7446362210000000E+01 + -0.7450156503411415E+01 + -0.7453953812124431E+01 + -0.7457754138131740E+01 + -0.7461557483426033E+01 + -0.7465363850000000E+01 + -0.7469173239751858E+01 + -0.7472985654201934E+01 + -0.7476801094776080E+01 + -0.7480619562900151E+01 + -0.7484441060000000E+01 + -0.7488265587501158E+01 + -0.7492093146827838E+01 + -0.7495923739403942E+01 + -0.7499757366653364E+01 + -0.7503594030000000E+01 + -0.7507433730963525E+01 + -0.7511276471446724E+01 + -0.7515122253448160E+01 + -0.7518971078966398E+01 + -0.7522822950000000E+01 + -0.7526677868404750E+01 + -0.7530535835465273E+01 + -0.7534396852323424E+01 + -0.7538260920121050E+01 + -0.7542128040000000E+01 + -0.7545998213257489E+01 + -0.7549871441812192E+01 + -0.7553747727738151E+01 + -0.7557627073109407E+01 + -0.7561509480000000E+01 + -0.7565394950325300E+01 + -0.7569283485365961E+01 + -0.7573175086243974E+01 + -0.7577069754081324E+01 + -0.7580967490000000E+01 + -0.7584868295281324E+01 + -0.7588772171843973E+01 + -0.7592679121765959E+01 + -0.7596589147125297E+01 + -0.7600502250000000E+01 + -0.7604418432309410E+01 + -0.7608337695338154E+01 + -0.7612260040212195E+01 + -0.7616185468057490E+01 + -0.7620113980000000E+01 + -0.7624045577321049E+01 + -0.7627980261923423E+01 + -0.7631918035865271E+01 + -0.7635858901204747E+01 + -0.7639802860000000E+01 + -0.7643749914166399E+01 + -0.7647700065048159E+01 + -0.7651653313846722E+01 + -0.7655609661763523E+01 + -0.7659569110000000E+01 + -0.7663531659853367E+01 + -0.7667497313003947E+01 + -0.7671466071227846E+01 + -0.7675437936301162E+01 + -0.7679412910000000E+01 + -0.7683390994100141E+01 + -0.7687372190376054E+01 + -0.7691356500601899E+01 + -0.7695343926551830E+01 + -0.7699334470000000E+01 + -0.7703328132626085E+01 + -0.7707324915731846E+01 + -0.7711324820524563E+01 + -0.7715327848211521E+01 + -0.7719334000000000E+01 + -0.7723343277235527E+01 + -0.7727355681816570E+01 + -0.7731371215779851E+01 + -0.7735389881162089E+01 + -0.7739411680000000E+01 + -0.7743436614191824E+01 + -0.7747464685081887E+01 + -0.7751495893876038E+01 + -0.7755530241780126E+01 + -0.7759567730000000E+01 + -0.7763608359837185E+01 + -0.7767652132975887E+01 + -0.7771699051195999E+01 + -0.7775749116277408E+01 + -0.7779802330000000E+01 + -0.7783858694139450E+01 + -0.7787918210454574E+01 + -0.7791980880699973E+01 + -0.7796046706630248E+01 + -0.7800115690000000E+01 + -0.7804187832485020E+01 + -0.7808263135445821E+01 + -0.7812341600164114E+01 + -0.7816423227921605E+01 + -0.7820508020000000E+01 + -0.7824595977760485E+01 + -0.7828687102882154E+01 + -0.7832781397123580E+01 + -0.7836878862243339E+01 + -0.7840979500000000E+01 + -0.7845083312153050E+01 + -0.7849190300465572E+01 + -0.7853300466701571E+01 + -0.7857413812625048E+01 + -0.7861530340000000E+01 + -0.7865650050507334E+01 + -0.7869772945495572E+01 + -0.7873899026230143E+01 + -0.7878028293976477E+01 + -0.7882160750000000E+01 + -0.7886296395657618E+01 + -0.7890435232672145E+01 + -0.7894577262857858E+01 + -0.7898722488029048E+01 + -0.7902870910000000E+01 + -0.7907022530542190E+01 + -0.7911177351255858E+01 + -0.7915335373698429E+01 + -0.7919496599427334E+01 + -0.7923661030000000E+01 + -0.7927828666973618E+01 + -0.7931999511904430E+01 + -0.7936173566348429E+01 + -0.7940350831861618E+01 + -0.7944531310000000E+01 + -0.7948715002363336E+01 + -0.7952901910726435E+01 + -0.7957092036907865E+01 + -0.7961285382726197E+01 + -0.7965481950000000E+01 + -0.7969681740453036E+01 + -0.7973884755429838E+01 + -0.7978090996180116E+01 + -0.7982300463953597E+01 + -0.7986513160000000E+01 + -0.7990729085664518E+01 + -0.7994948242674227E+01 + -0.7999170632851678E+01 + -0.8003396258019420E+01 + -0.8007625120000000E+01 + -0.8011857220568892E+01 + -0.8016092561313261E+01 + -0.8020331143773179E+01 + -0.8024572969488734E+01 + -0.8028818040000001E+01 + -0.8033066356859914E+01 + -0.8037317921672749E+01 + -0.8041572736055628E+01 + -0.8045830801625669E+01 + -0.8050092120000000E+01 + -0.8054356692791451E+01 + -0.8058624521595748E+01 + -0.8062895608004313E+01 + -0.8067169953608588E+01 + -0.8071447559999999E+01 + -0.8075728428774278E+01 + -0.8080012561544278E+01 + -0.8084299959927135E+01 + -0.8088590625539995E+01 + -0.8092884560000000E+01 + -0.8097181764911428E+01 + -0.8101482241827146E+01 + -0.8105785992287144E+01 + -0.8110093017831430E+01 + -0.8114403319999999E+01 + -0.8118716900380006E+01 + -0.8123033760747155E+01 + -0.8127353902924302E+01 + -0.8131677328734298E+01 + -0.8136004040000000E+01 + -0.8140334038448541E+01 + -0.8144667325424228E+01 + -0.8149003902175641E+01 + -0.8153343769951372E+01 + -0.8157686930000001E+01 + -0.8162033383665827E+01 + -0.8166383132675943E+01 + -0.8170736178853145E+01 + -0.8175092524020229E+01 + -0.8179452169999999E+01 + -0.8183815118568147E+01 + -0.8188181371311998E+01 + -0.8192550929771775E+01 + -0.8196923795487702E+01 + -0.8201299970000001E+01 + -0.8205679454861587E+01 + -0.8210062251676076E+01 + -0.8214448362059773E+01 + -0.8218837787628978E+01 + -0.8223230530000000E+01 + -0.8227626590785508E+01 + -0.8232025971583703E+01 + -0.8236428673989137E+01 + -0.8240834699596382E+01 + -0.8245244050000000E+01 + -0.8249656726796378E+01 + -0.8254072731589133E+01 + -0.8258492065983699E+01 + -0.8262914731585507E+01 + -0.8267340730000001E+01 + -0.8271770062828978E+01 + -0.8276202731659772E+01 + -0.8280638738076073E+01 + -0.8285078083661583E+01 + -0.8289520769999999E+01 + -0.8293966798687709E+01 + -0.8298416171371795E+01 + -0.8302868889712027E+01 + -0.8307324955368172E+01 + -0.8311784370000000E+01 + -0.8316247135220181E+01 + -0.8320713252453047E+01 + -0.8325182723075814E+01 + -0.8329655548465723E+01 + -0.8334131729999999E+01 + -0.8338611269151562E+01 + -0.8343094167776034E+01 + -0.8347580427824724E+01 + -0.8352070051248942E+01 + -0.8356563039999999E+01 + -0.8361059395933566E+01 + -0.8365559120522818E+01 + -0.8370062215145282E+01 + -0.8374568681178499E+01 + -0.8379078520000000E+01 + -0.8383591733034168E+01 + -0.8388108321892707E+01 + -0.8392628288234160E+01 + -0.8397151633717076E+01 + -0.8401678360000000E+01 + -0.8406208468729759E+01 + -0.8410741961506359E+01 + -0.8415278839918074E+01 + -0.8419819105553193E+01 + -0.8424362759999999E+01 + -0.8428909804846791E+01 + -0.8433460241681875E+01 + -0.8438014072093560E+01 + -0.8442571297670163E+01 + -0.8447131920000000E+01 + -0.8451695940683068E+01 + -0.8456263361366146E+01 + -0.8460834183707684E+01 + -0.8465408409366150E+01 + -0.8469986040000000E+01 + -0.8474567077220934E+01 + -0.8479151522453561E+01 + -0.8483739377075718E+01 + -0.8488330642465249E+01 + -0.8492925319999999E+01 + -0.8497523411153189E+01 + -0.8502124917779609E+01 + -0.8506729841829438E+01 + -0.8511338185252845E+01 + -0.8515949950000000E+01 + -0.8520565137926305E+01 + -0.8525183750507997E+01 + -0.8529805789126538E+01 + -0.8534431255163383E+01 + -0.8539060149999999E+01 + -0.8543692475061587E+01 + -0.8548328231948389E+01 + -0.8552967422304404E+01 + -0.8557610047773610E+01 + -0.8562256110000000E+01 + -0.8566905610627341E+01 + -0.8571558551298438E+01 + -0.8576214933655862E+01 + -0.8580874759342191E+01 + -0.8585538030000000E+01 + -0.8590204747229045E+01 + -0.8594874912457854E+01 + -0.8599548527072146E+01 + -0.8604225592457622E+01 + -0.8608906110000000E+01 + -0.8613590081176476E+01 + -0.8618277507830142E+01 + -0.8622968391895570E+01 + -0.8627662735307331E+01 + -0.8632360540000001E+01 + -0.8637061807825047E+01 + -0.8641766540301569E+01 + -0.8646474738865575E+01 + -0.8651186404953052E+01 + -0.8655901540000000E+01 + -0.8660620145443337E+01 + -0.8665342222723577E+01 + -0.8670067773282151E+01 + -0.8674796798560481E+01 + -0.8679529300000000E+01 + -0.8684265279121604E+01 + -0.8689004737764112E+01 + -0.8693747677845824E+01 + -0.8698494101285023E+01 + -0.8703244010000001E+01 + -0.8707997405830247E+01 + -0.8712754290299971E+01 + -0.8717514664854571E+01 + -0.8722278530939446E+01 + -0.8727045889999999E+01 + -0.8731816743477406E+01 + -0.8736591092795997E+01 + -0.8741368939375890E+01 + -0.8746150284637187E+01 + -0.8750935130000000E+01 + -0.8755723476980126E+01 + -0.8760515327476036E+01 + -0.8765310683481884E+01 + -0.8770109546991819E+01 + -0.8774911919999999E+01 + -0.8779717804362088E+01 + -0.8784527201379849E+01 + -0.8789340112216571E+01 + -0.8794156538035528E+01 + -0.8798976480000000E+01 + -0.8803799939411521E+01 + -0.8808626918124562E+01 + -0.8813457418131844E+01 + -0.8818291441426082E+01 + -0.8823128990000001E+01 + -0.8827970065751829E+01 + -0.8832814670201898E+01 + -0.8837662804776057E+01 + -0.8842514470900143E+01 + -0.8847369670000001E+01 + -0.8852228403501162E+01 + -0.8857090672827845E+01 + -0.8861956479403945E+01 + -0.8866825824653363E+01 + -0.8871698710000000E+01 + -0.8876575136963522E+01 + -0.8881455107446721E+01 + -0.8886338623448163E+01 + -0.8891225686966401E+01 + -0.8896116299999999E+01 + -0.8901010464404745E+01 + -0.8905908181465268E+01 + -0.8910809452323418E+01 + -0.8915714278121044E+01 + -0.8920622659999999E+01 + -0.8925534599257489E+01 + -0.8930450097812193E+01 + -0.8935369157738156E+01 + -0.8940291781109412E+01 + -0.8945217970000000E+01 + -0.8950147726325296E+01 + -0.8955081051365955E+01 + -0.8960017946243967E+01 + -0.8964958412081318E+01 + -0.8969902449999999E+01 + -0.8974850061281325E+01 + -0.8979801247843975E+01 + -0.8984756011765967E+01 + -0.8989714355125305E+01 + -0.8994676280000006E+01 + -0.8999641788309408E+01 + -0.9004610881338147E+01 + -0.9009583560212185E+01 + -0.9014559826057482E+01 + -0.9019539679999999E+01 + -0.9024523123321062E+01 + -0.9029510157923451E+01 + -0.9034500785865312E+01 + -0.9039495009204781E+01 + -0.9044492830000005E+01 + -0.9049494250166349E+01 + -0.9054499271048055E+01 + -0.9059507893846590E+01 + -0.9064520119763417E+01 + -0.9069535950000001E+01 + -0.9074555385853561E+01 + -0.9079578429004341E+01 + -0.9084605081228347E+01 + -0.9089635344301566E+01 + -0.9094669220000005E+01 + -0.9099706710099420E+01 + -0.9104747816374589E+01 + -0.9109792540600051E+01 + -0.9114840884550343E+01 + -0.9119892849999999E+01 + -0.9124948438628779E+01 + -0.9130007651737314E+01 + -0.9135070490531460E+01 + -0.9140136956217077E+01 + -0.9145207050000005E+01 + -0.9150280773225472E+01 + -0.9155358127796157E+01 + -0.9160439115754111E+01 + -0.9165523739141374E+01 + -0.9170612000000000E+01 + -0.9175703900229351E+01 + -0.9180799441158069E+01 + -0.9185898623972109E+01 + -0.9191001449857440E+01 + -0.9196107920000005E+01 + -0.9201218035697130E+01 + -0.9206331798691574E+01 + -0.9211449210837454E+01 + -0.9216570273988891E+01 + -0.9221694990000000E+01 + -0.9226823360662143E+01 + -0.9231955387515646E+01 + -0.9237091072038078E+01 + -0.9242230415707013E+01 + -0.9247373420000006E+01 + -0.9252520086454307E+01 + -0.9257670416845848E+01 + -0.9262824413010238E+01 + -0.9267982076783087E+01 + -0.9273143409999999E+01 + -0.9278308414400652E+01 + -0.9283477091340977E+01 + -0.9288649442080976E+01 + -0.9293825467880655E+01 + -0.9299005170000005E+01 + -0.9304188549783094E+01 + -0.9309375608910248E+01 + -0.9314566349145858E+01 + -0.9319760772254313E+01 + -0.9324958880000001E+01 + -0.9330160674146988E+01 + -0.9335366156458042E+01 + -0.9340575328695600E+01 + -0.9345788192622113E+01 + -0.9351004750000005E+01 + -0.9356225002508960E+01 + -0.9361448951497593E+01 + -0.9366676598231745E+01 + -0.9371907943977265E+01 + -0.9377142989999999E+01 + -0.9382381737657184E+01 + -0.9387624188671602E+01 + -0.9392870344857428E+01 + -0.9398120208028843E+01 + -0.9403373780000006E+01 + -0.9408631062542314E+01 + -0.9413892057256009E+01 + -0.9419156765698549E+01 + -0.9424425189427392E+01 + -0.9429697330000000E+01 + -0.9434973188973583E+01 + -0.9440252767904381E+01 + -0.9445536068348389E+01 + -0.9450823091861603E+01 + -0.9456113840000006E+01 + -0.9461408314363361E+01 + -0.9466706516726472E+01 + -0.9472008448907904E+01 + -0.9477314112726225E+01 + -0.9482623510000000E+01 + -0.9487936642452992E+01 + -0.9493253511429746E+01 + -0.9498574118180004E+01 + -0.9503898463953515E+01 + -0.9509226550000005E+01 + -0.9514558377664679E+01 + -0.9519893948674547E+01 + -0.9525233264852078E+01 + -0.9530576328019741E+01 + -0.9535923140000000E+01 + -0.9541273702568311E+01 + -0.9546628017312077E+01 + -0.9551986085771686E+01 + -0.9557347909487538E+01 + -0.9562713490000006E+01 + -0.9568082828862085E+01 + -0.9573455927677152E+01 + -0.9578832788061179E+01 + -0.9584213411630136E+01 + -0.9589597800000000E+01 + -0.9594985954783365E+01 + -0.9600377877579328E+01 + -0.9605773569983608E+01 + -0.9611173033591932E+01 + -0.9616576270000005E+01 + -0.9621983280804461E+01 + -0.9627394067605541E+01 + -0.9632808632004393E+01 + -0.9638226975602164E+01 + -0.9643649099999999E+01 + -0.9649075006798807E+01 + -0.9654504697598519E+01 + -0.9659938173998826E+01 + -0.9665375437599430E+01 + -0.9670816490000005E+01 + -0.9676261332800319E+01 + -0.9681709967600391E+01 + -0.9687162396000304E+01 + -0.9692618619600145E+01 + -0.9698078640000000E+01 + -0.9703542458799934E+01 + -0.9709010077599935E+01 + -0.9714481497999968E+01 + -0.9719956721600006E+01 + -0.9725435750000006E+01 + -0.9730918584799955E+01 + -0.9736405227599882E+01 + -0.9741895679999836E+01 + -0.9747389943599860E+01 + -0.9752888020000000E+01 + -0.9758389910800272E+01 + -0.9763895617600557E+01 + -0.9769405142000705E+01 + -0.9774918485600576E+01 + -0.9780435650000005E+01 + -0.9785956636798970E+01 + -0.9791481447597899E+01 + -0.9797010083997348E+01 + -0.9802542547597865E+01 + -0.9808078840000000E+01 + -0.9813618962803872E+01 + -0.9819162917607860E+01 + -0.9824710706009913E+01 + -0.9830262329607976E+01 + -0.9835817790000005E+01 + -0.9841377088785555E+01 + -0.9846940227570670E+01 + -0.9852507207963008E+01 + -0.9858078031570232E+01 + -0.9863652699999999E+01 + -0.9869231214853929E+01 + -0.9874813577709478E+01 + -0.9880399790138062E+01 + -0.9885989853711097E+01 + -0.9891583770000006E+01 + -0.9897181540598737E+01 + -0.9902783167191426E+01 + -0.9908388651484751E+01 + -0.9913997995185383E+01 + -0.9919611200000000E+01 + -0.9925228267551145E+01 + -0.9930849199124832E+01 + -0.9936473995922947E+01 + -0.9942102659147375E+01 + -0.9947735190000007E+01 + -0.9953371589996694E+01 + -0.9959011861909252E+01 + -0.9964656008823463E+01 + -0.9970304033825117E+01 + -0.9975955940000000E+01 + -0.9981611729662097E+01 + -0.9987271402038179E+01 + -0.9992934955583211E+01 + -0.9998602388752163E+01 + -0.1000427370000001E+02 + -0.1000994888879493E+02 + -0.1001562795865804E+02 + -0.1002131091412370E+02 + -0.1002699775972624E+02 + -0.1003268850000000E+02 + -0.1003838313883822E+02 + -0.1004408167756967E+02 + -0.1004978411688200E+02 + -0.1005549045746290E+02 + -0.1006120070000001E+02 + -0.1006691484545222E+02 + -0.1007263289586331E+02 + -0.1007835485354830E+02 + -0.1008408072082219E+02 + -0.1008981050000000E+02 + -0.1009554419295295E+02 + -0.1010128179977712E+02 + -0.1010702332012482E+02 + -0.1011276875364834E+02 + -0.1011851810000001E+02 + -0.1012427135953601E+02 + -0.1013002853542823E+02 + -0.1013578963155244E+02 + -0.1014155465178444E+02 + -0.1014732360000000E+02 + -0.1015309647930304E+02 + -0.1015887328970999E+02 + -0.1016465403046543E+02 + -0.1017043870081391E+02 + -0.1017622730000001E+02 + -0.1018201982805184E+02 + -0.1018781628813180E+02 + -0.1019361668418585E+02 + -0.1019942102015993E+02 + -0.1020522930000000E+02 + -0.1021104152688962E+02 + -0.1021685770096281E+02 + -0.1022267782159118E+02 + -0.1022850188814637E+02 + -0.1023432990000001E+02 + -0.1024016185718969E+02 + -0.1024599776241698E+02 + -0.1025183761904943E+02 + -0.1025768143045458E+02 + -0.1026352920000000E+02 + -0.1026938093075166E+02 + -0.1027523662456931E+02 + -0.1028109628301113E+02 + -0.1028695990763530E+02 + -0.1029282750000001E+02 + -0.1029869906140368E+02 + -0.1030457459210579E+02 + -0.1031045409210607E+02 + -0.1031633756140423E+02 + -0.1032222500000000E+02 + -0.1032811640843363E+02 + -0.1033401178940753E+02 + -0.1033991114616460E+02 + -0.1034581448194778E+02 + -0.1035172180000001E+02 + -0.1035763310326179E+02 + -0.1036354839346411E+02 + -0.1036946767203554E+02 + -0.1037539094040464E+02 + -0.1038131820000000E+02 + -0.1038724945211922E+02 + -0.1039318469753605E+02 + -0.1039912393689327E+02 + -0.1040506717083366E+02 + -0.1041101440000001E+02 + -0.1041696562506133E+02 + -0.1042292084679170E+02 + -0.1042888006599140E+02 + -0.1043484328346073E+02 + -0.1044081050000000E+02 + -0.1044678171723546E+02 + -0.1045275694009717E+02 + -0.1045873617434116E+02 + -0.1046471942572343E+02 + -0.1047070670000001E+02 + -0.1047669800119683E+02 + -0.1048269332641961E+02 + -0.1048869267104398E+02 + -0.1049469603044557E+02 + -0.1050070340000000E+02 + -0.1050671477717722E+02 + -0.1051273016782438E+02 + -0.1051874957988293E+02 + -0.1052477302129432E+02 + -0.1053080050000001E+02 + -0.1053683202209428E+02 + -0.1054286758628286E+02 + -0.1054890718942430E+02 + -0.1055495082837716E+02 + -0.1056099850000000E+02 + -0.1056705020244567E+02 + -0.1057310593904419E+02 + -0.1057916571441987E+02 + -0.1058522953319704E+02 + -0.1059129740000000E+02 + -0.1059736931852306E+02 + -0.1060344528874040E+02 + -0.1060952530969621E+02 + -0.1061560938043468E+02 + -0.1062169750000000E+02 + -0.1062778966826213E+02 + -0.1063388588839425E+02 + -0.1063998616439529E+02 + -0.1064609050026423E+02 + -0.1065219890000000E+02 + -0.1065831136682842E+02 + -0.1066442790088262E+02 + -0.1067054850152262E+02 + -0.1067667316810841E+02 + -0.1068280190000000E+02 + -0.1068893469722422E+02 + -0.1069507156247528E+02 + -0.1070121249911423E+02 + -0.1070735751050212E+02 + -0.1071350660000000E+02 + -0.1071965977067472E+02 + -0.1072581702441627E+02 + -0.1073197836282047E+02 + -0.1073814378748311E+02 + -0.1074431330000000E+02 + -0.1075048690167693E+02 + -0.1075666459265966E+02 + -0.1076284637280392E+02 + -0.1076903224196546E+02 + -0.1077522220000000E+02 + -0.1078141624741755E+02 + -0.1078761438734509E+02 + -0.1079381662356385E+02 + -0.1080002295985507E+02 + -0.1080623340000000E+02 + -0.1081244794705288E+02 + -0.1081866660116001E+02 + -0.1082488936174070E+02 + -0.1083111622821426E+02 + -0.1083734720000000E+02 + -0.1084358227717095E+02 + -0.1084982146241490E+02 + -0.1085606475907338E+02 + -0.1086231217048791E+02 + -0.1086856370000000E+02 + -0.1087481935066336E+02 + -0.1088107912438042E+02 + -0.1088734302276580E+02 + -0.1089361104743412E+02 + -0.1089988320000000E+02 + -0.1090615948177563E+02 + -0.1091243989286343E+02 + -0.1091872443306342E+02 + -0.1092501310217561E+02 + -0.1093130590000000E+02 + -0.1093760282703415E+02 + -0.1094390388656587E+02 + -0.1095020908258051E+02 + -0.1095651841906343E+02 + -0.1096283190000000E+02 + -0.1096914952848777E+02 + -0.1097547130407310E+02 + -0.1098179722541454E+02 + -0.1098812729117066E+02 + -0.1099446150000000E+02 + -0.1100079985181477E+02 + -0.1100714235154175E+02 + -0.1101348900536133E+02 + -0.1101983981945395E+02 + -0.1102619480000000E+02 + -0.1103255395145314E+02 + -0.1103891727135992E+02 + -0.1104528475554013E+02 + -0.1105165639981356E+02 + -0.1105803220000000E+02 + -0.1106441215357267E+02 + -0.1107079626461858E+02 + -0.1107718453887815E+02 + -0.1108357698209181E+02 + -0.1108997360000000E+02 + -0.1109637439745617E+02 + -0.1110277937576578E+02 + -0.1110918853534730E+02 + -0.1111560187661921E+02 + -0.1112201940000000E+02 + -0.1112844110620266E+02 + -0.1113486699711834E+02 + -0.1114129707493268E+02 + -0.1114773134183134E+02 + -0.1115416980000000E+02 + -0.1116061245133318E+02 + -0.1116705929656088E+02 + -0.1117351033612200E+02 + -0.1117996557045541E+02 + -0.1118642500000000E+02 + -0.1119288862526464E+02 + -0.1119935644703815E+02 + -0.1120582846617933E+02 + -0.1121230468354702E+02 + -0.1121878510000000E+02 + -0.1122526971720828E+02 + -0.1123175854008655E+02 + -0.1123825157436067E+02 + -0.1124474882575653E+02 + -0.1125125030000000E+02 + -0.1125775600110226E+02 + -0.1126426592621569E+02 + -0.1127078007077800E+02 + -0.1127729843022687E+02 + -0.1128382100000000E+02 + -0.1129034777758270E+02 + -0.1129687876865069E+02 + -0.1130341398092734E+02 + -0.1130995342213599E+02 + -0.1131649710000000E+02 + -0.1132304502056697E+02 + -0.1132959718318155E+02 + -0.1133615358551265E+02 + -0.1134271422522916E+02 + -0.1134927910000000E+02 + -0.1135584820814943E+02 + -0.1136242155062312E+02 + -0.1136899912902209E+02 + -0.1137558094494738E+02 + -0.1138216700000000E+02 + -0.1138875729643534E+02 + -0.1139535183912602E+02 + -0.1140195063359904E+02 + -0.1140855368538137E+02 + -0.1141516100000000E+02 + -0.1142177258130923E+02 + -0.1142838842647280E+02 + -0.1143500853098174E+02 + -0.1144163289032713E+02 + -0.1144826150000000E+02 + -0.1145489435752772E+02 + -0.1146153146858279E+02 + -0.1146817284087400E+02 + -0.1147481848211014E+02 + -0.1148146840000000E+02 + -0.1148812260057987E+02 + -0.1149478108319603E+02 + -0.1150144384552225E+02 + -0.1150811088523232E+02 + -0.1151478220000000E+02 + -0.1152145778815281E+02 + -0.1152813765063312E+02 + -0.1153482178903702E+02 + -0.1154151020496061E+02 + -0.1154820290000000E+02 + -0.1155489987640889E+02 + -0.1156160113907152E+02 + -0.1156830669352968E+02 + -0.1157501654532524E+02 + -0.1158173070000000E+02 + -0.1158844916141161E+02 + -0.1159517192668085E+02 + -0.1160189899124428E+02 + -0.1160863035053847E+02 + -0.1161536600000000E+02 + -0.1162210593714465E+02 + -0.1162885016780509E+02 + -0.1163559869989320E+02 + -0.1164235154132088E+02 + -0.1164910870000000E+02 + -0.1165587018200980E+02 + -0.1166263598609882E+02 + -0.1166940610918294E+02 + -0.1167618054817804E+02 + -0.1168295930000000E+02 + -0.1168974236281615E+02 + -0.1169652973979963E+02 + -0.1170332143537504E+02 + -0.1171011745396696E+02 + -0.1171691780000000E+02 + -0.1172372247712561E+02 + -0.1173053148590267E+02 + -0.1173734482611693E+02 + -0.1174416249755412E+02 + -0.1175098450000000E+02 + -0.1175781083348140E+02 + -0.1176464149898967E+02 + -0.1177147649775723E+02 + -0.1177831583101653E+02 + -0.1178515950000000E+02 + -0.1179200750654877E+02 + -0.1179885985493866E+02 + -0.1180571655005416E+02 + -0.1181257759677978E+02 + -0.1181944300000000E+02 + -0.1182631276352350E+02 + -0.1183318688685568E+02 + -0.1184006536842611E+02 + -0.1184694820666436E+02 + -0.1185383540000000E+02 + -0.1186072694735723E+02 + -0.1186762284963864E+02 + -0.1187452310824143E+02 + -0.1188142772456282E+02 + -0.1188833670000000E+02 + -0.1189525003664758E+02 + -0.1190216773938977E+02 + -0.1190908981380816E+02 + -0.1191601626548437E+02 + -0.1192294710000000E+02 + -0.1192988232125246E+02 + -0.1193682192640232E+02 + -0.1194376591092595E+02 + -0.1195071427029972E+02 + -0.1195766700000000E+02 + -0.1196462409754258E+02 + -0.1197158556860096E+02 + -0.1197855142088804E+02 + -0.1198552166211675E+02 + -0.1199249630000000E+02 + -0.1199947534057723E+02 + -0.1200645878319388E+02 + -0.1201344662552191E+02 + -0.1202043886523330E+02 + -0.1202743550000000E+02 + -0.1203443652814851E+02 + -0.1204144195062354E+02 + -0.1204845176902430E+02 + -0.1205546598495005E+02 + -0.1206248460000000E+02 + -0.1206950761642872E+02 + -0.1207653503911199E+02 + -0.1208356687358089E+02 + -0.1209060312536653E+02 + -0.1209764380000000E+02 + -0.1210468890133660E+02 + -0.1211173842652852E+02 + -0.1211879237105213E+02 + -0.1212585073038383E+02 + -0.1213291350000000E+02 + -0.1213998067742488E+02 + -0.1214705226837397E+02 + -0.1215412828061062E+02 + -0.1216120872189818E+02 + -0.1216829360000000E+02 + -0.1217538292096389E+02 + -0.1218247668397562E+02 + -0.1218957488650540E+02 + -0.1219667752602345E+02 + -0.1220378460000000E+02 + -0.1221089610671954E+02 + -0.1221801204772356E+02 + -0.1222513242536781E+02 + -0.1223225724200804E+02 + -0.1223938650000000E+02 + -0.1224652020175794E+02 + -0.1225365834993013E+02 + -0.1226080094722335E+02 + -0.1226794799634439E+02 + -0.1227509950000000E+02 + -0.1228225546064872E+02 + -0.1228941587975594E+02 + -0.1229658075853880E+02 + -0.1230375009821444E+02 + -0.1231092390000000E+02 + -0.1231810216524720E+02 + -0.1232528489584612E+02 + -0.1233247209382145E+02 + -0.1233966376119785E+02 + -0.1234685990000000E+02 + -0.1235406051196250E+02 + -0.1236126559765958E+02 + -0.1236847515737542E+02 + -0.1237568919139417E+02 + -0.1238290770000000E+02 + -0.1239013068370281E+02 + -0.1239735814391554E+02 + -0.1240459008227686E+02 + -0.1241182650042546E+02 + -0.1241906740000000E+02 + -0.1242631278282626E+02 + -0.1243356265147827E+02 + -0.1244081700871715E+02 + -0.1244807585730401E+02 + -0.1245533920000000E+02 + -0.1246260703939216E+02 + -0.1246987937737139E+02 + -0.1247715621565455E+02 + -0.1248443755595847E+02 + -0.1249172340000000E+02 + -0.1249901374920511E+02 + -0.1250630860383618E+02 + -0.1251360796386469E+02 + -0.1252091182926213E+02 + -0.1252822020000000E+02 + -0.1253553307658739E+02 + -0.1254285046168389E+02 + -0.1255017235848670E+02 + -0.1255749877019300E+02 + -0.1256482970000000E+02 + -0.1257216515084532E+02 + -0.1257950512462826E+02 + -0.1258684962298854E+02 + -0.1259419864756588E+02 + -0.1260155220000000E+02 + -0.1260891028163131E+02 + -0.1261627289260305E+02 + -0.1262364003275913E+02 + -0.1263101170194348E+02 + -0.1263838790000000E+02 + -0.1264576862742942E+02 + -0.1265315388735954E+02 + -0.1266054368357494E+02 + -0.1266793801986023E+02 + -0.1267533690000000E+02 + -0.1268274032705101E+02 + -0.1269014830115880E+02 + -0.1269756082174109E+02 + -0.1270497788821558E+02 + -0.1271239950000000E+02 + -0.1271982565716654E+02 + -0.1272725636240527E+02 + -0.1273469161906073E+02 + -0.1274213143047746E+02 + -0.1274957580000000E+02 + -0.1275702473068282E+02 + -0.1276447822442010E+02 + -0.1277193628281598E+02 + -0.1277939890747458E+02 + -0.1278686610000000E+02 + -0.1279433786170220E+02 + -0.1280181419271432E+02 + -0.1280929509287535E+02 + -0.1281678056202425E+02 + -0.1282427060000000E+02 + -0.1283176520730839E+02 + -0.1283926438712259E+02 + -0.1284676814328261E+02 + -0.1285427647962841E+02 + -0.1286178940000000E+02 + -0.1286930690746423E+02 + -0.1287682900199530E+02 + -0.1288435568279425E+02 + -0.1289188694906213E+02 + -0.1289942280000000E+02 + -0.1290696323563468E+02 + -0.1291450825929621E+02 + -0.1292205787514040E+02 + -0.1292961208732306E+02 + -0.1293717090000001E+02 + -0.1294473431639705E+02 + -0.1295230233601988E+02 + -0.1295987495744419E+02 + -0.1296745217924567E+02 + -0.1297503400000000E+02 + -0.1298262041957716E+02 + -0.1299021144302430E+02 + -0.1299780707668287E+02 + -0.1300540732689429E+02 + -0.1301301220000001E+02 + -0.1302062170049433E+02 + -0.1302823582548294E+02 + -0.1303585457022439E+02 + -0.1304347792997723E+02 + -0.1305110590000000E+02 + -0.1305873847764556E+02 + -0.1306637566864398E+02 + -0.1307401748081962E+02 + -0.1308166392199684E+02 + -0.1308931500000001E+02 + -0.1309697072092343E+02 + -0.1310463108394116E+02 + -0.1311229608649718E+02 + -0.1311996572603546E+02 + -0.1312764000000000E+02 + -0.1313531890666073E+02 + -0.1314300244759139E+02 + -0.1315069062519170E+02 + -0.1315838344186134E+02 + -0.1316608090000001E+02 + -0.1317378300203367E+02 + -0.1318148975049328E+02 + -0.1318920114793606E+02 + -0.1319691719691922E+02 + -0.1320463790000000E+02 + -0.1321236325960464E+02 + -0.1322009327763553E+02 + -0.1322782795586411E+02 + -0.1323556729606179E+02 + -0.1324331130000001E+02 + -0.1325105996914780E+02 + -0.1325881330376462E+02 + -0.1326657130380755E+02 + -0.1327433396923366E+02 + -0.1328210130000000E+02 + -0.1328987329660420E+02 + -0.1329764996170600E+02 + -0.1330543129850571E+02 + -0.1331321731020362E+02 + -0.1332100800000001E+02 + -0.1332880337083543E+02 + -0.1333660342461139E+02 + -0.1334440816296963E+02 + -0.1335221758755192E+02 + -0.1336003170000000E+02 + -0.1336785050165412E+02 + -0.1337567399264847E+02 + -0.1338350217281577E+02 + -0.1339133504198873E+02 + -0.1339917260000001E+02 + -0.1340701484734812E+02 + -0.1341486178719473E+02 + -0.1342271342336728E+02 + -0.1343056975969322E+02 + -0.1343843080000000E+02 + -0.1344629654735342E+02 + -0.1345416700177264E+02 + -0.1346204216251514E+02 + -0.1346992202883844E+02 + -0.1347780660000001E+02 + -0.1348569587603820E+02 + -0.1349358986011473E+02 + -0.1350148855617217E+02 + -0.1350939196815307E+02 + -0.1351730010000000E+02 + -0.1352521295489380E+02 + -0.1353313053296845E+02 + -0.1354105283359619E+02 + -0.1354897985614930E+02 + -0.1355691160000001E+02 + -0.1356484806518660E+02 + -0.1357278925441148E+02 + -0.1358073517104306E+02 + -0.1358868581844976E+02 + -0.1359664120000000E+02 + -0.1360460131875981E+02 + -0.1361256617658565E+02 + -0.1362053577503158E+02 + -0.1362851011565168E+02 + -0.1363648920000001E+02 + -0.1364447302937417E+02 + -0.1365246160404594E+02 + -0.1366045492403062E+02 + -0.1366845298934354E+02 + -0.1367645580000000E+02 + -0.1368446335654354E+02 + -0.1369247566163062E+02 + -0.1370049271844593E+02 + -0.1370851453017417E+02 + -0.1371654110000001E+02 + -0.1372457243085168E+02 + -0.1373260852463159E+02 + -0.1374064938298565E+02 + -0.1374869500755981E+02 + -0.1375674540000000E+02 + -0.1376480056164976E+02 + -0.1377286049264306E+02 + -0.1378092519281148E+02 + -0.1378899466198661E+02 + -0.1379706890000001E+02 + -0.1380514790734929E+02 + -0.1381323168719618E+02 + -0.1382132024336842E+02 + -0.1382941357969378E+02 + -0.1383751170000000E+02 + -0.1384561460735311E+02 + -0.1385372230177225E+02 + -0.1386183478251483E+02 + -0.1386995204883829E+02 + -0.1387807410000001E+02 + -0.1388620093603828E+02 + -0.1389433256011484E+02 + -0.1390246897617225E+02 + -0.1391061018815311E+02 + -0.1391875620000000E+02 + -0.1392690701489378E+02 + -0.1393506263296842E+02 + -0.1394322305359617E+02 + -0.1395138827614929E+02 + -0.1395955830000001E+02 + -0.1396773312518661E+02 + -0.1397591275441149E+02 + -0.1398409719104307E+02 + -0.1399228643844976E+02 + -0.1400048050000000E+02 + -0.1400867937875981E+02 + -0.1401688307658565E+02 + -0.1402509159503158E+02 + -0.1403330493565168E+02 + -0.1404152310000001E+02 + -0.1404974608937417E+02 + -0.1405797390404594E+02 + -0.1406620654403063E+02 + -0.1407444400934354E+02 + -0.1408268630000000E+02 + -0.1409093341654354E+02 + -0.1409918536163062E+02 + -0.1410744213844594E+02 + -0.1411570375017417E+02 + -0.1412397020000001E+02 + -0.1413224149085168E+02 + -0.1414051762463159E+02 + -0.1414879860298565E+02 + -0.1415708442755981E+02 + -0.1416537510000000E+02 + -0.1417367062164976E+02 + -0.1418197099264306E+02 + -0.1419027621281149E+02 + -0.1419858628198661E+02 + -0.1420690120000001E+02 + -0.1421522096734929E+02 + -0.1422354558719618E+02 + -0.1423187506336842E+02 + -0.1424020939969378E+02 + -0.1424854860000000E+02 + -0.1425689266735311E+02 + -0.1426524160177225E+02 + -0.1427359540251483E+02 + -0.1428195406883829E+02 + -0.1429031760000001E+02 + -0.1429868599603829E+02 + -0.1430705926011484E+02 + -0.1431543739617225E+02 + -0.1432382040815311E+02 + -0.1433220830000000E+02 + -0.1434060107489378E+02 + -0.1434899873296842E+02 + -0.1435740127359617E+02 + -0.1436580869614928E+02 + -0.1437422100000001E+02 + -0.1438263818518661E+02 + -0.1439106025441149E+02 + -0.1439948721104307E+02 + -0.1440791905844976E+02 + -0.1441635580000000E+02 + -0.1442479743875981E+02 + -0.1443324397658565E+02 + -0.1444169541503158E+02 + -0.1445015175565168E+02 + -0.1445861300000001E+02 + -0.1446707914937417E+02 + -0.1447555020404594E+02 + -0.1448402616403063E+02 + -0.1449250702934354E+02 + -0.1450099280000000E+02 + -0.1450948347654354E+02 + -0.1451797906163062E+02 + -0.1452647955844594E+02 + -0.1453498497017417E+02 + -0.1454349530000001E+02 + -0.1455201055085168E+02 + -0.1456053072463158E+02 + -0.1456905582298564E+02 + -0.1457758584755981E+02 + -0.1458612080000000E+02 + -0.1459466068164977E+02 + -0.1460320549264308E+02 + -0.1461175523281150E+02 + -0.1462030990198662E+02 + -0.1462886950000001E+02 + -0.1463743402734926E+02 + -0.1464600348719612E+02 + -0.1465457788336835E+02 + -0.1466315721969372E+02 + -0.1467174150000000E+02 + -0.1468033072735322E+02 + -0.1468892490177247E+02 + -0.1469752402251512E+02 + -0.1470612808883851E+02 + -0.1471473710000001E+02 + -0.1472335105603787E+02 + -0.1473196996011400E+02 + -0.1474059381617119E+02 + -0.1474922262815226E+02 + -0.1475785640000000E+02 + -0.1476649513489533E+02 + -0.1477513883297156E+02 + -0.1478378749360014E+02 + -0.1479244111615247E+02 + -0.1480109970000001E+02 + -0.1480976324518083E+02 + -0.1481843175439976E+02 + -0.1482710523102827E+02 + -0.1483578367843786E+02 + -0.1484446710000000E+02 + -0.1485315549878137E+02 + -0.1486184887662942E+02 + -0.1487054723508678E+02 + -0.1487925057569610E+02 + -0.1488795890000001E+02 + -0.1489667220929369E+02 + -0.1490539050388257E+02 + -0.1491411378382460E+02 + -0.1492284204917775E+02 + -0.1493157530000000E+02 + -0.1494031353684389E+02 + -0.1494905676224034E+02 + -0.1495780497921484E+02 + -0.1496655819079290E+02 + -0.1497531640000001E+02 + -0.1498407960973075E+02 + -0.1499284782235608E+02 + -0.1500162104011604E+02 + -0.1501039926525067E+02 + -0.1501918250000000E+02 + -0.1502797074583313E+02 + -0.1503676400113535E+02 + -0.1504556226352100E+02 + -0.1505436553060444E+02 + -0.1506317380000001E+02 + -0.1507198707093674E+02 + -0.1508080534910253E+02 + -0.1508962864179994E+02 + -0.1509845695633157E+02 + -0.1510729030000000E+02 + -0.1511612867841993E+02 + -0.1512497209045456E+02 + -0.1513382053327923E+02 + -0.1514267400406927E+02 + -0.1515153250000001E+02 + -0.1516039601938356E+02 + -0.1516926456507924E+02 + -0.1517813814108314E+02 + -0.1518701675139136E+02 + -0.1519590040000000E+02 + -0.1520478909044586E+02 + -0.1521368282442851E+02 + -0.1522258160318824E+02 + -0.1523148542796531E+02 + -0.1524039430000001E+02 + -0.1524930822043302E+02 + -0.1525822719000673E+02 + -0.1526715120936393E+02 + -0.1527608027914742E+02 + -0.1528501440000000E+02 + -0.1529395357262209E+02 + -0.1530289779794461E+02 + -0.1531184707695608E+02 + -0.1532080141064503E+02 + -0.1532976080000001E+02 + -0.1533872524667862E+02 + -0.1534769475501486E+02 + -0.1535666933001178E+02 + -0.1536564897667247E+02 + -0.1537463370000000E+02 + -0.1538362350386346E+02 + -0.1539261838759600E+02 + -0.1540161834939682E+02 + -0.1541062338746509E+02 + -0.1541963350000001E+02 + -0.1542864868586757E+02 + -0.1543766894660115E+02 + -0.1544669428440094E+02 + -0.1545572470146716E+02 + -0.1546476020000000E+02 + -0.1547380078226630E+02 + -0.1548284645079943E+02 + -0.1549189720819942E+02 + -0.1550095305706627E+02 + -0.1551001400000000E+02 + -0.1551908003946726E+02 + -0.1552815117740114E+02 + -0.1553722741560140E+02 + -0.1554630875586777E+02 + -0.1555539520000000E+02 + -0.1556448674946471E+02 + -0.1557358340439603E+02 + -0.1558268516459501E+02 + -0.1559179202986266E+02 + -0.1560090400000000E+02 + -0.1561002107547393E+02 + -0.1561914325941473E+02 + -0.1562827055561857E+02 + -0.1563740296788161E+02 + -0.1564654050000000E+02 + -0.1565568315503960E+02 + -0.1566483093314506E+02 + -0.1567398383373071E+02 + -0.1568314185621091E+02 + -0.1569230500000000E+02 + -0.1570147326516768E+02 + -0.1571064665440506E+02 + -0.1571982517105859E+02 + -0.1572900881847475E+02 + -0.1573819760000000E+02 + -0.1574739151868970E+02 + -0.1575659057643475E+02 + -0.1576579477483495E+02 + -0.1577500411549010E+02 + -0.1578421860000000E+02 + -0.1579343822967355E+02 + -0.1580266300465597E+02 + -0.1581189292480163E+02 + -0.1582112798996486E+02 + -0.1583036820000000E+02 + -0.1583961355541615E+02 + -0.1584886405934139E+02 + -0.1585811971555855E+02 + -0.1586738052785048E+02 + -0.1587664650000000E+02 + -0.1588591763506187E+02 + -0.1589519393317849E+02 + -0.1590447539376417E+02 + -0.1591376201623323E+02 + -0.1592305380000000E+02 + -0.1593235074513639E+02 + -0.1594165285434469E+02 + -0.1595096013098480E+02 + -0.1596027257841660E+02 + -0.1596959020000000E+02 + -0.1597891299879260E+02 + -0.1598824097664278E+02 + -0.1599757413509666E+02 + -0.1600691247570036E+02 + -0.1601625600000000E+02 + -0.1602560470929327E+02 + -0.1603495860388424E+02 + -0.1604431768382858E+02 + -0.1605368194918194E+02 + -0.1606305140000000E+02 + -0.1607242603683435E+02 + -0.1608180586222027E+02 + -0.1609119087918903E+02 + -0.1610058109077186E+02 + -0.1610997650000000E+02 + -0.1611937710976938E+02 + -0.1612878292243469E+02 + -0.1613819394021531E+02 + -0.1614761016533062E+02 + -0.1615703160000000E+02 + -0.1616645824568816E+02 + -0.1617589010084099E+02 + -0.1618532716314975E+02 + -0.1619476943030567E+02 + -0.1620421690000000E+02 + -0.1621366957147804E+02 + -0.1622312745020139E+02 + -0.1623259054318572E+02 + -0.1624205885744670E+02 + -0.1625153240000000E+02 + -0.1626101117639970E+02 + -0.1627049518635346E+02 + -0.1627998442810738E+02 + -0.1628947889990753E+02 + -0.1629897860000000E+02 + -0.1630848352692320E+02 + -0.1631799368038479E+02 + -0.1632750906038479E+02 + -0.1633702966692320E+02 + 0.7624349897230946E+00 + 0.7617205676605572E+00 + 0.7610066492605887E+00 + 0.7602932343327278E+00 + 0.7595803226865119E+00 + 0.7588679141314785E+00 + 0.7581560084771660E+00 + 0.7574446055331121E+00 + 0.7567337051088545E+00 + 0.7560233070139311E+00 + 0.7553134110578801E+00 + 0.7546040170502391E+00 + 0.7538951248005457E+00 + 0.7531867341183382E+00 + 0.7524788448131545E+00 + 0.7517714566945322E+00 + 0.7510645695720093E+00 + 0.7503581832551236E+00 + 0.7496522975534128E+00 + 0.7489469122764150E+00 + 0.7482420272336681E+00 + 0.7475376422347098E+00 + 0.7468337570890777E+00 + 0.7461303716063106E+00 + 0.7454274855959453E+00 + 0.7447250988675204E+00 + 0.7440232112305734E+00 + 0.7433218224946423E+00 + 0.7426209324692650E+00 + 0.7419205409639789E+00 + 0.7412206477883226E+00 + 0.7405212527518335E+00 + 0.7398223556640495E+00 + 0.7391239563345087E+00 + 0.7384260545727488E+00 + 0.7377286501883074E+00 + 0.7370317429907230E+00 + 0.7363353327895328E+00 + 0.7356394193942750E+00 + 0.7349440026144876E+00 + 0.7342490822597084E+00 + 0.7335546581394747E+00 + 0.7328607300633252E+00 + 0.7321672978407971E+00 + 0.7314743612814287E+00 + 0.7307819201947576E+00 + 0.7300899743903219E+00 + 0.7293985236776594E+00 + 0.7287075678663078E+00 + 0.7280171067658053E+00 + 0.7273271401856894E+00 + 0.7266376679354978E+00 + 0.7259486898247689E+00 + 0.7252602056630401E+00 + 0.7245722152598500E+00 + 0.7238847184247355E+00 + 0.7231977149672351E+00 + 0.7225112046968865E+00 + 0.7218251874232273E+00 + 0.7211396629557958E+00 + 0.7204546311041298E+00 + 0.7197700916777670E+00 + 0.7190860444862450E+00 + 0.7184024893391023E+00 + 0.7177194260458764E+00 + 0.7170368544161050E+00 + 0.7163547742593261E+00 + 0.7156731853850779E+00 + 0.7149920876028979E+00 + 0.7143114807223241E+00 + 0.7136313645528942E+00 + 0.7129517389041462E+00 + 0.7122726035856180E+00 + 0.7115939584068476E+00 + 0.7109158031773724E+00 + 0.7102381377067307E+00 + 0.7095609618044600E+00 + 0.7088842752800986E+00 + 0.7082080779431839E+00 + 0.7075323696032541E+00 + 0.7068571500698471E+00 + 0.7061824191525004E+00 + 0.7055081766607523E+00 + 0.7048344224041403E+00 + 0.7041611561922023E+00 + 0.7034883778344765E+00 + 0.7028160871405005E+00 + 0.7021442839198125E+00 + 0.7014729679819496E+00 + 0.7008021391364503E+00 + 0.7001317971928525E+00 + 0.6994619419606936E+00 + 0.6987925732495118E+00 + 0.6981236908688448E+00 + 0.6974552946282309E+00 + 0.6967873843372074E+00 + 0.6961199598053125E+00 + 0.6954530208420837E+00 + 0.6947865672570592E+00 + 0.6941205988597769E+00 + 0.6934551154597745E+00 + 0.6927901168665899E+00 + 0.6921256028897611E+00 + 0.6914615733388258E+00 + 0.6907980280233216E+00 + 0.6901349667527872E+00 + 0.6894723893367596E+00 + 0.6888102955847771E+00 + 0.6881486853063774E+00 + 0.6874875583110985E+00 + 0.6868269144084779E+00 + 0.6861667534080540E+00 + 0.6855070751193646E+00 + 0.6848478793519471E+00 + 0.6841891659153396E+00 + 0.6835309346190801E+00 + 0.6828731852727065E+00 + 0.6822159176857565E+00 + 0.6815591316677681E+00 + 0.6809028270282789E+00 + 0.6802470035768269E+00 + 0.6795916611229500E+00 + 0.6789367994761861E+00 + 0.6782824184460732E+00 + 0.6776285178421489E+00 + 0.6769750974739511E+00 + 0.6763221571510176E+00 + 0.6756696966828866E+00 + 0.6750177158790955E+00 + 0.6743662145491827E+00 + 0.6737151925026856E+00 + 0.6730646495491424E+00 + 0.6724145854980906E+00 + 0.6717650001590685E+00 + 0.6711158933416135E+00 + 0.6704672648552639E+00 + 0.6698191145095571E+00 + 0.6691714421140313E+00 + 0.6685242474782244E+00 + 0.6678775304116742E+00 + 0.6672312907239187E+00 + 0.6665855282244950E+00 + 0.6659402427229420E+00 + 0.6652954340287971E+00 + 0.6646511019515979E+00 + 0.6640072463008828E+00 + 0.6633638668861894E+00 + 0.6627209635170555E+00 + 0.6620785360030189E+00 + 0.6614365841536179E+00 + 0.6607951077783898E+00 + 0.6601541066868728E+00 + 0.6595135806886048E+00 + 0.6588735295931234E+00 + 0.6582339532099666E+00 + 0.6575948513486725E+00 + 0.6569562238187785E+00 + 0.6563180704298228E+00 + 0.6556803909913431E+00 + 0.6550431853128775E+00 + 0.6544064532039638E+00 + 0.6537701944741395E+00 + 0.6531344089329430E+00 + 0.6524990963899116E+00 + 0.6518642566545836E+00 + 0.6512298895364967E+00 + 0.6505959948451889E+00 + 0.6499625723901980E+00 + 0.6493296219810616E+00 + 0.6486971434273182E+00 + 0.6480651365385048E+00 + 0.6474336011241597E+00 + 0.6468025369938211E+00 + 0.6461719439570266E+00 + 0.6455418218233135E+00 + 0.6449121704022205E+00 + 0.6442829895032851E+00 + 0.6436542789360454E+00 + 0.6430260385100388E+00 + 0.6423982680348034E+00 + 0.6417709673198770E+00 + 0.6411441361747978E+00 + 0.6405177744091035E+00 + 0.6398918818323316E+00 + 0.6392664582540206E+00 + 0.6386415034837079E+00 + 0.6380170173309314E+00 + 0.6373929996052288E+00 + 0.6367694501161387E+00 + 0.6361463686731980E+00 + 0.6355237550859454E+00 + 0.6349016091639181E+00 + 0.6342799307166544E+00 + 0.6336587195536920E+00 + 0.6330379754845690E+00 + 0.6324176983188230E+00 + 0.6317978878659916E+00 + 0.6311785439356132E+00 + 0.6305596663372254E+00 + 0.6299412548803662E+00 + 0.6293233093745734E+00 + 0.6287058296293848E+00 + 0.6280888154543383E+00 + 0.6274722666589716E+00 + 0.6268561830528229E+00 + 0.6262405644454301E+00 + 0.6256254106463306E+00 + 0.6250107214650626E+00 + 0.6243964967111639E+00 + 0.6237827361941724E+00 + 0.6231694397236258E+00 + 0.6225566071090620E+00 + 0.6219442381600193E+00 + 0.6213323326860349E+00 + 0.6207208904966470E+00 + 0.6201099114013937E+00 + 0.6194993952098125E+00 + 0.6188893417314412E+00 + 0.6182797507758179E+00 + 0.6176706221524806E+00 + 0.6170619556709669E+00 + 0.6164537511408145E+00 + 0.6158460083715617E+00 + 0.6152387271727461E+00 + 0.6146319073539055E+00 + 0.6140255487245780E+00 + 0.6134196510943015E+00 + 0.6128142142726134E+00 + 0.6122092380690523E+00 + 0.6116047222931552E+00 + 0.6110006667544607E+00 + 0.6103970712625062E+00 + 0.6097939356268300E+00 + 0.6091912596569693E+00 + 0.6085890431624627E+00 + 0.6079872859528477E+00 + 0.6073859878376620E+00 + 0.6067851486264438E+00 + 0.6061847681287307E+00 + 0.6055848461540609E+00 + 0.6049853825119717E+00 + 0.6043863770120018E+00 + 0.6037878294636880E+00 + 0.6031897396765693E+00 + 0.6025921074601827E+00 + 0.6019949326240665E+00 + 0.6013982149777584E+00 + 0.6008019543307961E+00 + 0.6002061504927179E+00 + 0.5996108032730614E+00 + 0.5990159124813644E+00 + 0.5984214779271651E+00 + 0.5978274994200010E+00 + 0.5972339767694098E+00 + 0.5966409097849300E+00 + 0.5960482982760991E+00 + 0.5954561420524547E+00 + 0.5948644409235352E+00 + 0.5942731946988782E+00 + 0.5936824031880215E+00 + 0.5930920662005031E+00 + 0.5925021835458607E+00 + 0.5919127550336323E+00 + 0.5913237804733557E+00 + 0.5907352596745689E+00 + 0.5901471924468096E+00 + 0.5895595785996156E+00 + 0.5889724179425251E+00 + 0.5883857102850757E+00 + 0.5877994554368051E+00 + 0.5872136532072517E+00 + 0.5866283034059530E+00 + 0.5860434058424468E+00 + 0.5854589603262710E+00 + 0.5848749666669637E+00 + 0.5842914246740624E+00 + 0.5837083341571053E+00 + 0.5831256949256303E+00 + 0.5825435067891749E+00 + 0.5819617695572772E+00 + 0.5813804830394749E+00 + 0.5807996470453061E+00 + 0.5802192613843085E+00 + 0.5796393258660199E+00 + 0.5790598402999786E+00 + 0.5784808044957220E+00 + 0.5779022182627880E+00 + 0.5773240814107147E+00 + 0.5767463937490397E+00 + 0.5761691550873012E+00 + 0.5755923652350369E+00 + 0.5750160240017845E+00 + 0.5744401311970819E+00 + 0.5738646866304672E+00 + 0.5732896901114780E+00 + 0.5727151414496523E+00 + 0.5721410404545281E+00 + 0.5715673869356430E+00 + 0.5709941807025352E+00 + 0.5704214215647420E+00 + 0.5698491093318018E+00 + 0.5692772438132522E+00 + 0.5687058248186312E+00 + 0.5681348521574767E+00 + 0.5675643256393263E+00 + 0.5669942450737182E+00 + 0.5664246102701897E+00 + 0.5658554210382796E+00 + 0.5652866771875249E+00 + 0.5647183785274638E+00 + 0.5641505248676343E+00 + 0.5635831160175741E+00 + 0.5630161517868208E+00 + 0.5624496319849128E+00 + 0.5618835564213878E+00 + 0.5613179249057834E+00 + 0.5607527372476376E+00 + 0.5601879932564884E+00 + 0.5596236927418737E+00 + 0.5590598355133309E+00 + 0.5584964213803985E+00 + 0.5579334501526137E+00 + 0.5573709216395151E+00 + 0.5568088356506400E+00 + 0.5562471919955266E+00 + 0.5556859904837125E+00 + 0.5551252309247357E+00 + 0.5545649131281341E+00 + 0.5540050369034454E+00 + 0.5534456020602075E+00 + 0.5528866084079587E+00 + 0.5523280557562362E+00 + 0.5517699439145781E+00 + 0.5512122726925226E+00 + 0.5506550418996072E+00 + 0.5500982513453698E+00 + 0.5495419008393483E+00 + 0.5489859901910807E+00 + 0.5484305192101048E+00 + 0.5478754877059582E+00 + 0.5473208954881792E+00 + 0.5467667423663052E+00 + 0.5462130281498745E+00 + 0.5456597526484249E+00 + 0.5451069156714939E+00 + 0.5445545170286195E+00 + 0.5440025565293399E+00 + 0.5434510339831928E+00 + 0.5428999491997157E+00 + 0.5423493019884472E+00 + 0.5417990921589243E+00 + 0.5412493195206856E+00 + 0.5406999838832683E+00 + 0.5401510850562109E+00 + 0.5396026228490508E+00 + 0.5390545970713263E+00 + 0.5385070075325748E+00 + 0.5379598540423345E+00 + 0.5374131364101430E+00 + 0.5368668544455383E+00 + 0.5363210079580584E+00 + 0.5357755967572411E+00 + 0.5352306206526240E+00 + 0.5346860794537452E+00 + 0.5341419729701427E+00 + 0.5335983010113540E+00 + 0.5330550633869172E+00 + 0.5325122599063699E+00 + 0.5319698903792506E+00 + 0.5314279546150966E+00 + 0.5308864524234458E+00 + 0.5303453836138363E+00 + 0.5298047479958058E+00 + 0.5292645453788922E+00 + 0.5287247755726333E+00 + 0.5281854383865672E+00 + 0.5276465336302314E+00 + 0.5271080611131640E+00 + 0.5265700206449029E+00 + 0.5260324120349860E+00 + 0.5254952350929507E+00 + 0.5249584896283355E+00 + 0.5244221754506779E+00 + 0.5238862923695161E+00 + 0.5233508401943874E+00 + 0.5228158187348301E+00 + 0.5222812278003818E+00 + 0.5217470672005806E+00 + 0.5212133367449643E+00 + 0.5206800362430708E+00 + 0.5201471655044376E+00 + 0.5196147243386031E+00 + 0.5190827125551049E+00 + 0.5185511299634809E+00 + 0.5180199763732690E+00 + 0.5174892515940068E+00 + 0.5169589554352328E+00 + 0.5164290877064842E+00 + 0.5158996482172990E+00 + 0.5153706367772153E+00 + 0.5148420531957707E+00 + 0.5143138972825034E+00 + 0.5137861688469511E+00 + 0.5132588676986513E+00 + 0.5127319936471425E+00 + 0.5122055465019622E+00 + 0.5116795260726484E+00 + 0.5111539321687388E+00 + 0.5106287645997714E+00 + 0.5101040231752839E+00 + 0.5095797077048144E+00 + 0.5090558179979006E+00 + 0.5085323538640805E+00 + 0.5080093151128917E+00 + 0.5074867015538723E+00 + 0.5069645129965602E+00 + 0.5064427492504930E+00 + 0.5059214101252090E+00 + 0.5054004954302456E+00 + 0.5048800049751410E+00 + 0.5043599385694328E+00 + 0.5038402960226590E+00 + 0.5033210771443574E+00 + 0.5028022817440662E+00 + 0.5022839096313227E+00 + 0.5017659606156651E+00 + 0.5012484345066312E+00 + 0.5007313311137590E+00 + 0.5002146502465863E+00 + 0.4996983917146507E+00 + 0.4991825553274903E+00 + 0.4986671408946432E+00 + 0.4981521482256467E+00 + 0.4976375771300389E+00 + 0.4971234274173579E+00 + 0.4966096988971414E+00 + 0.4960963913789272E+00 + 0.4955835046722533E+00 + 0.4950710385866573E+00 + 0.4945589929316774E+00 + 0.4940473675168512E+00 + 0.4935361621517169E+00 + 0.4930253766458121E+00 + 0.4925150108086746E+00 + 0.4920050644498424E+00 + 0.4914955373788533E+00 + 0.4909864294052452E+00 + 0.4904777403385559E+00 + 0.4899694699883234E+00 + 0.4894616181640856E+00 + 0.4889541846753802E+00 + 0.4884471693317449E+00 + 0.4879405719427180E+00 + 0.4874343923178372E+00 + 0.4869286302666401E+00 + 0.4864232855986649E+00 + 0.4859183581234495E+00 + 0.4854138476505315E+00 + 0.4849097539894487E+00 + 0.4844060769497393E+00 + 0.4839028163409409E+00 + 0.4833999719725916E+00 + 0.4828975436542290E+00 + 0.4823955311953911E+00 + 0.4818939344056158E+00 + 0.4813927530944410E+00 + 0.4808919870714043E+00 + 0.4803916361460439E+00 + 0.4798917001278975E+00 + 0.4793921788265029E+00 + 0.4788930720513982E+00 + 0.4783943796121209E+00 + 0.4778961013182092E+00 + 0.4773982369792008E+00 + 0.4769007864046336E+00 + 0.4764037494040455E+00 + 0.4759071257869743E+00 + 0.4754109153629579E+00 + 0.4749151179415342E+00 + 0.4744197333322408E+00 + 0.4739247613446159E+00 + 0.4734302017881975E+00 + 0.4729360544725230E+00 + 0.4724423192071305E+00 + 0.4719489958015577E+00 + 0.4714560840653428E+00 + 0.4709635838080234E+00 + 0.4704714948391374E+00 + 0.4699798169682229E+00 + 0.4694885500048174E+00 + 0.4689976937584589E+00 + 0.4685072480386854E+00 + 0.4680172126550345E+00 + 0.4675275874170444E+00 + 0.4670383721342526E+00 + 0.4665495666161974E+00 + 0.4660611706724163E+00 + 0.4655731841124473E+00 + 0.4650856067458281E+00 + 0.4645984383820967E+00 + 0.4641116788307911E+00 + 0.4636253279014491E+00 + 0.4631393854036084E+00 + 0.4626538511468069E+00 + 0.4621687249405826E+00 + 0.4616840065944732E+00 + 0.4611996959180169E+00 + 0.4607157927207512E+00 + 0.4602322968122141E+00 + 0.4597492080019434E+00 + 0.4592665260994771E+00 + 0.4587842509143528E+00 + 0.4583023822561086E+00 + 0.4578209199342823E+00 + 0.4573398637584119E+00 + 0.4568592135380351E+00 + 0.4563789690826898E+00 + 0.4558991302019138E+00 + 0.4554196967052450E+00 + 0.4549406684022213E+00 + 0.4544620451023808E+00 + 0.4539838266152609E+00 + 0.4535060127503997E+00 + 0.4530286033173351E+00 + 0.4525515981256048E+00 + 0.4520749969847469E+00 + 0.4515987997042991E+00 + 0.4511230060937994E+00 + 0.4506476159627855E+00 + 0.4501726291207953E+00 + 0.4496980453773666E+00 + 0.4492238645420376E+00 + 0.4487500864243458E+00 + 0.4482767108338292E+00 + 0.4478037375800258E+00 + 0.4473311664724732E+00 + 0.4468589973207094E+00 + 0.4463872299342722E+00 + 0.4459158641226995E+00 + 0.4454448996955293E+00 + 0.4449743364622993E+00 + 0.4445041742325475E+00 + 0.4440344128158115E+00 + 0.4435650520216294E+00 + 0.4430960916595390E+00 + 0.4426275315390782E+00 + 0.4421593714697847E+00 + 0.4416916112611967E+00 + 0.4412242507228518E+00 + 0.4407572896642878E+00 + 0.4402907278950427E+00 + 0.4398245652246543E+00 + 0.4393588014626607E+00 + 0.4388934364185996E+00 + 0.4384284699020088E+00 + 0.4379639017224261E+00 + 0.4374997316893897E+00 + 0.4370359596124369E+00 + 0.4365725853011061E+00 + 0.4361096085649350E+00 + 0.4356470292134613E+00 + 0.4351848470562231E+00 + 0.4347230619027582E+00 + 0.4342616735626042E+00 + 0.4338006818452994E+00 + 0.4333400865603814E+00 + 0.4328798875173882E+00 + 0.4324200845258574E+00 + 0.4319606773953272E+00 + 0.4315016659353353E+00 + 0.4310430499554194E+00 + 0.4305848292651177E+00 + 0.4301270036739678E+00 + 0.4296695729915077E+00 + 0.4292125370272753E+00 + 0.4287558955908085E+00 + 0.4282996484916447E+00 + 0.4278437955393224E+00 + 0.4273883365433791E+00 + 0.4269332713133528E+00 + 0.4264785996587813E+00 + 0.4260243213892025E+00 + 0.4255704363141542E+00 + 0.4251169442431743E+00 + 0.4246638449858008E+00 + 0.4242111383515712E+00 + 0.4237588241500238E+00 + 0.4233069021906962E+00 + 0.4228553722831264E+00 + 0.4224042342368521E+00 + 0.4219534878614113E+00 + 0.4215031329663418E+00 + 0.4210531693611816E+00 + 0.4206035968554683E+00 + 0.4201544152587401E+00 + 0.4197056243805345E+00 + 0.4192572240303896E+00 + 0.4188092140178432E+00 + 0.4183615941524331E+00 + 0.4179143642436974E+00 + 0.4174675241011737E+00 + 0.4170210735344001E+00 + 0.4165750123529141E+00 + 0.4161293403662540E+00 + 0.4156840573839574E+00 + 0.4152391632155622E+00 + 0.4147946576706064E+00 + 0.4143505405586276E+00 + 0.4139068116891639E+00 + 0.4134634708717531E+00 + 0.4130205179159329E+00 + 0.4125779526312414E+00 + 0.4121357748272164E+00 + 0.4116939843133957E+00 + 0.4112525808993173E+00 + 0.4108115643945189E+00 + 0.4103709346085384E+00 + 0.4099306913509136E+00 + 0.4094908344311826E+00 + 0.4090513636588832E+00 + 0.4086122788435532E+00 + 0.4081735797947303E+00 + 0.4077352663219526E+00 + 0.4072973382347578E+00 + 0.4068597953426838E+00 + 0.4064226374552687E+00 + 0.4059858643820501E+00 + 0.4055494759325660E+00 + 0.4051134719163541E+00 + 0.4046778521429523E+00 + 0.4042426164218986E+00 + 0.4038077645627308E+00 + 0.4033732963749869E+00 + 0.4029392116682045E+00 + 0.4025055102519216E+00 + 0.4020721919356761E+00 + 0.4016392565290057E+00 + 0.4012067038414484E+00 + 0.4007745336825421E+00 + 0.4003427458618247E+00 + 0.3999113401888339E+00 + 0.3994803164731077E+00 + 0.3990496745241837E+00 + 0.3986194141516001E+00 + 0.3981895351648948E+00 + 0.3977600373736052E+00 + 0.3973309205872696E+00 + 0.3969021846154258E+00 + 0.3964738292676115E+00 + 0.3960458543533646E+00 + 0.3956182596822230E+00 + 0.3951910450637247E+00 + 0.3947642103074074E+00 + 0.3943377552228091E+00 + 0.3939116796194675E+00 + 0.3934859833069205E+00 + 0.3930606660947060E+00 + 0.3926357277923620E+00 + 0.3922111682094261E+00 + 0.3917869871554363E+00 + 0.3913631844399306E+00 + 0.3909397598724466E+00 + 0.3905167132625222E+00 + 0.3900940444196956E+00 + 0.3896717531535042E+00 + 0.3892498392734862E+00 + 0.3888283025891794E+00 + 0.3884071429101216E+00 + 0.3879863600458505E+00 + 0.3875659538059042E+00 + 0.3871459239998206E+00 + 0.3867262704371374E+00 + 0.3863069929273926E+00 + 0.3858880912801240E+00 + 0.3854695653048694E+00 + 0.3850514148111667E+00 + 0.3846336396085539E+00 + 0.3842162395065687E+00 + 0.3837992143147489E+00 + 0.3833825638426327E+00 + 0.3829662878997576E+00 + 0.3825503862956618E+00 + 0.3821348588398827E+00 + 0.3817197053419586E+00 + 0.3813049256114271E+00 + 0.3808905194578263E+00 + 0.3804764866906939E+00 + 0.3800628271195678E+00 + 0.3796495405539858E+00 + 0.3792366268034859E+00 + 0.3788240856776058E+00 + 0.3784119169858835E+00 + 0.3780001205378569E+00 + 0.3775886961430637E+00 + 0.3771776436110419E+00 + 0.3767669627513292E+00 + 0.3763566533734637E+00 + 0.3759467152869831E+00 + 0.3755371483014253E+00 + 0.3751279522263281E+00 + 0.3747191268712296E+00 + 0.3743106720456673E+00 + 0.3739025875591794E+00 + 0.3734948732213035E+00 + 0.3730875288415778E+00 + 0.3726805542295399E+00 + 0.3722739491947276E+00 + 0.3718677135466789E+00 + 0.3714618470949317E+00 + 0.3710563496490237E+00 + 0.3706512210184931E+00 + 0.3702464610128774E+00 + 0.3698420694417147E+00 + 0.3694380461145427E+00 + 0.3690343908408994E+00 + 0.3686311034303225E+00 + 0.3682281836923500E+00 + 0.3678256314365196E+00 + 0.3674234464723694E+00 + 0.3670216286094373E+00 + 0.3666201776572609E+00 + 0.3662190934253782E+00 + 0.3658183757233270E+00 + 0.3654180243606451E+00 + 0.3650180391468707E+00 + 0.3646184198915414E+00 + 0.3642191664041951E+00 + 0.3638202784943696E+00 + 0.3634217559716028E+00 + 0.3630235986454327E+00 + 0.3626258063253970E+00 + 0.3622283788210337E+00 + 0.3618313159418806E+00 + 0.3614346174974755E+00 + 0.3610382832973562E+00 + 0.3606423131510608E+00 + 0.3602467068681271E+00 + 0.3598514642580930E+00 + 0.3594565851304961E+00 + 0.3590620692948745E+00 + 0.3586679165607660E+00 + 0.3582741267377085E+00 + 0.3578806996352397E+00 + 0.3574876350628977E+00 + 0.3570949328302203E+00 + 0.3567025927467453E+00 + 0.3563106146220107E+00 + 0.3559189982655541E+00 + 0.3555277434869135E+00 + 0.3551368500956269E+00 + 0.3547463179012320E+00 + 0.3543561467132667E+00 + 0.3539663363412689E+00 + 0.3535768865947765E+00 + 0.3531877972833271E+00 + 0.3527990682164590E+00 + 0.3524106992037098E+00 + 0.3520226900546173E+00 + 0.3516350405787196E+00 + 0.3512477505855544E+00 + 0.3508608198846595E+00 + 0.3504742482855728E+00 + 0.3500880355978324E+00 + 0.3497021816309759E+00 + 0.3493166861945412E+00 + 0.3489315490980663E+00 + 0.3485467701510890E+00 + 0.3481623491631471E+00 + 0.3477782859437784E+00 + 0.3473945803025210E+00 + 0.3470112320489126E+00 + 0.3466282409924911E+00 + 0.3462456069427944E+00 + 0.3458633297093603E+00 + 0.3454814091017266E+00 + 0.3450998449294315E+00 + 0.3447186370020123E+00 + 0.3443377851290074E+00 + 0.3439572891199545E+00 + 0.3435771487843913E+00 + 0.3431973639318557E+00 + 0.3428179343718858E+00 + 0.3424388599140192E+00 + 0.3420601403677940E+00 + 0.3416817755427478E+00 + 0.3413037652484187E+00 + 0.3409261092943444E+00 + 0.3405488074900629E+00 + 0.3401718596451119E+00 + 0.3397952655690295E+00 + 0.3394190250713533E+00 + 0.3390431379616213E+00 + 0.3386676040493714E+00 + 0.3382924231441413E+00 + 0.3379175950554690E+00 + 0.3375431195928925E+00 + 0.3371689965659494E+00 + 0.3367952257841776E+00 + 0.3364218070571152E+00 + 0.3360487401942998E+00 + 0.3356760250052694E+00 + 0.3353036612995618E+00 + 0.3349316488867149E+00 + 0.3345599875762666E+00 + 0.3341886771777546E+00 + 0.3338177175007171E+00 + 0.3334471083546915E+00 + 0.3330768495492161E+00 + 0.3327069408938285E+00 + 0.3323373821980666E+00 + 0.3319681732714685E+00 + 0.3315993139235717E+00 + 0.3312308039639143E+00 + 0.3308626432020341E+00 + 0.3304948314474689E+00 + 0.3301273685097566E+00 + 0.3297602541984352E+00 + 0.3293934883230425E+00 + 0.3290270706931163E+00 + 0.3286610011181944E+00 + 0.3282952794078148E+00 + 0.3279299053715153E+00 + 0.3275648788188338E+00 + 0.3272001995593081E+00 + 0.3268358674024761E+00 + 0.3264718821578758E+00 + 0.3261082436350449E+00 + 0.3257449516435211E+00 + 0.3253820059928426E+00 + 0.3250194064925472E+00 + 0.3246571529521727E+00 + 0.3242952451812569E+00 + 0.3239336829893378E+00 + 0.3235724661859530E+00 + 0.3232115945806406E+00 + 0.3228510679829385E+00 + 0.3224908862023845E+00 + 0.3221310490485164E+00 + 0.3217715563308722E+00 + 0.3214124078589896E+00 + 0.3210536034424065E+00 + 0.3206951428906608E+00 + 0.3203370260132904E+00 + 0.3199792526198331E+00 + 0.3196218225198269E+00 + 0.3192647355228094E+00 + 0.3189079914383188E+00 + 0.3185515900758926E+00 + 0.3181955312450689E+00 + 0.3178398147553856E+00 + 0.3174844404163805E+00 + 0.3171294080375914E+00 + 0.3167747174285562E+00 + 0.3164203683988127E+00 + 0.3160663607578989E+00 + 0.3157126943153525E+00 + 0.3153593688807117E+00 + 0.3150063842635140E+00 + 0.3146537402732974E+00 + 0.3143014367195997E+00 + 0.3139494734119589E+00 + 0.3135978501599128E+00 + 0.3132465667729993E+00 + 0.3128956230607560E+00 + 0.3125450188327212E+00 + 0.3121947538984325E+00 + 0.3118448280674278E+00 + 0.3114952411492449E+00 + 0.3111459929534219E+00 + 0.3107970832894963E+00 + 0.3104485119670062E+00 + 0.3101002787954895E+00 + 0.3097523835844840E+00 + 0.3094048261435276E+00 + 0.3090576062821580E+00 + 0.3087107238099132E+00 + 0.3083641785363312E+00 + 0.3080179702709496E+00 + 0.3076720988233064E+00 + 0.3073265640029395E+00 + 0.3069813656193866E+00 + 0.3066365034821858E+00 + 0.3062919774008748E+00 + 0.3059477871849914E+00 + 0.3056039326440736E+00 + 0.3052604135876593E+00 + 0.3049172298252864E+00 + 0.3045743811664925E+00 + 0.3042318674208157E+00 + 0.3038896883977937E+00 + 0.3035478439069645E+00 + 0.3032063337578659E+00 + 0.3028651577600359E+00 + 0.3025243157230121E+00 + 0.3021838074563326E+00 + 0.3018436327695351E+00 + 0.3015037914721575E+00 + 0.3011642833737378E+00 + 0.3008251082838138E+00 + 0.3004862660119232E+00 + 0.3001477563676041E+00 + 0.2998095791603943E+00 + 0.2994717341998315E+00 + 0.2991342212954537E+00 + 0.2987970402567989E+00 + 0.2984601908934046E+00 + 0.2981236730148090E+00 + 0.2977874864305500E+00 + 0.2974516309501651E+00 + 0.2971161063831924E+00 + 0.2967809125391698E+00 + 0.2964460492276350E+00 + 0.2961115162581262E+00 + 0.2957773134401807E+00 + 0.2954434405833370E+00 + 0.2951098974971325E+00 + 0.2947766839911052E+00 + 0.2944437998747931E+00 + 0.2941112449577339E+00 + 0.2937790190494654E+00 + 0.2934471219595258E+00 + 0.2931155534974526E+00 + 0.2927843134727839E+00 + 0.2924534016950575E+00 + 0.2921228179738112E+00 + 0.2917925621185828E+00 + 0.2914626339389104E+00 + 0.2911330332443317E+00 + 0.2908037598443845E+00 + 0.2904748135486068E+00 + 0.2901461941665366E+00 + 0.2898179015077114E+00 + 0.2894899353816693E+00 + 0.2891622955979481E+00 + 0.2888349819660857E+00 + 0.2885079942956200E+00 + 0.2881813323960888E+00 + 0.2878549960770299E+00 + 0.2875289851479813E+00 + 0.2872032994184808E+00 + 0.2868779386980662E+00 + 0.2865529027962755E+00 + 0.2862281915226465E+00 + 0.2859038046867171E+00 + 0.2855797420980251E+00 + 0.2852560035661083E+00 + 0.2849325889005048E+00 + 0.2846094979107522E+00 + 0.2842867304063885E+00 + 0.2839642861969516E+00 + 0.2836421650919792E+00 + 0.2833203669010094E+00 + 0.2829988914335799E+00 + 0.2826777384992286E+00 + 0.2823569079074933E+00 + 0.2820363994679120E+00 + 0.2817162129900226E+00 + 0.2813963482833627E+00 + 0.2810768051574704E+00 + 0.2807575834218835E+00 + 0.2804386828861398E+00 + 0.2801201033597773E+00 + 0.2798018446523337E+00 + 0.2794839065733470E+00 + 0.2791662889323550E+00 + 0.2788489915388956E+00 + 0.2785320142025066E+00 + 0.2782153567327260E+00 + 0.2778990189390914E+00 + 0.2775830006311409E+00 + 0.2772673016184124E+00 + 0.2769519217104436E+00 + 0.2766368607167724E+00 + 0.2763221184469367E+00 + 0.2760076947104743E+00 + 0.2756935893169232E+00 + 0.2753798020758212E+00 + 0.2750663327967061E+00 + 0.2747531812891158E+00 + 0.2744403473625882E+00 + 0.2741278308266612E+00 + 0.2738156314908725E+00 + 0.2735037491647602E+00 + 0.2731921836578618E+00 + 0.2728809347797156E+00 + 0.2725700023398592E+00 + 0.2722593861478305E+00 + 0.2719490860131675E+00 + 0.2716391017454080E+00 + 0.2713294331540896E+00 + 0.2710200800487506E+00 + 0.2707110422389285E+00 + 0.2704023195341613E+00 + 0.2700939117439869E+00 + 0.2697858186779432E+00 + 0.2694780401455679E+00 + 0.2691705759563991E+00 + 0.2688634259199745E+00 + 0.2685565898458320E+00 + 0.2682500675435095E+00 + 0.2679438588225447E+00 + 0.2676379634924756E+00 + 0.2673323813628401E+00 + 0.2670271122431761E+00 + 0.2667221559430213E+00 + 0.2664175122719137E+00 + 0.2661131810393910E+00 + 0.2658091620549913E+00 + 0.2655054551282523E+00 + 0.2652020600687119E+00 + 0.2648989766859080E+00 + 0.2645962047893784E+00 + 0.2642937441886610E+00 + 0.2639915946932937E+00 + 0.2636897561128144E+00 + 0.2633882282567607E+00 + 0.2630870109346708E+00 + 0.2627861039560824E+00 + 0.2624855071305333E+00 + 0.2621852202675616E+00 + 0.2618852431767048E+00 + 0.2615855756675011E+00 + 0.2612862175494883E+00 + 0.2609871686322042E+00 + 0.2606884287251865E+00 + 0.2603899976379734E+00 + 0.2600918751801026E+00 + 0.2597940611611118E+00 + 0.2594965553905392E+00 + 0.2591993576779225E+00 + 0.2589024678327994E+00 + 0.2586058856647080E+00 + 0.2583096109831862E+00 + 0.2580136435977716E+00 + 0.2577179833180022E+00 + 0.2574226299534161E+00 + 0.2571275833135507E+00 + 0.2568328432079442E+00 + 0.2565384094461344E+00 + 0.2562442818376591E+00 + 0.2559504601920561E+00 + 0.2556569443188636E+00 + 0.2553637340276191E+00 + 0.2550708291278605E+00 + 0.2547782294291258E+00 + 0.2544859347409529E+00 + 0.2541939448728796E+00 + 0.2539022596344436E+00 + 0.2536108788351831E+00 + 0.2533198022846356E+00 + 0.2530290297923393E+00 + 0.2527385611678318E+00 + 0.2524483962206511E+00 + 0.2521585347603350E+00 + 0.2518689765964215E+00 + 0.2515797215384483E+00 + 0.2512907693959534E+00 + 0.2510021199784745E+00 + 0.2507137730955495E+00 + 0.2504257285567165E+00 + 0.2501379861715130E+00 + 0.2498505457494773E+00 + 0.2495634071001468E+00 + 0.2492765700330597E+00 + 0.2489900343577536E+00 + 0.2487037998837666E+00 + 0.2484178664206366E+00 + 0.2481322337779011E+00 + 0.2478469017650983E+00 + 0.2475618701917660E+00 + 0.2472771388674420E+00 + 0.2469927076016642E+00 + 0.2467085762039704E+00 + 0.2464247444838986E+00 + 0.2461412122509866E+00 + 0.2458579793147722E+00 + 0.2455750454847933E+00 + 0.2452924105705878E+00 + 0.2450100743816935E+00 + 0.2447280367276484E+00 + 0.2444462974179902E+00 + 0.2441648562622569E+00 + 0.2438837130699862E+00 + 0.2436028676507161E+00 + 0.2433223198139845E+00 + 0.2430420693693291E+00 + 0.2427621161262879E+00 + 0.2424824598943988E+00 + 0.2422031004831995E+00 + 0.2419240377022280E+00 + 0.2416452713610221E+00 + 0.2413668012691197E+00 + 0.2410886272360586E+00 + 0.2408107490713767E+00 + 0.2405331665846119E+00 + 0.2402558795853020E+00 + 0.2399788878829849E+00 + 0.2397021912871985E+00 + 0.2394257896074806E+00 + 0.2391496826533692E+00 + 0.2388738702344019E+00 + 0.2385983521601168E+00 + 0.2383231282400517E+00 + 0.2380481982837444E+00 + 0.2377735621007329E+00 + 0.2374992195005548E+00 + 0.2372251702927483E+00 + 0.2369514142868512E+00 + 0.2366779512924011E+00 + 0.2364047811189361E+00 + 0.2361319035759940E+00 + 0.2358593184731126E+00 + 0.2355870256198300E+00 + 0.2353150248256838E+00 + 0.2350433159002119E+00 + 0.2347718986529523E+00 + 0.2345007728934428E+00 + 0.2342299384312212E+00 + 0.2339593950758254E+00 + 0.2336891426367933E+00 + 0.2334191809236627E+00 + 0.2331495097459716E+00 + 0.2328801289132577E+00 + 0.2326110382350590E+00 + 0.2323422375209133E+00 + 0.2320737265803584E+00 + 0.2318055052229322E+00 + 0.2315375732581727E+00 + 0.2312699304956177E+00 + 0.2310025767448049E+00 + 0.2307355118152723E+00 + 0.2304687355165578E+00 + 0.2302022476581992E+00 + 0.2299360480497343E+00 + 0.2296701365007012E+00 + 0.2294045128206375E+00 + 0.2291391768190812E+00 + 0.2288741283055702E+00 + 0.2286093670896423E+00 + 0.2283448929808353E+00 + 0.2280807057886871E+00 + 0.2278168053227357E+00 + 0.2275531913925188E+00 + 0.2272898638075743E+00 + 0.2270268223774401E+00 + 0.2267640669116541E+00 + 0.2265015972197540E+00 + 0.2262394131112779E+00 + 0.2259775143957636E+00 + 0.2257159008827487E+00 + 0.2254545723817715E+00 + 0.2251935287023695E+00 + 0.2249327696540806E+00 + 0.2246722950464430E+00 + 0.2244121046889942E+00 + 0.2241521983912722E+00 + 0.2238925759628149E+00 + 0.2236332372131602E+00 + 0.2233741819518457E+00 + 0.2231154099884096E+00 + 0.2228569211323896E+00 + 0.2225987151933235E+00 + 0.2223407919807494E+00 + 0.2220831513042048E+00 + 0.2218257929732280E+00 + 0.2215687167973565E+00 + 0.2213119225861282E+00 + 0.2210554101490812E+00 + 0.2207991792957533E+00 + 0.2205432298356822E+00 + 0.2202875615784059E+00 + 0.2200321743334622E+00 + 0.2197770679103889E+00 + 0.2195222421187241E+00 + 0.2192676967680055E+00 + 0.2190134316677709E+00 + 0.2187594466275583E+00 + 0.2185057414569056E+00 + 0.2182523159653504E+00 + 0.2179991699624308E+00 + 0.2177463032576847E+00 + 0.2174937156606497E+00 + 0.2172414069808639E+00 + 0.2169893770278652E+00 + 0.2167376256111912E+00 + 0.2164861525403800E+00 + 0.2162349576249694E+00 + 0.2159840406744972E+00 + 0.2157334014985014E+00 + 0.2154830399065198E+00 + 0.2152329557080901E+00 + 0.2149831487127504E+00 + 0.2147336187300386E+00 + 0.2144843655694922E+00 + 0.2142353890406494E+00 + 0.2139866889530480E+00 + 0.2137382651162258E+00 + 0.2134901173397207E+00 + 0.2132422454330706E+00 + 0.2129946492058133E+00 + 0.2127473284674867E+00 + 0.2125002830276286E+00 + 0.2122535126957770E+00 + 0.2120070172814697E+00 + 0.2117607965942444E+00 + 0.2115148504436392E+00 + 0.2112691786391920E+00 + 0.2110237809904403E+00 + 0.2107786573069223E+00 + 0.2105338073981758E+00 + 0.2102892310737387E+00 + 0.2100449281431487E+00 + 0.2098008984159438E+00 + 0.2095571417016618E+00 + 0.2093136578098406E+00 + 0.2090704465500180E+00 + 0.2088275077317320E+00 + 0.2085848411645204E+00 + 0.2083424466579209E+00 + 0.2081003240214717E+00 + 0.2078584730647104E+00 + 0.2076168935971749E+00 + 0.2073755854284030E+00 + 0.2071345483679329E+00 + 0.2068937822253021E+00 + 0.2066532868100486E+00 + 0.2064130619317103E+00 + 0.2061731073998251E+00 + 0.2059334230239307E+00 + 0.2056940086135650E+00 + 0.2054548639782660E+00 + 0.2052159889275715E+00 + 0.2049773832710193E+00 + 0.2047390468181473E+00 + 0.2045009793784934E+00 + 0.2042631807615954E+00 + 0.2040256507769913E+00 + 0.2037883892342188E+00 + 0.2035513959428159E+00 + 0.2033146707123203E+00 + 0.2030782133522700E+00 + 0.2028420236722028E+00 + 0.2026061014816567E+00 + 0.2023704465901694E+00 + 0.2021350588072787E+00 + 0.2018999379425227E+00 + 0.2016650838054392E+00 + 0.2014304962055659E+00 + 0.2011961749524407E+00 + 0.2009621198556018E+00 + 0.2007283307245866E+00 + 0.2004948073689332E+00 + 0.2002615495981795E+00 + 0.2000285572218632E+00 + 0.1997958300495224E+00 + 0.1995633678906947E+00 + 0.1993311705549182E+00 + 0.1990992378517306E+00 + 0.1988675695906698E+00 + 0.1986361655812737E+00 + 0.1984050256330801E+00 + 0.1981741495556270E+00 + 0.1979435371584522E+00 + 0.1977131882510935E+00 + 0.1974831026430888E+00 + 0.1972532801439759E+00 + 0.1970237205632928E+00 + 0.1967944237105773E+00 + 0.1965653893953672E+00 + 0.1963366174272005E+00 + 0.1961081076156150E+00 + 0.1958798597701484E+00 + 0.1956518737003389E+00 + 0.1954241492157242E+00 + 0.1951966861258420E+00 + 0.1949694842402304E+00 + 0.1947425433684272E+00 + 0.1945158633199702E+00 + 0.1942894439043973E+00 + 0.1940632849312464E+00 + 0.1938373862100553E+00 + 0.1936117475503619E+00 + 0.1933863687617041E+00 + 0.1931612496536197E+00 + 0.1929363900356466E+00 + 0.1927117897173227E+00 + 0.1924874485081857E+00 + 0.1922633662177737E+00 + 0.1920395426556245E+00 + 0.1918159776312758E+00 + 0.1915926709542656E+00 + 0.1913696224341317E+00 + 0.1911468318804120E+00 + 0.1909242991026445E+00 + 0.1907020239103668E+00 + 0.1904800061131169E+00 + 0.1902582455204328E+00 + 0.1900367419418521E+00 + 0.1898154951869129E+00 + 0.1895945050651529E+00 + 0.1893737713861099E+00 + 0.1891532939593221E+00 + 0.1889330725943270E+00 + 0.1887131071006627E+00 + 0.1884933972878669E+00 + 0.1882739429654776E+00 + 0.1880547439430325E+00 + 0.1878358000300697E+00 + 0.1876171110361269E+00 + 0.1873986767707420E+00 + 0.1871804970434529E+00 + 0.1869625716637973E+00 + 0.1867449004413133E+00 + 0.1865274831855387E+00 + 0.1863103197060113E+00 + 0.1860934098122689E+00 + 0.1858767533138495E+00 + 0.1856603500202909E+00 + 0.1854441997411309E+00 + 0.1852283022859076E+00 + 0.1850126574641586E+00 + 0.1847972650854219E+00 + 0.1845821249592353E+00 + 0.1843672368951368E+00 + 0.1841526007026640E+00 + 0.1839382161913551E+00 + 0.1837240831707477E+00 + 0.1835102014503798E+00 + 0.1832965708397892E+00 + 0.1830831911485138E+00 + 0.1828700621860914E+00 + 0.1826571837620600E+00 + 0.1824445556859573E+00 + 0.1822321777673213E+00 + 0.1820200498156897E+00 + 0.1818081716406006E+00 + 0.1815965430515916E+00 + 0.1813851638582009E+00 + 0.1811740338699660E+00 + 0.1809631528964250E+00 + 0.1807525207471157E+00 + 0.1805421372315759E+00 + 0.1803320021593435E+00 + 0.1801221153399565E+00 + 0.1799124765829526E+00 + 0.1797030856978697E+00 + 0.1794939424942457E+00 + 0.1792850467816184E+00 + 0.1790763983695257E+00 + 0.1788679970675055E+00 + 0.1786598426850956E+00 + 0.1784519350318340E+00 + 0.1782442739172584E+00 + 0.1780368591509067E+00 + 0.1778296905423169E+00 + 0.1776227679010267E+00 + 0.1774160910365739E+00 + 0.1772096597584967E+00 + 0.1770034738763326E+00 + 0.1767975331996196E+00 + 0.1765918375378957E+00 + 0.1763863867006986E+00 + 0.1761811804975662E+00 + 0.1759762187380364E+00 + 0.1757715012316469E+00 + 0.1755670277879359E+00 + 0.1753627982164409E+00 + 0.1751588123267000E+00 + 0.1749550699282510E+00 + 0.1747515708306318E+00 + 0.1745483148433801E+00 + 0.1743453017760339E+00 + 0.1741425314381312E+00 + 0.1739400036392096E+00 + 0.1737377181888071E+00 + 0.1735356748964615E+00 + 0.1733338735717108E+00 + 0.1731323140240927E+00 + 0.1729309960631452E+00 + 0.1727299194984060E+00 + 0.1725290841394132E+00 + 0.1723284897957044E+00 + 0.1721281362768177E+00 + 0.1719280233922908E+00 + 0.1717281509516616E+00 + 0.1715285187644680E+00 + 0.1713291266402479E+00 + 0.1711299743885391E+00 + 0.1709310618188795E+00 + 0.1707323887408069E+00 + 0.1705339549638592E+00 + 0.1703357602975743E+00 + 0.1701378045514901E+00 + 0.1699400875351443E+00 + 0.1697426090580749E+00 + 0.1695453689298197E+00 + 0.1693483669599166E+00 + 0.1691516029579035E+00 + 0.1689550767333182E+00 + 0.1687587880956986E+00 + 0.1685627368545825E+00 + 0.1683669228195079E+00 + 0.1681713458000125E+00 + 0.1679760056056343E+00 + 0.1677809020459111E+00 + 0.1675860349303808E+00 + 0.1673914040685812E+00 + 0.1671970092700502E+00 + 0.1670028503443257E+00 + 0.1668089271009455E+00 + 0.1666152393494475E+00 + 0.1664217868993695E+00 + 0.1662285695602495E+00 + 0.1660355871416253E+00 + 0.1658428394530347E+00 + 0.1656503263040157E+00 + 0.1654580475041060E+00 + 0.1652660028628436E+00 + 0.1650741921897662E+00 + 0.1648826152944119E+00 + 0.1646912719863183E+00 + 0.1645001620750235E+00 + 0.1643092853700653E+00 + 0.1641186416809815E+00 + 0.1639282308173100E+00 + 0.1637380525885886E+00 + 0.1635481068043553E+00 + 0.1633583932741478E+00 + 0.1631689118075041E+00 + 0.1629796622139620E+00 + 0.1627906443030595E+00 + 0.1626018578843342E+00 + 0.1624133027673241E+00 + 0.1622249787615671E+00 + 0.1620368856766011E+00 + 0.1618490233219639E+00 + 0.1616613915071933E+00 + 0.1614739900418273E+00 + 0.1612868187354037E+00 + 0.1610998773974603E+00 + 0.1609131658375350E+00 + 0.1607266838651657E+00 + 0.1605404312898904E+00 + 0.1603544079212466E+00 + 0.1601686135687725E+00 + 0.1599830480420059E+00 + 0.1597977111504845E+00 + 0.1596126027037463E+00 + 0.1594277225113292E+00 + 0.1592430703827710E+00 + 0.1590586461276095E+00 + 0.1588744495553827E+00 + 0.1586904804756283E+00 + 0.1585067386978843E+00 + 0.1583232240316885E+00 + 0.1581399362865789E+00 + 0.1579568752720931E+00 + 0.1577740407977692E+00 + 0.1575914326731450E+00 + 0.1574090507077584E+00 + 0.1572268947111471E+00 + 0.1570449644928491E+00 + 0.1568632598624022E+00 + 0.1566817806293444E+00 + 0.1565005266032134E+00 + 0.1563194975935472E+00 + 0.1561386934098835E+00 + 0.1559581138617603E+00 + 0.1557777587587155E+00 + 0.1555976279102868E+00 + 0.1554177211260122E+00 + 0.1552380382154295E+00 + 0.1550585789880765E+00 + 0.1548793432534913E+00 + 0.1547003308212116E+00 + 0.1545215415007751E+00 + 0.1543429751017200E+00 + 0.1541646314335839E+00 + 0.1539865103059048E+00 + 0.1538086115282206E+00 + 0.1536309349100691E+00 + 0.1534534802609880E+00 + 0.1532762473905155E+00 + 0.1530992361081892E+00 + 0.1529224462235471E+00 + 0.1527458775461270E+00 + 0.1525695298854668E+00 + 0.1523934030511043E+00 + 0.1522174968525774E+00 + 0.1520418110994240E+00 + 0.1518663456011820E+00 + 0.1516911001673891E+00 + 0.1515160746075833E+00 + 0.1513412687313025E+00 + 0.1511666823480845E+00 + 0.1509923152674671E+00 + 0.1508181672989882E+00 + 0.1506442382521857E+00 + 0.1504705279365975E+00 + 0.1502970361617615E+00 + 0.1501237627372154E+00 + 0.1499507074724971E+00 + 0.1497778701771445E+00 + 0.1496052506606956E+00 + 0.1494328487326880E+00 + 0.1492606642026598E+00 + 0.1490886968801487E+00 + 0.1489169465746927E+00 + 0.1487454130958295E+00 + 0.1485740962530972E+00 + 0.1484029958560334E+00 + 0.1482321117141762E+00 + 0.1480614436370632E+00 + 0.1478909914342325E+00 + 0.1477207549152219E+00 + 0.1475507338895693E+00 + 0.1473809281668124E+00 + 0.1472113375564893E+00 + 0.1470419618681377E+00 + 0.1468728009112954E+00 + 0.1467038544955004E+00 + 0.1465351224302907E+00 + 0.1463666045252038E+00 + 0.1461983005897779E+00 + 0.1460302104335507E+00 + 0.1458623338660600E+00 + 0.1456946706968438E+00 + 0.1455272207354399E+00 + 0.1453599837913863E+00 + 0.1451929596742206E+00 + 0.1450261481934809E+00 + 0.1448595491587049E+00 + 0.1446931623794307E+00 + 0.1445269876651958E+00 + 0.1443610248255384E+00 + 0.1441952736699962E+00 + 0.1440297340081071E+00 + 0.1438644056494089E+00 + 0.1436992884034396E+00 + 0.1435343820797370E+00 + 0.1433696864878390E+00 + 0.1432052014372833E+00 + 0.1430409267376079E+00 + 0.1428768621983507E+00 + 0.1427130076290495E+00 + 0.1425493628392422E+00 + 0.1423859276384666E+00 + 0.1422227018362606E+00 + 0.1420596852421621E+00 + 0.1418968776657090E+00 + 0.1417342789164390E+00 + 0.1415718888038901E+00 + 0.1414097071376000E+00 + 0.1412477337271069E+00 + 0.1410859683819483E+00 + 0.1409244109116623E+00 + 0.1407630611257867E+00 + 0.1406019188338593E+00 + 0.1404409838454180E+00 + 0.1402802559700007E+00 + 0.1401197350171452E+00 + 0.1399594207963895E+00 + 0.1397993131172713E+00 + 0.1396394117893286E+00 + 0.1394797166220991E+00 + 0.1393202274251208E+00 + 0.1391609440079316E+00 + 0.1390018661800692E+00 + 0.1388429937510716E+00 + 0.1386843265304766E+00 + 0.1385258643278221E+00 + 0.1383676069526459E+00 + 0.1382095542144860E+00 + 0.1380517059228801E+00 + 0.1378940618873662E+00 + 0.1377366219174821E+00 + 0.1375793858227656E+00 + 0.1374223534127547E+00 + 0.1372655244969872E+00 + 0.1371088988850010E+00 + 0.1369524763863339E+00 + 0.1367962568105237E+00 + 0.1366402399671084E+00 + 0.1364844256656259E+00 + 0.1363288137156139E+00 + 0.1361734039266104E+00 + 0.1360181961081532E+00 + 0.1358631900697802E+00 + 0.1357083856210292E+00 + 0.1355537825714380E+00 + 0.1353993807305448E+00 + 0.1352451799078871E+00 + 0.1350911799130029E+00 + 0.1349373805554301E+00 + 0.1347837816447065E+00 + 0.1346303829903700E+00 + 0.1344771844019585E+00 + 0.1343241856890098E+00 + 0.1341713866610618E+00 + 0.1340187871276523E+00 + 0.1338663868983192E+00 + 0.1337141857826005E+00 + 0.1335621835900338E+00 + 0.1334103801301572E+00 + 0.1332587752125084E+00 + 0.1331073686466254E+00 + 0.1329561602420459E+00 + 0.1328051498083080E+00 + 0.1326543371549493E+00 + 0.1325037220915079E+00 + 0.1323533044275215E+00 + 0.1322030839725281E+00 + 0.1320530605360653E+00 + 0.1319032339276713E+00 + 0.1317536039568838E+00 + 0.1316041704332407E+00 + 0.1314549331662797E+00 + 0.1313058919655390E+00 + 0.1311570466405561E+00 + 0.1310083970008692E+00 + 0.1308599428560159E+00 + 0.1307116840155342E+00 + 0.1305636202889619E+00 + 0.1304157514858369E+00 + 0.1302680774156971E+00 + 0.1301205978880802E+00 + 0.1299733127125243E+00 + 0.1298262216985671E+00 + 0.1296793246557466E+00 + 0.1295326213936004E+00 + 0.1293861117216668E+00 + 0.1292397954494832E+00 + 0.1290936723865877E+00 + 0.1289477423425182E+00 + 0.1288020051268125E+00 + 0.1286564605490084E+00 + 0.1285111084186439E+00 + 0.1283659485452567E+00 + 0.1282209807383848E+00 + 0.1280762048075661E+00 + 0.1279316205623383E+00 + 0.1277872278122394E+00 + 0.1276430263668072E+00 + 0.1274990160355795E+00 + 0.1273551966280944E+00 + 0.1272115679538895E+00 + 0.1270681298225028E+00 + 0.1269248820434721E+00 + 0.1267818244263353E+00 + 0.1266389567806304E+00 + 0.1264962789158950E+00 + 0.1263537906416671E+00 + 0.1262114917674846E+00 + 0.1260693821028853E+00 + 0.1259274614574071E+00 + 0.1257857296405878E+00 + 0.1256441864619653E+00 + 0.1255028317310776E+00 + 0.1253616652574624E+00 + 0.1252206868506576E+00 + 0.1250798963202010E+00 + 0.1249392934756306E+00 + 0.1247988781264842E+00 + 0.1246586500822997E+00 + 0.1245186091526148E+00 + 0.1243787551469676E+00 + 0.1242390878748959E+00 + 0.1240996071459374E+00 + 0.1239603127696302E+00 + 0.1238212045555120E+00 + 0.1236822823131207E+00 + 0.1235435458519942E+00 + 0.1234049949816704E+00 + 0.1232666295116870E+00 + 0.1231284492515821E+00 + 0.1229904540108933E+00 + 0.1228526435991587E+00 + 0.1227150178259160E+00 + 0.1225775765007032E+00 + 0.1224403194330580E+00 + 0.1223032464325184E+00 + 0.1221663573086223E+00 + 0.1220296518709074E+00 + 0.1218931299289117E+00 + 0.1217567912921730E+00 + 0.1216206357702291E+00 + 0.1214846631726181E+00 + 0.1213488733088776E+00 + 0.1212132659885456E+00 + 0.1210778410211599E+00 + 0.1209425982162584E+00 + 0.1208075373833790E+00 + 0.1206726583320596E+00 + 0.1205379608718379E+00 + 0.1204034448122519E+00 + 0.1202691099628394E+00 + 0.1201349561331383E+00 + 0.1200009831326864E+00 + 0.1198671907710218E+00 + 0.1197335788576820E+00 + 0.1196001472022051E+00 + 0.1194668956141289E+00 + 0.1193338239029913E+00 + 0.1192009318783301E+00 + 0.1190682193496832E+00 + 0.1189356861265885E+00 + 0.1188033320185838E+00 + 0.1186711568352070E+00 + 0.1185391603859960E+00 + 0.1184073424804886E+00 + 0.1182757029282227E+00 + 0.1181442415387361E+00 + 0.1180129581215667E+00 + 0.1178818524862525E+00 + 0.1177509244423311E+00 + 0.1176201737993406E+00 + 0.1174896003668188E+00 + 0.1173592039543035E+00 + 0.1172289843713326E+00 + 0.1170989414274440E+00 + 0.1169690749321754E+00 + 0.1168393846950649E+00 + 0.1167098705256503E+00 + 0.1165805322334694E+00 + 0.1164513696280601E+00 + 0.1163223825189601E+00 + 0.1161935707157076E+00 + 0.1160649340278402E+00 + 0.1159364722648959E+00 + 0.1158081852350412E+00 + 0.1156800727077109E+00 + 0.1155521344091331E+00 + 0.1154243700876352E+00 + 0.1152967797438994E+00 + 0.1151693635278388E+00 + 0.1150421215243876E+00 + 0.1149150534980028E+00 + 0.1147881591176792E+00 + 0.1146614381504509E+00 + 0.1145348905940602E+00 + 0.1144085164780389E+00 + 0.1142823157852228E+00 + 0.1141562884412152E+00 + 0.1140304343577770E+00 + 0.1139047533248796E+00 + 0.1137792450531783E+00 + 0.1136539092998480E+00 + 0.1135287460777471E+00 + 0.1134037554846401E+00 + 0.1132789375689667E+00 + 0.1131542922504441E+00 + 0.1130298194265027E+00 + 0.1129055189279256E+00 + 0.1127813904957070E+00 + 0.1126574338762215E+00 + 0.1125336489735723E+00 + 0.1124100358048814E+00 + 0.1122865943768332E+00 + 0.1121633246191859E+00 + 0.1120402264332794E+00 + 0.1119172996983063E+00 + 0.1117945442295265E+00 + 0.1116719598323020E+00 + 0.1115495463970067E+00 + 0.1114273039399882E+00 + 0.1113052324801307E+00 + 0.1111833319177621E+00 + 0.1110616020598124E+00 + 0.1109400427197493E+00 + 0.1108186537715272E+00 + 0.1106974351138618E+00 + 0.1105763866723557E+00 + 0.1104555084588072E+00 + 0.1103348005005955E+00 + 0.1102142627071129E+00 + 0.1100938947952747E+00 + 0.1099736964737426E+00 + 0.1098536676215590E+00 + 0.1097338082652612E+00 + 0.1096141184243163E+00 + 0.1094945980288708E+00 + 0.1093752469686141E+00 + 0.1092560651236919E+00 + 0.1091370523408226E+00 + 0.1090182084594577E+00 + 0.1088995333381389E+00 + 0.1087810268697286E+00 + 0.1086626889531737E+00 + 0.1085445195400366E+00 + 0.1084265186319153E+00 + 0.1083086862177388E+00 + 0.1081910221631889E+00 + 0.1080735262722596E+00 + 0.1079561983688415E+00 + 0.1078390383579368E+00 + 0.1077220461647446E+00 + 0.1076052217141765E+00 + 0.1074885649305735E+00 + 0.1073720757359900E+00 + 0.1072557539971979E+00 + 0.1071395995232261E+00 + 0.1070236121322388E+00 + 0.1069077917548508E+00 + 0.1067921383837871E+00 + 0.1066766520035956E+00 + 0.1065613325596249E+00 + 0.1064461799860041E+00 + 0.1063311941488662E+00 + 0.1062163747653027E+00 + 0.1061017215391516E+00 + 0.1059872343685887E+00 + 0.1058729133747695E+00 + 0.1057587586713067E+00 + 0.1056447701587270E+00 + 0.1055309476078406E+00 + 0.1054172908096444E+00 + 0.1053037996641021E+00 + 0.1051904741048072E+00 + 0.1050773140631439E+00 + 0.1049643194651141E+00 + 0.1048514902343991E+00 + 0.1047388262393760E+00 + 0.1046263272786956E+00 + 0.1045139931579731E+00 + 0.1044018238226781E+00 + 0.1042898193120113E+00 + 0.1041779796330868E+00 + 0.1040663046063921E+00 + 0.1039547939885106E+00 + 0.1038434476133090E+00 + 0.1037322655226022E+00 + 0.1036212477890569E+00 + 0.1035103943163781E+00 + 0.1033997047740745E+00 + 0.1032891788347053E+00 + 0.1031788164553294E+00 + 0.1030686178027440E+00 + 0.1029585829949791E+00 + 0.1028487118192399E+00 + 0.1027390039368166E+00 + 0.1026294590925855E+00 + 0.1025200772816691E+00 + 0.1024108585446711E+00 + 0.1023018028642554E+00 + 0.1021929101347316E+00 + 0.1020841802414314E+00 + 0.1019756130446915E+00 + 0.1018672083845924E+00 + 0.1017589661060417E+00 + 0.1016508860912839E+00 + 0.1015429682383212E+00 + 0.1014352124649540E+00 + 0.1013276187545061E+00 + 0.1012201871030947E+00 + 0.1011129174478695E+00 + 0.1010058096269574E+00 + 0.1008988634690835E+00 + 0.1007920788043738E+00 + 0.1006854554642014E+00 + 0.1005789932926792E+00 + 0.1004726922322534E+00 + 0.1003665522712680E+00 + 0.1002605733874879E+00 + 0.1001547555186375E+00 + 0.1000490985928232E+00 + 0.9994360250004279E-01 + 0.9983826705974208E-01 + 0.9973309208650425E-01 + 0.9962807745637008E-01 + 0.9952322310548921E-01 + 0.9941852896915854E-01 + 0.9931399495335912E-01 + 0.9920962094895714E-01 + 0.9910540684793745E-01 + 0.9900135254740473E-01 + 0.9889745794581613E-01 + 0.9879372294683970E-01 + 0.9869014746479184E-01 + 0.9858673141444758E-01 + 0.9848347468846319E-01 + 0.9838037715573343E-01 + 0.9827743868762077E-01 + 0.9817465919133088E-01 + 0.9807203859445391E-01 + 0.9796957681761564E-01 + 0.9786727374842902E-01 + 0.9776512926508156E-01 + 0.9766314325255920E-01 + 0.9756131561120803E-01 + 0.9745964624361536E-01 + 0.9735813505658742E-01 + 0.9725678196190891E-01 + 0.9715558686987833E-01 + 0.9705454967097728E-01 + 0.9695367024327048E-01 + 0.9685294846998808E-01 + 0.9675238426174126E-01 + 0.9665197753783513E-01 + 0.9655172820575913E-01 + 0.9645163614343998E-01 + 0.9635170122486482E-01 + 0.9625192334754074E-01 + 0.9615230243947949E-01 + 0.9605283842780263E-01 + 0.9595353120235107E-01 + 0.9585438062725501E-01 + 0.9575538657371981E-01 + 0.9565654895621790E-01 + 0.9555786770452269E-01 + 0.9545934273537762E-01 + 0.9536097392933389E-01 + 0.9526276116105402E-01 + 0.9516470432142041E-01 + 0.9506680332444789E-01 + 0.9496905808501088E-01 + 0.9487146850462853E-01 + 0.9477403447469019E-01 + 0.9467675588633352E-01 + 0.9457963263069605E-01 + 0.9448266459891812E-01 + 0.9438585168741504E-01 + 0.9428919380885427E-01 + 0.9419269087877748E-01 + 0.9409634279750016E-01 + 0.9400014944144033E-01 + 0.9390411068663495E-01 + 0.9380822643804510E-01 + 0.9371249662474284E-01 + 0.9361692117065957E-01 + 0.9352149995774861E-01 + 0.9342623284970635E-01 + 0.9333111972302664E-01 + 0.9323616049831507E-01 + 0.9314135510538211E-01 + 0.9304670345458133E-01 + 0.9295220542262877E-01 + 0.9285786088406358E-01 + 0.9276366973641620E-01 + 0.9266963189827264E-01 + 0.9257574728577410E-01 + 0.9248201578921698E-01 + 0.9238843728646778E-01 + 0.9229501166135780E-01 + 0.9220173882078054E-01 + 0.9210861867709792E-01 + 0.9201565113911215E-01 + 0.9192283610883855E-01 + 0.9183017348714733E-01 + 0.9173766316601638E-01 + 0.9164530502847828E-01 + 0.9155309895908454E-01 + 0.9146104485966834E-01 + 0.9136914264123968E-01 + 0.9127739221340416E-01 + 0.9118579347943884E-01 + 0.9109434634090551E-01 + 0.9100305069373238E-01 + 0.9091190642198651E-01 + 0.9082091340870150E-01 + 0.9073007154986680E-01 + 0.9063938075578687E-01 + 0.9054884093697545E-01 + 0.9045845199851943E-01 + 0.9036821384232823E-01 + 0.9027812636742032E-01 + 0.9018818945931248E-01 + 0.9009840299956334E-01 + 0.9000876687885469E-01 + 0.8991928100911334E-01 + 0.8982994530492860E-01 + 0.8974075966896265E-01 + 0.8965172398939915E-01 + 0.8956283815453672E-01 + 0.8947410206414059E-01 + 0.8938551562537057E-01 + 0.8929707874255664E-01 + 0.8920879130443225E-01 + 0.8912065319462595E-01 + 0.8903266430833451E-01 + 0.8894482457060150E-01 + 0.8885713391047366E-01 + 0.8876959222624981E-01 + 0.8868219937520243E-01 + 0.8859495521525986E-01 + 0.8850785965095106E-01 + 0.8842091261987390E-01 + 0.8833411405368342E-01 + 0.8824746384484438E-01 + 0.8816096187151006E-01 + 0.8807460801500582E-01 + 0.8798840216579695E-01 + 0.8790234421621612E-01 + 0.8781643407123049E-01 + 0.8773067165434821E-01 + 0.8764505688845697E-01 + 0.8755958966438126E-01 + 0.8747426984792867E-01 + 0.8738909731043684E-01 + 0.8730407196408875E-01 + 0.8721919373760560E-01 + 0.8713446254898488E-01 + 0.8704987828197117E-01 + 0.8696544081367248E-01 + 0.8688115003177613E-01 + 0.8679700584105886E-01 + 0.8671300814760233E-01 + 0.8662915685307958E-01 + 0.8654545185538357E-01 + 0.8646189305269946E-01 + 0.8637848034627796E-01 + 0.8629521363874380E-01 + 0.8621209283068298E-01 + 0.8612911781544382E-01 + 0.8604628848481227E-01 + 0.8596360473397031E-01 + 0.8588106646414559E-01 + 0.8579867357716610E-01 + 0.8571642597438705E-01 + 0.8563432355671820E-01 + 0.8555236622458624E-01 + 0.8547055387454652E-01 + 0.8538888640123648E-01 + 0.8530736369885076E-01 + 0.8522598565989386E-01 + 0.8514475217649455E-01 + 0.8506366314590931E-01 + 0.8498271847546445E-01 + 0.8490191807354389E-01 + 0.8482126184572048E-01 + 0.8474074969465827E-01 + 0.8466038152153022E-01 + 0.8458015721478919E-01 + 0.8450007665593198E-01 + 0.8442013973142577E-01 + 0.8434034634987029E-01 + 0.8426069642589663E-01 + 0.8418118986657069E-01 + 0.8410182656254339E-01 + 0.8402260640253383E-01 + 0.8394352928166793E-01 + 0.8386459510235296E-01 + 0.8378580376725431E-01 + 0.8370715517759260E-01 + 0.8362864923371742E-01 + 0.8355028583536461E-01 + 0.8347206487932574E-01 + 0.8339398626148611E-01 + 0.8331604987551485E-01 + 0.8323825560976188E-01 + 0.8316060335224496E-01 + 0.8308309300700582E-01 + 0.8300572449809582E-01 + 0.8292849774814592E-01 + 0.8285141264740664E-01 + 0.8277446906463737E-01 + 0.8269766687388518E-01 + 0.8262100598016261E-01 + 0.8254448629898633E-01 + 0.8246810774163169E-01 + 0.8239187020806716E-01 + 0.8231577359634684E-01 + 0.8223981780210682E-01 + 0.8216400271766382E-01 + 0.8208832823560980E-01 + 0.8201279425567583E-01 + 0.8193740068280521E-01 + 0.8186214742021459E-01 + 0.8178703435987089E-01 + 0.8171206138950684E-01 + 0.8163722840303272E-01 + 0.8156253531262525E-01 + 0.8148798203356938E-01 + 0.8141356846729263E-01 + 0.8133929449429582E-01 + 0.8126515999445715E-01 + 0.8119116486542755E-01 + 0.8111730901912340E-01 + 0.8104359236676380E-01 + 0.8097001481206705E-01 + 0.8089657625561850E-01 + 0.8082327659493584E-01 + 0.8075011571749895E-01 + 0.8067709350880449E-01 + 0.8060420985971833E-01 + 0.8053146467003449E-01 + 0.8045885784070428E-01 + 0.8038638927849446E-01 + 0.8031405889530037E-01 + 0.8024186660054117E-01 + 0.8016981228333703E-01 + 0.8009789582342995E-01 + 0.8002611710641006E-01 + 0.7995447603942419E-01 + 0.7988297253450395E-01 + 0.7981160649992150E-01 + 0.7974037783705800E-01 + 0.7966928644621595E-01 + 0.7959833222027770E-01 + 0.7952751504493739E-01 + 0.7945683480668111E-01 + 0.7938629140135735E-01 + 0.7931588472959338E-01 + 0.7924561469390814E-01 + 0.7917548120436573E-01 + 0.7910548417288020E-01 + 0.7903562350160181E-01 + 0.7896589907292863E-01 + 0.7889631076743048E-01 + 0.7882685847999609E-01 + 0.7875754212075083E-01 + 0.7868836160020713E-01 + 0.7861931682545553E-01 + 0.7855040770165978E-01 + 0.7848163412860540E-01 + 0.7841299598178625E-01 + 0.7834449312990134E-01 + 0.7827612546031119E-01 + 0.7820789290210453E-01 + 0.7813979538922533E-01 + 0.7807183283065405E-01 + 0.7800400510619059E-01 + 0.7793631209489877E-01 + 0.7786875368597366E-01 + 0.7780132977489664E-01 + 0.7773404025926334E-01 + 0.7766688504688112E-01 + 0.7759986404876049E-01 + 0.7753297717017924E-01 + 0.7746622430222246E-01 + 0.7739960533399136E-01 + 0.7733312016118818E-01 + 0.7726676868799435E-01 + 0.7720055081858535E-01 + 0.7713446645005446E-01 + 0.7706851547465794E-01 + 0.7700269778524570E-01 + 0.7693701327854399E-01 + 0.7687146185264300E-01 + 0.7680604340977748E-01 + 0.7674075786355301E-01 + 0.7667560512911607E-01 + 0.7661058510304510E-01 + 0.7654569765569326E-01 + 0.7648094265757871E-01 + 0.7641632001018587E-01 + 0.7635182963826006E-01 + 0.7628747146324501E-01 + 0.7622324538220342E-01 + 0.7615915128272373E-01 + 0.7609518905417401E-01 + 0.7603135859141091E-01 + 0.7596765979035998E-01 + 0.7590409254857934E-01 + 0.7584065676616437E-01 + 0.7577735234351016E-01 + 0.7571417918235933E-01 + 0.7565113718556677E-01 + 0.7558822625469661E-01 + 0.7552544628196544E-01 + 0.7546279715556675E-01 + 0.7540027876910196E-01 + 0.7533789103455804E-01 + 0.7527563386764484E-01 + 0.7521350717060270E-01 + 0.7515151082261477E-01 + 0.7508964470169937E-01 + 0.7502790870717622E-01 + 0.7496630275768744E-01 + 0.7490482676903678E-01 + 0.7484348062898194E-01 + 0.7478226421192851E-01 + 0.7472117740137083E-01 + 0.7466022011541327E-01 + 0.7459939228018129E-01 + 0.7453869380619239E-01 + 0.7447812457450240E-01 + 0.7441768446348016E-01 + 0.7435737336479333E-01 + 0.7429719118336010E-01 + 0.7423713782431662E-01 + 0.7417721318963620E-01 + 0.7411741717962917E-01 + 0.7405774969349360E-01 + 0.7399821062581329E-01 + 0.7393879986996771E-01 + 0.7387951732062627E-01 + 0.7382036287514673E-01 + 0.7376133643152877E-01 + 0.7370243789609644E-01 + 0.7364366718428385E-01 + 0.7358502420913476E-01 + 0.7352650885488528E-01 + 0.7346812098906963E-01 + 0.7340986048777593E-01 + 0.7335172726812079E-01 + 0.7329372125916174E-01 + 0.7323584237460878E-01 + 0.7317809049279713E-01 + 0.7312046548771533E-01 + 0.7306296725372457E-01 + 0.7300559570968137E-01 + 0.7294835077356932E-01 + 0.7289123233670320E-01 + 0.7283424027336622E-01 + 0.7277737446419908E-01 + 0.7272063482448942E-01 + 0.7266402128076956E-01 + 0.7260753374702498E-01 + 0.7255117210519888E-01 + 0.7249493623251883E-01 + 0.7243882601926845E-01 + 0.7238284137298456E-01 + 0.7232698220151579E-01 + 0.7227124840130518E-01 + 0.7221563986077983E-01 + 0.7216015647059983E-01 + 0.7210479813541467E-01 + 0.7204956476492779E-01 + 0.7199445626695368E-01 + 0.7193947254393893E-01 + 0.7188461349725555E-01 + 0.7182987902163454E-01 + 0.7177526900215526E-01 + 0.7172078332384539E-01 + 0.7166642188238348E-01 + 0.7161218458167897E-01 + 0.7155807132537264E-01 + 0.7150408201396040E-01 + 0.7145021654667799E-01 + 0.7139647482270726E-01 + 0.7134285674107126E-01 + 0.7128936220079441E-01 + 0.7123599110302269E-01 + 0.7118274335229548E-01 + 0.7112961885276945E-01 + 0.7107661749661933E-01 + 0.7102373916584437E-01 + 0.7097098374468746E-01 + 0.7091835113614654E-01 + 0.7086584125154143E-01 + 0.7081345400035893E-01 + 0.7076118928553833E-01 + 0.7070904700851398E-01 + 0.7065702706433736E-01 + 0.7060512933681067E-01 + 0.7055335370927464E-01 + 0.7050170007900427E-01 + 0.7045016835627418E-01 + 0.7039875845126050E-01 + 0.7034747026924854E-01 + 0.7029630371312468E-01 + 0.7024525868147034E-01 + 0.7019433505615101E-01 + 0.7014353271509234E-01 + 0.7009285155229956E-01 + 0.7004229149303952E-01 + 0.6999185246489731E-01 + 0.6994153436472933E-01 + 0.6989133705790302E-01 + 0.6984126041264984E-01 + 0.6979130433695692E-01 + 0.6974146876033622E-01 + 0.6969175360401945E-01 + 0.6964215875236325E-01 + 0.6959268407978524E-01 + 0.6954332947277770E-01 + 0.6949409484376465E-01 + 0.6944498010814154E-01 + 0.6939598517020508E-01 + 0.6934710992175880E-01 + 0.6929835425394049E-01 + 0.6924971805789162E-01 + 0.6920120122475587E-01 + 0.6915280364904897E-01 + 0.6910452524160373E-01 + 0.6905636591814322E-01 + 0.6900832558329105E-01 + 0.6896040411529767E-01 + 0.6891260138925548E-01 + 0.6886491730376054E-01 + 0.6881735178647784E-01 + 0.6876990476378461E-01 + 0.6872257612521564E-01 + 0.6867536573609046E-01 + 0.6862827346865954E-01 + 0.6858129923486883E-01 + 0.6853444295997967E-01 + 0.6848770456085752E-01 + 0.6844108393223881E-01 + 0.6839458096517264E-01 + 0.6834819554687659E-01 + 0.6830192755935900E-01 + 0.6825577688601870E-01 + 0.6820974343430314E-01 + 0.6816382712904940E-01 + 0.6811802789003113E-01 + 0.6807234560416909E-01 + 0.6802678014614348E-01 + 0.6798133140058983E-01 + 0.6793599928129166E-01 + 0.6789078370703972E-01 + 0.6784568458090945E-01 + 0.6780070178247357E-01 + 0.6775583519058443E-01 + 0.6771108470301800E-01 + 0.6766645023259392E-01 + 0.6762193169110420E-01 + 0.6757752898060875E-01 + 0.6753324199914537E-01 + 0.6748907064406301E-01 + 0.6744501481051484E-01 + 0.6740107439320857E-01 + 0.6735724928681950E-01 + 0.6731353938596969E-01 + 0.6726994458537929E-01 + 0.6722646478164896E-01 + 0.6718309987302193E-01 + 0.6713984975895409E-01 + 0.6709671434765465E-01 + 0.6705369355133604E-01 + 0.6701078727655069E-01 + 0.6696799540931875E-01 + 0.6692531783110489E-01 + 0.6688275443124945E-01 + 0.6684030511338463E-01 + 0.6679796978249169E-01 + 0.6675574834010407E-01 + 0.6671364068444698E-01 + 0.6667164671393327E-01 + 0.6662976632970673E-01 + 0.6658799943429115E-01 + 0.6654634592844583E-01 + 0.6650480570578372E-01 + 0.6646337865814199E-01 + 0.6642206468039481E-01 + 0.6638086367349862E-01 + 0.6633977553913166E-01 + 0.6629880017888906E-01 + 0.6625793749427835E-01 + 0.6621718738623134E-01 + 0.6617654975019089E-01 + 0.6613602447853960E-01 + 0.6609561146484672E-01 + 0.6605531060815294E-01 + 0.6601512180903889E-01 + 0.6597504496945805E-01 + 0.6593507999440198E-01 + 0.6589522678886834E-01 + 0.6585548524565054E-01 + 0.6581585524341225E-01 + 0.6577633666260560E-01 + 0.6573692941174533E-01 + 0.6569763341658806E-01 + 0.6565844859642994E-01 + 0.6561937483701518E-01 + 0.6558041201365627E-01 + 0.6554156001226486E-01 + 0.6550281874472499E-01 + 0.6546418812653455E-01 + 0.6542566806244148E-01 + 0.6538725844351684E-01 + 0.6534895916016293E-01 + 0.6531077010547159E-01 + 0.6527269117435398E-01 + 0.6523472226252631E-01 + 0.6519686327000482E-01 + 0.6515911409829498E-01 + 0.6512147464831903E-01 + 0.6508394481941132E-01 + 0.6504652451066667E-01 + 0.6500921362244717E-01 + 0.6497201205688765E-01 + 0.6493491971585747E-01 + 0.6489793649557209E-01 + 0.6486106228804090E-01 + 0.6482429698617599E-01 + 0.6478764048913965E-01 + 0.6475109269849789E-01 + 0.6471465351588290E-01 + 0.6467832284311108E-01 + 0.6464210058196535E-01 + 0.6460598663021619E-01 + 0.6456998087945874E-01 + 0.6453408322121922E-01 + 0.6449829355452840E-01 + 0.6446261178455376E-01 + 0.6442703781502256E-01 + 0.6439157153835474E-01 + 0.6435621284215371E-01 + 0.6432096161958416E-01 + 0.6428581778251843E-01 + 0.6425078124657480E-01 + 0.6421585191417002E-01 + 0.6418102966534455E-01 + 0.6414631437896795E-01 + 0.6411170595294963E-01 + 0.6407720430230539E-01 + 0.6404280934047680E-01 + 0.6400852096381103E-01 + 0.6397433906059929E-01 + 0.6394026352169652E-01 + 0.6390629424770379E-01 + 0.6387243114148802E-01 + 0.6383867410508135E-01 + 0.6380502303895568E-01 + 0.6377147784331891E-01 + 0.6373803841628787E-01 + 0.6370470465391570E-01 + 0.6367147645156903E-01 + 0.6363835369933240E-01 + 0.6360533628454111E-01 + 0.6357242410075024E-01 + 0.6353961706747564E-01 + 0.6350691511085842E-01 + 0.6347431813855867E-01 + 0.6344182602010731E-01 + 0.6340943862142565E-01 + 0.6337715583783712E-01 + 0.6334497759653659E-01 + 0.6331290382323563E-01 + 0.6328093441296005E-01 + 0.6324906924312023E-01 + 0.6321730819494799E-01 + 0.6318565116835043E-01 + 0.6315409806863448E-01 + 0.6312264880007591E-01 + 0.6309130326459717E-01 + 0.6306006136361471E-01 + 0.6302892299276404E-01 + 0.6299788804079630E-01 + 0.6296695639749706E-01 + 0.6293612796890715E-01 + 0.6290540267134754E-01 + 0.6287478041591719E-01 + 0.6284426108590479E-01 + 0.6281384455568125E-01 + 0.6278353071357938E-01 + 0.6275331948320967E-01 + 0.6272321079301330E-01 + 0.6269320454558090E-01 + 0.6266330060967023E-01 + 0.6263349885404313E-01 + 0.6260379917704745E-01 + 0.6257420149762258E-01 + 0.6254470573120202E-01 + 0.6251531177059933E-01 + 0.6248601950054734E-01 + 0.6245682881242304E-01 + 0.6242773961624664E-01 + 0.6239875182510247E-01 + 0.6236986534336193E-01 + 0.6234108006285625E-01 + 0.6231239587458616E-01 + 0.6228381267167161E-01 + 0.6225533034885464E-01 + 0.6222694880158802E-01 + 0.6219866792964005E-01 + 0.6217048763449061E-01 + 0.6214240781716569E-01 + 0.6211442837726564E-01 + 0.6208654921412533E-01 + 0.6205877022778809E-01 + 0.6203109131941941E-01 + 0.6200351239011466E-01 + 0.6197603333805889E-01 + 0.6194865405898931E-01 + 0.6192137444785719E-01 + 0.6189419439448916E-01 + 0.6186711378646187E-01 + 0.6184013251863103E-01 + 0.6181325051108787E-01 + 0.6178646768914685E-01 + 0.6175978395829931E-01 + 0.6173319918944453E-01 + 0.6170671325128775E-01 + 0.6168032603826372E-01 + 0.6165403746858340E-01 + 0.6162784745872569E-01 + 0.6160175590387615E-01 + 0.6157576268888105E-01 + 0.6154986770344219E-01 + 0.6152407085624518E-01 + 0.6149837206048925E-01 + 0.6147277122224647E-01 + 0.6144726823387158E-01 + 0.6142186298624566E-01 + 0.6139655537226432E-01 + 0.6137134528686781E-01 + 0.6134623262545356E-01 + 0.6132121728676411E-01 + 0.6129629917133519E-01 + 0.6127147818006835E-01 + 0.6124675421536312E-01 + 0.6122212717999621E-01 + 0.6119759697247940E-01 + 0.6117316348225787E-01 + 0.6114882659805405E-01 + 0.6112458622092585E-01 + 0.6110044226568401E-01 + 0.6107639464573291E-01 + 0.6105244325245504E-01 + 0.6102858796421775E-01 + 0.6100482866426107E-01 + 0.6098116525995417E-01 + 0.6095759766585367E-01 + 0.6093412579042824E-01 + 0.6091074952782837E-01 + 0.6088746877010345E-01 + 0.6086428340776708E-01 + 0.6084119332945158E-01 + 0.6081819842546441E-01 + 0.6079529860717443E-01 + 0.6077249379965873E-01 + 0.6074978392109177E-01 + 0.6072716885155888E-01 + 0.6070464845851641E-01 + 0.6068222262230823E-01 + 0.6065989125687318E-01 + 0.6063765428120985E-01 + 0.6061551159991262E-01 + 0.6059346309818090E-01 + 0.6057150866120415E-01 + 0.6054964819242931E-01 + 0.6052788160837832E-01 + 0.6050620882157334E-01 + 0.6048462971900523E-01 + 0.6046314417825403E-01 + 0.6044175208557116E-01 + 0.6042045335231824E-01 + 0.6039924789416482E-01 + 0.6037813561597445E-01 + 0.6035711640660704E-01 + 0.6033619015424212E-01 + 0.6031535675654443E-01 + 0.6029461611864701E-01 + 0.6027396814451986E-01 + 0.6025341272903331E-01 + 0.6023294976333661E-01 + 0.6021257914072001E-01 + 0.6019230076138779E-01 + 0.6017211452693503E-01 + 0.6015202033929890E-01 + 0.6013201810097460E-01 + 0.6011210771410073E-01 + 0.6009228907349159E-01 + 0.6007256206762443E-01 + 0.6005292658709055E-01 + 0.6003338253984632E-01 + 0.6001392984170822E-01 + 0.5999456840128694E-01 + 0.5997529810129167E-01 + 0.5995611881879810E-01 + 0.5993703044505050E-01 + 0.5991803289675057E-01 + 0.5989912609220270E-01 + 0.5988030992755570E-01 + 0.5986158427790124E-01 + 0.5984294902132799E-01 + 0.5982440406812513E-01 + 0.5980594934468940E-01 + 0.5978758476922359E-01 + 0.5976931022682599E-01 + 0.5975112559443238E-01 + 0.5973303075893339E-01 + 0.5971502562695553E-01 + 0.5969711010704359E-01 + 0.5967928409762966E-01 + 0.5966154748658910E-01 + 0.5964390016292615E-01 + 0.5962634203105105E-01 + 0.5960887300387821E-01 + 0.5959149299084304E-01 + 0.5957420188555206E-01 + 0.5955699957724233E-01 + 0.5953988595870147E-01 + 0.5952286093049528E-01 + 0.5950592439426261E-01 + 0.5948907625290999E-01 + 0.5947231641079776E-01 + 0.5945564477107377E-01 + 0.5943906122299543E-01 + 0.5942256564736926E-01 + 0.5940615792957193E-01 + 0.5938983797816620E-01 + 0.5937360570884231E-01 + 0.5935746102919715E-01 + 0.5934140382720278E-01 + 0.5932543398826955E-01 + 0.5930955141067800E-01 + 0.5929375600892585E-01 + 0.5927804769696584E-01 + 0.5926242636941502E-01 + 0.5924689190793895E-01 + 0.5923144419637158E-01 + 0.5921608313182127E-01 + 0.5920080861595237E-01 + 0.5918562055292296E-01 + 0.5917051885358116E-01 + 0.5915550342959715E-01 + 0.5914057417954869E-01 + 0.5912573098387687E-01 + 0.5911097372307344E-01 + 0.5909630229702669E-01 + 0.5908171661991646E-01 + 0.5906721660383091E-01 + 0.5905280214592169E-01 + 0.5903847313765612E-01 + 0.5902422947042021E-01 + 0.5901007103539032E-01 + 0.5899599772386282E-01 + 0.5898200943624817E-01 + 0.5896810608684740E-01 + 0.5895428758982845E-01 + 0.5894055383832141E-01 + 0.5892690470841720E-01 + 0.5891334008028717E-01 + 0.5889985986562525E-01 + 0.5888646398941582E-01 + 0.5887315236798020E-01 + 0.5885992488875066E-01 + 0.5884678143322709E-01 + 0.5883372188663332E-01 + 0.5882074614044285E-01 + 0.5880785408752594E-01 + 0.5879504563578170E-01 + 0.5878232070648338E-01 + 0.5876967921784736E-01 + 0.5875712106081856E-01 + 0.5874464611362049E-01 + 0.5873225425988934E-01 + 0.5871994540351093E-01 + 0.5870771945297664E-01 + 0.5869557630994886E-01 + 0.5868351586345489E-01 + 0.5867153800169450E-01 + 0.5865964262479777E-01 + 0.5864782964455680E-01 + 0.5863609897181457E-01 + 0.5862445050490821E-01 + 0.5861288413573083E-01 + 0.5860139975612179E-01 + 0.5858999725791896E-01 + 0.5857867653300223E-01 + 0.5856743747945073E-01 + 0.5855628000800435E-01 + 0.5854520403051429E-01 + 0.5853420944744424E-01 + 0.5852329614703146E-01 + 0.5851246401818464E-01 + 0.5850171296234656E-01 + 0.5849104288808444E-01 + 0.5848045369957432E-01 + 0.5846994528049566E-01 + 0.5845951750871734E-01 + 0.5844917027476147E-01 + 0.5843890349771861E-01 + 0.5842871710010197E-01 + 0.5841861098877228E-01 + 0.5840858505212793E-01 + 0.5839863917811682E-01 + 0.5838877326151708E-01 + 0.5837898720138433E-01 + 0.5836928089535737E-01 + 0.5835965423350233E-01 + 0.5835010710349695E-01 + 0.5834063940178829E-01 + 0.5833125104674654E-01 + 0.5832194195969094E-01 + 0.5831271204567765E-01 + 0.5830356118868187E-01 + 0.5829448927164075E-01 + 0.5828549618215715E-01 + 0.5827658181104977E-01 + 0.5826774605315657E-01 + 0.5825898882586445E-01 + 0.5825031005451948E-01 + 0.5824170965022400E-01 + 0.5823318748457051E-01 + 0.5822474342288730E-01 + 0.5821637735592146E-01 + 0.5820808921065109E-01 + 0.5819987891473813E-01 + 0.5819174636529158E-01 + 0.5818369143626050E-01 + 0.5817571400570397E-01 + 0.5816781398153546E-01 + 0.5815999128338132E-01 + 0.5815224582167643E-01 + 0.5814457747847055E-01 + 0.5813698613060647E-01 + 0.5812947166970587E-01 + 0.5812203401057174E-01 + 0.5811467306904223E-01 + 0.5810738874419675E-01 + 0.5810018092115276E-01 + 0.5809304948737325E-01 + 0.5808599435010411E-01 + 0.5807901542518975E-01 + 0.5807211262163035E-01 + 0.5806528582486610E-01 + 0.5805853491540260E-01 + 0.5805185978233923E-01 + 0.5804526032962377E-01 + 0.5803873646248892E-01 + 0.5803228808243338E-01 + 0.5802591508753830E-01 + 0.5801961737613466E-01 + 0.5801339484956668E-01 + 0.5800724741062686E-01 + 0.5800117496003389E-01 + 0.5799517739056309E-01 + 0.5798925459313706E-01 + 0.5798340646323746E-01 + 0.5797763290503331E-01 + 0.5797193382332799E-01 + 0.5796630911501168E-01 + 0.5796075866901887E-01 + 0.5795528237550888E-01 + 0.5794988013885728E-01 + 0.5794455187098430E-01 + 0.5793929748075515E-01 + 0.5793411686376300E-01 + 0.5792900991207608E-01 + 0.5792397651750687E-01 + 0.5791901657132968E-01 + 0.5791412996513483E-01 + 0.5790931660114961E-01 + 0.5790457639334745E-01 + 0.5789990925425332E-01 + 0.5789531507539593E-01 + 0.5789079373601701E-01 + 0.5788634511981496E-01 + 0.5788196913231568E-01 + 0.5787766568548573E-01 + 0.5787343468846165E-01 + 0.5786927604379157E-01 + 0.5786518965283074E-01 + 0.5786117540829961E-01 + 0.5785723319244241E-01 + 0.5785336288851632E-01 + 0.5784956439885703E-01 + 0.5784583763809712E-01 + 0.5784218251768131E-01 + 0.5783859893115019E-01 + 0.5783508676616918E-01 + 0.5783164591500672E-01 + 0.5782827628180622E-01 + 0.5782497777242304E-01 + 0.5782175028546378E-01 + 0.5781859370986880E-01 + 0.5781550793491610E-01 + 0.5781249286327576E-01 + 0.5780954840711583E-01 + 0.5780667447642921E-01 + 0.5780387096720227E-01 + 0.5780113777030951E-01 + 0.5779847477771102E-01 + 0.5779588188449315E-01 + 0.5779335898631539E-01 + 0.5779090597975946E-01 + 0.5778852276275986E-01 + 0.5778620923385720E-01 + 0.5778396529919746E-01 + 0.5778179087085715E-01 + 0.5777968585808932E-01 + 0.5777765015050398E-01 + 0.5777568362976245E-01 + 0.5777378618217992E-01 + 0.5777195770893396E-01 + 0.5777019811413623E-01 + 0.5776850730110211E-01 + 0.5776688517186148E-01 + 0.5776533162792990E-01 + 0.5776384656379410E-01 + 0.5776242986791748E-01 + 0.5776108143097778E-01 + 0.5775980116145090E-01 + 0.5775858897578658E-01 + 0.5775744478255652E-01 + 0.5775636846233963E-01 + 0.5775535988973371E-01 + 0.5775441895764811E-01 + 0.5775354559156778E-01 + 0.5775273971886893E-01 + 0.5775200123661684E-01 + 0.5775133001334275E-01 + 0.5775072592006660E-01 + 0.5775018885769299E-01 + 0.5774971874192546E-01 + 0.5774931548555124E-01 + 0.5774897898945522E-01 + 0.5774870915157873E-01 + 0.5774850586813115E-01 + 0.5774836903192256E-01 + 0.5774829853558805E-01 + 0.5774829427715579E-01 + 0.5774835616023024E-01 + 0.5774848408792156E-01 + 0.5774867795629941E-01 + 0.5774893765758550E-01 + 0.5774926308497915E-01 + 0.5774965413613996E-01 + 0.5775011070997128E-01 + 0.5775063270926617E-01 + 0.5775122004525173E-01 + 0.5775187262977047E-01 + 0.5775259036035775E-01 + 0.5775337311829860E-01 + 0.5775422078557675E-01 + 0.5775513326091877E-01 + 0.5775611045313772E-01 + 0.5775715226778252E-01 + 0.5775825859376356E-01 + 0.5775942931495194E-01 + 0.5776066432676662E-01 + 0.5776196355233472E-01 + 0.5776332691810550E-01 + 0.5776475432392799E-01 + 0.5776624563645376E-01 + 0.5776780072327695E-01 + 0.5776941948857644E-01 + 0.5777110186079875E-01 + 0.5777284776259037E-01 + 0.5777465708258899E-01 + 0.5777652969790745E-01 + 0.5777846549262131E-01 + 0.5778046436934385E-01 + 0.5778252623368658E-01 + 0.5778465098911699E-01 + 0.5778683853616093E-01 + 0.5778908877484548E-01 + 0.5779140160125015E-01 + 0.5779377690857373E-01 + 0.5779621459053478E-01 + 0.5779871454441725E-01 + 0.5780127666885019E-01 + 0.5780390086552822E-01 + 0.5780658704518642E-01 + 0.5780933512000386E-01 + 0.5781214499009886E-01 + 0.5781501653738655E-01 + 0.5781794964321937E-01 + 0.5782094420404044E-01 + 0.5782400012839837E-01 + 0.5782711732285819E-01 + 0.5783029567813646E-01 + 0.5783353507833782E-01 + 0.5783683541606108E-01 + 0.5784019661184725E-01 + 0.5784361859167767E-01 + 0.5784710126098148E-01 + 0.5785064449103304E-01 + 0.5785424815119673E-01 + 0.5785791213516634E-01 + 0.5786163635808013E-01 + 0.5786542073426960E-01 + 0.5786926516627959E-01 + 0.5787316955121260E-01 + 0.5787713378592408E-01 + 0.5788115776647445E-01 + 0.5788524138872596E-01 + 0.5788938454689734E-01 + 0.5789358713219657E-01 + 0.5789784903598423E-01 + 0.5790217015992582E-01 + 0.5790655041566407E-01 + 0.5791098971364490E-01 + 0.5791548795049475E-01 + 0.5792004501579054E-01 + 0.5792466080099000E-01 + 0.5792933520543063E-01 + 0.5793406813046158E-01 + 0.5793885947859906E-01 + 0.5794370915471886E-01 + 0.5794861706349296E-01 + 0.5795358309701174E-01 + 0.5795860713398557E-01 + 0.5796368905539579E-01 + 0.5796882877059451E-01 + 0.5797402620490031E-01 + 0.5797928127671348E-01 + 0.5798459387227349E-01 + 0.5798996386875592E-01 + 0.5799539115229720E-01 + 0.5800087562905956E-01 + 0.5800641720761385E-01 + 0.5801201578705827E-01 + 0.5801767125542430E-01 + 0.5802338350146542E-01 + 0.5802915242880363E-01 + 0.5803497795028118E-01 + 0.5804085997577869E-01 + 0.5804679839951952E-01 + 0.5805279311080315E-01 + 0.5805884400205532E-01 + 0.5806495097343979E-01 + 0.5807111392634075E-01 + 0.5807733276383718E-01 + 0.5808360739118380E-01 + 0.5808993771251043E-01 + 0.5809632361601601E-01 + 0.5810276497902512E-01 + 0.5810926168468265E-01 + 0.5811581365012591E-01 + 0.5812242080436959E-01 + 0.5812908306095985E-01 + 0.5813580029098099E-01 + 0.5814257235885191E-01 + 0.5814939915495949E-01 + 0.5815628060634699E-01 + 0.5816321664072158E-01 + 0.5817020715546986E-01 + 0.5817725202521560E-01 + 0.5818435112841232E-01 + 0.5819150437112452E-01 + 0.5819871167013702E-01 + 0.5820597293587523E-01 + 0.5821328805932136E-01 + 0.5822065692788039E-01 + 0.5822807943568669E-01 + 0.5823555548732719E-01 + 0.5824308498782851E-01 + 0.5825066783452454E-01 + 0.5825830391840135E-01 + 0.5826599313133656E-01 + 0.5827373537283679E-01 + 0.5828153054569074E-01 + 0.5828937855176736E-01 + 0.5829727928977669E-01 + 0.5830523265779099E-01 + 0.5831323855631556E-01 + 0.5832129689001820E-01 + 0.5832940756336940E-01 + 0.5833757046909821E-01 + 0.5834578548928924E-01 + 0.5835405250794929E-01 + 0.5836237142736179E-01 + 0.5837074215850610E-01 + 0.5837916461095758E-01 + 0.5838763868879618E-01 + 0.5839616429473304E-01 + 0.5840474132345587E-01 + 0.5841336965451659E-01 + 0.5842204916685635E-01 + 0.5843077976378684E-01 + 0.5843956137288771E-01 + 0.5844839391842925E-01 + 0.5845727728581571E-01 + 0.5846621134003058E-01 + 0.5847519595566238E-01 + 0.5848423104841588E-01 + 0.5849331654471632E-01 + 0.5850245235900977E-01 + 0.5851163838078996E-01 + 0.5852087449665361E-01 + 0.5853016059918586E-01 + 0.5853949658752185E-01 + 0.5854888236040971E-01 + 0.5855831780933518E-01 + 0.5856780282157602E-01 + 0.5857733728944722E-01 + 0.5858692112908521E-01 + 0.5859655426354009E-01 + 0.5860623660331557E-01 + 0.5861596803001517E-01 + 0.5862574842161166E-01 + 0.5863557766999642E-01 + 0.5864545568378659E-01 + 0.5865538237130593E-01 + 0.5866535762616180E-01 + 0.5867538133256851E-01 + 0.5868545337983671E-01 + 0.5869557368467082E-01 + 0.5870574217265108E-01 + 0.5871595875546140E-01 + 0.5872622330932463E-01 + 0.5873653570525183E-01 + 0.5874689582881377E-01 + 0.5875730358481077E-01 + 0.5876775887930962E-01 + 0.5877826161771107E-01 + 0.5878881170494807E-01 + 0.5879940904570651E-01 + 0.5881005354328948E-01 + 0.5882074510049558E-01 + 0.5883148361575731E-01 + 0.5884226897515389E-01 + 0.5885310106275153E-01 + 0.5886397977056409E-01 + 0.5887490500214929E-01 + 0.5888587666175091E-01 + 0.5889689465028186E-01 + 0.5890795886608244E-01 + 0.5891906920784187E-01 + 0.5893022557695713E-01 + 0.5894142787590875E-01 + 0.5895267600494293E-01 + 0.5896396985727158E-01 + 0.5897530932478235E-01 + 0.5898669430292611E-01 + 0.5899812469285034E-01 + 0.5900960039621096E-01 + 0.5902112131462232E-01 + 0.5903268734966342E-01 + 0.5904429840208959E-01 + 0.5905595436665047E-01 + 0.5906765513543258E-01 + 0.5907940060232041E-01 + 0.5909119066752995E-01 + 0.5910302523266063E-01 + 0.5911490419930248E-01 + 0.5912682746902885E-01 + 0.5913879494318199E-01 + 0.5915080651843753E-01 + 0.5916286208711972E-01 + 0.5917496154207411E-01 + 0.5918710478178749E-01 + 0.5919929170751201E-01 + 0.5921152222078073E-01 + 0.5922379622414683E-01 + 0.5923611362037229E-01 + 0.5924847430742015E-01 + 0.5926087817392917E-01 + 0.5927332510807398E-01 + 0.5928581501262934E-01 + 0.5929834780532286E-01 + 0.5931092340122976E-01 + 0.5932354168461060E-01 + 0.5933620252305181E-01 + 0.5934890579300224E-01 + 0.5936165141007956E-01 + 0.5937443930045595E-01 + 0.5938726937822087E-01 + 0.5940014153153033E-01 + 0.5941305564551812E-01 + 0.5942601161488286E-01 + 0.5943900934508370E-01 + 0.5945204874131511E-01 + 0.5946512969999604E-01 + 0.5947825211231065E-01 + 0.5949141587072619E-01 + 0.5950462087425283E-01 + 0.5951786702387961E-01 + 0.5953115422167094E-01 + 0.5954448237224340E-01 + 0.5955785138026711E-01 + 0.5957126113935978E-01 + 0.5958471152947760E-01 + 0.5959820243175990E-01 + 0.5961173375152493E-01 + 0.5962530540997362E-01 + 0.5963891732501123E-01 + 0.5965256939526949E-01 + 0.5966626151290615E-01 + 0.5967999356741577E-01 + 0.5969376544129870E-01 + 0.5970757701632983E-01 + 0.5972142819200411E-01 + 0.5973531889189392E-01 + 0.5974924903924144E-01 + 0.5976321852934166E-01 + 0.5977722723729249E-01 + 0.5979127504252815E-01 + 0.5980536185330710E-01 + 0.5981948758861990E-01 + 0.5983365215823695E-01 + 0.5984785544495233E-01 + 0.5986209732690223E-01 + 0.5987637769527842E-01 + 0.5989069646078594E-01 + 0.5990505353536106E-01 + 0.5991944882519964E-01 + 0.5993388223193671E-01 + 0.5994835365520109E-01 + 0.5996286298194880E-01 + 0.5997741009390369E-01 + 0.5999199487947657E-01 + 0.6000661724883547E-01 + 0.6002127711642467E-01 + 0.6003597438745839E-01 + 0.6005070895196231E-01 + 0.6006548069893494E-01 + 0.6008028952445073E-01 + 0.6009513533076159E-01 + 0.6011001802025518E-01 + 0.6012493749477694E-01 + 0.6013989365592441E-01 + 0.6015488640337832E-01 + 0.6016991562990008E-01 + 0.6018498122673739E-01 + 0.6020008308974091E-01 + 0.6021522112310951E-01 + 0.6023039523154434E-01 + 0.6024560531164798E-01 + 0.6026085125225647E-01 + 0.6027613294361257E-01 + 0.6029145029057831E-01 + 0.6030680320539844E-01 + 0.6032219159682567E-01 + 0.6033761535933443E-01 + 0.6035307438381953E-01 + 0.6036856856263958E-01 + 0.6038409779108283E-01 + 0.6039966196483089E-01 + 0.6041526098068738E-01 + 0.6043089473663780E-01 + 0.6044656313161116E-01 + 0.6046226607305134E-01 + 0.6047800347314677E-01 + 0.6049377523959144E-01 + 0.6050958125970452E-01 + 0.6052542141513055E-01 + 0.6054129559394762E-01 + 0.6055720369846439E-01 + 0.6057314563285733E-01 + 0.6058912130013030E-01 + 0.6060513060193036E-01 + 0.6062117343918417E-01 + 0.6063724970580489E-01 + 0.6065335929139895E-01 + 0.6066950208844716E-01 + 0.6068567800410345E-01 + 0.6070188695007941E-01 + 0.6071812883296297E-01 + 0.6073440354679512E-01 + 0.6075071098372058E-01 + 0.6076705103544906E-01 + 0.6078342359313714E-01 + 0.6079982854898679E-01 + 0.6081626580860259E-01 + 0.6083273528664916E-01 + 0.6084923689364937E-01 + 0.6086577051608856E-01 + 0.6088233603214035E-01 + 0.6089893332891504E-01 + 0.6091556231779816E-01 + 0.6093222291402317E-01 + 0.6094891502218105E-01 + 0.6096563853198487E-01 + 0.6098239333253881E-01 + 0.6099917932003628E-01 + 0.6101599639594166E-01 + 0.6103284446220724E-01 + 0.6104972342304355E-01 + 0.6106663318352531E-01 + 0.6108357364284465E-01 + 0.6110054468246156E-01 + 0.6111754618080796E-01 + 0.6113457803387242E-01 + 0.6115164016464847E-01 + 0.6116873249690885E-01 + 0.6118585492950142E-01 + 0.6120300734090338E-01 + 0.6122018961157054E-01 + 0.6123740163991993E-01 + 0.6125464333201618E-01 + 0.6127191459230902E-01 + 0.6128921531974213E-01 + 0.6130654541212967E-01 + 0.6132390476902495E-01 + 0.6134129329292732E-01 + 0.6135871088631290E-01 + 0.6137615744577051E-01 + 0.6139363286260265E-01 + 0.6141113702897046E-01 + 0.6142866984522559E-01 + 0.6144623121557712E-01 + 0.6146382104207310E-01 + 0.6148143921861554E-01 + 0.6149908563722944E-01 + 0.6151676019228565E-01 + 0.6153446278253654E-01 + 0.6155219330746973E-01 + 0.6156995167230470E-01 + 0.6158773778791444E-01 + 0.6160555156359793E-01 + 0.6162339289267093E-01 + 0.6164126166013522E-01 + 0.6165915775206655E-01 + 0.6167708105929988E-01 + 0.6169503147395814E-01 + 0.6171300889604542E-01 + 0.6173101324181629E-01 + 0.6174904442908003E-01 + 0.6176710236360448E-01 + 0.6178518693811190E-01 + 0.6180329804424602E-01 + 0.6182143556940591E-01 + 0.6183959939855535E-01 + 0.6185778942038327E-01 + 0.6187600554095889E-01 + 0.6189424767136377E-01 + 0.6191251571940182E-01 + 0.6193080958540367E-01 + 0.6194912916856163E-01 + 0.6196747436478368E-01 + 0.6198584506606887E-01 + 0.6200424116486919E-01 + 0.6202266256133760E-01 + 0.6204110916049448E-01 + 0.6205958086523670E-01 + 0.6207807756710473E-01 + 0.6209659915400275E-01 + 0.6211514552071023E-01 + 0.6213371657936701E-01 + 0.6215231224446022E-01 + 0.6217093241666165E-01 + 0.6218957697857208E-01 + 0.6220824581248969E-01 + 0.6222693881255625E-01 + 0.6224565588115191E-01 + 0.6226439692149564E-01 + 0.6228316184067806E-01 + 0.6230195054716862E-01 + 0.6232076294563370E-01 + 0.6233959893008635E-01 + 0.6235845839270641E-01 + 0.6237734122652413E-01 + 0.6239624732579276E-01 + 0.6241517658513632E-01 + 0.6243412890326758E-01 + 0.6245310418202696E-01 + 0.6247210232294393E-01 + 0.6249112322503456E-01 + 0.6251016678631939E-01 + 0.6252923290652173E-01 + 0.6254832149066890E-01 + 0.6256743244465421E-01 + 0.6258656566405642E-01 + 0.6260572102812551E-01 + 0.6262489841611503E-01 + 0.6264409773212147E-01 + 0.6266331890112626E-01 + 0.6268256184448071E-01 + 0.6270182645265246E-01 + 0.6272111260255432E-01 + 0.6274042017737827E-01 + 0.6275974908224331E-01 + 0.6277909922690210E-01 + 0.6279847051220255E-01 + 0.6281786282346273E-01 + 0.6283727604550577E-01 + 0.6285671008448222E-01 + 0.6287616486623968E-01 + 0.6289564031281056E-01 + 0.6291513630930835E-01 + 0.6293465272293100E-01 + 0.6295418942981446E-01 + 0.6297374634098794E-01 + 0.6299332337578632E-01 + 0.6301292044223733E-01 + 0.6303253742661843E-01 + 0.6305217421340235E-01 + 0.6307183070276352E-01 + 0.6309150681080457E-01 + 0.6311120245173509E-01 + 0.6313091751597456E-01 + 0.6315065188119737E-01 + 0.6317040543090503E-01 + 0.6319017807412886E-01 + 0.6320996972669937E-01 + 0.6322978029611802E-01 + 0.6324960967219063E-01 + 0.6326945774274794E-01 + 0.6328932440371715E-01 + 0.6330920956004738E-01 + 0.6332911311632721E-01 + 0.6334903496852601E-01 + 0.6336897500752224E-01 + 0.6338893312579115E-01 + 0.6340890922376079E-01 + 0.6342890320422931E-01 + 0.6344891496869892E-01 + 0.6346894441562535E-01 + 0.6348899144311706E-01 + 0.6350905595235268E-01 + 0.6352913784826953E-01 + 0.6354923703487486E-01 + 0.6356935340254541E-01 + 0.6358948683279114E-01 + 0.6360963721078852E-01 + 0.6362980444207526E-01 + 0.6364998843894279E-01 + 0.6367018911014268E-01 + 0.6369040635519928E-01 + 0.6371064007213057E-01 + 0.6373089015795315E-01 + 0.6375115650833583E-01 + 0.6377143901866979E-01 + 0.6379173758188914E-01 + 0.6381205208916941E-01 + 0.6383238243385594E-01 + 0.6385272852244422E-01 + 0.6387309026627401E-01 + 0.6389346757231897E-01 + 0.6391386033491722E-01 + 0.6393426844613696E-01 + 0.6395469179796020E-01 + 0.6397513028224140E-01 + 0.6399558379152147E-01 + 0.6401605222911881E-01 + 0.6403653550683277E-01 + 0.6405703353444299E-01 + 0.6407754620674712E-01 + 0.6409807341242026E-01 + 0.6411861504344991E-01 + 0.6413917100251769E-01 + 0.6415974119438105E-01 + 0.6418032551924124E-01 + 0.6420092386987552E-01 + 0.6422153613855488E-01 + 0.6424216222072127E-01 + 0.6426280201455846E-01 + 0.6428345541973776E-01 + 0.6430412234636782E-01 + 0.6432480270927854E-01 + 0.6434549641514378E-01 + 0.6436620334141332E-01 + 0.6438692335917441E-01 + 0.6440765635449742E-01 + 0.6442840224035784E-01 + 0.6444916093204034E-01 + 0.6446993233440391E-01 + 0.6449071634240431E-01 + 0.6451151285144510E-01 + 0.6453232176398194E-01 + 0.6455314298599600E-01 + 0.6457397641938068E-01 + 0.6459482194965861E-01 + 0.6461567945835140E-01 + 0.6463654883618024E-01 + 0.6465742999209402E-01 + 0.6467832283703039E-01 + 0.6469922727803037E-01 + 0.6472014321806957E-01 + 0.6474107055834844E-01 + 0.6476200918504902E-01 + 0.6478295897606779E-01 + 0.6480391981688161E-01 + 0.6482489162695648E-01 + 0.6484587433507805E-01 + 0.6486686785136674E-01 + 0.6488787204507886E-01 + 0.6490888678105142E-01 + 0.6492991195365157E-01 + 0.6495094749109054E-01 + 0.6497199332033341E-01 + 0.6499304933499911E-01 + 0.6501411540843072E-01 + 0.6503519142005533E-01 + 0.6505627728077551E-01 + 0.6507737291115832E-01 + 0.6509847821922888E-01 + 0.6511959308262005E-01 + 0.6514071737511197E-01 + 0.6516185099443517E-01 + 0.6518299386848216E-01 + 0.6520414592405387E-01 + 0.6522530705108456E-01 + 0.6524647711482860E-01 + 0.6526765598728916E-01 + 0.6528884358016769E-01 + 0.6531003981875551E-01 + 0.6533124462008039E-01 + 0.6535245787894666E-01 + 0.6537367948638357E-01 + 0.6539490932967103E-01 + 0.6541614729089789E-01 + 0.6543739325346389E-01 + 0.6545864712447152E-01 + 0.6547990882847753E-01 + 0.6550117828525325E-01 + 0.6552245538260517E-01 + 0.6554373999618935E-01 + 0.6556503201041703E-01 + 0.6558633133587172E-01 + 0.6560763788783435E-01 + 0.6562895157251411E-01 + 0.6565027228230208E-01 + 0.6567159990842479E-01 + 0.6569293434204752E-01 + 0.6571427547428590E-01 + 0.6573562319853719E-01 + 0.6575697742393450E-01 + 0.6577833806624066E-01 + 0.6579970503295528E-01 + 0.6582107820411047E-01 + 0.6584245745431363E-01 + 0.6586384267759588E-01 + 0.6588523380056842E-01 + 0.6590663075118163E-01 + 0.6592803342405254E-01 + 0.6594944168415182E-01 + 0.6597085540066950E-01 + 0.6599227448342239E-01 + 0.6601369886116725E-01 + 0.6603512845354992E-01 + 0.6605656314620612E-01 + 0.6607800281700936E-01 + 0.6609944735203097E-01 + 0.6612089665250110E-01 + 0.6614235062146332E-01 + 0.6616380916579122E-01 + 0.6618527219610037E-01 + 0.6620673962118591E-01 + 0.6622821133263861E-01 + 0.6624968721318956E-01 + 0.6627116714855294E-01 + 0.6629265103700483E-01 + 0.6631413878006876E-01 + 0.6633563028226241E-01 + 0.6635712545421496E-01 + 0.6637862420677618E-01 + 0.6640012643704264E-01 + 0.6642163202735273E-01 + 0.6644314086074234E-01 + 0.6646465283424853E-01 + 0.6648616785286193E-01 + 0.6650768582065170E-01 + 0.6652920663704833E-01 + 0.6655073020016094E-01 + 0.6657225640934357E-01 + 0.6659378516675956E-01 + 0.6661531637480696E-01 + 0.6663684993114315E-01 + 0.6665838572783690E-01 + 0.6667992365716506E-01 + 0.6670146361731075E-01 + 0.6672300551015367E-01 + 0.6674454923745098E-01 + 0.6676609470004509E-01 + 0.6678764179848409E-01 + 0.6680919043211944E-01 + 0.6683074049731355E-01 + 0.6685229188987742E-01 + 0.6687384450205297E-01 + 0.6689539822145834E-01 + 0.6691695293712506E-01 + 0.6693850855999290E-01 + 0.6696006501609359E-01 + 0.6698162222466739E-01 + 0.6700318006456490E-01 + 0.6702473840037571E-01 + 0.6704629711203387E-01 + 0.6706785612202784E-01 + 0.6708941535969744E-01 + 0.6711097473231962E-01 + 0.6713253411574181E-01 + 0.6715409338511009E-01 + 0.6717565244044668E-01 + 0.6719721120061956E-01 + 0.6721876958075940E-01 + 0.6724032746922166E-01 + 0.6726188474386295E-01 + 0.6728344128989178E-01 + 0.6730499701521477E-01 + 0.6732655183202763E-01 + 0.6734810564866498E-01 + 0.6736965836740866E-01 + 0.6739120988936397E-01 + 0.6741276010469353E-01 + 0.6743430889444877E-01 + 0.6745585614271934E-01 + 0.6747740175724660E-01 + 0.6749894565604580E-01 + 0.6752048774893793E-01 + 0.6754202791755615E-01 + 0.6756356603770462E-01 + 0.6758510200127121E-01 + 0.6760663572791716E-01 + 0.6762816713928443E-01 + 0.6764969614175470E-01 + 0.6767122262775015E-01 + 0.6769274648836516E-01 + 0.6771426760817643E-01 + 0.6773578586862966E-01 + 0.6775730115882213E-01 + 0.6777881339708509E-01 + 0.6780032250856895E-01 + 0.6782182840220536E-01 + 0.6784333095603968E-01 + 0.6786483004557376E-01 + 0.6788632556768102E-01 + 0.6790781744070849E-01 + 0.6792930558109016E-01 + 0.6795078987949498E-01 + 0.6797227021292613E-01 + 0.6799374646441838E-01 + 0.6801521854314324E-01 + 0.6803668636515436E-01 + 0.6805814983797386E-01 + 0.6807960885118149E-01 + 0.6810106329239978E-01 + 0.6812251305781103E-01 + 0.6814395805304514E-01 + 0.6816539818318461E-01 + 0.6818683334274772E-01 + 0.6820826342007424E-01 + 0.6822968830680008E-01 + 0.6825110791052031E-01 + 0.6827252214352159E-01 + 0.6829393091229894E-01 + 0.6831533410987573E-01 + 0.6833673162741101E-01 + 0.6835812335761973E-01 + 0.6837950919510378E-01 + 0.6840088903491447E-01 + 0.6842226277600066E-01 + 0.6844363031982193E-01 + 0.6846499156760777E-01 + 0.6848634641915331E-01 + 0.6850769477378371E-01 + 0.6852903653130632E-01 + 0.6855037159277146E-01 + 0.6857169985937230E-01 + 0.6859302123004913E-01 + 0.6861433560073972E-01 + 0.6863564286682039E-01 + 0.6865694291898821E-01 + 0.6867823564462333E-01 + 0.6869952093537139E-01 + 0.6872079870841031E-01 + 0.6874206889021739E-01 + 0.6876333139293495E-01 + 0.6878458608769209E-01 + 0.6880583283884557E-01 + 0.6882707153711348E-01 + 0.6884830211185472E-01 + 0.6886952449308494E-01 + 0.6889073857391546E-01 + 0.6891194421869563E-01 + 0.6893314129724928E-01 + 0.6895432972046407E-01 + 0.6897550941583452E-01 + 0.6899668030171924E-01 + 0.6901784226731098E-01 + 0.6903899519616957E-01 + 0.6906013898153175E-01 + 0.6908127353224860E-01 + 0.6910239875757634E-01 + 0.6912351454888393E-01 + 0.6914462078222060E-01 + 0.6916571733782853E-01 + 0.6918680413055844E-01 + 0.6920788109075698E-01 + 0.6922894813558328E-01 + 0.6925000513533279E-01 + 0.6927105195026915E-01 + 0.6929208846897778E-01 + 0.6931311463039855E-01 + 0.6933413037639093E-01 + 0.6935513560200818E-01 + 0.6937613015826570E-01 + 0.6939711390154804E-01 + 0.6941808674699455E-01 + 0.6943904863882264E-01 + 0.6945999950694591E-01 + 0.6948093922416296E-01 + 0.6950186764941222E-01 + 0.6952278466545301E-01 + 0.6954369020176914E-01 + 0.6956458419180813E-01 + 0.6958546653313109E-01 + 0.6960633708621353E-01 + 0.6962719571533448E-01 + 0.6964804233637655E-01 + 0.6966887689340910E-01 + 0.6968969931639467E-01 + 0.6971050947219003E-01 + 0.6973130721050655E-01 + 0.6975209240813449E-01 + 0.6977286500054568E-01 + 0.6979362492966979E-01 + 0.6981437210177087E-01 + 0.6983510638262633E-01 + 0.6985582763877090E-01 + 0.6987653576797354E-01 + 0.6989723068680904E-01 + 0.6991791230951588E-01 + 0.6993858053765467E-01 + 0.6995923526891513E-01 + 0.6997987639958561E-01 + 0.7000050382259677E-01 + 0.7002111743052502E-01 + 0.7004171712087172E-01 + 0.7006230279728111E-01 + 0.7008287436319190E-01 + 0.7010343171490594E-01 + 0.7012397474399386E-01 + 0.7014450334314825E-01 + 0.7016501741163873E-01 + 0.7018551685096526E-01 + 0.7020600156288646E-01 + 0.7022647144984344E-01 + 0.7024692641425987E-01 + 0.7026736635285453E-01 + 0.7028779115452389E-01 + 0.7030820070868392E-01 + 0.7032859491974918E-01 + 0.7034897370307264E-01 + 0.7036933697023551E-01 + 0.7038968460834348E-01 + 0.7041001649529790E-01 + 0.7043033251742495E-01 + 0.7045063258594920E-01 + 0.7047091661647262E-01 + 0.7049118451395062E-01 + 0.7051143616727929E-01 + 0.7053167146461808E-01 + 0.7055189030358910E-01 + 0.7057209258940091E-01 + 0.7059227822610361E-01 + 0.7061244710839977E-01 + 0.7063259912709414E-01 + 0.7065273417542218E-01 + 0.7067285215463236E-01 + 0.7069295296758771E-01 + 0.7071303651531895E-01 + 0.7073310269581318E-01 + 0.7075315140700864E-01 + 0.7077318255124819E-01 + 0.7079319603475486E-01 + 0.7081319176146961E-01 + 0.7083316961687645E-01 + 0.7085312947794248E-01 + 0.7087307123106430E-01 + 0.7089299479722016E-01 + 0.7091290010506151E-01 + 0.7093278706214148E-01 + 0.7095265553738710E-01 + 0.7097250539697861E-01 + 0.7099233653703174E-01 + 0.7101214888262964E-01 + 0.7103194235726228E-01 + 0.7105171686051746E-01 + 0.7107147227979733E-01 + 0.7109120850383044E-01 + 0.7111092542713204E-01 + 0.7113062294569693E-01 + 0.7115030095681676E-01 + 0.7116995936040349E-01 + 0.7118959805673754E-01 + 0.7120921694745547E-01 + 0.7122881593563545E-01 + 0.7124839492344447E-01 + 0.7126795380352467E-01 + 0.7128749246316092E-01 + 0.7130701079430658E-01 + 0.7132650871032881E-01 + 0.7134598613058003E-01 + 0.7136544295866797E-01 + 0.7138487906303741E-01 + 0.7140429430846118E-01 + 0.7142368859347227E-01 + 0.7144306185602227E-01 + 0.7146241403213152E-01 + 0.7148174501197614E-01 + 0.7150105465731959E-01 + 0.7152034283833265E-01 + 0.7153960946976882E-01 + 0.7155885448038298E-01 + 0.7157807778643442E-01 + 0.7159727927327786E-01 + 0.7161645882169500E-01 + 0.7163561631697877E-01 + 0.7165475165021030E-01 + 0.7167386471435400E-01 + 0.7169295542125196E-01 + 0.7171202369562475E-01 + 0.7173106945557151E-01 + 0.7175009258049181E-01 + 0.7176909293626689E-01 + 0.7178807040305475E-01 + 0.7180702490018632E-01 + 0.7182595635332235E-01 + 0.7184486467292577E-01 + 0.7186374974801869E-01 + 0.7188261146632563E-01 + 0.7190144972017897E-01 + 0.7192026440536838E-01 + 0.7193905541824997E-01 + 0.7195782265821801E-01 + 0.7197656602584621E-01 + 0.7199528542198991E-01 + 0.7201398074835429E-01 + 0.7203265190674503E-01 + 0.7205129879531860E-01 + 0.7206992130656651E-01 + 0.7208851933279396E-01 + 0.7210709277132993E-01 + 0.7212564152364652E-01 + 0.7214416549134515E-01 + 0.7216266457606643E-01 + 0.7218113867946761E-01 + 0.7219958770127716E-01 + 0.7221801153469371E-01 + 0.7223641007158212E-01 + 0.7225478320751911E-01 + 0.7227313084442778E-01 + 0.7229145288473635E-01 + 0.7230974922861323E-01 + 0.7232801977417925E-01 + 0.7234626442005326E-01 + 0.7236448306938148E-01 + 0.7238267562746280E-01 + 0.7240084199526736E-01 + 0.7241898205739956E-01 + 0.7243709569470854E-01 + 0.7245518279895001E-01 + 0.7247324328244287E-01 + 0.7249127705925522E-01 + 0.7250928403138897E-01 + 0.7252726408883722E-01 + 0.7254521712172446E-01 + 0.7256314302596126E-01 + 0.7258104170049653E-01 + 0.7259891304679632E-01 + 0.7261675697678251E-01 + 0.7263457340503791E-01 + 0.7265236223309552E-01 + 0.7267012333532222E-01 + 0.7268785658344829E-01 + 0.7270556186969962E-01 + 0.7272323910870743E-01 + 0.7274088821499224E-01 + 0.7275850909049215E-01 + 0.7277610162985887E-01 + 0.7279366572928200E-01 + 0.7281120129256223E-01 + 0.7282870822569636E-01 + 0.7284618642789059E-01 + 0.7286363578271910E-01 + 0.7288105617196125E-01 + 0.7289844749041140E-01 + 0.7291580964849487E-01 + 0.7293314255708321E-01 + 0.7295044612156092E-01 + 0.7296772024381239E-01 + 0.7298496482308141E-01 + 0.7300217974513288E-01 + 0.7301936489137171E-01 + 0.7303652015184563E-01 + 0.7305364543864266E-01 + 0.7307074066700103E-01 + 0.7308780573962821E-01 + 0.7310484054269101E-01 + 0.7312184496253603E-01 + 0.7313881890266119E-01 + 0.7315576227860428E-01 + 0.7317267500219198E-01 + 0.7318955696219009E-01 + 0.7320640803904670E-01 + 0.7322322811897069E-01 + 0.7324001710449425E-01 + 0.7325677490095860E-01 + 0.7327350141085287E-01 + 0.7329019653252620E-01 + 0.7330686016416453E-01 + 0.7332349220639006E-01 + 0.7334009256170559E-01 + 0.7335666113160199E-01 + 0.7337319781066537E-01 + 0.7338970249071864E-01 + 0.7340617506564757E-01 + 0.7342261543584251E-01 + 0.7343902350296750E-01 + 0.7345539916865272E-01 + 0.7347174233447428E-01 + 0.7348805290172153E-01 + 0.7350433076678055E-01 + 0.7352057582187790E-01 + 0.7353678795992523E-01 + 0.7355296707979391E-01 + 0.7356911308299662E-01 + 0.7358522587112006E-01 + 0.7360130534596815E-01 + 0.7361735140935037E-01 + 0.7363336395943763E-01 + 0.7364934288799550E-01 + 0.7366528808648100E-01 + 0.7368119945331941E-01 + 0.7369707689342951E-01 + 0.7371292031070156E-01 + 0.7372872959856123E-01 + 0.7374450464530725E-01 + 0.7376024534348236E-01 + 0.7377595160228743E-01 + 0.7379162333490870E-01 + 0.7380726044636432E-01 + 0.7382286282581090E-01 + 0.7383843036100823E-01 + 0.7385396294992061E-01 + 0.7386946050095755E-01 + 0.7388492292092881E-01 + 0.7390035009747863E-01 + 0.7391574190788663E-01 + 0.7393109823672229E-01 + 0.7394641900060917E-01 + 0.7396170412478170E-01 + 0.7397695352089528E-01 + 0.7399216707147803E-01 + 0.7400734465566567E-01 + 0.7402248616331216E-01 + 0.7403759149632270E-01 + 0.7405266055772442E-01 + 0.7406769325557454E-01 + 0.7408268950092920E-01 + 0.7409764920085022E-01 + 0.7411257224290313E-01 + 0.7412745850879395E-01 + 0.7414230788651537E-01 + 0.7415712027898129E-01 + 0.7417189559118411E-01 + 0.7418663372511190E-01 + 0.7420133457904101E-01 + 0.7421599805124510E-01 + 0.7423062404269865E-01 + 0.7424521245614945E-01 + 0.7425976319292528E-01 + 0.7427427614653393E-01 + 0.7428875120786681E-01 + 0.7430318827133286E-01 + 0.7431758724059466E-01 + 0.7433194802066118E-01 + 0.7434627050981684E-01 + 0.7436055459721387E-01 + 0.7437480017231755E-01 + 0.7438900713773399E-01 + 0.7440317540556069E-01 + 0.7441730488579297E-01 + 0.7443139547450457E-01 + 0.7444544706258593E-01 + 0.7445945954198947E-01 + 0.7447343280779220E-01 + 0.7448736675565466E-01 + 0.7450126128213872E-01 + 0.7451511628515275E-01 + 0.7452893166320052E-01 + 0.7454270732239764E-01 + 0.7455644317490405E-01 + 0.7457013913009693E-01 + 0.7458379507749004E-01 + 0.7459741089839983E-01 + 0.7461098647904164E-01 + 0.7462452172160454E-01 + 0.7463801653146862E-01 + 0.7465147081104252E-01 + 0.7466488445784792E-01 + 0.7467825736921220E-01 + 0.7469158944720994E-01 + 0.7470488059805771E-01 + 0.7471813072571536E-01 + 0.7473133971604628E-01 + 0.7474450744664827E-01 + 0.7475763380406857E-01 + 0.7477071870731469E-01 + 0.7478376208253556E-01 + 0.7479676383862226E-01 + 0.7480972385318432E-01 + 0.7482264200156340E-01 + 0.7483551818113311E-01 + 0.7484835231038395E-01 + 0.7486114430558745E-01 + 0.7487389405694623E-01 + 0.7488660144150589E-01 + 0.7489926634265131E-01 + 0.7491188866966275E-01 + 0.7492446833826559E-01 + 0.7493700525578393E-01 + 0.7494949931273705E-01 + 0.7496195039788534E-01 + 0.7497435840610111E-01 + 0.7498672323869098E-01 + 0.7499904479748441E-01 + 0.7501132298638662E-01 + 0.7502355771045883E-01 + 0.7503574887077397E-01 + 0.7504789635048434E-01 + 0.7506000002779278E-01 + 0.7507205979432960E-01 + 0.7508407557140705E-01 + 0.7509604728361824E-01 + 0.7510797483453340E-01 + 0.7511985810341053E-01 + 0.7513169696966044E-01 + 0.7514349132908539E-01 + 0.7515524108754706E-01 + 0.7516694615000688E-01 + 0.7517860641620286E-01 + 0.7519022178424888E-01 + 0.7520179215317098E-01 + 0.7521331742422808E-01 + 0.7522479749894574E-01 + 0.7523623227631306E-01 + 0.7524762165209565E-01 + 0.7525896552149003E-01 + 0.7527026377522388E-01 + 0.7528151630100571E-01 + 0.7529272299091759E-01 + 0.7530388376171976E-01 + 0.7531499853869308E-01 + 0.7532606723344975E-01 + 0.7533708972050651E-01 + 0.7534806586856108E-01 + 0.7535899556517269E-01 + 0.7536987872425334E-01 + 0.7538071526094336E-01 + 0.7539150507998661E-01 + 0.7540224807840134E-01 + 0.7541294415302209E-01 + 0.7542359320068175E-01 + 0.7543419511821112E-01 + 0.7544474980036078E-01 + 0.7545525713561665E-01 + 0.7546571701153177E-01 + 0.7547612932984348E-01 + 0.7548649401409441E-01 + 0.7549681098784920E-01 + 0.7550708014463963E-01 + 0.7551730135346602E-01 + 0.7552747448695312E-01 + 0.7553759944798692E-01 + 0.7554767615233022E-01 + 0.7555770451208521E-01 + 0.7556768442693642E-01 + 0.7557761579396660E-01 + 0.7558749850983770E-01 + 0.7559733247049929E-01 + 0.7560711757169937E-01 + 0.7561685370665439E-01 + 0.7562654076630889E-01 + 0.7563617864322552E-01 + 0.7564576724325266E-01 + 0.7565530647849219E-01 + 0.7566479625698329E-01 + 0.7567423647148255E-01 + 0.7568362701122700E-01 + 0.7569296776978987E-01 + 0.7570225864883850E-01 + 0.7571149955088469E-01 + 0.7572069037751511E-01 + 0.7572983102940439E-01 + 0.7573892140679412E-01 + 0.7574796140645256E-01 + 0.7575695092334229E-01 + 0.7576588985178503E-01 + 0.7577477808350523E-01 + 0.7578361550959556E-01 + 0.7579240202755420E-01 + 0.7580113754807936E-01 + 0.7580982198308229E-01 + 0.7581845523340485E-01 + 0.7582703718790325E-01 + 0.7583556773590278E-01 + 0.7584404677735632E-01 + 0.7585247421831056E-01 + 0.7586084996218384E-01 + 0.7586917389989905E-01 + 0.7587744591880201E-01 + 0.7588566591424200E-01 + 0.7589383379980320E-01 + 0.7590194949106364E-01 + 0.7591001288646002E-01 + 0.7591802386403921E-01 + 0.7592598230283355E-01 + 0.7593388810644314E-01 + 0.7594174119398699E-01 + 0.7594954147906440E-01 + 0.7595728884554204E-01 + 0.7596498316776058E-01 + 0.7597262433333871E-01 + 0.7598021226340480E-01 + 0.7598774688377887E-01 + 0.7599522810013344E-01 + 0.7600265579180193E-01 + 0.7601002983759038E-01 + 0.7601735013241909E-01 + 0.7602461658241104E-01 + 0.7603182909286549E-01 + 0.7603898756303474E-01 + 0.7604609189001388E-01 + 0.7605314197281937E-01 + 0.7606013771585170E-01 + 0.7606707902425890E-01 + 0.7607396579395655E-01 + 0.7608079790758755E-01 + 0.7608757524784222E-01 + 0.7609429771334426E-01 + 0.7610096521489835E-01 + 0.7610757766276038E-01 + 0.7611413496166819E-01 + 0.7612063701417139E-01 + 0.7612708371776179E-01 + 0.7613347495422685E-01 + 0.7613981060258003E-01 + 0.7614609055886779E-01 + 0.7615231474608573E-01 + 0.7615848308814339E-01 + 0.7616459548377332E-01 + 0.7617065181055446E-01 + 0.7617665194829906E-01 + 0.7618259579766411E-01 + 0.7618848326844974E-01 + 0.7619431426548515E-01 + 0.7620008867627590E-01 + 0.7620580638475932E-01 + 0.7621146728948636E-01 + 0.7621707131447942E-01 + 0.7622261838483674E-01 + 0.7622810839602944E-01 + 0.7623354121618174E-01 + 0.7623891671639584E-01 + 0.7624423480020033E-01 + 0.7624949538684990E-01 + 0.7625469838959631E-01 + 0.7625984369817855E-01 + 0.7626493119676364E-01 + 0.7626996077958893E-01 + 0.7627493236025138E-01 + 0.7627984585384985E-01 + 0.7628470115909635E-01 + 0.7628949815808888E-01 + 0.7629423673353402E-01 + 0.7629891678045571E-01 + 0.7630353820047282E-01 + 0.7630810089686319E-01 + 0.7631260477975248E-01 + 0.7631704976104535E-01 + 0.7632143574297873E-01 + 0.7632576260726247E-01 + 0.7633003023355517E-01 + 0.7633423851760062E-01 + 0.7633838737305609E-01 + 0.7634247671317786E-01 + 0.7634650643738451E-01 + 0.7635047643692583E-01 + 0.7635438660310669E-01 + 0.7635823682800092E-01 + 0.7636202700393064E-01 + 0.7636575702831805E-01 + 0.7636942681056315E-01 + 0.7637303626154079E-01 + 0.7637658528384304E-01 + 0.7638007376992738E-01 + 0.7638350161168990E-01 + 0.7638686870169060E-01 + 0.7639017493292100E-01 + 0.7639342020018752E-01 + 0.7639660440793077E-01 + 0.7639972746378712E-01 + 0.7640278927475243E-01 + 0.7640578974615063E-01 + 0.7640872878272013E-01 + 0.7641160627585447E-01 + 0.7641442209899932E-01 + 0.7641717612633208E-01 + 0.7641986825882283E-01 + 0.7642249841660681E-01 + 0.7642506651829420E-01 + 0.7642757247094476E-01 + 0.7643001617735470E-01 + 0.7643239753248526E-01 + 0.7643471640869612E-01 + 0.7643697267479612E-01 + 0.7643916622634301E-01 + 0.7644129699846429E-01 + 0.7644336492691740E-01 + 0.7644536990785717E-01 + 0.7644731180629267E-01 + 0.7644919049170520E-01 + 0.7645100586894539E-01 + 0.7645275785730950E-01 + 0.7645444636948650E-01 + 0.7645607129682692E-01 + 0.7645763252649729E-01 + 0.7645912995165699E-01 + 0.7646056347522512E-01 + 0.7646193300084272E-01 + 0.7646323842901205E-01 + 0.7646447965752278E-01 + 0.7646565658472692E-01 + 0.7646676911384104E-01 + 0.7646781715028068E-01 + 0.7646880059485374E-01 + 0.7646971933187702E-01 + 0.7647057324211199E-01 + 0.7647136221777945E-01 + 0.7647208617166550E-01 + 0.7647274501807444E-01 + 0.7647333865820243E-01 + 0.7647386698080137E-01 + 0.7647432987525082E-01 + 0.7647472724032687E-01 + 0.7647505897950029E-01 + 0.7647532499531379E-01 + 0.7647552518648114E-01 + 0.7647565945078285E-01 + 0.7647572768839900E-01 + 0.7647572980426122E-01 + 0.7647566570338443E-01 + 0.7647553527897689E-01 + 0.7647533841193544E-01 + 0.7647507498485467E-01 + 0.7647474490186829E-01 + 0.7647434807898604E-01 + 0.7647388442747815E-01 + 0.7647335383706744E-01 + 0.7647275619156577E-01 + 0.7647209138528067E-01 + 0.7647135933548449E-01 + 0.7647055996163830E-01 + 0.7646969315791321E-01 + 0.7646875878951226E-01 + 0.7646775672418954E-01 + 0.7646668687413354E-01 + 0.7646554917853523E-01 + 0.7646434356681535E-01 + 0.7646306991827244E-01 + 0.7646172809680863E-01 + 0.7646031798099179E-01 + 0.7645883948490992E-01 + 0.7645729252754796E-01 + 0.7645567701435568E-01 + 0.7645399283374688E-01 + 0.7645223987376836E-01 + 0.7645041803124284E-01 + 0.7644852720886465E-01 + 0.7644656730928169E-01 + 0.7644453823429247E-01 + 0.7644243988540045E-01 + 0.7644027216161669E-01 + 0.7643803495526407E-01 + 0.7643572815767829E-01 + 0.7643335166574059E-01 + 0.7643090538400545E-01 + 0.7642838921693429E-01 + 0.7642580305980465E-01 + 0.7642314680113513E-01 + 0.7642042033187241E-01 + 0.7641762355886932E-01 + 0.7641475639502049E-01 + 0.7641181874787115E-01 + 0.7640881050899358E-01 + 0.7640573156710017E-01 + 0.7640258181671799E-01 + 0.7639936116122572E-01 + 0.7639606950444506E-01 + 0.7639270674535386E-01 + 0.7638927277901122E-01 + 0.7638576749968046E-01 + 0.7638219079691739E-01 + 0.7637854255829701E-01 + 0.7637482267912982E-01 + 0.7637103108037469E-01 + 0.7636716768800513E-01 + 0.7636323240634493E-01 + 0.7635922510342509E-01 + 0.7635514564557282E-01 + 0.7635099393218225E-01 + 0.7634676989204041E-01 + 0.7634247345038816E-01 + 0.7633810449714808E-01 + 0.7633366290578745E-01 + 0.7632914855802847E-01 + 0.7632456136637290E-01 + 0.7631990125027820E-01 + 0.7631516811522516E-01 + 0.7631036184086527E-01 + 0.7630548230491624E-01 + 0.7630052940401209E-01 + 0.7629550305325684E-01 + 0.7629040316658077E-01 + 0.7628522964101531E-01 + 0.7627998236489454E-01 + 0.7627466122879998E-01 + 0.7626926613283890E-01 + 0.7626379697956192E-01 + 0.7625825367122186E-01 + 0.7625263610946408E-01 + 0.7624694419567689E-01 + 0.7624117782645749E-01 + 0.7623533689326472E-01 + 0.7622942128814707E-01 + 0.7622343091143008E-01 + 0.7621736566813829E-01 + 0.7621122546094562E-01 + 0.7620501018152184E-01 + 0.7619871971842090E-01 + 0.7619235396685999E-01 + 0.7618591283708255E-01 + 0.7617939624109173E-01 + 0.7617280408148698E-01 + 0.7616613624978862E-01 + 0.7615939263712781E-01 + 0.7615257313739166E-01 + 0.7614567764619102E-01 + 0.7613870605947448E-01 + 0.7613165827477851E-01 + 0.7612453419015449E-01 + 0.7611733370731089E-01 + 0.7611005673708615E-01 + 0.7610270319139030E-01 + 0.7609527296940809E-01 + 0.7608776595384788E-01 + 0.7608018202732040E-01 + 0.7607252108512935E-01 + 0.7606478303131731E-01 + 0.7605696776979569E-01 + 0.7604907520274740E-01 + 0.7604110523174063E-01 + 0.7603305775550961E-01 + 0.7602493266494443E-01 + 0.7601672984976914E-01 + 0.7600844920839634E-01 + 0.7600009065160895E-01 + 0.7599165409040827E-01 + 0.7598313942518436E-01 + 0.7597454654829273E-01 + 0.7596587535178484E-01 + 0.7595712572704403E-01 + 0.7594829756519442E-01 + 0.7593939076244328E-01 + 0.7593040523063086E-01 + 0.7592134088437410E-01 + 0.7591219762480171E-01 + 0.7590297533190975E-01 + 0.7589367388500333E-01 + 0.7588429318285391E-01 + 0.7587483314043235E-01 + 0.7586529367081214E-01 + 0.7585567467002672E-01 + 0.7584597602671170E-01 + 0.7583619763199339E-01 + 0.7582633938561967E-01 + 0.7581640118919491E-01 + 0.7580638294552335E-01 + 0.7579628455948004E-01 + 0.7578610593546008E-01 + 0.7577584696437634E-01 + 0.7576550752481548E-01 + 0.7575508749857450E-01 + 0.7574458679677734E-01 + 0.7573400534462722E-01 + 0.7572334305912020E-01 + 0.7571259982565670E-01 + 0.7570177552219705E-01 + 0.7569087003572821E-01 + 0.7567988327041713E-01 + 0.7566881513218528E-01 + 0.7565766552298575E-01 + 0.7564643434078642E-01 + 0.7563512148371638E-01 + 0.7562372685293379E-01 + 0.7561225035120228E-01 + 0.7560069187947194E-01 + 0.7558905133093667E-01 + 0.7557732859675747E-01 + 0.7556552357195201E-01 + 0.7555363615964364E-01 + 0.7554166626378414E-01 + 0.7552961378294004E-01 + 0.7551747860973752E-01 + 0.7550526063682889E-01 + 0.7549295976025615E-01 + 0.7548057587804279E-01 + 0.7546810889069162E-01 + 0.7545555871030812E-01 + 0.7544292525237271E-01 + 0.7543020841949231E-01 + 0.7541740808435016E-01 + 0.7540452411611936E-01 + 0.7539155640842564E-01 + 0.7537850488452859E-01 + 0.7536536946766087E-01 + 0.7535215006011273E-01 + 0.7533884655069176E-01 + 0.7532545882842129E-01 + 0.7531198678463995E-01 + 0.7529843031145886E-01 + 0.7528478930660867E-01 + 0.7527106368228719E-01 + 0.7525725335263188E-01 + 0.7524335821709631E-01 + 0.7522937815557471E-01 + 0.7521531304810374E-01 + 0.7520116279457922E-01 + 0.7518692730896570E-01 + 0.7517260650317486E-01 + 0.7515820027528426E-01 + 0.7514370851838141E-01 + 0.7512913117610043E-01 + 0.7511446833648422E-01 + 0.7509972011295060E-01 + 0.7508488660630887E-01 + 0.7506996789889687E-01 + 0.7505496407145049E-01 + 0.7503987520269318E-01 + 0.7502470136978100E-01 + 0.7500944265170545E-01 + 0.7499409913981086E-01 + 0.7497867093043382E-01 + 0.7496315811658182E-01 + 0.7494756078065040E-01 + 0.7493187900302292E-01 + 0.7491611287000288E-01 + 0.7490026247744051E-01 + 0.7488432792143723E-01 + 0.7486830928724043E-01 + 0.7485220665080703E-01 + 0.7483602008870691E-01 + 0.7481974968424614E-01 + 0.7480339552374532E-01 + 0.7478695769484158E-01 + 0.7477043628977238E-01 + 0.7475383140175344E-01 + 0.7473714312070856E-01 + 0.7472037153071200E-01 + 0.7470351671532306E-01 + 0.7468657875989505E-01 + 0.7466955775146822E-01 + 0.7465245377679426E-01 + 0.7463526691968827E-01 + 0.7461799726251297E-01 + 0.7460064489022740E-01 + 0.7458320989804353E-01 + 0.7456569238362343E-01 + 0.7454809243580661E-01 + 0.7453041012613730E-01 + 0.7451264552492827E-01 + 0.7449479872147663E-01 + 0.7447686982468710E-01 + 0.7445885894132520E-01 + 0.7444076614970239E-01 + 0.7442259151259700E-01 + 0.7440433509782585E-01 + 0.7438599699597176E-01 + 0.7436757730384526E-01 + 0.7434907611713156E-01 + 0.7433049352907819E-01 + 0.7431182963232773E-01 + 0.7429308451116245E-01 + 0.7427425824037968E-01 + 0.7425535089544544E-01 + 0.7423636256433756E-01 + 0.7421729334256266E-01 + 0.7419814332443959E-01 + 0.7417891259798308E-01 + 0.7415960124927603E-01 + 0.7414020936124798E-01 + 0.7412073700927319E-01 + 0.7410118426795620E-01 + 0.7408155122390924E-01 + 0.7406183797871352E-01 + 0.7404204463415903E-01 + 0.7402217128322508E-01 + 0.7400221801305332E-01 + 0.7398218490785257E-01 + 0.7396207203642506E-01 + 0.7394187946237625E-01 + 0.7392160726205560E-01 + 0.7390125554566600E-01 + 0.7388082442858007E-01 + 0.7386031400914960E-01 + 0.7383972436240066E-01 + 0.7381905556180060E-01 + 0.7379830768259071E-01 + 0.7377748080130527E-01 + 0.7375657499765636E-01 + 0.7373559037051171E-01 + 0.7371452702593708E-01 + 0.7369338506207992E-01 + 0.7367216455370872E-01 + 0.7365086557148938E-01 + 0.7362948819634450E-01 + 0.7360803252465896E-01 + 0.7358649865356524E-01 + 0.7356488667171954E-01 + 0.7354319666098639E-01 + 0.7352142870381019E-01 + 0.7349958288788404E-01 + 0.7347765930308780E-01 + 0.7345565803589953E-01 + 0.7343357916162622E-01 + 0.7341142275343935E-01 + 0.7338918889535028E-01 + 0.7336687768936417E-01 + 0.7334448923862734E-01 + 0.7332202363603400E-01 + 0.7329948096545202E-01 + 0.7327686130984566E-01 + 0.7325416474763172E-01 + 0.7323139135512995E-01 + 0.7320854121240471E-01 + 0.7318561441321885E-01 + 0.7316261105439756E-01 + 0.7313953122686289E-01 + 0.7311637501073609E-01 + 0.7309314248549149E-01 + 0.7306983374157470E-01 + 0.7304644888004154E-01 + 0.7302298799926922E-01 + 0.7299945117088475E-01 + 0.7297583845288558E-01 + 0.7295214991401959E-01 + 0.7292838566714885E-01 + 0.7290454583616514E-01 + 0.7288063052102918E-01 + 0.7285663977337546E-01 + 0.7283257364038169E-01 + 0.7280843220425465E-01 + 0.7278421558441139E-01 + 0.7275992389886589E-01 + 0.7273555723455615E-01 + 0.7271111566095161E-01 + 0.7268659924998477E-01 + 0.7266200808561635E-01 + 0.7263734225521906E-01 + 0.7261260184847240E-01 + 0.7258778696020400E-01 + 0.7256289768562169E-01 + 0.7253793411014770E-01 + 0.7251289630778488E-01 + 0.7248778435312518E-01 + 0.7246259833435088E-01 + 0.7243733834806222E-01 + 0.7241200448912867E-01 + 0.7238659684305525E-01 + 0.7236111549240411E-01 + 0.7233556052096645E-01 + 0.7230993201557312E-01 + 0.7228423006346329E-01 + 0.7225845474988290E-01 + 0.7223260615752172E-01 + 0.7220668436954632E-01 + 0.7218068947720617E-01 + 0.7215462157726186E-01 + 0.7212848076378490E-01 + 0.7210226711511078E-01 + 0.7207598070408162E-01 + 0.7204962160940033E-01 + 0.7202318992584022E-01 + 0.7199668575075529E-01 + 0.7197010917459772E-01 + 0.7194346027808807E-01 + 0.7191673914184928E-01 + 0.7188994585565327E-01 + 0.7186308051613262E-01 + 0.7183614321791254E-01 + 0.7180913404194394E-01 + 0.7178205306387433E-01 + 0.7175490036165762E-01 + 0.7172767602029923E-01 + 0.7170038012618313E-01 + 0.7167301276824933E-01 + 0.7164557403940364E-01 + 0.7161806403258573E-01 + 0.7159048283562207E-01 + 0.7156283053212478E-01 + 0.7153510720590218E-01 + 0.7150731294303098E-01 + 0.7147944783056253E-01 + 0.7145151195466632E-01 + 0.7142350539851593E-01 + 0.7139542824471517E-01 + 0.7136728058088392E-01 + 0.7133906250321344E-01 + 0.7131077410808859E-01 + 0.7128241547939325E-01 + 0.7125398668969125E-01 + 0.7122548781333392E-01 + 0.7119691894204373E-01 + 0.7116828017579837E-01 + 0.7113957160941177E-01 + 0.7111079331805808E-01 + 0.7108194537238538E-01 + 0.7105302785364687E-01 + 0.7102404086307810E-01 + 0.7099498450378112E-01 + 0.7096585887097660E-01 + 0.7093666405204559E-01 + 0.7090740013236195E-01 + 0.7087806718242606E-01 + 0.7084866526493265E-01 + 0.7081919445155045E-01 + 0.7078965485189181E-01 + 0.7076004658540446E-01 + 0.7073036975346193E-01 + 0.7070062441983438E-01 + 0.7067081064431208E-01 + 0.7064092850597779E-01 + 0.7061097810499261E-01 + 0.7058095954126625E-01 + 0.7055087290140740E-01 + 0.7052071826432680E-01 + 0.7049049571153044E-01 + 0.7046020533709710E-01 + 0.7042984723874881E-01 + 0.7039942150738368E-01 + 0.7036892821820009E-01 + 0.7033836744450108E-01 + 0.7030773926955290E-01 + 0.7027704378858082E-01 + 0.7024628109702164E-01 + 0.7021545128463819E-01 + 0.7018455443757604E-01 + 0.7015359064038938E-01 + 0.7012255996964117E-01 + 0.7009146249931697E-01 + 0.7006029831093498E-01 + 0.7002906750520875E-01 + 0.6999777018564784E-01 + 0.6996640644704883E-01 + 0.6993497637271386E-01 + 0.6990348004507102E-01 + 0.6987191754540029E-01 + 0.6984028895417604E-01 + 0.6980859435195399E-01 + 0.6977683381985972E-01 + 0.6974500743923161E-01 + 0.6971311529768447E-01 + 0.6968115750057104E-01 + 0.6964913415595536E-01 + 0.6961704535167829E-01 + 0.6958489114624079E-01 + 0.6955267159826618E-01 + 0.6952038680279101E-01 + 0.6948803688294309E-01 + 0.6945562195511200E-01 + 0.6942314208712054E-01 + 0.6939059732736803E-01 + 0.6935798773744553E-01 + 0.6932531342052872E-01 + 0.6929257448774729E-01 + 0.6925977103805781E-01 + 0.6922690315097815E-01 + 0.6919397090470387E-01 + 0.6916097438469915E-01 + 0.6912791368259063E-01 + 0.6909478888823751E-01 + 0.6906160007718963E-01 + 0.6902834731865973E-01 + 0.6899503069095291E-01 + 0.6896165030423733E-01 + 0.6892820627542084E-01 + 0.6889469870281946E-01 + 0.6886112765204036E-01 + 0.6882749318606490E-01 + 0.6879379538204490E-01 + 0.6876003433032995E-01 + 0.6872621012159906E-01 + 0.6869232284510733E-01 + 0.6865837258941281E-01 + 0.6862435944464480E-01 + 0.6859028350706375E-01 + 0.6855614487433083E-01 + 0.6852194363323243E-01 + 0.6848767984944977E-01 + 0.6845335358709244E-01 + 0.6841896493066983E-01 + 0.6838451398556024E-01 + 0.6835000085654972E-01 + 0.6831542563422321E-01 + 0.6828078840149039E-01 + 0.6824608924022559E-01 + 0.6821132822814223E-01 + 0.6817650544185938E-01 + 0.6814162096380755E-01 + 0.6810667488887550E-01 + 0.6807166731330570E-01 + 0.6803659832601050E-01 + 0.6800146800766528E-01 + 0.6796627643943936E-01 + 0.6793102371224825E-01 + 0.6789570992281493E-01 + 0.6786033516499941E-01 + 0.6782489951846255E-01 + 0.6778940305859570E-01 + 0.6775384586401135E-01 + 0.6771822802096363E-01 + 0.6768254961684007E-01 + 0.6764681073990769E-01 + 0.6761101147951960E-01 + 0.6757515192549714E-01 + 0.6753923217243036E-01 + 0.6750325231803832E-01 + 0.6746721245576536E-01 + 0.6743111265573631E-01 + 0.6739495298028208E-01 + 0.6735873350351858E-01 + 0.6732245433054428E-01 + 0.6728611557109558E-01 + 0.6724971731813709E-01 + 0.6721325964186987E-01 + 0.6717674261219663E-01 + 0.6714016631705309E-01 + 0.6710353085739234E-01 + 0.6706683633100284E-01 + 0.6703008281490125E-01 + 0.6699327037838136E-01 + 0.6695639909928699E-01 + 0.6691946908043458E-01 + 0.6688248042892622E-01 + 0.6684543323872212E-01 + 0.6680832758416262E-01 + 0.6677116353848235E-01 + 0.6673394118271057E-01 + 0.6669666060406241E-01 + 0.6665932189035911E-01 + 0.6662192513235578E-01 + 0.6658447042201745E-01 + 0.6654695785041175E-01 + 0.6650938750568485E-01 + 0.6647175947531427E-01 + 0.6643407384126333E-01 + 0.6639633067643245E-01 + 0.6635853005394200E-01 + 0.6632067206625432E-01 + 0.6628275682269848E-01 + 0.6624478442899440E-01 + 0.6620675495935124E-01 + 0.6616866847359439E-01 + 0.6613052504041460E-01 + 0.6609232476075128E-01 + 0.6605406774271127E-01 + 0.6601575408463999E-01 + 0.6597738386719985E-01 + 0.6593895716946541E-01 + 0.6590047407640791E-01 + 0.6586193467864688E-01 + 0.6582333906566835E-01 + 0.6578468731540690E-01 + 0.6574597949997052E-01 + 0.6570721569714902E-01 + 0.6566839600774238E-01 + 0.6562952053825204E-01 + 0.6559058938483259E-01 + 0.6555160262295451E-01 + 0.6551256032588720E-01 + 0.6547346257346087E-01 + 0.6543430945240909E-01 + 0.6539510105016475E-01 + 0.6535583745771785E-01 + 0.6531651876803817E-01 + 0.6527714507274935E-01 + 0.6523771645735455E-01 + 0.6519823300564818E-01 + 0.6515869480208019E-01 + 0.6511910193254926E-01 + 0.6507945448314787E-01 + 0.6503975253996580E-01 + 0.6499999618909000E-01 + 0.6496018551648488E-01 + 0.6492032060678571E-01 + 0.6488040154381269E-01 + 0.6484042841258320E-01 + 0.6480040130414661E-01 + 0.6476032031142553E-01 + 0.6472018552586745E-01 + 0.6467999703531215E-01 + 0.6463975492688565E-01 + 0.6459945928133683E-01 + 0.6455911017131476E-01 + 0.6451870767066993E-01 + 0.6447825187459620E-01 + 0.6443774289269884E-01 + 0.6439718082895338E-01 + 0.6435656575448947E-01 + 0.6431589772909283E-01 + 0.6427517682416574E-01 + 0.6423440314262743E-01 + 0.6419357679243200E-01 + 0.6415269786987262E-01 + 0.6411176645495937E-01 + 0.6407078262695558E-01 + 0.6402974647170206E-01 + 0.6398865807992467E-01 + 0.6394751754051331E-01 + 0.6390632493021913E-01 + 0.6386508032113838E-01 + 0.6382378379288439E-01 + 0.6378243544772290E-01 + 0.6374103539195252E-01 + 0.6369958371948556E-01 + 0.6365808050520414E-01 + 0.6361652582278559E-01 + 0.6357491975266311E-01 + 0.6353326238078537E-01 + 0.6349155379421639E-01 + 0.6344979408666374E-01 + 0.6340798335465959E-01 + 0.6336612168959198E-01 + 0.6332420916559900E-01 + 0.6328224585337949E-01 + 0.6324023183634504E-01 + 0.6319816721941746E-01 + 0.6315605210869273E-01 + 0.6311388659302983E-01 + 0.6307167074582720E-01 + 0.6302940464108815E-01 + 0.6298708836182552E-01 + 0.6294472199529042E-01 + 0.6290230562965588E-01 + 0.6285983935643773E-01 + 0.6281732326791170E-01 + 0.6277475745442802E-01 + 0.6273214200274412E-01 + 0.6268947699901179E-01 + 0.6264676252461873E-01 + 0.6260399865625890E-01 + 0.6256118547159588E-01 + 0.6251832305857507E-01 + 0.6247541151048361E-01 + 0.6243245092059939E-01 + 0.6238944138197220E-01 + 0.6234638298756174E-01 + 0.6230327582566844E-01 + 0.6226011997499704E-01 + 0.6221691551315710E-01 + 0.6217366252009448E-01 + 0.6213036107828357E-01 + 0.6208701127174450E-01 + 0.6204361319861511E-01 + 0.6200016696512368E-01 + 0.6195667267143932E-01 + 0.6191313038927277E-01 + 0.6186954018215520E-01 + 0.6182590212288495E-01 + 0.6178221630536308E-01 + 0.6173848282634793E-01 + 0.6169470178050514E-01 + 0.6165087326001252E-01 + 0.6160699735617730E-01 + 0.6156307415211463E-01 + 0.6151910372576789E-01 + 0.6147508615555417E-01 + 0.6143102152275093E-01 + 0.6138690990957106E-01 + 0.6134275140471611E-01 + 0.6129854611324537E-01 + 0.6125429414224421E-01 + 0.6120999557863409E-01 + 0.6116565048299110E-01 + 0.6112125891652692E-01 + 0.6107682097152743E-01 + 0.6103233676186868E-01 + 0.6098780639516875E-01 + 0.6094322994053036E-01 + 0.6089860745332819E-01 + 0.6085393900435552E-01 + 0.6080922470756940E-01 + 0.6076446468391978E-01 + 0.6071965902998126E-01 + 0.6067480780730648E-01 + 0.6062991107625017E-01 + 0.6058496891956643E-01 + 0.6053998143712382E-01 + 0.6049494872746804E-01 + 0.6044987087785154E-01 + 0.6040474797105623E-01 + 0.6035958008987247E-01 + 0.6031436731715227E-01 + 0.6026910973585862E-01 + 0.6022380743522358E-01 + 0.6017846051439237E-01 + 0.6013306907216722E-01 + 0.6008763318648280E-01 + 0.6004215291775077E-01 + 0.5999662833091406E-01 + 0.5995105952748769E-01 + 0.5990544662501859E-01 + 0.5985978973189559E-01 + 0.5981408892462360E-01 + 0.5976834427290649E-01 + 0.5972255585325947E-01 + 0.5967672375406270E-01 + 0.5963084806480632E-01 + 0.5958492887337206E-01 + 0.5953896626615761E-01 + 0.5949296032896609E-01 + 0.5944691114323529E-01 + 0.5940081878828720E-01 + 0.5935468334886272E-01 + 0.5930850493060741E-01 + 0.5926228364402716E-01 + 0.5921601958015767E-01 + 0.5916971279262706E-01 + 0.5912336333225477E-01 + 0.5907697128362575E-01 + 0.5903053676553896E-01 + 0.5898405989492566E-01 + 0.5893754075777870E-01 + 0.5889097942353587E-01 + 0.5884437596442328E-01 + 0.5879773046529114E-01 + 0.5875104301437776E-01 + 0.5870431370104187E-01 + 0.5865754261701906E-01 + 0.5861072985425820E-01 + 0.5856387550216557E-01 + 0.5851697964731772E-01 + 0.5847004237557533E-01 + 0.5842306376693653E-01 + 0.5837604389794102E-01 + 0.5832898284741315E-01 + 0.5828188070530450E-01 + 0.5823473756488497E-01 + 0.5818755351941675E-01 + 0.5814032866214291E-01 + 0.5809306308609365E-01 + 0.5804575687714115E-01 + 0.5799841011240390E-01 + 0.5795102286893141E-01 + 0.5790359522922072E-01 + 0.5785612727930840E-01 + 0.5780861910617813E-01 + 0.5776107080153757E-01 + 0.5771348245865614E-01 + 0.5766585416840177E-01 + 0.5761818601539557E-01 + 0.5757047808328411E-01 + 0.5752273045688295E-01 + 0.5747494322257877E-01 + 0.5742711646679203E-01 + 0.5737925027491451E-01 + 0.5733134473160244E-01 + 0.5728339992824429E-01 + 0.5723541599636494E-01 + 0.5718739308227177E-01 + 0.5713933133507262E-01 + 0.5709123091188980E-01 + 0.5704309197130858E-01 + 0.5699491467331509E-01 + 0.5694669917996649E-01 + 0.5689844565255665E-01 + 0.5685015423801367E-01 + 0.5680182507197432E-01 + 0.5675345829427716E-01 + 0.5670505407474189E-01 + 0.5665661259542432E-01 + 0.5660813402895312E-01 + 0.5655961851761163E-01 + 0.5651106619773053E-01 + 0.5646247721369566E-01 + 0.5641385172300346E-01 + 0.5636518988472924E-01 + 0.5631649186465851E-01 + 0.5626775783437250E-01 + 0.5621898796174297E-01 + 0.5617018238554859E-01 + 0.5612134123142303E-01 + 0.5607246463564851E-01 + 0.5602355277273401E-01 + 0.5597460582556374E-01 + 0.5592562396338083E-01 + 0.5587660733096147E-01 + 0.5582755607100436E-01 + 0.5577847033606225E-01 + 0.5572935028803745E-01 + 0.5568019608840781E-01 + 0.5563100789199479E-01 + 0.5558178585029587E-01 + 0.5553253011387508E-01 + 0.5548324082968456E-01 + 0.5543391814385680E-01 + 0.5538456221261074E-01 + 0.5533517321212635E-01 + 0.5528575132019666E-01 + 0.5523629669642819E-01 + 0.5518680948147457E-01 + 0.5513728981562941E-01 + 0.5508773784417203E-01 + 0.5503815371512895E-01 + 0.5498853758169276E-01 + 0.5493888961980122E-01 + 0.5488921001159692E-01 + 0.5483949892219204E-01 + 0.5478975647945842E-01 + 0.5473998280724657E-01 + 0.5469017805622592E-01 + 0.5464034240776869E-01 + 0.5459047604284050E-01 + 0.5454057911999892E-01 + 0.5449065178419209E-01 + 0.5444069418116683E-01 + 0.5439070646155495E-01 + 0.5434068877749980E-01 + 0.5429064128346678E-01 + 0.5424056413953858E-01 + 0.5419045750646819E-01 + 0.5414032153912136E-01 + 0.5409015638495792E-01 + 0.5403996219181941E-01 + 0.5398973911796249E-01 + 0.5393948732860785E-01 + 0.5388920698882091E-01 + 0.5383889826211012E-01 + 0.5378856131143537E-01 + 0.5373819629068906E-01 + 0.5368780332944530E-01 + 0.5363738255383304E-01 + 0.5358693411647472E-01 + 0.5353645820663146E-01 + 0.5348595501402426E-01 + 0.5343542469724766E-01 + 0.5338486739200103E-01 + 0.5333428323533500E-01 + 0.5328367237587214E-01 + 0.5323303496663304E-01 + 0.5318237116371869E-01 + 0.5313168113237659E-01 + 0.5308096503944155E-01 + 0.5303022304560495E-01 + 0.5297945530221155E-01 + 0.5292866195964120E-01 + 0.5287784316535444E-01 + 0.5282699906445153E-01 + 0.5277612980553254E-01 + 0.5272523556175312E-01 + 0.5267431651660168E-01 + 0.5262337284104151E-01 + 0.5257240466445140E-01 + 0.5252141210794344E-01 + 0.5247039531707218E-01 + 0.5241935447834283E-01 + 0.5236828978019663E-01 + 0.5231720137410866E-01 + 0.5226608937871326E-01 + 0.5221495391792150E-01 + 0.5216379516521901E-01 + 0.5211261331717544E-01 + 0.5206140855738973E-01 + 0.5201018102118797E-01 + 0.5195893083290583E-01 + 0.5190765812974948E-01 + 0.5185636307269643E-01 + 0.5180504582531049E-01 + 0.5175370655156937E-01 + 0.5170234541585447E-01 + 0.5165096258156549E-01 + 0.5159955820342264E-01 + 0.5154813243168171E-01 + 0.5149668541635465E-01 + 0.5144521730660347E-01 + 0.5139372825141225E-01 + 0.5134221840561835E-01 + 0.5129068793599241E-01 + 0.5123913701042762E-01 + 0.5118756578816760E-01 + 0.5113597441918499E-01 + 0.5108436305290024E-01 + 0.5103273183778385E-01 + 0.5098108092176730E-01 + 0.5092941045642048E-01 + 0.5087772060998109E-01 + 0.5082601155539636E-01 + 0.5077428345395870E-01 + 0.5072253644069482E-01 + 0.5067077064781071E-01 + 0.5061898623188380E-01 + 0.5056718337818906E-01 + 0.5051536227020730E-01 + 0.5046352305308028E-01 + 0.5041166584798230E-01 + 0.5035979078428675E-01 + 0.5030789803503451E-01 + 0.5025598778710815E-01 + 0.5020406021308991E-01 + 0.5015211544986662E-01 + 0.5010015362929936E-01 + 0.5004817490056590E-01 + 0.4999617943525225E-01 + 0.4994416740530925E-01 + 0.4989213896840445E-01 + 0.4984009427237707E-01 + 0.4978803346520765E-01 + 0.4973595669678349E-01 + 0.4968386411766935E-01 + 0.4963175588167553E-01 + 0.4957963215159034E-01 + 0.4952749309173495E-01 + 0.4947533886609961E-01 + 0.4942316963820386E-01 + 0.4937098557008257E-01 + 0.4931878680264402E-01 + 0.4926657346080934E-01 + 0.4921434567630429E-01 + 0.4916210362664279E-01 + 0.4910984750726874E-01 + 0.4905757749790193E-01 + 0.4900529372981209E-01 + 0.4895299632530036E-01 + 0.4890068542565514E-01 + 0.4884836120189568E-01 + 0.4879602382705564E-01 + 0.4874367346441130E-01 + 0.4869131026912389E-01 + 0.4863893439562710E-01 + 0.4858654599493040E-01 + 0.4853414521655781E-01 + 0.4848173221230305E-01 + 0.4842930714173850E-01 + 0.4837687016604260E-01 + 0.4832442144195968E-01 + 0.4827196111858547E-01 + 0.4821948934454577E-01 + 0.4816700627411867E-01 + 0.4811451206674713E-01 + 0.4806200688177500E-01 + 0.4800949087623626E-01 + 0.4795696420605619E-01 + 0.4790442702777703E-01 + 0.4785187950031527E-01 + 0.4779932178312219E-01 + 0.4774675403227608E-01 + 0.4769417639743992E-01 + 0.4764158902776478E-01 + 0.4758899207719233E-01 + 0.4753638570447208E-01 + 0.4748377006849946E-01 + 0.4743114532758868E-01 + 0.4737851163974638E-01 + 0.4732586916200315E-01 + 0.4727321804726499E-01 + 0.4722055844733985E-01 + 0.4716789051319001E-01 + 0.4711521439400205E-01 + 0.4706253023902872E-01 + 0.4700983820553618E-01 + 0.4695713845962488E-01 + 0.4690443116724747E-01 + 0.4685171648821143E-01 + 0.4679899457873459E-01 + 0.4674626559433900E-01 + 0.4669352968747274E-01 + 0.4664078700967722E-01 + 0.4658803771258697E-01 + 0.4653528194805279E-01 + 0.4648251986799852E-01 + 0.4642975162576120E-01 + 0.4637697737638927E-01 + 0.4632419727578558E-01 + 0.4627141148855765E-01 + 0.4621862018491388E-01 + 0.4616582353074108E-01 + 0.4611302166867390E-01 + 0.4606021473374069E-01 + 0.4600740287109233E-01 + 0.4595458625193811E-01 + 0.4590176505121967E-01 + 0.4584893942739154E-01 + 0.4579610951695948E-01 + 0.4574327545639424E-01 + 0.4569043740184100E-01 + 0.4563759552337453E-01 + 0.4558474998965005E-01 + 0.4553190095924116E-01 + 0.4547904858704771E-01 + 0.4542619302749256E-01 + 0.4537333443365267E-01 + 0.4532047295833008E-01 + 0.4526760875245445E-01 + 0.4521474196421394E-01 + 0.4516187274233747E-01 + 0.4510900124709917E-01 + 0.4505612764776127E-01 + 0.4500325211146889E-01 + 0.4495037478988446E-01 + 0.4489749582841656E-01 + 0.4484461537615841E-01 + 0.4479173359394684E-01 + 0.4473885064484262E-01 + 0.4468596668526955E-01 + 0.4463308186095472E-01 + 0.4458019631745295E-01 + 0.4452731021437744E-01 + 0.4447442372336863E-01 + 0.4442153701358422E-01 + 0.4436865023301945E-01 + 0.4431576352020535E-01 + 0.4426287701762056E-01 + 0.4420999088183242E-01 + 0.4415710527253746E-01 + 0.4410422035142913E-01 + 0.4405133628374674E-01 + 0.4399845323470282E-01 + 0.4394557136144137E-01 + 0.4389269081352348E-01 + 0.4383981174038615E-01 + 0.4378693429287449E-01 + 0.4373405862252945E-01 + 0.4368118488212154E-01 + 0.4362831322923567E-01 + 0.4357544382263265E-01 + 0.4352257682026098E-01 + 0.4346971237847736E-01 + 0.4341685065351498E-01 + 0.4336399180309705E-01 + 0.4331113598648548E-01 + 0.4325828336236443E-01 + 0.4320543408335862E-01 + 0.4315258829878701E-01 + 0.4309974615922102E-01 + 0.4304690782086350E-01 + 0.4299407344146589E-01 + 0.4294124318016483E-01 + 0.4288841719909475E-01 + 0.4283559566035775E-01 + 0.4278277871368116E-01 + 0.4272996649476102E-01 + 0.4267715914122088E-01 + 0.4262435681910356E-01 + 0.4257155971154282E-01 + 0.4251876799486808E-01 + 0.4246598181106031E-01 + 0.4241320129167852E-01 + 0.4236042658020151E-01 + 0.4230765784865889E-01 + 0.4225489527277066E-01 + 0.4220213901072806E-01 + 0.4214938919888306E-01 + 0.4209664597384919E-01 + 0.4204390949188792E-01 + 0.4199117992227105E-01 + 0.4193845743315788E-01 + 0.4188574218538671E-01 + 0.4183303433730861E-01 + 0.4178033404274975E-01 + 0.4172764144353306E-01 + 0.4167495667976853E-01 + 0.4162227990281374E-01 + 0.4156961127943117E-01 + 0.4151695097718235E-01 + 0.4146429915929514E-01 + 0.4141165598584054E-01 + 0.4135902161414054E-01 + 0.4130639618523880E-01 + 0.4125377983406986E-01 + 0.4120117270694246E-01 + 0.4114857498370401E-01 + 0.4109598684990678E-01 + 0.4104340846658669E-01 + 0.4099083995784167E-01 + 0.4093828144691091E-01 + 0.4088573309196065E-01 + 0.4083319507912746E-01 + 0.4078066759009976E-01 + 0.4072815077095749E-01 + 0.4067564475294999E-01 + 0.4062314967592117E-01 + 0.4057066570801993E-01 + 0.4051819302303669E-01 + 0.4046573178432994E-01 + 0.4041328213795191E-01 + 0.4036084422882601E-01 + 0.4030841821112813E-01 + 0.4025600424717527E-01 + 0.4020360249836179E-01 + 0.4015121311691915E-01 + 0.4009883625085560E-01 + 0.4004647205029280E-01 + 0.3999412067313826E-01 + 0.3994178227906068E-01 + 0.3988945702654148E-01 + 0.3983714507189089E-01 + 0.3978484657124846E-01 + 0.3973256168207629E-01 + 0.3968029056311464E-01 + 0.3962803337263766E-01 + 0.3957579026446880E-01 + 0.3952356139016528E-01 + 0.3947134690089356E-01 + 0.3941914694630660E-01 + 0.3936696167570931E-01 + 0.3931479124340423E-01 + 0.3926263581378075E-01 + 0.3921049555233467E-01 + 0.3915837062180728E-01 + 0.3910626118201548E-01 + 0.3905416739132701E-01 + 0.3900208939542774E-01 + 0.3895002733287894E-01 + 0.3889798134709760E-01 + 0.3884595160382055E-01 + 0.3879393827505568E-01 + 0.3874194152507910E-01 + 0.3868996150091961E-01 + 0.3863799834754040E-01 + 0.3858605221815998E-01 + 0.3853412327562447E-01 + 0.3848221168232666E-01 + 0.3843031758968920E-01 + 0.3837844114234418E-01 + 0.3832658248851605E-01 + 0.3827474179505137E-01 + 0.3822291923462504E-01 + 0.3817111497037421E-01 + 0.3811932914188007E-01 + 0.3806756188551645E-01 + 0.3801581335141033E-01 + 0.3796408370731471E-01 + 0.3791237312172388E-01 + 0.3786068175795299E-01 + 0.3780900977578810E-01 + 0.3775735733207184E-01 + 0.3770572456747010E-01 + 0.3765411161701420E-01 + 0.3760251862783692E-01 + 0.3755094578021790E-01 + 0.3749939325951646E-01 + 0.3744786122563033E-01 + 0.3739634980257722E-01 + 0.3734485911411830E-01 + 0.3729338931917892E-01 + 0.3724194060303889E-01 + 0.3719051314637643E-01 + 0.3713910709693002E-01 + 0.3708772258967144E-01 + 0.3703635976496611E-01 + 0.3698501877966254E-01 + 0.3693369979377963E-01 + 0.3688240297029830E-01 + 0.3683112847679195E-01 + 0.3677987648033163E-01 + 0.3672864713307797E-01 + 0.3667744057490927E-01 + 0.3662625694715441E-01 + 0.3657509640393148E-01 + 0.3652395910485096E-01 + 0.3647284521054902E-01 + 0.3642175488505792E-01 + 0.3637068829307417E-01 + 0.3631964559513150E-01 + 0.3626862694465354E-01 + 0.3621763249400036E-01 + 0.3616666238840789E-01 + 0.3611571676666445E-01 + 0.3606479577049130E-01 + 0.3601389956663077E-01 + 0.3596302833370835E-01 + 0.3591218224473707E-01 + 0.3586136145133141E-01 + 0.3581056610007933E-01 + 0.3575979633841370E-01 + 0.3570905231535857E-01 + 0.3565833418057093E-01 + 0.3560764209410638E-01 + 0.3555697622635812E-01 + 0.3550633674597175E-01 + 0.3545572380207826E-01 + 0.3540513753357360E-01 + 0.3535457808256645E-01 + 0.3530404560501579E-01 + 0.3525354026052210E-01 + 0.3520306221049077E-01 + 0.3515261162008031E-01 + 0.3510218865464059E-01 + 0.3505179347202948E-01 + 0.3500142622192418E-01 + 0.3495108705372188E-01 + 0.3490077611817198E-01 + 0.3485049356680626E-01 + 0.3480023955219642E-01 + 0.3475001423172796E-01 + 0.3469981776418785E-01 + 0.3464965030761723E-01 + 0.3459951201834113E-01 + 0.3454940305249199E-01 + 0.3449932356775474E-01 + 0.3444927372367692E-01 + 0.3439925367933183E-01 + 0.3434926358711524E-01 + 0.3429930359516781E-01 + 0.3424937385335891E-01 + 0.3419947452092017E-01 + 0.3414960576011178E-01 + 0.3409976772897985E-01 + 0.3404996057483567E-01 + 0.3400018444355033E-01 + 0.3395043949077827E-01 + 0.3390072588507364E-01 + 0.3385104379495492E-01 + 0.3380139337697374E-01 + 0.3375177477929086E-01 + 0.3370218815043729E-01 + 0.3365263364210507E-01 + 0.3360311140712651E-01 + 0.3355362159881322E-01 + 0.3350416437182649E-01 + 0.3345473988118290E-01 + 0.3340534828788485E-01 + 0.3335598976161438E-01 + 0.3330666447146560E-01 + 0.3325737256749950E-01 + 0.3320811418510230E-01 + 0.3315888946326320E-01 + 0.3310969856686058E-01 + 0.3306054167111973E-01 + 0.3301141894289111E-01 + 0.3296233052265752E-01 + 0.3291327654593202E-01 + 0.3286425716048968E-01 + 0.3281527253367492E-01 + 0.3276632283430154E-01 + 0.3271740822629432E-01 + 0.3266852886943534E-01 + 0.3261968492124451E-01 + 0.3257087652371395E-01 + 0.3252210381196284E-01 + 0.3247336693070502E-01 + 0.3242466605825776E-01 + 0.3237600138001894E-01 + 0.3232737305988558E-01 + 0.3227878122394947E-01 + 0.3223022599593536E-01 + 0.3218170752941885E-01 + 0.3213322600576208E-01 + 0.3208478160478139E-01 + 0.3203637448497259E-01 + 0.3198800479439876E-01 + 0.3193967267965246E-01 + 0.3189137828188631E-01 + 0.3184312174103193E-01 + 0.3179490320916563E-01 + 0.3174672286191979E-01 + 0.3169858087700381E-01 + 0.3165047741716550E-01 + 0.3160241262985513E-01 + 0.3155438666196802E-01 + 0.3150639966166485E-01 + 0.3145845177778989E-01 + 0.3141054316276234E-01 + 0.3136267398445556E-01 + 0.3131484441486368E-01 + 0.3126705461495045E-01 + 0.3121930472204779E-01 + 0.3117159487110116E-01 + 0.3112392521607961E-01 + 0.3107629593231779E-01 + 0.3102870719373556E-01 + 0.3098115914760812E-01 + 0.3093365192534417E-01 + 0.3088618566544707E-01 + 0.3083876054167924E-01 + 0.3079137673837591E-01 + 0.3074403442555882E-01 + 0.3069673373932063E-01 + 0.3064947481139655E-01 + 0.3060225779292218E-01 + 0.3055508285897251E-01 + 0.3050795018405550E-01 + 0.3046085991836030E-01 + 0.3041381219612857E-01 + 0.3036680715612123E-01 + 0.3031984496292051E-01 + 0.3027292578974476E-01 + 0.3022604980271433E-01 + 0.3017921714929396E-01 + 0.3013242797409927E-01 + 0.3008568242933148E-01 + 0.3003898067748117E-01 + 0.2999232288105042E-01 + 0.2994570919272863E-01 + 0.2989913975812602E-01 + 0.2985261472526069E-01 + 0.2980613425756946E-01 + 0.2975969852421956E-01 + 0.2971330768988663E-01 + 0.2966696190612763E-01 + 0.2962066132211667E-01 + 0.2957440608669986E-01 + 0.2952819634823423E-01 + 0.2948203225583406E-01 + 0.2943591397109633E-01 + 0.2938984166551891E-01 + 0.2934381550746364E-01 + 0.2929783564236987E-01 + 0.2925190220622884E-01 + 0.2920601534196517E-01 + 0.2916017521505924E-01 + 0.2911438199547605E-01 + 0.2906863584791258E-01 + 0.2902293692841178E-01 + 0.2897728539211510E-01 + 0.2893168139240317E-01 + 0.2888612508112157E-01 + 0.2884061661006518E-01 + 0.2879515613103445E-01 + 0.2874974379583220E-01 + 0.2870437975689054E-01 + 0.2865906416891122E-01 + 0.2861379718715921E-01 + 0.2856857897185355E-01 + 0.2852340969218247E-01 + 0.2847828951748541E-01 + 0.2843321860020247E-01 + 0.2838819707659481E-01 + 0.2834322508498952E-01 + 0.2829830278675346E-01 + 0.2825343035486782E-01 + 0.2820860795748758E-01 + 0.2816383574303150E-01 + 0.2811911385501991E-01 + 0.2807444244431851E-01 + 0.2802982167646847E-01 + 0.2798525171806884E-01 + 0.2794073271838800E-01 + 0.2789626480847001E-01 + 0.2785184812272068E-01 + 0.2780748283602978E-01 + 0.2776316914580532E-01 + 0.2771890723632259E-01 + 0.2767469723202262E-01 + 0.2763053924075201E-01 + 0.2758643339666305E-01 + 0.2754237989198831E-01 + 0.2749837892556352E-01 + 0.2745443066106035E-01 + 0.2741053522152972E-01 + 0.2736669273061833E-01 + 0.2732290334296874E-01 + 0.2727916723222362E-01 + 0.2723548456977674E-01 + 0.2719185551443944E-01 + 0.2714828022110462E-01 + 0.2710475884319250E-01 + 0.2706129153052796E-01 + 0.2701787843254357E-01 + 0.2697451970409293E-01 + 0.2693121550691073E-01 + 0.2688796600238046E-01 + 0.2684477134205037E-01 + 0.2680163167083178E-01 + 0.2675854713682261E-01 + 0.2671551790654117E-01 + 0.2667254415285938E-01 + 0.2662962603955667E-01 + 0.2658676370576629E-01 + 0.2654395728681473E-01 + 0.2650120693300431E-01 + 0.2645851281553732E-01 + 0.2641587510611169E-01 + 0.2637329396144645E-01 + 0.2633076952714224E-01 + 0.2628830195007497E-01 + 0.2624589138668222E-01 + 0.2620353799706940E-01 + 0.2616124194066765E-01 + 0.2611900337485751E-01 + 0.2607682245662100E-01 + 0.2603469934207941E-01 + 0.2599263418603258E-01 + 0.2595062714264651E-01 + 0.2590867835755632E-01 + 0.2586678796943662E-01 + 0.2582495612290617E-01 + 0.2578318300536203E-01 + 0.2574146882237490E-01 + 0.2569981373518301E-01 + 0.2565821775652994E-01 + 0.2561668086802082E-01 + 0.2557520304128213E-01 + 0.2553378423106545E-01 + 0.2549242439037445E-01 + 0.2545112346995609E-01 + 0.2540988141853428E-01 + 0.2536869818619476E-01 + 0.2532757373421888E-01 + 0.2528650802915134E-01 + 0.2524550103065230E-01 + 0.2520455267263549E-01 + 0.2516366288318158E-01 + 0.2512283160693535E-01 + 0.2508205881942415E-01 + 0.2504134449844967E-01 + 0.2500068859719347E-01 + 0.2496009104459474E-01 + 0.2491955177125502E-01 + 0.2487907073140823E-01 + 0.2483864789155944E-01 + 0.2479828321541175E-01 + 0.2475797665461346E-01 + 0.2471772815769857E-01 + 0.2467753767473135E-01 + 0.2463740515892598E-01 + 0.2459733056384608E-01 + 0.2455731384203011E-01 + 0.2451735494490772E-01 + 0.2447745382408301E-01 + 0.2443761043344098E-01 + 0.2439782472817307E-01 + 0.2435809666160235E-01 + 0.2431842617834648E-01 + 0.2427881322053437E-01 + 0.2423925773586039E-01 + 0.2419975968468344E-01 + 0.2416031902898180E-01 + 0.2412093572645742E-01 + 0.2408160972973112E-01 + 0.2404234099064459E-01 + 0.2400312945558701E-01 + 0.2396397506750727E-01 + 0.2392487777172611E-01 + 0.2388583752606162E-01 + 0.2384685429233879E-01 + 0.2380792803003779E-01 + 0.2376905869272530E-01 + 0.2373024623293790E-01 + 0.2369149059875811E-01 + 0.2365279173245244E-01 + 0.2361414957692685E-01 + 0.2357556408836463E-01 + 0.2353703523216897E-01 + 0.2349856297086839E-01 + 0.2346014724939319E-01 + 0.2342178800640433E-01 + 0.2338348518684476E-01 + 0.2334523875323508E-01 + 0.2330704867095613E-01 + 0.2326891489619379E-01 + 0.2323083737193028E-01 + 0.2319281604050540E-01 + 0.2315485084986034E-01 + 0.2311694175221388E-01 + 0.2307908870096654E-01 + 0.2304129165641970E-01 + 0.2300355058160276E-01 + 0.2296586543431471E-01 + 0.2292823615609581E-01 + 0.2289066268551818E-01 + 0.2285314497238548E-01 + 0.2281568298425066E-01 + 0.2277827668898420E-01 + 0.2274092603308136E-01 + 0.2270363094509821E-01 + 0.2266639135726058E-01 + 0.2262920723222653E-01 + 0.2259207854598651E-01 + 0.2255500526750986E-01 + 0.2251798734132322E-01 + 0.2248102470673536E-01 + 0.2244411730763884E-01 + 0.2240726509590672E-01 + 0.2237046802450385E-01 + 0.2233372605221962E-01 + 0.2229703914321378E-01 + 0.2226040725942251E-01 + 0.2222383034316942E-01 + 0.2218730832727796E-01 + 0.2215084114953592E-01 + 0.2211442876706091E-01 + 0.2207807114161980E-01 + 0.2204176823539215E-01 + 0.2200552001134999E-01 + 0.2196932643186331E-01 + 0.2193318744302002E-01 + 0.2189710297441872E-01 + 0.2186107295823477E-01 + 0.2182509735682172E-01 + 0.2178917614867228E-01 + 0.2175330930455566E-01 + 0.2171749676150381E-01 + 0.2168173844758348E-01 + 0.2164603430220121E-01 + 0.2161038428881188E-01 + 0.2157478837365238E-01 + 0.2153924651491865E-01 + 0.2150375866186173E-01 + 0.2146832476348615E-01 + 0.2143294477107900E-01 + 0.2139761863727312E-01 + 0.2136234631503454E-01 + 0.2132712775883644E-01 + 0.2129196292358802E-01 + 0.2125685176068323E-01 + 0.2122179421326995E-01 + 0.2118679022358027E-01 + 0.2115183974286619E-01 + 0.2111694273340394E-01 + 0.2108209915746531E-01 + 0.2104730896940155E-01 + 0.2101257211842055E-01 + 0.2097788855435455E-01 + 0.2094325823082444E-01 + 0.2090868110270183E-01 + 0.2087415712256910E-01 + 0.2083968623705774E-01 + 0.2080526839186891E-01 + 0.2077090353370886E-01 + 0.2073659161063389E-01 + 0.2070233257194729E-01 + 0.2066812638239856E-01 + 0.2063397301777382E-01 + 0.2059987244787650E-01 + 0.2056582460553162E-01 + 0.2053182940996835E-01 + 0.2049788679325437E-01 + 0.2046399672453859E-01 + 0.2043015917942080E-01 + 0.2039637412328724E-01 + 0.2036264150643249E-01 + 0.2032896127769743E-01 + 0.2029533338224585E-01 + 0.2026175776235299E-01 + 0.2022823436269200E-01 + 0.2019476314439600E-01 + 0.2016134407531062E-01 + 0.2012797711532254E-01 + 0.2009466219874891E-01 + 0.2006139925502168E-01 + 0.2002818822907931E-01 + 0.1999502909108361E-01 + 0.1996192181293318E-01 + 0.1992886635618319E-01 + 0.1989586267345979E-01 + 0.1986291071542022E-01 + 0.1983001042023089E-01 + 0.1979716172041801E-01 + 0.1976436455637909E-01 + 0.1973161889667993E-01 + 0.1969892471603445E-01 + 0.1966628197736260E-01 + 0.1963369062244283E-01 + 0.1960115059115922E-01 + 0.1956866182978967E-01 + 0.1953622429067538E-01 + 0.1950383792726657E-01 + 0.1947150270030468E-01 + 0.1943921857416984E-01 + 0.1940698550794143E-01 + 0.1937480343954006E-01 + 0.1934267230170476E-01 + 0.1931059203631707E-01 + 0.1927856260334103E-01 + 0.1924658396486031E-01 + 0.1921465608284952E-01 + 0.1918277891916998E-01 + 0.1915095243386518E-01 + 0.1911917656983753E-01 + 0.1908745126054932E-01 + 0.1905577644365055E-01 + 0.1902415207575416E-01 + 0.1899257811871639E-01 + 0.1896105453446028E-01 + 0.1892958128505449E-01 + 0.1889815833214481E-01 + 0.1886678562424625E-01 + 0.1883546309485007E-01 + 0.1880419067835796E-01 + 0.1877296832774466E-01 + 0.1874179600725817E-01 + 0.1871067367971758E-01 + 0.1867960130011384E-01 + 0.1864857882101815E-01 + 0.1861760619155981E-01 + 0.1858668335254630E-01 + 0.1855581024396451E-01 + 0.1852498682072199E-01 + 0.1849421305648469E-01 + 0.1846348892413845E-01 + 0.1843281437249930E-01 + 0.1840218933429767E-01 + 0.1837161374437051E-01 + 0.1834108755076145E-01 + 0.1831061070603922E-01 + 0.1828018316739229E-01 + 0.1824980490438086E-01 + 0.1821947588826805E-01 + 0.1818919607468162E-01 + 0.1815896539763917E-01 + 0.1812878379049305E-01 + 0.1809865119941719E-01 + 0.1806856758001097E-01 + 0.1803853288838544E-01 + 0.1800854708245643E-01 + 0.1797861012082369E-01 + 0.1794872196077374E-01 + 0.1791888255568113E-01 + 0.1788909185814640E-01 + 0.1785934981793904E-01 + 0.1782965638052367E-01 + 0.1780001149125218E-01 + 0.1777041509947381E-01 + 0.1774086715776782E-01 + 0.1771136761934794E-01 + 0.1768191644115642E-01 + 0.1765251358170369E-01 + 0.1762315899902971E-01 + 0.1759385264960011E-01 + 0.1756459448943802E-01 + 0.1753538446581801E-01 + 0.1750622251136572E-01 + 0.1747710855852479E-01 + 0.1744804256249743E-01 + 0.1741902449869299E-01 + 0.1739005433995100E-01 + 0.1736113203385905E-01 + 0.1733225751625342E-01 + 0.1730343072846921E-01 + 0.1727465163233314E-01 + 0.1724592019430525E-01 + 0.1721723637246303E-01 + 0.1718860010941097E-01 + 0.1716001134640381E-01 + 0.1713147003174167E-01 + 0.1710297612059614E-01 + 0.1707452956814846E-01 + 0.1704613032718441E-01 + 0.1701777834925818E-01 + 0.1698947358609744E-01 + 0.1696121599018234E-01 + 0.1693300551418487E-01 + 0.1690484211059365E-01 + 0.1687672573152410E-01 + 0.1684865632906893E-01 + 0.1682063385591468E-01 + 0.1679265826538370E-01 + 0.1676472951055400E-01 + 0.1673684754179909E-01 + 0.1670901230795876E-01 + 0.1668122376030497E-01 + 0.1665348186130513E-01 + 0.1662578657657968E-01 + 0.1659813786213682E-01 + 0.1657053565233518E-01 + 0.1654297987905441E-01 + 0.1651547048933899E-01 + 0.1648800744808003E-01 + 0.1646059072024915E-01 + 0.1643322026032466E-01 + 0.1640589601622862E-01 + 0.1637861793698638E-01 + 0.1635138597775425E-01 + 0.1632420009562281E-01 + 0.1629706024277471E-01 + 0.1626996635915277E-01 + 0.1624291838323731E-01 + 0.1621591626943275E-01 + 0.1618895999273820E-01 + 0.1616204952737622E-01 + 0.1613518482034848E-01 + 0.1610836579993674E-01 + 0.1608159239879712E-01 + 0.1605486457655004E-01 + 0.1602818230232285E-01 + 0.1600154553799549E-01 + 0.1597495422537838E-01 + 0.1594840830304372E-01 + 0.1592190771925899E-01 + 0.1589545243607953E-01 + 0.1586904241620204E-01 + 0.1584267761633984E-01 + 0.1581635798868085E-01 + 0.1579008348436902E-01 + 0.1576385404862409E-01 + 0.1573766962434859E-01 + 0.1571153015855753E-01 + 0.1568543561091295E-01 + 0.1565938594343426E-01 + 0.1563338111430383E-01 + 0.1560742107569898E-01 + 0.1558150577908640E-01 + 0.1555563517277750E-01 + 0.1552980920246084E-01 + 0.1550402781428365E-01 + 0.1547829095822543E-01 + 0.1545259858592768E-01 + 0.1542695065107127E-01 + 0.1540134711428106E-01 + 0.1537578793758165E-01 + 0.1535027307635693E-01 + 0.1532480247454345E-01 + 0.1529937607518959E-01 + 0.1527399382615663E-01 + 0.1524865567970129E-01 + 0.1522336158897403E-01 + 0.1519811151298097E-01 + 0.1517290541353611E-01 + 0.1514774324919466E-01 + 0.1512262496605047E-01 + 0.1509755050725872E-01 + 0.1507251981861579E-01 + 0.1504753285093907E-01 + 0.1502258955590329E-01 + 0.1499768989201429E-01 + 0.1497283382463022E-01 + 0.1494802131692580E-01 + 0.1492325230971424E-01 + 0.1489852673196929E-01 + 0.1487384451997674E-01 + 0.1484920564145962E-01 + 0.1482461007239666E-01 + 0.1480005777759262E-01 + 0.1477554869839501E-01 + 0.1475108277348714E-01 + 0.1472665994963483E-01 + 0.1470228018250925E-01 + 0.1467794342796492E-01 + 0.1465364963905609E-01 + 0.1462939876720229E-01 + 0.1460519076396873E-01 + 0.1458102558170545E-01 + 0.1455690317299387E-01 + 0.1453282349041560E-01 + 0.1450878648655256E-01 + 0.1448479211397127E-01 + 0.1446084032472631E-01 + 0.1443693107025252E-01 + 0.1441306430218269E-01 + 0.1438923997487174E-01 + 0.1436545804442512E-01 + 0.1434171846475439E-01 + 0.1431802117807012E-01 + 0.1429436612276763E-01 + 0.1427075324672007E-01 + 0.1424718252217860E-01 + 0.1422365392478601E-01 + 0.1420016741077163E-01 + 0.1417672291053523E-01 + 0.1415332035428567E-01 + 0.1412995969336355E-01 + 0.1410664089406268E-01 + 0.1408336392091037E-01 + 0.1406012872619622E-01 + 0.1403693525775586E-01 + 0.1401378346538247E-01 + 0.1399067330447229E-01 + 0.1396760473129899E-01 + 0.1394457769618580E-01 + 0.1392159214074842E-01 + 0.1389864800678314E-01 + 0.1387574524935058E-01 + 0.1385288383383178E-01 + 0.1383006372330846E-01 + 0.1380728486396349E-01 + 0.1378454719515853E-01 + 0.1376185066110994E-01 + 0.1373919522148462E-01 + 0.1371658083894939E-01 + 0.1369400747253738E-01 + 0.1367147507542864E-01 + 0.1364898359993162E-01 + 0.1362653299234038E-01 + 0.1360412319380670E-01 + 0.1358175414772834E-01 + 0.1355942581527029E-01 + 0.1353713816553813E-01 + 0.1351489115941283E-01 + 0.1349268472863392E-01 + 0.1347051879875098E-01 + 0.1344839331601091E-01 + 0.1342630826339460E-01 + 0.1340426362624049E-01 + 0.1338225936070061E-01 + 0.1336029539551343E-01 + 0.1333837166074570E-01 + 0.1331648810625676E-01 + 0.1329464469168398E-01 + 0.1327284137471405E-01 + 0.1325107810509890E-01 + 0.1322935483068154E-01 + 0.1320767150418434E-01 + 0.1318602808788355E-01 + 0.1316442454474067E-01 + 0.1314286082741041E-01 + 0.1312133687791447E-01 + 0.1309985263873434E-01 + 0.1307840806121141E-01 + 0.1305700310151778E-01 + 0.1303563771460698E-01 + 0.1301431184988612E-01 + 0.1299302545527480E-01 + 0.1297177848409234E-01 + 0.1295057090133809E-01 + 0.1292940267295695E-01 + 0.1290827374800643E-01 + 0.1288718405640659E-01 + 0.1286613352960933E-01 + 0.1284512212618431E-01 + 0.1282414982099999E-01 + 0.1280321658467860E-01 + 0.1278232236604851E-01 + 0.1276146710730399E-01 + 0.1274065075055273E-01 + 0.1271987323769912E-01 + 0.1269913451102809E-01 + 0.1267843452735671E-01 + 0.1265777326159746E-01 + 0.1263715068740070E-01 + 0.1261656674957839E-01 + 0.1259602137385722E-01 + 0.1257551449216656E-01 + 0.1255504607202918E-01 + 0.1253461609298929E-01 + 0.1251422452192579E-01 + 0.1249387129210045E-01 + 0.1247355633162004E-01 + 0.1245327958418459E-01 + 0.1243304101483907E-01 + 0.1241284058945874E-01 + 0.1239267826411883E-01 + 0.1237255398775960E-01 + 0.1235246770956861E-01 + 0.1233241938121620E-01 + 0.1231240895530578E-01 + 0.1229243638500112E-01 + 0.1227250162511029E-01 + 0.1225260463064851E-01 + 0.1223274535140347E-01 + 0.1221292372929118E-01 + 0.1219313970638844E-01 + 0.1217339323765922E-01 + 0.1215368428838194E-01 + 0.1213401282165902E-01 + 0.1211437878383188E-01 + 0.1209478211426549E-01 + 0.1207522275705067E-01 + 0.1205570067181978E-01 + 0.1203621582132829E-01 + 0.1201676816461920E-01 + 0.1199735765458037E-01 + 0.1197798424324302E-01 + 0.1195864787752413E-01 + 0.1193934849984299E-01 + 0.1192008605428310E-01 + 0.1190086049879008E-01 + 0.1188167179769489E-01 + 0.1186251991148533E-01 + 0.1184340478652614E-01 + 0.1182432636598620E-01 + 0.1180528459488842E-01 + 0.1178627942164429E-01 + 0.1176731079564153E-01 + 0.1174837867957064E-01 + 0.1172948304897314E-01 + 0.1171062387579173E-01 + 0.1169180109658468E-01 + 0.1167301462990283E-01 + 0.1165426440409371E-01 + 0.1163555038783115E-01 + 0.1161687255992380E-01 + 0.1159823088648810E-01 + 0.1157962530804056E-01 + 0.1156105576237535E-01 + 0.1154252219641934E-01 + 0.1152402456678978E-01 + 0.1150556283004322E-01 + 0.1148713693761536E-01 + 0.1146874683806678E-01 + 0.1145039248207113E-01 + 0.1143207382999721E-01 + 0.1141379084492338E-01 + 0.1139554348393513E-01 + 0.1137733169075814E-01 + 0.1135915540749879E-01 + 0.1134101458202003E-01 + 0.1132290916889476E-01 + 0.1130483912294920E-01 + 0.1128680439762981E-01 + 0.1126880494552957E-01 + 0.1125084071876348E-01 + 0.1123291166710242E-01 + 0.1121501773959292E-01 + 0.1119715888958782E-01 + 0.1117933508106738E-01 + 0.1116154627924361E-01 + 0.1114379243506367E-01 + 0.1112607348120278E-01 + 0.1110838935067889E-01 + 0.1109073999577698E-01 + 0.1107312538190371E-01 + 0.1105554547275003E-01 + 0.1103800022094480E-01 + 0.1102048957525567E-01 + 0.1100301348559802E-01 + 0.1098557190503826E-01 + 0.1096816478715620E-01 + 0.1095079208456253E-01 + 0.1093345374850295E-01 + 0.1091614973030967E-01 + 0.1089887998403230E-01 + 0.1088164446575596E-01 + 0.1086444312981419E-01 + 0.1084727591922657E-01 + 0.1083014277263393E-01 + 0.1081304363657216E-01 + 0.1079597848159412E-01 + 0.1077894728253349E-01 + 0.1076194999841924E-01 + 0.1074498656378758E-01 + 0.1072805691169775E-01 + 0.1071116098564938E-01 + 0.1069429873773783E-01 + 0.1067747012213252E-01 + 0.1066067510579435E-01 + 0.1064391366117268E-01 + 0.1062718575224148E-01 + 0.1061049131426560E-01 + 0.1059383027662173E-01 + 0.1057720258208107E-01 + 0.1056060819627688E-01 + 0.1054404708640904E-01 + 0.1052751920677072E-01 + 0.1051102449998061E-01 + 0.1049456290877965E-01 + 0.1047813438019764E-01 + 0.1046173886330009E-01 + 0.1044537631189699E-01 + 0.1042904669760049E-01 + 0.1041274999603958E-01 + 0.1039648616457477E-01 + 0.1038025512618429E-01 + 0.1036405680124856E-01 + 0.1034789113750847E-01 + 0.1033175810988918E-01 + 0.1031565769255264E-01 + 0.1029958984247924E-01 + 0.1028355450764313E-01 + 0.1026755163573869E-01 + 0.1025158117361991E-01 + 0.1023564306792970E-01 + 0.1021973726670864E-01 + 0.1020386372090165E-01 + 0.1018802238200394E-01 + 0.1017221320661218E-01 + 0.1015643615689036E-01 + 0.1014069119406479E-01 + 0.1012497826709746E-01 + 0.1010929731786040E-01 + 0.1009364829018222E-01 + 0.1007803113742931E-01 + 0.1006244581574005E-01 + 0.1004689227898474E-01 + 0.1003137047582124E-01 + 0.1001588035434838E-01 + 0.1000042186823025E-01 + 0.9984994977803435E-02 + 0.9969599643070676E-02 + 0.9954235815722010E-02 + 0.9938903442153922E-02 + 0.9923602469657471E-02 + 0.9908332850623619E-02 + 0.9893094539096378E-02 + 0.9877887488554038E-02 + 0.9862711651033218E-02 + 0.9847566978356994E-02 + 0.9832453422844644E-02 + 0.9817370937469361E-02 + 0.9802319475138024E-02 + 0.9787298987310427E-02 + 0.9772309424432121E-02 + 0.9757350737315321E-02 + 0.9742422879023950E-02 + 0.9727525803432556E-02 + 0.9712659463804828E-02 + 0.9697823811677026E-02 + 0.9683018798293603E-02 + 0.9668244375443175E-02 + 0.9653500495702819E-02 + 0.9638787111707046E-02 + 0.9624104176025096E-02 + 0.9609451641175786E-02 + 0.9594829459585592E-02 + 0.9580237583089300E-02 + 0.9565675963285329E-02 + 0.9551144551970211E-02 + 0.9536643301563476E-02 + 0.9522172164606477E-02 + 0.9507731093641404E-02 + 0.9493320041211833E-02 + 0.9478938959832972E-02 + 0.9464587801526660E-02 + 0.9450266517896820E-02 + 0.9435975060616880E-02 + 0.9421713381962499E-02 + 0.9407481434475727E-02 + 0.9393279170699762E-02 + 0.9379106543177745E-02 + 0.9364963504449106E-02 + 0.9350850006730154E-02 + 0.9336766001669519E-02 + 0.9322711440881465E-02 + 0.9308686276452654E-02 + 0.9294690460909026E-02 + 0.9280723946793474E-02 + 0.9266786686650288E-02 + 0.9252878633024480E-02 + 0.9238999738296220E-02 + 0.9225149954205056E-02 + 0.9211329232337578E-02 + 0.9197537524591184E-02 + 0.9183774783465619E-02 + 0.9170040961527276E-02 + 0.9156336011285113E-02 + 0.9142659885189264E-02 + 0.9129012535654525E-02 + 0.9115393914793485E-02 + 0.9101803974555685E-02 + 0.9088242666775605E-02 + 0.9074709942796686E-02 + 0.9061205753835171E-02 + 0.9047730052114920E-02 + 0.9034282792017212E-02 + 0.9020863928130842E-02 + 0.9007473413020303E-02 + 0.8994111196977750E-02 + 0.8980777230348124E-02 + 0.8967471465286719E-02 + 0.8954193855026251E-02 + 0.8940944352525102E-02 + 0.8927722909349713E-02 + 0.8914529476649781E-02 + 0.8901364006238826E-02 + 0.8888226451503078E-02 + 0.8875116766031088E-02 + 0.8862034902533482E-02 + 0.8848980812637915E-02 + 0.8835954447906797E-02 + 0.8822955759920561E-02 + 0.8809984700271571E-02 + 0.8797041220787797E-02 + 0.8784125274563753E-02 + 0.8771236815117018E-02 + 0.8758375795466131E-02 + 0.8745542167319314E-02 + 0.8732735882176595E-02 + 0.8719956891720656E-02 + 0.8707205147881627E-02 + 0.8694480602616071E-02 + 0.8681783207999304E-02 + 0.8669112916192363E-02 + 0.8656469679525236E-02 + 0.8643853451331591E-02 + 0.8631264185317370E-02 + 0.8618701834393017E-02 + 0.8606166349149975E-02 + 0.8593657679788045E-02 + 0.8581175778037785E-02 + 0.8568720597912334E-02 + 0.8556292093474754E-02 + 0.8543890216656212E-02 + 0.8531514917697866E-02 + 0.8519166147120185E-02 + 0.8506843857632928E-02 + 0.8494548002847754E-02 + 0.8482278536153491E-02 + 0.8470035410208549E-02 + 0.8457818577514333E-02 + 0.8445627989909299E-02 + 0.8433463598143485E-02 + 0.8421325352945724E-02 + 0.8409213206496068E-02 + 0.8397127112238765E-02 + 0.8385067023583785E-02 + 0.8373032893364274E-02 + 0.8361024674150404E-02 + 0.8349042318137157E-02 + 0.8337085776172772E-02 + 0.8325154998813783E-02 + 0.8313249937712628E-02 + 0.8301370546504655E-02 + 0.8289516778974114E-02 + 0.8277688587631184E-02 + 0.8265885923767005E-02 + 0.8254108738725016E-02 + 0.8242356984706500E-02 + 0.8230630614344847E-02 + 0.8218929580257017E-02 + 0.8207253834980580E-02 + 0.8195603331031078E-02 + 0.8183978020640803E-02 + 0.8172377855476317E-02 + 0.8160802787154340E-02 + 0.8149252767728516E-02 + 0.8137727749711759E-02 + 0.8126227685640854E-02 + 0.8114752528073046E-02 + 0.8103302229576897E-02 + 0.8091876742561654E-02 + 0.8080476018723793E-02 + 0.8069100009562611E-02 + 0.8057748666975142E-02 + 0.8046421943735977E-02 + 0.8035119792712687E-02 + 0.8023842166040261E-02 + 0.8012589015007976E-02 + 0.8001360290984326E-02 + 0.7990155946707276E-02 + 0.7978975935753805E-02 + 0.7967820211444264E-02 + 0.7956688725760208E-02 + 0.7945581430266985E-02 + 0.7934498276538957E-02 + 0.7923439216172766E-02 + 0.7912404200789933E-02 + 0.7901393182804613E-02 + 0.7890406115636635E-02 + 0.7879442952685563E-02 + 0.7868503646299102E-02 + 0.7857588148115613E-02 + 0.7846696409741277E-02 + 0.7835828382677366E-02 + 0.7824984018389847E-02 + 0.7814163268945285E-02 + 0.7803366088036023E-02 + 0.7792592429591211E-02 + 0.7781842245902969E-02 + 0.7771115486980261E-02 + 0.7760412102872096E-02 + 0.7749732046595151E-02 + 0.7739075273367588E-02 + 0.7728441737816772E-02 + 0.7717831390577091E-02 + 0.7707244180752733E-02 + 0.7696680058531258E-02 + 0.7686138977365982E-02 + 0.7675620891306878E-02 + 0.7665125753561766E-02 + 0.7654653516046150E-02 + 0.7644204130604887E-02 + 0.7633777549721334E-02 + 0.7623373726399457E-02 + 0.7612992613420762E-02 + 0.7602634161914125E-02 + 0.7592298322306588E-02 + 0.7581985045707532E-02 + 0.7571694285515617E-02 + 0.7561425995595256E-02 + 0.7551180128888786E-02 + 0.7540956636780349E-02 + 0.7530755470540989E-02 + 0.7520576582151105E-02 + 0.7510419924226675E-02 + 0.7500285449396595E-02 + 0.7490173110215348E-02 + 0.7480082859202442E-02 + 0.7470014648711063E-02 + 0.7459968430476026E-02 + 0.7449944156091437E-02 + 0.7439941777468363E-02 + 0.7429961247108659E-02 + 0.7420002517576117E-02 + 0.7410065541378606E-02 + 0.7400150270968888E-02 + 0.7390256658761847E-02 + 0.7380384656859760E-02 + 0.7370534217202655E-02 + 0.7360705291617630E-02 + 0.7350897831469214E-02 + 0.7341111788008776E-02 + 0.7331347113478764E-02 + 0.7321603762160454E-02 + 0.7311881688518744E-02 + 0.7302180845230164E-02 + 0.7292501183038082E-02 + 0.7282842652639032E-02 + 0.7273205205220927E-02 + 0.7263588792252927E-02 + 0.7253993365702507E-02 + 0.7244418879823156E-02 + 0.7234865289520560E-02 + 0.7225332548025888E-02 + 0.7215820604762114E-02 + 0.7206329408712087E-02 + 0.7196858911630465E-02 + 0.7187409068563579E-02 + 0.7177979834489322E-02 + 0.7168571161456850E-02 + 0.7159182999668490E-02 + 0.7149815299616592E-02 + 0.7140468013435569E-02 + 0.7131141093787326E-02 + 0.7121834493545038E-02 + 0.7112548166113339E-02 + 0.7103282064948381E-02 + 0.7094036142293545E-02 + 0.7084810348809489E-02 + 0.7075604635152041E-02 + 0.7066418953284704E-02 + 0.7057253256078509E-02 + 0.7048107496343896E-02 + 0.7038981626438013E-02 + 0.7029875598556600E-02 + 0.7020789364998155E-02 + 0.7011722878348775E-02 + 0.7002676091235932E-02 + 0.6993648955870851E-02 + 0.6984641423867398E-02 + 0.6975653446828939E-02 + 0.6966684976886124E-02 + 0.6957735966572000E-02 + 0.6948806368432059E-02 + 0.6939896135026763E-02 + 0.6931005218922346E-02 + 0.6922133572457913E-02 + 0.6913281147267867E-02 + 0.6904447894858402E-02 + 0.6895633767245033E-02 + 0.6886838717247755E-02 + 0.6878062697707463E-02 + 0.6869305660609085E-02 + 0.6860567557219614E-02 + 0.6851848338989342E-02 + 0.6843147958847712E-02 + 0.6834466370371812E-02 + 0.6825803526760267E-02 + 0.6817159379896205E-02 + 0.6808533881378676E-02 + 0.6799926982763036E-02 + 0.6791338635528721E-02 + 0.6782768791209854E-02 + 0.6774217402582375E-02 + 0.6765684423566514E-02 + 0.6757169807808673E-02 + 0.6748673506395909E-02 + 0.6740195469176314E-02 + 0.6731735646931611E-02 + 0.6723293994062627E-02 + 0.6714870465822514E-02 + 0.6706465015502660E-02 + 0.6698077592629731E-02 + 0.6689708146404668E-02 + 0.6681356628392640E-02 + 0.6673022992551686E-02 + 0.6664707192795899E-02 + 0.6656409181669919E-02 + 0.6648128910986452E-02 + 0.6639866332740124E-02 + 0.6631621399733831E-02 + 0.6623394064982190E-02 + 0.6615184280735688E-02 + 0.6606991997625261E-02 + 0.6598817166131160E-02 + 0.6590659738298575E-02 + 0.6582519667912580E-02 + 0.6574396908697922E-02 + 0.6566291412820480E-02 + 0.6558203131527536E-02 + 0.6550132016248737E-02 + 0.6542078019340247E-02 + 0.6534041093434119E-02 + 0.6526021191138120E-02 + 0.6518018265003085E-02 + 0.6510032267558570E-02 + 0.6502063150887358E-02 + 0.6494110866526471E-02 + 0.6486175366047636E-02 + 0.6478256601817756E-02 + 0.6470354526719843E-02 + 0.6462469093440808E-02 + 0.6454600253577753E-02 + 0.6446747958368081E-02 + 0.6438912159641324E-02 + 0.6431092810765376E-02 + 0.6423289865333865E-02 + 0.6415503276069040E-02 + 0.6407732994523188E-02 + 0.6399978972186551E-02 + 0.6392241160817948E-02 + 0.6384519512368001E-02 + 0.6376813978814023E-02 + 0.6369124512267298E-02 + 0.6361451064888697E-02 + 0.6353793589191325E-02 + 0.6346152038703067E-02 + 0.6338526367107877E-02 + 0.6330916526733866E-02 + 0.6323322467906900E-02 + 0.6315744140932447E-02 + 0.6308181498285668E-02 + 0.6300634494145170E-02 + 0.6293103082337428E-02 + 0.6285587214045021E-02 + 0.6278086839372763E-02 + 0.6270601909219726E-02 + 0.6263132377038712E-02 + 0.6255678196778296E-02 + 0.6248239321400239E-02 + 0.6240815702262071E-02 + 0.6233407290615418E-02 + 0.6226014038448859E-02 + 0.6218635898386783E-02 + 0.6211272823063478E-02 + 0.6203924765031412E-02 + 0.6196591676806142E-02 + 0.6189273510732186E-02 + 0.6181970218545123E-02 + 0.6174681751848361E-02 + 0.6167408062557983E-02 + 0.6160149103150218E-02 + 0.6152904826160373E-02 + 0.6145675184140655E-02 + 0.6138460129659284E-02 + 0.6131259615206222E-02 + 0.6124073592610396E-02 + 0.6116902013371073E-02 + 0.6109744829219700E-02 + 0.6102601992818913E-02 + 0.6095473457058330E-02 + 0.6088359174312074E-02 + 0.6081259095935165E-02 + 0.6074173173208144E-02 + 0.6067101358528529E-02 + 0.6060043605456564E-02 + 0.6052999867470249E-02 + 0.6045970096757292E-02 + 0.6038954244795197E-02 + 0.6031952263127078E-02 + 0.6024964103618562E-02 + 0.6017989718224742E-02 + 0.6011029058959892E-02 + 0.6004082077967553E-02 + 0.5997148727431640E-02 + 0.5990228960227642E-02 + 0.5983322730021881E-02 + 0.5976429990330189E-02 + 0.5969550692593582E-02 + 0.5962684786994466E-02 + 0.5955832224242953E-02 + 0.5948992957736737E-02 + 0.5942166941696533E-02 + 0.5935354129251918E-02 + 0.5928554470894804E-02 + 0.5921767916771779E-02 + 0.5914994418662990E-02 + 0.5908233930401120E-02 + 0.5901486405821120E-02 + 0.5894751797195539E-02 + 0.5888030055753389E-02 + 0.5881321132876165E-02 + 0.5874624980888190E-02 + 0.5867941552436028E-02 + 0.5861270800133173E-02 + 0.5854612676503611E-02 + 0.5847967134048620E-02 + 0.5841334124915766E-02 + 0.5834713600763974E-02 + 0.5828105513248810E-02 + 0.5821509814478234E-02 + 0.5814926456892554E-02 + 0.5808355392986606E-02 + 0.5801796575542716E-02 + 0.5795249957451864E-02 + 0.5788715491030785E-02 + 0.5782193126887907E-02 + 0.5775682815343477E-02 + 0.5769184508308944E-02 + 0.5762698160113922E-02 + 0.5756223725194283E-02 + 0.5749761156436870E-02 + 0.5743310405477429E-02 + 0.5736871423815498E-02 + 0.5730444162260152E-02 + 0.5724028571330426E-02 + 0.5717624602427058E-02 + 0.5711232209869330E-02 + 0.5704851348554766E-02 + 0.5698481971587270E-02 + 0.5692124029069092E-02 + 0.5685777470940920E-02 + 0.5679442249471309E-02 + 0.5673118318994559E-02 + 0.5666805633536591E-02 + 0.5660504144191768E-02 + 0.5654213800691087E-02 + 0.5647934553765783E-02 + 0.5641666357856051E-02 + 0.5635409168235191E-02 + 0.5629162938156274E-02 + 0.5622927617145422E-02 + 0.5616703154433266E-02 + 0.5610489501590383E-02 + 0.5604286612468197E-02 + 0.5598094440893534E-02 + 0.5591912939657856E-02 + 0.5585742061020697E-02 + 0.5579581757088405E-02 + 0.5573431979357297E-02 + 0.5567292679172590E-02 + 0.5561163808637613E-02 + 0.5555045321399361E-02 + 0.5548937171233165E-02 + 0.5542839310364527E-02 + 0.5536751689359556E-02 + 0.5530674258845142E-02 + 0.5524606970841611E-02 + 0.5518549778159042E-02 + 0.5512502633576712E-02 + 0.5506465489692173E-02 + 0.5500438299049513E-02 + 0.5494421013844645E-02 + 0.5488413585489692E-02 + 0.5482415965322961E-02 + 0.5476428105728340E-02 + 0.5470449960319527E-02 + 0.5464481482647083E-02 + 0.5458522624775326E-02 + 0.5452573337840577E-02 + 0.5446633573244538E-02 + 0.5440703283812277E-02 + 0.5434782422818431E-02 + 0.5428870942712170E-02 + 0.5422968793885041E-02 + 0.5417075926466813E-02 + 0.5411192292639363E-02 + 0.5405317847237086E-02 + 0.5399452545044133E-02 + 0.5393596337974698E-02 + 0.5387749175970440E-02 + 0.5381911009402489E-02 + 0.5376081791302405E-02 + 0.5370261475639241E-02 + 0.5364450015771062E-02 + 0.5358647363364519E-02 + 0.5352853469801390E-02 + 0.5347068286696459E-02 + 0.5341291765995605E-02 + 0.5335523859678055E-02 + 0.5329764519840909E-02 + 0.5324013698670368E-02 + 0.5318271348496433E-02 + 0.5312537422548475E-02 + 0.5306811874407399E-02 + 0.5301094657024632E-02 + 0.5295385721417142E-02 + 0.5289685018242606E-02 + 0.5283992498812338E-02 + 0.5278308115459978E-02 + 0.5272631820656164E-02 + 0.5266963567678894E-02 + 0.5261303310476942E-02 + 0.5255651002563964E-02 + 0.5250006594214153E-02 + 0.5244370034297940E-02 + 0.5238741273127858E-02 + 0.5233120265958653E-02 + 0.5227506969066899E-02 + 0.5221901336137785E-02 + 0.5216303316392066E-02 + 0.5210712858750078E-02 + 0.5205129914901994E-02 + 0.5199554439066035E-02 + 0.5193986385306237E-02 + 0.5188425705714494E-02 + 0.5182872351437585E-02 + 0.5177326273867897E-02 + 0.5171787425353837E-02 + 0.5166255758471752E-02 + 0.5160731225890359E-02 + 0.5155213780453884E-02 + 0.5149703374972551E-02 + 0.5144199961018123E-02 + 0.5138703488920746E-02 + 0.5133213909250132E-02 + 0.5127731175219945E-02 + 0.5122255241442854E-02 + 0.5116786062011997E-02 + 0.5111323588766843E-02 + 0.5105867772951605E-02 + 0.5100418565991268E-02 + 0.5094975919690135E-02 + 0.5089539785915949E-02 + 0.5084110116967762E-02 + 0.5078686865619613E-02 + 0.5073269984580495E-02 + 0.5067859425649152E-02 + 0.5062455140093149E-02 + 0.5057057079503569E-02 + 0.5051665197029129E-02 + 0.5046279446275173E-02 + 0.5040899780262347E-02 + 0.5035526150654565E-02 + 0.5030158508930105E-02 + 0.5024796806775723E-02 + 0.5019440996130488E-02 + 0.5014091028958844E-02 + 0.5008746857344262E-02 + 0.5003408433446692E-02 + 0.4998075709621028E-02 + 0.4992748639240991E-02 + 0.4987427176012153E-02 + 0.4982111272751601E-02 + 0.4976800879992601E-02 + 0.4971495947946757E-02 + 0.4966196428472316E-02 + 0.4960902275617123E-02 + 0.4955613443411958E-02 + 0.4950329883660124E-02 + 0.4945051546589586E-02 + 0.4939778382774506E-02 + 0.4934510345017362E-02 + 0.4929247386931245E-02 + 0.4923989461877095E-02 + 0.4918736522493629E-02 + 0.4913488521277779E-02 + 0.4908245410009790E-02 + 0.4903007139421804E-02 + 0.4897773660262939E-02 + 0.4892544924804676E-02 + 0.4887320886502266E-02 + 0.4882101498752409E-02 + 0.4876886714362697E-02 + 0.4871676485902862E-02 + 0.4866470765519448E-02 + 0.4861269504020410E-02 + 0.4856072651967152E-02 + 0.4850880161114440E-02 + 0.4845691985138176E-02 + 0.4840508077811111E-02 + 0.4835328391550221E-02 + 0.4830152877613920E-02 + 0.4824981487351464E-02 + 0.4819814173055126E-02 + 0.4814650887438432E-02 + 0.4809491583124085E-02 + 0.4804336212407828E-02 + 0.4799184727515151E-02 + 0.4794037080830890E-02 + 0.4788893225022497E-02 + 0.4783753112752836E-02 + 0.4778616695993339E-02 + 0.4773483926066307E-02 + 0.4768354754224918E-02 + 0.4763229131357982E-02 + 0.4758107008174451E-02 + 0.4752988337475419E-02 + 0.4747873080280323E-02 + 0.4742761199725404E-02 + 0.4737652671429403E-02 + 0.4732547495437539E-02 + 0.4727445674566445E-02 + 0.4722347210153393E-02 + 0.4717252102010288E-02 + 0.4712160349776410E-02 + 0.4707071952133758E-02 + 0.4701986907242681E-02 + 0.4696905213397090E-02 + 0.4691826869498038E-02 + 0.4686751874613736E-02 + 0.4681680228043223E-02 + 0.4676611929584579E-02 + 0.4671546979081859E-02 + 0.4666485375822665E-02 + 0.4661427118464339E-02 + 0.4656372205702818E-02 + 0.4651320637000673E-02 + 0.4646272412281009E-02 + 0.4641227531319975E-02 + 0.4636185993146946E-02 + 0.4631147796564461E-02 + 0.4626112940467355E-02 + 0.4621081423971395E-02 + 0.4616053246221611E-02 + 0.4611028406253878E-02 + 0.4606006902968223E-02 + 0.4600988735288387E-02 + 0.4595973902525484E-02 + 0.4590962404246859E-02 + 0.4585954240071775E-02 + 0.4580949409877019E-02 + 0.4575947913625456E-02 + 0.4570949750729806E-02 + 0.4565954919144351E-02 + 0.4560963416610948E-02 + 0.4555975242031638E-02 + 0.4550990395895659E-02 + 0.4546008878663173E-02 + 0.4541030688817656E-02 + 0.4536055823404230E-02 + 0.4531084280051458E-02 + 0.4526116060127766E-02 + 0.4521151166404057E-02 + 0.4516189599861818E-02 + 0.4511231356210507E-02 + 0.4506276430257636E-02 + 0.4501324820292203E-02 + 0.4496376529842788E-02 + 0.4491431562575325E-02 + 0.4486489917467978E-02 + 0.4481551589749061E-02 + 0.4476616575119211E-02 + 0.4471684873201633E-02 + 0.4466756485251484E-02 + 0.4461831412240468E-02 + 0.4456909654195782E-02 + 0.4451991210935764E-02 + 0.4447076081114991E-02 + 0.4442164261459648E-02 + 0.4437255748680814E-02 + 0.4432350542552848E-02 + 0.4427448645542560E-02 + 0.4422550059675050E-02 + 0.4417654782909941E-02 + 0.4412762811335347E-02 + 0.4407874142057730E-02 + 0.4402988775926772E-02 + 0.4398106714628227E-02 + 0.4393227958335552E-02 + 0.4388352504459997E-02 + 0.4383480350212063E-02 + 0.4378611494822042E-02 + 0.4373745939470290E-02 + 0.4368883685172158E-02 + 0.4364024730846023E-02 + 0.4359169074343721E-02 + 0.4354316713665229E-02 + 0.4349467647445337E-02 + 0.4344621874485154E-02 + 0.4339779394340510E-02 + 0.4334940208088667E-02 + 0.4330104316897224E-02 + 0.4325271719564249E-02 + 0.4320442412374953E-02 + 0.4315616391894716E-02 + 0.4310793658574859E-02 + 0.4305974215047263E-02 + 0.4301158062998100E-02 + 0.4296345199732707E-02 + 0.4291535621327513E-02 + 0.4286729325435715E-02 + 0.4281926313223563E-02 + 0.4277126586270566E-02 + 0.4272330144268195E-02 + 0.4267536984708406E-02 + 0.4262747105115397E-02 + 0.4257960504729194E-02 + 0.4253177183850815E-02 + 0.4248397142559565E-02 + 0.4243620379739221E-02 + 0.4238846893899167E-02 + 0.4234076683920417E-02 + 0.4229309749600752E-02 + 0.4224546090865139E-02 + 0.4219785707200051E-02 + 0.4215028597530585E-02 + 0.4210274760740985E-02 + 0.4205524195663324E-02 + 0.4200776901094162E-02 + 0.4196032875994678E-02 + 0.4191292120254639E-02 + 0.4186554634086947E-02 + 0.4181820417056120E-02 + 0.4177089466953010E-02 + 0.4172361781299721E-02 + 0.4167637359102841E-02 + 0.4162916201458482E-02 + 0.4158198309477336E-02 + 0.4153483682224437E-02 + 0.4148772317233395E-02 + 0.4144064212278050E-02 + 0.4139359366872473E-02 + 0.4134657781204414E-02 + 0.4129959455181044E-02 + 0.4125264387853203E-02 + 0.4120572578107626E-02 + 0.4115884024702206E-02 + 0.4111198726195252E-02 + 0.4106516681213055E-02 + 0.4101837889792744E-02 + 0.4097162353132386E-02 + 0.4092490072039152E-02 + 0.4087821044329293E-02 + 0.4083155266536353E-02 + 0.4078492736111977E-02 + 0.4073833453624679E-02 + 0.4069177420288540E-02 + 0.4064524636396621E-02 + 0.4059875100670856E-02 + 0.4055228811685420E-02 + 0.4050585768124067E-02 + 0.4045945968769616E-02 + 0.4041309412549515E-02 + 0.4036676099504532E-02 + 0.4032046030203560E-02 + 0.4027419204420567E-02 + 0.4022795618928889E-02 + 0.4018175269819704E-02 + 0.4013558155656322E-02 + 0.4008944279651939E-02 + 0.4004333645343160E-02 + 0.3999726251944233E-02 + 0.3995122094377281E-02 + 0.3990521167949134E-02 + 0.3985923473024012E-02 + 0.3981329012615578E-02 + 0.3976737788636359E-02 + 0.3972149798290110E-02 + 0.3967565037559013E-02 + 0.3962983504124637E-02 + 0.3958405199197761E-02 + 0.3953830124356990E-02 + 0.3949258279246783E-02 + 0.3944689661402032E-02 + 0.3940124268406796E-02 + 0.3935562099411470E-02 + 0.3931003154471430E-02 + 0.3926447433565224E-02 + 0.3921894936261754E-02 + 0.3917345662010344E-02 + 0.3912799610213157E-02 + 0.3908256780164015E-02 + 0.3903717171120880E-02 + 0.3899180781664700E-02 + 0.3894647609565197E-02 + 0.3890117652723157E-02 + 0.3885590911081244E-02 + 0.3881067385881640E-02 + 0.3876547077875721E-02 + 0.3872029985152786E-02 + 0.3867516104941612E-02 + 0.3863005435494100E-02 + 0.3858497977665126E-02 + 0.3853993732680960E-02 + 0.3849492700312676E-02 + 0.3844994878414865E-02 + 0.3840500264777677E-02 + 0.3836008858054948E-02 + 0.3831520657505427E-02 + 0.3827035662423492E-02 + 0.3822553872238071E-02 + 0.3818075286426656E-02 + 0.3813599904579114E-02 + 0.3809127726602119E-02 + 0.3804658752441284E-02 + 0.3800192981211345E-02 + 0.3795730410823645E-02 + 0.3791271039180946E-02 + 0.3786814865468643E-02 + 0.3782361889859964E-02 + 0.3777912112388366E-02 + 0.3773465532014639E-02 + 0.3769022147271367E-02 + 0.3764581956991453E-02 + 0.3760144960952428E-02 + 0.3755711159109707E-02 + 0.3751280550983021E-02 + 0.3746853135397648E-02 + 0.3742428911132001E-02 + 0.3738007877227506E-02 + 0.3733590032948209E-02 + 0.3729175377492849E-02 + 0.3724763909533792E-02 + 0.3720355627510736E-02 + 0.3715950530400249E-02 + 0.3711548619054365E-02 + 0.3707149894714977E-02 + 0.3702754357014496E-02 + 0.3698362002758651E-02 + 0.3693972828582221E-02 + 0.3689586833460957E-02 + 0.3685204018547233E-02 + 0.3680824384871983E-02 + 0.3676447931797036E-02 + 0.3672074657868420E-02 + 0.3667704561686472E-02 + 0.3663337642083886E-02 + 0.3658973897953158E-02 + 0.3654613328597289E-02 + 0.3650255934114522E-02 + 0.3645901714640767E-02 + 0.3641550669035324E-02 + 0.3637202794853724E-02 + 0.3632858089839128E-02 + 0.3628516554006928E-02 + 0.3624178188598410E-02 + 0.3619842994287445E-02 + 0.3615510969241881E-02 + 0.3611182110956685E-02 + 0.3606856417722890E-02 + 0.3602533889535082E-02 + 0.3598214526585085E-02 + 0.3593898328424683E-02 + 0.3589585293887665E-02 + 0.3585275421774997E-02 + 0.3580968710942634E-02 + 0.3576665160279195E-02 + 0.3572364768817484E-02 + 0.3568067536283154E-02 + 0.3563773462608983E-02 + 0.3559482547346219E-02 + 0.3555194789142854E-02 + 0.3550910186537993E-02 + 0.3546628738826024E-02 + 0.3542350446232263E-02 + 0.3538075308905254E-02 + 0.3533803325401027E-02 + 0.3529534493232495E-02 + 0.3525268810343659E-02 + 0.3521006277093233E-02 + 0.3516746894646205E-02 + 0.3512490663345658E-02 + 0.3508237581377399E-02 + 0.3503987646588016E-02 + 0.3499740857260527E-02 + 0.3495497212269269E-02 + 0.3491256710606639E-02 + 0.3487019352296841E-02 + 0.3482785138107574E-02 + 0.3478554068515841E-02 + 0.3474326142154801E-02 + 0.3470101356972846E-02 + 0.3465879711122202E-02 + 0.3461661203351651E-02 + 0.3457445832532347E-02 + 0.3453233598316899E-02 + 0.3449024501522535E-02 + 0.3444818542944987E-02 + 0.3440615721560198E-02 + 0.3436416034902354E-02 + 0.3432219480756235E-02 + 0.3428026058855393E-02 + 0.3423835769735603E-02 + 0.3419648613312505E-02 + 0.3415464587487396E-02 + 0.3411283689772241E-02 + 0.3407105918896348E-02 + 0.3402931275586436E-02 + 0.3398759760696697E-02 + 0.3394591374029838E-02 + 0.3390426114473196E-02 + 0.3386263980807613E-02 + 0.3382104971241961E-02 + 0.3377949083724549E-02 + 0.3373796316726796E-02 + 0.3369646670608459E-02 + 0.3365500146147595E-02 + 0.3361356743500817E-02 + 0.3357216461700908E-02 + 0.3353079299637747E-02 + 0.3348945255676489E-02 + 0.3344814327680479E-02 + 0.3340686513732485E-02 + 0.3336561813944652E-02 + 0.3332440229450872E-02 + 0.3328321760802418E-02 + 0.3324206406182790E-02 + 0.3320094163187384E-02 + 0.3315985030133071E-02 + 0.3311879006776394E-02 + 0.3307776093043249E-02 + 0.3303676288820166E-02 + 0.3299579593952319E-02 + 0.3295486008157339E-02 + 0.3291395529952215E-02 + 0.3287308157186878E-02 + 0.3283223888057369E-02 + 0.3279142722337960E-02 + 0.3275064660241005E-02 + 0.3270989701472633E-02 + 0.3266917844622626E-02 + 0.3262849088159198E-02 + 0.3258783431380174E-02 + 0.3254720874540651E-02 + 0.3250661417796009E-02 + 0.3246605059644693E-02 + 0.3242551797570626E-02 + 0.3238501629544567E-02 + 0.3234454556034252E-02 + 0.3230410578280212E-02 + 0.3226369696555032E-02 + 0.3222331908768308E-02 + 0.3218297212503412E-02 + 0.3214265606356048E-02 + 0.3210237090205479E-02 + 0.3206211664003438E-02 + 0.3202189327575793E-02 + 0.3198170080663515E-02 + 0.3194153922827159E-02 + 0.3190140852633650E-02 + 0.3186130868307068E-02 + 0.3182123968208681E-02 + 0.3178120151071884E-02 + 0.3174119415710446E-02 + 0.3170121761765398E-02 + 0.3166127190031054E-02 + 0.3162135701263797E-02 + 0.3158147294473890E-02 + 0.3154161967376981E-02 + 0.3150179717879617E-02 + 0.3146200545263058E-02 + 0.3142224449335376E-02 + 0.3138251429996068E-02 + 0.3134281487416052E-02 + 0.3130314621792873E-02 + 0.3126350831916203E-02 + 0.3122390114416427E-02 + 0.3118432465937899E-02 + 0.3114477886343029E-02 + 0.3110526378116857E-02 + 0.3106577943234456E-02 + 0.3102632579595777E-02 + 0.3098690283371056E-02 + 0.3094751051755001E-02 + 0.3090814885385365E-02 + 0.3086881785604496E-02 + 0.3082951752727664E-02 + 0.3079024785335270E-02 + 0.3075100881863416E-02 + 0.3071180041185024E-02 + 0.3067262262564150E-02 + 0.3063347545237298E-02 + 0.3059435888118367E-02 + 0.3055527289969777E-02 + 0.3051621749768109E-02 + 0.3047719267289652E-02 + 0.3043819842492082E-02 + 0.3039923474868318E-02 + 0.3036030163045853E-02 + 0.3032139905593618E-02 + 0.3028252701881955E-02 + 0.3024368552069482E-02 + 0.3020487456184622E-02 + 0.3016609412820584E-02 + 0.3012734419826246E-02 + 0.3008862475369952E-02 + 0.3004993578969473E-02 + 0.3001127730491837E-02 + 0.2997264929793531E-02 + 0.2993405176709305E-02 + 0.2989548471038578E-02 + 0.2985694811713028E-02 + 0.2981844196726882E-02 + 0.2977996624139287E-02 + 0.2974152093116338E-02 + 0.2970310603457378E-02 + 0.2966472154992452E-02 + 0.2962636747658957E-02 + 0.2958804381422188E-02 + 0.2954975055549824E-02 + 0.2951148767723928E-02 + 0.2947325515464081E-02 + 0.2943505298102758E-02 + 0.2939688117124079E-02 + 0.2935873973854259E-02 + 0.2932062866433309E-02 + 0.2928254790993203E-02 + 0.2924449744463212E-02 + 0.2920647728036252E-02 + 0.2916848744268616E-02 + 0.2913052794169977E-02 + 0.2909259874856201E-02 + 0.2905469982876568E-02 + 0.2901683116206053E-02 + 0.2897899274679288E-02 + 0.2894118458292195E-02 + 0.2890340667506570E-02 + 0.2886565903107376E-02 + 0.2882794165440484E-02 + 0.2879025452293077E-02 + 0.2875259760541825E-02 + 0.2871497087859400E-02 + 0.2867737434143367E-02 + 0.2863980799667378E-02 + 0.2860227184258721E-02 + 0.2856476587104446E-02 + 0.2852729007385105E-02 + 0.2848984444915014E-02 + 0.2845242899991898E-02 + 0.2841504372569909E-02 + 0.2837768860319539E-02 + 0.2834036360009295E-02 + 0.2830306869348702E-02 + 0.2826580388971689E-02 + 0.2822856920061226E-02 + 0.2819136462790318E-02 + 0.2815419015737696E-02 + 0.2811704577368808E-02 + 0.2807993146615291E-02 + 0.2804284722799606E-02 + 0.2800579305183625E-02 + 0.2796876892506791E-02 + 0.2793177483279976E-02 + 0.2789481076475767E-02 + 0.2785787672662567E-02 + 0.2782097272740028E-02 + 0.2778409876557915E-02 + 0.2774725482140374E-02 + 0.2771044087361594E-02 + 0.2767365690748975E-02 + 0.2763690291431559E-02 + 0.2760017888613656E-02 + 0.2756348481926275E-02 + 0.2752682071206918E-02 + 0.2749018656085724E-02 + 0.2745358235391314E-02 + 0.2741700807763418E-02 + 0.2738046372244525E-02 + 0.2734394928649522E-02 + 0.2730746476860340E-02 + 0.2727101016280256E-02 + 0.2723458545828377E-02 + 0.2719819064395372E-02 + 0.2716182570808709E-02 + 0.2712549063862073E-02 + 0.2708918542570216E-02 + 0.2705291006894945E-02 + 0.2701666457046501E-02 + 0.2698044892432155E-02 + 0.2694426310758273E-02 + 0.2690810709575464E-02 + 0.2687198088142346E-02 + 0.2683588447615445E-02 + 0.2679981789034355E-02 + 0.2676378111214177E-02 + 0.2672777411659879E-02 + 0.2669179688239879E-02 + 0.2665584940635623E-02 + 0.2661993169066746E-02 + 0.2658404373358837E-02 + 0.2654818552414147E-02 + 0.2651235705005592E-02 + 0.2647655829998112E-02 + 0.2644078926369065E-02 + 0.2640504993131749E-02 + 0.2636934029640459E-02 + 0.2633366035470723E-02 + 0.2629801010234304E-02 + 0.2626238953715836E-02 + 0.2622679865756322E-02 + 0.2619123745786729E-02 + 0.2615570592173690E-02 + 0.2612020403119315E-02 + 0.2608473177072147E-02 + 0.2604928912811432E-02 + 0.2601387609225680E-02 + 0.2597849266355228E-02 + 0.2594313885062460E-02 + 0.2590781465876330E-02 + 0.2587252007241275E-02 + 0.2583725506836020E-02 + 0.2580201962830316E-02 + 0.2576681374811334E-02 + 0.2573163742621780E-02 + 0.2569649066204589E-02 + 0.2566137345650680E-02 + 0.2562628580951381E-02 + 0.2559122770381130E-02 + 0.2555619910867146E-02 + 0.2552119999688187E-02 + 0.2548623036697432E-02 + 0.2545129022796994E-02 + 0.2541637958599172E-02 + 0.2538149843778946E-02 + 0.2534664677817867E-02 + 0.2531182459766570E-02 + 0.2527703187975627E-02 + 0.2524226860746107E-02 + 0.2520753476640704E-02 + 0.2517283034447726E-02 + 0.2513815533133922E-02 + 0.2510350972939179E-02 + 0.2506889354677604E-02 + 0.2503430678628134E-02 + 0.2499974943153736E-02 + 0.2496522146194439E-02 + 0.2493072286001284E-02 + 0.2489625361382188E-02 + 0.2486181371250515E-02 + 0.2482740315513837E-02 + 0.2479302195021458E-02 + 0.2475867010416782E-02 + 0.2472434760309606E-02 + 0.2469005442296055E-02 + 0.2465579054401710E-02 + 0.2462155596384971E-02 + 0.2458735068430483E-02 + 0.2455317470291899E-02 + 0.2451902800871502E-02 + 0.2448491058973330E-02 + 0.2445082243441860E-02 + 0.2441676353163622E-02 + 0.2438273387093453E-02 + 0.2434873344812854E-02 + 0.2431476226248019E-02 + 0.2428082031118699E-02 + 0.2424690758216646E-02 + 0.2421302406079882E-02 + 0.2417916973729405E-02 + 0.2414534461240524E-02 + 0.2411154868790495E-02 + 0.2407778195455950E-02 + 0.2404404439055633E-02 + 0.2401033597474422E-02 + 0.2397665670040076E-02 + 0.2394300656955184E-02 + 0.2390938558208589E-02 + 0.2387579372676130E-02 + 0.2384223098892798E-02 + 0.2380869735764978E-02 + 0.2377519283096367E-02 + 0.2374171740810851E-02 + 0.2370827108378281E-02 + 0.2367485384698313E-02 + 0.2364146568635928E-02 + 0.2360810659074446E-02 + 0.2357477654909404E-02 + 0.2354147555149305E-02 + 0.2350820359421985E-02 + 0.2347496067566448E-02 + 0.2344174679191251E-02 + 0.2340856193287606E-02 + 0.2337540608744495E-02 + 0.2334227924451580E-02 + 0.2330918139299428E-02 + 0.2327611252215793E-02 + 0.2324307262646269E-02 + 0.2321006170416707E-02 + 0.2317707975264490E-02 + 0.2314412676330252E-02 + 0.2311120272528357E-02 + 0.2307830762746568E-02 + 0.2304544145795008E-02 + 0.2301260420478628E-02 + 0.2297979586125548E-02 + 0.2294701642858474E-02 + 0.2291426590781265E-02 + 0.2288154428624518E-02 + 0.2284885154010385E-02 + 0.2281618764834759E-02 + 0.2278355261091249E-02 + 0.2275094643654710E-02 + 0.2271836913005824E-02 + 0.2268582068312893E-02 + 0.2265330108468397E-02 + 0.2262081031985312E-02 + 0.2258834836741801E-02 + 0.2255591520649013E-02 + 0.2252351083364744E-02 + 0.2249113526095879E-02 + 0.2245878849768237E-02 + 0.2242647052727592E-02 + 0.2239418132120508E-02 + 0.2236192085896015E-02 + 0.2232968914979097E-02 + 0.2229748620961911E-02 + 0.2226531203737971E-02 + 0.2223316660068945E-02 + 0.2220104986486038E-02 + 0.2216896181871066E-02 + 0.2213690247395848E-02 + 0.2210487184132432E-02 + 0.2207286991463922E-02 + 0.2204089667906224E-02 + 0.2200895212045500E-02 + 0.2197703622784722E-02 + 0.2194514899109828E-02 + 0.2191329040267203E-02 + 0.2188146046033262E-02 + 0.2184965916230297E-02 + 0.2181788650196857E-02 + 0.2178614246753856E-02 + 0.2175442704725344E-02 + 0.2172274023214468E-02 + 0.2169108201482429E-02 + 0.2165945238672162E-02 + 0.2162785133378476E-02 + 0.2159627884043491E-02 + 0.2156473489904154E-02 + 0.2153321951985331E-02 + 0.2150173271489074E-02 + 0.2147027447514299E-02 + 0.2143884476687630E-02 + 0.2140744355748781E-02 + 0.2137607084267400E-02 + 0.2134472663579192E-02 + 0.2131341094618582E-02 + 0.2128212376141517E-02 + 0.2125086506214651E-02 + 0.2121963483575619E-02 + 0.2118843308633864E-02 + 0.2115725982008702E-02 + 0.2112611502551928E-02 + 0.2109499866831998E-02 + 0.2106391071524108E-02 + 0.2103285116575199E-02 + 0.2100182004179583E-02 + 0.2097081736028301E-02 + 0.2093984310704292E-02 + 0.2090889725695519E-02 + 0.2087797978904227E-02 + 0.2084709069380188E-02 + 0.2081622996374266E-02 + 0.2078539759360487E-02 + 0.2075459358129859E-02 + 0.2072381792453561E-02 + 0.2069307061463033E-02 + 0.2066235163806396E-02 + 0.2063166098251049E-02 + 0.2060099864396813E-02 + 0.2057036462168890E-02 + 0.2053975891251824E-02 + 0.2050918150589577E-02 + 0.2047863238986676E-02 + 0.2044811155375744E-02 + 0.2041761898889593E-02 + 0.2038715468670135E-02 + 0.2035671863719629E-02 + 0.2032631082924352E-02 + 0.2029593125231535E-02 + 0.2026557990046747E-02 + 0.2023525676974067E-02 + 0.2020496185664279E-02 + 0.2017469515924854E-02 + 0.2014445667589570E-02 + 0.2011424639918558E-02 + 0.2008406431184259E-02 + 0.2005391039579735E-02 + 0.2002378463655803E-02 + 0.1999368702289613E-02 + 0.1996361754500123E-02 + 0.1993357620342721E-02 + 0.1990356300369211E-02 + 0.1987357794842657E-02 + 0.1984362102917492E-02 + 0.1981369223482890E-02 + 0.1978379155195650E-02 + 0.1975391896271279E-02 + 0.1972407444911384E-02 + 0.1969425800134676E-02 + 0.1966446961778554E-02 + 0.1963470929689874E-02 + 0.1960497703479107E-02 + 0.1957527282631722E-02 + 0.1954559666608160E-02 + 0.1951594854767757E-02 + 0.1948632846439673E-02 + 0.1945673640400319E-02 + 0.1942717234267084E-02 + 0.1939763625589965E-02 + 0.1936812814079629E-02 + 0.1933864801824694E-02 + 0.1930919590705868E-02 + 0.1927977179247428E-02 + 0.1925037564016308E-02 + 0.1922100742068719E-02 + 0.1919166712882950E-02 + 0.1916235476650048E-02 + 0.1913307033463335E-02 + 0.1910381383189329E-02 + 0.1907458525633601E-02 + 0.1904538459641030E-02 + 0.1901621182894861E-02 + 0.1898706693184259E-02 + 0.1895794990325515E-02 + 0.1892886075437032E-02 + 0.1889979949243492E-02 + 0.1887076610286947E-02 + 0.1884176056395377E-02 + 0.1881278285686713E-02 + 0.1878383297024602E-02 + 0.1875491089406245E-02 + 0.1872601662462987E-02 + 0.1869715016668916E-02 + 0.1866831152487150E-02 + 0.1863950069466394E-02 + 0.1861071766509050E-02 + 0.1858196242427282E-02 + 0.1855323495583492E-02 + 0.1852453524176866E-02 + 0.1849586326761752E-02 + 0.1846721902905072E-02 + 0.1843860252354499E-02 + 0.1841001374940158E-02 + 0.1838145270612646E-02 + 0.1835291939247130E-02 + 0.1832441379428834E-02 + 0.1829593588740472E-02 + 0.1826748565099259E-02 + 0.1823906308790980E-02 + 0.1821066821056266E-02 + 0.1818230102350705E-02 + 0.1815396150636039E-02 + 0.1812564963397036E-02 + 0.1809736539143539E-02 + 0.1806910878034628E-02 + 0.1804087980323761E-02 + 0.1801267845300954E-02 + 0.1798450471433440E-02 + 0.1795635857314196E-02 + 0.1792824002655827E-02 + 0.1790014907670745E-02 + 0.1787208572126073E-02 + 0.1784404994212114E-02 + 0.1781604171779705E-02 + 0.1778806103353412E-02 + 0.1776010788652108E-02 + 0.1773218227519448E-02 + 0.1770428419844910E-02 + 0.1767641365560982E-02 + 0.1764857064424730E-02 + 0.1762075514728864E-02 + 0.1759296714043501E-02 + 0.1756520660557263E-02 + 0.1753747354905193E-02 + 0.1750976798312736E-02 + 0.1748208990833218E-02 + 0.1745443930227595E-02 + 0.1742681614044002E-02 + 0.1739922041113077E-02 + 0.1737165211587129E-02 + 0.1734411125587393E-02 + 0.1731659782380207E-02 + 0.1728911180766315E-02 + 0.1726165319555921E-02 + 0.1723422197621111E-02 + 0.1720681813852501E-02 + 0.1717944167443871E-02 + 0.1715209258244023E-02 + 0.1712477086165271E-02 + 0.1709747650483776E-02 + 0.1707020949755638E-02 + 0.1704296982596333E-02 + 0.1701575748657762E-02 + 0.1698857248214053E-02 + 0.1696141481168664E-02 + 0.1693428445578448E-02 + 0.1690718138942189E-02 + 0.1688010559738898E-02 + 0.1685305708791000E-02 + 0.1682603587223706E-02 + 0.1679904194748778E-02 + 0.1677207529319961E-02 + 0.1674513588830574E-02 + 0.1671822371769030E-02 + 0.1669133877017131E-02 + 0.1666448103705303E-02 + 0.1663765052276705E-02 + 0.1661084723616628E-02 + 0.1658407117796778E-02 + 0.1655732232732701E-02 + 0.1653060066012041E-02 + 0.1650390616319049E-02 + 0.1647723883837386E-02 + 0.1645059868783615E-02 + 0.1642398570340210E-02 + 0.1639739986937622E-02 + 0.1637084117195452E-02 + 0.1634430960984078E-02 + 0.1631780518642563E-02 + 0.1629132789847089E-02 + 0.1626487772322296E-02 + 0.1623845463464957E-02 + 0.1621205862277774E-02 + 0.1618568970178999E-02 + 0.1615934788603659E-02 + 0.1613303316092200E-02 + 0.1610674548870969E-02 + 0.1608048483680215E-02 + 0.1605425121189081E-02 + 0.1602804463700057E-02 + 0.1600186512539299E-02 + 0.1597571265824276E-02 + 0.1594958721026810E-02 + 0.1592348876257987E-02 + 0.1589741730687588E-02 + 0.1587137283598083E-02 + 0.1584535534514887E-02 + 0.1581936483176834E-02 + 0.1579340129259444E-02 + 0.1576746471900754E-02 + 0.1574155509991492E-02 + 0.1571567242438093E-02 + 0.1568981668208824E-02 + 0.1566398786287658E-02 + 0.1563818595818635E-02 + 0.1561241096238071E-02 + 0.1558666287031964E-02 + 0.1556094168088032E-02 + 0.1553524739681621E-02 + 0.1550958001833056E-02 + 0.1548393952242273E-02 + 0.1545832587429715E-02 + 0.1543273904848486E-02 + 0.1540717905768519E-02 + 0.1538164592415697E-02 + 0.1535613965533818E-02 + 0.1533066022880947E-02 + 0.1530520761896514E-02 + 0.1527978181040832E-02 + 0.1525438279856248E-02 + 0.1522901057870052E-02 + 0.1520366513959520E-02 + 0.1517834646637383E-02 + 0.1515305454728833E-02 + 0.1512778938487725E-02 + 0.1510255098568453E-02 + 0.1507733935117808E-02 + 0.1505215447152323E-02 + 0.1502699633526032E-02 + 0.1500186492787772E-02 + 0.1497676023131044E-02 + 0.1495168222819381E-02 + 0.1492663091104460E-02 + 0.1490160627848582E-02 + 0.1487660832872233E-02 + 0.1485163705739976E-02 + 0.1482669245935937E-02 + 0.1480177452905326E-02 + 0.1477688325997533E-02 + 0.1475201864526598E-02 + 0.1472718067022958E-02 + 0.1470236931014484E-02 + 0.1467758454179219E-02 + 0.1465282636892171E-02 + 0.1462809481362997E-02 + 0.1460338989156655E-02 + 0.1457871158021137E-02 + 0.1455405984374764E-02 + 0.1452943465647286E-02 + 0.1450483602036087E-02 + 0.1448026394185040E-02 + 0.1445571841711370E-02 + 0.1443119942788035E-02 + 0.1440670695604757E-02 + 0.1438224100147630E-02 + 0.1435780157746775E-02 + 0.1433338869262316E-02 + 0.1430900232402140E-02 + 0.1428464243654982E-02 + 0.1426030900544677E-02 + 0.1423600203744105E-02 + 0.1421172154503694E-02 + 0.1418746753026555E-02 + 0.1416323997894642E-02 + 0.1413903887576173E-02 + 0.1411486420961161E-02 + 0.1409071597286484E-02 + 0.1406659415763792E-02 + 0.1404249875355148E-02 + 0.1401842974915640E-02 + 0.1399438713450489E-02 + 0.1397037090472970E-02 + 0.1394638105604237E-02 + 0.1392241758530198E-02 + 0.1389848049047178E-02 + 0.1387456976922823E-02 + 0.1385068541163775E-02 + 0.1382682740089106E-02 + 0.1380299572005053E-02 + 0.1377919035311603E-02 + 0.1375541128453219E-02 + 0.1373165850542822E-02 + 0.1370793203203849E-02 + 0.1368423188629322E-02 + 0.1366055806863978E-02 + 0.1363691053914138E-02 + 0.1361328925461123E-02 + 0.1358969419927842E-02 + 0.1356612538458053E-02 + 0.1354258282184408E-02 + 0.1351906651104218E-02 + 0.1349557644620368E-02 + 0.1347211261954453E-02 + 0.1344867501591127E-02 + 0.1342526361823384E-02 + 0.1340187841115481E-02 + 0.1337851938287145E-02 + 0.1335518652230736E-02 + 0.1333187982605957E-02 + 0.1330859929908992E-02 + 0.1328534494586262E-02 + 0.1326211676160068E-02 + 0.1323891473619104E-02 + 0.1321573885779884E-02 + 0.1319258910686241E-02 + 0.1316946546160810E-02 + 0.1314636790952526E-02 + 0.1312329645936274E-02 + 0.1310025112234903E-02 + 0.1307723189371179E-02 + 0.1305423874951608E-02 + 0.1303127166610818E-02 + 0.1300833063592197E-02 + 0.1298541566162409E-02 + 0.1296252674380566E-02 + 0.1293966387141301E-02 + 0.1291682702962888E-02 + 0.1289401620722884E-02 + 0.1287123140212508E-02 + 0.1284847261355249E-02 + 0.1282573983644617E-02 + 0.1280303306008137E-02 + 0.1278035227330797E-02 + 0.1275769746445715E-02 + 0.1273506862149695E-02 + 0.1271246573398095E-02 + 0.1268988880070738E-02 + 0.1266733782379351E-02 + 0.1264481279906106E-02 + 0.1262231370457084E-02 + 0.1259984051556468E-02 + 0.1257739322177526E-02 + 0.1255497183391062E-02 + 0.1253257636299851E-02 + 0.1251020680029693E-02 + 0.1248786312184663E-02 + 0.1246554530564652E-02 + 0.1244325334494160E-02 + 0.1242098723906106E-02 + 0.1239874698715082E-02 + 0.1237653258773357E-02 + 0.1235434403909837E-02 + 0.1233218133229303E-02 + 0.1231004444682908E-02 + 0.1228793336189068E-02 + 0.1226584806882719E-02 + 0.1224378856927863E-02 + 0.1222175486374196E-02 + 0.1219974694204431E-02 + 0.1217776478929881E-02 + 0.1215580839354192E-02 + 0.1213387775306957E-02 + 0.1211197286834669E-02 + 0.1209009373430030E-02 + 0.1206824033613681E-02 + 0.1204641265859908E-02 + 0.1202461069696777E-02 + 0.1200283445631605E-02 + 0.1198108393905464E-02 + 0.1195935912280388E-02 + 0.1193765997307483E-02 + 0.1191598646442355E-02 + 0.1189433860682261E-02 + 0.1187271641875530E-02 + 0.1185111990933453E-02 + 0.1182954906953029E-02 + 0.1180800388783519E-02 + 0.1178648434317799E-02 + 0.1176499040472518E-02 + 0.1174352204469686E-02 + 0.1172207926749598E-02 + 0.1170066209487864E-02 + 0.1167927054109962E-02 + 0.1165790458725995E-02 + 0.1163656420555720E-02 + 0.1161524937744165E-02 + 0.1159396010415186E-02 + 0.1157269638916497E-02 + 0.1155145822708728E-02 + 0.1153024560257906E-02 + 0.1150905850081340E-02 + 0.1148789691780158E-02 + 0.1146676085599795E-02 + 0.1144565031444619E-02 + 0.1142456527535043E-02 + 0.1140350571587599E-02 + 0.1138247162020785E-02 + 0.1136146298913972E-02 + 0.1134047982559873E-02 + 0.1131952212323189E-02 + 0.1129858986425376E-02 + 0.1127768303172189E-02 + 0.1125680162704210E-02 + 0.1123594566363134E-02 + 0.1121511514903934E-02 + 0.1119431005817650E-02 + 0.1117353035506524E-02 + 0.1115277601660537E-02 + 0.1113204705347103E-02 + 0.1111134348138028E-02 + 0.1109066529798482E-02 + 0.1107001247647183E-02 + 0.1104938498995588E-02 + 0.1102878283415671E-02 + 0.1100820602107473E-02 + 0.1098765455946760E-02 + 0.1096712843648498E-02 + 0.1094662763125643E-02 + 0.1092615212433146E-02 + 0.1090570190042913E-02 + 0.1088527694527858E-02 + 0.1086487725844562E-02 + 0.1084450286010615E-02 + 0.1082415376985779E-02 + 0.1080382997205187E-02 + 0.1078353142313110E-02 + 0.1076325808420268E-02 + 0.1074300995281107E-02 + 0.1072278704149369E-02 + 0.1070258935902686E-02 + 0.1068241690187609E-02 + 0.1066226966396729E-02 + 0.1064214763528360E-02 + 0.1062205079934222E-02 + 0.1060197913922225E-02 + 0.1058193264093091E-02 + 0.1056191129302297E-02 + 0.1054191508553695E-02 + 0.1052194401903883E-02 + 0.1050199809888861E-02 + 0.1048207732759283E-02 + 0.1046218169730222E-02 + 0.1044231119779803E-02 + 0.1042246581499369E-02 + 0.1040264552781193E-02 + 0.1038285031521431E-02 + 0.1036308017258992E-02 + 0.1034333511102881E-02 + 0.1032361513957601E-02 + 0.1030392024464492E-02 + 0.1028425040126065E-02 + 0.1026460558899951E-02 + 0.1024498580602508E-02 + 0.1022539105511603E-02 + 0.1020582133361475E-02 + 0.1018627662802204E-02 + 0.1016675692381222E-02 + 0.1014726221298919E-02 + 0.1012779249441166E-02 + 0.1010834776665368E-02 + 0.1008892802246546E-02 + 0.1006953325136379E-02 + 0.1005016344227449E-02 + 0.1003081858163994E-02 + 0.1001149865523232E-02 + 0.9992203653409282E-03 + 0.9972933576633423E-03 + 0.9953688426497582E-03 + 0.9934468198016937E-03 + 0.9915272878621103E-03 + 0.9896102455642748E-03 + 0.9876956919920570E-03 + 0.9857836264438927E-03 + 0.9838740482126129E-03 + 0.9819669565479027E-03 + 0.9800623506859758E-03 + 0.9781602298488940E-03 + 0.9762605932241637E-03 + 0.9743634399940621E-03 + 0.9724687693388825E-03 + 0.9705765804363901E-03 + 0.9686868724675330E-03 + 0.9667996446544796E-03 + 0.9649148962471855E-03 + 0.9630326264959901E-03 + 0.9611528346505640E-03 + 0.9592755199603092E-03 + 0.9574006816581088E-03 + 0.9555283189321518E-03 + 0.9536584309630740E-03 + 0.9517910169276146E-03 + 0.9499260759970859E-03 + 0.9480636073465792E-03 + 0.9462036102101791E-03 + 0.9443460838657163E-03 + 0.9424910275778242E-03 + 0.9406384405229307E-03 + 0.9387883218436942E-03 + 0.9369406707159108E-03 + 0.9350954864150161E-03 + 0.9332527682338894E-03 + 0.9314125153967698E-03 + 0.9295747270226666E-03 + 0.9277394022313224E-03 + 0.9259065402996979E-03 + 0.9240761406328312E-03 + 0.9222482025991754E-03 + 0.9204227252873604E-03 + 0.9185997076672788E-03 + 0.9167791487711346E-03 + 0.9149610478405108E-03 + 0.9131454041607846E-03 + 0.9113322170289646E-03 + 0.9095214857617183E-03 + 0.9077132096732560E-03 + 0.9059073879952184E-03 + 0.9041040198853702E-03 + 0.9023031045027775E-03 + 0.9005046410370721E-03 + 0.8987086286922180E-03 + 0.8969150666665017E-03 + 0.8951239541367619E-03 + 0.8933352902751180E-03 + 0.8915490742796584E-03 + 0.8897653053968075E-03 + 0.8879839828782322E-03 + 0.8862051059749014E-03 + 0.8844286739371027E-03 + 0.8826546860099398E-03 + 0.8808831413932483E-03 + 0.8791140392633848E-03 + 0.8773473787984688E-03 + 0.8755831591847050E-03 + 0.8738213796104366E-03 + 0.8720620392717288E-03 + 0.8703051373805113E-03 + 0.8685506731536329E-03 + 0.8667986458868100E-03 + 0.8650490549609231E-03 + 0.8633018997012410E-03 + 0.8615571788398240E-03 + 0.8598148907695459E-03 + 0.8580750338524950E-03 + 0.8563376063271010E-03 + 0.8546026063961985E-03 + 0.8528700322699841E-03 + 0.8511398821754046E-03 + 0.8494121543428204E-03 + 0.8476868470376825E-03 + 0.8459639585671127E-03 + 0.8442434872374577E-03 + 0.8425254313192799E-03 + 0.8408097890606070E-03 + 0.8390965586938968E-03 + 0.8373857383733597E-03 + 0.8356773262282985E-03 + 0.8339713204520843E-03 + 0.8322677193992567E-03 + 0.8305665214460081E-03 + 0.8288677248396425E-03 + 0.8271713276594500E-03 + 0.8254773279919405E-03 + 0.8237857241612474E-03 + 0.8220965146562156E-03 + 0.8204096979088892E-03 + 0.8187252720063432E-03 + 0.8170432349129897E-03 + 0.8153635847207008E-03 + 0.8136863198773092E-03 + 0.8120114388881628E-03 + 0.8103389400595852E-03 + 0.8086688214126031E-03 + 0.8070010809591787E-03 + 0.8053357169024535E-03 + 0.8036727275913101E-03 + 0.8020121113735936E-03 + 0.8003538665670858E-03 + 0.7986979914776677E-03 + 0.7970444843756672E-03 + 0.7953933434213649E-03 + 0.7937445667546216E-03 + 0.7920981525674888E-03 + 0.7904540991344053E-03 + 0.7888124047334529E-03 + 0.7871730675812758E-03 + 0.7855360858430498E-03 + 0.7839014577114314E-03 + 0.7822691815879952E-03 + 0.7806392559656732E-03 + 0.7790116792164664E-03 + 0.7773864492942353E-03 + 0.7757635640659339E-03 + 0.7741430216583661E-03 + 0.7725248206499444E-03 + 0.7709089596468330E-03 + 0.7692954369083873E-03 + 0.7676842503747300E-03 + 0.7660753980197210E-03 + 0.7644688781855512E-03 + 0.7628646893925069E-03 + 0.7612628300691782E-03 + 0.7596632982877680E-03 + 0.7580660920360973E-03 + 0.7564712094302291E-03 + 0.7548786488320408E-03 + 0.7532884086267245E-03 + 0.7517004870946414E-03 + 0.7501148824101618E-03 + 0.7485315927556997E-03 + 0.7469506164297451E-03 + 0.7453719517927432E-03 + 0.7437955971652409E-03 + 0.7422215506947529E-03 + 0.7406498104830439E-03 + 0.7390803747132944E-03 + 0.7375132417410928E-03 + 0.7359484099395268E-03 + 0.7343858775574317E-03 + 0.7328256427056624E-03 + 0.7312677035020987E-03 + 0.7297120582109762E-03 + 0.7281587051826834E-03 + 0.7266076427483741E-03 + 0.7250588691422849E-03 + 0.7235123825698942E-03 + 0.7219681812504659E-03 + 0.7204262634355894E-03 + 0.7188866273807521E-03 + 0.7173492713168640E-03 + 0.7158141934448342E-03 + 0.7142813919724604E-03 + 0.7127508652093788E-03 + 0.7112226115312385E-03 + 0.7096966292692255E-03 + 0.7081729165123861E-03 + 0.7066514712698885E-03 + 0.7051322916597437E-03 + 0.7036153760823909E-03 + 0.7021007229811598E-03 + 0.7005883307032814E-03 + 0.6990781974671158E-03 + 0.6975703214793667E-03 + 0.6960647009118861E-03 + 0.6945613339116536E-03 + 0.6930602186472836E-03 + 0.6915613534189501E-03 + 0.6900647365751088E-03 + 0.6885703664246274E-03 + 0.6870782411622458E-03 + 0.6855883589638222E-03 + 0.6841007180852450E-03 + 0.6826153169004910E-03 + 0.6811321537799381E-03 + 0.6796512268926009E-03 + 0.6781725342495852E-03 + 0.6766960739003101E-03 + 0.6752218441764901E-03 + 0.6737498435248015E-03 + 0.6722800703423749E-03 + 0.6708125228668105E-03 + 0.6693471993036456E-03 + 0.6678840978417079E-03 + 0.6664232166426959E-03 + 0.6649645538699113E-03 + 0.6635081077595193E-03 + 0.6620538766104708E-03 + 0.6606018587280754E-03 + 0.6591520524496385E-03 + 0.6577044561268775E-03 + 0.6562590680471214E-03 + 0.6548158862682532E-03 + 0.6533749087988518E-03 + 0.6519361338055292E-03 + 0.6504995597376770E-03 + 0.6490651850646173E-03 + 0.6476330080588753E-03 + 0.6462030268066677E-03 + 0.6447752394068253E-03 + 0.6433496441249936E-03 + 0.6419262393099123E-03 + 0.6405050232923264E-03 + 0.6390859943292692E-03 + 0.6376691506592433E-03 + 0.6362544904853078E-03 + 0.6348420119405880E-03 + 0.6334317131553398E-03 + 0.6320235923914714E-03 + 0.6306176480477932E-03 + 0.6292138785199192E-03 + 0.6278122821130943E-03 + 0.6264128570828986E-03 + 0.6250156016465390E-03 + 0.6236205138540619E-03 + 0.6222275917102719E-03 + 0.6208368333878584E-03 + 0.6194482374257437E-03 + 0.6180618024012753E-03 + 0.6166775265998310E-03 + 0.6152954079732893E-03 + 0.6139154444883081E-03 + 0.6125376344642710E-03 + 0.6111619764342832E-03 + 0.6097884688519239E-03 + 0.6084171097646395E-03 + 0.6070478970957423E-03 + 0.6056808289562356E-03 + 0.6043159039102628E-03 + 0.6029531205796676E-03 + 0.6015924772510513E-03 + 0.6002339717902515E-03 + 0.5988776020711818E-03 + 0.5975233663909160E-03 + 0.5961712633288308E-03 + 0.5948212914126252E-03 + 0.5934734488580896E-03 + 0.5921277337745434E-03 + 0.5907841442743709E-03 + 0.5894426784784539E-03 + 0.5881033345128584E-03 + 0.5867661106726563E-03 + 0.5854310054861211E-03 + 0.5840980174764241E-03 + 0.5827671448581561E-03 + 0.5814383856194382E-03 + 0.5801117377852645E-03 + 0.5787871996386817E-03 + 0.5774647695605015E-03 + 0.5761444458934458E-03 + 0.5748262268665643E-03 + 0.5735101106879576E-03 + 0.5721960955687687E-03 + 0.5708841797247530E-03 + 0.5695743613766762E-03 + 0.5682666388196172E-03 + 0.5669610104085985E-03 + 0.5656574744738832E-03 + 0.5643560291640003E-03 + 0.5630566725511867E-03 + 0.5617594027931393E-03 + 0.5604642183306041E-03 + 0.5591711176599832E-03 + 0.5578800990784326E-03 + 0.5565911605500613E-03 + 0.5553043000262161E-03 + 0.5540195158118127E-03 + 0.5527368065251602E-03 + 0.5514561707310448E-03 + 0.5501776064984151E-03 + 0.5489011116659039E-03 + 0.5476266842078862E-03 + 0.5463543226023670E-03 + 0.5450840254413474E-03 + 0.5438157911465954E-03 + 0.5425496178262142E-03 + 0.5412855035584725E-03 + 0.5400234465082454E-03 + 0.5387634449247235E-03 + 0.5375054970670750E-03 + 0.5362496012505494E-03 + 0.5349957558191885E-03 + 0.5337439590750948E-03 + 0.5324942091477074E-03 + 0.5312465041230682E-03 + 0.5300008422007061E-03 + 0.5287572218109440E-03 + 0.5275156414054463E-03 + 0.5262760992616854E-03 + 0.5250385934708342E-03 + 0.5238031221317295E-03 + 0.5225696835074105E-03 + 0.5213382759538710E-03 + 0.5201088978059651E-03 + 0.5188815472973244E-03 + 0.5176562226327976E-03 + 0.5164329220308238E-03 + 0.5152116437403979E-03 + 0.5139923860141018E-03 + 0.5127751470863804E-03 + 0.5115599251703613E-03 + 0.5103467184840497E-03 + 0.5091355253131322E-03 + 0.5079263439855182E-03 + 0.5067191728116208E-03 + 0.5055140100096293E-03 + 0.5043108537686058E-03 + 0.5031097023179142E-03 + 0.5019105539872410E-03 + 0.5007134071194650E-03 + 0.4995182599746052E-03 + 0.4983251107056912E-03 + 0.4971339574617373E-03 + 0.4959447984304567E-03 + 0.4947576318261458E-03 + 0.4935724558877491E-03 + 0.4923892689911225E-03 + 0.4912080695602378E-03 + 0.4900288559400501E-03 + 0.4888516262572567E-03 + 0.4876763786034502E-03 + 0.4865031111772341E-03 + 0.4853318223291138E-03 + 0.4841625104142585E-03 + 0.4829951736876145E-03 + 0.4818298103284555E-03 + 0.4806664185325298E-03 + 0.4795049966119200E-03 + 0.4783455429241420E-03 + 0.4771880557729369E-03 + 0.4760325332968789E-03 + 0.4748789736045123E-03 + 0.4737273748967853E-03 + 0.4725777355190163E-03 + 0.4714300538234371E-03 + 0.4702843280675584E-03 + 0.4691405564302975E-03 + 0.4679987371050640E-03 + 0.4668588684051124E-03 + 0.4657209486955674E-03 + 0.4645849762856470E-03 + 0.4634509492932358E-03 + 0.4623188657971550E-03 + 0.4611887240114503E-03 + 0.4600605223828540E-03 + 0.4589342593702122E-03 + 0.4578099332194584E-03 + 0.4566875419824017E-03 + 0.4555670837388920E-03 + 0.4544485568490369E-03 + 0.4533319598070865E-03 + 0.4522172910169542E-03 + 0.4511045485364174E-03 + 0.4499937303425208E-03 + 0.4488848345677095E-03 + 0.4477778596393002E-03 + 0.4466728040118045E-03 + 0.4455696660075012E-03 + 0.4444684438162455E-03 + 0.4433691356254111E-03 + 0.4422717396519841E-03 + 0.4411762541286005E-03 + 0.4400826773008611E-03 + 0.4389910074685965E-03 + 0.4379012429458054E-03 + 0.4368133820201741E-03 + 0.4357274229242653E-03 + 0.4346433638834918E-03 + 0.4335612031173611E-03 + 0.4324809388388957E-03 + 0.4314025692689600E-03 + 0.4303260927115002E-03 + 0.4292515075188891E-03 + 0.4281788120071184E-03 + 0.4271080043179248E-03 + 0.4260390825421395E-03 + 0.4249720448633331E-03 + 0.4239068896799965E-03 + 0.4228436154179370E-03 + 0.4217822204017065E-03 + 0.4207227028334772E-03 + 0.4196650609094162E-03 + 0.4186092928407513E-03 + 0.4175553968483775E-03 + 0.4165033711695556E-03 + 0.4154532141266781E-03 + 0.4144049240698417E-03 + 0.4133584992844322E-03 + 0.4123139378896674E-03 + 0.4112712379817626E-03 + 0.4102303977914243E-03 + 0.4091914157279877E-03 + 0.4081542902046651E-03 + 0.4071190195230622E-03 + 0.4060856019059470E-03 + 0.4050540355635478E-03 + 0.4040243186423302E-03 + 0.4029964492656495E-03 + 0.4019704256272083E-03 + 0.4009462461211353E-03 + 0.3999239091749715E-03 + 0.3989034131121196E-03 + 0.3978847561038689E-03 + 0.3968679363166577E-03 + 0.3958529520262237E-03 + 0.3948398015932035E-03 + 0.3938284833551437E-03 + 0.3928189954835140E-03 + 0.3918113360828770E-03 + 0.3908055033116987E-03 + 0.3898014954995762E-03 + 0.3887993110087552E-03 + 0.3877989481270183E-03 + 0.3868004050224008E-03 + 0.3858036798603427E-03 + 0.3848087709507160E-03 + 0.3838156767266735E-03 + 0.3828243955959612E-03 + 0.3818349257504234E-03 + 0.3808472652855748E-03 + 0.3798614123401525E-03 + 0.3788773652066138E-03 + 0.3778951222111738E-03 + 0.3769146816762285E-03 + 0.3759360419173965E-03 + 0.3749592012451254E-03 + 0.3739841578779864E-03 + 0.3730109099484007E-03 + 0.3720394555991665E-03 + 0.3710697930863906E-03 + 0.3701019207220446E-03 + 0.3691358368225929E-03 + 0.3681715397205867E-03 + 0.3672090277518094E-03 + 0.3662482991643072E-03 + 0.3652893520346523E-03 + 0.3643321844297467E-03 + 0.3633767946636584E-03 + 0.3624231813050252E-03 + 0.3614713428906472E-03 + 0.3605212775519061E-03 + 0.3595729831995188E-03 + 0.3586264578540606E-03 + 0.3576817000255725E-03 + 0.3567387083563662E-03 + 0.3557974812449109E-03 + 0.3548580165631614E-03 + 0.3539203121285751E-03 + 0.3529843661681356E-03 + 0.3520501773721398E-03 + 0.3511177444108771E-03 + 0.3501870654805792E-03 + 0.3492581384930360E-03 + 0.3483309614382718E-03 + 0.3474055327059051E-03 + 0.3464818508065262E-03 + 0.3455599141271745E-03 + 0.3446397207596529E-03 + 0.3437212687573022E-03 + 0.3428045563392278E-03 + 0.3418895819305917E-03 + 0.3409763439581330E-03 + 0.3400648407129885E-03 + 0.3391550703966942E-03 + 0.3382470312081756E-03 + 0.3373407213408325E-03 + 0.3364361389863216E-03 + 0.3355332824028631E-03 + 0.3346321500249126E-03 + 0.3337327403110896E-03 + 0.3328350515161285E-03 + 0.3319390816161735E-03 + 0.3310448285919074E-03 + 0.3301522907623137E-03 + 0.3292614666922588E-03 + 0.3283723548963052E-03 + 0.3274849535503821E-03 + 0.3265992607035195E-03 + 0.3257152744781413E-03 + 0.3248329932129971E-03 + 0.3239524152848314E-03 + 0.3230735389852912E-03 + 0.3221963624781005E-03 + 0.3213208839259912E-03 + 0.3204471016430370E-03 + 0.3195750140642287E-03 + 0.3187046195955012E-03 + 0.3178359164226944E-03 + 0.3169689026401928E-03 + 0.3161035763897094E-03 + 0.3152399359685096E-03 + 0.3143779797054476E-03 + 0.3135177059209172E-03 + 0.3126591129213077E-03 + 0.3118021990078336E-03 + 0.3109469624107141E-03 + 0.3100934012978490E-03 + 0.3092415138593649E-03 + 0.3083912984707530E-03 + 0.3075427535927302E-03 + 0.3066958776002430E-03 + 0.3058506685547908E-03 + 0.3050071244481683E-03 + 0.3041652434192205E-03 + 0.3033250238750672E-03 + 0.3024864642475669E-03 + 0.3016495628867151E-03 + 0.3008143180635607E-03 + 0.2999807280416537E-03 + 0.2991487910478340E-03 + 0.2983185052902977E-03 + 0.2974898689970584E-03 + 0.2966628804769767E-03 + 0.2958375380590662E-03 + 0.2950138400295420E-03 + 0.2941917845884504E-03 + 0.2933713699282567E-03 + 0.2925525943119062E-03 + 0.2917354560770011E-03 + 0.2909199535535461E-03 + 0.2901060849633905E-03 + 0.2892938484677616E-03 + 0.2884832422692885E-03 + 0.2876742647603954E-03 + 0.2868669143864734E-03 + 0.2860611894826023E-03 + 0.2852570881383866E-03 + 0.2844546084162918E-03 + 0.2836537485623963E-03 + 0.2828545070364513E-03 + 0.2820568822882140E-03 + 0.2812608725260972E-03 + 0.2804664758094521E-03 + 0.2796736902461899E-03 + 0.2788825141995081E-03 + 0.2780929461124670E-03 + 0.2773049843570652E-03 + 0.2765186271302041E-03 + 0.2757338726038006E-03 + 0.2749507190058421E-03 + 0.2741691646360196E-03 + 0.2733892077997311E-03 + 0.2726108468152208E-03 + 0.2718340800094623E-03 + 0.2710589056833364E-03 + 0.2702853219903599E-03 + 0.2695133270327974E-03 + 0.2687429189858186E-03 + 0.2679740962238308E-03 + 0.2672068571537445E-03 + 0.2664412001264462E-03 + 0.2656771234140534E-03 + 0.2649146252818515E-03 + 0.2641537039820106E-03 + 0.2633943577568894E-03 + 0.2626365848437175E-03 + 0.2618803834490426E-03 + 0.2611257517675780E-03 + 0.2603726880404562E-03 + 0.2596211906496786E-03 + 0.2588712580023744E-03 + 0.2581228884178072E-03 + 0.2573760800793198E-03 + 0.2566308311637314E-03 + 0.2558871399330211E-03 + 0.2551450047191570E-03 + 0.2544044238446946E-03 + 0.2536653955515129E-03 + 0.2529279180469354E-03 + 0.2521919895498343E-03 + 0.2514576083184592E-03 + 0.2507247726201357E-03 + 0.2499934807829270E-03 + 0.2492637312384063E-03 + 0.2485355224158583E-03 + 0.2478088525059900E-03 + 0.2470837194840664E-03 + 0.2463601213634024E-03 + 0.2456380565181745E-03 + 0.2449175234935368E-03 + 0.2441985207625656E-03 + 0.2434810465238489E-03 + 0.2427650989121995E-03 + 0.2420506761310150E-03 + 0.2413377765125449E-03 + 0.2406263984000346E-03 + 0.2399165400638706E-03 + 0.2392081997021672E-03 + 0.2385013755173453E-03 + 0.2377960657775378E-03 + 0.2370922687852623E-03 + 0.2363899828442797E-03 + 0.2356892062623143E-03 + 0.2349899373478700E-03 + 0.2342921743700419E-03 + 0.2335959155161946E-03 + 0.2329011589675158E-03 + 0.2322079030127240E-03 + 0.2315161460576913E-03 + 0.2308258865002725E-03 + 0.2301371225985096E-03 + 0.2294498525297669E-03 + 0.2287640744897626E-03 + 0.2280797867642861E-03 + 0.2273969876653252E-03 + 0.2267156754989503E-03 + 0.2260358485576642E-03 + 0.2253575051314093E-03 + 0.2246806434883641E-03 + 0.2240052618706543E-03 + 0.2233313585156232E-03 + 0.2226589316235661E-03 + 0.2219879793712279E-03 + 0.2213184999739315E-03 + 0.2206504918494039E-03 + 0.2199839534807089E-03 + 0.2193188832731806E-03 + 0.2186552794346314E-03 + 0.2179931401426085E-03 + 0.2173324635999621E-03 + 0.2166732480428241E-03 + 0.2160154917121873E-03 + 0.2153591928827959E-03 + 0.2147043498530072E-03 + 0.2140509609196842E-03 + 0.2133990243682361E-03 + 0.2127485384799530E-03 + 0.2120995015383886E-03 + 0.2114519118335033E-03 + 0.2108057676562126E-03 + 0.2101610672890395E-03 + 0.2095178090023782E-03 + 0.2088759910684405E-03 + 0.2082356118007848E-03 + 0.2075966695447811E-03 + 0.2069591626183022E-03 + 0.2063230891556164E-03 + 0.2056884472178180E-03 + 0.2050552349698271E-03 + 0.2044234509021598E-03 + 0.2037930935658015E-03 + 0.2031641613136528E-03 + 0.2025366521832132E-03 + 0.2019105642001063E-03 + 0.2012858956712063E-03 + 0.2006626451411608E-03 + 0.2000408111200120E-03 + 0.1994203918119480E-03 + 0.1988013852860973E-03 + 0.1981837896584902E-03 + 0.1975676032105498E-03 + 0.1969528242599104E-03 + 0.1963394511444263E-03 + 0.1957274822374178E-03 + 0.1951169159108496E-03 + 0.1945077504367523E-03 + 0.1938999839943418E-03 + 0.1932936147725137E-03 + 0.1926886410679534E-03 + 0.1920850612299633E-03 + 0.1914828735722840E-03 + 0.1908820762693897E-03 + 0.1902826674629984E-03 + 0.1896846454136636E-03 + 0.1890880086118991E-03 + 0.1884927555658002E-03 + 0.1878988845755125E-03 + 0.1873063937290478E-03 + 0.1867152811202796E-03 + 0.1861255449850121E-03 + 0.1855371836355360E-03 + 0.1849501953958998E-03 + 0.1843645786377197E-03 + 0.1837803317450695E-03 + 0.1831974530333864E-03 + 0.1826159406714078E-03 + 0.1820357928136698E-03 + 0.1814570077481780E-03 + 0.1808795839124963E-03 + 0.1803035197308238E-03 + 0.1797288134056042E-03 + 0.1791554630075325E-03 + 0.1785834666542385E-03 + 0.1780128226976414E-03 + 0.1774435295598969E-03 + 0.1768755856146685E-03 + 0.1763089891209319E-03 + 0.1757437383220908E-03 + 0.1751798314960871E-03 + 0.1746172669633867E-03 + 0.1740560430401850E-03 + 0.1734961579610934E-03 + 0.1729376099073435E-03 + 0.1723803970843188E-03 + 0.1718245178320376E-03 + 0.1712699705354553E-03 + 0.1707167535536616E-03 + 0.1701648651779059E-03 + 0.1696143036877895E-03 + 0.1690650673340479E-03 + 0.1685171543283576E-03 + 0.1679705628838842E-03 + 0.1674252912715835E-03 + 0.1668813378040106E-03 + 0.1663387007880031E-03 + 0.1657973784906030E-03 + 0.1652573691641241E-03 + 0.1647186710924959E-03 + 0.1641812826516309E-03 + 0.1636452022325552E-03 + 0.1631104281447980E-03 + 0.1625769585765626E-03 + 0.1620447917111397E-03 + 0.1615139258091455E-03 + 0.1609843591923878E-03 + 0.1604560901766465E-03 + 0.1599291170260192E-03 + 0.1594034379833594E-03 + 0.1588790513278425E-03 + 0.1583559554562136E-03 + 0.1578341487871659E-03 + 0.1573136296166651E-03 + 0.1567943960395271E-03 + 0.1562764461415981E-03 + 0.1557597781839527E-03 + 0.1552443905800378E-03 + 0.1547302817343282E-03 + 0.1542174499456282E-03 + 0.1537058934646492E-03 + 0.1531956105500348E-03 + 0.1526865994898274E-03 + 0.1521788585786456E-03 + 0.1516723861082236E-03 + 0.1511671803650924E-03 + 0.1506632396350157E-03 + 0.1501605621990904E-03 + 0.1496591463339570E-03 + 0.1491589903194819E-03 + 0.1486600924642947E-03 + 0.1481624510914978E-03 + 0.1476660644947619E-03 + 0.1471709308494415E-03 + 0.1466770483021515E-03 + 0.1461844151161130E-03 + 0.1456930297869585E-03 + 0.1452028908290271E-03 + 0.1447139965344511E-03 + 0.1442263449622111E-03 + 0.1437399341841971E-03 + 0.1432547625008862E-03 + 0.1427708283396052E-03 + 0.1422881301006114E-03 + 0.1418066660573277E-03 + 0.1413264344479528E-03 + 0.1408474335381211E-03 + 0.1403696616538990E-03 + 0.1398931171265510E-03 + 0.1394177982012748E-03 + 0.1389437030240656E-03 + 0.1384708297566083E-03 + 0.1379991767898947E-03 + 0.1375287426551550E-03 + 0.1370595258164154E-03 + 0.1365915243934699E-03 + 0.1361247363997453E-03 + 0.1356591599920297E-03 + 0.1351947936766559E-03 + 0.1347316360062584E-03 + 0.1342696853147672E-03 + 0.1338089396591271E-03 + 0.1333493970963484E-03 + 0.1328910559038259E-03 + 0.1324339145073387E-03 + 0.1319779713140323E-03 + 0.1315232246123129E-03 + 0.1310696726496624E-03 + 0.1306173136854064E-03 + 0.1301661460109810E-03 + 0.1297161679230459E-03 + 0.1292673777117507E-03 + 0.1288197736581653E-03 + 0.1283733540433198E-03 + 0.1279281171571218E-03 + 0.1274840612960531E-03 + 0.1270411847516826E-03 + 0.1265994857841539E-03 + 0.1261589626416113E-03 + 0.1257196136111871E-03 + 0.1252814370970576E-03 + 0.1248444315228314E-03 + 0.1244085951711940E-03 + 0.1239739261089328E-03 + 0.1235404223999052E-03 + 0.1231080823581290E-03 + 0.1226769045012718E-03 + 0.1222468873180342E-03 + 0.1218180290550109E-03 + 0.1213903278561545E-03 + 0.1209637819023919E-03 + 0.1205383894992436E-03 + 0.1201141489777851E-03 + 0.1196910586390952E-03 + 0.1192691167336390E-03 + 0.1188483215111581E-03 + 0.1184286713000339E-03 + 0.1180101644989865E-03 + 0.1175927994890871E-03 + 0.1171765744946313E-03 + 0.1167614876663899E-03 + 0.1163475372042859E-03 + 0.1159347214923548E-03 + 0.1155230389564732E-03 + 0.1151124879302678E-03 + 0.1147030665757634E-03 + 0.1142947730424926E-03 + 0.1138876056182094E-03 + 0.1134815627264675E-03 + 0.1130766427763985E-03 + 0.1126728440005685E-03 + 0.1122701645400776E-03 + 0.1118686025833392E-03 + 0.1114681565176985E-03 + 0.1110688247812526E-03 + 0.1106706057114281E-03 + 0.1102734974389321E-03 + 0.1098774980771522E-03 + 0.1094826059532497E-03 + 0.1090888196250798E-03 + 0.1086961376219544E-03 + 0.1083045580768477E-03 + 0.1079140788962723E-03 + 0.1075246980950096E-03 + 0.1071364141990796E-03 + 0.1067492258808416E-03 + 0.1063631316181609E-03 + 0.1059781294473570E-03 + 0.1055942173519507E-03 + 0.1052113935751350E-03 + 0.1048296566679480E-03 + 0.1044490051718370E-03 + 0.1040694373195974E-03 + 0.1036909511497273E-03 + 0.1033135447487489E-03 + 0.1029372164654915E-03 + 0.1025619647326653E-03 + 0.1021877879320230E-03 + 0.1018146843171315E-03 + 0.1014426521229366E-03 + 0.1010716896313376E-03 + 0.1007017951854104E-03 + 0.1003329671262076E-03 + 0.9996520371615018E-04 + 0.9959850316317985E-04 + 0.9923286368936815E-04 + 0.9886828360409561E-04 + 0.9850476124778179E-04 + 0.9814229494216733E-04 + 0.9778088295681886E-04 + 0.9742052355262821E-04 + 0.9706121500736034E-04 + 0.9670295562296040E-04 + 0.9634574370191659E-04 + 0.9598957752725873E-04 + 0.9563445536719152E-04 + 0.9528037549392131E-04 + 0.9492733620769190E-04 + 0.9457533581980913E-04 + 0.9422437263045788E-04 + 0.9387444490529715E-04 + 0.9352555090362634E-04 + 0.9317768890362649E-04 + 0.9283085721325200E-04 + 0.9248505414186603E-04 + 0.9214027797818027E-04 + 0.9179652699361164E-04 + 0.9145379946094019E-04 + 0.9111209366655551E-04 + 0.9077140790279319E-04 + 0.9043174045861189E-04 + 0.9009308961124631E-04 + 0.8975545363549067E-04 + 0.8941883081317480E-04 + 0.8908321943834753E-04 + 0.8874861780609040E-04 + 0.8841502420777282E-04 + 0.8808243693134777E-04 + 0.8775085426314943E-04 + 0.8742027447749807E-04 + 0.8709069584290516E-04 + 0.8676211663265924E-04 + 0.8643453513851810E-04 + 0.8610794965665114E-04 + 0.8578235848138426E-04 + 0.8545775990351832E-04 + 0.8513415221278104E-04 + 0.8481153368309764E-04 + 0.8448990257243050E-04 + 0.8416925714154754E-04 + 0.8384959568316344E-04 + 0.8353091650703950E-04 + 0.8321321791768993E-04 + 0.8289649819653036E-04 + 0.8258075561880951E-04 + 0.8226598845986812E-04 + 0.8195219499524578E-04 + 0.8163937350058523E-04 + 0.8132752225372478E-04 + 0.8101663953493766E-04 + 0.8070672362513685E-04 + 0.8039777281049542E-04 + 0.8008978538027957E-04 + 0.7978275962213914E-04 + 0.7947669381583742E-04 + 0.7917158623880011E-04 + 0.7886743517119699E-04 + 0.7856423889961478E-04 + 0.7826199571119372E-04 + 0.7796070388082543E-04 + 0.7766036166846366E-04 + 0.7736096733543953E-04 + 0.7706251916979862E-04 + 0.7676501547689512E-04 + 0.7646845455695912E-04 + 0.7617283468148626E-04 + 0.7587815411247833E-04 + 0.7558441111535928E-04 + 0.7529160396444823E-04 + 0.7499973093565354E-04 + 0.7470879031188574E-04 + 0.7441878038544571E-04 + 0.7412969944823300E-04 + 0.7384154577801427E-04 + 0.7355431764248321E-04 + 0.7326801330900670E-04 + 0.7298263104429713E-04 + 0.7269816911483515E-04 + 0.7241462579381725E-04 + 0.7213199937375904E-04 + 0.7185028815040074E-04 + 0.7156949040751039E-04 + 0.7128960441120436E-04 + 0.7101062842652636E-04 + 0.7073256072379786E-04 + 0.7045539957747558E-04 + 0.7017914326133412E-04 + 0.6990379004388561E-04 + 0.6962933819150088E-04 + 0.6935578597529199E-04 + 0.6908313168155019E-04 + 0.6881137359945182E-04 + 0.6854051000867319E-04 + 0.6827053917347120E-04 + 0.6800145935661067E-04 + 0.6773326881942938E-04 + 0.6746596582203651E-04 + 0.6719954862768391E-04 + 0.6693401552330407E-04 + 0.6666936480649582E-04 + 0.6640559476334301E-04 + 0.6614270363879399E-04 + 0.6588068966890035E-04 + 0.6561955111214203E-04 + 0.6535928626711421E-04 + 0.6509989343508284E-04 + 0.6484137088624525E-04 + 0.6458371686140487E-04 + 0.6432692960335684E-04 + 0.6407100738119233E-04 + 0.6381594847709461E-04 + 0.6356175116968920E-04 + 0.6330841372313227E-04 + 0.6305593439803748E-04 + 0.6280431145987903E-04 + 0.6255354318372303E-04 + 0.6230362784498416E-04 + 0.6205456369992444E-04 + 0.6180634898490071E-04 + 0.6155898193928437E-04 + 0.6131246083959740E-04 + 0.6106678398277365E-04 + 0.6082194965641786E-04 + 0.6057795610603652E-04 + 0.6033480156559752E-04 + 0.6009248428301763E-04 + 0.5985100253662439E-04 + 0.5961035460807334E-04 + 0.5937053875900256E-04 + 0.5913155322819867E-04 + 0.5889339625566750E-04 + 0.5865606610778881E-04 + 0.5841956106691138E-04 + 0.5818387940892507E-04 + 0.5794901937686017E-04 + 0.5771497920369500E-04 + 0.5748175713279807E-04 + 0.5724935143261640E-04 + 0.5701776037505040E-04 + 0.5678698222289215E-04 + 0.5655701522751270E-04 + 0.5632785763907709E-04 + 0.5609950770188514E-04 + 0.5587196365632792E-04 + 0.5564522374682128E-04 + 0.5541928624025539E-04 + 0.5519414941117230E-04 + 0.5496981152417479E-04 + 0.5474627081727811E-04 + 0.5452352552423840E-04 + 0.5430157388491069E-04 + 0.5408041414755936E-04 + 0.5386004456139746E-04 + 0.5364046338029014E-04 + 0.5342166886151327E-04 + 0.5320365926024337E-04 + 0.5298643281830707E-04 + 0.5276998777247778E-04 + 0.5255432236322953E-04 + 0.5233943484204997E-04 + 0.5212532346234065E-04 + 0.5191198647078787E-04 + 0.5169942210388847E-04 + 0.5148762859720913E-04 + 0.5127660418504904E-04 + 0.5106634710068572E-04 + 0.5085685557992164E-04 + 0.5064812787609029E-04 + 0.5044016224987750E-04 + 0.5023295695188863E-04 + 0.5002651019938107E-04 + 0.4982082020302778E-04 + 0.4961588519444865E-04 + 0.4941170344026125E-04 + 0.4920827320840745E-04 + 0.4900559272946234E-04 + 0.4880366020089780E-04 + 0.4860247382420752E-04 + 0.4840203184065139E-04 + 0.4820233250995062E-04 + 0.4800337408512617E-04 + 0.4780515479421561E-04 + 0.4760767285952507E-04 + 0.4741092650364760E-04 + 0.4721491394970395E-04 + 0.4701963342099335E-04 + 0.4682508314346151E-04 + 0.4663126134562957E-04 + 0.4643816625654196E-04 + 0.4624579610885582E-04 + 0.4605414913707872E-04 + 0.4586322357100460E-04 + 0.4567301762107300E-04 + 0.4548352949282753E-04 + 0.4529475739927379E-04 + 0.4510669956858787E-04 + 0.4491935423057396E-04 + 0.4473271960951180E-04 + 0.4454679392377491E-04 + 0.4436157539111995E-04 + 0.4417706222609895E-04 + 0.4399325264145018E-04 + 0.4381014485059658E-04 + 0.4362773707017129E-04 + 0.4344602751770712E-04 + 0.4326501440681103E-04 + 0.4308469594227516E-04 + 0.4290507032800453E-04 + 0.4272613577777441E-04 + 0.4254789051695139E-04 + 0.4237033276909392E-04 + 0.4219346073035047E-04 + 0.4201727257978094E-04 + 0.4184176650297342E-04 + 0.4166694071999013E-04 + 0.4149279346178588E-04 + 0.4131932294710956E-04 + 0.4114652736433958E-04 + 0.4097440489745578E-04 + 0.4080295373983172E-04 + 0.4063217209695916E-04 + 0.4046205817449193E-04 + 0.4029261016998317E-04 + 0.4012382627542698E-04 + 0.3995570468346006E-04 + 0.3978824359097267E-04 + 0.3962144119635014E-04 + 0.3945529569523449E-04 + 0.3928980527570010E-04 + 0.3912496812462065E-04 + 0.3896078243333115E-04 + 0.3879724639949661E-04 + 0.3863435821999797E-04 + 0.3847211607333683E-04 + 0.3831051812414605E-04 + 0.3814956254062319E-04 + 0.3798924751571490E-04 + 0.3782957125203187E-04 + 0.3767053194493202E-04 + 0.3751212776748858E-04 + 0.3735435688858933E-04 + 0.3719721748125494E-04 + 0.3704070772495612E-04 + 0.3688482579938166E-04 + 0.3672956987845772E-04 + 0.3657493813133028E-04 + 0.3642092872739062E-04 + 0.3626753983878205E-04 + 0.3611476963884073E-04 + 0.3596261629967487E-04 + 0.3581107798919425E-04 + 0.3566015287438207E-04 + 0.3550983911959993E-04 + 0.3536013488469946E-04 + 0.3521103832929683E-04 + 0.3506254761711467E-04 + 0.3491466091561624E-04 + 0.3476737639043650E-04 + 0.3462069219154953E-04 + 0.3447460646143847E-04 + 0.3432911734874347E-04 + 0.3418422302564378E-04 + 0.3403992166972889E-04 + 0.3389621143966383E-04 + 0.3375309045822097E-04 + 0.3361055684536916E-04 + 0.3346860874876164E-04 + 0.3332724434376066E-04 + 0.3318646180301143E-04 + 0.3304625926392434E-04 + 0.3290663484530024E-04 + 0.3276758667067462E-04 + 0.3262911288430431E-04 + 0.3249121163590162E-04 + 0.3235388107240995E-04 + 0.3221711933497285E-04 + 0.3208092456363278E-04 + 0.3194529488821069E-04 + 0.3181022842728842E-04 + 0.3167572329964572E-04 + 0.3154177763190361E-04 + 0.3140838955525154E-04 + 0.3127555720065672E-04 + 0.3114327869777090E-04 + 0.3101155217585241E-04 + 0.3088037576270394E-04 + 0.3074974758275379E-04 + 0.3061966575951109E-04 + 0.3049012840180854E-04 + 0.3036113360075085E-04 + 0.3023267944913650E-04 + 0.3010476407152765E-04 + 0.2997738561286600E-04 + 0.2985054220929889E-04 + 0.2972423194904825E-04 + 0.2959845290469814E-04 + 0.2947320316500900E-04 + 0.2934848086025903E-04 + 0.2922428412658689E-04 + 0.2910061107140311E-04 + 0.2897745976398204E-04 + 0.2885482827286952E-04 + 0.2873271469170213E-04 + 0.2861111713183208E-04 + 0.2849003370226863E-04 + 0.2836946249610355E-04 + 0.2824940160064671E-04 + 0.2812984910215758E-04 + 0.2801080308392695E-04 + 0.2789226162861261E-04 + 0.2777422281325625E-04 + 0.2765668470669985E-04 + 0.2753964537835045E-04 + 0.2742310291601002E-04 + 0.2730705542175971E-04 + 0.2719150099165116E-04 + 0.2707643767975603E-04 + 0.2696186352324201E-04 + 0.2684777657086400E-04 + 0.2673417490816213E-04 + 0.2662105662769407E-04 + 0.2650841980644776E-04 + 0.2639626249638680E-04 + 0.2628458274728578E-04 + 0.2617337861015993E-04 + 0.2606264813708330E-04 + 0.2595238938058481E-04 + 0.2584260039629047E-04 + 0.2573327924120647E-04 + 0.2562442396818368E-04 + 0.2551603261542893E-04 + 0.2540810321802992E-04 + 0.2530063381986628E-04 + 0.2519362248038664E-04 + 0.2508706725934218E-04 + 0.2498096618996232E-04 + 0.2487531728062326E-04 + 0.2477011854215676E-04 + 0.2466536801358919E-04 + 0.2456106374784262E-04 + 0.2445720379060809E-04 + 0.2435378615886147E-04 + 0.2425080886257864E-04 + 0.2414826991563285E-04 + 0.2404616733950846E-04 + 0.2394449915644245E-04 + 0.2384326338555080E-04 + 0.2374245804273641E-04 + 0.2364208114281232E-04 + 0.2354213069180785E-04 + 0.2344260469097365E-04 + 0.2334350114268486E-04 + 0.2324481805443246E-04 + 0.2314655343507598E-04 + 0.2304870528877916E-04 + 0.2295127160956976E-04 + 0.2285425039015403E-04 + 0.2275763962318867E-04 + 0.2266143730127485E-04 + 0.2256564141634450E-04 + 0.2247024995331100E-04 + 0.2237526089287877E-04 + 0.2228067221443792E-04 + 0.2218648189126666E-04 + 0.2209268789480516E-04 + 0.2199928820191740E-04 + 0.2190628080241741E-04 + 0.2181366368748749E-04 + 0.2172143482985254E-04 + 0.2162959217930838E-04 + 0.2153813368470491E-04 + 0.2144705730072350E-04 + 0.2135636098589596E-04 + 0.2126604270257209E-04 + 0.2117610043344610E-04 + 0.2108653216800490E-04 + 0.2099733585587131E-04 + 0.2090850934118491E-04 + 0.2082005046287370E-04 + 0.2073195758475607E-04 + 0.2064422978751074E-04 + 0.2055686621593782E-04 + 0.2046986618677686E-04 + 0.2038322914166357E-04 + 0.2029695451464272E-04 + 0.2021104167673007E-04 + 0.2012548997532720E-04 + 0.2004029876205308E-04 + 0.1995546740103162E-04 + 0.1987099525861729E-04 + 0.1978688169825945E-04 + 0.1970312607904308E-04 + 0.1961972775912630E-04 + 0.1953668608770254E-04 + 0.1945400040680608E-04 + 0.1937167005997799E-04 + 0.1928969440233630E-04 + 0.1920807279380263E-04 + 0.1912680458304898E-04 + 0.1904588908197437E-04 + 0.1896532559528755E-04 + 0.1888511344936612E-04 + 0.1880525200643343E-04 + 0.1872574062999789E-04 + 0.1864657864538306E-04 + 0.1856776534440688E-04 + 0.1848930002092356E-04 + 0.1841118199292229E-04 + 0.1833341058948315E-04 + 0.1825598513575345E-04 + 0.1817890494237707E-04 + 0.1810216931667715E-04 + 0.1802577756318579E-04 + 0.1794972898134754E-04 + 0.1787402287003069E-04 + 0.1779865852734255E-04 + 0.1772363525065644E-04 + 0.1764895233631991E-04 + 0.1757460907215692E-04 + 0.1750060474166315E-04 + 0.1742693862829205E-04 + 0.1735361001546279E-04 + 0.1728061818655306E-04 + 0.1720796242049997E-04 + 0.1713564198730549E-04 + 0.1706365615591488E-04 + 0.1699200419566105E-04 + 0.1692068537628685E-04 + 0.1684969896647512E-04 + 0.1677904422447737E-04 + 0.1670872040270205E-04 + 0.1663872675521945E-04 + 0.1656906254388435E-04 + 0.1649972703270406E-04 + 0.1643071947735489E-04 + 0.1636203911498761E-04 + 0.1629368518013429E-04 + 0.1622565690360986E-04 + 0.1615795351190623E-04 + 0.1609057423310252E-04 + 0.1602351831533003E-04 + 0.1595678501909744E-04 + 0.1589037359559382E-04 + 0.1582428324825604E-04 + 0.1575851316559477E-04 + 0.1569306255031554E-04 + 0.1562793064008034E-04 + 0.1556311667716354E-04 + 0.1549861987872017E-04 + 0.1543443942980192E-04 + 0.1537057451529318E-04 + 0.1530702434412061E-04 + 0.1524378814154734E-04 + 0.1518086512691821E-04 + 0.1511825448464796E-04 + 0.1505595538699322E-04 + 0.1499396701285372E-04 + 0.1493228855929305E-04 + 0.1487091922619349E-04 + 0.1480985820171293E-04 + 0.1474910465753407E-04 + 0.1468865776429942E-04 + 0.1462851669545200E-04 + 0.1456868062652814E-04 + 0.1450914873110828E-04 + 0.1444992017020579E-04 + 0.1439099409997904E-04 + 0.1433236967993959E-04 + 0.1427404607979379E-04 + 0.1421602247090759E-04 + 0.1415829800888032E-04 + 0.1410087182493411E-04 + 0.1404374304947782E-04 + 0.1398691083402439E-04 + 0.1393037434742315E-04 + 0.1387413275348135E-04 + 0.1381818517702771E-04 + 0.1376253072620334E-04 + 0.1370716851568039E-04 + 0.1365209768235625E-04 + 0.1359731736773663E-04 + 0.1354282670792533E-04 + 0.1348862482982689E-04 + 0.1343471085870798E-04 + 0.1338108390555560E-04 + 0.1332774306846915E-04 + 0.1327468744625539E-04 + 0.1322191614693619E-04 + 0.1316942828289680E-04 + 0.1311722296616547E-04 + 0.1306529930733411E-04 + 0.1301365641655326E-04 + 0.1296229339275182E-04 + 0.1291120931378928E-04 + 0.1286040325577099E-04 + 0.1280987430767639E-04 + 0.1275962157124823E-04 + 0.1270964414576976E-04 + 0.1265994110387018E-04 + 0.1261051150423953E-04 + 0.1256135441084405E-04 + 0.1251246891021034E-04 + 0.1246385409469216E-04 + 0.1241550904628978E-04 + 0.1236743282554062E-04 + 0.1231962449014679E-04 + 0.1227208309325628E-04 + 0.1222480768305809E-04 + 0.1217779730850652E-04 + 0.1213105102873730E-04 + 0.1208456790875799E-04 + 0.1203834700936055E-04 + 0.1199238737137375E-04 + 0.1194668802983983E-04 + 0.1190124802460665E-04 + 0.1185606640653891E-04 + 0.1181114222751025E-04 + 0.1176647452221659E-04 + 0.1172206230480483E-04 + 0.1167790458953995E-04 + 0.1163400040580230E-04 + 0.1159034879257497E-04 + 0.1154694878795406E-04 + 0.1150379942463216E-04 + 0.1146089973352287E-04 + 0.1141824873269694E-04 + 0.1137584540762773E-04 + 0.1133368873939013E-04 + 0.1129177773689002E-04 + 0.1125011144562409E-04 + 0.1120868891026950E-04 + 0.1116750913248553E-04 + 0.1112657108385435E-04 + 0.1108587373990038E-04 + 0.1104541610257111E-04 + 0.1100519718330302E-04 + 0.1096521598709183E-04 + 0.1092547150076364E-04 + 0.1088596270807539E-04 + 0.1084668859805372E-04 + 0.1080764816734466E-04 + 0.1076884041223137E-04 + 0.1073026431468616E-04 + 0.1069191884567808E-04 + 0.1065380297658132E-04 + 0.1061591568322319E-04 + 0.1057825594320584E-04 + 0.1054082273389849E-04 + 0.1050361503192795E-04 + 0.1046663181360112E-04 + 0.1042987204395077E-04 + 0.1039333467006828E-04 + 0.1035701863862637E-04 + 0.1032092291670648E-04 + 0.1028504648863444E-04 + 0.1024938833572335E-04 + 0.1021394741347715E-04 + 0.1017872266600977E-04 + 0.1014371303921106E-04 + 0.1010891748532671E-04 + 0.1007433495796015E-04 + 0.1003996440866817E-04 + 0.1000580478541977E-04 + 0.9971855035756583E-05 + 0.9938114105918372E-05 + 0.9904580940936560E-05 + 0.9871254485314347E-05 + 0.9838133679618123E-05 + 0.9805217462493856E-05 + 0.9772504772481884E-05 + 0.9739994547763992E-05 + 0.9707685726419982E-05 + 0.9675577244702275E-05 + 0.9643668035329199E-05 + 0.9611957030574480E-05 + 0.9580443161737870E-05 + 0.9549125359125931E-05 + 0.9518002552793368E-05 + 0.9487073670888222E-05 + 0.9456337640531681E-05 + 0.9425793388451492E-05 + 0.9395439839719460E-05 + 0.9365275918953905E-05 + 0.9335300549588890E-05 + 0.9305512652528689E-05 + 0.9275911148376185E-05 + 0.9246494958425529E-05 + 0.9217263004744563E-05 + 0.9188214209001444E-05 + 0.9159347488276930E-05 + 0.9130661756927982E-05 + 0.9102155929814295E-05 + 0.9073828924387060E-05 + 0.9045679658871045E-05 + 0.9017707050145274E-05 + 0.8989910011908588E-05 + 0.8962287457387305E-05 + 0.8934838299340582E-05 + 0.8907561449953242E-05 + 0.8880455821412422E-05 + 0.8853520326351122E-05 + 0.8826753877694063E-05 + 0.8800155388122121E-05 + 0.8773723768980293E-05 + 0.8747457931167315E-05 + 0.8721356785277802E-05 + 0.8695419241111335E-05 + 0.8669644208350722E-05 + 0.8644030597175579E-05 + 0.8618577318437113E-05 + 0.8593283283000613E-05 + 0.8568147401274382E-05 + 0.8543168583337819E-05 + 0.8518345739178962E-05 + 0.8493677778279935E-05 + 0.8469163609936203E-05 + 0.8444802144331900E-05 + 0.8420592294233282E-05 + 0.8396532972847808E-05 + 0.8372623092032967E-05 + 0.8348861561637557E-05 + 0.8325247291502102E-05 + 0.8301779193884398E-05 + 0.8278456182954177E-05 + 0.8255277172903314E-05 + 0.8232241077722618E-05 + 0.8209346811320518E-05 + 0.8186593288103659E-05 + 0.8163979424088810E-05 + 0.8141504135627454E-05 + 0.8119166339787396E-05 + 0.8096964954809957E-05 + 0.8074898899072334E-05 + 0.8052967091442637E-05 + 0.8031168451215818E-05 + 0.8009501898168113E-05 + 0.7987966355586151E-05 + 0.7966560748353474E-05 + 0.7945284001281556E-05 + 0.7924135038893112E-05 + 0.7903112785662927E-05 + 0.7882216167637153E-05 + 0.7861444113698463E-05 + 0.7840795553129144E-05 + 0.7820269417367987E-05 + 0.7799864639912434E-05 + 0.7779580154589411E-05 + 0.7759414897313972E-05 + 0.7739367805050801E-05 + 0.7719437815110309E-05 + 0.7699623866154690E-05 + 0.7679924897203949E-05 + 0.7660339849903828E-05 + 0.7640867671130003E-05 + 0.7621507308398869E-05 + 0.7602257709756561E-05 + 0.7583117823804741E-05 + 0.7564086599610165E-05 + 0.7545162990426796E-05 + 0.7526345951830949E-05 + 0.7507634440208175E-05 + 0.7489027415442838E-05 + 0.7470523838402978E-05 + 0.7452122671750603E-05 + 0.7433822882096409E-05 + 0.7415623436635002E-05 + 0.7397523304301517E-05 + 0.7379521456036220E-05 + 0.7361616863402953E-05 + 0.7343808503507463E-05 + 0.7326095356843063E-05 + 0.7308476404462130E-05 + 0.7290950629953624E-05 + 0.7273517017700755E-05 + 0.7256174554573606E-05 + 0.7238922233499666E-05 + 0.7221759048390709E-05 + 0.7204683996067653E-05 + 0.7187696077033634E-05 + 0.7170794292293636E-05 + 0.7153977646117546E-05 + 0.7137245144972313E-05 + 0.7120595796550294E-05 + 0.7104028615111417E-05 + 0.7087542617182074E-05 + 0.7071136821323922E-05 + 0.7054810251588794E-05 + 0.7038561933012527E-05 + 0.7022390893663378E-05 + 0.7006296165829626E-05 + 0.6990276782483631E-05 + 0.6974331781848006E-05 + 0.6958460206031453E-05 + 0.6942661098096330E-05 + 0.6926933506447554E-05 + 0.6911276481534966E-05 + 0.6895689076373351E-05 + 0.6880170351655332E-05 + 0.6864719369557339E-05 + 0.6849335195208450E-05 + 0.6834016898258688E-05 + 0.6818763549095648E-05 + 0.6803574223890454E-05 + 0.6788448003519708E-05 + 0.6773383970009429E-05 + 0.6758381212408598E-05 + 0.6743438822742477E-05 + 0.6728555895163114E-05 + 0.6713731530877050E-05 + 0.6698964832601785E-05 + 0.6684254906295379E-05 + 0.6669600863379960E-05 + 0.6655001816206678E-05 + 0.6640456884771191E-05 + 0.6625965195902461E-05 + 0.6611525877262548E-05 + 0.6597138061124381E-05 + 0.6582800881922060E-05 + 0.6568513476859854E-05 + 0.6554274993376540E-05 + 0.6540084581319711E-05 + 0.6525941394168639E-05 + 0.6511844592153695E-05 + 0.6497793336488901E-05 + 0.6483786793922736E-05 + 0.6469824136638032E-05 + 0.6455904538056680E-05 + 0.6442027180454311E-05 + 0.6428191250690286E-05 + 0.6414395937371975E-05 + 0.6400640436173278E-05 + 0.6386923944629203E-05 + 0.6373245665526333E-05 + 0.6359604812428349E-05 + 0.6346000600368341E-05 + 0.6332432248258063E-05 + 0.6318898979192516E-05 + 0.6305400017528191E-05 + 0.6291934598054932E-05 + 0.6278501961520616E-05 + 0.6265101350610600E-05 + 0.6251732016612966E-05 + 0.6238393213307477E-05 + 0.6225084198253494E-05 + 0.6211804237584552E-05 + 0.6198552598831991E-05 + 0.6185328556396458E-05 + 0.6172131392817425E-05 + 0.6158960391736004E-05 + 0.6145814843872186E-05 + 0.6132694044399468E-05 + 0.6119597290903966E-05 + 0.6106523893004586E-05 + 0.6093473164179599E-05 + 0.6080444420980387E-05 + 0.6067436987673646E-05 + 0.6054450189894897E-05 + 0.6041483360184125E-05 + 0.6028535840071835E-05 + 0.6015606972373173E-05 + 0.6002696108642582E-05 + 0.5989802606485939E-05 + 0.5976925825366607E-05 + 0.5964065134698958E-05 + 0.5951219907440363E-05 + 0.5938389520044989E-05 + 0.5925573358696723E-05 + 0.5912770811392697E-05 + 0.5899981272592227E-05 + 0.5887204146007764E-05 + 0.5874438836652233E-05 + 0.5861684758186515E-05 + 0.5848941330856540E-05 + 0.5836207976746889E-05 + 0.5823484128662239E-05 + 0.5810769223637116E-05 + 0.5798062701832758E-05 + 0.5785364013054318E-05 + 0.5772672609078522E-05 + 0.5759987948699655E-05 + 0.5747309501770048E-05 + 0.5734636739469014E-05 + 0.5721969139006482E-05 + 0.5709306182639366E-05 + 0.5696647354815891E-05 + 0.5683992154595245E-05 + 0.5671340087418796E-05 + 0.5658690660774437E-05 + 0.5646043389103284E-05 + 0.5633397788426913E-05 + 0.5620753381879984E-05 + 0.5608109704944997E-05 + 0.5595466294713987E-05 + 0.5582822695752365E-05 + 0.5570178459496661E-05 + 0.5557533138906358E-05 + 0.5544886297158004E-05 + 0.5532237502362571E-05 + 0.5519586326003632E-05 + 0.5506932352369351E-05 + 0.5494275168849857E-05 + 0.5481614366786492E-05 + 0.5468949545085390E-05 + 0.5456280303966907E-05 + 0.5443606254422871E-05 + 0.5430927018323061E-05 + 0.5418242218787227E-05 + 0.5405551485917766E-05 + 0.5392854453540154E-05 + 0.5380150758625447E-05 + 0.5367440051426854E-05 + 0.5354721985772276E-05 + 0.5341996220595755E-05 + 0.5329262425627649E-05 + 0.5316520272193284E-05 + 0.5303769437833326E-05 + 0.5291009606982756E-05 + 0.5278240465547691E-05 + 0.5265461710867275E-05 + 0.5252673047002397E-05 + 0.5239874180534516E-05 + 0.5227064829628815E-05 + 0.5214244715905807E-05 + 0.5201413564701225E-05 + 0.5188571110038049E-05 + 0.5175717087425296E-05 + 0.5162851240699790E-05 + 0.5149973323847924E-05 + 0.5137083092192359E-05 + 0.5124180309482628E-05 + 0.5111264744924703E-05 + 0.5098336170175233E-05 + 0.5085394369405950E-05 + 0.5072439130929867E-05 + 0.5059470246084420E-05 + 0.5046487514035580E-05 + 0.5033490735406540E-05 + 0.5020479719416072E-05 + 0.5007454286797448E-05 + 0.4994414259586778E-05 + 0.4981359466459278E-05 + 0.4968289740820232E-05 + 0.4955204918327045E-05 + 0.4942104847376837E-05 + 0.4928989381043378E-05 + 0.4915858375277821E-05 + 0.4902711694282084E-05 + 0.4889549203866972E-05 + 0.4876370776970004E-05 + 0.4863176297029018E-05 + 0.4849965648775905E-05 + 0.4836738723883817E-05 + 0.4823495419463182E-05 + 0.4810235634517936E-05 + 0.4796959279635958E-05 + 0.4783666270117490E-05 + 0.4770356523745922E-05 + 0.4757029966193645E-05 + 0.4743686524810073E-05 + 0.4730326134099587E-05 + 0.4716948740171466E-05 + 0.4703554290437173E-05 + 0.4690142736604861E-05 + 0.4676714034081511E-05 + 0.4663268140169718E-05 + 0.4649805025356932E-05 + 0.4636324666066774E-05 + 0.4622827040771273E-05 + 0.4609312135122524E-05 + 0.4595779936425725E-05 + 0.4582230437312171E-05 + 0.4568663639932618E-05 + 0.4555079547692784E-05 + 0.4541478169587733E-05 + 0.4527859519897741E-05 + 0.4514223614492064E-05 + 0.4500570480778371E-05 + 0.4486900151905338E-05 + 0.4473212662430351E-05 + 0.4459508052322417E-05 + 0.4445786362931688E-05 + 0.4432047641026135E-05 + 0.4418291944057250E-05 + 0.4404519330934140E-05 + 0.4390729865675985E-05 + 0.4376923617609495E-05 + 0.4363100657164392E-05 + 0.4349261062838029E-05 + 0.4335404917557833E-05 + 0.4321532306208683E-05 + 0.4307643322107219E-05 + 0.4293738060913562E-05 + 0.4279816622052922E-05 + 0.4265879113153890E-05 + 0.4251925643066445E-05 + 0.4237956324815841E-05 + 0.4223971276191133E-05 + 0.4209970616079522E-05 + 0.4195954472318118E-05 + 0.4181922978160932E-05 + 0.4167876268221442E-05 + 0.4153814483423785E-05 + 0.4139737766635995E-05 + 0.4125646263232600E-05 + 0.4111540124629758E-05 + 0.4097419503318874E-05 + 0.4083284558369400E-05 + 0.4069135457097365E-05 + 0.4054972367601284E-05 + 0.4040795461143076E-05 + 0.4026604911092601E-05 + 0.4012400892487849E-05 + 0.3998183589302569E-05 + 0.3983953188560985E-05 + 0.3969709879364161E-05 + 0.3955453856355824E-05 + 0.3941185315179608E-05 + 0.3926904455228704E-05 + 0.3912611481063776E-05 + 0.3898306598059841E-05 + 0.3883990017679596E-05 + 0.3869661955848292E-05 + 0.3855322629255948E-05 + 0.3840972258649160E-05 + 0.3826611066311847E-05 + 0.3812239277288557E-05 + 0.3797857124804223E-05 + 0.3783464843619711E-05 + 0.3769062669976234E-05 + 0.3754650842359805E-05 + 0.3740229599832397E-05 + 0.3725799187691833E-05 + 0.3711359856261005E-05 + 0.3696911856567237E-05 + 0.3682455443486690E-05 + 0.3667990873510092E-05 + 0.3653518404528295E-05 + 0.3639038299031541E-05 + 0.3624550820499937E-05 + 0.3610056235601716E-05 + 0.3595554816327655E-05 + 0.3581046835320845E-05 + 0.3566532567960656E-05 + 0.3552012292049085E-05 + 0.3537486286003139E-05 + 0.3522954832325675E-05 + 0.3508418215415277E-05 + 0.3493876720707201E-05 + 0.3479330637404046E-05 + 0.3464780255598670E-05 + 0.3450225868003625E-05 + 0.3435667772152774E-05 + 0.3421106266151611E-05 + 0.3406541649270198E-05 + 0.3391974221911251E-05 + 0.3377404285100216E-05 + 0.3362832144848640E-05 + 0.3348258109723590E-05 + 0.3333682488669827E-05 + 0.3319105592091733E-05 + 0.3304527730779386E-05 + 0.3289949217336963E-05 + 0.3275370368053573E-05 + 0.3260791499761718E-05 + 0.3246212931795869E-05 + 0.3231634986163506E-05 + 0.3217057985063907E-05 + 0.3202482251295535E-05 + 0.3187908107995743E-05 + 0.3173335879016451E-05 + 0.3158765891447311E-05 + 0.3144198473306153E-05 + 0.3129633954081382E-05 + 0.3115072666563266E-05 + 0.3100514943991144E-05 + 0.3085961119571612E-05 + 0.3071411526472767E-05 + 0.3056866498051072E-05 + 0.3042326369775631E-05 + 0.3027791478431717E-05 + 0.3013262161170478E-05 + 0.2998738756899664E-05 + 0.2984221605085256E-05 + 0.2969711045934504E-05 + 0.2955207421496457E-05 + 0.2940711074103333E-05 + 0.2926222346154239E-05 + 0.2911741580134710E-05 + 0.2897269118633995E-05 + 0.2882805305481094E-05 + 0.2868350485355171E-05 + 0.2853905002904821E-05 + 0.2839469202511764E-05 + 0.2825043428465480E-05 + 0.2810628026271223E-05 + 0.2796223344785677E-05 + 0.2781829733389925E-05 + 0.2767447539158527E-05 + 0.2753077105895585E-05 + 0.2738718777415804E-05 + 0.2724372901294625E-05 + 0.2710039827943604E-05 + 0.2695719907366263E-05 + 0.2681413486540134E-05 + 0.2667120911261758E-05 + 0.2652842527410352E-05 + 0.2638578681126150E-05 + 0.2624329718618002E-05 + 0.2610095987238502E-05 + 0.2595877836125050E-05 + 0.2581675614348924E-05 + 0.2567489667275682E-05 + 0.2553320337199141E-05 + 0.2539167966791544E-05 + 0.2525032902067574E-05 + 0.2510915490486704E-05 + 0.2496816078462329E-05 + 0.2482735008826106E-05 + 0.2468672623644528E-05 + 0.2454629264699855E-05 + 0.2440605273285965E-05 + 0.2426600990651672E-05 + 0.2412616758106858E-05 + 0.2398652917017019E-05 + 0.2384709808329561E-05 + 0.2370787769644997E-05 + 0.2356887136963943E-05 + 0.2343008246520916E-05 + 0.2329151435474626E-05 + 0.2315317041185955E-05 + 0.2301505399126660E-05 + 0.2287716841188199E-05 + 0.2273951698848134E-05 + 0.2260210303248718E-05 + 0.2246492985196722E-05 + 0.2232800075298495E-05 + 0.2219131902492394E-05 + 0.2205488794836151E-05 + 0.2191871079516271E-05 + 0.2178279080072759E-05 + 0.2164713119081292E-05 + 0.2151173518795934E-05 + 0.2137660600797695E-05 + 0.2124174686508284E-05 + 0.2110716095301704E-05 + 0.2097285144302008E-05 + 0.2083882150294803E-05 + 0.2070507427800215E-05 + 0.2057161290019658E-05 + 0.2043844049704625E-05 + 0.2030556017567093E-05 + 0.2017297503712249E-05 + 0.2004068816395666E-05 + 0.1990870259592295E-05 + 0.1977702136655053E-05 + 0.1964564750335761E-05 + 0.1951458402660667E-05 + 0.1938383395370850E-05 + 0.1925340027418816E-05 + 0.1912328595969099E-05 + 0.1899349397178586E-05 + 0.1886402722070886E-05 + 0.1873488859991211E-05 + 0.1860608099999008E-05 + 0.1847760730423291E-05 + 0.1834947039400635E-05 + 0.1822167311922278E-05 + 0.1809421828806370E-05 + 0.1796710870481073E-05 + 0.1784034716028053E-05 + 0.1771393643578921E-05 + 0.1758787930315806E-05 + 0.1746217847975431E-05 + 0.1733683666316670E-05 + 0.1721185654138708E-05 + 0.1708724077519049E-05 + 0.1696299202027660E-05 + 0.1683911291857010E-05 + 0.1671560609189519E-05 + 0.1659247415689793E-05 + 0.1646971967590755E-05 + 0.1634734516911202E-05 + 0.1622535315394978E-05 + 0.1610374613707879E-05 + 0.1598252662081014E-05 + 0.1586169708886456E-05 + 0.1574125996625550E-05 + 0.1562121766627604E-05 + 0.1550157259218876E-05 + 0.1538232713114637E-05 + 0.1526348366548031E-05 + 0.1514504451844873E-05 + 0.1502701196294559E-05 + 0.1490938827022936E-05 + 0.1479217571139426E-05 + 0.1467537655745954E-05 + 0.1455899305805943E-05 + 0.1444302738763541E-05 + 0.1432748170398665E-05 + 0.1421235815375925E-05 + 0.1409765886386188E-05 + 0.1398338595682855E-05 + 0.1386954150691706E-05 + 0.1375612754316762E-05 + 0.1364314609035300E-05 + 0.1353059915239912E-05 + 0.1341848872296368E-05 + 0.1330681678170305E-05 + 0.1319558525372934E-05 + 0.1308479605063388E-05 + 0.1297445106281072E-05 + 0.1286455213927100E-05 + 0.1275510112274743E-05 + 0.1264609981980699E-05 + 0.1253754999980947E-05 + 0.1242945342686211E-05 + 0.1232181183203477E-05 + 0.1221462692843518E-05 + 0.1210790041740324E-05 + 0.1200163394973214E-05 + 0.1189582916232470E-05 + 0.1179048767170613E-05 + 0.1168561105045538E-05 + 0.1158120086431687E-05 + 0.1147725864667240E-05 + 0.1137378589433267E-05 + 0.1127078409822468E-05 + 0.1116825470795853E-05 + 0.1106619914838360E-05 + 0.1096461883376525E-05 + 0.1086351512854607E-05 + 0.1076288938199998E-05 + 0.1066274292802973E-05 + 0.1056307706386973E-05 + 0.1046389308025257E-05 + 0.1036519222743535E-05 + 0.1026697570541839E-05 + 0.1016924470864196E-05 + 0.1007200040247109E-05 + 0.9975243933081844E-06 + 0.9878976435822848E-06 + 0.9783198989174224E-06 + 0.9687912652401995E-06 + 0.9593118468677787E-06 + 0.9498817438656582E-06 + 0.9405010555337082E-06 + 0.9311698780812755E-06 + 0.9218883034991116E-06 + 0.9126564231938392E-06 + 0.9034743247206443E-06 + 0.8943420928385958E-06 + 0.8852598114407156E-06 + 0.8762275595561436E-06 + 0.8672454143912200E-06 + 0.8583134515109279E-06 + 0.8494317416726902E-06 + 0.8406003547071251E-06 + 0.8318193577182523E-06 + 0.8230888137162674E-06 + 0.8144087851299421E-06 + 0.8057793305269172E-06 + 0.7972005053932172E-06 + 0.7886723644295602E-06 + 0.7801949575969363E-06 + 0.7717683328888215E-06 + 0.7633925368566583E-06 + 0.7550676113682654E-06 + 0.7467935973013323E-06 + 0.7385705328992247E-06 + 0.7303984520501892E-06 + 0.7222773880346027E-06 + 0.7142073704686637E-06 + 0.7061884257551094E-06 + 0.6982205795893864E-06 + 0.6903038531186074E-06 + 0.6824382654009911E-06 + 0.6746238342065168E-06 + 0.6668605726673893E-06 + 0.6591484928381376E-06 + 0.6514876043106393E-06 + 0.6438779121892715E-06 + 0.6363194209444931E-06 + 0.6288121316620843E-06 + 0.6213560421671819E-06 + 0.6139511496432406E-06 + 0.6065974469193920E-06 + 0.5992949246153552E-06 + 0.5920435721347644E-06 + 0.5848433740334330E-06 + 0.5776943136269059E-06 + 0.5705963721824478E-06 + 0.5635495268483020E-06 + 0.5565537541484521E-06 + 0.5496090272714024E-06 + 0.5427153158764528E-06 + 0.5358725890223592E-06 + 0.5290808116067484E-06 + 0.5223399461977436E-06 + 0.5156499543403273E-06 + 0.5090107930849852E-06 + 0.5024224182076757E-06 + 0.4958847835341011E-06 + 0.4893978385556888E-06 + 0.4829615320808422E-06 + 0.4765758098777304E-06 + 0.4702406141805605E-06 + 0.4639558866798447E-06 + 0.4577215652876562E-06 + 0.4515375855851034E-06 + 0.4454038822127005E-06 + 0.4393203852594868E-06 + 0.4332870233838145E-06 + 0.4273037235370630E-06 + 0.4213704084724784E-06 + 0.4154870002380198E-06 + 0.4096534182144143E-06 + 0.4038695783755031E-06 + 0.3981353961637267E-06 + 0.3924507831611813E-06 + 0.3868156483284007E-06 + 0.3812298998771784E-06 + 0.3756934421037644E-06 + 0.3702061779389951E-06 + 0.3647680087203611E-06 + 0.3593788314435065E-06 + 0.3540385423181470E-06 + 0.3487470351055996E-06 + 0.3435042001287173E-06 + 0.3383099272143726E-06 + 0.3331641027810562E-06 + 0.3280666107014818E-06 + 0.3230173341751046E-06 + 0.3180161525683699E-06 + 0.3130629437664068E-06 + 0.3081575842786451E-06 + 0.3032999464575278E-06 + 0.2984899018343359E-06 + 0.2937273197306885E-06 + 0.2890120660536766E-06 + 0.2843440062315021E-06 + 0.2797230026135880E-06 + 0.2751489150217092E-06 + 0.2706216026842837E-06 + 0.2661409211938914E-06 + 0.2617067245872479E-06 + 0.2573188656890221E-06 + 0.2529771932615631E-06 + 0.2486815551896402E-06 + 0.2444317975466054E-06 + 0.2402277633228960E-06 + 0.2360692950478712E-06 + 0.2319562321564043E-06 + 0.2278884112921362E-06 + 0.2238656685984259E-06 + 0.2198878370683095E-06 + 0.2159547482039634E-06 + 0.2120662324949148E-06 + 0.2082221166668618E-06 + 0.2044222265468629E-06 + 0.2006663861862903E-06 + 0.1969544163043717E-06 + 0.1932861371478735E-06 + 0.1896613665789783E-06 + 0.1860799200972954E-06 + 0.1825416127196799E-06 + 0.1790462560794021E-06 + 0.1755936600413814E-06 + 0.1721836336816515E-06 + 0.1688159828454558E-06 + 0.1654905125248079E-06 + 0.1622070261953125E-06 + 0.1589653241907978E-06 + 0.1557652063664204E-06 + 0.1526064701905636E-06 + 0.1494889105341490E-06 + 0.1464123218756948E-06 + 0.1433764960734339E-06 + 0.1403812234752557E-06 + 0.1374262936754578E-06 + 0.1345114928459430E-06 + 0.1316366061586424E-06 + 0.1288014175666548E-06 + 0.1260057082312268E-06 + 0.1232492588619582E-06 + 0.1205318481420193E-06 + 0.1178532523318530E-06 + 0.1152132473115287E-06 + 0.1126116062539515E-06 + 0.1100481006131070E-06 + 0.1075225013062501E-06 + 0.1050345766081114E-06 + 0.1025840939360849E-06 + 0.1001708195180040E-06 + 0.9779451656500477E-07 + 0.9545494777588960E-07 + 0.9315187420804525E-07 + 0.9088505476204741E-07 + 0.8865424800984156E-07 + 0.8645921015959424E-07 + 0.8429969576769068E-07 + 0.8217545890910184E-07 + 0.8008625106635790E-07 + 0.7803182278973576E-07 + 0.7601192370141962E-07 + 0.7402630081539348E-07 + 0.7207470066073768E-07 + 0.7015686829153332E-07 + 0.6827254663045870E-07 + 0.6642147829765744E-07 + 0.6460340388155990E-07 + 0.6281806240940673E-07 + 0.6106519250442548E-07 + 0.5934453043257769E-07 + 0.5765581152051182E-07 + 0.5599877034284896E-07 + 0.5437313913079716E-07 + 0.5277864963922838E-07 + 0.5121503235698222E-07 + 0.4968201575942023E-07 + 0.4817932804163794E-07 + 0.4670669565521869E-07 + 0.4526384357941694E-07 + 0.4385049645986499E-07 + 0.4246637685684110E-07 + 0.4111120641082522E-07 + 0.3978470615375257E-07 + 0.3848659501514017E-07 + 0.3721659145542494E-07 + 0.3597441287951810E-07 + 0.3475977484287624E-07 + 0.3357239264036065E-07 + 0.3241198008138421E-07 + 0.3127824959727312E-07 + 0.3017091334828970E-07 + 0.2908968170978850E-07 + 0.2803426418682033E-07 + 0.2700436979112619E-07 + 0.2599970564657991E-07 + 0.2501997841298010E-07 + 0.2406489390399068E-07 + 0.2313415629795483E-07 + 0.2222746953385027E-07 + 0.2134453629923359E-07 + 0.2048505800645788E-07 + 0.1964873584645747E-07 + 0.1883526950219546E-07 + 0.1804435784496106E-07 + 0.1727569936387682E-07 + 0.1652899093314275E-07 + 0.1580392898765513E-07 + 0.1510020928206024E-07 + 0.1441752611887658E-07 + 0.1375557357856084E-07 + 0.1311404473629176E-07 + 0.1249263154204051E-07 + 0.1189102576639504E-07 + 0.1130891793224932E-07 + 0.1074599782209759E-07 + 0.1020195492658394E-07 + 0.9676477380078513E-08 + 0.9169252908012705E-08 + 0.8679968716306854E-08 + 0.8208310784273248E-08 + 0.7753964891347240E-08 + 0.7316616027630792E-08 + 0.6895948212501615E-08 + 0.6491645321691415E-08 + 0.6103390237294080E-08 + 0.5730865192058381E-08 + 0.5373752205182884E-08 + 0.5031732210905771E-08 + 0.4704485780613156E-08 + 0.4391693103727141E-08 + 0.4093033370971466E-08 + 0.3808185597905455E-08 + 0.3536828210561680E-08 + 0.3278638838030937E-08 + 0.3033294997626480E-08 + 0.2800473458925649E-08 + 0.2579850453889582E-08 + 0.2371102066325824E-08 + 0.2173903563644896E-08 + 0.1987929910506128E-08 + 0.1812855807576849E-08 + 0.1648355190453705E-08 + 0.1494101849161830E-08 + 0.1349769170490019E-08 + 0.1215029941633985E-08 + 0.1089556867847725E-08 + 0.9730221368385021E-09 + 0.8650975272068095E-09 + 0.7654547232242232E-09 + 0.6737648520559249E-09 + 0.5896988119939683E-09 + 0.5129273418258451E-09 + 0.4431206678583689E-09 + 0.3799489097542708E-09 + 0.3230819454538914E-09 + 0.2721892571953410E-09 + 0.2269402741465802E-09 + 0.1870041281684092E-09 + 0.1520496928780415E-09 + 0.1217457928249455E-09 + 0.9576094849258155E-10 + 0.7376354214115687E-10 + 0.5542188313021286E-10 + 0.4040402149759292E-10 + 0.2837794809470561E-10 + 0.1901156053272153E-10 + 0.1197258820481473E-10 + 0.6928737487361236E-11 + 0.3547601037696740E-11 + 0.1496663006411428E-11 + 0.4434065953337260E-12 + 0.5534356026380010E-13 + 0.0000000000000000E+00 + 0.1939304866001054E+00 + 0.3874703898474606E+00 + 0.5806201046391736E+00 + 0.7733800256954890E+00 + 0.9657505475597874E+00 + 0.1157732064598588E+01 + 0.1349324971001545E+01 + 0.1540529660781451E+01 + 0.1731346527774235E+01 + 0.1921775965638961E+01 + 0.2111818367857834E+01 + 0.2301474127736192E+01 + 0.2490743638402511E+01 + 0.2679627292808404E+01 + 0.2868125483728622E+01 + 0.3056238603761051E+01 + 0.3243967045326716E+01 + 0.3431311200669775E+01 + 0.3618271461857528E+01 + 0.3804848220780407E+01 + 0.3991041869151986E+01 + 0.4176852798508969E+01 + 0.4362281400211204E+01 + 0.4547328065441673E+01 + 0.4731993185206492E+01 + 0.4916277150334918E+01 + 0.5100180351479344E+01 + 0.5283703179115298E+01 + 0.5466846023541446E+01 + 0.5649609274879590E+01 + 0.5831993323074672E+01 + 0.6013998557894766E+01 + 0.6195625368931088E+01 + 0.6376874145597987E+01 + 0.6557745277132948E+01 + 0.6738239152596601E+01 + 0.6918356160872703E+01 + 0.7098096690668148E+01 + 0.7277461130512979E+01 + 0.7456449868760361E+01 + 0.7635063293586603E+01 + 0.7813301792991152E+01 + 0.7991165754796590E+01 + 0.8168655566648635E+01 + 0.8345771616016142E+01 + 0.8522514290191106E+01 + 0.8698883976288657E+01 + 0.8874881061247056E+01 + 0.9050505931827713E+01 + 0.9225758974615163E+01 + 0.9400640576017086E+01 + 0.9575151122264291E+01 + 0.9749290999410738E+01 + 0.9923060593333503E+01 + 0.1009646028973282E+02 + 0.1026949047413204E+02 + 0.1044215153187767E+02 + 0.1061444384813935E+02 + 0.1078636780790984E+02 + 0.1095792379600505E+02 + 0.1112911219706403E+02 + 0.1129993339554896E+02 + 0.1147038777574515E+02 + 0.1164047572176108E+02 + 0.1181019761752832E+02 + 0.1197955384680162E+02 + 0.1214854479315882E+02 + 0.1231717084000094E+02 + 0.1248543237055213E+02 + 0.1265332976785965E+02 + 0.1282086341479392E+02 + 0.1298803369404850E+02 + 0.1315484098814006E+02 + 0.1332128567940844E+02 + 0.1348736815001659E+02 + 0.1365308878195062E+02 + 0.1381844795701975E+02 + 0.1398344605685637E+02 + 0.1414808346291598E+02 + 0.1431236055647723E+02 + 0.1447627771864188E+02 + 0.1463983533033488E+02 + 0.1480303377230428E+02 + 0.1496587342512126E+02 + 0.1512835466918017E+02 + 0.1529047788469846E+02 + 0.1545224345171673E+02 + 0.1561365175009874E+02 + 0.1577470315953135E+02 + 0.1593539805952459E+02 + 0.1609573682941160E+02 + 0.1625571984834868E+02 + 0.1641534749531523E+02 + 0.1657462014911383E+02 + 0.1673353818837019E+02 + 0.1689210199153312E+02 + 0.1705031193687462E+02 + 0.1720816840248977E+02 + 0.1736567176629684E+02 + 0.1752282240603720E+02 + 0.1767962069927537E+02 + 0.1783606702339902E+02 + 0.1799216175561892E+02 + 0.1814790527296902E+02 + 0.1830329795230638E+02 + 0.1845834017031122E+02 + 0.1861303230348686E+02 + 0.1876737472815978E+02 + 0.1892136782047961E+02 + 0.1907501195641908E+02 + 0.1922830751177409E+02 + 0.1938125486216367E+02 + 0.1953385438302998E+02 + 0.1968610644963831E+02 + 0.1983801143707710E+02 + 0.1998956972025794E+02 + 0.2014078167391551E+02 + 0.2029164767260767E+02 + 0.2044216809071542E+02 + 0.2059234330244286E+02 + 0.2074217368181725E+02 + 0.2089165960268898E+02 + 0.2104080143873160E+02 + 0.2118959956344175E+02 + 0.2133805435013926E+02 + 0.2148616617196706E+02 + 0.2163393540189123E+02 + 0.2178136241270097E+02 + 0.2192844757700866E+02 + 0.2207519126724977E+02 + 0.2222159385568293E+02 + 0.2236765571438991E+02 + 0.2251337721527559E+02 + 0.2265875873006802E+02 + 0.2280380063031839E+02 + 0.2294850328740097E+02 + 0.2309286707251323E+02 + 0.2323689235667577E+02 + 0.2338057951073228E+02 + 0.2352392890534964E+02 + 0.2366694091101782E+02 + 0.2380961589804998E+02 + 0.2395195423658237E+02 + 0.2409395629657440E+02 + 0.2423562244780860E+02 + 0.2437695305989067E+02 + 0.2451794850224941E+02 + 0.2465860914413678E+02 + 0.2479893535462786E+02 + 0.2493892750262089E+02 + 0.2507858595683722E+02 + 0.2521791108582135E+02 + 0.2535690325794094E+02 + 0.2549556284138672E+02 + 0.2563389020417264E+02 + 0.2577188571413573E+02 + 0.2590954973893618E+02 + 0.2604688264605730E+02 + 0.2618388480280556E+02 + 0.2632055657631055E+02 + 0.2645689833352499E+02 + 0.2659291044122477E+02 + 0.2672859326600888E+02 + 0.2686394717429947E+02 + 0.2699897253234182E+02 + 0.2713366970620434E+02 + 0.2726803906177858E+02 + 0.2740208096477923E+02 + 0.2753579578074413E+02 + 0.2766918387503422E+02 + 0.2780224561283362E+02 + 0.2793498135914957E+02 + 0.2806739147881243E+02 + 0.2819947633647570E+02 + 0.2833123629661605E+02 + 0.2846267172353326E+02 + 0.2859378298135025E+02 + 0.2872457043401307E+02 + 0.2885503444529093E+02 + 0.2898517537877614E+02 + 0.2911499359788419E+02 + 0.2924448946585368E+02 + 0.2937366334574634E+02 + 0.2950251560044707E+02 + 0.2963104659266386E+02 + 0.2975925668492789E+02 + 0.2988714623959343E+02 + 0.3001471561883792E+02 + 0.3014196518466192E+02 + 0.3026889529888912E+02 + 0.3039550632316636E+02 + 0.3052179861896364E+02 + 0.3064777254757403E+02 + 0.3077342847011382E+02 + 0.3089876674752236E+02 + 0.3102378774056218E+02 + 0.3114849180981895E+02 + 0.3127287931570146E+02 + 0.3139695061844164E+02 + 0.3152070607809456E+02 + 0.3164414605453843E+02 + 0.3176727090747458E+02 + 0.3189008099642750E+02 + 0.3201257668074481E+02 + 0.3213475831959725E+02 + 0.3225662627197873E+02 + 0.3237818089670625E+02 + 0.3249942255241999E+02 + 0.3262035159758326E+02 + 0.3274096839048248E+02 + 0.3286127328922724E+02 + 0.3298126665175023E+02 + 0.3310094883580732E+02 + 0.3322032019897749E+02 + 0.3333938109866286E+02 + 0.3345813189208867E+02 + 0.3357657293630334E+02 + 0.3369470458817841E+02 + 0.3381252720440852E+02 + 0.3393004114151149E+02 + 0.3404724675582828E+02 + 0.3416414440352293E+02 + 0.3428073444058268E+02 + 0.3439701722281791E+02 + 0.3451299310586207E+02 + 0.3462866244517180E+02 + 0.3474402559602687E+02 + 0.3485908291353018E+02 + 0.3497383475260776E+02 + 0.3508828146800879E+02 + 0.3520242341430559E+02 + 0.3531626094589360E+02 + 0.3542979441699139E+02 + 0.3554302418164070E+02 + 0.3565595059370640E+02 + 0.3576857400687646E+02 + 0.3588089477466205E+02 + 0.3599291325039740E+02 + 0.3610462978723993E+02 + 0.3621604473817019E+02 + 0.3632715845599185E+02 + 0.3643797129333174E+02 + 0.3654848360263980E+02 + 0.3665869573618913E+02 + 0.3676860804607598E+02 + 0.3687822088421964E+02 + 0.3698753460236269E+02 + 0.3709654955207075E+02 + 0.3720526608473256E+02 + 0.3731368455156007E+02 + 0.3742180530358833E+02 + 0.3752962869167549E+02 + 0.3763715506650291E+02 + 0.3774438477857502E+02 + 0.3785131817821944E+02 + 0.3795795561558688E+02 + 0.3806429744065123E+02 + 0.3817034400320949E+02 + 0.3827609565288181E+02 + 0.3838155273911146E+02 + 0.3848671561116486E+02 + 0.3859158461813156E+02 + 0.3869616010892427E+02 + 0.3880044243227881E+02 + 0.3890443193675413E+02 + 0.3900812897073234E+02 + 0.3911153388241869E+02 + 0.3921464701984154E+02 + 0.3931746873085240E+02 + 0.3941999936312594E+02 + 0.3952223926415994E+02 + 0.3962418878127530E+02 + 0.3972584826161609E+02 + 0.3982721805214953E+02 + 0.3992829849966594E+02 + 0.4002908995077877E+02 + 0.4012959275192467E+02 + 0.4022980724936333E+02 + 0.4032973378917767E+02 + 0.4042937271727370E+02 + 0.4052872437938056E+02 + 0.4062778912105056E+02 + 0.4072656728765914E+02 + 0.4082505922440483E+02 + 0.4092326527630935E+02 + 0.4102118578821754E+02 + 0.4111882110479737E+02 + 0.4121617157053995E+02 + 0.4131323752975955E+02 + 0.4141001932659354E+02 + 0.4150651730500244E+02 + 0.4160273180876991E+02 + 0.4169866318150277E+02 + 0.4179431176663093E+02 + 0.4188967790740745E+02 + 0.4198476194690858E+02 + 0.4207956422803362E+02 + 0.4217408509350508E+02 + 0.4226832488586857E+02 + 0.4236228394749284E+02 + 0.4245596262056979E+02 + 0.4254936124711444E+02 + 0.4264248016896495E+02 + 0.4273531972778265E+02 + 0.4282788026505195E+02 + 0.4292016212208044E+02 + 0.4301216563999884E+02 + 0.4310389115976098E+02 + 0.4319533902214386E+02 + 0.4328650956774759E+02 + 0.4337740313699546E+02 + 0.4346802007013384E+02 + 0.4355836070723228E+02 + 0.4364842538818343E+02 + 0.4373821445270312E+02 + 0.4382772824033028E+02 + 0.4391696709042701E+02 + 0.4400593134217851E+02 + 0.4409462133459313E+02 + 0.4418303740650239E+02 + 0.4427117989656090E+02 + 0.4435904914324642E+02 + 0.4444664548485988E+02 + 0.4453396925952529E+02 + 0.4462102080518983E+02 + 0.4470780045962383E+02 + 0.4479430856042073E+02 + 0.4488054544499713E+02 + 0.4496651145059273E+02 + 0.4505220691427041E+02 + 0.4513763217291616E+02 + 0.4522278756323910E+02 + 0.4530767342177153E+02 + 0.4539229008486884E+02 + 0.4547663788870958E+02 + 0.4556071716929544E+02 + 0.4564452826245124E+02 + 0.4572807150382491E+02 + 0.4581134722888756E+02 + 0.4589435577293342E+02 + 0.4597709747107984E+02 + 0.4605957265826736E+02 + 0.4614178166925959E+02 + 0.4622372483864332E+02 + 0.4630540250082845E+02 + 0.4638681499004804E+02 + 0.4646796264035829E+02 + 0.4654884578563848E+02 + 0.4662946475959113E+02 + 0.4670981989574182E+02 + 0.4678991152743924E+02 + 0.4686973998785532E+02 + 0.4694930560998503E+02 + 0.4702860872664653E+02 + 0.4710764967048111E+02 + 0.4718642877395317E+02 + 0.4726494636935030E+02 + 0.4734320278878316E+02 + 0.4742119836418557E+02 + 0.4749893342731455E+02 + 0.4757640830975015E+02 + 0.4765362334289564E+02 + 0.4773057885797738E+02 + 0.4780727518604490E+02 + 0.4788371265797083E+02 + 0.4795989160445098E+02 + 0.4803581235600425E+02 + 0.4811147524297274E+02 + 0.4818688059552161E+02 + 0.4826202874363921E+02 + 0.4833692001713702E+02 + 0.4841155474564963E+02 + 0.4848593325863481E+02 + 0.4856005588537342E+02 + 0.4863392295496948E+02 + 0.4870753479635017E+02 + 0.4878089173826577E+02 + 0.4885399410928969E+02 + 0.4892684223781853E+02 + 0.4899943645207196E+02 + 0.4907177708009286E+02 + 0.4914386444974718E+02 + 0.4921569888872405E+02 + 0.4928728072453571E+02 + 0.4935861028451754E+02 + 0.4942968789582810E+02 + 0.4950051388544900E+02 + 0.4957108858018506E+02 + 0.4964141230666424E+02 + 0.4971148539133760E+02 + 0.4978130816047933E+02 + 0.4985088094018680E+02 + 0.4992020405638046E+02 + 0.4998927783480397E+02 + 0.5005810260102408E+02 + 0.5012667868043065E+02 + 0.5019500639823675E+02 + 0.5026308607947851E+02 + 0.5033091804901527E+02 + 0.5039850263152945E+02 + 0.5046584015152664E+02 + 0.5053293093333554E+02 + 0.5059977530110802E+02 + 0.5066637357881903E+02 + 0.5073272609026675E+02 + 0.5079883315907240E+02 + 0.5086469510868039E+02 + 0.5093031226235828E+02 + 0.5099568494319671E+02 + 0.5106081347410950E+02 + 0.5112569817783361E+02 + 0.5119033937692910E+02 + 0.5125473739377920E+02 + 0.5131889255059027E+02 + 0.5138280516939182E+02 + 0.5144647557203644E+02 + 0.5150990408019994E+02 + 0.5157309101538120E+02 + 0.5163603669890225E+02 + 0.5169874145190831E+02 + 0.5176120559536765E+02 + 0.5182342945007175E+02 + 0.5188541333663520E+02 + 0.5194715757549570E+02 + 0.5200866248691414E+02 + 0.5206992839097451E+02 + 0.5213095560758394E+02 + 0.5219174445647270E+02 + 0.5225229525719421E+02 + 0.5231260832912502E+02 + 0.5237268399146482E+02 + 0.5243252256323639E+02 + 0.5249212436328572E+02 + 0.5255148971028191E+02 + 0.5261061892271719E+02 + 0.5266951231890691E+02 + 0.5272817021698958E+02 + 0.5278659293492684E+02 + 0.5284478079050348E+02 + 0.5290273410132740E+02 + 0.5296045318482969E+02 + 0.5301793835826449E+02 + 0.5307518993870914E+02 + 0.5313220824306411E+02 + 0.5318899358805300E+02 + 0.5324554629022255E+02 + 0.5330186666594261E+02 + 0.5335795503140624E+02 + 0.5341381170262955E+02 + 0.5346943699545182E+02 + 0.5352483122553549E+02 + 0.5357999470836609E+02 + 0.5363492775925234E+02 + 0.5368963069332607E+02 + 0.5374410382554224E+02 + 0.5379834747067896E+02 + 0.5385236194333748E+02 + 0.5390614755794215E+02 + 0.5395970462874051E+02 + 0.5401303346980320E+02 + 0.5406613439502403E+02 + 0.5411900771811990E+02 + 0.5417165375263090E+02 + 0.5422407281192020E+02 + 0.5427626520917416E+02 + 0.5432823125740224E+02 + 0.5437997126943708E+02 + 0.5443148555793438E+02 + 0.5448277443537305E+02 + 0.5453383821405512E+02 + 0.5458467720610573E+02 + 0.5463529172347318E+02 + 0.5468568207792890E+02 + 0.5473584858106749E+02 + 0.5478579154430660E+02 + 0.5483551127888712E+02 + 0.5488500809587300E+02 + 0.5493428230615136E+02 + 0.5498333422043246E+02 + 0.5503216414924970E+02 + 0.5508077240295959E+02 + 0.5512915929174179E+02 + 0.5517732512559913E+02 + 0.5522527021435751E+02 + 0.5527299486766602E+02 + 0.5532049939499687E+02 + 0.5536778410564541E+02 + 0.5541484930873013E+02 + 0.5546169531319264E+02 + 0.5550832242779771E+02 + 0.5555473096113321E+02 + 0.5560092122161019E+02 + 0.5564689351746285E+02 + 0.5569264815674845E+02 + 0.5573818544734745E+02 + 0.5578350569696343E+02 + 0.5582860921312309E+02 + 0.5587349630317630E+02 + 0.5591816727429605E+02 + 0.5596262243347845E+02 + 0.5600686208754281E+02 + 0.5605088654313148E+02 + 0.5609469610671003E+02 + 0.5613829108456709E+02 + 0.5618167178281452E+02 + 0.5622483850738725E+02 + 0.5626779156404336E+02 + 0.5631053125836409E+02 + 0.5635305789575379E+02 + 0.5639537178143993E+02 + 0.5643747322047317E+02 + 0.5647936251772727E+02 + 0.5652103997789914E+02 + 0.5656250590550883E+02 + 0.5660376060489951E+02 + 0.5664480438023750E+02 + 0.5668563753551224E+02 + 0.5672626037453633E+02 + 0.5676667320094551E+02 + 0.5680687631819862E+02 + 0.5684687002957769E+02 + 0.5688665463818785E+02 + 0.5692623044695735E+02 + 0.5696559775863761E+02 + 0.5700475687580321E+02 + 0.5704370810085180E+02 + 0.5708245173600422E+02 + 0.5712098808330443E+02 + 0.5715931744461952E+02 + 0.5719744012163971E+02 + 0.5723535641587838E+02 + 0.5727306662867203E+02 + 0.5731057106118033E+02 + 0.5734787001438605E+02 + 0.5738496378909509E+02 + 0.5742185268593651E+02 + 0.5745853700536250E+02 + 0.5749501704764840E+02 + 0.5753129311289266E+02 + 0.5756736550101689E+02 + 0.5760323451176583E+02 + 0.5763890044470734E+02 + 0.5767436359923244E+02 + 0.5770962427455529E+02 + 0.5774468276971315E+02 + 0.5777953938356647E+02 + 0.5781419441479881E+02 + 0.5784864816191685E+02 + 0.5788290092325043E+02 + 0.5791695299695250E+02 + 0.5795080468099920E+02 + 0.5798445627318975E+02 + 0.5801790807114655E+02 + 0.5805116037231510E+02 + 0.5808421347396407E+02 + 0.5811706767318523E+02 + 0.5814972326689350E+02 + 0.5818218055182699E+02 + 0.5821443982454687E+02 + 0.5824650138143750E+02 + 0.5827836551870632E+02 + 0.5831003253238396E+02 + 0.5834150271832418E+02 + 0.5837277637220386E+02 + 0.5840385378952301E+02 + 0.5843473526560481E+02 + 0.5846542109559554E+02 + 0.5849591157446464E+02 + 0.5852620699700469E+02 + 0.5855630765783136E+02 + 0.5858621385138355E+02 + 0.5861592587192320E+02 + 0.5864544401353544E+02 + 0.5867476857012853E+02 + 0.5870389983543385E+02 + 0.5873283810300593E+02 + 0.5876158366622245E+02 + 0.5879013681828418E+02 + 0.5881849785221510E+02 + 0.5884666706086227E+02 + 0.5887464473689588E+02 + 0.5890243117280932E+02 + 0.5893002666091904E+02 + 0.5895743149336467E+02 + 0.5898464596210899E+02 + 0.5901167035893788E+02 + 0.5903850497546038E+02 + 0.5906515010310865E+02 + 0.5909160603313801E+02 + 0.5911787305662691E+02 + 0.5914395146447690E+02 + 0.5916984154741274E+02 + 0.5919554359598225E+02 + 0.5922105790055645E+02 + 0.5924638475132945E+02 + 0.5927152443831852E+02 + 0.5929647725136406E+02 + 0.5932124348012960E+02 + 0.5934582341410185E+02 + 0.5937021734259059E+02 + 0.5939442555472878E+02 + 0.5941844833947252E+02 + 0.5944228598560100E+02 + 0.5946593878171661E+02 + 0.5948940701624485E+02 + 0.5951269097743432E+02 + 0.5953579095335683E+02 + 0.5955870723190729E+02 + 0.5958144010080369E+02 + 0.5960398984758726E+02 + 0.5962635675962230E+02 + 0.5964854112409628E+02 + 0.5967054322801978E+02 + 0.5969236335822654E+02 + 0.5971400180137341E+02 + 0.5973545884394040E+02 + 0.5975673477223064E+02 + 0.5977782987237043E+02 + 0.5979874443030916E+02 + 0.5981947873181941E+02 + 0.5984003306249684E+02 + 0.5986040770776028E+02 + 0.5988060295285168E+02 + 0.5990061908283614E+02 + 0.5992045638260193E+02 + 0.5994011513686039E+02 + 0.5995959563014603E+02 + 0.5997889814681649E+02 + 0.5999802297105256E+02 + 0.6001697038685816E+02 + 0.6003574067806035E+02 + 0.6005433412830931E+02 + 0.6007275102107838E+02 + 0.6009099163966403E+02 + 0.6010905626718584E+02 + 0.6012694518658657E+02 + 0.6014465868063209E+02 + 0.6016219703191142E+02 + 0.6017956052283670E+02 + 0.6019674943564324E+02 + 0.6021376405238943E+02 + 0.6023060465495684E+02 + 0.6024727152505019E+02 + 0.6026376494419729E+02 + 0.6028008519374914E+02 + 0.6029623255487982E+02 + 0.6031220730858660E+02 + 0.6032800973568983E+02 + 0.6034364011683305E+02 + 0.6035909873248291E+02 + 0.6037438586292921E+02 + 0.6038950178828489E+02 + 0.6040444678848600E+02 + 0.6041922114329174E+02 + 0.6043382513228444E+02 + 0.6044825903486959E+02 + 0.6046252313027583E+02 + 0.6047661769755487E+02 + 0.6049054301558164E+02 + 0.6050429936305412E+02 + 0.6051788701849350E+02 + 0.6053130626024407E+02 + 0.6054455736647325E+02 + 0.6055764061517164E+02 + 0.6057055628415294E+02 + 0.6058330465105397E+02 + 0.6059588599333475E+02 + 0.6060830058827838E+02 + 0.6062054871299112E+02 + 0.6063263064440235E+02 + 0.6064454665926463E+02 + 0.6065629703415360E+02 + 0.6066788204546808E+02 + 0.6067930196943000E+02 + 0.6069055708208443E+02 + 0.6070164765929960E+02 + 0.6071257397676685E+02 + 0.6072333631000070E+02 + 0.6073393493433872E+02 + 0.6074437012494172E+02 + 0.6075464215679358E+02 + 0.6076475130470132E+02 + 0.6077469784329513E+02 + 0.6078448204702831E+02 + 0.6079410419017733E+02 + 0.6080356454684174E+02 + 0.6081286339094429E+02 + 0.6082200099623081E+02 + 0.6083097763627031E+02 + 0.6083979358445491E+02 + 0.6084844911399987E+02 + 0.6085694449794362E+02 + 0.6086528000914770E+02 + 0.6087345592029677E+02 + 0.6088147250389863E+02 + 0.6088933003228426E+02 + 0.6089702877760773E+02 + 0.6090456901184629E+02 + 0.6091195100680028E+02 + 0.6091917503409322E+02 + 0.6092624136517171E+02 + 0.6093315027130555E+02 + 0.6093990202358764E+02 + 0.6094649689293404E+02 + 0.6095293515008392E+02 + 0.6095921706559961E+02 + 0.6096534290986653E+02 + 0.6097131295309332E+02 + 0.6097712746531170E+02 + 0.6098278671637654E+02 + 0.6098829097596582E+02 + 0.6099364051358069E+02 + 0.6099883559854546E+02 + 0.6100387650000751E+02 + 0.6100876348693740E+02 + 0.6101349682812882E+02 + 0.6101807679219859E+02 + 0.6102250364758667E+02 + 0.6102677766255620E+02 + 0.6103089910519336E+02 + 0.6103486824340756E+02 + 0.6103868534493127E+02 + 0.6104235067732019E+02 + 0.6104586450795306E+02 + 0.6104922710403184E+02 + 0.6105243873258156E+02 + 0.6105549966045042E+02 + 0.6105841015430973E+02 + 0.6106117048065397E+02 + 0.6106378090580077E+02 + 0.6106624169589087E+02 + 0.6106855311688811E+02 + 0.6107071543457954E+02 + 0.6107272891457529E+02 + 0.6107459382230865E+02 + 0.6107631042303607E+02 + 0.6107787898183709E+02 + 0.6107929976361442E+02 + 0.6108057303309388E+02 + 0.6108169905482448E+02 + 0.6108267809317831E+02 + 0.6108351041235058E+02 + 0.6108419627635973E+02 + 0.6108473594904725E+02 + 0.6108512969407782E+02 + 0.6108537777493921E+02 + 0.6108548045494237E+02 + 0.6108543799722134E+02 + 0.6108525066473335E+02 + 0.6108491872025875E+02 + 0.6108444242640100E+02 + 0.6108382204558673E+02 + 0.6108305784006568E+02 + 0.6108215007191072E+02 + 0.6108109900301790E+02 + 0.6107990489510640E+02 + 0.6107856800971851E+02 + 0.6107708860821965E+02 + 0.6107546695179840E+02 + 0.6107370330146647E+02 + 0.6107179791805869E+02 + 0.6106975106223310E+02 + 0.6106756299447077E+02 + 0.6106523397507597E+02 + 0.6106276426417611E+02 + 0.6106015412172170E+02 + 0.6105740380748645E+02 + 0.6105451358106709E+02 + 0.6105148370188363E+02 + 0.6104831442917910E+02 + 0.6104500602201976E+02 + 0.6104155873929495E+02 + 0.6103797283971714E+02 + 0.6103424858182198E+02 + 0.6103038622396822E+02 + 0.6102638602433775E+02 + 0.6102224824093563E+02 + 0.6101797313159003E+02 + 0.6101356095395226E+02 + 0.6100901196549675E+02 + 0.6100432642352111E+02 + 0.6099950458514603E+02 + 0.6099454670731540E+02 + 0.6098945304679621E+02 + 0.6098422386017859E+02 + 0.6097885940387577E+02 + 0.6097335993412423E+02 + 0.6096772570698343E+02 + 0.6096195697833611E+02 + 0.6095605400388806E+02 + 0.6095001703916827E+02 + 0.6094384633952878E+02 + 0.6093754216014484E+02 + 0.6093110475601480E+02 + 0.6092453438196017E+02 + 0.6091783129262560E+02 + 0.6091099574247887E+02 + 0.6090402798581085E+02 + 0.6089692827673563E+02 + 0.6088969686919035E+02 + 0.6088233401693537E+02 + 0.6087483997355415E+02 + 0.6086721499245327E+02 + 0.6085945932686246E+02 + 0.6085157322983460E+02 + 0.6084355695424569E+02 + 0.6083541075279485E+02 + 0.6082713487800442E+02 + 0.6081872958221975E+02 + 0.6081019511760945E+02 + 0.6080153173616517E+02 + 0.6079273968970175E+02 + 0.6078381922985717E+02 + 0.6077477060809249E+02 + 0.6076559407569200E+02 + 0.6075628988376301E+02 + 0.6074685828323609E+02 + 0.6073729952486490E+02 + 0.6072761385922617E+02 + 0.6071780153671984E+02 + 0.6070786280756898E+02 + 0.6069779792181976E+02 + 0.6068760712934155E+02 + 0.6067729067982681E+02 + 0.6066684882279114E+02 + 0.6065628180757328E+02 + 0.6064558988333508E+02 + 0.6063477329906161E+02 + 0.6062383230356102E+02 + 0.6061276714546457E+02 + 0.6060157807322671E+02 + 0.6059026533512500E+02 + 0.6057882917926010E+02 + 0.6056726985355591E+02 + 0.6055558760575939E+02 + 0.6054378268344063E+02 + 0.6053185533399288E+02 + 0.6051980580463256E+02 + 0.6050763434239915E+02 + 0.6049534119415534E+02 + 0.6048292660658690E+02 + 0.6047039082620277E+02 + 0.6045773409933505E+02 + 0.6044495667213892E+02 + 0.6043205879059273E+02 + 0.6041904070049795E+02 + 0.6040590264747918E+02 + 0.6039264487698421E+02 + 0.6037926763428393E+02 + 0.6036577116447237E+02 + 0.6035215571246668E+02 + 0.6033842152300715E+02 + 0.6032456884065723E+02 + 0.6031059790980349E+02 + 0.6029650897465567E+02 + 0.6028230227924659E+02 + 0.6026797806743225E+02 + 0.6025353658289178E+02 + 0.6023897806912740E+02 + 0.6022430276946453E+02 + 0.6020951092705172E+02 + 0.6019460278486064E+02 + 0.6017957858568607E+02 + 0.6016443857214598E+02 + 0.6014918298668142E+02 + 0.6013381207155663E+02 + 0.6011832606885898E+02 + 0.6010272522049892E+02 + 0.6008700976821011E+02 + 0.6007117995354930E+02 + 0.6005523601789641E+02 + 0.6003917820245445E+02 + 0.6002300674824963E+02 + 0.6000672189613123E+02 + 0.5999032388677171E+02 + 0.5997381296066668E+02 + 0.5995718935813483E+02 + 0.5994045331931803E+02 + 0.5992360508418128E+02 + 0.5990664489251272E+02 + 0.5988957298392361E+02 + 0.5987238959784837E+02 + 0.5985509497354452E+02 + 0.5983768935009277E+02 + 0.5982017296639691E+02 + 0.5980254606118393E+02 + 0.5978480887300388E+02 + 0.5976696164023003E+02 + 0.5974900460105870E+02 + 0.5973093799350944E+02 + 0.5971276205542485E+02 + 0.5969447702447074E+02 + 0.5967608313813599E+02 + 0.5965758063373266E+02 + 0.5963896974839596E+02 + 0.5962025071908418E+02 + 0.5960142378257881E+02 + 0.5958248917548443E+02 + 0.5956344713422876E+02 + 0.5954429789506270E+02 + 0.5952504169406024E+02 + 0.5950567876711853E+02 + 0.5948620934995784E+02 + 0.5946663367812162E+02 + 0.5944695198697639E+02 + 0.5942716451171187E+02 + 0.5940727148734086E+02 + 0.5938727314869935E+02 + 0.5936716973044644E+02 + 0.5934696146706435E+02 + 0.5932664859285848E+02 + 0.5930623134195732E+02 + 0.5928570994831254E+02 + 0.5926508464569892E+02 + 0.5924435566771437E+02 + 0.5922352324777998E+02 + 0.5920258761913993E+02 + 0.5918154901486155E+02 + 0.5916040766783532E+02 + 0.5913916381077484E+02 + 0.5911781767621687E+02 + 0.5909636949652128E+02 + 0.5907481950387108E+02 + 0.5905316793027244E+02 + 0.5903141500755464E+02 + 0.5900956096737013E+02 + 0.5898760604119447E+02 + 0.5896555046032633E+02 + 0.5894339445588760E+02 + 0.5892113825882322E+02 + 0.5889878209990131E+02 + 0.5887632620971315E+02 + 0.5885377081867309E+02 + 0.5883111615701866E+02 + 0.5880836245481054E+02 + 0.5878550994193251E+02 + 0.5876255884809152E+02 + 0.5873950940281763E+02 + 0.5871636183546404E+02 + 0.5869311637520712E+02 + 0.5866977325104632E+02 + 0.5864633269180429E+02 + 0.5862279492612678E+02 + 0.5859916018248268E+02 + 0.5857542868916400E+02 + 0.5855160067428593E+02 + 0.5852767636578676E+02 + 0.5850365599142793E+02 + 0.5847953977879404E+02 + 0.5845532795529277E+02 + 0.5843102074815499E+02 + 0.5840661838443469E+02 + 0.5838212109100899E+02 + 0.5835752909457814E+02 + 0.5833284262166556E+02 + 0.5830806189861777E+02 + 0.5828318715160444E+02 + 0.5825821860661839E+02 + 0.5823315648947555E+02 + 0.5820800102581502E+02 + 0.5818275244109901E+02 + 0.5815741096061288E+02 + 0.5813197680946511E+02 + 0.5810645021258736E+02 + 0.5808083139473435E+02 + 0.5805512058048403E+02 + 0.5802931799423742E+02 + 0.5800342386021869E+02 + 0.5797743840247517E+02 + 0.5795136184487730E+02 + 0.5792519441111866E+02 + 0.5789893632471600E+02 + 0.5787258780900918E+02 + 0.5784614908716116E+02 + 0.5781962038215811E+02 + 0.5779300191680930E+02 + 0.5776629391374713E+02 + 0.5773949659542715E+02 + 0.5771261018412805E+02 + 0.5768563490195162E+02 + 0.5765857097082285E+02 + 0.5763141861248982E+02 + 0.5760417804852377E+02 + 0.5757684950031906E+02 + 0.5754943318909317E+02 + 0.5752192933588678E+02 + 0.5749433816156365E+02 + 0.5746665988681070E+02 + 0.5743889473213796E+02 + 0.5741104291787865E+02 + 0.5738310466418908E+02 + 0.5735508019104869E+02 + 0.5732696971826012E+02 + 0.5729877346544909E+02 + 0.5727049165206446E+02 + 0.5724212449737825E+02 + 0.5721367222048561E+02 + 0.5718513504030481E+02 + 0.5715651317557728E+02 + 0.5712780684486759E+02 + 0.5709901626656340E+02 + 0.5707014165887555E+02 + 0.5704118323983803E+02 + 0.5701214122730793E+02 + 0.5698301583896549E+02 + 0.5695380729231409E+02 + 0.5692451580468024E+02 + 0.5689514159321361E+02 + 0.5686568487488696E+02 + 0.5683614586649623E+02 + 0.5680652478466050E+02 + 0.5677682184582194E+02 + 0.5674703726624590E+02 + 0.5671717126202085E+02 + 0.5668722404905839E+02 + 0.5665719584309329E+02 + 0.5662708685968342E+02 + 0.5659689731420980E+02 + 0.5656662742187657E+02 + 0.5653627739771105E+02 + 0.5650584745656368E+02 + 0.5647533781310799E+02 + 0.5644474868184073E+02 + 0.5641408027708169E+02 + 0.5638333281297388E+02 + 0.5635250650348342E+02 + 0.5632160156239954E+02 + 0.5629061820333465E+02 + 0.5625955663972427E+02 + 0.5622841708482705E+02 + 0.5619719975172480E+02 + 0.5616590485332247E+02 + 0.5613453260234810E+02 + 0.5610308321135292E+02 + 0.5607155689271129E+02 + 0.5603995385862066E+02 + 0.5600827432110169E+02 + 0.5597651849199811E+02 + 0.5594468658297681E+02 + 0.5591277880552784E+02 + 0.5588079537096436E+02 + 0.5584873649042267E+02 + 0.5581660237486224E+02 + 0.5578439323506560E+02 + 0.5575210928163851E+02 + 0.5571975072500981E+02 + 0.5568731777543145E+02 + 0.5565481064297862E+02 + 0.5562222953754954E+02 + 0.5558957466886562E+02 + 0.5555684624647141E+02 + 0.5552404447973458E+02 + 0.5549116957784591E+02 + 0.5545822174981939E+02 + 0.5542520120449206E+02 + 0.5539210815052419E+02 + 0.5535894279639911E+02 + 0.5532570535042331E+02 + 0.5529239602072641E+02 + 0.5525901501526123E+02 + 0.5522556254180363E+02 + 0.5519203880795268E+02 + 0.5515844402113053E+02 + 0.5512477838858251E+02 + 0.5509104211737707E+02 + 0.5505723541440582E+02 + 0.5502335848638344E+02 + 0.5498941153984784E+02 + 0.5495539478116000E+02 + 0.5492130841650406E+02 + 0.5488715265188730E+02 + 0.5485292769314012E+02 + 0.5481863374591607E+02 + 0.5478427101569184E+02 + 0.5474983970776724E+02 + 0.5471534002726524E+02 + 0.5468077217913192E+02 + 0.5464613636813654E+02 + 0.5461143279887143E+02 + 0.5457666167575214E+02 + 0.5454182320301727E+02 + 0.5450691758472863E+02 + 0.5447194502477112E+02 + 0.5443690572685279E+02 + 0.5440179989450486E+02 + 0.5436662773108161E+02 + 0.5433138943976056E+02 + 0.5429608522354226E+02 + 0.5426071528525046E+02 + 0.5422527982753205E+02 + 0.5418977905285702E+02 + 0.5415421316351853E+02 + 0.5411858236163288E+02 + 0.5408288684913946E+02 + 0.5404712682780085E+02 + 0.5401130249920274E+02 + 0.5397541406475396E+02 + 0.5393946172568649E+02 + 0.5390344568305541E+02 + 0.5386736613773898E+02 + 0.5383122329043859E+02 + 0.5379501734167874E+02 + 0.5375874849180710E+02 + 0.5372241694099444E+02 + 0.5368602288923471E+02 + 0.5364956653634494E+02 + 0.5361304808196537E+02 + 0.5357646772555930E+02 + 0.5353982566641324E+02 + 0.5350312210363678E+02 + 0.5346635723616267E+02 + 0.5342953126274681E+02 + 0.5339264438196819E+02 + 0.5335569679222900E+02 + 0.5331868869175452E+02 + 0.5328162027859320E+02 + 0.5324449175061658E+02 + 0.5320730330551940E+02 + 0.5317005514081949E+02 + 0.5313274745385780E+02 + 0.5309538044179849E+02 + 0.5305795430162880E+02 + 0.5302046923015911E+02 + 0.5298292542402297E+02 + 0.5294532307967701E+02 + 0.5290766239340105E+02 + 0.5286994356129804E+02 + 0.5283216677929404E+02 + 0.5279433224313826E+02 + 0.5275644014840306E+02 + 0.5271849069048393E+02 + 0.5268048406459946E+02 + 0.5264242046579144E+02 + 0.5260430008892476E+02 + 0.5256612312868744E+02 + 0.5252788977959067E+02 + 0.5248960023596874E+02 + 0.5245125469197911E+02 + 0.5241285334160234E+02 + 0.5237439637864215E+02 + 0.5233588399672541E+02 + 0.5229731638930211E+02 + 0.5225869374964535E+02 + 0.5222001627085142E+02 + 0.5218128414583973E+02 + 0.5214249756735279E+02 + 0.5210365672795631E+02 + 0.5206476182003907E+02 + 0.5202581303581301E+02 + 0.5198681056731326E+02 + 0.5194775460639801E+02 + 0.5190864534474863E+02 + 0.5186948297386962E+02 + 0.5183026768508860E+02 + 0.5179099966955635E+02 + 0.5175167911824678E+02 + 0.5171230622195692E+02 + 0.5167288117130698E+02 + 0.5163340415674023E+02 + 0.5159387536852318E+02 + 0.5155429499674536E+02 + 0.5151466323131956E+02 + 0.5147498026198160E+02 + 0.5143524627829051E+02 + 0.5139546146962841E+02 + 0.5135562602520057E+02 + 0.5131574013403543E+02 + 0.5127580398498452E+02 + 0.5123581776672253E+02 + 0.5119578166774728E+02 + 0.5115569587637974E+02 + 0.5111556058076398E+02 + 0.5107537596886727E+02 + 0.5103514222847996E+02 + 0.5099485954721556E+02 + 0.5095452811251072E+02 + 0.5091414811162522E+02 + 0.5087371973164195E+02 + 0.5083324315946700E+02 + 0.5079271858182956E+02 + 0.5075214618528194E+02 + 0.5071152615619962E+02 + 0.5067085868078119E+02 + 0.5063014394504840E+02 + 0.5058938213484611E+02 + 0.5054857343584236E+02 + 0.5050771803352827E+02 + 0.5046681611321815E+02 + 0.5042586786004941E+02 + 0.5038487345898260E+02 + 0.5034383309480145E+02 + 0.5030274695211276E+02 + 0.5026161521534652E+02 + 0.5022043806875583E+02 + 0.5017921569641695E+02 + 0.5013794828222923E+02 + 0.5009663600991522E+02 + 0.5005527906302055E+02 + 0.5001387762491403E+02 + 0.4997243187878758E+02 + 0.4993094200765626E+02 + 0.4988940819435830E+02 + 0.4984783062155501E+02 + 0.4980620947173088E+02 + 0.4976454492719351E+02 + 0.4972283717007367E+02 + 0.4968108638232523E+02 + 0.4963929274572522E+02 + 0.4959745644187381E+02 + 0.4955557765219427E+02 + 0.4951365655793306E+02 + 0.4947169334015976E+02 + 0.4942968817976703E+02 + 0.4938764125747076E+02 + 0.4934555275380993E+02 + 0.4930342284914663E+02 + 0.4926125172366613E+02 + 0.4921903955737683E+02 + 0.4917678653011024E+02 + 0.4913449282152106E+02 + 0.4909215861108706E+02 + 0.4904978407810918E+02 + 0.4900736940171153E+02 + 0.4896491476084129E+02 + 0.4892242033426881E+02 + 0.4887988630058761E+02 + 0.4883731283821429E+02 + 0.4879470012538861E+02 + 0.4875204834017346E+02 + 0.4870935766045491E+02 + 0.4866662826394207E+02 + 0.4862386032816731E+02 + 0.4858105403048606E+02 + 0.4853820954807686E+02 + 0.4849532705794149E+02 + 0.4845240673690478E+02 + 0.4840944876161471E+02 + 0.4836645330854241E+02 + 0.4832342055398216E+02 + 0.4828035067405137E+02 + 0.4823724384469056E+02 + 0.4819410024166341E+02 + 0.4815092004055676E+02 + 0.4810770341678052E+02 + 0.4806445054556781E+02 + 0.4802116160197483E+02 + 0.4797783676088096E+02 + 0.4793447619698870E+02 + 0.4789108008482366E+02 + 0.4784764859873464E+02 + 0.4780418191289353E+02 + 0.4776068020129538E+02 + 0.4771714363775838E+02 + 0.4767357239592384E+02 + 0.4762996664925622E+02 + 0.4758632657104312E+02 + 0.4754265233439525E+02 + 0.4749894411224651E+02 + 0.4745520207735386E+02 + 0.4741142640229746E+02 + 0.4736761725948060E+02 + 0.4732377482112970E+02 + 0.4727989925929428E+02 + 0.4723599074584704E+02 + 0.4719204945248382E+02 + 0.4714807555072355E+02 + 0.4710406921190837E+02 + 0.4706003060720347E+02 + 0.4701595990759726E+02 + 0.4697185728390123E+02 + 0.4692772290675003E+02 + 0.4688355694660145E+02 + 0.4683935957373640E+02 + 0.4679513095825892E+02 + 0.4675087127009623E+02 + 0.4670658067899866E+02 + 0.4666225935453965E+02 + 0.4661790746611585E+02 + 0.4657352518294696E+02 + 0.4652911267407587E+02 + 0.4648467010836860E+02 + 0.4644019765451429E+02 + 0.4639569548102524E+02 + 0.4635116375623687E+02 + 0.4630660264830774E+02 + 0.4626201232521954E+02 + 0.4621739295477715E+02 + 0.4617274470460848E+02 + 0.4612806774216467E+02 + 0.4608336223471997E+02 + 0.4603862834937174E+02 + 0.4599386625304054E+02 + 0.4594907611247000E+02 + 0.4590425809422690E+02 + 0.4585941236470120E+02 + 0.4581453909010595E+02 + 0.4576963843647737E+02 + 0.4572471056967478E+02 + 0.4567975565538067E+02 + 0.4563477385910064E+02 + 0.4558976534616349E+02 + 0.4554473028172104E+02 + 0.4549966883074836E+02 + 0.4545458115804360E+02 + 0.4540946742822806E+02 + 0.4536432780574616E+02 + 0.4531916245486551E+02 + 0.4527397153967679E+02 + 0.4522875522409386E+02 + 0.4518351367185369E+02 + 0.4513824704651642E+02 + 0.4509295551146528E+02 + 0.4504763922990669E+02 + 0.4500229836487016E+02 + 0.4495693307920838E+02 + 0.4491154353559713E+02 + 0.4486612989653536E+02 + 0.4482069232434516E+02 + 0.4477523098117174E+02 + 0.4472974602898346E+02 + 0.4468423762957176E+02 + 0.4463870594455133E+02 + 0.4459315113535990E+02 + 0.4454757336325837E+02 + 0.4450197278933079E+02 + 0.4445634957448433E+02 + 0.4441070387944927E+02 + 0.4436503586477910E+02 + 0.4431934569085039E+02 + 0.4427363351786284E+02 + 0.4422789950583934E+02 + 0.4418214381462585E+02 + 0.4413636660389152E+02 + 0.4409056803312863E+02 + 0.4404474826165257E+02 + 0.4399890744860186E+02 + 0.4395304575293823E+02 + 0.4390716333344645E+02 + 0.4386126034873450E+02 + 0.4381533695723345E+02 + 0.4376939331719753E+02 + 0.4372342958670412E+02 + 0.4367744592365370E+02 + 0.4363144248576991E+02 + 0.4358541943059953E+02 + 0.4353937691551247E+02 + 0.4349331509770177E+02 + 0.4344723413418362E+02 + 0.4340113418179735E+02 + 0.4335501539720539E+02 + 0.4330887793689336E+02 + 0.4326272195716999E+02 + 0.4321654761416713E+02 + 0.4317035506383979E+02 + 0.4312414446196615E+02 + 0.4307791596414742E+02 + 0.4303166972580807E+02 + 0.4298540590219565E+02 + 0.4293912464838082E+02 + 0.4289282611925742E+02 + 0.4284651046954242E+02 + 0.4280017785377592E+02 + 0.4275382842632115E+02 + 0.4270746234136448E+02 + 0.4266107975291543E+02 + 0.4261468081480665E+02 + 0.4256826568069391E+02 + 0.4252183450405614E+02 + 0.4247538743819541E+02 + 0.4242892463623688E+02 + 0.4238244625112892E+02 + 0.4233595243564298E+02 + 0.4228944334237367E+02 + 0.4224291912373872E+02 + 0.4219637993197903E+02 + 0.4214982591915861E+02 + 0.4210325723716461E+02 + 0.4205667403770732E+02 + 0.4201007647232015E+02 + 0.4196346469235969E+02 + 0.4191683884900564E+02 + 0.4187019909326081E+02 + 0.4182354557595120E+02 + 0.4177687844772592E+02 + 0.4173019785905719E+02 + 0.4168350396024044E+02 + 0.4163679690139415E+02 + 0.4159007683245999E+02 + 0.4154334390320278E+02 + 0.4149659826321042E+02 + 0.4144984006189398E+02 + 0.4140306944848770E+02 + 0.4135628657204888E+02 + 0.4130949158145803E+02 + 0.4126268462541876E+02 + 0.4121586585245780E+02 + 0.4116903541092507E+02 + 0.4112219344899359E+02 + 0.4107534011465952E+02 + 0.4102847555574216E+02 + 0.4098159991988395E+02 + 0.4093471335455045E+02 + 0.4088781600703040E+02 + 0.4084090802443563E+02 + 0.4079398955370112E+02 + 0.4074706074158500E+02 + 0.4070012173466854E+02 + 0.4065317267935611E+02 + 0.4060621372187526E+02 + 0.4055924500827666E+02 + 0.4051226668443411E+02 + 0.4046527889604456E+02 + 0.4041828178862809E+02 + 0.4037127550752788E+02 + 0.4032426019791034E+02 + 0.4027723600476493E+02 + 0.4023020307290429E+02 + 0.4018316154696417E+02 + 0.4013611157140348E+02 + 0.4008905329050425E+02 + 0.4004198684837168E+02 + 0.3999491238893404E+02 + 0.3994783005594282E+02 + 0.3990073999297258E+02 + 0.3985364234342104E+02 + 0.3980653725050908E+02 + 0.3975942485728067E+02 + 0.3971230530660297E+02 + 0.3966517874116623E+02 + 0.3961804530348387E+02 + 0.3957090513589242E+02 + 0.3952375838055157E+02 + 0.3947660517944412E+02 + 0.3942944567437606E+02 + 0.3938228000697643E+02 + 0.3933510831869752E+02 + 0.3928793075081463E+02 + 0.3924074744442632E+02 + 0.3919355854045417E+02 + 0.3914636417964301E+02 + 0.3909916450256071E+02 + 0.3905195964959835E+02 + 0.3900474976097009E+02 + 0.3895753497671328E+02 + 0.3891031543668835E+02 + 0.3886309128057892E+02 + 0.3881586264789170E+02 + 0.3876862967795660E+02 + 0.3872139250992658E+02 + 0.3867415128277781E+02 + 0.3862690613530956E+02 + 0.3857965720614425E+02 + 0.3853240463372745E+02 + 0.3848514855632782E+02 + 0.3843788911203722E+02 + 0.3839062643877059E+02 + 0.3834336067426604E+02 + 0.3829609195608482E+02 + 0.3824882042161130E+02 + 0.3820154620805297E+02 + 0.3815426945244052E+02 + 0.3810699029162770E+02 + 0.3805970886229145E+02 + 0.3801242530093182E+02 + 0.3796513974387204E+02 + 0.3791785232725838E+02 + 0.3787056318706037E+02 + 0.3782327245907059E+02 + 0.3777598027890478E+02 + 0.3772868678200184E+02 + 0.3768139210362378E+02 + 0.3763409637885574E+02 + 0.3758679974260603E+02 + 0.3753950232960608E+02 + 0.3749220427441042E+02 + 0.3744490571139680E+02 + 0.3739760677476603E+02 + 0.3735030759854210E+02 + 0.3730300831657210E+02 + 0.3725570906252632E+02 + 0.3720840996989809E+02 + 0.3716111117200400E+02 + 0.3711381280198365E+02 + 0.3706651499279989E+02 + 0.3701921787723859E+02 + 0.3697192158790888E+02 + 0.3692462625724293E+02 + 0.3687733201749613E+02 + 0.3683003900074690E+02 + 0.3678274733889690E+02 + 0.3673545716367086E+02 + 0.3668816860661671E+02 + 0.3664088179910542E+02 + 0.3659359687233123E+02 + 0.3654631395731137E+02 + 0.3649903318488632E+02 + 0.3645175468571964E+02 + 0.3640447859029807E+02 + 0.3635720502893143E+02 + 0.3630993413175271E+02 + 0.3626266602871804E+02 + 0.3621540084960669E+02 + 0.3616813872402106E+02 + 0.3612087978138663E+02 + 0.3607362415095216E+02 + 0.3602637196178938E+02 + 0.3597912334279327E+02 + 0.3593187842268191E+02 + 0.3588463732999653E+02 + 0.3583740019310145E+02 + 0.3579016714018420E+02 + 0.3574293829925539E+02 + 0.3569571379814878E+02 + 0.3564849376452128E+02 + 0.3560127832585295E+02 + 0.3555406760944691E+02 + 0.3550686174242954E+02 + 0.3545966085175025E+02 + 0.3541246506418165E+02 + 0.3536527450631943E+02 + 0.3531808930458250E+02 + 0.3527090958521279E+02 + 0.3522373547427551E+02 + 0.3517656709765889E+02 + 0.3512940458107433E+02 + 0.3508224805005641E+02 + 0.3503509762996278E+02 + 0.3498795344597426E+02 + 0.3494081562309483E+02 + 0.3489368428615156E+02 + 0.3484655955979468E+02 + 0.3479944156849759E+02 + 0.3475233043655673E+02 + 0.3470522628809181E+02 + 0.3465812924704555E+02 + 0.3461103943718390E+02 + 0.3456395698209589E+02 + 0.3451688200519372E+02 + 0.3446981462971270E+02 + 0.3442275497871132E+02 + 0.3437570317507114E+02 + 0.3432865934149692E+02 + 0.3428162360051652E+02 + 0.3423459607448097E+02 + 0.3418757688556437E+02 + 0.3414056615576406E+02 + 0.3409356400690041E+02 + 0.3404657056061701E+02 + 0.3399958593838053E+02 + 0.3395261026148081E+02 + 0.3390564365103082E+02 + 0.3385868622796665E+02 + 0.3381173811304755E+02 + 0.3376479942685590E+02 + 0.3371787028979722E+02 + 0.3367095082210013E+02 + 0.3362404114381646E+02 + 0.3357714137482110E+02 + 0.3353025163481212E+02 + 0.3348337204331073E+02 + 0.3343650271966127E+02 + 0.3338964378303118E+02 + 0.3334279535241110E+02 + 0.3329595754661476E+02 + 0.3324913048427905E+02 + 0.3320231428386398E+02 + 0.3315550906365273E+02 + 0.3310871494175157E+02 + 0.3306193203608993E+02 + 0.3301516046442038E+02 + 0.3296840034431864E+02 + 0.3292165179318352E+02 + 0.3287491492823704E+02 + 0.3282818986652428E+02 + 0.3278147672491349E+02 + 0.3273477562009607E+02 + 0.3268808666858654E+02 + 0.3264140998672259E+02 + 0.3259474569066497E+02 + 0.3254809389639765E+02 + 0.3250145471972768E+02 + 0.3245482827628530E+02 + 0.3240821468152382E+02 + 0.3236161405071977E+02 + 0.3231502649897270E+02 + 0.3226845214120543E+02 + 0.3222189109216382E+02 + 0.3217534346641692E+02 + 0.3212880937835687E+02 + 0.3208228894219902E+02 + 0.3203578227198176E+02 + 0.3198928948156670E+02 + 0.3194281068463854E+02 + 0.3189634599470514E+02 + 0.3184989552509748E+02 + 0.3180345938896971E+02 + 0.3175703769929906E+02 + 0.3171063056888593E+02 + 0.3166423811035390E+02 + 0.3161786043614956E+02 + 0.3157149765854281E+02 + 0.3152514988962654E+02 + 0.3147881724131685E+02 + 0.3143249982535296E+02 + 0.3138619775329724E+02 + 0.3133991113653514E+02 + 0.3129364008627536E+02 + 0.3124738471354960E+02 + 0.3120114512921280E+02 + 0.3115492144394299E+02 + 0.3110871376824137E+02 + 0.3106252221243221E+02 + 0.3101634688666302E+02 + 0.3097018790090434E+02 + 0.3092404536494992E+02 + 0.3087791938841660E+02 + 0.3083181008074442E+02 + 0.3078571755119646E+02 + 0.3073964190885906E+02 + 0.3069358326264157E+02 + 0.3064754172127658E+02 + 0.3060151739331973E+02 + 0.3055551038714989E+02 + 0.3050952081096899E+02 + 0.3046354877280211E+02 + 0.3041759438049751E+02 + 0.3037165774172654E+02 + 0.3032573896398372E+02 + 0.3027983815458666E+02 + 0.3023395542067619E+02 + 0.3018809086921618E+02 + 0.3014224460699370E+02 + 0.3009641674061893E+02 + 0.3005060737652522E+02 + 0.3000481662096900E+02 + 0.2995904458002990E+02 + 0.2991329135961063E+02 + 0.2986755706543708E+02 + 0.2982184180305825E+02 + 0.2977614567784631E+02 + 0.2973046879499650E+02 + 0.2968481125952729E+02 + 0.2963917317628020E+02 + 0.2959355464991996E+02 + 0.2954795578493436E+02 + 0.2950237668563440E+02 + 0.2945681745615416E+02 + 0.2941127820045092E+02 + 0.2936575902230503E+02 + 0.2932026002532000E+02 + 0.2927478131292251E+02 + 0.2922932298836231E+02 + 0.2918388515471236E+02 + 0.2913846791486871E+02 + 0.2909307137155057E+02 + 0.2904769562730026E+02 + 0.2900234078448327E+02 + 0.2895700694528820E+02 + 0.2891169421172680E+02 + 0.2886640268563395E+02 + 0.2882113246866769E+02 + 0.2877588366230915E+02 + 0.2873065636786265E+02 + 0.2868545068645560E+02 + 0.2864026671903859E+02 + 0.2859510456638530E+02 + 0.2854996432909260E+02 + 0.2850484610758045E+02 + 0.2845975000209198E+02 + 0.2841467611269343E+02 + 0.2836962453927420E+02 + 0.2832459538154680E+02 + 0.2827958873904691E+02 + 0.2823460471113334E+02 + 0.2818964339698799E+02 + 0.2814470489561597E+02 + 0.2809978930584546E+02 + 0.2805489672632784E+02 + 0.2801002725553757E+02 + 0.2796518099177230E+02 + 0.2792035803315275E+02 + 0.2787555847762285E+02 + 0.2783078242294960E+02 + 0.2778602996672320E+02 + 0.2774130120635693E+02 + 0.2769659623908726E+02 + 0.2765191516197374E+02 + 0.2760725807189910E+02 + 0.2756262506556919E+02 + 0.2751801623951301E+02 + 0.2747343169008268E+02 + 0.2742887151345347E+02 + 0.2738433580562377E+02 + 0.2733982466241512E+02 + 0.2729533817947219E+02 + 0.2725087645226281E+02 + 0.2720643957607790E+02 + 0.2716202764603158E+02 + 0.2711764075706105E+02 + 0.2707327900392665E+02 + 0.2702894248121192E+02 + 0.2698463128332345E+02 + 0.2694034550449105E+02 + 0.2689608523876759E+02 + 0.2685185058002913E+02 + 0.2680764162197484E+02 + 0.2676345845812706E+02 + 0.2671930118183121E+02 + 0.2667516988625592E+02 + 0.2663106466439287E+02 + 0.2658698560905696E+02 + 0.2654293281288618E+02 + 0.2649890636834168E+02 + 0.2645490636770769E+02 + 0.2641093290309169E+02 + 0.2636698606642418E+02 + 0.2632306594945885E+02 + 0.2627917264377253E+02 + 0.2623530624076521E+02 + 0.2619146683165991E+02 + 0.2614765450750294E+02 + 0.2610386935916362E+02 + 0.2606011147733449E+02 + 0.2601638095253117E+02 + 0.2597267787509244E+02 + 0.2592900233518023E+02 + 0.2588535442277959E+02 + 0.2584173422769871E+02 + 0.2579814183959639E+02 + 0.2575457734873136E+02 + 0.2571104084605421E+02 + 0.2566753242189894E+02 + 0.2562405216135619E+02 + 0.2558060014633142E+02 + 0.2553717645904302E+02 + 0.2549378118412771E+02 + 0.2545041440681042E+02 + 0.2540707621020039E+02 + 0.2536376667266999E+02 + 0.2532048587204795E+02 + 0.2527723389654711E+02 + 0.2523401084718430E+02 + 0.2519081682398296E+02 + 0.2514765190747457E+02 + 0.2510451616539342E+02 + 0.2506140966796749E+02 + 0.2501833250086585E+02 + 0.2497528475478540E+02 + 0.2493226651941805E+02 + 0.2488927788209136E+02 + 0.2484631892950741E+02 + 0.2480338974402735E+02 + 0.2476049040221218E+02 + 0.2471762098066529E+02 + 0.2467478156435795E+02 + 0.2463197224422467E+02 + 0.2458919310871536E+02 + 0.2454644423145830E+02 + 0.2450372568047153E+02 + 0.2446103752725250E+02 + 0.2441837985380711E+02 + 0.2437575274399885E+02 + 0.2433315628746615E+02 + 0.2429059058250826E+02 + 0.2424805572628846E+02 + 0.2420555178935458E+02 + 0.2416307882118439E+02 + 0.2412063687675065E+02 + 0.2407822605292353E+02 + 0.2403584646367830E+02 + 0.2399349820920654E+02 + 0.2395118134539735E+02 + 0.2390889591932241E+02 + 0.2386664199724102E+02 + 0.2382441967693676E+02 + 0.2378222905803769E+02 + 0.2374007022310883E+02 + 0.2369794323987966E+02 + 0.2365584817695954E+02 + 0.2361378511451031E+02 + 0.2357175413784401E+02 + 0.2352975532987395E+02 + 0.2348778876525418E+02 + 0.2344585451664240E+02 + 0.2340395265662331E+02 + 0.2336208325780481E+02 + 0.2332024639287624E+02 + 0.2327844213961753E+02 + 0.2323667058065470E+02 + 0.2319493179763818E+02 + 0.2315322586357434E+02 + 0.2311155284703697E+02 + 0.2306991281880666E+02 + 0.2302830585918611E+02 + 0.2298673205069234E+02 + 0.2294519147109259E+02 + 0.2290368418887968E+02 + 0.2286221027155519E+02 + 0.2282076979335444E+02 + 0.2277936283557459E+02 + 0.2273798947876540E+02 + 0.2269664979456133E+02 + 0.2265534384957525E+02 + 0.2261407171219866E+02 + 0.2257283345963480E+02 + 0.2253162917139814E+02 + 0.2249045892407209E+02 + 0.2244932278800626E+02 + 0.2240822083248444E+02 + 0.2236715312438407E+02 + 0.2232611972784334E+02 + 0.2228512070826791E+02 + 0.2224415614817061E+02 + 0.2220322614044513E+02 + 0.2216233077086315E+02 + 0.2212147008972289E+02 + 0.2208064413623633E+02 + 0.2203985296610495E+02 + 0.2199909667545614E+02 + 0.2195837536575968E+02 + 0.2191768911736426E+02 + 0.2187703798395878E+02 + 0.2183642201800119E+02 + 0.2179584128007600E+02 + 0.2175529583616271E+02 + 0.2171478575467311E+02 + 0.2167431111774748E+02 + 0.2163387201213243E+02 + 0.2159346851499576E+02 + 0.2155310067794742E+02 + 0.2151276854853931E+02 + 0.2147247219165665E+02 + 0.2143221169634985E+02 + 0.2139198715152386E+02 + 0.2135179862066448E+02 + 0.2131164614841687E+02 + 0.2127152978393257E+02 + 0.2123144960806021E+02 + 0.2119140571364724E+02 + 0.2115139818033312E+02 + 0.2111142704846067E+02 + 0.2107149235129230E+02 + 0.2103159414683172E+02 + 0.2099173253102116E+02 + 0.2095190760111278E+02 + 0.2091211942537460E+02 + 0.2087236804848928E+02 + 0.2083265351697382E+02 + 0.2079297589601936E+02 + 0.2075333525861215E+02 + 0.2071373167711701E+02 + 0.2067416522212404E+02 + 0.2063463596362714E+02 + 0.2059514396443899E+02 + 0.2055568927540757E+02 + 0.2051627194660616E+02 + 0.2047689203852612E+02 + 0.2043754962093948E+02 + 0.2039824476359040E+02 + 0.2035897753458275E+02 + 0.2031974800116116E+02 + 0.2028055622829655E+02 + 0.2024140227303250E+02 + 0.2020228619048505E+02 + 0.2016320804146072E+02 + 0.2012416789748793E+02 + 0.2008516583046685E+02 + 0.2004620189779994E+02 + 0.2000727614266853E+02 + 0.1996838861014090E+02 + 0.1992953936857627E+02 + 0.1989072849829358E+02 + 0.1985195607454541E+02 + 0.1981322215173817E+02 + 0.1977452677880547E+02 + 0.1973587001161754E+02 + 0.1969725192045920E+02 + 0.1965867257667414E+02 + 0.1962013203659303E+02 + 0.1958163034039005E+02 + 0.1954316752981847E+02 + 0.1950474367193918E+02 + 0.1946635884817317E+02 + 0.1942801313338775E+02 + 0.1938970657208562E+02 + 0.1935143919995382E+02 + 0.1931321106511181E+02 + 0.1927502224409924E+02 + 0.1923687281666467E+02 + 0.1919876284412204E+02 + 0.1916069236600362E+02 + 0.1912266142180444E+02 + 0.1908467006677181E+02 + 0.1904671836598025E+02 + 0.1900880638375573E+02 + 0.1897093418048789E+02 + 0.1893310181518655E+02 + 0.1889530934545532E+02 + 0.1885755682564375E+02 + 0.1881984430937071E+02 + 0.1878217184730412E+02 + 0.1874453948633245E+02 + 0.1870694727428874E+02 + 0.1866939527646804E+02 + 0.1863188357019044E+02 + 0.1859441222645112E+02 + 0.1855698127939342E+02 + 0.1851959074995463E+02 + 0.1848224067448159E+02 + 0.1844493113260962E+02 + 0.1840766221090919E+02 + 0.1837043397539079E+02 + 0.1833324646273361E+02 + 0.1829609970773576E+02 + 0.1825899375336745E+02 + 0.1822192864876424E+02 + 0.1818490444527056E+02 + 0.1814792120834074E+02 + 0.1811097900888609E+02 + 0.1807407790899573E+02 + 0.1803721794380510E+02 + 0.1800039914335100E+02 + 0.1796362155390727E+02 + 0.1792688524740838E+02 + 0.1789019029658566E+02 + 0.1785353675158251E+02 + 0.1781692464363396E+02 + 0.1778035400598283E+02 + 0.1774382489168955E+02 + 0.1770733736235618E+02 + 0.1767089147572284E+02 + 0.1763448727654494E+02 + 0.1759812480669606E+02 + 0.1756180411250089E+02 + 0.1752552524813827E+02 + 0.1748928826834300E+02 + 0.1745309322628082E+02 + 0.1741694017366260E+02 + 0.1738082916179010E+02 + 0.1734476024030386E+02 + 0.1730873345794993E+02 + 0.1727274885982304E+02 + 0.1723680647760061E+02 + 0.1720090633972738E+02 + 0.1716504849028154E+02 + 0.1712923300339817E+02 + 0.1709345995546327E+02 + 0.1705772939899588E+02 + 0.1702204136244651E+02 + 0.1698639587433296E+02 + 0.1695079297505806E+02 + 0.1691523271126062E+02 + 0.1687971512983326E+02 + 0.1684424027908884E+02 + 0.1680880820759307E+02 + 0.1677341896457110E+02 + 0.1673807260083503E+02 + 0.1670276916702311E+02 + 0.1666750870735575E+02 + 0.1663229125896391E+02 + 0.1659711685955833E+02 + 0.1656198555826707E+02 + 0.1652689741084915E+02 + 0.1649185246846486E+02 + 0.1645685076066216E+02 + 0.1642189231047824E+02 + 0.1638697715286505E+02 + 0.1635210535085948E+02 + 0.1631727697076104E+02 + 0.1628249205811198E+02 + 0.1624775063323103E+02 + 0.1621305271710201E+02 + 0.1617839835841201E+02 + 0.1614378762369947E+02 + 0.1610922057360422E+02 + 0.1607469723657138E+02 + 0.1604021763031496E+02 + 0.1600578178426057E+02 + 0.1597138975846454E+02 + 0.1593704161731395E+02 + 0.1590273740720747E+02 + 0.1586847715053947E+02 + 0.1583426086902920E+02 + 0.1580008860016235E+02 + 0.1576596039258667E+02 + 0.1573187629441860E+02 + 0.1569783635002706E+02 + 0.1566384060229691E+02 + 0.1562988909237101E+02 + 0.1559598185673580E+02 + 0.1556211893089185E+02 + 0.1552830035009795E+02 + 0.1549452614934664E+02 + 0.1546079636369340E+02 + 0.1542711103196594E+02 + 0.1539347019590318E+02 + 0.1535987389750422E+02 + 0.1532632218092896E+02 + 0.1529281509111184E+02 + 0.1525935266825286E+02 + 0.1522593493783754E+02 + 0.1519256192235635E+02 + 0.1515923365056544E+02 + 0.1512595016149098E+02 + 0.1509271149541336E+02 + 0.1505951770093772E+02 + 0.1502636883380258E+02 + 0.1499326494550323E+02 + 0.1496020605531510E+02 + 0.1492719216791477E+02 + 0.1489422329775423E+02 + 0.1486129949477656E+02 + 0.1482842081655782E+02 + 0.1479558731028801E+02 + 0.1476279900474839E+02 + 0.1473005592667558E+02 + 0.1469735810329427E+02 + 0.1466470556227900E+02 + 0.1463209833299067E+02 + 0.1459953646003675E+02 + 0.1456701999551689E+02 + 0.1453454898561270E+02 + 0.1450212345337440E+02 + 0.1446974341601779E+02 + 0.1443740889435366E+02 + 0.1440511991647057E+02 + 0.1437287651150900E+02 + 0.1434067871752638E+02 + 0.1430852658183441E+02 + 0.1427642015059239E+02 + 0.1424435945634543E+02 + 0.1421234452409329E+02 + 0.1418037537896027E+02 + 0.1414845204761234E+02 + 0.1411657455701871E+02 + 0.1408474293740880E+02 + 0.1405295722631908E+02 + 0.1402121746184441E+02 + 0.1398952367446149E+02 + 0.1395787588599359E+02 + 0.1392627411875299E+02 + 0.1389471840704302E+02 + 0.1386320879234377E+02 + 0.1383174531165583E+02 + 0.1380032798016893E+02 + 0.1376895680628734E+02 + 0.1373763180940102E+02 + 0.1370635303562459E+02 + 0.1367512053447851E+02 + 0.1364393434091402E+02 + 0.1361279447168811E+02 + 0.1358170094343153E+02 + 0.1355065378724497E+02 + 0.1351965304379730E+02 + 0.1348869874954289E+02 + 0.1345779091766070E+02 + 0.1342692955329116E+02 + 0.1339611467275926E+02 + 0.1336534632257505E+02 + 0.1333462455365382E+02 + 0.1330394939685652E+02 + 0.1327332085551318E+02 + 0.1324273893270630E+02 + 0.1321220365848349E+02 + 0.1318171508258133E+02 + 0.1315127325021541E+02 + 0.1312087817695147E+02 + 0.1309052986703575E+02 + 0.1306022833105547E+02 + 0.1302997359884228E+02 + 0.1299976570360187E+02 + 0.1296960467675442E+02 + 0.1293949054710423E+02 + 0.1290942334266421E+02 + 0.1287940308466177E+02 + 0.1284942978882831E+02 + 0.1281950347240475E+02 + 0.1278962416511517E+02 + 0.1275979190180831E+02 + 0.1273000671063934E+02 + 0.1270026859807160E+02 + 0.1267057756614114E+02 + 0.1264093363116327E+02 + 0.1261133683338395E+02 + 0.1258178721440557E+02 + 0.1255228480130389E+02 + 0.1252282960829248E+02 + 0.1249342164918047E+02 + 0.1246406093932310E+02 + 0.1243474749468757E+02 + 0.1240548133418790E+02 + 0.1237626248801363E+02 + 0.1234709098868553E+02 + 0.1231796685639078E+02 + 0.1228889008880913E+02 + 0.1225986068237930E+02 + 0.1223087866320054E+02 + 0.1220194408616956E+02 + 0.1217305700255156E+02 + 0.1214421742294802E+02 + 0.1211542533705808E+02 + 0.1208668074118714E+02 + 0.1205798365996562E+02 + 0.1202933412508033E+02 + 0.1200073216257721E+02 + 0.1197217778723632E+02 + 0.1194367101245289E+02 + 0.1191521185515023E+02 + 0.1188680033602710E+02 + 0.1185843647536139E+02 + 0.1183012028901064E+02 + 0.1180185179025658E+02 + 0.1177363099309712E+02 + 0.1174545791557398E+02 + 0.1171733257674269E+02 + 0.1168925499425748E+02 + 0.1166122518285557E+02 + 0.1163324315677365E+02 + 0.1160530893180925E+02 + 0.1157742252561990E+02 + 0.1154958395556427E+02 + 0.1152179323621767E+02 + 0.1149405038035479E+02 + 0.1146635540098397E+02 + 0.1143870831317736E+02 + 0.1141110913253324E+02 + 0.1138355787392793E+02 + 0.1135605455071508E+02 + 0.1132859917587569E+02 + 0.1130119176279746E+02 + 0.1127383232544450E+02 + 0.1124652087764691E+02 + 0.1121925743302852E+02 + 0.1119204200501463E+02 + 0.1116487460670349E+02 + 0.1113775525019472E+02 + 0.1111068394711856E+02 + 0.1108366070927483E+02 + 0.1105668554925238E+02 + 0.1102975847961388E+02 + 0.1100287951227688E+02 + 0.1097604865832146E+02 + 0.1094926592858193E+02 + 0.1092253133352671E+02 + 0.1089584488330327E+02 + 0.1086920658812971E+02 + 0.1084261645966913E+02 + 0.1081607451003687E+02 + 0.1078958075060052E+02 + 0.1076313519081053E+02 + 0.1073673783960903E+02 + 0.1071038870608258E+02 + 0.1068408779964537E+02 + 0.1065783512954373E+02 + 0.1063163070435819E+02 + 0.1060547453208647E+02 + 0.1057936662078185E+02 + 0.1055330698009432E+02 + 0.1052729562025992E+02 + 0.1050133255072457E+02 + 0.1047541777867287E+02 + 0.1044955131067538E+02 + 0.1042373315400618E+02 + 0.1039796331727777E+02 + 0.1037224180897926E+02 + 0.1034656863563022E+02 + 0.1032094380194300E+02 + 0.1029536731273748E+02 + 0.1026983917544960E+02 + 0.1024435939866882E+02 + 0.1021892799017130E+02 + 0.1019354495512649E+02 + 0.1016821029795525E+02 + 0.1014292402381480E+02 + 0.1011768613941954E+02 + 0.1009249665140821E+02 + 0.1006735556421815E+02 + 0.1004226288008806E+02 + 0.1001721860144277E+02 + 0.9992222734637442E+01 + 0.9967275288013241E+01 + 0.9942376268426239E+01 + 0.9917525676965367E+01 + 0.9892723513078479E+01 + 0.9867969778614690E+01 + 0.9843264480642114E+01 + 0.9818607626590035E+01 + 0.9793999219940810E+01 + 0.9769439259864909E+01 + 0.9744927745494875E+01 + 0.9720464679429268E+01 + 0.9696050066204220E+01 + 0.9671683909938940E+01 + 0.9647366213336239E+01 + 0.9623096978552589E+01 + 0.9598876206912873E+01 + 0.9574703898061404E+01 + 0.9550580051299164E+01 + 0.9526504667486236E+01 + 0.9502477749399242E+01 + 0.9478499299619800E+01 + 0.9454569318942118E+01 + 0.9430687806950676E+01 + 0.9406854763008424E+01 + 0.9383070186186394E+01 + 0.9359334075338031E+01 + 0.9335646430004703E+01 + 0.9312007251772741E+01 + 0.9288416542335757E+01 + 0.9264874300609973E+01 + 0.9241380521892527E+01 + 0.9217935201363034E+01 + 0.9194538338041742E+01 + 0.9171189933600273E+01 + 0.9147889989119269E+01 + 0.9124638502742569E+01 + 0.9101435471433447E+01 + 0.9078280891660349E+01 + 0.9055174758831395E+01 + 0.9032117068059282E+01 + 0.9009107816557389E+01 + 0.8986147004682254E+01 + 0.8963234632603735E+01 + 0.8940370696220501E+01 + 0.8917555188081694E+01 + 0.8894788101065517E+01 + 0.8872069431780579E+01 + 0.8849399178225168E+01 + 0.8826777337805186E+01 + 0.8804203906432290E+01 + 0.8781678879567968E+01 + 0.8759202251824069E+01 + 0.8736774016560954E+01 + 0.8714394166915604E+01 + 0.8692062696850543E+01 + 0.8669779601003654E+01 + 0.8647544873981904E+01 + 0.8625358511117298E+01 + 0.8603220507963973E+01 + 0.8581130859140083E+01 + 0.8559089556427713E+01 + 0.8537096590855528E+01 + 0.8515151954414959E+01 + 0.8493255640939621E+01 + 0.8471407644236226E+01 + 0.8449607956866663E+01 + 0.8427856570216909E+01 + 0.8406153475560931E+01 + 0.8384498664895800E+01 + 0.8362892130481150E+01 + 0.8341333864400140E+01 + 0.8319823858563387E+01 + 0.8298362104697944E+01 + 0.8276948593868399E+01 + 0.8255583316021980E+01 + 0.8234266260860261E+01 + 0.8212997419015290E+01 + 0.8191776782079662E+01 + 0.8170604341246030E+01 + 0.8149480085012829E+01 + 0.8128404000331775E+01 + 0.8107376074994333E+01 + 0.8086396301128120E+01 + 0.8065464671897439E+01 + 0.8044581177960257E+01 + 0.8023745804787339E+01 + 0.8002958537112583E+01 + 0.7982219362371501E+01 + 0.7961528271070983E+01 + 0.7940885253564911E+01 + 0.7920290298478816E+01 + 0.7899743393331350E+01 + 0.7879244525492695E+01 + 0.7858793682378155E+01 + 0.7838390851286897E+01 + 0.7818036018660848E+01 + 0.7797729169154648E+01 + 0.7777470287075874E+01 + 0.7757259359080991E+01 + 0.7737096374781712E+01 + 0.7716981323513935E+01 + 0.7696914190936385E+01 + 0.7676894960223033E+01 + 0.7656923614741366E+01 + 0.7637000139946053E+01 + 0.7617124521873092E+01 + 0.7597296746348585E+01 + 0.7577516798940641E+01 + 0.7557784664995406E+01 + 0.7538100328470249E+01 + 0.7518463771496818E+01 + 0.7498874976084905E+01 + 0.7479333926543476E+01 + 0.7459840608797538E+01 + 0.7440395008242942E+01 + 0.7420997107743071E+01 + 0.7401646889100358E+01 + 0.7382344334461621E+01 + 0.7363089427341671E+01 + 0.7343882151341743E+01 + 0.7324722489112938E+01 + 0.7305610421973272E+01 + 0.7286545931027259E+01 + 0.7267528998220456E+01 + 0.7248559606131348E+01 + 0.7229637737002538E+01 + 0.7210763371700606E+01 + 0.7191936490414682E+01 + 0.7173157073496803E+01 + 0.7154425102249004E+01 + 0.7135740558015512E+01 + 0.7117103421549062E+01 + 0.7098513672744995E+01 + 0.7079971291226003E+01 + 0.7061476255953393E+01 + 0.7043028545286496E+01 + 0.7024628137792484E+01 + 0.7006275014933865E+01 + 0.6987969159403082E+01 + 0.6969710552406519E+01 + 0.6951499170210664E+01 + 0.6933334987834449E+01 + 0.6915217981588244E+01 + 0.6897148130283654E+01 + 0.6879125412854034E+01 + 0.6861149808467364E+01 + 0.6843221296510275E+01 + 0.6825339855915045E+01 + 0.6807505462960592E+01 + 0.6789718092491063E+01 + 0.6771977719759888E+01 + 0.6754284322274376E+01 + 0.6736637877967826E+01 + 0.6719038363706878E+01 + 0.6701485754400720E+01 + 0.6683980024635103E+01 + 0.6666521150670825E+01 + 0.6649109110548137E+01 + 0.6631743881889667E+01 + 0.6614425438944807E+01 + 0.6597153753996721E+01 + 0.6579928799963830E+01 + 0.6562750553357610E+01 + 0.6545618991561268E+01 + 0.6528534090146542E+01 + 0.6511495820887682E+01 + 0.6494504154968799E+01 + 0.6477559065878815E+01 + 0.6460660529810181E+01 + 0.6443808522667053E+01 + 0.6427003017222726E+01 + 0.6410243984252089E+01 + 0.6393531394704953E+01 + 0.6376865221286046E+01 + 0.6360245437123679E+01 + 0.6343672015462154E+01 + 0.6327144930093910E+01 + 0.6310664154700357E+01 + 0.6294229661277659E+01 + 0.6277841419723495E+01 + 0.6261499399692475E+01 + 0.6245203571483021E+01 + 0.6228953905770522E+01 + 0.6212750373249262E+01 + 0.6196592945501164E+01 + 0.6180481594297929E+01 + 0.6164416291191388E+01 + 0.6148397007445273E+01 + 0.6132423714082210E+01 + 0.6116496379999806E+01 + 0.6100614971191131E+01 + 0.6084779453565022E+01 + 0.6068989797217320E+01 + 0.6053245975319191E+01 + 0.6037547960166482E+01 + 0.6021895719033953E+01 + 0.6006289217148281E+01 + 0.5990728420890814E+01 + 0.5975213300519982E+01 + 0.5959743826844129E+01 + 0.5944319968494545E+01 + 0.5928941690843341E+01 + 0.5913608958924603E+01 + 0.5898321739407487E+01 + 0.5883080000267769E+01 + 0.5867883709290553E+01 + 0.5852732833708574E+01 + 0.5837627340414432E+01 + 0.5822567195892289E+01 + 0.5807552365686886E+01 + 0.5792582815005862E+01 + 0.5777658509285643E+01 + 0.5762779414479295E+01 + 0.5747945496435098E+01 + 0.5733156721003428E+01 + 0.5718413054018449E+01 + 0.5703714460927333E+01 + 0.5689060905339685E+01 + 0.5674452349899871E+01 + 0.5659888757470624E+01 + 0.5645370092256475E+01 + 0.5630896318640060E+01 + 0.5616467401291801E+01 + 0.5602083305579260E+01 + 0.5587743996698245E+01 + 0.5573449437682183E+01 + 0.5559199589424050E+01 + 0.5544994412756600E+01 + 0.5530833870173381E+01 + 0.5516717924946454E+01 + 0.5502646540174618E+01 + 0.5488619678775101E+01 + 0.5474637303477586E+01 + 0.5460699375918112E+01 + 0.5446805855667111E+01 + 0.5432956701947149E+01 + 0.5419151875692190E+01 + 0.5405391339710926E+01 + 0.5391675056648162E+01 + 0.5378002988100918E+01 + 0.5364375094986478E+01 + 0.5350791337702458E+01 + 0.5337251674927107E+01 + 0.5323756064711705E+01 + 0.5310304465665721E+01 + 0.5296896837912234E+01 + 0.5283533141623177E+01 + 0.5270213336629207E+01 + 0.5256937382388877E+01 + 0.5243705238105157E+01 + 0.5230516862092983E+01 + 0.5217372212037399E+01 + 0.5204271245588392E+01 + 0.5191213921018955E+01 + 0.5178200196679597E+01 + 0.5165230030832405E+01 + 0.5152303381793930E+01 + 0.5139420207707795E+01 + 0.5126580465423436E+01 + 0.5113784110150139E+01 + 0.5101031096913693E+01 + 0.5088321381856606E+01 + 0.5075654921844591E+01 + 0.5063031673747766E+01 + 0.5050451595224216E+01 + 0.5037914644097487E+01 + 0.5025420777027619E+01 + 0.5012969947734822E+01 + 0.5000562109299187E+01 + 0.4988197215871830E+01 + 0.4975875223230100E+01 + 0.4963596087089143E+01 + 0.4951359762668048E+01 + 0.4939166204763059E+01 + 0.4927015367891404E+01 + 0.4914907205803636E+01 + 0.4902841671835123E+01 + 0.4890818719166555E+01 + 0.4878838300887341E+01 + 0.4866900369923249E+01 + 0.4855004879143551E+01 + 0.4843151781435511E+01 + 0.4831341029598380E+01 + 0.4819572577573283E+01 + 0.4807846380235390E+01 + 0.4796162391748306E+01 + 0.4784520561996847E+01 + 0.4772920838878581E+01 + 0.4761363171435000E+01 + 0.4749847513165106E+01 + 0.4738373818372603E+01 + 0.4726942039442838E+01 + 0.4715552125542187E+01 + 0.4704204025475397E+01 + 0.4692897690462207E+01 + 0.4681633073945053E+01 + 0.4670410128698458E+01 + 0.4659228802609126E+01 + 0.4648089041089911E+01 + 0.4636990790853516E+01 + 0.4625934004229913E+01 + 0.4614918634752037E+01 + 0.4603944633659394E+01 + 0.4593011947935142E+01 + 0.4582120523943317E+01 + 0.4571270308580443E+01 + 0.4560461249287768E+01 + 0.4549693293670053E+01 + 0.4538966392032361E+01 + 0.4528280496047242E+01 + 0.4517635555956312E+01 + 0.4507031516370629E+01 + 0.4496468320262381E+01 + 0.4485945912564016E+01 + 0.4475464242594031E+01 + 0.4465023260004259E+01 + 0.4454622912210499E+01 + 0.4444263144151860E+01 + 0.4433943900608599E+01 + 0.4423665127696006E+01 + 0.4413426772245441E+01 + 0.4403228780694976E+01 + 0.4393071098230126E+01 + 0.4382953669532648E+01 + 0.4372876439026840E+01 + 0.4362839350779950E+01 + 0.4352842348684088E+01 + 0.4342885377608994E+01 + 0.4332968383665840E+01 + 0.4323091312763836E+01 + 0.4313254109351169E+01 + 0.4303456716859786E+01 + 0.4293699078266604E+01 + 0.4283981134990868E+01 + 0.4274302827812382E+01 + 0.4264664098920513E+01 + 0.4255064894481626E+01 + 0.4245505161086913E+01 + 0.4235984842333295E+01 + 0.4226503877841254E+01 + 0.4217062206967477E+01 + 0.4207659771452821E+01 + 0.4198296514697185E+01 + 0.4188972379604042E+01 + 0.4179687306772759E+01 + 0.4170441235835762E+01 + 0.4161234107196158E+01 + 0.4152065863841793E+01 + 0.4142936449040856E+01 + 0.4133845803877732E+01 + 0.4124793866284246E+01 + 0.4115780573910143E+01 + 0.4106805866460220E+01 + 0.4097869685221813E+01 + 0.4088971971047344E+01 + 0.4080112662593102E+01 + 0.4071291697507015E+01 + 0.4062509014107751E+01 + 0.4053764553289539E+01 + 0.4045058256293680E+01 + 0.4036390062349186E+01 + 0.4027759907513015E+01 + 0.4019167727485501E+01 + 0.4010613459671258E+01 + 0.4002097042927858E+01 + 0.3993618415886353E+01 + 0.3985177516253584E+01 + 0.3976774281217564E+01 + 0.3968408647973538E+01 + 0.3960080554220316E+01 + 0.3951789937617896E+01 + 0.3943536734661051E+01 + 0.3935320879893214E+01 + 0.3927142307541112E+01 + 0.3919000952772581E+01 + 0.3910896751642844E+01 + 0.3902829640231966E+01 + 0.3894799555823746E+01 + 0.3886806436215552E+01 + 0.3878850217849458E+01 + 0.3870930832280027E+01 + 0.3863048209723300E+01 + 0.3855202283000621E+01 + 0.3847392990291471E+01 + 0.3839620270105995E+01 + 0.3831884057150737E+01 + 0.3824184282162198E+01 + 0.3816520875823022E+01 + 0.3808893771584922E+01 + 0.3801302904349439E+01 + 0.3793748208344082E+01 + 0.3786229615348013E+01 + 0.3778747056333649E+01 + 0.3771300463362561E+01 + 0.3763889771106266E+01 + 0.3756514914340169E+01 + 0.3749175825059516E+01 + 0.3741872432092516E+01 + 0.3734604664246636E+01 + 0.3727372453698936E+01 + 0.3720175734609583E+01 + 0.3713014440233736E+01 + 0.3705888499901225E+01 + 0.3698797841603685E+01 + 0.3691742394123051E+01 + 0.3684722088426692E+01 + 0.3677736855645863E+01 + 0.3670786626487318E+01 + 0.3663871331169565E+01 + 0.3656990899644327E+01 + 0.3650145260884421E+01 + 0.3643334343145339E+01 + 0.3636558074714680E+01 + 0.3629816384944488E+01 + 0.3623109203432206E+01 + 0.3616436459133201E+01 + 0.3609798079581379E+01 + 0.3603193991933042E+01 + 0.3596624123725671E+01 + 0.3590088403096983E+01 + 0.3583586758081268E+01 + 0.3577119116828047E+01 + 0.3570685407524380E+01 + 0.3564285557803150E+01 + 0.3557919492785699E+01 + 0.3551587136521805E+01 + 0.3545288414019925E+01 + 0.3539023253527156E+01 + 0.3532791583718824E+01 + 0.3526593331494946E+01 + 0.3520428421140222E+01 + 0.3514296776653421E+01 + 0.3508198323528076E+01 + 0.3502132988436230E+01 + 0.3496100697525877E+01 + 0.3490101374123721E+01 + 0.3484134940257803E+01 + 0.3478201318705024E+01 + 0.3472300435174682E+01 + 0.3466432215833562E+01 + 0.3460596586092734E+01 + 0.3454793470215549E+01 + 0.3449022792123921E+01 + 0.3443284474299178E+01 + 0.3437578437918255E+01 + 0.3431904604166020E+01 + 0.3426262895845327E+01 + 0.3420653236417837E+01 + 0.3415075549108366E+01 + 0.3409529756738548E+01 + 0.3404015781891889E+01 + 0.3398533546461182E+01 + 0.3393082971214928E+01 + 0.3387663976683597E+01 + 0.3382276484278182E+01 + 0.3376920416268290E+01 + 0.3371595694584585E+01 + 0.3366302239222745E+01 + 0.3361039969090460E+01 + 0.3355808803695600E+01 + 0.3350608665624798E+01 + 0.3345439478107946E+01 + 0.3340301161783768E+01 + 0.3335193632178999E+01 + 0.3330116804195051E+01 + 0.3325070596895463E+01 + 0.3320054933834865E+01 + 0.3315069738150313E+01 + 0.3310114928158263E+01 + 0.3305190419350959E+01 + 0.3300296127604147E+01 + 0.3295431971364062E+01 + 0.3290597869683931E+01 + 0.3285793741434693E+01 + 0.3281019505303685E+01 + 0.3276275079739079E+01 + 0.3271560381190275E+01 + 0.3266875323778139E+01 + 0.3262219821715714E+01 + 0.3257593793531298E+01 + 0.3252997160393524E+01 + 0.3248429842137267E+01 + 0.3243891752282066E+01 + 0.3239382802210165E+01 + 0.3234902904999047E+01 + 0.3230451978255120E+01 + 0.3226029940104779E+01 + 0.3221636707522139E+01 + 0.3217272196038752E+01 + 0.3212936320814653E+01 + 0.3208628995487325E+01 + 0.3204350132585731E+01 + 0.3200099644783259E+01 + 0.3195877446556082E+01 + 0.3191683452901359E+01 + 0.3187517578421880E+01 + 0.3183379736945854E+01 + 0.3179269842021744E+01 + 0.3175187807246668E+01 + 0.3171133546365314E+01 + 0.3167106972911716E+01 + 0.3163107999448212E+01 + 0.3159136537755126E+01 + 0.3155192499493909E+01 + 0.3151275796652304E+01 + 0.3147386341235019E+01 + 0.3143524044698953E+01 + 0.3139688817192129E+01 + 0.3135880568497275E+01 + 0.3132099210431249E+01 + 0.3128344658111510E+01 + 0.3124616826503054E+01 + 0.3120915625656594E+01 + 0.3117240961490663E+01 + 0.3113592740321924E+01 + 0.3109970873336541E+01 + 0.3106375273738814E+01 + 0.3102805853608561E+01 + 0.3099262521572986E+01 + 0.3095745185386224E+01 + 0.3092253753573249E+01 + 0.3088788136127849E+01 + 0.3085348242982668E+01 + 0.3081933983025341E+01 + 0.3078545264170100E+01 + 0.3075181994090108E+01 + 0.3071844080049201E+01 + 0.3068531429018594E+01 + 0.3065243948340530E+01 + 0.3061981547294972E+01 + 0.3058744135477642E+01 + 0.3055531621222490E+01 + 0.3052343910619517E+01 + 0.3049180909370797E+01 + 0.3046042523644997E+01 + 0.3042928660082044E+01 + 0.3039839225029157E+01 + 0.3036774123396866E+01 + 0.3033733259245341E+01 + 0.3030716537524837E+01 + 0.3027723867598900E+01 + 0.3024755159853084E+01 + 0.3021810320940863E+01 + 0.3018889249848348E+01 + 0.3015991844653833E+01 + 0.3013118009637762E+01 + 0.3010267655961683E+01 + 0.3007440694251856E+01 + 0.3004637027528966E+01 + 0.3001856554278419E+01 + 0.2999099174007641E+01 + 0.2996364792037968E+01 + 0.2993653315279563E+01 + 0.2990964648965482E+01 + 0.2988298694657612E+01 + 0.2985655353286622E+01 + 0.2983034527259018E+01 + 0.2980436120814638E+01 + 0.2977860037869140E+01 + 0.2975306179077367E+01 + 0.2972774442923024E+01 + 0.2970264728732420E+01 + 0.2967776941260934E+01 + 0.2965310986926451E+01 + 0.2962866769327909E+01 + 0.2960444185065271E+01 + 0.2958043129572793E+01 + 0.2955663502552742E+01 + 0.2953305209471177E+01 + 0.2950968155597864E+01 + 0.2948652240264499E+01 + 0.2946357358530404E+01 + 0.2944083406033878E+01 + 0.2941830283269231E+01 + 0.2939597892390959E+01 + 0.2937386134842869E+01 + 0.2935194910359739E+01 + 0.2933024118200678E+01 + 0.2930873656296965E+01 + 0.2928743420715180E+01 + 0.2926633307381334E+01 + 0.2924543214779573E+01 + 0.2922473043352630E+01 + 0.2920422693054130E+01 + 0.2918392061241135E+01 + 0.2916381044109015E+01 + 0.2914389537824483E+01 + 0.2912417438874410E+01 + 0.2910464643665920E+01 + 0.2908531048680545E+01 + 0.2906616550633207E+01 + 0.2904721046122319E+01 + 0.2902844432061764E+01 + 0.2900986605610533E+01 + 0.2899147463368834E+01 + 0.2897326898861839E+01 + 0.2895524804132187E+01 + 0.2893741072567508E+01 + 0.2891975602813611E+01 + 0.2890228294505487E+01 + 0.2888499043831113E+01 + 0.2886787740976567E+01 + 0.2885094275521696E+01 + 0.2883418540639916E+01 + 0.2881760432883155E+01 + 0.2880119848579617E+01 + 0.2878496682355621E+01 + 0.2876890827901841E+01 + 0.2875302178309033E+01 + 0.2873730624861238E+01 + 0.2872176058264707E+01 + 0.2870638369965408E+01 + 0.2869117453042046E+01 + 0.2867613200600068E+01 + 0.2866125505493596E+01 + 0.2864654260322932E+01 + 0.2863199357350394E+01 + 0.2861760687224421E+01 + 0.2860338139626506E+01 + 0.2858931604805579E+01 + 0.2857540976164836E+01 + 0.2856166147830706E+01 + 0.2854807011322554E+01 + 0.2853463452709494E+01 + 0.2852135357334464E+01 + 0.2850822614829832E+01 + 0.2849525119733939E+01 + 0.2848242766224650E+01 + 0.2846975443423712E+01 + 0.2845723037328715E+01 + 0.2844485434338496E+01 + 0.2843262523743311E+01 + 0.2842054195589892E+01 + 0.2840860339494757E+01 + 0.2839680844294488E+01 + 0.2838515598544652E+01 + 0.2837364490233571E+01 + 0.2836227406686161E+01 + 0.2835104235008345E+01 + 0.2833994862060276E+01 + 0.2832899174477136E+01 + 0.2831817058871407E+01 + 0.2830748402555193E+01 + 0.2829693092957717E+01 + 0.2828651017182398E+01 + 0.2827622061767196E+01 + 0.2826606113013611E+01 + 0.2825603057448259E+01 + 0.2824612781975357E+01 + 0.2823635173219871E+01 + 0.2822670115710901E+01 + 0.2821717492395901E+01 + 0.2820777186379397E+01 + 0.2819849082866010E+01 + 0.2818933067738718E+01 + 0.2818029026431329E+01 + 0.2817136843400433E+01 + 0.2816256402782624E+01 + 0.2815387589028978E+01 + 0.2814530287159357E+01 + 0.2813684381939455E+01 + 0.2812849755797553E+01 + 0.2812026289247390E+01 + 0.2811213863086006E+01 + 0.2810412361462944E+01 + 0.2809621669823669E+01 + 0.2808841672645227E+01 + 0.2808072251617527E+01 + 0.2807313287716228E+01 + 0.2806564661998291E+01 + 0.2805826255778477E+01 + 0.2805097950255156E+01 + 0.2804379626914743E+01 + 0.2803671167476592E+01 + 0.2802972453514117E+01 + 0.2802283366587438E+01 + 0.2801603788152714E+01 + 0.2800933599118817E+01 + 0.2800272678875677E+01 + 0.2799620906333912E+01 + 0.2798978161214373E+01 + 0.2798344324877767E+01 + 0.2797719278579341E+01 + 0.2797102900792923E+01 + 0.2796495067289088E+01 + 0.2795895654178171E+01 + 0.2795304542814077E+01 + 0.2794721617142463E+01 + 0.2794146759142823E+01 + 0.2793579843240258E+01 + 0.2793020741820773E+01 + 0.2792469330627312E+01 + 0.2791925492392408E+01 + 0.2791389110329670E+01 + 0.2790860062103882E+01 + 0.2790338219480489E+01 + 0.2789823454424782E+01 + 0.2789315645200771E+01 + 0.2788814673544470E+01 + 0.2788320419889577E+01 + 0.2787832759200677E+01 + 0.2787351564761240E+01 + 0.2786876710194012E+01 + 0.2786408070111963E+01 + 0.2785945519178410E+01 + 0.2785488934207472E+01 + 0.2785038194561131E+01 + 0.2784593179120656E+01 + 0.2784153761537559E+01 + 0.2783719812144721E+01 + 0.2783291201760849E+01 + 0.2782867804663146E+01 + 0.2782449496095806E+01 + 0.2782036151385688E+01 + 0.2781627646330937E+01 + 0.2781223856595946E+01 + 0.2780824655664850E+01 + 0.2780429914270175E+01 + 0.2780039502956779E+01 + 0.2779653294187135E+01 + 0.2779271161676928E+01 + 0.2778892978926623E+01 + 0.2778518618908240E+01 + 0.2778147954289763E+01 + 0.2777780857172172E+01 + 0.2777417198418150E+01 + 0.2777056848545123E+01 + 0.2776699678750747E+01 + 0.2776345561270367E+01 + 0.2775994368161743E+01 + 0.2775645970027761E+01 + 0.2775300236331764E+01 + 0.2774957036569377E+01 + 0.2774616241564826E+01 + 0.2774277722547688E+01 + 0.2773941350093065E+01 + 0.2773606993148473E+01 + 0.2773274520212892E+01 + 0.2772943800192315E+01 + 0.2772614702728056E+01 + 0.2772287097378594E+01 + 0.2771960853855910E+01 + 0.2771635841967354E+01 + 0.2771311930971853E+01 + 0.2770988987297230E+01 + 0.2770666876045879E+01 + 0.2770345463370640E+01 + 0.2770024619447467E+01 + 0.2769704215134547E+01 + 0.2769384118818012E+01 + 0.2769064194777112E+01 + 0.2768744306864522E+01 + 0.2768424321563757E+01 + 0.2768104107730607E+01 + 0.2767783534037924E+01 + 0.2767462468221224E+01 + 0.2767140777474592E+01 + 0.2766818327814774E+01 + 0.2766494981326374E+01 + 0.2766170599048912E+01 + 0.2765845044767994E+01 + 0.2765518187623145E+01 + 0.2765189897055233E+01 + 0.2764860039233492E+01 + 0.2764528477063280E+01 + 0.2764195073269223E+01 + 0.2763859691618402E+01 + 0.2763522196339605E+01 + 0.2763182451228717E+01 + 0.2762840318822903E+01 + 0.2762495661200688E+01 + 0.2762148341581795E+01 + 0.2761798225765982E+01 + 0.2761445179611864E+01 + 0.2761089065885993E+01 + 0.2760729743984623E+01 + 0.2760367073327168E+01 + 0.2760000916904324E+01 + 0.2759631139703306E+01 + 0.2759257605955578E+01 + 0.2758880176886865E+01 + 0.2758498712713812E+01 + 0.2758113073706302E+01 + 0.2757723120498230E+01 + 0.2757328713627488E+01 + 0.2756929713797423E+01 + 0.2756525981947811E+01 + 0.2756117378903043E+01 + 0.2755703765788566E+01 + 0.2755285003856781E+01 + 0.2754860953657930E+01 + 0.2754431472814529E+01 + 0.2753996417873756E+01 + 0.2753555646705012E+01 + 0.2753109020845020E+01 + 0.2752656402206374E+01 + 0.2752197650503046E+01 + 0.2751732622599009E+01 + 0.2751261175153597E+01 + 0.2750783166780084E+01 + 0.2750298457412403E+01 + 0.2749806906221594E+01 + 0.2749308368620419E+01 + 0.2748802698545403E+01 + 0.2748289751641220E+01 + 0.2747769388738957E+01 + 0.2747241471377862E+01 + 0.2746705857992797E+01 + 0.2746162402584218E+01 + 0.2745610958712216E+01 + 0.2745051380961828E+01 + 0.2744483524669128E+01 + 0.2743907245359290E+01 + 0.2743322400646468E+01 + 0.2742728848874425E+01 + 0.2742126446852387E+01 + 0.2741515046937953E+01 + 0.2740894500505915E+01 + 0.2740264661437055E+01 + 0.2739625387735786E+01 + 0.2738976537367335E+01 + 0.2738317963810514E+01 + 0.2737649516702314E+01 + 0.2736971046322972E+01 + 0.2736282409689572E+01 + 0.2735583466712316E+01 + 0.2734874074181687E+01 + 0.2734154078355194E+01 + 0.2733423323118169E+01 + 0.2732681659421084E+01 + 0.2731928950821208E+01 + 0.2731165061151226E+01 + 0.2730389836605993E+01 + 0.2729603106894466E+01 + 0.2728804710667133E+01 + 0.2727994566617481E+01 + 0.2727172632694448E+01 + 0.2726338878521841E+01 + 0.2725493318299303E+01 + 0.2724635977090849E+01 + 0.2723766876238637E+01 + 0.2722886029801277E+01 + 0.2721993451046089E+01 + 0.2721089153718592E+01 + 0.2720173152054040E+01 + 0.2719245460221757E+01 + 0.2718306091319123E+01 + 0.2717355057876741E+01 + 0.2716392373426995E+01 + 0.2715418055776556E+01 + 0.2714432123906192E+01 + 0.2713434594331037E+01 + 0.2712425478224843E+01 + 0.2711404786217251E+01 + 0.2710372532514437E+01 + 0.2709328735348719E+01 + 0.2708273412763306E+01 + 0.2707206578235267E+01 + 0.2706128242525871E+01 + 0.2705038417526083E+01 + 0.2703937120665319E+01 + 0.2702824371067955E+01 + 0.2701700186486546E+01 + 0.2700564581359884E+01 + 0.2699417569642245E+01 + 0.2698259164271288E+01 + 0.2697089376918855E+01 + 0.2695908219685094E+01 + 0.2694715710423051E+01 + 0.2693511870783412E+01 + 0.2692296721013244E+01 + 0.2691070273248351E+01 + 0.2689832536921087E+01 + 0.2688583523752928E+01 + 0.2687323251457192E+01 + 0.2686051738713787E+01 + 0.2684769002567673E+01 + 0.2683475057826066E+01 + 0.2682169919258967E+01 + 0.2680853602939694E+01 + 0.2679526125894251E+01 + 0.2678187504657000E+01 + 0.2676837752501467E+01 + 0.2675476881504352E+01 + 0.2674104905527170E+01 + 0.2672721843599101E+01 + 0.2671327715678237E+01 + 0.2669922539516348E+01 + 0.2668506329544559E+01 + 0.2667079099969409E+01 + 0.2665640865328509E+01 + 0.2664191640429286E+01 + 0.2662731440465058E+01 + 0.2661260283006597E+01 + 0.2659778186628361E+01 + 0.2658285168916827E+01 + 0.2656781244158302E+01 + 0.2655266426025423E+01 + 0.2653740730454385E+01 + 0.2652204177091155E+01 + 0.2650656785684533E+01 + 0.2649098570965778E+01 + 0.2647529543282488E+01 + 0.2645949713927269E+01 + 0.2644359102295943E+01 + 0.2642757731513730E+01 + 0.2641145622769937E+01 + 0.2639522790078630E+01 + 0.2637889245871558E+01 + 0.2636245004230688E+01 + 0.2634590082211554E+01 + 0.2632924497248970E+01 + 0.2631248267556267E+01 + 0.2629561412095964E+01 + 0.2627863949471237E+01 + 0.2626155894715124E+01 + 0.2624437261069970E+01 + 0.2622708062875624E+01 + 0.2620968318861197E+01 + 0.2619218048876622E+01 + 0.2617457271307122E+01 + 0.2615686001566715E+01 + 0.2613904254791424E+01 + 0.2612112047397210E+01 + 0.2610309397148671E+01 + 0.2608496321864222E+01 + 0.2606672838985737E+01 + 0.2604838965759654E+01 + 0.2602994719471381E+01 + 0.2601140117477191E+01 + 0.2599275177177657E+01 + 0.2597399916136707E+01 + 0.2595514352239738E+01 + 0.2593618503416817E+01 + 0.2591712386793635E+01 + 0.2589796018558459E+01 + 0.2587869414980477E+01 + 0.2585932593489293E+01 + 0.2583985572240853E+01 + 0.2582028369344322E+01 + 0.2580061002489842E+01 + 0.2578083489260096E+01 + 0.2576095847480007E+01 + 0.2574098095520505E+01 + 0.2572090251834847E+01 + 0.2570072333852951E+01 + 0.2568044357692576E+01 + 0.2566006339601516E+01 + 0.2563958298168629E+01 + 0.2561900253578767E+01 + 0.2559832225675660E+01 + 0.2557754232072393E+01 + 0.2555666289629168E+01 + 0.2553568415082103E+01 + 0.2551460624778390E+01 + 0.2549342935077281E+01 + 0.2547215364765434E+01 + 0.2545077936014890E+01 + 0.2542930670979897E+01 + 0.2540773587511114E+01 + 0.2538606700262527E+01 + 0.2536430024351834E+01 + 0.2534243578116461E+01 + 0.2532047381153332E+01 + 0.2529841452802279E+01 + 0.2527625811550565E+01 + 0.2525400475754913E+01 + 0.2523165463973594E+01 + 0.2520920795057553E+01 + 0.2518666487898261E+01 + 0.2516402561175851E+01 + 0.2514129033403451E+01 + 0.2511845923249720E+01 + 0.2509553250313428E+01 + 0.2507251034609368E+01 + 0.2504939295164100E+01 + 0.2502618047604293E+01 + 0.2500287306906818E+01 + 0.2497947091152410E+01 + 0.2495597423665818E+01 + 0.2493238328071914E+01 + 0.2490869823393627E+01 + 0.2488491924518368E+01 + 0.2486104646770865E+01 + 0.2483708009870528E+01 + 0.2481302035627670E+01 + 0.2478886745361412E+01 + 0.2476462158412971E+01 + 0.2474028293686613E+01 + 0.2471585170066886E+01 + 0.2469132806373147E+01 + 0.2466671221412285E+01 + 0.2464200433257143E+01 + 0.2461720459255791E+01 + 0.2459231317206219E+01 + 0.2456733028918291E+01 + 0.2454225618309231E+01 + 0.2451709107956810E+01 + 0.2449183514673785E+01 + 0.2446648853809433E+01 + 0.2444105142911021E+01 + 0.2441552404032729E+01 + 0.2438990659743094E+01 + 0.2436419930661317E+01 + 0.2433840235288500E+01 + 0.2431251592019594E+01 + 0.2428654018983071E+01 + 0.2426047534167401E+01 + 0.2423432156497849E+01 + 0.2420807909137555E+01 + 0.2418174816492878E+01 + 0.2415532900519658E+01 + 0.2412882177532826E+01 + 0.2410222663201425E+01 + 0.2407554376865936E+01 + 0.2404877342237244E+01 + 0.2402191582880939E+01 + 0.2399497117467735E+01 + 0.2396793961581118E+01 + 0.2394082132045829E+01 + 0.2391361652237773E+01 + 0.2388632547662489E+01 + 0.2385894841371774E+01 + 0.2383148550155476E+01 + 0.2380393689936454E+01 + 0.2377630279956899E+01 + 0.2374858343797873E+01 + 0.2372077905101111E+01 + 0.2369288984096844E+01 + 0.2366491598648442E+01 + 0.2363685767284149E+01 + 0.2360871512503937E+01 + 0.2358048858249926E+01 + 0.2355217826793977E+01 + 0.2352378435656202E+01 + 0.2349530701611368E+01 + 0.2346674644298523E+01 + 0.2343810287469323E+01 + 0.2340937655016325E+01 + 0.2338056767721405E+01 + 0.2335167643990952E+01 + 0.2332270302734263E+01 + 0.2329364766332714E+01 + 0.2326451058566504E+01 + 0.2323529202225521E+01 + 0.2320599216929752E+01 + 0.2317661121728238E+01 + 0.2314714936936051E+01 + 0.2311760684856914E+01 + 0.2308798387901351E+01 + 0.2305828066785591E+01 + 0.2302849740804408E+01 + 0.2299863429638813E+01 + 0.2296869155895231E+01 + 0.2293866943485362E+01 + 0.2290856815549637E+01 + 0.2287838792450428E+01 + 0.2284812893980087E+01 + 0.2281779140517193E+01 + 0.2278737553440731E+01 + 0.2275688154336889E+01 + 0.2272630966367992E+01 + 0.2269566014156887E+01 + 0.2266493321754163E+01 + 0.2263412907874932E+01 + 0.2260324788656194E+01 + 0.2257228981975905E+01 + 0.2254125512416049E+01 + 0.2251014406190901E+01 + 0.2247895688132937E+01 + 0.2244769380378633E+01 + 0.2241635504728745E+01 + 0.2238494081634487E+01 + 0.2235345130175459E+01 + 0.2232188669750604E+01 + 0.2229024723011340E+01 + 0.2225853314369803E+01 + 0.2222674467953487E+01 + 0.2219488206479083E+01 + 0.2216294552305364E+01 + 0.2213093527223368E+01 + 0.2209885151779597E+01 + 0.2206669446467522E+01 + 0.2203446434051355E+01 + 0.2200216139825554E+01 + 0.2196978588857246E+01 + 0.2193733802166186E+01 + 0.2190481798390571E+01 + 0.2187222597065458E+01 + 0.2183956222060571E+01 + 0.2180682698563458E+01 + 0.2177402051046685E+01 + 0.2174114302251850E+01 + 0.2170819474689663E+01 + 0.2167517590547672E+01 + 0.2164208671609857E+01 + 0.2160892739697554E+01 + 0.2157569817042206E+01 + 0.2154239926153688E+01 + 0.2150903090025672E+01 + 0.2147559334070051E+01 + 0.2144208684521958E+01 + 0.2140851165236831E+01 + 0.2137486793809112E+01 + 0.2134115586978042E+01 + 0.2130737566993370E+01 + 0.2127352763520534E+01 + 0.2123961206306233E+01 + 0.2120562918685339E+01 + 0.2117157919406017E+01 + 0.2113746227778649E+01 + 0.2110327866924913E+01 + 0.2106902861394375E+01 + 0.2103471235618415E+01 + 0.2100033013615184E+01 + 0.2096588219334000E+01 + 0.2093136875577418E+01 + 0.2089679003432474E+01 + 0.2086214624136926E+01 + 0.2082743763009811E+01 + 0.2079266448594051E+01 + 0.2075782708514264E+01 + 0.2072292563479000E+01 + 0.2068796031383648E+01 + 0.2065293131876009E+01 + 0.2061783890204079E+01 + 0.2058268332762316E+01 + 0.2054746485654697E+01 + 0.2051218374488547E+01 + 0.2047684024720568E+01 + 0.2044143459387960E+01 + 0.2040596699436895E+01 + 0.2037043766074572E+01 + 0.2033484682791825E+01 + 0.2029919474131832E+01 + 0.2026348164947618E+01 + 0.2022770781095501E+01 + 0.2019187348669249E+01 + 0.2015597892490347E+01 + 0.2012002435065242E+01 + 0.2008400998761083E+01 + 0.2004793607546759E+01 + 0.2001180286916505E+01 + 0.1997561062211203E+01 + 0.1993935956732079E+01 + 0.1990304992774944E+01 + 0.1986668193454214E+01 + 0.1983025585083659E+01 + 0.1979377194789412E+01 + 0.1975723048304266E+01 + 0.1972063168562281E+01 + 0.1968397578244531E+01 + 0.1964726301295662E+01 + 0.1961049362979179E+01 + 0.1957366788628499E+01 + 0.1953678603382176E+01 + 0.1949984832286089E+01 + 0.1946285500251220E+01 + 0.1942580631481653E+01 + 0.1938870250010867E+01 + 0.1935154380336906E+01 + 0.1931433047937662E+01 + 0.1927706278434568E+01 + 0.1923974097019227E+01 + 0.1920236528384978E+01 + 0.1916493597252073E+01 + 0.1912745328626284E+01 + 0.1908991747700092E+01 + 0.1905232879683196E+01 + 0.1901468749729310E+01 + 0.1897699382997699E+01 + 0.1893924804708298E+01 + 0.1890145040181291E+01 + 0.1886360114776541E+01 + 0.1882570053765957E+01 + 0.1878774882301937E+01 + 0.1874974625582298E+01 + 0.1871169309112165E+01 + 0.1867358958613577E+01 + 0.1863543599781266E+01 + 0.1859723257990641E+01 + 0.1855897958529269E+01 + 0.1852067726850404E+01 + 0.1848232588797849E+01 + 0.1844392570303197E+01 + 0.1840547697112215E+01 + 0.1836697994700237E+01 + 0.1832843488573744E+01 + 0.1828984204563125E+01 + 0.1825120168746305E+01 + 0.1821251407191131E+01 + 0.1817377945701098E+01 + 0.1813499809999375E+01 + 0.1809617025882816E+01 + 0.1805729619303893E+01 + 0.1801837616272552E+01 + 0.1797941042933517E+01 + 0.1794039925619743E+01 + 0.1790134290687114E+01 + 0.1786224164147384E+01 + 0.1782309571739547E+01 + 0.1778390539310132E+01 + 0.1774467093316706E+01 + 0.1770539260493847E+01 + 0.1766607067476578E+01 + 0.1762670540489288E+01 + 0.1758729705697674E+01 + 0.1754784589330597E+01 + 0.1750835217700781E+01 + 0.1746881617167321E+01 + 0.1742923814285673E+01 + 0.1738961835789798E+01 + 0.1734995708431347E+01 + 0.1731025458836195E+01 + 0.1727051113589073E+01 + 0.1723072699330627E+01 + 0.1719090242821041E+01 + 0.1715103770872624E+01 + 0.1711113310243621E+01 + 0.1707118887564125E+01 + 0.1703120529487691E+01 + 0.1699118262880953E+01 + 0.1695112114819716E+01 + 0.1691102112413701E+01 + 0.1687088282748467E+01 + 0.1683070652913130E+01 + 0.1679049249938307E+01 + 0.1675024100512248E+01 + 0.1670995231261762E+01 + 0.1666962669214982E+01 + 0.1662926442186111E+01 + 0.1658886578088928E+01 + 0.1654843104188751E+01 + 0.1650796047051586E+01 + 0.1646745433317949E+01 + 0.1642691290432261E+01 + 0.1638633646310520E+01 + 0.1634572528781725E+01 + 0.1630507965132924E+01 + 0.1626439982519873E+01 + 0.1622368608261807E+01 + 0.1618293870006199E+01 + 0.1614215795468032E+01 + 0.1610134412203718E+01 + 0.1606049747576537E+01 + 0.1601961829006357E+01 + 0.1597870684358341E+01 + 0.1593776341789122E+01 + 0.1589678829401402E+01 + 0.1585578174864814E+01 + 0.1581474405733586E+01 + 0.1577367549699162E+01 + 0.1573257634747274E+01 + 0.1569144688933099E+01 + 0.1565028740199165E+01 + 0.1560909816332045E+01 + 0.1556787945157289E+01 + 0.1552663154773130E+01 + 0.1548535473476144E+01 + 0.1544404929574270E+01 + 0.1540271551265690E+01 + 0.1536135366730961E+01 + 0.1531996404154312E+01 + 0.1527854691671938E+01 + 0.1523710257440100E+01 + 0.1519563129704245E+01 + 0.1515413336823050E+01 + 0.1511260907198702E+01 + 0.1507105869330997E+01 + 0.1502948251801753E+01 + 0.1498788083222078E+01 + 0.1494625392204221E+01 + 0.1490460207380903E+01 + 0.1486292557311986E+01 + 0.1482122470264402E+01 + 0.1477949974480367E+01 + 0.1473775098558448E+01 + 0.1469597871637951E+01 + 0.1465418322913178E+01 + 0.1461236481226845E+01 + 0.1457052375133946E+01 + 0.1452866033243476E+01 + 0.1448677484419207E+01 + 0.1444486757654344E+01 + 0.1440293881958520E+01 + 0.1436098886316163E+01 + 0.1431901799732194E+01 + 0.1427702651244505E+01 + 0.1423501469924016E+01 + 0.1419298284876791E+01 + 0.1415093125285407E+01 + 0.1410886020405313E+01 + 0.1406676999499354E+01 + 0.1402466091646335E+01 + 0.1398253325853518E+01 + 0.1394038731288372E+01 + 0.1389822337640012E+01 + 0.1385604174744922E+01 + 0.1381384272199317E+01 + 0.1377162659111094E+01 + 0.1372939364570085E+01 + 0.1368714417881549E+01 + 0.1364487848567326E+01 + 0.1360259686222604E+01 + 0.1356029960767693E+01 + 0.1351798702311231E+01 + 0.1347565940815966E+01 + 0.1343331705510259E+01 + 0.1339096025453380E+01 + 0.1334858930103040E+01 + 0.1330620449720115E+01 + 0.1326380614681506E+01 + 0.1322139454988245E+01 + 0.1317897000222414E+01 + 0.1313653280011469E+01 + 0.1309408324384361E+01 + 0.1305162163618864E+01 + 0.1300914827967720E+01 + 0.1296666347428190E+01 + 0.1292416751945059E+01 + 0.1288166071483667E+01 + 0.1283914336013759E+01 + 0.1279661575541684E+01 + 0.1275407820371735E+01 + 0.1271153101162871E+01 + 0.1266897448593662E+01 + 0.1262640892991721E+01 + 0.1258383464469955E+01 + 0.1254125193209462E+01 + 0.1249866109633336E+01 + 0.1245606244266345E+01 + 0.1241345627661451E+01 + 0.1237084290392101E+01 + 0.1232822263060346E+01 + 0.1228559576202968E+01 + 0.1224296260258648E+01 + 0.1220032345706421E+01 + 0.1215767863280141E+01 + 0.1211502843904122E+01 + 0.1207237318518043E+01 + 0.1202971317970243E+01 + 0.1198704873096594E+01 + 0.1194438014715560E+01 + 0.1190170773534757E+01 + 0.1185903180272620E+01 + 0.1181635265866900E+01 + 0.1177367061561911E+01 + 0.1173098598637531E+01 + 0.1168829908109992E+01 + 0.1164561020796975E+01 + 0.1160291967597207E+01 + 0.1156022779801318E+01 + 0.1151753488878348E+01 + 0.1147484126224311E+01 + 0.1143214722929405E+01 + 0.1138945310051130E+01 + 0.1134675918794746E+01 + 0.1130406580584005E+01 + 0.1126137326887360E+01 + 0.1121868189114729E+01 + 0.1117599198630515E+01 + 0.1113330386862859E+01 + 0.1109061785519805E+01 + 0.1104793426453159E+01 + 0.1100525341397711E+01 + 0.1096257561588202E+01 + 0.1091990118178056E+01 + 0.1087723042706956E+01 + 0.1083456367376716E+01 + 0.1079190124462320E+01 + 0.1074924345752627E+01 + 0.1070659062580424E+01 + 0.1066394306351660E+01 + 0.1062130109001098E+01 + 0.1057866502742213E+01 + 0.1053603519756919E+01 + 0.1049341191998216E+01 + 0.1045079551387978E+01 + 0.1040818629936822E+01 + 0.1036558459797987E+01 + 0.1032299073164294E+01 + 0.1028040502109765E+01 + 0.1023782778584347E+01 + 0.1019525934596888E+01 + 0.1015270002502136E+01 + 0.1011015014859021E+01 + 0.1006761004174390E+01 + 0.1002508002606307E+01 + 0.9982560422418139E+00 + 0.9940051553718641E+00 + 0.9897553746914635E+00 + 0.9855067329680791E+00 + 0.9812592627288435E+00 + 0.9770129962231646E+00 + 0.9727679657530324E+00 + 0.9685242040429634E+00 + 0.9642817440853428E+00 + 0.9600406187922257E+00 + 0.9558008605375617E+00 + 0.9515625015544538E+00 + 0.9473255743761783E+00 + 0.9430901122110589E+00 + 0.9388561483857616E+00 + 0.9346237159276381E+00 + 0.9303928474819745E+00 + 0.9261635757168490E+00 + 0.9219359335290955E+00 + 0.9177099539784411E+00 + 0.9134856701599347E+00 + 0.9092631152016113E+00 + 0.9050423222643522E+00 + 0.9008233244577955E+00 + 0.8966061547005618E+00 + 0.8923908459143046E+00 + 0.8881774313682497E+00 + 0.8839659447965699E+00 + 0.8797564199580595E+00 + 0.8755488900904894E+00 + 0.8713433880599883E+00 + 0.8671399468476304E+00 + 0.8629386000256821E+00 + 0.8587393814097352E+00 + 0.8545423247055339E+00 + 0.8503474632284796E+00 + 0.8461548302524722E+00 + 0.8419644592812901E+00 + 0.8377763841491607E+00 + 0.8335906387398044E+00 + 0.8294072568371012E+00 + 0.8252262721512709E+00 + 0.8210477184114239E+00 + 0.8168716293043403E+00 + 0.8126980385182351E+00 + 0.8085269797989533E+00 + 0.8043584870069104E+00 + 0.8001925940532651E+00 + 0.7960293349610418E+00 + 0.7918687439174735E+00 + 0.7877108551438025E+00 + 0.7835557026815428E+00 + 0.7794033204175239E+00 + 0.7752537422853298E+00 + 0.7711070024077333E+00 + 0.7669631350126184E+00 + 0.7628221743651602E+00 + 0.7586841547777881E+00 + 0.7545491105980661E+00 + 0.7504170760960228E+00 + 0.7462880853721613E+00 + 0.7421621725541715E+00 + 0.7380393721531059E+00 + 0.7339197190525281E+00 + 0.7298032481306159E+00 + 0.7256899938454968E+00 + 0.7215799904569733E+00 + 0.7174732723258481E+00 + 0.7133698741312559E+00 + 0.7092698306571147E+00 + 0.7051731766069346E+00 + 0.7010799464878216E+00 + 0.6969901748201237E+00 + 0.6929038963673805E+00 + 0.6888211461498289E+00 + 0.6847419592173184E+00 + 0.6806663705129697E+00 + 0.6765944149342066E+00 + 0.6725261273924929E+00 + 0.6684615427505890E+00 + 0.6644006958811247E+00 + 0.6603436217234410E+00 + 0.6562903553254444E+00 + 0.6522409317817459E+00 + 0.6481953863292981E+00 + 0.6441537543658695E+00 + 0.6401160713029034E+00 + 0.6360823722904677E+00 + 0.6320526923288632E+00 + 0.6280270665224106E+00 + 0.6240055303823370E+00 + 0.6199881195704298E+00 + 0.6159748696403325E+00 + 0.6119658158290626E+00 + 0.6079609933576105E+00 + 0.6039604376459461E+00 + 0.5999641843603341E+00 + 0.5959722691943805E+00 + 0.5919847276267568E+00 + 0.5880015949997257E+00 + 0.5840229067725815E+00 + 0.5800486989314790E+00 + 0.5760790076684799E+00 + 0.5721138690300802E+00 + 0.5681533186047556E+00 + 0.5641973919338708E+00 + 0.5602461247625227E+00 + 0.5562995531100626E+00 + 0.5523577130330288E+00 + 0.5484206404176626E+00 + 0.5444883710304499E+00 + 0.5405609407131063E+00 + 0.5366383856313393E+00 + 0.5327207420969576E+00 + 0.5288080464100507E+00 + 0.5249003347663239E+00 + 0.5209976433669858E+00 + 0.5171000083621538E+00 + 0.5132074658042884E+00 + 0.5093200517832488E+00 + 0.5054378026869952E+00 + 0.5015607551553995E+00 + 0.4976889458161465E+00 + 0.4938224109636026E+00 + 0.4899611867673048E+00 + 0.4861053095416390E+00 + 0.4822548160158862E+00 + 0.4784097430310909E+00 + 0.4745701272881877E+00 + 0.4707360052246750E+00 + 0.4669074132869620E+00 + 0.4630843880556774E+00 + 0.4592669662362675E+00 + 0.4554551845945777E+00 + 0.4516490801207031E+00 + 0.4478486899288961E+00 + 0.4440540510228486E+00 + 0.4402651998951283E+00 + 0.4364821729458813E+00 + 0.4327050069676101E+00 + 0.4289337394644452E+00 + 0.4251684080241443E+00 + 0.4214090496949325E+00 + 0.4176557009874912E+00 + 0.4139083985017730E+00 + 0.4101671795973473E+00 + 0.4064320820489203E+00 + 0.4027031434904791E+00 + 0.3989804008430824E+00 + 0.3952638908660430E+00 + 0.3915536505958723E+00 + 0.3878497176114963E+00 + 0.3841521295834829E+00 + 0.3804609240745477E+00 + 0.3767761385261990E+00 + 0.3730978103930362E+00 + 0.3694259770415064E+00 + 0.3657606758006982E+00 + 0.3621019441035771E+00 + 0.3584498197529364E+00 + 0.3548043406825562E+00 + 0.3511655446968307E+00 + 0.3475334692587515E+00 + 0.3439081518196150E+00 + 0.3402896301310443E+00 + 0.3366779422991650E+00 + 0.3330731264503148E+00 + 0.3294752203767480E+00 + 0.3258842616691766E+00 + 0.3223002880349144E+00 + 0.3187233376720640E+00 + 0.3151534489602759E+00 + 0.3115906600843906E+00 + 0.3080350086803029E+00 + 0.3044865323356873E+00 + 0.3009452691029239E+00 + 0.2974112576380766E+00 + 0.2938845366345182E+00 + 0.2903651443584150E+00 + 0.2868531187854460E+00 + 0.2833484979605053E+00 + 0.2798513202133619E+00 + 0.2763616239977563E+00 + 0.2728794477778288E+00 + 0.2694048299863738E+00 + 0.2659378090778803E+00 + 0.2624784235423419E+00 + 0.2590267119064279E+00 + 0.2555827127326072E+00 + 0.2521464646549092E+00 + 0.2487180063701468E+00 + 0.2452973765798858E+00 + 0.2418846138295477E+00 + 0.2384797566216621E+00 + 0.2350828435923456E+00 + 0.2316939137282307E+00 + 0.2283130061092226E+00 + 0.2249401597097581E+00 + 0.2215754133157101E+00 + 0.2182188057310515E+00 + 0.2148703758822939E+00 + 0.2115301628049758E+00 + 0.2081982055647264E+00 + 0.2048745432214976E+00 + 0.2015592148510336E+00 + 0.1982522595635533E+00 + 0.1949537165079194E+00 + 0.1916636248672601E+00 + 0.1883820238667283E+00 + 0.1851089527804457E+00 + 0.1818444509142821E+00 + 0.1785885575494833E+00 + 0.1753413119465266E+00 + 0.1721027534344558E+00 + 0.1688729216851291E+00 + 0.1656518565554833E+00 + 0.1624395976136944E+00 + 0.1592361832026094E+00 + 0.1560416514084168E+00 + 0.1528560425122109E+00 + 0.1496794010311411E+00 + 0.1465117713086196E+00 + 0.1433531810518414E+00 + 0.1402036409163216E+00 + 0.1370631592161317E+00 + 0.1339317297497557E+00 + 0.1308093384482862E+00 + 0.1276959719730077E+00 + 0.1245916205667902E+00 + 0.1214962754281801E+00 + 0.1184099273299164E+00 + 0.1153325661514474E+00 + 0.1122641816453037E+00 + 0.1092047637083437E+00 + 0.1061543024023497E+00 + 0.1031127877729508E+00 + 0.1000802097761329E+00 + 0.9705655830657214E-01 + 0.9404182324608685E-01 + 0.9103599449130245E-01 + 0.8803906192979683E-01 + 0.8505101542360494E-01 + 0.8207184480063495E-01 + 0.7910153986782371E-01 + 0.7614009043043558E-01 + 0.7318748629626853E-01 + 0.7024371725138069E-01 + 0.6730877301743046E-01 + 0.6438264326710465E-01 + 0.6146531766356520E-01 + 0.5855678590649958E-01 + 0.5565703769502616E-01 + 0.5276606269146988E-01 + 0.4988385049279519E-01 + 0.4701039066982330E-01 + 0.4414567280328236E-01 + 0.4128968649435135E-01 + 0.3844242132401938E-01 + 0.3560386680301459E-01 + 0.3277401238589357E-01 + 0.2995284751852551E-01 + 0.2714036169659822E-01 + 0.2433654442226846E-01 + 0.2154138515914242E-01 + 0.1875487329510447E-01 + 0.1597699818872967E-01 + 0.1320774919461631E-01 + 0.1044711567098940E-01 + 0.7695086958371582E-02 + 0.4951652373763177E-02 + 0.2216801211493422E-02 + -0.5094772536422055E-03 + -0.3227193766958579E-02 + -0.5936359093434104E-02 + -0.8636984017077198E-02 + -0.1132907934027337E-01 + -0.1401265588455412E-01 + -0.1668772449192131E-01 + -0.1935429602556171E-01 + -0.2201238136808683E-01 + -0.2466199141985363E-01 + -0.2730313709917522E-01 + -0.2993582934333923E-01 + -0.3256007910665527E-01 + -0.3517589736169495E-01 + -0.3778329510008180E-01 + -0.4038228333182754E-01 + -0.4297287308611709E-01 + -0.4555507541880093E-01 + -0.4812890141834796E-01 + -0.5069436219344283E-01 + -0.5325146886080857E-01 + -0.5580023254565571E-01 + -0.5834066439252994E-01 + -0.6087277556917242E-01 + -0.6339657726459730E-01 + -0.6591208068681469E-01 + -0.6841929706178438E-01 + -0.7091823763445558E-01 + -0.7340891366968605E-01 + -0.7589133645284639E-01 + -0.7836551728866388E-01 + -0.8083146749855420E-01 + -0.8328919842049025E-01 + -0.8573872141291250E-01 + -0.8818004786597557E-01 + -0.9061318919605434E-01 + -0.9303815683705791E-01 + -0.9545496223376077E-01 + -0.9786361684785856E-01 + -0.1002641321506600E+00 + -0.1026565196113197E+00 + -0.1050407907166593E+00 + -0.1074169570104263E+00 + -0.1097850300992458E+00 + -0.1121450216055298E+00 + -0.1144969431055990E+00 + -0.1168408061549004E+00 + -0.1191766223416569E+00 + -0.1215044033437772E+00 + -0.1238241608804171E+00 + -0.1261359066755339E+00 + -0.1284396524367565E+00 + -0.1307354098855330E+00 + -0.1330231907571977E+00 + -0.1353030067994877E+00 + -0.1375748697809505E+00 + -0.1398387915136812E+00 + -0.1420947838454725E+00 + -0.1443428586403210E+00 + -0.1465830277623076E+00 + -0.1488153030881631E+00 + -0.1510396965163362E+00 + -0.1532562199710925E+00 + -0.1554648853970214E+00 + -0.1576657047538427E+00 + -0.1598586900147453E+00 + -0.1620438531730326E+00 + -0.1642212062589910E+00 + -0.1663907613353591E+00 + -0.1685525304789232E+00 + -0.1707065257508673E+00 + -0.1728527592182673E+00 + -0.1749912429792637E+00 + -0.1771219891868807E+00 + -0.1792450100199484E+00 + -0.1813603176645588E+00 + -0.1834679243075660E+00 + -0.1855678421539083E+00 + -0.1876600834334899E+00 + -0.1897446604001602E+00 + -0.1918215853262616E+00 + -0.1938908704967366E+00 + -0.1959525282129900E+00 + -0.1980065708019690E+00 + -0.2000530106308260E+00 + -0.2020918600901994E+00 + -0.2041231315725217E+00 + -0.2061468374598224E+00 + -0.2081629901516123E+00 + -0.2101716020867978E+00 + -0.2121726857416452E+00 + -0.2141662536141086E+00 + -0.2161523182348363E+00 + -0.2181308921601088E+00 + -0.2201019879315371E+00 + -0.2220656179829819E+00 + -0.2240217947391646E+00 + -0.2259705307788945E+00 + -0.2279118389522057E+00 + -0.2298457321484663E+00 + -0.2317722231018563E+00 + -0.2336913243936188E+00 + -0.2356030486115184E+00 + -0.2375074083149398E+00 + -0.2394044160576877E+00 + -0.2412940844892596E+00 + -0.2431764265972887E+00 + -0.2450514554706892E+00 + -0.2469191840591571E+00 + -0.2487796250044607E+00 + -0.2506327909326622E+00 + -0.2524786946372879E+00 + -0.2543173490917988E+00 + -0.2561487672906775E+00 + -0.2579729621838983E+00 + -0.2597899467041377E+00 + -0.2615997338182850E+00 + -0.2634023365835516E+00 + -0.2651977680966870E+00 + -0.2669860413848942E+00 + -0.2687671692919512E+00 + -0.2705411646596871E+00 + -0.2723080405750397E+00 + -0.2740678104131862E+00 + -0.2758204875622762E+00 + -0.2775660851778530E+00 + -0.2793046162754428E+00 + -0.2810360938760532E+00 + -0.2827605309620917E+00 + -0.2844779405169948E+00 + -0.2861883357442548E+00 + -0.2878917303738231E+00 + -0.2895881382228178E+00 + -0.2912775726790564E+00 + -0.2929600465624074E+00 + -0.2946355727121690E+00 + -0.2963041645055044E+00 + -0.2979658356998538E+00 + -0.2996206000066153E+00 + -0.3012684707361462E+00 + -0.3029094610678352E+00 + -0.3045435842767993E+00 + -0.3061708538724022E+00 + -0.3077912834206108E+00 + -0.3094048865018736E+00 + -0.3110116767089604E+00 + -0.3126116676432988E+00 + -0.3142048727748946E+00 + -0.3157913054776722E+00 + -0.3173709791886337E+00 + -0.3189439076658204E+00 + -0.3205101048063201E+00 + -0.3220695844693082E+00 + -0.3236223603537943E+00 + -0.3251684461430724E+00 + -0.3267078555244700E+00 + -0.3282406021804378E+00 + -0.3297666998038018E+00 + -0.3312861619908377E+00 + -0.3327990022596481E+00 + -0.3343052342263492E+00 + -0.3358048721176612E+00 + -0.3372979304395030E+00 + -0.3387844234261221E+00 + -0.3402643643188948E+00 + -0.3417377661665767E+00 + -0.3432046426654638E+00 + -0.3446650086276848E+00 + -0.3461188789492888E+00 + -0.3475662676183287E+00 + -0.3490071877851574E+00 + -0.3504416527107287E+00 + -0.3518696766813945E+00 + -0.3532912744914911E+00 + -0.3547064607335657E+00 + -0.3561152491532403E+00 + -0.3575176533089522E+00 + -0.3589136870686084E+00 + -0.3603033648781801E+00 + -0.3616867012593667E+00 + -0.3630637105807907E+00 + -0.3644344070553944E+00 + -0.3657988048989365E+00 + -0.3671569182671733E+00 + -0.3685087612926076E+00 + -0.3698543481606367E+00 + -0.3711936932222846E+00 + -0.3725268108870478E+00 + -0.3738537155600779E+00 + -0.3751744216154813E+00 + -0.3764889434419037E+00 + -0.3777972954939820E+00 + -0.3790994922977202E+00 + -0.3803955483823198E+00 + -0.3816854781006803E+00 + -0.3829692957093493E+00 + -0.3842470155594779E+00 + -0.3855186523895344E+00 + -0.3867842210668653E+00 + -0.3880437363294048E+00 + -0.3892972125843941E+00 + -0.3905446642118290E+00 + -0.3917861057419071E+00 + -0.3930215518845037E+00 + -0.3942510173786658E+00 + -0.3954745169828091E+00 + -0.3966920654747281E+00 + -0.3979036776139166E+00 + -0.3991093679782423E+00 + -0.4003091510983034E+00 + -0.4015030416607138E+00 + -0.4026910547277674E+00 + -0.4038732054332278E+00 + -0.4050495087051520E+00 + -0.4062199791878619E+00 + -0.4073846315368629E+00 + -0.4085434806069737E+00 + -0.4096965414012297E+00 + -0.4108438289368518E+00 + -0.4119853582027577E+00 + -0.4131211441896297E+00 + -0.4142512019001378E+00 + -0.4153755463351400E+00 + -0.4164941925124709E+00 + -0.4176071555466488E+00 + -0.4187144506860795E+00 + -0.4198160931810073E+00 + -0.4209120978853889E+00 + -0.4220024793451868E+00 + -0.4230872522668136E+00 + -0.4241664323779729E+00 + -0.4252400358356743E+00 + -0.4263080783850502E+00 + -0.4273705744001891E+00 + -0.4284275380062243E+00 + -0.4294789841058033E+00 + -0.4305249288573675E+00 + -0.4315653885060343E+00 + -0.4326003784705542E+00 + -0.4336299134572507E+00 + -0.4346540082594946E+00 + -0.4356726783796042E+00 + -0.4366859396514507E+00 + -0.4376938077989443E+00 + -0.4386962980968839E+00 + -0.4396934257359529E+00 + -0.4406852060485988E+00 + -0.4416716546067113E+00 + -0.4426527870225087E+00 + -0.4436286188851758E+00 + -0.4445991657629605E+00 + -0.4455644432402341E+00 + -0.4465244669071523E+00 + -0.4474792523664176E+00 + -0.4484288152692407E+00 + -0.4493731714025115E+00 + -0.4503123365998838E+00 + -0.4512463265044912E+00 + -0.4521751563628090E+00 + -0.4530988414134033E+00 + -0.4540173974639395E+00 + -0.4549308409153895E+00 + -0.4558391881331971E+00 + -0.4567424547225850E+00 + -0.4576406558776729E+00 + -0.4585338070011543E+00 + -0.4594219243759062E+00 + -0.4603050245413243E+00 + -0.4611831237248739E+00 + -0.4620562374472980E+00 + -0.4629243811612068E+00 + -0.4637875706077155E+00 + -0.4646458218560034E+00 + -0.4654991510171697E+00 + -0.4663475742813414E+00 + -0.4671911078943602E+00 + -0.4680297680777923E+00 + -0.4688635708538481E+00 + -0.4696925321964417E+00 + -0.4705166680603854E+00 + -0.4713359943269270E+00 + -0.4721505268932449E+00 + -0.4729602820605314E+00 + -0.4737652766340389E+00 + -0.4745655274025638E+00 + -0.4753610503527655E+00 + -0.4761518609402832E+00 + -0.4769379748038949E+00 + -0.4777194085635374E+00 + -0.4784961791880650E+00 + -0.4792683034254667E+00 + -0.4800357973962107E+00 + -0.4807986771364833E+00 + -0.4815569588858761E+00 + -0.4823106591583858E+00 + -0.4830597944996034E+00 + -0.4838043813827083E+00 + -0.4845444362326128E+00 + -0.4852799755138186E+00 + -0.4860110158447547E+00 + -0.4867375739143601E+00 + -0.4874596662847291E+00 + -0.4881773091009295E+00 + -0.4888905184530672E+00 + -0.4895993108528650E+00 + -0.4903037034445800E+00 + -0.4910037134148326E+00 + -0.4916993575024962E+00 + -0.4923906520874643E+00 + -0.4930776135953130E+00 + -0.4937602587290551E+00 + -0.4944386043198559E+00 + -0.4951126672094942E+00 + -0.4957824642287258E+00 + -0.4964480122203512E+00 + -0.4971093279687002E+00 + -0.4977664281468694E+00 + -0.4984193294412635E+00 + -0.4990680486813819E+00 + -0.4997126028261979E+00 + -0.5003530088525109E+00 + -0.5009892837147439E+00 + -0.5016214443672039E+00 + -0.5022495077874375E+00 + -0.5028734909871532E+00 + -0.5034934110007512E+00 + -0.5041092848746996E+00 + -0.5047211296613466E+00 + -0.5053289624323853E+00 + -0.5059328003112634E+00 + -0.5065326604724549E+00 + -0.5071285600938865E+00 + -0.5077205162226933E+00 + -0.5083085458479387E+00 + -0.5088926660133760E+00 + -0.5094728939305484E+00 + -0.5100492468685888E+00 + -0.5106217421299980E+00 + -0.5111903970652234E+00 + -0.5117552290404063E+00 + -0.5123162552525885E+00 + -0.5128734927158226E+00 + -0.5134269585074412E+00 + -0.5139766702564739E+00 + -0.5145226459139986E+00 + -0.5150649032972224E+00 + -0.5156034595234445E+00 + -0.5161383315240620E+00 + -0.5166695364346142E+00 + -0.5171970918276364E+00 + -0.5177210153499370E+00 + -0.5182413245917728E+00 + -0.5187580370732116E+00 + -0.5192711703300979E+00 + -0.5197807419355084E+00 + -0.5202867694930585E+00 + -0.5207892706323106E+00 + -0.5212882630349930E+00 + -0.5217837644124942E+00 + -0.5222757924364053E+00 + -0.5227643646498327E+00 + -0.5232494985942481E+00 + -0.5237312119023515E+00 + -0.5242095223194014E+00 + -0.5246844476264841E+00 + -0.5251560057549821E+00 + -0.5256242147459250E+00 + -0.5260890926146767E+00 + -0.5265506571284742E+00 + -0.5270089259792156E+00 + -0.5274639168798715E+00 + -0.5279156475681639E+00 + -0.5283641358049969E+00 + -0.5288093995175506E+00 + -0.5292514568618003E+00 + -0.5296903260250241E+00 + -0.5301260251522972E+00 + -0.5305585723614161E+00 + -0.5309879857256110E+00 + -0.5314142829375509E+00 + -0.5318374815522150E+00 + -0.5322575993992441E+00 + -0.5326746551153505E+00 + -0.5330886674999781E+00 + -0.5334996548719166E+00 + -0.5339076347849181E+00 + -0.5343126247877997E+00 + -0.5347146432043992E+00 + -0.5351137090075172E+00 + -0.5355098410637710E+00 + -0.5359030572231493E+00 + -0.5362933749044804E+00 + -0.5366808118497081E+00 + -0.5370653868679341E+00 + -0.5374471190071222E+00 + -0.5378260269324827E+00 + -0.5382021286336041E+00 + -0.5385754420755420E+00 + -0.5389459857431550E+00 + -0.5393137785987353E+00 + -0.5396788395303646E+00 + -0.5400411865580523E+00 + -0.5404008372943850E+00 + -0.5407578096996505E+00 + -0.5411121230172689E+00 + -0.5414637968061503E+00 + -0.5418128500250589E+00 + -0.5421593004713569E+00 + -0.5425031658622915E+00 + -0.5428444647155058E+00 + -0.5431832163532613E+00 + -0.5435194400795359E+00 + -0.5438531545627926E+00 + -0.5441843781432830E+00 + -0.5445131292655891E+00 + -0.5448394267690314E+00 + -0.5451632896111226E+00 + -0.5454847366293758E+00 + -0.5458037863874066E+00 + -0.5461204574409919E+00 + -0.5464347686440116E+00 + -0.5467467391775406E+00 + -0.5470563882252149E+00 + -0.5473637346542085E+00 + -0.5476687971545021E+00 + -0.5479715944671018E+00 + -0.5482721455147309E+00 + -0.5485704692877215E+00 + -0.5488665848766532E+00 + -0.5491605115796076E+00 + -0.5494522687315985E+00 + -0.5497418753754849E+00 + -0.5500293501955326E+00 + -0.5503147118953578E+00 + -0.5505979794652792E+00 + -0.5508791720872387E+00 + -0.5511583089998084E+00 + -0.5514354096423315E+00 + -0.5517104935328044E+00 + -0.5519835799933554E+00 + -0.5522546878104827E+00 + -0.5525238357117117E+00 + -0.5527910428652103E+00 + -0.5530563290203575E+00 + -0.5533197139671535E+00 + -0.5535812172751086E+00 + -0.5538408583630361E+00 + -0.5540986565064774E+00 + -0.5543546300639568E+00 + -0.5546087970667243E+00 + -0.5548611716020732E+00 + -0.5551117564528491E+00 + -0.5553605524091160E+00 + -0.5556075608774314E+00 + -0.5558527841673920E+00 + -0.5560962246216125E+00 + -0.5563378839460223E+00 + -0.5565777633506553E+00 + -0.5568158641360885E+00 + -0.5570521882728158E+00 + -0.5572867380041943E+00 + -0.5575195154057488E+00 + -0.5577505220104663E+00 + -0.5579797592504039E+00 + -0.5582072288615295E+00 + -0.5584329330687497E+00 + -0.5586568741124625E+00 + -0.5588790536737154E+00 + -0.5590994729545979E+00 + -0.5593181332626234E+00 + -0.5595350367835184E+00 + -0.5597501860982085E+00 + -0.5599635834911767E+00 + -0.5601752301838960E+00 + -0.5603851271702346E+00 + -0.5605932759341060E+00 + -0.5607996788292244E+00 + -0.5610043382871227E+00 + -0.5612072564377383E+00 + -0.5614084351272664E+00 + -0.5616078761629203E+00 + -0.5618055811001238E+00 + -0.5620015513709193E+00 + -0.5621957885502837E+00 + -0.5623882947719713E+00 + -0.5625790723076685E+00 + -0.5627681231900199E+00 + -0.5629554489796302E+00 + -0.5631410512004673E+00 + -0.5633249317696314E+00 + -0.5635070930106371E+00 + -0.5636875371976407E+00 + -0.5638662659418045E+00 + -0.5640432804931267E+00 + -0.5642185823183440E+00 + -0.5643921738427747E+00 + -0.5645640577542005E+00 + -0.5647342362331280E+00 + -0.5649027103565329E+00 + -0.5650694810898896E+00 + -0.5652345503099054E+00 + -0.5653979209279195E+00 + -0.5655595958024696E+00 + -0.5657195766056370E+00 + -0.5658778642957878E+00 + -0.5660344600628871E+00 + -0.5661893662686373E+00 + -0.5663425856332664E+00 + -0.5664941204994153E+00 + -0.5666439722991658E+00 + -0.5667921423457499E+00 + -0.5669386324098444E+00 + -0.5670834448323612E+00 + -0.5672265819605455E+00 + -0.5673680457527608E+00 + -0.5675078379103785E+00 + -0.5676459601617792E+00 + -0.5677824143961669E+00 + -0.5679172025593441E+00 + -0.5680503267096364E+00 + -0.5681817891995291E+00 + -0.5683115924205406E+00 + -0.5684397382401189E+00 + -0.5685662278056745E+00 + -0.5686910622907714E+00 + -0.5688142439250916E+00 + -0.5689357757098201E+00 + -0.5690556604532731E+00 + -0.5691738996645275E+00 + -0.5692904943652811E+00 + -0.5694054459724864E+00 + -0.5695187570675856E+00 + -0.5696304304387470E+00 + -0.5697404683317674E+00 + -0.5698488721722852E+00 + -0.5699556433573076E+00 + -0.5700607838785042E+00 + -0.5701642962051391E+00 + -0.5702661827436913E+00 + -0.5703664453631222E+00 + -0.5704650857097183E+00 + -0.5705621055962573E+00 + -0.5706575073780891E+00 + -0.5707512935194947E+00 + -0.5708434661484541E+00 + -0.5709340268321297E+00 + -0.5710229771103200E+00 + -0.5711103189569880E+00 + -0.5711960547291142E+00 + -0.5712801867793429E+00 + -0.5713627173070818E+00 + -0.5714436484425940E+00 + -0.5715229822128841E+00 + -0.5716007202618227E+00 + -0.5716768641514879E+00 + -0.5717514158128079E+00 + -0.5718243778500886E+00 + -0.5718957529211385E+00 + -0.5719655432220962E+00 + -0.5720337505021952E+00 + -0.5721003765318212E+00 + -0.5721654234019837E+00 + -0.5722288933686422E+00 + -0.5722907886282701E+00 + -0.5723511111211030E+00 + -0.5724098627249397E+00 + -0.5724670454139362E+00 + -0.5725226613542517E+00 + -0.5725767127358404E+00 + -0.5726292017023395E+00 + -0.5726801303479458E+00 + -0.5727295007744142E+00 + -0.5727773151566858E+00 + -0.5728235757121604E+00 + -0.5728682846080910E+00 + -0.5729114437722798E+00 + -0.5729530550674715E+00 + -0.5729931205309194E+00 + -0.5730316425863950E+00 + -0.5730686237041186E+00 + -0.5731040660907310E+00 + -0.5731379716444515E+00 + -0.5731703422666328E+00 + -0.5732011800605877E+00 + -0.5732304872559362E+00 + -0.5732582660827527E+00 + -0.5732845187522687E+00 + -0.5733092474716164E+00 + -0.5733324543959164E+00 + -0.5733541415474458E+00 + -0.5733743109322097E+00 + -0.5733929646191461E+00 + -0.5734101047572012E+00 + -0.5734257335198347E+00 + -0.5734398532918529E+00 + -0.5734524666032906E+00 + -0.5734635758866710E+00 + -0.5734731829952593E+00 + -0.5734812895815661E+00 + -0.5734878975336374E+00 + -0.5734930093815591E+00 + -0.5734966277601828E+00 + -0.5734987549810795E+00 + -0.5734993928982686E+00 + -0.5734985433660959E+00 + -0.5734962087092618E+00 + -0.5734923916063170E+00 + -0.5734870946309365E+00 + -0.5734803196258978E+00 + -0.5734720681518604E+00 + -0.5734623420898972E+00 + -0.5734511442936249E+00 + -0.5734384777928121E+00 + -0.5734243449534214E+00 + -0.5734087471087243E+00 + -0.5733916855693622E+00 + -0.5733731627210991E+00 + -0.5733531818373670E+00 + -0.5733317460451679E+00 + -0.5733088572305691E+00 + -0.5732845167472911E+00 + -0.5732587262132533E+00 + -0.5732314881427865E+00 + -0.5732028052402002E+00 + -0.5731726800500747E+00 + -0.5731411148415246E+00 + -0.5731081118539301E+00 + -0.5730736732264756E+00 + -0.5730378010077692E+00 + -0.5730004972890969E+00 + -0.5729617645077489E+00 + -0.5729216052671998E+00 + -0.5728800220837541E+00 + -0.5728370171327729E+00 + -0.5727925925114605E+00 + -0.5727467503296041E+00 + -0.5726994927183399E+00 + -0.5726508218218854E+00 + -0.5726007399764519E+00 + -0.5725492497094492E+00 + -0.5724963535511327E+00 + -0.5724420539606951E+00 + -0.5723863533614103E+00 + -0.5723292540758001E+00 + -0.5722707579954511E+00 + -0.5722108669029939E+00 + -0.5721495829537091E+00 + -0.5720869090761102E+00 + -0.5720228482757975E+00 + -0.5719574029527498E+00 + -0.5718905748442602E+00 + -0.5718223657213510E+00 + -0.5717527780140443E+00 + -0.5716818145354250E+00 + -0.5716094779842766E+00 + -0.5715357704910757E+00 + -0.5714606940230052E+00 + -0.5713842507826882E+00 + -0.5713064435114862E+00 + -0.5712272750154438E+00 + -0.5711467476572764E+00 + -0.5710648632663999E+00 + -0.5709816236946917E+00 + -0.5708970313892142E+00 + -0.5708110891779564E+00 + -0.5707237997912216E+00 + -0.5706351654043747E+00 + -0.5705451880146637E+00 + -0.5704538698402134E+00 + -0.5703612136585747E+00 + -0.5702672223265561E+00 + -0.5701718982480016E+00 + -0.5700752432276125E+00 + -0.5699772590882718E+00 + -0.5698779484004099E+00 + -0.5697773142603962E+00 + -0.5696753596400054E+00 + -0.5695720867060675E+00 + -0.5694674973365627E+00 + -0.5693615935558896E+00 + -0.5692543777992466E+00 + -0.5691458525781829E+00 + -0.5690360205003644E+00 + -0.5689248843116972E+00 + -0.5688124467417666E+00 + -0.5686987100717507E+00 + -0.5685836762371347E+00 + -0.5684673472522414E+00 + -0.5683497256898768E+00 + -0.5682308143482636E+00 + -0.5681106159523615E+00 + -0.5679891329883379E+00 + -0.5678663678970361E+00 + -0.5677423230672790E+00 + -0.5676170008030574E+00 + -0.5674904034097680E+00 + -0.5673625333091902E+00 + -0.5672333930223080E+00 + -0.5671029850782137E+00 + -0.5669713120246282E+00 + -0.5668383764191537E+00 + -0.5667041807615748E+00 + -0.5665687273421884E+00 + -0.5664320184095755E+00 + -0.5662940563845411E+00 + -0.5661548439891017E+00 + -0.5660143839743984E+00 + -0.5658726790081461E+00 + -0.5657297316804741E+00 + -0.5655855445392733E+00 + -0.5654401197903209E+00 + -0.5652934594730215E+00 + -0.5651455657813863E+00 + -0.5649964415086144E+00 + -0.5648460895941216E+00 + -0.5646945127415284E+00 + -0.5645417131934991E+00 + -0.5643876931544208E+00 + -0.5642324551282298E+00 + -0.5640760019255733E+00 + -0.5639183363584024E+00 + -0.5637594610980168E+00 + -0.5635993787409777E+00 + -0.5634380918194908E+00 + -0.5632756025803535E+00 + -0.5631119131956158E+00 + -0.5629470259729251E+00 + -0.5627809435079067E+00 + -0.5626136684378926E+00 + -0.5624452034587877E+00 + -0.5622755513320187E+00 + -0.5621047148145307E+00 + -0.5619326965529542E+00 + -0.5617594991292992E+00 + -0.5615851251122679E+00 + -0.5614095769996484E+00 + -0.5612328572696551E+00 + -0.5610549683707845E+00 + -0.5608759126772317E+00 + -0.5606956925619987E+00 + -0.5605143106549805E+00 + -0.5603317699029184E+00 + -0.5601480732396192E+00 + -0.5599632231794813E+00 + -0.5597772219623693E+00 + -0.5595900719291027E+00 + -0.5594017759794127E+00 + -0.5592123372021140E+00 + -0.5590217584123797E+00 + -0.5588300417002483E+00 + -0.5586371890527891E+00 + -0.5584432030112324E+00 + -0.5582480868687431E+00 + -0.5580518439226440E+00 + -0.5578544767560601E+00 + -0.5576559874367820E+00 + -0.5574563781082614E+00 + -0.5572556514265324E+00 + -0.5570538102403310E+00 + -0.5568508573307801E+00 + -0.5566467952749697E+00 + -0.5564416266185736E+00 + -0.5562353540911226E+00 + -0.5560279806954900E+00 + -0.5558195094316507E+00 + -0.5556099428614417E+00 + -0.5553992831991796E+00 + -0.5551875327042637E+00 + -0.5549746939904176E+00 + -0.5547607698193380E+00 + -0.5545457629886283E+00 + -0.5543296764042893E+00 + -0.5541125129945765E+00 + -0.5538942755403554E+00 + -0.5536749665780763E+00 + -0.5534545886239615E+00 + -0.5532331441981828E+00 + -0.5530106358247032E+00 + -0.5527870660646599E+00 + -0.5525624377418785E+00 + -0.5523367538018382E+00 + -0.5521100171705477E+00 + -0.5518822306935594E+00 + -0.5516533971982046E+00 + -0.5514235192895002E+00 + -0.5511925991670516E+00 + -0.5509606390198489E+00 + -0.5507276416793601E+00 + -0.5504936105932830E+00 + -0.5502585491299246E+00 + -0.5500224597479693E+00 + -0.5497853444480856E+00 + -0.5495472054883973E+00 + -0.5493080461694597E+00 + -0.5490678700525447E+00 + -0.5488266801839412E+00 + -0.5485844785762178E+00 + -0.5483412671453084E+00 + -0.5480970484287862E+00 + -0.5478518256188590E+00 + -0.5476056019076575E+00 + -0.5473583801615786E+00 + -0.5471101630668350E+00 + -0.5468609533247407E+00 + -0.5466107537034000E+00 + -0.5463595669918991E+00 + -0.5461073960289187E+00 + -0.5458542437592993E+00 + -0.5456001131336735E+00 + -0.5453450067715911E+00 + -0.5450889269090959E+00 + -0.5448318758332116E+00 + -0.5445738565951924E+00 + -0.5443148727167237E+00 + -0.5440549275460037E+00 + -0.5437940235176487E+00 + -0.5435321627842583E+00 + -0.5432693478023377E+00 + -0.5430055817688027E+00 + -0.5427408679842100E+00 + -0.5424752093736136E+00 + -0.5422086083838336E+00 + -0.5419410674746167E+00 + -0.5416725896217259E+00 + -0.5414031781506875E+00 + -0.5411328362572940E+00 + -0.5408615663636340E+00 + -0.5405893706260700E+00 + -0.5403162515659700E+00 + -0.5400422126914086E+00 + -0.5397672576637954E+00 + -0.5394913894464308E+00 + -0.5392146100255648E+00 + -0.5389369213818773E+00 + -0.5386583264230154E+00 + -0.5383788287465514E+00 + -0.5380984318525054E+00 + -0.5378171385144162E+00 + -0.5375349512284292E+00 + -0.5372518726000626E+00 + -0.5369679055608188E+00 + -0.5366830531053109E+00 + -0.5363973182083167E+00 + -0.5361107038125272E+00 + -0.5358232128526214E+00 + -0.5355348481361740E+00 + -0.5352456123673970E+00 + -0.5349555082750674E+00 + -0.5346645387646499E+00 + -0.5343727068184712E+00 + -0.5340800154085207E+00 + -0.5337864674644068E+00 + -0.5334920659091436E+00 + -0.5331968136685298E+00 + -0.5329007136710945E+00 + -0.5326037688500533E+00 + -0.5323059821764527E+00 + -0.5320073566556025E+00 + -0.5317078952747131E+00 + -0.5314076008508648E+00 + -0.5311064761224805E+00 + -0.5308045238766518E+00 + -0.5305017470763126E+00 + -0.5301981487276414E+00 + -0.5298937318453472E+00 + -0.5295884994575354E+00 + -0.5292824545892824E+00 + -0.5289756001095606E+00 + -0.5286679387334204E+00 + -0.5283594732080205E+00 + -0.5280502066008770E+00 + -0.5277401421475360E+00 + -0.5274292830576033E+00 + -0.5271176324174065E+00 + -0.5268051932823648E+00 + -0.5264919685469398E+00 + -0.5261779607707969E+00 + -0.5258631724883449E+00 + -0.5255476066058177E+00 + -0.5252312664320220E+00 + -0.5249141552796800E+00 + -0.5245962762739712E+00 + -0.5242776324337526E+00 + -0.5239582267356796E+00 + -0.5236380619567619E+00 + -0.5233171408190823E+00 + -0.5229954662577223E+00 + -0.5226730416896991E+00 + -0.5223498705858829E+00 + -0.5220259559157174E+00 + -0.5217013000513586E+00 + -0.5213759054097450E+00 + -0.5210497752846573E+00 + -0.5207229135251610E+00 + -0.5203953237676203E+00 + -0.5200670084920242E+00 + -0.5197379698090618E+00 + -0.5194082102378442E+00 + -0.5190777333250725E+00 + -0.5187465427726760E+00 + -0.5184146420045504E+00 + -0.5180820340799626E+00 + -0.5177487220171132E+00 + -0.5174147085905726E+00 + -0.5170799964062503E+00 + -0.5167445881678407E+00 + -0.5164084871500051E+00 + -0.5160716968331661E+00 + -0.5157342205423470E+00 + -0.5153960611613305E+00 + -0.5150572215016902E+00 + -0.5147177044851779E+00 + -0.5143775131908273E+00 + -0.5140366507257751E+00 + -0.5136951203966079E+00 + -0.5133529256631782E+00 + -0.5130100698977666E+00 + -0.5126665558675247E+00 + -0.5123223861014513E+00 + -0.5119775633526354E+00 + -0.5116320910674745E+00 + -0.5112859728242219E+00 + -0.5109392118844179E+00 + -0.5105918110065387E+00 + -0.5102437729334966E+00 + -0.5098951008663289E+00 + -0.5095457983916446E+00 + -0.5091958690188432E+00 + -0.5088453155949964E+00 + -0.5084941406780011E+00 + -0.5081423470104571E+00 + -0.5077899379719653E+00 + -0.5074369170805597E+00 + -0.5070832877223492E+00 + -0.5067290530511130E+00 + -0.5063742161957727E+00 + -0.5060187802062051E+00 + -0.5056627480595004E+00 + -0.5053061227526738E+00 + -0.5049489074477796E+00 + -0.5045911053884185E+00 + -0.5042327198061431E+00 + -0.5038737538758018E+00 + -0.5035142107610263E+00 + -0.5031540936588208E+00 + -0.5027934058277265E+00 + -0.5024321505298984E+00 + -0.5020703308899709E+00 + -0.5017079498930435E+00 + -0.5013450105398599E+00 + -0.5009815160099633E+00 + -0.5006174695799935E+00 + -0.5002528745191125E+00 + -0.4998877340509865E+00 + -0.4995220513891831E+00 + -0.4991558297501346E+00 + -0.4987890723531369E+00 + -0.4984217824215230E+00 + -0.4980539632144556E+00 + -0.4976856180306887E+00 + -0.4973167501571802E+00 + -0.4969473627119559E+00 + -0.4965774587144066E+00 + -0.4962070412263974E+00 + -0.4958361135088817E+00 + -0.4954646788841714E+00 + -0.4950927406513822E+00 + -0.4947203020511862E+00 + -0.4943473663194437E+00 + -0.4939739367332495E+00 + -0.4936000166195279E+00 + -0.4932256092982531E+00 + -0.4928507179428326E+00 + -0.4924753456323171E+00 + -0.4920994954661825E+00 + -0.4917231706498147E+00 + -0.4913463744258602E+00 + -0.4909691101474185E+00 + -0.4905913814503466E+00 + -0.4902131920080496E+00 + -0.4898345450549730E+00 + -0.4894554432339376E+00 + -0.4890758892112596E+00 + -0.4886958865009138E+00 + -0.4883154392243672E+00 + -0.4879345512336226E+00 + -0.4875532246819653E+00 + -0.4871714610979067E+00 + -0.4867892622228116E+00 + -0.4864066304127118E+00 + -0.4860235681333121E+00 + -0.4856400777283657E+00 + -0.4852561613601501E+00 + -0.4848718211906108E+00 + -0.4844870595775634E+00 + -0.4841018790333835E+00 + -0.4837162819680573E+00 + -0.4833302700703969E+00 + -0.4829438447355103E+00 + -0.4825570077185740E+00 + -0.4821697619299329E+00 + -0.4817821105036827E+00 + -0.4813940559188151E+00 + -0.4810055995856408E+00 + -0.4806167428628498E+00 + -0.4802274879250732E+00 + -0.4798378376526787E+00 + -0.4794477948421023E+00 + -0.4790573614747903E+00 + -0.4786665391645218E+00 + -0.4782753297471794E+00 + -0.4778837358543181E+00 + -0.4774917602929865E+00 + -0.4770994055172342E+00 + -0.4767066733456334E+00 + -0.4763135655470592E+00 + -0.4759200842088583E+00 + -0.4755262317209489E+00 + -0.4751320104942120E+00 + -0.4747374230005808E+00 + -0.4743424717435648E+00 + -0.4739471590565630E+00 + -0.4735514865894000E+00 + -0.4731554558268430E+00 + -0.4727590687519346E+00 + -0.4723623283331492E+00 + -0.4719652376317990E+00 + -0.4715677990833918E+00 + -0.4711700144704881E+00 + -0.4707718855801184E+00 + -0.4703734145187346E+00 + -0.4699746035697920E+00 + -0.4695754550255905E+00 + -0.4691759712028380E+00 + -0.4687761544266401E+00 + -0.4683760070655300E+00 + -0.4679755315807085E+00 + -0.4675747304382777E+00 + -0.4671736058336697E+00 + -0.4667721596518652E+00 + -0.4663703937996172E+00 + -0.4659683105852579E+00 + -0.4655659125620288E+00 + -0.4651632022210971E+00 + -0.4647601817218587E+00 + -0.4643568531231504E+00 + -0.4639532186240328E+00 + -0.4635492807606535E+00 + -0.4631450421118873E+00 + -0.4627405049286097E+00 + -0.4623356710481818E+00 + -0.4619305423285613E+00 + -0.4615251211848034E+00 + -0.4611194104055257E+00 + -0.4607134127047418E+00 + -0.4603071303376961E+00 + -0.4599005654037808E+00 + -0.4594937200543254E+00 + -0.4590865965774446E+00 + -0.4586791972844214E+00 + -0.4582715244373546E+00 + -0.4578635802295306E+00 + -0.4574553668628197E+00 + -0.4570468867079820E+00 + -0.4566381422606477E+00 + -0.4562291359920797E+00 + -0.4558198701954756E+00 + -0.4554103470975019E+00 + -0.4550005689250794E+00 + -0.4545905379026283E+00 + -0.4541802562576047E+00 + -0.4537697263335482E+00 + -0.4533589506497901E+00 + -0.4529479317292926E+00 + -0.4525366718869529E+00 + -0.4521251732696282E+00 + -0.4517134380648455E+00 + -0.4513014687633011E+00 + -0.4508892679845777E+00 + -0.4504768382153900E+00 + -0.4500641814959637E+00 + -0.4496512997783169E+00 + -0.4492381952276958E+00 + -0.4488248703657526E+00 + -0.4484113277472752E+00 + -0.4479975698772997E+00 + -0.4475835992168408E+00 + -0.4471694182115711E+00 + -0.4467550291875217E+00 + -0.4463404344159684E+00 + -0.4459256361810184E+00 + -0.4455106368102937E+00 + -0.4450954386427194E+00 + -0.4446800440008529E+00 + -0.4442644551753944E+00 + -0.4438486744587914E+00 + -0.4434327042233249E+00 + -0.4430165469193026E+00 + -0.4426002050184602E+00 + -0.4421836811361139E+00 + -0.4417669779625285E+00 + -0.4413500980142895E+00 + -0.4409330430855937E+00 + -0.4405158147896600E+00 + -0.4400984152443240E+00 + -0.4396808475954661E+00 + -0.4392631150909489E+00 + -0.4388452203124050E+00 + -0.4384271651264850E+00 + -0.4380089514175486E+00 + -0.4375905815767119E+00 + -0.4371720582837409E+00 + -0.4367533841805277E+00 + -0.4363345617130056E+00 + -0.4359155932718581E+00 + -0.4354964811159920E+00 + -0.4350772272048017E+00 + -0.4346578334772945E+00 + -0.4342383024820286E+00 + -0.4338186374856766E+00 + -0.4333988417063456E+00 + -0.4329789173364850E+00 + -0.4325588659273531E+00 + -0.4321386892282252E+00 + -0.4317183900433855E+00 + -0.4312979715134061E+00 + -0.4308774364424935E+00 + -0.4304567867910796E+00 + -0.4300360244042445E+00 + -0.4296151516257435E+00 + -0.4291941714447404E+00 + -0.4287730868514303E+00 + -0.4283519002778403E+00 + -0.4279306137721354E+00 + -0.4275092294134344E+00 + -0.4270877494928015E+00 + -0.4266661763775534E+00 + -0.4262445125635206E+00 + -0.4258227608987807E+00 + -0.4254009242870655E+00 + -0.4249790053131184E+00 + -0.4245570061064774E+00 + -0.4241349287732781E+00 + -0.4237127755652804E+00 + -0.4232905488449770E+00 + -0.4228682510387276E+00 + -0.4224458849521777E+00 + -0.4220234535409350E+00 + -0.4216009595589648E+00 + -0.4211784051344391E+00 + -0.4207557922813510E+00 + -0.4203331232888184E+00 + -0.4199104008761875E+00 + -0.4194876277909289E+00 + -0.4190648065910535E+00 + -0.4186419396771735E+00 + -0.4182190294376588E+00 + -0.4177960781968887E+00 + -0.4173730882524758E+00 + -0.4169500620557132E+00 + -0.4165270025795561E+00 + -0.4161039129044673E+00 + -0.4156807956421865E+00 + -0.4152576525937256E+00 + -0.4148344855160516E+00 + -0.4144112968580647E+00 + -0.4139880897017044E+00 + -0.4135648670899505E+00 + -0.4131416315518193E+00 + -0.4127183853704835E+00 + -0.4122951308781587E+00 + -0.4118718705948774E+00 + -0.4114486070860389E+00 + -0.4110253428273812E+00 + -0.4106020801222282E+00 + -0.4101788212740050E+00 + -0.4097555690021084E+00 + -0.4093323264438336E+00 + -0.4089090966549182E+00 + -0.4084858817725558E+00 + -0.4080626834475915E+00 + -0.4076395036210204E+00 + -0.4072163454794179E+00 + -0.4067932125382616E+00 + -0.4063701077848335E+00 + -0.4059470330933394E+00 + -0.4055239902172241E+00 + -0.4051009814247196E+00 + -0.4046780095519679E+00 + -0.4042550774537689E+00 + -0.4038321878580559E+00 + -0.4034093434194309E+00 + -0.4029865467575588E+00 + -0.4025638003240380E+00 + -0.4021411065225616E+00 + -0.4017184678703592E+00 + -0.4012958871461861E+00 + -0.4008733671606386E+00 + -0.4004509104915776E+00 + -0.4000285194342858E+00 + -0.3996061962733385E+00 + -0.3991839433490874E+00 + -0.3987617630384243E+00 + -0.3983396578460512E+00 + -0.3979176309396149E+00 + -0.3974956857051890E+00 + -0.3970738251298085E+00 + -0.3966520511688882E+00 + -0.3962303656272880E+00 + -0.3958087708072278E+00 + -0.3953872696731338E+00 + -0.3949658652061507E+00 + -0.3945445599754598E+00 + -0.3941233562588277E+00 + -0.3937022564322222E+00 + -0.3932812634776872E+00 + -0.3928603805994121E+00 + -0.3924396107087226E+00 + -0.3920189558751549E+00 + -0.3915984180265993E+00 + -0.3911779994291015E+00 + -0.3907577028435425E+00 + -0.3903375310828003E+00 + -0.3899174871252895E+00 + -0.3894975740789084E+00 + -0.3890777949345421E+00 + -0.3886581518782912E+00 + -0.3882386467718419E+00 + -0.3878192817610508E+00 + -0.3874000598936451E+00 + -0.3869809843932640E+00 + -0.3865620581864068E+00 + -0.3861432837188928E+00 + -0.3857246634026468E+00 + -0.3853061997944522E+00 + -0.3848878955754105E+00 + -0.3844697534085915E+00 + -0.3840517757825479E+00 + -0.3836339651087071E+00 + -0.3832163239583419E+00 + -0.3827988554640612E+00 + -0.3823815628788899E+00 + -0.3819644489862654E+00 + -0.3815475157333092E+00 + -0.3811307650156931E+00 + -0.3807141994193844E+00 + -0.3802978221798334E+00 + -0.3798816364999336E+00 + -0.3794656450872678E+00 + -0.3790498504053212E+00 + -0.3786342549411228E+00 + -0.3782188612760062E+00 + -0.3778036720165138E+00 + -0.3773886898495691E+00 + -0.3769739176178755E+00 + -0.3765593581782911E+00 + -0.3761450142492730E+00 + -0.3757308884062125E+00 + -0.3753169832258282E+00 + -0.3749033013443407E+00 + -0.3744898454313184E+00 + -0.3740766181457074E+00 + -0.3736636220921054E+00 + -0.3732508598619454E+00 + -0.3728383341186811E+00 + -0.3724260476795940E+00 + -0.3720140033832412E+00 + -0.3716022040529368E+00 + -0.3711906524944258E+00 + -0.3707793515094858E+00 + -0.3703683038499335E+00 + -0.3699575122382861E+00 + -0.3695469793368246E+00 + -0.3691367075083610E+00 + -0.3687266990264935E+00 + -0.3683169564493234E+00 + -0.3679074830144861E+00 + -0.3674982820463782E+00 + -0.3670893563426639E+00 + -0.3666807080436239E+00 + -0.3662723393144505E+00 + -0.3658642531026644E+00 + -0.3654564528750414E+00 + -0.3650489419054716E+00 + -0.3646417223561600E+00 + -0.3642347960143896E+00 + -0.3638281651607059E+00 + -0.3634218333842254E+00 + -0.3630158044717756E+00 + -0.3626100813650950E+00 + -0.3622046658465706E+00 + -0.3617995597028588E+00 + -0.3613947659226468E+00 + -0.3609902883716867E+00 + -0.3605861306861377E+00 + -0.3601822949710797E+00 + -0.3597787827568211E+00 + -0.3593755960555305E+00 + -0.3589727383006882E+00 + -0.3585702131804814E+00 + -0.3581680239424569E+00 + -0.3577661731684446E+00 + -0.3573646633860045E+00 + -0.3569634971124116E+00 + -0.3565626768570370E+00 + -0.3561622051694957E+00 + -0.3557620848651853E+00 + -0.3553623188714652E+00 + -0.3549629101335460E+00 + -0.3545638616492985E+00 + -0.3541651764255246E+00 + -0.3537668572168160E+00 + -0.3533689063577005E+00 + -0.3529713261746761E+00 + -0.3525741195526181E+00 + -0.3521772898684455E+00 + -0.3517808404284817E+00 + -0.3513847738566450E+00 + -0.3509890924629856E+00 + -0.3505937986866361E+00 + -0.3501988954395014E+00 + -0.3498043857427303E+00 + -0.3494102726105405E+00 + -0.3490165590427381E+00 + -0.3486232480259572E+00 + -0.3482303422570526E+00 + -0.3478378441525716E+00 + -0.3474457561699069E+00 + -0.3470540812041517E+00 + -0.3466628223744666E+00 + -0.3462719827169396E+00 + -0.3458815649165292E+00 + -0.3454915715715691E+00 + -0.3451020054507572E+00 + -0.3447128696650453E+00 + -0.3443241673537037E+00 + -0.3439359012784459E+00 + -0.3435480737996397E+00 + -0.3431606873214851E+00 + -0.3427737448488144E+00 + -0.3423872497251113E+00 + -0.3420012052100817E+00 + -0.3416156141593147E+00 + -0.3412304793151022E+00 + -0.3408458033435045E+00 + -0.3404615887382021E+00 + -0.3400778379832050E+00 + -0.3396945539424292E+00 + -0.3393117399229704E+00 + -0.3389293992289614E+00 + -0.3385475348350071E+00 + -0.3381661495122874E+00 + -0.3377852459918713E+00 + -0.3374048268104772E+00 + -0.3370248944454520E+00 + -0.3366454516089791E+00 + -0.3362665015910651E+00 + -0.3358880477634703E+00 + -0.3355100932042938E+00 + -0.3351326406143136E+00 + -0.3347556926807061E+00 + -0.3343792522110942E+00 + -0.3340033220958473E+00 + -0.3336279052132238E+00 + -0.3332530043556781E+00 + -0.3328786222869672E+00 + -0.3325047618500460E+00 + -0.3321314261017154E+00 + -0.3317586181342200E+00 + -0.3313863409218343E+00 + -0.3310145972716205E+00 + -0.3306433899808275E+00 + -0.3302727218641595E+00 + -0.3299025957498785E+00 + -0.3295330144879118E+00 + -0.3291639810528318E+00 + -0.3287954984687946E+00 + -0.3284275697785307E+00 + -0.3280601980768548E+00 + -0.3276933864670725E+00 + -0.3273271378714832E+00 + -0.3269614549303872E+00 + -0.3265963402667311E+00 + -0.3262317965945514E+00 + -0.3258678267033029E+00 + -0.3255044334477102E+00 + -0.3251416201157136E+00 + -0.3247793901826884E+00 + -0.3244177469008700E+00 + -0.3240566927597400E+00 + -0.3236962300946459E+00 + -0.3233363617034188E+00 + -0.3229770911731997E+00 + -0.3226184221297757E+00 + -0.3222603574118880E+00 + -0.3219028991454600E+00 + -0.3215460495485982E+00 + -0.3211898117631744E+00 + -0.3208341893712931E+00 + -0.3204791858052692E+00 + -0.3201248039166993E+00 + -0.3197710464226687E+00 + -0.3194179161328974E+00 + -0.3190654160301241E+00 + -0.3187135491126413E+00 + -0.3183623182594678E+00 + -0.3180117262309471E+00 + -0.3176617758337600E+00 + -0.3173124703194712E+00 + -0.3169638131742165E+00 + -0.3166158077427708E+00 + -0.3162684567609531E+00 + -0.3159217628067466E+00 + -0.3155757285580066E+00 + -0.3152303568986257E+00 + -0.3148856507478261E+00 + -0.3145416132437080E+00 + -0.3141982477634144E+00 + -0.3138555576698882E+00 + -0.3135135460421077E+00 + -0.3131722157954787E+00 + -0.3128315696800679E+00 + -0.3124916096757892E+00 + -0.3121523375323764E+00 + -0.3118137535274405E+00 + -0.3114758545510498E+00 + -0.3111386370255180E+00 + -0.3108020976755132E+00 + -0.3104662335893353E+00 + -0.3101310418699286E+00 + -0.3097965195668053E+00 + -0.3094626636944581E+00 + -0.3091294712199018E+00 + -0.3087969388764982E+00 + -0.3084650633201568E+00 + -0.3081338413598155E+00 + -0.3078032701988100E+00 + -0.3074733470965984E+00 + -0.3071440691609726E+00 + -0.3068154333003812E+00 + -0.3064874364017475E+00 + -0.3061600752789619E+00 + -0.3058333466938378E+00 + -0.3055072474329608E+00 + -0.3051817744463739E+00 + -0.3048569247413902E+00 + -0.3045326952985825E+00 + -0.3042090830274760E+00 + -0.3038860848228428E+00 + -0.3035636975723052E+00 + -0.3032419181543217E+00 + -0.3029207434464293E+00 + -0.3026001703575466E+00 + -0.3022801958202051E+00 + -0.3019608167584401E+00 + -0.3016420300511259E+00 + -0.3013238325574616E+00 + -0.3010062211392853E+00 + -0.3006891926726007E+00 + -0.3003727440343301E+00 + -0.3000568721175845E+00 + -0.2997415738429223E+00 + -0.2994268461266292E+00 + -0.2991126858070563E+00 + -0.2987990896560469E+00 + -0.2984860544561545E+00 + -0.2981735770999113E+00 + -0.2978616545271047E+00 + -0.2975502836508222E+00 + -0.2972394612966058E+00 + -0.2969291842690556E+00 + -0.2966194493933521E+00 + -0.2963102535329377E+00 + -0.2960015935513242E+00 + -0.2956934662802451E+00 + -0.2953858685216406E+00 + -0.2950787970796346E+00 + -0.2947722488040360E+00 + -0.2944662205656785E+00 + -0.2941607092196506E+00 + -0.2938557115667821E+00 + -0.2935512243928220E+00 + -0.2932472444982278E+00 + -0.2929437687145394E+00 + -0.2926407938734273E+00 + -0.2923383167778459E+00 + -0.2920363342014241E+00 + -0.2917348429189091E+00 + -0.2914338397486720E+00 + -0.2911333215314511E+00 + -0.2908332850941156E+00 + -0.2905337272111664E+00 + -0.2902346446410377E+00 + -0.2899360341526903E+00 + -0.2896378925407278E+00 + -0.2893402166004708E+00 + -0.2890430031164870E+00 + -0.2887462488615888E+00 + -0.2884499506069302E+00 + -0.2881541051366152E+00 + -0.2878587092413929E+00 + -0.2875637596973699E+00 + -0.2872692532195059E+00 + -0.2869751865025718E+00 + -0.2866815562787846E+00 + -0.2863883593728873E+00 + -0.2860955926189029E+00 + -0.2858032527821739E+00 + -0.2855113365438360E+00 + -0.2852198405827575E+00 + -0.2849287616403377E+00 + -0.2846380964981004E+00 + -0.2843478419312456E+00 + -0.2840579946884624E+00 + -0.2837685515077568E+00 + -0.2834795091101956E+00 + -0.2831908641766914E+00 + -0.2829026133802234E+00 + -0.2826147534274961E+00 + -0.2823272810719590E+00 + -0.2820401930664642E+00 + -0.2817534861410943E+00 + -0.2814671570087541E+00 + -0.2811812023757572E+00 + -0.2808956189240812E+00 + -0.2806104033249761E+00 + -0.2803255522652075E+00 + -0.2800410624819747E+00 + -0.2797569307186778E+00 + -0.2794731536733186E+00 + -0.2791897279774134E+00 + -0.2789066502580344E+00 + -0.2786239171939942E+00 + -0.2783415255046324E+00 + -0.2780594719050437E+00 + -0.2777777530888836E+00 + -0.2774963657393972E+00 + -0.2772153065220239E+00 + -0.2769345720505305E+00 + -0.2766541589268141E+00 + -0.2763740638024686E+00 + -0.2760942834125231E+00 + -0.2758148144929541E+00 + -0.2755356536962401E+00 + -0.2752567976016772E+00 + -0.2749782427941879E+00 + -0.2746999859367632E+00 + -0.2744220237266003E+00 + -0.2741443528422213E+00 + -0.2738669699009668E+00 + -0.2735898715044587E+00 + -0.2733130542664357E+00 + -0.2730365148247701E+00 + -0.2727602498174760E+00 + -0.2724842558794226E+00 + -0.2722085296423560E+00 + -0.2719330677323947E+00 + -0.2716578667479819E+00 + -0.2713829232722679E+00 + -0.2711082338979390E+00 + -0.2708337952644880E+00 + -0.2705596040210103E+00 + -0.2702856567901645E+00 + -0.2700119501443953E+00 + -0.2697384806488307E+00 + -0.2694652448917680E+00 + -0.2691922394860333E+00 + -0.2689194610396690E+00 + -0.2686469061252583E+00 + -0.2683745712944543E+00 + -0.2681024531069793E+00 + -0.2678305481688890E+00 + -0.2675588530972120E+00 + -0.2672873644890709E+00 + -0.2670160789008020E+00 + -0.2667449928808053E+00 + -0.2664741029699681E+00 + -0.2662034057009080E+00 + -0.2659328976088434E+00 + -0.2656625752871112E+00 + -0.2653924353636858E+00 + -0.2651224744463635E+00 + -0.2648526890500308E+00 + -0.2645830756588564E+00 + -0.2643136307758180E+00 + -0.2640443509538190E+00 + -0.2637752327508565E+00 + -0.2635062727172398E+00 + -0.2632374673942275E+00 + -0.2629688133184392E+00 + -0.2627003070044649E+00 + -0.2624319449511469E+00 + -0.2621637236613414E+00 + -0.2618956396738729E+00 + -0.2616276895382685E+00 + -0.2613598697962720E+00 + -0.2610921769730241E+00 + -0.2608246075881202E+00 + -0.2605571581333778E+00 + -0.2602898250628751E+00 + -0.2600226048290232E+00 + -0.2597554939331498E+00 + -0.2594884889122388E+00 + -0.2592215862969709E+00 + -0.2589547825869496E+00 + -0.2586880742682058E+00 + -0.2584214578221048E+00 + -0.2581549297214031E+00 + -0.2578884864350060E+00 + -0.2576221244253261E+00 + -0.2573558401462352E+00 + -0.2570896300529393E+00 + -0.2568234906718434E+00 + -0.2565574185870132E+00 + -0.2562914103312102E+00 + -0.2560254620831943E+00 + -0.2557595698695901E+00 + -0.2554937303387239E+00 + -0.2552279422278991E+00 + -0.2549622047158817E+00 + -0.2546965174135792E+00 + -0.2544308806635746E+00 + -0.2541652948729009E+00 + -0.2538997603262509E+00 + -0.2536342771985610E+00 + -0.2533688456610310E+00 + -0.2531034658856468E+00 + -0.2528381380447967E+00 + -0.2525728623211279E+00 + -0.2523076389353391E+00 + -0.2520424681169145E+00 + -0.2517773500798728E+00 + -0.2515122850092935E+00 + -0.2512472730880986E+00 + -0.2509823145204795E+00 + -0.2507174095315920E+00 + -0.2504525583450045E+00 + -0.2501877611618111E+00 + -0.2499230181714641E+00 + -0.2496583295654910E+00 + -0.2493936955442168E+00 + -0.2491291163102790E+00 + -0.2488645920617556E+00 + -0.2486001229872505E+00 + -0.2483357092751006E+00 + -0.2480713511360388E+00 + -0.2478070488050354E+00 + -0.2475428025131153E+00 + -0.2472786124391672E+00 + -0.2470144787322210E+00 + -0.2467504015583297E+00 + -0.2464863811637155E+00 + -0.2462224178176956E+00 + -0.2459585117559429E+00 + -0.2456946631373579E+00 + -0.2454308721115010E+00 + -0.2451671388681167E+00 + -0.2449034636447260E+00 + -0.2446398466784645E+00 + -0.2443762881697049E+00 + -0.2441127882956320E+00 + -0.2438493472423471E+00 + -0.2435859652435304E+00 + -0.2433226425481370E+00 + -0.2430593793712508E+00 + -0.2427961758423774E+00 + -0.2425330320797209E+00 + -0.2422699482785252E+00 + -0.2420069247347040E+00 + -0.2417439617443209E+00 + -0.2414810595163719E+00 + -0.2412182181993646E+00 + -0.2409554379487168E+00 + -0.2406927189664271E+00 + -0.2404300614711662E+00 + -0.2401674656728951E+00 + -0.2399049317570051E+00 + -0.2396424599053106E+00 + -0.2393800503307638E+00 + -0.2391177032910336E+00 + -0.2388554190437653E+00 + -0.2385931977935405E+00 + -0.2383310397044034E+00 + -0.2380689449433535E+00 + -0.2378069137027128E+00 + -0.2375449461848790E+00 + -0.2372830425994019E+00 + -0.2370212031778005E+00 + -0.2367594281554637E+00 + -0.2364977177385192E+00 + -0.2362360720867583E+00 + -0.2359744913591069E+00 + -0.2357129757690422E+00 + -0.2354515255758781E+00 + -0.2351901410348475E+00 + -0.2349288223608327E+00 + -0.2346675697510689E+00 + -0.2344063833964599E+00 + -0.2341452634661092E+00 + -0.2338842101248784E+00 + -0.2336232235731401E+00 + -0.2333623040730926E+00 + -0.2331014518905791E+00 + -0.2328406672383420E+00 + -0.2325799502801278E+00 + -0.2323193011815499E+00 + -0.2320587201378290E+00 + -0.2317982073585791E+00 + -0.2315377630550323E+00 + -0.2312773874440500E+00 + -0.2310170807439445E+00 + -0.2307568431766359E+00 + -0.2304966749708946E+00 + -0.2302365763552883E+00 + -0.2299765475334102E+00 + -0.2297165886835368E+00 + -0.2294566999838964E+00 + -0.2291968816220849E+00 + -0.2289371337907454E+00 + -0.2286774566956093E+00 + -0.2284178505980665E+00 + -0.2281583157742225E+00 + -0.2278988524518057E+00 + -0.2276394607557527E+00 + -0.2273801408012290E+00 + -0.2271208927971902E+00 + -0.2268617170570096E+00 + -0.2266026138881492E+00 + -0.2263435834793317E+00 + -0.2260846259492303E+00 + -0.2258257414346841E+00 + -0.2255669301635344E+00 + -0.2253081923907634E+00 + -0.2250495283524833E+00 + -0.2247909382403562E+00 + -0.2245324222403675E+00 + -0.2242739805602063E+00 + -0.2240156134340956E+00 + -0.2237573210960669E+00 + -0.2234991037579686E+00 + -0.2232409616172606E+00 + -0.2229828948727991E+00 + -0.2227249037318821E+00 + -0.2224669884046530E+00 + -0.2222091490983622E+00 + -0.2219513860126084E+00 + -0.2216936993461621E+00 + -0.2214360893121239E+00 + -0.2211785561428333E+00 + -0.2209211000705933E+00 + -0.2206637213079546E+00 + -0.2204064200533684E+00 + -0.2201491965067420E+00 + -0.2198920508781133E+00 + -0.2196349833812965E+00 + -0.2193779942242847E+00 + -0.2191210835981059E+00 + -0.2188642516914409E+00 + -0.2186074987269140E+00 + -0.2183508249773089E+00 + -0.2180942307146205E+00 + -0.2178377161346273E+00 + -0.2175812813731959E+00 + -0.2173249265753467E+00 + -0.2170686519575637E+00 + -0.2168124577655592E+00 + -0.2165563442403022E+00 + -0.2163003116070456E+00 + -0.2160443600878875E+00 + -0.2157884898993495E+00 + -0.2155327012488215E+00 + -0.2152769943427561E+00 + -0.2150213693846733E+00 + -0.2147658265755684E+00 + -0.2145103661197405E+00 + -0.2142549882462988E+00 + -0.2139996931956145E+00 + -0.2137444811973635E+00 + -0.2134893524426183E+00 + -0.2132343071139166E+00 + -0.2129793453962257E+00 + -0.2127244674788215E+00 + -0.2124696735543754E+00 + -0.2122149638761624E+00 + -0.2119603387549849E+00 + -0.2117057984878869E+00 + -0.2114513432364767E+00 + -0.2111969730947371E+00 + -0.2109426881891843E+00 + -0.2106884887775907E+00 + -0.2104343751501807E+00 + -0.2101803475659967E+00 + -0.2099264062222441E+00 + -0.2096725513092882E+00 + -0.2094187830266781E+00 + -0.2091651015835366E+00 + -0.2089115071909762E+00 + -0.2086580000740826E+00 + -0.2084045804656816E+00 + -0.2081512485960099E+00 + -0.2078980046831681E+00 + -0.2076448489418947E+00 + -0.2073917815746044E+00 + -0.2071388027566717E+00 + -0.2068859126614055E+00 + -0.2066331115056855E+00 + -0.2063803995562736E+00 + -0.2061277770791687E+00 + -0.2058752443018205E+00 + -0.2056228014282913E+00 + -0.2053704486596263E+00 + -0.2051181861833296E+00 + -0.2048660141828221E+00 + -0.2046139328560464E+00 + -0.2043619424360017E+00 + -0.2041100431608396E+00 + -0.2038582352642912E+00 + -0.2036065189745013E+00 + -0.2033548945187843E+00 + -0.2031033621177415E+00 + -0.2028519219875112E+00 + -0.2026005743400294E+00 + -0.2023493193642069E+00 + -0.2020981572411364E+00 + -0.2018470881662523E+00 + -0.2015961123733687E+00 + -0.2013452301026329E+00 + -0.2010944415891535E+00 + -0.2008437470610360E+00 + -0.2005931467456575E+00 + -0.2003426408663395E+00 + -0.2000922296434414E+00 + -0.1998419132919628E+00 + -0.1995916919939686E+00 + -0.1993415659190620E+00 + -0.1990915352627814E+00 + -0.1988416002978483E+00 + -0.1985917613104904E+00 + -0.1983420185360154E+00 + -0.1980923721321856E+00 + -0.1978428222550312E+00 + -0.1975933691369711E+00 + -0.1973440130722227E+00 + -0.1970947543421079E+00 + -0.1968455931262779E+00 + -0.1965965295616142E+00 + -0.1963475638082467E+00 + -0.1960986961036894E+00 + -0.1958499267014110E+00 + -0.1956012558464601E+00 + -0.1953526837697063E+00 + -0.1951042107002143E+00 + -0.1948558368571745E+00 + -0.1946075624510109E+00 + -0.1943593876926031E+00 + -0.1941113127982288E+00 + -0.1938633379867205E+00 + -0.1936154634744082E+00 + -0.1933676894681366E+00 + -0.1931200161727781E+00 + -0.1928724438093006E+00 + -0.1926249726283414E+00 + -0.1923776028819156E+00 + -0.1921303347799321E+00 + -0.1918831684911989E+00 + -0.1916361041906065E+00 + -0.1913891421204223E+00 + -0.1911422825576242E+00 + -0.1908955257683783E+00 + -0.1906488719729403E+00 + -0.1904023213797972E+00 + -0.1901558741904615E+00 + -0.1899095305921568E+00 + -0.1896632907716048E+00 + -0.1894171549466602E+00 + -0.1891711233685504E+00 + -0.1889251962868273E+00 + -0.1886793739176696E+00 + -0.1884336564583462E+00 + -0.1881880441150421E+00 + -0.1879425371354644E+00 + -0.1876971357791318E+00 + -0.1874518402780356E+00 + -0.1872066508020044E+00 + -0.1869615675143772E+00 + -0.1867165906409185E+00 + -0.1864717204809069E+00 + -0.1862269573283428E+00 + -0.1859823013702125E+00 + -0.1857377527266014E+00 + -0.1854933115447200E+00 + -0.1852489781151858E+00 + -0.1850047527741529E+00 + -0.1847606358042069E+00 + -0.1845166273540153E+00 + -0.1842727275532520E+00 + -0.1840289365904077E+00 + -0.1837852547300907E+00 + -0.1835416822388902E+00 + -0.1832982193431410E+00 + -0.1830548662414945E+00 + -0.1828116231379595E+00 + -0.1825684902698161E+00 + -0.1823254678861455E+00 + -0.1820825562276434E+00 + -0.1818397555116024E+00 + -0.1815970659513474E+00 + -0.1813544877595199E+00 + -0.1811120211477586E+00 + -0.1808696663293207E+00 + -0.1806274235412909E+00 + -0.1803852930388102E+00 + -0.1801432750696549E+00 + -0.1799013698314108E+00 + -0.1796595775020428E+00 + -0.1794178982760806E+00 + -0.1791763323989914E+00 + -0.1789348801258339E+00 + -0.1786935416970875E+00 + -0.1784523173303397E+00 + -0.1782112072408457E+00 + -0.1779702116371053E+00 + -0.1777293307220085E+00 + -0.1774885647065665E+00 + -0.1772479138604395E+00 + -0.1770073784788003E+00 + -0.1767669588249693E+00 + -0.1765266550527617E+00 + -0.1762864672934175E+00 + -0.1760463957420387E+00 + -0.1758064407038643E+00 + -0.1755666024902061E+00 + -0.1753268813150694E+00 + -0.1750872773035279E+00 + -0.1748477905937566E+00 + -0.1746084214547452E+00 + -0.1743691702183225E+00 + -0.1741300371875015E+00 + -0.1738910225537273E+00 + -0.1736521264821639E+00 + -0.1734133491626473E+00 + -0.1731746908319074E+00 + -0.1729361517310908E+00 + -0.1726977320802859E+00 + -0.1724594320784388E+00 + -0.1722212519303717E+00 + -0.1719831919016922E+00 + -0.1717452522902705E+00 + -0.1715074333686748E+00 + -0.1712697353005738E+00 + -0.1710321582211128E+00 + -0.1707947023160712E+00 + -0.1705573678775536E+00 + -0.1703201552089664E+00 + -0.1700830645525030E+00 + -0.1698460960828432E+00 + -0.1696092499758650E+00 + -0.1693725264546873E+00 + -0.1691359257700673E+00 + -0.1688994481743319E+00 + -0.1686630939252375E+00 + -0.1684268632820940E+00 + -0.1681907564736788E+00 + -0.1679547736577179E+00 + -0.1677189149838576E+00 + -0.1674831806671410E+00 + -0.1672475710018279E+00 + -0.1670120862816941E+00 + -0.1667767267386498E+00 + -0.1665414925648181E+00 + -0.1663063839626830E+00 + -0.1660714011925197E+00 + -0.1658365445335564E+00 + -0.1656018142283968E+00 + -0.1653672104252165E+00 + -0.1651327332593055E+00 + -0.1648983829511955E+00 + -0.1646641598349054E+00 + -0.1644300642438128E+00 + -0.1641960963970311E+00 + -0.1639622564327721E+00 + -0.1637285445021802E+00 + -0.1634949608423970E+00 + -0.1632615057219539E+00 + -0.1630281794021109E+00 + -0.1627949821230463E+00 + -0.1625619141212535E+00 + -0.1623289756323330E+00 + -0.1620961668905373E+00 + -0.1618634881281808E+00 + -0.1616309395486439E+00 + -0.1613985213327909E+00 + -0.1611662336728863E+00 + -0.1609340768398076E+00 + -0.1607020511362514E+00 + -0.1604701568348986E+00 + -0.1602383941126775E+00 + -0.1600067631285104E+00 + -0.1597752641018366E+00 + -0.1595438973496093E+00 + -0.1593126631908668E+00 + -0.1590815618235223E+00 + -0.1588505933418461E+00 + -0.1586197578614909E+00 + -0.1583890556803837E+00 + -0.1581584871780567E+00 + -0.1579280526889944E+00 + -0.1576977523869271E+00 + -0.1574675864105279E+00 + -0.1572375549312555E+00 + -0.1570076581787758E+00 + -0.1567778963899387E+00 + -0.1565482698248827E+00 + -0.1563187787656474E+00 + -0.1560894234884267E+00 + -0.1558602042131707E+00 + -0.1556311211320571E+00 + -0.1554021744416258E+00 + -0.1551733643561794E+00 + -0.1549446910946433E+00 + -0.1547161549017424E+00 + -0.1544877560726738E+00 + -0.1542594949054882E+00 + -0.1540313716224482E+00 + -0.1538033863675618E+00 + -0.1535755392924143E+00 + -0.1533478306528600E+00 + -0.1531202607616979E+00 + -0.1528928299109478E+00 + -0.1526655382987030E+00 + -0.1524383860975467E+00 + -0.1522113735091422E+00 + -0.1519845007980393E+00 + -0.1517577682360957E+00 + -0.1515311760661519E+00 + -0.1513047244981273E+00 + -0.1510784137436637E+00 + -0.1508522440508491E+00 + -0.1506262156897308E+00 + -0.1504003289191343E+00 + -0.1501745839412775E+00 + -0.1499489809412502E+00 + -0.1497235201269774E+00 + -0.1494982017610067E+00 + -0.1492730261132458E+00 + -0.1490479934277707E+00 + -0.1488231039164450E+00 + -0.1485983577920541E+00 + -0.1483737553021413E+00 + -0.1481492967173033E+00 + -0.1479249822983683E+00 + -0.1477008122503201E+00 + -0.1474767867593065E+00 + -0.1472529060321457E+00 + -0.1470291703304627E+00 + -0.1468055799244364E+00 + -0.1465821350614828E+00 + -0.1463588359578014E+00 + -0.1461356828292208E+00 + -0.1459126759167440E+00 + -0.1456898154797407E+00 + -0.1454671017751310E+00 + -0.1452445350419384E+00 + -0.1450221155125034E+00 + -0.1447998434119561E+00 + -0.1445777189440699E+00 + -0.1443557423091638E+00 + -0.1441339137304163E+00 + -0.1439122334654226E+00 + -0.1436907017742775E+00 + -0.1434693189102553E+00 + -0.1432480851211843E+00 + -0.1430270006540503E+00 + -0.1428060657506539E+00 + -0.1425852806506818E+00 + -0.1423646455833703E+00 + -0.1421441607435803E+00 + -0.1419238263197638E+00 + -0.1417036425422429E+00 + -0.1414836097107712E+00 + -0.1412637281282542E+00 + -0.1410439980331837E+00 + -0.1408244196073656E+00 + -0.1406049930384523E+00 + -0.1403857185731753E+00 + -0.1401665964855499E+00 + -0.1399476270401163E+00 + -0.1397288104660798E+00 + -0.1395101469847237E+00 + -0.1392916368241500E+00 + -0.1390732802248760E+00 + -0.1388550774281708E+00 + -0.1386370286614136E+00 + -0.1384191341385573E+00 + -0.1382013940798057E+00 + -0.1379838087632570E+00 + -0.1377663784965501E+00 + -0.1375491035627976E+00 + -0.1373319841442318E+00 + -0.1371150203977737E+00 + -0.1368982125164589E+00 + -0.1366815607661780E+00 + -0.1364650654212311E+00 + -0.1362487267445960E+00 + -0.1360325449872204E+00 + -0.1358165203983424E+00 + -0.1356006532155329E+00 + -0.1353849436698414E+00 + -0.1351693919929907E+00 + -0.1349539984198139E+00 + -0.1347387631860800E+00 + -0.1345236865280299E+00 + -0.1343087686828634E+00 + -0.1340940098878319E+00 + -0.1338794103757816E+00 + -0.1336649703744062E+00 + -0.1334506901132536E+00 + -0.1332365698447667E+00 + -0.1330226098356000E+00 + -0.1328088103464175E+00 + -0.1325951716062407E+00 + -0.1323816938342295E+00 + -0.1321683772636503E+00 + -0.1319552221625100E+00 + -0.1317422288034012E+00 + -0.1315293974301061E+00 + -0.1313167282494512E+00 + -0.1311042214670089E+00 + -0.1308918773023390E+00 + -0.1306796959845571E+00 + -0.1304676777511017E+00 + -0.1302558228848632E+00 + -0.1300441316846501E+00 + -0.1298326044246585E+00 + -0.1296212413114653E+00 + -0.1294100425406405E+00 + -0.1291990083273106E+00 + -0.1289881389141405E+00 + -0.1287774345461446E+00 + -0.1285668954712867E+00 + -0.1283565219397628E+00 + -0.1281463142048483E+00 + -0.1279362725383875E+00 + -0.1277263972194697E+00 + -0.1275166885013606E+00 + -0.1273071465585744E+00 + -0.1270977715516816E+00 + -0.1268885636978106E+00 + -0.1266795233017745E+00 + -0.1264706506730876E+00 + -0.1262619460722978E+00 + -0.1260534097196225E+00 + -0.1258450418362505E+00 + -0.1256368426582845E+00 + -0.1254288124282760E+00 + -0.1252209513889384E+00 + -0.1250132597832626E+00 + -0.1248057378542528E+00 + -0.1245983858364848E+00 + -0.1243912039500822E+00 + -0.1241841924163627E+00 + -0.1239773515059796E+00 + -0.1237706815342590E+00 + -0.1235641828049659E+00 + -0.1233578555169586E+00 + -0.1231516998192856E+00 + -0.1229457158921858E+00 + -0.1227399040343632E+00 + -0.1225342645720577E+00 + -0.1223287977851554E+00 + -0.1221235038661374E+00 + -0.1219183829999621E+00 + -0.1217134354195435E+00 + -0.1215086614054834E+00 + -0.1213040612367540E+00 + -0.1210996351587925E+00 + -0.1208953833994804E+00 + -0.1206913061900135E+00 + -0.1204874037759067E+00 + -0.1202836764064308E+00 + -0.1200801243218768E+00 + -0.1198767477437770E+00 + -0.1196735468930706E+00 + -0.1194705220364940E+00 + -0.1192676734907956E+00 + -0.1190650015653769E+00 + -0.1188625064691595E+00 + -0.1186601883529522E+00 + -0.1184580473922448E+00 + -0.1182560838810338E+00 + -0.1180542981478190E+00 + -0.1178526904814341E+00 + -0.1176512610793430E+00 + -0.1174500101275657E+00 + -0.1172489378549867E+00 + -0.1170480445419122E+00 + -0.1168473304692768E+00 + -0.1166467958894872E+00 + -0.1164464410367980E+00 + -0.1162462661452437E+00 + -0.1160462714489292E+00 + -0.1158464571820630E+00 + -0.1156468235915209E+00 + -0.1154473709563182E+00 + -0.1152480995595871E+00 + -0.1150490096439971E+00 + -0.1148501013988311E+00 + -0.1146513750159494E+00 + -0.1144528307679571E+00 + -0.1142544689841172E+00 + -0.1140562899749094E+00 + -0.1138582939341964E+00 + -0.1136604810138652E+00 + -0.1134628514050890E+00 + -0.1132654054101073E+00 + -0.1130681433499696E+00 + -0.1128710655075651E+00 + -0.1126741721103894E+00 + -0.1124774633825461E+00 + -0.1122809395615660E+00 + -0.1120846008953504E+00 + -0.1118884476321137E+00 + -0.1116924800199398E+00 + -0.1114966983069053E+00 + -0.1113011027362151E+00 + -0.1111056935356156E+00 + -0.1109104709304105E+00 + -0.1107154351802830E+00 + -0.1105205865997446E+00 + -0.1103259255037525E+00 + -0.1101314521280502E+00 + -0.1099371666412522E+00 + -0.1097430692199352E+00 + -0.1095491601139476E+00 + -0.1093554396056245E+00 + -0.1091619079760246E+00 + -0.1089685655009975E+00 + -0.1087754124550036E+00 + -0.1085824490841077E+00 + -0.1083896755843773E+00 + -0.1081970921503285E+00 + -0.1080046990471793E+00 + -0.1078124966059821E+00 + -0.1076204851465660E+00 + -0.1074286648754778E+00 + -0.1072370359438460E+00 + -0.1070455985344375E+00 + -0.1068543529544101E+00 + -0.1066632995408240E+00 + -0.1064724385805817E+00 + -0.1062817702631796E+00 + -0.1060912947699092E+00 + -0.1059010123522905E+00 + -0.1057109233336638E+00 + -0.1055210280322209E+00 + -0.1053313266876812E+00 + -0.1051418194974004E+00 + -0.1049525066689073E+00 + -0.1047633884554160E+00 + -0.1045744651224962E+00 + -0.1043857369232565E+00 + -0.1041972040840099E+00 + -0.1040088668292945E+00 + -0.1038207254303305E+00 + -0.1036327802107667E+00 + -0.1034450314876810E+00 + -0.1032574794793046E+00 + -0.1030701243450162E+00 + -0.1028829662659994E+00 + -0.1026960055323384E+00 + -0.1025092424669285E+00 + -0.1023226773703108E+00 + -0.1021363104898676E+00 + -0.1019501420649383E+00 + -0.1017641723209152E+00 + -0.1015784014659572E+00 + -0.1013928297126596E+00 + -0.1012074573384321E+00 + -0.1010222846632319E+00 + -0.1008373119936332E+00 + -0.1006525395596861E+00 + -0.1004679675658672E+00 + -0.1002835962286256E+00 + -0.1000994257958166E+00 + -0.9991545652068373E-01 + -0.9973168866647322E-01 + -0.9954812250996859E-01 + -0.9936475832717383E-01 + -0.9918159636926816E-01 + -0.9899863686953951E-01 + -0.9881588006682009E-01 + -0.9863332623531132E-01 + -0.9845097566241517E-01 + -0.9826882861978540E-01 + -0.9808688533292747E-01 + -0.9790514601920448E-01 + -0.9772361090525504E-01 + -0.9754228023152811E-01 + -0.9736115424222685E-01 + -0.9718023322170193E-01 + -0.9699951748617597E-01 + -0.9681900734126025E-01 + -0.9663870301467689E-01 + -0.9645860470207403E-01 + -0.9627871262083067E-01 + -0.9609902705893470E-01 + -0.9591954831821973E-01 + -0.9574027666475224E-01 + -0.9556121230577366E-01 + -0.9538235544570826E-01 + -0.9520370633639221E-01 + -0.9502526527100537E-01 + -0.9484703253873217E-01 + -0.9466900838754812E-01 + -0.9449119304666619E-01 + -0.9431358675786864E-01 + -0.9413618980842550E-01 + -0.9395900249556506E-01 + -0.9378202508168080E-01 + -0.9360525776601460E-01 + -0.9342870074460837E-01 + -0.9325235428619038E-01 + -0.9307621872910039E-01 + -0.9290029440140884E-01 + -0.9272458151946442E-01 + -0.9254908024330996E-01 + -0.9237379076083359E-01 + -0.9219871337337155E-01 + -0.9202384841061237E-01 + -0.9184919617473691E-01 + -0.9167475691284430E-01 + -0.9150053086524526E-01 + -0.9132651826463867E-01 + -0.9115271933571478E-01 + -0.9097913430616677E-01 + -0.9080576343560031E-01 + -0.9063260700141131E-01 + -0.9045966528260696E-01 + -0.9028693856422677E-01 + -0.9011442713294080E-01 + -0.8994213125018401E-01 + -0.8977005112156357E-01 + -0.8959818694733990E-01 + -0.8942653899066471E-01 + -0.8925510758734545E-01 + -0.8908389306822382E-01 + -0.8891289566522554E-01 + -0.8874211554965237E-01 + -0.8857155290882515E-01 + -0.8840120801418523E-01 + -0.8823108116338069E-01 + -0.8806117264609902E-01 + -0.8789148273240512E-01 + -0.8772201168945109E-01 + -0.8755275978276472E-01 + -0.8738372727579030E-01 + -0.8721491442936685E-01 + -0.8704632147291505E-01 + -0.8687794861466959E-01 + -0.8670979607714690E-01 + -0.8654186416428212E-01 + -0.8637415320818288E-01 + -0.8620666350928905E-01 + -0.8603939528198287E-01 + -0.8587234872709850E-01 + -0.8570552408408171E-01 + -0.8553892164625347E-01 + -0.8537254170907939E-01 + -0.8520638454051031E-01 + -0.8504045038808998E-01 + -0.8487473949915652E-01 + -0.8470925212240426E-01 + -0.8454398850709833E-01 + -0.8437894891191171E-01 + -0.8421413362365522E-01 + -0.8404954293404360E-01 + -0.8388517710895018E-01 + -0.8372103637451566E-01 + -0.8355712095450867E-01 + -0.8339343108828434E-01 + -0.8322996702792949E-01 + -0.8306672903098372E-01 + -0.8290371738990217E-01 + -0.8274093241203897E-01 + -0.8257837439657813E-01 + -0.8241604361494849E-01 + -0.8225394033242777E-01 + -0.8209206478187610E-01 + -0.8193041714128178E-01 + -0.8176899758888519E-01 + -0.8160780640810426E-01 + -0.8144684397667406E-01 + -0.8128611065794644E-01 + -0.8112560667592044E-01 + -0.8096533218909761E-01 + -0.8080528738571758E-01 + -0.8064547256608305E-01 + -0.8048588805622574E-01 + -0.8032653413704416E-01 + -0.8016741100519553E-01 + -0.8000851884985600E-01 + -0.7984985789808059E-01 + -0.7969142841423096E-01 + -0.7953323065941071E-01 + -0.7937526485162303E-01 + -0.7921753118651069E-01 + -0.7906002987578580E-01 + -0.7890276119845405E-01 + -0.7874572545078290E-01 + -0.7858892289123769E-01 + -0.7843235370038211E-01 + -0.7827601805078539E-01 + -0.7811991615699780E-01 + -0.7796404827898118E-01 + -0.7780841467714607E-01 + -0.7765301559321841E-01 + -0.7749785125824859E-01 + -0.7734292190823978E-01 + -0.7718822780244519E-01 + -0.7703376920675542E-01 + -0.7687954635705853E-01 + -0.7672555942087764E-01 + -0.7657180855888114E-01 + -0.7641829401478196E-01 + -0.7626501613097724E-01 + -0.7611197524360243E-01 + -0.7595917155219928E-01 + -0.7580660517012055E-01 + -0.7565427623962999E-01 + -0.7550218505889699E-01 + -0.7535033197610757E-01 + -0.7519871729133948E-01 + -0.7504734118321461E-01 + -0.7489620381262563E-01 + -0.7474530538300711E-01 + -0.7459464615334738E-01 + -0.7444422638581669E-01 + -0.7429404633454164E-01 + -0.7414410624808410E-01 + -0.7399440636985847E-01 + -0.7384494691401291E-01 + -0.7369572808431231E-01 + -0.7354675010559580E-01 + -0.7339801326154648E-01 + -0.7324951784527769E-01 + -0.7310126410832720E-01 + -0.7295325224248710E-01 + -0.7280548243587606E-01 + -0.7265795489021354E-01 + -0.7251066981761623E-01 + -0.7236362744162873E-01 + -0.7221682805729924E-01 + -0.7207027198801429E-01 + -0.7192395952421524E-01 + -0.7177789085363378E-01 + -0.7163206614470054E-01 + -0.7148648560059908E-01 + -0.7134114947942390E-01 + -0.7119605804372196E-01 + -0.7105121154816965E-01 + -0.7090661024084866E-01 + -0.7076225436671858E-01 + -0.7061814414932810E-01 + -0.7047427980287456E-01 + -0.7033066155049996E-01 + -0.7018728964625142E-01 + -0.7004416435070727E-01 + -0.6990128590834807E-01 + -0.6975865453557586E-01 + -0.6961627044697789E-01 + -0.6947413387627343E-01 + -0.6933224507482972E-01 + -0.6919060429465183E-01 + -0.6904921178708810E-01 + -0.6890806780320568E-01 + -0.6876717258830584E-01 + -0.6862652636533621E-01 + -0.6848612935199582E-01 + -0.6834598177589207E-01 + -0.6820608388361188E-01 + -0.6806643592424301E-01 + -0.6792703815378958E-01 + -0.6778789083525904E-01 + -0.6764899422615095E-01 + -0.6751034853033257E-01 + -0.6737195392300210E-01 + -0.6723381059937539E-01 + -0.6709591884147679E-01 + -0.6695827895443385E-01 + -0.6682089120880365E-01 + -0.6668375580172315E-01 + -0.6654687292310594E-01 + -0.6641024282221673E-01 + -0.6627386581435060E-01 + -0.6613774220715576E-01 + -0.6600187219288398E-01 + -0.6586625589574403E-01 + -0.6573089347126222E-01 + -0.6559578522862863E-01 + -0.6546093152270450E-01 + -0.6532633265271980E-01 + -0.6519198878723868E-01 + -0.6505790007827056E-01 + -0.6492406675078009E-01 + -0.6479048911890509E-01 + -0.6465716749461299E-01 + -0.6452410209973291E-01 + -0.6439129309756536E-01 + -0.6425874066833491E-01 + -0.6412644508754082E-01 + -0.6399440666226477E-01 + -0.6386262567342788E-01 + -0.6373110233376539E-01 + -0.6359983684576292E-01 + -0.6346882943909339E-01 + -0.6333808037994213E-01 + -0.6320758993480292E-01 + -0.6307735833903204E-01 + -0.6294738580574975E-01 + -0.6281767255344955E-01 + -0.6268821883519258E-01 + -0.6255902491679526E-01 + -0.6243009105271189E-01 + -0.6230141746443927E-01 + -0.6217300436792135E-01 + -0.6204485199562775E-01 + -0.6191696060442611E-01 + -0.6178933045264595E-01 + -0.6166196178992620E-01 + -0.6153485485909092E-01 + -0.6140800990501163E-01 + -0.6128142718704445E-01 + -0.6115510697049333E-01 + -0.6102904950556416E-01 + -0.6090325499386759E-01 + -0.6077772362764459E-01 + -0.6065245562084770E-01 + -0.6052745122272588E-01 + -0.6040271068706705E-01 + -0.6027823428989461E-01 + -0.6015402232644224E-01 + -0.6003007508189383E-01 + -0.5990639276126320E-01 + -0.5978297553337808E-01 + -0.5965982359474049E-01 + -0.5953693724109947E-01 + -0.5941431678984323E-01 + -0.5929196250776246E-01 + -0.5916987457087004E-01 + -0.5904805314902718E-01 + -0.5892649848065011E-01 + -0.5880521086918207E-01 + -0.5868419061425581E-01 + -0.5856343796140049E-01 + -0.5844295312917223E-01 + -0.5832273633600947E-01 + -0.5820278780053505E-01 + -0.5808310774166195E-01 + -0.5796369640544272E-01 + -0.5784455409155417E-01 + -0.5772568110346542E-01 + -0.5760707768058242E-01 + -0.5748874399556643E-01 + -0.5737068022696227E-01 + -0.5725288663826401E-01 + -0.5713536353979083E-01 + -0.5701811122599442E-01 + -0.5690112991863834E-01 + -0.5678441981954708E-01 + -0.5666798115466191E-01 + -0.5655181420257911E-01 + -0.5643591924712760E-01 + -0.5632029651891617E-01 + -0.5620494618764052E-01 + -0.5608986842958165E-01 + -0.5597506352712074E-01 + -0.5586053182708797E-01 + -0.5574627365314457E-01 + -0.5563228920979878E-01 + -0.5551857866501090E-01 + -0.5540514221682503E-01 + -0.5529198013602733E-01 + -0.5517909270353016E-01 + -0.5506648017432340E-01 + -0.5495414277078150E-01 + -0.5484208071444825E-01 + -0.5473029424152315E-01 + -0.5461878359802075E-01 + -0.5450754903796732E-01 + -0.5439659085818267E-01 + -0.5428590937011268E-01 + -0.5417550484175316E-01 + -0.5406537742445376E-01 + -0.5395552725224908E-01 + -0.5384595454985700E-01 + -0.5373665966734009E-01 + -0.5362764295637778E-01 + -0.5351890466152321E-01 + -0.5341044494857728E-01 + -0.5330226399504818E-01 + -0.5319436206148497E-01 + -0.5308673943999223E-01 + -0.5297939640001463E-01 + -0.5287233314322841E-01 + -0.5276554985996079E-01 + -0.5265904680736399E-01 + -0.5255282434418874E-01 + -0.5244688282836401E-01 + -0.5234122246567892E-01 + -0.5223584333895889E-01 + -0.5213074555842400E-01 + -0.5202592944705412E-01 + -0.5192139541739069E-01 + -0.5181714382291959E-01 + -0.5171317482040142E-01 + -0.5160948852697011E-01 + -0.5150608513438636E-01 + -0.5140296495937245E-01 + -0.5130012832728397E-01 + -0.5119757550039038E-01 + -0.5109530668494385E-01 + -0.5099332209110285E-01 + -0.5089162197393308E-01 + -0.5079020660943768E-01 + -0.5068907626388274E-01 + -0.5058823116704529E-01 + -0.5048767154047459E-01 + -0.5038739761910501E-01 + -0.5028740966253682E-01 + -0.5018770793307691E-01 + -0.5008829269272173E-01 + -0.4998916420316616E-01 + -0.4989032272350614E-01 + -0.4979176848986626E-01 + -0.4969350172658666E-01 + -0.4959552266510913E-01 + -0.4949783156625061E-01 + -0.4940042869834596E-01 + -0.4930331432040152E-01 + -0.4920648867234151E-01 + -0.4910995199132690E-01 + -0.4901370450178048E-01 + -0.4891774641447232E-01 + -0.4882207794816037E-01 + -0.4872669940619160E-01 + -0.4863161113993159E-01 + -0.4853681346992135E-01 + -0.4844230657293494E-01 + -0.4834809058494233E-01 + -0.4825416569418183E-01 + -0.4816053220660816E-01 + -0.4806719044298689E-01 + -0.4797414068100017E-01 + -0.4788138314760333E-01 + -0.4778891806644302E-01 + -0.4769674565624265E-01 + -0.4760486613266591E-01 + -0.4751327972857394E-01 + -0.4742198676448767E-01 + -0.4733098758871029E-01 + -0.4724028249839102E-01 + -0.4714987166293957E-01 + -0.4705975523353327E-01 + -0.4696993341282175E-01 + -0.4688040647002827E-01 + -0.4679117468007648E-01 + -0.4670223833335110E-01 + -0.4661359773089822E-01 + -0.4652525315962119E-01 + -0.4643720482443074E-01 + -0.4634945290136545E-01 + -0.4626199760205353E-01 + -0.4617483923656980E-01 + -0.4608797813068644E-01 + -0.4600141454980036E-01 + -0.4591514867340123E-01 + -0.4582918067973516E-01 + -0.4574351082416840E-01 + -0.4565813942042071E-01 + -0.4557306677460674E-01 + -0.4548829313485740E-01 + -0.4540381872663414E-01 + -0.4531964377573877E-01 + -0.4523576850908554E-01 + -0.4515219315433948E-01 + -0.4506891796998829E-01 + -0.4498594326272746E-01 + -0.4490326933982790E-01 + -0.4482089644616369E-01 + -0.4473882477474194E-01 + -0.4465705452330529E-01 + -0.4457558593434507E-01 + -0.4449441926979235E-01 + -0.4441355480232254E-01 + -0.4433299284086958E-01 + -0.4425273370141710E-01 + -0.4417277763802521E-01 + -0.4409312479794534E-01 + -0.4401377532379785E-01 + -0.4393472947483794E-01 + -0.4385598761686198E-01 + -0.4377755010338992E-01 + -0.4369941715774498E-01 + -0.4362158894083221E-01 + -0.4354406564315423E-01 + -0.4346684756922453E-01 + -0.4338993505030585E-01 + -0.4331332836999552E-01 + -0.4323702772119048E-01 + -0.4316103328872304E-01 + -0.4308534530518668E-01 + -0.4300996405109326E-01 + -0.4293488980691885E-01 + -0.4286012283336978E-01 + -0.4278566338071394E-01 + -0.4271151170403275E-01 + -0.4263766807900613E-01 + -0.4256413278665856E-01 + -0.4249090608118520E-01 + -0.4241798816038272E-01 + -0.4234537921685229E-01 + -0.4227307949531300E-01 + -0.4220108929791443E-01 + -0.4212940892751039E-01 + -0.4205803866326205E-01 + -0.4198697877052699E-01 + -0.4191622950576302E-01 + -0.4184579108399262E-01 + -0.4177566370812585E-01 + -0.4170584760096089E-01 + -0.4163634303142257E-01 + -0.4156715027490000E-01 + -0.4149826960263927E-01 + -0.4142970128085615E-01 + -0.4136144557386085E-01 + -0.4129350272673285E-01 + -0.4122587297220257E-01 + -0.4115855654723319E-01 + -0.4109155371193047E-01 + -0.4102486473403435E-01 + -0.4095848988197487E-01 + -0.4089242942583560E-01 + -0.4082668363557419E-01 + -0.4076125276286851E-01 + -0.4069613703505056E-01 + -0.4063133668066949E-01 + -0.4056685196613399E-01 + -0.4050268318466716E-01 + -0.4043883061706627E-01 + -0.4037529446740255E-01 + -0.4031207491186980E-01 + -0.4024917216909969E-01 + -0.4018658657885474E-01 + -0.4012431850107083E-01 + -0.4006236822455472E-01 + -0.4000073593397229E-01 + -0.3993942180990153E-01 + -0.3987842609628649E-01 + -0.3981774908639415E-01 + -0.3975739106818738E-01 + -0.3969735228579662E-01 + -0.3963763296568845E-01 + -0.3957823334390193E-01 + -0.3951915368687501E-01 + -0.3946039426707879E-01 + -0.3940195535495052E-01 + -0.3934383721760870E-01 + -0.3928604012127016E-01 + -0.3922856432055118E-01 + -0.3917141006015598E-01 + -0.3911457758338734E-01 + -0.3905806712524218E-01 + -0.3900187891703249E-01 + -0.3894601320436690E-01 + -0.3889047028321210E-01 + -0.3883525046043470E-01 + -0.3878035401938632E-01 + -0.3872578120161618E-01 + -0.3867153224406757E-01 + -0.3861760737637042E-01 + -0.3856400682128627E-01 + -0.3851073081021842E-01 + -0.3845777964801074E-01 + -0.3840515367584034E-01 + -0.3835285317761144E-01 + -0.3830087821098761E-01 + -0.3824922877578846E-01 + -0.3819790459222541E-01 + -0.3814690483319456E-01 + -0.3809622860983516E-01 + -0.3804587508801994E-01 + -0.3799584349011865E-01 + -0.3794613303877981E-01 + -0.3789674293946698E-01 + -0.3784767238801223E-01 + -0.3779892058183612E-01 + -0.3775048672765391E-01 + -0.3770237003427650E-01 + -0.3765456970393578E-01 + -0.3760708492529590E-01 + -0.3755991488511687E-01 + -0.3751305878039131E-01 + -0.3746651581978639E-01 + -0.3742028521092071E-01 + -0.3737436614877038E-01 + -0.3732875782048289E-01 + -0.3728345941444802E-01 + -0.3723847012783513E-01 + -0.3719378916007655E-01 + -0.3714941570633056E-01 + -0.3710534895232097E-01 + -0.3706158808212933E-01 + -0.3701813228748376E-01 + -0.3697498076977607E-01 + -0.3693213272955672E-01 + -0.3688958735579715E-01 + -0.3684734382961050E-01 + -0.3680540133307997E-01 + -0.3676375905683504E-01 + -0.3672241619401300E-01 + -0.3668137193372545E-01 + -0.3664062545534394E-01 + -0.3660017593634906E-01 + -0.3656002256190259E-01 + -0.3652016452789427E-01 + -0.3648060102950606E-01 + -0.3644133124818143E-01 + -0.3640235435520315E-01 + -0.3636366952318346E-01 + -0.3632527593706731E-01 + -0.3628717278607417E-01 + -0.3624935925631823E-01 + -0.3621183452585370E-01 + -0.3617459777081424E-01 + -0.3613764816812084E-01 + -0.3610098489617132E-01 + -0.3606460713285880E-01 + -0.3602851405390212E-01 + -0.3599270483316496E-01 + -0.3595717864469694E-01 + -0.3592193466738729E-01 + -0.3588697208180669E-01 + -0.3585229006619901E-01 + -0.3581788779246581E-01 + -0.3578376443077692E-01 + -0.3574991915222095E-01 + -0.3571635112978816E-01 + -0.3568305953590311E-01 + -0.3565004353825236E-01 + -0.3561730230028581E-01 + -0.3558483498618354E-01 + -0.3555264077046658E-01 + -0.3552071883211270E-01 + -0.3548906834644014E-01 + -0.3545768847684147E-01 + -0.3542657838357147E-01 + -0.3539573722843073E-01 + -0.3536516417652186E-01 + -0.3533485839284196E-01 + -0.3530481904299903E-01 + -0.3527504529317191E-01 + -0.3524553630865297E-01 + -0.3521629125106401E-01 + -0.3518730927987679E-01 + -0.3515858955506943E-01 + -0.3513013124048119E-01 + -0.3510193350048090E-01 + -0.3507399549566667E-01 + -0.3504631637961302E-01 + -0.3501889530477645E-01 + -0.3499173142903470E-01 + -0.3496482391605383E-01 + -0.3493817192875668E-01 + -0.3491177462484379E-01 + -0.3488563115883231E-01 + -0.3485974068403588E-01 + -0.3483410235048121E-01 + -0.3480871530687074E-01 + -0.3478357870499766E-01 + -0.3475869170425241E-01 + -0.3473405346435432E-01 + -0.3470966313811546E-01 + -0.3468551987039023E-01 + -0.3466162280562152E-01 + -0.3463797109406773E-01 + -0.3461456388936746E-01 + -0.3459140034368908E-01 + -0.3456847960380476E-01 + -0.3454580081440228E-01 + -0.3452336312142912E-01 + -0.3450116567478545E-01 + -0.3447920762437727E-01 + -0.3445748811545916E-01 + -0.3443600628748755E-01 + -0.3441476127943511E-01 + -0.3439375223513422E-01 + -0.3437297830154477E-01 + -0.3435243862437194E-01 + -0.3433213234450903E-01 + -0.3431205860079723E-01 + -0.3429221653271334E-01 + -0.3427260528247466E-01 + -0.3425322399226500E-01 + -0.3423407180262949E-01 + -0.3421514785203891E-01 + -0.3419645127807063E-01 + -0.3417798121475657E-01 + -0.3415973679332815E-01 + -0.3414171714576111E-01 + -0.3412392141208697E-01 + -0.3410634873510734E-01 + -0.3408899825394020E-01 + -0.3407186909765134E-01 + -0.3405496039300305E-01 + -0.3403827127012726E-01 + -0.3402180086469486E-01 + -0.3400554831214741E-01 + -0.3398951274431172E-01 + -0.3397369328993708E-01 + -0.3395808907724736E-01 + -0.3394269923475987E-01 + -0.3392752289079041E-01 + -0.3391255917315120E-01 + -0.3389780720931252E-01 + -0.3388326612620796E-01 + -0.3386893504924016E-01 + -0.3385481310160398E-01 + -0.3384089940603863E-01 + -0.3382719309009316E-01 + -0.3381369328561351E-01 + -0.3380039912266004E-01 + -0.3378730971973383E-01 + -0.3377442418954602E-01 + -0.3376174164683629E-01 + -0.3374926121568974E-01 + -0.3373698202192696E-01 + -0.3372490318813592E-01 + -0.3371302383132409E-01 + -0.3370134306751595E-01 + -0.3368986001546028E-01 + -0.3367857379660947E-01 + -0.3366748353143996E-01 + -0.3365658833500695E-01 + -0.3364588731925040E-01 + -0.3363537959590651E-01 + -0.3362506427778796E-01 + -0.3361494047758305E-01 + -0.3360500731018845E-01 + -0.3359526389570782E-01 + -0.3358570935410427E-01 + -0.3357634279690334E-01 + -0.3356716332647348E-01 + -0.3355817004501918E-01 + -0.3354936206269978E-01 + -0.3354073849403203E-01 + -0.3353229845209414E-01 + -0.3352404104506382E-01 + -0.3351596537928362E-01 + -0.3350807056064036E-01 + -0.3350035569471910E-01 + -0.3349281988663291E-01 + -0.3348546224300963E-01 + -0.3347828187240771E-01 + -0.3347127788253906E-01 + -0.3346444937571672E-01 + -0.3345779545060674E-01 + -0.3345131520602525E-01 + -0.3344500774424856E-01 + -0.3343887216828516E-01 + -0.3343290757934889E-01 + -0.3342711307497022E-01 + -0.3342148775175238E-01 + -0.3341603071113988E-01 + -0.3341074106113968E-01 + -0.3340561790859468E-01 + -0.3340066034566572E-01 + -0.3339586745405068E-01 + -0.3339123831819716E-01 + -0.3338677204250884E-01 + -0.3338246773820770E-01 + -0.3337832450836338E-01 + -0.3337434143403992E-01 + -0.3337051759221187E-01 + -0.3336685207160844E-01 + -0.3336334397825487E-01 + -0.3335999241804924E-01 + -0.3335679648192726E-01 + -0.3335375524916140E-01 + -0.3335086779998906E-01 + -0.3334813322595781E-01 + -0.3334555062278998E-01 + -0.3334311908286753E-01 + -0.3334083768927667E-01 + -0.3333870552288821E-01 + -0.3333672166825292E-01 + -0.3333488521613411E-01 + -0.3333319525700265E-01 + -0.3333165087506898E-01 + -0.3333025114915323E-01 + -0.3332899515817697E-01 + -0.3332788198652620E-01 + -0.3332691072068519E-01 + -0.3332608044571303E-01 + -0.3332539024307766E-01 + -0.3332483919300505E-01 + -0.3332442637421966E-01 + -0.3332415086324229E-01 + -0.3332401173595431E-01 + -0.3332400806971011E-01 + -0.3332413894319481E-01 + -0.3332440343440954E-01 + -0.3332480061928366E-01 + -0.3332532957243992E-01 + -0.3332598936887449E-01 + -0.3332677908670990E-01 + -0.3332769780437289E-01 + -0.3332874459705985E-01 + -0.3332991853424233E-01 + -0.3333121868433306E-01 + -0.3333264411773079E-01 + -0.3333419390687672E-01 + -0.3333586712363787E-01 + -0.3333766283820841E-01 + -0.3333958011961538E-01 + -0.3334161803659341E-01 + -0.3334377565854679E-01 + -0.3334605205463348E-01 + -0.3334844629178673E-01 + -0.3335095743283081E-01 + -0.3335358453970597E-01 + -0.3335632667799740E-01 + -0.3335918291745281E-01 + -0.3336215232699280E-01 + -0.3336523396967408E-01 + -0.3336842690483045E-01 + -0.3337173019170199E-01 + -0.3337514289147880E-01 + -0.3337866406554179E-01 + -0.3338229277608689E-01 + -0.3338602808802463E-01 + -0.3338986906600926E-01 + -0.3339381476854624E-01 + -0.3339786424669073E-01 + -0.3340201655111017E-01 + -0.3340627073918903E-01 + -0.3341062587251683E-01 + -0.3341508101173051E-01 + -0.3341963521439796E-01 + -0.3342428753667419E-01 + -0.3342903703191704E-01 + -0.3343388274707754E-01 + -0.3343882372774431E-01 + -0.3344385902578786E-01 + -0.3344898770180072E-01 + -0.3345420881593108E-01 + -0.3345952142046895E-01 + -0.3346492456187770E-01 + -0.3347041728609073E-01 + -0.3347599863943950E-01 + -0.3348166766804333E-01 + -0.3348742341907054E-01 + -0.3349326494384242E-01 + -0.3349919129391177E-01 + -0.3350520151742791E-01 + -0.3351129465774550E-01 + -0.3351746975728950E-01 + -0.3352372585774811E-01 + -0.3353006200010618E-01 + -0.3353647722559556E-01 + -0.3354297058042238E-01 + -0.3354954111250548E-01 + -0.3355618786685593E-01 + -0.3356290988032718E-01 + -0.3356970618773707E-01 + -0.3357657582840543E-01 + -0.3358351784941323E-01 + -0.3359053129740705E-01 + -0.3359761520687514E-01 + -0.3360476860163910E-01 + -0.3361199050714551E-01 + -0.3361927996742559E-01 + -0.3362663603467502E-01 + -0.3363405775494180E-01 + -0.3364154415344061E-01 + -0.3364909425032513E-01 + -0.3365670707262656E-01 + -0.3366438166029007E-01 + -0.3367211705380147E-01 + -0.3367991228651259E-01 + -0.3368776638492342E-01 + -0.3369567837529987E-01 + -0.3370364728836631E-01 + -0.3371167215680910E-01 + -0.3371975201145895E-01 + -0.3372788587734839E-01 + -0.3373607277765114E-01 + -0.3374431173856621E-01 + -0.3375260179290700E-01 + -0.3376094197347584E-01 + -0.3376933130509994E-01 + -0.3377776880425279E-01 + -0.3378625348753961E-01 + -0.3379478438131104E-01 + -0.3380336051708186E-01 + -0.3381198092311530E-01 + -0.3382064461484373E-01 + -0.3382935060372971E-01 + -0.3383809790692209E-01 + -0.3384688555481355E-01 + -0.3385571257873055E-01 + -0.3386457799906253E-01 + -0.3387348082365857E-01 + -0.3388242005986533E-01 + -0.3389139472249702E-01 + -0.3390040383072043E-01 + -0.3390944640357078E-01 + -0.3391852146135371E-01 + -0.3392762802436556E-01 + -0.3393676510881167E-01 + -0.3394593172173220E-01 + -0.3395512686848831E-01 + -0.3396434956069539E-01 + -0.3397359881805895E-01 + -0.3398287365949755E-01 + -0.3399217309378324E-01 + -0.3400149612265674E-01 + -0.3401084174914443E-01 + -0.3402020898672747E-01 + -0.3402959685211920E-01 + -0.3403900435768365E-01 + -0.3404843050497560E-01 + -0.3405787429335706E-01 + -0.3406733472616129E-01 + -0.3407681081248876E-01 + -0.3408630156106863E-01 + -0.3409580597624156E-01 + -0.3410532305894392E-01 + -0.3411485180998030E-01 + -0.3412439123275110E-01 + -0.3413394033129807E-01 + -0.3414349810886347E-01 + -0.3415306356742880E-01 + -0.3416263570826874E-01 + -0.3417221353181488E-01 + -0.3418179603751174E-01 + -0.3419138222394822E-01 + -0.3420097108511358E-01 + -0.3421056161113949E-01 + -0.3422015279329252E-01 + -0.3422974363483514E-01 + -0.3423933314379682E-01 + -0.3424892032270390E-01 + -0.3425850415695806E-01 + -0.3426808362802961E-01 + -0.3427765772453755E-01 + -0.3428722544758255E-01 + -0.3429678579849694E-01 + -0.3430633776933665E-01 + -0.3431588034378581E-01 + -0.3432541250563515E-01 + -0.3433493324559112E-01 + -0.3434444155730554E-01 + -0.3435393643253196E-01 + -0.3436341685744221E-01 + -0.3437288181648854E-01 + -0.3438233029565190E-01 + -0.3439176128425822E-01 + -0.3440117377134247E-01 + -0.3441056674210429E-01 + -0.3441993917795899E-01 + -0.3442929006023112E-01 + -0.3443861837512113E-01 + -0.3444792311108453E-01 + -0.3445720325324246E-01 + -0.3446645777459701E-01 + -0.3447568564463274E-01 + -0.3448488583993883E-01 + -0.3449405735233055E-01 + -0.3450319917454089E-01 + -0.3451231028656105E-01 + -0.3452138965465348E-01 + -0.3453043624516994E-01 + -0.3453944903703524E-01 + -0.3454842701612662E-01 + -0.3455736916563063E-01 + -0.3456627445796239E-01 + -0.3457514186202521E-01 + -0.3458397034735958E-01 + -0.3459275888569172E-01 + -0.3460150644868467E-01 + -0.3461021201160347E-01 + -0.3461887455409867E-01 + -0.3462749305454922E-01 + -0.3463606647961407E-01 + -0.3464459378834757E-01 + -0.3465307394179545E-01 + -0.3466150591422446E-01 + -0.3466988868374470E-01 + -0.3467822122337199E-01 + -0.3468650249415506E-01 + -0.3469473145495674E-01 + -0.3470290707021145E-01 + -0.3471102831180162E-01 + -0.3471909415077535E-01 + -0.3472710354728696E-01 + -0.3473505545375274E-01 + -0.3474294882457301E-01 + -0.3475078262912612E-01 + -0.3475855584175766E-01 + -0.3476626743194684E-01 + -0.3477391635658358E-01 + -0.3478150156992432E-01 + -0.3478902202684178E-01 + -0.3479647668334463E-01 + -0.3480386449522337E-01 + -0.3481118442102512E-01 + -0.3481843542126530E-01 + -0.3482561645551606E-01 + -0.3483272647998652E-01 + -0.3483976444920857E-01 + -0.3484672931701904E-01 + -0.3485362003631635E-01 + -0.3486043555939125E-01 + -0.3486717484035002E-01 + -0.3487383683649955E-01 + -0.3488042050448467E-01 + -0.3488692479315556E-01 + -0.3489334864473062E-01 + -0.3489969100188313E-01 + -0.3490595081549420E-01 + -0.3491212703971645E-01 + -0.3491821862690955E-01 + -0.3492422452459232E-01 + -0.3493014367878939E-01 + -0.3493597503498443E-01 + -0.3494171753814548E-01 + -0.3494737013282208E-01 + -0.3495293176599396E-01 + -0.3495840138683557E-01 + -0.3496377794309354E-01 + -0.3496906037419313E-01 + -0.3497424761523301E-01 + -0.3497933860221499E-01 + -0.3498433227634965E-01 + -0.3498922757966529E-01 + -0.3499402345401216E-01 + -0.3499871884142634E-01 + -0.3500331268341750E-01 + -0.3500780392000795E-01 + -0.3501219148972130E-01 + -0.3501647433011094E-01 + -0.3502065137492560E-01 + -0.3502472155561198E-01 + -0.3502868380480911E-01 + -0.3503253706222175E-01 + -0.3503628026899635E-01 + -0.3503991236068813E-01 + -0.3504343226164317E-01 + -0.3504683889461862E-01 + -0.3505013119149283E-01 + -0.3505330809435078E-01 + -0.3505636854404237E-01 + -0.3505931146818778E-01 + -0.3506213578637329E-01 + -0.3506484041991183E-01 + -0.3506742430099468E-01 + -0.3506988636463871E-01 + -0.3507222554194983E-01 + -0.3507444075563344E-01 + -0.3507653092680395E-01 + -0.3507849497959217E-01 + -0.3508033184194162E-01 + -0.3508204044103271E-01 + -0.3508361969812651E-01 + -0.3508506853043958E-01 + -0.3508638585667701E-01 + -0.3508757060626766E-01 + -0.3508862171179819E-01 + -0.3508953809931930E-01 + -0.3509031867881393E-01 + -0.3509096235739322E-01 + -0.3509146804957397E-01 + -0.3509183468001551E-01 + -0.3509206117325103E-01 + -0.3509214644913816E-01 + -0.3509208942403142E-01 + -0.3509188901344313E-01 + -0.3509154413110108E-01 + -0.3509105368971306E-01 + -0.3509041660209722E-01 + -0.3508963178247543E-01 + -0.3508869814486053E-01 + -0.3508761460330020E-01 + -0.3508638007216757E-01 + -0.3508499346500818E-01 + -0.3508345368976911E-01 + -0.3508175964987758E-01 + -0.3507991024926824E-01 + -0.3507790439921572E-01 + -0.3507574101364733E-01 + -0.3507341900500227E-01 + -0.3507093728218472E-01 + -0.3506829475290016E-01 + -0.3506549032202869E-01 + -0.3506252289021727E-01 + -0.3505939135736930E-01 + -0.3505609462584001E-01 + -0.3505263160002117E-01 + -0.3504900118435572E-01 + -0.3504520228673560E-01 + -0.3504123381629526E-01 + -0.3503709467794547E-01 + -0.3503278376298257E-01 + -0.3502829995930962E-01 + -0.3502364216248282E-01 + -0.3501880928222792E-01 + -0.3501380022877478E-01 + -0.3500861390219157E-01 + -0.3500324919288445E-01 + -0.3499770499075789E-01 + -0.3499198018877966E-01 + -0.3498607368115615E-01 + -0.3497998436283401E-01 + -0.3497371113335346E-01 + -0.3496725289293201E-01 + -0.3496060853711805E-01 + -0.3495377695279056E-01 + -0.3494675702547681E-01 + -0.3493954764449203E-01 + -0.3493214770311881E-01 + -0.3492455609426192E-01 + -0.3491677171010412E-01 + -0.3490879344217257E-01 + -0.3490062018016633E-01 + -0.3489225080767132E-01 + -0.3488368420618074E-01 + -0.3487491925941201E-01 + -0.3486595485662474E-01 + -0.3485678988720886E-01 + -0.3484742323691943E-01 + -0.3483785378743691E-01 + -0.3482808041998933E-01 + -0.3481810201860705E-01 + -0.3480791746879455E-01 + -0.3479752565492965E-01 + -0.3478692545795190E-01 + -0.3477611575734447E-01 + -0.3476509543191219E-01 + -0.3475386335963756E-01 + -0.3474241841795905E-01 + -0.3473075948622157E-01 + -0.3471888544631330E-01 + -0.3470679517922672E-01 + -0.3469448755904150E-01 + -0.3468196145502783E-01 + -0.3466921573758577E-01 + -0.3465624928635213E-01 + -0.3464306098373380E-01 + -0.3462964970555268E-01 + -0.3461601431094707E-01 + -0.3460215365634304E-01 + -0.3458806662170360E-01 + -0.3457375211972669E-01 + -0.3455920905787559E-01 + -0.3454443624374910E-01 + -0.3452943241140358E-01 + -0.3451419644091394E-01 + -0.3449872812238317E-01 + -0.3448302759119587E-01 + -0.3446709504933410E-01 + -0.3445093089456134E-01 + -0.3443453556060621E-01 + -0.3441790945383600E-01 + -0.3440105293888731E-01 + -0.3438396637781914E-01 + -0.3436665014393898E-01 + -0.3434910461969003E-01 + -0.3433133018714537E-01 + -0.3431332722254642E-01 + -0.3429509609983372E-01 + -0.3427663719428475E-01 + -0.3425795088502984E-01 + -0.3423903755220068E-01 + -0.3421989757613335E-01 + -0.3420053133732945E-01 + -0.3418093921641335E-01 + -0.3416112159184794E-01 + -0.3414107884020703E-01 + -0.3412081133884031E-01 + -0.3410031946991865E-01 + -0.3407960361799496E-01 + -0.3405866416565449E-01 + -0.3403750148749659E-01 + -0.3401611595654068E-01 + -0.3399450795204961E-01 + -0.3397267786458598E-01 + -0.3395062608588609E-01 + -0.3392835300176806E-01 + -0.3390585899228698E-01 + -0.3388314443727250E-01 + -0.3386020971477796E-01 + -0.3383705520206917E-01 + -0.3381368127894468E-01 + -0.3379008833482017E-01 + -0.3376627676173628E-01 + -0.3374224694688776E-01 + -0.3371799926732924E-01 + -0.3369353409941214E-01 + -0.3366885182768834E-01 + -0.3364395284547239E-01 + -0.3361883754579706E-01 + -0.3359350631252371E-01 + -0.3356795952442738E-01 + -0.3354219756193204E-01 + -0.3351622081235314E-01 + -0.3349002966515883E-01 + -0.3346362451006448E-01 + -0.3343700573701324E-01 + -0.3341017373606859E-01 + -0.3338312889325920E-01 + -0.3335587158982150E-01 + -0.3332840220774628E-01 + -0.3330072113803133E-01 + -0.3327282877739731E-01 + -0.3324472552103984E-01 + -0.3321641175488745E-01 + -0.3318788786210785E-01 + -0.3315915422779929E-01 + -0.3313021124149058E-01 + -0.3310105929361491E-01 + -0.3307169877508196E-01 + -0.3304213007734135E-01 + -0.3301235359227611E-01 + -0.3298236971398793E-01 + -0.3295217883818514E-01 + -0.3292178135919985E-01 + -0.3289117766216845E-01 + -0.3286036812915593E-01 + -0.3282935314676690E-01 + -0.3279813311370876E-01 + -0.3276670843089915E-01 + -0.3273507949562307E-01 + -0.3270324669989114E-01 + -0.3267121043545540E-01 + -0.3263897109292929E-01 + -0.3260652906212821E-01 + -0.3257388473393007E-01 + -0.3254103850474293E-01 + -0.3250799077329709E-01 + -0.3247474193731430E-01 + -0.3244129239086410E-01 + -0.3240764252754823E-01 + -0.3237379274251377E-01 + -0.3233974343317813E-01 + -0.3230549499714476E-01 + -0.3227104782808261E-01 + -0.3223640231643495E-01 + -0.3220155885427370E-01 + -0.3216651784443458E-01 + -0.3213127969456677E-01 + -0.3209584480834526E-01 + -0.3206021357518035E-01 + -0.3202438638173741E-01 + -0.3198836362270048E-01 + -0.3195214570638345E-01 + -0.3191573304217892E-01 + -0.3187912602978132E-01 + -0.3184232506005486E-01 + -0.3180533052445334E-01 + -0.3176814282001272E-01 + -0.3173076234657927E-01 + -0.3169318950601074E-01 + -0.3165542470702003E-01 + -0.3161746836008155E-01 + -0.3157932086827141E-01 + -0.3154098262037270E-01 + -0.3150245400431557E-01 + -0.3146373542030487E-01 + -0.3142482728085158E-01 + -0.3138572999818439E-01 + -0.3134644397513999E-01 + -0.3130696960970735E-01 + -0.3126730730040111E-01 + -0.3122745744732629E-01 + -0.3118742045121242E-01 + -0.3114719671539117E-01 + -0.3110678664836819E-01 + -0.3106619065937613E-01 + -0.3102540915368099E-01 + -0.3098444253215344E-01 + -0.3094329119596844E-01 + -0.3090195554946851E-01 + -0.3086043599895243E-01 + -0.3081873295125067E-01 + -0.3077684681463582E-01 + -0.3073477799797635E-01 + -0.3069252690710316E-01 + -0.3065009394045691E-01 + -0.3060747949593869E-01 + -0.3056468398124986E-01 + -0.3052170781589511E-01 + -0.3047855141896582E-01 + -0.3043521519397951E-01 + -0.3039169953453604E-01 + -0.3034800483773643E-01 + -0.3030413151890298E-01 + -0.3026007999949433E-01 + -0.3021585069604861E-01 + -0.3017144401203520E-01 + -0.3012686034913433E-01 + -0.3008210011196611E-01 + -0.3003716370897518E-01 + -0.2999205154938917E-01 + -0.2994676404635630E-01 + -0.2990130161587437E-01 + -0.2985566467331253E-01 + -0.2980985362875241E-01 + -0.2976386889051614E-01 + -0.2971771086788977E-01 + -0.2967137997243722E-01 + -0.2962487661631010E-01 + -0.2957820121044495E-01 + -0.2953135416388099E-01 + -0.2948433588617600E-01 + -0.2943714679371171E-01 + -0.2938978730823458E-01 + -0.2934225784986317E-01 + -0.2929455882568138E-01 + -0.2924669063766724E-01 + -0.2919865369256672E-01 + -0.2915044841172616E-01 + -0.2910207521949371E-01 + -0.2905353453425107E-01 + -0.2900482676461547E-01 + -0.2895595231886473E-01 + -0.2890691161102055E-01 + -0.2885770506005181E-01 + -0.2880833308526665E-01 + -0.2875879610570369E-01 + -0.2870909454042546E-01 + -0.2865922880737850E-01 + -0.2860919931992330E-01 + -0.2855900649063166E-01 + -0.2850865073419151E-01 + -0.2845813246884476E-01 + -0.2840745211337037E-01 + -0.2835661008555573E-01 + -0.2830560680227339E-01 + -0.2825444268095283E-01 + -0.2820311814212857E-01 + -0.2815163360799914E-01 + -0.2809998950041553E-01 + -0.2804818623906238E-01 + -0.2799622424328208E-01 + -0.2794410393195342E-01 + -0.2789182572280000E-01 + -0.2783939003365059E-01 + -0.2778679728287508E-01 + -0.2773404788939390E-01 + -0.2768114227318523E-01 + -0.2762808086182850E-01 + -0.2757486408716478E-01 + -0.2752149237756916E-01 + -0.2746796614520051E-01 + -0.2741428579800969E-01 + -0.2736045175158238E-01 + -0.2730646443771541E-01 + -0.2725232429030731E-01 + -0.2719803173647540E-01 + -0.2714358719562212E-01 + -0.2708899108700181E-01 + -0.2703424383038819E-01 + -0.2697934584596975E-01 + -0.2692429755608499E-01 + -0.2686909939254433E-01 + -0.2681375179020467E-01 + -0.2675825517905657E-01 + -0.2670260997708434E-01 + -0.2664681660089802E-01 + -0.2659087547320771E-01 + -0.2653478702425330E-01 + -0.2647855168446255E-01 + -0.2642216987817817E-01 + -0.2636564202580484E-01 + -0.2630896855016750E-01 + -0.2625214988651823E-01 + -0.2619518647447343E-01 + -0.2613807874754355E-01 + -0.2608082712261219E-01 + -0.2602343201427102E-01 + -0.2596589384702601E-01 + -0.2590821305885437E-01 + -0.2585039008811315E-01 + -0.2579242536192628E-01 + -0.2573431929931292E-01 + -0.2567607232176287E-01 + -0.2561768486562714E-01 + -0.2555915737299538E-01 + -0.2550049028180806E-01 + -0.2544168401725921E-01 + -0.2538273900246976E-01 + -0.2532365566361519E-01 + -0.2526443443134071E-01 + -0.2520507573698115E-01 + -0.2514558001346052E-01 + -0.2508594769502639E-01 + -0.2502617921573408E-01 + -0.2496627500662972E-01 + -0.2490623549765775E-01 + -0.2484606112014876E-01 + -0.2478575230939623E-01 + -0.2472530950168525E-01 + -0.2466473313181955E-01 + -0.2460402363197857E-01 + -0.2454318143437563E-01 + -0.2448220697235718E-01 + -0.2442110068029693E-01 + -0.2435986299269120E-01 + -0.2429849434306509E-01 + -0.2423699516463467E-01 + -0.2417536589198993E-01 + -0.2411360696405149E-01 + -0.2405171882089171E-01 + -0.2398970189949299E-01 + -0.2392755663098221E-01 + -0.2386528344630927E-01 + -0.2380288278142326E-01 + -0.2374035507710893E-01 + -0.2367770077431035E-01 + -0.2361492031177482E-01 + -0.2355201412725880E-01 + -0.2348898265776179E-01 + -0.2342582633646754E-01 + -0.2336254559581932E-01 + -0.2329914087343374E-01 + -0.2323561261709694E-01 + -0.2317196127566742E-01 + -0.2310818728852558E-01 + -0.2304429108498402E-01 + -0.2298027309523154E-01 + -0.2291613376056068E-01 + -0.2285187352860834E-01 + -0.2278749284522661E-01 + -0.2272299214698482E-01 + -0.2265837186803535E-01 + -0.2259363244687584E-01 + -0.2252877433137151E-01 + -0.2246379797061076E-01 + -0.2239870380570561E-01 + -0.2233349226843280E-01 + -0.2226816379149233E-01 + -0.2220271882113744E-01 + -0.2213715781210087E-01 + -0.2207148121646703E-01 + -0.2200568947131351E-01 + -0.2193978300919397E-01 + -0.2187376226807478E-01 + -0.2180762769890384E-01 + -0.2174137975460551E-01 + -0.2167501888044335E-01 + -0.2160854551180109E-01 + -0.2154196008449100E-01 + -0.2147526304506472E-01 + -0.2140845484746692E-01 + -0.2134153594392610E-01 + -0.2127450677505673E-01 + -0.2120736777759228E-01 + -0.2114011939247146E-01 + -0.2107276207170453E-01 + -0.2100529626930045E-01 + -0.2093772243520325E-01 + -0.2087004101352942E-01 + -0.2080225244828199E-01 + -0.2073435718498505E-01 + -0.2066635567036559E-01 + -0.2059824835160215E-01 + -0.2053003567720996E-01 + -0.2046171809638010E-01 + -0.2039329605931123E-01 + -0.2032477001873406E-01 + -0.2025614042797185E-01 + -0.2018740773486441E-01 + -0.2011857237861757E-01 + -0.2004963479859304E-01 + -0.1998059544547093E-01 + -0.1991145477929085E-01 + -0.1984221325890204E-01 + -0.1977287133131195E-01 + -0.1970342943859424E-01 + -0.1963388802651247E-01 + -0.1956424755275487E-01 + -0.1949450847766834E-01 + -0.1942467125705522E-01 + -0.1935473633878294E-01 + -0.1928470417018349E-01 + -0.1921457519903278E-01 + -0.1914434987353279E-01 + -0.1907402864312289E-01 + -0.1900361196520332E-01 + -0.1893310030108767E-01 + -0.1886249411018731E-01 + -0.1879179384396361E-01 + -0.1872099995220404E-01 + -0.1865011288476078E-01 + -0.1857913309138439E-01 + -0.1850806102235138E-01 + -0.1843689713525127E-01 + -0.1836564189493711E-01 + -0.1829429576541228E-01 + -0.1822285919839294E-01 + -0.1815133263927871E-01 + -0.1807971653646670E-01 + -0.1800801135034246E-01 + -0.1793621754459638E-01 + -0.1786433557950216E-01 + -0.1779236590795952E-01 + -0.1772030898228219E-01 + -0.1764816525799931E-01 + -0.1757593519412406E-01 + -0.1750361925002830E-01 + -0.1743121788472726E-01 + -0.1735873155713796E-01 + -0.1728616072609786E-01 + -0.1721350584915466E-01 + -0.1714076738365909E-01 + -0.1706794578661063E-01 + -0.1699504151387461E-01 + -0.1692205502152435E-01 + -0.1684898677071627E-01 + -0.1677583722864777E-01 + -0.1670260686225133E-01 + -0.1662929612884420E-01 + -0.1655590547971634E-01 + -0.1648243536881064E-01 + -0.1640888626333231E-01 + -0.1633525863494719E-01 + -0.1626155294946425E-01 + -0.1618776965739413E-01 + -0.1611390920733482E-01 + -0.1603997205904402E-01 + -0.1596595868689635E-01 + -0.1589186956568807E-01 + -0.1581770515979572E-01 + -0.1574346592637393E-01 + -0.1566915232264424E-01 + -0.1559476480589297E-01 + -0.1552030383359663E-01 + -0.1544576986818952E-01 + -0.1537116338562833E-01 + -0.1529648486421704E-01 + -0.1522173477066773E-01 + -0.1514691355478666E-01 + -0.1507202166624106E-01 + -0.1499705956926018E-01 + -0.1492202773934730E-01 + -0.1484692665128693E-01 + -0.1477175677192934E-01 + -0.1469651856510994E-01 + -0.1462121249473565E-01 + -0.1454583902442306E-01 + -0.1447039861795554E-01 + -0.1439489174062220E-01 + -0.1431931885996172E-01 + -0.1424368044393607E-01 + -0.1416797696058271E-01 + -0.1409220887804237E-01 + -0.1401637666452812E-01 + -0.1394048078720751E-01 + -0.1386452171292894E-01 + -0.1378849991042769E-01 + -0.1371241585439350E-01 + -0.1363627002093791E-01 + -0.1356006287976445E-01 + -0.1348379488912762E-01 + -0.1340746650682401E-01 + -0.1333107820056782E-01 + -0.1325463044731318E-01 + -0.1317812372402681E-01 + -0.1310155850313231E-01 + -0.1302493525496336E-01 + -0.1294825444990183E-01 + -0.1287151655784470E-01 + -0.1279472204876192E-01 + -0.1271787139273872E-01 + -0.1264096505984319E-01 + -0.1256400352042342E-01 + -0.1248698724644876E-01 + -0.1240991671153833E-01 + -0.1233279238973176E-01 + -0.1225561475626829E-01 + -0.1217838428715199E-01 + -0.1210110145724227E-01 + -0.1202376673557531E-01 + -0.1194638058981384E-01 + -0.1186894349069044E-01 + -0.1179145591521949E-01 + -0.1171391834138333E-01 + -0.1163633124556402E-01 + -0.1155869510231729E-01 + -0.1148101038601290E-01 + -0.1140327756782710E-01 + -0.1132549711713967E-01 + -0.1124766950560085E-01 + -0.1116979521496986E-01 + -0.1109187473021379E-01 + -0.1101390853235522E-01 + -0.1093589709272549E-01 + -0.1085784088158710E-01 + -0.1077974037352717E-01 + -0.1070159604840336E-01 + -0.1062340838616758E-01 + -0.1054517786143782E-01 + -0.1046690494542488E-01 + -0.1038859011159983E-01 + -0.1031023384482010E-01 + -0.1023183663391453E-01 + -0.1015339896306385E-01 + -0.1007492130383040E-01 + -0.9996404126054017E-02 + -0.9917847904594741E-02 + -0.9839253121024740E-02 + -0.9760620257552221E-02 + -0.9681949795580525E-02 + -0.9603242216003750E-02 + -0.9524497999506462E-02 + -0.9445717624343457E-02 + -0.9366901568027565E-02 + -0.9288050309613121E-02 + -0.9209164332164093E-02 + -0.9130244119636009E-02 + -0.9051290153930848E-02 + -0.8972302913765656E-02 + -0.8893282878028494E-02 + -0.8814230528967652E-02 + -0.8735146351546515E-02 + -0.8656030830617421E-02 + -0.8576884448374722E-02 + -0.8497707686068319E-02 + -0.8418501025120888E-02 + -0.8339264946960425E-02 + -0.8259999933248636E-02 + -0.8180706468054050E-02 + -0.8101385039230179E-02 + -0.8022036134901837E-02 + -0.7942660237784839E-02 + -0.7863257825918000E-02 + -0.7783829378491680E-02 + -0.7704375382967545E-02 + -0.7624896330714945E-02 + -0.7545392710703132E-02 + -0.7465865002525650E-02 + -0.7386313683929389E-02 + -0.7306739239436844E-02 + -0.7227142165618781E-02 + -0.7147522959949431E-02 + -0.7067882107527659E-02 + -0.6988220081627103E-02 + -0.6908537356718291E-02 + -0.6828834419659647E-02 + -0.6749111763673560E-02 + -0.6669369881939442E-02 + -0.6589609266510516E-02 + -0.6509830409322116E-02 + -0.6430033799029898E-02 + -0.6350219917492796E-02 + -0.6270389246160210E-02 + -0.6190542271193655E-02 + -0.6110679483691971E-02 + -0.6030801375155773E-02 + -0.5950908436627521E-02 + -0.5871001159008980E-02 + -0.5791080032733735E-02 + -0.5711145545286710E-02 + -0.5631198183520958E-02 + -0.5551238436725732E-02 + -0.5471266799255529E-02 + -0.5391283766170850E-02 + -0.5311289827008324E-02 + -0.5231285464891114E-02 + -0.5151271163833493E-02 + -0.5071247419059823E-02 + -0.4991214732758112E-02 + -0.4911173604317981E-02 + -0.4831124517698231E-02 + -0.4751067952253240E-02 + -0.4671004394109726E-02 + -0.4590934345566477E-02 + -0.4510858311325753E-02 + -0.4430776787673381E-02 + -0.4350690260154232E-02 + -0.4270599214379392E-02 + -0.4190504142693633E-02 + -0.4110405542063642E-02 + -0.4030303909233330E-02 + -0.3950199738104642E-02 + -0.3870093521762986E-02 + -0.3789985753788075E-02 + -0.3709876928669334E-02 + -0.3629767541264500E-02 + -0.3549658086950024E-02 + -0.3469549061726362E-02 + -0.3389440961780372E-02 + -0.3309334282227049E-02 + -0.3229229517452910E-02 + -0.3149127162342410E-02 + -0.3069027713709071E-02 + -0.2988931669259825E-02 + -0.2908839526340094E-02 + -0.2828751780698332E-02 + -0.2748668928002811E-02 + -0.2668591465003126E-02 + -0.2588519889972770E-02 + -0.2508454701473380E-02 + -0.2428396397140903E-02 + -0.2348345473904189E-02 + -0.2268302429058896E-02 + -0.2188267761156684E-02 + -0.2108241969425487E-02 + -0.2028225553049951E-02 + -0.1948219010473658E-02 + -0.1868222840187032E-02 + -0.1788237541122716E-02 + -0.1708263612788371E-02 + -0.1628301554955356E-02 + -0.1548351867292245E-02 + -0.1468415049402612E-02 + -0.1388491601206269E-02 + -0.1308582023475904E-02 + -0.1228686817517284E-02 + -0.1148806484555534E-02 + -0.1068941524825315E-02 + -0.9890924385281032E-03 + -0.9092597265504841E-03 + -0.8294438908391150E-03 + -0.7496454336603882E-03 + -0.6698648570934628E-03 + -0.5901026630376702E-03 + -0.5103593536046908E-03 + -0.4306354309793693E-03 + -0.3509313975044001E-03 + -0.2712477557941280E-03 + -0.1915850088030850E-03 + -0.1119436597598246E-03 + -0.3232421222440159E-04 + 0.4727282982610436E-04 + 0.1268469621984346E-03 + 0.2063976818972677E-03 + 0.2859244872412911E-03 + 0.3654268750961762E-03 + 0.4449043293595126E-03 + 0.5243563264020056E-03 + 0.6037823411706201E-03 + 0.6831818433797617E-03 + 0.7625543010493794E-03 + 0.8418991821886737E-03 + 0.9212159551172682E-03 + 0.1000504087986244E-02 + 0.1079763049182976E-02 + 0.1158992307422384E-02 + 0.1238191331176205E-02 + 0.1317359588481039E-02 + 0.1396496547001827E-02 + 0.1475601674145550E-02 + 0.1554674437090533E-02 + 0.1633714302763026E-02 + 0.1712720737849995E-02 + 0.1791693208834697E-02 + 0.1870631181955842E-02 + 0.1949534123551751E-02 + 0.2028401500170316E-02 + 0.2107232778084797E-02 + 0.2186027422743378E-02 + 0.2264784898942118E-02 + 0.2343504671416145E-02 + 0.2422186205843836E-02 + 0.2500828968070693E-02 + 0.2579432423400384E-02 + 0.2657996036092227E-02 + 0.2736519270010787E-02 + 0.2815001588895974E-02 + 0.2893442456422575E-02 + 0.2971841336058423E-02 + 0.3050197691593045E-02 + 0.3128510986999340E-02 + 0.3206780685921299E-02 + 0.3285006251233432E-02 + 0.3363187145348154E-02 + 0.3441322830579022E-02 + 0.3519412769483932E-02 + 0.3597456424458465E-02 + 0.3675453257750447E-02 + 0.3753402731523534E-02 + 0.3831304307674385E-02 + 0.3909157447469662E-02 + 0.3986961611605305E-02 + 0.4064716260728175E-02 + 0.4142420856822543E-02 + 0.4220074862310698E-02 + 0.4297677738048521E-02 + 0.4375228940119254E-02 + 0.4452727923439971E-02 + 0.4530174148425691E-02 + 0.4607567085245179E-02 + 0.4684906204173874E-02 + 0.4762190962513524E-02 + 0.4839420805596669E-02 + 0.4916595180198372E-02 + 0.4993713550165419E-02 + 0.5070775387471317E-02 + 0.5147780159991723E-02 + 0.5224727320383406E-02 + 0.5301616317476875E-02 + 0.5378446602956172E-02 + 0.5455217634220610E-02 + 0.5531928869273783E-02 + 0.5608579770286180E-02 + 0.5685169803647012E-02 + 0.5761698434293186E-02 + 0.5838165114208035E-02 + 0.5914569288333206E-02 + 0.5990910404758941E-02 + 0.6067187926184449E-02 + 0.6143401318997890E-02 + 0.6219550044546436E-02 + 0.6295633553784708E-02 + 0.6371651296171256E-02 + 0.6447602722490847E-02 + 0.6523487285030995E-02 + 0.6599304436785634E-02 + 0.6675053639508352E-02 + 0.6750734360006197E-02 + 0.6826346061353490E-02 + 0.6901888189470384E-02 + 0.6977360185006023E-02 + 0.7052761494145965E-02 + 0.7128091576401808E-02 + 0.7203349892872329E-02 + 0.7278535901076135E-02 + 0.7353649054218524E-02 + 0.7428688804825172E-02 + 0.7503654603136488E-02 + 0.7578545897818909E-02 + 0.7653362138344365E-02 + 0.7728102779712876E-02 + 0.7802767278578886E-02 + 0.7877355089966924E-02 + 0.7951865665080737E-02 + 0.8026298454295800E-02 + 0.8100652907793077E-02 + 0.8174928475581043E-02 + 0.8249124607616675E-02 + 0.8323240756294140E-02 + 0.8397276375673666E-02 + 0.8471230918881833E-02 + 0.8545103834529110E-02 + 0.8618894569403448E-02 + 0.8692602571899021E-02 + 0.8766227295530440E-02 + 0.8839768194420802E-02 + 0.8913224717376153E-02 + 0.8986596305476123E-02 + 0.9059882399579388E-02 + 0.9133082450165485E-02 + 0.9206195915207848E-02 + 0.9279222251830451E-02 + 0.9352160911574515E-02 + 0.9425011343552232E-02 + 0.9497772994238504E-02 + 0.9570445302258259E-02 + 0.9643027704605228E-02 + 0.9715519648058809E-02 + 0.9787920595460340E-02 + 0.9860230009887150E-02 + 0.9932447336184202E-02 + 0.1000457200343864E-01 + 0.1007660344277755E-01 + 0.1014854110600270E-01 + 0.1022038445410075E-01 + 0.1029213294426255E-01 + 0.1036378602064623E-01 + 0.1043534312432398E-01 + 0.1050680369751619E-01 + 0.1057816718470500E-01 + 0.1064943303043209E-01 + 0.1072060068015614E-01 + 0.1079166958019113E-01 + 0.1086263917659160E-01 + 0.1093350891476881E-01 + 0.1100427823968434E-01 + 0.1107494659605985E-01 + 0.1114551342843367E-01 + 0.1121597818110506E-01 + 0.1128634029817211E-01 + 0.1135659922358451E-01 + 0.1142675440103173E-01 + 0.1149680527355775E-01 + 0.1156675128354503E-01 + 0.1163659187329877E-01 + 0.1170632648674942E-01 + 0.1177595456860506E-01 + 0.1184547556355120E-01 + 0.1191488891700108E-01 + 0.1198419407436973E-01 + 0.1205339047821393E-01 + 0.1212247756515514E-01 + 0.1219145477093220E-01 + 0.1226032153475689E-01 + 0.1232907729984753E-01 + 0.1239772150950734E-01 + 0.1246625360793881E-01 + 0.1253467303978957E-01 + 0.1260297924904851E-01 + 0.1267117167741507E-01 + 0.1273924976570551E-01 + 0.1280721295371899E-01 + 0.1287506067916226E-01 + 0.1294279237922894E-01 + 0.1301040749143162E-01 + 0.1307790545374961E-01 + 0.1314528570444626E-01 + 0.1321254768755404E-01 + 0.1327969085087242E-01 + 0.1334671463993886E-01 + 0.1341361848859648E-01 + 0.1348040182653121E-01 + 0.1354706408790203E-01 + 0.1361360471928230E-01 + 0.1368002316890306E-01 + 0.1374631887635448E-01 + 0.1381249126939347E-01 + 0.1387853977564823E-01 + 0.1394446383612342E-01 + 0.1401026290157948E-01 + 0.1407593642005730E-01 + 0.1414148382278383E-01 + 0.1420690453445382E-01 + 0.1427219798490263E-01 + 0.1433736361978889E-01 + 0.1440240088736386E-01 + 0.1446730922833268E-01 + 0.1453208807207008E-01 + 0.1459673684721114E-01 + 0.1466125498929086E-01 + 0.1472564193936525E-01 + 0.1478989713763286E-01 + 0.1485402001875753E-01 + 0.1491801001493017E-01 + 0.1498186655934547E-01 + 0.1504558908913018E-01 + 0.1510917704200288E-01 + 0.1517262985410805E-01 + 0.1523594695912862E-01 + 0.1529912779051892E-01 + 0.1536217178589474E-01 + 0.1542507838653464E-01 + 0.1548784703215366E-01 + 0.1555047715106113E-01 + 0.1561296816612687E-01 + 0.1567531950405830E-01 + 0.1573753060647186E-01 + 0.1579960091815224E-01 + 0.1586152987700123E-01 + 0.1592331690844197E-01 + 0.1598496143672996E-01 + 0.1604646289479299E-01 + 0.1610782072400197E-01 + 0.1616903436488295E-01 + 0.1623010324943454E-01 + 0.1629102680515259E-01 + 0.1635180446072583E-01 + 0.1641243565066276E-01 + 0.1647291981075395E-01 + 0.1653325637360184E-01 + 0.1659344476558339E-01 + 0.1665348441238241E-01 + 0.1671337474693537E-01 + 0.1677311520995819E-01 + 0.1683270524137403E-01 + 0.1689214427168355E-01 + 0.1695143172594019E-01 + 0.1701056702966127E-01 + 0.1706954961166085E-01 + 0.1712837890152090E-01 + 0.1718705433061977E-01 + 0.1724557533469210E-01 + 0.1730394134974065E-01 + 0.1736215180803279E-01 + 0.1742020613748906E-01 + 0.1747810376542671E-01 + 0.1753584411762575E-01 + 0.1759342661881072E-01 + 0.1765085069561957E-01 + 0.1770811578552394E-01 + 0.1776522132924542E-01 + 0.1782216676081054E-01 + 0.1787895149794113E-01 + 0.1793557495596868E-01 + 0.1799203656238757E-01 + 0.1804833576047955E-01 + 0.1810447199311119E-01 + 0.1816044468729251E-01 + 0.1821625325906129E-01 + 0.1827189712566888E-01 + 0.1832737571365101E-01 + 0.1838268845265610E-01 + 0.1843783477431618E-01 + 0.1849281411617151E-01 + 0.1854762591635915E-01 + 0.1860226960268711E-01 + 0.1865674458839690E-01 + 0.1871105028637659E-01 + 0.1876518612370906E-01 + 0.1881915153814009E-01 + 0.1887294596600751E-01 + 0.1892656883432401E-01 + 0.1898001956630357E-01 + 0.1903329758552750E-01 + 0.1908640231725028E-01 + 0.1913933318685723E-01 + 0.1919208962036295E-01 + 0.1924467104490613E-01 + 0.1929707688752289E-01 + 0.1934930657546344E-01 + 0.1940135953611308E-01 + 0.1945323519608862E-01 + 0.1950493297798584E-01 + 0.1955645230251661E-01 + 0.1960779259198544E-01 + 0.1965895327475936E-01 + 0.1970993378027872E-01 + 0.1976073353589641E-01 + 0.1981135196555052E-01 + 0.1986178849257716E-01 + 0.1991204253929708E-01 + 0.1996211352708354E-01 + 0.2001200087792656E-01 + 0.2006170402069428E-01 + 0.2011122238742052E-01 + 0.2016055540683994E-01 + 0.2020970249576634E-01 + 0.2025866306804427E-01 + 0.2030743654317524E-01 + 0.2035602235162903E-01 + 0.2040441992455065E-01 + 0.2045262868516699E-01 + 0.2050064804877150E-01 + 0.2054847743134598E-01 + 0.2059611626008471E-01 + 0.2064356396799568E-01 + 0.2069081998487826E-01 + 0.2073788372751413E-01 + 0.2078475460909004E-01 + 0.2083143204776297E-01 + 0.2087791547238518E-01 + 0.2092420431276072E-01 + 0.2097029799348595E-01 + 0.2101619593344982E-01 + 0.2106189755095982E-01 + 0.2110740226354634E-01 + 0.2115270948818229E-01 + 0.2119781864362325E-01 + 0.2124272915797232E-01 + 0.2128744046189434E-01 + 0.2133195198124960E-01 + 0.2137626313108052E-01 + 0.2142037332483912E-01 + 0.2146428198084036E-01 + 0.2150798852333207E-01 + 0.2155149237649980E-01 + 0.2159479296213335E-01 + 0.2163788970039560E-01 + 0.2168078201157311E-01 + 0.2172346931777356E-01 + 0.2176595104153102E-01 + 0.2180822660291602E-01 + 0.2185029541605907E-01 + 0.2189215689412738E-01 + 0.2193381045767979E-01 + 0.2197525553718029E-01 + 0.2201649156247645E-01 + 0.2205751794896699E-01 + 0.2209833410176480E-01 + 0.2213893942880698E-01 + 0.2217933335706727E-01 + 0.2221951532028268E-01 + 0.2225948474609949E-01 + 0.2229924104522729E-01 + 0.2233878362531276E-01 + 0.2237811190090301E-01 + 0.2241722529674552E-01 + 0.2245612323787940E-01 + 0.2249480514464023E-01 + 0.2253327043365336E-01 + 0.2257151852132393E-01 + 0.2260954882457761E-01 + 0.2264736076040350E-01 + 0.2268495374628576E-01 + 0.2272232720180450E-01 + 0.2275948054674746E-01 + 0.2279641319998109E-01 + 0.2283312457903893E-01 + 0.2286961410122728E-01 + 0.2290588118564954E-01 + 0.2294192525290842E-01 + 0.2297774572222155E-01 + 0.2301334200375375E-01 + 0.2304871350349189E-01 + 0.2308385963185025E-01 + 0.2311877981552776E-01 + 0.2315347348455281E-01 + 0.2318794006266091E-01 + 0.2322217896261767E-01 + 0.2325618959599700E-01 + 0.2328997137728907E-01 + 0.2332352372370520E-01 + 0.2335684605175748E-01 + 0.2338993777299675E-01 + 0.2342279829640174E-01 + 0.2345542703479091E-01 + 0.2348782341682601E-01 + 0.2351998687478645E-01 + 0.2355191682980476E-01 + 0.2358361268144244E-01 + 0.2361507382719887E-01 + 0.2364629968031139E-01 + 0.2367728967024370E-01 + 0.2370804322571822E-01 + 0.2373855976347567E-01 + 0.2376883869362091E-01 + 0.2379887942645956E-01 + 0.2382868137427979E-01 + 0.2385824394974356E-01 + 0.2388756656703716E-01 + 0.2391664864392169E-01 + 0.2394548959840551E-01 + 0.2397408884798154E-01 + 0.2400244580959107E-01 + 0.2403055989971496E-01 + 0.2405843053245235E-01 + 0.2408605712037597E-01 + 0.2411343907417498E-01 + 0.2414057579639178E-01 + 0.2416746668699155E-01 + 0.2419411116667395E-01 + 0.2422050870603523E-01 + 0.2424665879502352E-01 + 0.2427256135519689E-01 + 0.2429821684496494E-01 + 0.2432362575416089E-01 + 0.2434878854411843E-01 + 0.2437370565742303E-01 + 0.2439837753847906E-01 + 0.2442280464224371E-01 + 0.2444698742741193E-01 + 0.2447092634998362E-01 + 0.2449462185837136E-01 + 0.2451807440014263E-01 + 0.2454128443084245E-01 + 0.2456425241682557E-01 + 0.2458697882452113E-01 + 0.2460946410747385E-01 + 0.2463170870993048E-01 + 0.2465371307853615E-01 + 0.2467547767446938E-01 + 0.2469700296452700E-01 + 0.2471828941363284E-01 + 0.2473933748065162E-01 + 0.2476014762357859E-01 + 0.2478072030179716E-01 + 0.2480105597664407E-01 + 0.2482115510978844E-01 + 0.2484101816198648E-01 + 0.2486064559331839E-01 + 0.2488003786466375E-01 + 0.2489919544096276E-01 + 0.2491811878900091E-01 + 0.2493680837423824E-01 + 0.2495526465717610E-01 + 0.2497348809757554E-01 + 0.2499147915971870E-01 + 0.2500923831519955E-01 + 0.2502676603618681E-01 + 0.2504406278853259E-01 + 0.2506112903257230E-01 + 0.2507796522973474E-01 + 0.2509457184951092E-01 + 0.2511094936524682E-01 + 0.2512709824884078E-01 + 0.2514301896614203E-01 + 0.2515871198187178E-01 + 0.2517417776494941E-01 + 0.2518941679173593E-01 + 0.2520442953938253E-01 + 0.2521921648002455E-01 + 0.2523377808096649E-01 + 0.2524811480987053E-01 + 0.2526222713721682E-01 + 0.2527611553504986E-01 + 0.2528978047699238E-01 + 0.2530322244219602E-01 + 0.2531644191139755E-01 + 0.2532943936303523E-01 + 0.2534221527064076E-01 + 0.2535477010736357E-01 + 0.2536710434584936E-01 + 0.2537921845819374E-01 + 0.2539111291765290E-01 + 0.2540278820675924E-01 + 0.2541424481336753E-01 + 0.2542548322308491E-01 + 0.2543650391015719E-01 + 0.2544730734583771E-01 + 0.2545789400558316E-01 + 0.2546826437387982E-01 + 0.2547841893651486E-01 + 0.2548835817480764E-01 + 0.2549808256483048E-01 + 0.2550759258342705E-01 + 0.2551688871662439E-01 + 0.2552597145622932E-01 + 0.2553484129316325E-01 + 0.2554349871237193E-01 + 0.2555194419710920E-01 + 0.2556017822962465E-01 + 0.2556820128929780E-01 + 0.2557601385547355E-01 + 0.2558361641418762E-01 + 0.2559100945996051E-01 + 0.2559819348743218E-01 + 0.2560516898285983E-01 + 0.2561193642688506E-01 + 0.2561849630248192E-01 + 0.2562484910510466E-01 + 0.2563099533473340E-01 + 0.2563693548731914E-01 + 0.2564267004731284E-01 + 0.2564819949754970E-01 + 0.2565352432608305E-01 + 0.2565864502819668E-01 + 0.2566356209979717E-01 + 0.2566827603456019E-01 + 0.2567278732456122E-01 + 0.2567709646270854E-01 + 0.2568120394597532E-01 + 0.2568511027307587E-01 + 0.2568881594189076E-01 + 0.2569232144720035E-01 + 0.2569562728342695E-01 + 0.2569873394560124E-01 + 0.2570164192954547E-01 + 0.2570435173144856E-01 + 0.2570686384857033E-01 + 0.2570917877910006E-01 + 0.2571129702213440E-01 + 0.2571321908135043E-01 + 0.2571494546254648E-01 + 0.2571647666888431E-01 + 0.2571781319394781E-01 + 0.2571895552962813E-01 + 0.2571990417680446E-01 + 0.2572065965148542E-01 + 0.2572122247061103E-01 + 0.2572159313599225E-01 + 0.2572177213579661E-01 + 0.2572175996021957E-01 + 0.2572155711753550E-01 + 0.2572116412473604E-01 + 0.2572058149652926E-01 + 0.2571980973807981E-01 + 0.2571884935253141E-01 + 0.2571770084422849E-01 + 0.2571636471953041E-01 + 0.2571484148533445E-01 + 0.2571313165039638E-01 + 0.2571123572531850E-01 + 0.2570915422089461E-01 + 0.2570688764683251E-01 + 0.2570443651240347E-01 + 0.2570180132805138E-01 + 0.2569898260827073E-01 + 0.2569598086880870E-01 + 0.2569279662371009E-01 + 0.2568943038318660E-01 + 0.2568588265733446E-01 + 0.2568215395973969E-01 + 0.2567824480776766E-01 + 0.2567415571878910E-01 + 0.2566988720592712E-01 + 0.2566543977996939E-01 + 0.2566081395332657E-01 + 0.2565601024511035E-01 + 0.2565102917657846E-01 + 0.2564587126831750E-01 + 0.2564053703901068E-01 + 0.2563502700737028E-01 + 0.2562934169417305E-01 + 0.2562348162261281E-01 + 0.2561744731563371E-01 + 0.2561123928897872E-01 + 0.2560485805391106E-01 + 0.2559830412444812E-01 + 0.2559157802816253E-01 + 0.2558468029720145E-01 + 0.2557761146088881E-01 + 0.2557037204093144E-01 + 0.2556296255809183E-01 + 0.2555538353390520E-01 + 0.2554763549083566E-01 + 0.2553971895199072E-01 + 0.2553163444492093E-01 + 0.2552338250037143E-01 + 0.2551496364905391E-01 + 0.2550637841978242E-01 + 0.2549762734086611E-01 + 0.2548871093905159E-01 + 0.2547962973617361E-01 + 0.2547038425360120E-01 + 0.2546097502122743E-01 + 0.2545140258115853E-01 + 0.2544166747593756E-01 + 0.2543177023668576E-01 + 0.2542171138579755E-01 + 0.2541149144672506E-01 + 0.2540111094976074E-01 + 0.2539057042809636E-01 + 0.2537987041704274E-01 + 0.2536901145792333E-01 + 0.2535799409336872E-01 + 0.2534681886004762E-01 + 0.2533548628496239E-01 + 0.2532399689505786E-01 + 0.2531235122710287E-01 + 0.2530054982622025E-01 + 0.2528859323677972E-01 + 0.2527648199403489E-01 + 0.2526421662936879E-01 + 0.2525179767695836E-01 + 0.2523922568008181E-01 + 0.2522650118417999E-01 + 0.2521362473143296E-01 + 0.2520059685808240E-01 + 0.2518741810037998E-01 + 0.2517408900210772E-01 + 0.2516061011406593E-01 + 0.2514698198606884E-01 + 0.2513320515573225E-01 + 0.2511928015485724E-01 + 0.2510520751965908E-01 + 0.2509098780283377E-01 + 0.2507662156123555E-01 + 0.2506210934523638E-01 + 0.2504745169238958E-01 + 0.2503264913942134E-01 + 0.2501770223267734E-01 + 0.2500261152831666E-01 + 0.2498737758219317E-01 + 0.2497200094102807E-01 + 0.2495648214674903E-01 + 0.2494082174379042E-01 + 0.2492502028669388E-01 + 0.2490907833291536E-01 + 0.2489299643564146E-01 + 0.2487677513860211E-01 + 0.2486041498486693E-01 + 0.2484391652668723E-01 + 0.2482728032657448E-01 + 0.2481050694664491E-01 + 0.2479359693665799E-01 + 0.2477655083914276E-01 + 0.2475936920016462E-01 + 0.2474205258222327E-01 + 0.2472460155294342E-01 + 0.2470701667479823E-01 + 0.2468929849767609E-01 + 0.2467144757006880E-01 + 0.2465346444699226E-01 + 0.2463534969143336E-01 + 0.2461710386664875E-01 + 0.2459872753034809E-01 + 0.2458022123670853E-01 + 0.2456158554163385E-01 + 0.2454282100941128E-01 + 0.2452392820731811E-01 + 0.2450490770017533E-01 + 0.2448576004589223E-01 + 0.2446648580153892E-01 + 0.2444708552617930E-01 + 0.2442755978147622E-01 + 0.2440790912987787E-01 + 0.2438813413864792E-01 + 0.2436823537859926E-01 + 0.2434821341992629E-01 + 0.2432806882722925E-01 + 0.2430780216321291E-01 + 0.2428741399087681E-01 + 0.2426690487354111E-01 + 0.2424627537488134E-01 + 0.2422552606222705E-01 + 0.2420465750820933E-01 + 0.2418367028590291E-01 + 0.2416256496468977E-01 + 0.2414134211108785E-01 + 0.2412000229249076E-01 + 0.2409854608110363E-01 + 0.2407697405128158E-01 + 0.2405528677628773E-01 + 0.2403348482518797E-01 + 0.2401156876646200E-01 + 0.2398953917103561E-01 + 0.2396739661366077E-01 + 0.2394514166961063E-01 + 0.2392277491269403E-01 + 0.2390029691548305E-01 + 0.2387770825142793E-01 + 0.2385500949908471E-01 + 0.2383220123949313E-01 + 0.2380928405155426E-01 + 0.2378625850567745E-01 + 0.2376312517064561E-01 + 0.2373988462121249E-01 + 0.2371653744269006E-01 + 0.2369308422146041E-01 + 0.2366952553778371E-01 + 0.2364586196608171E-01 + 0.2362209408134393E-01 + 0.2359822246328622E-01 + 0.2357424769414736E-01 + 0.2355017035618880E-01 + 0.2352599103081922E-01 + 0.2350171029945092E-01 + 0.2347732874367850E-01 + 0.2345284694517100E-01 + 0.2342826548592045E-01 + 0.2340358494966851E-01 + 0.2337880592197872E-01 + 0.2335392898889982E-01 + 0.2332895473792475E-01 + 0.2330388375747845E-01 + 0.2327871663467494E-01 + 0.2325345394973279E-01 + 0.2322809628117391E-01 + 0.2320264421157078E-01 + 0.2317709833207429E-01 + 0.2315145923523805E-01 + 0.2312572751404050E-01 + 0.2309990376190460E-01 + 0.2307398857178096E-01 + 0.2304798252853008E-01 + 0.2302188621217418E-01 + 0.2299570020493564E-01 + 0.2296942509920551E-01 + 0.2294306149073119E-01 + 0.2291660997473032E-01 + 0.2289007114470353E-01 + 0.2286344559411649E-01 + 0.2283673391572457E-01 + 0.2280993670130506E-01 + 0.2278305454278029E-01 + 0.2275608803156285E-01 + 0.2272903775881708E-01 + 0.2270190431693945E-01 + 0.2267468830389541E-01 + 0.2264739031976365E-01 + 0.2262001096429505E-01 + 0.2259255083584769E-01 + 0.2256501053268863E-01 + 0.2253739064870095E-01 + 0.2250969177154426E-01 + 0.2248191448951662E-01 + 0.2245405940296135E-01 + 0.2242612712122366E-01 + 0.2239811825229397E-01 + 0.2237003339294042E-01 + 0.2234187313581530E-01 + 0.2231363807545950E-01 + 0.2228532881152823E-01 + 0.2225694594488700E-01 + 0.2222849007766047E-01 + 0.2219996181374643E-01 + 0.2217136175734748E-01 + 0.2214269051108493E-01 + 0.2211394867634703E-01 + 0.2208513685454374E-01 + 0.2205625564580488E-01 + 0.2202730564988582E-01 + 0.2199828746950285E-01 + 0.2196920171657933E-01 + 0.2194004900508702E-01 + 0.2191082994124914E-01 + 0.2188154511800578E-01 + 0.2185219512786757E-01 + 0.2182278057482134E-01 + 0.2179330207315529E-01 + 0.2176376023709094E-01 + 0.2173415567556255E-01 + 0.2170448899517972E-01 + 0.2167476080273081E-01 + 0.2164497170492795E-01 + 0.2161512230868108E-01 + 0.2158521322021798E-01 + 0.2155524504424371E-01 + 0.2152521838582977E-01 + 0.2149513385640590E-01 + 0.2146499207365728E-01 + 0.2143479365450181E-01 + 0.2140453920461742E-01 + 0.2137422932399643E-01 + 0.2134386461616677E-01 + 0.2131344569858928E-01 + 0.2128297319250729E-01 + 0.2125244771328338E-01 + 0.2122186986388575E-01 + 0.2119124024634157E-01 + 0.2116055947166254E-01 + 0.2112982816053849E-01 + 0.2109904693367261E-01 + 0.2106821640463158E-01 + 0.2103733718302778E-01 + 0.2100640987910074E-01 + 0.2097543510515797E-01 + 0.2094441347431319E-01 + 0.2091334560047386E-01 + 0.2088223209897688E-01 + 0.2085107358566943E-01 + 0.2081987067859122E-01 + 0.2078862399832811E-01 + 0.2075733416490648E-01 + 0.2072600178756002E-01 + 0.2069462746883174E-01 + 0.2066321181525849E-01 + 0.2063175545327281E-01 + 0.2060025901586679E-01 + 0.2056872312900921E-01 + 0.2053714840054699E-01 + 0.2050553543591193E-01 + 0.2047388484648123E-01 + 0.2044219725129490E-01 + 0.2041047327028523E-01 + 0.2037871352501302E-01 + 0.2034691863825813E-01 + 0.2031508923209079E-01 + 0.2028322592300919E-01 + 0.2025132932571681E-01 + 0.2021940005639530E-01 + 0.2018743873483507E-01 + 0.2015544598171603E-01 + 0.2012342241913690E-01 + 0.2009136867110348E-01 + 0.2005928536142970E-01 + 0.2002717310522653E-01 + 0.1999503251103916E-01 + 0.1996286418963180E-01 + 0.1993066876554914E-01 + 0.1989844686895481E-01 + 0.1986619912816628E-01 + 0.1983392616512001E-01 + 0.1980162860070437E-01 + 0.1976930705281828E-01 + 0.1973696213447715E-01 + 0.1970459445906195E-01 + 0.1967220464933046E-01 + 0.1963979333594396E-01 + 0.1960736114849449E-01 + 0.1957490870537829E-01 + 0.1954243662025849E-01 + 0.1950994550943097E-01 + 0.1947743599763195E-01 + 0.1944490871163382E-01 + 0.1941236427767665E-01 + 0.1937980332085946E-01 + 0.1934722646600550E-01 + 0.1931463432979570E-01 + 0.1928202752143899E-01 + 0.1924940665223392E-01 + 0.1921677235066304E-01 + 0.1918412525366875E-01 + 0.1915146599497563E-01 + 0.1911879519491870E-01 + 0.1908611347083467E-01 + 0.1905342143963313E-01 + 0.1902071971714283E-01 + 0.1898800891963362E-01 + 0.1895528967091687E-01 + 0.1892256260242600E-01 + 0.1888982834516067E-01 + 0.1885708752085361E-01 + 0.1882434074642508E-01 + 0.1879158863979851E-01 + 0.1875883182245309E-01 + 0.1872607091702215E-01 + 0.1869330654528612E-01 + 0.1866053932689935E-01 + 0.1862776988166689E-01 + 0.1859499883447591E-01 + 0.1856222681582544E-01 + 0.1852945445539959E-01 + 0.1849668236894204E-01 + 0.1846391116410768E-01 + 0.1843114145270007E-01 + 0.1839837386573567E-01 + 0.1836560904011615E-01 + 0.1833284760413256E-01 + 0.1830009016552525E-01 + 0.1826733732972910E-01 + 0.1823458971573291E-01 + 0.1820184795900034E-01 + 0.1816911269463768E-01 + 0.1813638453897007E-01 + 0.1810366409624702E-01 + 0.1807095197457405E-01 + 0.1803824880244738E-01 + 0.1800555521528382E-01 + 0.1797287184092107E-01 + 0.1794019928707064E-01 + 0.1790753815869081E-01 + 0.1787488907077386E-01 + 0.1784225265167372E-01 + 0.1780962953006264E-01 + 0.1777702032307485E-01 + 0.1774442563969571E-01 + 0.1771184609100828E-01 + 0.1767928230023912E-01 + 0.1764673489524990E-01 + 0.1761420449898699E-01 + 0.1758169171969869E-01 + 0.1754919716334759E-01 + 0.1751672144222086E-01 + 0.1748426517780246E-01 + 0.1745182899217249E-01 + 0.1741941350150238E-01 + 0.1738701931738986E-01 + 0.1735464705175036E-01 + 0.1732229731790404E-01 + 0.1728997072990819E-01 + 0.1725766790304165E-01 + 0.1722538945587366E-01 + 0.1719313600774869E-01 + 0.1716090817112048E-01 + 0.1712870654708049E-01 + 0.1709653173644037E-01 + 0.1706438434944233E-01 + 0.1703226500449391E-01 + 0.1700017431985177E-01 + 0.1696811290893811E-01 + 0.1693608138314781E-01 + 0.1690408035149277E-01 + 0.1687211041384192E-01 + 0.1684017216832007E-01 + 0.1680826622054150E-01 + 0.1677639318930748E-01 + 0.1674455369435698E-01 + 0.1671274834151036E-01 + 0.1668097772342604E-01 + 0.1664924243410579E-01 + 0.1661754308123386E-01 + 0.1658588027944716E-01 + 0.1655425464119884E-01 + 0.1652266676927935E-01 + 0.1649111726427573E-01 + 0.1645960672536456E-01 + 0.1642813574867670E-01 + 0.1639670493036710E-01 + 0.1636531487044763E-01 + 0.1633396617292983E-01 + 0.1630265944158334E-01 + 0.1627139527398100E-01 + 0.1624017426440907E-01 + 0.1620899700835625E-01 + 0.1617786410587611E-01 + 0.1614677615845251E-01 + 0.1611573376349079E-01 + 0.1608473750918535E-01 + 0.1605378798290343E-01 + 0.1602288577700727E-01 + 0.1599203148952712E-01 + 0.1596122571835054E-01 + 0.1593046905411853E-01 + 0.1589976208318414E-01 + 0.1586910539174187E-01 + 0.1583849956449986E-01 + 0.1580794518589694E-01 + 0.1577744284299759E-01 + 0.1574699312883767E-01 + 0.1571659663734068E-01 + 0.1568625395480640E-01 + 0.1565596565790048E-01 + 0.1562573232327620E-01 + 0.1559555453221844E-01 + 0.1556543286918764E-01 + 0.1553536791749518E-01 + 0.1550536025269813E-01 + 0.1547541044787883E-01 + 0.1544551907932535E-01 + 0.1541568673148382E-01 + 0.1538591399016795E-01 + 0.1535620143265506E-01 + 0.1532654962434750E-01 + 0.1529695913014536E-01 + 0.1526743051707599E-01 + 0.1523796435379385E-01 + 0.1520856121011430E-01 + 0.1517922166149472E-01 + 0.1514994628568307E-01 + 0.1512073565576810E-01 + 0.1509159033049550E-01 + 0.1506251086621280E-01 + 0.1503349782252780E-01 + 0.1500455176387040E-01 + 0.1497567325497342E-01 + 0.1494686285557855E-01 + 0.1491812112144821E-01 + 0.1488944860870701E-01 + 0.1486084587537135E-01 + 0.1483231348039201E-01 + 0.1480385197996543E-01 + 0.1477546192062877E-01 + 0.1474714384718193E-01 + 0.1471889830945782E-01 + 0.1469072586554228E-01 + 0.1466262707384330E-01 + 0.1463460248027724E-01 + 0.1460665261971470E-01 + 0.1457877802801396E-01 + 0.1455097925008957E-01 + 0.1452325683518916E-01 + 0.1449561132978633E-01 + 0.1446804326944420E-01 + 0.1444055318738097E-01 + 0.1441314161531567E-01 + 0.1438580908201146E-01 + 0.1435855611631103E-01 + 0.1433138325154270E-01 + 0.1430429102540834E-01 + 0.1427727997493427E-01 + 0.1425035062803417E-01 + 0.1422350350805587E-01 + 0.1419673913756412E-01 + 0.1417005803538247E-01 + 0.1414346071953328E-01 + 0.1411694770685901E-01 + 0.1409051951157386E-01 + 0.1406417664794111E-01 + 0.1403791963499352E-01 + 0.1401174899684902E-01 + 0.1398566525596940E-01 + 0.1395966891431546E-01 + 0.1393376046233576E-01 + 0.1390794039449497E-01 + 0.1388220922343211E-01 + 0.1385656746708355E-01 + 0.1383101563526866E-01 + 0.1380555421928795E-01 + 0.1378018370815361E-01 + 0.1375490459292728E-01 + 0.1372971736704230E-01 + 0.1370462252417829E-01 + 0.1367962055726390E-01 + 0.1365471195883765E-01 + 0.1362989722005743E-01 + 0.1360517682425663E-01 + 0.1358055125242222E-01 + 0.1355602098365810E-01 + 0.1353158649208319E-01 + 0.1350724825123026E-01 + 0.1348300673510799E-01 + 0.1345886241828092E-01 + 0.1343481577512915E-01 + 0.1341086727506952E-01 + 0.1338701738417334E-01 + 0.1336326656774485E-01 + 0.1333961528621667E-01 + 0.1331606399842922E-01 + 0.1329261316254893E-01 + 0.1326926323455087E-01 + 0.1324601467013693E-01 + 0.1322286792250837E-01 + 0.1319982344123699E-01 + 0.1317688167531411E-01 + 0.1315404306698381E-01 + 0.1313130805344097E-01 + 0.1310867707187895E-01 + 0.1308615055932722E-01 + 0.1306372895286206E-01 + 0.1304141268980286E-01 + 0.1301920220784119E-01 + 0.1299709794470637E-01 + 0.1297510032729205E-01 + 0.1295320976546468E-01 + 0.1293142666828893E-01 + 0.1290975145379940E-01 + 0.1288818454750339E-01 + 0.1286672637326088E-01 + 0.1284537734059767E-01 + 0.1282413785293097E-01 + 0.1280300831407906E-01 + 0.1278198912891507E-01 + 0.1276108070261669E-01 + 0.1274028343646098E-01 + 0.1271959772489466E-01 + 0.1269902396150807E-01 + 0.1267856253366079E-01 + 0.1265821382304563E-01 + 0.1263797821162437E-01 + 0.1261785608412206E-01 + 0.1259784782666771E-01 + 0.1257795382227436E-01 + 0.1255817444166508E-01 + 0.1253851005275312E-01 + 0.1251896102269322E-01 + 0.1249952771706812E-01 + 0.1248021050112376E-01 + 0.1246100973353145E-01 + 0.1244192576637857E-01 + 0.1242295895161736E-01 + 0.1240410964149527E-01 + 0.1238537818848226E-01 + 0.1236676494261193E-01 + 0.1234827024316346E-01 + 0.1232989442665771E-01 + 0.1231163782728418E-01 + 0.1229350077420236E-01 + 0.1227548359589881E-01 + 0.1225758661677144E-01 + 0.1223981015670775E-01 + 0.1222215453555289E-01 + 0.1220462007398642E-01 + 0.1218720709322675E-01 + 0.1216991591110676E-01 + 0.1215274682902390E-01 + 0.1213570014361743E-01 + 0.1211877615045059E-01 + 0.1210197514244418E-01 + 0.1208529741221887E-01 + 0.1206874325172421E-01 + 0.1205231295207504E-01 + 0.1203600680355191E-01 + 0.1201982508628306E-01 + 0.1200376807391780E-01 + 0.1198783603820471E-01 + 0.1197202924103825E-01 + 0.1195634794115699E-01 + 0.1194079239857503E-01 + 0.1192536287643226E-01 + 0.1191005963826206E-01 + 0.1189488294017670E-01 + 0.1187983302840012E-01 + 0.1186491014773143E-01 + 0.1185011453216408E-01 + 0.1183544640808372E-01 + 0.1182090600271686E-01 + 0.1180649354876800E-01 + 0.1179220928097946E-01 + 0.1177805342768065E-01 + 0.1176402619877979E-01 + 0.1175012780100181E-01 + 0.1173635844177322E-01 + 0.1172271832951156E-01 + 0.1170920767198404E-01 + 0.1169582666495674E-01 + 0.1168257549488931E-01 + 0.1166945434804038E-01 + 0.1165646341060763E-01 + 0.1164360286880031E-01 + 0.1163087290450157E-01 + 0.1161827368577461E-01 + 0.1160580537797660E-01 + 0.1159346814494767E-01 + 0.1158126214805593E-01 + 0.1156918754788597E-01 + 0.1155724449440611E-01 + 0.1154543312852992E-01 + 0.1153375359078370E-01 + 0.1152220602072034E-01 + 0.1151079055748161E-01 + 0.1149950733699501E-01 + 0.1148835648377790E-01 + 0.1147733811979653E-01 + 0.1146645236091144E-01 + 0.1145569931214155E-01 + 0.1144507907744970E-01 + 0.1143459176146579E-01 + 0.1142423746944703E-01 + 0.1141401630435239E-01 + 0.1140392834977511E-01 + 0.1139397367976733E-01 + 0.1138415236931353E-01 + 0.1137446449727769E-01 + 0.1136491014343123E-01 + 0.1135548938083750E-01 + 0.1134620226943721E-01 + 0.1133704886719583E-01 + 0.1132802922088808E-01 + 0.1131914336576283E-01 + 0.1131039133735480E-01 + 0.1130177317881481E-01 + 0.1129328893743836E-01 + 0.1128493865421610E-01 + 0.1127672234242988E-01 + 0.1126864000779768E-01 + 0.1126069165765573E-01 + 0.1125287730285426E-01 + 0.1124519695429451E-01 + 0.1123765061145338E-01 + 0.1123023826088574E-01 + 0.1122295988798989E-01 + 0.1121581547352851E-01 + 0.1120880499547138E-01 + 0.1120192842935430E-01 + 0.1119518573917100E-01 + 0.1118857688537286E-01 + 0.1118210182524891E-01 + 0.1117576050859055E-01 + 0.1116955288393481E-01 + 0.1116347889547333E-01 + 0.1115753848200726E-01 + 0.1115173158020054E-01 + 0.1114605810559747E-01 + 0.1114051795976990E-01 + 0.1113511104693461E-01 + 0.1112983728728370E-01 + 0.1112469660634000E-01 + 0.1111968891470909E-01 + 0.1111481408359571E-01 + 0.1111007197819990E-01 + 0.1110546248568183E-01 + 0.1110098552323589E-01 + 0.1109664100917173E-01 + 0.1109242884807675E-01 + 0.1108834893454787E-01 + 0.1108440116287117E-01 + 0.1108058542714105E-01 + 0.1107690162133173E-01 + 0.1107334963176978E-01 + 0.1106992932244816E-01 + 0.1106664055322649E-01 + 0.1106348318462194E-01 + 0.1106045707818124E-01 + 0.1105756209433979E-01 + 0.1105479807570355E-01 + 0.1105216485061462E-01 + 0.1104966224671740E-01 + 0.1104729009016213E-01 + 0.1104504820642049E-01 + 0.1104293641734041E-01 + 0.1104095453316397E-01 + 0.1103910236152456E-01 + 0.1103737969840866E-01 + 0.1103578632059836E-01 + 0.1103432200334339E-01 + 0.1103298652872312E-01 + 0.1103177968479875E-01 + 0.1103070125545498E-01 + 0.1102975099198037E-01 + 0.1102892863060634E-01 + 0.1102823391000126E-01 + 0.1102766657833470E-01 + 0.1102722638571126E-01 + 0.1102691307022337E-01 + 0.1102672634816147E-01 + 0.1102666593325787E-01 + 0.1102673153672847E-01 + 0.1102692286735714E-01 + 0.1102723963123752E-01 + 0.1102768151335458E-01 + 0.1102824818789242E-01 + 0.1102893932994882E-01 + 0.1102975461915600E-01 + 0.1103069373608729E-01 + 0.1103175634924249E-01 + 0.1103294210298126E-01 + 0.1103425063859343E-01 + 0.1103568159671429E-01 + 0.1103723461729631E-01 + 0.1103890933812152E-01 + 0.1104070537777522E-01 + 0.1104262234400134E-01 + 0.1104465984328103E-01 + 0.1104681747760341E-01 + 0.1104909484752874E-01 + 0.1105149154856649E-01 + 0.1105400716522901E-01 + 0.1105664127994305E-01 + 0.1105939346180157E-01 + 0.1106226326441580E-01 + 0.1106525024038976E-01 + 0.1106835394284760E-01 + 0.1107157392515242E-01 + 0.1107490973582525E-01 + 0.1107836089988181E-01 + 0.1108192693480243E-01 + 0.1108560735521182E-01 + 0.1108940166904670E-01 + 0.1109330938287293E-01 + 0.1109732999700602E-01 + 0.1110146300383541E-01 + 0.1110570789399808E-01 + 0.1111006414527915E-01 + 0.1111453122664705E-01 + 0.1111910860477636E-01 + 0.1112379573555257E-01 + 0.1112859207092712E-01 + 0.1113349705824818E-01 + 0.1113851013275474E-01 + 0.1114363072728134E-01 + 0.1114885826805414E-01 + 0.1115419217211755E-01 + 0.1115963185471607E-01 + 0.1116517671853509E-01 + 0.1117082615679839E-01 + 0.1117657956080516E-01 + 0.1118243631267012E-01 + 0.1118839579077794E-01 + 0.1119445737051951E-01 + 0.1120062041882133E-01 + 0.1120688430060686E-01 + 0.1121324837062139E-01 + 0.1121971196802858E-01 + 0.1122627442986274E-01 + 0.1123293508437480E-01 + 0.1123969325254123E-01 + 0.1124654825356203E-01 + 0.1125349939750884E-01 + 0.1126054599036030E-01 + 0.1126768733410806E-01 + 0.1127492271811047E-01 + 0.1128225142873166E-01 + 0.1128967274606582E-01 + 0.1129718593975740E-01 + 0.1130479027765374E-01 + 0.1131248501811110E-01 + 0.1132026941088231E-01 + 0.1132814270386190E-01 + 0.1133610413500550E-01 + 0.1134415293737629E-01 + 0.1135228833911875E-01 + 0.1136050955098436E-01 + 0.1136881577935983E-01 + 0.1137720622940361E-01 + 0.1138568010428511E-01 + 0.1139423660612319E-01 + 0.1140287492516823E-01 + 0.1141159423989541E-01 + 0.1142039372639640E-01 + 0.1142927254688825E-01 + 0.1143822985614713E-01 + 0.1144726480722897E-01 + 0.1145637654747573E-01 + 0.1146556422240944E-01 + 0.1147482697081488E-01 + 0.1148416391792122E-01 + 0.1149357418670985E-01 + 0.1150305689393203E-01 + 0.1151261114958720E-01 + 0.1152223606186491E-01 + 0.1153193072764613E-01 + 0.1154169423711390E-01 + 0.1155152567720007E-01 + 0.1156142412154622E-01 + 0.1157138863961929E-01 + 0.1158141829779674E-01 + 0.1159151215591431E-01 + 0.1160166927229806E-01 + 0.1161188869726983E-01 + 0.1162216947165508E-01 + 0.1163251063474660E-01 + 0.1164291121892925E-01 + 0.1165337025203887E-01 + 0.1166388675782096E-01 + 0.1167445974094635E-01 + 0.1168508819961186E-01 + 0.1169577113244187E-01 + 0.1170650753984320E-01 + 0.1171729642180649E-01 + 0.1172813676515863E-01 + 0.1173902753955255E-01 + 0.1174996771301091E-01 + 0.1176095625266798E-01 + 0.1177199212489826E-01 + 0.1178307429262693E-01 + 0.1179420170102708E-01 + 0.1180537328858805E-01 + 0.1181658799353096E-01 + 0.1182784475420128E-01 + 0.1183914250840275E-01 + 0.1185048018473341E-01 + 0.1186185669868614E-01 + 0.1187327096368286E-01 + 0.1188472188365182E-01 + 0.1189620835510626E-01 + 0.1190772927375588E-01 + 0.1191928353393280E-01 + 0.1193087002912355E-01 + 0.1194248764743554E-01 + 0.1195413526118944E-01 + 0.1196581173924305E-01 + 0.1197751595111940E-01 + 0.1198924676769629E-01 + 0.1200100305846705E-01 + 0.1201278367424337E-01 + 0.1202458744996493E-01 + 0.1203641322096178E-01 + 0.1204825983211908E-01 + 0.1206012613225687E-01 + 0.1207201096425058E-01 + 0.1208391315147088E-01 + 0.1209583151261079E-01 + 0.1210776486322156E-01 + 0.1211971201373544E-01 + 0.1213167177356780E-01 + 0.1214364295101535E-01 + 0.1215562435329857E-01 + 0.1216761478574058E-01 + 0.1217961304209658E-01 + 0.1219161791020446E-01 + 0.1220362817675374E-01 + 0.1221564262564932E-01 + 0.1222766003968063E-01 + 0.1223967919661984E-01 + 0.1225169886503045E-01 + 0.1226371781193461E-01 + 0.1227573480353232E-01 + 0.1228774860519577E-01 + 0.1229975798083807E-01 + 0.1231176168548589E-01 + 0.1232375846912709E-01 + 0.1233574708039060E-01 + 0.1234772626403214E-01 + 0.1235969476336870E-01 + 0.1237165132216382E-01 + 0.1238359468575655E-01 + 0.1239552359883647E-01 + 0.1240743679480631E-01 + 0.1241933299448791E-01 + 0.1243121091840076E-01 + 0.1244306929576691E-01 + 0.1245490686075479E-01 + 0.1246672234376713E-01 + 0.1247851445883057E-01 + 0.1249028191466456E-01 + 0.1250202342042024E-01 + 0.1251373768703350E-01 + 0.1252542342533463E-01 + 0.1253707934952395E-01 + 0.1254870417807908E-01 + 0.1256029662800756E-01 + 0.1257185540139105E-01 + 0.1258337919035243E-01 + 0.1259486668815871E-01 + 0.1260631659755250E-01 + 0.1261772762406714E-01 + 0.1262909847133537E-01 + 0.1264042783890942E-01 + 0.1265171442512917E-01 + 0.1266295692423309E-01 + 0.1267415402510785E-01 + 0.1268530441614327E-01 + 0.1269640679067809E-01 + 0.1270745984545602E-01 + 0.1271846227667874E-01 + 0.1272941277957237E-01 + 0.1274031004864736E-01 + 0.1275115277617970E-01 + 0.1276193964901998E-01 + 0.1277266935268388E-01 + 0.1278334057785678E-01 + 0.1279395202319385E-01 + 0.1280450238724618E-01 + 0.1281499036425272E-01 + 0.1282541464492347E-01 + 0.1283577392058179E-01 + 0.1284606689039938E-01 + 0.1285629225644723E-01 + 0.1286644871719529E-01 + 0.1287653496068295E-01 + 0.1288654967255966E-01 + 0.1289649154907519E-01 + 0.1290635930420637E-01 + 0.1291615165255025E-01 + 0.1292586729864523E-01 + 0.1293550493821103E-01 + 0.1294506326845755E-01 + 0.1295454100348334E-01 + 0.1296393686477491E-01 + 0.1297324957036831E-01 + 0.1298247782716189E-01 + 0.1299162033925304E-01 + 0.1300067582214947E-01 + 0.1300964301240697E-01 + 0.1301852064783229E-01 + 0.1302730745551426E-01 + 0.1303600215227969E-01 + 0.1304460345634265E-01 + 0.1305311010497905E-01 + 0.1306152084478532E-01 + 0.1306983442199133E-01 + 0.1307804958265169E-01 + 0.1308616507240820E-01 + 0.1309417964006818E-01 + 0.1310209204127214E-01 + 0.1310990103224902E-01 + 0.1311760537474596E-01 + 0.1312520383632542E-01 + 0.1313269518514759E-01 + 0.1314007819664629E-01 + 0.1314735165006244E-01 + 0.1315451432593185E-01 + 0.1316156501213406E-01 + 0.1316850249825261E-01 + 0.1317532557806441E-01 + 0.1318203305518953E-01 + 0.1318862373433832E-01 + 0.1319509642612214E-01 + 0.1320144994802937E-01 + 0.1320768311843410E-01 + 0.1321379476572646E-01 + 0.1321978372423176E-01 + 0.1322564882863595E-01 + 0.1323138891689225E-01 + 0.1323700282766210E-01 + 0.1324248940860416E-01 + 0.1324784752999643E-01 + 0.1325307606513952E-01 + 0.1325817388839058E-01 + 0.1326313987556949E-01 + 0.1326797290335890E-01 + 0.1327267186282924E-01 + 0.1327723565458732E-01 + 0.1328166318066262E-01 + 0.1328595335201379E-01 + 0.1329010508239244E-01 + 0.1329411729089913E-01 + 0.1329798891183963E-01 + 0.1330171888193729E-01 + 0.1330530614850094E-01 + 0.1330874967374876E-01 + 0.1331204842073548E-01 + 0.1331520135390977E-01 + 0.1331820743864203E-01 + 0.1332106564526172E-01 + 0.1332377497684044E-01 + 0.1332633444872475E-01 + 0.1332874307407632E-01 + 0.1333099986023436E-01 + 0.1333310381349737E-01 + 0.1333505396166599E-01 + 0.1333684936569214E-01 + 0.1333848908862955E-01 + 0.1333997218739311E-01 + 0.1334129771382900E-01 + 0.1334246472496065E-01 + 0.1334347231696022E-01 + 0.1334431960238562E-01 + 0.1334500569226360E-01 + 0.1334552969315394E-01 + 0.1334589071065258E-01 + 0.1334608786927392E-01 + 0.1334612032569183E-01 + 0.1334598723981357E-01 + 0.1334568777964611E-01 + 0.1334522112040538E-01 + 0.1334458643859009E-01 + 0.1334378292086793E-01 + 0.1334280975850224E-01 + 0.1334166615231563E-01 + 0.1334035133939117E-01 + 0.1333886456502541E-01 + 0.1333720507758144E-01 + 0.1333537213138327E-01 + 0.1333336498206497E-01 + 0.1333118290555730E-01 + 0.1332882519772620E-01 + 0.1332629115640245E-01 + 0.1332358009134214E-01 + 0.1332069131834741E-01 + 0.1331762416064422E-01 + 0.1331437797277975E-01 + 0.1331095211725574E-01 + 0.1330734596301529E-01 + 0.1330355889248643E-01 + 0.1329959029013362E-01 + 0.1329543955582493E-01 + 0.1329110610606885E-01 + 0.1328658936057166E-01 + 0.1328188876441812E-01 + 0.1327700377710199E-01 + 0.1327193386183383E-01 + 0.1326667849890408E-01 + 0.1326123717342625E-01 + 0.1325560938106366E-01 + 0.1324979464166776E-01 + 0.1324379247877172E-01 + 0.1323760243166508E-01 + 0.1323122405834799E-01 + 0.1322465691942140E-01 + 0.1321790059409430E-01 + 0.1321095467323165E-01 + 0.1320381875422780E-01 + 0.1319649246768534E-01 + 0.1318897545476067E-01 + 0.1318126735985323E-01 + 0.1317336783569249E-01 + 0.1316527653690460E-01 + 0.1315699314584688E-01 + 0.1314851738103894E-01 + 0.1313984896386816E-01 + 0.1313098762241303E-01 + 0.1312193308935997E-01 + 0.1311268510364294E-01 + 0.1310324343988445E-01 + 0.1309360788536919E-01 + 0.1308377823491909E-01 + 0.1307375430443257E-01 + 0.1306353591379319E-01 + 0.1305312290166692E-01 + 0.1304251513364686E-01 + 0.1303171247820707E-01 + 0.1302071481606697E-01 + 0.1300952203726944E-01 + 0.1299813403837379E-01 + 0.1298655075630128E-01 + 0.1297477214390365E-01 + 0.1296279815867183E-01 + 0.1295062877232355E-01 + 0.1293826395964185E-01 + 0.1292570371480472E-01 + 0.1291294806255502E-01 + 0.1289999703129919E-01 + 0.1288685066548466E-01 + 0.1287350902299795E-01 + 0.1285997216722816E-01 + 0.1284624019778424E-01 + 0.1283231323014349E-01 + 0.1281819138390408E-01 + 0.1280387479244122E-01 + 0.1278936359241609E-01 + 0.1277465794195534E-01 + 0.1275975803639874E-01 + 0.1274466407552849E-01 + 0.1272937627165479E-01 + 0.1271389484862174E-01 + 0.1269822003511046E-01 + 0.1268235209451946E-01 + 0.1266629130709472E-01 + 0.1265003795895094E-01 + 0.1263359235787568E-01 + 0.1261695481710503E-01 + 0.1260012566548144E-01 + 0.1258310526159022E-01 + 0.1256589396831474E-01 + 0.1254849216697925E-01 + 0.1253090025753909E-01 + 0.1251311864412669E-01 + 0.1249514775982827E-01 + 0.1247698805327447E-01 + 0.1245863997920393E-01 + 0.1244010401712093E-01 + 0.1242138065337822E-01 + 0.1240247038603155E-01 + 0.1238337373763015E-01 + 0.1236409123498002E-01 + 0.1234462343099178E-01 + 0.1232497090751996E-01 + 0.1230513424987584E-01 + 0.1228511406103445E-01 + 0.1226491095447703E-01 + 0.1224452555017502E-01 + 0.1222395849729168E-01 + 0.1220321045392524E-01 + 0.1218228209094644E-01 + 0.1216117410869414E-01 + 0.1213988721247832E-01 + 0.1211842212442531E-01 + 0.1209677958709474E-01 + 0.1207496034708881E-01 + 0.1205296518038865E-01 + 0.1203079488213300E-01 + 0.1200845025117545E-01 + 0.1198593210284875E-01 + 0.1196324125820923E-01 + 0.1194037855226703E-01 + 0.1191734485559135E-01 + 0.1189414104514726E-01 + 0.1187076801416966E-01 + 0.1184722667756321E-01 + 0.1182351795377252E-01 + 0.1179964278357135E-01 + 0.1177560212377150E-01 + 0.1175139693605339E-01 + 0.1172702820685009E-01 + 0.1170249693196932E-01 + 0.1167780411804629E-01 + 0.1165295080197688E-01 + 0.1162793802666613E-01 + 0.1160276684726405E-01 + 0.1157743833674973E-01 + 0.1155195357172616E-01 + 0.1152631365625013E-01 + 0.1150051971600101E-01 + 0.1147457288096364E-01 + 0.1144847430311367E-01 + 0.1142222514367954E-01 + 0.1139582657160150E-01 + 0.1136927977925702E-01 + 0.1134258596436390E-01 + 0.1131574634204532E-01 + 0.1128876215533745E-01 + 0.1126163465112898E-01 + 0.1123436509117487E-01 + 0.1120695475011107E-01 + 0.1117940490736868E-01 + 0.1115171687142842E-01 + 0.1112389196417102E-01 + 0.1109593151304198E-01 + 0.1106783686357801E-01 + 0.1103960936598795E-01 + 0.1101125038891130E-01 + 0.1098276133347660E-01 + 0.1095414360500169E-01 + 0.1092539861511489E-01 + 0.1089652778144753E-01 + 0.1086753252669034E-01 + 0.1083841430949980E-01 + 0.1080917460675461E-01 + 0.1077981490046701E-01 + 0.1075033669057610E-01 + 0.1072074148201338E-01 + 0.1069103078886081E-01 + 0.1066120614261679E-01 + 0.1063126907811975E-01 + 0.1060122114853493E-01 + 0.1057106392604644E-01 + 0.1054079898706618E-01 + 0.1051042793409507E-01 + 0.1047995238427853E-01 + 0.1044937395763575E-01 + 0.1041869428385395E-01 + 0.1038791499586227E-01 + 0.1035703774033669E-01 + 0.1032606419308596E-01 + 0.1029499603476562E-01 + 0.1026383495811109E-01 + 0.1023258266954487E-01 + 0.1020124087835313E-01 + 0.1016981130977309E-01 + 0.1013829569899284E-01 + 0.1010669578794727E-01 + 0.1007501334819912E-01 + 0.1004325016093236E-01 + 0.1001140800915472E-01 + 0.9979488679191945E-02 + 0.9947493959105369E-02 + 0.9915425659118096E-02 + 0.9883285617054760E-02 + 0.9851075673888001E-02 + 0.9818797679465281E-02 + 0.9786453489813535E-02 + 0.9754044965937798E-02 + 0.9721573992061988E-02 + 0.9689042460855170E-02 + 0.9656452263558379E-02 + 0.9623805286232960E-02 + 0.9591103416472038E-02 + 0.9558348619330291E-02 + 0.9525542966361446E-02 + 0.9492688492268421E-02 + 0.9459786600263211E-02 + 0.9426838230564940E-02 + 0.9393844266766440E-02 + 0.9360805308797698E-02 + 0.9327721849364810E-02 + 0.9294594410013549E-02 + 0.9261423598040912E-02 + 0.9228210036661977E-02 + 0.9194954342088540E-02 + 0.9161657119772428E-02 + 0.9128318976402518E-02 + 0.9094940549388539E-02 + 0.9061522500961706E-02 + 0.9028065492310665E-02 + 0.8994570171031931E-02 + 0.8961037179182572E-02 + 0.8927467171310100E-02 + 0.8893860842599789E-02 + 0.8860218896762433E-02 + 0.8826542031952421E-02 + 0.8792830936842645E-02 + 0.8759086300483929E-02 + 0.8725308831126686E-02 + 0.8691499254063718E-02 + 0.8657658296277559E-02 + 0.8623786691237598E-02 + 0.8589885175591229E-02 + 0.8555954489598170E-02 + 0.8521995385889534E-02 + 0.8488008620222344E-02 + 0.8453994952787545E-02 + 0.8419955151669994E-02 + 0.8385889986332767E-02 + 0.8351800231800175E-02 + 0.8317686668516904E-02 + 0.8283550079125368E-02 + 0.8249391260950278E-02 + 0.8215211019009294E-02 + 0.8181010159739275E-02 + 0.8146789494088370E-02 + 0.8112549834410427E-02 + 0.8078291993100411E-02 + 0.8044016782283109E-02 + 0.8009725015156855E-02 + 0.7975417526196358E-02 + 0.7941095172593366E-02 + 0.7906758810712575E-02 + 0.7872409274992556E-02 + 0.7838047387620407E-02 + 0.7803673979234373E-02 + 0.7769289918402732E-02 + 0.7734896084715498E-02 + 0.7700493349592731E-02 + 0.7666082565642508E-02 + 0.7631664583683829E-02 + 0.7597240269521426E-02 + 0.7562810506492284E-02 + 0.7528376178890350E-02 + 0.7493938167025126E-02 + 0.7459497348861108E-02 + 0.7425054604328222E-02 + 0.7390610822051241E-02 + 0.7356166893666220E-02 + 0.7321723712388629E-02 + 0.7287282174804812E-02 + 0.7252843178338074E-02 + 0.7218407620976333E-02 + 0.7183976401327863E-02 + 0.7149550418807954E-02 + 0.7115130578476756E-02 + 0.7080717789385527E-02 + 0.7046312960318396E-02 + 0.7011916996381805E-02 + 0.6977530801636257E-02 + 0.6943155284164209E-02 + 0.6908791362481825E-02 + 0.6874439957140388E-02 + 0.6840101985986145E-02 + 0.6805778362868812E-02 + 0.6771470001688695E-02 + 0.6737177816791506E-02 + 0.6702902722951752E-02 + 0.6668645636075519E-02 + 0.6634407477207656E-02 + 0.6600189169630535E-02 + 0.6565991634058844E-02 + 0.6531815782543486E-02 + 0.6497662525882165E-02 + 0.6463532781044394E-02 + 0.6429427474423206E-02 + 0.6395347533038476E-02 + 0.6361293875228189E-02 + 0.6327267412194604E-02 + 0.6293269055818707E-02 + 0.6259299722119026E-02 + 0.6225360329117402E-02 + 0.6191451793981885E-02 + 0.6157575030041138E-02 + 0.6123730950117840E-02 + 0.6089920468636940E-02 + 0.6056144502508865E-02 + 0.6022403968617840E-02 + 0.5988699772285826E-02 + 0.5955032808332989E-02 + 0.5921403972492567E-02 + 0.5887814168377456E-02 + 0.5854264303563134E-02 + 0.5820755284521393E-02 + 0.5787288012415390E-02 + 0.5753863387403111E-02 + 0.5720482306845200E-02 + 0.5687145662469481E-02 + 0.5653854345502710E-02 + 0.5620609243021030E-02 + 0.5587411237946146E-02 + 0.5554261213236273E-02 + 0.5521160051066378E-02 + 0.5488108633367224E-02 + 0.5455107840566503E-02 + 0.5422158545605470E-02 + 0.5389261619694556E-02 + 0.5356417931877235E-02 + 0.5323628346272786E-02 + 0.5290893726572172E-02 + 0.5258214933628223E-02 + 0.5225592825138909E-02 + 0.5193028258208379E-02 + 0.5160522082549759E-02 + 0.5128075143715485E-02 + 0.5095688286438586E-02 + 0.5063362350590241E-02 + 0.5031098174839430E-02 + 0.4998896595041542E-02 + 0.4966758440092561E-02 + 0.4934684538040908E-02 + 0.4902675712198624E-02 + 0.4870732780088441E-02 + 0.4838856558678874E-02 + 0.4807047859286770E-02 + 0.4775307489720653E-02 + 0.4743636256312159E-02 + 0.4712034956589694E-02 + 0.4680504385412693E-02 + 0.4649045335198185E-02 + 0.4617658591603798E-02 + 0.4586344939341204E-02 + 0.4555105157587589E-02 + 0.4523940018071052E-02 + 0.4492850291791244E-02 + 0.4461836743435935E-02 + 0.4430900133327063E-02 + 0.4400041220327131E-02 + 0.4369260753842663E-02 + 0.4338559480033078E-02 + 0.4307938142343143E-02 + 0.4277397475958885E-02 + 0.4246938214728230E-02 + 0.4216561086623043E-02 + 0.4186266810903144E-02 + 0.4156056105954453E-02 + 0.4125929683667890E-02 + 0.4095888250956042E-02 + 0.4065932513224707E-02 + 0.4036063165351770E-02 + 0.4006280898138656E-02 + 0.3976586399581843E-02 + 0.3946980348258255E-02 + 0.3917463421016420E-02 + 0.3888036289225494E-02 + 0.3858699615288703E-02 + 0.3829454060556019E-02 + 0.3800300278186230E-02 + 0.3771238914389009E-02 + 0.3742270614118079E-02 + 0.3713396013185406E-02 + 0.3684615743465454E-02 + 0.3655930433509085E-02 + 0.3627340699620508E-02 + 0.3598847155546570E-02 + 0.3570450410446540E-02 + 0.3542151065173172E-02 + 0.3513949719487401E-02 + 0.3485846964113598E-02 + 0.3457843381322201E-02 + 0.3429939552021760E-02 + 0.3402136046994004E-02 + 0.3374433432142716E-02 + 0.3346832270642714E-02 + 0.3319333114478689E-02 + 0.3291936513012011E-02 + 0.3264643010275147E-02 + 0.3237453139690926E-02 + 0.3210367433279111E-02 + 0.3183386414594805E-02 + 0.3156510598474291E-02 + 0.3129740498463564E-02 + 0.3103076618251960E-02 + 0.3076519456255371E-02 + 0.3050069508038555E-02 + 0.3023727256322777E-02 + 0.2997493180432578E-02 + 0.2971367754741344E-02 + 0.2945351442729765E-02 + 0.2919444706341911E-02 + 0.2893647999810351E-02 + 0.2867961768626324E-02 + 0.2842386456857616E-02 + 0.2816922497002086E-02 + 0.2791570314685700E-02 + 0.2766330333302316E-02 + 0.2741202965236234E-02 + 0.2716188619618886E-02 + 0.2691287700244867E-02 + 0.2666500597960368E-02 + 0.2641827701638492E-02 + 0.2617269393022982E-02 + 0.2592826044966432E-02 + 0.2568498028985782E-02 + 0.2544285705819979E-02 + 0.2520189429136558E-02 + 0.2496209550090554E-02 + 0.2472346406326722E-02 + 0.2448600331004586E-02 + 0.2424971653594335E-02 + 0.2401460693617964E-02 + 0.2378067768865151E-02 + 0.2354793188399062E-02 + 0.2331637249324251E-02 + 0.2308600247278565E-02 + 0.2285682468331939E-02 + 0.2262884191632384E-02 + 0.2240205694216812E-02 + 0.2217647240791554E-02 + 0.2195209091497626E-02 + 0.2172891502336688E-02 + 0.2150694717007302E-02 + 0.2128618976893292E-02 + 0.2106664515896414E-02 + 0.2084831556638471E-02 + 0.2063120320295515E-02 + 0.2041531018861673E-02 + 0.2020063857013423E-02 + 0.1998719037389791E-02 + 0.1977496749823275E-02 + 0.1956397178863731E-02 + 0.1935420505368430E-02 + 0.1914566898066782E-02 + 0.1893836523164534E-02 + 0.1873229540035440E-02 + 0.1852746096720443E-02 + 0.1832386339718484E-02 + 0.1812150406034969E-02 + 0.1792038424350188E-02 + 0.1772050521663366E-02 + 0.1752186814107527E-02 + 0.1732447412839619E-02 + 0.1712832425014341E-02 + 0.1693341943269279E-02 + 0.1673976056912187E-02 + 0.1654734850313328E-02 + 0.1635618398825994E-02 + 0.1616626776365082E-02 + 0.1597760046242946E-02 + 0.1579018261553117E-02 + 0.1560401473815303E-02 + 0.1541909724601288E-02 + 0.1523543050433030E-02 + 0.1505301484439409E-02 + 0.1487185046188783E-02 + 0.1469193751778569E-02 + 0.1451327612426217E-02 + 0.1433586629542456E-02 + 0.1415970802956027E-02 + 0.1398480122460170E-02 + 0.1381114567225495E-02 + 0.1363874114972382E-02 + 0.1346758734549592E-02 + 0.1329768389824089E-02 + 0.1312903041632748E-02 + 0.1296162637511237E-02 + 0.1279547121198475E-02 + 0.1263056431469222E-02 + 0.1246690496110529E-02 + 0.1230449241134159E-02 + 0.1214332584687863E-02 + 0.1198340435781675E-02 + 0.1182472701933622E-02 + 0.1166729280446089E-02 + 0.1151110062293921E-02 + 0.1135614935922009E-02 + 0.1120243777774138E-02 + 0.1104996460475266E-02 + 0.1089872852439947E-02 + 0.1074872811824274E-02 + 0.1059996194957457E-02 + 0.1045242850076564E-02 + 0.1030612615098843E-02 + 0.1016105326522685E-02 + 0.1001720812409997E-02 + 0.9874588950629947E-03 + 0.9733193943477826E-03 + 0.9593021174896160E-03 + 0.9454068672446269E-03 + 0.9316334428750308E-03 + 0.9179816342896782E-03 + 0.9044512295775554E-03 + 0.8910420094988087E-03 + 0.8777537445583988E-03 + 0.8645862038161106E-03 + 0.8515391479913927E-03 + 0.8386123315424490E-03 + 0.8258055068774345E-03 + 0.8131184150974880E-03 + 0.8005507928581739E-03 + 0.7881023734333892E-03 + 0.7757728801292467E-03 + 0.7635620341693562E-03 + 0.7514695508265579E-03 + 0.7394951362450088E-03 + 0.7276384951310716E-03 + 0.7158993232632782E-03 + 0.7042773090619823E-03 + 0.6927721393767197E-03 + 0.6813834923920402E-03 + 0.6701110424991707E-03 + 0.6589544604527214E-03 + 0.6479134051517967E-03 + 0.6369875328254192E-03 + 0.6261764953154501E-03 + 0.6154799371030483E-03 + 0.6048975013705611E-03 + 0.5944288227138048E-03 + 0.5840735279636911E-03 + 0.5738312424048313E-03 + 0.5637015824355264E-03 + 0.5536841601569533E-03 + 0.5437785849624211E-03 + 0.5339844566544452E-03 + 0.5243013726086909E-03 + 0.5147289254415355E-03 + 0.5052666989913723E-03 + 0.4959142756670483E-03 + 0.4866712309233808E-03 + 0.4775371333202157E-03 + 0.4685115500132952E-03 + 0.4595940397405917E-03 + 0.4507841567464901E-03 + 0.4420814528966363E-03 + 0.4334854708937166E-03 + 0.4249957508740726E-03 + 0.4166118287600452E-03 + 0.4083332319551756E-03 + 0.4001594864056431E-03 + 0.3920901119367184E-03 + 0.3841246217275437E-03 + 0.3762625276713139E-03 + 0.3685033339258548E-03 + 0.3608465400974015E-03 + 0.3532916436972928E-03 + 0.3458381335178898E-03 + 0.3384854956457351E-03 + 0.3312332126209122E-03 + 0.3240807591431363E-03 + 0.3170276084579640E-03 + 0.3100732281796711E-03 + 0.3032170792313252E-03 + 0.2964586213434195E-03 + 0.2897973073956186E-03 + 0.2832325858301362E-03 + 0.2767639032713943E-03 + 0.2703906982454935E-03 + 0.2641124064897449E-03 + 0.2579284606409964E-03 + 0.2518382858414457E-03 + 0.2458413057417910E-03 + 0.2399369392008067E-03 + 0.2341245988552033E-03 + 0.2284036962090158E-03 + 0.2227736363194619E-03 + 0.2172338196606508E-03 + 0.2117836451856175E-03 + 0.2064225047666852E-03 + 0.2011497875639716E-03 + 0.1959648800374431E-03 + 0.1908671615246180E-03 + 0.1858560098237531E-03 + 0.1809307985290471E-03 + 0.1760908952743890E-03 + 0.1713356666263223E-03 + 0.1666644735678320E-03 + 0.1620766727271112E-03 + 0.1575716193860349E-03 + 0.1531486622661487E-03 + 0.1488071473091148E-03 + 0.1445464182114696E-03 + 0.1403658122534545E-03 + 0.1362646651880238E-03 + 0.1322423090983333E-03 + 0.1282980703935176E-03 + 0.1244312744576781E-03 + 0.1206412418543072E-03 + 0.1169272890299781E-03 + 0.1132887312516158E-03 + 0.1097248778850381E-03 + 0.1062350355309414E-03 + 0.1028185089023097E-03 + 0.9947459689989167E-04 + 0.9620259690012068E-04 + 0.9300180320980296E-04 + 0.8987150497564889E-04 + 0.8681099035969108E-04 + 0.8381954325168175E-04 + 0.8089644355451544E-04 + 0.7804097014962887E-04 + 0.7525239686628469E-04 + 0.7252999491486802E-04 + 0.6987303391938210E-04 + 0.6728077828719760E-04 + 0.6475249091222024E-04 + 0.6228743208703945E-04 + 0.5988485735986844E-04 + 0.5754402132825130E-04 + 0.5526417504748514E-04 + 0.5304456596752146E-04 + 0.5088444063394384E-04 + 0.4878304118696667E-04 + 0.4673960725014998E-04 + 0.4475337712964836E-04 + 0.4282358457795878E-04 + 0.4094946187841432E-04 + 0.3913023918887614E-04 + 0.3736514248745631E-04 + 0.3565339684346688E-04 + 0.3399422434183759E-04 + 0.3238684376370964E-04 + 0.3083047309114476E-04 + 0.2932432664995721E-04 + 0.2786761646422446E-04 + 0.2645955346734757E-04 + 0.2509934470420159E-04 + 0.2378619581960758E-04 + 0.2251931073485630E-04 + 0.2129788974375229E-04 + 0.2012113227632945E-04 + 0.1898823536224467E-04 + 0.1789839315332321E-04 + 0.1685079908935014E-04 + 0.1584464360627278E-04 + 0.1487911506161557E-04 + 0.1395340091983927E-04 + 0.1306668546291450E-04 + 0.1221815168656361E-04 + 0.1140698122328145E-04 + 0.1063235267814338E-04 + 0.9893443850223772E-05 + 0.9189430657773389E-05 + 0.8519486593402665E-05 + 0.7882784516467728E-05 + 0.7278494935608439E-05 + 0.6705786573873675E-05 + 0.6163827423523596E-05 + 0.5651782975288672E-05 + 0.5168817578752733E-05 + 0.4714094542607022E-05 + 0.4286774801891125E-05 + 0.3886018564304183E-05 + 0.3510984618126240E-05 + 0.3160829806119420E-05 + 0.2834710411024186E-05 + 0.2531780998702286E-05 + 0.2251194705673445E-05 + 0.1992104074532935E-05 + 0.1753659819102016E-05 + 0.1535011699446480E-05 + 0.1335308706819185E-05 + 0.1153698121804797E-05 + 0.9893265964069983E-06 + 0.8413397937480116E-06 + 0.7088819770183164E-06 + 0.5910969229666829E-06 + 0.4871272699961916E-06 + 0.3961146220277366E-06 + 0.3172001065531827E-06 + 0.2495236941769535E-06 + 0.1922246407671419E-06 + 0.1444416614955101E-06 + 0.1053124328882129E-06 + 0.7397412700923994E-07 + 0.4956332050161572E-07 + 0.3121579423557010E-07 + 0.1806692087863425E-07 + 0.9251422554216926E-08 + 0.3903384615269487E-08 + 0.1156542889210542E-08 + 0.1443625144722101E-09 diff --git a/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fcc_ni.dat b/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fcc_ni.dat new file mode 100644 index 0000000000000000000000000000000000000000..376f6fd16242f4255bd4ba277efb0cfd1e5b4ddc --- /dev/null +++ b/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fcc_ni.dat @@ -0,0 +1,5 @@ +2.492 0.0028027 +3.524 0.0000816 +4.316 0.0003537 +4.984 0.0001632 +5.572 0.0000408 diff --git a/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fcc_ni2.dat b/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fcc_ni2.dat new file mode 100644 index 0000000000000000000000000000000000000000..4e5aa4765957bd9d196f7543751fb5ce174634b4 --- /dev/null +++ b/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fcc_ni2.dat @@ -0,0 +1,5 @@ +2.495 8.3 +3.524 -3.99 +4.31 0.998 +4.99 -0.955 +5.56 0.213 diff --git a/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fit.py b/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fit.py new file mode 100644 index 0000000000000000000000000000000000000000..4046fa45f7c9dde935e492daf7fdf9453daea82a --- /dev/null +++ b/examples/SPIN/nickel/exchange_fit_fcc_ni/exchange_fit.py @@ -0,0 +1,33 @@ +# program fitting the exchange interaction +# model curve: Bethe-Slater function +import numpy as np, pylab, tkinter +import matplotlib.pyplot as plt +from scipy.optimize import curve_fit +from decimal import * + +print("Loop begin") + +# definition of the Bethe-Slater function +def func(x,a,b,c): + return 4*a*((x/c)**2)*(1-b*(x/c)**2)*np.exp(-(x/c)**2) + +# exchange coeff table (data to fit) +rdata, Jdata = np.loadtxt('exchange_fcc_ni.dat', usecols=(0,1), unpack=True) +plt.plot(rdata, Jdata, 'b-', label='data') + +# perform the fit +popt, pcov = curve_fit(func, rdata, Jdata, bounds=([0.0,-1.0,0.0], [100.,5.,5.])) +plt.plot(rdata, func(rdata, *popt), 'r--', label='fit') + +# print the fitted parameters +print("Parameters: a={:.10} (in meV), b={:.10} (adim), c={:.10} (in Ang)".format(*popt)) + +# ploting the result +plt.xlabel('r_ij') +pylab.xlim([0.0,6.5]) +#pylab.ylim([-2.0,10.0]) +plt.ylabel('J_ij') +plt.legend() +plt.show() + +print("Loop end") diff --git a/examples/SPIN/nickel/in.spin.nickel b/examples/SPIN/nickel/in.spin.nickel new file mode 100644 index 0000000000000000000000000000000000000000..ba447b077f24c4ee1213aca34325d370657b1f4e --- /dev/null +++ b/examples/SPIN/nickel/in.spin.nickel @@ -0,0 +1,58 @@ +# fcc nickel in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice fcc 3.524 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +create_atoms 1 box + +# setting mass, mag. moments, and interactions for cobalt + +mass 1 58.69 + +set group all spin/random 31 0.63 +#set group all spin 0.63 0.0 0.0 1.0 +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Ni99.eam.alloy Ni +pair_coeff * * spin/exchange exchange 4.0 0.50 0.2280246862 1.229983475 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp v_tmag etotal +thermo 50 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 50 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 2000 + diff --git a/examples/SPIN/nickel/log.11May18.spin.nickel.g++.1 b/examples/SPIN/nickel/log.11May18.spin.nickel.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..82f54f4e6b208c946edb445c6ec57b5780912802 --- /dev/null +++ b/examples/SPIN/nickel/log.11May18.spin.nickel.g++.1 @@ -0,0 +1,157 @@ +LAMMPS (11 May 2018) +# fcc nickel in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice fcc 3.524 +Lattice spacing in x,y,z = 3.524 3.524 3.524 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (17.62 17.62 17.62) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 500 atoms + Time spent = 0.000804186 secs + +# setting mass, mag. moments, and interactions for cobalt + +mass 1 58.69 + +set group all spin/random 31 0.63 + 500 settings made for spin/random +#set group all spin 0.63 0.0 0.0 1.0 +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Ni99.eam.alloy Ni +pair_coeff * * spin/exchange exchange 4.0 0.50 0.2280246862 1.229983475 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp v_tmag etotal +thermo 50 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 50 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 2000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5.90375 + ghost atom cutoff = 5.90375 + binsize = 2.95187, bins = 6 6 6 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.384 | 7.384 | 7.384 Mbytes +Step Time v_magnorm v_emag Temp v_tmag TotEng + 0 0 0.028733803 0.40997576 100.03408 -9550.1342 -2218.1018 + 50 0.005 0.028733807 0.070491717 101.47879 -56307.038 -2218.1018 + 100 0.01 0.028733815 -0.70937134 101.7311 5851.6355 -2218.1018 + 150 0.015 0.028733823 -1.853981 99.63039 2395.8677 -2218.1018 + 200 0.02 0.028733828 -3.2679239 94.850105 1482.3486 -2218.1018 + 250 0.025 0.028733824 -4.863967 88.444584 1100.7396 -2218.1018 + 300 0.03 0.028733807 -6.5763457 82.689581 899.56642 -2218.1018 + 350 0.035 0.028733783 -8.3489158 80.108798 768.64457 -2218.1018 + 400 0.04 0.028733763 -10.120216 82.374947 670.03091 -2218.1018 + 450 0.045 0.028733755 -11.828932 89.814597 593.77931 -2218.1018 + 500 0.05 0.028733762 -13.423712 101.39613 535.03371 -2218.1018 + 550 0.055 0.028733783 -14.866724 115.07399 489.92024 -2218.1018 + 600 0.06 0.028733801 -16.135279 128.57849 458.66654 -2218.1018 + 650 0.065 0.028733804 -17.222838 140.22402 440.11437 -2218.1018 + 700 0.07 0.028733795 -18.154813 149.61295 425.91356 -2218.1018 + 750 0.075 0.028733781 -18.996903 157.5814 412.82654 -2218.1018 + 800 0.08 0.028733768 -19.804249 164.92075 407.77954 -2218.1018 + 850 0.085 0.028733752 -20.579151 171.67278 406.84726 -2218.1018 + 900 0.09 0.028733728 -21.294277 177.67238 399.69633 -2218.1018 + 950 0.095 0.028733715 -21.943945 183.2621 389.92281 -2218.1018 + 1000 0.1 0.02873374 -22.551277 188.99284 383.19592 -2218.1018 + 1050 0.105 0.028733783 -23.120147 194.51391 375.87245 -2218.1018 + 1100 0.11 0.028733792 -23.602325 198.18631 365.37753 -2218.1018 + 1150 0.115 0.028733774 -23.976048 199.04022 354.04863 -2218.1018 + 1200 0.12 0.02873376 -24.31575 198.41999 346.40397 -2218.1018 + 1250 0.125 0.028733759 -24.718347 198.3669 343.1701 -2218.1018 + 1300 0.13 0.028733765 -25.189073 199.57949 336.90052 -2218.1018 + 1350 0.135 0.028733774 -25.650252 201.45897 329.07023 -2218.1018 + 1400 0.14 0.028733785 -26.042702 203.6926 327.97373 -2218.1018 + 1450 0.145 0.028733791 -26.373965 206.80469 327.38747 -2218.1018 + 1500 0.15 0.028733791 -26.691802 211.43923 322.75885 -2218.1018 + 1550 0.155 0.028733794 -27.021573 217.10969 315.55781 -2218.1018 + 1600 0.16 0.028733792 -27.344066 222.16052 310.6743 -2218.1018 + 1650 0.165 0.028733788 -27.640017 225.28449 310.49671 -2218.1018 + 1700 0.17 0.028733803 -27.907241 226.37676 310.9389 -2218.1018 + 1750 0.175 0.028733828 -28.143477 226.31095 313.28034 -2218.1018 + 1800 0.18 0.028733833 -28.363397 226.43633 317.31668 -2218.1018 + 1850 0.185 0.028733811 -28.58153 227.36287 318.98645 -2218.1018 + 1900 0.19 0.028733796 -28.785208 228.39889 316.9972 -2218.1018 + 1950 0.195 0.028733826 -28.9724 228.84666 309.8027 -2218.1018 + 2000 0.2 0.02873386 -29.175039 228.918 297.88519 -2218.1018 +Loop time of 10.033 on 1 procs for 2000 steps with 500 atoms + +Performance: 1.722 ns/day, 13.935 hours/ns, 199.342 timesteps/s +99.4% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 3.909 | 3.909 | 3.909 | 0.0 | 38.96 +Neigh | 0.031031 | 0.031031 | 0.031031 | 0.0 | 0.31 +Comm | 0.046559 | 0.046559 | 0.046559 | 0.0 | 0.46 +Output | 2.4087 | 2.4087 | 2.4087 | 0.0 | 24.01 +Modify | 3.625 | 3.625 | 3.625 | 0.0 | 36.13 +Other | | 0.01268 | | | 0.13 + +Nlocal: 500 ave 500 max 500 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 1956 ave 1956 max 1956 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 19508 ave 19508 max 19508 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 39016 ave 39016 max 39016 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 39016 +Ave neighs/atom = 78.032 +Neighbor list builds = 21 +Dangerous builds = 0 + + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:10 diff --git a/examples/SPIN/nickel/log.11May18.spin.nickel.g++.4 b/examples/SPIN/nickel/log.11May18.spin.nickel.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..373271459f2e68ede27cbd9b7fa635bc089c917f --- /dev/null +++ b/examples/SPIN/nickel/log.11May18.spin.nickel.g++.4 @@ -0,0 +1,157 @@ +LAMMPS (11 May 2018) +# fcc nickel in a 3d periodic box + +clear +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice fcc 3.524 +Lattice spacing in x,y,z = 3.524 3.524 3.524 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (17.62 17.62 17.62) + 1 by 2 by 2 MPI processor grid +create_atoms 1 box +Created 500 atoms + Time spent = 0.000523567 secs + +# setting mass, mag. moments, and interactions for cobalt + +mass 1 58.69 + +set group all spin/random 31 0.63 + 500 settings made for spin/random +#set group all spin 0.63 0.0 0.0 1.0 +velocity all create 100 4928459 rot yes dist gaussian + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Ni99.eam.alloy Ni +pair_coeff * * spin/exchange exchange 4.0 0.50 0.2280246862 1.229983475 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp v_tmag etotal +thermo 50 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 50 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 2000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5.90375 + ghost atom cutoff = 5.90375 + binsize = 2.95187, bins = 6 6 6 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.298 | 7.298 | 7.298 Mbytes +Step Time v_magnorm v_emag Temp v_tmag TotEng + 0 0 0.028733803 0.40997576 100.03408 -9550.1342 -2218.1018 + 50 0.005 0.028733805 0.25324083 98.741633 -15727.749 -2218.1018 + 100 0.01 0.028733812 -0.37320751 97.073875 11244.373 -2218.1018 + 150 0.015 0.028733819 -1.3971549 94.073447 3250.0517 -2218.1018 + 200 0.02 0.028733825 -2.7238372 89.419944 1838.752 -2218.1018 + 250 0.025 0.028733829 -4.2684428 84.07494 1304.3675 -2218.1018 + 300 0.03 0.028733824 -5.9636712 80.06368 1025.7815 -2218.1018 + 350 0.035 0.02873381 -7.7386326 79.366702 844.49729 -2218.1018 + 400 0.04 0.028733802 -9.5148059 83.052751 715.20758 -2218.1018 + 450 0.045 0.028733806 -11.234935 91.282747 621.75552 -2218.1018 + 500 0.05 0.02873381 -12.875184 103.49836 550.04479 -2218.1018 + 550 0.055 0.028733808 -14.413473 118.16526 495.70417 -2218.1018 + 600 0.06 0.028733803 -15.812466 132.83837 461.35805 -2218.1018 + 650 0.065 0.028733808 -17.061311 145.41049 444.38951 -2218.1018 + 700 0.07 0.028733818 -18.181903 154.83414 438.85866 -2218.1018 + 750 0.075 0.028733823 -19.176259 160.58645 436.90462 -2218.1018 + 800 0.08 0.028733825 -20.035157 163.02829 429.73193 -2218.1018 + 850 0.085 0.028733825 -20.806548 164.4197 419.73763 -2218.1018 + 900 0.09 0.028733829 -21.571419 167.8571 411.59699 -2218.1018 + 950 0.095 0.028733825 -22.365879 175.00875 402.66175 -2218.1018 + 1000 0.1 0.028733821 -23.133464 184.68305 391.05824 -2218.1018 + 1050 0.105 0.028733833 -23.770507 193.83795 379.23354 -2218.1018 + 1100 0.11 0.02873385 -24.249882 200.5039 372.08521 -2218.1018 + 1150 0.115 0.028733864 -24.630489 204.46984 367.92135 -2218.1018 + 1200 0.12 0.028733877 -24.956281 205.96624 363.72367 -2218.1018 + 1250 0.125 0.028733884 -25.227332 205.18503 361.09236 -2218.1018 + 1300 0.13 0.028733877 -25.43568 202.76969 359.10924 -2218.1018 + 1350 0.135 0.028733868 -25.588748 199.85462 358.69556 -2218.1018 + 1400 0.14 0.028733866 -25.723582 197.99165 360.27856 -2218.1018 + 1450 0.145 0.028733851 -25.866283 198.30283 360.46623 -2218.1018 + 1500 0.15 0.028733812 -26.014569 200.95517 354.66722 -2218.1018 + 1550 0.155 0.02873379 -26.192673 205.95485 348.37935 -2218.1018 + 1600 0.16 0.028733795 -26.444059 212.87557 345.53576 -2218.1018 + 1650 0.165 0.028733838 -26.75551 219.86449 338.9224 -2218.1018 + 1700 0.17 0.028733868 -27.068513 224.47868 327.81241 -2218.1018 + 1750 0.175 0.028733862 -27.344118 225.62318 319.85486 -2218.1018 + 1800 0.18 0.028733849 -27.57563 224.07463 320.07064 -2218.1018 + 1850 0.185 0.028733852 -27.774274 221.70618 323.12599 -2218.1018 + 1900 0.19 0.028733864 -27.967999 220.53947 322.9504 -2218.1018 + 1950 0.195 0.028733863 -28.173041 221.61407 318.63401 -2218.1018 + 2000 0.2 0.028733853 -28.362177 224.22281 310.55185 -2218.1018 +Loop time of 3.95094 on 4 procs for 2000 steps with 500 atoms + +Performance: 4.374 ns/day, 5.487 hours/ns, 506.208 timesteps/s +98.1% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 1.0289 | 1.0467 | 1.0811 | 2.0 | 26.49 +Neigh | 0.0079527 | 0.0081946 | 0.0084369 | 0.2 | 0.21 +Comm | 0.094456 | 0.13311 | 0.15138 | 6.2 | 3.37 +Output | 0.69702 | 0.71998 | 0.74483 | 2.1 | 18.22 +Modify | 2.0107 | 2.0383 | 2.0598 | 1.3 | 51.59 +Other | | 0.004668 | | | 0.12 + +Nlocal: 125 ave 132 max 120 min +Histogram: 2 0 0 0 0 1 0 0 0 1 +Nghost: 1099 ave 1104 max 1092 min +Histogram: 1 0 0 0 1 0 0 0 0 2 +Neighs: 4876.5 ave 5100 max 4721 min +Histogram: 2 0 0 0 0 1 0 0 0 1 +FullNghs: 9753 ave 10296 max 9362 min +Histogram: 2 0 0 0 0 1 0 0 0 1 + +Total # of neighbors = 39012 +Ave neighs/atom = 78.024 +Neighbor list builds = 21 +Dangerous builds = 0 + + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:04 diff --git a/examples/SPIN/read_restart/Co_PurjaPun_2012.eam.alloy b/examples/SPIN/read_restart/Co_PurjaPun_2012.eam.alloy new file mode 120000 index 0000000000000000000000000000000000000000..6a47c9eebef2dc333daa871fc882f2afc038bd4c --- /dev/null +++ b/examples/SPIN/read_restart/Co_PurjaPun_2012.eam.alloy @@ -0,0 +1 @@ +../cobalt_fcc/Co_PurjaPun_2012.eam.alloy \ No newline at end of file diff --git a/examples/SPIN/read_restart/Norm_randXY_8x8x32.data b/examples/SPIN/read_restart/Norm_randXY_8x8x32.data new file mode 100644 index 0000000000000000000000000000000000000000..d239bb6ca07359deb45bf37e6fbbb7447fa8458a --- /dev/null +++ b/examples/SPIN/read_restart/Norm_randXY_8x8x32.data @@ -0,0 +1,8207 @@ +LAMMPS data file via write_data, version 4 May 2017, timestep = 0 + +8192 atoms +1 atom types + +0.0000000000000000e+00 2.8320000000000000e+01 xlo xhi +0.0000000000000000e+00 2.8320000000000000e+01 ylo yhi +0.0000000000000000e+00 1.1328000000000000e+02 zlo zhi + +Masses + +1 58.93 + +Atoms # spin + +1 1 1.72 0.0 0.0 0.0 0.52887 -0.848703 1.0 +2 1 1.72 1.77 1.77 0.0 -0.745115 -0.666936 1.0 +3 1 1.72 1.77 0.0 1.77 -0.989437 -0.144964 1.0 +4 1 1.72 0.0 1.77 1.77 0.999926 -0.0121449 1.0 +5 1 1.72 3.54 0.0 0.0 0.377063 -0.926188 1.0 +6 1 1.72 5.31 1.77 0.0 0.412944 0.910756 1.0 +7 1 1.72 5.31 0.0 1.77 -0.999979 0.00650985 1.0 +8 1 1.72 3.54 1.77 1.77 0.535453 -0.844565 1.0 +9 1 1.72 7.0799999 0.0 0.0 -0.986135 0.165942 1.0 +10 1 1.72 8.8500004 1.77 0.0 -0.37352 -0.927622 1.0 +11 1 1.72 8.8500004 0.0 1.77 -0.926878 0.375363 1.0 +12 1 1.72 7.0799999 1.77 1.77 -0.690063 -0.72375 1.0 +13 1 1.72 10.6199999 0.0 0.0 -0.7204 -0.693559 1.0 +14 1 1.72 12.3900004 1.77 0.0 -0.832046 -0.554707 1.0 +15 1 1.72 12.3900004 0.0 1.77 0.23719 0.971463 1.0 +16 1 1.72 10.6199999 1.77 1.77 0.456617 -0.889663 1.0 +17 1 1.72 14.1599999 0.0 0.0 -0.661715 0.749755 1.0 +18 1 1.72 15.9300004 1.77 0.0 -0.847309 -0.531099 1.0 +19 1 1.72 15.9300004 0.0 1.77 -0.956536 0.291614 1.0 +20 1 1.72 14.1599999 1.77 1.77 -0.770778 -0.637104 1.0 +21 1 1.72 17.7000008 0.0 0.0 -0.896558 -0.442927 1.0 +22 1 1.72 19.4699993 1.77 0.0 0.557673 0.830061 1.0 +23 1 1.72 19.4699993 0.0 1.77 0.983224 0.182403 1.0 +24 1 1.72 17.7000008 1.77 1.77 -0.939201 0.343368 1.0 +25 1 1.72 21.2399998 0.0 0.0 0.894393 0.447281 1.0 +26 1 1.72 23.0100002 1.77 0.0 0.484661 0.874702 1.0 +27 1 1.72 23.0100002 0.0 1.77 0.525609 -0.850726 1.0 +28 1 1.72 21.2399998 1.77 1.77 0.551899 0.833911 1.0 +29 1 1.72 24.7800007 0.0 0.0 -0.307979 0.951393 1.0 +30 1 1.72 26.5499993 1.77 0.0 -0.993353 -0.115107 1.0 +31 1 1.72 26.5499993 0.0 1.77 0.786777 -0.617237 1.0 +32 1 1.72 24.7800007 1.77 1.77 -0.646691 0.762752 1.0 +33 1 1.72 0.0 3.54 0.0 0.119106 -0.992881 1.0 +34 1 1.72 1.77 5.31 0.0 0.719383 0.694614 1.0 +35 1 1.72 1.77 3.54 1.77 -0.704699 0.709506 1.0 +36 1 1.72 0.0 5.31 1.77 0.795511 -0.605939 1.0 +37 1 1.72 3.54 3.54 0.0 -0.97 -0.243107 1.0 +38 1 1.72 5.31 5.31 0.0 0.976076 0.217428 1.0 +39 1 1.72 5.31 3.54 1.77 0.735471 -0.677556 1.0 +40 1 1.72 3.54 5.31 1.77 -0.319137 -0.947708 1.0 +41 1 1.72 7.0799999 3.54 0.0 -0.610942 0.791675 1.0 +42 1 1.72 8.8500004 5.31 0.0 -0.679543 0.733635 1.0 +43 1 1.72 8.8500004 3.54 1.77 0.983607 -0.180324 1.0 +44 1 1.72 7.0799999 5.31 1.77 -0.217118 -0.976145 1.0 +45 1 1.72 10.6199999 3.54 0.0 -0.997762 0.0668716 1.0 +46 1 1.72 12.3900004 5.31 0.0 0.275194 -0.961389 1.0 +47 1 1.72 12.3900004 3.54 1.77 -0.828419 -0.560108 1.0 +48 1 1.72 10.6199999 5.31 1.77 0.118246 -0.992984 1.0 +49 1 1.72 14.1599999 3.54 0.0 0.737418 0.675437 1.0 +50 1 1.72 15.9300004 5.31 0.0 0.723539 -0.690283 1.0 +51 1 1.72 15.9300004 3.54 1.77 0.445177 0.895443 1.0 +52 1 1.72 14.1599999 5.31 1.77 -0.0224847 -0.999747 1.0 +53 1 1.72 17.7000008 3.54 0.0 -0.0340097 0.999422 1.0 +54 1 1.72 19.4699993 5.31 0.0 -0.842076 -0.539358 1.0 +55 1 1.72 19.4699993 3.54 1.77 0.628732 -0.777622 1.0 +56 1 1.72 17.7000008 5.31 1.77 -0.710873 -0.70332 1.0 +57 1 1.72 21.2399998 3.54 0.0 -0.997492 0.0707798 1.0 +58 1 1.72 23.0100002 5.31 0.0 -0.643338 -0.765582 1.0 +59 1 1.72 23.0100002 3.54 1.77 -0.891542 0.452938 1.0 +60 1 1.72 21.2399998 5.31 1.77 -0.576343 -0.817208 1.0 +61 1 1.72 24.7800007 3.54 0.0 0.915658 -0.401959 1.0 +62 1 1.72 26.5499993 5.31 0.0 -0.674018 -0.738715 1.0 +63 1 1.72 26.5499993 3.54 1.77 -0.92775 -0.373203 1.0 +64 1 1.72 24.7800007 5.31 1.77 -0.336441 0.941705 1.0 +65 1 1.72 0.0 7.0799999 0.0 0.499974 0.86604 1.0 +66 1 1.72 1.77 8.8500004 0.0 -0.582403 0.8129 1.0 +67 1 1.72 1.77 7.0799999 1.77 0.46326 -0.886222 1.0 +68 1 1.72 0.0 8.8500004 1.77 0.812676 -0.582716 1.0 +69 1 1.72 3.54 7.0799999 0.0 0.572515 0.819894 1.0 +70 1 1.72 5.31 8.8500004 0.0 -0.765807 -0.64307 1.0 +71 1 1.72 5.31 7.0799999 1.77 0.474871 0.880056 1.0 +72 1 1.72 3.54 8.8500004 1.77 -0.975682 -0.219192 1.0 +73 1 1.72 7.0799999 7.0799999 0.0 -0.810957 0.585105 1.0 +74 1 1.72 8.8500004 8.8500004 0.0 -0.877575 0.479439 1.0 +75 1 1.72 8.8500004 7.0799999 1.77 0.824057 -0.566506 1.0 +76 1 1.72 7.0799999 8.8500004 1.77 0.297271 0.954793 1.0 +77 1 1.72 10.6199999 7.0799999 0.0 -0.681778 -0.731559 1.0 +78 1 1.72 12.3900004 8.8500004 0.0 -0.76147 0.6482 1.0 +79 1 1.72 12.3900004 7.0799999 1.77 -0.486873 0.873473 1.0 +80 1 1.72 10.6199999 8.8500004 1.77 0.00912428 -0.999958 1.0 +81 1 1.72 14.1599999 7.0799999 0.0 0.713557 0.700597 1.0 +82 1 1.72 15.9300004 8.8500004 0.0 0.868807 -0.495151 1.0 +83 1 1.72 15.9300004 7.0799999 1.77 -1 -0.000534854 1.0 +84 1 1.72 14.1599999 8.8500004 1.77 -0.574785 0.818304 1.0 +85 1 1.72 17.7000008 7.0799999 0.0 0.989393 0.145267 1.0 +86 1 1.72 19.4699993 8.8500004 0.0 -0.999806 -0.0197183 1.0 +87 1 1.72 19.4699993 7.0799999 1.77 0.4586 -0.888643 1.0 +88 1 1.72 17.7000008 8.8500004 1.77 -0.883298 -0.468811 1.0 +89 1 1.72 21.2399998 7.0799999 0.0 -0.824627 0.565677 1.0 +90 1 1.72 23.0100002 8.8500004 0.0 -0.832761 0.553633 1.0 +91 1 1.72 23.0100002 7.0799999 1.77 -0.619129 -0.78529 1.0 +92 1 1.72 21.2399998 8.8500004 1.77 -0.146701 -0.989181 1.0 +93 1 1.72 24.7800007 7.0799999 0.0 -0.730554 0.682855 1.0 +94 1 1.72 26.5499993 8.8500004 0.0 -0.969609 -0.244661 1.0 +95 1 1.72 26.5499993 7.0799999 1.77 0.833097 0.553128 1.0 +96 1 1.72 24.7800007 8.8500004 1.77 -0.236089 0.971731 1.0 +97 1 1.72 0.0 10.6199999 0.0 -0.367374 -0.930073 1.0 +98 1 1.72 1.77 12.3900004 0.0 0.881557 -0.472078 1.0 +99 1 1.72 1.77 10.6199999 1.77 0.532092 -0.846686 1.0 +100 1 1.72 0.0 12.3900004 1.77 0.214293 -0.976769 1.0 +101 1 1.72 3.54 10.6199999 0.0 0.952842 0.303466 1.0 +102 1 1.72 5.31 12.3900004 0.0 0.704914 0.709293 1.0 +103 1 1.72 5.31 10.6199999 1.77 -0.379284 0.92528 1.0 +104 1 1.72 3.54 12.3900004 1.77 0.474349 0.880337 1.0 +105 1 1.72 7.0799999 10.6199999 0.0 -0.617116 0.786872 1.0 +106 1 1.72 8.8500004 12.3900004 0.0 -0.999836 0.0181093 1.0 +107 1 1.72 8.8500004 10.6199999 1.77 0.0846455 0.996411 1.0 +108 1 1.72 7.0799999 12.3900004 1.77 0.857559 0.514386 1.0 +109 1 1.72 10.6199999 10.6199999 0.0 0.567582 0.823317 1.0 +110 1 1.72 12.3900004 12.3900004 0.0 -0.966803 0.255521 1.0 +111 1 1.72 12.3900004 10.6199999 1.77 -0.675642 -0.73723 1.0 +112 1 1.72 10.6199999 12.3900004 1.77 -0.999943 -0.0106872 1.0 +113 1 1.72 14.1599999 10.6199999 0.0 -0.990729 0.135851 1.0 +114 1 1.72 15.9300004 12.3900004 0.0 -0.599943 0.800043 1.0 +115 1 1.72 15.9300004 10.6199999 1.77 0.970749 0.240097 1.0 +116 1 1.72 14.1599999 12.3900004 1.77 0.850547 -0.525898 1.0 +117 1 1.72 17.7000008 10.6199999 0.0 0.328418 -0.944533 1.0 +118 1 1.72 19.4699993 12.3900004 0.0 -0.644174 -0.764879 1.0 +119 1 1.72 19.4699993 10.6199999 1.77 0.380357 0.92484 1.0 +120 1 1.72 17.7000008 12.3900004 1.77 0.512588 -0.858635 1.0 +121 1 1.72 21.2399998 10.6199999 0.0 -0.994323 -0.106404 1.0 +122 1 1.72 23.0100002 12.3900004 0.0 0.757848 -0.652431 1.0 +123 1 1.72 23.0100002 10.6199999 1.77 -0.453043 0.891489 1.0 +124 1 1.72 21.2399998 12.3900004 1.77 -0.108525 -0.994094 1.0 +125 1 1.72 24.7800007 10.6199999 0.0 -0.951461 -0.30777 1.0 +126 1 1.72 26.5499993 12.3900004 0.0 -0.156148 -0.987734 1.0 +127 1 1.72 26.5499993 10.6199999 1.77 -0.0498593 0.998756 1.0 +128 1 1.72 24.7800007 12.3900004 1.77 -0.765373 0.643587 1.0 +129 1 1.72 0.0 0.0 3.54 0.102937 -0.994688 1.0 +130 1 1.72 1.77 1.77 3.54 0.521765 -0.853089 1.0 +131 1 1.72 1.77 0.0 5.31 0.782175 -0.623058 1.0 +132 1 1.72 0.0 1.77 5.31 -0.52733 0.84966 1.0 +133 1 1.72 3.54 0.0 3.54 -0.866538 0.499111 1.0 +134 1 1.72 5.31 1.77 3.54 0.688635 0.725108 1.0 +135 1 1.72 5.31 0.0 5.31 -0.993703 0.112043 1.0 +136 1 1.72 3.54 1.77 5.31 0.63582 -0.771837 1.0 +137 1 1.72 7.0799999 0.0 3.54 -0.780124 -0.625625 1.0 +138 1 1.72 8.8500004 1.77 3.54 -0.9995 0.0316303 1.0 +139 1 1.72 8.8500004 0.0 5.31 -0.60287 -0.797839 1.0 +140 1 1.72 7.0799999 1.77 5.31 0.668511 -0.743702 1.0 +141 1 1.72 10.6199999 0.0 3.54 0.772127 0.635468 1.0 +142 1 1.72 12.3900004 1.77 3.54 -0.477427 0.878671 1.0 +143 1 1.72 12.3900004 0.0 5.31 0.948008 -0.318247 1.0 +144 1 1.72 10.6199999 1.77 5.31 -0.84749 -0.530812 1.0 +145 1 1.72 14.1599999 0.0 3.54 -0.611867 0.790961 1.0 +146 1 1.72 15.9300004 1.77 3.54 0.999844 0.0176539 1.0 +147 1 1.72 15.9300004 0.0 5.31 -0.439551 -0.898218 1.0 +148 1 1.72 14.1599999 1.77 5.31 0.221059 -0.97526 1.0 +149 1 1.72 17.7000008 0.0 3.54 0.362034 -0.932165 1.0 +150 1 1.72 19.4699993 1.77 3.54 0.990126 -0.140181 1.0 +151 1 1.72 19.4699993 0.0 5.31 -0.901732 -0.432295 1.0 +152 1 1.72 17.7000008 1.77 5.31 -0.539132 0.842222 1.0 +153 1 1.72 21.2399998 0.0 3.54 0.8064 -0.591371 1.0 +154 1 1.72 23.0100002 1.77 3.54 -0.634078 -0.773269 1.0 +155 1 1.72 23.0100002 0.0 5.31 -0.82646 -0.562995 1.0 +156 1 1.72 21.2399998 1.77 5.31 0.54415 -0.838988 1.0 +157 1 1.72 24.7800007 0.0 3.54 0.168534 -0.985696 1.0 +158 1 1.72 26.5499993 1.77 3.54 0.467956 0.883752 1.0 +159 1 1.72 26.5499993 0.0 5.31 -0.432586 -0.901593 1.0 +160 1 1.72 24.7800007 1.77 5.31 0.758413 -0.651774 1.0 +161 1 1.72 0.0 3.54 3.54 -0.942909 -0.33305 1.0 +162 1 1.72 1.77 5.31 3.54 0.909319 0.416099 1.0 +163 1 1.72 1.77 3.54 5.31 -0.443879 0.896087 1.0 +164 1 1.72 0.0 5.31 5.31 0.00137294 -0.999999 1.0 +165 1 1.72 3.54 3.54 3.54 0.463786 0.885947 1.0 +166 1 1.72 5.31 5.31 3.54 0.571784 0.820404 1.0 +167 1 1.72 5.31 3.54 5.31 -0.775086 0.631856 1.0 +168 1 1.72 3.54 5.31 5.31 -0.852559 -0.522631 1.0 +169 1 1.72 7.0799999 3.54 3.54 0.615898 0.787826 1.0 +170 1 1.72 8.8500004 5.31 3.54 0.665727 -0.746196 1.0 +171 1 1.72 8.8500004 3.54 5.31 0.348981 -0.93713 1.0 +172 1 1.72 7.0799999 5.31 5.31 -0.984144 -0.177372 1.0 +173 1 1.72 10.6199999 3.54 3.54 -0.118519 -0.992952 1.0 +174 1 1.72 12.3900004 5.31 3.54 0.273523 0.961865 1.0 +175 1 1.72 12.3900004 3.54 5.31 -0.563501 -0.826116 1.0 +176 1 1.72 10.6199999 5.31 5.31 0.885827 0.464016 1.0 +177 1 1.72 14.1599999 3.54 3.54 0.547215 0.836992 1.0 +178 1 1.72 15.9300004 5.31 3.54 0.00952804 0.999955 1.0 +179 1 1.72 15.9300004 3.54 5.31 -0.985737 -0.168295 1.0 +180 1 1.72 14.1599999 5.31 5.31 -0.324131 -0.946012 1.0 +181 1 1.72 17.7000008 3.54 3.54 0.926524 -0.376235 1.0 +182 1 1.72 19.4699993 5.31 3.54 0.86068 0.509147 1.0 +183 1 1.72 19.4699993 3.54 5.31 -0.990706 -0.136021 1.0 +184 1 1.72 17.7000008 5.31 5.31 0.892393 -0.451258 1.0 +185 1 1.72 21.2399998 3.54 3.54 -0.303547 -0.952816 1.0 +186 1 1.72 23.0100002 5.31 3.54 0.920916 0.389761 1.0 +187 1 1.72 23.0100002 3.54 5.31 -0.777103 -0.629373 1.0 +188 1 1.72 21.2399998 5.31 5.31 0.510707 0.859755 1.0 +189 1 1.72 24.7800007 3.54 3.54 -0.65805 0.752974 1.0 +190 1 1.72 26.5499993 5.31 3.54 -0.804723 0.593651 1.0 +191 1 1.72 26.5499993 3.54 5.31 0.408331 -0.912834 1.0 +192 1 1.72 24.7800007 5.31 5.31 0.746295 0.665615 1.0 +193 1 1.72 0.0 7.0799999 3.54 0.492599 -0.870256 1.0 +194 1 1.72 1.77 8.8500004 3.54 0.767038 -0.641602 1.0 +195 1 1.72 1.77 7.0799999 5.31 -0.840902 -0.541187 1.0 +196 1 1.72 0.0 8.8500004 5.31 0.640285 -0.768137 1.0 +197 1 1.72 3.54 7.0799999 3.54 0.142679 -0.989769 1.0 +198 1 1.72 5.31 8.8500004 3.54 -0.955626 -0.294582 1.0 +199 1 1.72 5.31 7.0799999 5.31 0.74547 -0.666539 1.0 +200 1 1.72 3.54 8.8500004 5.31 -0.661162 0.750243 1.0 +201 1 1.72 7.0799999 7.0799999 3.54 0.771617 -0.636088 1.0 +202 1 1.72 8.8500004 8.8500004 3.54 0.629308 0.777156 1.0 +203 1 1.72 8.8500004 7.0799999 5.31 -0.547181 0.837014 1.0 +204 1 1.72 7.0799999 8.8500004 5.31 -0.993312 0.115457 1.0 +205 1 1.72 10.6199999 7.0799999 3.54 0.834975 0.550288 1.0 +206 1 1.72 12.3900004 8.8500004 3.54 0.664691 0.747118 1.0 +207 1 1.72 12.3900004 7.0799999 5.31 -0.200111 -0.979773 1.0 +208 1 1.72 10.6199999 8.8500004 5.31 0.801035 0.598618 1.0 +209 1 1.72 14.1599999 7.0799999 3.54 -0.58623 -0.810144 1.0 +210 1 1.72 15.9300004 8.8500004 3.54 0.904936 -0.425548 1.0 +211 1 1.72 15.9300004 7.0799999 5.31 0.666075 0.745885 1.0 +212 1 1.72 14.1599999 8.8500004 5.31 0.325616 -0.945502 1.0 +213 1 1.72 17.7000008 7.0799999 3.54 -0.999906 -0.0136787 1.0 +214 1 1.72 19.4699993 8.8500004 3.54 0.750515 -0.660853 1.0 +215 1 1.72 19.4699993 7.0799999 5.31 -0.539904 0.841727 1.0 +216 1 1.72 17.7000008 8.8500004 5.31 -0.0929708 -0.995669 1.0 +217 1 1.72 21.2399998 7.0799999 3.54 -0.70959 -0.704614 1.0 +218 1 1.72 23.0100002 8.8500004 3.54 0.402659 -0.91535 1.0 +219 1 1.72 23.0100002 7.0799999 5.31 0.766076 -0.64275 1.0 +220 1 1.72 21.2399998 8.8500004 5.31 -0.983381 -0.181552 1.0 +221 1 1.72 24.7800007 7.0799999 3.54 -0.573555 -0.819167 1.0 +222 1 1.72 26.5499993 8.8500004 3.54 0.842039 -0.539416 1.0 +223 1 1.72 26.5499993 7.0799999 5.31 -0.914245 0.405161 1.0 +224 1 1.72 24.7800007 8.8500004 5.31 -0.975994 -0.217798 1.0 +225 1 1.72 0.0 10.6199999 3.54 -0.949605 0.313448 1.0 +226 1 1.72 1.77 12.3900004 3.54 -0.911048 0.412301 1.0 +227 1 1.72 1.77 10.6199999 5.31 0.878063 0.478545 1.0 +228 1 1.72 0.0 12.3900004 5.31 0.404541 0.91452 1.0 +229 1 1.72 3.54 10.6199999 3.54 -0.98993 0.141557 1.0 +230 1 1.72 5.31 12.3900004 3.54 -0.662101 -0.749415 1.0 +231 1 1.72 5.31 10.6199999 5.31 -0.970876 0.239583 1.0 +232 1 1.72 3.54 12.3900004 5.31 -0.927277 -0.374377 1.0 +233 1 1.72 7.0799999 10.6199999 3.54 -0.833108 -0.55311 1.0 +234 1 1.72 8.8500004 12.3900004 3.54 0.507726 -0.861519 1.0 +235 1 1.72 8.8500004 10.6199999 5.31 -0.745958 -0.665993 1.0 +236 1 1.72 7.0799999 12.3900004 5.31 -0.942675 0.333713 1.0 +237 1 1.72 10.6199999 10.6199999 3.54 -0.354976 -0.934875 1.0 +238 1 1.72 12.3900004 12.3900004 3.54 -0.975296 -0.220901 1.0 +239 1 1.72 12.3900004 10.6199999 5.31 0.767393 -0.641177 1.0 +240 1 1.72 10.6199999 12.3900004 5.31 0.0877828 0.99614 1.0 +241 1 1.72 14.1599999 10.6199999 3.54 -0.770025 -0.638013 1.0 +242 1 1.72 15.9300004 12.3900004 3.54 -0.791835 0.610734 1.0 +243 1 1.72 15.9300004 10.6199999 5.31 0.771802 0.635863 1.0 +244 1 1.72 14.1599999 12.3900004 5.31 -0.388481 0.921457 1.0 +245 1 1.72 17.7000008 10.6199999 3.54 -0.516274 -0.856423 1.0 +246 1 1.72 19.4699993 12.3900004 3.54 -0.877053 -0.480394 1.0 +247 1 1.72 19.4699993 10.6199999 5.31 -0.315767 -0.948837 1.0 +248 1 1.72 17.7000008 12.3900004 5.31 0.321353 0.94696 1.0 +249 1 1.72 21.2399998 10.6199999 3.54 0.314798 0.949159 1.0 +250 1 1.72 23.0100002 12.3900004 3.54 0.528894 0.848688 1.0 +251 1 1.72 23.0100002 10.6199999 5.31 -0.898401 0.439177 1.0 +252 1 1.72 21.2399998 12.3900004 5.31 0.616057 -0.787702 1.0 +253 1 1.72 24.7800007 10.6199999 3.54 0.987731 -0.156167 1.0 +254 1 1.72 26.5499993 12.3900004 3.54 -0.744935 -0.667137 1.0 +255 1 1.72 26.5499993 10.6199999 5.31 -0.817643 -0.575726 1.0 +256 1 1.72 24.7800007 12.3900004 5.31 0.876355 0.481665 1.0 +257 1 1.72 0.0 0.0 7.0799999 -0.76417 -0.645015 1.0 +258 1 1.72 1.77 1.77 7.0799999 0.999563 0.0295524 1.0 +259 1 1.72 1.77 0.0 8.8500004 0.190961 0.981598 1.0 +260 1 1.72 0.0 1.77 8.8500004 -0.64001 -0.768366 1.0 +261 1 1.72 3.54 0.0 7.0799999 0.88403 0.467429 1.0 +262 1 1.72 5.31 1.77 7.0799999 0.958535 -0.284975 1.0 +263 1 1.72 5.31 0.0 8.8500004 0.776799 -0.629749 1.0 +264 1 1.72 3.54 1.77 8.8500004 -0.683111 0.730315 1.0 +265 1 1.72 7.0799999 0.0 7.0799999 -0.995838 0.0911389 1.0 +266 1 1.72 8.8500004 1.77 7.0799999 0.780866 -0.624699 1.0 +267 1 1.72 8.8500004 0.0 8.8500004 0.647367 0.762178 1.0 +268 1 1.72 7.0799999 1.77 8.8500004 -0.922114 0.386919 1.0 +269 1 1.72 10.6199999 0.0 7.0799999 0.985785 -0.168011 1.0 +270 1 1.72 12.3900004 1.77 7.0799999 -0.180371 0.983599 1.0 +271 1 1.72 12.3900004 0.0 8.8500004 -0.499872 -0.8661 1.0 +272 1 1.72 10.6199999 1.77 8.8500004 -0.960807 -0.277219 1.0 +273 1 1.72 14.1599999 0.0 7.0799999 0.638432 -0.769678 1.0 +274 1 1.72 15.9300004 1.77 7.0799999 0.0595594 0.998225 1.0 +275 1 1.72 15.9300004 0.0 8.8500004 0.739189 -0.673498 1.0 +276 1 1.72 14.1599999 1.77 8.8500004 -0.0848226 0.996396 1.0 +277 1 1.72 17.7000008 0.0 7.0799999 0.349421 0.936966 1.0 +278 1 1.72 19.4699993 1.77 7.0799999 -0.798175 -0.602426 1.0 +279 1 1.72 19.4699993 0.0 8.8500004 -0.938818 0.344412 1.0 +280 1 1.72 17.7000008 1.77 8.8500004 -0.685349 0.728215 1.0 +281 1 1.72 21.2399998 0.0 7.0799999 -0.205427 -0.978672 1.0 +282 1 1.72 23.0100002 1.77 7.0799999 -0.859105 -0.511799 1.0 +283 1 1.72 23.0100002 0.0 8.8500004 -0.614751 -0.788721 1.0 +284 1 1.72 21.2399998 1.77 8.8500004 -0.47666 0.879088 1.0 +285 1 1.72 24.7800007 0.0 7.0799999 -0.934951 -0.354777 1.0 +286 1 1.72 26.5499993 1.77 7.0799999 -0.999997 -0.00224411 1.0 +287 1 1.72 26.5499993 0.0 8.8500004 -0.163091 0.986611 1.0 +288 1 1.72 24.7800007 1.77 8.8500004 0.499742 -0.866174 1.0 +289 1 1.72 0.0 3.54 7.0799999 0.102264 -0.994757 1.0 +290 1 1.72 1.77 5.31 7.0799999 -0.997159 -0.0753205 1.0 +291 1 1.72 1.77 3.54 8.8500004 0.834543 -0.550943 1.0 +292 1 1.72 0.0 5.31 8.8500004 -0.525364 -0.850878 1.0 +293 1 1.72 3.54 3.54 7.0799999 0.910126 -0.414332 1.0 +294 1 1.72 5.31 5.31 7.0799999 0.781711 -0.623641 1.0 +295 1 1.72 5.31 3.54 8.8500004 -0.794988 -0.606625 1.0 +296 1 1.72 3.54 5.31 8.8500004 -0.998955 -0.0457003 1.0 +297 1 1.72 7.0799999 3.54 7.0799999 0.790132 0.612937 1.0 +298 1 1.72 8.8500004 5.31 7.0799999 0.927007 0.375045 1.0 +299 1 1.72 8.8500004 3.54 8.8500004 0.945531 -0.325532 1.0 +300 1 1.72 7.0799999 5.31 8.8500004 -0.611068 -0.791578 1.0 +301 1 1.72 10.6199999 3.54 7.0799999 0.99999 0.00451469 1.0 +302 1 1.72 12.3900004 5.31 7.0799999 0.696323 -0.717729 1.0 +303 1 1.72 12.3900004 3.54 8.8500004 -0.619662 0.784869 1.0 +304 1 1.72 10.6199999 5.31 8.8500004 0.977704 0.209989 1.0 +305 1 1.72 14.1599999 3.54 7.0799999 -0.432218 -0.901769 1.0 +306 1 1.72 15.9300004 5.31 7.0799999 0.600977 0.799266 1.0 +307 1 1.72 15.9300004 3.54 8.8500004 0.762276 0.647252 1.0 +308 1 1.72 14.1599999 5.31 8.8500004 -0.739078 -0.67362 1.0 +309 1 1.72 17.7000008 3.54 7.0799999 0.914066 0.405565 1.0 +310 1 1.72 19.4699993 5.31 7.0799999 0.606461 -0.795113 1.0 +311 1 1.72 19.4699993 3.54 8.8500004 0.510159 0.86008 1.0 +312 1 1.72 17.7000008 5.31 8.8500004 0.777966 0.628307 1.0 +313 1 1.72 21.2399998 3.54 7.0799999 -0.201447 0.979499 1.0 +314 1 1.72 23.0100002 5.31 7.0799999 0.82692 -0.562319 1.0 +315 1 1.72 23.0100002 3.54 8.8500004 0.944298 0.329091 1.0 +316 1 1.72 21.2399998 5.31 8.8500004 0.98899 -0.147983 1.0 +317 1 1.72 24.7800007 3.54 7.0799999 0.489497 0.872005 1.0 +318 1 1.72 26.5499993 5.31 7.0799999 -0.0413378 0.999145 1.0 +319 1 1.72 26.5499993 3.54 8.8500004 -0.594529 -0.804074 1.0 +320 1 1.72 24.7800007 5.31 8.8500004 0.598738 -0.800945 1.0 +321 1 1.72 0.0 7.0799999 7.0799999 -0.551474 -0.834192 1.0 +322 1 1.72 1.77 8.8500004 7.0799999 -0.553147 0.833084 1.0 +323 1 1.72 1.77 7.0799999 8.8500004 0.708129 0.706083 1.0 +324 1 1.72 0.0 8.8500004 8.8500004 -0.481017 -0.876711 1.0 +325 1 1.72 3.54 7.0799999 7.0799999 0.987287 0.158946 1.0 +326 1 1.72 5.31 8.8500004 7.0799999 -0.97773 0.209868 1.0 +327 1 1.72 5.31 7.0799999 8.8500004 0.0401605 0.999193 1.0 +328 1 1.72 3.54 8.8500004 8.8500004 -0.971042 0.238907 1.0 +329 1 1.72 7.0799999 7.0799999 7.0799999 0.818053 0.575143 1.0 +330 1 1.72 8.8500004 8.8500004 7.0799999 0.898243 -0.439498 1.0 +331 1 1.72 8.8500004 7.0799999 8.8500004 0.928744 0.370721 1.0 +332 1 1.72 7.0799999 8.8500004 8.8500004 0.70865 0.705561 1.0 +333 1 1.72 10.6199999 7.0799999 7.0799999 -0.331938 0.943301 1.0 +334 1 1.72 12.3900004 8.8500004 7.0799999 -0.994363 -0.106031 1.0 +335 1 1.72 12.3900004 7.0799999 8.8500004 -0.717019 -0.697054 1.0 +336 1 1.72 10.6199999 8.8500004 8.8500004 -0.855686 0.517496 1.0 +337 1 1.72 14.1599999 7.0799999 7.0799999 0.758783 0.651344 1.0 +338 1 1.72 15.9300004 8.8500004 7.0799999 -0.377961 -0.925822 1.0 +339 1 1.72 15.9300004 7.0799999 8.8500004 -0.582549 -0.812796 1.0 +340 1 1.72 14.1599999 8.8500004 8.8500004 0.867741 -0.497017 1.0 +341 1 1.72 17.7000008 7.0799999 7.0799999 -0.594553 0.804056 1.0 +342 1 1.72 19.4699993 8.8500004 7.0799999 0.731616 0.681717 1.0 +343 1 1.72 19.4699993 7.0799999 8.8500004 0.988311 0.15245 1.0 +344 1 1.72 17.7000008 8.8500004 8.8500004 -0.424088 -0.905621 1.0 +345 1 1.72 21.2399998 7.0799999 7.0799999 -0.754172 0.656677 1.0 +346 1 1.72 23.0100002 8.8500004 7.0799999 -0.768766 -0.63953 1.0 +347 1 1.72 23.0100002 7.0799999 8.8500004 0.975989 0.217818 1.0 +348 1 1.72 21.2399998 8.8500004 8.8500004 0.58713 -0.809493 1.0 +349 1 1.72 24.7800007 7.0799999 7.0799999 -0.74033 -0.672244 1.0 +350 1 1.72 26.5499993 8.8500004 7.0799999 -0.429923 -0.902866 1.0 +351 1 1.72 26.5499993 7.0799999 8.8500004 -0.381756 0.924263 1.0 +352 1 1.72 24.7800007 8.8500004 8.8500004 0.992192 0.12472 1.0 +353 1 1.72 0.0 10.6199999 7.0799999 0.66691 -0.745138 1.0 +354 1 1.72 1.77 12.3900004 7.0799999 0.704829 0.709377 1.0 +355 1 1.72 1.77 10.6199999 8.8500004 0.413226 -0.910628 1.0 +356 1 1.72 0.0 12.3900004 8.8500004 0.720305 0.693657 1.0 +357 1 1.72 3.54 10.6199999 7.0799999 0.962599 -0.270931 1.0 +358 1 1.72 5.31 12.3900004 7.0799999 -0.547185 -0.837012 1.0 +359 1 1.72 5.31 10.6199999 8.8500004 0.328324 0.944565 1.0 +360 1 1.72 3.54 12.3900004 8.8500004 0.944473 0.32859 1.0 +361 1 1.72 7.0799999 10.6199999 7.0799999 0.54622 -0.837641 1.0 +362 1 1.72 8.8500004 12.3900004 7.0799999 -0.88829 0.459282 1.0 +363 1 1.72 8.8500004 10.6199999 8.8500004 -0.683155 -0.730273 1.0 +364 1 1.72 7.0799999 12.3900004 8.8500004 -0.571408 0.820666 1.0 +365 1 1.72 10.6199999 10.6199999 7.0799999 -0.941323 -0.337506 1.0 +366 1 1.72 12.3900004 12.3900004 7.0799999 -0.748181 0.663494 1.0 +367 1 1.72 12.3900004 10.6199999 8.8500004 -0.995752 0.0920712 1.0 +368 1 1.72 10.6199999 12.3900004 8.8500004 0.621285 -0.783585 1.0 +369 1 1.72 14.1599999 10.6199999 7.0799999 0.153803 -0.988102 1.0 +370 1 1.72 15.9300004 12.3900004 7.0799999 -0.630419 -0.776255 1.0 +371 1 1.72 15.9300004 10.6199999 8.8500004 -0.397134 0.917761 1.0 +372 1 1.72 14.1599999 12.3900004 8.8500004 0.464983 0.885319 1.0 +373 1 1.72 17.7000008 10.6199999 7.0799999 -0.708849 -0.70536 1.0 +374 1 1.72 19.4699993 12.3900004 7.0799999 -0.99481 0.101746 1.0 +375 1 1.72 19.4699993 10.6199999 8.8500004 0.993711 0.111978 1.0 +376 1 1.72 17.7000008 12.3900004 8.8500004 -0.351484 -0.936194 1.0 +377 1 1.72 21.2399998 10.6199999 7.0799999 -0.261889 0.965098 1.0 +378 1 1.72 23.0100002 12.3900004 7.0799999 -0.997563 0.0697777 1.0 +379 1 1.72 23.0100002 10.6199999 8.8500004 0.30784 0.951438 1.0 +380 1 1.72 21.2399998 12.3900004 8.8500004 0.289223 -0.957262 1.0 +381 1 1.72 24.7800007 10.6199999 7.0799999 -0.542298 0.840186 1.0 +382 1 1.72 26.5499993 12.3900004 7.0799999 0.756145 -0.654404 1.0 +383 1 1.72 26.5499993 10.6199999 8.8500004 -0.988561 -0.150824 1.0 +384 1 1.72 24.7800007 12.3900004 8.8500004 -0.582371 -0.812923 1.0 +385 1 1.72 0.0 0.0 10.6199999 0.404392 -0.914586 1.0 +386 1 1.72 1.77 1.77 10.6199999 0.999813 0.0193245 1.0 +387 1 1.72 1.77 0.0 12.3900004 -0.244812 -0.969571 1.0 +388 1 1.72 0.0 1.77 12.3900004 -0.508135 -0.861277 1.0 +389 1 1.72 3.54 0.0 10.6199999 -0.551125 0.834423 1.0 +390 1 1.72 5.31 1.77 10.6199999 -0.592875 -0.805294 1.0 +391 1 1.72 5.31 0.0 12.3900004 -0.981911 -0.189342 1.0 +392 1 1.72 3.54 1.77 12.3900004 -0.7248 0.68896 1.0 +393 1 1.72 7.0799999 0.0 10.6199999 0.712261 -0.701915 1.0 +394 1 1.72 8.8500004 1.77 10.6199999 0.0334894 -0.999439 1.0 +395 1 1.72 8.8500004 0.0 12.3900004 -0.852226 -0.523174 1.0 +396 1 1.72 7.0799999 1.77 12.3900004 0.903065 -0.429504 1.0 +397 1 1.72 10.6199999 0.0 10.6199999 0.552474 0.83353 1.0 +398 1 1.72 12.3900004 1.77 10.6199999 -0.807993 0.589192 1.0 +399 1 1.72 12.3900004 0.0 12.3900004 -0.859304 0.511466 1.0 +400 1 1.72 10.6199999 1.77 12.3900004 -0.99742 0.0717923 1.0 +401 1 1.72 14.1599999 0.0 10.6199999 0.398412 0.917206 1.0 +402 1 1.72 15.9300004 1.77 10.6199999 -0.792645 0.609683 1.0 +403 1 1.72 15.9300004 0.0 12.3900004 -0.969474 0.245195 1.0 +404 1 1.72 14.1599999 1.77 12.3900004 0.0785094 -0.996913 1.0 +405 1 1.72 17.7000008 0.0 10.6199999 -0.957014 0.290042 1.0 +406 1 1.72 19.4699993 1.77 10.6199999 0.763229 0.646129 1.0 +407 1 1.72 19.4699993 0.0 12.3900004 0.910663 -0.41315 1.0 +408 1 1.72 17.7000008 1.77 12.3900004 0.692484 0.721433 1.0 +409 1 1.72 21.2399998 0.0 10.6199999 -0.409511 0.912305 1.0 +410 1 1.72 23.0100002 1.77 10.6199999 -0.826001 -0.563669 1.0 +411 1 1.72 23.0100002 0.0 12.3900004 0.786133 0.618057 1.0 +412 1 1.72 21.2399998 1.77 12.3900004 -0.675514 -0.737347 1.0 +413 1 1.72 24.7800007 0.0 10.6199999 -0.982662 0.185409 1.0 +414 1 1.72 26.5499993 1.77 10.6199999 -0.999375 0.0353595 1.0 +415 1 1.72 26.5499993 0.0 12.3900004 0.902252 -0.431209 1.0 +416 1 1.72 24.7800007 1.77 12.3900004 -0.729489 0.683993 1.0 +417 1 1.72 0.0 3.54 10.6199999 0.303747 -0.952753 1.0 +418 1 1.72 1.77 5.31 10.6199999 0.738541 0.674209 1.0 +419 1 1.72 1.77 3.54 12.3900004 0.75732 0.653044 1.0 +420 1 1.72 0.0 5.31 12.3900004 0.834189 0.551479 1.0 +421 1 1.72 3.54 3.54 10.6199999 0.112428 -0.99366 1.0 +422 1 1.72 5.31 5.31 10.6199999 0.463584 0.886053 1.0 +423 1 1.72 5.31 3.54 12.3900004 -0.88277 -0.469805 1.0 +424 1 1.72 3.54 5.31 12.3900004 0.990582 0.136924 1.0 +425 1 1.72 7.0799999 3.54 10.6199999 -0.997494 0.0707471 1.0 +426 1 1.72 8.8500004 5.31 10.6199999 -0.994347 -0.10618 1.0 +427 1 1.72 8.8500004 3.54 12.3900004 0.983879 -0.178833 1.0 +428 1 1.72 7.0799999 5.31 12.3900004 -0.765746 0.643143 1.0 +429 1 1.72 10.6199999 3.54 10.6199999 0.479961 0.87729 1.0 +430 1 1.72 12.3900004 5.31 10.6199999 0.999532 0.0305924 1.0 +431 1 1.72 12.3900004 3.54 12.3900004 -0.986119 0.166043 1.0 +432 1 1.72 10.6199999 5.31 12.3900004 -0.830056 0.557679 1.0 +433 1 1.72 14.1599999 3.54 10.6199999 -0.979316 0.202335 1.0 +434 1 1.72 15.9300004 5.31 10.6199999 -0.925039 -0.379873 1.0 +435 1 1.72 15.9300004 3.54 12.3900004 0.945128 -0.326699 1.0 +436 1 1.72 14.1599999 5.31 12.3900004 0.651991 -0.758226 1.0 +437 1 1.72 17.7000008 3.54 10.6199999 -0.713337 0.700821 1.0 +438 1 1.72 19.4699993 5.31 10.6199999 0.0787721 0.996893 1.0 +439 1 1.72 19.4699993 3.54 12.3900004 0.826408 -0.563071 1.0 +440 1 1.72 17.7000008 5.31 12.3900004 -0.784047 0.620701 1.0 +441 1 1.72 21.2399998 3.54 10.6199999 -0.929462 -0.368919 1.0 +442 1 1.72 23.0100002 5.31 10.6199999 -0.214422 -0.976741 1.0 +443 1 1.72 23.0100002 3.54 12.3900004 0.837887 0.545844 1.0 +444 1 1.72 21.2399998 5.31 12.3900004 -0.650037 0.759903 1.0 +445 1 1.72 24.7800007 3.54 10.6199999 -0.458438 0.888727 1.0 +446 1 1.72 26.5499993 5.31 10.6199999 -0.804307 0.594214 1.0 +447 1 1.72 26.5499993 3.54 12.3900004 -0.798196 0.602398 1.0 +448 1 1.72 24.7800007 5.31 12.3900004 -0.592531 0.805548 1.0 +449 1 1.72 0.0 7.0799999 10.6199999 -0.659382 -0.751808 1.0 +450 1 1.72 1.77 8.8500004 10.6199999 0.973495 0.228708 1.0 +451 1 1.72 1.77 7.0799999 12.3900004 -0.276222 0.961094 1.0 +452 1 1.72 0.0 8.8500004 12.3900004 -0.610454 -0.792052 1.0 +453 1 1.72 3.54 7.0799999 10.6199999 -0.828213 0.560413 1.0 +454 1 1.72 5.31 8.8500004 10.6199999 0.363999 -0.931399 1.0 +455 1 1.72 5.31 7.0799999 12.3900004 -0.0847977 -0.996398 1.0 +456 1 1.72 3.54 8.8500004 12.3900004 -0.776218 -0.630465 1.0 +457 1 1.72 7.0799999 7.0799999 10.6199999 -0.702644 -0.711542 1.0 +458 1 1.72 8.8500004 8.8500004 10.6199999 0.716438 0.697651 1.0 +459 1 1.72 8.8500004 7.0799999 12.3900004 0.996411 -0.0846418 1.0 +460 1 1.72 7.0799999 8.8500004 12.3900004 0.822835 -0.56828 1.0 +461 1 1.72 10.6199999 7.0799999 10.6199999 -0.965659 0.259811 1.0 +462 1 1.72 12.3900004 8.8500004 10.6199999 0.483405 0.875397 1.0 +463 1 1.72 12.3900004 7.0799999 12.3900004 -0.483154 -0.875535 1.0 +464 1 1.72 10.6199999 8.8500004 12.3900004 0.648037 -0.761609 1.0 +465 1 1.72 14.1599999 7.0799999 10.6199999 -0.643312 -0.765604 1.0 +466 1 1.72 15.9300004 8.8500004 10.6199999 -0.0657458 -0.997836 1.0 +467 1 1.72 15.9300004 7.0799999 12.3900004 -0.00930552 -0.999957 1.0 +468 1 1.72 14.1599999 8.8500004 12.3900004 -0.0575205 -0.998344 1.0 +469 1 1.72 17.7000008 7.0799999 10.6199999 -0.680492 -0.732755 1.0 +470 1 1.72 19.4699993 8.8500004 10.6199999 0.808247 0.588844 1.0 +471 1 1.72 19.4699993 7.0799999 12.3900004 -0.401213 -0.915985 1.0 +472 1 1.72 17.7000008 8.8500004 12.3900004 -0.65603 -0.754735 1.0 +473 1 1.72 21.2399998 7.0799999 10.6199999 -0.780723 0.624877 1.0 +474 1 1.72 23.0100002 8.8500004 10.6199999 -0.62541 0.780297 1.0 +475 1 1.72 23.0100002 7.0799999 12.3900004 -0.52568 -0.850682 1.0 +476 1 1.72 21.2399998 8.8500004 12.3900004 0.32631 0.945263 1.0 +477 1 1.72 24.7800007 7.0799999 10.6199999 -0.889809 -0.456334 1.0 +478 1 1.72 26.5499993 8.8500004 10.6199999 -0.98862 -0.150436 1.0 +479 1 1.72 26.5499993 7.0799999 12.3900004 -0.886254 -0.4632 1.0 +480 1 1.72 24.7800007 8.8500004 12.3900004 0.573106 -0.819481 1.0 +481 1 1.72 0.0 10.6199999 10.6199999 -0.898685 0.438594 1.0 +482 1 1.72 1.77 12.3900004 10.6199999 -0.754171 -0.656678 1.0 +483 1 1.72 1.77 10.6199999 12.3900004 -0.108771 -0.994067 1.0 +484 1 1.72 0.0 12.3900004 12.3900004 0.483072 -0.87558 1.0 +485 1 1.72 3.54 10.6199999 10.6199999 -0.470916 0.882178 1.0 +486 1 1.72 5.31 12.3900004 10.6199999 0.3288 0.944399 1.0 +487 1 1.72 5.31 10.6199999 12.3900004 0.980535 -0.196343 1.0 +488 1 1.72 3.54 12.3900004 12.3900004 0.577396 -0.816465 1.0 +489 1 1.72 7.0799999 10.6199999 10.6199999 -0.194592 -0.980884 1.0 +490 1 1.72 8.8500004 12.3900004 10.6199999 -0.761101 0.648633 1.0 +491 1 1.72 8.8500004 10.6199999 12.3900004 0.999933 0.0116022 1.0 +492 1 1.72 7.0799999 12.3900004 12.3900004 0.826207 -0.563367 1.0 +493 1 1.72 10.6199999 10.6199999 10.6199999 -0.759279 -0.650766 1.0 +494 1 1.72 12.3900004 12.3900004 10.6199999 -0.951485 0.307694 1.0 +495 1 1.72 12.3900004 10.6199999 12.3900004 0.537545 -0.843235 1.0 +496 1 1.72 10.6199999 12.3900004 12.3900004 0.670975 -0.74148 1.0 +497 1 1.72 14.1599999 10.6199999 10.6199999 -0.649814 0.760094 1.0 +498 1 1.72 15.9300004 12.3900004 10.6199999 -0.139657 0.9902 1.0 +499 1 1.72 15.9300004 10.6199999 12.3900004 -0.705484 0.708726 1.0 +500 1 1.72 14.1599999 12.3900004 12.3900004 0.695702 0.71833 1.0 +501 1 1.72 17.7000008 10.6199999 10.6199999 -0.798012 0.602641 1.0 +502 1 1.72 19.4699993 12.3900004 10.6199999 0.57107 0.820901 1.0 +503 1 1.72 19.4699993 10.6199999 12.3900004 0.625346 0.780348 1.0 +504 1 1.72 17.7000008 12.3900004 12.3900004 -0.506475 0.862255 1.0 +505 1 1.72 21.2399998 10.6199999 10.6199999 0.610099 0.792325 1.0 +506 1 1.72 23.0100002 12.3900004 10.6199999 -0.415721 0.909492 1.0 +507 1 1.72 23.0100002 10.6199999 12.3900004 0.414542 0.91003 1.0 +508 1 1.72 21.2399998 12.3900004 12.3900004 -0.660349 0.750959 1.0 +509 1 1.72 24.7800007 10.6199999 10.6199999 0.833053 -0.553193 1.0 +510 1 1.72 26.5499993 12.3900004 10.6199999 0.918812 -0.394696 1.0 +511 1 1.72 26.5499993 10.6199999 12.3900004 -0.256096 -0.966651 1.0 +512 1 1.72 24.7800007 12.3900004 12.3900004 0.752464 0.658633 1.0 +513 1 1.72 0.0 0.0 14.1599999 0.577516 -0.816379 1.0 +514 1 1.72 1.77 1.77 14.1599999 -0.999996 -0.00266219 1.0 +515 1 1.72 1.77 0.0 15.9300004 0.811843 -0.583876 1.0 +516 1 1.72 0.0 1.77 15.9300004 -0.149952 -0.988693 1.0 +517 1 1.72 3.54 0.0 14.1599999 0.638472 -0.769645 1.0 +518 1 1.72 5.31 1.77 14.1599999 -0.994748 -0.102359 1.0 +519 1 1.72 5.31 0.0 15.9300004 -0.0392264 0.99923 1.0 +520 1 1.72 3.54 1.77 15.9300004 -0.685371 -0.728194 1.0 +521 1 1.72 7.0799999 0.0 14.1599999 -0.205907 0.978571 1.0 +522 1 1.72 8.8500004 1.77 14.1599999 0.582424 0.812885 1.0 +523 1 1.72 8.8500004 0.0 15.9300004 0.998156 -0.0606938 1.0 +524 1 1.72 7.0799999 1.77 15.9300004 0.55724 0.830351 1.0 +525 1 1.72 10.6199999 0.0 14.1599999 0.228395 -0.973568 1.0 +526 1 1.72 12.3900004 1.77 14.1599999 0.854116 0.520082 1.0 +527 1 1.72 12.3900004 0.0 15.9300004 -0.0945964 -0.995516 1.0 +528 1 1.72 10.6199999 1.77 15.9300004 -0.00654227 -0.999979 1.0 +529 1 1.72 14.1599999 0.0 14.1599999 0.642898 0.765952 1.0 +530 1 1.72 15.9300004 1.77 14.1599999 0.100141 0.994973 1.0 +531 1 1.72 15.9300004 0.0 15.9300004 0.958559 -0.284893 1.0 +532 1 1.72 14.1599999 1.77 15.9300004 -0.75207 -0.659083 1.0 +533 1 1.72 17.7000008 0.0 14.1599999 0.792445 -0.609944 1.0 +534 1 1.72 19.4699993 1.77 14.1599999 -0.894124 0.44782 1.0 +535 1 1.72 19.4699993 0.0 15.9300004 -0.741383 -0.671082 1.0 +536 1 1.72 17.7000008 1.77 15.9300004 0.882391 0.470517 1.0 +537 1 1.72 21.2399998 0.0 14.1599999 -0.59951 -0.800367 1.0 +538 1 1.72 23.0100002 1.77 14.1599999 0.812925 -0.582369 1.0 +539 1 1.72 23.0100002 0.0 15.9300004 0.805488 -0.592611 1.0 +540 1 1.72 21.2399998 1.77 15.9300004 -0.75137 0.659881 1.0 +541 1 1.72 24.7800007 0.0 14.1599999 0.584369 0.811488 1.0 +542 1 1.72 26.5499993 1.77 14.1599999 -0.366709 -0.930336 1.0 +543 1 1.72 26.5499993 0.0 15.9300004 0.748708 -0.662899 1.0 +544 1 1.72 24.7800007 1.77 15.9300004 0.283724 -0.958906 1.0 +545 1 1.72 0.0 3.54 14.1599999 -0.99916 0.040976 1.0 +546 1 1.72 1.77 5.31 14.1599999 0.97473 0.223387 1.0 +547 1 1.72 1.77 3.54 15.9300004 0.018563 -0.999828 1.0 +548 1 1.72 0.0 5.31 15.9300004 -0.746433 -0.66546 1.0 +549 1 1.72 3.54 3.54 14.1599999 -0.0105 0.999945 1.0 +550 1 1.72 5.31 5.31 14.1599999 -0.548949 -0.835856 1.0 +551 1 1.72 5.31 3.54 15.9300004 0.985121 0.171862 1.0 +552 1 1.72 3.54 5.31 15.9300004 -0.896854 -0.442327 1.0 +553 1 1.72 7.0799999 3.54 14.1599999 0.815102 0.579317 1.0 +554 1 1.72 8.8500004 5.31 14.1599999 0.998726 0.0504555 1.0 +555 1 1.72 8.8500004 3.54 15.9300004 0.783675 -0.621171 1.0 +556 1 1.72 7.0799999 5.31 15.9300004 -0.898328 -0.439325 1.0 +557 1 1.72 10.6199999 3.54 14.1599999 -0.929821 0.368013 1.0 +558 1 1.72 12.3900004 5.31 14.1599999 0.0106968 0.999943 1.0 +559 1 1.72 12.3900004 3.54 15.9300004 -0.982996 -0.183627 1.0 +560 1 1.72 10.6199999 5.31 15.9300004 -0.550487 -0.834844 1.0 +561 1 1.72 14.1599999 3.54 14.1599999 -0.999376 -0.035334 1.0 +562 1 1.72 15.9300004 5.31 14.1599999 0.0629378 0.998017 1.0 +563 1 1.72 15.9300004 3.54 15.9300004 0.541771 -0.840526 1.0 +564 1 1.72 14.1599999 5.31 15.9300004 0.874048 0.485839 1.0 +565 1 1.72 17.7000008 3.54 14.1599999 -0.0736634 -0.997283 1.0 +566 1 1.72 19.4699993 5.31 14.1599999 -0.969266 0.246013 1.0 +567 1 1.72 19.4699993 3.54 15.9300004 0.428897 0.903353 1.0 +568 1 1.72 17.7000008 5.31 15.9300004 0.777582 0.628782 1.0 +569 1 1.72 21.2399998 3.54 14.1599999 0.997118 0.0758605 1.0 +570 1 1.72 23.0100002 5.31 14.1599999 0.972769 -0.231775 1.0 +571 1 1.72 23.0100002 3.54 15.9300004 0.0895746 0.99598 1.0 +572 1 1.72 21.2399998 5.31 15.9300004 -0.525761 0.850632 1.0 +573 1 1.72 24.7800007 3.54 14.1599999 -0.769889 -0.638178 1.0 +574 1 1.72 26.5499993 5.31 14.1599999 -0.542466 -0.840078 1.0 +575 1 1.72 26.5499993 3.54 15.9300004 0.899395 0.437136 1.0 +576 1 1.72 24.7800007 5.31 15.9300004 0.621037 0.783781 1.0 +577 1 1.72 0.0 7.0799999 14.1599999 -0.756559 0.653926 1.0 +578 1 1.72 1.77 8.8500004 14.1599999 0.230034 0.973183 1.0 +579 1 1.72 1.77 7.0799999 15.9300004 -0.50628 0.862369 1.0 +580 1 1.72 0.0 8.8500004 15.9300004 -0.955483 -0.295047 1.0 +581 1 1.72 3.54 7.0799999 14.1599999 0.759353 -0.650679 1.0 +582 1 1.72 5.31 8.8500004 14.1599999 0.296103 -0.955156 1.0 +583 1 1.72 5.31 7.0799999 15.9300004 0.853379 0.521291 1.0 +584 1 1.72 3.54 8.8500004 15.9300004 -0.977399 0.211405 1.0 +585 1 1.72 7.0799999 7.0799999 14.1599999 0.24839 -0.96866 1.0 +586 1 1.72 8.8500004 8.8500004 14.1599999 -0.9973 -0.073433 1.0 +587 1 1.72 8.8500004 7.0799999 15.9300004 -0.985566 0.169292 1.0 +588 1 1.72 7.0799999 8.8500004 15.9300004 0.450754 0.892648 1.0 +589 1 1.72 10.6199999 7.0799999 14.1599999 0.523179 -0.852223 1.0 +590 1 1.72 12.3900004 8.8500004 14.1599999 0.3374 -0.941361 1.0 +591 1 1.72 12.3900004 7.0799999 15.9300004 0.998074 0.0620424 1.0 +592 1 1.72 10.6199999 8.8500004 15.9300004 -0.796879 0.604139 1.0 +593 1 1.72 14.1599999 7.0799999 14.1599999 0.226672 0.973971 1.0 +594 1 1.72 15.9300004 8.8500004 14.1599999 0.458772 0.888554 1.0 +595 1 1.72 15.9300004 7.0799999 15.9300004 -0.740495 0.672061 1.0 +596 1 1.72 14.1599999 8.8500004 15.9300004 0.243067 0.97001 1.0 +597 1 1.72 17.7000008 7.0799999 14.1599999 -0.767642 0.640879 1.0 +598 1 1.72 19.4699993 8.8500004 14.1599999 -0.970625 0.240597 1.0 +599 1 1.72 19.4699993 7.0799999 15.9300004 -0.88939 -0.457149 1.0 +600 1 1.72 17.7000008 8.8500004 15.9300004 0.193741 0.981053 1.0 +601 1 1.72 21.2399998 7.0799999 14.1599999 -0.686505 -0.727125 1.0 +602 1 1.72 23.0100002 8.8500004 14.1599999 0.254937 -0.966958 1.0 +603 1 1.72 23.0100002 7.0799999 15.9300004 0.19349 -0.981102 1.0 +604 1 1.72 21.2399998 8.8500004 15.9300004 -0.716268 -0.697825 1.0 +605 1 1.72 24.7800007 7.0799999 14.1599999 -0.547101 -0.837067 1.0 +606 1 1.72 26.5499993 8.8500004 14.1599999 -0.276222 0.961094 1.0 +607 1 1.72 26.5499993 7.0799999 15.9300004 0.410062 -0.912058 1.0 +608 1 1.72 24.7800007 8.8500004 15.9300004 0.293731 -0.955888 1.0 +609 1 1.72 0.0 10.6199999 14.1599999 -0.995353 0.0962937 1.0 +610 1 1.72 1.77 12.3900004 14.1599999 -0.931708 -0.363208 1.0 +611 1 1.72 1.77 10.6199999 15.9300004 0.920046 -0.391811 1.0 +612 1 1.72 0.0 12.3900004 15.9300004 -0.474527 0.880241 1.0 +613 1 1.72 3.54 10.6199999 14.1599999 -0.989086 -0.147339 1.0 +614 1 1.72 5.31 12.3900004 14.1599999 0.859457 -0.511209 1.0 +615 1 1.72 5.31 10.6199999 15.9300004 -0.984097 -0.177634 1.0 +616 1 1.72 3.54 12.3900004 15.9300004 -0.961264 -0.27563 1.0 +617 1 1.72 7.0799999 10.6199999 14.1599999 0.421894 -0.906645 1.0 +618 1 1.72 8.8500004 12.3900004 14.1599999 0.91236 0.409388 1.0 +619 1 1.72 8.8500004 10.6199999 15.9300004 0.539899 0.84173 1.0 +620 1 1.72 7.0799999 12.3900004 15.9300004 -0.877639 0.479323 1.0 +621 1 1.72 10.6199999 10.6199999 14.1599999 -0.489545 0.871978 1.0 +622 1 1.72 12.3900004 12.3900004 14.1599999 0.718957 0.695055 1.0 +623 1 1.72 12.3900004 10.6199999 15.9300004 0.0914719 0.995808 1.0 +624 1 1.72 10.6199999 12.3900004 15.9300004 0.759918 0.650018 1.0 +625 1 1.72 14.1599999 10.6199999 14.1599999 -0.979663 -0.200652 1.0 +626 1 1.72 15.9300004 12.3900004 14.1599999 -0.93367 -0.358135 1.0 +627 1 1.72 15.9300004 10.6199999 15.9300004 -0.246645 0.969106 1.0 +628 1 1.72 14.1599999 12.3900004 15.9300004 -0.436973 0.899475 1.0 +629 1 1.72 17.7000008 10.6199999 14.1599999 -0.675249 0.73759 1.0 +630 1 1.72 19.4699993 12.3900004 14.1599999 -0.938855 0.344313 1.0 +631 1 1.72 19.4699993 10.6199999 15.9300004 -0.478583 -0.878043 1.0 +632 1 1.72 17.7000008 12.3900004 15.9300004 -0.857655 -0.514226 1.0 +633 1 1.72 21.2399998 10.6199999 14.1599999 -0.025165 0.999683 1.0 +634 1 1.72 23.0100002 12.3900004 14.1599999 0.657932 0.753077 1.0 +635 1 1.72 23.0100002 10.6199999 15.9300004 -0.689295 -0.724481 1.0 +636 1 1.72 21.2399998 12.3900004 15.9300004 -0.70829 -0.705921 1.0 +637 1 1.72 24.7800007 10.6199999 14.1599999 0.386134 0.922443 1.0 +638 1 1.72 26.5499993 12.3900004 14.1599999 0.939595 0.342289 1.0 +639 1 1.72 26.5499993 10.6199999 15.9300004 0.980533 -0.196357 1.0 +640 1 1.72 24.7800007 12.3900004 15.9300004 -0.395091 0.918642 1.0 +641 1 1.72 0.0 0.0 17.7000008 -0.649291 0.76054 1.0 +642 1 1.72 1.77 1.77 17.7000008 0.6262 0.779663 1.0 +643 1 1.72 1.77 0.0 19.4699993 0.649624 -0.760255 0.9998646 +644 1 1.72 0.0 1.77 19.4699993 0.633562 -0.773692 0.9998646 +645 1 1.72 3.54 0.0 17.7000008 0.26381 -0.964575 1.0 +646 1 1.72 5.31 1.77 17.7000008 -0.945994 -0.324186 1.0 +647 1 1.72 5.31 0.0 19.4699993 0.840465 -0.541865 0.9998646 +648 1 1.72 3.54 1.77 19.4699993 0.799674 0.600434 0.9998646 +649 1 1.72 7.0799999 0.0 17.7000008 0.416068 -0.909333 1.0 +650 1 1.72 8.8500004 1.77 17.7000008 0.95484 -0.29712 1.0 +651 1 1.72 8.8500004 0.0 19.4699993 0.843771 -0.536704 0.9998646 +652 1 1.72 7.0799999 1.77 19.4699993 0.630704 0.776024 0.9998646 +653 1 1.72 10.6199999 0.0 17.7000008 0.0685999 -0.997644 1.0 +654 1 1.72 12.3900004 1.77 17.7000008 -0.968052 -0.250748 1.0 +655 1 1.72 12.3900004 0.0 19.4699993 0.839071 0.544022 0.9998646 +656 1 1.72 10.6199999 1.77 19.4699993 0.718287 0.695747 0.9998646 +657 1 1.72 14.1599999 0.0 17.7000008 -0.541847 -0.840477 1.0 +658 1 1.72 15.9300004 1.77 17.7000008 0.738413 -0.674349 1.0 +659 1 1.72 15.9300004 0.0 19.4699993 0.854732 0.519069 0.9998646 +660 1 1.72 14.1599999 1.77 19.4699993 0.990459 0.137811 0.9998646 +661 1 1.72 17.7000008 0.0 17.7000008 0.828544 -0.559923 1.0 +662 1 1.72 19.4699993 1.77 17.7000008 0.294067 0.955785 1.0 +663 1 1.72 19.4699993 0.0 19.4699993 -0.987992 0.154505 0.9998646 +664 1 1.72 17.7000008 1.77 19.4699993 0.505928 0.862576 0.9998646 +665 1 1.72 21.2399998 0.0 17.7000008 -0.163448 0.986552 1.0 +666 1 1.72 23.0100002 1.77 17.7000008 0.371311 0.928508 1.0 +667 1 1.72 23.0100002 0.0 19.4699993 0.672938 0.739699 0.9998646 +668 1 1.72 21.2399998 1.77 19.4699993 0.888728 0.458435 0.9998646 +669 1 1.72 24.7800007 0.0 17.7000008 -0.230283 -0.973124 1.0 +670 1 1.72 26.5499993 1.77 17.7000008 0.968419 0.249328 1.0 +671 1 1.72 26.5499993 0.0 19.4699993 0.624273 0.781206 0.9998646 +672 1 1.72 24.7800007 1.77 19.4699993 0.906636 0.421914 0.9998646 +673 1 1.72 0.0 3.54 17.7000008 0.97242 -0.233235 1.0 +674 1 1.72 1.77 5.31 17.7000008 0.79574 -0.605638 1.0 +675 1 1.72 1.77 3.54 19.4699993 0.595273 0.803524 0.9998646 +676 1 1.72 0.0 5.31 19.4699993 0.834715 0.550682 0.9998646 +677 1 1.72 3.54 3.54 17.7000008 -0.992726 0.120397 1.0 +678 1 1.72 5.31 5.31 17.7000008 -0.609395 -0.792867 1.0 +679 1 1.72 5.31 3.54 19.4699993 0.464717 0.88546 0.9998646 +680 1 1.72 3.54 5.31 19.4699993 -0.114432 0.993431 0.9998646 +681 1 1.72 7.0799999 3.54 17.7000008 -0.98994 0.14149 1.0 +682 1 1.72 8.8500004 5.31 17.7000008 0.919244 0.393687 1.0 +683 1 1.72 8.8500004 3.54 19.4699993 0.999674 0.0255475 0.9998646 +684 1 1.72 7.0799999 5.31 19.4699993 -0.21344 0.976956 0.9998646 +685 1 1.72 10.6199999 3.54 17.7000008 -0.999952 0.00977716 1.0 +686 1 1.72 12.3900004 5.31 17.7000008 0.996262 -0.086387 1.0 +687 1 1.72 12.3900004 3.54 19.4699993 0.966569 -0.256407 0.9998646 +688 1 1.72 10.6199999 5.31 19.4699993 0.485168 0.874421 0.9998646 +689 1 1.72 14.1599999 3.54 17.7000008 0.433473 -0.901167 1.0 +690 1 1.72 15.9300004 5.31 17.7000008 -0.0585383 -0.998285 1.0 +691 1 1.72 15.9300004 3.54 19.4699993 -0.952405 0.304834 0.9998646 +692 1 1.72 14.1599999 5.31 19.4699993 0.280455 -0.959867 0.9998646 +693 1 1.72 17.7000008 3.54 17.7000008 0.705602 -0.708608 1.0 +694 1 1.72 19.4699993 5.31 17.7000008 0.430048 -0.902806 1.0 +695 1 1.72 19.4699993 3.54 19.4699993 -0.517636 -0.855601 0.9998646 +696 1 1.72 17.7000008 5.31 19.4699993 -0.719942 -0.694034 0.9998646 +697 1 1.72 21.2399998 3.54 17.7000008 -0.998576 -0.0533536 1.0 +698 1 1.72 23.0100002 5.31 17.7000008 -0.11021 -0.993908 1.0 +699 1 1.72 23.0100002 3.54 19.4699993 -0.194662 0.98087 0.9998646 +700 1 1.72 21.2399998 5.31 19.4699993 -0.99118 -0.132522 0.9998646 +701 1 1.72 24.7800007 3.54 17.7000008 0.839133 -0.543926 1.0 +702 1 1.72 26.5499993 5.31 17.7000008 0.876389 0.481604 1.0 +703 1 1.72 26.5499993 3.54 19.4699993 -0.819654 0.572859 0.9998646 +704 1 1.72 24.7800007 5.31 19.4699993 0.941343 0.33745 0.9998646 +705 1 1.72 0.0 7.0799999 17.7000008 -0.999503 -0.0315095 1.0 +706 1 1.72 1.77 8.8500004 17.7000008 0.189536 -0.981874 1.0 +707 1 1.72 1.77 7.0799999 19.4699993 -0.76288 0.64654 0.9998646 +708 1 1.72 0.0 8.8500004 19.4699993 -0.686205 -0.727408 0.9998646 +709 1 1.72 3.54 7.0799999 17.7000008 -0.748482 -0.663155 1.0 +710 1 1.72 5.31 8.8500004 17.7000008 0.984411 -0.175883 1.0 +711 1 1.72 5.31 7.0799999 19.4699993 -0.209096 0.977895 0.9998646 +712 1 1.72 3.54 8.8500004 19.4699993 -0.70608 0.708132 0.9998646 +713 1 1.72 7.0799999 7.0799999 17.7000008 0.610046 -0.792366 1.0 +714 1 1.72 8.8500004 8.8500004 17.7000008 0.302697 0.953087 1.0 +715 1 1.72 8.8500004 7.0799999 19.4699993 -0.925661 -0.378354 0.9998646 +716 1 1.72 7.0799999 8.8500004 19.4699993 0.434384 0.900728 0.9998646 +717 1 1.72 10.6199999 7.0799999 17.7000008 -0.266488 0.963838 1.0 +718 1 1.72 12.3900004 8.8500004 17.7000008 0.585459 0.810702 1.0 +719 1 1.72 12.3900004 7.0799999 19.4699993 0.927476 0.373882 0.9998646 +720 1 1.72 10.6199999 8.8500004 19.4699993 -0.669437 -0.742869 0.9998646 +721 1 1.72 14.1599999 7.0799999 17.7000008 -0.997101 -0.0760901 1.0 +722 1 1.72 15.9300004 8.8500004 17.7000008 0.989658 -0.14345 1.0 +723 1 1.72 15.9300004 7.0799999 19.4699993 0.778594 0.627528 0.9998646 +724 1 1.72 14.1599999 8.8500004 19.4699993 -0.22457 0.974458 0.9998646 +725 1 1.72 17.7000008 7.0799999 17.7000008 -0.156585 -0.987665 1.0 +726 1 1.72 19.4699993 8.8500004 17.7000008 -0.854416 -0.51959 1.0 +727 1 1.72 19.4699993 7.0799999 19.4699993 0.997808 0.0661742 0.9998646 +728 1 1.72 17.7000008 8.8500004 19.4699993 0.715446 0.698668 0.9998646 +729 1 1.72 21.2399998 7.0799999 17.7000008 -0.707334 -0.70688 1.0 +730 1 1.72 23.0100002 8.8500004 17.7000008 -0.903622 0.428331 1.0 +731 1 1.72 23.0100002 7.0799999 19.4699993 0.701709 0.712464 0.9998646 +732 1 1.72 21.2399998 8.8500004 19.4699993 -0.987517 -0.157512 0.9998646 +733 1 1.72 24.7800007 7.0799999 17.7000008 0.964971 -0.262358 1.0 +734 1 1.72 26.5499993 8.8500004 17.7000008 0.838483 0.544928 1.0 +735 1 1.72 26.5499993 7.0799999 19.4699993 -0.774738 -0.632282 0.9998646 +736 1 1.72 24.7800007 8.8500004 19.4699993 0.776407 0.630231 0.9998646 +737 1 1.72 0.0 10.6199999 17.7000008 -0.0536292 -0.998561 1.0 +738 1 1.72 1.77 12.3900004 17.7000008 -0.99466 -0.103203 1.0 +739 1 1.72 1.77 10.6199999 19.4699993 -0.999913 -0.0132194 0.9998646 +740 1 1.72 0.0 12.3900004 19.4699993 -0.250807 -0.968037 0.9998646 +741 1 1.72 3.54 10.6199999 17.7000008 -0.0160209 0.999872 1.0 +742 1 1.72 5.31 12.3900004 17.7000008 0.718184 0.695853 1.0 +743 1 1.72 5.31 10.6199999 19.4699993 -0.240599 -0.970625 0.9998646 +744 1 1.72 3.54 12.3900004 19.4699993 -0.300064 -0.953919 0.9998646 +745 1 1.72 7.0799999 10.6199999 17.7000008 -0.877773 0.479078 1.0 +746 1 1.72 8.8500004 12.3900004 17.7000008 -0.1371 -0.990557 1.0 +747 1 1.72 8.8500004 10.6199999 19.4699993 -0.115696 -0.993285 0.9998646 +748 1 1.72 7.0799999 12.3900004 19.4699993 -0.787969 0.615715 0.9998646 +749 1 1.72 10.6199999 10.6199999 17.7000008 0.148893 0.988853 1.0 +750 1 1.72 12.3900004 12.3900004 17.7000008 -0.143264 0.989684 1.0 +751 1 1.72 12.3900004 10.6199999 19.4699993 0.811041 -0.58499 0.9998646 +752 1 1.72 10.6199999 12.3900004 19.4699993 -0.917257 -0.398296 0.9998646 +753 1 1.72 14.1599999 10.6199999 17.7000008 -0.787241 0.616645 1.0 +754 1 1.72 15.9300004 12.3900004 17.7000008 -0.838141 0.545453 1.0 +755 1 1.72 15.9300004 10.6199999 19.4699993 0.906191 -0.422869 0.9998646 +756 1 1.72 14.1599999 12.3900004 19.4699993 0.249532 0.968367 0.9998646 +757 1 1.72 17.7000008 10.6199999 17.7000008 0.551173 0.834391 1.0 +758 1 1.72 19.4699993 12.3900004 17.7000008 -0.645456 -0.763797 1.0 +759 1 1.72 19.4699993 10.6199999 19.4699993 0.202136 0.979357 0.9998646 +760 1 1.72 17.7000008 12.3900004 19.4699993 0.0454656 -0.998966 0.9998646 +761 1 1.72 21.2399998 10.6199999 17.7000008 -0.704645 0.70956 1.0 +762 1 1.72 23.0100002 12.3900004 17.7000008 -0.792466 -0.609916 1.0 +763 1 1.72 23.0100002 10.6199999 19.4699993 -0.934747 0.355314 0.9998646 +764 1 1.72 21.2399998 12.3900004 19.4699993 0.0804098 -0.996762 0.9998646 +765 1 1.72 24.7800007 10.6199999 17.7000008 -0.59014 0.807301 1.0 +766 1 1.72 26.5499993 12.3900004 17.7000008 -0.270974 0.962587 1.0 +767 1 1.72 26.5499993 10.6199999 19.4699993 0.456174 -0.88989 0.9998646 +768 1 1.72 24.7800007 12.3900004 19.4699993 0.997828 -0.0658689 0.9998646 +769 1 1.72 0.0 0.0 21.2399998 0.684296 -0.729204 0.9508352 +770 1 1.72 1.77 1.77 21.2399998 -0.985677 -0.168646 0.9508352 +771 1 1.72 1.77 0.0 23.0100002 -0.993099 -0.117279 0.8177586 +772 1 1.72 0.0 1.77 23.0100002 0.704231 -0.709971 0.8177586 +773 1 1.72 3.54 0.0 21.2399998 -0.617428 -0.786628 0.9508352 +774 1 1.72 5.31 1.77 21.2399998 0.705977 -0.708235 0.9508352 +775 1 1.72 5.31 0.0 23.0100002 -0.674045 -0.73869 0.8177586 +776 1 1.72 3.54 1.77 23.0100002 0.348379 -0.937354 0.8177586 +777 1 1.72 7.0799999 0.0 21.2399998 -0.710642 0.703554 0.9508352 +778 1 1.72 8.8500004 1.77 21.2399998 0.211593 -0.977358 0.9508352 +779 1 1.72 8.8500004 0.0 23.0100002 -0.969078 0.246755 0.8177586 +780 1 1.72 7.0799999 1.77 23.0100002 0.786616 0.617443 0.8177586 +781 1 1.72 10.6199999 0.0 21.2399998 0.874212 0.485545 0.9508352 +782 1 1.72 12.3900004 1.77 21.2399998 -0.944995 -0.327084 0.9508352 +783 1 1.72 12.3900004 0.0 23.0100002 -0.104694 0.994505 0.8177586 +784 1 1.72 10.6199999 1.77 23.0100002 -0.978587 -0.205834 0.8177586 +785 1 1.72 14.1599999 0.0 21.2399998 0.746527 -0.665355 0.9508352 +786 1 1.72 15.9300004 1.77 21.2399998 -0.866055 0.499948 0.9508352 +787 1 1.72 15.9300004 0.0 23.0100002 -0.932418 0.361382 0.8177586 +788 1 1.72 14.1599999 1.77 23.0100002 0.487089 -0.873352 0.8177586 +789 1 1.72 17.7000008 0.0 21.2399998 0.728185 -0.68538 0.9508352 +790 1 1.72 19.4699993 1.77 21.2399998 -0.369243 0.929333 0.9508352 +791 1 1.72 19.4699993 0.0 23.0100002 0.0523098 -0.998631 0.8177586 +792 1 1.72 17.7000008 1.77 23.0100002 0.968768 -0.247968 0.8177586 +793 1 1.72 21.2399998 0.0 21.2399998 0.505164 0.863023 0.9508352 +794 1 1.72 23.0100002 1.77 21.2399998 -0.0908917 0.995861 0.9508352 +795 1 1.72 23.0100002 0.0 23.0100002 -0.764519 -0.644601 0.8177586 +796 1 1.72 21.2399998 1.77 23.0100002 0.689667 -0.724127 0.8177586 +797 1 1.72 24.7800007 0.0 21.2399998 -0.255054 -0.966927 0.9508352 +798 1 1.72 26.5499993 1.77 21.2399998 0.339168 0.940726 0.9508352 +799 1 1.72 26.5499993 0.0 23.0100002 -0.947398 -0.320057 0.8177586 +800 1 1.72 24.7800007 1.77 23.0100002 -0.979061 -0.203569 0.8177586 +801 1 1.72 0.0 3.54 21.2399998 -0.197261 -0.980351 0.9508352 +802 1 1.72 1.77 5.31 21.2399998 -0.789979 0.613134 0.9508352 +803 1 1.72 1.77 3.54 23.0100002 0.599255 0.800558 0.8177586 +804 1 1.72 0.0 5.31 23.0100002 -0.74028 0.672298 0.8177586 +805 1 1.72 3.54 3.54 21.2399998 0.133396 0.991063 0.9508352 +806 1 1.72 5.31 5.31 21.2399998 -0.965656 0.259824 0.9508352 +807 1 1.72 5.31 3.54 23.0100002 0.612745 -0.79028 0.8177586 +808 1 1.72 3.54 5.31 23.0100002 0.575303 0.81794 0.8177586 +809 1 1.72 7.0799999 3.54 21.2399998 0.16557 0.986198 0.9508352 +810 1 1.72 8.8500004 5.31 21.2399998 0.897607 -0.440797 0.9508352 +811 1 1.72 8.8500004 3.54 23.0100002 -0.197114 -0.980381 0.8177586 +812 1 1.72 7.0799999 5.31 23.0100002 0.880864 -0.47337 0.8177586 +813 1 1.72 10.6199999 3.54 21.2399998 0.994345 0.106197 0.9508352 +814 1 1.72 12.3900004 5.31 21.2399998 0.1692 0.985582 0.9508352 +815 1 1.72 12.3900004 3.54 23.0100002 -0.826145 0.563457 0.8177586 +816 1 1.72 10.6199999 5.31 23.0100002 -0.776376 -0.63027 0.8177586 +817 1 1.72 14.1599999 3.54 21.2399998 -0.368101 0.929786 0.9508352 +818 1 1.72 15.9300004 5.31 21.2399998 0.276033 0.961148 0.9508352 +819 1 1.72 15.9300004 3.54 23.0100002 0.806126 -0.591744 0.8177586 +820 1 1.72 14.1599999 5.31 23.0100002 0.717641 0.696414 0.8177586 +821 1 1.72 17.7000008 3.54 21.2399998 -0.649302 -0.760531 0.9508352 +822 1 1.72 19.4699993 5.31 21.2399998 0.502998 -0.864288 0.9508352 +823 1 1.72 19.4699993 3.54 23.0100002 0.733791 0.679375 0.8177586 +824 1 1.72 17.7000008 5.31 23.0100002 -0.962336 -0.271864 0.8177586 +825 1 1.72 21.2399998 3.54 21.2399998 -0.963824 0.266541 0.9508352 +826 1 1.72 23.0100002 5.31 21.2399998 -0.999556 -0.0298021 0.9508352 +827 1 1.72 23.0100002 3.54 23.0100002 0.853179 -0.521618 0.8177586 +828 1 1.72 21.2399998 5.31 23.0100002 0.526794 -0.849993 0.8177586 +829 1 1.72 24.7800007 3.54 21.2399998 0.861014 -0.508581 0.9508352 +830 1 1.72 26.5499993 5.31 21.2399998 0.995661 0.093051 0.9508352 +831 1 1.72 26.5499993 3.54 23.0100002 0.995356 -0.0962591 0.8177586 +832 1 1.72 24.7800007 5.31 23.0100002 0.934051 -0.357139 0.8177586 +833 1 1.72 0.0 7.0799999 21.2399998 -0.702915 -0.711273 0.9508352 +834 1 1.72 1.77 8.8500004 21.2399998 -0.891011 -0.453981 0.9508352 +835 1 1.72 1.77 7.0799999 23.0100002 -0.928577 -0.371139 0.8177586 +836 1 1.72 0.0 8.8500004 23.0100002 -0.480522 0.876983 0.8177586 +837 1 1.72 3.54 7.0799999 21.2399998 -0.806447 0.591307 0.9508352 +838 1 1.72 5.31 8.8500004 21.2399998 0.570332 0.821414 0.9508352 +839 1 1.72 5.31 7.0799999 23.0100002 0.434671 -0.900589 0.8177586 +840 1 1.72 3.54 8.8500004 23.0100002 -0.17811 -0.984011 0.8177586 +841 1 1.72 7.0799999 7.0799999 21.2399998 0.433805 -0.901007 0.9508352 +842 1 1.72 8.8500004 8.8500004 21.2399998 -0.968752 -0.24803 0.9508352 +843 1 1.72 8.8500004 7.0799999 23.0100002 0.98872 -0.149776 0.8177586 +844 1 1.72 7.0799999 8.8500004 23.0100002 0.694459 -0.719533 0.8177586 +845 1 1.72 10.6199999 7.0799999 21.2399998 -0.8268 -0.562497 0.9508352 +846 1 1.72 12.3900004 8.8500004 21.2399998 0.974624 0.223847 0.9508352 +847 1 1.72 12.3900004 7.0799999 23.0100002 0.776544 0.630062 0.8177586 +848 1 1.72 10.6199999 8.8500004 23.0100002 0.618956 -0.785426 0.8177586 +849 1 1.72 14.1599999 7.0799999 21.2399998 0.855184 -0.518324 0.9508352 +850 1 1.72 15.9300004 8.8500004 21.2399998 -0.180136 0.983642 0.9508352 +851 1 1.72 15.9300004 7.0799999 23.0100002 -0.788196 -0.615424 0.8177586 +852 1 1.72 14.1599999 8.8500004 23.0100002 -0.980667 -0.195682 0.8177586 +853 1 1.72 17.7000008 7.0799999 21.2399998 0.533216 -0.845979 0.9508352 +854 1 1.72 19.4699993 8.8500004 21.2399998 -0.781159 -0.624332 0.9508352 +855 1 1.72 19.4699993 7.0799999 23.0100002 -0.987986 -0.154545 0.8177586 +856 1 1.72 17.7000008 8.8500004 23.0100002 0.388302 0.921532 0.8177586 +857 1 1.72 21.2399998 7.0799999 21.2399998 -0.766256 0.642536 0.9508352 +858 1 1.72 23.0100002 8.8500004 21.2399998 0.650735 0.759305 0.9508352 +859 1 1.72 23.0100002 7.0799999 23.0100002 0.0792116 0.996858 0.8177586 +860 1 1.72 21.2399998 8.8500004 23.0100002 0.480372 0.877065 0.8177586 +861 1 1.72 24.7800007 7.0799999 21.2399998 -0.710869 0.703325 0.9508352 +862 1 1.72 26.5499993 8.8500004 21.2399998 -0.603145 -0.797632 0.9508352 +863 1 1.72 26.5499993 7.0799999 23.0100002 0.121965 -0.992534 0.8177586 +864 1 1.72 24.7800007 8.8500004 23.0100002 -0.758733 0.651401 0.8177586 +865 1 1.72 0.0 10.6199999 21.2399998 -0.78719 0.616711 0.9508352 +866 1 1.72 1.77 12.3900004 21.2399998 -0.639197 -0.769043 0.9508352 +867 1 1.72 1.77 10.6199999 23.0100002 -0.855625 -0.517597 0.8177586 +868 1 1.72 0.0 12.3900004 23.0100002 -0.191279 0.981536 0.8177586 +869 1 1.72 3.54 10.6199999 21.2399998 -0.685729 -0.727857 0.9508352 +870 1 1.72 5.31 12.3900004 21.2399998 0.673968 0.73876 0.9508352 +871 1 1.72 5.31 10.6199999 23.0100002 -0.951734 -0.306923 0.8177586 +872 1 1.72 3.54 12.3900004 23.0100002 -0.684754 -0.728774 0.8177586 +873 1 1.72 7.0799999 10.6199999 21.2399998 0.950782 -0.30986 0.9508352 +874 1 1.72 8.8500004 12.3900004 21.2399998 -0.829451 0.558579 0.9508352 +875 1 1.72 8.8500004 10.6199999 23.0100002 0.948532 0.31668 0.8177586 +876 1 1.72 7.0799999 12.3900004 23.0100002 -0.676813 0.736155 0.8177586 +877 1 1.72 10.6199999 10.6199999 21.2399998 0.999779 -0.0210204 0.9508352 +878 1 1.72 12.3900004 12.3900004 21.2399998 0.922794 0.385295 0.9508352 +879 1 1.72 12.3900004 10.6199999 23.0100002 -0.84921 -0.528056 0.8177586 +880 1 1.72 10.6199999 12.3900004 23.0100002 0.937407 -0.348235 0.8177586 +881 1 1.72 14.1599999 10.6199999 21.2399998 -0.198283 -0.980145 0.9508352 +882 1 1.72 15.9300004 12.3900004 21.2399998 -0.615399 0.788216 0.9508352 +883 1 1.72 15.9300004 10.6199999 23.0100002 -0.326746 0.945112 0.8177586 +884 1 1.72 14.1599999 12.3900004 23.0100002 -0.36798 -0.929834 0.8177586 +885 1 1.72 17.7000008 10.6199999 21.2399998 0.579863 0.814714 0.9508352 +886 1 1.72 19.4699993 12.3900004 21.2399998 -0.232785 -0.972528 0.9508352 +887 1 1.72 19.4699993 10.6199999 23.0100002 -0.801033 -0.59862 0.8177586 +888 1 1.72 17.7000008 12.3900004 23.0100002 -0.823935 0.566684 0.8177586 +889 1 1.72 21.2399998 10.6199999 21.2399998 0.984127 0.177465 0.9508352 +890 1 1.72 23.0100002 12.3900004 21.2399998 -0.0919396 -0.995765 0.9508352 +891 1 1.72 23.0100002 10.6199999 23.0100002 -0.790211 -0.612834 0.8177586 +892 1 1.72 21.2399998 12.3900004 23.0100002 -0.685563 -0.728013 0.8177586 +893 1 1.72 24.7800007 10.6199999 21.2399998 -0.108022 -0.994149 0.9508352 +894 1 1.72 26.5499993 12.3900004 21.2399998 -0.638048 0.769997 0.9508352 +895 1 1.72 26.5499993 10.6199999 23.0100002 0.348083 0.937464 0.8177586 +896 1 1.72 24.7800007 12.3900004 23.0100002 0.485902 0.874013 0.8177586 +897 1 1.72 0.0 0.0 24.7800007 -0.65326 0.757134 0.6123979 +898 1 1.72 1.77 1.77 24.7800007 -0.0257368 -0.999669 0.6123979 +899 1 1.72 1.77 0.0 26.5499993 0.575338 0.817916 0.3529058 +900 1 1.72 0.0 1.77 26.5499993 0.78346 -0.621442 0.3529058 +901 1 1.72 3.54 0.0 24.7800007 -0.457407 -0.889258 0.6123979 +902 1 1.72 5.31 1.77 24.7800007 0.998224 -0.0595736 0.6123979 +903 1 1.72 5.31 0.0 26.5499993 0.995145 0.0984167 0.3529058 +904 1 1.72 3.54 1.77 26.5499993 0.993308 0.115498 0.3529058 +905 1 1.72 7.0799999 0.0 24.7800007 -0.851052 -0.525081 0.6123979 +906 1 1.72 8.8500004 1.77 24.7800007 0.766985 0.641665 0.6123979 +907 1 1.72 8.8500004 0.0 26.5499993 0.192387 0.981319 0.3529058 +908 1 1.72 7.0799999 1.77 26.5499993 0.967172 -0.254122 0.3529058 +909 1 1.72 10.6199999 0.0 24.7800007 0.790637 0.612286 0.6123979 +910 1 1.72 12.3900004 1.77 24.7800007 -0.74799 -0.66371 0.6123979 +911 1 1.72 12.3900004 0.0 26.5499993 -0.824141 -0.566385 0.3529058 +912 1 1.72 10.6199999 1.77 26.5499993 0.776839 -0.629699 0.3529058 +913 1 1.72 14.1599999 0.0 24.7800007 -0.689033 0.72473 0.6123979 +914 1 1.72 15.9300004 1.77 24.7800007 -0.99165 -0.128962 0.6123979 +915 1 1.72 15.9300004 0.0 26.5499993 -0.151567 -0.988447 0.3529058 +916 1 1.72 14.1599999 1.77 26.5499993 -0.0317035 -0.999497 0.3529058 +917 1 1.72 17.7000008 0.0 24.7800007 0.281425 0.959583 0.6123979 +918 1 1.72 19.4699993 1.77 24.7800007 -0.809649 0.586915 0.6123979 +919 1 1.72 19.4699993 0.0 26.5499993 -0.134022 -0.990978 0.3529058 +920 1 1.72 17.7000008 1.77 26.5499993 -0.774513 0.632559 0.3529058 +921 1 1.72 21.2399998 0.0 24.7800007 -0.690867 0.722982 0.6123979 +922 1 1.72 23.0100002 1.77 24.7800007 0.93554 0.353221 0.6123979 +923 1 1.72 23.0100002 0.0 26.5499993 0.869083 0.494667 0.3529058 +924 1 1.72 21.2399998 1.77 26.5499993 0.866241 -0.499626 0.3529058 +925 1 1.72 24.7800007 0.0 24.7800007 0.746357 0.665546 0.6123979 +926 1 1.72 26.5499993 1.77 24.7800007 0.31353 0.949578 0.6123979 +927 1 1.72 26.5499993 0.0 26.5499993 -0.763352 0.645982 0.3529058 +928 1 1.72 24.7800007 1.77 26.5499993 -0.986999 0.160729 0.3529058 +929 1 1.72 0.0 3.54 24.7800007 -0.302094 -0.953278 0.6123979 +930 1 1.72 1.77 5.31 24.7800007 0.688227 0.725495 0.6123979 +931 1 1.72 1.77 3.54 26.5499993 -0.547487 0.836814 0.3529058 +932 1 1.72 0.0 5.31 26.5499993 0.915792 0.401652 0.3529058 +933 1 1.72 3.54 3.54 24.7800007 0.95411 -0.299455 0.6123979 +934 1 1.72 5.31 5.31 24.7800007 -0.646027 0.763315 0.6123979 +935 1 1.72 5.31 3.54 26.5499993 0.999749 -0.0223985 0.3529058 +936 1 1.72 3.54 5.31 26.5499993 0.668878 0.743372 0.3529058 +937 1 1.72 7.0799999 3.54 24.7800007 0.553004 0.833179 0.6123979 +938 1 1.72 8.8500004 5.31 24.7800007 -0.861644 -0.507513 0.6123979 +939 1 1.72 8.8500004 3.54 26.5499993 0.878992 -0.476837 0.3529058 +940 1 1.72 7.0799999 5.31 26.5499993 -0.582962 -0.812499 0.3529058 +941 1 1.72 10.6199999 3.54 24.7800007 0.779856 0.625959 0.6123979 +942 1 1.72 12.3900004 5.31 24.7800007 0.535386 -0.844608 0.6123979 +943 1 1.72 12.3900004 3.54 26.5499993 -0.956059 0.293173 0.3529058 +944 1 1.72 10.6199999 5.31 26.5499993 0.90525 0.424879 0.3529058 +945 1 1.72 14.1599999 3.54 24.7800007 -0.25289 0.967495 0.6123979 +946 1 1.72 15.9300004 5.31 24.7800007 -0.602469 0.798143 0.6123979 +947 1 1.72 15.9300004 3.54 26.5499993 0.458287 0.888804 0.3529058 +948 1 1.72 14.1599999 5.31 26.5499993 -0.33717 -0.941444 0.3529058 +949 1 1.72 17.7000008 3.54 24.7800007 0.990276 -0.139114 0.6123979 +950 1 1.72 19.4699993 5.31 24.7800007 -0.37125 -0.928533 0.6123979 +951 1 1.72 19.4699993 3.54 26.5499993 -0.0663069 -0.997799 0.3529058 +952 1 1.72 17.7000008 5.31 26.5499993 -0.479553 -0.877513 0.3529058 +953 1 1.72 21.2399998 3.54 24.7800007 -0.858225 -0.513273 0.6123979 +954 1 1.72 23.0100002 5.31 24.7800007 0.96655 0.256478 0.6123979 +955 1 1.72 23.0100002 3.54 26.5499993 0.898859 0.438239 0.3529058 +956 1 1.72 21.2399998 5.31 26.5499993 0.331274 -0.943534 0.3529058 +957 1 1.72 24.7800007 3.54 24.7800007 0.624083 0.781358 0.6123979 +958 1 1.72 26.5499993 5.31 24.7800007 0.562576 -0.826745 0.6123979 +959 1 1.72 26.5499993 3.54 26.5499993 0.987917 -0.154981 0.3529058 +960 1 1.72 24.7800007 5.31 26.5499993 0.367753 0.929924 0.3529058 +961 1 1.72 0.0 7.0799999 24.7800007 0.57143 -0.82065 0.6123979 +962 1 1.72 1.77 8.8500004 24.7800007 -0.899092 -0.43776 0.6123979 +963 1 1.72 1.77 7.0799999 26.5499993 -0.499379 0.866383 0.3529058 +964 1 1.72 0.0 8.8500004 26.5499993 0.488283 0.872685 0.3529058 +965 1 1.72 3.54 7.0799999 24.7800007 -0.608735 -0.793373 0.6123979 +966 1 1.72 5.31 8.8500004 24.7800007 -0.104764 -0.994497 0.6123979 +967 1 1.72 5.31 7.0799999 26.5499993 -0.697211 -0.716866 0.3529058 +968 1 1.72 3.54 8.8500004 26.5499993 0.456251 0.889851 0.3529058 +969 1 1.72 7.0799999 7.0799999 24.7800007 -0.649147 0.760663 0.6123979 +970 1 1.72 8.8500004 8.8500004 24.7800007 0.840755 0.541416 0.6123979 +971 1 1.72 8.8500004 7.0799999 26.5499993 -0.644214 -0.764846 0.3529058 +972 1 1.72 7.0799999 8.8500004 26.5499993 0.803842 -0.594842 0.3529058 +973 1 1.72 10.6199999 7.0799999 24.7800007 0.662772 -0.748821 0.6123979 +974 1 1.72 12.3900004 8.8500004 24.7800007 0.314855 0.94914 0.6123979 +975 1 1.72 12.3900004 7.0799999 26.5499993 0.893458 -0.449146 0.3529058 +976 1 1.72 10.6199999 8.8500004 26.5499993 -0.86605 -0.499958 0.3529058 +977 1 1.72 14.1599999 7.0799999 24.7800007 0.767653 -0.640865 0.6123979 +978 1 1.72 15.9300004 8.8500004 24.7800007 0.251764 0.967789 0.6123979 +979 1 1.72 15.9300004 7.0799999 26.5499993 -0.295994 0.95519 0.3529058 +980 1 1.72 14.1599999 8.8500004 26.5499993 0.414085 -0.910238 0.3529058 +981 1 1.72 17.7000008 7.0799999 24.7800007 0.343239 -0.939248 0.6123979 +982 1 1.72 19.4699993 8.8500004 24.7800007 0.6137 -0.78954 0.6123979 +983 1 1.72 19.4699993 7.0799999 26.5499993 -0.658401 -0.752667 0.3529058 +984 1 1.72 17.7000008 8.8500004 26.5499993 -0.940455 0.339917 0.3529058 +985 1 1.72 21.2399998 7.0799999 24.7800007 -0.822003 -0.569483 0.6123979 +986 1 1.72 23.0100002 8.8500004 24.7800007 -0.38379 0.923421 0.6123979 +987 1 1.72 23.0100002 7.0799999 26.5499993 0.824554 0.565783 0.3529058 +988 1 1.72 21.2399998 8.8500004 26.5499993 0.448161 -0.893953 0.3529058 +989 1 1.72 24.7800007 7.0799999 24.7800007 -0.632556 -0.774515 0.6123979 +990 1 1.72 26.5499993 8.8500004 24.7800007 0.986578 -0.163294 0.6123979 +991 1 1.72 26.5499993 7.0799999 26.5499993 0.978122 0.208032 0.3529058 +992 1 1.72 24.7800007 8.8500004 26.5499993 0.97316 -0.23013 0.3529058 +993 1 1.72 0.0 10.6199999 24.7800007 -0.656798 -0.754067 0.6123979 +994 1 1.72 1.77 12.3900004 24.7800007 0.170545 0.98535 0.6123979 +995 1 1.72 1.77 10.6199999 26.5499993 0.465212 -0.885199 0.3529058 +996 1 1.72 0.0 12.3900004 26.5499993 -0.664781 -0.747039 0.3529058 +997 1 1.72 3.54 10.6199999 24.7800007 0.999985 0.00540806 0.6123979 +998 1 1.72 5.31 12.3900004 24.7800007 -0.596463 0.802641 0.6123979 +999 1 1.72 5.31 10.6199999 26.5499993 0.740811 -0.671714 0.3529058 +1000 1 1.72 3.54 12.3900004 26.5499993 0.135612 0.990762 0.3529058 +1001 1 1.72 7.0799999 10.6199999 24.7800007 0.39156 -0.920153 0.6123979 +1002 1 1.72 8.8500004 12.3900004 24.7800007 0.471855 0.881676 0.6123979 +1003 1 1.72 8.8500004 10.6199999 26.5499993 -0.982452 0.186514 0.3529058 +1004 1 1.72 7.0799999 12.3900004 26.5499993 0.427774 -0.903886 0.3529058 +1005 1 1.72 10.6199999 10.6199999 24.7800007 -0.797229 -0.603677 0.6123979 +1006 1 1.72 12.3900004 12.3900004 24.7800007 0.999966 0.00828118 0.6123979 +1007 1 1.72 12.3900004 10.6199999 26.5499993 -0.741601 -0.670841 0.3529058 +1008 1 1.72 10.6199999 12.3900004 26.5499993 0.322026 -0.946731 0.3529058 +1009 1 1.72 14.1599999 10.6199999 24.7800007 -0.451215 -0.892415 0.6123979 +1010 1 1.72 15.9300004 12.3900004 24.7800007 0.122952 0.992413 0.6123979 +1011 1 1.72 15.9300004 10.6199999 26.5499993 -0.693441 -0.720514 0.3529058 +1012 1 1.72 14.1599999 12.3900004 26.5499993 0.270874 0.962615 0.3529058 +1013 1 1.72 17.7000008 10.6199999 24.7800007 -0.942816 -0.333312 0.6123979 +1014 1 1.72 19.4699993 12.3900004 24.7800007 0.658205 -0.752839 0.6123979 +1015 1 1.72 19.4699993 10.6199999 26.5499993 -0.317959 -0.948105 0.3529058 +1016 1 1.72 17.7000008 12.3900004 26.5499993 0.85442 0.519584 0.3529058 +1017 1 1.72 21.2399998 10.6199999 24.7800007 0.652411 0.757866 0.6123979 +1018 1 1.72 23.0100002 12.3900004 24.7800007 0.869068 -0.494693 0.6123979 +1019 1 1.72 23.0100002 10.6199999 26.5499993 0.831807 -0.555065 0.3529058 +1020 1 1.72 21.2399998 12.3900004 26.5499993 -0.566725 0.823907 0.3529058 +1021 1 1.72 24.7800007 10.6199999 24.7800007 0.470133 0.882596 0.6123979 +1022 1 1.72 26.5499993 12.3900004 24.7800007 0.533661 -0.845698 0.6123979 +1023 1 1.72 26.5499993 10.6199999 26.5499993 0.777682 -0.628658 0.3529058 +1024 1 1.72 24.7800007 12.3900004 26.5499993 0.911502 -0.411296 0.3529058 +1025 1 1.72 0.0 0.0 28.3199997 -0.683465 0.729983 0.0622191 +1026 1 1.72 1.77 1.77 28.3199997 -0.931824 -0.362911 0.0622191 +1027 1 1.72 1.77 0.0 30.0900002 0.515337 0.856987 -0.2339673 +1028 1 1.72 0.0 1.77 30.0900002 0.995636 -0.0933234 -0.2339673 +1029 1 1.72 3.54 0.0 28.3199997 0.947694 0.319179 0.0622191 +1030 1 1.72 5.31 1.77 28.3199997 -0.909816 -0.415012 0.0622191 +1031 1 1.72 5.31 0.0 30.0900002 -0.356202 0.934409 -0.2339673 +1032 1 1.72 3.54 1.77 30.0900002 0.668759 -0.743479 -0.2339673 +1033 1 1.72 7.0799999 0.0 28.3199997 0.977558 -0.210665 0.0622191 +1034 1 1.72 8.8500004 1.77 28.3199997 -0.83154 0.555464 0.0622191 +1035 1 1.72 8.8500004 0.0 30.0900002 0.56201 0.827131 -0.2339673 +1036 1 1.72 7.0799999 1.77 30.0900002 0.619904 -0.784678 -0.2339673 +1037 1 1.72 10.6199999 0.0 28.3199997 0.798442 -0.602071 0.0622191 +1038 1 1.72 12.3900004 1.77 28.3199997 0.911462 -0.411384 0.0622191 +1039 1 1.72 12.3900004 0.0 30.0900002 0.988152 0.153477 -0.2339673 +1040 1 1.72 10.6199999 1.77 30.0900002 0.559752 0.82866 -0.2339673 +1041 1 1.72 14.1599999 0.0 28.3199997 -0.459915 0.887963 0.0622191 +1042 1 1.72 15.9300004 1.77 28.3199997 0.954249 0.299013 0.0622191 +1043 1 1.72 15.9300004 0.0 30.0900002 0.65834 -0.75272 -0.2339673 +1044 1 1.72 14.1599999 1.77 30.0900002 0.0482277 -0.998836 -0.2339673 +1045 1 1.72 17.7000008 0.0 28.3199997 -0.0288095 -0.999585 0.0622191 +1046 1 1.72 19.4699993 1.77 28.3199997 -0.19357 -0.981086 0.0622191 +1047 1 1.72 19.4699993 0.0 30.0900002 -0.836096 0.548583 -0.2339673 +1048 1 1.72 17.7000008 1.77 30.0900002 0.723908 0.689896 -0.2339673 +1049 1 1.72 21.2399998 0.0 28.3199997 0.293107 0.95608 0.0622191 +1050 1 1.72 23.0100002 1.77 28.3199997 -0.614682 0.788775 0.0622191 +1051 1 1.72 23.0100002 0.0 30.0900002 0.998231 0.0594531 -0.2339673 +1052 1 1.72 21.2399998 1.77 30.0900002 -0.45442 -0.890787 -0.2339673 +1053 1 1.72 24.7800007 0.0 28.3199997 0.699705 0.714432 0.0622191 +1054 1 1.72 26.5499993 1.77 28.3199997 -0.581278 0.813705 0.0622191 +1055 1 1.72 26.5499993 0.0 30.0900002 0.198058 -0.98019 -0.2339673 +1056 1 1.72 24.7800007 1.77 30.0900002 -0.979096 -0.203397 -0.2339673 +1057 1 1.72 0.0 3.54 28.3199997 0.0430396 -0.999073 0.0622191 +1058 1 1.72 1.77 5.31 28.3199997 0.930885 -0.365311 0.0622191 +1059 1 1.72 1.77 3.54 30.0900002 -0.900003 -0.435883 -0.2339673 +1060 1 1.72 0.0 5.31 30.0900002 0.293177 -0.956058 -0.2339673 +1061 1 1.72 3.54 3.54 28.3199997 -0.416023 -0.909354 0.0622191 +1062 1 1.72 5.31 5.31 28.3199997 -0.979151 -0.203132 0.0622191 +1063 1 1.72 5.31 3.54 30.0900002 0.297677 0.954667 -0.2339673 +1064 1 1.72 3.54 5.31 30.0900002 0.996144 -0.0877343 -0.2339673 +1065 1 1.72 7.0799999 3.54 28.3199997 0.782903 0.622144 0.0622191 +1066 1 1.72 8.8500004 5.31 28.3199997 0.445881 0.895092 0.0622191 +1067 1 1.72 8.8500004 3.54 30.0900002 -0.987418 -0.158133 -0.2339673 +1068 1 1.72 7.0799999 5.31 30.0900002 0.569403 0.822058 -0.2339673 +1069 1 1.72 10.6199999 3.54 28.3199997 -0.594907 0.803795 0.0622191 +1070 1 1.72 12.3900004 5.31 28.3199997 -0.95973 -0.280924 0.0622191 +1071 1 1.72 12.3900004 3.54 30.0900002 -0.858172 0.513363 -0.2339673 +1072 1 1.72 10.6199999 5.31 30.0900002 0.923453 0.383712 -0.2339673 +1073 1 1.72 14.1599999 3.54 28.3199997 0.98861 0.150498 0.0622191 +1074 1 1.72 15.9300004 5.31 28.3199997 -0.860776 0.508985 0.0622191 +1075 1 1.72 15.9300004 3.54 30.0900002 -0.632522 -0.774542 -0.2339673 +1076 1 1.72 14.1599999 5.31 30.0900002 -0.835487 -0.54951 -0.2339673 +1077 1 1.72 17.7000008 3.54 28.3199997 0.433073 -0.901359 0.0622191 +1078 1 1.72 19.4699993 5.31 28.3199997 0.103793 0.994599 0.0622191 +1079 1 1.72 19.4699993 3.54 30.0900002 -0.255698 0.966757 -0.2339673 +1080 1 1.72 17.7000008 5.31 30.0900002 0.342616 -0.939475 -0.2339673 +1081 1 1.72 21.2399998 3.54 28.3199997 0.712434 -0.701739 0.0622191 +1082 1 1.72 23.0100002 5.31 28.3199997 0.911617 -0.411042 0.0622191 +1083 1 1.72 23.0100002 3.54 30.0900002 -0.999404 -0.0345194 -0.2339673 +1084 1 1.72 21.2399998 5.31 30.0900002 -0.750652 -0.660698 -0.2339673 +1085 1 1.72 24.7800007 3.54 28.3199997 -0.496573 0.867995 0.0622191 +1086 1 1.72 26.5499993 5.31 28.3199997 0.126169 0.992009 0.0622191 +1087 1 1.72 26.5499993 3.54 30.0900002 -0.658673 -0.752429 -0.2339673 +1088 1 1.72 24.7800007 5.31 30.0900002 0.913392 0.407082 -0.2339673 +1089 1 1.72 0.0 7.0799999 28.3199997 0.975824 -0.218559 0.0622191 +1090 1 1.72 1.77 8.8500004 28.3199997 -0.975458 0.220186 0.0622191 +1091 1 1.72 1.77 7.0799999 30.0900002 0.761841 0.647764 -0.2339673 +1092 1 1.72 0.0 8.8500004 30.0900002 0.962083 -0.272758 -0.2339673 +1093 1 1.72 3.54 7.0799999 28.3199997 0.839861 0.542802 0.0622191 +1094 1 1.72 5.31 8.8500004 28.3199997 0.520855 -0.853645 0.0622191 +1095 1 1.72 5.31 7.0799999 30.0900002 -0.663007 -0.748613 -0.2339673 +1096 1 1.72 3.54 8.8500004 30.0900002 -0.199301 0.979938 -0.2339673 +1097 1 1.72 7.0799999 7.0799999 28.3199997 0.769083 -0.639149 0.0622191 +1098 1 1.72 8.8500004 8.8500004 28.3199997 0.358585 0.933497 0.0622191 +1099 1 1.72 8.8500004 7.0799999 30.0900002 0.169804 0.985478 -0.2339673 +1100 1 1.72 7.0799999 8.8500004 30.0900002 0.768301 -0.640089 -0.2339673 +1101 1 1.72 10.6199999 7.0799999 28.3199997 0.99441 0.105584 0.0622191 +1102 1 1.72 12.3900004 8.8500004 28.3199997 0.797857 -0.602847 0.0622191 +1103 1 1.72 12.3900004 7.0799999 30.0900002 -0.794976 -0.606641 -0.2339673 +1104 1 1.72 10.6199999 8.8500004 30.0900002 0.999129 -0.0417304 -0.2339673 +1105 1 1.72 14.1599999 7.0799999 28.3199997 -0.98284 0.184462 0.0622191 +1106 1 1.72 15.9300004 8.8500004 28.3199997 0.703287 0.710906 0.0622191 +1107 1 1.72 15.9300004 7.0799999 30.0900002 0.886488 -0.462752 -0.2339673 +1108 1 1.72 14.1599999 8.8500004 30.0900002 -0.878386 -0.477952 -0.2339673 +1109 1 1.72 17.7000008 7.0799999 28.3199997 0.97986 0.199686 0.0622191 +1110 1 1.72 19.4699993 8.8500004 28.3199997 0.758451 -0.65173 0.0622191 +1111 1 1.72 19.4699993 7.0799999 30.0900002 -0.877145 -0.480225 -0.2339673 +1112 1 1.72 17.7000008 8.8500004 30.0900002 0.275596 -0.961274 -0.2339673 +1113 1 1.72 21.2399998 7.0799999 28.3199997 0.629686 -0.77685 0.0622191 +1114 1 1.72 23.0100002 8.8500004 28.3199997 0.0698135 -0.99756 0.0622191 +1115 1 1.72 23.0100002 7.0799999 30.0900002 -0.504325 -0.863514 -0.2339673 +1116 1 1.72 21.2399998 8.8500004 30.0900002 -0.69485 -0.719154 -0.2339673 +1117 1 1.72 24.7800007 7.0799999 28.3199997 0.697306 0.716774 0.0622191 +1118 1 1.72 26.5499993 8.8500004 28.3199997 0.703461 0.710734 0.0622191 +1119 1 1.72 26.5499993 7.0799999 30.0900002 0.658519 -0.752564 -0.2339673 +1120 1 1.72 24.7800007 8.8500004 30.0900002 -0.160721 -0.987 -0.2339673 +1121 1 1.72 0.0 10.6199999 28.3199997 -0.921245 -0.388984 0.0622191 +1122 1 1.72 1.77 12.3900004 28.3199997 0.999713 0.0239583 0.0622191 +1123 1 1.72 1.77 10.6199999 30.0900002 -0.730993 0.682385 -0.2339673 +1124 1 1.72 0.0 12.3900004 30.0900002 0.766045 0.642787 -0.2339673 +1125 1 1.72 3.54 10.6199999 28.3199997 0.404661 0.914467 0.0622191 +1126 1 1.72 5.31 12.3900004 28.3199997 -0.761514 0.648148 0.0622191 +1127 1 1.72 5.31 10.6199999 30.0900002 0.74885 -0.66274 -0.2339673 +1128 1 1.72 3.54 12.3900004 30.0900002 0.899749 -0.436409 -0.2339673 +1129 1 1.72 7.0799999 10.6199999 28.3199997 -0.726955 -0.686685 0.0622191 +1130 1 1.72 8.8500004 12.3900004 28.3199997 -0.99457 -0.104068 0.0622191 +1131 1 1.72 8.8500004 10.6199999 30.0900002 -0.0507939 0.998709 -0.2339673 +1132 1 1.72 7.0799999 12.3900004 30.0900002 0.389634 0.92097 -0.2339673 +1133 1 1.72 10.6199999 10.6199999 28.3199997 0.525493 0.850798 0.0622191 +1134 1 1.72 12.3900004 12.3900004 28.3199997 0.712546 0.701625 0.0622191 +1135 1 1.72 12.3900004 10.6199999 30.0900002 0.440956 -0.897528 -0.2339673 +1136 1 1.72 10.6199999 12.3900004 30.0900002 -0.743537 -0.668694 -0.2339673 +1137 1 1.72 14.1599999 10.6199999 28.3199997 -0.364847 -0.931067 0.0622191 +1138 1 1.72 15.9300004 12.3900004 28.3199997 -0.567422 0.823427 0.0622191 +1139 1 1.72 15.9300004 10.6199999 30.0900002 0.765127 -0.64388 -0.2339673 +1140 1 1.72 14.1599999 12.3900004 30.0900002 0.770315 0.637663 -0.2339673 +1141 1 1.72 17.7000008 10.6199999 28.3199997 -0.894878 0.44631 0.0622191 +1142 1 1.72 19.4699993 12.3900004 28.3199997 -0.232801 0.972524 0.0622191 +1143 1 1.72 19.4699993 10.6199999 30.0900002 0.0312478 0.999512 -0.2339673 +1144 1 1.72 17.7000008 12.3900004 30.0900002 -0.958418 -0.285368 -0.2339673 +1145 1 1.72 21.2399998 10.6199999 28.3199997 -0.715471 -0.698642 0.0622191 +1146 1 1.72 23.0100002 12.3900004 28.3199997 -0.452692 -0.891667 0.0622191 +1147 1 1.72 23.0100002 10.6199999 30.0900002 -0.975195 0.221348 -0.2339673 +1148 1 1.72 21.2399998 12.3900004 30.0900002 -0.150852 -0.988556 -0.2339673 +1149 1 1.72 24.7800007 10.6199999 28.3199997 -0.984506 0.175352 0.0622191 +1150 1 1.72 26.5499993 12.3900004 28.3199997 0.478674 -0.877993 0.0622191 +1151 1 1.72 26.5499993 10.6199999 30.0900002 -0.87747 0.479631 -0.2339673 +1152 1 1.72 24.7800007 12.3900004 30.0900002 -0.348679 0.937242 -0.2339673 +1153 1 1.72 0.0 0.0 31.8600006 0.443037 0.896504 -0.5094728 +1154 1 1.72 1.77 1.77 31.8600006 0.974176 -0.225788 -0.5094728 +1155 1 1.72 1.77 0.0 33.6300011 -0.0221393 0.999755 -0.7399443 +1156 1 1.72 0.0 1.77 33.6300011 -0.824762 -0.56548 -0.7399443 +1157 1 1.72 3.54 0.0 31.8600006 0.830979 -0.556303 -0.5094728 +1158 1 1.72 5.31 1.77 31.8600006 0.904047 0.427433 -0.5094728 +1159 1 1.72 5.31 0.0 33.6300011 0.657361 -0.753576 -0.7399443 +1160 1 1.72 3.54 1.77 33.6300011 -0.0243886 -0.999703 -0.7399443 +1161 1 1.72 7.0799999 0.0 31.8600006 0.83381 0.552051 -0.5094728 +1162 1 1.72 8.8500004 1.77 31.8600006 0.745227 -0.66681 -0.5094728 +1163 1 1.72 8.8500004 0.0 33.6300011 0.890594 0.454799 -0.7399443 +1164 1 1.72 7.0799999 1.77 33.6300011 -0.983468 0.181081 -0.7399443 +1165 1 1.72 10.6199999 0.0 31.8600006 0.0355197 0.999369 -0.5094728 +1166 1 1.72 12.3900004 1.77 31.8600006 -0.708287 -0.705924 -0.5094728 +1167 1 1.72 12.3900004 0.0 33.6300011 0.952537 0.304424 -0.7399443 +1168 1 1.72 10.6199999 1.77 33.6300011 -0.983619 -0.180262 -0.7399443 +1169 1 1.72 14.1599999 0.0 31.8600006 0.99971 -0.024068 -0.5094728 +1170 1 1.72 15.9300004 1.77 31.8600006 -0.87354 -0.486752 -0.5094728 +1171 1 1.72 15.9300004 0.0 33.6300011 -0.964408 0.264419 -0.7399443 +1172 1 1.72 14.1599999 1.77 33.6300011 0.97508 0.221852 -0.7399443 +1173 1 1.72 17.7000008 0.0 31.8600006 -0.995019 -0.0996847 -0.5094728 +1174 1 1.72 19.4699993 1.77 31.8600006 0.518055 0.855347 -0.5094728 +1175 1 1.72 19.4699993 0.0 33.6300011 -0.0216954 -0.999765 -0.7399443 +1176 1 1.72 17.7000008 1.77 33.6300011 -0.299444 -0.954114 -0.7399443 +1177 1 1.72 21.2399998 0.0 31.8600006 0.588463 0.808524 -0.5094728 +1178 1 1.72 23.0100002 1.77 31.8600006 0.180996 0.983484 -0.5094728 +1179 1 1.72 23.0100002 0.0 33.6300011 -0.811554 -0.584277 -0.7399443 +1180 1 1.72 21.2399998 1.77 33.6300011 -0.32129 -0.946981 -0.7399443 +1181 1 1.72 24.7800007 0.0 31.8600006 0.730486 -0.682927 -0.5094728 +1182 1 1.72 26.5499993 1.77 31.8600006 -0.808337 -0.588719 -0.5094728 +1183 1 1.72 26.5499993 0.0 33.6300011 0.957728 -0.287674 -0.7399443 +1184 1 1.72 24.7800007 1.77 33.6300011 0.435262 0.900304 -0.7399443 +1185 1 1.72 0.0 3.54 31.8600006 -0.717329 0.696735 -0.5094728 +1186 1 1.72 1.77 5.31 31.8600006 0.487646 -0.873041 -0.5094728 +1187 1 1.72 1.77 3.54 33.6300011 0.416873 -0.908965 -0.7399443 +1188 1 1.72 0.0 5.31 33.6300011 -0.885728 -0.464205 -0.7399443 +1189 1 1.72 3.54 3.54 31.8600006 -0.732201 0.681089 -0.5094728 +1190 1 1.72 5.31 5.31 31.8600006 0.847536 -0.530737 -0.5094728 +1191 1 1.72 5.31 3.54 33.6300011 -0.997255 -0.0740502 -0.7399443 +1192 1 1.72 3.54 5.31 33.6300011 0.448684 -0.89369 -0.7399443 +1193 1 1.72 7.0799999 3.54 31.8600006 -0.672899 -0.739734 -0.5094728 +1194 1 1.72 8.8500004 5.31 31.8600006 -0.727424 -0.686188 -0.5094728 +1195 1 1.72 8.8500004 3.54 33.6300011 0.561556 -0.827439 -0.7399443 +1196 1 1.72 7.0799999 5.31 33.6300011 0.98709 -0.160165 -0.7399443 +1197 1 1.72 10.6199999 3.54 31.8600006 0.905731 -0.423852 -0.5094728 +1198 1 1.72 12.3900004 5.31 31.8600006 0.705221 0.708987 -0.5094728 +1199 1 1.72 12.3900004 3.54 33.6300011 0.964475 0.264174 -0.7399443 +1200 1 1.72 10.6199999 5.31 33.6300011 0.424517 -0.90542 -0.7399443 +1201 1 1.72 14.1599999 3.54 31.8600006 -0.676756 0.736207 -0.5094728 +1202 1 1.72 15.9300004 5.31 31.8600006 0.949018 0.315222 -0.5094728 +1203 1 1.72 15.9300004 3.54 33.6300011 -0.6482 -0.76147 -0.7399443 +1204 1 1.72 14.1599999 5.31 33.6300011 0.727867 0.685719 -0.7399443 +1205 1 1.72 17.7000008 3.54 31.8600006 -0.681552 -0.731769 -0.5094728 +1206 1 1.72 19.4699993 5.31 31.8600006 -0.267514 0.963554 -0.5094728 +1207 1 1.72 19.4699993 3.54 33.6300011 0.434175 -0.900828 -0.7399443 +1208 1 1.72 17.7000008 5.31 33.6300011 0.0753593 -0.997156 -0.7399443 +1209 1 1.72 21.2399998 3.54 31.8600006 0.98497 0.172726 -0.5094728 +1210 1 1.72 23.0100002 5.31 31.8600006 0.575985 0.81746 -0.5094728 +1211 1 1.72 23.0100002 3.54 33.6300011 0.970001 0.243101 -0.7399443 +1212 1 1.72 21.2399998 5.31 33.6300011 0.828261 0.560342 -0.7399443 +1213 1 1.72 24.7800007 3.54 31.8600006 0.978209 -0.207621 -0.5094728 +1214 1 1.72 26.5499993 5.31 31.8600006 0.909687 -0.415294 -0.5094728 +1215 1 1.72 26.5499993 3.54 33.6300011 -0.975959 0.217953 -0.7399443 +1216 1 1.72 24.7800007 5.31 33.6300011 -0.937376 0.348319 -0.7399443 +1217 1 1.72 0.0 7.0799999 31.8600006 0.851067 0.525057 -0.5094728 +1218 1 1.72 1.77 8.8500004 31.8600006 -0.764799 -0.644269 -0.5094728 +1219 1 1.72 1.77 7.0799999 33.6300011 0.955694 -0.294361 -0.7399443 +1220 1 1.72 0.0 8.8500004 33.6300011 0.0661729 0.997808 -0.7399443 +1221 1 1.72 3.54 7.0799999 31.8600006 -0.999062 0.043309 -0.5094728 +1222 1 1.72 5.31 8.8500004 31.8600006 0.874436 0.48514 -0.5094728 +1223 1 1.72 5.31 7.0799999 33.6300011 0.801484 0.598017 -0.7399443 +1224 1 1.72 3.54 8.8500004 33.6300011 0.724764 -0.688997 -0.7399443 +1225 1 1.72 7.0799999 7.0799999 31.8600006 -0.760062 -0.649851 -0.5094728 +1226 1 1.72 8.8500004 8.8500004 31.8600006 -0.903316 -0.428975 -0.5094728 +1227 1 1.72 8.8500004 7.0799999 33.6300011 0.710841 -0.703353 -0.7399443 +1228 1 1.72 7.0799999 8.8500004 33.6300011 -0.406754 -0.913538 -0.7399443 +1229 1 1.72 10.6199999 7.0799999 31.8600006 0.473099 0.881009 -0.5094728 +1230 1 1.72 12.3900004 8.8500004 31.8600006 -0.952628 -0.304137 -0.5094728 +1231 1 1.72 12.3900004 7.0799999 33.6300011 0.0263082 0.999654 -0.7399443 +1232 1 1.72 10.6199999 8.8500004 33.6300011 0.634765 -0.772705 -0.7399443 +1233 1 1.72 14.1599999 7.0799999 31.8600006 -0.958776 -0.284162 -0.5094728 +1234 1 1.72 15.9300004 8.8500004 31.8600006 -0.246321 0.969188 -0.5094728 +1235 1 1.72 15.9300004 7.0799999 33.6300011 -0.995582 -0.0938921 -0.7399443 +1236 1 1.72 14.1599999 8.8500004 33.6300011 0.0896399 0.995974 -0.7399443 +1237 1 1.72 17.7000008 7.0799999 31.8600006 0.846821 0.531878 -0.5094728 +1238 1 1.72 19.4699993 8.8500004 31.8600006 0.99896 0.0455946 -0.5094728 +1239 1 1.72 19.4699993 7.0799999 33.6300011 0.965707 -0.259633 -0.7399443 +1240 1 1.72 17.7000008 8.8500004 33.6300011 0.890192 -0.455586 -0.7399443 +1241 1 1.72 21.2399998 7.0799999 31.8600006 -0.452131 0.891952 -0.5094728 +1242 1 1.72 23.0100002 8.8500004 31.8600006 0.999985 0.00552895 -0.5094728 +1243 1 1.72 23.0100002 7.0799999 33.6300011 0.989453 0.144852 -0.7399443 +1244 1 1.72 21.2399998 8.8500004 33.6300011 -0.324763 -0.945795 -0.7399443 +1245 1 1.72 24.7800007 7.0799999 31.8600006 -0.391218 -0.920298 -0.5094728 +1246 1 1.72 26.5499993 8.8500004 31.8600006 0.360424 -0.932788 -0.5094728 +1247 1 1.72 26.5499993 7.0799999 33.6300011 0.369084 0.929396 -0.7399443 +1248 1 1.72 24.7800007 8.8500004 33.6300011 0.808935 0.587898 -0.7399443 +1249 1 1.72 0.0 10.6199999 31.8600006 0.592554 0.805531 -0.5094728 +1250 1 1.72 1.77 12.3900004 31.8600006 0.497032 0.867732 -0.5094728 +1251 1 1.72 1.77 10.6199999 33.6300011 -0.37908 -0.925364 -0.7399443 +1252 1 1.72 0.0 12.3900004 33.6300011 -0.289419 -0.957203 -0.7399443 +1253 1 1.72 3.54 10.6199999 31.8600006 0.193417 0.981117 -0.5094728 +1254 1 1.72 5.31 12.3900004 31.8600006 0.981279 0.192594 -0.5094728 +1255 1 1.72 5.31 10.6199999 33.6300011 -0.523431 0.852068 -0.7399443 +1256 1 1.72 3.54 12.3900004 33.6300011 0.579943 0.814657 -0.7399443 +1257 1 1.72 7.0799999 10.6199999 31.8600006 0.344921 -0.938632 -0.5094728 +1258 1 1.72 8.8500004 12.3900004 31.8600006 -0.0517701 -0.998659 -0.5094728 +1259 1 1.72 8.8500004 10.6199999 33.6300011 -0.554549 0.832151 -0.7399443 +1260 1 1.72 7.0799999 12.3900004 33.6300011 -0.673173 -0.739485 -0.7399443 +1261 1 1.72 10.6199999 10.6199999 31.8600006 0.996705 -0.0811154 -0.5094728 +1262 1 1.72 12.3900004 12.3900004 31.8600006 -0.729765 -0.683698 -0.5094728 +1263 1 1.72 12.3900004 10.6199999 33.6300011 0.3592 -0.933261 -0.7399443 +1264 1 1.72 10.6199999 12.3900004 33.6300011 0.933634 -0.358228 -0.7399443 +1265 1 1.72 14.1599999 10.6199999 31.8600006 -0.0411337 0.999154 -0.5094728 +1266 1 1.72 15.9300004 12.3900004 31.8600006 -0.0821833 0.996617 -0.5094728 +1267 1 1.72 15.9300004 10.6199999 33.6300011 0.891257 -0.453499 -0.7399443 +1268 1 1.72 14.1599999 12.3900004 33.6300011 0.997281 -0.0736859 -0.7399443 +1269 1 1.72 17.7000008 10.6199999 31.8600006 0.913733 0.406315 -0.5094728 +1270 1 1.72 19.4699993 12.3900004 31.8600006 0.327132 -0.944979 -0.5094728 +1271 1 1.72 19.4699993 10.6199999 33.6300011 0.428429 0.903575 -0.7399443 +1272 1 1.72 17.7000008 12.3900004 33.6300011 0.546001 0.837785 -0.7399443 +1273 1 1.72 21.2399998 10.6199999 31.8600006 0.920806 -0.390021 -0.5094728 +1274 1 1.72 23.0100002 12.3900004 31.8600006 -0.508725 0.860929 -0.5094728 +1275 1 1.72 23.0100002 10.6199999 33.6300011 0.76493 -0.644113 -0.7399443 +1276 1 1.72 21.2399998 12.3900004 33.6300011 0.852778 -0.522274 -0.7399443 +1277 1 1.72 24.7800007 10.6199999 31.8600006 -0.91367 -0.406457 -0.5094728 +1278 1 1.72 26.5499993 12.3900004 31.8600006 -0.99563 -0.0933861 -0.5094728 +1279 1 1.72 26.5499993 10.6199999 33.6300011 0.404406 -0.914579 -0.7399443 +1280 1 1.72 24.7800007 12.3900004 33.6300011 -0.701356 -0.712811 -0.7399443 +1281 1 1.72 0.0 0.0 35.4000015 -0.94473 -0.327848 -0.90501 +1282 1 1.72 1.77 1.77 35.4000015 -0.353136 -0.935572 -0.90501 +1283 1 1.72 1.77 0.0 37.1699982 0.919541 -0.392995 -0.990079 +1284 1 1.72 0.0 1.77 37.1699982 0.738602 -0.674141 -0.990079 +1285 1 1.72 3.54 0.0 35.4000015 -0.584509 -0.811387 -0.90501 +1286 1 1.72 5.31 1.77 35.4000015 -0.622168 -0.782884 -0.90501 +1287 1 1.72 5.31 0.0 37.1699982 0.810508 -0.585728 -0.990079 +1288 1 1.72 3.54 1.77 37.1699982 -0.341376 0.939927 -0.990079 +1289 1 1.72 7.0799999 0.0 35.4000015 -0.291982 -0.956424 -0.90501 +1290 1 1.72 8.8500004 1.77 35.4000015 -0.8845 -0.46654 -0.90501 +1291 1 1.72 8.8500004 0.0 37.1699982 0.942097 -0.335342 -0.990079 +1292 1 1.72 7.0799999 1.77 37.1699982 0.108091 -0.994141 -0.990079 +1293 1 1.72 10.6199999 0.0 35.4000015 -0.137057 -0.990563 -0.90501 +1294 1 1.72 12.3900004 1.77 35.4000015 0.952613 0.304184 -0.90501 +1295 1 1.72 12.3900004 0.0 37.1699982 -0.1597 -0.987166 -0.990079 +1296 1 1.72 10.6199999 1.77 37.1699982 -0.0914808 0.995807 -0.990079 +1297 1 1.72 14.1599999 0.0 35.4000015 -0.0551536 -0.998478 -0.90501 +1298 1 1.72 15.9300004 1.77 35.4000015 0.999997 -0.00261404 -0.90501 +1299 1 1.72 15.9300004 0.0 37.1699982 0.0424257 0.9991 -0.990079 +1300 1 1.72 14.1599999 1.77 37.1699982 0.986492 0.16381 -0.990079 +1301 1 1.72 17.7000008 0.0 35.4000015 -0.987731 0.156162 -0.90501 +1302 1 1.72 19.4699993 1.77 35.4000015 0.999136 0.0415675 -0.90501 +1303 1 1.72 19.4699993 0.0 37.1699982 0.538991 -0.842311 -0.990079 +1304 1 1.72 17.7000008 1.77 37.1699982 -0.701947 0.712229 -0.990079 +1305 1 1.72 21.2399998 0.0 35.4000015 -0.846846 0.531838 -0.90501 +1306 1 1.72 23.0100002 1.77 35.4000015 0.968994 -0.247084 -0.90501 +1307 1 1.72 23.0100002 0.0 37.1699982 0.459686 0.888081 -0.990079 +1308 1 1.72 21.2399998 1.77 37.1699982 0.843309 -0.537428 -0.990079 +1309 1 1.72 24.7800007 0.0 35.4000015 0.604604 -0.796526 -0.90501 +1310 1 1.72 26.5499993 1.77 35.4000015 0.404715 -0.914443 -0.90501 +1311 1 1.72 26.5499993 0.0 37.1699982 -0.275981 -0.961163 -0.990079 +1312 1 1.72 24.7800007 1.77 37.1699982 -0.990018 0.140938 -0.990079 +1313 1 1.72 0.0 3.54 35.4000015 -0.745892 0.666066 -0.90501 +1314 1 1.72 1.77 5.31 35.4000015 0.222674 0.974893 -0.90501 +1315 1 1.72 1.77 3.54 37.1699982 0.759307 -0.650733 -0.990079 +1316 1 1.72 0.0 5.31 37.1699982 0.40079 -0.91617 -0.990079 +1317 1 1.72 3.54 3.54 35.4000015 0.965248 0.261337 -0.90501 +1318 1 1.72 5.31 5.31 35.4000015 0.808289 0.588786 -0.90501 +1319 1 1.72 5.31 3.54 37.1699982 -0.664905 0.746928 -0.990079 +1320 1 1.72 3.54 5.31 37.1699982 -0.902118 -0.43149 -0.990079 +1321 1 1.72 7.0799999 3.54 35.4000015 -0.591009 0.806665 -0.90501 +1322 1 1.72 8.8500004 5.31 35.4000015 0.147962 -0.988993 -0.90501 +1323 1 1.72 8.8500004 3.54 37.1699982 -0.594126 0.804372 -0.990079 +1324 1 1.72 7.0799999 5.31 37.1699982 0.759327 0.65071 -0.990079 +1325 1 1.72 10.6199999 3.54 35.4000015 0.954116 -0.299437 -0.90501 +1326 1 1.72 12.3900004 5.31 35.4000015 -0.90407 -0.427384 -0.90501 +1327 1 1.72 12.3900004 3.54 37.1699982 0.576244 0.817278 -0.990079 +1328 1 1.72 10.6199999 5.31 37.1699982 0.473674 0.8807 -0.990079 +1329 1 1.72 14.1599999 3.54 35.4000015 0.141741 -0.989904 -0.90501 +1330 1 1.72 15.9300004 5.31 35.4000015 0.795677 -0.605721 -0.90501 +1331 1 1.72 15.9300004 3.54 37.1699982 -0.978247 -0.207442 -0.990079 +1332 1 1.72 14.1599999 5.31 37.1699982 0.80143 -0.598089 -0.990079 +1333 1 1.72 17.7000008 3.54 35.4000015 0.734105 -0.679036 -0.90501 +1334 1 1.72 19.4699993 5.31 35.4000015 0.67717 -0.735827 -0.90501 +1335 1 1.72 19.4699993 3.54 37.1699982 -0.845644 -0.533748 -0.990079 +1336 1 1.72 17.7000008 5.31 37.1699982 0.865183 0.501456 -0.990079 +1337 1 1.72 21.2399998 3.54 35.4000015 0.307914 0.951414 -0.90501 +1338 1 1.72 23.0100002 5.31 35.4000015 0.867733 0.497031 -0.90501 +1339 1 1.72 23.0100002 3.54 37.1699982 0.708211 -0.706001 -0.990079 +1340 1 1.72 21.2399998 5.31 37.1699982 0.739301 0.673375 -0.990079 +1341 1 1.72 24.7800007 3.54 35.4000015 0.91298 0.408004 -0.90501 +1342 1 1.72 26.5499993 5.31 35.4000015 -0.68211 0.73125 -0.90501 +1343 1 1.72 26.5499993 3.54 37.1699982 0.969349 0.245686 -0.990079 +1344 1 1.72 24.7800007 5.31 37.1699982 -0.211815 -0.97731 -0.990079 +1345 1 1.72 0.0 7.0799999 35.4000015 -0.392123 0.919913 -0.90501 +1346 1 1.72 1.77 8.8500004 35.4000015 0.242424 -0.97017 -0.90501 +1347 1 1.72 1.77 7.0799999 37.1699982 0.585077 -0.810978 -0.990079 +1348 1 1.72 0.0 8.8500004 37.1699982 0.770913 -0.63694 -0.990079 +1349 1 1.72 3.54 7.0799999 35.4000015 0.503266 0.864132 -0.90501 +1350 1 1.72 5.31 8.8500004 35.4000015 1 -0.000307051 -0.90501 +1351 1 1.72 5.31 7.0799999 37.1699982 0.314293 -0.949326 -0.990079 +1352 1 1.72 3.54 8.8500004 37.1699982 0.98924 -0.1463 -0.990079 +1353 1 1.72 7.0799999 7.0799999 35.4000015 -0.715545 0.698567 -0.90501 +1354 1 1.72 8.8500004 8.8500004 35.4000015 0.996297 -0.0859746 -0.90501 +1355 1 1.72 8.8500004 7.0799999 37.1699982 0.884823 -0.465928 -0.990079 +1356 1 1.72 7.0799999 8.8500004 37.1699982 0.903291 -0.429028 -0.990079 +1357 1 1.72 10.6199999 7.0799999 35.4000015 0.969254 0.246063 -0.90501 +1358 1 1.72 12.3900004 8.8500004 35.4000015 -0.892939 0.450178 -0.90501 +1359 1 1.72 12.3900004 7.0799999 37.1699982 -0.409629 -0.912252 -0.990079 +1360 1 1.72 10.6199999 8.8500004 37.1699982 0.936433 -0.350846 -0.990079 +1361 1 1.72 14.1599999 7.0799999 35.4000015 0.82122 0.570612 -0.90501 +1362 1 1.72 15.9300004 8.8500004 35.4000015 -0.979622 -0.20085 -0.90501 +1363 1 1.72 15.9300004 7.0799999 37.1699982 -0.81866 0.574279 -0.990079 +1364 1 1.72 14.1599999 8.8500004 37.1699982 0.706937 0.707277 -0.990079 +1365 1 1.72 17.7000008 7.0799999 35.4000015 -0.711766 -0.702417 -0.90501 +1366 1 1.72 19.4699993 8.8500004 35.4000015 -0.284452 0.95869 -0.90501 +1367 1 1.72 19.4699993 7.0799999 37.1699982 -0.740877 -0.671641 -0.990079 +1368 1 1.72 17.7000008 8.8500004 37.1699982 0.926633 -0.375968 -0.990079 +1369 1 1.72 21.2399998 7.0799999 35.4000015 0.98838 0.152 -0.90501 +1370 1 1.72 23.0100002 8.8500004 35.4000015 -0.279107 -0.96026 -0.90501 +1371 1 1.72 23.0100002 7.0799999 37.1699982 0.487169 -0.873308 -0.990079 +1372 1 1.72 21.2399998 8.8500004 37.1699982 -0.973638 -0.2281 -0.990079 +1373 1 1.72 24.7800007 7.0799999 35.4000015 -0.332992 -0.94293 -0.90501 +1374 1 1.72 26.5499993 8.8500004 35.4000015 0.259907 0.965634 -0.90501 +1375 1 1.72 26.5499993 7.0799999 37.1699982 -0.683827 0.729644 -0.990079 +1376 1 1.72 24.7800007 8.8500004 37.1699982 0.977007 -0.213208 -0.990079 +1377 1 1.72 0.0 10.6199999 35.4000015 0.878603 -0.477553 -0.90501 +1378 1 1.72 1.77 12.3900004 35.4000015 0.0660494 -0.997816 -0.90501 +1379 1 1.72 1.77 10.6199999 37.1699982 -0.728669 -0.684866 -0.990079 +1380 1 1.72 0.0 12.3900004 37.1699982 0.999825 -0.0186905 -0.990079 +1381 1 1.72 3.54 10.6199999 35.4000015 -0.922404 -0.386227 -0.90501 +1382 1 1.72 5.31 12.3900004 35.4000015 0.902698 -0.430275 -0.90501 +1383 1 1.72 5.31 10.6199999 37.1699982 -0.685808 0.727783 -0.990079 +1384 1 1.72 3.54 12.3900004 37.1699982 -0.961838 0.273621 -0.990079 +1385 1 1.72 7.0799999 10.6199999 35.4000015 0.0463263 -0.998926 -0.90501 +1386 1 1.72 8.8500004 12.3900004 35.4000015 0.931063 0.364859 -0.90501 +1387 1 1.72 8.8500004 10.6199999 37.1699982 0.111114 0.993808 -0.990079 +1388 1 1.72 7.0799999 12.3900004 37.1699982 -0.590084 0.807342 -0.990079 +1389 1 1.72 10.6199999 10.6199999 35.4000015 -0.816294 0.577637 -0.90501 +1390 1 1.72 12.3900004 12.3900004 35.4000015 0.933899 -0.357537 -0.90501 +1391 1 1.72 12.3900004 10.6199999 37.1699982 0.996561 -0.0828658 -0.990079 +1392 1 1.72 10.6199999 12.3900004 37.1699982 0.559439 0.828872 -0.990079 +1393 1 1.72 14.1599999 10.6199999 35.4000015 -0.136334 -0.990663 -0.90501 +1394 1 1.72 15.9300004 12.3900004 35.4000015 0.998921 -0.0464396 -0.90501 +1395 1 1.72 15.9300004 10.6199999 37.1699982 0.968134 0.250433 -0.990079 +1396 1 1.72 14.1599999 12.3900004 37.1699982 0.560068 0.828447 -0.990079 +1397 1 1.72 17.7000008 10.6199999 35.4000015 -0.83767 0.546176 -0.90501 +1398 1 1.72 19.4699993 12.3900004 35.4000015 0.93805 0.3465 -0.90501 +1399 1 1.72 19.4699993 10.6199999 37.1699982 -0.92963 0.368496 -0.990079 +1400 1 1.72 17.7000008 12.3900004 37.1699982 -0.777503 -0.628879 -0.990079 +1401 1 1.72 21.2399998 10.6199999 35.4000015 -0.65862 0.752476 -0.90501 +1402 1 1.72 23.0100002 12.3900004 35.4000015 0.988051 0.154127 -0.90501 +1403 1 1.72 23.0100002 10.6199999 37.1699982 -0.397996 -0.917387 -0.990079 +1404 1 1.72 21.2399998 12.3900004 37.1699982 0.478327 0.878182 -0.990079 +1405 1 1.72 24.7800007 10.6199999 35.4000015 -0.999092 0.0426096 -0.90501 +1406 1 1.72 26.5499993 12.3900004 35.4000015 -0.59408 0.804406 -0.90501 +1407 1 1.72 26.5499993 10.6199999 37.1699982 -0.851709 0.524015 -0.990079 +1408 1 1.72 24.7800007 12.3900004 37.1699982 -0.938552 -0.345137 -0.990079 +1409 1 1.72 0.0 0.0 38.9399986 0.344952 -0.93862 -1.0 +1410 1 1.72 1.77 1.77 38.9399986 0.660389 0.750924 -1.0 +1411 1 1.72 1.77 0.0 40.7099991 0.899727 0.436453 -1.0 +1412 1 1.72 0.0 1.77 40.7099991 0.437888 0.899029 -1.0 +1413 1 1.72 3.54 0.0 38.9399986 0.167168 -0.985928 -1.0 +1414 1 1.72 5.31 1.77 38.9399986 0.892267 -0.451507 -1.0 +1415 1 1.72 5.31 0.0 40.7099991 0.513878 0.857863 -1.0 +1416 1 1.72 3.54 1.77 40.7099991 0.799566 0.600578 -1.0 +1417 1 1.72 7.0799999 0.0 38.9399986 -0.521087 0.853504 -1.0 +1418 1 1.72 8.8500004 1.77 38.9399986 -0.330938 0.943653 -1.0 +1419 1 1.72 8.8500004 0.0 40.7099991 0.548165 -0.83637 -1.0 +1420 1 1.72 7.0799999 1.77 40.7099991 0.730342 -0.683081 -1.0 +1421 1 1.72 10.6199999 0.0 38.9399986 -0.266616 0.963803 -1.0 +1422 1 1.72 12.3900004 1.77 38.9399986 -0.633583 -0.773675 -1.0 +1423 1 1.72 12.3900004 0.0 40.7099991 -0.684695 0.728829 -1.0 +1424 1 1.72 10.6199999 1.77 40.7099991 0.977689 0.21006 -1.0 +1425 1 1.72 14.1599999 0.0 38.9399986 -0.0328035 0.999462 -1.0 +1426 1 1.72 15.9300004 1.77 38.9399986 -0.877562 0.479464 -1.0 +1427 1 1.72 15.9300004 0.0 40.7099991 0.0138242 -0.999904 -1.0 +1428 1 1.72 14.1599999 1.77 40.7099991 -0.960762 0.277372 -1.0 +1429 1 1.72 17.7000008 0.0 38.9399986 -0.903391 0.428818 -1.0 +1430 1 1.72 19.4699993 1.77 38.9399986 -0.0462961 0.998928 -1.0 +1431 1 1.72 19.4699993 0.0 40.7099991 0.398752 -0.917059 -1.0 +1432 1 1.72 17.7000008 1.77 40.7099991 -0.676259 -0.736664 -1.0 +1433 1 1.72 21.2399998 0.0 38.9399986 0.74816 -0.663519 -1.0 +1434 1 1.72 23.0100002 1.77 38.9399986 0.986612 -0.163082 -1.0 +1435 1 1.72 23.0100002 0.0 40.7099991 0.787619 -0.616163 -1.0 +1436 1 1.72 21.2399998 1.77 40.7099991 -0.829699 0.558211 -1.0 +1437 1 1.72 24.7800007 0.0 38.9399986 0.783063 -0.621942 -1.0 +1438 1 1.72 26.5499993 1.77 38.9399986 -0.354314 -0.935126 -1.0 +1439 1 1.72 26.5499993 0.0 40.7099991 -0.998058 0.0622859 -1.0 +1440 1 1.72 24.7800007 1.77 40.7099991 -0.0230319 -0.999735 -1.0 +1441 1 1.72 0.0 3.54 38.9399986 -0.998688 -0.0512099 -1.0 +1442 1 1.72 1.77 5.31 38.9399986 -0.992267 -0.124119 -1.0 +1443 1 1.72 1.77 3.54 40.7099991 -0.243292 0.969953 -1.0 +1444 1 1.72 0.0 5.31 40.7099991 0.65042 -0.759574 -1.0 +1445 1 1.72 3.54 3.54 38.9399986 -0.157989 -0.987441 -1.0 +1446 1 1.72 5.31 5.31 38.9399986 -0.0723898 -0.997376 -1.0 +1447 1 1.72 5.31 3.54 40.7099991 0.868632 0.495458 -1.0 +1448 1 1.72 3.54 5.31 40.7099991 0.476134 0.879373 -1.0 +1449 1 1.72 7.0799999 3.54 38.9399986 -0.733079 0.680143 -1.0 +1450 1 1.72 8.8500004 5.31 38.9399986 0.884991 -0.465607 -1.0 +1451 1 1.72 8.8500004 3.54 40.7099991 0.598281 0.801286 -1.0 +1452 1 1.72 7.0799999 5.31 40.7099991 -0.78193 0.623366 -1.0 +1453 1 1.72 10.6199999 3.54 38.9399986 0.393558 0.9193 -1.0 +1454 1 1.72 12.3900004 5.31 38.9399986 0.517718 0.855551 -1.0 +1455 1 1.72 12.3900004 3.54 40.7099991 0.121396 0.992604 -1.0 +1456 1 1.72 10.6199999 5.31 40.7099991 -0.726927 -0.686715 -1.0 +1457 1 1.72 14.1599999 3.54 38.9399986 -0.017655 0.999844 -1.0 +1458 1 1.72 15.9300004 5.31 38.9399986 -0.230251 0.973131 -1.0 +1459 1 1.72 15.9300004 3.54 40.7099991 0.535262 0.844686 -1.0 +1460 1 1.72 14.1599999 5.31 40.7099991 0.690918 -0.722933 -1.0 +1461 1 1.72 17.7000008 3.54 38.9399986 -0.0288586 0.999584 -1.0 +1462 1 1.72 19.4699993 5.31 38.9399986 0.220472 -0.975393 -1.0 +1463 1 1.72 19.4699993 3.54 40.7099991 0.904602 -0.426257 -1.0 +1464 1 1.72 17.7000008 5.31 40.7099991 0.183673 0.982987 -1.0 +1465 1 1.72 21.2399998 3.54 38.9399986 -0.99336 -0.115049 -1.0 +1466 1 1.72 23.0100002 5.31 38.9399986 -0.843525 -0.53709 -1.0 +1467 1 1.72 23.0100002 3.54 40.7099991 0.801596 -0.597866 -1.0 +1468 1 1.72 21.2399998 5.31 40.7099991 0.377474 0.92602 -1.0 +1469 1 1.72 24.7800007 3.54 38.9399986 0.231941 -0.97273 -1.0 +1470 1 1.72 26.5499993 5.31 38.9399986 0.704724 0.709481 -1.0 +1471 1 1.72 26.5499993 3.54 40.7099991 0.399001 0.916951 -1.0 +1472 1 1.72 24.7800007 5.31 40.7099991 0.786339 0.617795 -1.0 +1473 1 1.72 0.0 7.0799999 38.9399986 0.991691 0.128642 -1.0 +1474 1 1.72 1.77 8.8500004 38.9399986 -0.931353 0.364118 -1.0 +1475 1 1.72 1.77 7.0799999 40.7099991 0.390401 -0.920645 -1.0 +1476 1 1.72 0.0 8.8500004 40.7099991 0.832046 -0.554707 -1.0 +1477 1 1.72 3.54 7.0799999 38.9399986 0.490501 -0.87144 -1.0 +1478 1 1.72 5.31 8.8500004 38.9399986 0.517491 0.855689 -1.0 +1479 1 1.72 5.31 7.0799999 40.7099991 0.96801 -0.25091 -1.0 +1480 1 1.72 3.54 8.8500004 40.7099991 0.831647 0.555304 -1.0 +1481 1 1.72 7.0799999 7.0799999 38.9399986 -0.756584 -0.653896 -1.0 +1482 1 1.72 8.8500004 8.8500004 38.9399986 0.972635 0.23234 -1.0 +1483 1 1.72 8.8500004 7.0799999 40.7099991 -0.569089 -0.822276 -1.0 +1484 1 1.72 7.0799999 8.8500004 40.7099991 -0.999997 -0.00232018 -1.0 +1485 1 1.72 10.6199999 7.0799999 38.9399986 -0.917029 -0.39882 -1.0 +1486 1 1.72 12.3900004 8.8500004 38.9399986 -0.749901 0.66155 -1.0 +1487 1 1.72 12.3900004 7.0799999 40.7099991 -0.953485 0.301441 -1.0 +1488 1 1.72 10.6199999 8.8500004 40.7099991 -0.959917 -0.280284 -1.0 +1489 1 1.72 14.1599999 7.0799999 38.9399986 -0.419687 -0.907669 -1.0 +1490 1 1.72 15.9300004 8.8500004 38.9399986 -0.736691 0.676229 -1.0 +1491 1 1.72 15.9300004 7.0799999 40.7099991 -0.661978 -0.749524 -1.0 +1492 1 1.72 14.1599999 8.8500004 40.7099991 -0.247976 -0.968766 -1.0 +1493 1 1.72 17.7000008 7.0799999 38.9399986 -0.955047 -0.296455 -1.0 +1494 1 1.72 19.4699993 8.8500004 38.9399986 0.771333 -0.636431 -1.0 +1495 1 1.72 19.4699993 7.0799999 40.7099991 -0.534287 0.845303 -1.0 +1496 1 1.72 17.7000008 8.8500004 40.7099991 -0.392285 -0.919844 -1.0 +1497 1 1.72 21.2399998 7.0799999 38.9399986 -0.356713 0.934214 -1.0 +1498 1 1.72 23.0100002 8.8500004 38.9399986 -0.54703 0.837113 -1.0 +1499 1 1.72 23.0100002 7.0799999 40.7099991 0.534982 0.844864 -1.0 +1500 1 1.72 21.2399998 8.8500004 40.7099991 -0.367134 0.930168 -1.0 +1501 1 1.72 24.7800007 7.0799999 38.9399986 -0.657356 -0.75358 -1.0 +1502 1 1.72 26.5499993 8.8500004 38.9399986 -0.0400527 -0.999198 -1.0 +1503 1 1.72 26.5499993 7.0799999 40.7099991 0.174483 0.98466 -1.0 +1504 1 1.72 24.7800007 8.8500004 40.7099991 0.846796 -0.531917 -1.0 +1505 1 1.72 0.0 10.6199999 38.9399986 -0.477487 0.878639 -1.0 +1506 1 1.72 1.77 12.3900004 38.9399986 -0.935231 -0.354038 -1.0 +1507 1 1.72 1.77 10.6199999 40.7099991 0.99998 -0.00630189 -1.0 +1508 1 1.72 0.0 12.3900004 40.7099991 -0.890445 -0.455092 -1.0 +1509 1 1.72 3.54 10.6199999 38.9399986 0.734004 -0.679145 -1.0 +1510 1 1.72 5.31 12.3900004 38.9399986 -0.124496 -0.99222 -1.0 +1511 1 1.72 5.31 10.6199999 40.7099991 0.798742 -0.601673 -1.0 +1512 1 1.72 3.54 12.3900004 40.7099991 -0.993495 -0.113879 -1.0 +1513 1 1.72 7.0799999 10.6199999 38.9399986 -0.998599 0.0529131 -1.0 +1514 1 1.72 8.8500004 12.3900004 38.9399986 -0.370595 0.928795 -1.0 +1515 1 1.72 8.8500004 10.6199999 40.7099991 -0.945136 0.326676 -1.0 +1516 1 1.72 7.0799999 12.3900004 40.7099991 0.865467 -0.500967 -1.0 +1517 1 1.72 10.6199999 10.6199999 38.9399986 -0.643472 -0.76547 -1.0 +1518 1 1.72 12.3900004 12.3900004 38.9399986 -0.662488 -0.749073 -1.0 +1519 1 1.72 12.3900004 10.6199999 40.7099991 -0.862552 0.505969 -1.0 +1520 1 1.72 10.6199999 12.3900004 40.7099991 0.532564 0.84639 -1.0 +1521 1 1.72 14.1599999 10.6199999 38.9399986 0.184854 -0.982766 -1.0 +1522 1 1.72 15.9300004 12.3900004 38.9399986 0.702517 -0.711667 -1.0 +1523 1 1.72 15.9300004 10.6199999 40.7099991 -0.90802 -0.418927 -1.0 +1524 1 1.72 14.1599999 12.3900004 40.7099991 0.540309 0.841467 -1.0 +1525 1 1.72 17.7000008 10.6199999 38.9399986 -0.694843 -0.719161 -1.0 +1526 1 1.72 19.4699993 12.3900004 38.9399986 0.963227 0.268688 -1.0 +1527 1 1.72 19.4699993 10.6199999 40.7099991 0.854974 -0.518671 -1.0 +1528 1 1.72 17.7000008 12.3900004 40.7099991 0.125003 -0.992156 -1.0 +1529 1 1.72 21.2399998 10.6199999 38.9399986 0.793554 0.6085 -1.0 +1530 1 1.72 23.0100002 12.3900004 38.9399986 0.48485 0.874597 -1.0 +1531 1 1.72 23.0100002 10.6199999 40.7099991 -0.732329 -0.68095 -1.0 +1532 1 1.72 21.2399998 12.3900004 40.7099991 -0.754029 -0.656841 -1.0 +1533 1 1.72 24.7800007 10.6199999 38.9399986 0.603218 0.797577 -1.0 +1534 1 1.72 26.5499993 12.3900004 38.9399986 0.111567 -0.993757 -1.0 +1535 1 1.72 26.5499993 10.6199999 40.7099991 -0.443806 0.896123 -1.0 +1536 1 1.72 24.7800007 12.3900004 40.7099991 0.553387 0.832924 -1.0 +1537 1 1.72 0.0 0.0 42.4799996 -0.779882 0.625926 -1.0 +1538 1 1.72 1.77 1.77 42.4799996 -0.99774 -0.0671896 -1.0 +1539 1 1.72 1.77 0.0 44.25 0.908352 -0.418206 -1.0 +1540 1 1.72 0.0 1.77 44.25 -0.689177 -0.724593 -1.0 +1541 1 1.72 3.54 0.0 42.4799996 0.616551 -0.787315 -1.0 +1542 1 1.72 5.31 1.77 42.4799996 0.882048 0.471159 -1.0 +1543 1 1.72 5.31 0.0 44.25 -0.27813 -0.960543 -1.0 +1544 1 1.72 3.54 1.77 44.25 0.556168 0.83107 -1.0 +1545 1 1.72 7.0799999 0.0 42.4799996 0.432803 0.901489 -1.0 +1546 1 1.72 8.8500004 1.77 42.4799996 0.616089 0.787677 -1.0 +1547 1 1.72 8.8500004 0.0 44.25 -0.380929 -0.924604 -1.0 +1548 1 1.72 7.0799999 1.77 44.25 -0.727313 -0.686306 -1.0 +1549 1 1.72 10.6199999 0.0 42.4799996 0.873361 -0.487074 -1.0 +1550 1 1.72 12.3900004 1.77 42.4799996 0.755001 0.655723 -1.0 +1551 1 1.72 12.3900004 0.0 44.25 0.956648 0.291245 -1.0 +1552 1 1.72 10.6199999 1.77 44.25 0.774436 0.632653 -1.0 +1553 1 1.72 14.1599999 0.0 42.4799996 0.968323 0.249703 -1.0 +1554 1 1.72 15.9300004 1.77 42.4799996 0.992335 -0.123574 -1.0 +1555 1 1.72 15.9300004 0.0 44.25 0.943656 -0.330929 -1.0 +1556 1 1.72 14.1599999 1.77 44.25 -0.682322 0.731052 -1.0 +1557 1 1.72 17.7000008 0.0 42.4799996 0.956794 0.290766 -1.0 +1558 1 1.72 19.4699993 1.77 42.4799996 0.991775 -0.127996 -1.0 +1559 1 1.72 19.4699993 0.0 44.25 0.965549 0.260221 -1.0 +1560 1 1.72 17.7000008 1.77 44.25 -0.770857 -0.637009 -1.0 +1561 1 1.72 21.2399998 0.0 42.4799996 0.53295 0.846147 -1.0 +1562 1 1.72 23.0100002 1.77 42.4799996 -0.0202521 -0.999795 -1.0 +1563 1 1.72 23.0100002 0.0 44.25 -0.818851 -0.574007 -1.0 +1564 1 1.72 21.2399998 1.77 44.25 0.363505 0.931592 -1.0 +1565 1 1.72 24.7800007 0.0 42.4799996 0.517936 -0.855419 -1.0 +1566 1 1.72 26.5499993 1.77 42.4799996 -0.788068 0.615588 -1.0 +1567 1 1.72 26.5499993 0.0 44.25 0.573091 -0.819492 -1.0 +1568 1 1.72 24.7800007 1.77 44.25 -0.841693 -0.539956 -1.0 +1569 1 1.72 0.0 3.54 42.4799996 -0.113809 -0.993503 -1.0 +1570 1 1.72 1.77 5.31 42.4799996 -0.998184 0.060233 -1.0 +1571 1 1.72 1.77 3.54 44.25 -0.707223 -0.70699 -1.0 +1572 1 1.72 0.0 5.31 44.25 0.700773 -0.713384 -1.0 +1573 1 1.72 3.54 3.54 42.4799996 0.66094 -0.750438 -1.0 +1574 1 1.72 5.31 5.31 42.4799996 0.772341 -0.635208 -1.0 +1575 1 1.72 5.31 3.54 44.25 -0.797329 -0.603544 -1.0 +1576 1 1.72 3.54 5.31 44.25 -0.989045 0.147617 -1.0 +1577 1 1.72 7.0799999 3.54 42.4799996 0.99772 -0.0674899 -1.0 +1578 1 1.72 8.8500004 5.31 42.4799996 0.999809 0.0195364 -1.0 +1579 1 1.72 8.8500004 3.54 44.25 -0.993804 0.111149 -1.0 +1580 1 1.72 7.0799999 5.31 44.25 -0.447511 0.894279 -1.0 +1581 1 1.72 10.6199999 3.54 42.4799996 0.95707 0.289856 -1.0 +1582 1 1.72 12.3900004 5.31 42.4799996 0.40934 -0.912382 -1.0 +1583 1 1.72 12.3900004 3.54 44.25 0.411987 -0.91119 -1.0 +1584 1 1.72 10.6199999 5.31 44.25 0.0809672 0.996717 -1.0 +1585 1 1.72 14.1599999 3.54 42.4799996 0.806982 -0.590576 -1.0 +1586 1 1.72 15.9300004 5.31 42.4799996 -0.92161 -0.388116 -1.0 +1587 1 1.72 15.9300004 3.54 44.25 0.895205 -0.445655 -1.0 +1588 1 1.72 14.1599999 5.31 44.25 0.193999 0.981002 -1.0 +1589 1 1.72 17.7000008 3.54 42.4799996 0.571974 0.820272 -1.0 +1590 1 1.72 19.4699993 5.31 42.4799996 0.997266 -0.0738976 -1.0 +1591 1 1.72 19.4699993 3.54 44.25 -0.681332 0.731974 -1.0 +1592 1 1.72 17.7000008 5.31 44.25 -0.709658 -0.704547 -1.0 +1593 1 1.72 21.2399998 3.54 42.4799996 0.781285 -0.624174 -1.0 +1594 1 1.72 23.0100002 5.31 42.4799996 0.0827649 0.996569 -1.0 +1595 1 1.72 23.0100002 3.54 44.25 -0.891169 0.453672 -1.0 +1596 1 1.72 21.2399998 5.31 44.25 -0.960858 0.277042 -1.0 +1597 1 1.72 24.7800007 3.54 42.4799996 -0.246809 0.969064 -1.0 +1598 1 1.72 26.5499993 5.31 42.4799996 0.731543 -0.681795 -1.0 +1599 1 1.72 26.5499993 3.54 44.25 0.507028 -0.86193 -1.0 +1600 1 1.72 24.7800007 5.31 44.25 0.239267 -0.970954 -1.0 +1601 1 1.72 0.0 7.0799999 42.4799996 -0.207203 -0.978298 -1.0 +1602 1 1.72 1.77 8.8500004 42.4799996 -0.796206 -0.605026 -1.0 +1603 1 1.72 1.77 7.0799999 44.25 -0.861104 0.508429 -1.0 +1604 1 1.72 0.0 8.8500004 44.25 -0.962434 -0.271514 -1.0 +1605 1 1.72 3.54 7.0799999 42.4799996 -0.960785 0.277295 -1.0 +1606 1 1.72 5.31 8.8500004 42.4799996 0.860087 0.510147 -1.0 +1607 1 1.72 5.31 7.0799999 44.25 0.685069 -0.728478 -1.0 +1608 1 1.72 3.54 8.8500004 44.25 -0.866577 0.499044 -1.0 +1609 1 1.72 7.0799999 7.0799999 42.4799996 0.914713 -0.404105 -1.0 +1610 1 1.72 8.8500004 8.8500004 42.4799996 0.657443 -0.753504 -1.0 +1611 1 1.72 8.8500004 7.0799999 44.25 -0.611297 -0.791401 -1.0 +1612 1 1.72 7.0799999 8.8500004 44.25 -0.53984 -0.841768 -1.0 +1613 1 1.72 10.6199999 7.0799999 42.4799996 -0.741902 -0.670508 -1.0 +1614 1 1.72 12.3900004 8.8500004 42.4799996 0.999853 -0.0171239 -1.0 +1615 1 1.72 12.3900004 7.0799999 44.25 -0.794014 0.6079 -1.0 +1616 1 1.72 10.6199999 8.8500004 44.25 0.764547 0.644568 -1.0 +1617 1 1.72 14.1599999 7.0799999 42.4799996 -0.294745 0.955576 -1.0 +1618 1 1.72 15.9300004 8.8500004 42.4799996 -0.258804 -0.96593 -1.0 +1619 1 1.72 15.9300004 7.0799999 44.25 0.8344 -0.55116 -1.0 +1620 1 1.72 14.1599999 8.8500004 44.25 0.648362 0.761332 -1.0 +1621 1 1.72 17.7000008 7.0799999 42.4799996 -0.448192 -0.893937 -1.0 +1622 1 1.72 19.4699993 8.8500004 42.4799996 0.622553 0.782578 -1.0 +1623 1 1.72 19.4699993 7.0799999 44.25 -0.907355 0.420366 -1.0 +1624 1 1.72 17.7000008 8.8500004 44.25 0.993176 -0.116625 -1.0 +1625 1 1.72 21.2399998 7.0799999 42.4799996 -0.985696 -0.168533 -1.0 +1626 1 1.72 23.0100002 8.8500004 42.4799996 -0.611019 0.791616 -1.0 +1627 1 1.72 23.0100002 7.0799999 44.25 -0.660688 -0.750661 -1.0 +1628 1 1.72 21.2399998 8.8500004 44.25 -0.315353 -0.948974 -1.0 +1629 1 1.72 24.7800007 7.0799999 42.4799996 0.867247 0.497879 -1.0 +1630 1 1.72 26.5499993 8.8500004 42.4799996 0.0730612 0.997327 -1.0 +1631 1 1.72 26.5499993 7.0799999 44.25 0.925677 -0.378315 -1.0 +1632 1 1.72 24.7800007 8.8500004 44.25 0.455424 -0.890275 -1.0 +1633 1 1.72 0.0 10.6199999 42.4799996 0.798618 0.601838 -1.0 +1634 1 1.72 1.77 12.3900004 42.4799996 -0.321703 -0.946841 -1.0 +1635 1 1.72 1.77 10.6199999 44.25 0.903373 0.428856 -1.0 +1636 1 1.72 0.0 12.3900004 44.25 -0.859684 -0.510826 -1.0 +1637 1 1.72 3.54 10.6199999 42.4799996 -0.290069 0.957006 -1.0 +1638 1 1.72 5.31 12.3900004 42.4799996 0.873874 -0.486152 -1.0 +1639 1 1.72 5.31 10.6199999 44.25 0.560085 -0.828435 -1.0 +1640 1 1.72 3.54 12.3900004 44.25 -0.583989 0.811762 -1.0 +1641 1 1.72 7.0799999 10.6199999 42.4799996 -0.605849 -0.79558 -1.0 +1642 1 1.72 8.8500004 12.3900004 42.4799996 0.99353 0.113569 -1.0 +1643 1 1.72 8.8500004 10.6199999 44.25 -0.267563 0.96354 -1.0 +1644 1 1.72 7.0799999 12.3900004 44.25 0.865189 -0.501446 -1.0 +1645 1 1.72 10.6199999 10.6199999 42.4799996 0.525633 -0.850711 -1.0 +1646 1 1.72 12.3900004 12.3900004 42.4799996 0.494672 0.86908 -1.0 +1647 1 1.72 12.3900004 10.6199999 44.25 -0.39709 0.917779 -1.0 +1648 1 1.72 10.6199999 12.3900004 44.25 -0.441693 -0.897166 -1.0 +1649 1 1.72 14.1599999 10.6199999 42.4799996 0.497335 -0.867559 -1.0 +1650 1 1.72 15.9300004 12.3900004 42.4799996 0.0257625 0.999668 -1.0 +1651 1 1.72 15.9300004 10.6199999 44.25 -0.59284 0.80532 -1.0 +1652 1 1.72 14.1599999 12.3900004 44.25 0.26395 -0.964536 -1.0 +1653 1 1.72 17.7000008 10.6199999 42.4799996 -0.927094 -0.37483 -1.0 +1654 1 1.72 19.4699993 12.3900004 42.4799996 -0.648907 0.760868 -1.0 +1655 1 1.72 19.4699993 10.6199999 44.25 0.664529 0.747263 -1.0 +1656 1 1.72 17.7000008 12.3900004 44.25 -0.550726 0.834686 -1.0 +1657 1 1.72 21.2399998 10.6199999 42.4799996 0.976708 -0.214574 -1.0 +1658 1 1.72 23.0100002 12.3900004 42.4799996 0.911639 0.410993 -1.0 +1659 1 1.72 23.0100002 10.6199999 44.25 0.793568 -0.608481 -1.0 +1660 1 1.72 21.2399998 12.3900004 44.25 0.878681 -0.477409 -1.0 +1661 1 1.72 24.7800007 10.6199999 42.4799996 0.99834 -0.0576003 -1.0 +1662 1 1.72 26.5499993 12.3900004 42.4799996 0.559264 -0.82899 -1.0 +1663 1 1.72 26.5499993 10.6199999 44.25 0.696787 -0.717278 -1.0 +1664 1 1.72 24.7800007 12.3900004 44.25 0.801346 -0.598201 -1.0 +1665 1 1.72 0.0 0.0 46.0200005 -0.796904 -0.604106 -1.0 +1666 1 1.72 1.77 1.77 46.0200005 -0.70049 -0.713662 -1.0 +1667 1 1.72 1.77 0.0 47.7900009 -0.17792 0.984045 -1.0 +1668 1 1.72 0.0 1.77 47.7900009 0.99969 -0.0249106 -1.0 +1669 1 1.72 3.54 0.0 46.0200005 -0.967654 0.252279 -1.0 +1670 1 1.72 5.31 1.77 46.0200005 0.565162 0.82498 -1.0 +1671 1 1.72 5.31 0.0 47.7900009 0.8712 0.490929 -1.0 +1672 1 1.72 3.54 1.77 47.7900009 -0.575531 0.81778 -1.0 +1673 1 1.72 7.0799999 0.0 46.0200005 -0.956595 -0.29142 -1.0 +1674 1 1.72 8.8500004 1.77 46.0200005 0.799627 0.600497 -1.0 +1675 1 1.72 8.8500004 0.0 47.7900009 0.963356 0.268227 -1.0 +1676 1 1.72 7.0799999 1.77 47.7900009 -0.781194 0.624288 -1.0 +1677 1 1.72 10.6199999 0.0 46.0200005 0.998191 -0.0601289 -1.0 +1678 1 1.72 12.3900004 1.77 46.0200005 0.94734 0.32023 -1.0 +1679 1 1.72 12.3900004 0.0 47.7900009 -0.30785 0.951435 -1.0 +1680 1 1.72 10.6199999 1.77 47.7900009 0.955995 0.293382 -1.0 +1681 1 1.72 14.1599999 0.0 46.0200005 0.633712 0.773569 -1.0 +1682 1 1.72 15.9300004 1.77 46.0200005 0.219042 -0.975716 -1.0 +1683 1 1.72 15.9300004 0.0 47.7900009 0.950876 0.309571 -1.0 +1684 1 1.72 14.1599999 1.77 47.7900009 -0.0549325 -0.99849 -1.0 +1685 1 1.72 17.7000008 0.0 46.0200005 0.854227 -0.519901 -1.0 +1686 1 1.72 19.4699993 1.77 46.0200005 0.696316 -0.717735 -1.0 +1687 1 1.72 19.4699993 0.0 47.7900009 -0.936229 -0.351392 -1.0 +1688 1 1.72 17.7000008 1.77 47.7900009 0.718631 -0.695392 -1.0 +1689 1 1.72 21.2399998 0.0 46.0200005 -0.611898 0.790936 -1.0 +1690 1 1.72 23.0100002 1.77 46.0200005 -0.616376 0.787452 -1.0 +1691 1 1.72 23.0100002 0.0 47.7900009 -0.981108 0.193458 -1.0 +1692 1 1.72 21.2399998 1.77 47.7900009 0.522272 -0.852779 -1.0 +1693 1 1.72 24.7800007 0.0 46.0200005 0.533479 -0.845813 -1.0 +1694 1 1.72 26.5499993 1.77 46.0200005 -0.858383 -0.513009 -1.0 +1695 1 1.72 26.5499993 0.0 47.7900009 -0.766908 -0.641758 -1.0 +1696 1 1.72 24.7800007 1.77 47.7900009 0.815759 0.578393 -1.0 +1697 1 1.72 0.0 3.54 46.0200005 -0.302547 -0.953135 -1.0 +1698 1 1.72 1.77 5.31 46.0200005 -0.275049 0.96143 -1.0 +1699 1 1.72 1.77 3.54 47.7900009 -0.614219 0.789135 -1.0 +1700 1 1.72 0.0 5.31 47.7900009 -0.015658 0.999877 -1.0 +1701 1 1.72 3.54 3.54 46.0200005 0.933542 -0.358467 -1.0 +1702 1 1.72 5.31 5.31 46.0200005 -0.711456 0.70273 -1.0 +1703 1 1.72 5.31 3.54 47.7900009 0.852805 -0.522229 -1.0 +1704 1 1.72 3.54 5.31 47.7900009 -0.330465 -0.943818 -1.0 +1705 1 1.72 7.0799999 3.54 46.0200005 0.384837 0.922985 -1.0 +1706 1 1.72 8.8500004 5.31 46.0200005 -0.806817 -0.590801 -1.0 +1707 1 1.72 8.8500004 3.54 47.7900009 0.144424 0.989516 -1.0 +1708 1 1.72 7.0799999 5.31 47.7900009 0.861168 0.50832 -1.0 +1709 1 1.72 10.6199999 3.54 46.0200005 0.747687 0.664052 -1.0 +1710 1 1.72 12.3900004 5.31 46.0200005 -0.956463 -0.291853 -1.0 +1711 1 1.72 12.3900004 3.54 47.7900009 0.374096 0.92739 -1.0 +1712 1 1.72 10.6199999 5.31 47.7900009 -0.682816 -0.73059 -1.0 +1713 1 1.72 14.1599999 3.54 46.0200005 0.693275 -0.720674 -1.0 +1714 1 1.72 15.9300004 5.31 46.0200005 0.335243 0.942132 -1.0 +1715 1 1.72 15.9300004 3.54 47.7900009 0.780251 0.625467 -1.0 +1716 1 1.72 14.1599999 5.31 47.7900009 0.677671 -0.735366 -1.0 +1717 1 1.72 17.7000008 3.54 46.0200005 -0.824877 -0.565312 -1.0 +1718 1 1.72 19.4699993 5.31 46.0200005 0.969532 0.244964 -1.0 +1719 1 1.72 19.4699993 3.54 47.7900009 -0.223332 0.974743 -1.0 +1720 1 1.72 17.7000008 5.31 47.7900009 0.477914 0.878406 -1.0 +1721 1 1.72 21.2399998 3.54 46.0200005 0.907628 0.419776 -1.0 +1722 1 1.72 23.0100002 5.31 46.0200005 0.926945 -0.375198 -1.0 +1723 1 1.72 23.0100002 3.54 47.7900009 -0.129674 -0.991557 -1.0 +1724 1 1.72 21.2399998 5.31 47.7900009 0.983027 0.183462 -1.0 +1725 1 1.72 24.7800007 3.54 46.0200005 0.914456 -0.404685 -1.0 +1726 1 1.72 26.5499993 5.31 46.0200005 -0.664064 0.747676 -1.0 +1727 1 1.72 26.5499993 3.54 47.7900009 0.0509501 0.998701 -1.0 +1728 1 1.72 24.7800007 5.31 47.7900009 0.1595 0.987198 -1.0 +1729 1 1.72 0.0 7.0799999 46.0200005 -0.684021 -0.729462 -1.0 +1730 1 1.72 1.77 8.8500004 46.0200005 0.652831 -0.757504 -1.0 +1731 1 1.72 1.77 7.0799999 47.7900009 0.9889 0.148581 -1.0 +1732 1 1.72 0.0 8.8500004 47.7900009 0.0993089 0.995057 -1.0 +1733 1 1.72 3.54 7.0799999 46.0200005 0.765117 -0.643891 -1.0 +1734 1 1.72 5.31 8.8500004 46.0200005 -0.996738 -0.0807099 -1.0 +1735 1 1.72 5.31 7.0799999 47.7900009 0.547293 0.836941 -1.0 +1736 1 1.72 3.54 8.8500004 47.7900009 -0.0169588 -0.999856 -1.0 +1737 1 1.72 7.0799999 7.0799999 46.0200005 0.743327 -0.668928 -1.0 +1738 1 1.72 8.8500004 8.8500004 46.0200005 0.474299 0.880364 -1.0 +1739 1 1.72 8.8500004 7.0799999 47.7900009 0.747256 0.664537 -1.0 +1740 1 1.72 7.0799999 8.8500004 47.7900009 -0.552665 -0.833404 -1.0 +1741 1 1.72 10.6199999 7.0799999 46.0200005 0.708553 -0.705658 -1.0 +1742 1 1.72 12.3900004 8.8500004 46.0200005 0.403589 0.914941 -1.0 +1743 1 1.72 12.3900004 7.0799999 47.7900009 -0.115193 -0.993343 -1.0 +1744 1 1.72 10.6199999 8.8500004 47.7900009 0.213395 0.976966 -1.0 +1745 1 1.72 14.1599999 7.0799999 46.0200005 0.263861 0.964561 -1.0 +1746 1 1.72 15.9300004 8.8500004 46.0200005 0.128674 -0.991687 -1.0 +1747 1 1.72 15.9300004 7.0799999 47.7900009 -0.963646 -0.267184 -1.0 +1748 1 1.72 14.1599999 8.8500004 47.7900009 0.678015 -0.735048 -1.0 +1749 1 1.72 17.7000008 7.0799999 46.0200005 0.92461 0.380915 -1.0 +1750 1 1.72 19.4699993 8.8500004 46.0200005 0.0177682 -0.999842 -1.0 +1751 1 1.72 19.4699993 7.0799999 47.7900009 -0.778002 0.628261 -1.0 +1752 1 1.72 17.7000008 8.8500004 47.7900009 -0.998079 0.0619576 -1.0 +1753 1 1.72 21.2399998 7.0799999 46.0200005 0.78946 0.613802 -1.0 +1754 1 1.72 23.0100002 8.8500004 46.0200005 -0.395605 0.918421 -1.0 +1755 1 1.72 23.0100002 7.0799999 47.7900009 -0.152619 -0.988285 -1.0 +1756 1 1.72 21.2399998 8.8500004 47.7900009 0.847116 -0.531408 -1.0 +1757 1 1.72 24.7800007 7.0799999 46.0200005 -0.732302 -0.68098 -1.0 +1758 1 1.72 26.5499993 8.8500004 46.0200005 -0.66848 -0.74373 -1.0 +1759 1 1.72 26.5499993 7.0799999 47.7900009 -0.58023 -0.814453 -1.0 +1760 1 1.72 24.7800007 8.8500004 47.7900009 0.737459 0.675392 -1.0 +1761 1 1.72 0.0 10.6199999 46.0200005 -0.942671 0.333723 -1.0 +1762 1 1.72 1.77 12.3900004 46.0200005 -0.578344 0.815793 -1.0 +1763 1 1.72 1.77 10.6199999 47.7900009 -0.145071 0.989421 -1.0 +1764 1 1.72 0.0 12.3900004 47.7900009 -0.755154 0.655548 -1.0 +1765 1 1.72 3.54 10.6199999 46.0200005 0.943079 0.332568 -1.0 +1766 1 1.72 5.31 12.3900004 46.0200005 -0.2576 -0.966252 -1.0 +1767 1 1.72 5.31 10.6199999 47.7900009 0.987939 0.154846 -1.0 +1768 1 1.72 3.54 12.3900004 47.7900009 0.720715 0.693231 -1.0 +1769 1 1.72 7.0799999 10.6199999 46.0200005 -0.966813 -0.255486 -1.0 +1770 1 1.72 8.8500004 12.3900004 46.0200005 0.776347 -0.630306 -1.0 +1771 1 1.72 8.8500004 10.6199999 47.7900009 0.767811 0.640677 -1.0 +1772 1 1.72 7.0799999 12.3900004 47.7900009 -0.639532 -0.768764 -1.0 +1773 1 1.72 10.6199999 10.6199999 46.0200005 0.801365 0.598176 -1.0 +1774 1 1.72 12.3900004 12.3900004 46.0200005 -0.124384 0.992234 -1.0 +1775 1 1.72 12.3900004 10.6199999 47.7900009 -0.251598 -0.967832 -1.0 +1776 1 1.72 10.6199999 12.3900004 47.7900009 0.516703 0.856165 -1.0 +1777 1 1.72 14.1599999 10.6199999 46.0200005 -0.694838 -0.719166 -1.0 +1778 1 1.72 15.9300004 12.3900004 46.0200005 0.690554 0.72328 -1.0 +1779 1 1.72 15.9300004 10.6199999 47.7900009 -0.973203 -0.229946 -1.0 +1780 1 1.72 14.1599999 12.3900004 47.7900009 0.995212 0.0977416 -1.0 +1781 1 1.72 17.7000008 10.6199999 46.0200005 -0.768942 -0.639319 -1.0 +1782 1 1.72 19.4699993 12.3900004 46.0200005 -0.238243 -0.971206 -1.0 +1783 1 1.72 19.4699993 10.6199999 47.7900009 -0.781012 0.624515 -1.0 +1784 1 1.72 17.7000008 12.3900004 47.7900009 -0.395793 0.91834 -1.0 +1785 1 1.72 21.2399998 10.6199999 46.0200005 -0.10685 0.994275 -1.0 +1786 1 1.72 23.0100002 12.3900004 46.0200005 0.616544 0.78732 -1.0 +1787 1 1.72 23.0100002 10.6199999 47.7900009 -0.391461 0.920195 -1.0 +1788 1 1.72 21.2399998 12.3900004 47.7900009 -0.957397 0.288773 -1.0 +1789 1 1.72 24.7800007 10.6199999 46.0200005 0.153505 -0.988148 -1.0 +1790 1 1.72 26.5499993 12.3900004 46.0200005 -0.4169 -0.908952 -1.0 +1791 1 1.72 26.5499993 10.6199999 47.7900009 -0.688911 0.724846 -1.0 +1792 1 1.72 24.7800007 12.3900004 47.7900009 -0.64953 -0.760336 -1.0 +1793 1 1.72 0.0 0.0 49.5600014 0.963203 0.268774 -1.0 +1794 1 1.72 1.77 1.77 49.5600014 0.631627 -0.775273 -1.0 +1795 1 1.72 1.77 0.0 51.3300018 0.667759 -0.744377 -1.0 +1796 1 1.72 0.0 1.77 51.3300018 -0.845117 0.534582 -1.0 +1797 1 1.72 3.54 0.0 49.5600014 0.999286 0.0377747 -1.0 +1798 1 1.72 5.31 1.77 49.5600014 -0.0836974 0.996491 -1.0 +1799 1 1.72 5.31 0.0 51.3300018 0.890687 0.454617 -1.0 +1800 1 1.72 3.54 1.77 51.3300018 0.347329 0.937743 -1.0 +1801 1 1.72 7.0799999 0.0 49.5600014 0.902213 0.431292 -1.0 +1802 1 1.72 8.8500004 1.77 49.5600014 -0.511164 -0.859483 -1.0 +1803 1 1.72 8.8500004 0.0 51.3300018 -0.968273 -0.249895 -1.0 +1804 1 1.72 7.0799999 1.77 51.3300018 -0.818559 -0.574423 -1.0 +1805 1 1.72 10.6199999 0.0 49.5600014 0.451731 -0.892154 -1.0 +1806 1 1.72 12.3900004 1.77 49.5600014 -0.993108 0.117206 -1.0 +1807 1 1.72 12.3900004 0.0 51.3300018 0.00463943 -0.999989 -1.0 +1808 1 1.72 10.6199999 1.77 51.3300018 -0.734487 -0.678623 -1.0 +1809 1 1.72 14.1599999 0.0 49.5600014 -0.156131 0.987736 -1.0 +1810 1 1.72 15.9300004 1.77 49.5600014 -0.557165 0.830402 -1.0 +1811 1 1.72 15.9300004 0.0 51.3300018 0.78872 0.614752 -1.0 +1812 1 1.72 14.1599999 1.77 51.3300018 0.879597 -0.475719 -1.0 +1813 1 1.72 17.7000008 0.0 49.5600014 0.636883 -0.77096 -1.0 +1814 1 1.72 19.4699993 1.77 49.5600014 0.677608 -0.735423 -1.0 +1815 1 1.72 19.4699993 0.0 51.3300018 -0.936255 -0.35132 -1.0 +1816 1 1.72 17.7000008 1.77 51.3300018 0.203873 0.978997 -1.0 +1817 1 1.72 21.2399998 0.0 49.5600014 -0.999769 0.0214994 -1.0 +1818 1 1.72 23.0100002 1.77 49.5600014 0.866544 0.499101 -1.0 +1819 1 1.72 23.0100002 0.0 51.3300018 0.867563 0.497327 -1.0 +1820 1 1.72 21.2399998 1.77 51.3300018 0.957119 0.289695 -1.0 +1821 1 1.72 24.7800007 0.0 49.5600014 -0.32598 0.945377 -1.0 +1822 1 1.72 26.5499993 1.77 49.5600014 -0.501215 -0.865323 -1.0 +1823 1 1.72 26.5499993 0.0 51.3300018 0.54141 -0.840759 -1.0 +1824 1 1.72 24.7800007 1.77 51.3300018 -0.939811 -0.341696 -1.0 +1825 1 1.72 0.0 3.54 49.5600014 0.658484 -0.752594 -1.0 +1826 1 1.72 1.77 5.31 49.5600014 -0.00264612 -0.999996 -1.0 +1827 1 1.72 1.77 3.54 51.3300018 -0.766131 -0.642684 -1.0 +1828 1 1.72 0.0 5.31 51.3300018 -0.880543 0.473966 -1.0 +1829 1 1.72 3.54 3.54 49.5600014 -0.0320145 -0.999487 -1.0 +1830 1 1.72 5.31 5.31 49.5600014 0.93436 -0.356332 -1.0 +1831 1 1.72 5.31 3.54 51.3300018 0.497391 -0.867526 -1.0 +1832 1 1.72 3.54 5.31 51.3300018 0.127459 -0.991844 -1.0 +1833 1 1.72 7.0799999 3.54 49.5600014 -0.421805 0.906686 -1.0 +1834 1 1.72 8.8500004 5.31 49.5600014 -0.808609 -0.588347 -1.0 +1835 1 1.72 8.8500004 3.54 51.3300018 -0.684186 0.729307 -1.0 +1836 1 1.72 7.0799999 5.31 51.3300018 -0.659192 -0.751975 -1.0 +1837 1 1.72 10.6199999 3.54 49.5600014 -0.728336 0.68522 -1.0 +1838 1 1.72 12.3900004 5.31 49.5600014 0.410962 -0.911652 -1.0 +1839 1 1.72 12.3900004 3.54 51.3300018 0.859242 0.51157 -1.0 +1840 1 1.72 10.6199999 5.31 51.3300018 -0.988704 -0.149878 -1.0 +1841 1 1.72 14.1599999 3.54 49.5600014 -0.942745 0.333514 -1.0 +1842 1 1.72 15.9300004 5.31 49.5600014 -0.74095 -0.67156 -1.0 +1843 1 1.72 15.9300004 3.54 51.3300018 0.706625 -0.707588 -1.0 +1844 1 1.72 14.1599999 5.31 51.3300018 -0.730048 0.683396 -1.0 +1845 1 1.72 17.7000008 3.54 49.5600014 0.586523 -0.809932 -1.0 +1846 1 1.72 19.4699993 5.31 49.5600014 -0.79918 -0.601092 -1.0 +1847 1 1.72 19.4699993 3.54 51.3300018 -0.443797 -0.896127 -1.0 +1848 1 1.72 17.7000008 5.31 51.3300018 0.293626 0.95592 -1.0 +1849 1 1.72 21.2399998 3.54 49.5600014 -0.808234 0.588862 -1.0 +1850 1 1.72 23.0100002 5.31 49.5600014 -0.594868 0.803823 -1.0 +1851 1 1.72 23.0100002 3.54 51.3300018 0.69927 0.714858 -1.0 +1852 1 1.72 21.2399998 5.31 51.3300018 -0.648449 -0.761258 -1.0 +1853 1 1.72 24.7800007 3.54 49.5600014 0.998557 -0.0536967 -1.0 +1854 1 1.72 26.5499993 5.31 49.5600014 -0.667872 0.744276 -1.0 +1855 1 1.72 26.5499993 3.54 51.3300018 0.775579 0.63125 -1.0 +1856 1 1.72 24.7800007 5.31 51.3300018 -0.963177 0.268869 -1.0 +1857 1 1.72 0.0 7.0799999 49.5600014 0.527974 -0.849261 -1.0 +1858 1 1.72 1.77 8.8500004 49.5600014 -0.594381 0.804184 -1.0 +1859 1 1.72 1.77 7.0799999 51.3300018 0.843942 -0.536434 -1.0 +1860 1 1.72 0.0 8.8500004 51.3300018 -0.764622 -0.644478 -1.0 +1861 1 1.72 3.54 7.0799999 49.5600014 0.857014 -0.515293 -1.0 +1862 1 1.72 5.31 8.8500004 49.5600014 -0.695719 0.718314 -1.0 +1863 1 1.72 5.31 7.0799999 51.3300018 -0.862516 0.50603 -1.0 +1864 1 1.72 3.54 8.8500004 51.3300018 0.609568 -0.792734 -1.0 +1865 1 1.72 7.0799999 7.0799999 49.5600014 0.596169 -0.802859 -1.0 +1866 1 1.72 8.8500004 8.8500004 49.5600014 -0.266511 0.963832 -1.0 +1867 1 1.72 8.8500004 7.0799999 51.3300018 -0.820137 0.572167 -1.0 +1868 1 1.72 7.0799999 8.8500004 51.3300018 -0.589367 -0.807865 -1.0 +1869 1 1.72 10.6199999 7.0799999 49.5600014 0.439185 -0.898397 -1.0 +1870 1 1.72 12.3900004 8.8500004 49.5600014 -0.862055 0.506815 -1.0 +1871 1 1.72 12.3900004 7.0799999 51.3300018 0.403928 -0.914791 -1.0 +1872 1 1.72 10.6199999 8.8500004 51.3300018 0.82119 0.570655 -1.0 +1873 1 1.72 14.1599999 7.0799999 49.5600014 0.982934 -0.183961 -1.0 +1874 1 1.72 15.9300004 8.8500004 49.5600014 0.878441 -0.477851 -1.0 +1875 1 1.72 15.9300004 7.0799999 51.3300018 0.169772 0.985483 -1.0 +1876 1 1.72 14.1599999 8.8500004 51.3300018 -0.12019 -0.992751 -1.0 +1877 1 1.72 17.7000008 7.0799999 49.5600014 -0.950915 0.309452 -1.0 +1878 1 1.72 19.4699993 8.8500004 49.5600014 -0.0200013 0.9998 -1.0 +1879 1 1.72 19.4699993 7.0799999 51.3300018 -0.691999 0.721899 -1.0 +1880 1 1.72 17.7000008 8.8500004 51.3300018 -0.900841 0.43415 -1.0 +1881 1 1.72 21.2399998 7.0799999 49.5600014 0.790102 -0.612975 -1.0 +1882 1 1.72 23.0100002 8.8500004 49.5600014 -0.920637 -0.390419 -1.0 +1883 1 1.72 23.0100002 7.0799999 51.3300018 -0.504776 -0.86325 -1.0 +1884 1 1.72 21.2399998 8.8500004 51.3300018 0.905539 -0.424264 -1.0 +1885 1 1.72 24.7800007 7.0799999 49.5600014 -0.153077 0.988214 -1.0 +1886 1 1.72 26.5499993 8.8500004 49.5600014 0.2058 0.978594 -1.0 +1887 1 1.72 26.5499993 7.0799999 51.3300018 0.94475 0.327792 -1.0 +1888 1 1.72 24.7800007 8.8500004 51.3300018 -0.892252 -0.451538 -1.0 +1889 1 1.72 0.0 10.6199999 49.5600014 0.97617 -0.217009 -1.0 +1890 1 1.72 1.77 12.3900004 49.5600014 -0.581854 -0.813293 -1.0 +1891 1 1.72 1.77 10.6199999 51.3300018 -0.571074 -0.820898 -1.0 +1892 1 1.72 0.0 12.3900004 51.3300018 -0.863303 0.504687 -1.0 +1893 1 1.72 3.54 10.6199999 49.5600014 0.722315 -0.691564 -1.0 +1894 1 1.72 5.31 12.3900004 49.5600014 -0.520488 -0.853869 -1.0 +1895 1 1.72 5.31 10.6199999 51.3300018 0.316496 -0.948594 -1.0 +1896 1 1.72 3.54 12.3900004 51.3300018 0.33175 -0.943367 -1.0 +1897 1 1.72 7.0799999 10.6199999 49.5600014 0.862258 -0.506468 -1.0 +1898 1 1.72 8.8500004 12.3900004 49.5600014 0.525356 -0.850882 -1.0 +1899 1 1.72 8.8500004 10.6199999 51.3300018 -0.297014 0.954873 -1.0 +1900 1 1.72 7.0799999 12.3900004 51.3300018 0.504758 0.863261 -1.0 +1901 1 1.72 10.6199999 10.6199999 49.5600014 -0.996467 0.0839854 -1.0 +1902 1 1.72 12.3900004 12.3900004 49.5600014 0.675354 0.737494 -1.0 +1903 1 1.72 12.3900004 10.6199999 51.3300018 -0.690673 -0.723167 -1.0 +1904 1 1.72 10.6199999 12.3900004 51.3300018 0.79297 0.609261 -1.0 +1905 1 1.72 14.1599999 10.6199999 49.5600014 -0.942799 0.333362 -1.0 +1906 1 1.72 15.9300004 12.3900004 49.5600014 0.381587 0.924333 -1.0 +1907 1 1.72 15.9300004 10.6199999 51.3300018 0.809886 0.586588 -1.0 +1908 1 1.72 14.1599999 12.3900004 51.3300018 0.128136 0.991757 -1.0 +1909 1 1.72 17.7000008 10.6199999 49.5600014 -0.814602 -0.580021 -1.0 +1910 1 1.72 19.4699993 12.3900004 49.5600014 0.743494 -0.668743 -1.0 +1911 1 1.72 19.4699993 10.6199999 51.3300018 0.947372 0.320135 -1.0 +1912 1 1.72 17.7000008 12.3900004 51.3300018 0.754869 0.655876 -1.0 +1913 1 1.72 21.2399998 10.6199999 49.5600014 0.601738 -0.798693 -1.0 +1914 1 1.72 23.0100002 12.3900004 49.5600014 0.98696 -0.160965 -1.0 +1915 1 1.72 23.0100002 10.6199999 51.3300018 0.769109 -0.639118 -1.0 +1916 1 1.72 21.2399998 12.3900004 51.3300018 -0.842637 0.538482 -1.0 +1917 1 1.72 24.7800007 10.6199999 49.5600014 0.502598 0.86452 -1.0 +1918 1 1.72 26.5499993 12.3900004 49.5600014 0.397794 -0.917475 -1.0 +1919 1 1.72 26.5499993 10.6199999 51.3300018 -0.804028 0.594592 -1.0 +1920 1 1.72 24.7800007 12.3900004 51.3300018 0.825281 0.564722 -1.0 +1921 1 1.72 0.0 0.0 53.0999985 0.387158 0.922013 -1.0 +1922 1 1.72 1.77 1.77 53.0999985 0.380964 -0.92459 -1.0 +1923 1 1.72 1.77 0.0 54.869999 -0.787298 -0.616572 -1.0 +1924 1 1.72 0.0 1.77 54.869999 0.959924 0.280261 -1.0 +1925 1 1.72 3.54 0.0 53.0999985 -0.800935 0.598752 -1.0 +1926 1 1.72 5.31 1.77 53.0999985 -0.998456 0.0555441 -1.0 +1927 1 1.72 5.31 0.0 54.869999 0.924695 -0.380708 -1.0 +1928 1 1.72 3.54 1.77 54.869999 -0.791017 0.611794 -1.0 +1929 1 1.72 7.0799999 0.0 53.0999985 0.991696 -0.128604 -1.0 +1930 1 1.72 8.8500004 1.77 53.0999985 -0.575924 0.817503 -1.0 +1931 1 1.72 8.8500004 0.0 54.869999 0.904262 0.426979 -1.0 +1932 1 1.72 7.0799999 1.77 54.869999 -0.235209 0.971945 -1.0 +1933 1 1.72 10.6199999 0.0 53.0999985 0.678829 -0.734297 -1.0 +1934 1 1.72 12.3900004 1.77 53.0999985 0.365765 0.930707 -1.0 +1935 1 1.72 12.3900004 0.0 54.869999 -0.960827 0.27715 -1.0 +1936 1 1.72 10.6199999 1.77 54.869999 0.979628 0.200823 -1.0 +1937 1 1.72 14.1599999 0.0 53.0999985 0.291329 -0.956623 -1.0 +1938 1 1.72 15.9300004 1.77 53.0999985 -0.795473 -0.605989 -1.0 +1939 1 1.72 15.9300004 0.0 54.869999 0.584653 -0.811284 -1.0 +1940 1 1.72 14.1599999 1.77 54.869999 -0.270267 -0.962785 -1.0 +1941 1 1.72 17.7000008 0.0 53.0999985 0.922768 -0.385355 -1.0 +1942 1 1.72 19.4699993 1.77 53.0999985 -0.772219 0.635357 -1.0 +1943 1 1.72 19.4699993 0.0 54.869999 0.491224 0.871033 -1.0 +1944 1 1.72 17.7000008 1.77 54.869999 -0.6913 -0.722568 -1.0 +1945 1 1.72 21.2399998 0.0 53.0999985 0.853696 -0.520772 -1.0 +1946 1 1.72 23.0100002 1.77 53.0999985 0.675538 -0.737325 -1.0 +1947 1 1.72 23.0100002 0.0 54.869999 0.521809 0.853063 -1.0 +1948 1 1.72 21.2399998 1.77 54.869999 0.132761 -0.991148 -1.0 +1949 1 1.72 24.7800007 0.0 53.0999985 0.683338 0.730103 -1.0 +1950 1 1.72 26.5499993 1.77 53.0999985 0.777185 -0.629272 -1.0 +1951 1 1.72 26.5499993 0.0 54.869999 0.629628 -0.776897 -1.0 +1952 1 1.72 24.7800007 1.77 54.869999 0.0193714 0.999812 -1.0 +1953 1 1.72 0.0 3.54 53.0999985 0.627421 0.77868 -1.0 +1954 1 1.72 1.77 5.31 53.0999985 0.45234 -0.891846 -1.0 +1955 1 1.72 1.77 3.54 54.869999 0.511378 -0.859356 -1.0 +1956 1 1.72 0.0 5.31 54.869999 0.556784 0.830658 -1.0 +1957 1 1.72 3.54 3.54 53.0999985 -0.994592 -0.103856 -1.0 +1958 1 1.72 5.31 5.31 53.0999985 -0.571803 0.820391 -1.0 +1959 1 1.72 5.31 3.54 54.869999 0.999985 -0.00547394 -1.0 +1960 1 1.72 3.54 5.31 54.869999 -0.125355 -0.992112 -1.0 +1961 1 1.72 7.0799999 3.54 53.0999985 0.798226 0.602357 -1.0 +1962 1 1.72 8.8500004 5.31 53.0999985 0.866345 0.499446 -1.0 +1963 1 1.72 8.8500004 3.54 54.869999 0.47709 -0.878854 -1.0 +1964 1 1.72 7.0799999 5.31 54.869999 -0.668719 0.743515 -1.0 +1965 1 1.72 10.6199999 3.54 53.0999985 0.995446 0.0953231 -1.0 +1966 1 1.72 12.3900004 5.31 53.0999985 0.300074 0.953916 -1.0 +1967 1 1.72 12.3900004 3.54 54.869999 0.381916 -0.924197 -1.0 +1968 1 1.72 10.6199999 5.31 54.869999 0.824284 -0.566176 -1.0 +1969 1 1.72 14.1599999 3.54 53.0999985 0.579012 0.815319 -1.0 +1970 1 1.72 15.9300004 5.31 53.0999985 0.978643 0.205568 -1.0 +1971 1 1.72 15.9300004 3.54 54.869999 -0.635046 0.772474 -1.0 +1972 1 1.72 14.1599999 5.31 54.869999 -0.795343 -0.60616 -1.0 +1973 1 1.72 17.7000008 3.54 53.0999985 -0.36394 -0.931422 -1.0 +1974 1 1.72 19.4699993 5.31 53.0999985 0.852086 -0.523402 -1.0 +1975 1 1.72 19.4699993 3.54 54.869999 0.800739 0.599014 -1.0 +1976 1 1.72 17.7000008 5.31 54.869999 -0.806495 0.591241 -1.0 +1977 1 1.72 21.2399998 3.54 53.0999985 0.405207 -0.914225 -1.0 +1978 1 1.72 23.0100002 5.31 53.0999985 0.486475 0.873694 -1.0 +1979 1 1.72 23.0100002 3.54 54.869999 0.104593 0.994515 -1.0 +1980 1 1.72 21.2399998 5.31 54.869999 0.76293 -0.646481 -1.0 +1981 1 1.72 24.7800007 3.54 53.0999985 0.70013 0.714015 -1.0 +1982 1 1.72 26.5499993 5.31 53.0999985 -0.446397 0.894835 -1.0 +1983 1 1.72 26.5499993 3.54 54.869999 -0.999691 0.0248517 -1.0 +1984 1 1.72 24.7800007 5.31 54.869999 0.877641 -0.479318 -1.0 +1985 1 1.72 0.0 7.0799999 53.0999985 -0.0414857 0.999139 -1.0 +1986 1 1.72 1.77 8.8500004 53.0999985 -0.715386 0.69873 -1.0 +1987 1 1.72 1.77 7.0799999 54.869999 0.471897 -0.881654 -1.0 +1988 1 1.72 0.0 8.8500004 54.869999 -0.083467 0.996511 -1.0 +1989 1 1.72 3.54 7.0799999 53.0999985 -0.726025 -0.687668 -1.0 +1990 1 1.72 5.31 8.8500004 53.0999985 -0.892557 0.450934 -1.0 +1991 1 1.72 5.31 7.0799999 54.869999 0.847793 -0.530328 -1.0 +1992 1 1.72 3.54 8.8500004 54.869999 0.579447 -0.81501 -1.0 +1993 1 1.72 7.0799999 7.0799999 53.0999985 -0.164083 0.986446 -1.0 +1994 1 1.72 8.8500004 8.8500004 53.0999985 0.54175 0.84054 -1.0 +1995 1 1.72 8.8500004 7.0799999 54.869999 -0.0482263 0.998836 -1.0 +1996 1 1.72 7.0799999 8.8500004 54.869999 0.109418 0.993996 -1.0 +1997 1 1.72 10.6199999 7.0799999 53.0999985 -0.297051 -0.954862 -1.0 +1998 1 1.72 12.3900004 8.8500004 53.0999985 0.55585 0.831283 -1.0 +1999 1 1.72 12.3900004 7.0799999 54.869999 -0.0686369 -0.997642 -1.0 +2000 1 1.72 10.6199999 8.8500004 54.869999 -0.981261 0.192682 -1.0 +2001 1 1.72 14.1599999 7.0799999 53.0999985 0.304377 -0.952552 -1.0 +2002 1 1.72 15.9300004 8.8500004 53.0999985 0.544133 -0.838999 -1.0 +2003 1 1.72 15.9300004 7.0799999 54.869999 0.615311 0.788284 -1.0 +2004 1 1.72 14.1599999 8.8500004 54.869999 -0.6245 -0.781025 -1.0 +2005 1 1.72 17.7000008 7.0799999 53.0999985 -0.769334 0.638847 -1.0 +2006 1 1.72 19.4699993 8.8500004 53.0999985 -0.951251 -0.308416 -1.0 +2007 1 1.72 19.4699993 7.0799999 54.869999 -0.732638 -0.680618 -1.0 +2008 1 1.72 17.7000008 8.8500004 54.869999 0.988925 -0.148413 -1.0 +2009 1 1.72 21.2399998 7.0799999 53.0999985 0.202011 0.979383 -1.0 +2010 1 1.72 23.0100002 8.8500004 53.0999985 0.809333 -0.58735 -1.0 +2011 1 1.72 23.0100002 7.0799999 54.869999 -0.481777 0.876294 -1.0 +2012 1 1.72 21.2399998 8.8500004 54.869999 -0.504337 0.863507 -1.0 +2013 1 1.72 24.7800007 7.0799999 53.0999985 0.453896 -0.891055 -1.0 +2014 1 1.72 26.5499993 8.8500004 53.0999985 0.539702 -0.841856 -1.0 +2015 1 1.72 26.5499993 7.0799999 54.869999 -0.977851 0.209302 -1.0 +2016 1 1.72 24.7800007 8.8500004 54.869999 -0.868587 -0.495537 -1.0 +2017 1 1.72 0.0 10.6199999 53.0999985 0.613925 -0.789364 -1.0 +2018 1 1.72 1.77 12.3900004 53.0999985 0.946409 0.322972 -1.0 +2019 1 1.72 1.77 10.6199999 54.869999 -0.68116 0.732134 -1.0 +2020 1 1.72 0.0 12.3900004 54.869999 0.596949 0.802279 -1.0 +2021 1 1.72 3.54 10.6199999 53.0999985 -0.710937 0.703256 -1.0 +2022 1 1.72 5.31 12.3900004 53.0999985 0.807287 0.590159 -1.0 +2023 1 1.72 5.31 10.6199999 54.869999 -0.982184 -0.187922 -1.0 +2024 1 1.72 3.54 12.3900004 54.869999 -0.999989 0.0046603 -1.0 +2025 1 1.72 7.0799999 10.6199999 53.0999985 0.0411324 -0.999154 -1.0 +2026 1 1.72 8.8500004 12.3900004 53.0999985 0.121354 -0.992609 -1.0 +2027 1 1.72 8.8500004 10.6199999 54.869999 0.0999101 0.994996 -1.0 +2028 1 1.72 7.0799999 12.3900004 54.869999 -0.636902 -0.770945 -1.0 +2029 1 1.72 10.6199999 10.6199999 53.0999985 0.999294 0.0375647 -1.0 +2030 1 1.72 12.3900004 12.3900004 53.0999985 0.349187 -0.937053 -1.0 +2031 1 1.72 12.3900004 10.6199999 54.869999 -0.373369 -0.927683 -1.0 +2032 1 1.72 10.6199999 12.3900004 54.869999 -0.982318 0.187219 -1.0 +2033 1 1.72 14.1599999 10.6199999 53.0999985 0.969704 -0.244282 -1.0 +2034 1 1.72 15.9300004 12.3900004 53.0999985 -0.999947 -0.0102649 -1.0 +2035 1 1.72 15.9300004 10.6199999 54.869999 -0.449496 0.893283 -1.0 +2036 1 1.72 14.1599999 12.3900004 54.869999 0.733326 0.679877 -1.0 +2037 1 1.72 17.7000008 10.6199999 53.0999985 0.621701 -0.783254 -1.0 +2038 1 1.72 19.4699993 12.3900004 53.0999985 -0.789807 -0.613355 -1.0 +2039 1 1.72 19.4699993 10.6199999 54.869999 0.877995 0.47867 -1.0 +2040 1 1.72 17.7000008 12.3900004 54.869999 -0.127468 0.991843 -1.0 +2041 1 1.72 21.2399998 10.6199999 53.0999985 0.0433058 0.999062 -1.0 +2042 1 1.72 23.0100002 12.3900004 53.0999985 -0.27397 -0.961738 -1.0 +2043 1 1.72 23.0100002 10.6199999 54.869999 0.750318 -0.661077 -1.0 +2044 1 1.72 21.2399998 12.3900004 54.869999 -0.406507 0.913648 -1.0 +2045 1 1.72 24.7800007 10.6199999 53.0999985 0.561022 -0.827801 -1.0 +2046 1 1.72 26.5499993 12.3900004 53.0999985 -0.629316 0.777149 -1.0 +2047 1 1.72 26.5499993 10.6199999 54.869999 0.79356 -0.608491 -1.0 +2048 1 1.72 24.7800007 12.3900004 54.869999 -0.401379 0.915912 -1.0 +2049 1 1.72 0.0 0.0 56.6399994 0.70668 0.707533 -1.0 +2050 1 1.72 1.77 1.77 56.6399994 0.782189 -0.623041 -1.0 +2051 1 1.72 1.77 0.0 58.4099999 -0.868523 0.495648 -1.0 +2052 1 1.72 0.0 1.77 58.4099999 0.00202478 -0.999998 -1.0 +2053 1 1.72 3.54 0.0 56.6399994 0.931336 0.364161 -1.0 +2054 1 1.72 5.31 1.77 56.6399994 0.894986 -0.446094 -1.0 +2055 1 1.72 5.31 0.0 58.4099999 -0.73291 -0.680326 -1.0 +2056 1 1.72 3.54 1.77 58.4099999 0.202056 0.979374 -1.0 +2057 1 1.72 7.0799999 0.0 56.6399994 -0.957374 0.288852 -1.0 +2058 1 1.72 8.8500004 1.77 56.6399994 -0.554674 0.832068 -1.0 +2059 1 1.72 8.8500004 0.0 58.4099999 -0.548501 0.83615 -1.0 +2060 1 1.72 7.0799999 1.77 58.4099999 -0.508072 -0.861314 -1.0 +2061 1 1.72 10.6199999 0.0 56.6399994 0.0836627 -0.996494 -1.0 +2062 1 1.72 12.3900004 1.77 56.6399994 0.950088 -0.311982 -1.0 +2063 1 1.72 12.3900004 0.0 58.4099999 -0.90461 0.42624 -1.0 +2064 1 1.72 10.6199999 1.77 58.4099999 0.199225 0.979954 -1.0 +2065 1 1.72 14.1599999 0.0 56.6399994 0.988698 0.14992 -1.0 +2066 1 1.72 15.9300004 1.77 56.6399994 -0.49389 0.869525 -1.0 +2067 1 1.72 15.9300004 0.0 58.4099999 -0.958877 0.283821 -1.0 +2068 1 1.72 14.1599999 1.77 58.4099999 -0.312319 -0.949977 -1.0 +2069 1 1.72 17.7000008 0.0 56.6399994 -0.735816 0.677181 -1.0 +2070 1 1.72 19.4699993 1.77 56.6399994 -0.955952 -0.293524 -1.0 +2071 1 1.72 19.4699993 0.0 58.4099999 -0.591115 0.806588 -1.0 +2072 1 1.72 17.7000008 1.77 58.4099999 0.951149 -0.308731 -1.0 +2073 1 1.72 21.2399998 0.0 56.6399994 0.978077 -0.208245 -1.0 +2074 1 1.72 23.0100002 1.77 56.6399994 0.760001 -0.649921 -1.0 +2075 1 1.72 23.0100002 0.0 58.4099999 -0.463604 0.886043 -1.0 +2076 1 1.72 21.2399998 1.77 58.4099999 0.865903 -0.500212 -1.0 +2077 1 1.72 24.7800007 0.0 56.6399994 0.0697641 -0.997564 -1.0 +2078 1 1.72 26.5499993 1.77 56.6399994 0.712363 -0.701811 -1.0 +2079 1 1.72 26.5499993 0.0 58.4099999 -0.699707 0.714429 -1.0 +2080 1 1.72 24.7800007 1.77 58.4099999 -0.728987 0.684528 -1.0 +2081 1 1.72 0.0 3.54 56.6399994 0.632521 0.774543 -1.0 +2082 1 1.72 1.77 5.31 56.6399994 -0.653992 -0.756502 -1.0 +2083 1 1.72 1.77 3.54 58.4099999 -0.670933 -0.741518 -1.0 +2084 1 1.72 0.0 5.31 58.4099999 0.649187 0.760629 -1.0 +2085 1 1.72 3.54 3.54 56.6399994 0.7238 -0.690009 -1.0 +2086 1 1.72 5.31 5.31 56.6399994 -0.75238 -0.658729 -1.0 +2087 1 1.72 5.31 3.54 58.4099999 -0.388235 0.92156 -1.0 +2088 1 1.72 3.54 5.31 58.4099999 -0.675189 0.737644 -1.0 +2089 1 1.72 7.0799999 3.54 56.6399994 -0.889112 0.457689 -1.0 +2090 1 1.72 8.8500004 5.31 56.6399994 0.749111 -0.662444 -1.0 +2091 1 1.72 8.8500004 3.54 58.4099999 -0.941424 -0.337226 -1.0 +2092 1 1.72 7.0799999 5.31 58.4099999 -0.988706 0.149867 -1.0 +2093 1 1.72 10.6199999 3.54 56.6399994 0.545256 -0.83827 -1.0 +2094 1 1.72 12.3900004 5.31 56.6399994 -0.318849 0.947806 -1.0 +2095 1 1.72 12.3900004 3.54 58.4099999 -0.350713 -0.936483 -1.0 +2096 1 1.72 10.6199999 5.31 58.4099999 -0.35125 -0.936282 -1.0 +2097 1 1.72 14.1599999 3.54 56.6399994 -0.618789 0.785557 -1.0 +2098 1 1.72 15.9300004 5.31 56.6399994 0.999741 -0.0227789 -1.0 +2099 1 1.72 15.9300004 3.54 58.4099999 0.755255 -0.655431 -1.0 +2100 1 1.72 14.1599999 5.31 58.4099999 0.601516 -0.798861 -1.0 +2101 1 1.72 17.7000008 3.54 56.6399994 0.996553 -0.0829548 -1.0 +2102 1 1.72 19.4699993 5.31 56.6399994 0.986151 -0.165852 -1.0 +2103 1 1.72 19.4699993 3.54 58.4099999 0.995036 -0.0995179 -1.0 +2104 1 1.72 17.7000008 5.31 58.4099999 0.95656 -0.291536 -1.0 +2105 1 1.72 21.2399998 3.54 56.6399994 -0.897713 -0.440581 -1.0 +2106 1 1.72 23.0100002 5.31 56.6399994 0.609579 -0.792725 -1.0 +2107 1 1.72 23.0100002 3.54 58.4099999 -0.952016 -0.306049 -1.0 +2108 1 1.72 21.2399998 5.31 58.4099999 0.508793 0.860889 -1.0 +2109 1 1.72 24.7800007 3.54 56.6399994 0.998528 0.0542339 -1.0 +2110 1 1.72 26.5499993 5.31 56.6399994 0.745465 0.666545 -1.0 +2111 1 1.72 26.5499993 3.54 58.4099999 0.474615 0.880193 -1.0 +2112 1 1.72 24.7800007 5.31 58.4099999 -0.74789 -0.663823 -1.0 +2113 1 1.72 0.0 7.0799999 56.6399994 0.560716 -0.828008 -1.0 +2114 1 1.72 1.77 8.8500004 56.6399994 -0.852575 -0.522605 -1.0 +2115 1 1.72 1.77 7.0799999 58.4099999 0.85811 -0.513466 -1.0 +2116 1 1.72 0.0 8.8500004 58.4099999 0.746768 -0.665085 -1.0 +2117 1 1.72 3.54 7.0799999 56.6399994 -0.935946 -0.352142 -1.0 +2118 1 1.72 5.31 8.8500004 56.6399994 -0.178725 -0.983899 -1.0 +2119 1 1.72 5.31 7.0799999 58.4099999 0.680119 0.733102 -1.0 +2120 1 1.72 3.54 8.8500004 58.4099999 -0.908637 0.417588 -1.0 +2121 1 1.72 7.0799999 7.0799999 56.6399994 -0.84272 0.538353 -1.0 +2122 1 1.72 8.8500004 8.8500004 56.6399994 -0.183889 0.982947 -1.0 +2123 1 1.72 8.8500004 7.0799999 58.4099999 0.931337 0.36416 -1.0 +2124 1 1.72 7.0799999 8.8500004 58.4099999 -0.71214 0.702037 -1.0 +2125 1 1.72 10.6199999 7.0799999 56.6399994 -0.826061 -0.563581 -1.0 +2126 1 1.72 12.3900004 8.8500004 56.6399994 0.706799 -0.707414 -1.0 +2127 1 1.72 12.3900004 7.0799999 58.4099999 0.999887 0.0150623 -1.0 +2128 1 1.72 10.6199999 8.8500004 58.4099999 -0.675091 -0.737735 -1.0 +2129 1 1.72 14.1599999 7.0799999 56.6399994 0.68709 0.726573 -1.0 +2130 1 1.72 15.9300004 8.8500004 56.6399994 0.80823 -0.588866 -1.0 +2131 1 1.72 15.9300004 7.0799999 58.4099999 0.280443 0.959871 -1.0 +2132 1 1.72 14.1599999 8.8500004 58.4099999 -0.0195388 -0.999809 -1.0 +2133 1 1.72 17.7000008 7.0799999 56.6399994 0.817101 -0.576494 -1.0 +2134 1 1.72 19.4699993 8.8500004 56.6399994 -0.752561 0.658522 -1.0 +2135 1 1.72 19.4699993 7.0799999 58.4099999 -0.748276 -0.663388 -1.0 +2136 1 1.72 17.7000008 8.8500004 58.4099999 0.546688 -0.837337 -1.0 +2137 1 1.72 21.2399998 7.0799999 56.6399994 0.934835 -0.355083 -1.0 +2138 1 1.72 23.0100002 8.8500004 56.6399994 0.724294 -0.689491 -1.0 +2139 1 1.72 23.0100002 7.0799999 58.4099999 0.767599 0.640931 -1.0 +2140 1 1.72 21.2399998 8.8500004 58.4099999 0.298522 0.954403 -1.0 +2141 1 1.72 24.7800007 7.0799999 56.6399994 0.768213 0.640194 -1.0 +2142 1 1.72 26.5499993 8.8500004 56.6399994 -0.92639 -0.376567 -1.0 +2143 1 1.72 26.5499993 7.0799999 58.4099999 0.889875 0.456204 -1.0 +2144 1 1.72 24.7800007 8.8500004 58.4099999 -0.0149783 -0.999888 -1.0 +2145 1 1.72 0.0 10.6199999 56.6399994 -0.419147 -0.907918 -1.0 +2146 1 1.72 1.77 12.3900004 56.6399994 -0.326783 -0.945099 -1.0 +2147 1 1.72 1.77 10.6199999 58.4099999 0.681551 -0.731771 -1.0 +2148 1 1.72 0.0 12.3900004 58.4099999 -0.969631 0.244571 -1.0 +2149 1 1.72 3.54 10.6199999 56.6399994 0.999207 -0.0398252 -1.0 +2150 1 1.72 5.31 12.3900004 56.6399994 0.98515 0.171697 -1.0 +2151 1 1.72 5.31 10.6199999 58.4099999 -0.230908 0.972976 -1.0 +2152 1 1.72 3.54 12.3900004 58.4099999 0.0444431 -0.999012 -1.0 +2153 1 1.72 7.0799999 10.6199999 56.6399994 -0.700607 -0.713547 -1.0 +2154 1 1.72 8.8500004 12.3900004 56.6399994 -0.71663 0.697453 -1.0 +2155 1 1.72 8.8500004 10.6199999 58.4099999 0.86165 0.507502 -1.0 +2156 1 1.72 7.0799999 12.3900004 58.4099999 0.855337 0.518072 -1.0 +2157 1 1.72 10.6199999 10.6199999 56.6399994 -0.878546 -0.477657 -1.0 +2158 1 1.72 12.3900004 12.3900004 56.6399994 -0.54777 -0.836629 -1.0 +2159 1 1.72 12.3900004 10.6199999 58.4099999 -0.898841 -0.438275 -1.0 +2160 1 1.72 10.6199999 12.3900004 58.4099999 0.988426 -0.151703 -1.0 +2161 1 1.72 14.1599999 10.6199999 56.6399994 -0.991066 -0.133372 -1.0 +2162 1 1.72 15.9300004 12.3900004 56.6399994 0.669978 0.742381 -1.0 +2163 1 1.72 15.9300004 10.6199999 58.4099999 -0.309314 -0.95096 -1.0 +2164 1 1.72 14.1599999 12.3900004 58.4099999 0.45565 0.890159 -1.0 +2165 1 1.72 17.7000008 10.6199999 56.6399994 0.0920799 -0.995752 -1.0 +2166 1 1.72 19.4699993 12.3900004 56.6399994 -0.443239 0.896404 -1.0 +2167 1 1.72 19.4699993 10.6199999 58.4099999 0.708029 0.706183 -1.0 +2168 1 1.72 17.7000008 12.3900004 58.4099999 -0.189524 -0.981876 -1.0 +2169 1 1.72 21.2399998 10.6199999 56.6399994 0.23724 0.971451 -1.0 +2170 1 1.72 23.0100002 12.3900004 56.6399994 0.644549 -0.764563 -1.0 +2171 1 1.72 23.0100002 10.6199999 58.4099999 0.600127 -0.799905 -1.0 +2172 1 1.72 21.2399998 12.3900004 58.4099999 -0.289949 0.957042 -1.0 +2173 1 1.72 24.7800007 10.6199999 56.6399994 -0.193405 -0.981119 -1.0 +2174 1 1.72 26.5499993 12.3900004 56.6399994 0.999836 0.0181197 -1.0 +2175 1 1.72 26.5499993 10.6199999 58.4099999 0.87479 -0.484503 -1.0 +2176 1 1.72 24.7800007 12.3900004 58.4099999 0.870927 -0.491412 -1.0 +2177 1 1.72 0.0 0.0 60.1800003 0.557809 0.829969 -1.0 +2178 1 1.72 1.77 1.77 60.1800003 0.661083 0.750313 -1.0 +2179 1 1.72 1.77 0.0 61.9500008 0.585103 0.810959 -1.0 +2180 1 1.72 0.0 1.77 61.9500008 -0.633751 -0.773537 -1.0 +2181 1 1.72 3.54 0.0 60.1800003 -0.521719 0.853118 -1.0 +2182 1 1.72 5.31 1.77 60.1800003 0.98165 -0.190693 -1.0 +2183 1 1.72 5.31 0.0 61.9500008 0.408349 -0.912826 -1.0 +2184 1 1.72 3.54 1.77 61.9500008 0.635871 0.771796 -1.0 +2185 1 1.72 7.0799999 0.0 60.1800003 -0.909242 0.416269 -1.0 +2186 1 1.72 8.8500004 1.77 60.1800003 0.441992 -0.897019 -1.0 +2187 1 1.72 8.8500004 0.0 61.9500008 -0.841794 0.5398 -1.0 +2188 1 1.72 7.0799999 1.77 61.9500008 0.999992 0.0040098 -1.0 +2189 1 1.72 10.6199999 0.0 60.1800003 0.88237 -0.470555 -1.0 +2190 1 1.72 12.3900004 1.77 60.1800003 0.776874 -0.629656 -1.0 +2191 1 1.72 12.3900004 0.0 61.9500008 0.784606 -0.619994 -1.0 +2192 1 1.72 10.6199999 1.77 61.9500008 -0.713829 0.70032 -1.0 +2193 1 1.72 14.1599999 0.0 60.1800003 -0.431426 -0.902149 -1.0 +2194 1 1.72 15.9300004 1.77 60.1800003 -0.876149 0.482041 -1.0 +2195 1 1.72 15.9300004 0.0 61.9500008 -0.640123 0.768272 -1.0 +2196 1 1.72 14.1599999 1.77 61.9500008 0.972071 0.234686 -1.0 +2197 1 1.72 17.7000008 0.0 60.1800003 -0.81298 -0.582291 -1.0 +2198 1 1.72 19.4699993 1.77 60.1800003 -0.748235 -0.663434 -1.0 +2199 1 1.72 19.4699993 0.0 61.9500008 -0.9807 0.195518 -1.0 +2200 1 1.72 17.7000008 1.77 61.9500008 0.992074 0.125658 -1.0 +2201 1 1.72 21.2399998 0.0 60.1800003 0.716181 -0.697915 -1.0 +2202 1 1.72 23.0100002 1.77 60.1800003 -0.741353 0.671115 -1.0 +2203 1 1.72 23.0100002 0.0 61.9500008 -0.130588 -0.991437 -1.0 +2204 1 1.72 21.2399998 1.77 61.9500008 -0.744495 -0.667627 -1.0 +2205 1 1.72 24.7800007 0.0 60.1800003 -0.86091 -0.508758 -1.0 +2206 1 1.72 26.5499993 1.77 60.1800003 0.648935 -0.760844 -1.0 +2207 1 1.72 26.5499993 0.0 61.9500008 -0.481539 -0.876425 -1.0 +2208 1 1.72 24.7800007 1.77 61.9500008 -0.668814 -0.74343 -1.0 +2209 1 1.72 0.0 3.54 60.1800003 0.691128 -0.722733 -1.0 +2210 1 1.72 1.77 5.31 60.1800003 0.67037 0.742027 -1.0 +2211 1 1.72 1.77 3.54 61.9500008 -0.867911 0.496721 -1.0 +2212 1 1.72 0.0 5.31 61.9500008 -0.887005 0.461761 -1.0 +2213 1 1.72 3.54 3.54 60.1800003 -0.946602 0.322406 -1.0 +2214 1 1.72 5.31 5.31 60.1800003 0.811626 0.584177 -1.0 +2215 1 1.72 5.31 3.54 61.9500008 0.104124 -0.994564 -1.0 +2216 1 1.72 3.54 5.31 61.9500008 -0.0464429 0.998921 -1.0 +2217 1 1.72 7.0799999 3.54 60.1800003 -0.500872 0.865521 -1.0 +2218 1 1.72 8.8500004 5.31 60.1800003 -0.690205 0.723614 -1.0 +2219 1 1.72 8.8500004 3.54 61.9500008 0.832516 0.554001 -1.0 +2220 1 1.72 7.0799999 5.31 61.9500008 0.494968 0.868911 -1.0 +2221 1 1.72 10.6199999 3.54 60.1800003 0.808228 -0.588869 -1.0 +2222 1 1.72 12.3900004 5.31 60.1800003 -0.885104 0.465393 -1.0 +2223 1 1.72 12.3900004 3.54 61.9500008 0.914734 -0.404057 -1.0 +2224 1 1.72 10.6199999 5.31 61.9500008 -0.758086 -0.652154 -1.0 +2225 1 1.72 14.1599999 3.54 60.1800003 -0.696002 0.71804 -1.0 +2226 1 1.72 15.9300004 5.31 60.1800003 -0.698208 -0.715895 -1.0 +2227 1 1.72 15.9300004 3.54 61.9500008 0.243663 -0.96986 -1.0 +2228 1 1.72 14.1599999 5.31 61.9500008 0.635984 -0.771702 -1.0 +2229 1 1.72 17.7000008 3.54 60.1800003 0.0487048 0.998813 -1.0 +2230 1 1.72 19.4699993 5.31 60.1800003 0.775481 -0.631371 -1.0 +2231 1 1.72 19.4699993 3.54 61.9500008 -0.773744 -0.633499 -1.0 +2232 1 1.72 17.7000008 5.31 61.9500008 -0.899954 0.435985 -1.0 +2233 1 1.72 21.2399998 3.54 60.1800003 0.553204 0.833046 -1.0 +2234 1 1.72 23.0100002 5.31 60.1800003 -0.791792 0.610791 -1.0 +2235 1 1.72 23.0100002 3.54 61.9500008 -0.789094 0.614273 -1.0 +2236 1 1.72 21.2399998 5.31 61.9500008 0.538023 0.84293 -1.0 +2237 1 1.72 24.7800007 3.54 60.1800003 0.0154642 0.99988 -1.0 +2238 1 1.72 26.5499993 5.31 60.1800003 0.963006 0.26948 -1.0 +2239 1 1.72 26.5499993 3.54 61.9500008 -0.702016 0.712161 -1.0 +2240 1 1.72 24.7800007 5.31 61.9500008 0.107175 0.99424 -1.0 +2241 1 1.72 0.0 7.0799999 60.1800003 0.989911 -0.141689 -1.0 +2242 1 1.72 1.77 8.8500004 60.1800003 -0.35683 0.934169 -1.0 +2243 1 1.72 1.77 7.0799999 61.9500008 0.94673 -0.322028 -1.0 +2244 1 1.72 0.0 8.8500004 61.9500008 0.781508 0.623895 -1.0 +2245 1 1.72 3.54 7.0799999 60.1800003 0.859234 -0.511583 -1.0 +2246 1 1.72 5.31 8.8500004 60.1800003 -0.642902 0.765948 -1.0 +2247 1 1.72 5.31 7.0799999 61.9500008 0.818499 0.574508 -1.0 +2248 1 1.72 3.54 8.8500004 61.9500008 -0.0745327 -0.997219 -1.0 +2249 1 1.72 7.0799999 7.0799999 60.1800003 0.660174 0.751113 -1.0 +2250 1 1.72 8.8500004 8.8500004 60.1800003 -0.10963 0.993972 -1.0 +2251 1 1.72 8.8500004 7.0799999 61.9500008 0.998617 0.0525733 -1.0 +2252 1 1.72 7.0799999 8.8500004 61.9500008 -0.988026 -0.15429 -1.0 +2253 1 1.72 10.6199999 7.0799999 60.1800003 -0.47935 -0.877624 -1.0 +2254 1 1.72 12.3900004 8.8500004 60.1800003 -0.829951 0.557836 -1.0 +2255 1 1.72 12.3900004 7.0799999 61.9500008 -0.472795 0.881172 -1.0 +2256 1 1.72 10.6199999 8.8500004 61.9500008 0.754855 -0.655892 -1.0 +2257 1 1.72 14.1599999 7.0799999 60.1800003 0.985672 0.168673 -1.0 +2258 1 1.72 15.9300004 8.8500004 60.1800003 -0.601078 0.799191 -1.0 +2259 1 1.72 15.9300004 7.0799999 61.9500008 -0.634486 0.772934 -1.0 +2260 1 1.72 14.1599999 8.8500004 61.9500008 0.498357 -0.866972 -1.0 +2261 1 1.72 17.7000008 7.0799999 60.1800003 -0.704777 -0.709429 -1.0 +2262 1 1.72 19.4699993 8.8500004 60.1800003 -0.570093 -0.82158 -1.0 +2263 1 1.72 19.4699993 7.0799999 61.9500008 -0.76991 -0.638152 -1.0 +2264 1 1.72 17.7000008 8.8500004 61.9500008 0.341979 -0.939708 -1.0 +2265 1 1.72 21.2399998 7.0799999 60.1800003 0.686329 -0.727292 -1.0 +2266 1 1.72 23.0100002 8.8500004 60.1800003 0.116939 -0.993139 -1.0 +2267 1 1.72 23.0100002 7.0799999 61.9500008 -0.0310812 -0.999517 -1.0 +2268 1 1.72 21.2399998 8.8500004 61.9500008 -0.345442 -0.93844 -1.0 +2269 1 1.72 24.7800007 7.0799999 60.1800003 0.740587 0.671961 -1.0 +2270 1 1.72 26.5499993 8.8500004 60.1800003 -0.752559 0.658524 -1.0 +2271 1 1.72 26.5499993 7.0799999 61.9500008 -0.984996 0.172578 -1.0 +2272 1 1.72 24.7800007 8.8500004 61.9500008 0.932169 -0.362024 -1.0 +2273 1 1.72 0.0 10.6199999 60.1800003 0.749849 0.661609 -1.0 +2274 1 1.72 1.77 12.3900004 60.1800003 0.568754 0.822508 -1.0 +2275 1 1.72 1.77 10.6199999 61.9500008 -0.18935 0.98191 -1.0 +2276 1 1.72 0.0 12.3900004 61.9500008 0.354359 0.93511 -1.0 +2277 1 1.72 3.54 10.6199999 60.1800003 0.583614 0.812031 -1.0 +2278 1 1.72 5.31 12.3900004 60.1800003 -0.944498 0.328516 -1.0 +2279 1 1.72 5.31 10.6199999 61.9500008 0.559089 -0.829108 -1.0 +2280 1 1.72 3.54 12.3900004 61.9500008 -0.979309 0.20237 -1.0 +2281 1 1.72 7.0799999 10.6199999 60.1800003 0.669319 -0.742975 -1.0 +2282 1 1.72 8.8500004 12.3900004 60.1800003 -0.695985 -0.718057 -1.0 +2283 1 1.72 8.8500004 10.6199999 61.9500008 -0.520061 0.854129 -1.0 +2284 1 1.72 7.0799999 12.3900004 61.9500008 0.286424 -0.958103 -1.0 +2285 1 1.72 10.6199999 10.6199999 60.1800003 0.0268946 0.999638 -1.0 +2286 1 1.72 12.3900004 12.3900004 60.1800003 0.544 -0.839085 -1.0 +2287 1 1.72 12.3900004 10.6199999 61.9500008 -0.934575 -0.355767 -1.0 +2288 1 1.72 10.6199999 12.3900004 61.9500008 0.00176616 -0.999998 -1.0 +2289 1 1.72 14.1599999 10.6199999 60.1800003 -0.569887 -0.821723 -1.0 +2290 1 1.72 15.9300004 12.3900004 60.1800003 0.944306 -0.329068 -1.0 +2291 1 1.72 15.9300004 10.6199999 61.9500008 -0.96432 0.264738 -1.0 +2292 1 1.72 14.1599999 12.3900004 61.9500008 -0.0415427 -0.999137 -1.0 +2293 1 1.72 17.7000008 10.6199999 60.1800003 -0.72158 0.692331 -1.0 +2294 1 1.72 19.4699993 12.3900004 60.1800003 0.349289 -0.937015 -1.0 +2295 1 1.72 19.4699993 10.6199999 61.9500008 0.74914 -0.662412 -1.0 +2296 1 1.72 17.7000008 12.3900004 61.9500008 -0.884786 -0.465997 -1.0 +2297 1 1.72 21.2399998 10.6199999 60.1800003 -0.998867 0.0475972 -1.0 +2298 1 1.72 23.0100002 12.3900004 60.1800003 0.561024 -0.827799 -1.0 +2299 1 1.72 23.0100002 10.6199999 61.9500008 0.874993 0.484136 -1.0 +2300 1 1.72 21.2399998 12.3900004 61.9500008 0.731423 0.681924 -1.0 +2301 1 1.72 24.7800007 10.6199999 60.1800003 0.981963 0.189071 -1.0 +2302 1 1.72 26.5499993 12.3900004 60.1800003 -0.304376 -0.952552 -1.0 +2303 1 1.72 26.5499993 10.6199999 61.9500008 0.572572 -0.819854 -1.0 +2304 1 1.72 24.7800007 12.3900004 61.9500008 -0.73053 0.682881 -1.0 +2305 1 1.72 0.0 0.0 63.7200012 -0.241074 0.970507 -1.0 +2306 1 1.72 1.77 1.77 63.7200012 -0.916805 -0.399335 -1.0 +2307 1 1.72 1.77 0.0 65.4899979 0.712752 0.701416 -1.0 +2308 1 1.72 0.0 1.77 65.4899979 -0.171059 -0.985261 -1.0 +2309 1 1.72 3.54 0.0 63.7200012 -0.781157 -0.624335 -1.0 +2310 1 1.72 5.31 1.77 63.7200012 0.833735 0.552165 -1.0 +2311 1 1.72 5.31 0.0 65.4899979 0.829297 -0.558808 -1.0 +2312 1 1.72 3.54 1.77 65.4899979 -0.998425 0.056105 -1.0 +2313 1 1.72 7.0799999 0.0 63.7200012 -0.989521 0.144388 -1.0 +2314 1 1.72 8.8500004 1.77 63.7200012 0.693249 -0.720698 -1.0 +2315 1 1.72 8.8500004 0.0 65.4899979 -0.693845 -0.720125 -1.0 +2316 1 1.72 7.0799999 1.77 65.4899979 0.29916 -0.954203 -1.0 +2317 1 1.72 10.6199999 0.0 63.7200012 -0.573661 0.819093 -1.0 +2318 1 1.72 12.3900004 1.77 63.7200012 -0.673314 0.739356 -1.0 +2319 1 1.72 12.3900004 0.0 65.4899979 0.90837 0.418167 -1.0 +2320 1 1.72 10.6199999 1.77 65.4899979 0.64151 -0.767115 -1.0 +2321 1 1.72 14.1599999 0.0 63.7200012 -0.713383 -0.700774 -1.0 +2322 1 1.72 15.9300004 1.77 63.7200012 -0.931616 -0.363444 -1.0 +2323 1 1.72 15.9300004 0.0 65.4899979 0.528798 -0.848748 -1.0 +2324 1 1.72 14.1599999 1.77 65.4899979 -0.979792 0.200018 -1.0 +2325 1 1.72 17.7000008 0.0 63.7200012 0.966546 0.256495 -1.0 +2326 1 1.72 19.4699993 1.77 63.7200012 -0.631077 0.77572 -1.0 +2327 1 1.72 19.4699993 0.0 65.4899979 -0.568237 0.822865 -1.0 +2328 1 1.72 17.7000008 1.77 65.4899979 0.413133 -0.910671 -1.0 +2329 1 1.72 21.2399998 0.0 63.7200012 0.869897 0.493234 -1.0 +2330 1 1.72 23.0100002 1.77 63.7200012 -0.387445 0.921893 -1.0 +2331 1 1.72 23.0100002 0.0 65.4899979 0.95615 0.292878 -1.0 +2332 1 1.72 21.2399998 1.77 65.4899979 -0.134405 -0.990926 -1.0 +2333 1 1.72 24.7800007 0.0 63.7200012 -0.67517 0.737662 -1.0 +2334 1 1.72 26.5499993 1.77 63.7200012 0.645081 0.764114 -1.0 +2335 1 1.72 26.5499993 0.0 65.4899979 -0.988262 -0.152766 -1.0 +2336 1 1.72 24.7800007 1.77 65.4899979 0.538304 0.842751 -1.0 +2337 1 1.72 0.0 3.54 63.7200012 -0.267653 -0.963515 -1.0 +2338 1 1.72 1.77 5.31 63.7200012 0.885324 -0.464975 -1.0 +2339 1 1.72 1.77 3.54 65.4899979 0.308337 -0.951277 -1.0 +2340 1 1.72 0.0 5.31 65.4899979 -0.82045 -0.571719 -1.0 +2341 1 1.72 3.54 3.54 63.7200012 0.265256 0.964178 -1.0 +2342 1 1.72 5.31 5.31 63.7200012 -0.0642945 -0.997931 -1.0 +2343 1 1.72 5.31 3.54 65.4899979 -0.163418 -0.986557 -1.0 +2344 1 1.72 3.54 5.31 65.4899979 -0.404113 -0.914709 -1.0 +2345 1 1.72 7.0799999 3.54 63.7200012 -0.536916 -0.843635 -1.0 +2346 1 1.72 8.8500004 5.31 63.7200012 0.743761 -0.668446 -1.0 +2347 1 1.72 8.8500004 3.54 65.4899979 -0.741639 -0.670799 -1.0 +2348 1 1.72 7.0799999 5.31 65.4899979 0.915007 0.403438 -1.0 +2349 1 1.72 10.6199999 3.54 63.7200012 0.967849 0.25153 -1.0 +2350 1 1.72 12.3900004 5.31 63.7200012 -0.584651 -0.811285 -1.0 +2351 1 1.72 12.3900004 3.54 65.4899979 0.800263 0.599649 -1.0 +2352 1 1.72 10.6199999 5.31 65.4899979 0.830283 -0.557342 -1.0 +2353 1 1.72 14.1599999 3.54 63.7200012 0.0222517 -0.999752 -1.0 +2354 1 1.72 15.9300004 5.31 63.7200012 -0.884908 -0.465765 -1.0 +2355 1 1.72 15.9300004 3.54 65.4899979 -0.264413 -0.96441 -1.0 +2356 1 1.72 14.1599999 5.31 65.4899979 -0.575731 -0.817639 -1.0 +2357 1 1.72 17.7000008 3.54 63.7200012 0.195927 0.980618 -1.0 +2358 1 1.72 19.4699993 5.31 63.7200012 0.60046 -0.799655 -1.0 +2359 1 1.72 19.4699993 3.54 65.4899979 0.721915 -0.691982 -1.0 +2360 1 1.72 17.7000008 5.31 65.4899979 0.25394 0.96722 -1.0 +2361 1 1.72 21.2399998 3.54 63.7200012 -0.946485 -0.322747 -1.0 +2362 1 1.72 23.0100002 5.31 63.7200012 -0.503691 -0.863884 -1.0 +2363 1 1.72 23.0100002 3.54 65.4899979 0.19038 0.98171 -1.0 +2364 1 1.72 21.2399998 5.31 65.4899979 -0.791471 0.611206 -1.0 +2365 1 1.72 24.7800007 3.54 63.7200012 0.552113 -0.833769 -1.0 +2366 1 1.72 26.5499993 5.31 63.7200012 -0.48996 -0.871745 -1.0 +2367 1 1.72 26.5499993 3.54 65.4899979 0.719199 -0.694805 -1.0 +2368 1 1.72 24.7800007 5.31 65.4899979 0.532568 -0.846387 -1.0 +2369 1 1.72 0.0 7.0799999 63.7200012 -0.71549 -0.698623 -1.0 +2370 1 1.72 1.77 8.8500004 63.7200012 0.174918 0.984583 -1.0 +2371 1 1.72 1.77 7.0799999 65.4899979 -0.0938261 -0.995589 -1.0 +2372 1 1.72 0.0 8.8500004 65.4899979 0.753401 0.657562 -1.0 +2373 1 1.72 3.54 7.0799999 63.7200012 -0.352993 -0.935626 -1.0 +2374 1 1.72 5.31 8.8500004 63.7200012 -0.380907 -0.924613 -1.0 +2375 1 1.72 5.31 7.0799999 65.4899979 -0.506329 0.862341 -1.0 +2376 1 1.72 3.54 8.8500004 65.4899979 -0.899908 -0.436079 -1.0 +2377 1 1.72 7.0799999 7.0799999 63.7200012 -0.641588 -0.76705 -1.0 +2378 1 1.72 8.8500004 8.8500004 63.7200012 -0.650487 0.759518 -1.0 +2379 1 1.72 8.8500004 7.0799999 65.4899979 0.0807781 -0.996732 -1.0 +2380 1 1.72 7.0799999 8.8500004 65.4899979 -0.654193 0.756328 -1.0 +2381 1 1.72 10.6199999 7.0799999 63.7200012 0.442925 -0.896559 -1.0 +2382 1 1.72 12.3900004 8.8500004 63.7200012 0.951988 -0.306134 -1.0 +2383 1 1.72 12.3900004 7.0799999 65.4899979 0.584264 -0.811564 -1.0 +2384 1 1.72 10.6199999 8.8500004 65.4899979 -0.770223 0.637775 -1.0 +2385 1 1.72 14.1599999 7.0799999 63.7200012 0.302857 -0.953036 -1.0 +2386 1 1.72 15.9300004 8.8500004 63.7200012 -0.749447 -0.662064 -1.0 +2387 1 1.72 15.9300004 7.0799999 65.4899979 -0.690577 0.723259 -1.0 +2388 1 1.72 14.1599999 8.8500004 65.4899979 -0.16283 0.986654 -1.0 +2389 1 1.72 17.7000008 7.0799999 63.7200012 0.971916 -0.23533 -1.0 +2390 1 1.72 19.4699993 8.8500004 63.7200012 0.681513 -0.731806 -1.0 +2391 1 1.72 19.4699993 7.0799999 65.4899979 0.849563 -0.527487 -1.0 +2392 1 1.72 17.7000008 8.8500004 65.4899979 -0.189695 -0.981843 -1.0 +2393 1 1.72 21.2399998 7.0799999 63.7200012 -0.416638 -0.909072 -1.0 +2394 1 1.72 23.0100002 8.8500004 63.7200012 0.760077 0.649833 -1.0 +2395 1 1.72 23.0100002 7.0799999 65.4899979 0.937626 -0.347646 -1.0 +2396 1 1.72 21.2399998 8.8500004 65.4899979 -0.527299 0.849679 -1.0 +2397 1 1.72 24.7800007 7.0799999 63.7200012 -0.767971 0.640485 -1.0 +2398 1 1.72 26.5499993 8.8500004 63.7200012 0.567538 0.823347 -1.0 +2399 1 1.72 26.5499993 7.0799999 65.4899979 0.151658 -0.988433 -1.0 +2400 1 1.72 24.7800007 8.8500004 65.4899979 0.844996 0.534773 -1.0 +2401 1 1.72 0.0 10.6199999 63.7200012 -0.938171 -0.346171 -1.0 +2402 1 1.72 1.77 12.3900004 63.7200012 -0.85901 -0.511959 -1.0 +2403 1 1.72 1.77 10.6199999 65.4899979 0.999863 -0.016543 -1.0 +2404 1 1.72 0.0 12.3900004 65.4899979 -0.702009 0.712168 -1.0 +2405 1 1.72 3.54 10.6199999 63.7200012 0.996207 0.0870175 -1.0 +2406 1 1.72 5.31 12.3900004 63.7200012 -0.314469 -0.949268 -1.0 +2407 1 1.72 5.31 10.6199999 65.4899979 0.146234 -0.98925 -1.0 +2408 1 1.72 3.54 12.3900004 65.4899979 0.822656 0.568539 -1.0 +2409 1 1.72 7.0799999 10.6199999 63.7200012 -0.0988962 0.995098 -1.0 +2410 1 1.72 8.8500004 12.3900004 63.7200012 0.520946 0.853589 -1.0 +2411 1 1.72 8.8500004 10.6199999 65.4899979 -0.43187 -0.901936 -1.0 +2412 1 1.72 7.0799999 12.3900004 65.4899979 0.481779 -0.876293 -1.0 +2413 1 1.72 10.6199999 10.6199999 63.7200012 -0.780118 -0.625633 -1.0 +2414 1 1.72 12.3900004 12.3900004 63.7200012 0.686773 -0.726872 -1.0 +2415 1 1.72 12.3900004 10.6199999 65.4899979 -0.981106 0.19347 -1.0 +2416 1 1.72 10.6199999 12.3900004 65.4899979 -0.93308 -0.35967 -1.0 +2417 1 1.72 14.1599999 10.6199999 63.7200012 0.729055 0.684455 -1.0 +2418 1 1.72 15.9300004 12.3900004 63.7200012 -0.365456 -0.930829 -1.0 +2419 1 1.72 15.9300004 10.6199999 65.4899979 0.86082 -0.50891 -1.0 +2420 1 1.72 14.1599999 12.3900004 65.4899979 -0.362523 -0.931975 -1.0 +2421 1 1.72 17.7000008 10.6199999 63.7200012 -0.751222 0.66005 -1.0 +2422 1 1.72 19.4699993 12.3900004 63.7200012 0.611707 -0.791085 -1.0 +2423 1 1.72 19.4699993 10.6199999 65.4899979 0.70111 -0.713053 -1.0 +2424 1 1.72 17.7000008 12.3900004 65.4899979 -0.700857 -0.713302 -1.0 +2425 1 1.72 21.2399998 10.6199999 63.7200012 0.512912 0.858441 -1.0 +2426 1 1.72 23.0100002 12.3900004 63.7200012 0.324951 0.945731 -1.0 +2427 1 1.72 23.0100002 10.6199999 65.4899979 0.0316404 -0.999499 -1.0 +2428 1 1.72 21.2399998 12.3900004 65.4899979 0.972903 -0.231213 -1.0 +2429 1 1.72 24.7800007 10.6199999 63.7200012 0.998547 -0.0538901 -1.0 +2430 1 1.72 26.5499993 12.3900004 63.7200012 0.973624 0.228157 -1.0 +2431 1 1.72 26.5499993 10.6199999 65.4899979 -0.981272 0.192626 -1.0 +2432 1 1.72 24.7800007 12.3900004 65.4899979 -0.445004 -0.895529 -1.0 +2433 1 1.72 0.0 0.0 67.2600021 -0.562091 0.827075 -1.0 +2434 1 1.72 1.77 1.77 67.2600021 -0.543253 0.839569 -1.0 +2435 1 1.72 1.77 0.0 69.0299988 -0.952445 -0.304709 -1.0 +2436 1 1.72 0.0 1.77 69.0299988 -0.235464 -0.971883 -1.0 +2437 1 1.72 3.54 0.0 67.2600021 0.802885 0.596134 -1.0 +2438 1 1.72 5.31 1.77 67.2600021 0.720633 -0.693317 -1.0 +2439 1 1.72 5.31 0.0 69.0299988 -0.99999 -0.00435894 -1.0 +2440 1 1.72 3.54 1.77 69.0299988 -0.694102 -0.719877 -1.0 +2441 1 1.72 7.0799999 0.0 67.2600021 -0.587192 -0.809448 -1.0 +2442 1 1.72 8.8500004 1.77 67.2600021 0.703733 0.710465 -1.0 +2443 1 1.72 8.8500004 0.0 69.0299988 0.483469 -0.875362 -1.0 +2444 1 1.72 7.0799999 1.77 69.0299988 -0.666988 0.745068 -1.0 +2445 1 1.72 10.6199999 0.0 67.2600021 -0.999734 -0.0230676 -1.0 +2446 1 1.72 12.3900004 1.77 67.2600021 -0.704073 -0.710128 -1.0 +2447 1 1.72 12.3900004 0.0 69.0299988 -0.606161 -0.795342 -1.0 +2448 1 1.72 10.6199999 1.77 69.0299988 -0.769184 0.639027 -1.0 +2449 1 1.72 14.1599999 0.0 67.2600021 -0.499218 -0.866477 -1.0 +2450 1 1.72 15.9300004 1.77 67.2600021 0.673539 -0.739151 -1.0 +2451 1 1.72 15.9300004 0.0 69.0299988 0.898864 0.438227 -1.0 +2452 1 1.72 14.1599999 1.77 69.0299988 0.727839 -0.685748 -1.0 +2453 1 1.72 17.7000008 0.0 67.2600021 0.252137 0.967691 -1.0 +2454 1 1.72 19.4699993 1.77 67.2600021 -0.75267 -0.658398 -1.0 +2455 1 1.72 19.4699993 0.0 69.0299988 -0.327885 0.944718 -1.0 +2456 1 1.72 17.7000008 1.77 69.0299988 -0.760655 -0.649156 -1.0 +2457 1 1.72 21.2399998 0.0 67.2600021 -0.25872 0.965952 -1.0 +2458 1 1.72 23.0100002 1.77 67.2600021 0.319444 0.947605 -1.0 +2459 1 1.72 23.0100002 0.0 69.0299988 0.950299 0.311338 -1.0 +2460 1 1.72 21.2399998 1.77 69.0299988 0.865474 0.500953 -1.0 +2461 1 1.72 24.7800007 0.0 67.2600021 -0.782408 -0.622767 -1.0 +2462 1 1.72 26.5499993 1.77 67.2600021 -0.975746 -0.218905 -1.0 +2463 1 1.72 26.5499993 0.0 69.0299988 0.62592 -0.779887 -1.0 +2464 1 1.72 24.7800007 1.77 69.0299988 -0.77496 -0.63201 -1.0 +2465 1 1.72 0.0 3.54 67.2600021 -0.00344942 0.999994 -1.0 +2466 1 1.72 1.77 5.31 67.2600021 0.804716 0.59366 -1.0 +2467 1 1.72 1.77 3.54 69.0299988 -0.263429 0.964679 -1.0 +2468 1 1.72 0.0 5.31 69.0299988 -0.467125 0.884191 -1.0 +2469 1 1.72 3.54 3.54 67.2600021 0.394847 -0.918747 -1.0 +2470 1 1.72 5.31 5.31 67.2600021 0.19803 -0.980196 -1.0 +2471 1 1.72 5.31 3.54 69.0299988 -0.735634 -0.67738 -1.0 +2472 1 1.72 3.54 5.31 69.0299988 -0.780256 0.62546 -1.0 +2473 1 1.72 7.0799999 3.54 67.2600021 0.267236 -0.963631 -1.0 +2474 1 1.72 8.8500004 5.31 67.2600021 -0.091437 -0.995811 -1.0 +2475 1 1.72 8.8500004 3.54 69.0299988 -0.981555 -0.191182 -1.0 +2476 1 1.72 7.0799999 5.31 69.0299988 0.566657 0.823954 -1.0 +2477 1 1.72 10.6199999 3.54 67.2600021 -0.378665 -0.925534 -1.0 +2478 1 1.72 12.3900004 5.31 67.2600021 0.782275 -0.622934 -1.0 +2479 1 1.72 12.3900004 3.54 69.0299988 -0.418551 0.908194 -1.0 +2480 1 1.72 10.6199999 5.31 69.0299988 0.931319 0.364204 -1.0 +2481 1 1.72 14.1599999 3.54 67.2600021 -0.256481 0.966549 -1.0 +2482 1 1.72 15.9300004 5.31 67.2600021 -0.513162 -0.858292 -1.0 +2483 1 1.72 15.9300004 3.54 69.0299988 -0.372953 -0.92785 -1.0 +2484 1 1.72 14.1599999 5.31 69.0299988 0.610681 -0.791877 -1.0 +2485 1 1.72 17.7000008 3.54 67.2600021 0.599818 0.800137 -1.0 +2486 1 1.72 19.4699993 5.31 67.2600021 -0.704443 0.70976 -1.0 +2487 1 1.72 19.4699993 3.54 69.0299988 0.951687 0.30707 -1.0 +2488 1 1.72 17.7000008 5.31 69.0299988 0.86226 -0.506466 -1.0 +2489 1 1.72 21.2399998 3.54 67.2600021 0.896434 -0.443176 -1.0 +2490 1 1.72 23.0100002 5.31 67.2600021 0.809607 -0.586972 -1.0 +2491 1 1.72 23.0100002 3.54 69.0299988 0.226646 -0.973977 -1.0 +2492 1 1.72 21.2399998 5.31 69.0299988 -0.122875 0.992422 -1.0 +2493 1 1.72 24.7800007 3.54 67.2600021 -0.403321 -0.915059 -1.0 +2494 1 1.72 26.5499993 5.31 67.2600021 0.969155 0.246453 -1.0 +2495 1 1.72 26.5499993 3.54 69.0299988 -0.0388332 -0.999246 -1.0 +2496 1 1.72 24.7800007 5.31 69.0299988 0.999529 -0.0306765 -1.0 +2497 1 1.72 0.0 7.0799999 67.2600021 -0.0844834 -0.996425 -1.0 +2498 1 1.72 1.77 8.8500004 67.2600021 0.52432 0.851521 -1.0 +2499 1 1.72 1.77 7.0799999 69.0299988 -0.75716 -0.653229 -1.0 +2500 1 1.72 0.0 8.8500004 69.0299988 0.997292 -0.0735396 -1.0 +2501 1 1.72 3.54 7.0799999 67.2600021 -0.970573 -0.240809 -1.0 +2502 1 1.72 5.31 8.8500004 67.2600021 0.998763 0.0497254 -1.0 +2503 1 1.72 5.31 7.0799999 69.0299988 -0.644067 0.764969 -1.0 +2504 1 1.72 3.54 8.8500004 69.0299988 -0.378008 -0.925802 -1.0 +2505 1 1.72 7.0799999 7.0799999 67.2600021 -0.313713 0.949518 -1.0 +2506 1 1.72 8.8500004 8.8500004 67.2600021 0.966974 -0.254875 -1.0 +2507 1 1.72 8.8500004 7.0799999 69.0299988 0.848527 0.529152 -1.0 +2508 1 1.72 7.0799999 8.8500004 69.0299988 0.28983 -0.957078 -1.0 +2509 1 1.72 10.6199999 7.0799999 67.2600021 0.739304 -0.673372 -1.0 +2510 1 1.72 12.3900004 8.8500004 67.2600021 0.890111 0.455743 -1.0 +2511 1 1.72 12.3900004 7.0799999 69.0299988 0.797058 0.603902 -1.0 +2512 1 1.72 10.6199999 8.8500004 69.0299988 0.956073 0.293128 -1.0 +2513 1 1.72 14.1599999 7.0799999 67.2600021 -0.826604 0.562783 -1.0 +2514 1 1.72 15.9300004 8.8500004 67.2600021 -0.540986 0.841032 -1.0 +2515 1 1.72 15.9300004 7.0799999 69.0299988 0.548777 -0.835969 -1.0 +2516 1 1.72 14.1599999 8.8500004 69.0299988 0.772044 -0.635568 -1.0 +2517 1 1.72 17.7000008 7.0799999 67.2600021 -0.721455 0.692462 -1.0 +2518 1 1.72 19.4699993 8.8500004 67.2600021 -0.891206 -0.453599 -1.0 +2519 1 1.72 19.4699993 7.0799999 69.0299988 -0.572679 0.81978 -1.0 +2520 1 1.72 17.7000008 8.8500004 69.0299988 -0.987177 -0.159626 -1.0 +2521 1 1.72 21.2399998 7.0799999 67.2600021 0.762175 0.647371 -1.0 +2522 1 1.72 23.0100002 8.8500004 67.2600021 -0.866087 0.499894 -1.0 +2523 1 1.72 23.0100002 7.0799999 69.0299988 0.482448 -0.875925 -1.0 +2524 1 1.72 21.2399998 8.8500004 69.0299988 -0.977753 0.209758 -1.0 +2525 1 1.72 24.7800007 7.0799999 67.2600021 0.646402 0.762997 -1.0 +2526 1 1.72 26.5499993 8.8500004 67.2600021 -0.474111 -0.880465 -1.0 +2527 1 1.72 26.5499993 7.0799999 69.0299988 0.977341 -0.21167 -1.0 +2528 1 1.72 24.7800007 8.8500004 69.0299988 -0.539313 0.842105 -1.0 +2529 1 1.72 0.0 10.6199999 67.2600021 -0.492588 0.870263 -1.0 +2530 1 1.72 1.77 12.3900004 67.2600021 0.531379 0.847134 -1.0 +2531 1 1.72 1.77 10.6199999 69.0299988 -0.929224 -0.369518 -1.0 +2532 1 1.72 0.0 12.3900004 69.0299988 0.659059 0.752091 -1.0 +2533 1 1.72 3.54 10.6199999 67.2600021 -0.886385 0.462949 -1.0 +2534 1 1.72 5.31 12.3900004 67.2600021 0.380359 0.924839 -1.0 +2535 1 1.72 5.31 10.6199999 69.0299988 -0.398277 0.917265 -1.0 +2536 1 1.72 3.54 12.3900004 69.0299988 0.0932238 0.995645 -1.0 +2537 1 1.72 7.0799999 10.6199999 67.2600021 -0.966582 -0.256357 -1.0 +2538 1 1.72 8.8500004 12.3900004 67.2600021 -0.544856 0.83853 -1.0 +2539 1 1.72 8.8500004 10.6199999 69.0299988 0.282839 -0.959168 -1.0 +2540 1 1.72 7.0799999 12.3900004 69.0299988 -0.278891 -0.960323 -1.0 +2541 1 1.72 10.6199999 10.6199999 67.2600021 -0.752093 0.659057 -1.0 +2542 1 1.72 12.3900004 12.3900004 67.2600021 0.543929 0.839131 -1.0 +2543 1 1.72 12.3900004 10.6199999 69.0299988 0.115105 -0.993353 -1.0 +2544 1 1.72 10.6199999 12.3900004 69.0299988 -0.869329 0.494233 -1.0 +2545 1 1.72 14.1599999 10.6199999 67.2600021 -0.282722 0.959202 -1.0 +2546 1 1.72 15.9300004 12.3900004 67.2600021 0.672684 -0.73993 -1.0 +2547 1 1.72 15.9300004 10.6199999 69.0299988 -0.962006 0.27303 -1.0 +2548 1 1.72 14.1599999 12.3900004 69.0299988 0.990839 -0.135049 -1.0 +2549 1 1.72 17.7000008 10.6199999 67.2600021 0.338185 0.94108 -1.0 +2550 1 1.72 19.4699993 12.3900004 67.2600021 0.0157419 -0.999876 -1.0 +2551 1 1.72 19.4699993 10.6199999 69.0299988 0.504551 -0.863382 -1.0 +2552 1 1.72 17.7000008 12.3900004 69.0299988 -0.482953 -0.875646 -1.0 +2553 1 1.72 21.2399998 10.6199999 67.2600021 0.167304 -0.985905 -1.0 +2554 1 1.72 23.0100002 12.3900004 67.2600021 -0.855262 -0.518195 -1.0 +2555 1 1.72 23.0100002 10.6199999 69.0299988 0.640076 -0.768312 -1.0 +2556 1 1.72 21.2399998 12.3900004 69.0299988 -0.632971 0.774175 -1.0 +2557 1 1.72 24.7800007 10.6199999 67.2600021 0.40118 0.915999 -1.0 +2558 1 1.72 26.5499993 12.3900004 67.2600021 0.972098 0.234576 -1.0 +2559 1 1.72 26.5499993 10.6199999 69.0299988 -0.430277 0.902697 -1.0 +2560 1 1.72 24.7800007 12.3900004 69.0299988 -0.520051 0.854135 -1.0 +2561 1 1.72 0.0 0.0 70.8000031 0.996854 -0.079259 -1.0 +2562 1 1.72 1.77 1.77 70.8000031 0.450149 0.892953 -1.0 +2563 1 1.72 1.77 0.0 72.5699997 0.184363 -0.982858 -1.0 +2564 1 1.72 0.0 1.77 72.5699997 0.996762 -0.0804035 -1.0 +2565 1 1.72 3.54 0.0 70.8000031 0.878294 -0.478122 -1.0 +2566 1 1.72 5.31 1.77 70.8000031 0.556396 0.830917 -1.0 +2567 1 1.72 5.31 0.0 72.5699997 -0.867916 -0.496712 -1.0 +2568 1 1.72 3.54 1.77 72.5699997 0.793814 0.608161 -1.0 +2569 1 1.72 7.0799999 0.0 70.8000031 -0.944071 -0.329743 -1.0 +2570 1 1.72 8.8500004 1.77 70.8000031 0.999804 0.0197887 -1.0 +2571 1 1.72 8.8500004 0.0 72.5699997 0.30749 0.951551 -1.0 +2572 1 1.72 7.0799999 1.77 72.5699997 -0.323979 -0.946064 -1.0 +2573 1 1.72 10.6199999 0.0 70.8000031 0.290281 0.956941 -1.0 +2574 1 1.72 12.3900004 1.77 70.8000031 0.948431 -0.316985 -1.0 +2575 1 1.72 12.3900004 0.0 72.5699997 -0.532161 -0.846643 -1.0 +2576 1 1.72 10.6199999 1.77 72.5699997 -0.695111 0.718903 -1.0 +2577 1 1.72 14.1599999 0.0 70.8000031 -0.916714 0.399543 -1.0 +2578 1 1.72 15.9300004 1.77 70.8000031 -0.160218 -0.987082 -1.0 +2579 1 1.72 15.9300004 0.0 72.5699997 0.645086 -0.76411 -1.0 +2580 1 1.72 14.1599999 1.77 72.5699997 0.936435 0.350841 -1.0 +2581 1 1.72 17.7000008 0.0 70.8000031 -0.71365 0.700503 -1.0 +2582 1 1.72 19.4699993 1.77 70.8000031 -0.997183 -0.0750127 -1.0 +2583 1 1.72 19.4699993 0.0 72.5699997 -0.86208 0.506773 -1.0 +2584 1 1.72 17.7000008 1.77 72.5699997 0.609747 -0.792596 -1.0 +2585 1 1.72 21.2399998 0.0 70.8000031 0.952234 -0.305369 -1.0 +2586 1 1.72 23.0100002 1.77 70.8000031 -0.892839 -0.450377 -1.0 +2587 1 1.72 23.0100002 0.0 72.5699997 -0.345205 0.938527 -1.0 +2588 1 1.72 21.2399998 1.77 72.5699997 0.697217 -0.71686 -1.0 +2589 1 1.72 24.7800007 0.0 70.8000031 0.227603 0.973754 -1.0 +2590 1 1.72 26.5499993 1.77 70.8000031 -0.691152 -0.722709 -1.0 +2591 1 1.72 26.5499993 0.0 72.5699997 0.0879207 -0.996127 -1.0 +2592 1 1.72 24.7800007 1.77 72.5699997 0.0309026 0.999522 -1.0 +2593 1 1.72 0.0 3.54 70.8000031 0.434622 -0.900613 -1.0 +2594 1 1.72 1.77 5.31 70.8000031 -0.0800045 -0.996794 -1.0 +2595 1 1.72 1.77 3.54 72.5699997 -0.696582 0.717478 -1.0 +2596 1 1.72 0.0 5.31 72.5699997 -0.0641145 0.997943 -1.0 +2597 1 1.72 3.54 3.54 70.8000031 0.216238 -0.976341 -1.0 +2598 1 1.72 5.31 5.31 70.8000031 -0.801073 0.598566 -1.0 +2599 1 1.72 5.31 3.54 72.5699997 0.362364 -0.932037 -1.0 +2600 1 1.72 3.54 5.31 72.5699997 -0.12397 0.992286 -1.0 +2601 1 1.72 7.0799999 3.54 70.8000031 -0.795129 -0.606441 -1.0 +2602 1 1.72 8.8500004 5.31 70.8000031 -0.793141 0.609038 -1.0 +2603 1 1.72 8.8500004 3.54 72.5699997 0.81266 0.582738 -1.0 +2604 1 1.72 7.0799999 5.31 72.5699997 -0.454623 -0.890684 -1.0 +2605 1 1.72 10.6199999 3.54 70.8000031 -0.91051 -0.413488 -1.0 +2606 1 1.72 12.3900004 5.31 70.8000031 0.519881 -0.854239 -1.0 +2607 1 1.72 12.3900004 3.54 72.5699997 0.701988 -0.712189 -1.0 +2608 1 1.72 10.6199999 5.31 72.5699997 0.0276954 0.999616 -1.0 +2609 1 1.72 14.1599999 3.54 70.8000031 0.380239 0.924888 -1.0 +2610 1 1.72 15.9300004 5.31 70.8000031 -0.984141 0.177389 -1.0 +2611 1 1.72 15.9300004 3.54 72.5699997 0.941809 -0.336149 -1.0 +2612 1 1.72 14.1599999 5.31 72.5699997 -0.999229 -0.0392529 -1.0 +2613 1 1.72 17.7000008 3.54 70.8000031 -0.519176 -0.854667 -1.0 +2614 1 1.72 19.4699993 5.31 70.8000031 0.202819 -0.979216 -1.0 +2615 1 1.72 19.4699993 3.54 72.5699997 0.663145 -0.748491 -1.0 +2616 1 1.72 17.7000008 5.31 72.5699997 0.814681 -0.579909 -1.0 +2617 1 1.72 21.2399998 3.54 70.8000031 0.663992 -0.747739 -1.0 +2618 1 1.72 23.0100002 5.31 70.8000031 -0.689626 0.724166 -1.0 +2619 1 1.72 23.0100002 3.54 72.5699997 -0.528325 -0.849042 -1.0 +2620 1 1.72 21.2399998 5.31 72.5699997 -0.318979 0.947762 -1.0 +2621 1 1.72 24.7800007 3.54 70.8000031 0.0173019 0.99985 -1.0 +2622 1 1.72 26.5499993 5.31 70.8000031 -0.998682 -0.0513189 -1.0 +2623 1 1.72 26.5499993 3.54 72.5699997 -0.76894 0.639321 -1.0 +2624 1 1.72 24.7800007 5.31 72.5699997 -0.289597 -0.957149 -1.0 +2625 1 1.72 0.0 7.0799999 70.8000031 -0.110722 -0.993851 -1.0 +2626 1 1.72 1.77 8.8500004 70.8000031 0.695278 0.71874 -1.0 +2627 1 1.72 1.77 7.0799999 72.5699997 -0.889346 -0.457234 -1.0 +2628 1 1.72 0.0 8.8500004 72.5699997 -0.77499 0.631973 -1.0 +2629 1 1.72 3.54 7.0799999 70.8000031 -0.964399 0.264451 -1.0 +2630 1 1.72 5.31 8.8500004 70.8000031 -0.617854 -0.786293 -1.0 +2631 1 1.72 5.31 7.0799999 72.5699997 -0.574089 0.818793 -1.0 +2632 1 1.72 3.54 8.8500004 72.5699997 -0.258941 0.965893 -1.0 +2633 1 1.72 7.0799999 7.0799999 70.8000031 -0.535936 0.844258 -1.0 +2634 1 1.72 8.8500004 8.8500004 70.8000031 0.226008 0.974126 -1.0 +2635 1 1.72 8.8500004 7.0799999 72.5699997 -0.77335 -0.63398 -1.0 +2636 1 1.72 7.0799999 8.8500004 72.5699997 0.602328 0.798248 -1.0 +2637 1 1.72 10.6199999 7.0799999 70.8000031 0.621492 -0.783421 -1.0 +2638 1 1.72 12.3900004 8.8500004 70.8000031 -0.642385 -0.766382 -1.0 +2639 1 1.72 12.3900004 7.0799999 72.5699997 0.997615 0.0690311 -1.0 +2640 1 1.72 10.6199999 8.8500004 72.5699997 -0.715738 -0.698369 -1.0 +2641 1 1.72 14.1599999 7.0799999 70.8000031 0.184715 0.982792 -1.0 +2642 1 1.72 15.9300004 8.8500004 70.8000031 -0.358399 -0.933569 -1.0 +2643 1 1.72 15.9300004 7.0799999 72.5699997 -0.178203 -0.983994 -1.0 +2644 1 1.72 14.1599999 8.8500004 72.5699997 -0.90695 0.421238 -1.0 +2645 1 1.72 17.7000008 7.0799999 70.8000031 0.405199 -0.914228 -1.0 +2646 1 1.72 19.4699993 8.8500004 70.8000031 -0.846991 0.531608 -1.0 +2647 1 1.72 19.4699993 7.0799999 72.5699997 0.442587 0.896726 -1.0 +2648 1 1.72 17.7000008 8.8500004 72.5699997 0.869395 -0.494118 -1.0 +2649 1 1.72 21.2399998 7.0799999 70.8000031 -0.750524 -0.660843 -1.0 +2650 1 1.72 23.0100002 8.8500004 70.8000031 -0.447736 0.894166 -1.0 +2651 1 1.72 23.0100002 7.0799999 72.5699997 -0.642749 0.766077 -1.0 +2652 1 1.72 21.2399998 8.8500004 72.5699997 -0.877086 0.480334 -1.0 +2653 1 1.72 24.7800007 7.0799999 70.8000031 -0.112041 -0.993704 -1.0 +2654 1 1.72 26.5499993 8.8500004 70.8000031 0.394801 -0.918767 -1.0 +2655 1 1.72 26.5499993 7.0799999 72.5699997 0.380279 0.924872 -1.0 +2656 1 1.72 24.7800007 8.8500004 72.5699997 0.638742 -0.769421 -1.0 +2657 1 1.72 0.0 10.6199999 70.8000031 0.237357 0.971423 -1.0 +2658 1 1.72 1.77 12.3900004 70.8000031 -0.612026 -0.790838 -1.0 +2659 1 1.72 1.77 10.6199999 72.5699997 -0.913314 0.407255 -1.0 +2660 1 1.72 0.0 12.3900004 72.5699997 -0.999106 0.0422765 -1.0 +2661 1 1.72 3.54 10.6199999 70.8000031 0.668715 0.743519 -1.0 +2662 1 1.72 5.31 12.3900004 70.8000031 0.89353 -0.449004 -1.0 +2663 1 1.72 5.31 10.6199999 72.5699997 0.0434175 -0.999057 -1.0 +2664 1 1.72 3.54 12.3900004 72.5699997 0.918133 0.396273 -1.0 +2665 1 1.72 7.0799999 10.6199999 70.8000031 0.995238 -0.0974731 -1.0 +2666 1 1.72 8.8500004 12.3900004 70.8000031 -0.48154 0.876424 -1.0 +2667 1 1.72 8.8500004 10.6199999 72.5699997 0.990208 -0.139597 -1.0 +2668 1 1.72 7.0799999 12.3900004 72.5699997 0.317593 -0.948227 -1.0 +2669 1 1.72 10.6199999 10.6199999 70.8000031 -0.976998 0.213247 -1.0 +2670 1 1.72 12.3900004 12.3900004 70.8000031 -0.826535 0.562886 -1.0 +2671 1 1.72 12.3900004 10.6199999 72.5699997 0.119546 0.992829 -1.0 +2672 1 1.72 10.6199999 12.3900004 72.5699997 0.855019 -0.518597 -1.0 +2673 1 1.72 14.1599999 10.6199999 70.8000031 0.991977 -0.126418 -1.0 +2674 1 1.72 15.9300004 12.3900004 70.8000031 -0.694492 -0.7195 -1.0 +2675 1 1.72 15.9300004 10.6199999 72.5699997 0.836202 0.548422 -1.0 +2676 1 1.72 14.1599999 12.3900004 72.5699997 0.868547 -0.495606 -1.0 +2677 1 1.72 17.7000008 10.6199999 70.8000031 0.193154 0.981168 -1.0 +2678 1 1.72 19.4699993 12.3900004 70.8000031 -0.999852 -0.0171875 -1.0 +2679 1 1.72 19.4699993 10.6199999 72.5699997 -0.907134 -0.420843 -1.0 +2680 1 1.72 17.7000008 12.3900004 72.5699997 0.84745 -0.530875 -1.0 +2681 1 1.72 21.2399998 10.6199999 70.8000031 -0.727312 0.686307 -1.0 +2682 1 1.72 23.0100002 12.3900004 70.8000031 -0.407622 0.913151 -1.0 +2683 1 1.72 23.0100002 10.6199999 72.5699997 -0.295142 -0.955453 -1.0 +2684 1 1.72 21.2399998 12.3900004 72.5699997 -0.794453 0.607326 -1.0 +2685 1 1.72 24.7800007 10.6199999 70.8000031 -0.223654 0.974669 -1.0 +2686 1 1.72 26.5499993 12.3900004 70.8000031 -0.996187 -0.0872385 -1.0 +2687 1 1.72 26.5499993 10.6199999 72.5699997 -0.982655 0.185444 -1.0 +2688 1 1.72 24.7800007 12.3900004 72.5699997 -0.999977 -0.00675795 -1.0 +2689 1 1.72 0.0 0.0 74.3399964 0.6584 -0.752668 -1.0 +2690 1 1.72 1.77 1.77 74.3399964 -0.965527 0.260302 -1.0 +2691 1 1.72 1.77 0.0 76.1100006 -0.438723 0.898622 -0.990079 +2692 1 1.72 0.0 1.77 76.1100006 0.825643 0.564193 -0.990079 +2693 1 1.72 3.54 0.0 74.3399964 -0.434287 -0.900774 -1.0 +2694 1 1.72 5.31 1.77 74.3399964 -0.677509 -0.735515 -1.0 +2695 1 1.72 5.31 0.0 76.1100006 0.885697 0.464263 -0.990079 +2696 1 1.72 3.54 1.77 76.1100006 0.0583972 -0.998293 -0.990079 +2697 1 1.72 7.0799999 0.0 74.3399964 0.277019 0.960865 -1.0 +2698 1 1.72 8.8500004 1.77 74.3399964 -0.738429 -0.674331 -1.0 +2699 1 1.72 8.8500004 0.0 76.1100006 -0.582562 -0.812786 -0.990079 +2700 1 1.72 7.0799999 1.77 76.1100006 -0.921847 -0.387554 -0.990079 +2701 1 1.72 10.6199999 0.0 74.3399964 0.705194 0.709014 -1.0 +2702 1 1.72 12.3900004 1.77 74.3399964 -0.988155 -0.15346 -1.0 +2703 1 1.72 12.3900004 0.0 76.1100006 0.235839 -0.971792 -0.990079 +2704 1 1.72 10.6199999 1.77 76.1100006 -0.763627 0.645658 -0.990079 +2705 1 1.72 14.1599999 0.0 74.3399964 -0.585497 -0.810675 -1.0 +2706 1 1.72 15.9300004 1.77 74.3399964 0.0929598 0.99567 -1.0 +2707 1 1.72 15.9300004 0.0 76.1100006 0.9985 -0.0547597 -0.990079 +2708 1 1.72 14.1599999 1.77 76.1100006 0.839808 0.542884 -0.990079 +2709 1 1.72 17.7000008 0.0 74.3399964 0.998562 0.0536162 -1.0 +2710 1 1.72 19.4699993 1.77 74.3399964 -0.683246 0.730188 -1.0 +2711 1 1.72 19.4699993 0.0 76.1100006 0.646185 -0.763181 -0.990079 +2712 1 1.72 17.7000008 1.77 76.1100006 0.106454 0.994318 -0.990079 +2713 1 1.72 21.2399998 0.0 74.3399964 -0.436579 -0.899666 -1.0 +2714 1 1.72 23.0100002 1.77 74.3399964 -0.838672 -0.544636 -1.0 +2715 1 1.72 23.0100002 0.0 76.1100006 0.883936 -0.467608 -0.990079 +2716 1 1.72 21.2399998 1.77 76.1100006 0.979898 0.199499 -0.990079 +2717 1 1.72 24.7800007 0.0 74.3399964 0.425687 -0.90487 -1.0 +2718 1 1.72 26.5499993 1.77 74.3399964 -0.779535 0.626358 -1.0 +2719 1 1.72 26.5499993 0.0 76.1100006 0.712162 -0.702015 -0.990079 +2720 1 1.72 24.7800007 1.77 76.1100006 0.445081 -0.89549 -0.990079 +2721 1 1.72 0.0 3.54 74.3399964 -0.634976 0.772532 -1.0 +2722 1 1.72 1.77 5.31 74.3399964 -0.998941 -0.0459998 -1.0 +2723 1 1.72 1.77 3.54 76.1100006 0.293149 0.956067 -0.990079 +2724 1 1.72 0.0 5.31 76.1100006 -0.551103 0.834437 -0.990079 +2725 1 1.72 3.54 3.54 74.3399964 0.119368 -0.99285 -1.0 +2726 1 1.72 5.31 5.31 74.3399964 -0.301867 0.95335 -1.0 +2727 1 1.72 5.31 3.54 76.1100006 0.946505 -0.32269 -0.990079 +2728 1 1.72 3.54 5.31 76.1100006 -0.780991 -0.624543 -0.990079 +2729 1 1.72 7.0799999 3.54 74.3399964 0.64582 -0.76349 -1.0 +2730 1 1.72 8.8500004 5.31 74.3399964 0.182712 0.983166 -1.0 +2731 1 1.72 8.8500004 3.54 76.1100006 0.932971 -0.359953 -0.990079 +2732 1 1.72 7.0799999 5.31 76.1100006 -0.573221 0.819401 -0.990079 +2733 1 1.72 10.6199999 3.54 74.3399964 -0.750678 0.660669 -1.0 +2734 1 1.72 12.3900004 5.31 74.3399964 0.976649 -0.21484 -1.0 +2735 1 1.72 12.3900004 3.54 76.1100006 0.922581 0.385804 -0.990079 +2736 1 1.72 10.6199999 5.31 76.1100006 0.132322 -0.991207 -0.990079 +2737 1 1.72 14.1599999 3.54 74.3399964 0.793309 -0.608819 -1.0 +2738 1 1.72 15.9300004 5.31 74.3399964 -0.411038 -0.911618 -1.0 +2739 1 1.72 15.9300004 3.54 76.1100006 -0.0504977 -0.998724 -0.990079 +2740 1 1.72 14.1599999 5.31 76.1100006 -0.965802 -0.25928 -0.990079 +2741 1 1.72 17.7000008 3.54 74.3399964 -0.150705 0.988579 -1.0 +2742 1 1.72 19.4699993 5.31 74.3399964 -0.0546805 -0.998504 -1.0 +2743 1 1.72 19.4699993 3.54 76.1100006 -0.46867 -0.883374 -0.990079 +2744 1 1.72 17.7000008 5.31 76.1100006 -0.811254 0.584694 -0.990079 +2745 1 1.72 21.2399998 3.54 74.3399964 -0.0643899 0.997925 -1.0 +2746 1 1.72 23.0100002 5.31 74.3399964 0.684438 -0.729071 -1.0 +2747 1 1.72 23.0100002 3.54 76.1100006 -0.232684 0.972552 -0.990079 +2748 1 1.72 21.2399998 5.31 76.1100006 -0.963202 0.268778 -0.990079 +2749 1 1.72 24.7800007 3.54 74.3399964 -0.911603 0.411071 -1.0 +2750 1 1.72 26.5499993 5.31 74.3399964 0.548655 -0.836049 -1.0 +2751 1 1.72 26.5499993 3.54 76.1100006 0.380272 -0.924875 -0.990079 +2752 1 1.72 24.7800007 5.31 76.1100006 -0.0549016 0.998492 -0.990079 +2753 1 1.72 0.0 7.0799999 74.3399964 -0.21289 0.977076 -1.0 +2754 1 1.72 1.77 8.8500004 74.3399964 -0.89847 0.439035 -1.0 +2755 1 1.72 1.77 7.0799999 76.1100006 0.60713 -0.794602 -0.990079 +2756 1 1.72 0.0 8.8500004 76.1100006 0.902217 0.431283 -0.990079 +2757 1 1.72 3.54 7.0799999 74.3399964 0.534731 0.845022 -1.0 +2758 1 1.72 5.31 8.8500004 74.3399964 0.801433 -0.598085 -1.0 +2759 1 1.72 5.31 7.0799999 76.1100006 0.649708 -0.760184 -0.990079 +2760 1 1.72 3.54 8.8500004 76.1100006 0.996985 -0.0775938 -0.990079 +2761 1 1.72 7.0799999 7.0799999 74.3399964 -0.557265 -0.830335 -1.0 +2762 1 1.72 8.8500004 8.8500004 74.3399964 -0.761176 -0.648545 -1.0 +2763 1 1.72 8.8500004 7.0799999 76.1100006 -0.997402 0.0720329 -0.990079 +2764 1 1.72 7.0799999 8.8500004 76.1100006 -0.829088 0.559118 -0.990079 +2765 1 1.72 10.6199999 7.0799999 74.3399964 0.272071 -0.962277 -1.0 +2766 1 1.72 12.3900004 8.8500004 74.3399964 0.817957 -0.575279 -1.0 +2767 1 1.72 12.3900004 7.0799999 76.1100006 0.598483 0.801136 -0.990079 +2768 1 1.72 10.6199999 8.8500004 76.1100006 0.840947 0.541118 -0.990079 +2769 1 1.72 14.1599999 7.0799999 74.3399964 0.770406 0.637553 -1.0 +2770 1 1.72 15.9300004 8.8500004 74.3399964 -0.712936 0.701229 -1.0 +2771 1 1.72 15.9300004 7.0799999 76.1100006 0.739994 0.672614 -0.990079 +2772 1 1.72 14.1599999 8.8500004 76.1100006 0.292615 0.95623 -0.990079 +2773 1 1.72 17.7000008 7.0799999 74.3399964 0.998856 0.0478133 -1.0 +2774 1 1.72 19.4699993 8.8500004 74.3399964 0.98798 -0.154581 -1.0 +2775 1 1.72 19.4699993 7.0799999 76.1100006 0.464067 0.8858 -0.990079 +2776 1 1.72 17.7000008 8.8500004 76.1100006 -0.727119 0.686512 -0.990079 +2777 1 1.72 21.2399998 7.0799999 74.3399964 0.805172 -0.593041 -1.0 +2778 1 1.72 23.0100002 8.8500004 74.3399964 -0.92857 0.371157 -1.0 +2779 1 1.72 23.0100002 7.0799999 76.1100006 0.845635 0.533761 -0.990079 +2780 1 1.72 21.2399998 8.8500004 76.1100006 0.651576 0.758584 -0.990079 +2781 1 1.72 24.7800007 7.0799999 74.3399964 0.605434 0.795895 -1.0 +2782 1 1.72 26.5499993 8.8500004 74.3399964 0.420263 0.907402 -1.0 +2783 1 1.72 26.5499993 7.0799999 76.1100006 -0.818566 -0.574413 -0.990079 +2784 1 1.72 24.7800007 8.8500004 76.1100006 0.846778 -0.531947 -0.990079 +2785 1 1.72 0.0 10.6199999 74.3399964 0.857276 -0.514857 -1.0 +2786 1 1.72 1.77 12.3900004 74.3399964 0.693044 0.720895 -1.0 +2787 1 1.72 1.77 10.6199999 76.1100006 -0.71006 0.704141 -0.990079 +2788 1 1.72 0.0 12.3900004 76.1100006 0.961934 -0.273281 -0.990079 +2789 1 1.72 3.54 10.6199999 74.3399964 0.531506 -0.847055 -1.0 +2790 1 1.72 5.31 12.3900004 74.3399964 -0.174234 -0.984704 -1.0 +2791 1 1.72 5.31 10.6199999 76.1100006 0.035612 0.999366 -0.990079 +2792 1 1.72 3.54 12.3900004 76.1100006 0.661467 -0.749974 -0.990079 +2793 1 1.72 7.0799999 10.6199999 74.3399964 0.0967596 0.995308 -1.0 +2794 1 1.72 8.8500004 12.3900004 74.3399964 0.671437 0.741062 -1.0 +2795 1 1.72 8.8500004 10.6199999 76.1100006 -0.0182486 -0.999833 -0.990079 +2796 1 1.72 7.0799999 12.3900004 76.1100006 0.778209 -0.628005 -0.990079 +2797 1 1.72 10.6199999 10.6199999 74.3399964 0.345484 0.938424 -1.0 +2798 1 1.72 12.3900004 12.3900004 74.3399964 0.684638 0.728883 -1.0 +2799 1 1.72 12.3900004 10.6199999 76.1100006 0.881671 -0.471864 -0.990079 +2800 1 1.72 10.6199999 12.3900004 76.1100006 -0.651181 -0.758922 -0.990079 +2801 1 1.72 14.1599999 10.6199999 74.3399964 -0.689393 0.724388 -1.0 +2802 1 1.72 15.9300004 12.3900004 74.3399964 0.999998 0.00199737 -1.0 +2803 1 1.72 15.9300004 10.6199999 76.1100006 -0.397689 -0.91752 -0.990079 +2804 1 1.72 14.1599999 12.3900004 76.1100006 -0.979303 -0.202402 -0.990079 +2805 1 1.72 17.7000008 10.6199999 74.3399964 0.631902 0.775049 -1.0 +2806 1 1.72 19.4699993 12.3900004 74.3399964 0.828451 -0.560061 -1.0 +2807 1 1.72 19.4699993 10.6199999 76.1100006 -0.66253 -0.749035 -0.990079 +2808 1 1.72 17.7000008 12.3900004 76.1100006 0.963196 -0.268799 -0.990079 +2809 1 1.72 21.2399998 10.6199999 74.3399964 -0.751939 -0.659232 -1.0 +2810 1 1.72 23.0100002 12.3900004 74.3399964 -0.622509 -0.782613 -1.0 +2811 1 1.72 23.0100002 10.6199999 76.1100006 0.676373 0.736559 -0.990079 +2812 1 1.72 21.2399998 12.3900004 76.1100006 -0.368163 -0.929761 -0.990079 +2813 1 1.72 24.7800007 10.6199999 74.3399964 -0.645846 -0.763467 -1.0 +2814 1 1.72 26.5499993 12.3900004 74.3399964 -0.352217 -0.935918 -1.0 +2815 1 1.72 26.5499993 10.6199999 76.1100006 -0.922633 0.385678 -0.990079 +2816 1 1.72 24.7800007 12.3900004 76.1100006 -0.981227 0.192855 -0.990079 +2817 1 1.72 0.0 0.0 77.8799974 -0.829109 -0.559087 -0.90501 +2818 1 1.72 1.77 1.77 77.8799974 -0.650063 -0.759881 -0.90501 +2819 1 1.72 1.77 0.0 79.6500016 -0.844387 0.535733 -0.7399438 +2820 1 1.72 0.0 1.77 79.6500016 -0.727146 0.686483 -0.7399438 +2821 1 1.72 3.54 0.0 77.8799974 0.548801 -0.835953 -0.90501 +2822 1 1.72 5.31 1.77 77.8799974 -0.816309 0.577615 -0.90501 +2823 1 1.72 5.31 0.0 79.6500016 -0.998811 -0.0487466 -0.7399438 +2824 1 1.72 3.54 1.77 79.6500016 -0.728262 0.685299 -0.7399438 +2825 1 1.72 7.0799999 0.0 77.8799974 0.560016 -0.828482 -0.90501 +2826 1 1.72 8.8500004 1.77 77.8799974 -0.85128 -0.524711 -0.90501 +2827 1 1.72 8.8500004 0.0 79.6500016 0.4869 0.873458 -0.7399438 +2828 1 1.72 7.0799999 1.77 79.6500016 -0.00262679 0.999997 -0.7399438 +2829 1 1.72 10.6199999 0.0 77.8799974 0.842996 0.53792 -0.90501 +2830 1 1.72 12.3900004 1.77 77.8799974 -0.99541 0.0957042 -0.90501 +2831 1 1.72 12.3900004 0.0 79.6500016 -0.690352 0.723474 -0.7399438 +2832 1 1.72 10.6199999 1.77 79.6500016 0.585374 0.810763 -0.7399438 +2833 1 1.72 14.1599999 0.0 77.8799974 0.716682 -0.6974 -0.90501 +2834 1 1.72 15.9300004 1.77 77.8799974 -0.597963 0.801524 -0.90501 +2835 1 1.72 15.9300004 0.0 79.6500016 0.224139 0.974557 -0.7399438 +2836 1 1.72 14.1599999 1.77 79.6500016 -0.796257 -0.604958 -0.7399438 +2837 1 1.72 17.7000008 0.0 77.8799974 -0.925014 -0.379932 -0.90501 +2838 1 1.72 19.4699993 1.77 77.8799974 -0.652404 -0.757871 -0.90501 +2839 1 1.72 19.4699993 0.0 79.6500016 0.896845 0.442346 -0.7399438 +2840 1 1.72 17.7000008 1.77 79.6500016 0.801276 0.598295 -0.7399438 +2841 1 1.72 21.2399998 0.0 77.8799974 0.988931 -0.148379 -0.90501 +2842 1 1.72 23.0100002 1.77 77.8799974 -0.612491 -0.790477 -0.90501 +2843 1 1.72 23.0100002 0.0 79.6500016 0.144697 -0.989476 -0.7399438 +2844 1 1.72 21.2399998 1.77 79.6500016 0.912867 -0.408256 -0.7399438 +2845 1 1.72 24.7800007 0.0 77.8799974 -0.691726 0.72216 -0.90501 +2846 1 1.72 26.5499993 1.77 77.8799974 0.905429 0.424497 -0.90501 +2847 1 1.72 26.5499993 0.0 79.6500016 -0.998682 0.0513234 -0.7399438 +2848 1 1.72 24.7800007 1.77 79.6500016 -0.551255 0.834337 -0.7399438 +2849 1 1.72 0.0 3.54 77.8799974 -0.804754 0.593608 -0.90501 +2850 1 1.72 1.77 5.31 77.8799974 0.130423 0.991458 -0.90501 +2851 1 1.72 1.77 3.54 79.6500016 -0.514998 -0.857192 -0.7399438 +2852 1 1.72 0.0 5.31 79.6500016 -0.354214 0.935164 -0.7399438 +2853 1 1.72 3.54 3.54 77.8799974 0.994573 0.104046 -0.90501 +2854 1 1.72 5.31 5.31 77.8799974 -0.945365 0.326014 -0.90501 +2855 1 1.72 5.31 3.54 79.6500016 -0.582958 -0.812503 -0.7399438 +2856 1 1.72 3.54 5.31 79.6500016 0.68457 -0.728947 -0.7399438 +2857 1 1.72 7.0799999 3.54 77.8799974 0.0695657 -0.997577 -0.90501 +2858 1 1.72 8.8500004 5.31 77.8799974 -0.797244 -0.603658 -0.90501 +2859 1 1.72 8.8500004 3.54 79.6500016 0.405727 0.913994 -0.7399438 +2860 1 1.72 7.0799999 5.31 79.6500016 0.309675 -0.950842 -0.7399438 +2861 1 1.72 10.6199999 3.54 77.8799974 -0.280386 0.959887 -0.90501 +2862 1 1.72 12.3900004 5.31 77.8799974 0.312965 -0.949765 -0.90501 +2863 1 1.72 12.3900004 3.54 79.6500016 0.74692 -0.664914 -0.7399438 +2864 1 1.72 10.6199999 5.31 79.6500016 -0.795824 -0.605528 -0.7399438 +2865 1 1.72 14.1599999 3.54 77.8799974 0.51989 0.854233 -0.90501 +2866 1 1.72 15.9300004 5.31 77.8799974 -0.248787 -0.968558 -0.90501 +2867 1 1.72 15.9300004 3.54 79.6500016 0.401367 0.915917 -0.7399438 +2868 1 1.72 14.1599999 5.31 79.6500016 0.316069 -0.948736 -0.7399438 +2869 1 1.72 17.7000008 3.54 77.8799974 -0.575936 -0.817495 -0.90501 +2870 1 1.72 19.4699993 5.31 77.8799974 0.535246 -0.844696 -0.90501 +2871 1 1.72 19.4699993 3.54 79.6500016 -0.143554 -0.989643 -0.7399438 +2872 1 1.72 17.7000008 5.31 79.6500016 0.939324 0.34303 -0.7399438 +2873 1 1.72 21.2399998 3.54 77.8799974 -0.977875 0.209188 -0.90501 +2874 1 1.72 23.0100002 5.31 77.8799974 -0.469185 0.8831 -0.90501 +2875 1 1.72 23.0100002 3.54 79.6500016 -0.262179 0.965019 -0.7399438 +2876 1 1.72 21.2399998 5.31 79.6500016 0.882523 0.470268 -0.7399438 +2877 1 1.72 24.7800007 3.54 77.8799974 0.553089 -0.833122 -0.90501 +2878 1 1.72 26.5499993 5.31 77.8799974 -0.63814 -0.76992 -0.90501 +2879 1 1.72 26.5499993 3.54 79.6500016 0.930621 -0.365983 -0.7399438 +2880 1 1.72 24.7800007 5.31 79.6500016 -0.458835 0.888522 -0.7399438 +2881 1 1.72 0.0 7.0799999 77.8799974 -0.911346 -0.411641 -0.90501 +2882 1 1.72 1.77 8.8500004 77.8799974 -0.586095 0.810242 -0.90501 +2883 1 1.72 1.77 7.0799999 79.6500016 -0.993131 -0.117007 -0.7399438 +2884 1 1.72 0.0 8.8500004 79.6500016 0.460091 0.887872 -0.7399438 +2885 1 1.72 3.54 7.0799999 77.8799974 -0.718895 0.695118 -0.90501 +2886 1 1.72 5.31 8.8500004 77.8799974 -0.999375 -0.0353623 -0.90501 +2887 1 1.72 5.31 7.0799999 79.6500016 -0.711015 0.703177 -0.7399438 +2888 1 1.72 3.54 8.8500004 79.6500016 -0.474822 -0.880082 -0.7399438 +2889 1 1.72 7.0799999 7.0799999 77.8799974 0.801745 -0.597666 -0.90501 +2890 1 1.72 8.8500004 8.8500004 77.8799974 -0.791111 -0.611673 -0.90501 +2891 1 1.72 8.8500004 7.0799999 79.6500016 0.957975 -0.28685 -0.7399438 +2892 1 1.72 7.0799999 8.8500004 79.6500016 -0.63871 -0.769447 -0.7399438 +2893 1 1.72 10.6199999 7.0799999 77.8799974 0.598465 0.801149 -0.90501 +2894 1 1.72 12.3900004 8.8500004 77.8799974 0.418382 0.908271 -0.90501 +2895 1 1.72 12.3900004 7.0799999 79.6500016 -0.958953 -0.283564 -0.7399438 +2896 1 1.72 10.6199999 8.8500004 79.6500016 -0.334925 0.942245 -0.7399438 +2897 1 1.72 14.1599999 7.0799999 77.8799974 -0.757332 0.65303 -0.90501 +2898 1 1.72 15.9300004 8.8500004 77.8799974 0.51879 0.854901 -0.90501 +2899 1 1.72 15.9300004 7.0799999 79.6500016 -0.388312 0.921528 -0.7399438 +2900 1 1.72 14.1599999 8.8500004 79.6500016 -0.955236 -0.295846 -0.7399438 +2901 1 1.72 17.7000008 7.0799999 77.8799974 0.484967 -0.874532 -0.90501 +2902 1 1.72 19.4699993 8.8500004 77.8799974 0.625233 0.780438 -0.90501 +2903 1 1.72 19.4699993 7.0799999 79.6500016 0.693263 0.720685 -0.7399438 +2904 1 1.72 17.7000008 8.8500004 79.6500016 0.850403 -0.526132 -0.7399438 +2905 1 1.72 21.2399998 7.0799999 77.8799974 0.582731 0.812665 -0.90501 +2906 1 1.72 23.0100002 8.8500004 77.8799974 0.260583 0.965451 -0.90501 +2907 1 1.72 23.0100002 7.0799999 79.6500016 -0.565448 -0.824784 -0.7399438 +2908 1 1.72 21.2399998 8.8500004 79.6500016 -0.836559 -0.547876 -0.7399438 +2909 1 1.72 24.7800007 7.0799999 77.8799974 0.512439 -0.858724 -0.90501 +2910 1 1.72 26.5499993 8.8500004 77.8799974 0.883131 0.469126 -0.90501 +2911 1 1.72 26.5499993 7.0799999 79.6500016 -0.143846 0.9896 -0.7399438 +2912 1 1.72 24.7800007 8.8500004 79.6500016 0.92945 -0.368949 -0.7399438 +2913 1 1.72 0.0 10.6199999 77.8799974 0.0605222 0.998167 -0.90501 +2914 1 1.72 1.77 12.3900004 77.8799974 0.982664 -0.185394 -0.90501 +2915 1 1.72 1.77 10.6199999 79.6500016 -0.626974 0.77904 -0.7399438 +2916 1 1.72 0.0 12.3900004 79.6500016 0.465934 0.88482 -0.7399438 +2917 1 1.72 3.54 10.6199999 77.8799974 0.974009 0.226508 -0.90501 +2918 1 1.72 5.31 12.3900004 77.8799974 -0.503945 -0.863736 -0.90501 +2919 1 1.72 5.31 10.6199999 79.6500016 0.999369 -0.0355283 -0.7399438 +2920 1 1.72 3.54 12.3900004 79.6500016 -0.610871 0.79173 -0.7399438 +2921 1 1.72 7.0799999 10.6199999 77.8799974 -0.342722 0.939437 -0.90501 +2922 1 1.72 8.8500004 12.3900004 77.8799974 -0.878251 -0.4782 -0.90501 +2923 1 1.72 8.8500004 10.6199999 79.6500016 -0.360919 0.932597 -0.7399438 +2924 1 1.72 7.0799999 12.3900004 79.6500016 0.361107 -0.932525 -0.7399438 +2925 1 1.72 10.6199999 10.6199999 77.8799974 0.999422 -0.0340089 -0.90501 +2926 1 1.72 12.3900004 12.3900004 77.8799974 0.811423 0.584459 -0.90501 +2927 1 1.72 12.3900004 10.6199999 79.6500016 0.31193 0.950105 -0.7399438 +2928 1 1.72 10.6199999 12.3900004 79.6500016 0.769255 0.638942 -0.7399438 +2929 1 1.72 14.1599999 10.6199999 77.8799974 -0.0415424 -0.999137 -0.90501 +2930 1 1.72 15.9300004 12.3900004 77.8799974 -0.798388 0.602144 -0.90501 +2931 1 1.72 15.9300004 10.6199999 79.6500016 0.805179 -0.593032 -0.7399438 +2932 1 1.72 14.1599999 12.3900004 79.6500016 0.689244 0.724529 -0.7399438 +2933 1 1.72 17.7000008 10.6199999 77.8799974 0.984685 0.174344 -0.90501 +2934 1 1.72 19.4699993 12.3900004 77.8799974 0.996394 0.0848468 -0.90501 +2935 1 1.72 19.4699993 10.6199999 79.6500016 0.0231384 0.999732 -0.7399438 +2936 1 1.72 17.7000008 12.3900004 79.6500016 0.965159 0.261664 -0.7399438 +2937 1 1.72 21.2399998 10.6199999 77.8799974 0.186053 -0.98254 -0.90501 +2938 1 1.72 23.0100002 12.3900004 77.8799974 0.606136 -0.795361 -0.90501 +2939 1 1.72 23.0100002 10.6199999 79.6500016 0.99873 -0.0503756 -0.7399438 +2940 1 1.72 21.2399998 12.3900004 79.6500016 0.0196603 0.999807 -0.7399438 +2941 1 1.72 24.7800007 10.6199999 77.8799974 0.989922 -0.141617 -0.90501 +2942 1 1.72 26.5499993 12.3900004 77.8799974 0.44242 -0.896808 -0.90501 +2943 1 1.72 26.5499993 10.6199999 79.6500016 0.115276 0.993333 -0.7399438 +2944 1 1.72 24.7800007 12.3900004 79.6500016 -0.948938 -0.315461 -0.7399438 +2945 1 1.72 0.0 0.0 81.4199982 0.783271 -0.621681 -0.5094728 +2946 1 1.72 1.77 1.77 81.4199982 -0.506449 0.86227 -0.5094728 +2947 1 1.72 1.77 0.0 83.1900024 -0.521846 -0.85304 -0.2339667 +2948 1 1.72 0.0 1.77 83.1900024 -0.764775 -0.644297 -0.2339667 +2949 1 1.72 3.54 0.0 81.4199982 0.159359 0.987221 -0.5094728 +2950 1 1.72 5.31 1.77 81.4199982 -0.750797 0.660533 -0.5094728 +2951 1 1.72 5.31 0.0 83.1900024 0.370063 -0.929007 -0.2339667 +2952 1 1.72 3.54 1.77 83.1900024 -0.773899 -0.633309 -0.2339667 +2953 1 1.72 7.0799999 0.0 81.4199982 0.0713316 0.997453 -0.5094728 +2954 1 1.72 8.8500004 1.77 81.4199982 -0.233018 0.972472 -0.5094728 +2955 1 1.72 8.8500004 0.0 83.1900024 -0.830221 -0.557434 -0.2339667 +2956 1 1.72 7.0799999 1.77 83.1900024 -0.0570867 -0.998369 -0.2339667 +2957 1 1.72 10.6199999 0.0 81.4199982 0.787453 -0.616375 -0.5094728 +2958 1 1.72 12.3900004 1.77 81.4199982 0.596533 0.802589 -0.5094728 +2959 1 1.72 12.3900004 0.0 83.1900024 -0.703455 -0.710739 -0.2339667 +2960 1 1.72 10.6199999 1.77 83.1900024 0.749208 -0.662335 -0.2339667 +2961 1 1.72 14.1599999 0.0 81.4199982 -0.62948 0.777016 -0.5094728 +2962 1 1.72 15.9300004 1.77 81.4199982 -0.615945 0.787789 -0.5094728 +2963 1 1.72 15.9300004 0.0 83.1900024 -0.963003 0.269492 -0.2339667 +2964 1 1.72 14.1599999 1.77 83.1900024 -0.497972 0.867193 -0.2339667 +2965 1 1.72 17.7000008 0.0 81.4199982 -0.99851 0.0545708 -0.5094728 +2966 1 1.72 19.4699993 1.77 81.4199982 -0.167053 0.985948 -0.5094728 +2967 1 1.72 19.4699993 0.0 83.1900024 -0.562935 0.826501 -0.2339667 +2968 1 1.72 17.7000008 1.77 83.1900024 0.637737 0.770254 -0.2339667 +2969 1 1.72 21.2399998 0.0 81.4199982 0.796952 -0.604043 -0.5094728 +2970 1 1.72 23.0100002 1.77 81.4199982 -0.225939 0.974141 -0.5094728 +2971 1 1.72 23.0100002 0.0 83.1900024 -0.0627446 -0.99803 -0.2339667 +2972 1 1.72 21.2399998 1.77 83.1900024 0.987166 0.159698 -0.2339667 +2973 1 1.72 24.7800007 0.0 81.4199982 0.640557 -0.767911 -0.5094728 +2974 1 1.72 26.5499993 1.77 81.4199982 0.613978 -0.789323 -0.5094728 +2975 1 1.72 26.5499993 0.0 83.1900024 0.762958 0.646448 -0.2339667 +2976 1 1.72 24.7800007 1.77 83.1900024 -0.981343 -0.192263 -0.2339667 +2977 1 1.72 0.0 3.54 81.4199982 -0.83316 -0.553033 -0.5094728 +2978 1 1.72 1.77 5.31 81.4199982 0.970146 0.242522 -0.5094728 +2979 1 1.72 1.77 3.54 83.1900024 -0.933463 -0.358675 -0.2339667 +2980 1 1.72 0.0 5.31 83.1900024 0.987145 0.159825 -0.2339667 +2981 1 1.72 3.54 3.54 81.4199982 0.863116 -0.505006 -0.5094728 +2982 1 1.72 5.31 5.31 81.4199982 0.867706 0.497078 -0.5094728 +2983 1 1.72 5.31 3.54 83.1900024 0.420037 -0.907507 -0.2339667 +2984 1 1.72 3.54 5.31 83.1900024 -0.807584 0.589753 -0.2339667 +2985 1 1.72 7.0799999 3.54 81.4199982 -0.841363 0.54047 -0.5094728 +2986 1 1.72 8.8500004 5.31 81.4199982 0.904796 -0.425844 -0.5094728 +2987 1 1.72 8.8500004 3.54 83.1900024 -0.9896 0.143843 -0.2339667 +2988 1 1.72 7.0799999 5.31 83.1900024 0.830681 -0.556749 -0.2339667 +2989 1 1.72 10.6199999 3.54 81.4199982 -0.976263 -0.216588 -0.5094728 +2990 1 1.72 12.3900004 5.31 81.4199982 0.437797 0.899074 -0.5094728 +2991 1 1.72 12.3900004 3.54 83.1900024 0.224839 -0.974396 -0.2339667 +2992 1 1.72 10.6199999 5.31 83.1900024 -0.325274 -0.94562 -0.2339667 +2993 1 1.72 14.1599999 3.54 81.4199982 0.687829 0.725873 -0.5094728 +2994 1 1.72 15.9300004 5.31 81.4199982 0.534156 -0.845386 -0.5094728 +2995 1 1.72 15.9300004 3.54 83.1900024 0.880482 -0.47408 -0.2339667 +2996 1 1.72 14.1599999 5.31 83.1900024 -0.487694 -0.873014 -0.2339667 +2997 1 1.72 17.7000008 3.54 81.4199982 0.664083 -0.747659 -0.5094728 +2998 1 1.72 19.4699993 5.31 81.4199982 -0.9937 -0.112073 -0.5094728 +2999 1 1.72 19.4699993 3.54 83.1900024 -0.524886 -0.851172 -0.2339667 +3000 1 1.72 17.7000008 5.31 83.1900024 -0.983577 -0.18049 -0.2339667 +3001 1 1.72 21.2399998 3.54 81.4199982 0.998492 0.0548903 -0.5094728 +3002 1 1.72 23.0100002 5.31 81.4199982 -0.840489 -0.541829 -0.5094728 +3003 1 1.72 23.0100002 3.54 83.1900024 0.999249 -0.0387472 -0.2339667 +3004 1 1.72 21.2399998 5.31 83.1900024 -0.903526 -0.428533 -0.2339667 +3005 1 1.72 24.7800007 3.54 81.4199982 -0.576714 -0.816946 -0.5094728 +3006 1 1.72 26.5499993 5.31 81.4199982 0.407034 0.913413 -0.5094728 +3007 1 1.72 26.5499993 3.54 83.1900024 0.740605 0.67194 -0.2339667 +3008 1 1.72 24.7800007 5.31 83.1900024 0.613921 0.789367 -0.2339667 +3009 1 1.72 0.0 7.0799999 81.4199982 -0.892666 0.450718 -0.5094728 +3010 1 1.72 1.77 8.8500004 81.4199982 -0.98641 0.164301 -0.5094728 +3011 1 1.72 1.77 7.0799999 83.1900024 0.53742 -0.843315 -0.2339667 +3012 1 1.72 0.0 8.8500004 83.1900024 0.718355 0.695677 -0.2339667 +3013 1 1.72 3.54 7.0799999 81.4199982 -0.922367 0.386315 -0.5094728 +3014 1 1.72 5.31 8.8500004 81.4199982 0.0845172 0.996422 -0.5094728 +3015 1 1.72 5.31 7.0799999 83.1900024 0.857488 -0.514503 -0.2339667 +3016 1 1.72 3.54 8.8500004 83.1900024 -0.645606 -0.763671 -0.2339667 +3017 1 1.72 7.0799999 7.0799999 81.4199982 -0.0134122 -0.99991 -0.5094728 +3018 1 1.72 8.8500004 8.8500004 81.4199982 -0.784881 -0.619647 -0.5094728 +3019 1 1.72 8.8500004 7.0799999 83.1900024 0.536324 -0.844012 -0.2339667 +3020 1 1.72 7.0799999 8.8500004 83.1900024 0.723375 0.690455 -0.2339667 +3021 1 1.72 10.6199999 7.0799999 81.4199982 0.662723 0.748864 -0.5094728 +3022 1 1.72 12.3900004 8.8500004 81.4199982 0.155567 0.987825 -0.5094728 +3023 1 1.72 12.3900004 7.0799999 83.1900024 -0.841463 -0.540315 -0.2339667 +3024 1 1.72 10.6199999 8.8500004 83.1900024 -0.306209 0.951964 -0.2339667 +3025 1 1.72 14.1599999 7.0799999 81.4199982 0.933263 -0.359194 -0.5094728 +3026 1 1.72 15.9300004 8.8500004 81.4199982 0.998559 -0.0536627 -0.5094728 +3027 1 1.72 15.9300004 7.0799999 83.1900024 0.118838 0.992914 -0.2339667 +3028 1 1.72 14.1599999 8.8500004 83.1900024 0.23804 -0.971255 -0.2339667 +3029 1 1.72 17.7000008 7.0799999 81.4199982 -0.333627 -0.942705 -0.5094728 +3030 1 1.72 19.4699993 8.8500004 81.4199982 -0.678409 0.734685 -0.5094728 +3031 1 1.72 19.4699993 7.0799999 83.1900024 0.495047 -0.868866 -0.2339667 +3032 1 1.72 17.7000008 8.8500004 83.1900024 0.67958 0.733601 -0.2339667 +3033 1 1.72 21.2399998 7.0799999 81.4199982 0.923084 0.3846 -0.5094728 +3034 1 1.72 23.0100002 8.8500004 81.4199982 -0.753978 0.656899 -0.5094728 +3035 1 1.72 23.0100002 7.0799999 83.1900024 -0.773059 -0.634334 -0.2339667 +3036 1 1.72 21.2399998 8.8500004 83.1900024 -0.970152 0.242497 -0.2339667 +3037 1 1.72 24.7800007 7.0799999 81.4199982 0.101183 0.994868 -0.5094728 +3038 1 1.72 26.5499993 8.8500004 81.4199982 -0.625284 0.780398 -0.5094728 +3039 1 1.72 26.5499993 7.0799999 83.1900024 0.277807 0.960637 -0.2339667 +3040 1 1.72 24.7800007 8.8500004 83.1900024 0.685723 -0.727862 -0.2339667 +3041 1 1.72 0.0 10.6199999 81.4199982 0.999557 -0.0297522 -0.5094728 +3042 1 1.72 1.77 12.3900004 81.4199982 -0.920711 0.390246 -0.5094728 +3043 1 1.72 1.77 10.6199999 83.1900024 -0.971158 0.238438 -0.2339667 +3044 1 1.72 0.0 12.3900004 83.1900024 -0.305945 0.952049 -0.2339667 +3045 1 1.72 3.54 10.6199999 81.4199982 -0.847672 -0.53052 -0.5094728 +3046 1 1.72 5.31 12.3900004 81.4199982 0.77437 -0.632734 -0.5094728 +3047 1 1.72 5.31 10.6199999 83.1900024 -0.620757 0.784003 -0.2339667 +3048 1 1.72 3.54 12.3900004 83.1900024 0.766987 -0.641662 -0.2339667 +3049 1 1.72 7.0799999 10.6199999 81.4199982 0.916063 0.401033 -0.5094728 +3050 1 1.72 8.8500004 12.3900004 81.4199982 -0.210732 -0.977544 -0.5094728 +3051 1 1.72 8.8500004 10.6199999 83.1900024 -0.774933 -0.632043 -0.2339667 +3052 1 1.72 7.0799999 12.3900004 83.1900024 0.759399 0.650625 -0.2339667 +3053 1 1.72 10.6199999 10.6199999 81.4199982 -0.383429 -0.923571 -0.5094728 +3054 1 1.72 12.3900004 12.3900004 81.4199982 -0.942416 0.334443 -0.5094728 +3055 1 1.72 12.3900004 10.6199999 83.1900024 -0.833741 0.552156 -0.2339667 +3056 1 1.72 10.6199999 12.3900004 83.1900024 0.838574 0.544787 -0.2339667 +3057 1 1.72 14.1599999 10.6199999 81.4199982 0.974341 -0.225076 -0.5094728 +3058 1 1.72 15.9300004 12.3900004 81.4199982 0.758394 0.651797 -0.5094728 +3059 1 1.72 15.9300004 10.6199999 83.1900024 -0.776343 -0.630311 -0.2339667 +3060 1 1.72 14.1599999 12.3900004 83.1900024 0.942287 -0.334806 -0.2339667 +3061 1 1.72 17.7000008 10.6199999 81.4199982 0.562654 -0.826692 -0.5094728 +3062 1 1.72 19.4699993 12.3900004 81.4199982 -0.860764 0.509004 -0.5094728 +3063 1 1.72 19.4699993 10.6199999 83.1900024 -0.485063 -0.874479 -0.2339667 +3064 1 1.72 17.7000008 12.3900004 83.1900024 0.994672 -0.103087 -0.2339667 +3065 1 1.72 21.2399998 10.6199999 81.4199982 0.769625 0.638497 -0.5094728 +3066 1 1.72 23.0100002 12.3900004 81.4199982 0.855708 -0.517459 -0.5094728 +3067 1 1.72 23.0100002 10.6199999 83.1900024 0.946325 -0.323217 -0.2339667 +3068 1 1.72 21.2399998 12.3900004 83.1900024 0.677179 0.735819 -0.2339667 +3069 1 1.72 24.7800007 10.6199999 81.4199982 -0.443445 -0.896302 -0.5094728 +3070 1 1.72 26.5499993 12.3900004 81.4199982 0.902375 0.430951 -0.5094728 +3071 1 1.72 26.5499993 10.6199999 83.1900024 -0.978639 -0.205585 -0.2339667 +3072 1 1.72 24.7800007 12.3900004 83.1900024 0.830168 -0.557514 -0.2339667 +3073 1 1.72 0.0 0.0 84.9599992 0.999886 0.0151311 0.0622191 +3074 1 1.72 1.77 1.77 84.9599992 0.206725 -0.978399 0.0622191 +3075 1 1.72 1.77 0.0 86.7300034 0.728431 -0.685119 0.3529064 +3076 1 1.72 0.0 1.77 86.7300034 0.909474 0.41576 0.3529064 +3077 1 1.72 3.54 0.0 84.9599992 0.0205089 -0.99979 0.0622191 +3078 1 1.72 5.31 1.77 84.9599992 0.37002 0.929024 0.0622191 +3079 1 1.72 5.31 0.0 86.7300034 0.979157 0.203104 0.3529064 +3080 1 1.72 3.54 1.77 86.7300034 0.895286 -0.445491 0.3529064 +3081 1 1.72 7.0799999 0.0 84.9599992 0.742429 0.669925 0.0622191 +3082 1 1.72 8.8500004 1.77 84.9599992 -0.964462 0.264223 0.0622191 +3083 1 1.72 8.8500004 0.0 86.7300034 -0.960952 -0.276715 0.3529064 +3084 1 1.72 7.0799999 1.77 86.7300034 -0.816051 0.57798 0.3529064 +3085 1 1.72 10.6199999 0.0 84.9599992 0.847485 -0.530819 0.0622191 +3086 1 1.72 12.3900004 1.77 84.9599992 0.997245 0.0741734 0.0622191 +3087 1 1.72 12.3900004 0.0 86.7300034 -0.999992 0.00398663 0.3529064 +3088 1 1.72 10.6199999 1.77 86.7300034 0.994555 0.104209 0.3529064 +3089 1 1.72 14.1599999 0.0 84.9599992 0.500786 0.865571 0.0622191 +3090 1 1.72 15.9300004 1.77 84.9599992 -0.862534 -0.506 0.0622191 +3091 1 1.72 15.9300004 0.0 86.7300034 0.926037 -0.377433 0.3529064 +3092 1 1.72 14.1599999 1.77 86.7300034 0.449619 0.89322 0.3529064 +3093 1 1.72 17.7000008 0.0 84.9599992 0.129635 -0.991562 0.0622191 +3094 1 1.72 19.4699993 1.77 84.9599992 0.585453 -0.810706 0.0622191 +3095 1 1.72 19.4699993 0.0 86.7300034 -0.839895 0.542749 0.3529064 +3096 1 1.72 17.7000008 1.77 86.7300034 0.871858 0.489759 0.3529064 +3097 1 1.72 21.2399998 0.0 84.9599992 0.0831751 -0.996535 0.0622191 +3098 1 1.72 23.0100002 1.77 84.9599992 -0.810396 -0.585883 0.0622191 +3099 1 1.72 23.0100002 0.0 86.7300034 0.854374 -0.519658 0.3529064 +3100 1 1.72 21.2399998 1.77 86.7300034 0.946541 -0.322583 0.3529064 +3101 1 1.72 24.7800007 0.0 84.9599992 -0.757874 0.652401 0.0622191 +3102 1 1.72 26.5499993 1.77 84.9599992 0.410904 0.911679 0.0622191 +3103 1 1.72 26.5499993 0.0 86.7300034 0.795871 0.605466 0.3529064 +3104 1 1.72 24.7800007 1.77 86.7300034 -0.195125 -0.980778 0.3529064 +3105 1 1.72 0.0 3.54 84.9599992 0.662728 -0.74886 0.0622191 +3106 1 1.72 1.77 5.31 84.9599992 -0.986625 0.163008 0.0622191 +3107 1 1.72 1.77 3.54 86.7300034 -0.70105 -0.713112 0.3529064 +3108 1 1.72 0.0 5.31 86.7300034 0.873722 0.486425 0.3529064 +3109 1 1.72 3.54 3.54 84.9599992 -0.53883 -0.842415 0.0622191 +3110 1 1.72 5.31 5.31 84.9599992 -0.116738 -0.993163 0.0622191 +3111 1 1.72 5.31 3.54 86.7300034 0.514846 0.857283 0.3529064 +3112 1 1.72 3.54 5.31 86.7300034 -0.717093 -0.696977 0.3529064 +3113 1 1.72 7.0799999 3.54 84.9599992 0.554889 -0.831924 0.0622191 +3114 1 1.72 8.8500004 5.31 84.9599992 0.148329 -0.988938 0.0622191 +3115 1 1.72 8.8500004 3.54 86.7300034 0.561293 0.827617 0.3529064 +3116 1 1.72 7.0799999 5.31 86.7300034 0.99871 -0.0507756 0.3529064 +3117 1 1.72 10.6199999 3.54 84.9599992 0.760955 0.648805 0.0622191 +3118 1 1.72 12.3900004 5.31 84.9599992 0.553094 -0.833119 0.0622191 +3119 1 1.72 12.3900004 3.54 86.7300034 -0.897677 0.440653 0.3529064 +3120 1 1.72 10.6199999 5.31 86.7300034 -0.832878 -0.553457 0.3529064 +3121 1 1.72 14.1599999 3.54 84.9599992 0.503031 -0.864268 0.0622191 +3122 1 1.72 15.9300004 5.31 84.9599992 0.191023 0.981586 0.0622191 +3123 1 1.72 15.9300004 3.54 86.7300034 0.41285 -0.910799 0.3529064 +3124 1 1.72 14.1599999 5.31 86.7300034 0.599912 0.800066 0.3529064 +3125 1 1.72 17.7000008 3.54 84.9599992 0.377827 0.925876 0.0622191 +3126 1 1.72 19.4699993 5.31 84.9599992 0.119579 -0.992825 0.0622191 +3127 1 1.72 19.4699993 3.54 86.7300034 0.65481 0.755794 0.3529064 +3128 1 1.72 17.7000008 5.31 86.7300034 -0.921178 0.389141 0.3529064 +3129 1 1.72 21.2399998 3.54 84.9599992 -0.863358 -0.504592 0.0622191 +3130 1 1.72 23.0100002 5.31 84.9599992 0.734777 -0.678309 0.0622191 +3131 1 1.72 23.0100002 3.54 86.7300034 0.81353 0.581522 0.3529064 +3132 1 1.72 21.2399998 5.31 86.7300034 0.819977 0.572397 0.3529064 +3133 1 1.72 24.7800007 3.54 84.9599992 0.959323 -0.282311 0.0622191 +3134 1 1.72 26.5499993 5.31 84.9599992 -0.560765 0.827975 0.0622191 +3135 1 1.72 26.5499993 3.54 86.7300034 0.107624 0.994192 0.3529064 +3136 1 1.72 24.7800007 5.31 86.7300034 0.994546 -0.104303 0.3529064 +3137 1 1.72 0.0 7.0799999 84.9599992 0.552035 -0.833821 0.0622191 +3138 1 1.72 1.77 8.8500004 84.9599992 -0.95234 -0.30504 0.0622191 +3139 1 1.72 1.77 7.0799999 86.7300034 0.827599 -0.56132 0.3529064 +3140 1 1.72 0.0 8.8500004 86.7300034 0.326724 -0.94512 0.3529064 +3141 1 1.72 3.54 7.0799999 84.9599992 0.448123 -0.893972 0.0622191 +3142 1 1.72 5.31 8.8500004 84.9599992 0.194424 -0.980918 0.0622191 +3143 1 1.72 5.31 7.0799999 86.7300034 -0.805121 0.59311 0.3529064 +3144 1 1.72 3.54 8.8500004 86.7300034 -0.445889 0.895088 0.3529064 +3145 1 1.72 7.0799999 7.0799999 84.9599992 -0.105776 0.99439 0.0622191 +3146 1 1.72 8.8500004 8.8500004 84.9599992 -0.420794 0.907156 0.0622191 +3147 1 1.72 8.8500004 7.0799999 86.7300034 -0.999948 -0.0102386 0.3529064 +3148 1 1.72 7.0799999 8.8500004 86.7300034 0.730612 -0.682793 0.3529064 +3149 1 1.72 10.6199999 7.0799999 84.9599992 -0.271943 -0.962313 0.0622191 +3150 1 1.72 12.3900004 8.8500004 84.9599992 0.969159 -0.246435 0.0622191 +3151 1 1.72 12.3900004 7.0799999 86.7300034 0.999468 -0.0326289 0.3529064 +3152 1 1.72 10.6199999 8.8500004 86.7300034 0.893324 0.449413 0.3529064 +3153 1 1.72 14.1599999 7.0799999 84.9599992 -0.725086 0.688658 0.0622191 +3154 1 1.72 15.9300004 8.8500004 84.9599992 0.999626 -0.0273363 0.0622191 +3155 1 1.72 15.9300004 7.0799999 86.7300034 0.220628 -0.975358 0.3529064 +3156 1 1.72 14.1599999 8.8500004 86.7300034 -0.191634 -0.981467 0.3529064 +3157 1 1.72 17.7000008 7.0799999 84.9599992 0.657471 -0.75348 0.0622191 +3158 1 1.72 19.4699993 8.8500004 84.9599992 -0.993452 -0.114248 0.0622191 +3159 1 1.72 19.4699993 7.0799999 86.7300034 -0.478889 -0.877876 0.3529064 +3160 1 1.72 17.7000008 8.8500004 86.7300034 0.77571 -0.631089 0.3529064 +3161 1 1.72 21.2399998 7.0799999 84.9599992 0.662893 0.748714 0.0622191 +3162 1 1.72 23.0100002 8.8500004 84.9599992 0.523202 0.852209 0.0622191 +3163 1 1.72 23.0100002 7.0799999 86.7300034 0.884361 -0.466804 0.3529064 +3164 1 1.72 21.2399998 8.8500004 86.7300034 0.957608 -0.288076 0.3529064 +3165 1 1.72 24.7800007 7.0799999 84.9599992 -0.690895 0.722955 0.0622191 +3166 1 1.72 26.5499993 8.8500004 84.9599992 0.685998 0.727603 0.0622191 +3167 1 1.72 26.5499993 7.0799999 86.7300034 0.79968 -0.600426 0.3529064 +3168 1 1.72 24.7800007 8.8500004 86.7300034 0.717253 0.696812 0.3529064 +3169 1 1.72 0.0 10.6199999 84.9599992 -0.73913 -0.673562 0.0622191 +3170 1 1.72 1.77 12.3900004 84.9599992 0.556747 0.830682 0.0622191 +3171 1 1.72 1.77 10.6199999 86.7300034 0.651318 0.758805 0.3529064 +3172 1 1.72 0.0 12.3900004 86.7300034 -0.188681 -0.982039 0.3529064 +3173 1 1.72 3.54 10.6199999 84.9599992 -0.434519 -0.900663 0.0622191 +3174 1 1.72 5.31 12.3900004 84.9599992 0.699038 -0.715084 0.0622191 +3175 1 1.72 5.31 10.6199999 86.7300034 -0.882226 -0.470826 0.3529064 +3176 1 1.72 3.54 12.3900004 86.7300034 0.643411 -0.765521 0.3529064 +3177 1 1.72 7.0799999 10.6199999 84.9599992 -0.561751 0.827306 0.0622191 +3178 1 1.72 8.8500004 12.3900004 84.9599992 -0.822066 0.569392 0.0622191 +3179 1 1.72 8.8500004 10.6199999 86.7300034 0.976915 0.213628 0.3529064 +3180 1 1.72 7.0799999 12.3900004 86.7300034 0.432425 -0.90167 0.3529064 +3181 1 1.72 10.6199999 10.6199999 84.9599992 0.796685 0.604395 0.0622191 +3182 1 1.72 12.3900004 12.3900004 84.9599992 0.236922 -0.971529 0.0622191 +3183 1 1.72 12.3900004 10.6199999 86.7300034 -0.339992 -0.940428 0.3529064 +3184 1 1.72 10.6199999 12.3900004 86.7300034 -0.626377 0.77952 0.3529064 +3185 1 1.72 14.1599999 10.6199999 84.9599992 0.990921 -0.134449 0.0622191 +3186 1 1.72 15.9300004 12.3900004 84.9599992 -0.994421 0.105485 0.0622191 +3187 1 1.72 15.9300004 10.6199999 86.7300034 0.912257 0.409619 0.3529064 +3188 1 1.72 14.1599999 12.3900004 86.7300034 -0.123003 -0.992406 0.3529064 +3189 1 1.72 17.7000008 10.6199999 84.9599992 0.802914 -0.596095 0.0622191 +3190 1 1.72 19.4699993 12.3900004 84.9599992 0.200833 -0.979626 0.0622191 +3191 1 1.72 19.4699993 10.6199999 86.7300034 0.5291 -0.84856 0.3529064 +3192 1 1.72 17.7000008 12.3900004 86.7300034 0.259021 -0.965872 0.3529064 +3193 1 1.72 21.2399998 10.6199999 84.9599992 -0.761867 -0.647733 0.0622191 +3194 1 1.72 23.0100002 12.3900004 84.9599992 -0.485975 0.873973 0.0622191 +3195 1 1.72 23.0100002 10.6199999 86.7300034 0.385293 -0.922794 0.3529064 +3196 1 1.72 21.2399998 12.3900004 86.7300034 0.789108 0.614255 0.3529064 +3197 1 1.72 24.7800007 10.6199999 84.9599992 -0.966573 -0.256393 0.0622191 +3198 1 1.72 26.5499993 12.3900004 84.9599992 0.97345 -0.228901 0.0622191 +3199 1 1.72 26.5499993 10.6199999 86.7300034 -0.950999 -0.309194 0.3529064 +3200 1 1.72 24.7800007 12.3900004 86.7300034 -0.635748 0.771897 0.3529064 +3201 1 1.72 0.0 0.0 88.5 0.0814479 -0.996678 0.6123981 +3202 1 1.72 1.77 1.77 88.5 -0.259647 0.965704 0.6123981 +3203 1 1.72 1.77 0.0 90.2699967 -0.198461 -0.980109 0.8177584 +3204 1 1.72 0.0 1.77 90.2699967 -0.584697 -0.811252 0.8177584 +3205 1 1.72 3.54 0.0 88.5 -0.424454 -0.90545 0.6123981 +3206 1 1.72 5.31 1.77 88.5 0.998539 0.0540392 0.6123981 +3207 1 1.72 5.31 0.0 90.2699967 0.209971 -0.977708 0.8177584 +3208 1 1.72 3.54 1.77 90.2699967 -0.765048 -0.643973 0.8177584 +3209 1 1.72 7.0799999 0.0 88.5 -0.625452 0.780262 0.6123981 +3210 1 1.72 8.8500004 1.77 88.5 0.815133 0.579274 0.6123981 +3211 1 1.72 8.8500004 0.0 90.2699967 -0.985612 -0.169026 0.8177584 +3212 1 1.72 7.0799999 1.77 90.2699967 -0.520388 0.85393 0.8177584 +3213 1 1.72 10.6199999 0.0 88.5 0.702682 0.711504 0.6123981 +3214 1 1.72 12.3900004 1.77 88.5 0.795024 0.606579 0.6123981 +3215 1 1.72 12.3900004 0.0 90.2699967 -0.361094 -0.93253 0.8177584 +3216 1 1.72 10.6199999 1.77 90.2699967 -0.998905 0.0467864 0.8177584 +3217 1 1.72 14.1599999 0.0 88.5 -0.0309931 0.99952 0.6123981 +3218 1 1.72 15.9300004 1.77 88.5 -0.922288 0.386504 0.6123981 +3219 1 1.72 15.9300004 0.0 90.2699967 0.510992 0.859586 0.8177584 +3220 1 1.72 14.1599999 1.77 90.2699967 -0.567707 -0.823231 0.8177584 +3221 1 1.72 17.7000008 0.0 88.5 0.355571 -0.934649 0.6123981 +3222 1 1.72 19.4699993 1.77 88.5 -0.471974 -0.881613 0.6123981 +3223 1 1.72 19.4699993 0.0 90.2699967 0.488717 0.872443 0.8177584 +3224 1 1.72 17.7000008 1.77 90.2699967 0.960363 -0.278753 0.8177584 +3225 1 1.72 21.2399998 0.0 88.5 0.249307 0.968424 0.6123981 +3226 1 1.72 23.0100002 1.77 88.5 -0.894692 -0.446684 0.6123981 +3227 1 1.72 23.0100002 0.0 90.2699967 0.966929 0.255045 0.8177584 +3228 1 1.72 21.2399998 1.77 90.2699967 -0.440933 0.89754 0.8177584 +3229 1 1.72 24.7800007 0.0 88.5 0.591411 -0.80637 0.6123981 +3230 1 1.72 26.5499993 1.77 88.5 0.096598 -0.995323 0.6123981 +3231 1 1.72 26.5499993 0.0 90.2699967 -0.6912 0.722663 0.8177584 +3232 1 1.72 24.7800007 1.77 90.2699967 0.691936 -0.721959 0.8177584 +3233 1 1.72 0.0 3.54 88.5 0.674759 -0.738039 0.6123981 +3234 1 1.72 1.77 5.31 88.5 0.747446 -0.664322 0.6123981 +3235 1 1.72 1.77 3.54 90.2699967 -0.479799 0.877378 0.8177584 +3236 1 1.72 0.0 5.31 90.2699967 -0.0364025 0.999337 0.8177584 +3237 1 1.72 3.54 3.54 88.5 0.74241 -0.669946 0.6123981 +3238 1 1.72 5.31 5.31 88.5 -0.88395 0.467582 0.6123981 +3239 1 1.72 5.31 3.54 90.2699967 -0.0136033 0.999907 0.8177584 +3240 1 1.72 3.54 5.31 90.2699967 0.882501 -0.47031 0.8177584 +3241 1 1.72 7.0799999 3.54 88.5 0.299187 0.954194 0.6123981 +3242 1 1.72 8.8500004 5.31 88.5 0.172189 0.985064 0.6123981 +3243 1 1.72 8.8500004 3.54 90.2699967 -0.868739 -0.49527 0.8177584 +3244 1 1.72 7.0799999 5.31 90.2699967 -0.959876 0.280423 0.8177584 +3245 1 1.72 10.6199999 3.54 88.5 -0.983664 0.180015 0.6123981 +3246 1 1.72 12.3900004 5.31 88.5 0.176606 0.984282 0.6123981 +3247 1 1.72 12.3900004 3.54 90.2699967 -0.159699 -0.987166 0.8177584 +3248 1 1.72 10.6199999 5.31 90.2699967 -0.557452 -0.830209 0.8177584 +3249 1 1.72 14.1599999 3.54 88.5 -0.688994 -0.724767 0.6123981 +3250 1 1.72 15.9300004 5.31 88.5 -0.116093 -0.993238 0.6123981 +3251 1 1.72 15.9300004 3.54 90.2699967 -0.359459 -0.933161 0.8177584 +3252 1 1.72 14.1599999 5.31 90.2699967 -0.976052 0.217539 0.8177584 +3253 1 1.72 17.7000008 3.54 88.5 0.767225 0.641378 0.6123981 +3254 1 1.72 19.4699993 5.31 88.5 -0.860422 0.509582 0.6123981 +3255 1 1.72 19.4699993 3.54 90.2699967 -0.325269 -0.945621 0.8177584 +3256 1 1.72 17.7000008 5.31 90.2699967 0.679991 -0.73322 0.8177584 +3257 1 1.72 21.2399998 3.54 88.5 -0.929161 -0.369676 0.6123981 +3258 1 1.72 23.0100002 5.31 88.5 0.657035 -0.75386 0.6123981 +3259 1 1.72 23.0100002 3.54 90.2699967 0.931306 0.364237 0.8177584 +3260 1 1.72 21.2399998 5.31 90.2699967 -0.00188454 -0.999998 0.8177584 +3261 1 1.72 24.7800007 3.54 88.5 -0.366621 -0.93037 0.6123981 +3262 1 1.72 26.5499993 5.31 88.5 0.833235 -0.552918 0.6123981 +3263 1 1.72 26.5499993 3.54 90.2699967 0.21345 0.976954 0.8177584 +3264 1 1.72 24.7800007 5.31 90.2699967 -0.14833 0.988938 0.8177584 +3265 1 1.72 0.0 7.0799999 88.5 0.42024 -0.907413 0.6123981 +3266 1 1.72 1.77 8.8500004 88.5 -0.881154 -0.472829 0.6123981 +3267 1 1.72 1.77 7.0799999 90.2699967 -0.960995 -0.276567 0.8177584 +3268 1 1.72 0.0 8.8500004 90.2699967 0.821356 -0.570415 0.8177584 +3269 1 1.72 3.54 7.0799999 88.5 0.516927 -0.85603 0.6123981 +3270 1 1.72 5.31 8.8500004 88.5 -0.466182 0.884689 0.6123981 +3271 1 1.72 5.31 7.0799999 90.2699967 0.745056 0.667002 0.8177584 +3272 1 1.72 3.54 8.8500004 90.2699967 -0.996455 0.084129 0.8177584 +3273 1 1.72 7.0799999 7.0799999 88.5 0.898087 0.439819 0.6123981 +3274 1 1.72 8.8500004 8.8500004 88.5 -0.856128 -0.516764 0.6123981 +3275 1 1.72 8.8500004 7.0799999 90.2699967 0.826266 0.56328 0.8177584 +3276 1 1.72 7.0799999 8.8500004 90.2699967 -0.37157 0.928405 0.8177584 +3277 1 1.72 10.6199999 7.0799999 88.5 -0.206864 0.97837 0.6123981 +3278 1 1.72 12.3900004 8.8500004 88.5 0.502205 -0.864749 0.6123981 +3279 1 1.72 12.3900004 7.0799999 90.2699967 -0.766877 -0.641794 0.8177584 +3280 1 1.72 10.6199999 8.8500004 90.2699967 0.404476 -0.914548 0.8177584 +3281 1 1.72 14.1599999 7.0799999 88.5 -0.654614 0.755963 0.6123981 +3282 1 1.72 15.9300004 8.8500004 88.5 0.0908795 0.995862 0.6123981 +3283 1 1.72 15.9300004 7.0799999 90.2699967 -0.0244226 -0.999702 0.8177584 +3284 1 1.72 14.1599999 8.8500004 90.2699967 0.835121 -0.550066 0.8177584 +3285 1 1.72 17.7000008 7.0799999 88.5 -0.200279 0.979739 0.6123981 +3286 1 1.72 19.4699993 8.8500004 88.5 -0.725386 -0.688342 0.6123981 +3287 1 1.72 19.4699993 7.0799999 90.2699967 -0.845452 -0.534052 0.8177584 +3288 1 1.72 17.7000008 8.8500004 90.2699967 -0.841802 0.539786 0.8177584 +3289 1 1.72 21.2399998 7.0799999 88.5 -0.474372 -0.880324 0.6123981 +3290 1 1.72 23.0100002 8.8500004 88.5 -0.640678 0.76781 0.6123981 +3291 1 1.72 23.0100002 7.0799999 90.2699967 0.948872 0.31566 0.8177584 +3292 1 1.72 21.2399998 8.8500004 90.2699967 0.882006 0.471239 0.8177584 +3293 1 1.72 24.7800007 7.0799999 88.5 0.789484 -0.613771 0.6123981 +3294 1 1.72 26.5499993 8.8500004 88.5 -0.571943 0.820293 0.6123981 +3295 1 1.72 26.5499993 7.0799999 90.2699967 -0.616512 0.787346 0.8177584 +3296 1 1.72 24.7800007 8.8500004 90.2699967 0.427937 0.903809 0.8177584 +3297 1 1.72 0.0 10.6199999 88.5 -0.3059 0.952064 0.6123981 +3298 1 1.72 1.77 12.3900004 88.5 0.983121 0.182957 0.6123981 +3299 1 1.72 1.77 10.6199999 90.2699967 0.641828 0.766849 0.8177584 +3300 1 1.72 0.0 12.3900004 90.2699967 -0.0293854 -0.999568 0.8177584 +3301 1 1.72 3.54 10.6199999 88.5 0.973508 -0.228655 0.6123981 +3302 1 1.72 5.31 12.3900004 88.5 0.922521 0.385946 0.6123981 +3303 1 1.72 5.31 10.6199999 90.2699967 0.951109 0.308856 0.8177584 +3304 1 1.72 3.54 12.3900004 90.2699967 -0.477051 -0.878875 0.8177584 +3305 1 1.72 7.0799999 10.6199999 88.5 -0.897582 0.440847 0.6123981 +3306 1 1.72 8.8500004 12.3900004 88.5 0.576961 0.816772 0.6123981 +3307 1 1.72 8.8500004 10.6199999 90.2699967 0.998647 -0.0520025 0.8177584 +3308 1 1.72 7.0799999 12.3900004 90.2699967 0.180206 0.983629 0.8177584 +3309 1 1.72 10.6199999 10.6199999 88.5 -0.0813292 0.996687 0.6123981 +3310 1 1.72 12.3900004 12.3900004 88.5 -0.929701 0.368315 0.6123981 +3311 1 1.72 12.3900004 10.6199999 90.2699967 0.552736 0.833356 0.8177584 +3312 1 1.72 10.6199999 12.3900004 90.2699967 -0.870974 0.49133 0.8177584 +3313 1 1.72 14.1599999 10.6199999 88.5 -0.871249 0.490842 0.6123981 +3314 1 1.72 15.9300004 12.3900004 88.5 0.826662 -0.562699 0.6123981 +3315 1 1.72 15.9300004 10.6199999 90.2699967 0.126884 -0.991918 0.8177584 +3316 1 1.72 14.1599999 12.3900004 90.2699967 0.818244 0.574871 0.8177584 +3317 1 1.72 17.7000008 10.6199999 88.5 -0.808764 0.588134 0.6123981 +3318 1 1.72 19.4699993 12.3900004 88.5 -0.560257 0.828319 0.6123981 +3319 1 1.72 19.4699993 10.6199999 90.2699967 0.921399 -0.388618 0.8177584 +3320 1 1.72 17.7000008 12.3900004 90.2699967 0.591131 -0.806576 0.8177584 +3321 1 1.72 21.2399998 10.6199999 88.5 -0.966127 -0.258066 0.6123981 +3322 1 1.72 23.0100002 12.3900004 88.5 -0.144221 0.989545 0.6123981 +3323 1 1.72 23.0100002 10.6199999 90.2699967 -0.766044 0.642789 0.8177584 +3324 1 1.72 21.2399998 12.3900004 90.2699967 0.18622 0.982508 0.8177584 +3325 1 1.72 24.7800007 10.6199999 88.5 0.764001 -0.645216 0.6123981 +3326 1 1.72 26.5499993 12.3900004 88.5 -0.816947 -0.576713 0.6123981 +3327 1 1.72 26.5499993 10.6199999 90.2699967 0.982513 -0.186192 0.8177584 +3328 1 1.72 24.7800007 12.3900004 90.2699967 -0.669736 0.742599 0.8177584 +3329 1 1.72 0.0 0.0 92.0400009 0.828152 -0.560503 0.9508352 +3330 1 1.72 1.77 1.77 92.0400009 0.989493 0.144582 0.9508352 +3331 1 1.72 1.77 0.0 93.8099976 0.884275 0.466967 0.9998646 +3332 1 1.72 0.0 1.77 93.8099976 0.688393 -0.725338 0.9998646 +3333 1 1.72 3.54 0.0 92.0400009 0.143863 0.989598 0.9508352 +3334 1 1.72 5.31 1.77 92.0400009 0.279227 -0.960225 0.9508352 +3335 1 1.72 5.31 0.0 93.8099976 -0.660332 -0.750974 0.9998646 +3336 1 1.72 3.54 1.77 93.8099976 -0.99536 0.0962212 0.9998646 +3337 1 1.72 7.0799999 0.0 92.0400009 0.912838 -0.408323 0.9508352 +3338 1 1.72 8.8500004 1.77 92.0400009 0.698081 -0.716019 0.9508352 +3339 1 1.72 8.8500004 0.0 93.8099976 -0.345922 0.938263 0.9998646 +3340 1 1.72 7.0799999 1.77 93.8099976 -0.778137 -0.628095 0.9998646 +3341 1 1.72 10.6199999 0.0 92.0400009 -0.746639 -0.66523 0.9508352 +3342 1 1.72 12.3900004 1.77 92.0400009 0.386284 -0.92238 0.9508352 +3343 1 1.72 12.3900004 0.0 93.8099976 0.420172 -0.907445 0.9998646 +3344 1 1.72 10.6199999 1.77 93.8099976 -0.996174 -0.0873961 0.9998646 +3345 1 1.72 14.1599999 0.0 92.0400009 -0.99966 -0.0260766 0.9508352 +3346 1 1.72 15.9300004 1.77 92.0400009 -0.996881 0.0789214 0.9508352 +3347 1 1.72 15.9300004 0.0 93.8099976 -0.330092 0.943949 0.9998646 +3348 1 1.72 14.1599999 1.77 93.8099976 -0.562023 0.827122 0.9998646 +3349 1 1.72 17.7000008 0.0 92.0400009 -0.511974 0.859001 0.9508352 +3350 1 1.72 19.4699993 1.77 92.0400009 -0.999644 0.0266962 0.9508352 +3351 1 1.72 19.4699993 0.0 93.8099976 -0.987848 0.155424 0.9998646 +3352 1 1.72 17.7000008 1.77 93.8099976 -0.515203 0.857068 0.9998646 +3353 1 1.72 21.2399998 0.0 92.0400009 0.137061 -0.990563 0.9508352 +3354 1 1.72 23.0100002 1.77 92.0400009 0.613965 0.789333 0.9508352 +3355 1 1.72 23.0100002 0.0 93.8099976 0.168124 -0.985766 0.9998646 +3356 1 1.72 21.2399998 1.77 93.8099976 0.848376 -0.529394 0.9998646 +3357 1 1.72 24.7800007 0.0 92.0400009 0.728608 -0.684931 0.9508352 +3358 1 1.72 26.5499993 1.77 92.0400009 0.983103 0.183053 0.9508352 +3359 1 1.72 26.5499993 0.0 93.8099976 0.53876 0.842459 0.9998646 +3360 1 1.72 24.7800007 1.77 93.8099976 -0.989859 -0.142051 0.9998646 +3361 1 1.72 0.0 3.54 92.0400009 -0.79771 0.603041 0.9508352 +3362 1 1.72 1.77 5.31 92.0400009 -0.0253525 0.999679 0.9508352 +3363 1 1.72 1.77 3.54 93.8099976 -0.520279 -0.853996 0.9998646 +3364 1 1.72 0.0 5.31 93.8099976 0.984095 -0.177642 0.9998646 +3365 1 1.72 3.54 3.54 92.0400009 -0.165045 -0.986286 0.9508352 +3366 1 1.72 5.31 5.31 92.0400009 -0.0533507 0.998576 0.9508352 +3367 1 1.72 5.31 3.54 93.8099976 -0.794755 0.60693 0.9998646 +3368 1 1.72 3.54 5.31 93.8099976 -0.999303 0.0373207 0.9998646 +3369 1 1.72 7.0799999 3.54 92.0400009 0.810969 -0.585089 0.9508352 +3370 1 1.72 8.8500004 5.31 92.0400009 -0.743413 0.668833 0.9508352 +3371 1 1.72 8.8500004 3.54 93.8099976 -0.61656 -0.787308 0.9998646 +3372 1 1.72 7.0799999 5.31 93.8099976 0.760532 0.6493 0.9998646 +3373 1 1.72 10.6199999 3.54 92.0400009 -0.128745 0.991678 0.9508352 +3374 1 1.72 12.3900004 5.31 92.0400009 0.597907 0.801565 0.9508352 +3375 1 1.72 12.3900004 3.54 93.8099976 0.591364 0.806405 0.9998646 +3376 1 1.72 10.6199999 5.31 93.8099976 -0.474538 0.880235 0.9998646 +3377 1 1.72 14.1599999 3.54 92.0400009 -0.600661 0.799503 0.9508352 +3378 1 1.72 15.9300004 5.31 92.0400009 -0.887688 -0.460446 0.9508352 +3379 1 1.72 15.9300004 3.54 93.8099976 -0.610261 -0.7922 0.9998646 +3380 1 1.72 14.1599999 5.31 93.8099976 -0.554043 0.832488 0.9998646 +3381 1 1.72 17.7000008 3.54 92.0400009 -0.637637 0.770337 0.9508352 +3382 1 1.72 19.4699993 5.31 92.0400009 0.367987 0.929831 0.9508352 +3383 1 1.72 19.4699993 3.54 93.8099976 -0.674412 0.738355 0.9998646 +3384 1 1.72 17.7000008 5.31 93.8099976 -0.146841 0.98916 0.9998646 +3385 1 1.72 21.2399998 3.54 92.0400009 -0.554711 0.832043 0.9508352 +3386 1 1.72 23.0100002 5.31 92.0400009 -0.585422 0.810729 0.9508352 +3387 1 1.72 23.0100002 3.54 93.8099976 -0.623051 0.782181 0.9998646 +3388 1 1.72 21.2399998 5.31 93.8099976 0.477107 0.878845 0.9998646 +3389 1 1.72 24.7800007 3.54 92.0400009 0.998647 0.0520044 0.9508352 +3390 1 1.72 26.5499993 5.31 92.0400009 -0.826128 0.563483 0.9508352 +3391 1 1.72 26.5499993 3.54 93.8099976 -0.441092 0.897462 0.9998646 +3392 1 1.72 24.7800007 5.31 93.8099976 -0.67333 -0.739342 0.9998646 +3393 1 1.72 0.0 7.0799999 92.0400009 -0.873965 -0.485988 0.9508352 +3394 1 1.72 1.77 8.8500004 92.0400009 0.803665 -0.595082 0.9508352 +3395 1 1.72 1.77 7.0799999 93.8099976 0.102322 0.994751 0.9998646 +3396 1 1.72 0.0 8.8500004 93.8099976 0.327791 0.94475 0.9998646 +3397 1 1.72 3.54 7.0799999 92.0400009 0.862987 -0.505227 0.9508352 +3398 1 1.72 5.31 8.8500004 92.0400009 0.763551 0.645747 0.9508352 +3399 1 1.72 5.31 7.0799999 93.8099976 0.901385 -0.433019 0.9998646 +3400 1 1.72 3.54 8.8500004 93.8099976 0.807384 0.590026 0.9998646 +3401 1 1.72 7.0799999 7.0799999 92.0400009 -0.803897 -0.594769 0.9508352 +3402 1 1.72 8.8500004 8.8500004 92.0400009 -0.0453658 0.99897 0.9508352 +3403 1 1.72 8.8500004 7.0799999 93.8099976 0.880523 -0.474004 0.9998646 +3404 1 1.72 7.0799999 8.8500004 93.8099976 0.999959 0.00905736 0.9998646 +3405 1 1.72 10.6199999 7.0799999 92.0400009 -0.645639 0.763643 0.9508352 +3406 1 1.72 12.3900004 8.8500004 92.0400009 -0.792146 0.610332 0.9508352 +3407 1 1.72 12.3900004 7.0799999 93.8099976 0.640106 0.768287 0.9998646 +3408 1 1.72 10.6199999 8.8500004 93.8099976 0.878035 0.478596 0.9998646 +3409 1 1.72 14.1599999 7.0799999 92.0400009 -0.965428 -0.260669 0.9508352 +3410 1 1.72 15.9300004 8.8500004 92.0400009 -0.923328 -0.384012 0.9508352 +3411 1 1.72 15.9300004 7.0799999 93.8099976 -0.309689 0.950838 0.9998646 +3412 1 1.72 14.1599999 8.8500004 93.8099976 -0.569041 0.822309 0.9998646 +3413 1 1.72 17.7000008 7.0799999 92.0400009 0.50104 -0.865424 0.9508352 +3414 1 1.72 19.4699993 8.8500004 92.0400009 0.791544 -0.611112 0.9508352 +3415 1 1.72 19.4699993 7.0799999 93.8099976 0.559231 0.829012 0.9998646 +3416 1 1.72 17.7000008 8.8500004 93.8099976 0.758787 -0.651338 0.9998646 +3417 1 1.72 21.2399998 7.0799999 92.0400009 0.802682 -0.596407 0.9508352 +3418 1 1.72 23.0100002 8.8500004 92.0400009 0.167507 -0.985871 0.9508352 +3419 1 1.72 23.0100002 7.0799999 93.8099976 -0.0488943 -0.998804 0.9998646 +3420 1 1.72 21.2399998 8.8500004 93.8099976 -0.999908 0.0135346 0.9998646 +3421 1 1.72 24.7800007 7.0799999 92.0400009 -0.617929 -0.786234 0.9508352 +3422 1 1.72 26.5499993 8.8500004 92.0400009 -0.900155 0.435569 0.9508352 +3423 1 1.72 26.5499993 7.0799999 93.8099976 -0.710144 0.704056 0.9998646 +3424 1 1.72 24.7800007 8.8500004 93.8099976 0.551884 0.833921 0.9998646 +3425 1 1.72 0.0 10.6199999 92.0400009 -0.635235 0.772319 0.9508352 +3426 1 1.72 1.77 12.3900004 92.0400009 0.140353 0.990101 0.9508352 +3427 1 1.72 1.77 10.6199999 93.8099976 0.961191 0.275885 0.9998646 +3428 1 1.72 0.0 12.3900004 93.8099976 -0.980255 0.197738 0.9998646 +3429 1 1.72 3.54 10.6199999 92.0400009 -0.923776 -0.382934 0.9508352 +3430 1 1.72 5.31 12.3900004 92.0400009 -0.980185 -0.198086 0.9508352 +3431 1 1.72 5.31 10.6199999 93.8099976 0.662771 0.748822 0.9998646 +3432 1 1.72 3.54 12.3900004 93.8099976 -0.720134 0.693835 0.9998646 +3433 1 1.72 7.0799999 10.6199999 92.0400009 -0.75527 -0.655414 0.9508352 +3434 1 1.72 8.8500004 12.3900004 92.0400009 -0.505443 0.86286 0.9508352 +3435 1 1.72 8.8500004 10.6199999 93.8099976 -0.781277 0.624184 0.9998646 +3436 1 1.72 7.0799999 12.3900004 93.8099976 0.157568 0.987508 0.9998646 +3437 1 1.72 10.6199999 10.6199999 92.0400009 0.327432 -0.944875 0.9508352 +3438 1 1.72 12.3900004 12.3900004 92.0400009 -0.251084 -0.967965 0.9508352 +3439 1 1.72 12.3900004 10.6199999 93.8099976 0.987396 -0.158266 0.9998646 +3440 1 1.72 10.6199999 12.3900004 93.8099976 0.36674 -0.930323 0.9998646 +3441 1 1.72 14.1599999 10.6199999 92.0400009 0.730909 0.682475 0.9508352 +3442 1 1.72 15.9300004 12.3900004 92.0400009 0.0402508 0.99919 0.9508352 +3443 1 1.72 15.9300004 10.6199999 93.8099976 -0.513414 0.858141 0.9998646 +3444 1 1.72 14.1599999 12.3900004 93.8099976 -0.818731 0.574178 0.9998646 +3445 1 1.72 17.7000008 10.6199999 92.0400009 -0.87768 0.479247 0.9508352 +3446 1 1.72 19.4699993 12.3900004 92.0400009 0.741321 0.671151 0.9508352 +3447 1 1.72 19.4699993 10.6199999 93.8099976 -0.881018 0.473083 0.9998646 +3448 1 1.72 17.7000008 12.3900004 93.8099976 -0.970352 0.241698 0.9998646 +3449 1 1.72 21.2399998 10.6199999 92.0400009 -0.38788 0.92171 0.9508352 +3450 1 1.72 23.0100002 12.3900004 92.0400009 -0.962019 -0.272982 0.9508352 +3451 1 1.72 23.0100002 10.6199999 93.8099976 0.0236468 -0.99972 0.9998646 +3452 1 1.72 21.2399998 12.3900004 93.8099976 -0.722769 0.69109 0.9998646 +3453 1 1.72 24.7800007 10.6199999 92.0400009 -0.957086 -0.289804 0.9508352 +3454 1 1.72 26.5499993 12.3900004 92.0400009 -0.790331 -0.61268 0.9508352 +3455 1 1.72 26.5499993 10.6199999 93.8099976 -0.880554 -0.473946 0.9998646 +3456 1 1.72 24.7800007 12.3900004 93.8099976 0.264631 0.96435 0.9998646 +3457 1 1.72 0.0 0.0 95.5800019 -0.790928 -0.611909 1.0 +3458 1 1.72 1.77 1.77 95.5800019 -0.725467 -0.688257 1.0 +3459 1 1.72 1.77 0.0 97.3499985 0.80488 0.593438 1.0 +3460 1 1.72 0.0 1.77 97.3499985 0.578804 -0.815467 1.0 +3461 1 1.72 3.54 0.0 95.5800019 0.613921 -0.789368 1.0 +3462 1 1.72 5.31 1.77 95.5800019 0.136483 -0.990642 1.0 +3463 1 1.72 5.31 0.0 97.3499985 0.999797 0.0201702 1.0 +3464 1 1.72 3.54 1.77 97.3499985 0.806024 -0.591883 1.0 +3465 1 1.72 7.0799999 0.0 95.5800019 -0.265806 0.964027 1.0 +3466 1 1.72 8.8500004 1.77 95.5800019 -0.137761 -0.990466 1.0 +3467 1 1.72 8.8500004 0.0 97.3499985 0.28548 -0.958385 1.0 +3468 1 1.72 7.0799999 1.77 97.3499985 -0.730198 0.683236 1.0 +3469 1 1.72 10.6199999 0.0 95.5800019 -0.655369 -0.755309 1.0 +3470 1 1.72 12.3900004 1.77 95.5800019 -0.77439 -0.632708 1.0 +3471 1 1.72 12.3900004 0.0 97.3499985 -0.47057 0.882363 1.0 +3472 1 1.72 10.6199999 1.77 97.3499985 -0.993488 0.113935 1.0 +3473 1 1.72 14.1599999 0.0 95.5800019 -0.81396 0.580922 1.0 +3474 1 1.72 15.9300004 1.77 95.5800019 -0.469561 0.8829 1.0 +3475 1 1.72 15.9300004 0.0 97.3499985 -0.571448 -0.820639 1.0 +3476 1 1.72 14.1599999 1.77 97.3499985 -0.919716 0.392585 1.0 +3477 1 1.72 17.7000008 0.0 95.5800019 0.125133 0.99214 1.0 +3478 1 1.72 19.4699993 1.77 95.5800019 0.552805 0.83331 1.0 +3479 1 1.72 19.4699993 0.0 97.3499985 0.789593 0.613631 1.0 +3480 1 1.72 17.7000008 1.77 97.3499985 -0.579898 0.814689 1.0 +3481 1 1.72 21.2399998 0.0 95.5800019 -0.240867 0.970558 1.0 +3482 1 1.72 23.0100002 1.77 95.5800019 -0.533808 -0.845606 1.0 +3483 1 1.72 23.0100002 0.0 97.3499985 0.647036 -0.762459 1.0 +3484 1 1.72 21.2399998 1.77 97.3499985 -0.121188 0.99263 1.0 +3485 1 1.72 24.7800007 0.0 95.5800019 -0.515429 -0.856932 1.0 +3486 1 1.72 26.5499993 1.77 95.5800019 0.590502 0.807036 1.0 +3487 1 1.72 26.5499993 0.0 97.3499985 0.910993 -0.412422 1.0 +3488 1 1.72 24.7800007 1.77 97.3499985 0.719737 0.694247 1.0 +3489 1 1.72 0.0 3.54 95.5800019 -0.958196 -0.286114 1.0 +3490 1 1.72 1.77 5.31 95.5800019 0.862543 0.505983 1.0 +3491 1 1.72 1.77 3.54 97.3499985 0.706402 0.707811 1.0 +3492 1 1.72 0.0 5.31 97.3499985 -0.987711 -0.156288 1.0 +3493 1 1.72 3.54 3.54 95.5800019 -0.7224 -0.691475 1.0 +3494 1 1.72 5.31 5.31 95.5800019 -0.122338 -0.992488 1.0 +3495 1 1.72 5.31 3.54 97.3499985 0.483284 0.875464 1.0 +3496 1 1.72 3.54 5.31 97.3499985 0.871599 -0.490219 1.0 +3497 1 1.72 7.0799999 3.54 95.5800019 -0.964386 -0.264499 1.0 +3498 1 1.72 8.8500004 5.31 95.5800019 0.692682 0.721243 1.0 +3499 1 1.72 8.8500004 3.54 97.3499985 -0.131564 0.991308 1.0 +3500 1 1.72 7.0799999 5.31 97.3499985 0.69403 -0.719946 1.0 +3501 1 1.72 10.6199999 3.54 95.5800019 0.835431 0.549595 1.0 +3502 1 1.72 12.3900004 5.31 95.5800019 -0.999509 0.0313386 1.0 +3503 1 1.72 12.3900004 3.54 97.3499985 -0.534715 -0.845033 1.0 +3504 1 1.72 10.6199999 5.31 97.3499985 -0.696317 -0.717735 1.0 +3505 1 1.72 14.1599999 3.54 95.5800019 -0.990629 0.136578 1.0 +3506 1 1.72 15.9300004 5.31 95.5800019 -0.348394 0.937348 1.0 +3507 1 1.72 15.9300004 3.54 97.3499985 -0.745208 0.666832 1.0 +3508 1 1.72 14.1599999 5.31 97.3499985 0.813799 0.581147 1.0 +3509 1 1.72 17.7000008 3.54 95.5800019 0.860438 0.509554 1.0 +3510 1 1.72 19.4699993 5.31 95.5800019 -0.583699 0.81197 1.0 +3511 1 1.72 19.4699993 3.54 97.3499985 0.474755 0.880118 1.0 +3512 1 1.72 17.7000008 5.31 97.3499985 -0.665528 0.746372 1.0 +3513 1 1.72 21.2399998 3.54 95.5800019 -0.669041 0.743225 1.0 +3514 1 1.72 23.0100002 5.31 95.5800019 0.970559 -0.240864 1.0 +3515 1 1.72 23.0100002 3.54 97.3499985 0.949365 -0.314176 1.0 +3516 1 1.72 21.2399998 5.31 97.3499985 -0.792313 0.610115 1.0 +3517 1 1.72 24.7800007 3.54 95.5800019 0.619413 -0.785066 1.0 +3518 1 1.72 26.5499993 5.31 95.5800019 -0.852538 0.522666 1.0 +3519 1 1.72 26.5499993 3.54 97.3499985 -0.627236 0.778829 1.0 +3520 1 1.72 24.7800007 5.31 97.3499985 0.926432 -0.376462 1.0 +3521 1 1.72 0.0 7.0799999 95.5800019 0.999072 -0.0430726 1.0 +3522 1 1.72 1.77 8.8500004 95.5800019 -0.623833 -0.781558 1.0 +3523 1 1.72 1.77 7.0799999 97.3499985 0.720231 -0.693735 1.0 +3524 1 1.72 0.0 8.8500004 97.3499985 -0.722808 0.691049 1.0 +3525 1 1.72 3.54 7.0799999 95.5800019 -0.98723 0.159301 1.0 +3526 1 1.72 5.31 8.8500004 95.5800019 0.826364 -0.563136 1.0 +3527 1 1.72 5.31 7.0799999 97.3499985 -0.787985 -0.615694 1.0 +3528 1 1.72 3.54 8.8500004 97.3499985 0.736807 -0.676103 1.0 +3529 1 1.72 7.0799999 7.0799999 95.5800019 -0.999045 -0.043699 1.0 +3530 1 1.72 8.8500004 8.8500004 95.5800019 -0.999881 -0.0154143 1.0 +3531 1 1.72 8.8500004 7.0799999 97.3499985 0.583685 0.81198 1.0 +3532 1 1.72 7.0799999 8.8500004 97.3499985 0.668561 -0.743657 1.0 +3533 1 1.72 10.6199999 7.0799999 95.5800019 -0.799632 0.60049 1.0 +3534 1 1.72 12.3900004 8.8500004 95.5800019 -0.611978 0.790875 1.0 +3535 1 1.72 12.3900004 7.0799999 97.3499985 0.558902 0.829234 1.0 +3536 1 1.72 10.6199999 8.8500004 97.3499985 0.992914 0.118834 1.0 +3537 1 1.72 14.1599999 7.0799999 95.5800019 -0.684918 -0.72862 1.0 +3538 1 1.72 15.9300004 8.8500004 95.5800019 -0.949949 0.312405 1.0 +3539 1 1.72 15.9300004 7.0799999 97.3499985 -0.583458 0.812143 1.0 +3540 1 1.72 14.1599999 8.8500004 97.3499985 -0.328994 -0.944332 1.0 +3541 1 1.72 17.7000008 7.0799999 95.5800019 0.982972 0.183757 1.0 +3542 1 1.72 19.4699993 8.8500004 95.5800019 -0.702083 -0.712095 1.0 +3543 1 1.72 19.4699993 7.0799999 97.3499985 0.876211 -0.481927 1.0 +3544 1 1.72 17.7000008 8.8500004 97.3499985 -0.941304 0.33756 1.0 +3545 1 1.72 21.2399998 7.0799999 95.5800019 -0.992382 0.123195 1.0 +3546 1 1.72 23.0100002 8.8500004 95.5800019 -0.467196 0.884154 1.0 +3547 1 1.72 23.0100002 7.0799999 97.3499985 -0.315007 0.949089 1.0 +3548 1 1.72 21.2399998 8.8500004 97.3499985 -0.514949 -0.857221 1.0 +3549 1 1.72 24.7800007 7.0799999 95.5800019 -0.113167 0.993576 1.0 +3550 1 1.72 26.5499993 8.8500004 95.5800019 -0.533866 -0.845569 1.0 +3551 1 1.72 26.5499993 7.0799999 97.3499985 -0.678415 -0.734679 1.0 +3552 1 1.72 24.7800007 8.8500004 97.3499985 0.783341 -0.621592 1.0 +3553 1 1.72 0.0 10.6199999 95.5800019 -0.0284462 0.999595 1.0 +3554 1 1.72 1.77 12.3900004 95.5800019 -0.718169 -0.695868 1.0 +3555 1 1.72 1.77 10.6199999 97.3499985 -0.967839 -0.25157 1.0 +3556 1 1.72 0.0 12.3900004 97.3499985 -0.87658 -0.481256 1.0 +3557 1 1.72 3.54 10.6199999 95.5800019 -0.722069 -0.691821 1.0 +3558 1 1.72 5.31 12.3900004 95.5800019 0.794521 0.607236 1.0 +3559 1 1.72 5.31 10.6199999 97.3499985 0.998818 0.0486132 1.0 +3560 1 1.72 3.54 12.3900004 97.3499985 0.409046 -0.912514 1.0 +3561 1 1.72 7.0799999 10.6199999 95.5800019 0.575554 -0.817763 1.0 +3562 1 1.72 8.8500004 12.3900004 95.5800019 0.524977 0.851116 1.0 +3563 1 1.72 8.8500004 10.6199999 97.3499985 0.99093 -0.134381 1.0 +3564 1 1.72 7.0799999 12.3900004 97.3499985 -0.732136 -0.681159 1.0 +3565 1 1.72 10.6199999 10.6199999 95.5800019 0.498792 0.866722 1.0 +3566 1 1.72 12.3900004 12.3900004 95.5800019 0.46749 0.883998 1.0 +3567 1 1.72 12.3900004 10.6199999 97.3499985 -0.518027 0.855364 1.0 +3568 1 1.72 10.6199999 12.3900004 97.3499985 0.474655 0.880172 1.0 +3569 1 1.72 14.1599999 10.6199999 95.5800019 0.985356 -0.17051 1.0 +3570 1 1.72 15.9300004 12.3900004 95.5800019 0.842644 -0.538472 1.0 +3571 1 1.72 15.9300004 10.6199999 97.3499985 0.672323 -0.740258 1.0 +3572 1 1.72 14.1599999 12.3900004 97.3499985 0.713104 -0.701059 1.0 +3573 1 1.72 17.7000008 10.6199999 95.5800019 -0.391523 0.920168 1.0 +3574 1 1.72 19.4699993 12.3900004 95.5800019 0.918791 0.394744 1.0 +3575 1 1.72 19.4699993 10.6199999 97.3499985 -0.939195 0.343383 1.0 +3576 1 1.72 17.7000008 12.3900004 97.3499985 0.239449 0.970909 1.0 +3577 1 1.72 21.2399998 10.6199999 95.5800019 -0.424875 -0.905252 1.0 +3578 1 1.72 23.0100002 12.3900004 95.5800019 -0.532199 0.84662 1.0 +3579 1 1.72 23.0100002 10.6199999 97.3499985 -0.305687 -0.952132 1.0 +3580 1 1.72 21.2399998 12.3900004 97.3499985 -0.1388 -0.99032 1.0 +3581 1 1.72 24.7800007 10.6199999 95.5800019 -0.788649 -0.614843 1.0 +3582 1 1.72 26.5499993 12.3900004 95.5800019 0.286249 -0.958155 1.0 +3583 1 1.72 26.5499993 10.6199999 97.3499985 0.743321 0.668935 1.0 +3584 1 1.72 24.7800007 12.3900004 97.3499985 -0.307151 -0.951661 1.0 +3585 1 1.72 0.0 0.0 99.1200028 0.97717 0.212461 1.0 +3586 1 1.72 1.77 1.77 99.1200028 -0.491936 -0.870631 1.0 +3587 1 1.72 1.77 0.0 100.8899994 -0.316674 0.948535 1.0 +3588 1 1.72 0.0 1.77 100.8899994 -0.042134 -0.999112 1.0 +3589 1 1.72 3.54 0.0 99.1200028 0.983919 0.178616 1.0 +3590 1 1.72 5.31 1.77 99.1200028 0.975333 0.220738 1.0 +3591 1 1.72 5.31 0.0 100.8899994 -0.961871 0.273504 1.0 +3592 1 1.72 3.54 1.77 100.8899994 0.836154 0.548495 1.0 +3593 1 1.72 7.0799999 0.0 99.1200028 -0.919923 0.392099 1.0 +3594 1 1.72 8.8500004 1.77 99.1200028 0.136485 0.990642 1.0 +3595 1 1.72 8.8500004 0.0 100.8899994 0.999617 0.0276635 1.0 +3596 1 1.72 7.0799999 1.77 100.8899994 0.641003 -0.767538 1.0 +3597 1 1.72 10.6199999 0.0 99.1200028 0.502392 0.86464 1.0 +3598 1 1.72 12.3900004 1.77 99.1200028 -0.751393 0.659855 1.0 +3599 1 1.72 12.3900004 0.0 100.8899994 0.555351 0.831616 1.0 +3600 1 1.72 10.6199999 1.77 100.8899994 0.927991 -0.372602 1.0 +3601 1 1.72 14.1599999 0.0 99.1200028 0.760951 0.648809 1.0 +3602 1 1.72 15.9300004 1.77 99.1200028 0.261953 0.965081 1.0 +3603 1 1.72 15.9300004 0.0 100.8899994 0.763384 -0.645945 1.0 +3604 1 1.72 14.1599999 1.77 100.8899994 -0.6624 0.74915 1.0 +3605 1 1.72 17.7000008 0.0 99.1200028 0.704781 0.709425 1.0 +3606 1 1.72 19.4699993 1.77 99.1200028 0.989433 -0.144987 1.0 +3607 1 1.72 19.4699993 0.0 100.8899994 -0.78694 -0.617029 1.0 +3608 1 1.72 17.7000008 1.77 100.8899994 0.934483 0.356008 1.0 +3609 1 1.72 21.2399998 0.0 99.1200028 0.867547 -0.497355 1.0 +3610 1 1.72 23.0100002 1.77 99.1200028 0.755939 -0.654642 1.0 +3611 1 1.72 23.0100002 0.0 100.8899994 -0.138166 0.990409 1.0 +3612 1 1.72 21.2399998 1.77 100.8899994 -0.714174 -0.699968 1.0 +3613 1 1.72 24.7800007 0.0 99.1200028 0.833283 0.552846 1.0 +3614 1 1.72 26.5499993 1.77 99.1200028 -0.743418 0.668827 1.0 +3615 1 1.72 26.5499993 0.0 100.8899994 -0.303156 0.952941 1.0 +3616 1 1.72 24.7800007 1.77 100.8899994 0.423099 -0.906083 1.0 +3617 1 1.72 0.0 3.54 99.1200028 0.73734 0.675522 1.0 +3618 1 1.72 1.77 5.31 99.1200028 -0.0577959 0.998328 1.0 +3619 1 1.72 1.77 3.54 100.8899994 -0.226225 -0.974075 1.0 +3620 1 1.72 0.0 5.31 100.8899994 0.473154 -0.88098 1.0 +3621 1 1.72 3.54 3.54 99.1200028 0.234345 -0.972153 1.0 +3622 1 1.72 5.31 5.31 99.1200028 0.755652 0.654973 1.0 +3623 1 1.72 5.31 3.54 100.8899994 0.267172 0.963649 1.0 +3624 1 1.72 3.54 5.31 100.8899994 -0.903747 0.428066 1.0 +3625 1 1.72 7.0799999 3.54 99.1200028 0.423355 0.905964 1.0 +3626 1 1.72 8.8500004 5.31 99.1200028 -0.330767 0.943712 1.0 +3627 1 1.72 8.8500004 3.54 100.8899994 0.96569 0.259699 1.0 +3628 1 1.72 7.0799999 5.31 100.8899994 0.706066 -0.708146 1.0 +3629 1 1.72 10.6199999 3.54 99.1200028 -0.672588 -0.740017 1.0 +3630 1 1.72 12.3900004 5.31 99.1200028 0.290661 -0.956826 1.0 +3631 1 1.72 12.3900004 3.54 100.8899994 -0.997349 -0.0727694 1.0 +3632 1 1.72 10.6199999 5.31 100.8899994 0.135865 -0.990727 1.0 +3633 1 1.72 14.1599999 3.54 99.1200028 -0.864768 0.502171 1.0 +3634 1 1.72 15.9300004 5.31 99.1200028 -0.652673 0.75764 1.0 +3635 1 1.72 15.9300004 3.54 100.8899994 0.967993 0.250976 1.0 +3636 1 1.72 14.1599999 5.31 100.8899994 0.709082 0.705126 1.0 +3637 1 1.72 17.7000008 3.54 99.1200028 0.772902 -0.634525 1.0 +3638 1 1.72 19.4699993 5.31 99.1200028 0.682809 0.730597 1.0 +3639 1 1.72 19.4699993 3.54 100.8899994 -0.991877 0.127205 1.0 +3640 1 1.72 17.7000008 5.31 100.8899994 0.248298 0.968684 1.0 +3641 1 1.72 21.2399998 3.54 99.1200028 -0.836717 0.547636 1.0 +3642 1 1.72 23.0100002 5.31 99.1200028 0.183011 0.983111 1.0 +3643 1 1.72 23.0100002 3.54 100.8899994 0.99835 -0.0574165 1.0 +3644 1 1.72 21.2399998 5.31 100.8899994 -0.575166 0.818036 1.0 +3645 1 1.72 24.7800007 3.54 99.1200028 -0.133479 -0.991052 1.0 +3646 1 1.72 26.5499993 5.31 99.1200028 0.817013 0.576619 1.0 +3647 1 1.72 26.5499993 3.54 100.8899994 0.247452 0.9689 1.0 +3648 1 1.72 24.7800007 5.31 100.8899994 0.671904 0.740638 1.0 +3649 1 1.72 0.0 7.0799999 99.1200028 0.432415 0.901674 1.0 +3650 1 1.72 1.77 8.8500004 99.1200028 0.47826 0.878218 1.0 +3651 1 1.72 1.77 7.0799999 100.8899994 0.318643 0.947875 1.0 +3652 1 1.72 0.0 8.8500004 100.8899994 0.685521 -0.728053 1.0 +3653 1 1.72 3.54 7.0799999 99.1200028 -0.501221 -0.865319 1.0 +3654 1 1.72 5.31 8.8500004 99.1200028 0.565525 0.824731 1.0 +3655 1 1.72 5.31 7.0799999 100.8899994 0.413155 0.910661 1.0 +3656 1 1.72 3.54 8.8500004 100.8899994 -0.799363 0.600848 1.0 +3657 1 1.72 7.0799999 7.0799999 99.1200028 0.406695 -0.913564 1.0 +3658 1 1.72 8.8500004 8.8500004 99.1200028 0.960337 0.278841 1.0 +3659 1 1.72 8.8500004 7.0799999 100.8899994 0.5313 -0.847184 1.0 +3660 1 1.72 7.0799999 8.8500004 100.8899994 0.0233693 -0.999727 1.0 +3661 1 1.72 10.6199999 7.0799999 99.1200028 0.703806 0.710392 1.0 +3662 1 1.72 12.3900004 8.8500004 99.1200028 -0.493613 0.869682 1.0 +3663 1 1.72 12.3900004 7.0799999 100.8899994 -0.530127 0.847918 1.0 +3664 1 1.72 10.6199999 8.8500004 100.8899994 0.726698 0.686957 1.0 +3665 1 1.72 14.1599999 7.0799999 99.1200028 0.935166 0.354211 1.0 +3666 1 1.72 15.9300004 8.8500004 99.1200028 -0.357414 0.933946 1.0 +3667 1 1.72 15.9300004 7.0799999 100.8899994 -0.518049 -0.855351 1.0 +3668 1 1.72 14.1599999 8.8500004 100.8899994 -0.00805189 -0.999968 1.0 +3669 1 1.72 17.7000008 7.0799999 99.1200028 -0.999522 -0.030916 1.0 +3670 1 1.72 19.4699993 8.8500004 99.1200028 -0.223607 -0.974679 1.0 +3671 1 1.72 19.4699993 7.0799999 100.8899994 0.747823 0.663898 1.0 +3672 1 1.72 17.7000008 8.8500004 100.8899994 0.588681 0.808365 1.0 +3673 1 1.72 21.2399998 7.0799999 99.1200028 -0.583027 -0.812453 1.0 +3674 1 1.72 23.0100002 8.8500004 99.1200028 0.147351 0.989084 1.0 +3675 1 1.72 23.0100002 7.0799999 100.8899994 0.79704 0.603927 1.0 +3676 1 1.72 21.2399998 8.8500004 100.8899994 -0.690748 0.723095 1.0 +3677 1 1.72 24.7800007 7.0799999 99.1200028 -0.588036 0.808834 1.0 +3678 1 1.72 26.5499993 8.8500004 99.1200028 0.997417 -0.0718244 1.0 +3679 1 1.72 26.5499993 7.0799999 100.8899994 0.863853 -0.503743 1.0 +3680 1 1.72 24.7800007 8.8500004 100.8899994 -0.384813 0.922995 1.0 +3681 1 1.72 0.0 10.6199999 99.1200028 -0.971507 0.237011 1.0 +3682 1 1.72 1.77 12.3900004 99.1200028 -0.954999 0.296609 1.0 +3683 1 1.72 1.77 10.6199999 100.8899994 0.721156 0.692773 1.0 +3684 1 1.72 0.0 12.3900004 100.8899994 0.904961 -0.425495 1.0 +3685 1 1.72 3.54 10.6199999 99.1200028 0.995518 -0.0945747 1.0 +3686 1 1.72 5.31 12.3900004 99.1200028 0.979656 0.200682 1.0 +3687 1 1.72 5.31 10.6199999 100.8899994 0.999999 -0.00111665 1.0 +3688 1 1.72 3.54 12.3900004 100.8899994 0.927711 0.373298 1.0 +3689 1 1.72 7.0799999 10.6199999 99.1200028 0.849534 0.527533 1.0 +3690 1 1.72 8.8500004 12.3900004 99.1200028 0.829966 0.557813 1.0 +3691 1 1.72 8.8500004 10.6199999 100.8899994 0.998504 0.05467 1.0 +3692 1 1.72 7.0799999 12.3900004 100.8899994 -0.303018 0.952985 1.0 +3693 1 1.72 10.6199999 10.6199999 99.1200028 0.422256 0.906476 1.0 +3694 1 1.72 12.3900004 12.3900004 99.1200028 -0.967191 -0.254051 1.0 +3695 1 1.72 12.3900004 10.6199999 100.8899994 0.912273 -0.409583 1.0 +3696 1 1.72 10.6199999 12.3900004 100.8899994 -0.906927 0.421289 1.0 +3697 1 1.72 14.1599999 10.6199999 99.1200028 0.154829 -0.987941 1.0 +3698 1 1.72 15.9300004 12.3900004 99.1200028 0.910839 -0.412763 1.0 +3699 1 1.72 15.9300004 10.6199999 100.8899994 0.494968 0.868911 1.0 +3700 1 1.72 14.1599999 12.3900004 100.8899994 0.951636 0.307227 1.0 +3701 1 1.72 17.7000008 10.6199999 99.1200028 0.674183 0.738564 1.0 +3702 1 1.72 19.4699993 12.3900004 99.1200028 -0.90164 0.432488 1.0 +3703 1 1.72 19.4699993 10.6199999 100.8899994 0.909317 0.416104 1.0 +3704 1 1.72 17.7000008 12.3900004 100.8899994 0.61203 0.790835 1.0 +3705 1 1.72 21.2399998 10.6199999 99.1200028 0.818038 0.575164 1.0 +3706 1 1.72 23.0100002 12.3900004 99.1200028 -0.66199 0.749513 1.0 +3707 1 1.72 23.0100002 10.6199999 100.8899994 0.711272 -0.702917 1.0 +3708 1 1.72 21.2399998 12.3900004 100.8899994 0.707629 0.706584 1.0 +3709 1 1.72 24.7800007 10.6199999 99.1200028 0.63067 0.776051 1.0 +3710 1 1.72 26.5499993 12.3900004 99.1200028 0.999835 -0.0181446 1.0 +3711 1 1.72 26.5499993 10.6199999 100.8899994 -0.538288 0.842761 1.0 +3712 1 1.72 24.7800007 12.3900004 100.8899994 0.758648 0.651501 1.0 +3713 1 1.72 0.0 0.0 102.6600037 0.261802 -0.965122 1.0 +3714 1 1.72 1.77 1.77 102.6600037 0.895976 0.444103 1.0 +3715 1 1.72 1.77 0.0 104.4300003 -0.990287 -0.139036 1.0 +3716 1 1.72 0.0 1.77 104.4300003 -0.916591 -0.399826 1.0 +3717 1 1.72 3.54 0.0 102.6600037 -0.683761 0.729706 1.0 +3718 1 1.72 5.31 1.77 102.6600037 -0.846298 -0.53271 1.0 +3719 1 1.72 5.31 0.0 104.4300003 -0.965516 -0.260343 1.0 +3720 1 1.72 3.54 1.77 104.4300003 0.541953 -0.840409 1.0 +3721 1 1.72 7.0799999 0.0 102.6600037 -0.727005 0.686632 1.0 +3722 1 1.72 8.8500004 1.77 102.6600037 0.999928 -0.0120322 1.0 +3723 1 1.72 8.8500004 0.0 104.4300003 0.840421 0.541935 1.0 +3724 1 1.72 7.0799999 1.77 104.4300003 0.880713 -0.473651 1.0 +3725 1 1.72 10.6199999 0.0 102.6600037 0.661602 0.749855 1.0 +3726 1 1.72 12.3900004 1.77 102.6600037 0.993279 -0.115742 1.0 +3727 1 1.72 12.3900004 0.0 104.4300003 -0.859574 0.511012 1.0 +3728 1 1.72 10.6199999 1.77 104.4300003 -0.775374 -0.631503 1.0 +3729 1 1.72 14.1599999 0.0 102.6600037 -0.966545 0.256497 1.0 +3730 1 1.72 15.9300004 1.77 102.6600037 -0.248109 0.968732 1.0 +3731 1 1.72 15.9300004 0.0 104.4300003 0.926382 0.376585 1.0 +3732 1 1.72 14.1599999 1.77 104.4300003 -0.542902 -0.839796 1.0 +3733 1 1.72 17.7000008 0.0 102.6600037 -0.983675 -0.179953 1.0 +3734 1 1.72 19.4699993 1.77 102.6600037 -0.813589 -0.58144 1.0 +3735 1 1.72 19.4699993 0.0 104.4300003 0.184724 -0.98279 1.0 +3736 1 1.72 17.7000008 1.77 104.4300003 -0.368999 0.92943 1.0 +3737 1 1.72 21.2399998 0.0 102.6600037 0.609569 -0.792733 1.0 +3738 1 1.72 23.0100002 1.77 102.6600037 -0.177571 -0.984108 1.0 +3739 1 1.72 23.0100002 0.0 104.4300003 0.879645 -0.475631 1.0 +3740 1 1.72 21.2399998 1.77 104.4300003 -0.204859 -0.978791 1.0 +3741 1 1.72 24.7800007 0.0 102.6600037 0.0905535 -0.995892 1.0 +3742 1 1.72 26.5499993 1.77 102.6600037 -0.610039 0.792371 1.0 +3743 1 1.72 26.5499993 0.0 104.4300003 0.998 -0.0632127 1.0 +3744 1 1.72 24.7800007 1.77 104.4300003 0.0830033 0.996549 1.0 +3745 1 1.72 0.0 3.54 102.6600037 0.0738558 0.997269 1.0 +3746 1 1.72 1.77 5.31 102.6600037 -0.934583 -0.355746 1.0 +3747 1 1.72 1.77 3.54 104.4300003 0.852763 -0.522297 1.0 +3748 1 1.72 0.0 5.31 104.4300003 -0.75275 0.658306 1.0 +3749 1 1.72 3.54 3.54 102.6600037 -0.508145 0.861271 1.0 +3750 1 1.72 5.31 5.31 102.6600037 0.595444 0.803397 1.0 +3751 1 1.72 5.31 3.54 104.4300003 -0.695896 -0.718143 1.0 +3752 1 1.72 3.54 5.31 104.4300003 0.414753 0.909934 1.0 +3753 1 1.72 7.0799999 3.54 102.6600037 0.915702 -0.401857 1.0 +3754 1 1.72 8.8500004 5.31 102.6600037 0.852196 0.523223 1.0 +3755 1 1.72 8.8500004 3.54 104.4300003 -0.38046 -0.924798 1.0 +3756 1 1.72 7.0799999 5.31 104.4300003 0.995665 0.0930095 1.0 +3757 1 1.72 10.6199999 3.54 102.6600037 -0.436227 -0.899837 1.0 +3758 1 1.72 12.3900004 5.31 102.6600037 -0.793826 0.608145 1.0 +3759 1 1.72 12.3900004 3.54 104.4300003 0.600119 -0.79991 1.0 +3760 1 1.72 10.6199999 5.31 104.4300003 0.450233 0.892911 1.0 +3761 1 1.72 14.1599999 3.54 102.6600037 0.785778 -0.618509 1.0 +3762 1 1.72 15.9300004 5.31 102.6600037 0.00331214 -0.999995 1.0 +3763 1 1.72 15.9300004 3.54 104.4300003 0.363731 0.931504 1.0 +3764 1 1.72 14.1599999 5.31 104.4300003 -0.615859 -0.787857 1.0 +3765 1 1.72 17.7000008 3.54 102.6600037 0.674207 -0.738542 1.0 +3766 1 1.72 19.4699993 5.31 102.6600037 -0.280048 -0.959986 1.0 +3767 1 1.72 19.4699993 3.54 104.4300003 -0.920669 0.390344 1.0 +3768 1 1.72 17.7000008 5.31 104.4300003 -0.839313 0.543648 1.0 +3769 1 1.72 21.2399998 3.54 102.6600037 0.262525 0.964925 1.0 +3770 1 1.72 23.0100002 5.31 102.6600037 -0.151071 0.988523 1.0 +3771 1 1.72 23.0100002 3.54 104.4300003 0.648389 -0.761309 1.0 +3772 1 1.72 21.2399998 5.31 104.4300003 -0.396848 -0.917884 1.0 +3773 1 1.72 24.7800007 3.54 102.6600037 -0.884376 -0.466775 1.0 +3774 1 1.72 26.5499993 5.31 102.6600037 -0.00172865 0.999999 1.0 +3775 1 1.72 26.5499993 3.54 104.4300003 0.982204 -0.18782 1.0 +3776 1 1.72 24.7800007 5.31 104.4300003 -0.318426 -0.947948 1.0 +3777 1 1.72 0.0 7.0799999 102.6600037 0.996844 -0.0793914 1.0 +3778 1 1.72 1.77 8.8500004 102.6600037 -0.84829 0.529532 1.0 +3779 1 1.72 1.77 7.0799999 104.4300003 -0.0473994 0.998876 1.0 +3780 1 1.72 0.0 8.8500004 104.4300003 0.142182 -0.989841 1.0 +3781 1 1.72 3.54 7.0799999 102.6600037 0.667596 -0.744523 1.0 +3782 1 1.72 5.31 8.8500004 102.6600037 -0.51325 -0.858239 1.0 +3783 1 1.72 5.31 7.0799999 104.4300003 -0.827915 0.560854 1.0 +3784 1 1.72 3.54 8.8500004 104.4300003 0.118515 -0.992952 1.0 +3785 1 1.72 7.0799999 7.0799999 102.6600037 -0.929207 0.36956 1.0 +3786 1 1.72 8.8500004 8.8500004 102.6600037 -0.668806 -0.743437 1.0 +3787 1 1.72 8.8500004 7.0799999 104.4300003 0.375016 0.927018 1.0 +3788 1 1.72 7.0799999 8.8500004 104.4300003 0.559697 0.828697 1.0 +3789 1 1.72 10.6199999 7.0799999 102.6600037 0.563142 0.82636 1.0 +3790 1 1.72 12.3900004 8.8500004 102.6600037 -0.116541 -0.993186 1.0 +3791 1 1.72 12.3900004 7.0799999 104.4300003 -0.190442 0.981698 1.0 +3792 1 1.72 10.6199999 8.8500004 104.4300003 0.981466 0.191638 1.0 +3793 1 1.72 14.1599999 7.0799999 102.6600037 0.772871 -0.634564 1.0 +3794 1 1.72 15.9300004 8.8500004 102.6600037 0.468225 -0.883609 1.0 +3795 1 1.72 15.9300004 7.0799999 104.4300003 0.677823 -0.735225 1.0 +3796 1 1.72 14.1599999 8.8500004 104.4300003 0.00946717 -0.999955 1.0 +3797 1 1.72 17.7000008 7.0799999 102.6600037 -0.0755188 0.997144 1.0 +3798 1 1.72 19.4699993 8.8500004 102.6600037 -0.996284 0.0861287 1.0 +3799 1 1.72 19.4699993 7.0799999 104.4300003 0.185216 0.982698 1.0 +3800 1 1.72 17.7000008 8.8500004 104.4300003 0.726537 0.687127 1.0 +3801 1 1.72 21.2399998 7.0799999 102.6600037 0.921165 0.389173 1.0 +3802 1 1.72 23.0100002 8.8500004 102.6600037 -0.162526 0.986704 1.0 +3803 1 1.72 23.0100002 7.0799999 104.4300003 -0.360703 -0.932681 1.0 +3804 1 1.72 21.2399998 8.8500004 104.4300003 -0.972474 0.233011 1.0 +3805 1 1.72 24.7800007 7.0799999 102.6600037 -0.783892 0.620897 1.0 +3806 1 1.72 26.5499993 8.8500004 102.6600037 -0.955162 0.296083 1.0 +3807 1 1.72 26.5499993 7.0799999 104.4300003 0.297276 0.954792 1.0 +3808 1 1.72 24.7800007 8.8500004 104.4300003 0.89877 -0.43842 1.0 +3809 1 1.72 0.0 10.6199999 102.6600037 -0.425419 -0.904997 1.0 +3810 1 1.72 1.77 12.3900004 102.6600037 -0.999828 0.018569 1.0 +3811 1 1.72 1.77 10.6199999 104.4300003 0.549137 -0.835733 1.0 +3812 1 1.72 0.0 12.3900004 104.4300003 -0.674928 0.737884 1.0 +3813 1 1.72 3.54 10.6199999 102.6600037 -0.605461 0.795875 1.0 +3814 1 1.72 5.31 12.3900004 102.6600037 0.661456 -0.749984 1.0 +3815 1 1.72 5.31 10.6199999 104.4300003 0.890713 0.454566 1.0 +3816 1 1.72 3.54 12.3900004 104.4300003 -0.701967 0.712209 1.0 +3817 1 1.72 7.0799999 10.6199999 102.6600037 0.399668 0.91666 1.0 +3818 1 1.72 8.8500004 12.3900004 102.6600037 0.0501901 -0.99874 1.0 +3819 1 1.72 8.8500004 10.6199999 104.4300003 -0.502917 -0.864335 1.0 +3820 1 1.72 7.0799999 12.3900004 104.4300003 -0.0505591 0.998721 1.0 +3821 1 1.72 10.6199999 10.6199999 102.6600037 0.341731 -0.939798 1.0 +3822 1 1.72 12.3900004 12.3900004 102.6600037 -0.570473 -0.821316 1.0 +3823 1 1.72 12.3900004 10.6199999 104.4300003 -0.655416 -0.755268 1.0 +3824 1 1.72 10.6199999 12.3900004 104.4300003 -0.454928 -0.890528 1.0 +3825 1 1.72 14.1599999 10.6199999 102.6600037 0.946298 -0.323294 1.0 +3826 1 1.72 15.9300004 12.3900004 102.6600037 0.710927 -0.703266 1.0 +3827 1 1.72 15.9300004 10.6199999 104.4300003 0.987385 -0.158335 1.0 +3828 1 1.72 14.1599999 12.3900004 104.4300003 -0.918791 -0.394745 1.0 +3829 1 1.72 17.7000008 10.6199999 102.6600037 -0.98869 -0.149977 1.0 +3830 1 1.72 19.4699993 12.3900004 102.6600037 -0.731722 0.681603 1.0 +3831 1 1.72 19.4699993 10.6199999 104.4300003 -0.0513678 -0.99868 1.0 +3832 1 1.72 17.7000008 12.3900004 104.4300003 0.993719 0.111908 1.0 +3833 1 1.72 21.2399998 10.6199999 102.6600037 -0.651626 0.75854 1.0 +3834 1 1.72 23.0100002 12.3900004 102.6600037 0.28526 -0.95845 1.0 +3835 1 1.72 23.0100002 10.6199999 104.4300003 0.973541 -0.228514 1.0 +3836 1 1.72 21.2399998 12.3900004 104.4300003 -0.909632 0.415415 1.0 +3837 1 1.72 24.7800007 10.6199999 102.6600037 0.553685 0.832726 1.0 +3838 1 1.72 26.5499993 12.3900004 102.6600037 0.339879 0.940469 1.0 +3839 1 1.72 26.5499993 10.6199999 104.4300003 -0.843075 -0.537795 1.0 +3840 1 1.72 24.7800007 12.3900004 104.4300003 -0.456334 -0.889809 1.0 +3841 1 1.72 0.0 0.0 106.199997 0.960307 0.278946 1.0 +3842 1 1.72 1.77 1.77 106.199997 -0.927242 -0.374463 1.0 +3843 1 1.72 1.77 0.0 107.9700012 0.0476906 -0.998862 1.0 +3844 1 1.72 0.0 1.77 107.9700012 -0.792381 -0.610027 1.0 +3845 1 1.72 3.54 0.0 106.199997 0.336423 -0.941711 1.0 +3846 1 1.72 5.31 1.77 106.199997 0.21866 0.975801 1.0 +3847 1 1.72 5.31 0.0 107.9700012 -0.707482 -0.706732 1.0 +3848 1 1.72 3.54 1.77 107.9700012 -0.50396 -0.863727 1.0 +3849 1 1.72 7.0799999 0.0 106.199997 0.533776 -0.845626 1.0 +3850 1 1.72 8.8500004 1.77 106.199997 0.978567 0.205927 1.0 +3851 1 1.72 8.8500004 0.0 107.9700012 -0.898709 0.438545 1.0 +3852 1 1.72 7.0799999 1.77 107.9700012 0.962017 -0.272991 1.0 +3853 1 1.72 10.6199999 0.0 106.199997 0.856909 -0.515467 1.0 +3854 1 1.72 12.3900004 1.77 106.199997 -0.543571 0.839363 1.0 +3855 1 1.72 12.3900004 0.0 107.9700012 -0.919013 -0.394228 1.0 +3856 1 1.72 10.6199999 1.77 107.9700012 0.0773071 -0.997007 1.0 +3857 1 1.72 14.1599999 0.0 106.199997 0.987897 -0.155108 1.0 +3858 1 1.72 15.9300004 1.77 106.199997 0.98567 -0.168685 1.0 +3859 1 1.72 15.9300004 0.0 107.9700012 -0.846 0.533182 1.0 +3860 1 1.72 14.1599999 1.77 107.9700012 0.795165 -0.606394 1.0 +3861 1 1.72 17.7000008 0.0 106.199997 -0.853256 0.521493 1.0 +3862 1 1.72 19.4699993 1.77 106.199997 -0.448664 0.8937 1.0 +3863 1 1.72 19.4699993 0.0 107.9700012 -0.897491 -0.441032 1.0 +3864 1 1.72 17.7000008 1.77 107.9700012 -0.250258 0.968179 1.0 +3865 1 1.72 21.2399998 0.0 106.199997 -0.0561306 0.998423 1.0 +3866 1 1.72 23.0100002 1.77 106.199997 0.999158 0.0410207 1.0 +3867 1 1.72 23.0100002 0.0 107.9700012 0.978905 -0.204318 1.0 +3868 1 1.72 21.2399998 1.77 107.9700012 -0.999309 0.0371704 1.0 +3869 1 1.72 24.7800007 0.0 106.199997 -0.972802 0.231639 1.0 +3870 1 1.72 26.5499993 1.77 106.199997 0.150185 -0.988658 1.0 +3871 1 1.72 26.5499993 0.0 107.9700012 -0.0434668 0.999055 1.0 +3872 1 1.72 24.7800007 1.77 107.9700012 -0.622679 -0.782478 1.0 +3873 1 1.72 0.0 3.54 106.199997 -0.328441 -0.944525 1.0 +3874 1 1.72 1.77 5.31 106.199997 0.695205 0.718812 1.0 +3875 1 1.72 1.77 3.54 107.9700012 -0.581661 -0.813431 1.0 +3876 1 1.72 0.0 5.31 107.9700012 0.492607 0.870252 1.0 +3877 1 1.72 3.54 3.54 106.199997 -0.979431 -0.201779 1.0 +3878 1 1.72 5.31 5.31 106.199997 -0.016852 -0.999858 1.0 +3879 1 1.72 5.31 3.54 107.9700012 0.325487 0.945547 1.0 +3880 1 1.72 3.54 5.31 107.9700012 0.973924 -0.226873 1.0 +3881 1 1.72 7.0799999 3.54 106.199997 -0.996659 0.0816776 1.0 +3882 1 1.72 8.8500004 5.31 106.199997 -0.716455 0.697633 1.0 +3883 1 1.72 8.8500004 3.54 107.9700012 0.999776 -0.0211478 1.0 +3884 1 1.72 7.0799999 5.31 107.9700012 -0.562575 0.826746 1.0 +3885 1 1.72 10.6199999 3.54 106.199997 -0.950363 0.311143 1.0 +3886 1 1.72 12.3900004 5.31 106.199997 -0.461977 0.886892 1.0 +3887 1 1.72 12.3900004 3.54 107.9700012 0.741696 -0.670736 1.0 +3888 1 1.72 10.6199999 5.31 107.9700012 0.208347 -0.978055 1.0 +3889 1 1.72 14.1599999 3.54 106.199997 0.299716 -0.954028 1.0 +3890 1 1.72 15.9300004 5.31 106.199997 0.732409 0.680865 1.0 +3891 1 1.72 15.9300004 3.54 107.9700012 -0.868334 0.49598 1.0 +3892 1 1.72 14.1599999 5.31 107.9700012 0.861322 -0.50806 1.0 +3893 1 1.72 17.7000008 3.54 106.199997 0.902595 0.43049 1.0 +3894 1 1.72 19.4699993 5.31 106.199997 -0.766049 0.642782 1.0 +3895 1 1.72 19.4699993 3.54 107.9700012 -0.116451 0.993196 1.0 +3896 1 1.72 17.7000008 5.31 107.9700012 -0.834837 0.550498 1.0 +3897 1 1.72 21.2399998 3.54 106.199997 -0.717114 -0.696956 1.0 +3898 1 1.72 23.0100002 5.31 106.199997 -0.968487 0.249064 1.0 +3899 1 1.72 23.0100002 3.54 107.9700012 0.710185 0.704015 1.0 +3900 1 1.72 21.2399998 5.31 107.9700012 0.601973 -0.798516 1.0 +3901 1 1.72 24.7800007 3.54 106.199997 -0.847688 -0.530495 1.0 +3902 1 1.72 26.5499993 5.31 106.199997 0.162678 0.986679 1.0 +3903 1 1.72 26.5499993 3.54 107.9700012 0.746444 -0.665448 1.0 +3904 1 1.72 24.7800007 5.31 107.9700012 0.527194 -0.849745 1.0 +3905 1 1.72 0.0 7.0799999 106.199997 -0.0963276 -0.99535 1.0 +3906 1 1.72 1.77 8.8500004 106.199997 -0.543142 0.839641 1.0 +3907 1 1.72 1.77 7.0799999 107.9700012 -0.719015 -0.694994 1.0 +3908 1 1.72 0.0 8.8500004 107.9700012 0.447568 0.89425 1.0 +3909 1 1.72 3.54 7.0799999 106.199997 -0.60873 0.793377 1.0 +3910 1 1.72 5.31 8.8500004 106.199997 0.158682 0.98733 1.0 +3911 1 1.72 5.31 7.0799999 107.9700012 0.693748 -0.720218 1.0 +3912 1 1.72 3.54 8.8500004 107.9700012 0.107307 0.994226 1.0 +3913 1 1.72 7.0799999 7.0799999 106.199997 -0.0720405 0.997402 1.0 +3914 1 1.72 8.8500004 8.8500004 106.199997 -0.361666 0.932308 1.0 +3915 1 1.72 8.8500004 7.0799999 107.9700012 0.986552 0.163449 1.0 +3916 1 1.72 7.0799999 8.8500004 107.9700012 0.868363 0.495929 1.0 +3917 1 1.72 10.6199999 7.0799999 106.199997 0.733777 -0.67939 1.0 +3918 1 1.72 12.3900004 8.8500004 106.199997 -0.652751 -0.757573 1.0 +3919 1 1.72 12.3900004 7.0799999 107.9700012 -0.438125 -0.898914 1.0 +3920 1 1.72 10.6199999 8.8500004 107.9700012 0.707682 -0.706531 1.0 +3921 1 1.72 14.1599999 7.0799999 106.199997 -0.53277 0.84626 1.0 +3922 1 1.72 15.9300004 8.8500004 106.199997 -0.46678 -0.884373 1.0 +3923 1 1.72 15.9300004 7.0799999 107.9700012 0.934522 -0.355904 1.0 +3924 1 1.72 14.1599999 8.8500004 107.9700012 -0.965506 -0.260382 1.0 +3925 1 1.72 17.7000008 7.0799999 106.199997 0.730079 -0.683363 1.0 +3926 1 1.72 19.4699993 8.8500004 106.199997 0.660283 0.751017 1.0 +3927 1 1.72 19.4699993 7.0799999 107.9700012 0.475568 0.879679 1.0 +3928 1 1.72 17.7000008 8.8500004 107.9700012 0.140789 0.99004 1.0 +3929 1 1.72 21.2399998 7.0799999 106.199997 -0.748472 -0.663166 1.0 +3930 1 1.72 23.0100002 8.8500004 106.199997 0.391139 0.920331 1.0 +3931 1 1.72 23.0100002 7.0799999 107.9700012 -0.199604 0.979877 1.0 +3932 1 1.72 21.2399998 8.8500004 107.9700012 0.735837 0.677159 1.0 +3933 1 1.72 24.7800007 7.0799999 106.199997 -0.999983 0.0058278 1.0 +3934 1 1.72 26.5499993 8.8500004 106.199997 0.689325 -0.724452 1.0 +3935 1 1.72 26.5499993 7.0799999 107.9700012 0.192712 -0.981255 1.0 +3936 1 1.72 24.7800007 8.8500004 107.9700012 0.999924 0.0123622 1.0 +3937 1 1.72 0.0 10.6199999 106.199997 -0.612019 -0.790843 1.0 +3938 1 1.72 1.77 12.3900004 106.199997 -0.516218 0.856458 1.0 +3939 1 1.72 1.77 10.6199999 107.9700012 0.799726 -0.600365 1.0 +3940 1 1.72 0.0 12.3900004 107.9700012 0.494981 -0.868904 1.0 +3941 1 1.72 3.54 10.6199999 106.199997 -0.905805 0.423696 1.0 +3942 1 1.72 5.31 12.3900004 106.199997 -0.598522 -0.801106 1.0 +3943 1 1.72 5.31 10.6199999 107.9700012 -0.753793 0.657112 1.0 +3944 1 1.72 3.54 12.3900004 107.9700012 0.973375 -0.22922 1.0 +3945 1 1.72 7.0799999 10.6199999 106.199997 0.506557 -0.862206 1.0 +3946 1 1.72 8.8500004 12.3900004 106.199997 0.985276 -0.170969 1.0 +3947 1 1.72 8.8500004 10.6199999 107.9700012 -0.313318 -0.949648 1.0 +3948 1 1.72 7.0799999 12.3900004 107.9700012 -0.589613 0.807686 1.0 +3949 1 1.72 10.6199999 10.6199999 106.199997 0.375174 -0.926955 1.0 +3950 1 1.72 12.3900004 12.3900004 106.199997 -0.979354 0.202153 1.0 +3951 1 1.72 12.3900004 10.6199999 107.9700012 -0.840759 -0.541409 1.0 +3952 1 1.72 10.6199999 12.3900004 107.9700012 -0.835765 -0.549088 1.0 +3953 1 1.72 14.1599999 10.6199999 106.199997 0.878717 -0.477343 1.0 +3954 1 1.72 15.9300004 12.3900004 106.199997 0.98514 -0.171756 1.0 +3955 1 1.72 15.9300004 10.6199999 107.9700012 -0.708064 0.706148 1.0 +3956 1 1.72 14.1599999 12.3900004 107.9700012 -0.626906 -0.779095 1.0 +3957 1 1.72 17.7000008 10.6199999 106.199997 0.95746 0.288566 1.0 +3958 1 1.72 19.4699993 12.3900004 106.199997 -0.915968 0.401251 1.0 +3959 1 1.72 19.4699993 10.6199999 107.9700012 0.76193 -0.64766 1.0 +3960 1 1.72 17.7000008 12.3900004 107.9700012 0.838295 0.545216 1.0 +3961 1 1.72 21.2399998 10.6199999 106.199997 -0.615611 0.78805 1.0 +3962 1 1.72 23.0100002 12.3900004 106.199997 0.929118 0.369784 1.0 +3963 1 1.72 23.0100002 10.6199999 107.9700012 0.996543 0.0830754 1.0 +3964 1 1.72 21.2399998 12.3900004 107.9700012 -0.63503 -0.772487 1.0 +3965 1 1.72 24.7800007 10.6199999 106.199997 -0.961555 0.274614 1.0 +3966 1 1.72 26.5499993 12.3900004 106.199997 0.573015 -0.819545 1.0 +3967 1 1.72 26.5499993 10.6199999 107.9700012 -0.938459 -0.34539 1.0 +3968 1 1.72 24.7800007 12.3900004 107.9700012 0.956815 -0.290699 1.0 +3969 1 1.72 0.0 0.0 109.7399979 -0.999999 -0.00129561 1.0 +3970 1 1.72 1.77 1.77 109.7399979 0.557819 -0.829963 1.0 +3971 1 1.72 1.77 0.0 111.5100022 -0.544056 -0.839049 1.0 +3972 1 1.72 0.0 1.77 111.5100022 0.98669 -0.162615 1.0 +3973 1 1.72 3.54 0.0 109.7399979 -0.564987 0.8251 1.0 +3974 1 1.72 5.31 1.77 109.7399979 -0.504612 0.863346 1.0 +3975 1 1.72 5.31 0.0 111.5100022 0.282509 0.959265 1.0 +3976 1 1.72 3.54 1.77 111.5100022 0.306493 -0.951873 1.0 +3977 1 1.72 7.0799999 0.0 109.7399979 -0.873733 -0.486405 1.0 +3978 1 1.72 8.8500004 1.77 109.7399979 0.972973 -0.230918 1.0 +3979 1 1.72 8.8500004 0.0 111.5100022 0.996378 -0.0850313 1.0 +3980 1 1.72 7.0799999 1.77 111.5100022 -0.183381 -0.983042 1.0 +3981 1 1.72 10.6199999 0.0 109.7399979 -0.434613 0.900617 1.0 +3982 1 1.72 12.3900004 1.77 109.7399979 -0.86129 -0.508113 1.0 +3983 1 1.72 12.3900004 0.0 111.5100022 0.0746769 -0.997208 1.0 +3984 1 1.72 10.6199999 1.77 111.5100022 0.0399015 -0.999204 1.0 +3985 1 1.72 14.1599999 0.0 109.7399979 0.37973 -0.925098 1.0 +3986 1 1.72 15.9300004 1.77 109.7399979 -0.691936 0.721959 1.0 +3987 1 1.72 15.9300004 0.0 111.5100022 -0.858404 0.512974 1.0 +3988 1 1.72 14.1599999 1.77 111.5100022 0.799193 0.601075 1.0 +3989 1 1.72 17.7000008 0.0 109.7399979 0.279409 0.960172 1.0 +3990 1 1.72 19.4699993 1.77 109.7399979 0.999733 -0.0231141 1.0 +3991 1 1.72 19.4699993 0.0 111.5100022 -0.796452 -0.604702 1.0 +3992 1 1.72 17.7000008 1.77 111.5100022 0.343068 0.93931 1.0 +3993 1 1.72 21.2399998 0.0 109.7399979 -0.78901 -0.614381 1.0 +3994 1 1.72 23.0100002 1.77 109.7399979 0.37331 -0.927706 1.0 +3995 1 1.72 23.0100002 0.0 111.5100022 0.834787 0.550573 1.0 +3996 1 1.72 21.2399998 1.77 111.5100022 0.307436 -0.951569 1.0 +3997 1 1.72 24.7800007 0.0 109.7399979 -0.526179 0.850374 1.0 +3998 1 1.72 26.5499993 1.77 109.7399979 -0.23104 -0.972944 1.0 +3999 1 1.72 26.5499993 0.0 111.5100022 0.756813 0.653631 1.0 +4000 1 1.72 24.7800007 1.77 111.5100022 0.799902 0.600131 1.0 +4001 1 1.72 0.0 3.54 109.7399979 0.948664 -0.316287 1.0 +4002 1 1.72 1.77 5.31 109.7399979 0.767445 -0.641115 1.0 +4003 1 1.72 1.77 3.54 111.5100022 -0.97071 -0.240252 1.0 +4004 1 1.72 0.0 5.31 111.5100022 -0.565081 -0.825036 1.0 +4005 1 1.72 3.54 3.54 109.7399979 -0.786116 -0.618079 1.0 +4006 1 1.72 5.31 5.31 109.7399979 0.504339 0.863506 1.0 +4007 1 1.72 5.31 3.54 111.5100022 -0.995646 -0.0932171 1.0 +4008 1 1.72 3.54 5.31 111.5100022 0.559559 0.82879 1.0 +4009 1 1.72 7.0799999 3.54 109.7399979 0.419805 0.907614 1.0 +4010 1 1.72 8.8500004 5.31 109.7399979 -0.799504 -0.600661 1.0 +4011 1 1.72 8.8500004 3.54 111.5100022 -0.813297 0.581848 1.0 +4012 1 1.72 7.0799999 5.31 111.5100022 0.487255 -0.87326 1.0 +4013 1 1.72 10.6199999 3.54 109.7399979 0.299075 0.954229 1.0 +4014 1 1.72 12.3900004 5.31 109.7399979 -0.820768 -0.571261 1.0 +4015 1 1.72 12.3900004 3.54 111.5100022 -0.597352 -0.801979 1.0 +4016 1 1.72 10.6199999 5.31 111.5100022 -0.0653339 0.997863 1.0 +4017 1 1.72 14.1599999 3.54 109.7399979 -0.223887 -0.974615 1.0 +4018 1 1.72 15.9300004 5.31 109.7399979 0.515491 -0.856895 1.0 +4019 1 1.72 15.9300004 3.54 111.5100022 0.378303 -0.925682 1.0 +4020 1 1.72 14.1599999 5.31 111.5100022 -0.71936 -0.694637 1.0 +4021 1 1.72 17.7000008 3.54 109.7399979 0.768333 -0.640051 1.0 +4022 1 1.72 19.4699993 5.31 109.7399979 0.903813 0.427929 1.0 +4023 1 1.72 19.4699993 3.54 111.5100022 -0.524067 0.851677 1.0 +4024 1 1.72 17.7000008 5.31 111.5100022 0.653302 0.757098 1.0 +4025 1 1.72 21.2399998 3.54 109.7399979 0.858177 -0.513355 1.0 +4026 1 1.72 23.0100002 5.31 109.7399979 0.966281 0.25749 1.0 +4027 1 1.72 23.0100002 3.54 111.5100022 0.772202 0.635377 1.0 +4028 1 1.72 21.2399998 5.31 111.5100022 -0.936659 0.350242 1.0 +4029 1 1.72 24.7800007 3.54 109.7399979 -0.196323 -0.980539 1.0 +4030 1 1.72 26.5499993 5.31 109.7399979 0.898659 0.438647 1.0 +4031 1 1.72 26.5499993 3.54 111.5100022 0.368117 0.929779 1.0 +4032 1 1.72 24.7800007 5.31 111.5100022 -0.521287 0.853381 1.0 +4033 1 1.72 0.0 7.0799999 109.7399979 0.361984 0.932184 1.0 +4034 1 1.72 1.77 8.8500004 109.7399979 0.90649 0.422226 1.0 +4035 1 1.72 1.77 7.0799999 111.5100022 0.645689 -0.7636 1.0 +4036 1 1.72 0.0 8.8500004 111.5100022 0.312671 0.949861 1.0 +4037 1 1.72 3.54 7.0799999 109.7399979 -0.144406 0.989519 1.0 +4038 1 1.72 5.31 8.8500004 109.7399979 0.909845 0.414948 1.0 +4039 1 1.72 5.31 7.0799999 111.5100022 -0.837491 -0.546452 1.0 +4040 1 1.72 3.54 8.8500004 111.5100022 0.78324 -0.621719 1.0 +4041 1 1.72 7.0799999 7.0799999 109.7399979 0.853462 -0.521155 1.0 +4042 1 1.72 8.8500004 8.8500004 109.7399979 -0.480505 0.876992 1.0 +4043 1 1.72 8.8500004 7.0799999 111.5100022 0.736961 0.675935 1.0 +4044 1 1.72 7.0799999 8.8500004 111.5100022 -0.298895 0.954286 1.0 +4045 1 1.72 10.6199999 7.0799999 109.7399979 0.167008 -0.985956 1.0 +4046 1 1.72 12.3900004 8.8500004 109.7399979 -0.328869 0.944376 1.0 +4047 1 1.72 12.3900004 7.0799999 111.5100022 -0.772391 -0.635148 1.0 +4048 1 1.72 10.6199999 8.8500004 111.5100022 -0.498136 -0.867099 1.0 +4049 1 1.72 14.1599999 7.0799999 109.7399979 -0.766903 0.641763 1.0 +4050 1 1.72 15.9300004 8.8500004 109.7399979 0.429842 0.902904 1.0 +4051 1 1.72 15.9300004 7.0799999 111.5100022 0.209351 0.977841 1.0 +4052 1 1.72 14.1599999 8.8500004 111.5100022 0.371151 0.928573 1.0 +4053 1 1.72 17.7000008 7.0799999 109.7399979 0.735828 0.677168 1.0 +4054 1 1.72 19.4699993 8.8500004 109.7399979 0.887593 0.460628 1.0 +4055 1 1.72 19.4699993 7.0799999 111.5100022 -0.916168 -0.400796 1.0 +4056 1 1.72 17.7000008 8.8500004 111.5100022 -0.652254 -0.758 1.0 +4057 1 1.72 21.2399998 7.0799999 109.7399979 -0.447368 0.89435 1.0 +4058 1 1.72 23.0100002 8.8500004 109.7399979 -0.00640979 0.999979 1.0 +4059 1 1.72 23.0100002 7.0799999 111.5100022 0.520215 -0.854035 1.0 +4060 1 1.72 21.2399998 8.8500004 111.5100022 -0.218168 0.975911 1.0 +4061 1 1.72 24.7800007 7.0799999 109.7399979 -0.578442 0.815724 1.0 +4062 1 1.72 26.5499993 8.8500004 109.7399979 0.951542 -0.307519 1.0 +4063 1 1.72 26.5499993 7.0799999 111.5100022 0.436586 -0.899663 1.0 +4064 1 1.72 24.7800007 8.8500004 111.5100022 0.145185 0.989405 1.0 +4065 1 1.72 0.0 10.6199999 109.7399979 0.575029 0.818133 1.0 +4066 1 1.72 1.77 12.3900004 109.7399979 0.992461 -0.122558 1.0 +4067 1 1.72 1.77 10.6199999 111.5100022 0.1306 -0.991435 1.0 +4068 1 1.72 0.0 12.3900004 111.5100022 0.689887 0.723917 1.0 +4069 1 1.72 3.54 10.6199999 109.7399979 0.373424 0.927661 1.0 +4070 1 1.72 5.31 12.3900004 109.7399979 0.995812 -0.09143 1.0 +4071 1 1.72 5.31 10.6199999 111.5100022 -0.367508 0.93002 1.0 +4072 1 1.72 3.54 12.3900004 111.5100022 0.654797 -0.755805 1.0 +4073 1 1.72 7.0799999 10.6199999 109.7399979 -0.282991 0.959123 1.0 +4074 1 1.72 8.8500004 12.3900004 109.7399979 0.559513 0.828821 1.0 +4075 1 1.72 8.8500004 10.6199999 111.5100022 -0.0776533 0.99698 1.0 +4076 1 1.72 7.0799999 12.3900004 111.5100022 -0.966288 -0.257465 1.0 +4077 1 1.72 10.6199999 10.6199999 109.7399979 -0.300124 -0.9539 1.0 +4078 1 1.72 12.3900004 12.3900004 109.7399979 -0.314826 -0.94915 1.0 +4079 1 1.72 12.3900004 10.6199999 111.5100022 0.999849 0.0173788 1.0 +4080 1 1.72 10.6199999 12.3900004 111.5100022 -0.842134 -0.539269 1.0 +4081 1 1.72 14.1599999 10.6199999 109.7399979 0.504361 0.863493 1.0 +4082 1 1.72 15.9300004 12.3900004 109.7399979 0.719213 0.69479 1.0 +4083 1 1.72 15.9300004 10.6199999 111.5100022 0.617592 -0.786499 1.0 +4084 1 1.72 14.1599999 12.3900004 111.5100022 -0.293393 -0.955992 1.0 +4085 1 1.72 17.7000008 10.6199999 109.7399979 0.983653 0.180077 1.0 +4086 1 1.72 19.4699993 12.3900004 109.7399979 -0.729111 0.684395 1.0 +4087 1 1.72 19.4699993 10.6199999 111.5100022 0.677002 0.735981 1.0 +4088 1 1.72 17.7000008 12.3900004 111.5100022 0.331645 0.943404 1.0 +4089 1 1.72 21.2399998 10.6199999 109.7399979 0.609146 -0.793058 1.0 +4090 1 1.72 23.0100002 12.3900004 109.7399979 -0.585077 -0.810978 1.0 +4091 1 1.72 23.0100002 10.6199999 111.5100022 0.691005 -0.72285 1.0 +4092 1 1.72 21.2399998 12.3900004 111.5100022 0.987317 -0.158764 1.0 +4093 1 1.72 24.7800007 10.6199999 109.7399979 0.273885 -0.961762 1.0 +4094 1 1.72 26.5499993 12.3900004 109.7399979 -0.82144 0.570295 1.0 +4095 1 1.72 26.5499993 10.6199999 111.5100022 -0.27645 -0.961028 1.0 +4096 1 1.72 24.7800007 12.3900004 111.5100022 -0.101964 0.994788 1.0 +4097 1 1.72 0.0 14.1599999 0.0 -0.906034 0.423205 1.0 +4098 1 1.72 1.77 15.9300004 0.0 0.581947 -0.813227 1.0 +4099 1 1.72 1.77 14.1599999 1.77 -0.999891 0.014789 1.0 +4100 1 1.72 0.0 15.9300004 1.77 -0.213523 -0.976938 1.0 +4101 1 1.72 3.54 14.1599999 0.0 -0.127281 -0.991867 1.0 +4102 1 1.72 5.31 15.9300004 0.0 0.995214 0.0977173 1.0 +4103 1 1.72 5.31 14.1599999 1.77 -0.902401 0.430897 1.0 +4104 1 1.72 3.54 15.9300004 1.77 -0.498825 -0.866703 1.0 +4105 1 1.72 7.0799999 14.1599999 0.0 0.915977 0.401231 1.0 +4106 1 1.72 8.8500004 15.9300004 0.0 0.624968 0.78065 1.0 +4107 1 1.72 8.8500004 14.1599999 1.77 0.345997 0.938236 1.0 +4108 1 1.72 7.0799999 15.9300004 1.77 0.836886 -0.547378 1.0 +4109 1 1.72 10.6199999 14.1599999 0.0 -0.989252 0.146221 1.0 +4110 1 1.72 12.3900004 15.9300004 0.0 -0.868683 -0.495368 1.0 +4111 1 1.72 12.3900004 14.1599999 1.77 -0.358349 0.933588 1.0 +4112 1 1.72 10.6199999 15.9300004 1.77 0.990304 -0.138919 1.0 +4113 1 1.72 14.1599999 14.1599999 0.0 0.818657 -0.574282 1.0 +4114 1 1.72 15.9300004 15.9300004 0.0 0.0112595 0.999937 1.0 +4115 1 1.72 15.9300004 14.1599999 1.77 0.94866 0.316297 1.0 +4116 1 1.72 14.1599999 15.9300004 1.77 0.69911 -0.715014 1.0 +4117 1 1.72 17.7000008 14.1599999 0.0 0.895863 0.444331 1.0 +4118 1 1.72 19.4699993 15.9300004 0.0 -0.173542 0.984826 1.0 +4119 1 1.72 19.4699993 14.1599999 1.77 0.807211 -0.590263 1.0 +4120 1 1.72 17.7000008 15.9300004 1.77 0.376604 0.926374 1.0 +4121 1 1.72 21.2399998 14.1599999 0.0 -0.991888 0.127114 1.0 +4122 1 1.72 23.0100002 15.9300004 0.0 -0.680313 0.732922 1.0 +4123 1 1.72 23.0100002 14.1599999 1.77 0.993969 0.109658 1.0 +4124 1 1.72 21.2399998 15.9300004 1.77 -0.182459 0.983213 1.0 +4125 1 1.72 24.7800007 14.1599999 0.0 -0.0302116 -0.999544 1.0 +4126 1 1.72 26.5499993 15.9300004 0.0 -0.723672 0.690144 1.0 +4127 1 1.72 26.5499993 14.1599999 1.77 0.0644942 -0.997918 1.0 +4128 1 1.72 24.7800007 15.9300004 1.77 0.610107 0.792319 1.0 +4129 1 1.72 0.0 17.7000008 0.0 -0.680255 -0.732976 1.0 +4130 1 1.72 1.77 19.4699993 0.0 0.469961 0.882687 1.0 +4131 1 1.72 1.77 17.7000008 1.77 0.535736 -0.844385 1.0 +4132 1 1.72 0.0 19.4699993 1.77 -0.816064 0.577962 1.0 +4133 1 1.72 3.54 17.7000008 0.0 0.740305 -0.672271 1.0 +4134 1 1.72 5.31 19.4699993 0.0 0.82493 -0.565234 1.0 +4135 1 1.72 5.31 17.7000008 1.77 -0.604299 -0.796758 1.0 +4136 1 1.72 3.54 19.4699993 1.77 -0.849746 -0.527192 1.0 +4137 1 1.72 7.0799999 17.7000008 0.0 -0.610688 -0.791871 1.0 +4138 1 1.72 8.8500004 19.4699993 0.0 -0.661152 -0.750252 1.0 +4139 1 1.72 8.8500004 17.7000008 1.77 -0.666197 -0.745775 1.0 +4140 1 1.72 7.0799999 19.4699993 1.77 -0.558117 0.829763 1.0 +4141 1 1.72 10.6199999 17.7000008 0.0 -0.828657 0.559757 1.0 +4142 1 1.72 12.3900004 19.4699993 0.0 0.983206 0.182501 1.0 +4143 1 1.72 12.3900004 17.7000008 1.77 0.806782 0.59085 1.0 +4144 1 1.72 10.6199999 19.4699993 1.77 -0.992463 0.122541 1.0 +4145 1 1.72 14.1599999 17.7000008 0.0 0.93155 -0.363615 1.0 +4146 1 1.72 15.9300004 19.4699993 0.0 -0.839313 0.543649 1.0 +4147 1 1.72 15.9300004 17.7000008 1.77 -0.970009 -0.243068 1.0 +4148 1 1.72 14.1599999 19.4699993 1.77 0.711394 -0.702793 1.0 +4149 1 1.72 17.7000008 17.7000008 0.0 0.796734 -0.60433 1.0 +4150 1 1.72 19.4699993 19.4699993 0.0 0.873484 0.486854 1.0 +4151 1 1.72 19.4699993 17.7000008 1.77 0.979112 0.203323 1.0 +4152 1 1.72 17.7000008 19.4699993 1.77 0.889848 0.456258 1.0 +4153 1 1.72 21.2399998 17.7000008 0.0 0.941633 0.336641 1.0 +4154 1 1.72 23.0100002 19.4699993 0.0 0.56189 0.827212 1.0 +4155 1 1.72 23.0100002 17.7000008 1.77 0.693812 -0.720156 1.0 +4156 1 1.72 21.2399998 19.4699993 1.77 -0.683189 -0.730242 1.0 +4157 1 1.72 24.7800007 17.7000008 0.0 -0.943901 -0.330227 1.0 +4158 1 1.72 26.5499993 19.4699993 0.0 0.0909536 0.995855 1.0 +4159 1 1.72 26.5499993 17.7000008 1.77 -0.308876 -0.951102 1.0 +4160 1 1.72 24.7800007 19.4699993 1.77 -0.0183604 -0.999831 1.0 +4161 1 1.72 0.0 21.2399998 0.0 0.413302 0.910594 1.0 +4162 1 1.72 1.77 23.0100002 0.0 0.896721 -0.442597 1.0 +4163 1 1.72 1.77 21.2399998 1.77 0.602859 -0.797848 1.0 +4164 1 1.72 0.0 23.0100002 1.77 -0.555015 0.83184 1.0 +4165 1 1.72 3.54 21.2399998 0.0 0.861271 -0.508146 1.0 +4166 1 1.72 5.31 23.0100002 0.0 -0.827573 0.561358 1.0 +4167 1 1.72 5.31 21.2399998 1.77 -0.948175 -0.317748 1.0 +4168 1 1.72 3.54 23.0100002 1.77 0.964396 -0.264461 1.0 +4169 1 1.72 7.0799999 21.2399998 0.0 -0.974275 0.225362 1.0 +4170 1 1.72 8.8500004 23.0100002 0.0 0.935955 -0.352121 1.0 +4171 1 1.72 8.8500004 21.2399998 1.77 0.750418 -0.660964 1.0 +4172 1 1.72 7.0799999 23.0100002 1.77 0.916428 -0.4002 1.0 +4173 1 1.72 10.6199999 21.2399998 0.0 0.91538 0.402591 1.0 +4174 1 1.72 12.3900004 23.0100002 0.0 -0.859466 0.511194 1.0 +4175 1 1.72 12.3900004 21.2399998 1.77 -0.555287 -0.831659 1.0 +4176 1 1.72 10.6199999 23.0100002 1.77 0.207272 -0.978283 1.0 +4177 1 1.72 14.1599999 21.2399998 0.0 0.857398 -0.514654 1.0 +4178 1 1.72 15.9300004 23.0100002 0.0 0.936873 0.34967 1.0 +4179 1 1.72 15.9300004 21.2399998 1.77 0.784568 -0.620043 1.0 +4180 1 1.72 14.1599999 23.0100002 1.77 0.89547 -0.445122 1.0 +4181 1 1.72 17.7000008 21.2399998 0.0 0.252741 0.967534 1.0 +4182 1 1.72 19.4699993 23.0100002 0.0 0.84118 0.540755 1.0 +4183 1 1.72 19.4699993 21.2399998 1.77 -0.999718 0.0237346 1.0 +4184 1 1.72 17.7000008 23.0100002 1.77 0.292675 0.956212 1.0 +4185 1 1.72 21.2399998 21.2399998 0.0 -0.935117 0.354338 1.0 +4186 1 1.72 23.0100002 23.0100002 0.0 -0.995583 0.0938906 1.0 +4187 1 1.72 23.0100002 21.2399998 1.77 -0.805178 0.593033 1.0 +4188 1 1.72 21.2399998 23.0100002 1.77 -0.714583 -0.699551 1.0 +4189 1 1.72 24.7800007 21.2399998 0.0 -0.622394 -0.782704 1.0 +4190 1 1.72 26.5499993 23.0100002 0.0 -0.339368 0.940654 1.0 +4191 1 1.72 26.5499993 21.2399998 1.77 -0.364913 0.931042 1.0 +4192 1 1.72 24.7800007 23.0100002 1.77 0.413938 -0.910305 1.0 +4193 1 1.72 0.0 24.7800007 0.0 0.941589 0.336764 1.0 +4194 1 1.72 1.77 26.5499993 0.0 -0.0877957 0.996139 1.0 +4195 1 1.72 1.77 24.7800007 1.77 0.500255 0.865878 1.0 +4196 1 1.72 0.0 26.5499993 1.77 0.958166 0.286213 1.0 +4197 1 1.72 3.54 24.7800007 0.0 -0.632287 0.774734 1.0 +4198 1 1.72 5.31 26.5499993 0.0 0.501879 -0.864938 1.0 +4199 1 1.72 5.31 24.7800007 1.77 0.86251 0.506039 1.0 +4200 1 1.72 3.54 26.5499993 1.77 -0.566216 -0.824257 1.0 +4201 1 1.72 7.0799999 24.7800007 0.0 0.998724 -0.0504941 1.0 +4202 1 1.72 8.8500004 26.5499993 0.0 0.996394 0.0848417 1.0 +4203 1 1.72 8.8500004 24.7800007 1.77 -0.404339 0.914609 1.0 +4204 1 1.72 7.0799999 26.5499993 1.77 0.813068 -0.582169 1.0 +4205 1 1.72 10.6199999 24.7800007 0.0 0.836673 0.547703 1.0 +4206 1 1.72 12.3900004 26.5499993 0.0 -0.999935 0.0114234 1.0 +4207 1 1.72 12.3900004 24.7800007 1.77 -0.272725 0.962092 1.0 +4208 1 1.72 10.6199999 26.5499993 1.77 0.192373 0.981322 1.0 +4209 1 1.72 14.1599999 24.7800007 0.0 -0.349785 0.93683 1.0 +4210 1 1.72 15.9300004 26.5499993 0.0 0.271929 -0.962317 1.0 +4211 1 1.72 15.9300004 24.7800007 1.77 0.107153 0.994243 1.0 +4212 1 1.72 14.1599999 26.5499993 1.77 0.593709 0.80468 1.0 +4213 1 1.72 17.7000008 24.7800007 0.0 -0.711199 0.702991 1.0 +4214 1 1.72 19.4699993 26.5499993 0.0 0.308245 0.951307 1.0 +4215 1 1.72 19.4699993 24.7800007 1.77 0.699562 0.714572 1.0 +4216 1 1.72 17.7000008 26.5499993 1.77 -0.389307 -0.921108 1.0 +4217 1 1.72 21.2399998 24.7800007 0.0 -0.639104 0.76912 1.0 +4218 1 1.72 23.0100002 26.5499993 0.0 -0.714226 0.699915 1.0 +4219 1 1.72 23.0100002 24.7800007 1.77 0.990529 -0.137302 1.0 +4220 1 1.72 21.2399998 26.5499993 1.77 0.657794 0.753197 1.0 +4221 1 1.72 24.7800007 24.7800007 0.0 -0.825371 -0.56459 1.0 +4222 1 1.72 26.5499993 26.5499993 0.0 -0.960574 -0.278026 1.0 +4223 1 1.72 26.5499993 24.7800007 1.77 0.768008 -0.64044 1.0 +4224 1 1.72 24.7800007 26.5499993 1.77 -0.937179 -0.348849 1.0 +4225 1 1.72 0.0 14.1599999 3.54 0.220793 -0.975321 1.0 +4226 1 1.72 1.77 15.9300004 3.54 0.723517 -0.690306 1.0 +4227 1 1.72 1.77 14.1599999 5.31 0.8586 0.512646 1.0 +4228 1 1.72 0.0 15.9300004 5.31 -0.210869 -0.977514 1.0 +4229 1 1.72 3.54 14.1599999 3.54 -0.0193038 0.999814 1.0 +4230 1 1.72 5.31 15.9300004 3.54 -0.982615 -0.185653 1.0 +4231 1 1.72 5.31 14.1599999 5.31 0.558535 0.829481 1.0 +4232 1 1.72 3.54 15.9300004 5.31 -0.720748 -0.693197 1.0 +4233 1 1.72 7.0799999 14.1599999 3.54 -0.933602 -0.358312 1.0 +4234 1 1.72 8.8500004 15.9300004 3.54 -0.657004 -0.753887 1.0 +4235 1 1.72 8.8500004 14.1599999 5.31 0.490843 -0.871248 1.0 +4236 1 1.72 7.0799999 15.9300004 5.31 -0.50993 0.860216 1.0 +4237 1 1.72 10.6199999 14.1599999 3.54 -0.838913 0.544266 1.0 +4238 1 1.72 12.3900004 15.9300004 3.54 -0.215562 -0.97649 1.0 +4239 1 1.72 12.3900004 14.1599999 5.31 -0.865487 0.500931 1.0 +4240 1 1.72 10.6199999 15.9300004 5.31 0.999822 -0.0188745 1.0 +4241 1 1.72 14.1599999 14.1599999 3.54 0.58226 -0.813002 1.0 +4242 1 1.72 15.9300004 15.9300004 3.54 -0.0112383 0.999937 1.0 +4243 1 1.72 15.9300004 14.1599999 5.31 0.168004 -0.985786 1.0 +4244 1 1.72 14.1599999 15.9300004 5.31 0.981524 -0.191338 1.0 +4245 1 1.72 17.7000008 14.1599999 3.54 -0.309345 0.95095 1.0 +4246 1 1.72 19.4699993 15.9300004 3.54 -0.617742 -0.786381 1.0 +4247 1 1.72 19.4699993 14.1599999 5.31 0.999106 0.0422655 1.0 +4248 1 1.72 17.7000008 15.9300004 5.31 0.598576 -0.801066 1.0 +4249 1 1.72 21.2399998 14.1599999 3.54 0.577322 -0.816517 1.0 +4250 1 1.72 23.0100002 15.9300004 3.54 -0.70337 -0.710824 1.0 +4251 1 1.72 23.0100002 14.1599999 5.31 -0.217011 -0.976169 1.0 +4252 1 1.72 21.2399998 15.9300004 5.31 0.859545 -0.51106 1.0 +4253 1 1.72 24.7800007 14.1599999 3.54 0.119424 0.992843 1.0 +4254 1 1.72 26.5499993 15.9300004 3.54 -0.872191 -0.489166 1.0 +4255 1 1.72 26.5499993 14.1599999 5.31 -0.755167 -0.655532 1.0 +4256 1 1.72 24.7800007 15.9300004 5.31 -0.904669 0.426114 1.0 +4257 1 1.72 0.0 17.7000008 3.54 0.232167 -0.972676 1.0 +4258 1 1.72 1.77 19.4699993 3.54 -0.722256 -0.691626 1.0 +4259 1 1.72 1.77 17.7000008 5.31 0.986938 -0.161102 1.0 +4260 1 1.72 0.0 19.4699993 5.31 0.0347523 0.999396 1.0 +4261 1 1.72 3.54 17.7000008 3.54 -0.504707 -0.863291 1.0 +4262 1 1.72 5.31 19.4699993 3.54 -0.0641604 0.99794 1.0 +4263 1 1.72 5.31 17.7000008 5.31 0.608147 0.793824 1.0 +4264 1 1.72 3.54 19.4699993 5.31 0.822451 -0.568836 1.0 +4265 1 1.72 7.0799999 17.7000008 3.54 0.389819 0.920891 1.0 +4266 1 1.72 8.8500004 19.4699993 3.54 -0.986125 0.166005 1.0 +4267 1 1.72 8.8500004 17.7000008 5.31 0.80558 0.592487 1.0 +4268 1 1.72 7.0799999 19.4699993 5.31 0.350884 0.936419 1.0 +4269 1 1.72 10.6199999 17.7000008 3.54 0.223458 -0.974714 1.0 +4270 1 1.72 12.3900004 19.4699993 3.54 -0.744226 -0.667928 1.0 +4271 1 1.72 12.3900004 17.7000008 5.31 0.949871 -0.312644 1.0 +4272 1 1.72 10.6199999 19.4699993 5.31 -0.896749 -0.442539 1.0 +4273 1 1.72 14.1599999 17.7000008 3.54 -0.0604458 0.998171 1.0 +4274 1 1.72 15.9300004 19.4699993 3.54 0.546442 -0.837497 1.0 +4275 1 1.72 15.9300004 17.7000008 5.31 0.948303 -0.317368 1.0 +4276 1 1.72 14.1599999 19.4699993 5.31 -0.542722 -0.839912 1.0 +4277 1 1.72 17.7000008 17.7000008 3.54 0.0814219 0.99668 1.0 +4278 1 1.72 19.4699993 19.4699993 3.54 -0.984948 -0.172852 1.0 +4279 1 1.72 19.4699993 17.7000008 5.31 0.941465 -0.337112 1.0 +4280 1 1.72 17.7000008 19.4699993 5.31 0.613064 -0.790033 1.0 +4281 1 1.72 21.2399998 17.7000008 3.54 0.998334 0.057693 1.0 +4282 1 1.72 23.0100002 19.4699993 3.54 -0.902318 -0.43107 1.0 +4283 1 1.72 23.0100002 17.7000008 5.31 -0.1925 0.981297 1.0 +4284 1 1.72 21.2399998 19.4699993 5.31 -0.774763 0.632252 1.0 +4285 1 1.72 24.7800007 17.7000008 3.54 0.906835 -0.421485 1.0 +4286 1 1.72 26.5499993 19.4699993 3.54 0.328293 -0.944576 1.0 +4287 1 1.72 26.5499993 17.7000008 5.31 -0.984445 0.175692 1.0 +4288 1 1.72 24.7800007 19.4699993 5.31 -0.264715 0.964327 1.0 +4289 1 1.72 0.0 21.2399998 3.54 -0.926043 0.377419 1.0 +4290 1 1.72 1.77 23.0100002 3.54 0.998491 -0.0549199 1.0 +4291 1 1.72 1.77 21.2399998 5.31 -0.88117 0.4728 1.0 +4292 1 1.72 0.0 23.0100002 5.31 -0.999879 -0.0155475 1.0 +4293 1 1.72 3.54 21.2399998 3.54 -0.770136 -0.63788 1.0 +4294 1 1.72 5.31 23.0100002 3.54 -0.915954 0.401283 1.0 +4295 1 1.72 5.31 21.2399998 5.31 0.329753 0.944067 1.0 +4296 1 1.72 3.54 23.0100002 5.31 0.405062 0.914289 1.0 +4297 1 1.72 7.0799999 21.2399998 3.54 -0.581242 -0.813731 1.0 +4298 1 1.72 8.8500004 23.0100002 3.54 -0.241851 0.970313 1.0 +4299 1 1.72 8.8500004 21.2399998 5.31 0.727368 -0.686248 1.0 +4300 1 1.72 7.0799999 23.0100002 5.31 0.942347 0.334637 1.0 +4301 1 1.72 10.6199999 21.2399998 3.54 0.910672 0.413131 1.0 +4302 1 1.72 12.3900004 23.0100002 3.54 0.868523 -0.495649 1.0 +4303 1 1.72 12.3900004 21.2399998 5.31 0.667425 -0.744677 1.0 +4304 1 1.72 10.6199999 23.0100002 5.31 -0.922523 -0.385943 1.0 +4305 1 1.72 14.1599999 21.2399998 3.54 0.813232 -0.58194 1.0 +4306 1 1.72 15.9300004 23.0100002 3.54 0.977512 0.21088 1.0 +4307 1 1.72 15.9300004 21.2399998 5.31 0.576592 0.817032 1.0 +4308 1 1.72 14.1599999 23.0100002 5.31 0.641659 -0.76699 1.0 +4309 1 1.72 17.7000008 21.2399998 3.54 -0.275909 -0.961184 1.0 +4310 1 1.72 19.4699993 23.0100002 3.54 0.432127 -0.901813 1.0 +4311 1 1.72 19.4699993 21.2399998 5.31 -0.627306 -0.778773 1.0 +4312 1 1.72 17.7000008 23.0100002 5.31 0.82271 -0.568461 1.0 +4313 1 1.72 21.2399998 21.2399998 3.54 -0.996538 0.0831426 1.0 +4314 1 1.72 23.0100002 23.0100002 3.54 0.649317 -0.760518 1.0 +4315 1 1.72 23.0100002 21.2399998 5.31 0.68562 0.727959 1.0 +4316 1 1.72 21.2399998 23.0100002 5.31 -0.701308 -0.712858 1.0 +4317 1 1.72 24.7800007 21.2399998 3.54 -0.629219 0.777228 1.0 +4318 1 1.72 26.5499993 23.0100002 3.54 0.566134 -0.824313 1.0 +4319 1 1.72 26.5499993 21.2399998 5.31 -0.807965 -0.58923 1.0 +4320 1 1.72 24.7800007 23.0100002 5.31 0.998685 -0.0512702 1.0 +4321 1 1.72 0.0 24.7800007 3.54 -0.617444 -0.786615 1.0 +4322 1 1.72 1.77 26.5499993 3.54 0.789807 -0.613355 1.0 +4323 1 1.72 1.77 24.7800007 5.31 0.592353 0.805678 1.0 +4324 1 1.72 0.0 26.5499993 5.31 0.409189 -0.912449 1.0 +4325 1 1.72 3.54 24.7800007 3.54 -0.892879 -0.450296 1.0 +4326 1 1.72 5.31 26.5499993 3.54 0.956091 0.293071 1.0 +4327 1 1.72 5.31 24.7800007 5.31 -0.530192 0.847877 1.0 +4328 1 1.72 3.54 26.5499993 5.31 -0.391099 0.920349 1.0 +4329 1 1.72 7.0799999 24.7800007 3.54 0.982678 -0.18532 1.0 +4330 1 1.72 8.8500004 26.5499993 3.54 0.928732 -0.370751 1.0 +4331 1 1.72 8.8500004 24.7800007 5.31 0.287833 0.957681 1.0 +4332 1 1.72 7.0799999 26.5499993 5.31 0.938433 -0.345461 1.0 +4333 1 1.72 10.6199999 24.7800007 3.54 -0.749022 0.662545 1.0 +4334 1 1.72 12.3900004 26.5499993 3.54 -0.975121 0.221672 1.0 +4335 1 1.72 12.3900004 24.7800007 5.31 0.69344 -0.720514 1.0 +4336 1 1.72 10.6199999 26.5499993 5.31 -0.212985 -0.977056 1.0 +4337 1 1.72 14.1599999 24.7800007 3.54 -0.812178 0.58341 1.0 +4338 1 1.72 15.9300004 26.5499993 3.54 -0.600953 0.799284 1.0 +4339 1 1.72 15.9300004 24.7800007 5.31 -0.396176 -0.918175 1.0 +4340 1 1.72 14.1599999 26.5499993 5.31 0.356889 0.934147 1.0 +4341 1 1.72 17.7000008 24.7800007 3.54 -0.116799 -0.993156 1.0 +4342 1 1.72 19.4699993 26.5499993 3.54 0.471961 -0.88162 1.0 +4343 1 1.72 19.4699993 24.7800007 5.31 -0.101547 -0.994831 1.0 +4344 1 1.72 17.7000008 26.5499993 5.31 0.0367154 0.999326 1.0 +4345 1 1.72 21.2399998 24.7800007 3.54 -0.948217 -0.317622 1.0 +4346 1 1.72 23.0100002 26.5499993 3.54 0.895641 -0.444777 1.0 +4347 1 1.72 23.0100002 24.7800007 5.31 -0.0371448 -0.99931 1.0 +4348 1 1.72 21.2399998 26.5499993 5.31 -0.952793 0.30362 1.0 +4349 1 1.72 24.7800007 24.7800007 3.54 0.45967 -0.88809 1.0 +4350 1 1.72 26.5499993 26.5499993 3.54 -0.350365 -0.936613 1.0 +4351 1 1.72 26.5499993 24.7800007 5.31 -0.892866 0.450323 1.0 +4352 1 1.72 24.7800007 26.5499993 5.31 -0.67909 0.734055 1.0 +4353 1 1.72 0.0 14.1599999 7.0799999 0.589449 0.807805 1.0 +4354 1 1.72 1.77 15.9300004 7.0799999 0.870129 -0.492825 1.0 +4355 1 1.72 1.77 14.1599999 8.8500004 -0.367552 0.930003 1.0 +4356 1 1.72 0.0 15.9300004 8.8500004 -0.543769 -0.839235 1.0 +4357 1 1.72 3.54 14.1599999 7.0799999 -0.77212 -0.635477 1.0 +4358 1 1.72 5.31 15.9300004 7.0799999 -0.99787 -0.0652354 1.0 +4359 1 1.72 5.31 14.1599999 8.8500004 -0.886636 -0.462467 1.0 +4360 1 1.72 3.54 15.9300004 8.8500004 -0.994376 -0.105912 1.0 +4361 1 1.72 7.0799999 14.1599999 7.0799999 -0.737213 0.67566 1.0 +4362 1 1.72 8.8500004 15.9300004 7.0799999 0.385867 -0.922554 1.0 +4363 1 1.72 8.8500004 14.1599999 8.8500004 -0.999483 -0.0321567 1.0 +4364 1 1.72 7.0799999 15.9300004 8.8500004 0.583191 0.812335 1.0 +4365 1 1.72 10.6199999 14.1599999 7.0799999 -0.944265 0.329185 1.0 +4366 1 1.72 12.3900004 15.9300004 7.0799999 -0.854283 0.519808 1.0 +4367 1 1.72 12.3900004 14.1599999 8.8500004 -0.999244 0.0388825 1.0 +4368 1 1.72 10.6199999 15.9300004 8.8500004 0.903759 -0.428042 1.0 +4369 1 1.72 14.1599999 14.1599999 7.0799999 -0.698679 0.715435 1.0 +4370 1 1.72 15.9300004 15.9300004 7.0799999 -0.0174386 0.999848 1.0 +4371 1 1.72 15.9300004 14.1599999 8.8500004 0.0749537 0.997187 1.0 +4372 1 1.72 14.1599999 15.9300004 8.8500004 0.276006 0.961156 1.0 +4373 1 1.72 17.7000008 14.1599999 7.0799999 -0.351932 0.936025 1.0 +4374 1 1.72 19.4699993 15.9300004 7.0799999 -0.997869 0.065244 1.0 +4375 1 1.72 19.4699993 14.1599999 8.8500004 -0.929908 -0.367793 1.0 +4376 1 1.72 17.7000008 15.9300004 8.8500004 0.826664 -0.562695 1.0 +4377 1 1.72 21.2399998 14.1599999 7.0799999 -0.692921 -0.721013 1.0 +4378 1 1.72 23.0100002 15.9300004 7.0799999 -0.194439 0.980915 1.0 +4379 1 1.72 23.0100002 14.1599999 8.8500004 -0.775177 -0.631745 1.0 +4380 1 1.72 21.2399998 15.9300004 8.8500004 -0.6128 0.790238 1.0 +4381 1 1.72 24.7800007 14.1599999 7.0799999 -0.150054 0.988678 1.0 +4382 1 1.72 26.5499993 15.9300004 7.0799999 0.424697 0.905336 1.0 +4383 1 1.72 26.5499993 14.1599999 8.8500004 0.608211 -0.793775 1.0 +4384 1 1.72 24.7800007 15.9300004 8.8500004 -0.531271 -0.847202 1.0 +4385 1 1.72 0.0 17.7000008 7.0799999 0.66678 -0.745254 1.0 +4386 1 1.72 1.77 19.4699993 7.0799999 0.946436 -0.322893 1.0 +4387 1 1.72 1.77 17.7000008 8.8500004 0.314708 -0.949189 1.0 +4388 1 1.72 0.0 19.4699993 8.8500004 -0.732267 0.681017 1.0 +4389 1 1.72 3.54 17.7000008 7.0799999 0.953049 0.302815 1.0 +4390 1 1.72 5.31 19.4699993 7.0799999 0.778245 -0.627961 1.0 +4391 1 1.72 5.31 17.7000008 8.8500004 0.103755 0.994603 1.0 +4392 1 1.72 3.54 19.4699993 8.8500004 -0.271773 -0.962361 1.0 +4393 1 1.72 7.0799999 17.7000008 7.0799999 -0.389329 -0.921099 1.0 +4394 1 1.72 8.8500004 19.4699993 7.0799999 0.952197 -0.305486 1.0 +4395 1 1.72 8.8500004 17.7000008 8.8500004 0.583921 -0.811811 1.0 +4396 1 1.72 7.0799999 19.4699993 8.8500004 0.974598 -0.223963 1.0 +4397 1 1.72 10.6199999 17.7000008 7.0799999 -0.978474 -0.206368 1.0 +4398 1 1.72 12.3900004 19.4699993 7.0799999 -0.681488 0.731829 1.0 +4399 1 1.72 12.3900004 17.7000008 8.8500004 0.711342 -0.702846 1.0 +4400 1 1.72 10.6199999 19.4699993 8.8500004 0.627751 0.778414 1.0 +4401 1 1.72 14.1599999 17.7000008 7.0799999 0.0316519 0.999499 1.0 +4402 1 1.72 15.9300004 19.4699993 7.0799999 0.953148 -0.302505 1.0 +4403 1 1.72 15.9300004 17.7000008 8.8500004 -0.95609 0.293072 1.0 +4404 1 1.72 14.1599999 19.4699993 8.8500004 0.999531 0.030625 1.0 +4405 1 1.72 17.7000008 17.7000008 7.0799999 0.197263 -0.980351 1.0 +4406 1 1.72 19.4699993 19.4699993 7.0799999 0.930382 0.366592 1.0 +4407 1 1.72 19.4699993 17.7000008 8.8500004 0.699475 0.714657 1.0 +4408 1 1.72 17.7000008 19.4699993 8.8500004 -0.74107 -0.671428 1.0 +4409 1 1.72 21.2399998 17.7000008 7.0799999 -0.864057 0.503394 1.0 +4410 1 1.72 23.0100002 19.4699993 7.0799999 0.0483361 -0.998831 1.0 +4411 1 1.72 23.0100002 17.7000008 8.8500004 0.714148 0.699995 1.0 +4412 1 1.72 21.2399998 19.4699993 8.8500004 -0.231711 -0.972785 1.0 +4413 1 1.72 24.7800007 17.7000008 7.0799999 0.806369 -0.591412 1.0 +4414 1 1.72 26.5499993 19.4699993 7.0799999 0.169041 0.985609 1.0 +4415 1 1.72 26.5499993 17.7000008 8.8500004 -0.748547 0.663082 1.0 +4416 1 1.72 24.7800007 19.4699993 8.8500004 0.64493 -0.764242 1.0 +4417 1 1.72 0.0 21.2399998 7.0799999 -0.379192 -0.925318 1.0 +4418 1 1.72 1.77 23.0100002 7.0799999 -0.499401 -0.866371 1.0 +4419 1 1.72 1.77 21.2399998 8.8500004 0.456295 0.889829 1.0 +4420 1 1.72 0.0 23.0100002 8.8500004 -0.685215 0.728341 1.0 +4421 1 1.72 3.54 21.2399998 7.0799999 0.75136 0.659893 1.0 +4422 1 1.72 5.31 23.0100002 7.0799999 0.698637 0.715477 1.0 +4423 1 1.72 5.31 21.2399998 8.8500004 0.089468 0.99599 1.0 +4424 1 1.72 3.54 23.0100002 8.8500004 0.903264 0.429085 1.0 +4425 1 1.72 7.0799999 21.2399998 7.0799999 0.849013 -0.528372 1.0 +4426 1 1.72 8.8500004 23.0100002 7.0799999 0.68244 -0.730941 1.0 +4427 1 1.72 8.8500004 21.2399998 8.8500004 0.427636 0.903951 1.0 +4428 1 1.72 7.0799999 23.0100002 8.8500004 0.382435 -0.923982 1.0 +4429 1 1.72 10.6199999 21.2399998 7.0799999 -0.602498 -0.79812 1.0 +4430 1 1.72 12.3900004 23.0100002 7.0799999 -0.743271 -0.66899 1.0 +4431 1 1.72 12.3900004 21.2399998 8.8500004 -0.812379 -0.58313 1.0 +4432 1 1.72 10.6199999 23.0100002 8.8500004 -0.893692 -0.448682 1.0 +4433 1 1.72 14.1599999 21.2399998 7.0799999 0.481535 0.876427 1.0 +4434 1 1.72 15.9300004 23.0100002 7.0799999 0.496276 -0.868165 1.0 +4435 1 1.72 15.9300004 21.2399998 8.8500004 -0.633558 -0.773695 1.0 +4436 1 1.72 14.1599999 23.0100002 8.8500004 -0.273075 -0.961993 1.0 +4437 1 1.72 17.7000008 21.2399998 7.0799999 0.91429 0.405059 1.0 +4438 1 1.72 19.4699993 23.0100002 7.0799999 0.718792 0.695225 1.0 +4439 1 1.72 19.4699993 21.2399998 8.8500004 -0.1156 -0.993296 1.0 +4440 1 1.72 17.7000008 23.0100002 8.8500004 -0.918692 -0.394974 1.0 +4441 1 1.72 21.2399998 21.2399998 7.0799999 0.976062 -0.217491 1.0 +4442 1 1.72 23.0100002 23.0100002 7.0799999 0.60564 0.795738 1.0 +4443 1 1.72 23.0100002 21.2399998 8.8500004 0.991695 0.128616 1.0 +4444 1 1.72 21.2399998 23.0100002 8.8500004 -0.819684 -0.572816 1.0 +4445 1 1.72 24.7800007 21.2399998 7.0799999 -0.434225 -0.900804 1.0 +4446 1 1.72 26.5499993 23.0100002 7.0799999 0.518628 -0.855 1.0 +4447 1 1.72 26.5499993 21.2399998 8.8500004 0.926145 -0.377169 1.0 +4448 1 1.72 24.7800007 23.0100002 8.8500004 0.969386 0.245541 1.0 +4449 1 1.72 0.0 24.7800007 7.0799999 -0.182025 0.983294 1.0 +4450 1 1.72 1.77 26.5499993 7.0799999 -0.653489 0.756936 1.0 +4451 1 1.72 1.77 24.7800007 8.8500004 0.265008 -0.964246 1.0 +4452 1 1.72 0.0 26.5499993 8.8500004 -0.882433 -0.470437 1.0 +4453 1 1.72 3.54 24.7800007 7.0799999 -0.847172 0.531319 1.0 +4454 1 1.72 5.31 26.5499993 7.0799999 0.743357 -0.668895 1.0 +4455 1 1.72 5.31 24.7800007 8.8500004 0.692142 -0.721761 1.0 +4456 1 1.72 3.54 26.5499993 8.8500004 0.46714 0.884183 1.0 +4457 1 1.72 7.0799999 24.7800007 7.0799999 0.537528 0.843246 1.0 +4458 1 1.72 8.8500004 26.5499993 7.0799999 -0.632278 -0.774742 1.0 +4459 1 1.72 8.8500004 24.7800007 8.8500004 -0.990357 0.13854 1.0 +4460 1 1.72 7.0799999 26.5499993 8.8500004 0.790854 0.612005 1.0 +4461 1 1.72 10.6199999 24.7800007 7.0799999 -0.75998 -0.649947 1.0 +4462 1 1.72 12.3900004 26.5499993 7.0799999 -0.811587 0.584232 1.0 +4463 1 1.72 12.3900004 24.7800007 8.8500004 -0.935379 0.353646 1.0 +4464 1 1.72 10.6199999 26.5499993 8.8500004 0.249472 0.968382 1.0 +4465 1 1.72 14.1599999 24.7800007 7.0799999 -0.99959 -0.0286383 1.0 +4466 1 1.72 15.9300004 26.5499993 7.0799999 -0.333542 -0.942735 1.0 +4467 1 1.72 15.9300004 24.7800007 8.8500004 0.996988 0.0775509 1.0 +4468 1 1.72 14.1599999 26.5499993 8.8500004 0.994077 0.108682 1.0 +4469 1 1.72 17.7000008 24.7800007 7.0799999 -0.820874 -0.57111 1.0 +4470 1 1.72 19.4699993 26.5499993 7.0799999 0.447196 0.894436 1.0 +4471 1 1.72 19.4699993 24.7800007 8.8500004 0.828337 -0.560231 1.0 +4472 1 1.72 17.7000008 26.5499993 8.8500004 -0.771982 0.635644 1.0 +4473 1 1.72 21.2399998 24.7800007 7.0799999 -0.794712 -0.606987 1.0 +4474 1 1.72 23.0100002 26.5499993 7.0799999 0.133751 0.991015 1.0 +4475 1 1.72 23.0100002 24.7800007 8.8500004 -0.75836 0.651835 1.0 +4476 1 1.72 21.2399998 26.5499993 8.8500004 0.231901 -0.972739 1.0 +4477 1 1.72 24.7800007 24.7800007 7.0799999 -0.87801 0.478642 1.0 +4478 1 1.72 26.5499993 26.5499993 7.0799999 0.679121 0.734026 1.0 +4479 1 1.72 26.5499993 24.7800007 8.8500004 -0.603507 0.797358 1.0 +4480 1 1.72 24.7800007 26.5499993 8.8500004 -0.216816 0.976213 1.0 +4481 1 1.72 0.0 14.1599999 10.6199999 0.908994 0.41681 1.0 +4482 1 1.72 1.77 15.9300004 10.6199999 -0.90057 0.434711 1.0 +4483 1 1.72 1.77 14.1599999 12.3900004 0.984598 -0.174836 1.0 +4484 1 1.72 0.0 15.9300004 12.3900004 0.0461737 -0.998933 1.0 +4485 1 1.72 3.54 14.1599999 10.6199999 -0.919527 0.393026 1.0 +4486 1 1.72 5.31 15.9300004 10.6199999 0.523208 0.852205 1.0 +4487 1 1.72 5.31 14.1599999 12.3900004 0.921577 -0.388195 1.0 +4488 1 1.72 3.54 15.9300004 12.3900004 -0.870544 -0.49209 1.0 +4489 1 1.72 7.0799999 14.1599999 10.6199999 0.937467 0.348074 1.0 +4490 1 1.72 8.8500004 15.9300004 10.6199999 0.997427 0.0716938 1.0 +4491 1 1.72 8.8500004 14.1599999 12.3900004 -0.396352 -0.918099 1.0 +4492 1 1.72 7.0799999 15.9300004 12.3900004 0.758783 -0.651343 1.0 +4493 1 1.72 10.6199999 14.1599999 10.6199999 -0.688254 0.72547 1.0 +4494 1 1.72 12.3900004 15.9300004 10.6199999 0.607432 -0.794372 1.0 +4495 1 1.72 12.3900004 14.1599999 12.3900004 0.69027 0.723552 1.0 +4496 1 1.72 10.6199999 15.9300004 12.3900004 0.553331 0.832961 1.0 +4497 1 1.72 14.1599999 14.1599999 10.6199999 -0.228975 -0.973432 1.0 +4498 1 1.72 15.9300004 15.9300004 10.6199999 0.794483 0.607286 1.0 +4499 1 1.72 15.9300004 14.1599999 12.3900004 -0.643544 -0.765409 1.0 +4500 1 1.72 14.1599999 15.9300004 12.3900004 -0.60014 -0.799895 1.0 +4501 1 1.72 17.7000008 14.1599999 10.6199999 -0.0501868 -0.99874 1.0 +4502 1 1.72 19.4699993 15.9300004 10.6199999 -0.371291 0.928517 1.0 +4503 1 1.72 19.4699993 14.1599999 12.3900004 -0.345316 -0.938486 1.0 +4504 1 1.72 17.7000008 15.9300004 12.3900004 0.962953 -0.269668 1.0 +4505 1 1.72 21.2399998 14.1599999 10.6199999 -0.653125 -0.75725 1.0 +4506 1 1.72 23.0100002 15.9300004 10.6199999 -0.999681 0.0252371 1.0 +4507 1 1.72 23.0100002 14.1599999 12.3900004 -0.761747 0.647875 1.0 +4508 1 1.72 21.2399998 15.9300004 12.3900004 -0.80914 -0.587616 1.0 +4509 1 1.72 24.7800007 14.1599999 10.6199999 -0.213704 -0.976899 1.0 +4510 1 1.72 26.5499993 15.9300004 10.6199999 -0.172547 -0.985001 1.0 +4511 1 1.72 26.5499993 14.1599999 12.3900004 -0.671755 0.740774 1.0 +4512 1 1.72 24.7800007 15.9300004 12.3900004 0.639133 -0.769096 1.0 +4513 1 1.72 0.0 17.7000008 10.6199999 0.919701 -0.39262 1.0 +4514 1 1.72 1.77 19.4699993 10.6199999 0.29967 -0.954043 1.0 +4515 1 1.72 1.77 17.7000008 12.3900004 -0.86833 -0.495987 1.0 +4516 1 1.72 0.0 19.4699993 12.3900004 -0.652729 -0.757592 1.0 +4517 1 1.72 3.54 17.7000008 10.6199999 -0.188558 -0.982062 1.0 +4518 1 1.72 5.31 19.4699993 10.6199999 0.451584 -0.892229 1.0 +4519 1 1.72 5.31 17.7000008 12.3900004 -0.479953 -0.877294 1.0 +4520 1 1.72 3.54 19.4699993 12.3900004 -0.931169 0.364588 1.0 +4521 1 1.72 7.0799999 17.7000008 10.6199999 1 -0.000774994 1.0 +4522 1 1.72 8.8500004 19.4699993 10.6199999 -0.758272 0.651938 1.0 +4523 1 1.72 8.8500004 17.7000008 12.3900004 0.557064 -0.83047 1.0 +4524 1 1.72 7.0799999 19.4699993 12.3900004 -0.949933 -0.312453 1.0 +4525 1 1.72 10.6199999 17.7000008 10.6199999 0.110061 0.993925 1.0 +4526 1 1.72 12.3900004 19.4699993 10.6199999 0.115398 0.993319 1.0 +4527 1 1.72 12.3900004 17.7000008 12.3900004 -0.665778 -0.74615 1.0 +4528 1 1.72 10.6199999 19.4699993 12.3900004 -0.334698 0.942325 1.0 +4529 1 1.72 14.1599999 17.7000008 10.6199999 0.424145 0.905594 1.0 +4530 1 1.72 15.9300004 19.4699993 10.6199999 0.618126 -0.786079 1.0 +4531 1 1.72 15.9300004 17.7000008 12.3900004 -0.936358 0.351046 1.0 +4532 1 1.72 14.1599999 19.4699993 12.3900004 0.38979 0.920904 1.0 +4533 1 1.72 17.7000008 17.7000008 10.6199999 0.4006 -0.916253 1.0 +4534 1 1.72 19.4699993 19.4699993 10.6199999 0.622408 0.782693 1.0 +4535 1 1.72 19.4699993 17.7000008 12.3900004 0.793847 -0.608117 1.0 +4536 1 1.72 17.7000008 19.4699993 12.3900004 -0.537975 0.842961 1.0 +4537 1 1.72 21.2399998 17.7000008 10.6199999 -0.556228 -0.83103 1.0 +4538 1 1.72 23.0100002 19.4699993 10.6199999 -0.872784 -0.488107 1.0 +4539 1 1.72 23.0100002 17.7000008 12.3900004 -0.345759 -0.938323 1.0 +4540 1 1.72 21.2399998 19.4699993 12.3900004 0.0260887 0.99966 1.0 +4541 1 1.72 24.7800007 17.7000008 10.6199999 0.943649 -0.330949 1.0 +4542 1 1.72 26.5499993 19.4699993 10.6199999 0.906226 0.422795 1.0 +4543 1 1.72 26.5499993 17.7000008 12.3900004 -0.653568 0.756868 1.0 +4544 1 1.72 24.7800007 19.4699993 12.3900004 0.363348 -0.931654 1.0 +4545 1 1.72 0.0 21.2399998 10.6199999 0.997162 0.0752915 1.0 +4546 1 1.72 1.77 23.0100002 10.6199999 0.811111 -0.584892 1.0 +4547 1 1.72 1.77 21.2399998 12.3900004 0.700551 -0.713602 1.0 +4548 1 1.72 0.0 23.0100002 12.3900004 0.515933 -0.856629 1.0 +4549 1 1.72 3.54 21.2399998 10.6199999 -0.662327 0.749215 1.0 +4550 1 1.72 5.31 23.0100002 10.6199999 0.901628 -0.432511 1.0 +4551 1 1.72 5.31 21.2399998 12.3900004 0.999667 0.025797 1.0 +4552 1 1.72 3.54 23.0100002 12.3900004 0.931109 -0.364742 1.0 +4553 1 1.72 7.0799999 21.2399998 10.6199999 -0.597114 -0.802157 1.0 +4554 1 1.72 8.8500004 23.0100002 10.6199999 0.793064 -0.609139 1.0 +4555 1 1.72 8.8500004 21.2399998 12.3900004 0.756695 -0.653768 1.0 +4556 1 1.72 7.0799999 23.0100002 12.3900004 0.720351 -0.693609 1.0 +4557 1 1.72 10.6199999 21.2399998 10.6199999 0.810855 0.585247 1.0 +4558 1 1.72 12.3900004 23.0100002 10.6199999 -0.0903136 0.995913 1.0 +4559 1 1.72 12.3900004 21.2399998 12.3900004 0.186442 -0.982466 1.0 +4560 1 1.72 10.6199999 23.0100002 12.3900004 -0.284874 -0.958565 1.0 +4561 1 1.72 14.1599999 21.2399998 10.6199999 -0.289868 0.957067 1.0 +4562 1 1.72 15.9300004 23.0100002 10.6199999 0.0838039 0.996482 1.0 +4563 1 1.72 15.9300004 21.2399998 12.3900004 0.591675 0.806176 1.0 +4564 1 1.72 14.1599999 23.0100002 12.3900004 0.999111 0.0421503 1.0 +4565 1 1.72 17.7000008 21.2399998 10.6199999 -0.146207 0.989254 1.0 +4566 1 1.72 19.4699993 23.0100002 10.6199999 -0.913395 0.407075 1.0 +4567 1 1.72 19.4699993 21.2399998 12.3900004 -0.503238 -0.864148 1.0 +4568 1 1.72 17.7000008 23.0100002 12.3900004 -0.124052 -0.992276 1.0 +4569 1 1.72 21.2399998 21.2399998 10.6199999 0.683509 0.729942 1.0 +4570 1 1.72 23.0100002 23.0100002 10.6199999 -0.979364 -0.202103 1.0 +4571 1 1.72 23.0100002 21.2399998 12.3900004 -0.593631 -0.804737 1.0 +4572 1 1.72 21.2399998 23.0100002 12.3900004 -0.390436 -0.92063 1.0 +4573 1 1.72 24.7800007 21.2399998 10.6199999 0.732179 -0.681113 1.0 +4574 1 1.72 26.5499993 23.0100002 10.6199999 0.824941 0.565219 1.0 +4575 1 1.72 26.5499993 21.2399998 12.3900004 0.148915 0.98885 1.0 +4576 1 1.72 24.7800007 23.0100002 12.3900004 0.632992 -0.774158 1.0 +4577 1 1.72 0.0 24.7800007 10.6199999 -0.813481 -0.581591 1.0 +4578 1 1.72 1.77 26.5499993 10.6199999 0.00527343 0.999986 1.0 +4579 1 1.72 1.77 24.7800007 12.3900004 -0.999527 -0.0307504 1.0 +4580 1 1.72 0.0 26.5499993 12.3900004 -0.985953 0.167026 1.0 +4581 1 1.72 3.54 24.7800007 10.6199999 -0.15577 0.987793 1.0 +4582 1 1.72 5.31 26.5499993 10.6199999 0.536408 0.843959 1.0 +4583 1 1.72 5.31 24.7800007 12.3900004 0.743861 -0.668334 1.0 +4584 1 1.72 3.54 26.5499993 12.3900004 -0.406549 -0.913629 1.0 +4585 1 1.72 7.0799999 24.7800007 10.6199999 -0.41531 -0.90968 1.0 +4586 1 1.72 8.8500004 26.5499993 10.6199999 0.903185 -0.429252 1.0 +4587 1 1.72 8.8500004 24.7800007 12.3900004 -0.800286 -0.599618 1.0 +4588 1 1.72 7.0799999 26.5499993 12.3900004 -0.546893 -0.837202 1.0 +4589 1 1.72 10.6199999 24.7800007 10.6199999 0.6517 0.758477 1.0 +4590 1 1.72 12.3900004 26.5499993 10.6199999 -0.521078 0.853509 1.0 +4591 1 1.72 12.3900004 24.7800007 12.3900004 0.355689 -0.934604 1.0 +4592 1 1.72 10.6199999 26.5499993 12.3900004 -0.359895 -0.932993 1.0 +4593 1 1.72 14.1599999 24.7800007 10.6199999 0.696541 -0.717517 1.0 +4594 1 1.72 15.9300004 26.5499993 10.6199999 0.297939 0.954585 1.0 +4595 1 1.72 15.9300004 24.7800007 12.3900004 -0.140014 0.99015 1.0 +4596 1 1.72 14.1599999 26.5499993 12.3900004 0.802136 0.597142 1.0 +4597 1 1.72 17.7000008 24.7800007 10.6199999 0.627523 0.778598 1.0 +4598 1 1.72 19.4699993 26.5499993 10.6199999 0.734195 0.678939 1.0 +4599 1 1.72 19.4699993 24.7800007 12.3900004 -0.496642 0.867956 1.0 +4600 1 1.72 17.7000008 26.5499993 12.3900004 0.144391 -0.989521 1.0 +4601 1 1.72 21.2399998 24.7800007 10.6199999 0.161764 -0.986829 1.0 +4602 1 1.72 23.0100002 26.5499993 10.6199999 0.992924 0.118749 1.0 +4603 1 1.72 23.0100002 24.7800007 12.3900004 -0.986063 0.166374 1.0 +4604 1 1.72 21.2399998 26.5499993 12.3900004 0.702052 0.712126 1.0 +4605 1 1.72 24.7800007 24.7800007 10.6199999 -0.960074 0.279745 1.0 +4606 1 1.72 26.5499993 26.5499993 10.6199999 0.983554 -0.180616 1.0 +4607 1 1.72 26.5499993 24.7800007 12.3900004 0.722759 -0.691101 1.0 +4608 1 1.72 24.7800007 26.5499993 12.3900004 -0.580057 0.814576 1.0 +4609 1 1.72 0.0 14.1599999 14.1599999 0.898495 -0.438984 1.0 +4610 1 1.72 1.77 15.9300004 14.1599999 0.898355 -0.43927 1.0 +4611 1 1.72 1.77 14.1599999 15.9300004 -0.999822 0.0188926 1.0 +4612 1 1.72 0.0 15.9300004 15.9300004 -0.653457 -0.756964 1.0 +4613 1 1.72 3.54 14.1599999 14.1599999 -0.719114 0.694892 1.0 +4614 1 1.72 5.31 15.9300004 14.1599999 0.479834 0.877359 1.0 +4615 1 1.72 5.31 14.1599999 15.9300004 -0.538514 -0.842617 1.0 +4616 1 1.72 3.54 15.9300004 15.9300004 -0.527295 0.849682 1.0 +4617 1 1.72 7.0799999 14.1599999 14.1599999 0.615282 0.788307 1.0 +4618 1 1.72 8.8500004 15.9300004 14.1599999 0.974251 0.225466 1.0 +4619 1 1.72 8.8500004 14.1599999 15.9300004 0.909249 0.416253 1.0 +4620 1 1.72 7.0799999 15.9300004 15.9300004 0.557205 0.830375 1.0 +4621 1 1.72 10.6199999 14.1599999 14.1599999 0.734293 -0.678833 1.0 +4622 1 1.72 12.3900004 15.9300004 14.1599999 -0.58749 0.809231 1.0 +4623 1 1.72 12.3900004 14.1599999 15.9300004 -0.306743 -0.951793 1.0 +4624 1 1.72 10.6199999 15.9300004 15.9300004 0.271723 -0.962376 1.0 +4625 1 1.72 14.1599999 14.1599999 14.1599999 0.976646 0.214856 1.0 +4626 1 1.72 15.9300004 15.9300004 14.1599999 0.72288 -0.690974 1.0 +4627 1 1.72 15.9300004 14.1599999 15.9300004 0.101237 0.994862 1.0 +4628 1 1.72 14.1599999 15.9300004 15.9300004 0.934698 0.355444 1.0 +4629 1 1.72 17.7000008 14.1599999 14.1599999 -0.780883 -0.624677 1.0 +4630 1 1.72 19.4699993 15.9300004 14.1599999 0.861882 0.507108 1.0 +4631 1 1.72 19.4699993 14.1599999 15.9300004 -0.909657 0.41536 1.0 +4632 1 1.72 17.7000008 15.9300004 15.9300004 0.979476 -0.20156 1.0 +4633 1 1.72 21.2399998 14.1599999 14.1599999 -0.979973 -0.199131 1.0 +4634 1 1.72 23.0100002 15.9300004 14.1599999 0.255641 0.966772 1.0 +4635 1 1.72 23.0100002 14.1599999 15.9300004 0.994045 0.10897 1.0 +4636 1 1.72 21.2399998 15.9300004 15.9300004 -0.804393 -0.594098 1.0 +4637 1 1.72 24.7800007 14.1599999 14.1599999 0.967582 -0.252559 1.0 +4638 1 1.72 26.5499993 15.9300004 14.1599999 0.769435 0.638725 1.0 +4639 1 1.72 26.5499993 14.1599999 15.9300004 0.272809 -0.962068 1.0 +4640 1 1.72 24.7800007 15.9300004 15.9300004 0.66758 0.744538 1.0 +4641 1 1.72 0.0 17.7000008 14.1599999 -0.999948 0.0102384 1.0 +4642 1 1.72 1.77 19.4699993 14.1599999 -0.414781 0.909921 1.0 +4643 1 1.72 1.77 17.7000008 15.9300004 -0.730587 0.682819 1.0 +4644 1 1.72 0.0 19.4699993 15.9300004 -0.652983 -0.757373 1.0 +4645 1 1.72 3.54 17.7000008 14.1599999 -0.505507 0.862823 1.0 +4646 1 1.72 5.31 19.4699993 14.1599999 -0.214487 0.976727 1.0 +4647 1 1.72 5.31 17.7000008 15.9300004 -0.629988 -0.776605 1.0 +4648 1 1.72 3.54 19.4699993 15.9300004 0.728578 -0.684962 1.0 +4649 1 1.72 7.0799999 17.7000008 14.1599999 0.598541 -0.801092 1.0 +4650 1 1.72 8.8500004 19.4699993 14.1599999 0.217028 -0.976165 1.0 +4651 1 1.72 8.8500004 17.7000008 15.9300004 -0.924673 0.380763 1.0 +4652 1 1.72 7.0799999 19.4699993 15.9300004 -0.949249 0.314526 1.0 +4653 1 1.72 10.6199999 17.7000008 14.1599999 -0.872514 -0.488589 1.0 +4654 1 1.72 12.3900004 19.4699993 14.1599999 0.234325 -0.972158 1.0 +4655 1 1.72 12.3900004 17.7000008 15.9300004 0.978999 0.203864 1.0 +4656 1 1.72 10.6199999 19.4699993 15.9300004 -0.716114 -0.697983 1.0 +4657 1 1.72 14.1599999 17.7000008 14.1599999 0.230999 -0.972954 1.0 +4658 1 1.72 15.9300004 19.4699993 14.1599999 0.711772 -0.702411 1.0 +4659 1 1.72 15.9300004 17.7000008 15.9300004 0.927654 0.37344 1.0 +4660 1 1.72 14.1599999 19.4699993 15.9300004 0.162511 0.986707 1.0 +4661 1 1.72 17.7000008 17.7000008 14.1599999 -0.464053 -0.885807 1.0 +4662 1 1.72 19.4699993 19.4699993 14.1599999 0.0203239 -0.999793 1.0 +4663 1 1.72 19.4699993 17.7000008 15.9300004 -0.752808 -0.65824 1.0 +4664 1 1.72 17.7000008 19.4699993 15.9300004 -0.113934 -0.993488 1.0 +4665 1 1.72 21.2399998 17.7000008 14.1599999 0.995299 0.0968465 1.0 +4666 1 1.72 23.0100002 19.4699993 14.1599999 0.825943 0.563753 1.0 +4667 1 1.72 23.0100002 17.7000008 15.9300004 -0.940301 0.340345 1.0 +4668 1 1.72 21.2399998 19.4699993 15.9300004 -0.941709 0.336429 1.0 +4669 1 1.72 24.7800007 17.7000008 14.1599999 0.0628844 -0.998021 1.0 +4670 1 1.72 26.5499993 19.4699993 14.1599999 -0.0214455 -0.99977 1.0 +4671 1 1.72 26.5499993 17.7000008 15.9300004 0.800256 -0.599659 1.0 +4672 1 1.72 24.7800007 19.4699993 15.9300004 -0.77575 0.631041 1.0 +4673 1 1.72 0.0 21.2399998 14.1599999 -0.519774 -0.854304 1.0 +4674 1 1.72 1.77 23.0100002 14.1599999 -0.994022 -0.109178 1.0 +4675 1 1.72 1.77 21.2399998 15.9300004 0.672958 0.739681 1.0 +4676 1 1.72 0.0 23.0100002 15.9300004 0.889674 0.456597 1.0 +4677 1 1.72 3.54 21.2399998 14.1599999 0.818423 -0.574616 1.0 +4678 1 1.72 5.31 23.0100002 14.1599999 -0.957733 0.287658 1.0 +4679 1 1.72 5.31 21.2399998 15.9300004 -0.645442 -0.763809 1.0 +4680 1 1.72 3.54 23.0100002 15.9300004 -0.975916 0.218145 1.0 +4681 1 1.72 7.0799999 21.2399998 14.1599999 -0.960305 0.27895 1.0 +4682 1 1.72 8.8500004 23.0100002 14.1599999 -0.939525 0.34248 1.0 +4683 1 1.72 8.8500004 21.2399998 15.9300004 0.603042 0.797709 1.0 +4684 1 1.72 7.0799999 23.0100002 15.9300004 0.697728 0.716363 1.0 +4685 1 1.72 10.6199999 21.2399998 14.1599999 0.981033 -0.193843 1.0 +4686 1 1.72 12.3900004 23.0100002 14.1599999 0.235213 -0.971944 1.0 +4687 1 1.72 12.3900004 21.2399998 15.9300004 0.950475 0.310802 1.0 +4688 1 1.72 10.6199999 23.0100002 15.9300004 -0.968579 0.248708 1.0 +4689 1 1.72 14.1599999 21.2399998 14.1599999 0.675919 -0.736976 1.0 +4690 1 1.72 15.9300004 23.0100002 14.1599999 -0.0863749 0.996263 1.0 +4691 1 1.72 15.9300004 21.2399998 15.9300004 0.906294 -0.422647 1.0 +4692 1 1.72 14.1599999 23.0100002 15.9300004 -0.724048 -0.689749 1.0 +4693 1 1.72 17.7000008 21.2399998 14.1599999 -0.742833 0.669477 1.0 +4694 1 1.72 19.4699993 23.0100002 14.1599999 0.561499 -0.827478 1.0 +4695 1 1.72 19.4699993 21.2399998 15.9300004 0.162316 -0.986739 1.0 +4696 1 1.72 17.7000008 23.0100002 15.9300004 -0.130022 -0.991511 1.0 +4697 1 1.72 21.2399998 21.2399998 14.1599999 0.98598 0.166862 1.0 +4698 1 1.72 23.0100002 23.0100002 14.1599999 -0.737623 -0.675212 1.0 +4699 1 1.72 23.0100002 21.2399998 15.9300004 0.951756 -0.306854 1.0 +4700 1 1.72 21.2399998 23.0100002 15.9300004 0.676021 -0.736882 1.0 +4701 1 1.72 24.7800007 21.2399998 14.1599999 0.999702 0.0244247 1.0 +4702 1 1.72 26.5499993 23.0100002 14.1599999 0.496668 0.86794 1.0 +4703 1 1.72 26.5499993 21.2399998 15.9300004 0.803789 0.594915 1.0 +4704 1 1.72 24.7800007 23.0100002 15.9300004 -0.999822 -0.0188456 1.0 +4705 1 1.72 0.0 24.7800007 14.1599999 -0.907671 -0.419682 1.0 +4706 1 1.72 1.77 26.5499993 14.1599999 -0.965801 -0.259283 1.0 +4707 1 1.72 1.77 24.7800007 15.9300004 -0.879901 0.475158 1.0 +4708 1 1.72 0.0 26.5499993 15.9300004 0.951565 -0.307449 1.0 +4709 1 1.72 3.54 24.7800007 14.1599999 0.0527975 0.998605 1.0 +4710 1 1.72 5.31 26.5499993 14.1599999 -0.702953 -0.711237 1.0 +4711 1 1.72 5.31 24.7800007 15.9300004 -0.647956 0.761678 1.0 +4712 1 1.72 3.54 26.5499993 15.9300004 0.99404 0.109016 1.0 +4713 1 1.72 7.0799999 24.7800007 14.1599999 -0.994139 0.108113 1.0 +4714 1 1.72 8.8500004 26.5499993 14.1599999 -0.47316 -0.880976 1.0 +4715 1 1.72 8.8500004 24.7800007 15.9300004 0.989064 -0.147486 1.0 +4716 1 1.72 7.0799999 26.5499993 15.9300004 -0.630752 -0.775985 1.0 +4717 1 1.72 10.6199999 24.7800007 14.1599999 0.841419 0.540382 1.0 +4718 1 1.72 12.3900004 26.5499993 14.1599999 -0.729401 0.684086 1.0 +4719 1 1.72 12.3900004 24.7800007 15.9300004 0.294335 0.955702 1.0 +4720 1 1.72 10.6199999 26.5499993 15.9300004 -0.985284 0.170927 1.0 +4721 1 1.72 14.1599999 24.7800007 14.1599999 0.950681 -0.310171 1.0 +4722 1 1.72 15.9300004 26.5499993 14.1599999 0.894618 -0.446831 1.0 +4723 1 1.72 15.9300004 24.7800007 15.9300004 -0.814836 -0.579692 1.0 +4724 1 1.72 14.1599999 26.5499993 15.9300004 0.923357 0.383942 1.0 +4725 1 1.72 17.7000008 24.7800007 14.1599999 -0.854541 0.519383 1.0 +4726 1 1.72 19.4699993 26.5499993 14.1599999 -0.666207 -0.745767 1.0 +4727 1 1.72 19.4699993 24.7800007 15.9300004 0.998296 -0.0583603 1.0 +4728 1 1.72 17.7000008 26.5499993 15.9300004 0.833738 0.552161 1.0 +4729 1 1.72 21.2399998 24.7800007 14.1599999 -0.996334 -0.0855453 1.0 +4730 1 1.72 23.0100002 26.5499993 14.1599999 -0.639059 -0.769158 1.0 +4731 1 1.72 23.0100002 24.7800007 15.9300004 0.910601 0.413287 1.0 +4732 1 1.72 21.2399998 26.5499993 15.9300004 0.992126 -0.125246 1.0 +4733 1 1.72 24.7800007 24.7800007 14.1599999 0.974517 -0.224313 1.0 +4734 1 1.72 26.5499993 26.5499993 14.1599999 0.646393 0.763005 1.0 +4735 1 1.72 26.5499993 24.7800007 15.9300004 -0.789694 0.6135 1.0 +4736 1 1.72 24.7800007 26.5499993 15.9300004 0.88136 -0.472445 1.0 +4737 1 1.72 0.0 14.1599999 17.7000008 -0.71052 -0.703677 1.0 +4738 1 1.72 1.77 15.9300004 17.7000008 -0.903994 -0.427545 1.0 +4739 1 1.72 1.77 14.1599999 19.4699993 -0.722258 -0.691624 0.9998646 +4740 1 1.72 0.0 15.9300004 19.4699993 -0.868595 -0.495523 0.9998646 +4741 1 1.72 3.54 14.1599999 17.7000008 -0.176732 0.984259 1.0 +4742 1 1.72 5.31 15.9300004 17.7000008 0.12352 -0.992342 1.0 +4743 1 1.72 5.31 14.1599999 19.4699993 -0.99653 0.0832297 0.9998646 +4744 1 1.72 3.54 15.9300004 19.4699993 -0.739522 -0.673132 0.9998646 +4745 1 1.72 7.0799999 14.1599999 17.7000008 0.963981 -0.265971 1.0 +4746 1 1.72 8.8500004 15.9300004 17.7000008 -0.814702 0.57988 1.0 +4747 1 1.72 8.8500004 14.1599999 19.4699993 0.98442 -0.175835 0.9998646 +4748 1 1.72 7.0799999 15.9300004 19.4699993 -0.987866 -0.15531 0.9998646 +4749 1 1.72 10.6199999 14.1599999 17.7000008 0.381502 -0.924368 1.0 +4750 1 1.72 12.3900004 15.9300004 17.7000008 -0.412419 -0.910995 1.0 +4751 1 1.72 12.3900004 14.1599999 19.4699993 -0.839682 0.543079 0.9998646 +4752 1 1.72 10.6199999 15.9300004 19.4699993 -0.913468 0.406909 0.9998646 +4753 1 1.72 14.1599999 14.1599999 17.7000008 0.142699 0.989766 1.0 +4754 1 1.72 15.9300004 15.9300004 17.7000008 -0.920861 -0.38989 1.0 +4755 1 1.72 15.9300004 14.1599999 19.4699993 0.623914 -0.781493 0.9998646 +4756 1 1.72 14.1599999 15.9300004 19.4699993 -0.828256 -0.56035 0.9998646 +4757 1 1.72 17.7000008 14.1599999 17.7000008 -0.258405 0.966037 1.0 +4758 1 1.72 19.4699993 15.9300004 17.7000008 0.74072 0.671814 1.0 +4759 1 1.72 19.4699993 14.1599999 19.4699993 0.641762 -0.766904 0.9998646 +4760 1 1.72 17.7000008 15.9300004 19.4699993 -0.989296 -0.145925 0.9998646 +4761 1 1.72 21.2399998 14.1599999 17.7000008 -0.810254 0.586079 1.0 +4762 1 1.72 23.0100002 15.9300004 17.7000008 0.655839 0.754901 1.0 +4763 1 1.72 23.0100002 14.1599999 19.4699993 0.998305 0.0581924 0.9998646 +4764 1 1.72 21.2399998 15.9300004 19.4699993 -0.76789 0.640581 0.9998646 +4765 1 1.72 24.7800007 14.1599999 17.7000008 -0.410016 -0.912078 1.0 +4766 1 1.72 26.5499993 15.9300004 17.7000008 0.911191 0.411984 1.0 +4767 1 1.72 26.5499993 14.1599999 19.4699993 0.328368 0.94455 0.9998646 +4768 1 1.72 24.7800007 15.9300004 19.4699993 -0.759067 -0.651012 0.9998646 +4769 1 1.72 0.0 17.7000008 17.7000008 -0.755623 0.655006 1.0 +4770 1 1.72 1.77 19.4699993 17.7000008 -0.558683 -0.829382 1.0 +4771 1 1.72 1.77 17.7000008 19.4699993 0.986182 -0.165668 0.9998646 +4772 1 1.72 0.0 19.4699993 19.4699993 -0.642325 0.766433 0.9998646 +4773 1 1.72 3.54 17.7000008 17.7000008 -0.844871 0.53497 1.0 +4774 1 1.72 5.31 19.4699993 17.7000008 0.48545 0.874264 1.0 +4775 1 1.72 5.31 17.7000008 19.4699993 0.57745 -0.816426 0.9998646 +4776 1 1.72 3.54 19.4699993 19.4699993 -0.584462 0.811421 0.9998646 +4777 1 1.72 7.0799999 17.7000008 17.7000008 -0.402171 0.915565 1.0 +4778 1 1.72 8.8500004 19.4699993 17.7000008 0.710853 0.70334 1.0 +4779 1 1.72 8.8500004 17.7000008 19.4699993 0.532986 -0.846124 0.9998646 +4780 1 1.72 7.0799999 19.4699993 19.4699993 0.700774 0.713383 0.9998646 +4781 1 1.72 10.6199999 17.7000008 17.7000008 0.0735889 0.997289 1.0 +4782 1 1.72 12.3900004 19.4699993 17.7000008 -0.986772 0.162111 1.0 +4783 1 1.72 12.3900004 17.7000008 19.4699993 -0.947271 -0.320433 0.9998646 +4784 1 1.72 10.6199999 19.4699993 19.4699993 -0.257096 -0.966386 0.9998646 +4785 1 1.72 14.1599999 17.7000008 17.7000008 -0.173897 -0.984764 1.0 +4786 1 1.72 15.9300004 19.4699993 17.7000008 -0.893974 -0.448119 1.0 +4787 1 1.72 15.9300004 17.7000008 19.4699993 0.498785 0.866726 0.9998646 +4788 1 1.72 14.1599999 19.4699993 19.4699993 0.227872 0.973691 0.9998646 +4789 1 1.72 17.7000008 17.7000008 17.7000008 -0.969279 0.245964 1.0 +4790 1 1.72 19.4699993 19.4699993 17.7000008 -0.444064 0.895995 1.0 +4791 1 1.72 19.4699993 17.7000008 19.4699993 0.839164 0.543878 0.9998646 +4792 1 1.72 17.7000008 19.4699993 19.4699993 -0.457329 0.889297 0.9998646 +4793 1 1.72 21.2399998 17.7000008 17.7000008 0.445656 0.895204 1.0 +4794 1 1.72 23.0100002 19.4699993 17.7000008 0.283655 0.958926 1.0 +4795 1 1.72 23.0100002 17.7000008 19.4699993 0.50898 0.860778 0.9998646 +4796 1 1.72 21.2399998 19.4699993 19.4699993 -0.620733 0.784022 0.9998646 +4797 1 1.72 24.7800007 17.7000008 17.7000008 -0.839294 0.543677 1.0 +4798 1 1.72 26.5499993 19.4699993 17.7000008 0.226712 0.973962 1.0 +4799 1 1.72 26.5499993 17.7000008 19.4699993 0.160581 -0.987023 0.9998646 +4800 1 1.72 24.7800007 19.4699993 19.4699993 -0.766613 0.64211 0.9998646 +4801 1 1.72 0.0 21.2399998 17.7000008 0.370123 -0.928983 1.0 +4802 1 1.72 1.77 23.0100002 17.7000008 -0.996751 -0.0805427 1.0 +4803 1 1.72 1.77 21.2399998 19.4699993 -0.877737 0.479143 0.9998646 +4804 1 1.72 0.0 23.0100002 19.4699993 -0.176344 -0.984329 0.9998646 +4805 1 1.72 3.54 21.2399998 17.7000008 -0.812291 -0.583252 1.0 +4806 1 1.72 5.31 23.0100002 17.7000008 -0.963973 -0.266002 1.0 +4807 1 1.72 5.31 21.2399998 19.4699993 0.438022 0.898964 0.9998646 +4808 1 1.72 3.54 23.0100002 19.4699993 0.936712 -0.350101 0.9998646 +4809 1 1.72 7.0799999 21.2399998 17.7000008 0.609551 -0.792747 1.0 +4810 1 1.72 8.8500004 23.0100002 17.7000008 0.705278 -0.708931 1.0 +4811 1 1.72 8.8500004 21.2399998 19.4699993 -0.958505 -0.285074 0.9998646 +4812 1 1.72 7.0799999 23.0100002 19.4699993 0.201802 -0.979426 0.9998646 +4813 1 1.72 10.6199999 21.2399998 17.7000008 -0.141119 -0.989993 1.0 +4814 1 1.72 12.3900004 23.0100002 17.7000008 -0.52444 0.851447 1.0 +4815 1 1.72 12.3900004 21.2399998 19.4699993 0.705299 0.70891 0.9998646 +4816 1 1.72 10.6199999 23.0100002 19.4699993 -0.381262 -0.924467 0.9998646 +4817 1 1.72 14.1599999 21.2399998 17.7000008 -0.843638 -0.536912 1.0 +4818 1 1.72 15.9300004 23.0100002 17.7000008 0.0410599 -0.999157 1.0 +4819 1 1.72 15.9300004 21.2399998 19.4699993 -0.0055479 -0.999985 0.9998646 +4820 1 1.72 14.1599999 23.0100002 19.4699993 0.926649 0.375927 0.9998646 +4821 1 1.72 17.7000008 21.2399998 17.7000008 0.595931 0.803036 1.0 +4822 1 1.72 19.4699993 23.0100002 17.7000008 0.518293 -0.855203 1.0 +4823 1 1.72 19.4699993 21.2399998 19.4699993 0.984962 -0.172773 0.9998646 +4824 1 1.72 17.7000008 23.0100002 19.4699993 -0.964206 0.265155 0.9998646 +4825 1 1.72 21.2399998 21.2399998 17.7000008 0.807127 0.590378 1.0 +4826 1 1.72 23.0100002 23.0100002 17.7000008 -0.812304 0.583234 1.0 +4827 1 1.72 23.0100002 21.2399998 19.4699993 -0.311821 0.950141 0.9998646 +4828 1 1.72 21.2399998 23.0100002 19.4699993 0.855357 0.518039 0.9998646 +4829 1 1.72 24.7800007 21.2399998 17.7000008 -0.0451344 -0.998981 1.0 +4830 1 1.72 26.5499993 23.0100002 17.7000008 0.801778 0.597622 1.0 +4831 1 1.72 26.5499993 21.2399998 19.4699993 0.173712 -0.984796 0.9998646 +4832 1 1.72 24.7800007 23.0100002 19.4699993 -0.147421 -0.989074 0.9998646 +4833 1 1.72 0.0 24.7800007 17.7000008 -0.96452 0.264009 1.0 +4834 1 1.72 1.77 26.5499993 17.7000008 -0.990408 -0.138174 1.0 +4835 1 1.72 1.77 24.7800007 19.4699993 -0.50363 0.863919 0.9998646 +4836 1 1.72 0.0 26.5499993 19.4699993 -0.888278 -0.459306 0.9998646 +4837 1 1.72 3.54 24.7800007 17.7000008 -0.69788 -0.716215 1.0 +4838 1 1.72 5.31 26.5499993 17.7000008 -0.984385 0.176028 1.0 +4839 1 1.72 5.31 24.7800007 19.4699993 -0.99621 -0.0869785 0.9998646 +4840 1 1.72 3.54 26.5499993 19.4699993 -0.632368 -0.774668 0.9998646 +4841 1 1.72 7.0799999 24.7800007 17.7000008 0.981394 0.192006 1.0 +4842 1 1.72 8.8500004 26.5499993 17.7000008 -0.823995 0.566597 1.0 +4843 1 1.72 8.8500004 24.7800007 19.4699993 -0.961219 0.275786 0.9998646 +4844 1 1.72 7.0799999 26.5499993 19.4699993 -0.730726 0.68267 0.9998646 +4845 1 1.72 10.6199999 24.7800007 17.7000008 -0.148554 -0.988904 1.0 +4846 1 1.72 12.3900004 26.5499993 17.7000008 0.989886 0.141863 1.0 +4847 1 1.72 12.3900004 24.7800007 19.4699993 0.722733 0.691127 0.9998646 +4848 1 1.72 10.6199999 26.5499993 19.4699993 0.739725 0.672909 0.9998646 +4849 1 1.72 14.1599999 24.7800007 17.7000008 0.139647 0.990201 1.0 +4850 1 1.72 15.9300004 26.5499993 17.7000008 0.72947 0.684013 1.0 +4851 1 1.72 15.9300004 24.7800007 19.4699993 0.804404 -0.594082 0.9998646 +4852 1 1.72 14.1599999 26.5499993 19.4699993 -0.19326 0.981147 0.9998646 +4853 1 1.72 17.7000008 24.7800007 17.7000008 0.745325 -0.666702 1.0 +4854 1 1.72 19.4699993 26.5499993 17.7000008 0.910565 -0.413365 1.0 +4855 1 1.72 19.4699993 24.7800007 19.4699993 -0.995491 0.0948576 0.9998646 +4856 1 1.72 17.7000008 26.5499993 19.4699993 0.58679 -0.809739 0.9998646 +4857 1 1.72 21.2399998 24.7800007 17.7000008 0.847549 -0.530718 1.0 +4858 1 1.72 23.0100002 26.5499993 17.7000008 0.155607 0.987819 1.0 +4859 1 1.72 23.0100002 24.7800007 19.4699993 -0.874717 -0.484635 0.9998646 +4860 1 1.72 21.2399998 26.5499993 19.4699993 0.843141 0.537693 0.9998646 +4861 1 1.72 24.7800007 24.7800007 17.7000008 0.0392297 -0.99923 1.0 +4862 1 1.72 26.5499993 26.5499993 17.7000008 -0.665476 -0.746419 1.0 +4863 1 1.72 26.5499993 24.7800007 19.4699993 -0.987315 -0.158773 0.9998646 +4864 1 1.72 24.7800007 26.5499993 19.4699993 -0.926055 -0.377388 0.9998646 +4865 1 1.72 0.0 14.1599999 21.2399998 -0.859299 0.511473 0.9508352 +4866 1 1.72 1.77 15.9300004 21.2399998 -0.947509 0.319728 0.9508352 +4867 1 1.72 1.77 14.1599999 23.0100002 -0.549143 -0.835728 0.8177586 +4868 1 1.72 0.0 15.9300004 23.0100002 -0.409049 0.912513 0.8177586 +4869 1 1.72 3.54 14.1599999 21.2399998 0.948492 0.316801 0.9508352 +4870 1 1.72 5.31 15.9300004 21.2399998 0.418075 0.908412 0.9508352 +4871 1 1.72 5.31 14.1599999 23.0100002 0.829361 -0.558713 0.8177586 +4872 1 1.72 3.54 15.9300004 23.0100002 0.680949 0.732331 0.8177586 +4873 1 1.72 7.0799999 14.1599999 21.2399998 0.421429 -0.906861 0.9508352 +4874 1 1.72 8.8500004 15.9300004 21.2399998 -0.679022 0.734118 0.9508352 +4875 1 1.72 8.8500004 14.1599999 23.0100002 0.877322 -0.479903 0.8177586 +4876 1 1.72 7.0799999 15.9300004 23.0100002 -0.0614811 -0.998108 0.8177586 +4877 1 1.72 10.6199999 14.1599999 21.2399998 -0.932853 -0.360258 0.9508352 +4878 1 1.72 12.3900004 15.9300004 21.2399998 -0.416156 0.909293 0.9508352 +4879 1 1.72 12.3900004 14.1599999 23.0100002 -0.9054 -0.42456 0.8177586 +4880 1 1.72 10.6199999 15.9300004 23.0100002 -0.910881 -0.41267 0.8177586 +4881 1 1.72 14.1599999 14.1599999 21.2399998 -0.9533 0.302024 0.9508352 +4882 1 1.72 15.9300004 15.9300004 21.2399998 0.672984 -0.739657 0.9508352 +4883 1 1.72 15.9300004 14.1599999 23.0100002 -0.371384 0.928479 0.8177586 +4884 1 1.72 14.1599999 15.9300004 23.0100002 0.983833 0.179087 0.8177586 +4885 1 1.72 17.7000008 14.1599999 21.2399998 0.608993 0.793175 0.9508352 +4886 1 1.72 19.4699993 15.9300004 21.2399998 -0.703806 -0.710393 0.9508352 +4887 1 1.72 19.4699993 14.1599999 23.0100002 0.556676 -0.83073 0.8177586 +4888 1 1.72 17.7000008 15.9300004 23.0100002 -0.50991 -0.860228 0.8177586 +4889 1 1.72 21.2399998 14.1599999 21.2399998 -0.458692 0.888595 0.9508352 +4890 1 1.72 23.0100002 15.9300004 21.2399998 0.140923 -0.99002 0.9508352 +4891 1 1.72 23.0100002 14.1599999 23.0100002 0.994933 -0.100543 0.8177586 +4892 1 1.72 21.2399998 15.9300004 23.0100002 -0.514367 -0.85757 0.8177586 +4893 1 1.72 24.7800007 14.1599999 21.2399998 0.611336 0.791371 0.9508352 +4894 1 1.72 26.5499993 15.9300004 21.2399998 0.614774 0.788704 0.9508352 +4895 1 1.72 26.5499993 14.1599999 23.0100002 -0.217201 0.976127 0.8177586 +4896 1 1.72 24.7800007 15.9300004 23.0100002 0.279073 -0.96027 0.8177586 +4897 1 1.72 0.0 17.7000008 21.2399998 -0.0555854 0.998454 0.9508352 +4898 1 1.72 1.77 19.4699993 21.2399998 0.696673 0.717389 0.9508352 +4899 1 1.72 1.77 17.7000008 23.0100002 0.180283 0.983615 0.8177586 +4900 1 1.72 0.0 19.4699993 23.0100002 -0.669533 -0.742782 0.8177586 +4901 1 1.72 3.54 17.7000008 21.2399998 -0.139767 0.990184 0.9508352 +4902 1 1.72 5.31 19.4699993 21.2399998 -0.994595 -0.103829 0.9508352 +4903 1 1.72 5.31 17.7000008 23.0100002 -0.583311 0.812249 0.8177586 +4904 1 1.72 3.54 19.4699993 23.0100002 0.945954 0.324299 0.8177586 +4905 1 1.72 7.0799999 17.7000008 21.2399998 0.859464 0.511195 0.9508352 +4906 1 1.72 8.8500004 19.4699993 21.2399998 0.537374 -0.843344 0.9508352 +4907 1 1.72 8.8500004 17.7000008 23.0100002 -0.6427 -0.766118 0.8177586 +4908 1 1.72 7.0799999 19.4699993 23.0100002 -0.986665 -0.162764 0.8177586 +4909 1 1.72 10.6199999 17.7000008 21.2399998 -0.992585 0.121553 0.9508352 +4910 1 1.72 12.3900004 19.4699993 21.2399998 -0.747558 0.664196 0.9508352 +4911 1 1.72 12.3900004 17.7000008 23.0100002 0.304539 -0.9525 0.8177586 +4912 1 1.72 10.6199999 19.4699993 23.0100002 -0.990568 0.137025 0.8177586 +4913 1 1.72 14.1599999 17.7000008 21.2399998 -0.619412 -0.785066 0.9508352 +4914 1 1.72 15.9300004 19.4699993 21.2399998 0.535863 -0.844305 0.9508352 +4915 1 1.72 15.9300004 17.7000008 23.0100002 -0.98722 0.159363 0.8177586 +4916 1 1.72 14.1599999 19.4699993 23.0100002 -0.529231 -0.848478 0.8177586 +4917 1 1.72 17.7000008 17.7000008 21.2399998 0.161865 -0.986813 0.9508352 +4918 1 1.72 19.4699993 19.4699993 21.2399998 -0.980679 -0.195622 0.9508352 +4919 1 1.72 19.4699993 17.7000008 23.0100002 -0.208298 -0.978065 0.8177586 +4920 1 1.72 17.7000008 19.4699993 23.0100002 0.998815 0.0486723 0.8177586 +4921 1 1.72 21.2399998 17.7000008 21.2399998 0.429036 0.903287 0.9508352 +4922 1 1.72 23.0100002 19.4699993 21.2399998 -0.794053 -0.607849 0.9508352 +4923 1 1.72 23.0100002 17.7000008 23.0100002 -0.658344 0.752717 0.8177586 +4924 1 1.72 21.2399998 19.4699993 23.0100002 -0.80656 0.591152 0.8177586 +4925 1 1.72 24.7800007 17.7000008 21.2399998 0.471104 -0.882078 0.9508352 +4926 1 1.72 26.5499993 19.4699993 21.2399998 -0.936966 -0.349419 0.9508352 +4927 1 1.72 26.5499993 17.7000008 23.0100002 0.01024 -0.999948 0.8177586 +4928 1 1.72 24.7800007 19.4699993 23.0100002 -0.705147 0.709062 0.8177586 +4929 1 1.72 0.0 21.2399998 21.2399998 0.546412 -0.837517 0.9508352 +4930 1 1.72 1.77 23.0100002 21.2399998 0.530285 0.847819 0.9508352 +4931 1 1.72 1.77 21.2399998 23.0100002 -0.666762 -0.745271 0.8177586 +4932 1 1.72 0.0 23.0100002 23.0100002 0.814231 0.580542 0.8177586 +4933 1 1.72 3.54 21.2399998 21.2399998 -0.766357 -0.642415 0.9508352 +4934 1 1.72 5.31 23.0100002 21.2399998 0.725931 -0.687768 0.9508352 +4935 1 1.72 5.31 21.2399998 23.0100002 -0.624618 0.78093 0.8177586 +4936 1 1.72 3.54 23.0100002 23.0100002 -0.388709 0.92136 0.8177586 +4937 1 1.72 7.0799999 21.2399998 21.2399998 0.749884 0.66157 0.9508352 +4938 1 1.72 8.8500004 23.0100002 21.2399998 -0.293017 0.956107 0.9508352 +4939 1 1.72 8.8500004 21.2399998 23.0100002 -0.929705 0.368305 0.8177586 +4940 1 1.72 7.0799999 23.0100002 23.0100002 -0.480512 -0.876988 0.8177586 +4941 1 1.72 10.6199999 21.2399998 21.2399998 -0.619122 0.785295 0.9508352 +4942 1 1.72 12.3900004 23.0100002 21.2399998 -0.779729 0.626117 0.9508352 +4943 1 1.72 12.3900004 21.2399998 23.0100002 -0.581943 0.81323 0.8177586 +4944 1 1.72 10.6199999 23.0100002 23.0100002 0.479238 -0.877685 0.8177586 +4945 1 1.72 14.1599999 21.2399998 21.2399998 0.931306 -0.364237 0.9508352 +4946 1 1.72 15.9300004 23.0100002 21.2399998 0.997542 -0.0700703 0.9508352 +4947 1 1.72 15.9300004 21.2399998 23.0100002 0.981493 0.191499 0.8177586 +4948 1 1.72 14.1599999 23.0100002 23.0100002 0.695362 0.71866 0.8177586 +4949 1 1.72 17.7000008 21.2399998 21.2399998 -0.991962 0.12654 0.9508352 +4950 1 1.72 19.4699993 23.0100002 21.2399998 -0.996948 -0.0780626 0.9508352 +4951 1 1.72 19.4699993 21.2399998 23.0100002 0.926065 0.377364 0.8177586 +4952 1 1.72 17.7000008 23.0100002 23.0100002 -0.0634509 0.997985 0.8177586 +4953 1 1.72 21.2399998 21.2399998 21.2399998 0.809001 -0.587807 0.9508352 +4954 1 1.72 23.0100002 23.0100002 21.2399998 0.0810413 -0.996711 0.9508352 +4955 1 1.72 23.0100002 21.2399998 23.0100002 0.444743 0.895658 0.8177586 +4956 1 1.72 21.2399998 23.0100002 23.0100002 0.576019 -0.817436 0.8177586 +4957 1 1.72 24.7800007 21.2399998 21.2399998 -0.104116 0.994565 0.9508352 +4958 1 1.72 26.5499993 23.0100002 21.2399998 -0.686861 -0.726789 0.9508352 +4959 1 1.72 26.5499993 21.2399998 23.0100002 -0.99817 -0.0604626 0.8177586 +4960 1 1.72 24.7800007 23.0100002 23.0100002 0.917693 -0.39729 0.8177586 +4961 1 1.72 0.0 24.7800007 21.2399998 0.689075 -0.72469 0.9508352 +4962 1 1.72 1.77 26.5499993 21.2399998 -0.9207 0.390272 0.9508352 +4963 1 1.72 1.77 24.7800007 23.0100002 0.882098 -0.471066 0.8177586 +4964 1 1.72 0.0 26.5499993 23.0100002 -0.187894 0.982189 0.8177586 +4965 1 1.72 3.54 24.7800007 21.2399998 0.804801 0.593545 0.9508352 +4966 1 1.72 5.31 26.5499993 21.2399998 0.769036 -0.639205 0.9508352 +4967 1 1.72 5.31 24.7800007 23.0100002 -0.830625 -0.556833 0.8177586 +4968 1 1.72 3.54 26.5499993 23.0100002 -0.501438 0.865193 0.8177586 +4969 1 1.72 7.0799999 24.7800007 21.2399998 -0.311265 0.950323 0.9508352 +4970 1 1.72 8.8500004 26.5499993 21.2399998 -0.702551 -0.711633 0.9508352 +4971 1 1.72 8.8500004 24.7800007 23.0100002 -0.964031 0.265788 0.8177586 +4972 1 1.72 7.0799999 26.5499993 23.0100002 -0.835662 0.549244 0.8177586 +4973 1 1.72 10.6199999 24.7800007 21.2399998 -0.996065 0.0886264 0.9508352 +4974 1 1.72 12.3900004 26.5499993 21.2399998 0.827753 -0.561092 0.9508352 +4975 1 1.72 12.3900004 24.7800007 23.0100002 -0.359947 0.932973 0.8177586 +4976 1 1.72 10.6199999 26.5499993 23.0100002 -0.9958 0.091554 0.8177586 +4977 1 1.72 14.1599999 24.7800007 21.2399998 -0.984559 0.17505 0.9508352 +4978 1 1.72 15.9300004 26.5499993 21.2399998 -0.964078 0.26562 0.9508352 +4979 1 1.72 15.9300004 24.7800007 23.0100002 -0.768137 -0.640286 0.8177586 +4980 1 1.72 14.1599999 26.5499993 23.0100002 -0.634836 0.772647 0.8177586 +4981 1 1.72 17.7000008 24.7800007 21.2399998 -0.694609 -0.719387 0.9508352 +4982 1 1.72 19.4699993 26.5499993 21.2399998 0.54219 0.840256 0.9508352 +4983 1 1.72 19.4699993 24.7800007 23.0100002 -0.791282 -0.611451 0.8177586 +4984 1 1.72 17.7000008 26.5499993 23.0100002 -0.256791 0.966467 0.8177586 +4985 1 1.72 21.2399998 24.7800007 21.2399998 -0.887382 0.461035 0.9508352 +4986 1 1.72 23.0100002 26.5499993 21.2399998 -0.235944 0.971767 0.9508352 +4987 1 1.72 23.0100002 24.7800007 23.0100002 -0.527684 0.849441 0.8177586 +4988 1 1.72 21.2399998 26.5499993 23.0100002 0.771936 0.6357 0.8177586 +4989 1 1.72 24.7800007 24.7800007 21.2399998 -0.719308 0.694691 0.9508352 +4990 1 1.72 26.5499993 26.5499993 21.2399998 0.483936 0.875103 0.9508352 +4991 1 1.72 26.5499993 24.7800007 23.0100002 0.918191 -0.396138 0.8177586 +4992 1 1.72 24.7800007 26.5499993 23.0100002 -0.997321 -0.0731492 0.8177586 +4993 1 1.72 0.0 14.1599999 24.7800007 0.649213 -0.760607 0.6123979 +4994 1 1.72 1.77 15.9300004 24.7800007 0.471464 0.881885 0.6123979 +4995 1 1.72 1.77 14.1599999 26.5499993 -0.953886 0.30017 0.3529058 +4996 1 1.72 0.0 15.9300004 26.5499993 -0.915811 -0.401608 0.3529058 +4997 1 1.72 3.54 14.1599999 24.7800007 0.769699 -0.638407 0.6123979 +4998 1 1.72 5.31 15.9300004 24.7800007 0.618394 -0.785868 0.6123979 +4999 1 1.72 5.31 14.1599999 26.5499993 0.430537 0.902573 0.3529058 +5000 1 1.72 3.54 15.9300004 26.5499993 -0.164837 -0.986321 0.3529058 +5001 1 1.72 7.0799999 14.1599999 24.7800007 -0.618317 -0.785929 0.6123979 +5002 1 1.72 8.8500004 15.9300004 24.7800007 -0.485147 0.874433 0.6123979 +5003 1 1.72 8.8500004 14.1599999 26.5499993 -0.76817 -0.640246 0.3529058 +5004 1 1.72 7.0799999 15.9300004 26.5499993 -0.718033 -0.696009 0.3529058 +5005 1 1.72 10.6199999 14.1599999 24.7800007 0.856403 -0.516308 0.6123979 +5006 1 1.72 12.3900004 15.9300004 24.7800007 0.784956 0.619552 0.6123979 +5007 1 1.72 12.3900004 14.1599999 26.5499993 -0.932373 0.361497 0.3529058 +5008 1 1.72 10.6199999 15.9300004 26.5499993 -0.402786 0.915294 0.3529058 +5009 1 1.72 14.1599999 14.1599999 24.7800007 -0.852333 -0.522999 0.6123979 +5010 1 1.72 15.9300004 15.9300004 24.7800007 0.503565 0.863957 0.6123979 +5011 1 1.72 15.9300004 14.1599999 26.5499993 -0.325636 0.945495 0.3529058 +5012 1 1.72 14.1599999 15.9300004 26.5499993 -0.999297 -0.0374935 0.3529058 +5013 1 1.72 17.7000008 14.1599999 24.7800007 -0.321973 -0.946749 0.6123979 +5014 1 1.72 19.4699993 15.9300004 24.7800007 -0.996288 0.0860804 0.6123979 +5015 1 1.72 19.4699993 14.1599999 26.5499993 -0.95317 0.302436 0.3529058 +5016 1 1.72 17.7000008 15.9300004 26.5499993 0.427529 0.904002 0.3529058 +5017 1 1.72 21.2399998 14.1599999 24.7800007 0.644001 -0.765025 0.6123979 +5018 1 1.72 23.0100002 15.9300004 24.7800007 0.939904 0.341439 0.6123979 +5019 1 1.72 23.0100002 14.1599999 26.5499993 0.896518 0.443007 0.3529058 +5020 1 1.72 21.2399998 15.9300004 26.5499993 0.179121 -0.983827 0.3529058 +5021 1 1.72 24.7800007 14.1599999 24.7800007 -0.937835 -0.347082 0.6123979 +5022 1 1.72 26.5499993 15.9300004 24.7800007 0.63078 0.775961 0.6123979 +5023 1 1.72 26.5499993 14.1599999 26.5499993 0.303892 -0.952706 0.3529058 +5024 1 1.72 24.7800007 15.9300004 26.5499993 0.961916 0.273344 0.3529058 +5025 1 1.72 0.0 17.7000008 24.7800007 -0.216547 -0.976272 0.6123979 +5026 1 1.72 1.77 19.4699993 24.7800007 -0.99581 0.091445 0.6123979 +5027 1 1.72 1.77 17.7000008 26.5499993 0.767442 -0.641118 0.3529058 +5028 1 1.72 0.0 19.4699993 26.5499993 0.00869188 -0.999962 0.3529058 +5029 1 1.72 3.54 17.7000008 24.7800007 0.500197 -0.865911 0.6123979 +5030 1 1.72 5.31 19.4699993 24.7800007 0.671199 0.741277 0.6123979 +5031 1 1.72 5.31 17.7000008 26.5499993 -0.906892 -0.421364 0.3529058 +5032 1 1.72 3.54 19.4699993 26.5499993 0.559857 0.828589 0.3529058 +5033 1 1.72 7.0799999 17.7000008 24.7800007 -0.1065 -0.994313 0.6123979 +5034 1 1.72 8.8500004 19.4699993 24.7800007 0.995668 0.0929837 0.6123979 +5035 1 1.72 8.8500004 17.7000008 26.5499993 -0.488411 0.872614 0.3529058 +5036 1 1.72 7.0799999 19.4699993 26.5499993 -0.247088 0.968993 0.3529058 +5037 1 1.72 10.6199999 17.7000008 24.7800007 -0.287187 0.957874 0.6123979 +5038 1 1.72 12.3900004 19.4699993 24.7800007 0.965967 -0.258666 0.6123979 +5039 1 1.72 12.3900004 17.7000008 26.5499993 -0.203482 0.979079 0.3529058 +5040 1 1.72 10.6199999 19.4699993 26.5499993 -0.321459 0.946923 0.3529058 +5041 1 1.72 14.1599999 17.7000008 24.7800007 0.340045 -0.940409 0.6123979 +5042 1 1.72 15.9300004 19.4699993 24.7800007 -0.556815 0.830637 0.6123979 +5043 1 1.72 15.9300004 17.7000008 26.5499993 0.932065 -0.362291 0.3529058 +5044 1 1.72 14.1599999 19.4699993 26.5499993 0.833157 -0.553036 0.3529058 +5045 1 1.72 17.7000008 17.7000008 24.7800007 -0.991443 -0.130537 0.6123979 +5046 1 1.72 19.4699993 19.4699993 24.7800007 -0.134961 0.990851 0.6123979 +5047 1 1.72 19.4699993 17.7000008 26.5499993 0.67943 0.73374 0.3529058 +5048 1 1.72 17.7000008 19.4699993 26.5499993 -0.973762 -0.227568 0.3529058 +5049 1 1.72 21.2399998 17.7000008 24.7800007 -0.544769 0.838586 0.6123979 +5050 1 1.72 23.0100002 19.4699993 24.7800007 0.943199 -0.332229 0.6123979 +5051 1 1.72 23.0100002 17.7000008 26.5499993 0.815557 -0.578677 0.3529058 +5052 1 1.72 21.2399998 19.4699993 26.5499993 -0.880082 -0.474822 0.3529058 +5053 1 1.72 24.7800007 17.7000008 24.7800007 0.757198 0.653185 0.6123979 +5054 1 1.72 26.5499993 19.4699993 24.7800007 0.698452 0.715657 0.6123979 +5055 1 1.72 26.5499993 17.7000008 26.5499993 0.185765 0.982594 0.3529058 +5056 1 1.72 24.7800007 19.4699993 26.5499993 0.827442 0.561552 0.3529058 +5057 1 1.72 0.0 21.2399998 24.7800007 0.0012874 -0.999999 0.6123979 +5058 1 1.72 1.77 23.0100002 24.7800007 -0.714463 -0.699673 0.6123979 +5059 1 1.72 1.77 21.2399998 26.5499993 -0.541319 0.840817 0.3529058 +5060 1 1.72 0.0 23.0100002 26.5499993 -0.819916 -0.572483 0.3529058 +5061 1 1.72 3.54 21.2399998 24.7800007 -0.685813 0.727778 0.6123979 +5062 1 1.72 5.31 23.0100002 24.7800007 0.706506 -0.707707 0.6123979 +5063 1 1.72 5.31 21.2399998 26.5499993 -0.721846 -0.692053 0.3529058 +5064 1 1.72 3.54 23.0100002 26.5499993 0.994997 -0.0999066 0.3529058 +5065 1 1.72 7.0799999 21.2399998 24.7800007 0.994778 -0.102062 0.6123979 +5066 1 1.72 8.8500004 23.0100002 24.7800007 -0.901532 0.432713 0.6123979 +5067 1 1.72 8.8500004 21.2399998 26.5499993 -0.758101 0.652137 0.3529058 +5068 1 1.72 7.0799999 23.0100002 26.5499993 0.545903 -0.837848 0.3529058 +5069 1 1.72 10.6199999 21.2399998 24.7800007 -0.311066 0.950388 0.6123979 +5070 1 1.72 12.3900004 23.0100002 24.7800007 -0.943213 0.332189 0.6123979 +5071 1 1.72 12.3900004 21.2399998 26.5499993 0.99872 0.0505823 0.3529058 +5072 1 1.72 10.6199999 23.0100002 26.5499993 -0.783184 0.621789 0.3529058 +5073 1 1.72 14.1599999 21.2399998 24.7800007 -0.34058 0.940215 0.6123979 +5074 1 1.72 15.9300004 23.0100002 24.7800007 -0.533482 0.845811 0.6123979 +5075 1 1.72 15.9300004 21.2399998 26.5499993 0.495343 0.868697 0.3529058 +5076 1 1.72 14.1599999 23.0100002 26.5499993 0.989277 0.146048 0.3529058 +5077 1 1.72 17.7000008 21.2399998 24.7800007 -0.364303 -0.931281 0.6123979 +5078 1 1.72 19.4699993 23.0100002 24.7800007 0.711971 -0.702209 0.6123979 +5079 1 1.72 19.4699993 21.2399998 26.5499993 -0.888562 0.458757 0.3529058 +5080 1 1.72 17.7000008 23.0100002 26.5499993 0.25824 0.966081 0.3529058 +5081 1 1.72 21.2399998 21.2399998 24.7800007 0.101864 -0.994798 0.6123979 +5082 1 1.72 23.0100002 23.0100002 24.7800007 -0.454654 0.890668 0.6123979 +5083 1 1.72 23.0100002 21.2399998 26.5499993 -0.711235 0.702954 0.3529058 +5084 1 1.72 21.2399998 23.0100002 26.5499993 -0.307221 0.951638 0.3529058 +5085 1 1.72 24.7800007 21.2399998 24.7800007 -0.724204 -0.689585 0.6123979 +5086 1 1.72 26.5499993 23.0100002 24.7800007 -0.325348 -0.945594 0.6123979 +5087 1 1.72 26.5499993 21.2399998 26.5499993 -0.705765 0.708446 0.3529058 +5088 1 1.72 24.7800007 23.0100002 26.5499993 0.891901 0.452231 0.3529058 +5089 1 1.72 0.0 24.7800007 24.7800007 -0.94282 -0.333302 0.6123979 +5090 1 1.72 1.77 26.5499993 24.7800007 -0.587454 -0.809258 0.6123979 +5091 1 1.72 1.77 24.7800007 26.5499993 0.781209 0.624269 0.3529058 +5092 1 1.72 0.0 26.5499993 26.5499993 -0.915198 0.403005 0.3529058 +5093 1 1.72 3.54 24.7800007 24.7800007 -0.574682 0.818377 0.6123979 +5094 1 1.72 5.31 26.5499993 24.7800007 -0.74574 0.666237 0.6123979 +5095 1 1.72 5.31 24.7800007 26.5499993 0.276988 -0.960873 0.3529058 +5096 1 1.72 3.54 26.5499993 26.5499993 0.722932 -0.690919 0.3529058 +5097 1 1.72 7.0799999 24.7800007 24.7800007 0.996475 -0.0838891 0.6123979 +5098 1 1.72 8.8500004 26.5499993 24.7800007 0.497023 -0.867737 0.6123979 +5099 1 1.72 8.8500004 24.7800007 26.5499993 -0.861946 0.507001 0.3529058 +5100 1 1.72 7.0799999 26.5499993 26.5499993 0.754572 -0.656218 0.3529058 +5101 1 1.72 10.6199999 24.7800007 24.7800007 -0.570168 0.821528 0.6123979 +5102 1 1.72 12.3900004 26.5499993 24.7800007 0.564689 -0.825304 0.6123979 +5103 1 1.72 12.3900004 24.7800007 26.5499993 0.610043 -0.792369 0.3529058 +5104 1 1.72 10.6199999 26.5499993 26.5499993 0.713516 -0.700639 0.3529058 +5105 1 1.72 14.1599999 24.7800007 24.7800007 -0.509962 0.860197 0.6123979 +5106 1 1.72 15.9300004 26.5499993 24.7800007 0.630623 -0.77609 0.6123979 +5107 1 1.72 15.9300004 24.7800007 26.5499993 -0.999923 0.0124217 0.3529058 +5108 1 1.72 14.1599999 26.5499993 26.5499993 -0.813024 0.58223 0.3529058 +5109 1 1.72 17.7000008 24.7800007 24.7800007 -0.131959 0.991255 0.6123979 +5110 1 1.72 19.4699993 26.5499993 24.7800007 -0.823885 0.566756 0.6123979 +5111 1 1.72 19.4699993 24.7800007 26.5499993 0.933887 0.357568 0.3529058 +5112 1 1.72 17.7000008 26.5499993 26.5499993 -0.705374 -0.708836 0.3529058 +5113 1 1.72 21.2399998 24.7800007 24.7800007 0.0150901 0.999886 0.6123979 +5114 1 1.72 23.0100002 26.5499993 24.7800007 0.596109 -0.802904 0.6123979 +5115 1 1.72 23.0100002 24.7800007 26.5499993 -0.899825 -0.436252 0.3529058 +5116 1 1.72 21.2399998 26.5499993 26.5499993 -0.519668 -0.854368 0.3529058 +5117 1 1.72 24.7800007 24.7800007 24.7800007 -0.751232 0.660038 0.6123979 +5118 1 1.72 26.5499993 26.5499993 24.7800007 0.797109 -0.603835 0.6123979 +5119 1 1.72 26.5499993 24.7800007 26.5499993 0.38916 -0.92117 0.3529058 +5120 1 1.72 24.7800007 26.5499993 26.5499993 0.999174 0.0406333 0.3529058 +5121 1 1.72 0.0 14.1599999 28.3199997 0.936404 0.350923 0.0622191 +5122 1 1.72 1.77 15.9300004 28.3199997 -0.920972 -0.38963 0.0622191 +5123 1 1.72 1.77 14.1599999 30.0900002 -0.506501 0.862239 -0.2339673 +5124 1 1.72 0.0 15.9300004 30.0900002 0.997989 0.0633857 -0.2339673 +5125 1 1.72 3.54 14.1599999 28.3199997 0.890646 0.454697 0.0622191 +5126 1 1.72 5.31 15.9300004 28.3199997 0.303706 -0.952766 0.0622191 +5127 1 1.72 5.31 14.1599999 30.0900002 -0.353716 -0.935353 -0.2339673 +5128 1 1.72 3.54 15.9300004 30.0900002 -0.516192 -0.856473 -0.2339673 +5129 1 1.72 7.0799999 14.1599999 28.3199997 -0.73024 0.68319 0.0622191 +5130 1 1.72 8.8500004 15.9300004 28.3199997 0.965554 0.260203 0.0622191 +5131 1 1.72 8.8500004 14.1599999 30.0900002 0.457961 0.888972 -0.2339673 +5132 1 1.72 7.0799999 15.9300004 30.0900002 -0.195705 -0.980663 -0.2339673 +5133 1 1.72 10.6199999 14.1599999 28.3199997 -0.932914 -0.360098 0.0622191 +5134 1 1.72 12.3900004 15.9300004 28.3199997 -0.484941 -0.874547 0.0622191 +5135 1 1.72 12.3900004 14.1599999 30.0900002 -0.674146 0.738598 -0.2339673 +5136 1 1.72 10.6199999 15.9300004 30.0900002 0.970753 0.240079 -0.2339673 +5137 1 1.72 14.1599999 14.1599999 28.3199997 -0.388955 -0.921257 0.0622191 +5138 1 1.72 15.9300004 15.9300004 28.3199997 -0.906629 0.421928 0.0622191 +5139 1 1.72 15.9300004 14.1599999 30.0900002 0.926955 -0.375173 -0.2339673 +5140 1 1.72 14.1599999 15.9300004 30.0900002 0.950179 0.311706 -0.2339673 +5141 1 1.72 17.7000008 14.1599999 28.3199997 0.689716 0.72408 0.0622191 +5142 1 1.72 19.4699993 15.9300004 28.3199997 0.732941 -0.680292 0.0622191 +5143 1 1.72 19.4699993 14.1599999 30.0900002 -0.825929 -0.563773 -0.2339673 +5144 1 1.72 17.7000008 15.9300004 30.0900002 0.431624 -0.902054 -0.2339673 +5145 1 1.72 21.2399998 14.1599999 28.3199997 -0.854854 -0.518869 0.0622191 +5146 1 1.72 23.0100002 15.9300004 28.3199997 0.482751 -0.875758 0.0622191 +5147 1 1.72 23.0100002 14.1599999 30.0900002 0.775163 -0.631761 -0.2339673 +5148 1 1.72 21.2399998 15.9300004 30.0900002 0.611785 -0.791024 -0.2339673 +5149 1 1.72 24.7800007 14.1599999 28.3199997 0.485109 -0.874454 0.0622191 +5150 1 1.72 26.5499993 15.9300004 28.3199997 -0.372972 -0.927843 0.0622191 +5151 1 1.72 26.5499993 14.1599999 30.0900002 0.982446 0.186549 -0.2339673 +5152 1 1.72 24.7800007 15.9300004 30.0900002 -0.393458 -0.919343 -0.2339673 +5153 1 1.72 0.0 17.7000008 28.3199997 -0.315445 -0.948944 0.0622191 +5154 1 1.72 1.77 19.4699993 28.3199997 -0.562917 0.826513 0.0622191 +5155 1 1.72 1.77 17.7000008 30.0900002 -0.987131 -0.159916 -0.2339673 +5156 1 1.72 0.0 19.4699993 30.0900002 -0.803633 0.595125 -0.2339673 +5157 1 1.72 3.54 17.7000008 28.3199997 -0.65859 -0.752502 0.0622191 +5158 1 1.72 5.31 19.4699993 28.3199997 0.999555 0.0298222 0.0622191 +5159 1 1.72 5.31 17.7000008 30.0900002 -0.948892 0.315602 -0.2339673 +5160 1 1.72 3.54 19.4699993 30.0900002 -0.341108 -0.940024 -0.2339673 +5161 1 1.72 7.0799999 17.7000008 28.3199997 -0.781295 0.624162 0.0622191 +5162 1 1.72 8.8500004 19.4699993 28.3199997 0.116526 -0.993188 0.0622191 +5163 1 1.72 8.8500004 17.7000008 30.0900002 -0.456192 -0.889881 -0.2339673 +5164 1 1.72 7.0799999 19.4699993 30.0900002 0.850451 -0.526055 -0.2339673 +5165 1 1.72 10.6199999 17.7000008 28.3199997 -0.816786 -0.57694 0.0622191 +5166 1 1.72 12.3900004 19.4699993 28.3199997 -0.87935 -0.476176 0.0622191 +5167 1 1.72 12.3900004 17.7000008 30.0900002 -0.207685 0.978196 -0.2339673 +5168 1 1.72 10.6199999 19.4699993 30.0900002 0.797819 -0.602898 -0.2339673 +5169 1 1.72 14.1599999 17.7000008 28.3199997 0.517279 -0.855817 0.0622191 +5170 1 1.72 15.9300004 19.4699993 28.3199997 -0.218342 0.975872 0.0622191 +5171 1 1.72 15.9300004 17.7000008 30.0900002 -0.870082 0.492906 -0.2339673 +5172 1 1.72 14.1599999 19.4699993 30.0900002 0.384419 -0.923159 -0.2339673 +5173 1 1.72 17.7000008 17.7000008 28.3199997 0.272317 -0.962208 0.0622191 +5174 1 1.72 19.4699993 19.4699993 28.3199997 -0.738903 0.673812 0.0622191 +5175 1 1.72 19.4699993 17.7000008 30.0900002 0.0900444 0.995938 -0.2339673 +5176 1 1.72 17.7000008 19.4699993 30.0900002 -0.987573 -0.157162 -0.2339673 +5177 1 1.72 21.2399998 17.7000008 28.3199997 -0.581449 -0.813583 0.0622191 +5178 1 1.72 23.0100002 19.4699993 28.3199997 -0.994211 0.107449 0.0622191 +5179 1 1.72 23.0100002 17.7000008 30.0900002 0.898962 -0.438027 -0.2339673 +5180 1 1.72 21.2399998 19.4699993 30.0900002 0.920183 0.391489 -0.2339673 +5181 1 1.72 24.7800007 17.7000008 28.3199997 0.677361 0.735651 0.0622191 +5182 1 1.72 26.5499993 19.4699993 28.3199997 -0.397341 0.917671 0.0622191 +5183 1 1.72 26.5499993 17.7000008 30.0900002 -0.985267 0.171024 -0.2339673 +5184 1 1.72 24.7800007 19.4699993 30.0900002 -0.980829 -0.19487 -0.2339673 +5185 1 1.72 0.0 21.2399998 28.3199997 0.0867301 0.996232 0.0622191 +5186 1 1.72 1.77 23.0100002 28.3199997 0.955104 -0.296271 0.0622191 +5187 1 1.72 1.77 21.2399998 30.0900002 0.630376 -0.77629 -0.2339673 +5188 1 1.72 0.0 23.0100002 30.0900002 0.993745 0.111669 -0.2339673 +5189 1 1.72 3.54 21.2399998 28.3199997 0.226838 0.973933 0.0622191 +5190 1 1.72 5.31 23.0100002 28.3199997 -0.928207 -0.372064 0.0622191 +5191 1 1.72 5.31 21.2399998 30.0900002 -0.964938 0.262479 -0.2339673 +5192 1 1.72 3.54 23.0100002 30.0900002 0.363426 -0.931623 -0.2339673 +5193 1 1.72 7.0799999 21.2399998 28.3199997 0.795243 0.606291 0.0622191 +5194 1 1.72 8.8500004 23.0100002 28.3199997 0.948913 -0.315538 0.0622191 +5195 1 1.72 8.8500004 21.2399998 30.0900002 -0.938523 0.345216 -0.2339673 +5196 1 1.72 7.0799999 23.0100002 30.0900002 0.728099 -0.685472 -0.2339673 +5197 1 1.72 10.6199999 21.2399998 28.3199997 -0.925696 0.378268 0.0622191 +5198 1 1.72 12.3900004 23.0100002 28.3199997 0.653074 0.757294 0.0622191 +5199 1 1.72 12.3900004 21.2399998 30.0900002 -0.946268 -0.323384 -0.2339673 +5200 1 1.72 10.6199999 23.0100002 30.0900002 -0.863035 -0.505145 -0.2339673 +5201 1 1.72 14.1599999 21.2399998 28.3199997 0.0380463 -0.999276 0.0622191 +5202 1 1.72 15.9300004 23.0100002 28.3199997 -0.989163 0.146823 0.0622191 +5203 1 1.72 15.9300004 21.2399998 30.0900002 0.712561 0.70161 -0.2339673 +5204 1 1.72 14.1599999 23.0100002 30.0900002 -0.526124 -0.850408 -0.2339673 +5205 1 1.72 17.7000008 21.2399998 28.3199997 0.984049 0.177899 0.0622191 +5206 1 1.72 19.4699993 23.0100002 28.3199997 -0.871017 0.491254 0.0622191 +5207 1 1.72 19.4699993 21.2399998 30.0900002 0.707706 -0.706507 -0.2339673 +5208 1 1.72 17.7000008 23.0100002 30.0900002 -0.258299 -0.966065 -0.2339673 +5209 1 1.72 21.2399998 21.2399998 28.3199997 0.45692 -0.889508 0.0622191 +5210 1 1.72 23.0100002 23.0100002 28.3199997 0.759946 -0.649986 0.0622191 +5211 1 1.72 23.0100002 21.2399998 30.0900002 -0.643073 0.765805 -0.2339673 +5212 1 1.72 21.2399998 23.0100002 30.0900002 0.347238 -0.937777 -0.2339673 +5213 1 1.72 24.7800007 21.2399998 28.3199997 -0.169673 0.9855 0.0622191 +5214 1 1.72 26.5499993 23.0100002 28.3199997 0.744735 0.66736 0.0622191 +5215 1 1.72 26.5499993 21.2399998 30.0900002 0.334654 -0.942341 -0.2339673 +5216 1 1.72 24.7800007 23.0100002 30.0900002 -0.968246 0.25 -0.2339673 +5217 1 1.72 0.0 24.7800007 28.3199997 0.915465 0.402397 0.0622191 +5218 1 1.72 1.77 26.5499993 28.3199997 0.80384 0.594846 0.0622191 +5219 1 1.72 1.77 24.7800007 30.0900002 0.66324 -0.748407 -0.2339673 +5220 1 1.72 0.0 26.5499993 30.0900002 0.750633 0.660719 -0.2339673 +5221 1 1.72 3.54 24.7800007 28.3199997 0.449802 -0.893128 0.0622191 +5222 1 1.72 5.31 26.5499993 28.3199997 -0.998079 -0.0619591 0.0622191 +5223 1 1.72 5.31 24.7800007 30.0900002 0.46524 -0.885185 -0.2339673 +5224 1 1.72 3.54 26.5499993 30.0900002 -0.720865 -0.693076 -0.2339673 +5225 1 1.72 7.0799999 24.7800007 28.3199997 0.333811 0.94264 0.0622191 +5226 1 1.72 8.8500004 26.5499993 28.3199997 0.956833 -0.290637 0.0622191 +5227 1 1.72 8.8500004 24.7800007 30.0900002 -0.318611 -0.947885 -0.2339673 +5228 1 1.72 7.0799999 26.5499993 30.0900002 0.88467 0.466218 -0.2339673 +5229 1 1.72 10.6199999 24.7800007 28.3199997 -0.434117 -0.900856 0.0622191 +5230 1 1.72 12.3900004 26.5499993 28.3199997 0.281938 0.959433 0.0622191 +5231 1 1.72 12.3900004 24.7800007 30.0900002 -0.680162 -0.733062 -0.2339673 +5232 1 1.72 10.6199999 26.5499993 30.0900002 -0.409279 -0.912409 -0.2339673 +5233 1 1.72 14.1599999 24.7800007 28.3199997 0.343407 0.939187 0.0622191 +5234 1 1.72 15.9300004 26.5499993 28.3199997 0.198347 -0.980132 0.0622191 +5235 1 1.72 15.9300004 24.7800007 30.0900002 0.497449 0.867493 -0.2339673 +5236 1 1.72 14.1599999 26.5499993 30.0900002 0.999964 -0.00851605 -0.2339673 +5237 1 1.72 17.7000008 24.7800007 28.3199997 0.768382 0.639991 0.0622191 +5238 1 1.72 19.4699993 26.5499993 28.3199997 0.966463 -0.256808 0.0622191 +5239 1 1.72 19.4699993 24.7800007 30.0900002 0.887957 0.459926 -0.2339673 +5240 1 1.72 17.7000008 26.5499993 30.0900002 -0.386982 0.922087 -0.2339673 +5241 1 1.72 21.2399998 24.7800007 28.3199997 -0.256382 0.966576 0.0622191 +5242 1 1.72 23.0100002 26.5499993 28.3199997 0.985861 0.167563 0.0622191 +5243 1 1.72 23.0100002 24.7800007 30.0900002 -0.81267 0.582724 -0.2339673 +5244 1 1.72 21.2399998 26.5499993 30.0900002 -0.800487 -0.59935 -0.2339673 +5245 1 1.72 24.7800007 24.7800007 28.3199997 -0.644728 0.764412 0.0622191 +5246 1 1.72 26.5499993 26.5499993 28.3199997 0.960616 0.277881 0.0622191 +5247 1 1.72 26.5499993 24.7800007 30.0900002 -0.806771 -0.590864 -0.2339673 +5248 1 1.72 24.7800007 26.5499993 30.0900002 0.67102 -0.741439 -0.2339673 +5249 1 1.72 0.0 14.1599999 31.8600006 -0.998507 0.0546209 -0.5094728 +5250 1 1.72 1.77 15.9300004 31.8600006 0.909033 0.416725 -0.5094728 +5251 1 1.72 1.77 14.1599999 33.6300011 -0.466077 -0.884744 -0.7399443 +5252 1 1.72 0.0 15.9300004 33.6300011 0.618832 0.785523 -0.7399443 +5253 1 1.72 3.54 14.1599999 31.8600006 0.864393 -0.502817 -0.5094728 +5254 1 1.72 5.31 15.9300004 31.8600006 -0.676238 -0.736683 -0.5094728 +5255 1 1.72 5.31 14.1599999 33.6300011 0.624955 -0.780661 -0.7399443 +5256 1 1.72 3.54 15.9300004 33.6300011 -0.829168 -0.559 -0.7399443 +5257 1 1.72 7.0799999 14.1599999 31.8600006 -0.28926 -0.957251 -0.5094728 +5258 1 1.72 8.8500004 15.9300004 31.8600006 0.733776 0.679392 -0.5094728 +5259 1 1.72 8.8500004 14.1599999 33.6300011 -0.11972 -0.992808 -0.7399443 +5260 1 1.72 7.0799999 15.9300004 33.6300011 -0.197605 0.980282 -0.7399443 +5261 1 1.72 10.6199999 14.1599999 31.8600006 0.649865 -0.76005 -0.5094728 +5262 1 1.72 12.3900004 15.9300004 31.8600006 0.892295 -0.451453 -0.5094728 +5263 1 1.72 12.3900004 14.1599999 33.6300011 0.270802 -0.962635 -0.7399443 +5264 1 1.72 10.6199999 15.9300004 33.6300011 -0.616011 -0.787737 -0.7399443 +5265 1 1.72 14.1599999 14.1599999 31.8600006 0.153639 0.988127 -0.5094728 +5266 1 1.72 15.9300004 15.9300004 31.8600006 -0.691492 -0.722384 -0.5094728 +5267 1 1.72 15.9300004 14.1599999 33.6300011 -0.991338 -0.131334 -0.7399443 +5268 1 1.72 14.1599999 15.9300004 33.6300011 0.697075 0.716999 -0.7399443 +5269 1 1.72 17.7000008 14.1599999 31.8600006 -0.0811343 0.996703 -0.5094728 +5270 1 1.72 19.4699993 15.9300004 31.8600006 -0.338332 -0.941027 -0.5094728 +5271 1 1.72 19.4699993 14.1599999 33.6300011 0.209732 0.977759 -0.7399443 +5272 1 1.72 17.7000008 15.9300004 33.6300011 0.220159 0.975464 -0.7399443 +5273 1 1.72 21.2399998 14.1599999 31.8600006 -0.715425 -0.698689 -0.5094728 +5274 1 1.72 23.0100002 15.9300004 31.8600006 -0.292528 0.956257 -0.5094728 +5275 1 1.72 23.0100002 14.1599999 33.6300011 0.392585 -0.919716 -0.7399443 +5276 1 1.72 21.2399998 15.9300004 33.6300011 0.871122 0.491066 -0.7399443 +5277 1 1.72 24.7800007 14.1599999 31.8600006 -0.446814 -0.894627 -0.5094728 +5278 1 1.72 26.5499993 15.9300004 31.8600006 -0.16761 -0.985853 -0.5094728 +5279 1 1.72 26.5499993 14.1599999 33.6300011 0.988968 -0.148132 -0.7399443 +5280 1 1.72 24.7800007 15.9300004 33.6300011 -0.142166 -0.989843 -0.7399443 +5281 1 1.72 0.0 17.7000008 31.8600006 -0.0817241 0.996655 -0.5094728 +5282 1 1.72 1.77 19.4699993 31.8600006 -0.215095 0.976593 -0.5094728 +5283 1 1.72 1.77 17.7000008 33.6300011 -0.651519 -0.758632 -0.7399443 +5284 1 1.72 0.0 19.4699993 33.6300011 0.0251259 -0.999684 -0.7399443 +5285 1 1.72 3.54 17.7000008 31.8600006 0.0344304 -0.999407 -0.5094728 +5286 1 1.72 5.31 19.4699993 31.8600006 -0.509912 0.860226 -0.5094728 +5287 1 1.72 5.31 17.7000008 33.6300011 -0.464734 0.88545 -0.7399443 +5288 1 1.72 3.54 19.4699993 33.6300011 0.386294 -0.922376 -0.7399443 +5289 1 1.72 7.0799999 17.7000008 31.8600006 -0.426555 0.904462 -0.5094728 +5290 1 1.72 8.8500004 19.4699993 31.8600006 0.865532 0.500854 -0.5094728 +5291 1 1.72 8.8500004 17.7000008 33.6300011 0.942082 0.335383 -0.7399443 +5292 1 1.72 7.0799999 19.4699993 33.6300011 -0.0418509 0.999124 -0.7399443 +5293 1 1.72 10.6199999 17.7000008 31.8600006 -0.789801 0.613363 -0.5094728 +5294 1 1.72 12.3900004 19.4699993 31.8600006 -0.979234 0.202734 -0.5094728 +5295 1 1.72 12.3900004 17.7000008 33.6300011 0.698459 -0.71565 -0.7399443 +5296 1 1.72 10.6199999 19.4699993 33.6300011 0.790094 -0.612986 -0.7399443 +5297 1 1.72 14.1599999 17.7000008 31.8600006 0.804675 0.593715 -0.5094728 +5298 1 1.72 15.9300004 19.4699993 31.8600006 -0.780968 -0.624572 -0.5094728 +5299 1 1.72 15.9300004 17.7000008 33.6300011 -0.700425 0.713726 -0.7399443 +5300 1 1.72 14.1599999 19.4699993 33.6300011 0.974495 0.224408 -0.7399443 +5301 1 1.72 17.7000008 17.7000008 31.8600006 -0.297954 -0.95458 -0.5094728 +5302 1 1.72 19.4699993 19.4699993 31.8600006 0.884182 0.467143 -0.5094728 +5303 1 1.72 19.4699993 17.7000008 33.6300011 -0.256865 -0.966447 -0.7399443 +5304 1 1.72 17.7000008 19.4699993 33.6300011 -0.804755 -0.593607 -0.7399443 +5305 1 1.72 21.2399998 17.7000008 31.8600006 0.450956 -0.892546 -0.5094728 +5306 1 1.72 23.0100002 19.4699993 31.8600006 -0.397426 0.917634 -0.5094728 +5307 1 1.72 23.0100002 17.7000008 33.6300011 0.312389 -0.949954 -0.7399443 +5308 1 1.72 21.2399998 19.4699993 33.6300011 0.959131 -0.282964 -0.7399443 +5309 1 1.72 24.7800007 17.7000008 31.8600006 -0.98402 0.178059 -0.5094728 +5310 1 1.72 26.5499993 19.4699993 31.8600006 -0.727382 0.686233 -0.5094728 +5311 1 1.72 26.5499993 17.7000008 33.6300011 -0.0703547 -0.997522 -0.7399443 +5312 1 1.72 24.7800007 19.4699993 33.6300011 -0.990546 0.137184 -0.7399443 +5313 1 1.72 0.0 21.2399998 31.8600006 0.460899 0.887453 -0.5094728 +5314 1 1.72 1.77 23.0100002 31.8600006 -0.76979 0.638298 -0.5094728 +5315 1 1.72 1.77 21.2399998 33.6300011 0.225061 -0.974345 -0.7399443 +5316 1 1.72 0.0 23.0100002 33.6300011 0.620394 0.78429 -0.7399443 +5317 1 1.72 3.54 21.2399998 31.8600006 0.773402 0.633916 -0.5094728 +5318 1 1.72 5.31 23.0100002 31.8600006 0.976168 -0.217015 -0.5094728 +5319 1 1.72 5.31 21.2399998 33.6300011 -0.81219 -0.583393 -0.7399443 +5320 1 1.72 3.54 23.0100002 33.6300011 -0.569992 -0.821651 -0.7399443 +5321 1 1.72 7.0799999 21.2399998 31.8600006 0.944218 0.32932 -0.5094728 +5322 1 1.72 8.8500004 23.0100002 31.8600006 -0.98898 -0.148048 -0.5094728 +5323 1 1.72 8.8500004 21.2399998 33.6300011 -0.982641 -0.185519 -0.7399443 +5324 1 1.72 7.0799999 23.0100002 33.6300011 0.449101 -0.893481 -0.7399443 +5325 1 1.72 10.6199999 21.2399998 31.8600006 0.39586 0.918311 -0.5094728 +5326 1 1.72 12.3900004 23.0100002 31.8600006 -0.556925 0.830563 -0.5094728 +5327 1 1.72 12.3900004 21.2399998 33.6300011 -0.998583 -0.0532254 -0.7399443 +5328 1 1.72 10.6199999 23.0100002 33.6300011 0.965261 0.261287 -0.7399443 +5329 1 1.72 14.1599999 21.2399998 31.8600006 0.917713 -0.397244 -0.5094728 +5330 1 1.72 15.9300004 23.0100002 31.8600006 0.675071 0.737753 -0.5094728 +5331 1 1.72 15.9300004 21.2399998 33.6300011 0.737474 0.675376 -0.7399443 +5332 1 1.72 14.1599999 23.0100002 33.6300011 0.840918 -0.541162 -0.7399443 +5333 1 1.72 17.7000008 21.2399998 31.8600006 -0.902854 0.429947 -0.5094728 +5334 1 1.72 19.4699993 23.0100002 31.8600006 -0.844756 0.535152 -0.5094728 +5335 1 1.72 19.4699993 21.2399998 33.6300011 0.143014 0.989721 -0.7399443 +5336 1 1.72 17.7000008 23.0100002 33.6300011 0.219625 -0.975584 -0.7399443 +5337 1 1.72 21.2399998 21.2399998 31.8600006 -0.862494 0.506067 -0.5094728 +5338 1 1.72 23.0100002 23.0100002 31.8600006 0.898035 -0.439924 -0.5094728 +5339 1 1.72 23.0100002 21.2399998 33.6300011 -0.912712 -0.408602 -0.7399443 +5340 1 1.72 21.2399998 23.0100002 33.6300011 0.655056 -0.755581 -0.7399443 +5341 1 1.72 24.7800007 21.2399998 31.8600006 0.242077 -0.970257 -0.5094728 +5342 1 1.72 26.5499993 23.0100002 31.8600006 -0.96244 0.271495 -0.5094728 +5343 1 1.72 26.5499993 21.2399998 33.6300011 0.104967 0.994476 -0.7399443 +5344 1 1.72 24.7800007 23.0100002 33.6300011 -0.269313 -0.963053 -0.7399443 +5345 1 1.72 0.0 24.7800007 31.8600006 -0.993236 -0.116112 -0.5094728 +5346 1 1.72 1.77 26.5499993 31.8600006 -0.93668 -0.350187 -0.5094728 +5347 1 1.72 1.77 24.7800007 33.6300011 -0.614681 -0.788776 -0.7399443 +5348 1 1.72 0.0 26.5499993 33.6300011 0.806719 -0.590936 -0.7399443 +5349 1 1.72 3.54 24.7800007 31.8600006 -0.868253 0.496122 -0.5094728 +5350 1 1.72 5.31 26.5499993 31.8600006 -0.670673 0.741753 -0.5094728 +5351 1 1.72 5.31 24.7800007 33.6300011 0.204193 -0.978931 -0.7399443 +5352 1 1.72 3.54 26.5499993 33.6300011 0.620581 0.784143 -0.7399443 +5353 1 1.72 7.0799999 24.7800007 31.8600006 0.0753117 0.99716 -0.5094728 +5354 1 1.72 8.8500004 26.5499993 31.8600006 0.890699 0.454594 -0.5094728 +5355 1 1.72 8.8500004 24.7800007 33.6300011 0.802441 -0.596731 -0.7399443 +5356 1 1.72 7.0799999 26.5499993 33.6300011 -0.558577 -0.829453 -0.7399443 +5357 1 1.72 10.6199999 24.7800007 31.8600006 0.697144 -0.716931 -0.5094728 +5358 1 1.72 12.3900004 26.5499993 31.8600006 0.849722 0.527231 -0.5094728 +5359 1 1.72 12.3900004 24.7800007 33.6300011 -0.75529 -0.655391 -0.7399443 +5360 1 1.72 10.6199999 26.5499993 33.6300011 0.142355 0.989816 -0.7399443 +5361 1 1.72 14.1599999 24.7800007 31.8600006 -0.930705 0.365772 -0.5094728 +5362 1 1.72 15.9300004 26.5499993 31.8600006 -0.878865 -0.477071 -0.5094728 +5363 1 1.72 15.9300004 24.7800007 33.6300011 0.837917 0.545797 -0.7399443 +5364 1 1.72 14.1599999 26.5499993 33.6300011 0.397033 0.917804 -0.7399443 +5365 1 1.72 17.7000008 24.7800007 31.8600006 -0.508662 0.860966 -0.5094728 +5366 1 1.72 19.4699993 26.5499993 31.8600006 0.846923 -0.531715 -0.5094728 +5367 1 1.72 19.4699993 24.7800007 33.6300011 0.85114 0.524939 -0.7399443 +5368 1 1.72 17.7000008 26.5499993 33.6300011 0.306373 -0.951912 -0.7399443 +5369 1 1.72 21.2399998 24.7800007 31.8600006 -0.695164 -0.718851 -0.5094728 +5370 1 1.72 23.0100002 26.5499993 31.8600006 0.86257 -0.505938 -0.5094728 +5371 1 1.72 23.0100002 24.7800007 33.6300011 -0.891155 0.4537 -0.7399443 +5372 1 1.72 21.2399998 26.5499993 33.6300011 -0.203415 -0.979093 -0.7399443 +5373 1 1.72 24.7800007 24.7800007 31.8600006 -0.798235 -0.602346 -0.5094728 +5374 1 1.72 26.5499993 26.5499993 31.8600006 -0.350505 -0.936561 -0.5094728 +5375 1 1.72 26.5499993 24.7800007 33.6300011 0.422829 0.90621 -0.7399443 +5376 1 1.72 24.7800007 26.5499993 33.6300011 -0.694315 -0.719671 -0.7399443 +5377 1 1.72 0.0 14.1599999 35.4000015 -0.389988 0.92082 -0.90501 +5378 1 1.72 1.77 15.9300004 35.4000015 0.257718 0.96622 -0.90501 +5379 1 1.72 1.77 14.1599999 37.1699982 0.266723 -0.963773 -0.990079 +5380 1 1.72 0.0 15.9300004 37.1699982 0.919424 0.393268 -0.990079 +5381 1 1.72 3.54 14.1599999 35.4000015 -0.372992 0.927835 -0.90501 +5382 1 1.72 5.31 15.9300004 35.4000015 -0.754765 0.655996 -0.90501 +5383 1 1.72 5.31 14.1599999 37.1699982 -0.991133 -0.132877 -0.990079 +5384 1 1.72 3.54 15.9300004 37.1699982 -0.870934 -0.491401 -0.990079 +5385 1 1.72 7.0799999 14.1599999 35.4000015 -0.89691 0.442212 -0.90501 +5386 1 1.72 8.8500004 15.9300004 35.4000015 0.944304 0.329074 -0.90501 +5387 1 1.72 8.8500004 14.1599999 37.1699982 0.573242 -0.819386 -0.990079 +5388 1 1.72 7.0799999 15.9300004 37.1699982 0.928895 -0.370344 -0.990079 +5389 1 1.72 10.6199999 14.1599999 35.4000015 0.614808 0.788676 -0.90501 +5390 1 1.72 12.3900004 15.9300004 35.4000015 0.997843 -0.0656429 -0.90501 +5391 1 1.72 12.3900004 14.1599999 37.1699982 0.664588 0.74721 -0.990079 +5392 1 1.72 10.6199999 15.9300004 37.1699982 -0.613544 -0.789661 -0.990079 +5393 1 1.72 14.1599999 14.1599999 35.4000015 -0.999404 -0.0345162 -0.90501 +5394 1 1.72 15.9300004 15.9300004 35.4000015 -0.404436 0.914566 -0.90501 +5395 1 1.72 15.9300004 14.1599999 37.1699982 -0.63854 0.769589 -0.990079 +5396 1 1.72 14.1599999 15.9300004 37.1699982 -0.35481 0.934939 -0.990079 +5397 1 1.72 17.7000008 14.1599999 35.4000015 0.997728 -0.067377 -0.90501 +5398 1 1.72 19.4699993 15.9300004 35.4000015 -0.982579 0.185848 -0.90501 +5399 1 1.72 19.4699993 14.1599999 37.1699982 -0.715497 0.698616 -0.990079 +5400 1 1.72 17.7000008 15.9300004 37.1699982 0.847739 0.530413 -0.990079 +5401 1 1.72 21.2399998 14.1599999 35.4000015 -0.936281 -0.351252 -0.90501 +5402 1 1.72 23.0100002 15.9300004 35.4000015 0.600824 0.799382 -0.90501 +5403 1 1.72 23.0100002 14.1599999 37.1699982 0.738381 0.674384 -0.990079 +5404 1 1.72 21.2399998 15.9300004 37.1699982 -0.800963 0.598714 -0.990079 +5405 1 1.72 24.7800007 14.1599999 35.4000015 -0.888468 0.458938 -0.90501 +5406 1 1.72 26.5499993 15.9300004 35.4000015 -0.479364 -0.877616 -0.90501 +5407 1 1.72 26.5499993 14.1599999 37.1699982 -0.910014 0.414577 -0.990079 +5408 1 1.72 24.7800007 15.9300004 37.1699982 0.0926422 0.995699 -0.990079 +5409 1 1.72 0.0 17.7000008 35.4000015 0.901963 0.431814 -0.90501 +5410 1 1.72 1.77 19.4699993 35.4000015 0.355735 -0.934587 -0.90501 +5411 1 1.72 1.77 17.7000008 37.1699982 -0.539958 -0.841692 -0.990079 +5412 1 1.72 0.0 19.4699993 37.1699982 0.834041 -0.551703 -0.990079 +5413 1 1.72 3.54 17.7000008 35.4000015 0.433526 -0.901141 -0.90501 +5414 1 1.72 5.31 19.4699993 35.4000015 -0.582798 -0.812617 -0.90501 +5415 1 1.72 5.31 17.7000008 37.1699982 -0.604681 0.796468 -0.990079 +5416 1 1.72 3.54 19.4699993 37.1699982 0.424072 -0.905628 -0.990079 +5417 1 1.72 7.0799999 17.7000008 35.4000015 0.974058 -0.226298 -0.90501 +5418 1 1.72 8.8500004 19.4699993 35.4000015 0.372551 -0.928012 -0.90501 +5419 1 1.72 8.8500004 17.7000008 37.1699982 -0.999964 -0.00852606 -0.990079 +5420 1 1.72 7.0799999 19.4699993 37.1699982 0.507146 0.86186 -0.990079 +5421 1 1.72 10.6199999 17.7000008 35.4000015 0.266328 -0.963882 -0.90501 +5422 1 1.72 12.3900004 19.4699993 35.4000015 0.98873 -0.149711 -0.90501 +5423 1 1.72 12.3900004 17.7000008 37.1699982 -0.295248 -0.955421 -0.990079 +5424 1 1.72 10.6199999 19.4699993 37.1699982 0.869041 -0.49474 -0.990079 +5425 1 1.72 14.1599999 17.7000008 35.4000015 -0.415749 -0.909479 -0.90501 +5426 1 1.72 15.9300004 19.4699993 35.4000015 0.772291 0.635269 -0.90501 +5427 1 1.72 15.9300004 17.7000008 37.1699982 -0.554706 0.832046 -0.990079 +5428 1 1.72 14.1599999 19.4699993 37.1699982 -0.873929 -0.486053 -0.990079 +5429 1 1.72 17.7000008 17.7000008 35.4000015 0.975475 -0.220112 -0.90501 +5430 1 1.72 19.4699993 19.4699993 35.4000015 -0.990015 0.140962 -0.90501 +5431 1 1.72 19.4699993 17.7000008 37.1699982 0.0647704 0.9979 -0.990079 +5432 1 1.72 17.7000008 19.4699993 37.1699982 -0.116503 -0.99319 -0.990079 +5433 1 1.72 21.2399998 17.7000008 35.4000015 0.668131 -0.744043 -0.90501 +5434 1 1.72 23.0100002 19.4699993 35.4000015 0.999169 0.0407496 -0.90501 +5435 1 1.72 23.0100002 17.7000008 37.1699982 -0.494492 -0.869182 -0.990079 +5436 1 1.72 21.2399998 19.4699993 37.1699982 0.172294 0.985046 -0.990079 +5437 1 1.72 24.7800007 17.7000008 35.4000015 0.627484 0.77863 -0.90501 +5438 1 1.72 26.5499993 19.4699993 35.4000015 0.932251 0.361811 -0.90501 +5439 1 1.72 26.5499993 17.7000008 37.1699982 0.998443 0.0557842 -0.990079 +5440 1 1.72 24.7800007 19.4699993 37.1699982 0.974835 0.22293 -0.990079 +5441 1 1.72 0.0 21.2399998 35.4000015 -0.857941 -0.513749 -0.90501 +5442 1 1.72 1.77 23.0100002 35.4000015 0.732137 -0.681157 -0.90501 +5443 1 1.72 1.77 21.2399998 37.1699982 0.93731 -0.348495 -0.990079 +5444 1 1.72 0.0 23.0100002 37.1699982 0.392214 0.919874 -0.990079 +5445 1 1.72 3.54 21.2399998 35.4000015 0.383002 -0.923748 -0.90501 +5446 1 1.72 5.31 23.0100002 35.4000015 0.958115 -0.286384 -0.90501 +5447 1 1.72 5.31 21.2399998 37.1699982 -0.99728 -0.07371 -0.990079 +5448 1 1.72 3.54 23.0100002 37.1699982 0.117013 -0.99313 -0.990079 +5449 1 1.72 7.0799999 21.2399998 35.4000015 -0.469392 0.88299 -0.90501 +5450 1 1.72 8.8500004 23.0100002 35.4000015 -0.769937 0.63812 -0.90501 +5451 1 1.72 8.8500004 21.2399998 37.1699982 0.977244 0.21212 -0.990079 +5452 1 1.72 7.0799999 23.0100002 37.1699982 0.803106 0.595837 -0.990079 +5453 1 1.72 10.6199999 21.2399998 35.4000015 0.57107 -0.820901 -0.90501 +5454 1 1.72 12.3900004 23.0100002 35.4000015 -0.720825 0.693117 -0.90501 +5455 1 1.72 12.3900004 21.2399998 37.1699982 -0.82027 -0.571976 -0.990079 +5456 1 1.72 10.6199999 23.0100002 37.1699982 -0.775038 -0.631915 -0.990079 +5457 1 1.72 14.1599999 21.2399998 35.4000015 -0.819028 0.573753 -0.90501 +5458 1 1.72 15.9300004 23.0100002 35.4000015 0.487476 0.873136 -0.90501 +5459 1 1.72 15.9300004 21.2399998 37.1699982 0.965051 -0.262062 -0.990079 +5460 1 1.72 14.1599999 23.0100002 37.1699982 -0.770531 -0.637403 -0.990079 +5461 1 1.72 17.7000008 21.2399998 35.4000015 -0.696447 -0.717608 -0.90501 +5462 1 1.72 19.4699993 23.0100002 35.4000015 0.105825 -0.994385 -0.90501 +5463 1 1.72 19.4699993 21.2399998 37.1699982 0.621435 0.783466 -0.990079 +5464 1 1.72 17.7000008 23.0100002 37.1699982 0.834518 -0.550981 -0.990079 +5465 1 1.72 21.2399998 21.2399998 35.4000015 -0.649569 -0.760302 -0.90501 +5466 1 1.72 23.0100002 23.0100002 35.4000015 0.309515 -0.950894 -0.90501 +5467 1 1.72 23.0100002 21.2399998 37.1699982 -0.738111 0.67468 -0.990079 +5468 1 1.72 21.2399998 23.0100002 37.1699982 -0.477237 0.878774 -0.990079 +5469 1 1.72 24.7800007 21.2399998 35.4000015 -0.122202 0.992505 -0.90501 +5470 1 1.72 26.5499993 23.0100002 35.4000015 0.146333 0.989235 -0.90501 +5471 1 1.72 26.5499993 21.2399998 37.1699982 -0.865112 0.501578 -0.990079 +5472 1 1.72 24.7800007 23.0100002 37.1699982 0.748241 0.663426 -0.990079 +5473 1 1.72 0.0 24.7800007 35.4000015 -0.837551 -0.546359 -0.90501 +5474 1 1.72 1.77 26.5499993 35.4000015 -0.988206 0.153129 -0.90501 +5475 1 1.72 1.77 24.7800007 37.1699982 -0.353216 -0.935542 -0.990079 +5476 1 1.72 0.0 26.5499993 37.1699982 0.550368 0.834922 -0.990079 +5477 1 1.72 3.54 24.7800007 35.4000015 0.884397 0.466736 -0.90501 +5478 1 1.72 5.31 26.5499993 35.4000015 0.685911 0.727685 -0.90501 +5479 1 1.72 5.31 24.7800007 37.1699982 0.537144 -0.84349 -0.990079 +5480 1 1.72 3.54 26.5499993 37.1699982 0.453905 -0.89105 -0.990079 +5481 1 1.72 7.0799999 24.7800007 35.4000015 0.408605 -0.912711 -0.90501 +5482 1 1.72 8.8500004 26.5499993 35.4000015 0.685604 0.727974 -0.90501 +5483 1 1.72 8.8500004 24.7800007 37.1699982 -0.230561 -0.973058 -0.990079 +5484 1 1.72 7.0799999 26.5499993 37.1699982 -0.793802 0.608176 -0.990079 +5485 1 1.72 10.6199999 24.7800007 35.4000015 0.983169 -0.182696 -0.90501 +5486 1 1.72 12.3900004 26.5499993 35.4000015 0.899862 -0.436176 -0.90501 +5487 1 1.72 12.3900004 24.7800007 37.1699982 -0.995944 -0.0899741 -0.990079 +5488 1 1.72 10.6199999 26.5499993 37.1699982 0.666773 -0.745261 -0.990079 +5489 1 1.72 14.1599999 24.7800007 35.4000015 0.422752 0.906245 -0.90501 +5490 1 1.72 15.9300004 26.5499993 35.4000015 -0.77619 0.630499 -0.90501 +5491 1 1.72 15.9300004 24.7800007 37.1699982 -0.559672 0.828714 -0.990079 +5492 1 1.72 14.1599999 26.5499993 37.1699982 -0.212755 -0.977106 -0.990079 +5493 1 1.72 17.7000008 24.7800007 35.4000015 -0.997012 -0.0772431 -0.90501 +5494 1 1.72 19.4699993 26.5499993 35.4000015 0.295569 0.955321 -0.90501 +5495 1 1.72 19.4699993 24.7800007 37.1699982 -0.292546 0.956251 -0.990079 +5496 1 1.72 17.7000008 26.5499993 37.1699982 0.782781 0.622297 -0.990079 +5497 1 1.72 21.2399998 24.7800007 35.4000015 -0.889419 -0.457093 -0.90501 +5498 1 1.72 23.0100002 26.5499993 35.4000015 -0.901367 0.433056 -0.90501 +5499 1 1.72 23.0100002 24.7800007 37.1699982 0.972573 0.232598 -0.990079 +5500 1 1.72 21.2399998 26.5499993 37.1699982 -0.940004 0.341164 -0.990079 +5501 1 1.72 24.7800007 24.7800007 35.4000015 -0.839078 -0.544011 -0.90501 +5502 1 1.72 26.5499993 26.5499993 35.4000015 -0.170667 -0.985329 -0.90501 +5503 1 1.72 26.5499993 24.7800007 37.1699982 0.550481 0.834848 -0.990079 +5504 1 1.72 24.7800007 26.5499993 37.1699982 -0.199914 0.979813 -0.990079 +5505 1 1.72 0.0 14.1599999 38.9399986 -0.728913 0.684606 -1.0 +5506 1 1.72 1.77 15.9300004 38.9399986 -0.356673 0.934229 -1.0 +5507 1 1.72 1.77 14.1599999 40.7099991 -0.967116 0.254336 -1.0 +5508 1 1.72 0.0 15.9300004 40.7099991 0.719903 0.694075 -1.0 +5509 1 1.72 3.54 14.1599999 38.9399986 -0.554354 -0.832281 -1.0 +5510 1 1.72 5.31 15.9300004 38.9399986 -0.833913 0.551896 -1.0 +5511 1 1.72 5.31 14.1599999 40.7099991 -0.717875 0.696172 -1.0 +5512 1 1.72 3.54 15.9300004 40.7099991 0.977864 -0.20924 -1.0 +5513 1 1.72 7.0799999 14.1599999 38.9399986 0.605369 -0.795945 -1.0 +5514 1 1.72 8.8500004 15.9300004 38.9399986 0.905957 -0.423371 -1.0 +5515 1 1.72 8.8500004 14.1599999 40.7099991 -0.329184 0.944266 -1.0 +5516 1 1.72 7.0799999 15.9300004 40.7099991 0.438118 0.898918 -1.0 +5517 1 1.72 10.6199999 14.1599999 38.9399986 -0.495563 0.868572 -1.0 +5518 1 1.72 12.3900004 15.9300004 38.9399986 -0.73631 0.676644 -1.0 +5519 1 1.72 12.3900004 14.1599999 40.7099991 -0.448389 -0.893839 -1.0 +5520 1 1.72 10.6199999 15.9300004 40.7099991 -0.699135 -0.71499 -1.0 +5521 1 1.72 14.1599999 14.1599999 38.9399986 -0.996992 -0.0775051 -1.0 +5522 1 1.72 15.9300004 15.9300004 38.9399986 0.999604 -0.0281236 -1.0 +5523 1 1.72 15.9300004 14.1599999 40.7099991 -0.342034 0.939687 -1.0 +5524 1 1.72 14.1599999 15.9300004 40.7099991 -0.542456 0.840084 -1.0 +5525 1 1.72 17.7000008 14.1599999 38.9399986 -0.974833 -0.222938 -1.0 +5526 1 1.72 19.4699993 15.9300004 38.9399986 -0.728594 0.684946 -1.0 +5527 1 1.72 19.4699993 14.1599999 40.7099991 0.0871988 -0.996191 -1.0 +5528 1 1.72 17.7000008 15.9300004 40.7099991 0.806905 0.590682 -1.0 +5529 1 1.72 21.2399998 14.1599999 38.9399986 0.621636 -0.783306 -1.0 +5530 1 1.72 23.0100002 15.9300004 38.9399986 -0.999638 0.0268909 -1.0 +5531 1 1.72 23.0100002 14.1599999 40.7099991 0.109163 0.994024 -1.0 +5532 1 1.72 21.2399998 15.9300004 40.7099991 0.572181 -0.820127 -1.0 +5533 1 1.72 24.7800007 14.1599999 38.9399986 -0.873829 0.486233 -1.0 +5534 1 1.72 26.5499993 15.9300004 38.9399986 -0.853458 -0.521162 -1.0 +5535 1 1.72 26.5499993 14.1599999 40.7099991 -0.988781 0.149371 -1.0 +5536 1 1.72 24.7800007 15.9300004 40.7099991 0.563745 0.825949 -1.0 +5537 1 1.72 0.0 17.7000008 38.9399986 0.619487 0.785007 -1.0 +5538 1 1.72 1.77 19.4699993 38.9399986 -0.369062 0.929405 -1.0 +5539 1 1.72 1.77 17.7000008 40.7099991 0.411566 -0.91138 -1.0 +5540 1 1.72 0.0 19.4699993 40.7099991 0.970326 0.241799 -1.0 +5541 1 1.72 3.54 17.7000008 38.9399986 -0.582829 -0.812595 -1.0 +5542 1 1.72 5.31 19.4699993 38.9399986 -0.718853 0.695162 -1.0 +5543 1 1.72 5.31 17.7000008 40.7099991 -0.346479 -0.938058 -1.0 +5544 1 1.72 3.54 19.4699993 40.7099991 -0.863874 0.503709 -1.0 +5545 1 1.72 7.0799999 17.7000008 38.9399986 -0.850068 -0.526672 -1.0 +5546 1 1.72 8.8500004 19.4699993 38.9399986 -0.960725 0.277504 -1.0 +5547 1 1.72 8.8500004 17.7000008 40.7099991 0.0478734 0.998853 -1.0 +5548 1 1.72 7.0799999 19.4699993 40.7099991 0.999983 0.0059031 -1.0 +5549 1 1.72 10.6199999 17.7000008 38.9399986 0.768654 0.639665 -1.0 +5550 1 1.72 12.3900004 19.4699993 38.9399986 0.607405 0.794392 -1.0 +5551 1 1.72 12.3900004 17.7000008 40.7099991 0.697878 0.716217 -1.0 +5552 1 1.72 10.6199999 19.4699993 40.7099991 0.928711 0.370803 -1.0 +5553 1 1.72 14.1599999 17.7000008 38.9399986 -0.357698 -0.933837 -1.0 +5554 1 1.72 15.9300004 19.4699993 38.9399986 -0.00615694 -0.999981 -1.0 +5555 1 1.72 15.9300004 17.7000008 40.7099991 0.942067 -0.335423 -1.0 +5556 1 1.72 14.1599999 19.4699993 40.7099991 -0.690114 0.7237 -1.0 +5557 1 1.72 17.7000008 17.7000008 38.9399986 0.580972 0.813924 -1.0 +5558 1 1.72 19.4699993 19.4699993 38.9399986 0.198919 -0.980016 -1.0 +5559 1 1.72 19.4699993 17.7000008 40.7099991 0.743789 -0.668414 -1.0 +5560 1 1.72 17.7000008 19.4699993 40.7099991 0.22317 -0.97478 -1.0 +5561 1 1.72 21.2399998 17.7000008 38.9399986 -0.783377 0.621547 -1.0 +5562 1 1.72 23.0100002 19.4699993 38.9399986 -0.0521092 0.998641 -1.0 +5563 1 1.72 23.0100002 17.7000008 40.7099991 0.0397883 0.999208 -1.0 +5564 1 1.72 21.2399998 19.4699993 40.7099991 0.18598 -0.982554 -1.0 +5565 1 1.72 24.7800007 17.7000008 38.9399986 0.927056 -0.374923 -1.0 +5566 1 1.72 26.5499993 19.4699993 38.9399986 -0.0159181 0.999873 -1.0 +5567 1 1.72 26.5499993 17.7000008 40.7099991 0.587651 -0.809114 -1.0 +5568 1 1.72 24.7800007 19.4699993 40.7099991 -0.138861 0.990312 -1.0 +5569 1 1.72 0.0 21.2399998 38.9399986 -0.953825 0.300362 -1.0 +5570 1 1.72 1.77 23.0100002 38.9399986 -0.843884 -0.536526 -1.0 +5571 1 1.72 1.77 21.2399998 40.7099991 0.532461 -0.846454 -1.0 +5572 1 1.72 0.0 23.0100002 40.7099991 -0.651253 0.758861 -1.0 +5573 1 1.72 3.54 21.2399998 38.9399986 -0.906382 0.422459 -1.0 +5574 1 1.72 5.31 23.0100002 38.9399986 -0.0377215 0.999288 -1.0 +5575 1 1.72 5.31 21.2399998 40.7099991 -0.412651 0.910889 -1.0 +5576 1 1.72 3.54 23.0100002 40.7099991 0.510001 -0.860174 -1.0 +5577 1 1.72 7.0799999 21.2399998 38.9399986 -0.49809 -0.867125 -1.0 +5578 1 1.72 8.8500004 23.0100002 38.9399986 0.416152 -0.909295 -1.0 +5579 1 1.72 8.8500004 21.2399998 40.7099991 -0.672172 -0.740395 -1.0 +5580 1 1.72 7.0799999 23.0100002 40.7099991 -0.965518 0.260336 -1.0 +5581 1 1.72 10.6199999 21.2399998 38.9399986 -0.893842 -0.448381 -1.0 +5582 1 1.72 12.3900004 23.0100002 38.9399986 0.587274 0.809388 -1.0 +5583 1 1.72 12.3900004 21.2399998 40.7099991 -0.835906 0.548873 -1.0 +5584 1 1.72 10.6199999 23.0100002 40.7099991 -0.389073 0.921207 -1.0 +5585 1 1.72 14.1599999 21.2399998 38.9399986 -0.0617973 -0.998089 -1.0 +5586 1 1.72 15.9300004 23.0100002 38.9399986 -0.701828 0.712346 -1.0 +5587 1 1.72 15.9300004 21.2399998 40.7099991 -0.815216 -0.579157 -1.0 +5588 1 1.72 14.1599999 23.0100002 40.7099991 0.959393 -0.282073 -1.0 +5589 1 1.72 17.7000008 21.2399998 38.9399986 -0.640123 -0.768273 -1.0 +5590 1 1.72 19.4699993 23.0100002 38.9399986 0.335857 0.941913 -1.0 +5591 1 1.72 19.4699993 21.2399998 40.7099991 0.975829 0.218538 -1.0 +5592 1 1.72 17.7000008 23.0100002 40.7099991 0.584346 -0.811504 -1.0 +5593 1 1.72 21.2399998 21.2399998 38.9399986 -0.906157 0.422942 -1.0 +5594 1 1.72 23.0100002 23.0100002 38.9399986 -0.999998 -0.00211532 -1.0 +5595 1 1.72 23.0100002 21.2399998 40.7099991 0.798868 0.601507 -1.0 +5596 1 1.72 21.2399998 23.0100002 40.7099991 0.74009 0.672507 -1.0 +5597 1 1.72 24.7800007 21.2399998 38.9399986 0.990373 -0.138422 -1.0 +5598 1 1.72 26.5499993 23.0100002 38.9399986 -0.761842 -0.647763 -1.0 +5599 1 1.72 26.5499993 21.2399998 40.7099991 -0.94254 -0.334093 -1.0 +5600 1 1.72 24.7800007 23.0100002 40.7099991 0.831354 -0.555743 -1.0 +5601 1 1.72 0.0 24.7800007 38.9399986 0.238252 0.971203 -1.0 +5602 1 1.72 1.77 26.5499993 38.9399986 -0.935735 0.352704 -1.0 +5603 1 1.72 1.77 24.7800007 40.7099991 -0.498963 -0.866623 -1.0 +5604 1 1.72 0.0 26.5499993 40.7099991 -0.576389 -0.817176 -1.0 +5605 1 1.72 3.54 24.7800007 38.9399986 -0.922288 0.386504 -1.0 +5606 1 1.72 5.31 26.5499993 38.9399986 -0.436584 -0.899664 -1.0 +5607 1 1.72 5.31 24.7800007 40.7099991 -0.98866 0.150174 -1.0 +5608 1 1.72 3.54 26.5499993 40.7099991 -0.984766 0.173887 -1.0 +5609 1 1.72 7.0799999 24.7800007 38.9399986 -0.844926 -0.534883 -1.0 +5610 1 1.72 8.8500004 26.5499993 38.9399986 -0.500861 0.865528 -1.0 +5611 1 1.72 8.8500004 24.7800007 40.7099991 0.956076 0.293119 -1.0 +5612 1 1.72 7.0799999 26.5499993 40.7099991 0.341816 -0.939767 -1.0 +5613 1 1.72 10.6199999 24.7800007 38.9399986 -0.97169 0.236262 -1.0 +5614 1 1.72 12.3900004 26.5499993 38.9399986 -0.477417 0.878677 -1.0 +5615 1 1.72 12.3900004 24.7800007 40.7099991 -0.969585 0.244753 -1.0 +5616 1 1.72 10.6199999 26.5499993 40.7099991 0.366851 0.93028 -1.0 +5617 1 1.72 14.1599999 24.7800007 38.9399986 0.999925 -0.0122643 -1.0 +5618 1 1.72 15.9300004 26.5499993 38.9399986 -0.970896 0.239503 -1.0 +5619 1 1.72 15.9300004 24.7800007 40.7099991 -0.423829 0.905742 -1.0 +5620 1 1.72 14.1599999 26.5499993 40.7099991 0.473615 -0.880732 -1.0 +5621 1 1.72 17.7000008 24.7800007 38.9399986 -0.838027 -0.545628 -1.0 +5622 1 1.72 19.4699993 26.5499993 38.9399986 -0.46279 -0.886468 -1.0 +5623 1 1.72 19.4699993 24.7800007 40.7099991 -0.613178 -0.789945 -1.0 +5624 1 1.72 17.7000008 26.5499993 40.7099991 0.748545 -0.663084 -1.0 +5625 1 1.72 21.2399998 24.7800007 38.9399986 -0.603035 -0.797714 -1.0 +5626 1 1.72 23.0100002 26.5499993 38.9399986 0.134335 0.990936 -1.0 +5627 1 1.72 23.0100002 24.7800007 40.7099991 -0.964637 -0.263582 -1.0 +5628 1 1.72 21.2399998 26.5499993 40.7099991 -0.231878 -0.972745 -1.0 +5629 1 1.72 24.7800007 24.7800007 38.9399986 -0.995907 -0.0903845 -1.0 +5630 1 1.72 26.5499993 26.5499993 38.9399986 0.0203008 0.999794 -1.0 +5631 1 1.72 26.5499993 24.7800007 40.7099991 -0.934209 -0.356726 -1.0 +5632 1 1.72 24.7800007 26.5499993 40.7099991 -0.826197 -0.563382 -1.0 +5633 1 1.72 0.0 14.1599999 42.4799996 0.296732 0.954961 -1.0 +5634 1 1.72 1.77 15.9300004 42.4799996 0.926302 0.376781 -1.0 +5635 1 1.72 1.77 14.1599999 44.25 0.114966 -0.993369 -1.0 +5636 1 1.72 0.0 15.9300004 44.25 -0.793242 -0.608907 -1.0 +5637 1 1.72 3.54 14.1599999 42.4799996 0.890111 -0.455743 -1.0 +5638 1 1.72 5.31 15.9300004 42.4799996 -0.388588 -0.921412 -1.0 +5639 1 1.72 5.31 14.1599999 44.25 0.665864 0.746073 -1.0 +5640 1 1.72 3.54 15.9300004 44.25 0.613679 0.789556 -1.0 +5641 1 1.72 7.0799999 14.1599999 42.4799996 0.555101 -0.831783 -1.0 +5642 1 1.72 8.8500004 15.9300004 42.4799996 -0.57697 -0.816765 -1.0 +5643 1 1.72 8.8500004 14.1599999 44.25 0.660166 -0.75112 -1.0 +5644 1 1.72 7.0799999 15.9300004 44.25 -0.482608 0.875836 -1.0 +5645 1 1.72 10.6199999 14.1599999 42.4799996 -0.574921 -0.818209 -1.0 +5646 1 1.72 12.3900004 15.9300004 42.4799996 0.648157 0.761507 -1.0 +5647 1 1.72 12.3900004 14.1599999 44.25 -0.568504 -0.822681 -1.0 +5648 1 1.72 10.6199999 15.9300004 44.25 -0.656285 -0.754513 -1.0 +5649 1 1.72 14.1599999 14.1599999 42.4799996 0.926247 0.376917 -1.0 +5650 1 1.72 15.9300004 15.9300004 42.4799996 -0.765324 -0.643645 -1.0 +5651 1 1.72 15.9300004 14.1599999 44.25 -0.734715 -0.678376 -1.0 +5652 1 1.72 14.1599999 15.9300004 44.25 -0.999977 -0.00675202 -1.0 +5653 1 1.72 17.7000008 14.1599999 42.4799996 0.623918 -0.78149 -1.0 +5654 1 1.72 19.4699993 15.9300004 42.4799996 -0.61758 -0.786508 -1.0 +5655 1 1.72 19.4699993 14.1599999 44.25 0.188507 0.982072 -1.0 +5656 1 1.72 17.7000008 15.9300004 44.25 -0.903688 0.428191 -1.0 +5657 1 1.72 21.2399998 14.1599999 42.4799996 -0.102099 -0.994774 -1.0 +5658 1 1.72 23.0100002 15.9300004 42.4799996 0.727423 -0.686189 -1.0 +5659 1 1.72 23.0100002 14.1599999 44.25 -0.55747 0.830197 -1.0 +5660 1 1.72 21.2399998 15.9300004 44.25 -0.987501 0.157614 -1.0 +5661 1 1.72 24.7800007 14.1599999 42.4799996 -0.55077 0.834657 -1.0 +5662 1 1.72 26.5499993 15.9300004 42.4799996 0.959515 -0.281656 -1.0 +5663 1 1.72 26.5499993 14.1599999 44.25 -0.199257 -0.979947 -1.0 +5664 1 1.72 24.7800007 15.9300004 44.25 -0.537322 0.843377 -1.0 +5665 1 1.72 0.0 17.7000008 42.4799996 0.637141 -0.770747 -1.0 +5666 1 1.72 1.77 19.4699993 42.4799996 -0.980658 -0.195731 -1.0 +5667 1 1.72 1.77 17.7000008 44.25 0.687658 0.726035 -1.0 +5668 1 1.72 0.0 19.4699993 44.25 0.450625 0.892713 -1.0 +5669 1 1.72 3.54 17.7000008 42.4799996 -0.439257 -0.898361 -1.0 +5670 1 1.72 5.31 19.4699993 42.4799996 0.581591 0.813481 -1.0 +5671 1 1.72 5.31 17.7000008 44.25 -0.573557 0.819166 -1.0 +5672 1 1.72 3.54 19.4699993 44.25 0.941965 0.335712 -1.0 +5673 1 1.72 7.0799999 17.7000008 42.4799996 0.993047 -0.117716 -1.0 +5674 1 1.72 8.8500004 19.4699993 42.4799996 0.743001 0.66929 -1.0 +5675 1 1.72 8.8500004 17.7000008 44.25 -0.626343 0.779547 -1.0 +5676 1 1.72 7.0799999 19.4699993 44.25 -0.743959 -0.668226 -1.0 +5677 1 1.72 10.6199999 17.7000008 42.4799996 -0.734484 -0.678625 -1.0 +5678 1 1.72 12.3900004 19.4699993 42.4799996 -0.952206 0.305456 -1.0 +5679 1 1.72 12.3900004 17.7000008 44.25 -0.187175 0.982327 -1.0 +5680 1 1.72 10.6199999 19.4699993 44.25 -0.540894 0.841091 -1.0 +5681 1 1.72 14.1599999 17.7000008 42.4799996 0.272231 0.962232 -1.0 +5682 1 1.72 15.9300004 19.4699993 42.4799996 -0.99901 0.044492 -1.0 +5683 1 1.72 15.9300004 17.7000008 44.25 -0.901935 0.431872 -1.0 +5684 1 1.72 14.1599999 19.4699993 44.25 -0.7599 -0.65004 -1.0 +5685 1 1.72 17.7000008 17.7000008 42.4799996 0.998909 -0.0466904 -1.0 +5686 1 1.72 19.4699993 19.4699993 42.4799996 0.655375 -0.755304 -1.0 +5687 1 1.72 19.4699993 17.7000008 44.25 -0.918008 0.396563 -1.0 +5688 1 1.72 17.7000008 19.4699993 44.25 -0.679932 -0.733275 -1.0 +5689 1 1.72 21.2399998 17.7000008 42.4799996 -0.597873 -0.801591 -1.0 +5690 1 1.72 23.0100002 19.4699993 42.4799996 -0.939289 0.343126 -1.0 +5691 1 1.72 23.0100002 17.7000008 44.25 0.704395 0.709808 -1.0 +5692 1 1.72 21.2399998 19.4699993 44.25 0.133697 -0.991022 -1.0 +5693 1 1.72 24.7800007 17.7000008 42.4799996 -0.699363 -0.714767 -1.0 +5694 1 1.72 26.5499993 19.4699993 42.4799996 -0.778209 -0.628005 -1.0 +5695 1 1.72 26.5499993 17.7000008 44.25 0.484649 -0.874709 -1.0 +5696 1 1.72 24.7800007 19.4699993 44.25 -0.285731 0.95831 -1.0 +5697 1 1.72 0.0 21.2399998 42.4799996 -0.923423 0.383783 -1.0 +5698 1 1.72 1.77 23.0100002 42.4799996 0.142385 -0.989811 -1.0 +5699 1 1.72 1.77 21.2399998 44.25 0.349696 0.936863 -1.0 +5700 1 1.72 0.0 23.0100002 44.25 -0.957471 0.288531 -1.0 +5701 1 1.72 3.54 21.2399998 42.4799996 -0.495881 0.86839 -1.0 +5702 1 1.72 5.31 23.0100002 42.4799996 -0.856574 0.516023 -1.0 +5703 1 1.72 5.31 21.2399998 44.25 -0.62503 -0.780601 -1.0 +5704 1 1.72 3.54 23.0100002 44.25 0.0976695 0.995219 -1.0 +5705 1 1.72 7.0799999 21.2399998 42.4799996 -0.0769641 0.997034 -1.0 +5706 1 1.72 8.8500004 23.0100002 42.4799996 -0.448501 0.893782 -1.0 +5707 1 1.72 8.8500004 21.2399998 44.25 -0.933659 0.358163 -1.0 +5708 1 1.72 7.0799999 23.0100002 44.25 -0.814214 -0.580564 -1.0 +5709 1 1.72 10.6199999 21.2399998 42.4799996 -0.97067 0.240417 -1.0 +5710 1 1.72 12.3900004 23.0100002 42.4799996 0.716162 0.697934 -1.0 +5711 1 1.72 12.3900004 21.2399998 44.25 -0.912235 0.409668 -1.0 +5712 1 1.72 10.6199999 23.0100002 44.25 0.922866 0.385122 -1.0 +5713 1 1.72 14.1599999 21.2399998 42.4799996 0.976905 -0.213674 -1.0 +5714 1 1.72 15.9300004 23.0100002 42.4799996 -0.970937 -0.239335 -1.0 +5715 1 1.72 15.9300004 21.2399998 44.25 -0.979743 -0.200258 -1.0 +5716 1 1.72 14.1599999 23.0100002 44.25 -0.463369 -0.886166 -1.0 +5717 1 1.72 17.7000008 21.2399998 42.4799996 -0.77459 -0.632464 -1.0 +5718 1 1.72 19.4699993 23.0100002 42.4799996 -0.811216 0.584747 -1.0 +5719 1 1.72 19.4699993 21.2399998 44.25 0.701006 0.713156 -1.0 +5720 1 1.72 17.7000008 23.0100002 44.25 0.958187 -0.286143 -1.0 +5721 1 1.72 21.2399998 21.2399998 42.4799996 -0.688919 -0.724838 -1.0 +5722 1 1.72 23.0100002 23.0100002 42.4799996 -0.70051 0.713642 -1.0 +5723 1 1.72 23.0100002 21.2399998 44.25 -0.437869 0.899039 -1.0 +5724 1 1.72 21.2399998 23.0100002 44.25 -0.964577 0.263802 -1.0 +5725 1 1.72 24.7800007 21.2399998 42.4799996 -0.0350513 -0.999386 -1.0 +5726 1 1.72 26.5499993 23.0100002 42.4799996 0.847505 0.530788 -1.0 +5727 1 1.72 26.5499993 21.2399998 44.25 -0.386859 -0.922139 -1.0 +5728 1 1.72 24.7800007 23.0100002 44.25 -0.909653 0.415369 -1.0 +5729 1 1.72 0.0 24.7800007 42.4799996 -0.63388 0.773431 -1.0 +5730 1 1.72 1.77 26.5499993 42.4799996 -0.974393 -0.224853 -1.0 +5731 1 1.72 1.77 24.7800007 44.25 0.808037 -0.589131 -1.0 +5732 1 1.72 0.0 26.5499993 44.25 0.67125 -0.741231 -1.0 +5733 1 1.72 3.54 24.7800007 42.4799996 0.874443 0.485127 -1.0 +5734 1 1.72 5.31 26.5499993 42.4799996 -0.749473 -0.662035 -1.0 +5735 1 1.72 5.31 24.7800007 44.25 -0.992215 0.12454 -1.0 +5736 1 1.72 3.54 26.5499993 44.25 0.793376 -0.608732 -1.0 +5737 1 1.72 7.0799999 24.7800007 42.4799996 0.818703 0.574217 -1.0 +5738 1 1.72 8.8500004 26.5499993 42.4799996 0.792933 0.609309 -1.0 +5739 1 1.72 8.8500004 24.7800007 44.25 0.663977 -0.747753 -1.0 +5740 1 1.72 7.0799999 26.5499993 44.25 0.575864 0.817546 -1.0 +5741 1 1.72 10.6199999 24.7800007 42.4799996 -0.847311 0.531097 -1.0 +5742 1 1.72 12.3900004 26.5499993 42.4799996 -0.316619 -0.948553 -1.0 +5743 1 1.72 12.3900004 24.7800007 44.25 0.257315 -0.966328 -1.0 +5744 1 1.72 10.6199999 26.5499993 44.25 0.0636618 0.997972 -1.0 +5745 1 1.72 14.1599999 24.7800007 42.4799996 0.79046 -0.612514 -1.0 +5746 1 1.72 15.9300004 26.5499993 42.4799996 0.975041 -0.222023 -1.0 +5747 1 1.72 15.9300004 24.7800007 44.25 -0.847312 0.531096 -1.0 +5748 1 1.72 14.1599999 26.5499993 44.25 0.973922 0.226884 -1.0 +5749 1 1.72 17.7000008 24.7800007 42.4799996 0.8456 -0.533817 -1.0 +5750 1 1.72 19.4699993 26.5499993 42.4799996 0.659989 0.751275 -1.0 +5751 1 1.72 19.4699993 24.7800007 44.25 -0.943734 -0.330706 -1.0 +5752 1 1.72 17.7000008 26.5499993 44.25 0.511563 0.859246 -1.0 +5753 1 1.72 21.2399998 24.7800007 42.4799996 0.801584 -0.597882 -1.0 +5754 1 1.72 23.0100002 26.5499993 42.4799996 0.206444 -0.978458 -1.0 +5755 1 1.72 23.0100002 24.7800007 44.25 0.807611 -0.589716 -1.0 +5756 1 1.72 21.2399998 26.5499993 44.25 -0.992905 0.11891 -1.0 +5757 1 1.72 24.7800007 24.7800007 42.4799996 -0.295507 -0.95534 -1.0 +5758 1 1.72 26.5499993 26.5499993 42.4799996 -0.649213 -0.760606 -1.0 +5759 1 1.72 26.5499993 24.7800007 44.25 -0.741809 -0.670612 -1.0 +5760 1 1.72 24.7800007 26.5499993 44.25 0.632442 0.774608 -1.0 +5761 1 1.72 0.0 14.1599999 46.0200005 -0.258896 0.965905 -1.0 +5762 1 1.72 1.77 15.9300004 46.0200005 0.613464 0.789723 -1.0 +5763 1 1.72 1.77 14.1599999 47.7900009 0.548687 0.836028 -1.0 +5764 1 1.72 0.0 15.9300004 47.7900009 -0.219025 -0.975719 -1.0 +5765 1 1.72 3.54 14.1599999 46.0200005 -0.741605 -0.670837 -1.0 +5766 1 1.72 5.31 15.9300004 46.0200005 0.737991 0.67481 -1.0 +5767 1 1.72 5.31 14.1599999 47.7900009 0.999808 -0.0195981 -1.0 +5768 1 1.72 3.54 15.9300004 47.7900009 0.650079 -0.759867 -1.0 +5769 1 1.72 7.0799999 14.1599999 46.0200005 -0.964777 -0.26307 -1.0 +5770 1 1.72 8.8500004 15.9300004 46.0200005 -0.603655 -0.797246 -1.0 +5771 1 1.72 8.8500004 14.1599999 47.7900009 0.717374 -0.696688 -1.0 +5772 1 1.72 7.0799999 15.9300004 47.7900009 0.982255 -0.187548 -1.0 +5773 1 1.72 10.6199999 14.1599999 46.0200005 -0.750629 0.660724 -1.0 +5774 1 1.72 12.3900004 15.9300004 46.0200005 -0.78847 0.615073 -1.0 +5775 1 1.72 12.3900004 14.1599999 47.7900009 0.479535 0.877523 -1.0 +5776 1 1.72 10.6199999 15.9300004 47.7900009 -0.917588 -0.397533 -1.0 +5777 1 1.72 14.1599999 14.1599999 46.0200005 -0.974895 0.222665 -1.0 +5778 1 1.72 15.9300004 15.9300004 46.0200005 -0.989064 -0.147489 -1.0 +5779 1 1.72 15.9300004 14.1599999 47.7900009 -0.977148 -0.21256 -1.0 +5780 1 1.72 14.1599999 15.9300004 47.7900009 -0.860564 -0.509342 -1.0 +5781 1 1.72 17.7000008 14.1599999 46.0200005 0.734567 0.678536 -1.0 +5782 1 1.72 19.4699993 15.9300004 46.0200005 0.296258 -0.955108 -1.0 +5783 1 1.72 19.4699993 14.1599999 47.7900009 0.708531 0.705679 -1.0 +5784 1 1.72 17.7000008 15.9300004 47.7900009 -0.99677 -0.0803078 -1.0 +5785 1 1.72 21.2399998 14.1599999 46.0200005 0.708863 0.705346 -1.0 +5786 1 1.72 23.0100002 15.9300004 46.0200005 -0.516014 0.85658 -1.0 +5787 1 1.72 23.0100002 14.1599999 47.7900009 -0.768646 0.639675 -1.0 +5788 1 1.72 21.2399998 15.9300004 47.7900009 0.545654 0.83801 -1.0 +5789 1 1.72 24.7800007 14.1599999 46.0200005 -0.709344 0.704862 -1.0 +5790 1 1.72 26.5499993 15.9300004 46.0200005 -0.0791587 0.996862 -1.0 +5791 1 1.72 26.5499993 14.1599999 47.7900009 -0.613487 0.789704 -1.0 +5792 1 1.72 24.7800007 15.9300004 47.7900009 -0.751593 0.659627 -1.0 +5793 1 1.72 0.0 17.7000008 46.0200005 0.156439 0.987688 -1.0 +5794 1 1.72 1.77 19.4699993 46.0200005 0.946086 0.323915 -1.0 +5795 1 1.72 1.77 17.7000008 47.7900009 0.324054 -0.946039 -1.0 +5796 1 1.72 0.0 19.4699993 47.7900009 -0.380184 -0.924911 -1.0 +5797 1 1.72 3.54 17.7000008 46.0200005 -0.997566 0.0697237 -1.0 +5798 1 1.72 5.31 19.4699993 46.0200005 -0.00855329 0.999963 -1.0 +5799 1 1.72 5.31 17.7000008 47.7900009 -0.283175 -0.959068 -1.0 +5800 1 1.72 3.54 19.4699993 47.7900009 0.151529 -0.988453 -1.0 +5801 1 1.72 7.0799999 17.7000008 46.0200005 -0.155772 -0.987793 -1.0 +5802 1 1.72 8.8500004 19.4699993 46.0200005 0.594388 0.804179 -1.0 +5803 1 1.72 8.8500004 17.7000008 47.7900009 -0.02795 -0.999609 -1.0 +5804 1 1.72 7.0799999 19.4699993 47.7900009 0.780889 0.62467 -1.0 +5805 1 1.72 10.6199999 17.7000008 46.0200005 -0.788316 0.615271 -1.0 +5806 1 1.72 12.3900004 19.4699993 46.0200005 0.862787 -0.505567 -1.0 +5807 1 1.72 12.3900004 17.7000008 47.7900009 0.528517 -0.848923 -1.0 +5808 1 1.72 10.6199999 19.4699993 47.7900009 -0.914504 -0.404578 -1.0 +5809 1 1.72 14.1599999 17.7000008 46.0200005 -0.689964 -0.723844 -1.0 +5810 1 1.72 15.9300004 19.4699993 46.0200005 0.0323825 0.999476 -1.0 +5811 1 1.72 15.9300004 17.7000008 47.7900009 0.721354 -0.692567 -1.0 +5812 1 1.72 14.1599999 19.4699993 47.7900009 -0.996066 0.0886176 -1.0 +5813 1 1.72 17.7000008 17.7000008 46.0200005 0.922306 0.386461 -1.0 +5814 1 1.72 19.4699993 19.4699993 46.0200005 -0.56807 -0.82298 -1.0 +5815 1 1.72 19.4699993 17.7000008 47.7900009 0.793198 -0.608964 -1.0 +5816 1 1.72 17.7000008 19.4699993 47.7900009 0.516482 0.856298 -1.0 +5817 1 1.72 21.2399998 17.7000008 46.0200005 -0.144465 0.98951 -1.0 +5818 1 1.72 23.0100002 19.4699993 46.0200005 0.641254 0.767329 -1.0 +5819 1 1.72 23.0100002 17.7000008 47.7900009 0.884326 -0.466871 -1.0 +5820 1 1.72 21.2399998 19.4699993 47.7900009 -0.998958 -0.0456484 -1.0 +5821 1 1.72 24.7800007 17.7000008 46.0200005 0.933227 -0.359287 -1.0 +5822 1 1.72 26.5499993 19.4699993 46.0200005 0.554881 0.831929 -1.0 +5823 1 1.72 26.5499993 17.7000008 47.7900009 -1 9.33214e-05 -1.0 +5824 1 1.72 24.7800007 19.4699993 47.7900009 0.685526 -0.728049 -1.0 +5825 1 1.72 0.0 21.2399998 46.0200005 -0.986876 0.161481 -1.0 +5826 1 1.72 1.77 23.0100002 46.0200005 0.95263 -0.304131 -1.0 +5827 1 1.72 1.77 21.2399998 47.7900009 -0.879186 -0.47648 -1.0 +5828 1 1.72 0.0 23.0100002 47.7900009 0.161941 0.986801 -1.0 +5829 1 1.72 3.54 21.2399998 46.0200005 0.31256 -0.949898 -1.0 +5830 1 1.72 5.31 23.0100002 46.0200005 -0.407537 -0.913189 -1.0 +5831 1 1.72 5.31 21.2399998 47.7900009 0.968549 0.248822 -1.0 +5832 1 1.72 3.54 23.0100002 47.7900009 0.745773 0.666201 -1.0 +5833 1 1.72 7.0799999 21.2399998 46.0200005 -0.826377 -0.563117 -1.0 +5834 1 1.72 8.8500004 23.0100002 46.0200005 -0.28528 0.958444 -1.0 +5835 1 1.72 8.8500004 21.2399998 47.7900009 -0.724735 0.689028 -1.0 +5836 1 1.72 7.0799999 23.0100002 47.7900009 -0.867468 0.497494 -1.0 +5837 1 1.72 10.6199999 21.2399998 46.0200005 0.835506 -0.549481 -1.0 +5838 1 1.72 12.3900004 23.0100002 46.0200005 0.0559503 0.998434 -1.0 +5839 1 1.72 12.3900004 21.2399998 47.7900009 0.927847 -0.372962 -1.0 +5840 1 1.72 10.6199999 23.0100002 47.7900009 -0.0226294 -0.999744 -1.0 +5841 1 1.72 14.1599999 21.2399998 46.0200005 -0.982308 -0.187273 -1.0 +5842 1 1.72 15.9300004 23.0100002 46.0200005 -0.0043554 0.999991 -1.0 +5843 1 1.72 15.9300004 21.2399998 47.7900009 0.774304 -0.632814 -1.0 +5844 1 1.72 14.1599999 23.0100002 47.7900009 0.589507 0.807763 -1.0 +5845 1 1.72 17.7000008 21.2399998 46.0200005 0.915179 -0.403047 -1.0 +5846 1 1.72 19.4699993 23.0100002 46.0200005 -0.422625 -0.906305 -1.0 +5847 1 1.72 19.4699993 21.2399998 47.7900009 0.153881 -0.988089 -1.0 +5848 1 1.72 17.7000008 23.0100002 47.7900009 0.37917 0.925327 -1.0 +5849 1 1.72 21.2399998 21.2399998 46.0200005 0.838492 0.544914 -1.0 +5850 1 1.72 23.0100002 23.0100002 46.0200005 0.319679 0.947526 -1.0 +5851 1 1.72 23.0100002 21.2399998 47.7900009 0.600233 -0.799825 -1.0 +5852 1 1.72 21.2399998 23.0100002 47.7900009 -0.805494 -0.592604 -1.0 +5853 1 1.72 24.7800007 21.2399998 46.0200005 -0.142404 0.989809 -1.0 +5854 1 1.72 26.5499993 23.0100002 46.0200005 0.201734 0.97944 -1.0 +5855 1 1.72 26.5499993 21.2399998 47.7900009 -0.318626 -0.94788 -1.0 +5856 1 1.72 24.7800007 23.0100002 47.7900009 -0.178565 -0.983928 -1.0 +5857 1 1.72 0.0 24.7800007 46.0200005 -0.658313 0.752744 -1.0 +5858 1 1.72 1.77 26.5499993 46.0200005 -0.991669 0.128812 -1.0 +5859 1 1.72 1.77 24.7800007 47.7900009 0.874459 -0.485099 -1.0 +5860 1 1.72 0.0 26.5499993 47.7900009 0.585971 -0.810332 -1.0 +5861 1 1.72 3.54 24.7800007 46.0200005 -0.99995 0.00995136 -1.0 +5862 1 1.72 5.31 26.5499993 46.0200005 -0.946633 0.322315 -1.0 +5863 1 1.72 5.31 24.7800007 47.7900009 0.938436 -0.345452 -1.0 +5864 1 1.72 3.54 26.5499993 47.7900009 -0.731072 -0.6823 -1.0 +5865 1 1.72 7.0799999 24.7800007 46.0200005 0.205982 0.978556 -1.0 +5866 1 1.72 8.8500004 26.5499993 46.0200005 -0.164318 -0.986407 -1.0 +5867 1 1.72 8.8500004 24.7800007 47.7900009 0.509471 0.860488 -1.0 +5868 1 1.72 7.0799999 26.5499993 47.7900009 -0.361047 0.932548 -1.0 +5869 1 1.72 10.6199999 24.7800007 46.0200005 0.722525 -0.691344 -1.0 +5870 1 1.72 12.3900004 26.5499993 46.0200005 -0.724186 0.689604 -1.0 +5871 1 1.72 12.3900004 24.7800007 47.7900009 -0.290863 -0.956765 -1.0 +5872 1 1.72 10.6199999 26.5499993 47.7900009 -0.120971 -0.992656 -1.0 +5873 1 1.72 14.1599999 24.7800007 46.0200005 -0.939219 -0.343319 -1.0 +5874 1 1.72 15.9300004 26.5499993 46.0200005 0.233855 -0.972272 -1.0 +5875 1 1.72 15.9300004 24.7800007 47.7900009 0.946714 0.322076 -1.0 +5876 1 1.72 14.1599999 26.5499993 47.7900009 -0.996297 -0.0859731 -1.0 +5877 1 1.72 17.7000008 24.7800007 46.0200005 -0.498565 -0.866852 -1.0 +5878 1 1.72 19.4699993 26.5499993 46.0200005 0.509565 0.860432 -1.0 +5879 1 1.72 19.4699993 24.7800007 47.7900009 -0.321241 -0.946997 -1.0 +5880 1 1.72 17.7000008 26.5499993 47.7900009 -0.73784 0.674976 -1.0 +5881 1 1.72 21.2399998 24.7800007 46.0200005 0.729409 0.684078 -1.0 +5882 1 1.72 23.0100002 26.5499993 46.0200005 0.998968 0.045429 -1.0 +5883 1 1.72 23.0100002 24.7800007 47.7900009 -0.673111 -0.739541 -1.0 +5884 1 1.72 21.2399998 26.5499993 47.7900009 0.281915 0.959439 -1.0 +5885 1 1.72 24.7800007 24.7800007 46.0200005 -0.786832 -0.617167 -1.0 +5886 1 1.72 26.5499993 26.5499993 46.0200005 0.551405 -0.834238 -1.0 +5887 1 1.72 26.5499993 24.7800007 47.7900009 0.982712 -0.185139 -1.0 +5888 1 1.72 24.7800007 26.5499993 47.7900009 -0.811209 -0.584756 -1.0 +5889 1 1.72 0.0 14.1599999 49.5600014 -0.378852 -0.925457 -1.0 +5890 1 1.72 1.77 15.9300004 49.5600014 0.94023 0.340539 -1.0 +5891 1 1.72 1.77 14.1599999 51.3300018 -0.778255 0.627949 -1.0 +5892 1 1.72 0.0 15.9300004 51.3300018 -0.882207 -0.470862 -1.0 +5893 1 1.72 3.54 14.1599999 49.5600014 0.829729 -0.558167 -1.0 +5894 1 1.72 5.31 15.9300004 49.5600014 0.730525 -0.682886 -1.0 +5895 1 1.72 5.31 14.1599999 51.3300018 0.881015 0.473089 -1.0 +5896 1 1.72 3.54 15.9300004 51.3300018 -0.272063 0.962279 -1.0 +5897 1 1.72 7.0799999 14.1599999 49.5600014 -0.555908 -0.831244 -1.0 +5898 1 1.72 8.8500004 15.9300004 49.5600014 0.161216 0.986919 -1.0 +5899 1 1.72 8.8500004 14.1599999 51.3300018 0.55463 -0.832097 -1.0 +5900 1 1.72 7.0799999 15.9300004 51.3300018 0.0775085 -0.996992 -1.0 +5901 1 1.72 10.6199999 14.1599999 49.5600014 0.606038 0.795436 -1.0 +5902 1 1.72 12.3900004 15.9300004 49.5600014 -0.407017 -0.91342 -1.0 +5903 1 1.72 12.3900004 14.1599999 51.3300018 -0.766085 -0.642739 -1.0 +5904 1 1.72 10.6199999 15.9300004 51.3300018 0.197994 -0.980203 -1.0 +5905 1 1.72 14.1599999 14.1599999 49.5600014 -0.324909 -0.945745 -1.0 +5906 1 1.72 15.9300004 15.9300004 49.5600014 0.948694 -0.316195 -1.0 +5907 1 1.72 15.9300004 14.1599999 51.3300018 0.22908 -0.973408 -1.0 +5908 1 1.72 14.1599999 15.9300004 51.3300018 0.0967196 -0.995312 -1.0 +5909 1 1.72 17.7000008 14.1599999 49.5600014 0.966499 0.256671 -1.0 +5910 1 1.72 19.4699993 15.9300004 49.5600014 -0.992529 0.122013 -1.0 +5911 1 1.72 19.4699993 14.1599999 51.3300018 -0.585995 0.810314 -1.0 +5912 1 1.72 17.7000008 15.9300004 51.3300018 -0.841433 -0.540361 -1.0 +5913 1 1.72 21.2399998 14.1599999 49.5600014 -0.810271 -0.586055 -1.0 +5914 1 1.72 23.0100002 15.9300004 49.5600014 -0.756237 0.654298 -1.0 +5915 1 1.72 23.0100002 14.1599999 51.3300018 -0.985467 -0.169868 -1.0 +5916 1 1.72 21.2399998 15.9300004 51.3300018 -0.793037 -0.609173 -1.0 +5917 1 1.72 24.7800007 14.1599999 49.5600014 0.627531 -0.778592 -1.0 +5918 1 1.72 26.5499993 15.9300004 49.5600014 -0.100017 -0.994986 -1.0 +5919 1 1.72 26.5499993 14.1599999 51.3300018 0.359122 0.933291 -1.0 +5920 1 1.72 24.7800007 15.9300004 51.3300018 0.760315 -0.649555 -1.0 +5921 1 1.72 0.0 17.7000008 49.5600014 -0.602877 0.797834 -1.0 +5922 1 1.72 1.77 19.4699993 49.5600014 -0.0245025 0.9997 -1.0 +5923 1 1.72 1.77 17.7000008 51.3300018 0.645255 -0.763967 -1.0 +5924 1 1.72 0.0 19.4699993 51.3300018 0.427044 0.904231 -1.0 +5925 1 1.72 3.54 17.7000008 49.5600014 0.244096 0.969751 -1.0 +5926 1 1.72 5.31 19.4699993 49.5600014 0.6477 -0.761896 -1.0 +5927 1 1.72 5.31 17.7000008 51.3300018 -0.999997 -0.00230823 -1.0 +5928 1 1.72 3.54 19.4699993 51.3300018 0.849217 0.528044 -1.0 +5929 1 1.72 7.0799999 17.7000008 49.5600014 -0.591012 0.806663 -1.0 +5930 1 1.72 8.8500004 19.4699993 49.5600014 -0.711179 -0.70301 -1.0 +5931 1 1.72 8.8500004 17.7000008 51.3300018 0.724686 -0.689079 -1.0 +5932 1 1.72 7.0799999 19.4699993 51.3300018 -0.321062 0.947058 -1.0 +5933 1 1.72 10.6199999 17.7000008 49.5600014 0.477399 0.878687 -1.0 +5934 1 1.72 12.3900004 19.4699993 49.5600014 0.100959 -0.994891 -1.0 +5935 1 1.72 12.3900004 17.7000008 51.3300018 -0.735617 -0.677398 -1.0 +5936 1 1.72 10.6199999 19.4699993 51.3300018 -0.850138 0.52656 -1.0 +5937 1 1.72 14.1599999 17.7000008 49.5600014 0.663083 0.748546 -1.0 +5938 1 1.72 15.9300004 19.4699993 49.5600014 0.924604 0.38093 -1.0 +5939 1 1.72 15.9300004 17.7000008 51.3300018 -0.978143 0.207935 -1.0 +5940 1 1.72 14.1599999 19.4699993 51.3300018 0.354761 0.934957 -1.0 +5941 1 1.72 17.7000008 17.7000008 49.5600014 -0.766512 -0.64223 -1.0 +5942 1 1.72 19.4699993 19.4699993 49.5600014 0.997204 0.0747274 -1.0 +5943 1 1.72 19.4699993 17.7000008 51.3300018 0.706698 -0.707515 -1.0 +5944 1 1.72 17.7000008 19.4699993 51.3300018 -0.895599 -0.444862 -1.0 +5945 1 1.72 21.2399998 17.7000008 49.5600014 0.67208 0.740479 -1.0 +5946 1 1.72 23.0100002 19.4699993 49.5600014 0.875781 -0.482709 -1.0 +5947 1 1.72 23.0100002 17.7000008 51.3300018 -0.347583 0.937649 -1.0 +5948 1 1.72 21.2399998 19.4699993 51.3300018 0.548923 -0.835873 -1.0 +5949 1 1.72 24.7800007 17.7000008 49.5600014 0.771295 -0.636478 -1.0 +5950 1 1.72 26.5499993 19.4699993 49.5600014 0.941643 0.336614 -1.0 +5951 1 1.72 26.5499993 17.7000008 51.3300018 -0.865584 0.500763 -1.0 +5952 1 1.72 24.7800007 19.4699993 51.3300018 0.779822 -0.626001 -1.0 +5953 1 1.72 0.0 21.2399998 49.5600014 0.979665 0.20064 -1.0 +5954 1 1.72 1.77 23.0100002 49.5600014 0.137288 -0.990531 -1.0 +5955 1 1.72 1.77 21.2399998 51.3300018 -0.904205 -0.427099 -1.0 +5956 1 1.72 0.0 23.0100002 51.3300018 -0.0732805 0.997311 -1.0 +5957 1 1.72 3.54 21.2399998 49.5600014 0.559086 -0.829109 -1.0 +5958 1 1.72 5.31 23.0100002 49.5600014 0.199777 -0.979841 -1.0 +5959 1 1.72 5.31 21.2399998 51.3300018 -0.755573 0.655064 -1.0 +5960 1 1.72 3.54 23.0100002 51.3300018 -0.846541 0.532324 -1.0 +5961 1 1.72 7.0799999 21.2399998 49.5600014 0.693924 0.720048 -1.0 +5962 1 1.72 8.8500004 23.0100002 49.5600014 0.19329 -0.981142 -1.0 +5963 1 1.72 8.8500004 21.2399998 51.3300018 0.655598 0.75511 -1.0 +5964 1 1.72 7.0799999 23.0100002 51.3300018 -0.629838 -0.776727 -1.0 +5965 1 1.72 10.6199999 21.2399998 49.5600014 -0.895625 -0.444809 -1.0 +5966 1 1.72 12.3900004 23.0100002 49.5600014 -0.54358 -0.839357 -1.0 +5967 1 1.72 12.3900004 21.2399998 51.3300018 -0.975636 0.219395 -1.0 +5968 1 1.72 10.6199999 23.0100002 51.3300018 0.698311 0.715794 -1.0 +5969 1 1.72 14.1599999 21.2399998 49.5600014 -0.340312 -0.940313 -1.0 +5970 1 1.72 15.9300004 23.0100002 49.5600014 -0.903902 -0.42774 -1.0 +5971 1 1.72 15.9300004 21.2399998 51.3300018 -0.230151 0.973155 -1.0 +5972 1 1.72 14.1599999 23.0100002 51.3300018 0.701267 0.712899 -1.0 +5973 1 1.72 17.7000008 21.2399998 49.5600014 -0.689618 -0.724173 -1.0 +5974 1 1.72 19.4699993 23.0100002 49.5600014 -0.881775 0.47167 -1.0 +5975 1 1.72 19.4699993 21.2399998 51.3300018 0.912698 0.408635 -1.0 +5976 1 1.72 17.7000008 23.0100002 51.3300018 0.34639 0.93809 -1.0 +5977 1 1.72 21.2399998 21.2399998 49.5600014 -0.0205107 0.99979 -1.0 +5978 1 1.72 23.0100002 23.0100002 49.5600014 0.298867 0.954295 -1.0 +5979 1 1.72 23.0100002 21.2399998 51.3300018 -0.673034 -0.739612 -1.0 +5980 1 1.72 21.2399998 23.0100002 51.3300018 0.145859 0.989305 -1.0 +5981 1 1.72 24.7800007 21.2399998 49.5600014 -0.79415 0.607722 -1.0 +5982 1 1.72 26.5499993 23.0100002 49.5600014 0.73531 -0.677731 -1.0 +5983 1 1.72 26.5499993 21.2399998 51.3300018 0.173649 -0.984808 -1.0 +5984 1 1.72 24.7800007 23.0100002 51.3300018 -0.976362 -0.216143 -1.0 +5985 1 1.72 0.0 24.7800007 49.5600014 0.5347 -0.845042 -1.0 +5986 1 1.72 1.77 26.5499993 49.5600014 -0.187923 -0.982184 -1.0 +5987 1 1.72 1.77 24.7800007 51.3300018 -0.844181 -0.536058 -1.0 +5988 1 1.72 0.0 26.5499993 51.3300018 0.907133 -0.420845 -1.0 +5989 1 1.72 3.54 24.7800007 49.5600014 -0.586332 -0.810071 -1.0 +5990 1 1.72 5.31 26.5499993 49.5600014 0.438191 0.898882 -1.0 +5991 1 1.72 5.31 24.7800007 51.3300018 -0.913197 -0.407519 -1.0 +5992 1 1.72 3.54 26.5499993 51.3300018 -0.41393 0.910309 -1.0 +5993 1 1.72 7.0799999 24.7800007 49.5600014 0.288946 -0.957345 -1.0 +5994 1 1.72 8.8500004 26.5499993 49.5600014 0.78547 0.618899 -1.0 +5995 1 1.72 8.8500004 24.7800007 51.3300018 -0.776557 0.630047 -1.0 +5996 1 1.72 7.0799999 26.5499993 51.3300018 0.985367 -0.170445 -1.0 +5997 1 1.72 10.6199999 24.7800007 49.5600014 0.887208 0.461369 -1.0 +5998 1 1.72 12.3900004 26.5499993 49.5600014 -0.713169 0.700993 -1.0 +5999 1 1.72 12.3900004 24.7800007 51.3300018 -0.997513 -0.0704793 -1.0 +6000 1 1.72 10.6199999 26.5499993 51.3300018 -0.7018 0.712374 -1.0 +6001 1 1.72 14.1599999 24.7800007 49.5600014 0.564894 0.825163 -1.0 +6002 1 1.72 15.9300004 26.5499993 49.5600014 -0.400972 0.91609 -1.0 +6003 1 1.72 15.9300004 24.7800007 51.3300018 -0.636085 -0.771619 -1.0 +6004 1 1.72 14.1599999 26.5499993 51.3300018 -0.998899 -0.0469201 -1.0 +6005 1 1.72 17.7000008 24.7800007 49.5600014 0.577245 0.816571 -1.0 +6006 1 1.72 19.4699993 26.5499993 49.5600014 0.501571 -0.865116 -1.0 +6007 1 1.72 19.4699993 24.7800007 51.3300018 -0.849829 0.527058 -1.0 +6008 1 1.72 17.7000008 26.5499993 51.3300018 -0.856265 0.516537 -1.0 +6009 1 1.72 21.2399998 24.7800007 49.5600014 0.54668 0.837342 -1.0 +6010 1 1.72 23.0100002 26.5499993 49.5600014 -0.887267 0.461256 -1.0 +6011 1 1.72 23.0100002 24.7800007 51.3300018 -0.603538 0.797334 -1.0 +6012 1 1.72 21.2399998 26.5499993 51.3300018 0.920581 0.390551 -1.0 +6013 1 1.72 24.7800007 24.7800007 49.5600014 0.746523 0.66536 -1.0 +6014 1 1.72 26.5499993 26.5499993 49.5600014 -0.338329 -0.941028 -1.0 +6015 1 1.72 26.5499993 24.7800007 51.3300018 -0.986506 0.163725 -1.0 +6016 1 1.72 24.7800007 26.5499993 51.3300018 0.265652 -0.964069 -1.0 +6017 1 1.72 0.0 14.1599999 53.0999985 -0.72963 0.683842 -1.0 +6018 1 1.72 1.77 15.9300004 53.0999985 -0.299932 0.953961 -1.0 +6019 1 1.72 1.77 14.1599999 54.869999 0.957468 0.288538 -1.0 +6020 1 1.72 0.0 15.9300004 54.869999 0.866176 -0.49974 -1.0 +6021 1 1.72 3.54 14.1599999 53.0999985 -0.501889 0.864932 -1.0 +6022 1 1.72 5.31 15.9300004 53.0999985 0.493589 -0.869696 -1.0 +6023 1 1.72 5.31 14.1599999 54.869999 -0.776653 -0.629928 -1.0 +6024 1 1.72 3.54 15.9300004 54.869999 0.610332 0.792146 -1.0 +6025 1 1.72 7.0799999 14.1599999 53.0999985 0.885414 0.464804 -1.0 +6026 1 1.72 8.8500004 15.9300004 53.0999985 0.268507 -0.963278 -1.0 +6027 1 1.72 8.8500004 14.1599999 54.869999 0.635853 0.77181 -1.0 +6028 1 1.72 7.0799999 15.9300004 54.869999 -0.392523 0.919742 -1.0 +6029 1 1.72 10.6199999 14.1599999 53.0999985 -0.807955 -0.589244 -1.0 +6030 1 1.72 12.3900004 15.9300004 53.0999985 -0.765741 0.643149 -1.0 +6031 1 1.72 12.3900004 14.1599999 54.869999 -0.0402604 0.999189 -1.0 +6032 1 1.72 10.6199999 15.9300004 54.869999 -0.976692 0.214646 -1.0 +6033 1 1.72 14.1599999 14.1599999 53.0999985 0.656043 -0.754723 -1.0 +6034 1 1.72 15.9300004 15.9300004 53.0999985 0.984375 0.176087 -1.0 +6035 1 1.72 15.9300004 14.1599999 54.869999 -0.403852 0.914824 -1.0 +6036 1 1.72 14.1599999 15.9300004 54.869999 -0.991719 0.128425 -1.0 +6037 1 1.72 17.7000008 14.1599999 53.0999985 -0.497478 -0.867477 -1.0 +6038 1 1.72 19.4699993 15.9300004 53.0999985 0.693678 0.720286 -1.0 +6039 1 1.72 19.4699993 14.1599999 54.869999 0.59347 0.804856 -1.0 +6040 1 1.72 17.7000008 15.9300004 54.869999 -0.631317 -0.775525 -1.0 +6041 1 1.72 21.2399998 14.1599999 53.0999985 -0.597686 -0.80173 -1.0 +6042 1 1.72 23.0100002 15.9300004 53.0999985 0.64387 0.765135 -1.0 +6043 1 1.72 23.0100002 14.1599999 54.869999 0.802127 0.597153 -1.0 +6044 1 1.72 21.2399998 15.9300004 54.869999 0.495227 0.868764 -1.0 +6045 1 1.72 24.7800007 14.1599999 53.0999985 -0.960438 0.278492 -1.0 +6046 1 1.72 26.5499993 15.9300004 53.0999985 0.748164 -0.663513 -1.0 +6047 1 1.72 26.5499993 14.1599999 54.869999 0.601855 -0.798606 -1.0 +6048 1 1.72 24.7800007 15.9300004 54.869999 -0.537521 0.843251 -1.0 +6049 1 1.72 0.0 17.7000008 53.0999985 -0.991989 0.126325 -1.0 +6050 1 1.72 1.77 19.4699993 53.0999985 -0.94481 -0.327618 -1.0 +6051 1 1.72 1.77 17.7000008 54.869999 -0.0136834 0.999906 -1.0 +6052 1 1.72 0.0 19.4699993 54.869999 0.708202 0.70601 -1.0 +6053 1 1.72 3.54 17.7000008 53.0999985 0.226221 -0.974076 -1.0 +6054 1 1.72 5.31 19.4699993 53.0999985 0.523416 -0.852077 -1.0 +6055 1 1.72 5.31 17.7000008 54.869999 0.883203 -0.46899 -1.0 +6056 1 1.72 3.54 19.4699993 54.869999 -0.784698 0.619878 -1.0 +6057 1 1.72 7.0799999 17.7000008 53.0999985 -0.81023 0.586112 -1.0 +6058 1 1.72 8.8500004 19.4699993 53.0999985 -0.859116 -0.511781 -1.0 +6059 1 1.72 8.8500004 17.7000008 54.869999 -0.903797 -0.427962 -1.0 +6060 1 1.72 7.0799999 19.4699993 54.869999 -0.879628 0.475663 -1.0 +6061 1 1.72 10.6199999 17.7000008 53.0999985 -0.789816 -0.613343 -1.0 +6062 1 1.72 12.3900004 19.4699993 53.0999985 -0.942537 -0.334103 -1.0 +6063 1 1.72 12.3900004 17.7000008 54.869999 0.416996 0.908908 -1.0 +6064 1 1.72 10.6199999 19.4699993 54.869999 -0.681301 0.732004 -1.0 +6065 1 1.72 14.1599999 17.7000008 53.0999985 -0.957046 -0.289937 -1.0 +6066 1 1.72 15.9300004 19.4699993 53.0999985 -0.869426 0.494063 -1.0 +6067 1 1.72 15.9300004 17.7000008 54.869999 0.899954 0.435985 -1.0 +6068 1 1.72 14.1599999 19.4699993 54.869999 0.928905 -0.370318 -1.0 +6069 1 1.72 17.7000008 17.7000008 53.0999985 0.800868 0.598841 -1.0 +6070 1 1.72 19.4699993 19.4699993 53.0999985 -0.0768143 0.997045 -1.0 +6071 1 1.72 19.4699993 17.7000008 54.869999 -0.873311 -0.487162 -1.0 +6072 1 1.72 17.7000008 19.4699993 54.869999 0.185048 0.98273 -1.0 +6073 1 1.72 21.2399998 17.7000008 53.0999985 0.920819 0.389991 -1.0 +6074 1 1.72 23.0100002 19.4699993 53.0999985 0.941101 0.338127 -1.0 +6075 1 1.72 23.0100002 17.7000008 54.869999 -0.838651 0.544669 -1.0 +6076 1 1.72 21.2399998 19.4699993 54.869999 0.970527 0.240994 -1.0 +6077 1 1.72 24.7800007 17.7000008 53.0999985 -0.969271 0.245995 -1.0 +6078 1 1.72 26.5499993 19.4699993 53.0999985 0.379428 -0.925221 -1.0 +6079 1 1.72 26.5499993 17.7000008 54.869999 -0.663907 -0.747815 -1.0 +6080 1 1.72 24.7800007 19.4699993 54.869999 0.782445 -0.62272 -1.0 +6081 1 1.72 0.0 21.2399998 53.0999985 0.664193 0.747561 -1.0 +6082 1 1.72 1.77 23.0100002 53.0999985 0.319604 -0.947551 -1.0 +6083 1 1.72 1.77 21.2399998 54.869999 -0.979708 0.200428 -1.0 +6084 1 1.72 0.0 23.0100002 54.869999 -0.860156 0.510031 -1.0 +6085 1 1.72 3.54 21.2399998 53.0999985 0.748734 -0.662871 -1.0 +6086 1 1.72 5.31 23.0100002 53.0999985 0.992462 0.122552 -1.0 +6087 1 1.72 5.31 21.2399998 54.869999 0.963914 0.266214 -1.0 +6088 1 1.72 3.54 23.0100002 54.869999 0.432071 -0.901839 -1.0 +6089 1 1.72 7.0799999 21.2399998 53.0999985 -0.26461 0.964356 -1.0 +6090 1 1.72 8.8500004 23.0100002 53.0999985 0.481707 -0.876333 -1.0 +6091 1 1.72 8.8500004 21.2399998 54.869999 -0.871163 0.490995 -1.0 +6092 1 1.72 7.0799999 23.0100002 54.869999 0.756985 0.653432 -1.0 +6093 1 1.72 10.6199999 21.2399998 53.0999985 0.339734 0.940521 -1.0 +6094 1 1.72 12.3900004 23.0100002 53.0999985 -0.939021 0.343859 -1.0 +6095 1 1.72 12.3900004 21.2399998 54.869999 -0.682085 -0.731273 -1.0 +6096 1 1.72 10.6199999 23.0100002 54.869999 0.96389 0.266299 -1.0 +6097 1 1.72 14.1599999 21.2399998 53.0999985 0.860549 0.509368 -1.0 +6098 1 1.72 15.9300004 23.0100002 53.0999985 0.908841 0.417142 -1.0 +6099 1 1.72 15.9300004 21.2399998 54.869999 -0.883369 0.468677 -1.0 +6100 1 1.72 14.1599999 23.0100002 54.869999 0.733525 -0.679663 -1.0 +6101 1 1.72 17.7000008 21.2399998 53.0999985 0.463029 0.886343 -1.0 +6102 1 1.72 19.4699993 23.0100002 53.0999985 -0.792296 0.610137 -1.0 +6103 1 1.72 19.4699993 21.2399998 54.869999 0.981842 0.1897 -1.0 +6104 1 1.72 17.7000008 23.0100002 54.869999 0.0679748 0.997687 -1.0 +6105 1 1.72 21.2399998 21.2399998 53.0999985 0.956503 0.291723 -1.0 +6106 1 1.72 23.0100002 23.0100002 53.0999985 -0.748672 -0.662941 -1.0 +6107 1 1.72 23.0100002 21.2399998 54.869999 -0.0648316 0.997896 -1.0 +6108 1 1.72 21.2399998 23.0100002 54.869999 -0.734013 -0.679135 -1.0 +6109 1 1.72 24.7800007 21.2399998 53.0999985 -0.970461 0.241259 -1.0 +6110 1 1.72 26.5499993 23.0100002 53.0999985 -0.955043 0.296468 -1.0 +6111 1 1.72 26.5499993 21.2399998 54.869999 -0.985548 -0.169399 -1.0 +6112 1 1.72 24.7800007 23.0100002 54.869999 -0.43818 -0.898887 -1.0 +6113 1 1.72 0.0 24.7800007 53.0999985 -0.600664 0.799502 -1.0 +6114 1 1.72 1.77 26.5499993 53.0999985 0.736182 -0.676783 -1.0 +6115 1 1.72 1.77 24.7800007 54.869999 -0.515497 0.856891 -1.0 +6116 1 1.72 0.0 26.5499993 54.869999 0.692556 -0.721364 -1.0 +6117 1 1.72 3.54 24.7800007 53.0999985 0.939422 -0.342762 -1.0 +6118 1 1.72 5.31 26.5499993 53.0999985 0.880277 0.474461 -1.0 +6119 1 1.72 5.31 24.7800007 54.869999 -0.985977 0.166882 -1.0 +6120 1 1.72 3.54 26.5499993 54.869999 -0.606136 0.795361 -1.0 +6121 1 1.72 7.0799999 24.7800007 53.0999985 -0.461354 -0.887216 -1.0 +6122 1 1.72 8.8500004 26.5499993 53.0999985 0.31104 0.950397 -1.0 +6123 1 1.72 8.8500004 24.7800007 54.869999 -0.825827 -0.563924 -1.0 +6124 1 1.72 7.0799999 26.5499993 54.869999 -0.839495 0.543368 -1.0 +6125 1 1.72 10.6199999 24.7800007 53.0999985 -0.837533 -0.546387 -1.0 +6126 1 1.72 12.3900004 26.5499993 53.0999985 -0.323314 0.946292 -1.0 +6127 1 1.72 12.3900004 24.7800007 54.869999 0.958557 0.284901 -1.0 +6128 1 1.72 10.6199999 26.5499993 54.869999 -0.896889 0.442255 -1.0 +6129 1 1.72 14.1599999 24.7800007 53.0999985 0.645668 0.763618 -1.0 +6130 1 1.72 15.9300004 26.5499993 53.0999985 0.811009 -0.585034 -1.0 +6131 1 1.72 15.9300004 24.7800007 54.869999 -0.984547 -0.175122 -1.0 +6132 1 1.72 14.1599999 26.5499993 54.869999 0.664199 0.747556 -1.0 +6133 1 1.72 17.7000008 24.7800007 53.0999985 -0.991435 -0.130602 -1.0 +6134 1 1.72 19.4699993 26.5499993 53.0999985 0.851608 -0.524179 -1.0 +6135 1 1.72 19.4699993 24.7800007 54.869999 -0.0537322 -0.998555 -1.0 +6136 1 1.72 17.7000008 26.5499993 54.869999 0.632995 -0.774156 -1.0 +6137 1 1.72 21.2399998 24.7800007 53.0999985 0.821012 -0.570911 -1.0 +6138 1 1.72 23.0100002 26.5499993 53.0999985 -0.479579 -0.877499 -1.0 +6139 1 1.72 23.0100002 24.7800007 54.869999 0.796757 0.604299 -1.0 +6140 1 1.72 21.2399998 26.5499993 54.869999 0.418754 0.9081 -1.0 +6141 1 1.72 24.7800007 24.7800007 53.0999985 0.706741 0.707472 -1.0 +6142 1 1.72 26.5499993 26.5499993 53.0999985 -0.332138 -0.943231 -1.0 +6143 1 1.72 26.5499993 24.7800007 54.869999 -0.979636 0.200783 -1.0 +6144 1 1.72 24.7800007 26.5499993 54.869999 -0.934429 0.356149 -1.0 +6145 1 1.72 0.0 14.1599999 56.6399994 0.745078 -0.666977 -1.0 +6146 1 1.72 1.77 15.9300004 56.6399994 -0.0534769 0.998569 -1.0 +6147 1 1.72 1.77 14.1599999 58.4099999 0.0381051 0.999274 -1.0 +6148 1 1.72 0.0 15.9300004 58.4099999 0.484357 -0.874871 -1.0 +6149 1 1.72 3.54 14.1599999 56.6399994 -0.448471 0.893797 -1.0 +6150 1 1.72 5.31 15.9300004 56.6399994 -0.785522 -0.618833 -1.0 +6151 1 1.72 5.31 14.1599999 58.4099999 -0.264326 0.964434 -1.0 +6152 1 1.72 3.54 15.9300004 58.4099999 0.915682 0.401904 -1.0 +6153 1 1.72 7.0799999 14.1599999 56.6399994 -0.820932 -0.571026 -1.0 +6154 1 1.72 8.8500004 15.9300004 56.6399994 -0.252086 0.967705 -1.0 +6155 1 1.72 8.8500004 14.1599999 58.4099999 0.977799 0.209544 -1.0 +6156 1 1.72 7.0799999 15.9300004 58.4099999 0.311074 -0.950386 -1.0 +6157 1 1.72 10.6199999 14.1599999 56.6399994 -0.290455 0.956889 -1.0 +6158 1 1.72 12.3900004 15.9300004 56.6399994 -0.834731 -0.550658 -1.0 +6159 1 1.72 12.3900004 14.1599999 58.4099999 -0.45901 -0.888431 -1.0 +6160 1 1.72 10.6199999 15.9300004 58.4099999 0.898137 0.439716 -1.0 +6161 1 1.72 14.1599999 14.1599999 56.6399994 0.683583 -0.729872 -1.0 +6162 1 1.72 15.9300004 15.9300004 56.6399994 -0.683908 0.729568 -1.0 +6163 1 1.72 15.9300004 14.1599999 58.4099999 -0.149631 -0.988742 -1.0 +6164 1 1.72 14.1599999 15.9300004 58.4099999 -0.928038 -0.372486 -1.0 +6165 1 1.72 17.7000008 14.1599999 56.6399994 0.562022 -0.827122 -1.0 +6166 1 1.72 19.4699993 15.9300004 56.6399994 -0.747294 -0.664493 -1.0 +6167 1 1.72 19.4699993 14.1599999 58.4099999 -0.914706 0.404121 -1.0 +6168 1 1.72 17.7000008 15.9300004 58.4099999 0.940618 -0.339468 -1.0 +6169 1 1.72 21.2399998 14.1599999 56.6399994 -0.850079 -0.526656 -1.0 +6170 1 1.72 23.0100002 15.9300004 56.6399994 0.0720329 0.997402 -1.0 +6171 1 1.72 23.0100002 14.1599999 58.4099999 0.666717 -0.745311 -1.0 +6172 1 1.72 21.2399998 15.9300004 58.4099999 -0.961714 0.274054 -1.0 +6173 1 1.72 24.7800007 14.1599999 56.6399994 0.838655 0.544663 -1.0 +6174 1 1.72 26.5499993 15.9300004 56.6399994 -0.682543 -0.730846 -1.0 +6175 1 1.72 26.5499993 14.1599999 58.4099999 -0.0831215 0.996539 -1.0 +6176 1 1.72 24.7800007 15.9300004 58.4099999 0.759416 0.650605 -1.0 +6177 1 1.72 0.0 17.7000008 56.6399994 0.0576829 -0.998335 -1.0 +6178 1 1.72 1.77 19.4699993 56.6399994 -0.769262 -0.638933 -1.0 +6179 1 1.72 1.77 17.7000008 58.4099999 -0.208584 -0.978004 -1.0 +6180 1 1.72 0.0 19.4699993 58.4099999 -0.924776 -0.380511 -1.0 +6181 1 1.72 3.54 17.7000008 56.6399994 -0.962506 0.27126 -1.0 +6182 1 1.72 5.31 19.4699993 56.6399994 -0.0716457 -0.99743 -1.0 +6183 1 1.72 5.31 17.7000008 58.4099999 0.164676 0.986348 -1.0 +6184 1 1.72 3.54 19.4699993 58.4099999 0.991412 0.130774 -1.0 +6185 1 1.72 7.0799999 17.7000008 56.6399994 -0.363444 0.931616 -1.0 +6186 1 1.72 8.8500004 19.4699993 56.6399994 -0.0119062 0.999929 -1.0 +6187 1 1.72 8.8500004 17.7000008 58.4099999 0.22231 0.974976 -1.0 +6188 1 1.72 7.0799999 19.4699993 58.4099999 0.961408 -0.275128 -1.0 +6189 1 1.72 10.6199999 17.7000008 56.6399994 -0.607423 -0.794378 -1.0 +6190 1 1.72 12.3900004 19.4699993 56.6399994 0.989865 -0.142013 -1.0 +6191 1 1.72 12.3900004 17.7000008 58.4099999 0.767012 0.641633 -1.0 +6192 1 1.72 10.6199999 19.4699993 58.4099999 -0.736003 -0.676978 -1.0 +6193 1 1.72 14.1599999 17.7000008 56.6399994 -0.971226 0.238158 -1.0 +6194 1 1.72 15.9300004 19.4699993 56.6399994 0.373071 -0.927803 -1.0 +6195 1 1.72 15.9300004 17.7000008 58.4099999 -0.875468 0.483276 -1.0 +6196 1 1.72 14.1599999 19.4699993 58.4099999 0.982302 0.187305 -1.0 +6197 1 1.72 17.7000008 17.7000008 56.6399994 -0.560127 -0.828407 -1.0 +6198 1 1.72 19.4699993 19.4699993 56.6399994 -0.714866 0.699261 -1.0 +6199 1 1.72 19.4699993 17.7000008 58.4099999 0.985568 0.169281 -1.0 +6200 1 1.72 17.7000008 19.4699993 58.4099999 -0.767819 -0.640666 -1.0 +6201 1 1.72 21.2399998 17.7000008 56.6399994 -0.806884 -0.590709 -1.0 +6202 1 1.72 23.0100002 19.4699993 56.6399994 -0.763425 0.645896 -1.0 +6203 1 1.72 23.0100002 17.7000008 58.4099999 -0.239619 0.970867 -1.0 +6204 1 1.72 21.2399998 19.4699993 58.4099999 0.756541 -0.653946 -1.0 +6205 1 1.72 24.7800007 17.7000008 56.6399994 -0.875227 0.483712 -1.0 +6206 1 1.72 26.5499993 19.4699993 56.6399994 -0.98215 -0.188097 -1.0 +6207 1 1.72 26.5499993 17.7000008 58.4099999 0.274667 0.961539 -1.0 +6208 1 1.72 24.7800007 19.4699993 58.4099999 0.0453293 -0.998972 -1.0 +6209 1 1.72 0.0 21.2399998 56.6399994 -0.432482 -0.901642 -1.0 +6210 1 1.72 1.77 23.0100002 56.6399994 0.621095 0.783735 -1.0 +6211 1 1.72 1.77 21.2399998 58.4099999 0.341431 -0.939907 -1.0 +6212 1 1.72 0.0 23.0100002 58.4099999 0.685631 0.727949 -1.0 +6213 1 1.72 3.54 21.2399998 56.6399994 -0.854038 0.520211 -1.0 +6214 1 1.72 5.31 23.0100002 56.6399994 0.991484 0.130229 -1.0 +6215 1 1.72 5.31 21.2399998 58.4099999 -0.482334 -0.875987 -1.0 +6216 1 1.72 3.54 23.0100002 58.4099999 0.49268 -0.870211 -1.0 +6217 1 1.72 7.0799999 21.2399998 56.6399994 0.816957 -0.576699 -1.0 +6218 1 1.72 8.8500004 23.0100002 56.6399994 -0.268876 0.963175 -1.0 +6219 1 1.72 8.8500004 21.2399998 58.4099999 0.57304 -0.819528 -1.0 +6220 1 1.72 7.0799999 23.0100002 58.4099999 0.727064 0.68657 -1.0 +6221 1 1.72 10.6199999 21.2399998 56.6399994 0.978699 -0.2053 -1.0 +6222 1 1.72 12.3900004 23.0100002 56.6399994 -0.991386 0.130972 -1.0 +6223 1 1.72 12.3900004 21.2399998 58.4099999 -0.515684 0.856779 -1.0 +6224 1 1.72 10.6199999 23.0100002 58.4099999 -0.733937 0.679218 -1.0 +6225 1 1.72 14.1599999 21.2399998 56.6399994 0.471506 0.881863 -1.0 +6226 1 1.72 15.9300004 23.0100002 56.6399994 0.647446 -0.762111 -1.0 +6227 1 1.72 15.9300004 21.2399998 58.4099999 -0.775205 0.63171 -1.0 +6228 1 1.72 14.1599999 23.0100002 58.4099999 -0.668817 -0.743427 -1.0 +6229 1 1.72 17.7000008 21.2399998 56.6399994 0.585737 -0.810501 -1.0 +6230 1 1.72 19.4699993 23.0100002 56.6399994 0.998764 -0.0497064 -1.0 +6231 1 1.72 19.4699993 21.2399998 58.4099999 0.852448 -0.522812 -1.0 +6232 1 1.72 17.7000008 23.0100002 58.4099999 0.425432 0.90499 -1.0 +6233 1 1.72 21.2399998 21.2399998 56.6399994 0.0530341 -0.998593 -1.0 +6234 1 1.72 23.0100002 23.0100002 56.6399994 -0.979915 0.199415 -1.0 +6235 1 1.72 23.0100002 21.2399998 58.4099999 0.844026 -0.536302 -1.0 +6236 1 1.72 21.2399998 23.0100002 58.4099999 -0.790956 0.611874 -1.0 +6237 1 1.72 24.7800007 21.2399998 56.6399994 0.663333 0.748324 -1.0 +6238 1 1.72 26.5499993 23.0100002 56.6399994 -0.533281 0.845938 -1.0 +6239 1 1.72 26.5499993 21.2399998 58.4099999 -0.910052 -0.414494 -1.0 +6240 1 1.72 24.7800007 23.0100002 58.4099999 0.537132 -0.843498 -1.0 +6241 1 1.72 0.0 24.7800007 56.6399994 0.848385 -0.52938 -1.0 +6242 1 1.72 1.77 26.5499993 56.6399994 0.995841 0.0911106 -1.0 +6243 1 1.72 1.77 24.7800007 58.4099999 -0.583088 0.812409 -1.0 +6244 1 1.72 0.0 26.5499993 58.4099999 0.878633 0.477498 -1.0 +6245 1 1.72 3.54 24.7800007 56.6399994 -0.934373 0.356296 -1.0 +6246 1 1.72 5.31 26.5499993 56.6399994 0.951664 0.307141 -1.0 +6247 1 1.72 5.31 24.7800007 58.4099999 -0.99961 -0.0279216 -1.0 +6248 1 1.72 3.54 26.5499993 58.4099999 -0.570758 0.821118 -1.0 +6249 1 1.72 7.0799999 24.7800007 56.6399994 -0.313684 -0.949527 -1.0 +6250 1 1.72 8.8500004 26.5499993 56.6399994 -0.865837 -0.500326 -1.0 +6251 1 1.72 8.8500004 24.7800007 58.4099999 -0.980798 0.195025 -1.0 +6252 1 1.72 7.0799999 26.5499993 58.4099999 -0.92155 -0.38826 -1.0 +6253 1 1.72 10.6199999 24.7800007 56.6399994 0.912035 0.410113 -1.0 +6254 1 1.72 12.3900004 26.5499993 56.6399994 0.853489 0.52111 -1.0 +6255 1 1.72 12.3900004 24.7800007 58.4099999 0.344436 -0.93881 -1.0 +6256 1 1.72 10.6199999 26.5499993 58.4099999 0.26886 0.963179 -1.0 +6257 1 1.72 14.1599999 24.7800007 56.6399994 0.208194 -0.978088 -1.0 +6258 1 1.72 15.9300004 26.5499993 56.6399994 0.0824067 0.996599 -1.0 +6259 1 1.72 15.9300004 24.7800007 58.4099999 -0.999797 -0.0201295 -1.0 +6260 1 1.72 14.1599999 26.5499993 58.4099999 0.704372 -0.709831 -1.0 +6261 1 1.72 17.7000008 24.7800007 56.6399994 0.409549 0.912288 -1.0 +6262 1 1.72 19.4699993 26.5499993 56.6399994 -0.980213 0.197946 -1.0 +6263 1 1.72 19.4699993 24.7800007 58.4099999 -0.791638 0.610991 -1.0 +6264 1 1.72 17.7000008 26.5499993 58.4099999 -0.624425 -0.781085 -1.0 +6265 1 1.72 21.2399998 24.7800007 56.6399994 0.923377 -0.383894 -1.0 +6266 1 1.72 23.0100002 26.5499993 56.6399994 -0.887062 0.461651 -1.0 +6267 1 1.72 23.0100002 24.7800007 58.4099999 -0.619539 0.784966 -1.0 +6268 1 1.72 21.2399998 26.5499993 58.4099999 -0.625322 -0.780367 -1.0 +6269 1 1.72 24.7800007 24.7800007 56.6399994 0.973814 -0.227344 -1.0 +6270 1 1.72 26.5499993 26.5499993 56.6399994 0.894843 0.446381 -1.0 +6271 1 1.72 26.5499993 24.7800007 58.4099999 0.960872 -0.276992 -1.0 +6272 1 1.72 24.7800007 26.5499993 58.4099999 0.999491 -0.0319134 -1.0 +6273 1 1.72 0.0 14.1599999 60.1800003 -0.678206 0.734872 -1.0 +6274 1 1.72 1.77 15.9300004 60.1800003 -0.466331 0.88461 -1.0 +6275 1 1.72 1.77 14.1599999 61.9500008 -0.992613 -0.121323 -1.0 +6276 1 1.72 0.0 15.9300004 61.9500008 -0.716033 0.698067 -1.0 +6277 1 1.72 3.54 14.1599999 60.1800003 0.903093 -0.429445 -1.0 +6278 1 1.72 5.31 15.9300004 60.1800003 0.0728353 -0.997344 -1.0 +6279 1 1.72 5.31 14.1599999 61.9500008 -0.786114 0.618081 -1.0 +6280 1 1.72 3.54 15.9300004 61.9500008 0.859938 0.510398 -1.0 +6281 1 1.72 7.0799999 14.1599999 60.1800003 -0.369668 0.929164 -1.0 +6282 1 1.72 8.8500004 15.9300004 60.1800003 -0.710335 -0.703864 -1.0 +6283 1 1.72 8.8500004 14.1599999 61.9500008 -0.76494 -0.644101 -1.0 +6284 1 1.72 7.0799999 15.9300004 61.9500008 -0.769731 0.638368 -1.0 +6285 1 1.72 10.6199999 14.1599999 60.1800003 0.995274 0.0971048 -1.0 +6286 1 1.72 12.3900004 15.9300004 60.1800003 0.918975 -0.394316 -1.0 +6287 1 1.72 12.3900004 14.1599999 61.9500008 0.998909 -0.0467025 -1.0 +6288 1 1.72 10.6199999 15.9300004 61.9500008 0.952064 0.305898 -1.0 +6289 1 1.72 14.1599999 14.1599999 60.1800003 0.601145 0.79914 -1.0 +6290 1 1.72 15.9300004 15.9300004 60.1800003 -0.929001 -0.370076 -1.0 +6291 1 1.72 15.9300004 14.1599999 61.9500008 -0.76166 0.647976 -1.0 +6292 1 1.72 14.1599999 15.9300004 61.9500008 0.484777 0.874638 -1.0 +6293 1 1.72 17.7000008 14.1599999 60.1800003 -0.597767 0.80167 -1.0 +6294 1 1.72 19.4699993 15.9300004 60.1800003 -0.941756 0.336298 -1.0 +6295 1 1.72 19.4699993 14.1599999 61.9500008 -0.0163846 -0.999866 -1.0 +6296 1 1.72 17.7000008 15.9300004 61.9500008 0.661434 -0.750003 -1.0 +6297 1 1.72 21.2399998 14.1599999 60.1800003 0.541161 0.840919 -1.0 +6298 1 1.72 23.0100002 15.9300004 60.1800003 0.856964 0.515377 -1.0 +6299 1 1.72 23.0100002 14.1599999 61.9500008 0.759367 -0.650663 -1.0 +6300 1 1.72 21.2399998 15.9300004 61.9500008 -0.810904 0.585179 -1.0 +6301 1 1.72 24.7800007 14.1599999 60.1800003 0.842901 -0.538068 -1.0 +6302 1 1.72 26.5499993 15.9300004 60.1800003 -0.149096 -0.988823 -1.0 +6303 1 1.72 26.5499993 14.1599999 61.9500008 0.971862 -0.235549 -1.0 +6304 1 1.72 24.7800007 15.9300004 61.9500008 0.396752 -0.917926 -1.0 +6305 1 1.72 0.0 17.7000008 60.1800003 -0.597404 -0.801941 -1.0 +6306 1 1.72 1.77 19.4699993 60.1800003 0.767696 -0.640815 -1.0 +6307 1 1.72 1.77 17.7000008 61.9500008 -0.240229 0.970716 -1.0 +6308 1 1.72 0.0 19.4699993 61.9500008 0.668067 0.744101 -1.0 +6309 1 1.72 3.54 17.7000008 60.1800003 0.66095 -0.75043 -1.0 +6310 1 1.72 5.31 19.4699993 60.1800003 -0.782958 -0.622075 -1.0 +6311 1 1.72 5.31 17.7000008 61.9500008 0.820799 0.571218 -1.0 +6312 1 1.72 3.54 19.4699993 61.9500008 -0.649762 0.760137 -1.0 +6313 1 1.72 7.0799999 17.7000008 60.1800003 -0.945153 0.326627 -1.0 +6314 1 1.72 8.8500004 19.4699993 60.1800003 -0.997626 -0.0688692 -1.0 +6315 1 1.72 8.8500004 17.7000008 61.9500008 0.479112 0.877754 -1.0 +6316 1 1.72 7.0799999 19.4699993 61.9500008 -0.991374 0.131061 -1.0 +6317 1 1.72 10.6199999 17.7000008 60.1800003 0.635642 0.771984 -1.0 +6318 1 1.72 12.3900004 19.4699993 60.1800003 0.999287 0.0377521 -1.0 +6319 1 1.72 12.3900004 17.7000008 61.9500008 0.185712 0.982604 -1.0 +6320 1 1.72 10.6199999 19.4699993 61.9500008 -0.232277 -0.97265 -1.0 +6321 1 1.72 14.1599999 17.7000008 60.1800003 -0.777848 0.628453 -1.0 +6322 1 1.72 15.9300004 19.4699993 60.1800003 0.581922 -0.813244 -1.0 +6323 1 1.72 15.9300004 17.7000008 61.9500008 0.321131 0.947035 -1.0 +6324 1 1.72 14.1599999 19.4699993 61.9500008 -0.152242 -0.988343 -1.0 +6325 1 1.72 17.7000008 17.7000008 60.1800003 -0.136373 0.990658 -1.0 +6326 1 1.72 19.4699993 19.4699993 60.1800003 -0.137885 -0.990448 -1.0 +6327 1 1.72 19.4699993 17.7000008 61.9500008 0.819997 -0.572368 -1.0 +6328 1 1.72 17.7000008 19.4699993 61.9500008 -0.330077 -0.943954 -1.0 +6329 1 1.72 21.2399998 17.7000008 60.1800003 0.406827 0.913505 -1.0 +6330 1 1.72 23.0100002 19.4699993 60.1800003 -0.980709 -0.195474 -1.0 +6331 1 1.72 23.0100002 17.7000008 61.9500008 0.804692 -0.593692 -1.0 +6332 1 1.72 21.2399998 19.4699993 61.9500008 0.82908 0.55913 -1.0 +6333 1 1.72 24.7800007 17.7000008 60.1800003 0.691292 0.722576 -1.0 +6334 1 1.72 26.5499993 19.4699993 60.1800003 0.622705 -0.782457 -1.0 +6335 1 1.72 26.5499993 17.7000008 61.9500008 0.542311 -0.840178 -1.0 +6336 1 1.72 24.7800007 19.4699993 61.9500008 0.630638 0.776077 -1.0 +6337 1 1.72 0.0 21.2399998 60.1800003 0.642238 -0.766505 -1.0 +6338 1 1.72 1.77 23.0100002 60.1800003 0.17935 -0.983785 -1.0 +6339 1 1.72 1.77 21.2399998 61.9500008 0.754108 -0.65675 -1.0 +6340 1 1.72 0.0 23.0100002 61.9500008 -0.996622 -0.0821202 -1.0 +6341 1 1.72 3.54 21.2399998 60.1800003 -0.682652 0.730743 -1.0 +6342 1 1.72 5.31 23.0100002 60.1800003 0.39884 -0.91702 -1.0 +6343 1 1.72 5.31 21.2399998 61.9500008 0.173424 0.984847 -1.0 +6344 1 1.72 3.54 23.0100002 61.9500008 0.863469 0.504402 -1.0 +6345 1 1.72 7.0799999 21.2399998 60.1800003 0.983806 0.179239 -1.0 +6346 1 1.72 8.8500004 23.0100002 60.1800003 -0.302619 -0.953112 -1.0 +6347 1 1.72 8.8500004 21.2399998 61.9500008 0.928662 -0.370926 -1.0 +6348 1 1.72 7.0799999 23.0100002 61.9500008 0.869869 0.493282 -1.0 +6349 1 1.72 10.6199999 21.2399998 60.1800003 0.868844 0.495086 -1.0 +6350 1 1.72 12.3900004 23.0100002 60.1800003 -0.845685 0.533682 -1.0 +6351 1 1.72 12.3900004 21.2399998 61.9500008 0.471269 0.88199 -1.0 +6352 1 1.72 10.6199999 23.0100002 61.9500008 -0.239449 0.970909 -1.0 +6353 1 1.72 14.1599999 21.2399998 60.1800003 0.251254 0.967921 -1.0 +6354 1 1.72 15.9300004 23.0100002 60.1800003 -0.800991 0.598677 -1.0 +6355 1 1.72 15.9300004 21.2399998 61.9500008 0.0848994 0.99639 -1.0 +6356 1 1.72 14.1599999 23.0100002 61.9500008 0.312058 0.950063 -1.0 +6357 1 1.72 17.7000008 21.2399998 60.1800003 0.873 -0.487721 -1.0 +6358 1 1.72 19.4699993 23.0100002 60.1800003 0.962796 -0.270229 -1.0 +6359 1 1.72 19.4699993 21.2399998 61.9500008 -0.859399 -0.511305 -1.0 +6360 1 1.72 17.7000008 23.0100002 61.9500008 -0.54086 -0.841112 -1.0 +6361 1 1.72 21.2399998 21.2399998 60.1800003 -0.997974 0.0636247 -1.0 +6362 1 1.72 23.0100002 23.0100002 60.1800003 -0.454222 -0.890888 -1.0 +6363 1 1.72 23.0100002 21.2399998 61.9500008 -0.613124 0.789987 -1.0 +6364 1 1.72 21.2399998 23.0100002 61.9500008 -0.221408 0.975181 -1.0 +6365 1 1.72 24.7800007 21.2399998 60.1800003 0.0184886 -0.999829 -1.0 +6366 1 1.72 26.5499993 23.0100002 60.1800003 -0.804666 -0.593728 -1.0 +6367 1 1.72 26.5499993 21.2399998 61.9500008 -0.884887 -0.465805 -1.0 +6368 1 1.72 24.7800007 23.0100002 61.9500008 -0.778953 0.627082 -1.0 +6369 1 1.72 0.0 24.7800007 60.1800003 -0.554126 -0.832433 -1.0 +6370 1 1.72 1.77 26.5499993 60.1800003 -0.762575 -0.646899 -1.0 +6371 1 1.72 1.77 24.7800007 61.9500008 -0.175625 0.984457 -1.0 +6372 1 1.72 0.0 26.5499993 61.9500008 0.338197 0.941075 -1.0 +6373 1 1.72 3.54 24.7800007 60.1800003 0.965929 -0.258809 -1.0 +6374 1 1.72 5.31 26.5499993 60.1800003 -0.533867 -0.845569 -1.0 +6375 1 1.72 5.31 24.7800007 61.9500008 0.288766 -0.9574 -1.0 +6376 1 1.72 3.54 26.5499993 61.9500008 -0.36985 0.929092 -1.0 +6377 1 1.72 7.0799999 24.7800007 60.1800003 0.0627644 -0.998028 -1.0 +6378 1 1.72 8.8500004 26.5499993 60.1800003 -0.534432 0.845211 -1.0 +6379 1 1.72 8.8500004 24.7800007 61.9500008 -0.720039 0.693933 -1.0 +6380 1 1.72 7.0799999 26.5499993 61.9500008 0.745883 -0.666077 -1.0 +6381 1 1.72 10.6199999 24.7800007 60.1800003 0.440379 -0.897812 -1.0 +6382 1 1.72 12.3900004 26.5499993 60.1800003 -0.231122 0.972925 -1.0 +6383 1 1.72 12.3900004 24.7800007 61.9500008 -0.795809 0.605548 -1.0 +6384 1 1.72 10.6199999 26.5499993 61.9500008 -0.355998 0.934487 -1.0 +6385 1 1.72 14.1599999 24.7800007 60.1800003 -0.633709 0.773572 -1.0 +6386 1 1.72 15.9300004 26.5499993 60.1800003 -0.712303 0.701872 -1.0 +6387 1 1.72 15.9300004 24.7800007 61.9500008 -0.527688 0.849439 -1.0 +6388 1 1.72 14.1599999 26.5499993 61.9500008 -0.409641 0.912247 -1.0 +6389 1 1.72 17.7000008 24.7800007 60.1800003 0.102376 0.994746 -1.0 +6390 1 1.72 19.4699993 26.5499993 60.1800003 -0.713841 0.700308 -1.0 +6391 1 1.72 19.4699993 24.7800007 61.9500008 -0.392095 0.919925 -1.0 +6392 1 1.72 17.7000008 26.5499993 61.9500008 -0.00513087 -0.999987 -1.0 +6393 1 1.72 21.2399998 24.7800007 60.1800003 0.238291 0.971194 -1.0 +6394 1 1.72 23.0100002 26.5499993 60.1800003 0.817168 -0.5764 -1.0 +6395 1 1.72 23.0100002 24.7800007 61.9500008 0.634044 0.773297 -1.0 +6396 1 1.72 21.2399998 26.5499993 61.9500008 -0.992661 0.120928 -1.0 +6397 1 1.72 24.7800007 24.7800007 60.1800003 -0.962121 -0.272624 -1.0 +6398 1 1.72 26.5499993 26.5499993 60.1800003 -0.127845 0.991794 -1.0 +6399 1 1.72 26.5499993 24.7800007 61.9500008 0.306713 0.951802 -1.0 +6400 1 1.72 24.7800007 26.5499993 61.9500008 0.93199 -0.362485 -1.0 +6401 1 1.72 0.0 14.1599999 63.7200012 0.244456 0.96966 -1.0 +6402 1 1.72 1.77 15.9300004 63.7200012 0.906764 0.421638 -1.0 +6403 1 1.72 1.77 14.1599999 65.4899979 -0.0159795 0.999872 -1.0 +6404 1 1.72 0.0 15.9300004 65.4899979 0.876117 -0.482098 -1.0 +6405 1 1.72 3.54 14.1599999 63.7200012 -0.9345 -0.355962 -1.0 +6406 1 1.72 5.31 15.9300004 63.7200012 0.757074 0.653329 -1.0 +6407 1 1.72 5.31 14.1599999 65.4899979 -0.999824 -0.0187767 -1.0 +6408 1 1.72 3.54 15.9300004 65.4899979 0.999754 -0.0221863 -1.0 +6409 1 1.72 7.0799999 14.1599999 63.7200012 -0.0266067 0.999646 -1.0 +6410 1 1.72 8.8500004 15.9300004 63.7200012 0.337721 0.941246 -1.0 +6411 1 1.72 8.8500004 14.1599999 65.4899979 -0.924652 0.380814 -1.0 +6412 1 1.72 7.0799999 15.9300004 65.4899979 0.85257 -0.522613 -1.0 +6413 1 1.72 10.6199999 14.1599999 63.7200012 -0.574371 0.818595 -1.0 +6414 1 1.72 12.3900004 15.9300004 63.7200012 -0.916457 -0.400132 -1.0 +6415 1 1.72 12.3900004 14.1599999 65.4899979 0.574534 0.818481 -1.0 +6416 1 1.72 10.6199999 15.9300004 65.4899979 0.46387 0.885903 -1.0 +6417 1 1.72 14.1599999 14.1599999 63.7200012 0.529827 -0.848106 -1.0 +6418 1 1.72 15.9300004 15.9300004 63.7200012 -0.355528 0.934666 -1.0 +6419 1 1.72 15.9300004 14.1599999 65.4899979 -0.34941 0.93697 -1.0 +6420 1 1.72 14.1599999 15.9300004 65.4899979 -0.0601426 0.99819 -1.0 +6421 1 1.72 17.7000008 14.1599999 63.7200012 1 -0.000777058 -1.0 +6422 1 1.72 19.4699993 15.9300004 63.7200012 -0.999869 -0.0161834 -1.0 +6423 1 1.72 19.4699993 14.1599999 65.4899979 0.945448 0.325773 -1.0 +6424 1 1.72 17.7000008 15.9300004 65.4899979 -0.433125 0.901334 -1.0 +6425 1 1.72 21.2399998 14.1599999 63.7200012 -0.995927 0.0901635 -1.0 +6426 1 1.72 23.0100002 15.9300004 63.7200012 0.374725 -0.927136 -1.0 +6427 1 1.72 23.0100002 14.1599999 65.4899979 -0.976745 -0.214407 -1.0 +6428 1 1.72 21.2399998 15.9300004 65.4899979 -0.745958 -0.665993 -1.0 +6429 1 1.72 24.7800007 14.1599999 63.7200012 0.036316 -0.99934 -1.0 +6430 1 1.72 26.5499993 15.9300004 63.7200012 -0.227081 -0.973876 -1.0 +6431 1 1.72 26.5499993 14.1599999 65.4899979 -0.738204 0.674578 -1.0 +6432 1 1.72 24.7800007 15.9300004 65.4899979 -0.0579713 0.998318 -1.0 +6433 1 1.72 0.0 17.7000008 63.7200012 0.25366 -0.967293 -1.0 +6434 1 1.72 1.77 19.4699993 63.7200012 0.922366 0.386317 -1.0 +6435 1 1.72 1.77 17.7000008 65.4899979 0.61591 -0.787816 -1.0 +6436 1 1.72 0.0 19.4699993 65.4899979 0.28935 -0.957223 -1.0 +6437 1 1.72 3.54 17.7000008 63.7200012 -0.622173 -0.78288 -1.0 +6438 1 1.72 5.31 19.4699993 63.7200012 -0.89036 -0.455257 -1.0 +6439 1 1.72 5.31 17.7000008 65.4899979 -0.990148 0.140027 -1.0 +6440 1 1.72 3.54 19.4699993 65.4899979 0.883397 0.468626 -1.0 +6441 1 1.72 7.0799999 17.7000008 63.7200012 -0.288056 -0.957614 -1.0 +6442 1 1.72 8.8500004 19.4699993 63.7200012 -0.356241 0.934394 -1.0 +6443 1 1.72 8.8500004 17.7000008 65.4899979 0.282286 0.95933 -1.0 +6444 1 1.72 7.0799999 19.4699993 65.4899979 0.434675 0.900587 -1.0 +6445 1 1.72 10.6199999 17.7000008 63.7200012 -0.999862 0.0166135 -1.0 +6446 1 1.72 12.3900004 19.4699993 63.7200012 0.837914 0.545802 -1.0 +6447 1 1.72 12.3900004 17.7000008 65.4899979 -0.297773 -0.954637 -1.0 +6448 1 1.72 10.6199999 19.4699993 65.4899979 -0.0247984 -0.999692 -1.0 +6449 1 1.72 14.1599999 17.7000008 63.7200012 0.933256 0.359213 -1.0 +6450 1 1.72 15.9300004 19.4699993 63.7200012 0.573099 -0.819486 -1.0 +6451 1 1.72 15.9300004 17.7000008 65.4899979 0.498589 0.866838 -1.0 +6452 1 1.72 14.1599999 19.4699993 65.4899979 -0.915794 0.401647 -1.0 +6453 1 1.72 17.7000008 17.7000008 63.7200012 0.870286 0.492546 -1.0 +6454 1 1.72 19.4699993 19.4699993 63.7200012 0.875191 -0.483778 -1.0 +6455 1 1.72 19.4699993 17.7000008 65.4899979 0.635261 -0.772297 -1.0 +6456 1 1.72 17.7000008 19.4699993 65.4899979 0.587316 0.809358 -1.0 +6457 1 1.72 21.2399998 17.7000008 63.7200012 0.539067 -0.842263 -1.0 +6458 1 1.72 23.0100002 19.4699993 63.7200012 -0.991651 -0.128952 -1.0 +6459 1 1.72 23.0100002 17.7000008 65.4899979 0.20644 -0.978459 -1.0 +6460 1 1.72 21.2399998 19.4699993 65.4899979 -0.708169 -0.706043 -1.0 +6461 1 1.72 24.7800007 17.7000008 63.7200012 0.717692 -0.696361 -1.0 +6462 1 1.72 26.5499993 19.4699993 63.7200012 -0.997761 -0.0668857 -1.0 +6463 1 1.72 26.5499993 17.7000008 65.4899979 -0.993374 -0.114923 -1.0 +6464 1 1.72 24.7800007 19.4699993 65.4899979 0.987452 -0.157921 -1.0 +6465 1 1.72 0.0 21.2399998 63.7200012 -0.266421 -0.963857 -1.0 +6466 1 1.72 1.77 23.0100002 63.7200012 -0.0315061 -0.999504 -1.0 +6467 1 1.72 1.77 21.2399998 65.4899979 -0.961436 -0.27503 -1.0 +6468 1 1.72 0.0 23.0100002 65.4899979 -0.334425 0.942422 -1.0 +6469 1 1.72 3.54 21.2399998 63.7200012 -0.812159 0.583436 -1.0 +6470 1 1.72 5.31 23.0100002 63.7200012 0.149683 0.988734 -1.0 +6471 1 1.72 5.31 21.2399998 65.4899979 0.652667 0.757645 -1.0 +6472 1 1.72 3.54 23.0100002 65.4899979 -0.542246 -0.84022 -1.0 +6473 1 1.72 7.0799999 21.2399998 63.7200012 0.313021 0.949746 -1.0 +6474 1 1.72 8.8500004 23.0100002 63.7200012 0.988847 -0.148936 -1.0 +6475 1 1.72 8.8500004 21.2399998 65.4899979 -0.999068 0.043159 -1.0 +6476 1 1.72 7.0799999 23.0100002 65.4899979 -0.257953 -0.966158 -1.0 +6477 1 1.72 10.6199999 21.2399998 63.7200012 -0.93969 0.342026 -1.0 +6478 1 1.72 12.3900004 23.0100002 63.7200012 0.691642 -0.722241 -1.0 +6479 1 1.72 12.3900004 21.2399998 65.4899979 0.910415 0.413697 -1.0 +6480 1 1.72 10.6199999 23.0100002 65.4899979 0.977044 -0.213039 -1.0 +6481 1 1.72 14.1599999 21.2399998 63.7200012 -0.994924 -0.100625 -1.0 +6482 1 1.72 15.9300004 23.0100002 63.7200012 0.997765 0.0668215 -1.0 +6483 1 1.72 15.9300004 21.2399998 65.4899979 -0.953713 -0.300718 -1.0 +6484 1 1.72 14.1599999 23.0100002 65.4899979 -0.587848 -0.808972 -1.0 +6485 1 1.72 17.7000008 21.2399998 63.7200012 -0.809417 0.587234 -1.0 +6486 1 1.72 19.4699993 23.0100002 63.7200012 -0.711209 -0.70298 -1.0 +6487 1 1.72 19.4699993 21.2399998 65.4899979 -0.625646 -0.780107 -1.0 +6488 1 1.72 17.7000008 23.0100002 65.4899979 0.997192 0.0748852 -1.0 +6489 1 1.72 21.2399998 21.2399998 63.7200012 0.00737696 0.999973 -1.0 +6490 1 1.72 23.0100002 23.0100002 63.7200012 0.0583806 0.998294 -1.0 +6491 1 1.72 23.0100002 21.2399998 65.4899979 0.389595 -0.920986 -1.0 +6492 1 1.72 21.2399998 23.0100002 65.4899979 0.831391 0.555688 -1.0 +6493 1 1.72 24.7800007 21.2399998 63.7200012 0.929878 0.367867 -1.0 +6494 1 1.72 26.5499993 23.0100002 63.7200012 0.331794 -0.943352 -1.0 +6495 1 1.72 26.5499993 21.2399998 65.4899979 0.970172 0.242418 -1.0 +6496 1 1.72 24.7800007 23.0100002 65.4899979 0.432347 -0.901707 -1.0 +6497 1 1.72 0.0 24.7800007 63.7200012 -0.226161 -0.97409 -1.0 +6498 1 1.72 1.77 26.5499993 63.7200012 -0.579739 -0.814802 -1.0 +6499 1 1.72 1.77 24.7800007 65.4899979 -0.864858 -0.502017 -1.0 +6500 1 1.72 0.0 26.5499993 65.4899979 0.741342 0.671127 -1.0 +6501 1 1.72 3.54 24.7800007 63.7200012 -0.284528 -0.958668 -1.0 +6502 1 1.72 5.31 26.5499993 63.7200012 -0.979081 -0.20347 -1.0 +6503 1 1.72 5.31 24.7800007 65.4899979 0.996323 -0.0856767 -1.0 +6504 1 1.72 3.54 26.5499993 65.4899979 -0.0196231 0.999807 -1.0 +6505 1 1.72 7.0799999 24.7800007 63.7200012 0.996112 0.0880975 -1.0 +6506 1 1.72 8.8500004 26.5499993 63.7200012 0.693808 -0.72016 -1.0 +6507 1 1.72 8.8500004 24.7800007 65.4899979 0.0953527 0.995444 -1.0 +6508 1 1.72 7.0799999 26.5499993 65.4899979 -0.501416 -0.865206 -1.0 +6509 1 1.72 10.6199999 24.7800007 63.7200012 0.575267 0.817966 -1.0 +6510 1 1.72 12.3900004 26.5499993 63.7200012 -0.221833 -0.975085 -1.0 +6511 1 1.72 12.3900004 24.7800007 65.4899979 -0.404036 -0.914743 -1.0 +6512 1 1.72 10.6199999 26.5499993 65.4899979 0.681269 0.732033 -1.0 +6513 1 1.72 14.1599999 24.7800007 63.7200012 -0.267765 -0.963484 -1.0 +6514 1 1.72 15.9300004 26.5499993 63.7200012 0.929298 -0.36933 -1.0 +6515 1 1.72 15.9300004 24.7800007 65.4899979 -0.500618 -0.865669 -1.0 +6516 1 1.72 14.1599999 26.5499993 65.4899979 0.447365 0.894352 -1.0 +6517 1 1.72 17.7000008 24.7800007 63.7200012 0.69879 0.715327 -1.0 +6518 1 1.72 19.4699993 26.5499993 63.7200012 0.172359 0.985034 -1.0 +6519 1 1.72 19.4699993 24.7800007 65.4899979 0.757533 0.652797 -1.0 +6520 1 1.72 17.7000008 26.5499993 65.4899979 0.874572 -0.484896 -1.0 +6521 1 1.72 21.2399998 24.7800007 63.7200012 0.952157 0.305611 -1.0 +6522 1 1.72 23.0100002 26.5499993 63.7200012 0.977243 -0.212123 -1.0 +6523 1 1.72 23.0100002 24.7800007 65.4899979 0.802441 -0.596731 -1.0 +6524 1 1.72 21.2399998 26.5499993 65.4899979 0.515242 -0.857045 -1.0 +6525 1 1.72 24.7800007 24.7800007 63.7200012 -0.852782 -0.522266 -1.0 +6526 1 1.72 26.5499993 26.5499993 63.7200012 0.0552851 -0.998471 -1.0 +6527 1 1.72 26.5499993 24.7800007 65.4899979 -0.979565 0.201126 -1.0 +6528 1 1.72 24.7800007 26.5499993 65.4899979 -0.863429 0.504471 -1.0 +6529 1 1.72 0.0 14.1599999 67.2600021 0.87739 -0.479777 -1.0 +6530 1 1.72 1.77 15.9300004 67.2600021 0.61897 0.785414 -1.0 +6531 1 1.72 1.77 14.1599999 69.0299988 -0.842018 0.53945 -1.0 +6532 1 1.72 0.0 15.9300004 69.0299988 -0.666081 0.745879 -1.0 +6533 1 1.72 3.54 14.1599999 67.2600021 0.964859 -0.262767 -1.0 +6534 1 1.72 5.31 15.9300004 67.2600021 -0.629911 -0.776667 -1.0 +6535 1 1.72 5.31 14.1599999 69.0299988 -0.332087 -0.943249 -1.0 +6536 1 1.72 3.54 15.9300004 69.0299988 -0.994652 0.103279 -1.0 +6537 1 1.72 7.0799999 14.1599999 67.2600021 -0.272747 0.962086 -1.0 +6538 1 1.72 8.8500004 15.9300004 67.2600021 -0.321511 0.946906 -1.0 +6539 1 1.72 8.8500004 14.1599999 69.0299988 -0.905073 0.425257 -1.0 +6540 1 1.72 7.0799999 15.9300004 69.0299988 0.992922 0.118766 -1.0 +6541 1 1.72 10.6199999 14.1599999 67.2600021 0.567579 0.823319 -1.0 +6542 1 1.72 12.3900004 15.9300004 67.2600021 0.852352 -0.522969 -1.0 +6543 1 1.72 12.3900004 14.1599999 69.0299988 -0.183958 -0.982934 -1.0 +6544 1 1.72 10.6199999 15.9300004 69.0299988 0.112641 0.993636 -1.0 +6545 1 1.72 14.1599999 14.1599999 67.2600021 -0.834419 0.551131 -1.0 +6546 1 1.72 15.9300004 15.9300004 67.2600021 -0.665779 0.746149 -1.0 +6547 1 1.72 15.9300004 14.1599999 69.0299988 -0.251836 0.96777 -1.0 +6548 1 1.72 14.1599999 15.9300004 69.0299988 0.732972 0.680259 -1.0 +6549 1 1.72 17.7000008 14.1599999 67.2600021 0.560181 -0.82837 -1.0 +6550 1 1.72 19.4699993 15.9300004 67.2600021 0.580172 0.814494 -1.0 +6551 1 1.72 19.4699993 14.1599999 69.0299988 0.623081 -0.782157 -1.0 +6552 1 1.72 17.7000008 15.9300004 69.0299988 0.0812622 0.996693 -1.0 +6553 1 1.72 21.2399998 14.1599999 67.2600021 0.414327 0.910128 -1.0 +6554 1 1.72 23.0100002 15.9300004 67.2600021 0.866352 0.499434 -1.0 +6555 1 1.72 23.0100002 14.1599999 69.0299988 -0.899415 -0.437097 -1.0 +6556 1 1.72 21.2399998 15.9300004 69.0299988 0.634276 -0.773107 -1.0 +6557 1 1.72 24.7800007 14.1599999 67.2600021 -0.900873 -0.434082 -1.0 +6558 1 1.72 26.5499993 15.9300004 67.2600021 -0.87466 0.484737 -1.0 +6559 1 1.72 26.5499993 14.1599999 69.0299988 0.548213 -0.836339 -1.0 +6560 1 1.72 24.7800007 15.9300004 69.0299988 -0.723261 -0.690575 -1.0 +6561 1 1.72 0.0 17.7000008 67.2600021 0.932227 0.361874 -1.0 +6562 1 1.72 1.77 19.4699993 67.2600021 0.682505 -0.730881 -1.0 +6563 1 1.72 1.77 17.7000008 69.0299988 0.232272 0.972651 -1.0 +6564 1 1.72 0.0 19.4699993 69.0299988 -0.719388 -0.694608 -1.0 +6565 1 1.72 3.54 17.7000008 67.2600021 0.814313 -0.580426 -1.0 +6566 1 1.72 5.31 19.4699993 67.2600021 0.805219 0.592978 -1.0 +6567 1 1.72 5.31 17.7000008 69.0299988 -0.929754 -0.36818 -1.0 +6568 1 1.72 3.54 19.4699993 69.0299988 0.538733 0.842477 -1.0 +6569 1 1.72 7.0799999 17.7000008 67.2600021 0.21099 0.977488 -1.0 +6570 1 1.72 8.8500004 19.4699993 67.2600021 0.401478 0.915869 -1.0 +6571 1 1.72 8.8500004 17.7000008 69.0299988 0.479212 -0.877699 -1.0 +6572 1 1.72 7.0799999 19.4699993 69.0299988 -0.99607 -0.0885645 -1.0 +6573 1 1.72 10.6199999 17.7000008 67.2600021 0.501774 0.864999 -1.0 +6574 1 1.72 12.3900004 19.4699993 67.2600021 -0.644282 0.764788 -1.0 +6575 1 1.72 12.3900004 17.7000008 69.0299988 0.9996 0.0282884 -1.0 +6576 1 1.72 10.6199999 19.4699993 69.0299988 -0.989743 -0.142859 -1.0 +6577 1 1.72 14.1599999 17.7000008 67.2600021 -0.221584 0.975141 -1.0 +6578 1 1.72 15.9300004 19.4699993 67.2600021 0.720961 0.692975 -1.0 +6579 1 1.72 15.9300004 17.7000008 69.0299988 -0.0140114 -0.999902 -1.0 +6580 1 1.72 14.1599999 19.4699993 69.0299988 0.959081 0.283133 -1.0 +6581 1 1.72 17.7000008 17.7000008 67.2600021 0.170917 0.985285 -1.0 +6582 1 1.72 19.4699993 19.4699993 67.2600021 0.307773 -0.95146 -1.0 +6583 1 1.72 19.4699993 17.7000008 69.0299988 0.57945 0.815008 -1.0 +6584 1 1.72 17.7000008 19.4699993 69.0299988 -0.899687 -0.436535 -1.0 +6585 1 1.72 21.2399998 17.7000008 67.2600021 0.523108 0.852266 -1.0 +6586 1 1.72 23.0100002 19.4699993 67.2600021 0.936372 0.35101 -1.0 +6587 1 1.72 23.0100002 17.7000008 69.0299988 -0.600411 0.799692 -1.0 +6588 1 1.72 21.2399998 19.4699993 69.0299988 0.941876 -0.335961 -1.0 +6589 1 1.72 24.7800007 17.7000008 67.2600021 -0.153774 -0.988106 -1.0 +6590 1 1.72 26.5499993 19.4699993 67.2600021 0.362793 0.93187 -1.0 +6591 1 1.72 26.5499993 17.7000008 69.0299988 -0.886574 0.462587 -1.0 +6592 1 1.72 24.7800007 19.4699993 69.0299988 -0.290998 0.956724 -1.0 +6593 1 1.72 0.0 21.2399998 67.2600021 -0.961752 -0.273921 -1.0 +6594 1 1.72 1.77 23.0100002 67.2600021 -0.0876775 -0.996149 -1.0 +6595 1 1.72 1.77 21.2399998 69.0299988 0.928451 -0.371456 -1.0 +6596 1 1.72 0.0 23.0100002 69.0299988 0.210289 -0.977639 -1.0 +6597 1 1.72 3.54 21.2399998 67.2600021 0.808145 -0.588983 -1.0 +6598 1 1.72 5.31 23.0100002 67.2600021 0.489345 0.87209 -1.0 +6599 1 1.72 5.31 21.2399998 69.0299988 -0.96947 -0.245209 -1.0 +6600 1 1.72 3.54 23.0100002 69.0299988 0.447867 0.8941 -1.0 +6601 1 1.72 7.0799999 21.2399998 67.2600021 -0.666432 0.745566 -1.0 +6602 1 1.72 8.8500004 23.0100002 67.2600021 -0.742723 0.669598 -1.0 +6603 1 1.72 8.8500004 21.2399998 69.0299988 0.944426 -0.328724 -1.0 +6604 1 1.72 7.0799999 23.0100002 69.0299988 0.336112 0.941822 -1.0 +6605 1 1.72 10.6199999 21.2399998 67.2600021 -0.985894 0.167369 -1.0 +6606 1 1.72 12.3900004 23.0100002 67.2600021 0.874583 0.484876 -1.0 +6607 1 1.72 12.3900004 21.2399998 69.0299988 0.585447 0.810711 -1.0 +6608 1 1.72 10.6199999 23.0100002 69.0299988 -0.685897 -0.727699 -1.0 +6609 1 1.72 14.1599999 21.2399998 67.2600021 0.285439 0.958397 -1.0 +6610 1 1.72 15.9300004 23.0100002 67.2600021 -0.19925 -0.979949 -1.0 +6611 1 1.72 15.9300004 21.2399998 69.0299988 -0.385146 0.922856 -1.0 +6612 1 1.72 14.1599999 23.0100002 69.0299988 0.659697 -0.751531 -1.0 +6613 1 1.72 17.7000008 21.2399998 67.2600021 0.468079 -0.883687 -1.0 +6614 1 1.72 19.4699993 23.0100002 67.2600021 0.954334 -0.298743 -1.0 +6615 1 1.72 19.4699993 21.2399998 69.0299988 0.765492 0.643446 -1.0 +6616 1 1.72 17.7000008 23.0100002 69.0299988 -0.364953 0.931026 -1.0 +6617 1 1.72 21.2399998 21.2399998 67.2600021 -0.674507 0.738269 -1.0 +6618 1 1.72 23.0100002 23.0100002 67.2600021 0.280405 -0.959882 -1.0 +6619 1 1.72 23.0100002 21.2399998 69.0299988 0.532257 0.846583 -1.0 +6620 1 1.72 21.2399998 23.0100002 69.0299988 0.812031 -0.583615 -1.0 +6621 1 1.72 24.7800007 21.2399998 67.2600021 0.147104 0.989121 -1.0 +6622 1 1.72 26.5499993 23.0100002 67.2600021 -0.71423 -0.699911 -1.0 +6623 1 1.72 26.5499993 21.2399998 69.0299988 -0.97684 0.213973 -1.0 +6624 1 1.72 24.7800007 23.0100002 69.0299988 -0.60991 0.792471 -1.0 +6625 1 1.72 0.0 24.7800007 67.2600021 0.991453 0.130463 -1.0 +6626 1 1.72 1.77 26.5499993 67.2600021 -0.802961 0.596032 -1.0 +6627 1 1.72 1.77 24.7800007 69.0299988 -0.222438 0.974947 -1.0 +6628 1 1.72 0.0 26.5499993 69.0299988 0.418506 0.908214 -1.0 +6629 1 1.72 3.54 24.7800007 67.2600021 0.880651 0.473766 -1.0 +6630 1 1.72 5.31 26.5499993 67.2600021 -0.808772 -0.588122 -1.0 +6631 1 1.72 5.31 24.7800007 69.0299988 -0.303163 -0.952939 -1.0 +6632 1 1.72 3.54 26.5499993 69.0299988 -0.789817 -0.613343 -1.0 +6633 1 1.72 7.0799999 24.7800007 67.2600021 -0.0525347 -0.998619 -1.0 +6634 1 1.72 8.8500004 26.5499993 67.2600021 -0.908101 0.418752 -1.0 +6635 1 1.72 8.8500004 24.7800007 69.0299988 -0.997227 0.0744199 -1.0 +6636 1 1.72 7.0799999 26.5499993 69.0299988 0.692675 -0.721249 -1.0 +6637 1 1.72 10.6199999 24.7800007 67.2600021 0.835829 0.54899 -1.0 +6638 1 1.72 12.3900004 26.5499993 67.2600021 0.612682 -0.790329 -1.0 +6639 1 1.72 12.3900004 24.7800007 69.0299988 -0.586983 0.809599 -1.0 +6640 1 1.72 10.6199999 26.5499993 69.0299988 -0.802581 -0.596543 -1.0 +6641 1 1.72 14.1599999 24.7800007 67.2600021 0.684556 0.72896 -1.0 +6642 1 1.72 15.9300004 26.5499993 67.2600021 0.490033 0.871704 -1.0 +6643 1 1.72 15.9300004 24.7800007 69.0299988 -0.679028 -0.734113 -1.0 +6644 1 1.72 14.1599999 26.5499993 69.0299988 -0.998102 -0.0615778 -1.0 +6645 1 1.72 17.7000008 24.7800007 67.2600021 0.97802 0.208512 -1.0 +6646 1 1.72 19.4699993 26.5499993 67.2600021 0.882844 0.469666 -1.0 +6647 1 1.72 19.4699993 24.7800007 69.0299988 0.171639 -0.98516 -1.0 +6648 1 1.72 17.7000008 26.5499993 69.0299988 -0.994123 -0.108258 -1.0 +6649 1 1.72 21.2399998 24.7800007 67.2600021 0.451029 -0.892509 -1.0 +6650 1 1.72 23.0100002 26.5499993 67.2600021 0.333532 0.942739 -1.0 +6651 1 1.72 23.0100002 24.7800007 69.0299988 -0.713851 -0.700298 -1.0 +6652 1 1.72 21.2399998 26.5499993 69.0299988 -0.882595 -0.470134 -1.0 +6653 1 1.72 24.7800007 24.7800007 67.2600021 0.753585 -0.657351 -1.0 +6654 1 1.72 26.5499993 26.5499993 67.2600021 -0.616616 0.787264 -1.0 +6655 1 1.72 26.5499993 24.7800007 69.0299988 -0.0466451 0.998912 -1.0 +6656 1 1.72 24.7800007 26.5499993 69.0299988 -0.273643 0.961831 -1.0 +6657 1 1.72 0.0 14.1599999 70.8000031 0.978741 0.205099 -1.0 +6658 1 1.72 1.77 15.9300004 70.8000031 -0.729137 0.684368 -1.0 +6659 1 1.72 1.77 14.1599999 72.5699997 0.220864 -0.975305 -1.0 +6660 1 1.72 0.0 15.9300004 72.5699997 0.78785 -0.615868 -1.0 +6661 1 1.72 3.54 14.1599999 70.8000031 0.906063 -0.423143 -1.0 +6662 1 1.72 5.31 15.9300004 70.8000031 -0.855733 -0.517418 -1.0 +6663 1 1.72 5.31 14.1599999 72.5699997 0.0235815 0.999722 -1.0 +6664 1 1.72 3.54 15.9300004 72.5699997 0.859711 -0.51078 -1.0 +6665 1 1.72 7.0799999 14.1599999 70.8000031 0.781283 0.624177 -1.0 +6666 1 1.72 8.8500004 15.9300004 70.8000031 -0.978043 -0.208402 -1.0 +6667 1 1.72 8.8500004 14.1599999 72.5699997 -0.869578 0.493795 -1.0 +6668 1 1.72 7.0799999 15.9300004 72.5699997 -0.93941 -0.342796 -1.0 +6669 1 1.72 10.6199999 14.1599999 70.8000031 0.911545 0.4112 -1.0 +6670 1 1.72 12.3900004 15.9300004 70.8000031 -0.389525 0.921016 -1.0 +6671 1 1.72 12.3900004 14.1599999 72.5699997 -0.445105 0.895478 -1.0 +6672 1 1.72 10.6199999 15.9300004 72.5699997 0.603963 0.797012 -1.0 +6673 1 1.72 14.1599999 14.1599999 70.8000031 -0.999989 0.00466273 -1.0 +6674 1 1.72 15.9300004 15.9300004 70.8000031 0.681259 0.732042 -1.0 +6675 1 1.72 15.9300004 14.1599999 72.5699997 0.109688 -0.993966 -1.0 +6676 1 1.72 14.1599999 15.9300004 72.5699997 0.310439 -0.950593 -1.0 +6677 1 1.72 17.7000008 14.1599999 70.8000031 0.963891 -0.266299 -1.0 +6678 1 1.72 19.4699993 15.9300004 70.8000031 0.808447 -0.588569 -1.0 +6679 1 1.72 19.4699993 14.1599999 72.5699997 -0.813087 0.582142 -1.0 +6680 1 1.72 17.7000008 15.9300004 72.5699997 -0.918742 0.394859 -1.0 +6681 1 1.72 21.2399998 14.1599999 70.8000031 -0.623102 0.78214 -1.0 +6682 1 1.72 23.0100002 15.9300004 70.8000031 0.265835 -0.964019 -1.0 +6683 1 1.72 23.0100002 14.1599999 72.5699997 0.0856731 0.996323 -1.0 +6684 1 1.72 21.2399998 15.9300004 72.5699997 0.963284 0.268484 -1.0 +6685 1 1.72 24.7800007 14.1599999 70.8000031 0.996656 -0.0817137 -1.0 +6686 1 1.72 26.5499993 15.9300004 70.8000031 -0.999592 -0.0285468 -1.0 +6687 1 1.72 26.5499993 14.1599999 72.5699997 0.994038 -0.109037 -1.0 +6688 1 1.72 24.7800007 15.9300004 72.5699997 0.440626 -0.897691 -1.0 +6689 1 1.72 0.0 17.7000008 70.8000031 -0.635711 -0.771927 -1.0 +6690 1 1.72 1.77 19.4699993 70.8000031 0.836998 -0.547206 -1.0 +6691 1 1.72 1.77 17.7000008 72.5699997 -0.226243 -0.974071 -1.0 +6692 1 1.72 0.0 19.4699993 72.5699997 -0.728806 -0.68472 -1.0 +6693 1 1.72 3.54 17.7000008 70.8000031 0.115481 -0.99331 -1.0 +6694 1 1.72 5.31 19.4699993 70.8000031 -0.929076 -0.369888 -1.0 +6695 1 1.72 5.31 17.7000008 72.5699997 0.667579 0.744539 -1.0 +6696 1 1.72 3.54 19.4699993 72.5699997 0.772755 0.634704 -1.0 +6697 1 1.72 7.0799999 17.7000008 70.8000031 0.89582 0.444417 -1.0 +6698 1 1.72 8.8500004 19.4699993 70.8000031 -0.571345 -0.82071 -1.0 +6699 1 1.72 8.8500004 17.7000008 72.5699997 -0.930746 -0.365666 -1.0 +6700 1 1.72 7.0799999 19.4699993 72.5699997 -0.5172 0.855865 -1.0 +6701 1 1.72 10.6199999 17.7000008 70.8000031 -0.926759 0.375657 -1.0 +6702 1 1.72 12.3900004 19.4699993 70.8000031 0.95546 0.295121 -1.0 +6703 1 1.72 12.3900004 17.7000008 72.5699997 0.691504 0.722373 -1.0 +6704 1 1.72 10.6199999 19.4699993 72.5699997 -0.432539 0.901615 -1.0 +6705 1 1.72 14.1599999 17.7000008 70.8000031 0.966332 -0.257299 -1.0 +6706 1 1.72 15.9300004 19.4699993 70.8000031 0.89671 -0.442618 -1.0 +6707 1 1.72 15.9300004 17.7000008 72.5699997 -0.928459 0.371435 -1.0 +6708 1 1.72 14.1599999 19.4699993 72.5699997 -0.891535 0.452953 -1.0 +6709 1 1.72 17.7000008 17.7000008 70.8000031 0.923927 0.382568 -1.0 +6710 1 1.72 19.4699993 19.4699993 70.8000031 -0.190266 -0.981733 -1.0 +6711 1 1.72 19.4699993 17.7000008 72.5699997 0.431386 0.902167 -1.0 +6712 1 1.72 17.7000008 19.4699993 72.5699997 0.692605 0.721317 -1.0 +6713 1 1.72 21.2399998 17.7000008 70.8000031 0.881341 0.472481 -1.0 +6714 1 1.72 23.0100002 19.4699993 70.8000031 0.929748 0.368197 -1.0 +6715 1 1.72 23.0100002 17.7000008 72.5699997 0.538103 0.842879 -1.0 +6716 1 1.72 21.2399998 19.4699993 72.5699997 0.608936 0.79322 -1.0 +6717 1 1.72 24.7800007 17.7000008 70.8000031 0.131981 -0.991252 -1.0 +6718 1 1.72 26.5499993 19.4699993 70.8000031 -0.410349 0.911929 -1.0 +6719 1 1.72 26.5499993 17.7000008 72.5699997 0.563545 0.826085 -1.0 +6720 1 1.72 24.7800007 19.4699993 72.5699997 0.128492 -0.991711 -1.0 +6721 1 1.72 0.0 21.2399998 70.8000031 0.754052 -0.656814 -1.0 +6722 1 1.72 1.77 23.0100002 70.8000031 -0.996879 -0.0789434 -1.0 +6723 1 1.72 1.77 21.2399998 72.5699997 -0.935458 -0.353438 -1.0 +6724 1 1.72 0.0 23.0100002 72.5699997 0.997896 0.0648414 -1.0 +6725 1 1.72 3.54 21.2399998 70.8000031 0.103204 -0.99466 -1.0 +6726 1 1.72 5.31 23.0100002 70.8000031 -0.0146918 -0.999892 -1.0 +6727 1 1.72 5.31 21.2399998 72.5699997 0.129717 -0.991551 -1.0 +6728 1 1.72 3.54 23.0100002 72.5699997 0.285649 -0.958334 -1.0 +6729 1 1.72 7.0799999 21.2399998 70.8000031 0.850011 0.526764 -1.0 +6730 1 1.72 8.8500004 23.0100002 70.8000031 0.987398 0.158259 -1.0 +6731 1 1.72 8.8500004 21.2399998 72.5699997 -0.848604 0.529028 -1.0 +6732 1 1.72 7.0799999 23.0100002 72.5699997 0.971502 0.23703 -1.0 +6733 1 1.72 10.6199999 21.2399998 70.8000031 -0.234695 -0.972069 -1.0 +6734 1 1.72 12.3900004 23.0100002 70.8000031 -0.239717 -0.970843 -1.0 +6735 1 1.72 12.3900004 21.2399998 72.5699997 -0.949156 0.314806 -1.0 +6736 1 1.72 10.6199999 23.0100002 72.5699997 -0.094091 -0.995564 -1.0 +6737 1 1.72 14.1599999 21.2399998 70.8000031 0.816531 -0.577302 -1.0 +6738 1 1.72 15.9300004 23.0100002 70.8000031 -0.115972 -0.993252 -1.0 +6739 1 1.72 15.9300004 21.2399998 72.5699997 -0.581646 0.813442 -1.0 +6740 1 1.72 14.1599999 23.0100002 72.5699997 0.999928 -0.0119888 -1.0 +6741 1 1.72 17.7000008 21.2399998 70.8000031 -0.376659 0.926352 -1.0 +6742 1 1.72 19.4699993 23.0100002 70.8000031 0.735304 0.677738 -1.0 +6743 1 1.72 19.4699993 21.2399998 72.5699997 0.174364 0.984681 -1.0 +6744 1 1.72 17.7000008 23.0100002 72.5699997 -0.939792 -0.341748 -1.0 +6745 1 1.72 21.2399998 21.2399998 70.8000031 0.10769 0.994185 -1.0 +6746 1 1.72 23.0100002 23.0100002 70.8000031 0.938343 0.345706 -1.0 +6747 1 1.72 23.0100002 21.2399998 72.5699997 -0.994638 0.103415 -1.0 +6748 1 1.72 21.2399998 23.0100002 72.5699997 -0.793569 0.60848 -1.0 +6749 1 1.72 24.7800007 21.2399998 70.8000031 0.645359 0.763879 -1.0 +6750 1 1.72 26.5499993 23.0100002 70.8000031 -0.850356 -0.526209 -1.0 +6751 1 1.72 26.5499993 21.2399998 72.5699997 0.678389 0.734703 -1.0 +6752 1 1.72 24.7800007 23.0100002 72.5699997 0.448115 0.893976 -1.0 +6753 1 1.72 0.0 24.7800007 70.8000031 0.80702 0.590525 -1.0 +6754 1 1.72 1.77 26.5499993 70.8000031 -0.912397 0.409305 -1.0 +6755 1 1.72 1.77 24.7800007 72.5699997 0.0670246 0.997751 -1.0 +6756 1 1.72 0.0 26.5499993 72.5699997 -0.57862 0.815598 -1.0 +6757 1 1.72 3.54 24.7800007 70.8000031 -0.667173 -0.744903 -1.0 +6758 1 1.72 5.31 26.5499993 70.8000031 -0.97133 0.237733 -1.0 +6759 1 1.72 5.31 24.7800007 72.5699997 -0.698831 0.715287 -1.0 +6760 1 1.72 3.54 26.5499993 72.5699997 -0.250775 0.968045 -1.0 +6761 1 1.72 7.0799999 24.7800007 70.8000031 -0.729737 -0.683728 -1.0 +6762 1 1.72 8.8500004 26.5499993 70.8000031 -0.74959 0.661903 -1.0 +6763 1 1.72 8.8500004 24.7800007 72.5699997 -0.979551 -0.201196 -1.0 +6764 1 1.72 7.0799999 26.5499993 72.5699997 0.965879 -0.258994 -1.0 +6765 1 1.72 10.6199999 24.7800007 70.8000031 0.984449 -0.175671 -1.0 +6766 1 1.72 12.3900004 26.5499993 70.8000031 0.867935 -0.496679 -1.0 +6767 1 1.72 12.3900004 24.7800007 72.5699997 -0.535107 -0.844784 -1.0 +6768 1 1.72 10.6199999 26.5499993 72.5699997 0.800702 0.599063 -1.0 +6769 1 1.72 14.1599999 24.7800007 70.8000031 -0.898391 -0.439197 -1.0 +6770 1 1.72 15.9300004 26.5499993 70.8000031 -0.603445 -0.797404 -1.0 +6771 1 1.72 15.9300004 24.7800007 72.5699997 -0.556372 0.830933 -1.0 +6772 1 1.72 14.1599999 26.5499993 72.5699997 -0.831395 0.555681 -1.0 +6773 1 1.72 17.7000008 24.7800007 70.8000031 0.719698 0.694288 -1.0 +6774 1 1.72 19.4699993 26.5499993 70.8000031 -0.936839 -0.34976 -1.0 +6775 1 1.72 19.4699993 24.7800007 72.5699997 -0.340637 0.940195 -1.0 +6776 1 1.72 17.7000008 26.5499993 72.5699997 -0.58854 0.808468 -1.0 +6777 1 1.72 21.2399998 24.7800007 70.8000031 0.430324 0.902674 -1.0 +6778 1 1.72 23.0100002 26.5499993 70.8000031 -0.977698 0.210016 -1.0 +6779 1 1.72 23.0100002 24.7800007 72.5699997 -0.137458 -0.990508 -1.0 +6780 1 1.72 21.2399998 26.5499993 72.5699997 0.446041 0.895013 -1.0 +6781 1 1.72 24.7800007 24.7800007 70.8000031 -0.965895 0.258935 -1.0 +6782 1 1.72 26.5499993 26.5499993 70.8000031 -0.0805905 -0.996747 -1.0 +6783 1 1.72 26.5499993 24.7800007 72.5699997 -0.848441 -0.529289 -1.0 +6784 1 1.72 24.7800007 26.5499993 72.5699997 -0.971397 0.23746 -1.0 +6785 1 1.72 0.0 14.1599999 74.3399964 -0.567765 -0.823191 -1.0 +6786 1 1.72 1.77 15.9300004 74.3399964 0.257878 -0.966178 -1.0 +6787 1 1.72 1.77 14.1599999 76.1100006 -0.850722 -0.525616 -0.990079 +6788 1 1.72 0.0 15.9300004 76.1100006 0.371099 -0.928593 -0.990079 +6789 1 1.72 3.54 14.1599999 74.3399964 0.548981 -0.835835 -1.0 +6790 1 1.72 5.31 15.9300004 74.3399964 0.793136 0.609045 -1.0 +6791 1 1.72 5.31 14.1599999 76.1100006 -0.660052 -0.75122 -0.990079 +6792 1 1.72 3.54 15.9300004 76.1100006 -0.747507 -0.664254 -0.990079 +6793 1 1.72 7.0799999 14.1599999 74.3399964 0.649953 -0.759975 -1.0 +6794 1 1.72 8.8500004 15.9300004 74.3399964 -0.00836538 0.999965 -1.0 +6795 1 1.72 8.8500004 14.1599999 76.1100006 0.668659 -0.743569 -0.990079 +6796 1 1.72 7.0799999 15.9300004 76.1100006 -0.818428 0.574609 -0.990079 +6797 1 1.72 10.6199999 14.1599999 74.3399964 0.662787 0.748808 -1.0 +6798 1 1.72 12.3900004 15.9300004 74.3399964 0.954976 -0.296682 -1.0 +6799 1 1.72 12.3900004 14.1599999 76.1100006 -0.524912 -0.851157 -0.990079 +6800 1 1.72 10.6199999 15.9300004 76.1100006 0.746102 0.665832 -0.990079 +6801 1 1.72 14.1599999 14.1599999 74.3399964 0.998611 -0.0526852 -1.0 +6802 1 1.72 15.9300004 15.9300004 74.3399964 0.386207 -0.922412 -1.0 +6803 1 1.72 15.9300004 14.1599999 76.1100006 0.899522 0.436876 -0.990079 +6804 1 1.72 14.1599999 15.9300004 76.1100006 0.741752 -0.670674 -0.990079 +6805 1 1.72 17.7000008 14.1599999 74.3399964 -0.969453 0.245277 -1.0 +6806 1 1.72 19.4699993 15.9300004 74.3399964 0.542289 -0.840192 -1.0 +6807 1 1.72 19.4699993 14.1599999 76.1100006 -0.819042 -0.573734 -0.990079 +6808 1 1.72 17.7000008 15.9300004 76.1100006 0.875278 -0.483621 -0.990079 +6809 1 1.72 21.2399998 14.1599999 74.3399964 0.672245 -0.740329 -1.0 +6810 1 1.72 23.0100002 15.9300004 74.3399964 0.741619 -0.670821 -1.0 +6811 1 1.72 23.0100002 14.1599999 76.1100006 0.996374 0.0850818 -0.990079 +6812 1 1.72 21.2399998 15.9300004 76.1100006 0.792092 -0.610401 -0.990079 +6813 1 1.72 24.7800007 14.1599999 74.3399964 -0.485996 0.873961 -1.0 +6814 1 1.72 26.5499993 15.9300004 74.3399964 -0.652846 0.75749 -1.0 +6815 1 1.72 26.5499993 14.1599999 76.1100006 0.642313 -0.766442 -0.990079 +6816 1 1.72 24.7800007 15.9300004 76.1100006 0.972472 0.233019 -0.990079 +6817 1 1.72 0.0 17.7000008 74.3399964 0.469174 -0.883106 -1.0 +6818 1 1.72 1.77 19.4699993 74.3399964 0.884089 -0.467318 -1.0 +6819 1 1.72 1.77 17.7000008 76.1100006 -0.750286 -0.661114 -0.990079 +6820 1 1.72 0.0 19.4699993 76.1100006 0.171014 0.985269 -0.990079 +6821 1 1.72 3.54 17.7000008 74.3399964 0.997298 -0.073459 -1.0 +6822 1 1.72 5.31 19.4699993 74.3399964 0.235303 0.971922 -1.0 +6823 1 1.72 5.31 17.7000008 76.1100006 0.176893 0.98423 -0.990079 +6824 1 1.72 3.54 19.4699993 76.1100006 0.949277 0.314441 -0.990079 +6825 1 1.72 7.0799999 17.7000008 74.3399964 0.970422 0.241414 -1.0 +6826 1 1.72 8.8500004 19.4699993 74.3399964 0.604221 -0.796817 -1.0 +6827 1 1.72 8.8500004 17.7000008 76.1100006 -0.981042 0.193794 -0.990079 +6828 1 1.72 7.0799999 19.4699993 76.1100006 -0.0325079 0.999471 -0.990079 +6829 1 1.72 10.6199999 17.7000008 74.3399964 0.821573 -0.570103 -1.0 +6830 1 1.72 12.3900004 19.4699993 74.3399964 0.988124 0.153658 -1.0 +6831 1 1.72 12.3900004 17.7000008 76.1100006 -0.676222 -0.736698 -0.990079 +6832 1 1.72 10.6199999 19.4699993 76.1100006 0.932658 -0.360763 -0.990079 +6833 1 1.72 14.1599999 17.7000008 74.3399964 0.878617 -0.477527 -1.0 +6834 1 1.72 15.9300004 19.4699993 74.3399964 0.742212 -0.670166 -1.0 +6835 1 1.72 15.9300004 17.7000008 76.1100006 -0.836565 -0.547868 -0.990079 +6836 1 1.72 14.1599999 19.4699993 76.1100006 -0.578564 -0.815637 -0.990079 +6837 1 1.72 17.7000008 17.7000008 74.3399964 -0.444299 0.895879 -1.0 +6838 1 1.72 19.4699993 19.4699993 74.3399964 0.990291 -0.13901 -1.0 +6839 1 1.72 19.4699993 17.7000008 76.1100006 -0.394816 0.91876 -0.990079 +6840 1 1.72 17.7000008 19.4699993 76.1100006 -0.791081 0.611711 -0.990079 +6841 1 1.72 21.2399998 17.7000008 74.3399964 0.99924 -0.0389884 -1.0 +6842 1 1.72 23.0100002 19.4699993 74.3399964 0.939301 -0.343094 -1.0 +6843 1 1.72 23.0100002 17.7000008 76.1100006 -0.713126 -0.701036 -0.990079 +6844 1 1.72 21.2399998 19.4699993 76.1100006 -0.999997 -0.00242839 -0.990079 +6845 1 1.72 24.7800007 17.7000008 74.3399964 -0.330908 0.943663 -1.0 +6846 1 1.72 26.5499993 19.4699993 74.3399964 -0.177809 -0.984065 -1.0 +6847 1 1.72 26.5499993 17.7000008 76.1100006 -0.768941 0.63932 -0.990079 +6848 1 1.72 24.7800007 19.4699993 76.1100006 -0.203415 0.979093 -0.990079 +6849 1 1.72 0.0 21.2399998 74.3399964 0.855589 0.517655 -1.0 +6850 1 1.72 1.77 23.0100002 74.3399964 -0.99144 -0.130565 -1.0 +6851 1 1.72 1.77 21.2399998 76.1100006 -0.379104 -0.925354 -0.990079 +6852 1 1.72 0.0 23.0100002 76.1100006 0.973052 -0.230585 -0.990079 +6853 1 1.72 3.54 21.2399998 74.3399964 -0.674831 -0.737972 -1.0 +6854 1 1.72 5.31 23.0100002 74.3399964 0.458285 -0.888805 -1.0 +6855 1 1.72 5.31 21.2399998 76.1100006 -0.698843 -0.715275 -0.990079 +6856 1 1.72 3.54 23.0100002 76.1100006 -0.777965 -0.628308 -0.990079 +6857 1 1.72 7.0799999 21.2399998 74.3399964 0.440106 -0.897946 -1.0 +6858 1 1.72 8.8500004 23.0100002 74.3399964 0.986729 -0.162378 -1.0 +6859 1 1.72 8.8500004 21.2399998 76.1100006 0.802085 0.59721 -0.990079 +6860 1 1.72 7.0799999 23.0100002 76.1100006 -0.627671 -0.778479 -0.990079 +6861 1 1.72 10.6199999 21.2399998 74.3399964 0.992473 -0.122464 -1.0 +6862 1 1.72 12.3900004 23.0100002 74.3399964 -0.93871 -0.344707 -1.0 +6863 1 1.72 12.3900004 21.2399998 76.1100006 0.130804 -0.991408 -0.990079 +6864 1 1.72 10.6199999 23.0100002 76.1100006 0.957384 -0.28882 -0.990079 +6865 1 1.72 14.1599999 21.2399998 74.3399964 -0.698344 -0.715762 -1.0 +6866 1 1.72 15.9300004 23.0100002 74.3399964 0.818977 -0.573827 -1.0 +6867 1 1.72 15.9300004 21.2399998 76.1100006 0.840262 -0.54218 -0.990079 +6868 1 1.72 14.1599999 23.0100002 76.1100006 0.498073 0.867135 -0.990079 +6869 1 1.72 17.7000008 21.2399998 74.3399964 0.516657 0.856193 -1.0 +6870 1 1.72 19.4699993 23.0100002 74.3399964 0.448977 -0.893543 -1.0 +6871 1 1.72 19.4699993 21.2399998 76.1100006 -0.672411 -0.740178 -0.990079 +6872 1 1.72 17.7000008 23.0100002 76.1100006 0.999971 0.00766673 -0.990079 +6873 1 1.72 21.2399998 21.2399998 74.3399964 0.888294 -0.459276 -1.0 +6874 1 1.72 23.0100002 23.0100002 74.3399964 0.765527 -0.643404 -1.0 +6875 1 1.72 23.0100002 21.2399998 76.1100006 0.177036 0.984204 -0.990079 +6876 1 1.72 21.2399998 23.0100002 76.1100006 0.345329 -0.938482 -0.990079 +6877 1 1.72 24.7800007 21.2399998 74.3399964 -0.958628 -0.284661 -1.0 +6878 1 1.72 26.5499993 23.0100002 74.3399964 -0.787231 0.616659 -1.0 +6879 1 1.72 26.5499993 21.2399998 76.1100006 -0.931104 0.364754 -0.990079 +6880 1 1.72 24.7800007 23.0100002 76.1100006 0.569458 0.82202 -0.990079 +6881 1 1.72 0.0 24.7800007 74.3399964 0.331571 0.94343 -1.0 +6882 1 1.72 1.77 26.5499993 74.3399964 -0.675936 0.73696 -1.0 +6883 1 1.72 1.77 24.7800007 76.1100006 0.380233 -0.924891 -0.990079 +6884 1 1.72 0.0 26.5499993 76.1100006 0.3638 -0.931477 -0.990079 +6885 1 1.72 3.54 24.7800007 74.3399964 -0.905911 -0.423467 -1.0 +6886 1 1.72 5.31 26.5499993 74.3399964 -0.678895 0.734235 -1.0 +6887 1 1.72 5.31 24.7800007 76.1100006 0.887204 -0.461377 -0.990079 +6888 1 1.72 3.54 26.5499993 76.1100006 -0.687113 -0.726551 -0.990079 +6889 1 1.72 7.0799999 24.7800007 74.3399964 0.935651 -0.352927 -1.0 +6890 1 1.72 8.8500004 26.5499993 74.3399964 0.979988 0.199058 -1.0 +6891 1 1.72 8.8500004 24.7800007 76.1100006 0.0830268 0.996547 -0.990079 +6892 1 1.72 7.0799999 26.5499993 76.1100006 -0.994514 -0.104602 -0.990079 +6893 1 1.72 10.6199999 24.7800007 74.3399964 -0.973078 0.230476 -1.0 +6894 1 1.72 12.3900004 26.5499993 74.3399964 0.019238 -0.999815 -1.0 +6895 1 1.72 12.3900004 24.7800007 76.1100006 -0.92641 0.376516 -0.990079 +6896 1 1.72 10.6199999 26.5499993 76.1100006 -0.232199 0.972668 -0.990079 +6897 1 1.72 14.1599999 24.7800007 74.3399964 0.695625 -0.718405 -1.0 +6898 1 1.72 15.9300004 26.5499993 74.3399964 -0.975639 -0.219384 -1.0 +6899 1 1.72 15.9300004 24.7800007 76.1100006 0.102125 -0.994772 -0.990079 +6900 1 1.72 14.1599999 26.5499993 76.1100006 0.684259 -0.729239 -0.990079 +6901 1 1.72 17.7000008 24.7800007 74.3399964 0.146276 0.989244 -1.0 +6902 1 1.72 19.4699993 26.5499993 74.3399964 0.549686 -0.835372 -1.0 +6903 1 1.72 19.4699993 24.7800007 76.1100006 0.0466004 -0.998914 -0.990079 +6904 1 1.72 17.7000008 26.5499993 76.1100006 0.165019 0.98629 -0.990079 +6905 1 1.72 21.2399998 24.7800007 74.3399964 0.681308 -0.731997 -1.0 +6906 1 1.72 23.0100002 26.5499993 74.3399964 0.749317 -0.662211 -1.0 +6907 1 1.72 23.0100002 24.7800007 76.1100006 0.275438 -0.961319 -0.990079 +6908 1 1.72 21.2399998 26.5499993 76.1100006 0.772149 -0.635441 -0.990079 +6909 1 1.72 24.7800007 24.7800007 74.3399964 -0.806507 -0.591224 -1.0 +6910 1 1.72 26.5499993 26.5499993 74.3399964 0.997995 0.0632932 -1.0 +6911 1 1.72 26.5499993 24.7800007 76.1100006 -0.890072 0.455819 -0.990079 +6912 1 1.72 24.7800007 26.5499993 76.1100006 -0.933125 -0.359551 -0.990079 +6913 1 1.72 0.0 14.1599999 77.8799974 -0.780577 -0.625059 -0.90501 +6914 1 1.72 1.77 15.9300004 77.8799974 0.893541 -0.448982 -0.90501 +6915 1 1.72 1.77 14.1599999 79.6500016 -0.98474 0.174029 -0.7399438 +6916 1 1.72 0.0 15.9300004 79.6500016 0.473496 0.880796 -0.7399438 +6917 1 1.72 3.54 14.1599999 77.8799974 -0.0815826 -0.996667 -0.90501 +6918 1 1.72 5.31 15.9300004 77.8799974 0.996248 -0.0865471 -0.90501 +6919 1 1.72 5.31 14.1599999 79.6500016 0.394824 -0.918757 -0.7399438 +6920 1 1.72 3.54 15.9300004 79.6500016 0.913843 -0.406068 -0.7399438 +6921 1 1.72 7.0799999 14.1599999 77.8799974 0.122405 -0.99248 -0.90501 +6922 1 1.72 8.8500004 15.9300004 77.8799974 -0.584725 -0.811231 -0.90501 +6923 1 1.72 8.8500004 14.1599999 79.6500016 -0.999361 0.0357329 -0.7399438 +6924 1 1.72 7.0799999 15.9300004 79.6500016 -0.090933 0.995857 -0.7399438 +6925 1 1.72 10.6199999 14.1599999 77.8799974 0.0532691 0.99858 -0.90501 +6926 1 1.72 12.3900004 15.9300004 77.8799974 0.306578 -0.951845 -0.90501 +6927 1 1.72 12.3900004 14.1599999 79.6500016 0.785338 -0.619067 -0.7399438 +6928 1 1.72 10.6199999 15.9300004 79.6500016 -0.156736 -0.987641 -0.7399438 +6929 1 1.72 14.1599999 14.1599999 77.8799974 -0.602134 -0.798395 -0.90501 +6930 1 1.72 15.9300004 15.9300004 77.8799974 -0.809404 -0.587252 -0.90501 +6931 1 1.72 15.9300004 14.1599999 79.6500016 0.977013 0.21318 -0.7399438 +6932 1 1.72 14.1599999 15.9300004 79.6500016 -0.733097 0.680124 -0.7399438 +6933 1 1.72 17.7000008 14.1599999 77.8799974 -0.679952 0.733257 -0.90501 +6934 1 1.72 19.4699993 15.9300004 77.8799974 -0.947316 -0.320301 -0.90501 +6935 1 1.72 19.4699993 14.1599999 79.6500016 -0.854634 0.519231 -0.7399438 +6936 1 1.72 17.7000008 15.9300004 79.6500016 -0.0618815 0.998084 -0.7399438 +6937 1 1.72 21.2399998 14.1599999 77.8799974 0.918767 0.3948 -0.90501 +6938 1 1.72 23.0100002 15.9300004 77.8799974 0.640437 -0.768011 -0.90501 +6939 1 1.72 23.0100002 14.1599999 79.6500016 0.904393 -0.4267 -0.7399438 +6940 1 1.72 21.2399998 15.9300004 79.6500016 -0.338833 -0.940847 -0.7399438 +6941 1 1.72 24.7800007 14.1599999 77.8799974 0.964505 0.264063 -0.90501 +6942 1 1.72 26.5499993 15.9300004 77.8799974 -0.477707 -0.878519 -0.90501 +6943 1 1.72 26.5499993 14.1599999 79.6500016 -0.702518 0.711666 -0.7399438 +6944 1 1.72 24.7800007 15.9300004 79.6500016 -0.761034 -0.648712 -0.7399438 +6945 1 1.72 0.0 17.7000008 77.8799974 0.203153 0.979147 -0.90501 +6946 1 1.72 1.77 19.4699993 77.8799974 -0.829569 0.558404 -0.90501 +6947 1 1.72 1.77 17.7000008 79.6500016 0.885818 -0.464032 -0.7399438 +6948 1 1.72 0.0 19.4699993 79.6500016 -0.985232 0.171223 -0.7399438 +6949 1 1.72 3.54 17.7000008 77.8799974 -0.841608 0.540089 -0.90501 +6950 1 1.72 5.31 19.4699993 77.8799974 -0.841199 0.540726 -0.90501 +6951 1 1.72 5.31 17.7000008 79.6500016 -0.334542 -0.942381 -0.7399438 +6952 1 1.72 3.54 19.4699993 79.6500016 -0.848193 0.529687 -0.7399438 +6953 1 1.72 7.0799999 17.7000008 77.8799974 0.721483 0.692432 -0.90501 +6954 1 1.72 8.8500004 19.4699993 77.8799974 0.945822 0.324687 -0.90501 +6955 1 1.72 8.8500004 17.7000008 79.6500016 0.86688 -0.498516 -0.7399438 +6956 1 1.72 7.0799999 19.4699993 79.6500016 -0.785585 -0.618754 -0.7399438 +6957 1 1.72 10.6199999 17.7000008 77.8799974 -0.662362 0.749184 -0.90501 +6958 1 1.72 12.3900004 19.4699993 77.8799974 0.346896 0.937904 -0.90501 +6959 1 1.72 12.3900004 17.7000008 79.6500016 0.91237 -0.409365 -0.7399438 +6960 1 1.72 10.6199999 19.4699993 79.6500016 -0.771458 -0.63628 -0.7399438 +6961 1 1.72 14.1599999 17.7000008 77.8799974 0.673401 0.739277 -0.90501 +6962 1 1.72 15.9300004 19.4699993 77.8799974 0.651844 0.758353 -0.90501 +6963 1 1.72 15.9300004 17.7000008 79.6500016 -0.572496 -0.819908 -0.7399438 +6964 1 1.72 14.1599999 19.4699993 79.6500016 0.0755922 0.997139 -0.7399438 +6965 1 1.72 17.7000008 17.7000008 77.8799974 0.971473 -0.237149 -0.90501 +6966 1 1.72 19.4699993 19.4699993 77.8799974 0.745671 -0.666314 -0.90501 +6967 1 1.72 19.4699993 17.7000008 79.6500016 0.626417 -0.779488 -0.7399438 +6968 1 1.72 17.7000008 19.4699993 79.6500016 0.633903 0.773413 -0.7399438 +6969 1 1.72 21.2399998 17.7000008 77.8799974 -0.826718 -0.562616 -0.90501 +6970 1 1.72 23.0100002 19.4699993 77.8799974 0.606466 -0.79511 -0.90501 +6971 1 1.72 23.0100002 17.7000008 79.6500016 0.447562 0.894253 -0.7399438 +6972 1 1.72 21.2399998 19.4699993 79.6500016 -0.646893 -0.762581 -0.7399438 +6973 1 1.72 24.7800007 17.7000008 77.8799974 -0.885594 -0.464459 -0.90501 +6974 1 1.72 26.5499993 19.4699993 77.8799974 -0.353703 -0.935358 -0.90501 +6975 1 1.72 26.5499993 17.7000008 79.6500016 0.999745 0.0225836 -0.7399438 +6976 1 1.72 24.7800007 19.4699993 79.6500016 0.309711 -0.950831 -0.7399438 +6977 1 1.72 0.0 21.2399998 77.8799974 -0.523377 0.852101 -0.90501 +6978 1 1.72 1.77 23.0100002 77.8799974 0.673568 0.739125 -0.90501 +6979 1 1.72 1.77 21.2399998 79.6500016 0.695071 -0.718941 -0.7399438 +6980 1 1.72 0.0 23.0100002 79.6500016 -0.191277 0.981536 -0.7399438 +6981 1 1.72 3.54 21.2399998 77.8799974 0.926635 -0.375962 -0.90501 +6982 1 1.72 5.31 23.0100002 77.8799974 0.433126 -0.901333 -0.90501 +6983 1 1.72 5.31 21.2399998 79.6500016 -0.787647 0.616127 -0.7399438 +6984 1 1.72 3.54 23.0100002 79.6500016 -0.738776 0.673951 -0.7399438 +6985 1 1.72 7.0799999 21.2399998 77.8799974 -0.795304 0.60621 -0.90501 +6986 1 1.72 8.8500004 23.0100002 77.8799974 -0.269326 0.963049 -0.90501 +6987 1 1.72 8.8500004 21.2399998 79.6500016 -0.841835 -0.539735 -0.7399438 +6988 1 1.72 7.0799999 23.0100002 79.6500016 0.91975 -0.392505 -0.7399438 +6989 1 1.72 10.6199999 21.2399998 77.8799974 -0.94168 0.336509 -0.90501 +6990 1 1.72 12.3900004 23.0100002 77.8799974 0.746561 -0.665317 -0.90501 +6991 1 1.72 12.3900004 21.2399998 79.6500016 0.824408 0.565996 -0.7399438 +6992 1 1.72 10.6199999 23.0100002 79.6500016 0.833036 0.553218 -0.7399438 +6993 1 1.72 14.1599999 21.2399998 77.8799974 -0.360402 0.932797 -0.90501 +6994 1 1.72 15.9300004 23.0100002 77.8799974 -0.0617366 0.998092 -0.90501 +6995 1 1.72 15.9300004 21.2399998 79.6500016 -0.809157 -0.587593 -0.7399438 +6996 1 1.72 14.1599999 23.0100002 79.6500016 0.619444 -0.785041 -0.7399438 +6997 1 1.72 17.7000008 21.2399998 77.8799974 -0.540978 -0.841037 -0.90501 +6998 1 1.72 19.4699993 23.0100002 77.8799974 -0.894518 0.447033 -0.90501 +6999 1 1.72 19.4699993 21.2399998 79.6500016 0.0811275 0.996704 -0.7399438 +7000 1 1.72 17.7000008 23.0100002 79.6500016 -0.820644 -0.57144 -0.7399438 +7001 1 1.72 21.2399998 21.2399998 77.8799974 0.624137 -0.781315 -0.90501 +7002 1 1.72 23.0100002 23.0100002 77.8799974 0.537563 -0.843224 -0.90501 +7003 1 1.72 23.0100002 21.2399998 79.6500016 -0.994474 -0.104981 -0.7399438 +7004 1 1.72 21.2399998 23.0100002 79.6500016 -0.549368 0.83558 -0.7399438 +7005 1 1.72 24.7800007 21.2399998 77.8799974 -0.997654 -0.0684574 -0.90501 +7006 1 1.72 26.5499993 23.0100002 77.8799974 0.243537 0.969892 -0.90501 +7007 1 1.72 26.5499993 21.2399998 79.6500016 0.664477 -0.747309 -0.7399438 +7008 1 1.72 24.7800007 23.0100002 79.6500016 0.856676 -0.515854 -0.7399438 +7009 1 1.72 0.0 24.7800007 77.8799974 -0.739251 0.67343 -0.90501 +7010 1 1.72 1.77 26.5499993 77.8799974 0.563631 -0.826027 -0.90501 +7011 1 1.72 1.77 24.7800007 79.6500016 -0.813186 -0.582004 -0.7399438 +7012 1 1.72 0.0 26.5499993 79.6500016 -0.826546 -0.562869 -0.7399438 +7013 1 1.72 3.54 24.7800007 77.8799974 0.674552 -0.738227 -0.90501 +7014 1 1.72 5.31 26.5499993 77.8799974 0.063026 -0.998012 -0.90501 +7015 1 1.72 5.31 24.7800007 79.6500016 -0.29652 -0.955027 -0.7399438 +7016 1 1.72 3.54 26.5499993 79.6500016 -0.605414 -0.795911 -0.7399438 +7017 1 1.72 7.0799999 24.7800007 77.8799974 0.29254 -0.956253 -0.90501 +7018 1 1.72 8.8500004 26.5499993 77.8799974 0.0698194 -0.99756 -0.90501 +7019 1 1.72 8.8500004 24.7800007 79.6500016 0.62672 0.779244 -0.7399438 +7020 1 1.72 7.0799999 26.5499993 79.6500016 -0.742365 -0.669995 -0.7399438 +7021 1 1.72 10.6199999 24.7800007 77.8799974 -0.837019 -0.547174 -0.90501 +7022 1 1.72 12.3900004 26.5499993 77.8799974 -0.703101 0.71109 -0.90501 +7023 1 1.72 12.3900004 24.7800007 79.6500016 -0.944894 0.327376 -0.7399438 +7024 1 1.72 10.6199999 26.5499993 79.6500016 0.863867 0.50372 -0.7399438 +7025 1 1.72 14.1599999 24.7800007 77.8799974 0.986685 0.162642 -0.90501 +7026 1 1.72 15.9300004 26.5499993 77.8799974 -0.418962 -0.908004 -0.90501 +7027 1 1.72 15.9300004 24.7800007 79.6500016 0.895 0.446066 -0.7399438 +7028 1 1.72 14.1599999 26.5499993 79.6500016 0.802757 0.596306 -0.7399438 +7029 1 1.72 17.7000008 24.7800007 77.8799974 -0.999873 -0.0159247 -0.90501 +7030 1 1.72 19.4699993 26.5499993 77.8799974 -0.314501 0.949257 -0.90501 +7031 1 1.72 19.4699993 24.7800007 79.6500016 -0.329709 0.944082 -0.7399438 +7032 1 1.72 17.7000008 26.5499993 79.6500016 0.962407 0.27161 -0.7399438 +7033 1 1.72 21.2399998 24.7800007 77.8799974 0.748958 -0.662618 -0.90501 +7034 1 1.72 23.0100002 26.5499993 77.8799974 0.0723828 0.997377 -0.90501 +7035 1 1.72 23.0100002 24.7800007 79.6500016 0.327213 -0.944951 -0.7399438 +7036 1 1.72 21.2399998 26.5499993 79.6500016 -0.336781 -0.941583 -0.7399438 +7037 1 1.72 24.7800007 24.7800007 77.8799974 0.926617 -0.376006 -0.90501 +7038 1 1.72 26.5499993 26.5499993 77.8799974 0.950136 0.311836 -0.90501 +7039 1 1.72 26.5499993 24.7800007 79.6500016 -0.829968 0.557811 -0.7399438 +7040 1 1.72 24.7800007 26.5499993 79.6500016 0.45494 0.890522 -0.7399438 +7041 1 1.72 0.0 14.1599999 81.4199982 0.999634 0.0270574 -0.5094728 +7042 1 1.72 1.77 15.9300004 81.4199982 -0.957232 0.289322 -0.5094728 +7043 1 1.72 1.77 14.1599999 83.1900024 0.873881 -0.486139 -0.2339667 +7044 1 1.72 0.0 15.9300004 83.1900024 0.990666 -0.136312 -0.2339667 +7045 1 1.72 3.54 14.1599999 81.4199982 0.997456 -0.0712869 -0.5094728 +7046 1 1.72 5.31 15.9300004 81.4199982 0.933222 -0.359301 -0.5094728 +7047 1 1.72 5.31 14.1599999 83.1900024 0.0180853 -0.999836 -0.2339667 +7048 1 1.72 3.54 15.9300004 83.1900024 -0.84563 -0.533769 -0.2339667 +7049 1 1.72 7.0799999 14.1599999 81.4199982 0.764295 0.644867 -0.5094728 +7050 1 1.72 8.8500004 15.9300004 81.4199982 -0.212755 0.977106 -0.5094728 +7051 1 1.72 8.8500004 14.1599999 83.1900024 0.698096 -0.716004 -0.2339667 +7052 1 1.72 7.0799999 15.9300004 83.1900024 0.718019 0.696024 -0.2339667 +7053 1 1.72 10.6199999 14.1599999 81.4199982 0.493211 0.86991 -0.5094728 +7054 1 1.72 12.3900004 15.9300004 81.4199982 -0.517483 0.855694 -0.5094728 +7055 1 1.72 12.3900004 14.1599999 83.1900024 -0.173388 -0.984854 -0.2339667 +7056 1 1.72 10.6199999 15.9300004 83.1900024 -0.858606 -0.512636 -0.2339667 +7057 1 1.72 14.1599999 14.1599999 81.4199982 -0.727816 -0.685773 -0.5094728 +7058 1 1.72 15.9300004 15.9300004 81.4199982 -0.989598 0.143862 -0.5094728 +7059 1 1.72 15.9300004 14.1599999 83.1900024 0.0306837 -0.999529 -0.2339667 +7060 1 1.72 14.1599999 15.9300004 83.1900024 0.329766 0.944063 -0.2339667 +7061 1 1.72 17.7000008 14.1599999 81.4199982 0.589489 0.807776 -0.5094728 +7062 1 1.72 19.4699993 15.9300004 81.4199982 0.532448 -0.846462 -0.5094728 +7063 1 1.72 19.4699993 14.1599999 83.1900024 0.407167 -0.913354 -0.2339667 +7064 1 1.72 17.7000008 15.9300004 83.1900024 -0.968965 0.247199 -0.2339667 +7065 1 1.72 21.2399998 14.1599999 81.4199982 -0.706805 -0.707408 -0.5094728 +7066 1 1.72 23.0100002 15.9300004 81.4199982 -0.881991 0.471267 -0.5094728 +7067 1 1.72 23.0100002 14.1599999 83.1900024 0.993572 0.113198 -0.2339667 +7068 1 1.72 21.2399998 15.9300004 83.1900024 0.0578672 -0.998324 -0.2339667 +7069 1 1.72 24.7800007 14.1599999 81.4199982 0.477638 -0.878557 -0.5094728 +7070 1 1.72 26.5499993 15.9300004 81.4199982 0.921229 0.38902 -0.5094728 +7071 1 1.72 26.5499993 14.1599999 83.1900024 -0.874612 0.484824 -0.2339667 +7072 1 1.72 24.7800007 15.9300004 83.1900024 -0.910406 -0.413715 -0.2339667 +7073 1 1.72 0.0 17.7000008 81.4199982 -0.14237 0.989813 -0.5094728 +7074 1 1.72 1.77 19.4699993 81.4199982 -0.52984 -0.848098 -0.5094728 +7075 1 1.72 1.77 17.7000008 83.1900024 -0.584402 0.811464 -0.2339667 +7076 1 1.72 0.0 19.4699993 83.1900024 -0.756935 0.65349 -0.2339667 +7077 1 1.72 3.54 17.7000008 81.4199982 0.957755 -0.287585 -0.5094728 +7078 1 1.72 5.31 19.4699993 81.4199982 -0.0824402 -0.996596 -0.5094728 +7079 1 1.72 5.31 17.7000008 83.1900024 0.472481 -0.881341 -0.2339667 +7080 1 1.72 3.54 19.4699993 83.1900024 0.969563 0.244842 -0.2339667 +7081 1 1.72 7.0799999 17.7000008 81.4199982 -0.131922 -0.99126 -0.5094728 +7082 1 1.72 8.8500004 19.4699993 81.4199982 0.274979 0.96145 -0.5094728 +7083 1 1.72 8.8500004 17.7000008 83.1900024 0.0674292 0.997724 -0.2339667 +7084 1 1.72 7.0799999 19.4699993 83.1900024 0.0835993 0.996499 -0.2339667 +7085 1 1.72 10.6199999 17.7000008 81.4199982 0.457758 -0.889077 -0.5094728 +7086 1 1.72 12.3900004 19.4699993 81.4199982 -0.999996 0.00299647 -0.5094728 +7087 1 1.72 12.3900004 17.7000008 83.1900024 -0.667837 0.744307 -0.2339667 +7088 1 1.72 10.6199999 19.4699993 83.1900024 0.887556 0.460699 -0.2339667 +7089 1 1.72 14.1599999 17.7000008 81.4199982 0.454278 -0.89086 -0.5094728 +7090 1 1.72 15.9300004 19.4699993 81.4199982 0.228603 -0.97352 -0.5094728 +7091 1 1.72 15.9300004 17.7000008 83.1900024 -0.99614 0.0877811 -0.2339667 +7092 1 1.72 14.1599999 19.4699993 83.1900024 -0.090983 0.995852 -0.2339667 +7093 1 1.72 17.7000008 17.7000008 81.4199982 -0.999791 0.0204222 -0.5094728 +7094 1 1.72 19.4699993 19.4699993 81.4199982 -0.294693 -0.955592 -0.5094728 +7095 1 1.72 19.4699993 17.7000008 83.1900024 -0.629027 -0.777383 -0.2339667 +7096 1 1.72 17.7000008 19.4699993 83.1900024 0.316158 -0.948707 -0.2339667 +7097 1 1.72 21.2399998 17.7000008 81.4199982 -0.998324 0.0578649 -0.5094728 +7098 1 1.72 23.0100002 19.4699993 81.4199982 -0.0887738 -0.996052 -0.5094728 +7099 1 1.72 23.0100002 17.7000008 83.1900024 0.464489 0.885579 -0.2339667 +7100 1 1.72 21.2399998 19.4699993 83.1900024 -0.874197 -0.485571 -0.2339667 +7101 1 1.72 24.7800007 17.7000008 81.4199982 -0.734032 0.679115 -0.5094728 +7102 1 1.72 26.5499993 19.4699993 81.4199982 -0.999881 0.015397 -0.5094728 +7103 1 1.72 26.5499993 17.7000008 83.1900024 -0.123666 0.992324 -0.2339667 +7104 1 1.72 24.7800007 19.4699993 83.1900024 0.91355 -0.406726 -0.2339667 +7105 1 1.72 0.0 21.2399998 81.4199982 0.74571 -0.666271 -0.5094728 +7106 1 1.72 1.77 23.0100002 81.4199982 -0.892722 0.450608 -0.5094728 +7107 1 1.72 1.77 21.2399998 83.1900024 0.660678 0.750669 -0.2339667 +7108 1 1.72 0.0 23.0100002 83.1900024 0.935743 0.352682 -0.2339667 +7109 1 1.72 3.54 21.2399998 81.4199982 0.143165 -0.989699 -0.5094728 +7110 1 1.72 5.31 23.0100002 81.4199982 0.522418 0.852689 -0.5094728 +7111 1 1.72 5.31 21.2399998 83.1900024 0.614548 0.788879 -0.2339667 +7112 1 1.72 3.54 23.0100002 83.1900024 -0.0485635 -0.99882 -0.2339667 +7113 1 1.72 7.0799999 21.2399998 81.4199982 -0.999697 0.0245976 -0.5094728 +7114 1 1.72 8.8500004 23.0100002 81.4199982 0.926548 0.376176 -0.5094728 +7115 1 1.72 8.8500004 21.2399998 83.1900024 0.680014 0.733199 -0.2339667 +7116 1 1.72 7.0799999 23.0100002 83.1900024 0.999483 -0.032137 -0.2339667 +7117 1 1.72 10.6199999 21.2399998 81.4199982 0.714085 -0.700059 -0.5094728 +7118 1 1.72 12.3900004 23.0100002 81.4199982 -0.716187 0.697908 -0.5094728 +7119 1 1.72 12.3900004 21.2399998 83.1900024 0.505048 -0.863091 -0.2339667 +7120 1 1.72 10.6199999 23.0100002 83.1900024 0.743576 0.668652 -0.2339667 +7121 1 1.72 14.1599999 21.2399998 81.4199982 -0.999991 0.00428482 -0.5094728 +7122 1 1.72 15.9300004 23.0100002 81.4199982 -0.997548 0.0699824 -0.5094728 +7123 1 1.72 15.9300004 21.2399998 83.1900024 0.323665 -0.946172 -0.2339667 +7124 1 1.72 14.1599999 23.0100002 83.1900024 -0.296312 -0.955091 -0.2339667 +7125 1 1.72 17.7000008 21.2399998 81.4199982 0.728366 0.685188 -0.5094728 +7126 1 1.72 19.4699993 23.0100002 81.4199982 -0.80173 -0.597686 -0.5094728 +7127 1 1.72 19.4699993 21.2399998 83.1900024 0.930908 0.365253 -0.2339667 +7128 1 1.72 17.7000008 23.0100002 83.1900024 -0.521183 -0.853445 -0.2339667 +7129 1 1.72 21.2399998 21.2399998 81.4199982 -0.373281 0.927718 -0.5094728 +7130 1 1.72 23.0100002 23.0100002 81.4199982 0.784854 -0.61968 -0.5094728 +7131 1 1.72 23.0100002 21.2399998 83.1900024 0.707922 -0.70629 -0.2339667 +7132 1 1.72 21.2399998 23.0100002 83.1900024 -0.18421 -0.982887 -0.2339667 +7133 1 1.72 24.7800007 21.2399998 81.4199982 -0.159016 0.987276 -0.5094728 +7134 1 1.72 26.5499993 23.0100002 81.4199982 -0.651023 -0.759058 -0.5094728 +7135 1 1.72 26.5499993 21.2399998 83.1900024 0.847935 -0.5301 -0.2339667 +7136 1 1.72 24.7800007 23.0100002 83.1900024 -0.261981 0.965073 -0.2339667 +7137 1 1.72 0.0 24.7800007 81.4199982 -0.472632 -0.88126 -0.5094728 +7138 1 1.72 1.77 26.5499993 81.4199982 -0.278598 -0.960408 -0.5094728 +7139 1 1.72 1.77 24.7800007 83.1900024 -0.844972 0.53481 -0.2339667 +7140 1 1.72 0.0 26.5499993 83.1900024 -0.901843 0.432064 -0.2339667 +7141 1 1.72 3.54 24.7800007 81.4199982 0.924459 -0.381281 -0.5094728 +7142 1 1.72 5.31 26.5499993 81.4199982 -0.963023 0.269418 -0.5094728 +7143 1 1.72 5.31 24.7800007 83.1900024 0.813307 -0.581835 -0.2339667 +7144 1 1.72 3.54 26.5499993 83.1900024 -0.114065 0.993473 -0.2339667 +7145 1 1.72 7.0799999 24.7800007 81.4199982 -0.675722 0.737157 -0.5094728 +7146 1 1.72 8.8500004 26.5499993 81.4199982 0.431609 0.902061 -0.5094728 +7147 1 1.72 8.8500004 24.7800007 83.1900024 0.214693 -0.976682 -0.2339667 +7148 1 1.72 7.0799999 26.5499993 83.1900024 0.448992 -0.893536 -0.2339667 +7149 1 1.72 10.6199999 24.7800007 81.4199982 -0.538867 -0.842391 -0.5094728 +7150 1 1.72 12.3900004 26.5499993 81.4199982 0.98976 -0.142744 -0.5094728 +7151 1 1.72 12.3900004 24.7800007 83.1900024 0.644963 0.764214 -0.2339667 +7152 1 1.72 10.6199999 26.5499993 83.1900024 0.212099 -0.977248 -0.2339667 +7153 1 1.72 14.1599999 24.7800007 81.4199982 -0.157915 -0.987453 -0.5094728 +7154 1 1.72 15.9300004 26.5499993 81.4199982 -0.374307 0.927305 -0.5094728 +7155 1 1.72 15.9300004 24.7800007 83.1900024 -0.459929 0.887956 -0.2339667 +7156 1 1.72 14.1599999 26.5499993 83.1900024 -0.844814 0.53506 -0.2339667 +7157 1 1.72 17.7000008 24.7800007 81.4199982 -0.999444 0.0333365 -0.5094728 +7158 1 1.72 19.4699993 26.5499993 81.4199982 -0.999628 -0.0272822 -0.5094728 +7159 1 1.72 19.4699993 24.7800007 83.1900024 -0.999682 0.0252339 -0.2339667 +7160 1 1.72 17.7000008 26.5499993 83.1900024 0.633134 -0.774042 -0.2339667 +7161 1 1.72 21.2399998 24.7800007 81.4199982 0.197382 -0.980327 -0.5094728 +7162 1 1.72 23.0100002 26.5499993 81.4199982 -0.95722 0.28936 -0.5094728 +7163 1 1.72 23.0100002 24.7800007 83.1900024 -0.247443 -0.968902 -0.2339667 +7164 1 1.72 21.2399998 26.5499993 83.1900024 0.208658 -0.977989 -0.2339667 +7165 1 1.72 24.7800007 24.7800007 81.4199982 -0.180183 -0.983633 -0.5094728 +7166 1 1.72 26.5499993 26.5499993 81.4199982 -0.969499 0.245096 -0.5094728 +7167 1 1.72 26.5499993 24.7800007 83.1900024 -0.512175 -0.858881 -0.2339667 +7168 1 1.72 24.7800007 26.5499993 83.1900024 -0.510903 0.859638 -0.2339667 +7169 1 1.72 0.0 14.1599999 84.9599992 0.997482 -0.0709225 0.0622191 +7170 1 1.72 1.77 15.9300004 84.9599992 0.885982 0.46372 0.0622191 +7171 1 1.72 1.77 14.1599999 86.7300034 -0.277482 0.960731 0.3529064 +7172 1 1.72 0.0 15.9300004 86.7300034 -0.728851 0.684673 0.3529064 +7173 1 1.72 3.54 14.1599999 84.9599992 0.98343 0.181287 0.0622191 +7174 1 1.72 5.31 15.9300004 84.9599992 0.891522 -0.452978 0.0622191 +7175 1 1.72 5.31 14.1599999 86.7300034 -0.608097 -0.793863 0.3529064 +7176 1 1.72 3.54 15.9300004 86.7300034 0.170945 0.985281 0.3529064 +7177 1 1.72 7.0799999 14.1599999 84.9599992 0.996296 0.0859857 0.0622191 +7178 1 1.72 8.8500004 15.9300004 84.9599992 -0.991856 -0.127364 0.0622191 +7179 1 1.72 8.8500004 14.1599999 86.7300034 0.62125 0.783613 0.3529064 +7180 1 1.72 7.0799999 15.9300004 86.7300034 0.233158 0.972439 0.3529064 +7181 1 1.72 10.6199999 14.1599999 84.9599992 0.760174 0.64972 0.0622191 +7182 1 1.72 12.3900004 15.9300004 84.9599992 -0.994505 -0.104689 0.0622191 +7183 1 1.72 12.3900004 14.1599999 86.7300034 0.156642 0.987655 0.3529064 +7184 1 1.72 10.6199999 15.9300004 86.7300034 -0.46551 0.885043 0.3529064 +7185 1 1.72 14.1599999 14.1599999 84.9599992 -0.725009 -0.688739 0.0622191 +7186 1 1.72 15.9300004 15.9300004 84.9599992 -0.368241 0.929731 0.0622191 +7187 1 1.72 15.9300004 14.1599999 86.7300034 -0.225927 0.974144 0.3529064 +7188 1 1.72 14.1599999 15.9300004 86.7300034 0.526065 0.850444 0.3529064 +7189 1 1.72 17.7000008 14.1599999 84.9599992 0.603996 0.796988 0.0622191 +7190 1 1.72 19.4699993 15.9300004 84.9599992 0.396232 0.91815 0.0622191 +7191 1 1.72 19.4699993 14.1599999 86.7300034 -0.967313 0.253585 0.3529064 +7192 1 1.72 17.7000008 15.9300004 86.7300034 -0.839125 -0.543938 0.3529064 +7193 1 1.72 21.2399998 14.1599999 84.9599992 0.695207 -0.718809 0.0622191 +7194 1 1.72 23.0100002 15.9300004 84.9599992 -0.00841705 0.999965 0.0622191 +7195 1 1.72 23.0100002 14.1599999 86.7300034 -0.6788 0.734323 0.3529064 +7196 1 1.72 21.2399998 15.9300004 86.7300034 -0.966386 -0.257096 0.3529064 +7197 1 1.72 24.7800007 14.1599999 84.9599992 0.583612 0.812033 0.0622191 +7198 1 1.72 26.5499993 15.9300004 84.9599992 0.814357 0.580364 0.0622191 +7199 1 1.72 26.5499993 14.1599999 86.7300034 0.138949 -0.990299 0.3529064 +7200 1 1.72 24.7800007 15.9300004 86.7300034 0.362207 0.932098 0.3529064 +7201 1 1.72 0.0 17.7000008 84.9599992 -0.132318 0.991207 0.0622191 +7202 1 1.72 1.77 19.4699993 84.9599992 0.854371 0.519664 0.0622191 +7203 1 1.72 1.77 17.7000008 86.7300034 0.496644 -0.867954 0.3529064 +7204 1 1.72 0.0 19.4699993 86.7300034 -0.63657 0.771219 0.3529064 +7205 1 1.72 3.54 17.7000008 84.9599992 -0.257392 -0.966307 0.0622191 +7206 1 1.72 5.31 19.4699993 84.9599992 0.849831 -0.527055 0.0622191 +7207 1 1.72 5.31 17.7000008 86.7300034 -0.78081 -0.624769 0.3529064 +7208 1 1.72 3.54 19.4699993 86.7300034 -0.781205 -0.624275 0.3529064 +7209 1 1.72 7.0799999 17.7000008 84.9599992 0.759744 -0.650223 0.0622191 +7210 1 1.72 8.8500004 19.4699993 84.9599992 -0.755777 0.654829 0.0622191 +7211 1 1.72 8.8500004 17.7000008 86.7300034 0.498246 0.867036 0.3529064 +7212 1 1.72 7.0799999 19.4699993 86.7300034 -0.904963 0.425491 0.3529064 +7213 1 1.72 10.6199999 17.7000008 84.9599992 -0.63527 0.77229 0.0622191 +7214 1 1.72 12.3900004 19.4699993 84.9599992 0.450913 0.892568 0.0622191 +7215 1 1.72 12.3900004 17.7000008 86.7300034 -0.463738 -0.885973 0.3529064 +7216 1 1.72 10.6199999 19.4699993 86.7300034 0.579384 -0.815055 0.3529064 +7217 1 1.72 14.1599999 17.7000008 84.9599992 -0.638167 -0.769898 0.0622191 +7218 1 1.72 15.9300004 19.4699993 84.9599992 0.837725 0.546093 0.0622191 +7219 1 1.72 15.9300004 17.7000008 86.7300034 -0.961775 -0.273839 0.3529064 +7220 1 1.72 14.1599999 19.4699993 86.7300034 0.403298 0.915069 0.3529064 +7221 1 1.72 17.7000008 17.7000008 84.9599992 0.758982 -0.651112 0.0622191 +7222 1 1.72 19.4699993 19.4699993 84.9599992 0.330809 -0.943698 0.0622191 +7223 1 1.72 19.4699993 17.7000008 86.7300034 -0.90535 0.424667 0.3529064 +7224 1 1.72 17.7000008 19.4699993 86.7300034 -0.244936 0.969539 0.3529064 +7225 1 1.72 21.2399998 17.7000008 84.9599992 0.711106 -0.703085 0.0622191 +7226 1 1.72 23.0100002 19.4699993 84.9599992 0.77967 0.626191 0.0622191 +7227 1 1.72 23.0100002 17.7000008 86.7300034 -0.701476 -0.712693 0.3529064 +7228 1 1.72 21.2399998 19.4699993 86.7300034 -0.752627 -0.658447 0.3529064 +7229 1 1.72 24.7800007 17.7000008 84.9599992 0.597296 0.802021 0.0622191 +7230 1 1.72 26.5499993 19.4699993 84.9599992 -0.68935 -0.724429 0.0622191 +7231 1 1.72 26.5499993 17.7000008 86.7300034 0.87852 -0.477705 0.3529064 +7232 1 1.72 24.7800007 19.4699993 86.7300034 -0.348809 -0.937194 0.3529064 +7233 1 1.72 0.0 21.2399998 84.9599992 0.0103127 -0.999947 0.0622191 +7234 1 1.72 1.77 23.0100002 84.9599992 -0.980241 -0.197808 0.0622191 +7235 1 1.72 1.77 21.2399998 86.7300034 -0.181089 -0.983467 0.3529064 +7236 1 1.72 0.0 23.0100002 86.7300034 0.838894 0.544294 0.3529064 +7237 1 1.72 3.54 21.2399998 84.9599992 -0.999821 0.0189285 0.0622191 +7238 1 1.72 5.31 23.0100002 84.9599992 -0.859955 -0.510369 0.0622191 +7239 1 1.72 5.31 21.2399998 86.7300034 0.214569 -0.976709 0.3529064 +7240 1 1.72 3.54 23.0100002 86.7300034 -0.901816 0.432121 0.3529064 +7241 1 1.72 7.0799999 21.2399998 84.9599992 0.24824 0.968699 0.0622191 +7242 1 1.72 8.8500004 23.0100002 84.9599992 -0.913784 -0.406201 0.0622191 +7243 1 1.72 8.8500004 21.2399998 86.7300034 0.903048 0.42954 0.3529064 +7244 1 1.72 7.0799999 23.0100002 86.7300034 0.331813 -0.943345 0.3529064 +7245 1 1.72 10.6199999 21.2399998 84.9599992 0.399421 0.916767 0.0622191 +7246 1 1.72 12.3900004 23.0100002 84.9599992 0.616546 0.787319 0.0622191 +7247 1 1.72 12.3900004 21.2399998 86.7300034 -0.876837 -0.480789 0.3529064 +7248 1 1.72 10.6199999 23.0100002 86.7300034 0.290635 0.956834 0.3529064 +7249 1 1.72 14.1599999 21.2399998 84.9599992 -0.892637 0.450777 0.0622191 +7250 1 1.72 15.9300004 23.0100002 84.9599992 -0.0240963 0.99971 0.0622191 +7251 1 1.72 15.9300004 21.2399998 86.7300034 0.0937539 0.995595 0.3529064 +7252 1 1.72 14.1599999 23.0100002 86.7300034 0.604352 -0.796718 0.3529064 +7253 1 1.72 17.7000008 21.2399998 84.9599992 0.347235 -0.937778 0.0622191 +7254 1 1.72 19.4699993 23.0100002 84.9599992 -0.641414 -0.767195 0.0622191 +7255 1 1.72 19.4699993 21.2399998 86.7300034 0.772043 -0.635571 0.3529064 +7256 1 1.72 17.7000008 23.0100002 86.7300034 0.093297 -0.995638 0.3529064 +7257 1 1.72 21.2399998 21.2399998 84.9599992 0.940947 0.338553 0.0622191 +7258 1 1.72 23.0100002 23.0100002 84.9599992 -0.170928 0.985284 0.0622191 +7259 1 1.72 23.0100002 21.2399998 86.7300034 0.785236 0.619196 0.3529064 +7260 1 1.72 21.2399998 23.0100002 86.7300034 0.362203 -0.932099 0.3529064 +7261 1 1.72 24.7800007 21.2399998 84.9599992 0.98602 0.166625 0.0622191 +7262 1 1.72 26.5499993 23.0100002 84.9599992 0.232046 -0.972705 0.0622191 +7263 1 1.72 26.5499993 21.2399998 86.7300034 0.999763 -0.021768 0.3529064 +7264 1 1.72 24.7800007 23.0100002 86.7300034 0.921563 -0.388228 0.3529064 +7265 1 1.72 0.0 24.7800007 84.9599992 -0.994342 0.106224 0.0622191 +7266 1 1.72 1.77 26.5499993 84.9599992 -0.949506 -0.31375 0.0622191 +7267 1 1.72 1.77 24.7800007 86.7300034 0.401109 0.916031 0.3529064 +7268 1 1.72 0.0 26.5499993 86.7300034 -0.999701 0.0244554 0.3529064 +7269 1 1.72 3.54 24.7800007 84.9599992 0.399626 0.916678 0.0622191 +7270 1 1.72 5.31 26.5499993 84.9599992 0.709862 0.704341 0.0622191 +7271 1 1.72 5.31 24.7800007 86.7300034 0.821681 -0.569948 0.3529064 +7272 1 1.72 3.54 26.5499993 86.7300034 0.295562 -0.955324 0.3529064 +7273 1 1.72 7.0799999 24.7800007 84.9599992 0.789035 -0.614348 0.0622191 +7274 1 1.72 8.8500004 26.5499993 84.9599992 0.815041 0.579404 0.0622191 +7275 1 1.72 8.8500004 24.7800007 86.7300034 0.919138 0.393935 0.3529064 +7276 1 1.72 7.0799999 26.5499993 86.7300034 -0.495859 -0.868403 0.3529064 +7277 1 1.72 10.6199999 24.7800007 84.9599992 0.0912077 0.995832 0.0622191 +7278 1 1.72 12.3900004 26.5499993 84.9599992 -0.502062 0.864832 0.0622191 +7279 1 1.72 12.3900004 24.7800007 86.7300034 -0.849236 -0.528014 0.3529064 +7280 1 1.72 10.6199999 26.5499993 86.7300034 -0.49546 0.868631 0.3529064 +7281 1 1.72 14.1599999 24.7800007 84.9599992 0.954735 0.297457 0.0622191 +7282 1 1.72 15.9300004 26.5499993 84.9599992 0.700122 0.714023 0.0622191 +7283 1 1.72 15.9300004 24.7800007 86.7300034 0.828515 0.559966 0.3529064 +7284 1 1.72 14.1599999 26.5499993 86.7300034 -0.680411 0.732831 0.3529064 +7285 1 1.72 17.7000008 24.7800007 84.9599992 -0.902274 -0.431164 0.0622191 +7286 1 1.72 19.4699993 26.5499993 84.9599992 -0.110751 -0.993848 0.0622191 +7287 1 1.72 19.4699993 24.7800007 86.7300034 -0.997825 -0.0659212 0.3529064 +7288 1 1.72 17.7000008 26.5499993 86.7300034 -0.775716 0.631082 0.3529064 +7289 1 1.72 21.2399998 24.7800007 84.9599992 0.969548 0.244901 0.0622191 +7290 1 1.72 23.0100002 26.5499993 84.9599992 0.59449 -0.804103 0.0622191 +7291 1 1.72 23.0100002 24.7800007 86.7300034 0.84485 -0.535003 0.3529064 +7292 1 1.72 21.2399998 26.5499993 86.7300034 -0.988923 -0.148432 0.3529064 +7293 1 1.72 24.7800007 24.7800007 84.9599992 0.738501 0.674252 0.0622191 +7294 1 1.72 26.5499993 26.5499993 84.9599992 0.986944 -0.161065 0.0622191 +7295 1 1.72 26.5499993 24.7800007 86.7300034 0.878155 -0.478376 0.3529064 +7296 1 1.72 24.7800007 26.5499993 86.7300034 -0.643802 -0.765193 0.3529064 +7297 1 1.72 0.0 14.1599999 88.5 -0.0246609 -0.999696 0.6123981 +7298 1 1.72 1.77 15.9300004 88.5 0.790916 0.611924 0.6123981 +7299 1 1.72 1.77 14.1599999 90.2699967 -0.115202 -0.993342 0.8177584 +7300 1 1.72 0.0 15.9300004 90.2699967 0.699062 -0.715061 0.8177584 +7301 1 1.72 3.54 14.1599999 88.5 0.927062 -0.374909 0.6123981 +7302 1 1.72 5.31 15.9300004 88.5 -0.545116 0.838361 0.6123981 +7303 1 1.72 5.31 14.1599999 90.2699967 -0.752065 -0.659089 0.8177584 +7304 1 1.72 3.54 15.9300004 90.2699967 -0.167863 -0.98581 0.8177584 +7305 1 1.72 7.0799999 14.1599999 88.5 0.945505 -0.325607 0.6123981 +7306 1 1.72 8.8500004 15.9300004 88.5 0.977361 0.211579 0.6123981 +7307 1 1.72 8.8500004 14.1599999 90.2699967 -0.684967 -0.728574 0.8177584 +7308 1 1.72 7.0799999 15.9300004 90.2699967 0.606717 0.794918 0.8177584 +7309 1 1.72 10.6199999 14.1599999 88.5 -0.471888 -0.881659 0.6123981 +7310 1 1.72 12.3900004 15.9300004 88.5 0.77984 -0.625979 0.6123981 +7311 1 1.72 12.3900004 14.1599999 90.2699967 -0.56107 0.827768 0.8177584 +7312 1 1.72 10.6199999 15.9300004 90.2699967 -0.999858 0.0168652 0.8177584 +7313 1 1.72 14.1599999 14.1599999 88.5 0.996362 -0.0852198 0.6123981 +7314 1 1.72 15.9300004 15.9300004 88.5 -0.497088 0.8677 0.6123981 +7315 1 1.72 15.9300004 14.1599999 90.2699967 0.886892 0.461976 0.8177584 +7316 1 1.72 14.1599999 15.9300004 90.2699967 -0.901658 -0.432449 0.8177584 +7317 1 1.72 17.7000008 14.1599999 88.5 0.999836 -0.0181131 0.6123981 +7318 1 1.72 19.4699993 15.9300004 88.5 0.233596 -0.972334 0.6123981 +7319 1 1.72 19.4699993 14.1599999 90.2699967 0.547461 0.836831 0.8177584 +7320 1 1.72 17.7000008 15.9300004 90.2699967 -0.90072 0.434399 0.8177584 +7321 1 1.72 21.2399998 14.1599999 88.5 -0.227619 -0.97375 0.6123981 +7322 1 1.72 23.0100002 15.9300004 88.5 0.997611 -0.0690778 0.6123981 +7323 1 1.72 23.0100002 14.1599999 90.2699967 0.759299 0.650742 0.8177584 +7324 1 1.72 21.2399998 15.9300004 90.2699967 -0.127055 0.991896 0.8177584 +7325 1 1.72 24.7800007 14.1599999 88.5 -0.31189 -0.950118 0.6123981 +7326 1 1.72 26.5499993 15.9300004 88.5 -0.535362 0.844622 0.6123981 +7327 1 1.72 26.5499993 14.1599999 90.2699967 -0.604466 0.796631 0.8177584 +7328 1 1.72 24.7800007 15.9300004 90.2699967 0.772721 0.634745 0.8177584 +7329 1 1.72 0.0 17.7000008 88.5 -0.444358 -0.895849 0.6123981 +7330 1 1.72 1.77 19.4699993 88.5 -0.702097 0.712081 0.6123981 +7331 1 1.72 1.77 17.7000008 90.2699967 0.823896 -0.566741 0.8177584 +7332 1 1.72 0.0 19.4699993 90.2699967 -0.855453 -0.51788 0.8177584 +7333 1 1.72 3.54 17.7000008 88.5 -0.999819 -0.0190445 0.6123981 +7334 1 1.72 5.31 19.4699993 88.5 0.678474 0.734624 0.6123981 +7335 1 1.72 5.31 17.7000008 90.2699967 -0.0725891 -0.997362 0.8177584 +7336 1 1.72 3.54 19.4699993 90.2699967 0.932619 0.360862 0.8177584 +7337 1 1.72 7.0799999 17.7000008 88.5 -0.997187 -0.0749493 0.6123981 +7338 1 1.72 8.8500004 19.4699993 88.5 0.198699 -0.980061 0.6123981 +7339 1 1.72 8.8500004 17.7000008 90.2699967 0.0111635 -0.999938 0.8177584 +7340 1 1.72 7.0799999 19.4699993 90.2699967 -0.967641 -0.252332 0.8177584 +7341 1 1.72 10.6199999 17.7000008 88.5 0.686412 0.727213 0.6123981 +7342 1 1.72 12.3900004 19.4699993 88.5 0.342127 0.939654 0.6123981 +7343 1 1.72 12.3900004 17.7000008 90.2699967 0.575416 0.817861 0.8177584 +7344 1 1.72 10.6199999 19.4699993 90.2699967 -0.972882 -0.231301 0.8177584 +7345 1 1.72 14.1599999 17.7000008 88.5 -0.572681 -0.819779 0.6123981 +7346 1 1.72 15.9300004 19.4699993 88.5 -0.0140865 0.999901 0.6123981 +7347 1 1.72 15.9300004 17.7000008 90.2699967 -0.936861 -0.349702 0.8177584 +7348 1 1.72 14.1599999 19.4699993 90.2699967 -0.667916 0.744237 0.8177584 +7349 1 1.72 17.7000008 17.7000008 88.5 0.918304 0.395876 0.6123981 +7350 1 1.72 19.4699993 19.4699993 88.5 0.890628 0.454732 0.6123981 +7351 1 1.72 19.4699993 17.7000008 90.2699967 -0.726814 0.686835 0.8177584 +7352 1 1.72 17.7000008 19.4699993 90.2699967 0.773635 -0.633631 0.8177584 +7353 1 1.72 21.2399998 17.7000008 88.5 -0.0889625 -0.996035 0.6123981 +7354 1 1.72 23.0100002 19.4699993 88.5 0.272131 -0.96226 0.6123981 +7355 1 1.72 23.0100002 17.7000008 90.2699967 0.851679 0.524064 0.8177584 +7356 1 1.72 21.2399998 19.4699993 90.2699967 0.582995 0.812476 0.8177584 +7357 1 1.72 24.7800007 17.7000008 88.5 -0.737106 0.675777 0.6123981 +7358 1 1.72 26.5499993 19.4699993 88.5 -0.252896 0.967493 0.6123981 +7359 1 1.72 26.5499993 17.7000008 90.2699967 -0.777732 0.628596 0.8177584 +7360 1 1.72 24.7800007 19.4699993 90.2699967 -0.718837 -0.695178 0.8177584 +7361 1 1.72 0.0 21.2399998 88.5 0.491714 0.870757 0.6123981 +7362 1 1.72 1.77 23.0100002 88.5 0.952461 0.304659 0.6123981 +7363 1 1.72 1.77 21.2399998 90.2699967 0.995469 0.0950876 0.8177584 +7364 1 1.72 0.0 23.0100002 90.2699967 -0.990871 -0.13481 0.8177584 +7365 1 1.72 3.54 21.2399998 88.5 0.757677 -0.65263 0.6123981 +7366 1 1.72 5.31 23.0100002 88.5 0.904318 -0.426859 0.6123981 +7367 1 1.72 5.31 21.2399998 90.2699967 0.999862 0.0166328 0.8177584 +7368 1 1.72 3.54 23.0100002 90.2699967 0.881145 -0.472846 0.8177584 +7369 1 1.72 7.0799999 21.2399998 88.5 -0.2958 0.95525 0.6123981 +7370 1 1.72 8.8500004 23.0100002 88.5 0.943812 0.330482 0.6123981 +7371 1 1.72 8.8500004 21.2399998 90.2699967 0.995311 0.0967292 0.8177584 +7372 1 1.72 7.0799999 23.0100002 90.2699967 0.74448 0.667645 0.8177584 +7373 1 1.72 10.6199999 21.2399998 88.5 -0.21849 -0.975839 0.6123981 +7374 1 1.72 12.3900004 23.0100002 88.5 -0.422067 0.906565 0.6123981 +7375 1 1.72 12.3900004 21.2399998 90.2699967 -0.241443 -0.970415 0.8177584 +7376 1 1.72 10.6199999 23.0100002 90.2699967 -0.927547 0.373706 0.8177584 +7377 1 1.72 14.1599999 21.2399998 88.5 -0.868774 0.495209 0.6123981 +7378 1 1.72 15.9300004 23.0100002 88.5 -0.951215 -0.308528 0.6123981 +7379 1 1.72 15.9300004 21.2399998 90.2699967 -0.402489 -0.915425 0.8177584 +7380 1 1.72 14.1599999 23.0100002 90.2699967 0.990755 -0.135666 0.8177584 +7381 1 1.72 17.7000008 21.2399998 88.5 0.714331 -0.699808 0.6123981 +7382 1 1.72 19.4699993 23.0100002 88.5 -0.99629 -0.086064 0.6123981 +7383 1 1.72 19.4699993 21.2399998 90.2699967 0.125689 -0.99207 0.8177584 +7384 1 1.72 17.7000008 23.0100002 90.2699967 -0.261601 0.965176 0.8177584 +7385 1 1.72 21.2399998 21.2399998 88.5 -0.461799 0.886984 0.6123981 +7386 1 1.72 23.0100002 23.0100002 88.5 -0.330304 -0.943875 0.6123981 +7387 1 1.72 23.0100002 21.2399998 90.2699967 0.878229 0.478241 0.8177584 +7388 1 1.72 21.2399998 23.0100002 90.2699967 0.0148454 -0.99989 0.8177584 +7389 1 1.72 24.7800007 21.2399998 88.5 0.328363 -0.944552 0.6123981 +7390 1 1.72 26.5499993 23.0100002 88.5 -0.779689 0.626167 0.6123981 +7391 1 1.72 26.5499993 21.2399998 90.2699967 0.849962 0.526844 0.8177584 +7392 1 1.72 24.7800007 23.0100002 90.2699967 -0.896835 0.442365 0.8177584 +7393 1 1.72 0.0 24.7800007 88.5 -0.722017 -0.691876 0.6123981 +7394 1 1.72 1.77 26.5499993 88.5 0.913836 0.406083 0.6123981 +7395 1 1.72 1.77 24.7800007 90.2699967 0.524932 0.851144 0.8177584 +7396 1 1.72 0.0 26.5499993 90.2699967 0.0550976 0.998481 0.8177584 +7397 1 1.72 3.54 24.7800007 88.5 0.660772 -0.750587 0.6123981 +7398 1 1.72 5.31 26.5499993 88.5 -0.0838394 0.996479 0.6123981 +7399 1 1.72 5.31 24.7800007 90.2699967 -0.00543521 -0.999985 0.8177584 +7400 1 1.72 3.54 26.5499993 90.2699967 -0.21014 0.977671 0.8177584 +7401 1 1.72 7.0799999 24.7800007 88.5 -0.8526 0.522564 0.6123981 +7402 1 1.72 8.8500004 26.5499993 88.5 -0.504776 0.86325 0.6123981 +7403 1 1.72 8.8500004 24.7800007 90.2699967 0.950668 -0.310211 0.8177584 +7404 1 1.72 7.0799999 26.5499993 90.2699967 0.178442 0.98395 0.8177584 +7405 1 1.72 10.6199999 24.7800007 88.5 0.678587 -0.73452 0.6123981 +7406 1 1.72 12.3900004 26.5499993 88.5 -0.815395 -0.578904 0.6123981 +7407 1 1.72 12.3900004 24.7800007 90.2699967 0.607768 -0.794115 0.8177584 +7408 1 1.72 10.6199999 26.5499993 90.2699967 -0.56705 -0.823683 0.8177584 +7409 1 1.72 14.1599999 24.7800007 88.5 0.815427 -0.57886 0.6123981 +7410 1 1.72 15.9300004 26.5499993 88.5 0.185859 0.982577 0.6123981 +7411 1 1.72 15.9300004 24.7800007 90.2699967 0.993476 -0.11404 0.8177584 +7412 1 1.72 14.1599999 26.5499993 90.2699967 -0.852693 -0.522413 0.8177584 +7413 1 1.72 17.7000008 24.7800007 88.5 0.989865 0.142013 0.6123981 +7414 1 1.72 19.4699993 26.5499993 88.5 0.808801 0.588083 0.6123981 +7415 1 1.72 19.4699993 24.7800007 90.2699967 0.297282 -0.95479 0.8177584 +7416 1 1.72 17.7000008 26.5499993 90.2699967 0.743135 0.669142 0.8177584 +7417 1 1.72 21.2399998 24.7800007 88.5 0.763867 0.645373 0.6123981 +7418 1 1.72 23.0100002 26.5499993 88.5 0.109154 0.994025 0.6123981 +7419 1 1.72 23.0100002 24.7800007 90.2699967 0.935386 0.353628 0.8177584 +7420 1 1.72 21.2399998 26.5499993 90.2699967 0.717344 -0.696719 0.8177584 +7421 1 1.72 24.7800007 24.7800007 88.5 -0.99474 -0.102432 0.6123981 +7422 1 1.72 26.5499993 26.5499993 88.5 0.74773 -0.664003 0.6123981 +7423 1 1.72 26.5499993 24.7800007 90.2699967 0.418067 0.908416 0.8177584 +7424 1 1.72 24.7800007 26.5499993 90.2699967 0.367478 -0.930032 0.8177584 +7425 1 1.72 0.0 14.1599999 92.0400009 0.54352 -0.839396 0.9508352 +7426 1 1.72 1.77 15.9300004 92.0400009 0.56064 0.82806 0.9508352 +7427 1 1.72 1.77 14.1599999 93.8099976 -0.681358 -0.73195 0.9998646 +7428 1 1.72 0.0 15.9300004 93.8099976 -0.764215 -0.644961 0.9998646 +7429 1 1.72 3.54 14.1599999 92.0400009 -0.161248 0.986914 0.9508352 +7430 1 1.72 5.31 15.9300004 92.0400009 -0.19046 -0.981695 0.9508352 +7431 1 1.72 5.31 14.1599999 93.8099976 -0.256974 0.966418 0.9998646 +7432 1 1.72 3.54 15.9300004 93.8099976 -0.999738 0.022888 0.9998646 +7433 1 1.72 7.0799999 14.1599999 92.0400009 -0.611676 -0.791108 0.9508352 +7434 1 1.72 8.8500004 15.9300004 92.0400009 0.779078 -0.626928 0.9508352 +7435 1 1.72 8.8500004 14.1599999 93.8099976 0.638623 0.76952 0.9998646 +7436 1 1.72 7.0799999 15.9300004 93.8099976 0.530092 0.84794 0.9998646 +7437 1 1.72 10.6199999 14.1599999 92.0400009 0.815198 0.579182 0.9508352 +7438 1 1.72 12.3900004 15.9300004 92.0400009 -0.634202 -0.773167 0.9508352 +7439 1 1.72 12.3900004 14.1599999 93.8099976 0.68496 0.728581 0.9998646 +7440 1 1.72 10.6199999 15.9300004 93.8099976 0.577594 -0.816324 0.9998646 +7441 1 1.72 14.1599999 14.1599999 92.0400009 0.998732 0.0503514 0.9508352 +7442 1 1.72 15.9300004 15.9300004 92.0400009 0.967565 0.252622 0.9508352 +7443 1 1.72 15.9300004 14.1599999 93.8099976 0.958245 -0.28595 0.9998646 +7444 1 1.72 14.1599999 15.9300004 93.8099976 0.785628 -0.618699 0.9998646 +7445 1 1.72 17.7000008 14.1599999 92.0400009 -0.663981 -0.747749 0.9508352 +7446 1 1.72 19.4699993 15.9300004 92.0400009 -0.845747 -0.533584 0.9508352 +7447 1 1.72 19.4699993 14.1599999 93.8099976 -0.0125419 0.999921 0.9998646 +7448 1 1.72 17.7000008 15.9300004 93.8099976 0.774267 0.632859 0.9998646 +7449 1 1.72 21.2399998 14.1599999 92.0400009 0.852801 -0.522236 0.9508352 +7450 1 1.72 23.0100002 15.9300004 92.0400009 0.981855 0.189635 0.9508352 +7451 1 1.72 23.0100002 14.1599999 93.8099976 0.910292 0.413966 0.9998646 +7452 1 1.72 21.2399998 15.9300004 93.8099976 0.89673 -0.442579 0.9998646 +7453 1 1.72 24.7800007 14.1599999 92.0400009 -0.40498 0.914326 0.9508352 +7454 1 1.72 26.5499993 15.9300004 92.0400009 0.150924 -0.988545 0.9508352 +7455 1 1.72 26.5499993 14.1599999 93.8099976 0.829418 -0.558629 0.9998646 +7456 1 1.72 24.7800007 15.9300004 93.8099976 -0.675589 -0.737279 0.9998646 +7457 1 1.72 0.0 17.7000008 92.0400009 -0.674773 0.738026 0.9508352 +7458 1 1.72 1.77 19.4699993 92.0400009 -0.489982 0.871732 0.9508352 +7459 1 1.72 1.77 17.7000008 93.8099976 -0.754154 0.656697 0.9998646 +7460 1 1.72 0.0 19.4699993 93.8099976 0.408462 -0.912775 0.9998646 +7461 1 1.72 3.54 17.7000008 92.0400009 -0.982961 0.183812 0.9508352 +7462 1 1.72 5.31 19.4699993 92.0400009 0.278581 0.960413 0.9508352 +7463 1 1.72 5.31 17.7000008 93.8099976 -0.86954 0.493863 0.9998646 +7464 1 1.72 3.54 19.4699993 93.8099976 -0.757885 0.652388 0.9998646 +7465 1 1.72 7.0799999 17.7000008 92.0400009 0.878023 0.478619 0.9508352 +7466 1 1.72 8.8500004 19.4699993 92.0400009 0.531715 0.846924 0.9508352 +7467 1 1.72 8.8500004 17.7000008 93.8099976 0.999072 0.0430685 0.9998646 +7468 1 1.72 7.0799999 19.4699993 93.8099976 -0.38005 0.924966 0.9998646 +7469 1 1.72 10.6199999 17.7000008 92.0400009 -0.202988 0.979181 0.9508352 +7470 1 1.72 12.3900004 19.4699993 92.0400009 0.996325 0.0856516 0.9508352 +7471 1 1.72 12.3900004 17.7000008 93.8099976 -0.134627 -0.990896 0.9998646 +7472 1 1.72 10.6199999 19.4699993 93.8099976 -0.857924 0.513776 0.9998646 +7473 1 1.72 14.1599999 17.7000008 92.0400009 0.955448 -0.29516 0.9508352 +7474 1 1.72 15.9300004 19.4699993 92.0400009 -0.954921 -0.296861 0.9508352 +7475 1 1.72 15.9300004 17.7000008 93.8099976 0.879663 0.475597 0.9998646 +7476 1 1.72 14.1599999 19.4699993 93.8099976 0.657262 0.753662 0.9998646 +7477 1 1.72 17.7000008 17.7000008 92.0400009 0.784111 -0.62062 0.9508352 +7478 1 1.72 19.4699993 19.4699993 92.0400009 0.382123 -0.924111 0.9508352 +7479 1 1.72 19.4699993 17.7000008 93.8099976 0.800999 0.598666 0.9998646 +7480 1 1.72 17.7000008 19.4699993 93.8099976 0.370904 -0.928671 0.9998646 +7481 1 1.72 21.2399998 17.7000008 92.0400009 0.125205 0.992131 0.9508352 +7482 1 1.72 23.0100002 19.4699993 92.0400009 -0.848755 0.528787 0.9508352 +7483 1 1.72 23.0100002 17.7000008 93.8099976 -0.632259 0.774757 0.9998646 +7484 1 1.72 21.2399998 19.4699993 93.8099976 -0.510586 -0.859827 0.9998646 +7485 1 1.72 24.7800007 17.7000008 92.0400009 0.27172 0.962376 0.9508352 +7486 1 1.72 26.5499993 19.4699993 92.0400009 0.739764 -0.672866 0.9508352 +7487 1 1.72 26.5499993 17.7000008 93.8099976 0.549757 0.835325 0.9998646 +7488 1 1.72 24.7800007 19.4699993 93.8099976 0.999757 0.0220605 0.9998646 +7489 1 1.72 0.0 21.2399998 92.0400009 -0.836145 -0.548508 0.9508352 +7490 1 1.72 1.77 23.0100002 92.0400009 0.999394 -0.0348173 0.9508352 +7491 1 1.72 1.77 21.2399998 93.8099976 0.0767681 -0.997049 0.9998646 +7492 1 1.72 0.0 23.0100002 93.8099976 0.999137 0.0415294 0.9998646 +7493 1 1.72 3.54 21.2399998 92.0400009 -0.999726 0.0234262 0.9508352 +7494 1 1.72 5.31 23.0100002 92.0400009 -0.68701 -0.726648 0.9508352 +7495 1 1.72 5.31 21.2399998 93.8099976 -0.897805 -0.440394 0.9998646 +7496 1 1.72 3.54 23.0100002 93.8099976 0.995575 -0.0939748 0.9998646 +7497 1 1.72 7.0799999 21.2399998 92.0400009 -0.169419 -0.985544 0.9508352 +7498 1 1.72 8.8500004 23.0100002 92.0400009 0.68083 0.732441 0.9508352 +7499 1 1.72 8.8500004 21.2399998 93.8099976 0.879996 -0.474982 0.9998646 +7500 1 1.72 7.0799999 23.0100002 93.8099976 -0.660693 -0.750656 0.9998646 +7501 1 1.72 10.6199999 21.2399998 92.0400009 0.828709 0.55968 0.9508352 +7502 1 1.72 12.3900004 23.0100002 92.0400009 -0.788559 0.614959 0.9508352 +7503 1 1.72 12.3900004 21.2399998 93.8099976 0.653632 0.756813 0.9998646 +7504 1 1.72 10.6199999 23.0100002 93.8099976 0.491311 0.870984 0.9998646 +7505 1 1.72 14.1599999 21.2399998 92.0400009 -0.0205317 0.999789 0.9508352 +7506 1 1.72 15.9300004 23.0100002 92.0400009 0.967023 -0.254687 0.9508352 +7507 1 1.72 15.9300004 21.2399998 93.8099976 0.985513 -0.1696 0.9998646 +7508 1 1.72 14.1599999 23.0100002 93.8099976 -0.374146 0.92737 0.9998646 +7509 1 1.72 17.7000008 21.2399998 92.0400009 0.131305 -0.991342 0.9508352 +7510 1 1.72 19.4699993 23.0100002 92.0400009 0.735471 -0.677556 0.9508352 +7511 1 1.72 19.4699993 21.2399998 93.8099976 0.733608 0.679573 0.9998646 +7512 1 1.72 17.7000008 23.0100002 93.8099976 0.0812353 -0.996695 0.9998646 +7513 1 1.72 21.2399998 21.2399998 92.0400009 -0.995493 0.0948322 0.9508352 +7514 1 1.72 23.0100002 23.0100002 92.0400009 0.335871 0.941908 0.9508352 +7515 1 1.72 23.0100002 21.2399998 93.8099976 -0.337147 0.941452 0.9998646 +7516 1 1.72 21.2399998 23.0100002 93.8099976 -0.849803 0.527101 0.9998646 +7517 1 1.72 24.7800007 21.2399998 92.0400009 0.350758 0.936466 0.9508352 +7518 1 1.72 26.5499993 23.0100002 92.0400009 0.18551 -0.982642 0.9508352 +7519 1 1.72 26.5499993 21.2399998 93.8099976 0.852909 -0.522059 0.9998646 +7520 1 1.72 24.7800007 23.0100002 93.8099976 -0.626436 -0.779473 0.9998646 +7521 1 1.72 0.0 24.7800007 92.0400009 -0.822167 -0.569247 0.9508352 +7522 1 1.72 1.77 26.5499993 92.0400009 0.775316 0.631573 0.9508352 +7523 1 1.72 1.77 24.7800007 93.8099976 0.998674 0.0514815 0.9998646 +7524 1 1.72 0.0 26.5499993 93.8099976 -0.997266 -0.0738963 0.9998646 +7525 1 1.72 3.54 24.7800007 92.0400009 0.569917 0.821702 0.9508352 +7526 1 1.72 5.31 26.5499993 92.0400009 0.987663 0.156593 0.9508352 +7527 1 1.72 5.31 24.7800007 93.8099976 0.210537 0.977586 0.9998646 +7528 1 1.72 3.54 26.5499993 93.8099976 -0.499337 -0.866408 0.9998646 +7529 1 1.72 7.0799999 24.7800007 92.0400009 0.851634 0.524136 0.9508352 +7530 1 1.72 8.8500004 26.5499993 92.0400009 0.187787 0.98221 0.9508352 +7531 1 1.72 8.8500004 24.7800007 93.8099976 0.135388 0.990793 0.9998646 +7532 1 1.72 7.0799999 26.5499993 93.8099976 0.561079 -0.827762 0.9998646 +7533 1 1.72 10.6199999 24.7800007 92.0400009 0.839991 0.5426 0.9508352 +7534 1 1.72 12.3900004 26.5499993 92.0400009 0.223665 -0.974666 0.9508352 +7535 1 1.72 12.3900004 24.7800007 93.8099976 0.972933 0.231087 0.9998646 +7536 1 1.72 10.6199999 26.5499993 93.8099976 -0.950008 0.312225 0.9998646 +7537 1 1.72 14.1599999 24.7800007 92.0400009 -0.947443 -0.319926 0.9508352 +7538 1 1.72 15.9300004 26.5499993 92.0400009 -0.206333 -0.978482 0.9508352 +7539 1 1.72 15.9300004 24.7800007 93.8099976 0.92193 -0.387356 0.9998646 +7540 1 1.72 14.1599999 26.5499993 93.8099976 -0.921197 -0.389097 0.9998646 +7541 1 1.72 17.7000008 24.7800007 92.0400009 0.957364 -0.288883 0.9508352 +7542 1 1.72 19.4699993 26.5499993 92.0400009 0.804185 -0.594379 0.9508352 +7543 1 1.72 19.4699993 24.7800007 93.8099976 -0.59431 0.804236 0.9998646 +7544 1 1.72 17.7000008 26.5499993 93.8099976 0.797111 0.603833 0.9998646 +7545 1 1.72 21.2399998 24.7800007 92.0400009 0.421084 0.907022 0.9508352 +7546 1 1.72 23.0100002 26.5499993 92.0400009 -0.550155 0.835062 0.9508352 +7547 1 1.72 23.0100002 24.7800007 93.8099976 -0.913516 -0.406802 0.9998646 +7548 1 1.72 21.2399998 26.5499993 93.8099976 0.910159 -0.414259 0.9998646 +7549 1 1.72 24.7800007 24.7800007 92.0400009 -0.530157 0.847899 0.9508352 +7550 1 1.72 26.5499993 26.5499993 92.0400009 -0.995756 -0.0920293 0.9508352 +7551 1 1.72 26.5499993 24.7800007 93.8099976 0.756358 -0.654158 0.9998646 +7552 1 1.72 24.7800007 26.5499993 93.8099976 0.147534 0.989057 0.9998646 +7553 1 1.72 0.0 14.1599999 95.5800019 -0.665006 0.746838 1.0 +7554 1 1.72 1.77 15.9300004 95.5800019 0.809106 -0.587662 1.0 +7555 1 1.72 1.77 14.1599999 97.3499985 0.692802 -0.721128 1.0 +7556 1 1.72 0.0 15.9300004 97.3499985 -0.923603 -0.383351 1.0 +7557 1 1.72 3.54 14.1599999 95.5800019 0.482055 -0.876141 1.0 +7558 1 1.72 5.31 15.9300004 95.5800019 -0.796218 -0.605009 1.0 +7559 1 1.72 5.31 14.1599999 97.3499985 -0.247815 0.968807 1.0 +7560 1 1.72 3.54 15.9300004 97.3499985 0.127839 0.991795 1.0 +7561 1 1.72 7.0799999 14.1599999 95.5800019 -0.298338 -0.95446 1.0 +7562 1 1.72 8.8500004 15.9300004 95.5800019 0.761113 0.648619 1.0 +7563 1 1.72 8.8500004 14.1599999 97.3499985 0.937634 -0.347623 1.0 +7564 1 1.72 7.0799999 15.9300004 97.3499985 0.264289 0.964444 1.0 +7565 1 1.72 10.6199999 14.1599999 95.5800019 0.851258 -0.524747 1.0 +7566 1 1.72 12.3900004 15.9300004 95.5800019 0.0944879 -0.995526 1.0 +7567 1 1.72 12.3900004 14.1599999 97.3499985 0.515867 -0.856668 1.0 +7568 1 1.72 10.6199999 15.9300004 97.3499985 -0.438115 -0.898919 1.0 +7569 1 1.72 14.1599999 14.1599999 95.5800019 0.998803 0.0489194 1.0 +7570 1 1.72 15.9300004 15.9300004 95.5800019 0.991046 0.13352 1.0 +7571 1 1.72 15.9300004 14.1599999 97.3499985 -0.0648131 -0.997897 1.0 +7572 1 1.72 14.1599999 15.9300004 97.3499985 -0.740711 -0.671824 1.0 +7573 1 1.72 17.7000008 14.1599999 95.5800019 0.551882 -0.833922 1.0 +7574 1 1.72 19.4699993 15.9300004 95.5800019 0.489205 -0.872169 1.0 +7575 1 1.72 19.4699993 14.1599999 97.3499985 -0.18181 -0.983334 1.0 +7576 1 1.72 17.7000008 15.9300004 97.3499985 0.641243 -0.767337 1.0 +7577 1 1.72 21.2399998 14.1599999 95.5800019 0.66581 -0.746121 1.0 +7578 1 1.72 23.0100002 15.9300004 95.5800019 0.997858 -0.06542 1.0 +7579 1 1.72 23.0100002 14.1599999 97.3499985 -0.124468 -0.992224 1.0 +7580 1 1.72 21.2399998 15.9300004 97.3499985 0.975173 0.221443 1.0 +7581 1 1.72 24.7800007 14.1599999 95.5800019 0.999194 0.0401463 1.0 +7582 1 1.72 26.5499993 15.9300004 95.5800019 0.759971 0.649957 1.0 +7583 1 1.72 26.5499993 14.1599999 97.3499985 0.72002 0.693953 1.0 +7584 1 1.72 24.7800007 15.9300004 97.3499985 0.663458 0.748214 1.0 +7585 1 1.72 0.0 17.7000008 95.5800019 -0.605875 0.79556 1.0 +7586 1 1.72 1.77 19.4699993 95.5800019 0.214841 -0.976649 1.0 +7587 1 1.72 1.77 17.7000008 97.3499985 0.771975 0.635653 1.0 +7588 1 1.72 0.0 19.4699993 97.3499985 0.608465 -0.793581 1.0 +7589 1 1.72 3.54 17.7000008 95.5800019 0.945228 -0.326412 1.0 +7590 1 1.72 5.31 19.4699993 95.5800019 -0.974022 -0.226452 1.0 +7591 1 1.72 5.31 17.7000008 97.3499985 0.744467 -0.667659 1.0 +7592 1 1.72 3.54 19.4699993 97.3499985 -0.427445 -0.904041 1.0 +7593 1 1.72 7.0799999 17.7000008 95.5800019 0.836238 0.548367 1.0 +7594 1 1.72 8.8500004 19.4699993 95.5800019 0.945234 0.326393 1.0 +7595 1 1.72 8.8500004 17.7000008 97.3499985 -0.709222 0.704985 1.0 +7596 1 1.72 7.0799999 19.4699993 97.3499985 0.988556 -0.150852 1.0 +7597 1 1.72 10.6199999 17.7000008 95.5800019 0.962003 0.27304 1.0 +7598 1 1.72 12.3900004 19.4699993 95.5800019 0.632917 -0.77422 1.0 +7599 1 1.72 12.3900004 17.7000008 97.3499985 0.849077 0.528269 1.0 +7600 1 1.72 10.6199999 19.4699993 97.3499985 0.645128 -0.764075 1.0 +7601 1 1.72 14.1599999 17.7000008 95.5800019 -0.990418 0.1381 1.0 +7602 1 1.72 15.9300004 19.4699993 95.5800019 0.916608 -0.399788 1.0 +7603 1 1.72 15.9300004 17.7000008 97.3499985 0.787421 -0.616416 1.0 +7604 1 1.72 14.1599999 19.4699993 97.3499985 -0.990944 0.134277 1.0 +7605 1 1.72 17.7000008 17.7000008 95.5800019 0.732753 -0.680495 1.0 +7606 1 1.72 19.4699993 19.4699993 95.5800019 0.945485 -0.325665 1.0 +7607 1 1.72 19.4699993 17.7000008 97.3499985 0.99995 0.0100488 1.0 +7608 1 1.72 17.7000008 19.4699993 97.3499985 0.788838 0.614601 1.0 +7609 1 1.72 21.2399998 17.7000008 95.5800019 -0.444905 0.895578 1.0 +7610 1 1.72 23.0100002 19.4699993 95.5800019 0.992065 0.125728 1.0 +7611 1 1.72 23.0100002 17.7000008 97.3499985 0.832045 -0.554708 1.0 +7612 1 1.72 21.2399998 19.4699993 97.3499985 0.985162 -0.171627 1.0 +7613 1 1.72 24.7800007 17.7000008 95.5800019 -0.402 -0.91564 1.0 +7614 1 1.72 26.5499993 19.4699993 95.5800019 -0.0499137 -0.998754 1.0 +7615 1 1.72 26.5499993 17.7000008 97.3499985 0.0327699 0.999463 1.0 +7616 1 1.72 24.7800007 19.4699993 97.3499985 -0.629882 -0.776691 1.0 +7617 1 1.72 0.0 21.2399998 95.5800019 0.670866 -0.741578 1.0 +7618 1 1.72 1.77 23.0100002 95.5800019 -0.544609 0.83869 1.0 +7619 1 1.72 1.77 21.2399998 97.3499985 -0.893655 -0.448754 1.0 +7620 1 1.72 0.0 23.0100002 97.3499985 0.861757 -0.507322 1.0 +7621 1 1.72 3.54 21.2399998 95.5800019 -0.643527 0.765423 1.0 +7622 1 1.72 5.31 23.0100002 95.5800019 0.572624 -0.819818 1.0 +7623 1 1.72 5.31 21.2399998 97.3499985 0.523185 -0.852219 1.0 +7624 1 1.72 3.54 23.0100002 97.3499985 0.0537154 -0.998556 1.0 +7625 1 1.72 7.0799999 21.2399998 95.5800019 0.665988 0.745963 1.0 +7626 1 1.72 8.8500004 23.0100002 95.5800019 -0.439705 0.898142 1.0 +7627 1 1.72 8.8500004 21.2399998 97.3499985 0.675737 0.737143 1.0 +7628 1 1.72 7.0799999 23.0100002 97.3499985 -0.201572 0.979474 1.0 +7629 1 1.72 10.6199999 21.2399998 95.5800019 -0.892867 -0.450321 1.0 +7630 1 1.72 12.3900004 23.0100002 95.5800019 -0.506673 -0.862138 1.0 +7631 1 1.72 12.3900004 21.2399998 97.3499985 -0.946024 0.324097 1.0 +7632 1 1.72 10.6199999 23.0100002 97.3499985 0.906318 0.422597 1.0 +7633 1 1.72 14.1599999 21.2399998 95.5800019 0.765057 -0.643963 1.0 +7634 1 1.72 15.9300004 23.0100002 95.5800019 -0.608357 0.793664 1.0 +7635 1 1.72 15.9300004 21.2399998 97.3499985 0.765975 0.64287 1.0 +7636 1 1.72 14.1599999 23.0100002 97.3499985 0.00933545 0.999956 1.0 +7637 1 1.72 17.7000008 21.2399998 95.5800019 0.984736 0.174054 1.0 +7638 1 1.72 19.4699993 23.0100002 95.5800019 0.940895 -0.338699 1.0 +7639 1 1.72 19.4699993 21.2399998 97.3499985 0.86165 -0.507502 1.0 +7640 1 1.72 17.7000008 23.0100002 97.3499985 -0.876053 0.482216 1.0 +7641 1 1.72 21.2399998 21.2399998 95.5800019 -0.492639 -0.870234 1.0 +7642 1 1.72 23.0100002 23.0100002 95.5800019 0.840547 0.541738 1.0 +7643 1 1.72 23.0100002 21.2399998 97.3499985 -0.909339 0.416055 1.0 +7644 1 1.72 21.2399998 23.0100002 97.3499985 0.593004 -0.8052 1.0 +7645 1 1.72 24.7800007 21.2399998 95.5800019 0.634651 0.772799 1.0 +7646 1 1.72 26.5499993 23.0100002 95.5800019 -0.681041 0.732245 1.0 +7647 1 1.72 26.5499993 21.2399998 97.3499985 0.660676 0.750671 1.0 +7648 1 1.72 24.7800007 23.0100002 97.3499985 -0.982181 0.18794 1.0 +7649 1 1.72 0.0 24.7800007 95.5800019 0.863674 -0.504051 1.0 +7650 1 1.72 1.77 26.5499993 95.5800019 0.929522 -0.368768 1.0 +7651 1 1.72 1.77 24.7800007 97.3499985 0.958515 -0.285042 1.0 +7652 1 1.72 0.0 26.5499993 97.3499985 0.626965 0.779048 1.0 +7653 1 1.72 3.54 24.7800007 95.5800019 -0.315379 0.948966 1.0 +7654 1 1.72 5.31 26.5499993 95.5800019 -0.414121 -0.910222 1.0 +7655 1 1.72 5.31 24.7800007 97.3499985 -0.857974 0.513694 1.0 +7656 1 1.72 3.54 26.5499993 97.3499985 0.642573 0.766225 1.0 +7657 1 1.72 7.0799999 24.7800007 95.5800019 0.771993 0.635631 1.0 +7658 1 1.72 8.8500004 26.5499993 95.5800019 -0.861434 0.507869 1.0 +7659 1 1.72 8.8500004 24.7800007 97.3499985 -0.683643 0.729817 1.0 +7660 1 1.72 7.0799999 26.5499993 97.3499985 -0.281866 0.959454 1.0 +7661 1 1.72 10.6199999 24.7800007 95.5800019 -0.93135 -0.364124 1.0 +7662 1 1.72 12.3900004 26.5499993 95.5800019 -0.480964 0.87674 1.0 +7663 1 1.72 12.3900004 24.7800007 97.3499985 -0.434018 0.900904 1.0 +7664 1 1.72 10.6199999 26.5499993 97.3499985 0.749863 -0.661593 1.0 +7665 1 1.72 14.1599999 24.7800007 95.5800019 0.603805 -0.797132 1.0 +7666 1 1.72 15.9300004 26.5499993 95.5800019 -0.910161 -0.414254 1.0 +7667 1 1.72 15.9300004 24.7800007 97.3499985 0.933647 -0.358194 1.0 +7668 1 1.72 14.1599999 26.5499993 97.3499985 0.586524 0.809932 1.0 +7669 1 1.72 17.7000008 24.7800007 95.5800019 -0.994473 -0.104989 1.0 +7670 1 1.72 19.4699993 26.5499993 95.5800019 0.816024 -0.578019 1.0 +7671 1 1.72 19.4699993 24.7800007 97.3499985 -0.248395 0.968659 1.0 +7672 1 1.72 17.7000008 26.5499993 97.3499985 -0.851779 0.523902 1.0 +7673 1 1.72 21.2399998 24.7800007 95.5800019 0.33512 -0.942175 1.0 +7674 1 1.72 23.0100002 26.5499993 95.5800019 0.967319 -0.253563 1.0 +7675 1 1.72 23.0100002 24.7800007 97.3499985 0.568616 0.822603 1.0 +7676 1 1.72 21.2399998 26.5499993 97.3499985 -0.989246 -0.146261 1.0 +7677 1 1.72 24.7800007 24.7800007 95.5800019 -0.515552 -0.856858 1.0 +7678 1 1.72 26.5499993 26.5499993 95.5800019 0.359802 -0.933029 1.0 +7679 1 1.72 26.5499993 24.7800007 97.3499985 0.122087 0.992519 1.0 +7680 1 1.72 24.7800007 26.5499993 97.3499985 0.948266 0.317476 1.0 +7681 1 1.72 0.0 14.1599999 99.1200028 -0.0957775 -0.995403 1.0 +7682 1 1.72 1.77 15.9300004 99.1200028 0.811706 -0.584066 1.0 +7683 1 1.72 1.77 14.1599999 100.8899994 -0.336287 0.94176 1.0 +7684 1 1.72 0.0 15.9300004 100.8899994 -0.309953 -0.950752 1.0 +7685 1 1.72 3.54 14.1599999 99.1200028 -0.577122 -0.816658 1.0 +7686 1 1.72 5.31 15.9300004 99.1200028 -0.923779 0.382927 1.0 +7687 1 1.72 5.31 14.1599999 100.8899994 0.981176 -0.193118 1.0 +7688 1 1.72 3.54 15.9300004 100.8899994 0.920536 0.390658 1.0 +7689 1 1.72 7.0799999 14.1599999 99.1200028 0.95175 0.306876 1.0 +7690 1 1.72 8.8500004 15.9300004 99.1200028 0.947237 0.320535 1.0 +7691 1 1.72 8.8500004 14.1599999 100.8899994 0.184989 0.982741 1.0 +7692 1 1.72 7.0799999 15.9300004 100.8899994 -0.71109 0.703101 1.0 +7693 1 1.72 10.6199999 14.1599999 99.1200028 -0.94206 -0.335444 1.0 +7694 1 1.72 12.3900004 15.9300004 99.1200028 -0.862398 -0.506231 1.0 +7695 1 1.72 12.3900004 14.1599999 100.8899994 -0.704298 0.709905 1.0 +7696 1 1.72 10.6199999 15.9300004 100.8899994 0.663923 0.747801 1.0 +7697 1 1.72 14.1599999 14.1599999 99.1200028 0.742838 -0.669471 1.0 +7698 1 1.72 15.9300004 15.9300004 99.1200028 -0.594731 -0.803925 1.0 +7699 1 1.72 15.9300004 14.1599999 100.8899994 -0.457786 0.889063 1.0 +7700 1 1.72 14.1599999 15.9300004 100.8899994 -0.925244 -0.379372 1.0 +7701 1 1.72 17.7000008 14.1599999 99.1200028 0.831863 -0.554982 1.0 +7702 1 1.72 19.4699993 15.9300004 99.1200028 0.551025 0.834489 1.0 +7703 1 1.72 19.4699993 14.1599999 100.8899994 -0.946635 -0.322307 1.0 +7704 1 1.72 17.7000008 15.9300004 100.8899994 0.682709 -0.730691 1.0 +7705 1 1.72 21.2399998 14.1599999 99.1200028 0.999953 -0.00970487 1.0 +7706 1 1.72 23.0100002 15.9300004 99.1200028 -0.854577 -0.519325 1.0 +7707 1 1.72 23.0100002 14.1599999 100.8899994 0.603128 -0.797645 1.0 +7708 1 1.72 21.2399998 15.9300004 100.8899994 -0.608551 0.793515 1.0 +7709 1 1.72 24.7800007 14.1599999 99.1200028 0.099631 -0.995024 1.0 +7710 1 1.72 26.5499993 15.9300004 99.1200028 0.651863 0.758337 1.0 +7711 1 1.72 26.5499993 14.1599999 100.8899994 -0.852916 -0.522048 1.0 +7712 1 1.72 24.7800007 15.9300004 100.8899994 -0.723631 0.690187 1.0 +7713 1 1.72 0.0 17.7000008 99.1200028 0.524246 -0.851567 1.0 +7714 1 1.72 1.77 19.4699993 99.1200028 0.663206 0.748437 1.0 +7715 1 1.72 1.77 17.7000008 100.8899994 -0.78621 0.61796 1.0 +7716 1 1.72 0.0 19.4699993 100.8899994 0.989224 -0.146413 1.0 +7717 1 1.72 3.54 17.7000008 99.1200028 0.841443 -0.540346 1.0 +7718 1 1.72 5.31 19.4699993 99.1200028 0.609713 0.792622 1.0 +7719 1 1.72 5.31 17.7000008 100.8899994 0.929941 0.367709 1.0 +7720 1 1.72 3.54 19.4699993 100.8899994 0.908531 -0.417817 1.0 +7721 1 1.72 7.0799999 17.7000008 99.1200028 0.949676 -0.313234 1.0 +7722 1 1.72 8.8500004 19.4699993 99.1200028 -0.804524 0.593919 1.0 +7723 1 1.72 8.8500004 17.7000008 100.8899994 0.609752 -0.792592 1.0 +7724 1 1.72 7.0799999 19.4699993 100.8899994 -0.152461 0.988309 1.0 +7725 1 1.72 10.6199999 17.7000008 99.1200028 -0.998265 -0.0588744 1.0 +7726 1 1.72 12.3900004 19.4699993 99.1200028 -0.901615 -0.432539 1.0 +7727 1 1.72 12.3900004 17.7000008 100.8899994 -0.653334 -0.75707 1.0 +7728 1 1.72 10.6199999 19.4699993 100.8899994 -0.719882 -0.694096 1.0 +7729 1 1.72 14.1599999 17.7000008 99.1200028 -0.595691 0.803214 1.0 +7730 1 1.72 15.9300004 19.4699993 99.1200028 -0.978072 0.208267 1.0 +7731 1 1.72 15.9300004 17.7000008 100.8899994 -0.450174 -0.892941 1.0 +7732 1 1.72 14.1599999 19.4699993 100.8899994 0.7817 -0.623654 1.0 +7733 1 1.72 17.7000008 17.7000008 99.1200028 0.988782 -0.149364 1.0 +7734 1 1.72 19.4699993 19.4699993 99.1200028 -0.851692 -0.524043 1.0 +7735 1 1.72 19.4699993 17.7000008 100.8899994 -0.999946 0.0104333 1.0 +7736 1 1.72 17.7000008 19.4699993 100.8899994 0.510942 -0.859615 1.0 +7737 1 1.72 21.2399998 17.7000008 99.1200028 -0.483169 -0.875527 1.0 +7738 1 1.72 23.0100002 19.4699993 99.1200028 -0.899616 0.436682 1.0 +7739 1 1.72 23.0100002 17.7000008 100.8899994 0.66007 -0.751204 1.0 +7740 1 1.72 21.2399998 19.4699993 100.8899994 -0.352216 -0.935919 1.0 +7741 1 1.72 24.7800007 17.7000008 99.1200028 0.901703 -0.432356 1.0 +7742 1 1.72 26.5499993 19.4699993 99.1200028 -0.829201 -0.55895 1.0 +7743 1 1.72 26.5499993 17.7000008 100.8899994 0.867833 0.496856 1.0 +7744 1 1.72 24.7800007 19.4699993 100.8899994 0.583584 -0.812052 1.0 +7745 1 1.72 0.0 21.2399998 99.1200028 0.702777 0.71141 1.0 +7746 1 1.72 1.77 23.0100002 99.1200028 -0.866447 0.499269 1.0 +7747 1 1.72 1.77 21.2399998 100.8899994 0.963 -0.2695 1.0 +7748 1 1.72 0.0 23.0100002 100.8899994 -0.0966114 -0.995322 1.0 +7749 1 1.72 3.54 21.2399998 99.1200028 0.589259 -0.807944 1.0 +7750 1 1.72 5.31 23.0100002 99.1200028 0.984551 0.175098 1.0 +7751 1 1.72 5.31 21.2399998 100.8899994 -0.910449 -0.413621 1.0 +7752 1 1.72 3.54 23.0100002 100.8899994 0.741845 0.670571 1.0 +7753 1 1.72 7.0799999 21.2399998 99.1200028 -0.98907 -0.147449 1.0 +7754 1 1.72 8.8500004 23.0100002 99.1200028 -0.975402 0.220433 1.0 +7755 1 1.72 8.8500004 21.2399998 100.8899994 -0.990825 -0.135149 1.0 +7756 1 1.72 7.0799999 23.0100002 100.8899994 0.377269 -0.926104 1.0 +7757 1 1.72 10.6199999 21.2399998 99.1200028 -0.348817 0.937191 1.0 +7758 1 1.72 12.3900004 23.0100002 99.1200028 0.724858 -0.688898 1.0 +7759 1 1.72 12.3900004 21.2399998 100.8899994 -0.217413 0.97608 1.0 +7760 1 1.72 10.6199999 23.0100002 100.8899994 -0.670852 -0.741591 1.0 +7761 1 1.72 14.1599999 21.2399998 99.1200028 -0.56715 0.823614 1.0 +7762 1 1.72 15.9300004 23.0100002 99.1200028 -0.13955 -0.990215 1.0 +7763 1 1.72 15.9300004 21.2399998 100.8899994 0.468046 0.883704 1.0 +7764 1 1.72 14.1599999 23.0100002 100.8899994 -0.789191 0.614148 1.0 +7765 1 1.72 17.7000008 21.2399998 99.1200028 -0.275527 -0.961293 1.0 +7766 1 1.72 19.4699993 23.0100002 99.1200028 -0.849396 -0.527757 1.0 +7767 1 1.72 19.4699993 21.2399998 100.8899994 0.966551 0.256475 1.0 +7768 1 1.72 17.7000008 23.0100002 100.8899994 -0.630763 -0.775975 1.0 +7769 1 1.72 21.2399998 21.2399998 99.1200028 -0.381513 0.924363 1.0 +7770 1 1.72 23.0100002 23.0100002 99.1200028 0.985063 -0.172192 1.0 +7771 1 1.72 23.0100002 21.2399998 100.8899994 -0.27955 0.960131 1.0 +7772 1 1.72 21.2399998 23.0100002 100.8899994 0.794596 -0.607138 1.0 +7773 1 1.72 24.7800007 21.2399998 99.1200028 -0.634059 0.773284 1.0 +7774 1 1.72 26.5499993 23.0100002 99.1200028 -0.950907 -0.309478 1.0 +7775 1 1.72 26.5499993 21.2399998 100.8899994 0.728927 0.684591 1.0 +7776 1 1.72 24.7800007 23.0100002 100.8899994 -0.952419 -0.304792 1.0 +7777 1 1.72 0.0 24.7800007 99.1200028 -0.43233 -0.901716 1.0 +7778 1 1.72 1.77 26.5499993 99.1200028 0.997814 -0.066086 1.0 +7779 1 1.72 1.77 24.7800007 100.8899994 0.820411 -0.571774 1.0 +7780 1 1.72 0.0 26.5499993 100.8899994 0.771688 0.636002 1.0 +7781 1 1.72 3.54 24.7800007 99.1200028 -0.999512 0.0312212 1.0 +7782 1 1.72 5.31 26.5499993 99.1200028 0.830231 0.557419 1.0 +7783 1 1.72 5.31 24.7800007 100.8899994 -0.515911 -0.856642 1.0 +7784 1 1.72 3.54 26.5499993 100.8899994 -0.590436 0.807085 1.0 +7785 1 1.72 7.0799999 24.7800007 99.1200028 -0.728978 -0.684537 1.0 +7786 1 1.72 8.8500004 26.5499993 99.1200028 0.584767 -0.811202 1.0 +7787 1 1.72 8.8500004 24.7800007 100.8899994 -0.997406 -0.0719798 1.0 +7788 1 1.72 7.0799999 26.5499993 100.8899994 0.424111 0.90561 1.0 +7789 1 1.72 10.6199999 24.7800007 99.1200028 -0.92167 -0.387975 1.0 +7790 1 1.72 12.3900004 26.5499993 99.1200028 0.91551 0.402294 1.0 +7791 1 1.72 12.3900004 24.7800007 100.8899994 -0.442849 -0.896596 1.0 +7792 1 1.72 10.6199999 26.5499993 100.8899994 0.989553 -0.14417 1.0 +7793 1 1.72 14.1599999 24.7800007 99.1200028 0.0895189 -0.995985 1.0 +7794 1 1.72 15.9300004 26.5499993 99.1200028 0.396149 -0.918186 1.0 +7795 1 1.72 15.9300004 24.7800007 100.8899994 -0.177128 0.984188 1.0 +7796 1 1.72 14.1599999 26.5499993 100.8899994 -0.938494 -0.345297 1.0 +7797 1 1.72 17.7000008 24.7800007 99.1200028 0.793939 -0.607998 1.0 +7798 1 1.72 19.4699993 26.5499993 99.1200028 -0.94869 0.316207 1.0 +7799 1 1.72 19.4699993 24.7800007 100.8899994 -0.354765 -0.934956 1.0 +7800 1 1.72 17.7000008 26.5499993 100.8899994 0.879892 -0.475173 1.0 +7801 1 1.72 21.2399998 24.7800007 99.1200028 0.71091 -0.703283 1.0 +7802 1 1.72 23.0100002 26.5499993 99.1200028 -0.184636 -0.982807 1.0 +7803 1 1.72 23.0100002 24.7800007 100.8899994 0.746098 -0.665836 1.0 +7804 1 1.72 21.2399998 26.5499993 100.8899994 -0.971137 0.238522 1.0 +7805 1 1.72 24.7800007 24.7800007 99.1200028 -0.0449819 -0.998988 1.0 +7806 1 1.72 26.5499993 26.5499993 99.1200028 -0.724165 0.689627 1.0 +7807 1 1.72 26.5499993 24.7800007 100.8899994 0.548458 0.836178 1.0 +7808 1 1.72 24.7800007 26.5499993 100.8899994 -0.806404 -0.591365 1.0 +7809 1 1.72 0.0 14.1599999 102.6600037 0.718014 -0.696029 1.0 +7810 1 1.72 1.77 15.9300004 102.6600037 0.794305 -0.60752 1.0 +7811 1 1.72 1.77 14.1599999 104.4300003 0.165479 -0.986213 1.0 +7812 1 1.72 0.0 15.9300004 104.4300003 -0.886945 0.461875 1.0 +7813 1 1.72 3.54 14.1599999 102.6600037 0.993145 0.116892 1.0 +7814 1 1.72 5.31 15.9300004 102.6600037 0.713946 -0.700201 1.0 +7815 1 1.72 5.31 14.1599999 104.4300003 -0.53919 -0.842184 1.0 +7816 1 1.72 3.54 15.9300004 104.4300003 0.787143 0.61677 1.0 +7817 1 1.72 7.0799999 14.1599999 102.6600037 0.706052 0.70816 1.0 +7818 1 1.72 8.8500004 15.9300004 102.6600037 -0.237864 -0.971299 1.0 +7819 1 1.72 8.8500004 14.1599999 104.4300003 -0.826909 -0.562335 1.0 +7820 1 1.72 7.0799999 15.9300004 104.4300003 0.99781 0.0661425 1.0 +7821 1 1.72 10.6199999 14.1599999 102.6600037 -0.610356 -0.792127 1.0 +7822 1 1.72 12.3900004 15.9300004 102.6600037 -0.987539 -0.157375 1.0 +7823 1 1.72 12.3900004 14.1599999 104.4300003 0.991128 -0.132914 1.0 +7824 1 1.72 10.6199999 15.9300004 104.4300003 -0.750294 -0.661104 1.0 +7825 1 1.72 14.1599999 14.1599999 102.6600037 -0.774968 0.632001 1.0 +7826 1 1.72 15.9300004 15.9300004 102.6600037 0.980467 -0.196685 1.0 +7827 1 1.72 15.9300004 14.1599999 104.4300003 0.176406 0.984317 1.0 +7828 1 1.72 14.1599999 15.9300004 104.4300003 0.758483 0.651693 1.0 +7829 1 1.72 17.7000008 14.1599999 102.6600037 0.625002 -0.780623 1.0 +7830 1 1.72 19.4699993 15.9300004 102.6600037 -0.972812 0.231598 1.0 +7831 1 1.72 19.4699993 14.1599999 104.4300003 -0.701726 0.712447 1.0 +7832 1 1.72 17.7000008 15.9300004 104.4300003 -0.922879 0.38509 1.0 +7833 1 1.72 21.2399998 14.1599999 102.6600037 0.744751 0.667342 1.0 +7834 1 1.72 23.0100002 15.9300004 102.6600037 -0.0190369 0.999819 1.0 +7835 1 1.72 23.0100002 14.1599999 104.4300003 0.13808 0.990421 1.0 +7836 1 1.72 21.2399998 15.9300004 104.4300003 0.897872 0.440257 1.0 +7837 1 1.72 24.7800007 14.1599999 102.6600037 -0.718894 -0.695119 1.0 +7838 1 1.72 26.5499993 15.9300004 102.6600037 -0.947431 -0.319961 1.0 +7839 1 1.72 26.5499993 14.1599999 104.4300003 0.721178 -0.69275 1.0 +7840 1 1.72 24.7800007 15.9300004 104.4300003 0.981006 -0.193977 1.0 +7841 1 1.72 0.0 17.7000008 102.6600037 0.846051 0.533102 1.0 +7842 1 1.72 1.77 19.4699993 102.6600037 0.731512 0.681829 1.0 +7843 1 1.72 1.77 17.7000008 104.4300003 0.994268 -0.106913 1.0 +7844 1 1.72 0.0 19.4699993 104.4300003 0.320925 0.947105 1.0 +7845 1 1.72 3.54 17.7000008 102.6600037 -0.78876 0.614701 1.0 +7846 1 1.72 5.31 19.4699993 102.6600037 -0.710711 0.703484 1.0 +7847 1 1.72 5.31 17.7000008 104.4300003 -0.841895 -0.539641 1.0 +7848 1 1.72 3.54 19.4699993 104.4300003 0.985732 0.16832 1.0 +7849 1 1.72 7.0799999 17.7000008 102.6600037 -0.136398 0.990654 1.0 +7850 1 1.72 8.8500004 19.4699993 102.6600037 -0.637513 0.770439 1.0 +7851 1 1.72 8.8500004 17.7000008 104.4300003 0.203727 -0.979028 1.0 +7852 1 1.72 7.0799999 19.4699993 104.4300003 -0.998625 0.052421 1.0 +7853 1 1.72 10.6199999 17.7000008 102.6600037 0.996195 0.0871547 1.0 +7854 1 1.72 12.3900004 19.4699993 102.6600037 0.788239 -0.615369 1.0 +7855 1 1.72 12.3900004 17.7000008 104.4300003 0.728306 0.685252 1.0 +7856 1 1.72 10.6199999 19.4699993 104.4300003 -0.712032 -0.702147 1.0 +7857 1 1.72 14.1599999 17.7000008 102.6600037 0.743198 -0.669072 1.0 +7858 1 1.72 15.9300004 19.4699993 102.6600037 -0.787311 -0.616557 1.0 +7859 1 1.72 15.9300004 17.7000008 104.4300003 -0.988099 -0.153818 1.0 +7860 1 1.72 14.1599999 19.4699993 104.4300003 0.484532 -0.874773 1.0 +7861 1 1.72 17.7000008 17.7000008 102.6600037 -0.71714 0.696929 1.0 +7862 1 1.72 19.4699993 19.4699993 102.6600037 -0.564687 -0.825305 1.0 +7863 1 1.72 19.4699993 17.7000008 104.4300003 -0.995283 -0.097017 1.0 +7864 1 1.72 17.7000008 19.4699993 104.4300003 -0.314585 0.949229 1.0 +7865 1 1.72 21.2399998 17.7000008 102.6600037 -0.555112 0.831776 1.0 +7866 1 1.72 23.0100002 19.4699993 102.6600037 -0.77956 0.626328 1.0 +7867 1 1.72 23.0100002 17.7000008 104.4300003 -0.805024 -0.593243 1.0 +7868 1 1.72 21.2399998 19.4699993 104.4300003 -0.916152 0.400831 1.0 +7869 1 1.72 24.7800007 17.7000008 102.6600037 -0.901623 -0.432523 1.0 +7870 1 1.72 26.5499993 19.4699993 102.6600037 0.788648 -0.614846 1.0 +7871 1 1.72 26.5499993 17.7000008 104.4300003 -0.81442 0.580276 1.0 +7872 1 1.72 24.7800007 19.4699993 104.4300003 0.366785 0.930306 1.0 +7873 1 1.72 0.0 21.2399998 102.6600037 0.286258 0.958152 1.0 +7874 1 1.72 1.77 23.0100002 102.6600037 -0.397 0.917819 1.0 +7875 1 1.72 1.77 21.2399998 104.4300003 0.470152 0.882585 1.0 +7876 1 1.72 0.0 23.0100002 104.4300003 0.75033 0.661063 1.0 +7877 1 1.72 3.54 21.2399998 102.6600037 -0.974879 0.222736 1.0 +7878 1 1.72 5.31 23.0100002 102.6600037 0.182825 0.983145 1.0 +7879 1 1.72 5.31 21.2399998 104.4300003 -0.10059 -0.994928 1.0 +7880 1 1.72 3.54 23.0100002 104.4300003 0.996002 -0.0893334 1.0 +7881 1 1.72 7.0799999 21.2399998 102.6600037 -0.0181344 0.999836 1.0 +7882 1 1.72 8.8500004 23.0100002 102.6600037 0.914625 -0.404304 1.0 +7883 1 1.72 8.8500004 21.2399998 104.4300003 -0.631742 -0.775178 1.0 +7884 1 1.72 7.0799999 23.0100002 104.4300003 -0.864958 0.501844 1.0 +7885 1 1.72 10.6199999 21.2399998 102.6600037 0.937049 0.349198 1.0 +7886 1 1.72 12.3900004 23.0100002 102.6600037 -0.620684 -0.784061 1.0 +7887 1 1.72 12.3900004 21.2399998 104.4300003 -0.291821 -0.956473 1.0 +7888 1 1.72 10.6199999 23.0100002 104.4300003 -0.920865 0.389883 1.0 +7889 1 1.72 14.1599999 21.2399998 102.6600037 0.324832 0.945772 1.0 +7890 1 1.72 15.9300004 23.0100002 102.6600037 -0.998544 -0.0539416 1.0 +7891 1 1.72 15.9300004 21.2399998 104.4300003 0.999017 0.044321 1.0 +7892 1 1.72 14.1599999 23.0100002 104.4300003 -0.999064 -0.0432479 1.0 +7893 1 1.72 17.7000008 21.2399998 102.6600037 -0.383492 0.923544 1.0 +7894 1 1.72 19.4699993 23.0100002 102.6600037 0.447994 -0.894037 1.0 +7895 1 1.72 19.4699993 21.2399998 104.4300003 0.622643 0.782506 1.0 +7896 1 1.72 17.7000008 23.0100002 104.4300003 0.997361 -0.0726039 1.0 +7897 1 1.72 21.2399998 21.2399998 102.6600037 -0.969731 -0.244176 1.0 +7898 1 1.72 23.0100002 23.0100002 102.6600037 0.769501 -0.638646 1.0 +7899 1 1.72 23.0100002 21.2399998 104.4300003 0.713758 0.700393 1.0 +7900 1 1.72 21.2399998 23.0100002 104.4300003 0.98485 -0.173407 1.0 +7901 1 1.72 24.7800007 21.2399998 102.6600037 -0.783911 0.620874 1.0 +7902 1 1.72 26.5499993 23.0100002 102.6600037 -0.130812 0.991407 1.0 +7903 1 1.72 26.5499993 21.2399998 104.4300003 -0.551451 0.834208 1.0 +7904 1 1.72 24.7800007 23.0100002 104.4300003 -0.73884 0.673881 1.0 +7905 1 1.72 0.0 24.7800007 102.6600037 0.855567 -0.517693 1.0 +7906 1 1.72 1.77 26.5499993 102.6600037 -0.885878 -0.463917 1.0 +7907 1 1.72 1.77 24.7800007 104.4300003 -0.996933 0.0782605 1.0 +7908 1 1.72 0.0 26.5499993 104.4300003 0.324929 -0.945738 1.0 +7909 1 1.72 3.54 24.7800007 102.6600037 0.542386 0.840129 1.0 +7910 1 1.72 5.31 26.5499993 102.6600037 0.771751 0.635925 1.0 +7911 1 1.72 5.31 24.7800007 104.4300003 0.200902 -0.979611 1.0 +7912 1 1.72 3.54 26.5499993 104.4300003 -0.771677 -0.636015 1.0 +7913 1 1.72 7.0799999 24.7800007 102.6600037 -0.983876 0.178852 1.0 +7914 1 1.72 8.8500004 26.5499993 102.6600037 0.672745 -0.739874 1.0 +7915 1 1.72 8.8500004 24.7800007 104.4300003 -0.665648 -0.746266 1.0 +7916 1 1.72 7.0799999 26.5499993 104.4300003 0.967365 -0.253386 1.0 +7917 1 1.72 10.6199999 24.7800007 102.6600037 0.450059 -0.892999 1.0 +7918 1 1.72 12.3900004 26.5499993 102.6600037 0.597121 -0.802151 1.0 +7919 1 1.72 12.3900004 24.7800007 104.4300003 0.99982 0.018953 1.0 +7920 1 1.72 10.6199999 26.5499993 104.4300003 -0.829992 -0.557776 1.0 +7921 1 1.72 14.1599999 24.7800007 102.6600037 0.956629 -0.291309 1.0 +7922 1 1.72 15.9300004 26.5499993 102.6600037 -0.0692161 -0.997602 1.0 +7923 1 1.72 15.9300004 24.7800007 104.4300003 -0.81727 -0.576256 1.0 +7924 1 1.72 14.1599999 26.5499993 104.4300003 0.919649 -0.39274 1.0 +7925 1 1.72 17.7000008 24.7800007 102.6600037 0.182673 0.983174 1.0 +7926 1 1.72 19.4699993 26.5499993 102.6600037 0.636883 0.770961 1.0 +7927 1 1.72 19.4699993 24.7800007 104.4300003 0.363522 0.931586 1.0 +7928 1 1.72 17.7000008 26.5499993 104.4300003 0.999343 0.0362372 1.0 +7929 1 1.72 21.2399998 24.7800007 102.6600037 0.568441 0.822724 1.0 +7930 1 1.72 23.0100002 26.5499993 102.6600037 0.205118 -0.978737 1.0 +7931 1 1.72 23.0100002 24.7800007 104.4300003 0.835399 0.549644 1.0 +7932 1 1.72 21.2399998 26.5499993 104.4300003 -0.684916 0.728622 1.0 +7933 1 1.72 24.7800007 24.7800007 102.6600037 0.422102 0.906548 1.0 +7934 1 1.72 26.5499993 26.5499993 102.6600037 -0.350216 0.936669 1.0 +7935 1 1.72 26.5499993 24.7800007 104.4300003 0.0798424 0.996808 1.0 +7936 1 1.72 24.7800007 26.5499993 104.4300003 -0.846981 -0.531623 1.0 +7937 1 1.72 0.0 14.1599999 106.199997 0.0235058 0.999724 1.0 +7938 1 1.72 1.77 15.9300004 106.199997 -0.67301 -0.739633 1.0 +7939 1 1.72 1.77 14.1599999 107.9700012 -0.234939 -0.97201 1.0 +7940 1 1.72 0.0 15.9300004 107.9700012 0.997354 0.0727014 1.0 +7941 1 1.72 3.54 14.1599999 106.199997 -0.999858 0.0168258 1.0 +7942 1 1.72 5.31 15.9300004 106.199997 -0.342273 0.9396 1.0 +7943 1 1.72 5.31 14.1599999 107.9700012 -0.342701 0.939444 1.0 +7944 1 1.72 3.54 15.9300004 107.9700012 0.612049 -0.790819 1.0 +7945 1 1.72 7.0799999 14.1599999 106.199997 0.337695 -0.941256 1.0 +7946 1 1.72 8.8500004 15.9300004 106.199997 0.138222 0.990401 1.0 +7947 1 1.72 8.8500004 14.1599999 107.9700012 -0.998189 0.0601586 1.0 +7948 1 1.72 7.0799999 15.9300004 107.9700012 -0.120382 0.992728 1.0 +7949 1 1.72 10.6199999 14.1599999 106.199997 -0.269411 -0.963025 1.0 +7950 1 1.72 12.3900004 15.9300004 106.199997 0.0430112 0.999075 1.0 +7951 1 1.72 12.3900004 14.1599999 107.9700012 0.840409 -0.541953 1.0 +7952 1 1.72 10.6199999 15.9300004 107.9700012 -0.609328 -0.792918 1.0 +7953 1 1.72 14.1599999 14.1599999 106.199997 -0.883102 -0.469181 1.0 +7954 1 1.72 15.9300004 15.9300004 106.199997 -0.858513 -0.512791 1.0 +7955 1 1.72 15.9300004 14.1599999 107.9700012 0.973326 -0.229426 1.0 +7956 1 1.72 14.1599999 15.9300004 107.9700012 -0.180664 -0.983545 1.0 +7957 1 1.72 17.7000008 14.1599999 106.199997 -0.138677 -0.990338 1.0 +7958 1 1.72 19.4699993 15.9300004 106.199997 0.983145 0.182825 1.0 +7959 1 1.72 19.4699993 14.1599999 107.9700012 0.211545 -0.977368 1.0 +7960 1 1.72 17.7000008 15.9300004 107.9700012 -0.502641 0.864495 1.0 +7961 1 1.72 21.2399998 14.1599999 106.199997 0.224991 0.974361 1.0 +7962 1 1.72 23.0100002 15.9300004 106.199997 0.93058 0.366088 1.0 +7963 1 1.72 23.0100002 14.1599999 107.9700012 0.307645 -0.951501 1.0 +7964 1 1.72 21.2399998 15.9300004 107.9700012 -0.749363 0.662159 1.0 +7965 1 1.72 24.7800007 14.1599999 106.199997 0.893633 -0.448799 1.0 +7966 1 1.72 26.5499993 15.9300004 106.199997 -0.560742 -0.827991 1.0 +7967 1 1.72 26.5499993 14.1599999 107.9700012 0.794338 0.607476 1.0 +7968 1 1.72 24.7800007 15.9300004 107.9700012 -0.295801 -0.955249 1.0 +7969 1 1.72 0.0 17.7000008 106.199997 -0.59001 -0.807396 1.0 +7970 1 1.72 1.77 19.4699993 106.199997 -0.875886 -0.482518 1.0 +7971 1 1.72 1.77 17.7000008 107.9700012 -0.832003 0.554771 1.0 +7972 1 1.72 0.0 19.4699993 107.9700012 -0.406725 -0.913551 1.0 +7973 1 1.72 3.54 17.7000008 106.199997 0.721355 -0.692566 1.0 +7974 1 1.72 5.31 19.4699993 106.199997 0.0305422 0.999533 1.0 +7975 1 1.72 5.31 17.7000008 107.9700012 -0.0795884 -0.996828 1.0 +7976 1 1.72 3.54 19.4699993 107.9700012 0.0140007 -0.999902 1.0 +7977 1 1.72 7.0799999 17.7000008 106.199997 -0.94189 0.335921 1.0 +7978 1 1.72 8.8500004 19.4699993 106.199997 0.524096 0.851659 1.0 +7979 1 1.72 8.8500004 17.7000008 107.9700012 0.855792 0.51732 1.0 +7980 1 1.72 7.0799999 19.4699993 107.9700012 0.746658 -0.665208 1.0 +7981 1 1.72 10.6199999 17.7000008 106.199997 0.784228 -0.620473 1.0 +7982 1 1.72 12.3900004 19.4699993 106.199997 -0.907146 0.420817 1.0 +7983 1 1.72 12.3900004 17.7000008 107.9700012 -0.954707 0.297549 1.0 +7984 1 1.72 10.6199999 19.4699993 107.9700012 0.226297 -0.974058 1.0 +7985 1 1.72 14.1599999 17.7000008 106.199997 -0.91913 0.393955 1.0 +7986 1 1.72 15.9300004 19.4699993 106.199997 -0.998259 -0.0589852 1.0 +7987 1 1.72 15.9300004 17.7000008 107.9700012 -0.749372 -0.662149 1.0 +7988 1 1.72 14.1599999 19.4699993 107.9700012 -0.586105 -0.810235 1.0 +7989 1 1.72 17.7000008 17.7000008 106.199997 0.818487 -0.574525 1.0 +7990 1 1.72 19.4699993 19.4699993 106.199997 0.131836 0.991272 1.0 +7991 1 1.72 19.4699993 17.7000008 107.9700012 -0.456832 0.889553 1.0 +7992 1 1.72 17.7000008 19.4699993 107.9700012 -0.194103 -0.980981 1.0 +7993 1 1.72 21.2399998 17.7000008 106.199997 -0.0928376 0.995681 1.0 +7994 1 1.72 23.0100002 19.4699993 106.199997 -0.796606 -0.604498 1.0 +7995 1 1.72 23.0100002 17.7000008 107.9700012 -0.951358 -0.308086 1.0 +7996 1 1.72 21.2399998 19.4699993 107.9700012 0.794297 -0.60753 1.0 +7997 1 1.72 24.7800007 17.7000008 106.199997 0.970816 -0.239828 1.0 +7998 1 1.72 26.5499993 19.4699993 106.199997 -0.697499 -0.716586 1.0 +7999 1 1.72 26.5499993 17.7000008 107.9700012 0.630414 -0.776259 1.0 +8000 1 1.72 24.7800007 19.4699993 107.9700012 -0.414321 0.910131 1.0 +8001 1 1.72 0.0 21.2399998 106.199997 0.367314 0.930097 1.0 +8002 1 1.72 1.77 23.0100002 106.199997 0.929855 -0.367926 1.0 +8003 1 1.72 1.77 21.2399998 107.9700012 0.399758 -0.916621 1.0 +8004 1 1.72 0.0 23.0100002 107.9700012 0.950228 -0.311555 1.0 +8005 1 1.72 3.54 21.2399998 106.199997 0.542333 0.840164 1.0 +8006 1 1.72 5.31 23.0100002 106.199997 0.645661 -0.763624 1.0 +8007 1 1.72 5.31 21.2399998 107.9700012 0.685041 -0.728504 1.0 +8008 1 1.72 3.54 23.0100002 107.9700012 0.856821 0.515613 1.0 +8009 1 1.72 7.0799999 21.2399998 106.199997 -0.759673 0.650305 1.0 +8010 1 1.72 8.8500004 23.0100002 106.199997 -0.980243 0.197796 1.0 +8011 1 1.72 8.8500004 21.2399998 107.9700012 0.194678 -0.980867 1.0 +8012 1 1.72 7.0799999 23.0100002 107.9700012 0.593868 0.804563 1.0 +8013 1 1.72 10.6199999 21.2399998 106.199997 0.1006 -0.994927 1.0 +8014 1 1.72 12.3900004 23.0100002 106.199997 -0.730997 0.68238 1.0 +8015 1 1.72 12.3900004 21.2399998 107.9700012 0.996593 0.0824784 1.0 +8016 1 1.72 10.6199999 23.0100002 107.9700012 -0.289244 0.957255 1.0 +8017 1 1.72 14.1599999 21.2399998 106.199997 0.978422 -0.206617 1.0 +8018 1 1.72 15.9300004 23.0100002 106.199997 0.858283 0.513177 1.0 +8019 1 1.72 15.9300004 21.2399998 107.9700012 -0.817296 -0.576219 1.0 +8020 1 1.72 14.1599999 23.0100002 107.9700012 0.254198 0.967152 1.0 +8021 1 1.72 17.7000008 21.2399998 106.199997 -0.525053 -0.851069 1.0 +8022 1 1.72 19.4699993 23.0100002 106.199997 0.880454 -0.474132 1.0 +8023 1 1.72 19.4699993 21.2399998 107.9700012 -0.95547 -0.295088 1.0 +8024 1 1.72 17.7000008 23.0100002 107.9700012 -0.995394 0.0958685 1.0 +8025 1 1.72 21.2399998 21.2399998 106.199997 0.294309 -0.95571 1.0 +8026 1 1.72 23.0100002 23.0100002 106.199997 0.999976 0.00686959 1.0 +8027 1 1.72 23.0100002 21.2399998 107.9700012 0.964871 -0.262724 1.0 +8028 1 1.72 21.2399998 23.0100002 107.9700012 -0.93148 0.363794 1.0 +8029 1 1.72 24.7800007 21.2399998 106.199997 0.538866 0.842391 1.0 +8030 1 1.72 26.5499993 23.0100002 106.199997 -0.806887 0.590706 1.0 +8031 1 1.72 26.5499993 21.2399998 107.9700012 0.790491 0.612474 1.0 +8032 1 1.72 24.7800007 23.0100002 107.9700012 0.664179 0.747574 1.0 +8033 1 1.72 0.0 24.7800007 106.199997 0.999409 -0.0343895 1.0 +8034 1 1.72 1.77 26.5499993 106.199997 -0.762063 -0.647503 1.0 +8035 1 1.72 1.77 24.7800007 107.9700012 0.549304 -0.835623 1.0 +8036 1 1.72 0.0 26.5499993 107.9700012 0.496016 -0.868313 1.0 +8037 1 1.72 3.54 24.7800007 106.199997 -0.583021 0.812457 1.0 +8038 1 1.72 5.31 26.5499993 106.199997 0.922664 0.385605 1.0 +8039 1 1.72 5.31 24.7800007 107.9700012 0.751487 -0.659747 1.0 +8040 1 1.72 3.54 26.5499993 107.9700012 0.131462 -0.991321 1.0 +8041 1 1.72 7.0799999 24.7800007 106.199997 -0.489419 -0.872049 1.0 +8042 1 1.72 8.8500004 26.5499993 106.199997 0.342979 0.939343 1.0 +8043 1 1.72 8.8500004 24.7800007 107.9700012 -0.462518 0.88661 1.0 +8044 1 1.72 7.0799999 26.5499993 107.9700012 -0.999893 0.0146542 1.0 +8045 1 1.72 10.6199999 24.7800007 106.199997 -0.522321 -0.852749 1.0 +8046 1 1.72 12.3900004 26.5499993 106.199997 0.596773 0.80241 1.0 +8047 1 1.72 12.3900004 24.7800007 107.9700012 0.560211 -0.82835 1.0 +8048 1 1.72 10.6199999 26.5499993 107.9700012 0.792026 -0.610487 1.0 +8049 1 1.72 14.1599999 24.7800007 106.199997 0.362454 -0.932002 1.0 +8050 1 1.72 15.9300004 26.5499993 106.199997 0.964069 0.265653 1.0 +8051 1 1.72 15.9300004 24.7800007 107.9700012 0.939727 0.341925 1.0 +8052 1 1.72 14.1599999 26.5499993 107.9700012 0.874482 -0.485058 1.0 +8053 1 1.72 17.7000008 24.7800007 106.199997 -0.965123 -0.261795 1.0 +8054 1 1.72 19.4699993 26.5499993 106.199997 -0.998076 0.0620007 1.0 +8055 1 1.72 19.4699993 24.7800007 107.9700012 -0.3918 -0.920051 1.0 +8056 1 1.72 17.7000008 26.5499993 107.9700012 0.638895 -0.769294 1.0 +8057 1 1.72 21.2399998 24.7800007 106.199997 -0.253481 -0.96734 1.0 +8058 1 1.72 23.0100002 26.5499993 106.199997 0.99744 -0.0715016 1.0 +8059 1 1.72 23.0100002 24.7800007 107.9700012 -0.772384 -0.635156 1.0 +8060 1 1.72 21.2399998 26.5499993 107.9700012 0.998532 -0.0541581 1.0 +8061 1 1.72 24.7800007 24.7800007 106.199997 -0.996903 0.0786397 1.0 +8062 1 1.72 26.5499993 26.5499993 106.199997 -0.228243 -0.973604 1.0 +8063 1 1.72 26.5499993 24.7800007 107.9700012 0.937775 0.347244 1.0 +8064 1 1.72 24.7800007 26.5499993 107.9700012 0.763881 0.645357 1.0 +8065 1 1.72 0.0 14.1599999 109.7399979 -0.999997 0.00262531 1.0 +8066 1 1.72 1.77 15.9300004 109.7399979 -0.997339 -0.0729054 1.0 +8067 1 1.72 1.77 14.1599999 111.5100022 0.248085 0.968738 1.0 +8068 1 1.72 0.0 15.9300004 111.5100022 0.942297 -0.334778 1.0 +8069 1 1.72 3.54 14.1599999 109.7399979 -0.99867 0.0515492 1.0 +8070 1 1.72 5.31 15.9300004 109.7399979 -0.0854102 0.996346 1.0 +8071 1 1.72 5.31 14.1599999 111.5100022 -0.677764 -0.73528 1.0 +8072 1 1.72 3.54 15.9300004 111.5100022 -0.774162 0.632988 1.0 +8073 1 1.72 7.0799999 14.1599999 109.7399979 -0.880261 0.47449 1.0 +8074 1 1.72 8.8500004 15.9300004 109.7399979 0.583813 -0.811888 1.0 +8075 1 1.72 8.8500004 14.1599999 111.5100022 -0.85971 -0.510782 1.0 +8076 1 1.72 7.0799999 15.9300004 111.5100022 0.340665 0.940185 1.0 +8077 1 1.72 10.6199999 14.1599999 109.7399979 -0.955138 0.296162 1.0 +8078 1 1.72 12.3900004 15.9300004 109.7399979 -0.866352 0.499434 1.0 +8079 1 1.72 12.3900004 14.1599999 111.5100022 -0.995464 -0.0951342 1.0 +8080 1 1.72 10.6199999 15.9300004 111.5100022 0.471157 -0.882049 1.0 +8081 1 1.72 14.1599999 14.1599999 109.7399979 -0.700944 -0.713216 1.0 +8082 1 1.72 15.9300004 15.9300004 109.7399979 0.982164 -0.188026 1.0 +8083 1 1.72 15.9300004 14.1599999 111.5100022 0.661595 -0.749862 1.0 +8084 1 1.72 14.1599999 15.9300004 111.5100022 0.894789 0.446489 1.0 +8085 1 1.72 17.7000008 14.1599999 109.7399979 -0.59649 0.802621 1.0 +8086 1 1.72 19.4699993 15.9300004 109.7399979 0.945592 -0.325356 1.0 +8087 1 1.72 19.4699993 14.1599999 111.5100022 0.237079 -0.97149 1.0 +8088 1 1.72 17.7000008 15.9300004 111.5100022 0.541095 -0.840961 1.0 +8089 1 1.72 21.2399998 14.1599999 109.7399979 0.547786 0.836619 1.0 +8090 1 1.72 23.0100002 15.9300004 109.7399979 -0.810246 0.58609 1.0 +8091 1 1.72 23.0100002 14.1599999 111.5100022 -0.0396045 -0.999215 1.0 +8092 1 1.72 21.2399998 15.9300004 111.5100022 0.999244 0.0388725 1.0 +8093 1 1.72 24.7800007 14.1599999 109.7399979 -0.995393 -0.0958841 1.0 +8094 1 1.72 26.5499993 15.9300004 109.7399979 0.707666 -0.706547 1.0 +8095 1 1.72 26.5499993 14.1599999 111.5100022 -0.857797 0.513989 1.0 +8096 1 1.72 24.7800007 15.9300004 111.5100022 0.688346 0.725383 1.0 +8097 1 1.72 0.0 17.7000008 109.7399979 0.453695 0.891157 1.0 +8098 1 1.72 1.77 19.4699993 109.7399979 -0.869991 0.493068 1.0 +8099 1 1.72 1.77 17.7000008 111.5100022 -0.828945 0.55933 1.0 +8100 1 1.72 0.0 19.4699993 111.5100022 -0.578312 -0.815815 1.0 +8101 1 1.72 3.54 17.7000008 109.7399979 -0.474111 -0.880465 1.0 +8102 1 1.72 5.31 19.4699993 109.7399979 -0.953145 0.302515 1.0 +8103 1 1.72 5.31 17.7000008 111.5100022 -0.662482 0.749078 1.0 +8104 1 1.72 3.54 19.4699993 111.5100022 -0.673709 0.738997 1.0 +8105 1 1.72 7.0799999 17.7000008 109.7399979 0.703708 0.71049 1.0 +8106 1 1.72 8.8500004 19.4699993 109.7399979 -0.962777 0.270298 1.0 +8107 1 1.72 8.8500004 17.7000008 111.5100022 -0.409325 0.912389 1.0 +8108 1 1.72 7.0799999 19.4699993 111.5100022 0.992278 0.12403 1.0 +8109 1 1.72 10.6199999 17.7000008 109.7399979 -0.256869 -0.966446 1.0 +8110 1 1.72 12.3900004 19.4699993 109.7399979 -0.81811 0.575062 1.0 +8111 1 1.72 12.3900004 17.7000008 111.5100022 0.944442 -0.328678 1.0 +8112 1 1.72 10.6199999 19.4699993 111.5100022 -0.790776 0.612106 1.0 +8113 1 1.72 14.1599999 17.7000008 109.7399979 0.99885 0.047945 1.0 +8114 1 1.72 15.9300004 19.4699993 109.7399979 -0.75767 0.652638 1.0 +8115 1 1.72 15.9300004 17.7000008 111.5100022 0.104479 -0.994527 1.0 +8116 1 1.72 14.1599999 19.4699993 111.5100022 -0.366155 -0.930554 1.0 +8117 1 1.72 17.7000008 17.7000008 109.7399979 -0.100712 0.994916 1.0 +8118 1 1.72 19.4699993 19.4699993 109.7399979 0.20119 -0.979552 1.0 +8119 1 1.72 19.4699993 17.7000008 111.5100022 0.7043 -0.709902 1.0 +8120 1 1.72 17.7000008 19.4699993 111.5100022 0.995221 -0.0976515 1.0 +8121 1 1.72 21.2399998 17.7000008 109.7399979 0.0913868 0.995815 1.0 +8122 1 1.72 23.0100002 19.4699993 109.7399979 -0.783334 0.6216 1.0 +8123 1 1.72 23.0100002 17.7000008 111.5100022 0.762993 0.646407 1.0 +8124 1 1.72 21.2399998 19.4699993 111.5100022 0.969106 -0.246644 1.0 +8125 1 1.72 24.7800007 17.7000008 109.7399979 -0.99318 -0.116594 1.0 +8126 1 1.72 26.5499993 19.4699993 109.7399979 0.751321 -0.659937 1.0 +8127 1 1.72 26.5499993 17.7000008 111.5100022 -0.41311 -0.910681 1.0 +8128 1 1.72 24.7800007 19.4699993 111.5100022 -0.231533 0.972827 1.0 +8129 1 1.72 0.0 21.2399998 109.7399979 -0.638342 -0.769753 1.0 +8130 1 1.72 1.77 23.0100002 109.7399979 -0.358386 -0.933574 1.0 +8131 1 1.72 1.77 21.2399998 111.5100022 0.0433983 -0.999058 1.0 +8132 1 1.72 0.0 23.0100002 111.5100022 -0.986115 -0.166067 1.0 +8133 1 1.72 3.54 21.2399998 109.7399979 0.996583 0.082601 1.0 +8134 1 1.72 5.31 23.0100002 109.7399979 -0.865815 0.500364 1.0 +8135 1 1.72 5.31 21.2399998 111.5100022 0.446465 0.894801 1.0 +8136 1 1.72 3.54 23.0100002 111.5100022 0.701589 -0.712582 1.0 +8137 1 1.72 7.0799999 21.2399998 109.7399979 0.994388 0.105798 1.0 +8138 1 1.72 8.8500004 23.0100002 109.7399979 0.779675 0.626184 1.0 +8139 1 1.72 8.8500004 21.2399998 111.5100022 -0.913378 0.407112 1.0 +8140 1 1.72 7.0799999 23.0100002 111.5100022 -0.974435 0.22467 1.0 +8141 1 1.72 10.6199999 21.2399998 109.7399979 0.0180628 0.999837 1.0 +8142 1 1.72 12.3900004 23.0100002 109.7399979 -0.393018 0.919531 1.0 +8143 1 1.72 12.3900004 21.2399998 111.5100022 0.171283 -0.985222 1.0 +8144 1 1.72 10.6199999 23.0100002 111.5100022 0.853928 0.520391 1.0 +8145 1 1.72 14.1599999 21.2399998 109.7399979 -0.893534 -0.448996 1.0 +8146 1 1.72 15.9300004 23.0100002 109.7399979 0.783901 0.620886 1.0 +8147 1 1.72 15.9300004 21.2399998 111.5100022 -0.636441 0.771326 1.0 +8148 1 1.72 14.1599999 23.0100002 111.5100022 -0.62653 0.779398 1.0 +8149 1 1.72 17.7000008 21.2399998 109.7399979 -0.426717 -0.904385 1.0 +8150 1 1.72 19.4699993 23.0100002 109.7399979 0.150477 -0.988614 1.0 +8151 1 1.72 19.4699993 21.2399998 111.5100022 0.993032 -0.117843 1.0 +8152 1 1.72 17.7000008 23.0100002 111.5100022 -0.858474 -0.512857 1.0 +8153 1 1.72 21.2399998 21.2399998 109.7399979 0.671527 -0.74098 1.0 +8154 1 1.72 23.0100002 23.0100002 109.7399979 0.724398 -0.689382 1.0 +8155 1 1.72 23.0100002 21.2399998 111.5100022 -0.533734 -0.845652 1.0 +8156 1 1.72 21.2399998 23.0100002 111.5100022 0.446337 0.894865 1.0 +8157 1 1.72 24.7800007 21.2399998 109.7399979 0.100506 -0.994936 1.0 +8158 1 1.72 26.5499993 23.0100002 109.7399979 0.663547 -0.748135 1.0 +8159 1 1.72 26.5499993 21.2399998 111.5100022 -0.838999 0.544134 1.0 +8160 1 1.72 24.7800007 23.0100002 111.5100022 -0.412355 -0.911023 1.0 +8161 1 1.72 0.0 24.7800007 109.7399979 -0.768577 -0.639757 1.0 +8162 1 1.72 1.77 26.5499993 109.7399979 0.876973 -0.480539 1.0 +8163 1 1.72 1.77 24.7800007 111.5100022 0.940988 0.33844 1.0 +8164 1 1.72 0.0 26.5499993 111.5100022 -0.739484 -0.673174 1.0 +8165 1 1.72 3.54 24.7800007 109.7399979 0.463964 0.885854 1.0 +8166 1 1.72 5.31 26.5499993 109.7399979 0.834599 0.550857 1.0 +8167 1 1.72 5.31 24.7800007 111.5100022 -0.414423 -0.910084 1.0 +8168 1 1.72 3.54 26.5499993 111.5100022 0.209991 0.977703 1.0 +8169 1 1.72 7.0799999 24.7800007 109.7399979 -0.200071 -0.979781 1.0 +8170 1 1.72 8.8500004 26.5499993 109.7399979 -0.593916 0.804527 1.0 +8171 1 1.72 8.8500004 24.7800007 111.5100022 -0.976341 -0.216238 1.0 +8172 1 1.72 7.0799999 26.5499993 111.5100022 0.892014 -0.452008 1.0 +8173 1 1.72 10.6199999 24.7800007 109.7399979 0.262541 0.964921 1.0 +8174 1 1.72 12.3900004 26.5499993 109.7399979 -0.541535 -0.840678 1.0 +8175 1 1.72 12.3900004 24.7800007 111.5100022 0.789328 0.613972 1.0 +8176 1 1.72 10.6199999 26.5499993 111.5100022 0.500046 0.865999 1.0 +8177 1 1.72 14.1599999 24.7800007 109.7399979 0.353277 0.935519 1.0 +8178 1 1.72 15.9300004 26.5499993 109.7399979 0.604788 0.796387 1.0 +8179 1 1.72 15.9300004 24.7800007 111.5100022 0.840508 -0.541799 1.0 +8180 1 1.72 14.1599999 26.5499993 111.5100022 0.296351 -0.955079 1.0 +8181 1 1.72 17.7000008 24.7800007 109.7399979 -0.957237 0.289304 1.0 +8182 1 1.72 19.4699993 26.5499993 109.7399979 0.344119 -0.938926 1.0 +8183 1 1.72 19.4699993 24.7800007 111.5100022 -0.989355 -0.145521 1.0 +8184 1 1.72 17.7000008 26.5499993 111.5100022 0.787109 0.616813 1.0 +8185 1 1.72 21.2399998 24.7800007 109.7399979 -0.321766 0.946819 1.0 +8186 1 1.72 23.0100002 26.5499993 109.7399979 -0.647284 -0.762249 1.0 +8187 1 1.72 23.0100002 24.7800007 111.5100022 -0.999094 0.0425548 1.0 +8188 1 1.72 21.2399998 26.5499993 111.5100022 -0.33438 0.942438 1.0 +8189 1 1.72 24.7800007 24.7800007 109.7399979 0.960667 -0.277704 1.0 +8190 1 1.72 26.5499993 26.5499993 109.7399979 0.822147 -0.569276 1.0 +8191 1 1.72 26.5499993 24.7800007 111.5100022 0.915832 -0.401561 1.0 +8192 1 1.72 24.7800007 26.5499993 111.5100022 -0.746316 -0.665592 1.0 diff --git a/examples/SPIN/read_restart/in.spin.read_data b/examples/SPIN/read_restart/in.spin.read_data new file mode 100644 index 0000000000000000000000000000000000000000..80de0366616956ab9b505be148d19fadf3a0bdae --- /dev/null +++ b/examples/SPIN/read_restart/in.spin.read_data @@ -0,0 +1,45 @@ +units metal +dimension 3 +boundary p p p + +atom_style spin + +# necessary for the serial algorithm (sametag) +atom_modify map array +read_data Norm_randXY_8x8x32.data + +mass 1 58.93 + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.0446928 0.003496 1.4885 + +neighbor 1.0 bin +neigh_modify every 1 check no delay 0 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# define outputs and computes + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo 10 +thermo_style custom step time v_magnorm v_emag v_tmag temp etotal +thermo_modify format float %20.15g + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 10 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 100 diff --git a/examples/SPIN/read_restart/in.spin.restart b/examples/SPIN/read_restart/in.spin.restart new file mode 100644 index 0000000000000000000000000000000000000000..a1198ccf9351e07e8ae6784a49edece5dcbeab39 --- /dev/null +++ b/examples/SPIN/read_restart/in.spin.restart @@ -0,0 +1,49 @@ +# start a spin-lattice simulation from a data file +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +read_restart restart_hcp_cobalt.equil + +# setting mass, mag. moments, and interactions + +mass 1 58.93 + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.3593 1.135028015e-05 1.064568567 + +neighbor 1.0 bin +neigh_modify every 1 check no delay 0 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# define outputs + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo 10 +thermo_style custom step time v_magnorm v_emag v_tmag temp etotal +thermo_modify format float %20.15g + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 100 diff --git a/examples/SPIN/read_restart/in.spin.write_restart b/examples/SPIN/read_restart/in.spin.write_restart new file mode 100644 index 0000000000000000000000000000000000000000..84fea24611540156a0fdd9d1863d1b745aae67ef --- /dev/null +++ b/examples/SPIN/read_restart/in.spin.write_restart @@ -0,0 +1,55 @@ +# fcc cobalt in a 3d periodic box + +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice hcp 2.5071 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +create_atoms 1 box + +# setting mass, mag. moments, and interactions for cobalt + +mass 1 58.93 + +set group all spin/random 31 1.72 + +pair_style spin/exchange 4.0 +pair_coeff * * exchange 4.0 0.3593 1.135028015e-05 1.064568567 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 100.0 0.01 21 + +fix 3 all nve/spin lattice no +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp etotal +thermo 100 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 1000 +write_restart restart_hcp_cobalt.equil + diff --git a/examples/SPIN/read_restart/log.11May18.spin.read_data.g++.1 b/examples/SPIN/read_restart/log.11May18.spin.read_data.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..405be50bd987b18e6353ae8bd00bc6788c208247 --- /dev/null +++ b/examples/SPIN/read_restart/log.11May18.spin.read_data.g++.1 @@ -0,0 +1,112 @@ +LAMMPS (11 May 2018) +units metal +dimension 3 +boundary p p p + +atom_style spin + +# necessary for the serial algorithm (sametag) +atom_modify map array +read_data Norm_randXY_8x8x32.data + orthogonal box = (0 0 0) to (28.32 28.32 113.28) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 8192 atoms + +mass 1 58.93 + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.0446928 0.003496 1.4885 + +neighbor 1.0 bin +neigh_modify every 1 check no delay 0 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# define outputs and computes + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo 10 +thermo_style custom step time v_magnorm v_emag v_tmag temp etotal +thermo_modify format float %20.15g + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 10 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 100 +Neighbor list info ... + update every 1 steps, delay 0 steps, check no + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 7.49954 + ghost atom cutoff = 7.49954 + binsize = 3.74977, bins = 8 8 31 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 18.68 | 18.68 | 18.68 Mbytes +Step Time v_magnorm v_emag v_tmag Temp TotEng + 0 0 0.980832325249102 -2984.9466433509 51.7121203365409 0 -38881.8459242429 + 10 0.001 0.980832325038224 -2984.94800197308 52.2550760237226 0.00128259392155095 -38881.8459243688 + 20 0.002 0.980832322622779 -2984.95196908579 53.4253029071033 0.0050206854169363 -38881.8459246487 + 30 0.003 0.980832317889283 -2984.95826684048 55.1488791221993 0.0109316238061975 -38881.8459250502 + 40 0.004 0.980832310888481 -2984.96649810512 57.3217709603901 0.0186091353316915 -38881.8459255204 + 50 0.005 0.980832301939686 -2984.97619813381 59.8271487572311 0.0275752699737783 -38881.8459260027 + 60 0.006 0.980832291654664 -2984.98688847988 62.5518654049861 0.0373348857300743 -38881.8459264498 + 70 0.007 0.980832280861627 -2984.99812400566 65.3978892661935 0.0474235455824994 -38881.845926824 + 80 0.008 0.980832270462785 -2985.00952679611 68.286219599829 0.0574425858114516 -38881.8459271072 + 90 0.009 0.980832261284587 -2985.02080458573 71.1539714621652 0.0670788260497413 -38881.8459272915 + 100 0.01 0.980832253960703 -2985.03175506188 73.9486358176052 0.0761100787140068 -38881.8459273845 +Loop time of 12.4286 on 1 procs for 100 steps with 8192 atoms + +Performance: 0.070 ns/day, 345.239 hours/ns, 8.046 timesteps/s +99.6% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 4.0123 | 4.0123 | 4.0123 | 0.0 | 32.28 +Neigh | 3.005 | 3.005 | 3.005 | 0.0 | 24.18 +Comm | 0.041798 | 0.041798 | 0.041798 | 0.0 | 0.34 +Output | 1.8465 | 1.8465 | 1.8465 | 0.0 | 14.86 +Modify | 3.5157 | 3.5157 | 3.5157 | 0.0 | 28.29 +Other | | 0.007261 | | | 0.06 + +Nlocal: 8192 ave 8192 max 8192 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 14621 ave 14621 max 14621 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 573440 ave 573440 max 573440 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 1.14688e+06 ave 1.14688e+06 max 1.14688e+06 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 1146880 +Ave neighs/atom = 140 +Neighbor list builds = 100 +Dangerous builds not checked + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:12 diff --git a/examples/SPIN/read_restart/log.11May18.spin.read_data.g++.4 b/examples/SPIN/read_restart/log.11May18.spin.read_data.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..56fed3530760762fa2131929f31cb8343daac0e0 --- /dev/null +++ b/examples/SPIN/read_restart/log.11May18.spin.read_data.g++.4 @@ -0,0 +1,112 @@ +LAMMPS (11 May 2018) +units metal +dimension 3 +boundary p p p + +atom_style spin + +# necessary for the serial algorithm (sametag) +atom_modify map array +read_data Norm_randXY_8x8x32.data + orthogonal box = (0 0 0) to (28.32 28.32 113.28) + 1 by 1 by 4 MPI processor grid + reading atoms ... + 8192 atoms + +mass 1 58.93 + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.0446928 0.003496 1.4885 + +neighbor 1.0 bin +neigh_modify every 1 check no delay 0 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# define outputs and computes + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo 10 +thermo_style custom step time v_magnorm v_emag v_tmag temp etotal +thermo_modify format float %20.15g + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 10 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 100 +Neighbor list info ... + update every 1 steps, delay 0 steps, check no + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 7.49954 + ghost atom cutoff = 7.49954 + binsize = 3.74977, bins = 8 8 31 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.883 | 7.994 | 8.25 Mbytes +Step Time v_magnorm v_emag v_tmag Temp TotEng + 0 0 0.980832325249103 -2984.9466433509 51.7121203365411 0 -38881.8459242507 + 10 0.001 0.980832325329477 -2984.94800197307 52.2550778515409 0.00128259391683994 -38881.8459243698 + 20 0.002 0.980832324654401 -2984.95196908569 53.4253110612179 0.00502068532291255 -38881.8459246487 + 30 0.003 0.98083232312993 -2984.95826683995 55.148898005011 0.0109316232931419 -38881.84592505 + 40 0.004 0.980832320808156 -2984.9664981035 57.3218040934977 0.0186091337978305 -38881.8459255198 + 50 0.005 0.980832317596783 -2984.97619813016 59.827198436387 0.0275752665472358 -38881.8459260035 + 60 0.006 0.980832313514709 -2984.98688847322 62.5519331668858 0.037334879488755 -38881.84592645 + 70 0.007 0.980832309220414 -2984.99812399537 65.3979760533737 0.0474235360022736 -38881.8459268243 + 80 0.008 0.980832304490479 -2985.00952678209 68.2863250613635 0.0574425728014485 -38881.8459271068 + 90 0.009 0.980832299379824 -2985.02080456789 71.1540940309591 0.0670788096168283 -38881.8459272917 + 100 0.01 0.980832294622694 -2985.03175503971 73.9487734241296 0.0761100584457276 -38881.8459273851 +Loop time of 3.6612 on 4 procs for 100 steps with 8192 atoms + +Performance: 0.236 ns/day, 101.700 hours/ns, 27.313 timesteps/s +98.8% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 1.0622 | 1.076 | 1.0936 | 1.1 | 29.39 +Neigh | 0.77462 | 0.79542 | 0.81798 | 1.9 | 21.73 +Comm | 0.024701 | 0.066122 | 0.10261 | 11.1 | 1.81 +Output | 0.50304 | 0.51253 | 0.52111 | 0.9 | 14.00 +Modify | 1.2006 | 1.2082 | 1.2205 | 0.7 | 33.00 +Other | | 0.002962 | | | 0.08 + +Nlocal: 2048 ave 2095 max 1981 min +Histogram: 1 0 0 0 0 0 2 0 0 1 +Nghost: 5765 ave 5832 max 5718 min +Histogram: 1 0 0 2 0 0 0 0 0 1 +Neighs: 143360 ave 146361 max 139058 min +Histogram: 1 0 0 0 0 0 1 1 0 1 +FullNghs: 286720 ave 293300 max 277340 min +Histogram: 1 0 0 0 0 0 2 0 0 1 + +Total # of neighbors = 1146880 +Ave neighs/atom = 140 +Neighbor list builds = 100 +Dangerous builds not checked + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:03 diff --git a/examples/SPIN/read_restart/log.11May18.spin.restart.g++.1 b/examples/SPIN/read_restart/log.11May18.spin.restart.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..16eb7c3f5e9ccf9d72f69b6ac90a2a43cfe6d33b --- /dev/null +++ b/examples/SPIN/read_restart/log.11May18.spin.restart.g++.1 @@ -0,0 +1,117 @@ +LAMMPS (11 May 2018) +# start a spin-lattice simulation from a data file +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +read_restart restart_hcp_cobalt.equil + restoring atom style spin from restart + orthogonal box = (0 0 0) to (12.5355 21.7121 20.4704) + 1 by 1 by 1 MPI processor grid + restoring pair style spin/exchange from restart + 500 atoms + +# setting mass, mag. moments, and interactions + +mass 1 58.93 + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.3593 1.135028015e-05 1.064568567 + +neighbor 1.0 bin +neigh_modify every 1 check no delay 0 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# define outputs + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo 10 +thermo_style custom step time v_magnorm v_emag v_tmag temp etotal +thermo_modify format float %20.15g + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 100 +Neighbor list info ... + update every 1 steps, delay 0 steps, check no + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 7.49954 + ghost atom cutoff = 7.49954 + binsize = 3.74977, bins = 4 6 6 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.315 | 6.315 | 6.315 Mbytes +Step Time v_magnorm v_emag v_tmag Temp TotEng + 1000 0 0.106120063678768 -11.8110267448938 5244.87332482316 0 -2206.81097898043 + 1010 0.001 0.106120047478105 -11.8198467887534 5263.87502105137 0.136650312456579 -2206.81097929055 + 1020 0.002 0.106120026430373 -11.8460960518731 5267.29822866382 0.542282409605327 -2206.81098022997 + 1030 0.003 0.106120005015917 -11.8891434078861 5252.95323564256 1.204018338139 -2206.81098172551 + 1040 0.004 0.106119988532653 -11.9479778701641 5220.88508622311 2.10120884995911 -2206.81098371047 + 1050 0.005 0.10611998133687 -12.021242685853 5172.58549378915 3.20622445795757 -2206.81098610701 + 1060 0.006 0.10611998489458 -12.107271344148 5110.57395203849 4.48535975411235 -2206.81098879725 + 1070 0.007 0.106119996964771 -12.204156761765 5038.48903231346 5.9003121044977 -2206.81099161183 + 1080 0.008 0.106120013042521 -12.3098695046152 4961.0327167967 7.4104497466856 -2206.81099434653 + 1090 0.009 0.106120029236234 -12.4224157835754 4883.3210922213 8.97568980540163 -2206.81099680117 + 1100 0.01 0.106120044071404 -12.5400036896932 4809.88136080052 10.559459821976 -2206.81099883104 +Loop time of 0.833234 on 1 procs for 100 steps with 500 atoms + +Performance: 1.037 ns/day, 23.145 hours/ns, 120.014 timesteps/s +99.7% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.26558 | 0.26558 | 0.26558 | 0.0 | 31.87 +Neigh | 0.21352 | 0.21352 | 0.21352 | 0.0 | 25.62 +Comm | 0.0057988 | 0.0057988 | 0.0057988 | 0.0 | 0.70 +Output | 0.12463 | 0.12463 | 0.12463 | 0.0 | 14.96 +Modify | 0.22275 | 0.22275 | 0.22275 | 0.0 | 26.73 +Other | | 0.0009537 | | | 0.11 + +Nlocal: 500 ave 500 max 500 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 2534 ave 2534 max 2534 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 36500 ave 36500 max 36500 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 73000 ave 73000 max 73000 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 73000 +Ave neighs/atom = 146 +Neighbor list builds = 100 +Dangerous builds not checked + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:00 diff --git a/examples/SPIN/read_restart/log.11May18.spin.restart.g++.4 b/examples/SPIN/read_restart/log.11May18.spin.restart.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..f93605a10a2e28eb923241d1fc629eea81ecf31f --- /dev/null +++ b/examples/SPIN/read_restart/log.11May18.spin.restart.g++.4 @@ -0,0 +1,118 @@ +LAMMPS (11 May 2018) +# start a spin-lattice simulation from a data file +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +read_restart restart_hcp_cobalt.equil +WARNING: Restart file used different # of processors (../read_restart.cpp:723) + restoring atom style spin from restart + orthogonal box = (0 0 0) to (12.5355 21.7121 20.4704) + 1 by 2 by 2 MPI processor grid + restoring pair style spin/exchange from restart + 500 atoms + +# setting mass, mag. moments, and interactions + +mass 1 58.93 + +pair_style hybrid/overlay eam/alloy spin/exchange 4.0 +pair_coeff * * eam/alloy Co_PurjaPun_2012.eam.alloy Co +pair_coeff * * spin/exchange exchange 4.0 0.3593 1.135028015e-05 1.064568567 + +neighbor 1.0 bin +neigh_modify every 1 check no delay 0 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 0.0 0.0 21 + +fix 3 all nve/spin lattice yes +timestep 0.0001 + +# define outputs + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo 10 +thermo_style custom step time v_magnorm v_emag v_tmag temp etotal +thermo_modify format float %20.15g + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 100 +Neighbor list info ... + update every 1 steps, delay 0 steps, check no + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 7.49954 + ghost atom cutoff = 7.49954 + binsize = 3.74977, bins = 4 6 6 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair eam/alloy, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.203 | 6.203 | 6.203 Mbytes +Step Time v_magnorm v_emag v_tmag Temp TotEng + 1000 0 0.106120063678768 -11.8110267448939 5244.87332482316 0 -2206.81097898003 + 1010 0.001 0.106120030254187 -11.8198467883806 5263.87550015043 0.136650306637598 -2206.81097929055 + 1020 0.002 0.106119996655714 -11.8460960476455 5267.299198699 0.542282344092749 -2206.81098022997 + 1030 0.003 0.106119967407682 -11.8891433919665 5252.95473019843 1.20401809237154 -2206.81098172552 + 1040 0.004 0.106119960016585 -11.9479778326021 5220.88686874944 2.10120827278397 -2206.81098371049 + 1050 0.005 0.106119961252471 -12.0212426191481 5172.58712301374 3.20622343988728 -2206.81098610703 + 1060 0.006 0.106119967598995 -12.1072712483404 5110.57504803718 4.48535830705751 -2206.81098879724 + 1070 0.007 0.106119967669058 -12.2041566468564 5038.48927079832 5.90031039867811 -2206.81099161179 + 1080 0.008 0.106119969263395 -12.3098693905406 4961.03212459716 7.41044810751949 -2206.8109943465 + 1090 0.009 0.106119960964075 -12.4224156966204 4883.31968289062 8.97568865379831 -2206.81099680112 + 1100 0.01 0.106119945605273 -12.5400036591612 4809.87930844463 10.5594596175303 -2206.81099883101 +Loop time of 0.304678 on 4 procs for 100 steps with 500 atoms + +Performance: 2.836 ns/day, 8.463 hours/ns, 328.215 timesteps/s +98.0% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.071445 | 0.073018 | 0.074151 | 0.4 | 23.97 +Neigh | 0.054448 | 0.055709 | 0.057528 | 0.5 | 18.28 +Comm | 0.0061178 | 0.0074609 | 0.0090766 | 1.2 | 2.45 +Output | 0.037489 | 0.038586 | 0.039952 | 0.5 | 12.66 +Modify | 0.12826 | 0.12954 | 0.13065 | 0.3 | 42.52 +Other | | 0.0003686 | | | 0.12 + +Nlocal: 125 ave 129 max 120 min +Histogram: 1 0 0 0 1 0 0 1 0 1 +Nghost: 1387 ave 1392 max 1383 min +Histogram: 1 0 1 0 0 1 0 0 0 1 +Neighs: 9125 ave 9428 max 8740 min +Histogram: 1 0 0 1 0 0 0 0 1 1 +FullNghs: 18250 ave 18834 max 17520 min +Histogram: 1 0 0 0 1 0 0 1 0 1 + +Total # of neighbors = 73000 +Ave neighs/atom = 146 +Neighbor list builds = 100 +Dangerous builds not checked + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:00 diff --git a/examples/SPIN/read_restart/log.11May18.spin.write_restart.g++.1 b/examples/SPIN/read_restart/log.11May18.spin.write_restart.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..c3be90cb505bace4db678ff8fb4f94d5dce948d2 --- /dev/null +++ b/examples/SPIN/read_restart/log.11May18.spin.write_restart.g++.1 @@ -0,0 +1,119 @@ +LAMMPS (11 May 2018) +# fcc cobalt in a 3d periodic box + +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice hcp 2.5071 +Lattice spacing in x,y,z = 2.5071 4.34242 4.09408 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (12.5355 21.7121 20.4704) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 500 atoms + Time spent = 0.00027585 secs + +# setting mass, mag. moments, and interactions for cobalt + +mass 1 58.93 + +set group all spin/random 31 1.72 + 500 settings made for spin/random + +pair_style spin/exchange 4.0 +pair_coeff * * exchange 4.0 0.3593 1.135028015e-05 1.064568567 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 100.0 0.01 21 + +fix 3 all nve/spin lattice no +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp etotal +thermo 100 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 1000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 4.1 + ghost atom cutoff = 4.1 + binsize = 2.05, bins = 7 11 10 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.446 | 6.446 | 6.446 Mbytes +Step Time v_magnorm v_emag Temp TotEng + 0 0 0.076558814 1.7982359 0 1.7982359 + 100 0.01 0.079107243 0.56368447 0 0.56368447 + 200 0.02 0.08225862 -0.42421042 0 -0.42421042 + 300 0.03 0.08397714 -1.4964948 0 -1.4964948 + 400 0.04 0.084704989 -2.6740652 0 -2.6740652 + 500 0.05 0.087486342 -4.2043382 0 -4.2043382 + 600 0.06 0.09187261 -5.6687169 0 -5.6687169 + 700 0.07 0.096925249 -6.937499 0 -6.937499 + 800 0.08 0.098988236 -8.2456715 0 -8.2456715 + 900 0.09 0.10434092 -10.111953 0 -10.111953 + 1000 0.1 0.10612006 -11.811027 0 -11.811027 +Loop time of 2.60215 on 1 procs for 1000 steps with 500 atoms + +Performance: 3.320 ns/day, 7.228 hours/ns, 384.297 timesteps/s +99.0% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.35178 | 0.35178 | 0.35178 | 0.0 | 13.52 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.014421 | 0.014421 | 0.014421 | 0.0 | 0.55 +Output | 1.2046 | 1.2046 | 1.2046 | 0.0 | 46.29 +Modify | 1.0274 | 1.0274 | 1.0274 | 0.0 | 39.48 +Other | | 0.004006 | | | 0.15 + +Nlocal: 500 ave 500 max 500 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 1221 ave 1221 max 1221 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 10000 ave 10000 max 10000 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 10000 +Ave neighs/atom = 20 +Neighbor list builds = 0 +Dangerous builds = 0 +write_restart restart_hcp_cobalt.equil + + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:02 diff --git a/examples/SPIN/read_restart/log.11May18.spin.write_restart.g++.4 b/examples/SPIN/read_restart/log.11May18.spin.write_restart.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..e54299b9ddbef2d6328c7d4cc1b62c212ddcc019 --- /dev/null +++ b/examples/SPIN/read_restart/log.11May18.spin.write_restart.g++.4 @@ -0,0 +1,119 @@ +LAMMPS (11 May 2018) +# fcc cobalt in a 3d periodic box + +units metal +atom_style spin + +dimension 3 +boundary p p p + +# necessary for the serial algorithm (sametag) +atom_modify map array + +lattice hcp 2.5071 +Lattice spacing in x,y,z = 2.5071 4.34242 4.09408 +region box block 0.0 5.0 0.0 5.0 0.0 5.0 +create_box 1 box +Created orthogonal box = (0 0 0) to (12.5355 21.7121 20.4704) + 1 by 2 by 2 MPI processor grid +create_atoms 1 box +Created 500 atoms + Time spent = 0.000257969 secs + +# setting mass, mag. moments, and interactions for cobalt + +mass 1 58.93 + +set group all spin/random 31 1.72 + 500 settings made for spin/random + +pair_style spin/exchange 4.0 +pair_coeff * * exchange 4.0 0.3593 1.135028015e-05 1.064568567 + +neighbor 0.1 bin +neigh_modify every 10 check yes delay 20 + +fix 1 all precession/spin zeeman 0.0 0.0 0.0 1.0 +fix 2 all langevin/spin 100.0 0.01 21 + +fix 3 all nve/spin lattice no +timestep 0.0001 + +# compute and output options + +compute out_mag all compute/spin +compute out_pe all pe +compute out_ke all ke +compute out_temp all temp + +variable magz equal c_out_mag[3] +variable magnorm equal c_out_mag[4] +variable emag equal c_out_mag[5] +variable tmag equal c_out_mag[6] + +thermo_style custom step time v_magnorm v_emag temp etotal +thermo 100 + +compute outsp all property/atom spx spy spz sp fmx fmy fmz +dump 100 all custom 1 dump.lammpstrj type x y z c_outsp[1] c_outsp[2] c_outsp[3] c_outsp[4] c_outsp[5] c_outsp[6] c_outsp[7] + +run 1000 +Neighbor list info ... + update every 10 steps, delay 20 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 4.1 + ghost atom cutoff = 4.1 + binsize = 2.05, bins = 7 11 10 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair spin/exchange, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.367 | 6.367 | 6.367 Mbytes +Step Time v_magnorm v_emag Temp TotEng + 0 0 0.076558814 1.7982359 0 1.7982359 + 100 0.01 0.081414414 0.70545723 0 0.70545723 + 200 0.02 0.084519539 -0.33171078 0 -0.33171078 + 300 0.03 0.089334139 -1.3988283 0 -1.3988283 + 400 0.04 0.092873722 -2.8519371 0 -2.8519371 + 500 0.05 0.0970839 -4.1531164 0 -4.1531164 + 600 0.06 0.099626132 -5.7993765 0 -5.7993765 + 700 0.07 0.10467169 -7.3011333 0 -7.3011333 + 800 0.08 0.10893493 -8.6918141 0 -8.6918141 + 900 0.09 0.11389657 -10.236174 0 -10.236174 + 1000 0.1 0.1180057 -11.896933 0 -11.896933 +Loop time of 1.05012 on 4 procs for 1000 steps with 500 atoms + +Performance: 8.228 ns/day, 2.917 hours/ns, 952.272 timesteps/s +98.1% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.08972 | 0.090456 | 0.091872 | 0.3 | 8.61 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.016958 | 0.018047 | 0.019791 | 0.8 | 1.72 +Output | 0.36286 | 0.37483 | 0.38975 | 1.6 | 35.69 +Modify | 0.55131 | 0.56541 | 0.57702 | 1.3 | 53.84 +Other | | 0.001374 | | | 0.13 + +Nlocal: 125 ave 125 max 125 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 597.5 ave 600 max 595 min +Histogram: 2 0 0 0 0 0 0 0 0 2 +Neighs: 0 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +FullNghs: 2500 ave 2500 max 2500 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 10000 +Ave neighs/atom = 20 +Neighbor list builds = 0 +Dangerous builds = 0 +write_restart restart_hcp_cobalt.equil + + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:01 diff --git a/examples/SPIN/vmd/prepare_vmd.sh b/examples/SPIN/vmd/prepare_vmd.sh new file mode 100755 index 0000000000000000000000000000000000000000..fa62c6e109d75315abbd26bb4467d7c5d02c9cb3 --- /dev/null +++ b/examples/SPIN/vmd/prepare_vmd.sh @@ -0,0 +1,91 @@ +#!/bin/bash +# example prepare_vmd.sh /home/jtranch/Documents/lammps/src/dump_VSRSV.lammpstrj +# you will get a return file + +echo "vmd script for file $1 is preparing..." + +timestamp(){ + date +%s +} + +TS=$(timestamp) +FILE=view_${TS}.vmd + +cat >${FILE} <] [resolution ] [radius ] [filled ]"} + # defaults + set scale 2.0 + set res 50 + set radius 0.1 + set filled yes + + if {[llength \$args] < 3} { + error "wrong # args: should be \$usage" + } + set mol [lindex \$args 0] + set center [lindex \$args 1] + set vector [lindex \$args 2] + if {[llength \$center] != 3 || [llength \$vector] != 3} { + error "wrong type of args: should be \$usage" + } + + foreach {flag value} [lrange \$args 3 end] { + switch -glob \$flag { + scale {set scale \$value} + res* {set res \$value} + rad* {set radius \$value} + fill* {set filled \$value} + default {error "unknown option '\$flag': should be \$usage" } + } + } + + set vechalf [vecscale [expr \$scale * 0.5] \$vector] + return [list \\ + [graphics \$mol color yellow]\\ + [graphics \$mol cylinder [vecsub \$center \$vechalf]\\ + [vecadd \$center [vecscale 0.7 \$vechalf]] \\ + radius \$radius resolution \$res filled \$filled] \\ + [graphics \$mol color orange]\\ + [graphics \$mol cone [vecadd \$center [vecscale 0.6 \$vechalf]] \\ + [vecadd \$center \$vechalf] radius [expr \$radius * 2.5] \\ + resolution \$res]] +} + +proc vmd_draw_spin {args} { + global molid + graphics \$molid delete all + set frame [molinfo \$molid get frame] + set natoms [molinfo \$molid get numatoms] + for {set i 0} {\$i < \$natoms} {incr i} { + set sel [atomselect top "index \$i"] + set coords [lindex [\$sel get {x y z}] \$molid] + set velocities [lindex [\$sel get {vx vy vz}] \$molid] + draw vector \$coords \$velocities + set uvx [lindex [\$sel get {vx}] \$molid] + set uvy [lindex [\$sel get {vy}] \$molid] + set uvz [lindex [\$sel get {vz}] \$molid] + \$sel set user [vecadd [vecadd [vecscale \$uvy \$uvy] [vecscale \$uvz \$uvz] ] [vecscale \$uvx \$uvx]] + \$sel set user \$uvy + #draw vector \$coords {0.0 uvy 0.0} + } + #pbc box -color 3 +} + +proc enable_trace {} { + global vmd_frame + trace variable vmd_frame([molinfo top]) w vmd_draw_spin +} + +set molid [mol addfile {$1} type {lammpstrj} autobonds off first 0 last -1 step 1 waitfor all] +scale by 0.5 +animate style Loop +enable_trace +EOF +echo "$FILE is ready..." diff --git a/examples/SPIN/vmd/vmd_nano.vmd b/examples/SPIN/vmd/vmd_nano.vmd new file mode 100644 index 0000000000000000000000000000000000000000..f9e345427076250c5c98e96a9f9b625c6354947d --- /dev/null +++ b/examples/SPIN/vmd/vmd_nano.vmd @@ -0,0 +1,79 @@ +proc vmd_draw_arrow {mol start end} { + set middle [vecadd $start [vecscale 0.9 [vecsub $end $start]]] + graphics $mol cylinder $start $middle radius 0.05 + graphics $mol cone $middle $end radius 0.01 color 3 +} + +proc vmd_draw_vector {args} { + set usage {"draw vector {x1 y1 z1} {x2 y2 z2} [scale ] [resolution ] [radius ] [filled ]"} + # defaults + set scale 2.0 + set res 50 + set radius 0.1 + set filled yes + + if {[llength $args] < 3} { + error "wrong # args: should be $usage" + } + set mol [lindex $args 0] + set center [lindex $args 1] + set vector [lindex $args 2] + if {[llength $center] != 3 || [llength $vector] != 3} { + error "wrong type of args: should be $usage" + } + + foreach {flag value} [lrange $args 3 end] { + switch -glob $flag { + scale {set scale $value} + res* {set res $value} + rad* {set radius $value} + fill* {set filled $value} + default {error "unknown option '$flag': should be $usage" } + } + } + + set vechalf [vecscale [expr $scale * 0.5] $vector] + return [list \ + [graphics $mol color yellow]\ + [graphics $mol cylinder [vecsub $center $vechalf]\ + [vecadd $center [vecscale 0.7 $vechalf]] \ + radius $radius resolution $res filled $filled] \ + [graphics $mol color orange]\ + [graphics $mol cone [vecadd $center [vecscale 0.6 $vechalf]] \ + [vecadd $center $vechalf] radius [expr $radius * 2.5] \ + resolution $res]] +} + +proc vmd_draw_spin {args} { + global molid + graphics $molid delete all + set frame [molinfo $molid get frame] + set natoms [molinfo $molid get numatoms] + for {set i 0} {$i < $natoms} {incr i} { + set sel [atomselect top "index $i"] +# set sel [atomselect top "index 1200"] + set coords [lindex [$sel get {x y z}] $molid] + set velocities [lindex [$sel get {vx vy vz}] $molid] + draw vector $coords $velocities + set uvx [lindex [$sel get {vx}] $molid] + set uvy [lindex [$sel get {vy}] $molid] + set uvz [lindex [$sel get {vz}] $molid] + $sel set user [vecadd [vecadd [vecscale $uvy $uvy] [vecscale $uvz $uvz] ] [vecscale $uvx $uvx]] + $sel set user $uvy + #draw vector $coords {0.0 uvy 0.0} + } + #pbc box -color 3 +} + +proc enable_trace {} { + global vmd_frame + trace variable vmd_frame([molinfo top]) w vmd_draw_spin + } + +set molid [mol addfile {/home/jtranch/Documents/lammps/src/dump.lammpstrj} type {lammpstrj} autobonds off first 0 last -1 step 1 waitfor all] +scale by 0.5 +animate style Loop +enable_trace + + + diff --git a/examples/USER/bocs/README b/examples/USER/bocs/README new file mode 100644 index 0000000000000000000000000000000000000000..ae1739f8c0378256a7232290ecdd6a3a238bc7e9 --- /dev/null +++ b/examples/USER/bocs/README @@ -0,0 +1,6 @@ +This folder contains the files to run a NPT simulation of 1 site CG methanol +while employing a correction to the barostat. +The pair force was computed via the Multi-Scale Coarse-Graining method. +The resulting model was then iteratively pressure matched. +The model accurately reproduces both structural (RDF) and thermodynamic +(Pressure-Volume EoS) properties of the underlying OPLS-AA model of methanol. diff --git a/examples/USER/bocs/in.methanol b/examples/USER/bocs/in.methanol new file mode 100644 index 0000000000000000000000000000000000000000..e7c80e014d04de182615de67dd142c54034beccf --- /dev/null +++ b/examples/USER/bocs/in.methanol @@ -0,0 +1,69 @@ +units real +dimension 3 +boundary p p p +atom_style atomic + +newton on +timestep 1.0 + +read_data methanol.data + +velocity all create 300.0 16802 dist gaussian + +pair_style table spline 15000 + +pair_coeff 1 1 lammps_nb_MET-MET.table nb_METMET 12.0 + +neigh_modify delay 0 every 1 check yes one 10000 +neighbor 12.0 bin + +thermo 500 +thermo_style custom step temp pe etotal press vol + +variable STEP equal step +variable TEMP equal temp +## volume from cubic angstroms to cubic nm +variable VOL equal vol/1000.0 +## pressure from atm to bar +variable PRESS equal press*1.01325 +variable PXX equal pxx*1.01325 +variable PYY equal pyy*1.01325 +variable PZZ equal pzz*1.01325 +variable PXY equal pxy*1.01325 +variable PXZ equal pxz*1.01325 +variable PYZ equal pyz*1.01325 +## energy from kcal/mol to kJ/mol +variable KE equal ke*4.184 +variable PE equal pe*4.184 +variable UVDW equal evdwl*4.184 + + +##### SPECIAL COMMANDS FOR FIX_BOCS ##### +# ID group-ID style_name thermostat T_init T_end T_couple barostat P_start P_end P_couple pmatch_basis avg_vol N_sites N_coeffs coeff1 coeff2 +fix 1 all bocs temp 300.0 300.0 100.0 cgiso 0.986 0.986 1000.0 analytic 66476.015 968 2 245030.10 8962.20 + +# Report the modified pressure +thermo_modify press 1_press + + + +## Uncomment to save some data from simulation to files +#fix print_temp all print 500 "${STEP} ${TEMP}" file temp.dat screen no +#fix print_vol all print 500 "${STEP} ${VOL}" file vol.dat screen no +#fix print_press all print 500 "${STEP} ${PRESS}" file press.dat screen no +#fix print_ke all print 500 "${STEP} ${KE}" file kinetic_E.dat screen no +#fix print_pe all print 500 "${STEP} ${PE}" file potential_E.dat screen no +#fix print_ve all print 500 "${STEP} ${UVDW}" file vdw_E.dat screen no +#fix print_press_tens all print 500 "${STEP} ${PXX} ${PYY} ${PZZ} ${PXY} ${PXZ} ${PYZ}" file press_tens.dat screen no +#fix print_PV_eos all print 500 "${VOL} ${PRESS}" file pv_eos.dat screen no + +## Prints a configuration to dump.txt every 500 steps +#dump 1 all custom 500 dump.txt id type x y z fx fy fz + +# Write restart files to continue simulations +#restart 10000 state1.restart state2.restart + +## Run for this many steps +run_style verlet +run 10000 + diff --git a/examples/USER/bocs/lammps_nb_MET-MET.table b/examples/USER/bocs/lammps_nb_MET-MET.table new file mode 100644 index 0000000000000000000000000000000000000000..c6d9fc6ca251cd012c78f50b1e86bc03c72cc6be --- /dev/null +++ b/examples/USER/bocs/lammps_nb_MET-MET.table @@ -0,0 +1,2505 @@ +#Converted from table.xvg + +nb_METMET +N 2500 + +1 0.010000 573.151769 380.122371 +2 0.020000 569.356836 378.855163 +3 0.030000 565.574570 377.588193 +4 0.040000 561.805210 376.320985 +5 0.050000 558.048279 375.053776 +6 0.060000 554.304015 373.786807 +7 0.070000 550.572419 372.519598 +8 0.080000 546.853728 371.252390 +9 0.090000 543.147467 369.985421 +10 0.100000 539.453872 368.718212 +11 0.110000 535.773184 367.451004 +12 0.120000 532.104924 366.184034 +13 0.130000 528.449331 364.916826 +14 0.140000 524.806644 363.649618 +15 0.150000 521.176386 362.382648 +16 0.160000 517.559034 361.115440 +17 0.170000 513.954111 359.848231 +18 0.180000 510.361855 358.581262 +19 0.190000 506.782505 357.314054 +20 0.200000 503.215583 356.046845 +21 0.210000 499.661568 354.779876 +22 0.220000 496.119981 353.512667 +23 0.230000 492.591300 352.245459 +24 0.240000 489.075287 350.978489 +25 0.250000 485.571702 349.711281 +26 0.260000 482.081023 348.444073 +27 0.270000 478.602772 347.177103 +28 0.280000 475.137428 345.909895 +29 0.290000 471.684751 344.642686 +30 0.300000 468.244503 343.375717 +31 0.310000 464.817161 342.108509 +32 0.320000 461.402486 340.841300 +33 0.330000 458.000239 339.574331 +34 0.340000 454.610899 338.307122 +35 0.350000 451.234226 337.039914 +36 0.360000 447.870220 335.772945 +37 0.370000 444.518642 334.505736 +38 0.380000 441.179971 333.238528 +39 0.390000 437.853967 331.971558 +40 0.400000 434.540631 330.704350 +41 0.410000 431.239962 329.437141 +42 0.420000 427.951721 328.170172 +43 0.430000 424.676386 326.902964 +44 0.440000 421.413719 325.635755 +45 0.450000 418.163719 324.368786 +46 0.460000 414.926386 323.101577 +47 0.470000 411.701721 321.834369 +48 0.480000 408.489723 320.567400 +49 0.490000 405.290392 319.300191 +50 0.500000 402.103728 318.032983 +51 0.510000 398.929732 316.766013 +52 0.520000 395.768403 315.498805 +53 0.530000 392.619742 314.231597 +54 0.540000 389.483748 312.964627 +55 0.550000 386.360421 311.697419 +56 0.560000 383.249761 310.430210 +57 0.570000 380.151769 309.163241 +58 0.580000 377.066444 307.896033 +59 0.590000 373.993786 306.628824 +60 0.600000 370.934034 305.361855 +61 0.610000 367.886711 304.094646 +62 0.620000 364.852055 302.827438 +63 0.630000 361.830067 301.560468 +64 0.640000 358.820746 300.293260 +65 0.650000 355.824331 299.026052 +66 0.660000 352.840344 297.759082 +67 0.670000 349.869025 296.491874 +68 0.680000 346.910373 295.224904 +69 0.690000 343.964627 293.957696 +70 0.700000 341.031310 292.690488 +71 0.710000 338.110660 291.423518 +72 0.720000 335.202916 290.156310 +73 0.730000 332.307600 288.889101 +74 0.740000 329.425191 287.622132 +75 0.750000 326.555210 286.354924 +76 0.760000 323.697897 285.087715 +77 0.770000 320.853489 283.820746 +78 0.780000 318.021511 282.553537 +79 0.790000 315.202438 281.286329 +80 0.800000 312.395793 280.019359 +81 0.810000 309.602055 278.752151 +82 0.820000 306.820746 277.484943 +83 0.830000 304.052342 276.217973 +84 0.840000 301.296367 274.950765 +85 0.850000 298.553298 273.683556 +86 0.860000 295.822658 272.416587 +87 0.870000 293.104924 271.149379 +88 0.880000 290.399857 269.882170 +89 0.890000 287.707218 268.615201 +90 0.900000 285.027486 267.347992 +91 0.910000 282.360421 266.080784 +92 0.920000 279.705784 264.813815 +93 0.930000 277.064054 263.546606 +94 0.940000 274.434990 262.279398 +95 0.950000 271.818356 261.012428 +96 0.960000 269.214627 259.745220 +97 0.970000 266.623566 258.478011 +98 0.980000 264.045172 257.211042 +99 0.990000 261.479446 255.943834 +100 1.000000 258.926147 254.676625 +101 1.010000 256.385755 253.409656 +102 1.020000 253.858031 252.142447 +103 1.030000 251.342973 250.875239 +104 1.040000 248.840583 249.608270 +105 1.050000 246.350860 248.341061 +106 1.060000 243.873805 247.073853 +107 1.070000 241.409417 245.806883 +108 1.080000 238.957600 244.539675 +109 1.090000 236.518523 243.272467 +110 1.100000 234.092137 242.005497 +111 1.110000 231.678418 240.738289 +112 1.120000 229.277366 239.471080 +113 1.130000 226.889006 238.204039 +114 1.140000 224.513289 236.936926 +115 1.150000 222.150263 235.669790 +116 1.160000 219.799904 234.402653 +117 1.170000 217.462213 233.135540 +118 1.180000 215.137189 231.868403 +119 1.190000 212.824833 230.601267 +120 1.200000 210.525167 229.334154 +121 1.210000 208.238145 228.067017 +122 1.220000 205.963815 226.799904 +123 1.230000 203.702151 225.532768 +124 1.240000 201.453155 224.265631 +125 1.250000 199.216850 222.998518 +126 1.260000 196.993188 221.731381 +127 1.270000 194.782218 220.464269 +128 1.280000 192.583915 219.197132 +129 1.290000 190.398279 217.929995 +130 1.300000 188.225311 216.662882 +131 1.310000 186.065010 215.395746 +132 1.320000 183.917400 214.128609 +133 1.330000 181.782433 212.861496 +134 1.340000 179.660158 211.594359 +135 1.350000 177.550550 210.327247 +136 1.360000 175.453609 209.060110 +137 1.370000 173.369359 207.792973 +138 1.380000 171.297753 206.525860 +139 1.390000 169.238838 205.258724 +140 1.400000 167.192591 203.991587 +141 1.410000 165.159011 202.724474 +142 1.420000 163.138098 201.457337 +143 1.430000 161.129852 200.190225 +144 1.440000 159.134297 198.923088 +145 1.450000 157.151386 197.655951 +146 1.460000 155.181166 196.388838 +147 1.470000 153.223614 195.121702 +148 1.480000 151.278728 193.854565 +149 1.490000 149.346534 192.587452 +150 1.500000 147.426984 191.320315 +151 1.510000 145.520124 190.053203 +152 1.520000 143.625932 188.786066 +153 1.530000 141.744407 187.518929 +154 1.540000 139.875550 186.251816 +155 1.550000 138.019359 184.984680 +156 1.560000 136.175860 183.717567 +157 1.570000 134.345005 182.450430 +158 1.580000 132.526840 181.183293 +159 1.590000 130.721343 179.916181 +160 1.600000 128.928513 178.649044 +161 1.610000 127.148375 177.381907 +162 1.620000 125.380880 176.114794 +163 1.630000 123.626076 174.847658 +164 1.640000 121.883939 173.580545 +165 1.650000 120.154469 172.313408 +166 1.660000 118.437667 171.046272 +167 1.670000 116.733533 169.779159 +168 1.680000 115.042089 168.512022 +169 1.690000 113.363289 167.244885 +170 1.700000 111.697180 165.977772 +171 1.710000 110.043738 164.710636 +172 1.720000 108.402964 163.443523 +173 1.730000 106.774857 162.176386 +174 1.740000 105.159441 160.909250 +175 1.750000 103.556692 159.642137 +176 1.760000 101.966587 158.375000 +177 1.770000 100.389173 157.107887 +178 1.780000 98.824450 155.840750 +179 1.790000 97.272371 154.573614 +180 1.800000 95.732959 153.306501 +181 1.810000 94.206238 152.039364 +182 1.820000 92.692185 150.772228 +183 1.830000 91.190798 149.505115 +184 1.840000 89.702079 148.237978 +185 1.850000 88.226028 146.970865 +186 1.860000 86.762667 145.703728 +187 1.870000 85.311950 144.436592 +188 1.880000 83.873924 143.169479 +189 1.890000 82.448566 141.902342 +190 1.900000 81.035875 140.635206 +191 1.910000 79.635875 139.368093 +192 1.920000 78.248518 138.100956 +193 1.930000 76.873853 136.833843 +194 1.940000 75.511831 135.566707 +195 1.950000 74.162500 134.299570 +196 1.960000 72.825860 133.032457 +197 1.970000 71.501864 131.765320 +198 1.980000 70.190535 130.498184 +199 1.990000 68.891898 129.231071 +200 2.000000 67.605927 127.963934 +201 2.010000 66.332624 126.696821 +202 2.020000 65.071989 125.429685 +203 2.030000 63.824020 124.162548 +204 2.040000 62.588743 122.895435 +205 2.050000 61.366109 121.628298 +206 2.060000 60.156166 120.361185 +207 2.070000 58.958891 119.094049 +208 2.080000 57.774283 117.826912 +209 2.090000 56.602366 116.559799 +210 2.100000 55.443093 115.292663 +211 2.110000 54.296511 114.025526 +212 2.120000 53.162572 112.758413 +213 2.130000 52.041324 111.491276 +214 2.140000 50.932768 110.224163 +215 2.150000 49.836855 108.957027 +216 2.160000 48.753609 107.689890 +217 2.170000 47.683054 106.422777 +218 2.180000 46.625167 105.155641 +219 2.190000 45.579947 103.888504 +220 2.200000 44.547395 102.621391 +221 2.210000 43.527510 101.354254 +222 2.220000 42.520315 100.087141 +223 2.230000 41.525765 98.820005 +224 2.240000 40.543905 97.552868 +225 2.250000 39.574713 96.285755 +226 2.260000 38.618188 95.018619 +227 2.270000 37.674331 93.751506 +228 2.280000 36.743164 92.484369 +229 2.290000 35.824641 91.217232 +230 2.300000 34.918810 89.950120 +231 2.310000 34.025645 88.682983 +232 2.320000 33.145148 87.415846 +233 2.330000 32.277342 86.148733 +234 2.340000 31.422180 84.881597 +235 2.350000 30.579708 83.614484 +236 2.360000 29.749880 82.347347 +237 2.370000 28.932744 81.080210 +238 2.380000 28.128298 79.813098 +239 2.390000 27.336496 78.545961 +240 2.400000 26.557361 77.278824 +241 2.410000 25.790918 76.011711 +242 2.420000 25.037141 74.744575 +243 2.430000 24.296033 73.477462 +244 2.440000 23.567584 72.210325 +245 2.450000 22.851816 70.943188 +246 2.460000 22.148721 69.676076 +247 2.470000 21.458296 68.408939 +248 2.480000 20.780543 67.141802 +249 2.490000 20.115459 65.874689 +250 2.500000 19.463047 64.607553 +251 2.510000 18.823308 63.340440 +252 2.520000 18.196240 62.073303 +253 2.530000 17.581843 60.806166 +254 2.540000 16.980117 59.539054 +255 2.550000 16.391061 58.271917 +256 2.560000 15.814677 57.004804 +257 2.570000 15.250966 55.737667 +258 2.580000 14.699924 54.470531 +259 2.590000 14.161554 53.203418 +260 2.600000 13.635856 51.936281 +261 2.610000 13.122830 50.669144 +262 2.620000 12.622474 49.402032 +263 2.630000 12.134787 48.134895 +264 2.640000 11.659775 46.867782 +265 2.650000 11.197433 45.600645 +266 2.660000 10.747763 44.333509 +267 2.670000 10.310762 43.066396 +268 2.680000 9.886434 41.799259 +269 2.690000 9.474778 40.532122 +270 2.700000 9.075791 39.265010 +271 2.710000 8.689477 37.997873 +272 2.720000 8.315834 36.730760 +273 2.730000 7.954861 35.463623 +274 2.740000 7.606561 34.196487 +275 2.750000 7.270932 32.927892 +276 2.760000 6.948004 31.654852 +277 2.770000 6.637835 30.377510 +278 2.780000 6.340454 29.101769 +279 2.790000 6.055801 27.837620 +280 2.800000 5.783702 26.597945 +281 2.810000 5.523841 25.396726 +282 2.820000 5.275767 24.244336 +283 2.830000 5.038956 23.144804 +284 2.840000 4.812870 22.097438 +285 2.850000 4.597005 21.099622 +286 2.860000 4.390880 20.148458 +287 2.870000 4.194037 19.241052 +288 2.880000 4.006056 18.374520 +289 2.890000 3.826546 17.546083 +290 2.900000 3.655136 16.753186 +291 2.910000 3.491482 15.993602 +292 2.920000 3.335263 15.265425 +293 2.930000 3.186174 14.567077 +294 2.940000 3.043922 13.897208 +295 2.950000 2.908229 13.254567 +296 2.960000 2.778831 12.637918 +297 2.970000 2.655471 12.046023 +298 2.980000 2.537911 11.477648 +299 2.990000 2.425918 10.931613 +300 3.000000 2.319278 10.406840 +301 3.010000 2.217782 9.902409 +302 3.020000 2.121230 9.417548 +303 3.030000 2.029431 8.951644 +304 3.040000 1.942197 8.504192 +305 3.050000 1.859347 8.074728 +306 3.060000 1.780703 7.662801 +307 3.070000 1.706091 7.267957 +308 3.080000 1.635343 6.889739 +309 3.090000 1.568296 6.527689 +310 3.100000 1.504790 6.181326 +311 3.110000 1.444670 5.850148 +312 3.120000 1.387787 5.533626 +313 3.130000 1.333997 5.231212 +314 3.140000 1.283163 4.942333 +315 3.150000 1.235151 4.666417 +316 3.160000 1.189834 4.402885 +317 3.170000 1.147093 4.151162 +318 3.180000 1.106811 3.910669 +319 3.190000 1.068879 3.680848 +320 3.200000 1.033194 3.461162 +321 3.210000 0.999656 3.251111 +322 3.220000 0.968172 3.050241 +323 3.230000 0.938651 2.858131 +324 3.240000 0.911009 2.674391 +325 3.250000 0.885163 2.498638 +326 3.260000 0.861036 2.330495 +327 3.270000 0.838554 2.169586 +328 3.280000 0.817645 2.015532 +329 3.290000 0.798243 1.867959 +330 3.300000 0.780285 1.726501 +331 3.310000 0.763713 1.590803 +332 3.320000 0.748469 1.460521 +333 3.330000 0.734502 1.335322 +334 3.340000 0.721763 1.214881 +335 3.350000 0.710205 1.098876 +336 3.360000 0.699785 0.986987 +337 3.370000 0.690465 0.878893 +338 3.380000 0.682208 0.774275 +339 3.390000 0.674980 0.672837 +340 3.400000 0.668751 0.574332 +341 3.410000 0.663493 0.478582 +342 3.420000 0.659179 0.385482 +343 3.430000 0.655783 0.294996 +344 3.440000 0.653279 0.207136 +345 3.450000 0.651641 0.121937 +346 3.460000 0.650841 0.039439 +347 3.470000 0.650852 -0.040323 +348 3.480000 0.651647 -0.117308 +349 3.490000 0.653198 -0.191459 +350 3.500000 0.655476 -0.262683 +351 3.510000 0.658452 -0.330833 +352 3.520000 0.662093 -0.395708 +353 3.530000 0.666366 -0.457054 +354 3.540000 0.671234 -0.514581 +355 3.550000 0.676658 -0.567979 +356 3.560000 0.682593 -0.616941 +357 3.570000 0.688996 -0.661156 +358 3.580000 0.695817 -0.700313 +359 3.590000 0.703003 -0.734100 +360 3.600000 0.710499 -0.762198 +361 3.610000 0.718246 -0.784280 +362 3.620000 0.726184 -0.800010 +363 3.630000 0.734247 -0.809045 +364 3.640000 0.742365 -0.811033 +365 3.650000 0.750467 -0.805623 +366 3.660000 0.758478 -0.792462 +367 3.670000 0.766317 -0.771195 +368 3.680000 0.773902 -0.741480 +369 3.690000 0.781146 -0.703040 +370 3.700000 0.787962 -0.655760 +371 3.710000 0.794261 -0.599742 +372 3.720000 0.799957 -0.535320 +373 3.730000 0.804968 -0.463042 +374 3.740000 0.809218 -0.383623 +375 3.750000 0.812640 -0.297840 +376 3.760000 0.815175 -0.206482 +377 3.770000 0.816770 -0.110338 +378 3.780000 0.817382 -0.010196 +379 3.790000 0.816974 0.093143 +380 3.800000 0.815519 0.198858 +381 3.810000 0.812997 0.306097 +382 3.820000 0.809397 0.413975 +383 3.830000 0.804717 0.521577 +384 3.840000 0.798965 0.627964 +385 3.850000 0.792158 0.732190 +386 3.860000 0.784321 0.833306 +387 3.870000 0.775492 0.930364 +388 3.880000 0.765714 1.022423 +389 3.890000 0.755043 1.108613 +390 3.900000 0.743542 1.188224 +391 3.910000 0.731279 1.260767 +392 3.920000 0.718326 1.325984 +393 3.930000 0.704759 1.383835 +394 3.940000 0.690650 1.434445 +395 3.950000 0.676070 1.478004 +396 3.960000 0.661090 1.514714 +397 3.970000 0.645776 1.544776 +398 3.980000 0.630194 1.568391 +399 3.990000 0.614408 1.585781 +400 4.000000 0.598479 1.597203 +401 4.010000 0.582464 1.602970 +402 4.020000 0.566419 1.603451 +403 4.030000 0.550395 1.599066 +404 4.040000 0.534438 1.590278 +405 4.050000 0.518589 1.577563 +406 4.060000 0.502887 1.561403 +407 4.070000 0.487361 1.542276 +408 4.080000 0.472041 1.520661 +409 4.090000 0.456948 1.497013 +410 4.100000 0.442101 1.471743 +411 4.110000 0.427513 1.445196 +412 4.120000 0.413197 1.417647 +413 4.130000 0.399160 1.389309 +414 4.140000 0.385411 1.360346 +415 4.150000 0.371953 1.330901 +416 4.160000 0.358793 1.301117 +417 4.170000 0.345931 1.271134 +418 4.180000 0.333370 1.241094 +419 4.190000 0.321109 1.211129 +420 4.200000 0.309147 1.181360 +421 4.210000 0.297482 1.151883 +422 4.220000 0.286110 1.122776 +423 4.230000 0.275027 1.094093 +424 4.240000 0.264228 1.065876 +425 4.250000 0.253709 1.038158 +426 4.260000 0.243465 1.010972 +427 4.270000 0.233490 0.984352 +428 4.280000 0.223778 0.958329 +429 4.290000 0.214323 0.932933 +430 4.300000 0.205119 0.908180 +431 4.310000 0.196159 0.884075 +432 4.320000 0.187438 0.860607 +433 4.330000 0.178947 0.837752 +434 4.340000 0.170683 0.815475 +435 4.350000 0.162638 0.793737 +436 4.360000 0.154808 0.772498 +437 4.370000 0.147188 0.751719 +438 4.380000 0.139773 0.731359 +439 4.390000 0.132561 0.711385 +440 4.400000 0.125546 0.691764 +441 4.410000 0.118725 0.672480 +442 4.420000 0.112096 0.653522 +443 4.430000 0.105655 0.634892 +444 4.440000 0.099398 0.616596 +445 4.450000 0.093323 0.598647 +446 4.460000 0.087425 0.581054 +447 4.470000 0.081702 0.563831 +448 4.480000 0.076149 0.546986 +449 4.490000 0.070762 0.530530 +450 4.500000 0.065538 0.514469 +451 4.510000 0.060473 0.498801 +452 4.520000 0.055562 0.483520 +453 4.530000 0.050802 0.468614 +454 4.540000 0.046190 0.454067 +455 4.550000 0.041721 0.439862 +456 4.560000 0.037393 0.425980 +457 4.570000 0.033201 0.412404 +458 4.580000 0.029145 0.399115 +459 4.590000 0.025219 0.386097 +460 4.600000 0.021423 0.373334 +461 4.610000 0.017752 0.360814 +462 4.620000 0.014206 0.348528 +463 4.630000 0.010782 0.336470 +464 4.640000 0.007477 0.324634 +465 4.650000 0.004289 0.313018 +466 4.660000 0.001217 0.301618 +467 4.670000 -0.001743 0.290430 +468 4.680000 -0.004592 0.279452 +469 4.690000 -0.007332 0.268679 +470 4.700000 -0.009966 0.258107 +471 4.710000 -0.012494 0.247732 +472 4.720000 -0.014920 0.237550 +473 4.730000 -0.017245 0.227555 +474 4.740000 -0.019471 0.217741 +475 4.750000 -0.021600 0.208103 +476 4.760000 -0.023633 0.198635 +477 4.770000 -0.025573 0.189332 +478 4.780000 -0.027420 0.180188 +479 4.790000 -0.029177 0.171198 +480 4.800000 -0.030844 0.162360 +481 4.810000 -0.032424 0.153675 +482 4.820000 -0.033917 0.145146 +483 4.830000 -0.035327 0.136782 +484 4.840000 -0.036653 0.128591 +485 4.850000 -0.037899 0.120584 +486 4.860000 -0.039065 0.112771 +487 4.870000 -0.040154 0.105163 +488 4.880000 -0.041168 0.097771 +489 4.890000 -0.042109 0.090602 +490 4.900000 -0.042980 0.083661 +491 4.910000 -0.043783 0.076950 +492 4.920000 -0.044519 0.070462 +493 4.930000 -0.045192 0.064187 +494 4.940000 -0.045803 0.058110 +495 4.950000 -0.046354 0.052216 +496 4.960000 -0.046847 0.046490 +497 4.970000 -0.047284 0.040914 +498 4.980000 -0.047665 0.035473 +499 4.990000 -0.047993 0.030154 +500 5.000000 -0.048269 0.024950 +501 5.010000 -0.048492 0.019859 +502 5.020000 -0.048666 0.014891 +503 5.030000 -0.048790 0.010060 +504 5.040000 -0.048867 0.005388 +505 5.050000 -0.048898 0.000898 +506 5.060000 -0.048885 -0.003386 +507 5.070000 -0.048830 -0.007440 +508 5.080000 -0.048736 -0.011241 +509 5.090000 -0.048605 -0.014768 +510 5.100000 -0.048441 -0.018009 +511 5.110000 -0.048245 -0.020960 +512 5.120000 -0.048022 -0.023629 +513 5.130000 -0.047773 -0.026033 +514 5.140000 -0.047501 -0.028198 +515 5.150000 -0.047209 -0.030151 +516 5.160000 -0.046898 -0.031921 +517 5.170000 -0.046570 -0.033536 +518 5.180000 -0.046227 -0.035024 +519 5.190000 -0.045870 -0.036412 +520 5.200000 -0.045499 -0.037718 +521 5.210000 -0.045115 -0.038958 +522 5.220000 -0.044720 -0.040135 +523 5.230000 -0.044313 -0.041250 +524 5.240000 -0.043895 -0.042293 +525 5.250000 -0.043467 -0.043257 +526 5.260000 -0.043030 -0.044132 +527 5.270000 -0.042584 -0.044907 +528 5.280000 -0.042131 -0.045574 +529 5.290000 -0.041673 -0.046124 +530 5.300000 -0.041209 -0.046554 +531 5.310000 -0.040742 -0.046865 +532 5.320000 -0.040272 -0.047063 +533 5.330000 -0.039800 -0.047159 +534 5.340000 -0.039328 -0.047168 +535 5.350000 -0.038857 -0.047108 +536 5.360000 -0.038386 -0.046995 +537 5.370000 -0.037917 -0.046847 +538 5.380000 -0.037449 -0.046679 +539 5.390000 -0.036983 -0.046509 +540 5.400000 -0.036519 -0.046351 +541 5.410000 -0.036056 -0.046219 +542 5.420000 -0.035595 -0.046122 +543 5.430000 -0.035134 -0.046070 +544 5.440000 -0.034673 -0.046071 +545 5.450000 -0.034213 -0.046131 +546 5.460000 -0.033751 -0.046258 +547 5.470000 -0.033287 -0.046457 +548 5.480000 -0.032822 -0.046736 +549 5.490000 -0.032353 -0.047101 +550 5.500000 -0.031880 -0.047557 +551 5.510000 -0.031402 -0.048104 +552 5.520000 -0.030918 -0.048745 +553 5.530000 -0.030427 -0.049476 +554 5.540000 -0.029928 -0.050293 +555 5.550000 -0.029421 -0.051193 +556 5.560000 -0.028904 -0.052171 +557 5.570000 -0.028377 -0.053222 +558 5.580000 -0.027840 -0.054343 +559 5.590000 -0.027290 -0.055528 +560 5.600000 -0.026729 -0.056773 +561 5.610000 -0.026155 -0.058075 +562 5.620000 -0.025568 -0.059432 +563 5.630000 -0.024966 -0.060839 +564 5.640000 -0.024351 -0.062296 +565 5.650000 -0.023720 -0.063799 +566 5.660000 -0.023075 -0.065347 +567 5.670000 -0.022414 -0.066937 +568 5.680000 -0.021736 -0.068567 +569 5.690000 -0.021042 -0.070235 +570 5.700000 -0.020331 -0.071936 +571 5.710000 -0.019603 -0.073665 +572 5.720000 -0.018858 -0.075416 +573 5.730000 -0.018095 -0.077180 +574 5.740000 -0.017315 -0.078947 +575 5.750000 -0.016516 -0.080709 +576 5.760000 -0.015700 -0.082454 +577 5.770000 -0.014867 -0.084173 +578 5.780000 -0.014017 -0.085857 +579 5.790000 -0.013150 -0.087497 +580 5.800000 -0.012267 -0.089086 +581 5.810000 -0.011368 -0.090621 +582 5.820000 -0.010455 -0.092105 +583 5.830000 -0.009526 -0.093540 +584 5.840000 -0.008584 -0.094934 +585 5.850000 -0.007628 -0.096296 +586 5.860000 -0.006658 -0.097632 +587 5.870000 -0.005675 -0.098952 +588 5.880000 -0.004679 -0.100263 +589 5.890000 -0.003670 -0.101570 +590 5.900000 -0.002647 -0.102873 +591 5.910000 -0.001612 -0.104163 +592 5.920000 -0.000564 -0.105422 +593 5.930000 0.000496 -0.106625 +594 5.940000 0.001568 -0.107740 +595 5.950000 0.002651 -0.108733 +596 5.960000 0.003743 -0.109570 +597 5.970000 0.004842 -0.110216 +598 5.980000 0.005947 -0.110637 +599 5.990000 0.007055 -0.110803 +600 6.000000 0.008163 -0.110691 +601 6.010000 0.009269 -0.110293 +602 6.020000 0.010369 -0.109608 +603 6.030000 0.011461 -0.108650 +604 6.040000 0.012542 -0.107441 +605 6.050000 0.013610 -0.106006 +606 6.060000 0.014662 -0.104370 +607 6.070000 0.015697 -0.102559 +608 6.080000 0.016714 -0.100599 +609 6.090000 0.017709 -0.098512 +610 6.100000 0.018684 -0.096319 +611 6.110000 0.019636 -0.094034 +612 6.120000 0.020564 -0.091664 +613 6.130000 0.021469 -0.089212 +614 6.140000 0.022349 -0.086677 +615 6.150000 0.023203 -0.084055 +616 6.160000 0.024030 -0.081343 +617 6.170000 0.024829 -0.078537 +618 6.180000 0.025601 -0.075634 +619 6.190000 0.026342 -0.072631 +620 6.200000 0.027053 -0.069528 +621 6.210000 0.027733 -0.066329 +622 6.220000 0.028380 -0.063038 +623 6.230000 0.028993 -0.059666 +624 6.240000 0.029573 -0.056224 +625 6.250000 0.030118 -0.052725 +626 6.260000 0.030628 -0.049181 +627 6.270000 0.031102 -0.045606 +628 6.280000 0.031540 -0.042010 +629 6.290000 0.031942 -0.038407 +630 6.300000 0.032308 -0.034803 +631 6.310000 0.032638 -0.031205 +632 6.320000 0.032932 -0.027611 +633 6.330000 0.033190 -0.024020 +634 6.340000 0.033412 -0.020425 +635 6.350000 0.033599 -0.016818 +636 6.360000 0.033749 -0.013192 +637 6.370000 0.033862 -0.009539 +638 6.380000 0.033939 -0.005852 +639 6.390000 0.033979 -0.002127 +640 6.400000 0.033982 0.001636 +641 6.410000 0.033947 0.005428 +642 6.420000 0.033873 0.009232 +643 6.430000 0.033762 0.013023 +644 6.440000 0.033613 0.016771 +645 6.450000 0.033427 0.020442 +646 6.460000 0.033204 0.024004 +647 6.470000 0.032947 0.027423 +648 6.480000 0.032656 0.030666 +649 6.490000 0.032333 0.033704 +650 6.500000 0.031982 0.036519 +651 6.510000 0.031603 0.039104 +652 6.520000 0.031199 0.041467 +653 6.530000 0.030774 0.043629 +654 6.540000 0.030327 0.045620 +655 6.550000 0.029861 0.047474 +656 6.560000 0.029377 0.049226 +657 6.570000 0.028877 0.050911 +658 6.580000 0.028359 0.052564 +659 6.590000 0.027825 0.054214 +660 6.600000 0.027275 0.055882 +661 6.610000 0.026708 0.057578 +662 6.620000 0.026123 0.059297 +663 6.630000 0.025522 0.061020 +664 6.640000 0.024903 0.062722 +665 6.650000 0.024267 0.064370 +666 6.660000 0.023616 0.065936 +667 6.670000 0.022949 0.067386 +668 6.680000 0.022268 0.068690 +669 6.690000 0.021575 0.069821 +670 6.700000 0.020871 0.070759 +671 6.710000 0.020160 0.071496 +672 6.720000 0.019442 0.072035 +673 6.730000 0.018719 0.072389 +674 6.740000 0.017994 0.072581 +675 6.750000 0.017267 0.072636 +676 6.760000 0.016541 0.072579 +677 6.770000 0.015816 0.072436 +678 6.780000 0.015092 0.072233 +679 6.790000 0.014371 0.071993 +680 6.800000 0.013652 0.071736 +681 6.810000 0.012936 0.071475 +682 6.820000 0.012223 0.071218 +683 6.830000 0.011512 0.070968 +684 6.840000 0.010804 0.070721 +685 6.850000 0.010098 0.070475 +686 6.860000 0.009394 0.070224 +687 6.870000 0.008693 0.069964 +688 6.880000 0.007995 0.069692 +689 6.890000 0.007299 0.069402 +690 6.900000 0.006607 0.069091 +691 6.910000 0.005917 0.068754 +692 6.920000 0.005232 0.068386 +693 6.930000 0.004550 0.067982 +694 6.940000 0.003872 0.067537 +695 6.950000 0.003199 0.067046 +696 6.960000 0.002531 0.066504 +697 6.970000 0.001869 0.065906 +698 6.980000 0.001213 0.065246 +699 6.990000 0.000564 0.064521 +700 7.000000 -0.000077 0.063729 +701 7.010000 -0.000711 0.062870 +702 7.020000 -0.001335 0.061948 +703 7.030000 -0.001950 0.060969 +704 7.040000 -0.002554 0.059943 +705 7.050000 -0.003148 0.058877 +706 7.060000 -0.003732 0.057783 +707 7.070000 -0.004304 0.056669 +708 7.080000 -0.004865 0.055544 +709 7.090000 -0.005415 0.054418 +710 7.100000 -0.005953 0.053298 +711 7.110000 -0.006481 0.052191 +712 7.120000 -0.006997 0.051099 +713 7.130000 -0.007503 0.050026 +714 7.140000 -0.007998 0.048972 +715 7.150000 -0.008482 0.047939 +716 7.160000 -0.008957 0.046926 +717 7.170000 -0.009421 0.045934 +718 7.180000 -0.009875 0.044963 +719 7.190000 -0.010320 0.044014 +720 7.200000 -0.010756 0.043088 +721 7.210000 -0.011182 0.042185 +722 7.220000 -0.011599 0.041306 +723 7.230000 -0.012008 0.040453 +724 7.240000 -0.012408 0.039626 +725 7.250000 -0.012801 0.038827 +726 7.260000 -0.013185 0.038058 +727 7.270000 -0.013562 0.037319 +728 7.280000 -0.013931 0.036612 +729 7.290000 -0.014294 0.035937 +730 7.300000 -0.014650 0.035295 +731 7.310000 -0.015000 0.034682 +732 7.320000 -0.015344 0.034095 +733 7.330000 -0.015682 0.033528 +734 7.340000 -0.016014 0.032974 +735 7.350000 -0.016341 0.032425 +736 7.360000 -0.016663 0.031873 +737 7.370000 -0.016979 0.031312 +738 7.380000 -0.017289 0.030733 +739 7.390000 -0.017593 0.030130 +740 7.400000 -0.017892 0.029499 +741 7.410000 -0.018183 0.028840 +742 7.420000 -0.018468 0.028153 +743 7.430000 -0.018746 0.027447 +744 7.440000 -0.019017 0.026729 +745 7.450000 -0.019281 0.026008 +746 7.460000 -0.019537 0.025295 +747 7.470000 -0.019787 0.024598 +748 7.480000 -0.020029 0.023927 +749 7.490000 -0.020265 0.023290 +750 7.500000 -0.020495 0.022693 +751 7.510000 -0.020719 0.022137 +752 7.520000 -0.020938 0.021618 +753 7.530000 -0.021152 0.021131 +754 7.540000 -0.021361 0.020667 +755 7.550000 -0.021565 0.020214 +756 7.560000 -0.021765 0.019761 +757 7.570000 -0.021960 0.019298 +758 7.580000 -0.022151 0.018814 +759 7.590000 -0.022336 0.018300 +760 7.600000 -0.022517 0.017748 +761 7.610000 -0.022691 0.017156 +762 7.620000 -0.022860 0.016525 +763 7.630000 -0.023022 0.015859 +764 7.640000 -0.023177 0.015166 +765 7.650000 -0.023325 0.014453 +766 7.660000 -0.023466 0.013730 +767 7.670000 -0.023600 0.013006 +768 7.680000 -0.023726 0.012288 +769 7.690000 -0.023846 0.011585 +770 7.700000 -0.023958 0.010901 +771 7.710000 -0.024064 0.010238 +772 7.720000 -0.024163 0.009595 +773 7.730000 -0.024256 0.008965 +774 7.740000 -0.024342 0.008342 +775 7.750000 -0.024422 0.007717 +776 7.760000 -0.024496 0.007080 +777 7.770000 -0.024564 0.006423 +778 7.780000 -0.024625 0.005738 +779 7.790000 -0.024679 0.005016 +780 7.800000 -0.024725 0.004252 +781 7.810000 -0.024764 0.003443 +782 7.820000 -0.024794 0.002591 +783 7.830000 -0.024816 0.001698 +784 7.840000 -0.024828 0.000771 +785 7.850000 -0.024831 -0.000184 +786 7.860000 -0.024824 -0.001159 +787 7.870000 -0.024808 -0.002149 +788 7.880000 -0.024781 -0.003144 +789 7.890000 -0.024745 -0.004140 +790 7.900000 -0.024699 -0.005129 +791 7.910000 -0.024642 -0.006106 +792 7.920000 -0.024576 -0.007064 +793 7.930000 -0.024501 -0.007999 +794 7.940000 -0.024416 -0.008906 +795 7.950000 -0.024323 -0.009780 +796 7.960000 -0.024221 -0.010616 +797 7.970000 -0.024111 -0.011409 +798 7.980000 -0.023993 -0.012156 +799 7.990000 -0.023867 -0.012852 +800 8.000000 -0.023736 -0.013496 +801 8.010000 -0.023598 -0.014089 +802 8.020000 -0.023454 -0.014635 +803 8.030000 -0.023305 -0.015142 +804 8.040000 -0.023151 -0.015618 +805 8.050000 -0.022993 -0.016075 +806 8.060000 -0.022830 -0.016522 +807 8.070000 -0.022662 -0.016969 +808 8.080000 -0.022490 -0.017428 +809 8.090000 -0.022314 -0.017906 +810 8.100000 -0.022132 -0.018412 +811 8.110000 -0.021945 -0.018949 +812 8.120000 -0.021753 -0.019519 +813 8.130000 -0.021555 -0.020118 +814 8.140000 -0.021351 -0.020743 +815 8.150000 -0.021140 -0.021390 +816 8.160000 -0.020923 -0.022051 +817 8.170000 -0.020699 -0.022723 +818 8.180000 -0.020468 -0.023400 +819 8.190000 -0.020231 -0.024077 +820 8.200000 -0.019987 -0.024748 +821 8.210000 -0.019736 -0.025408 +822 8.220000 -0.019479 -0.026051 +823 8.230000 -0.019215 -0.026672 +824 8.240000 -0.018945 -0.027265 +825 8.250000 -0.018670 -0.027824 +826 8.260000 -0.018389 -0.028344 +827 8.270000 -0.018103 -0.028819 +828 8.280000 -0.017812 -0.029243 +829 8.290000 -0.017518 -0.029612 +830 8.300000 -0.017220 -0.029924 +831 8.310000 -0.016920 -0.030178 +832 8.320000 -0.016617 -0.030381 +833 8.330000 -0.016312 -0.030537 +834 8.340000 -0.016006 -0.030658 +835 8.350000 -0.015699 -0.030753 +836 8.360000 -0.015391 -0.030833 +837 8.370000 -0.015082 -0.030908 +838 8.380000 -0.014773 -0.030989 +839 8.390000 -0.014462 -0.031085 +840 8.400000 -0.014151 -0.031203 +841 8.410000 -0.013838 -0.031343 +842 8.420000 -0.013524 -0.031506 +843 8.430000 -0.013208 -0.031684 +844 8.440000 -0.012890 -0.031869 +845 8.450000 -0.012571 -0.032051 +846 8.460000 -0.012249 -0.032219 +847 8.470000 -0.011926 -0.032364 +848 8.480000 -0.011602 -0.032476 +849 8.490000 -0.011277 -0.032545 +850 8.500000 -0.010951 -0.032564 +851 8.510000 -0.010626 -0.032530 +852 8.520000 -0.010301 -0.032441 +853 8.530000 -0.009977 -0.032300 +854 8.540000 -0.009655 -0.032112 +855 8.550000 -0.009335 -0.031881 +856 8.560000 -0.009017 -0.031613 +857 8.570000 -0.008702 -0.031313 +858 8.580000 -0.008391 -0.030987 +859 8.590000 -0.008083 -0.030640 +860 8.600000 -0.007778 -0.030276 +861 8.610000 -0.007477 -0.029900 +862 8.620000 -0.007180 -0.029516 +863 8.630000 -0.006887 -0.029127 +864 8.640000 -0.006597 -0.028735 +865 8.650000 -0.006312 -0.028342 +866 8.660000 -0.006031 -0.027951 +867 8.670000 -0.005753 -0.027565 +868 8.680000 -0.005479 -0.027186 +869 8.690000 -0.005209 -0.026816 +870 8.700000 -0.004943 -0.026456 +871 8.710000 -0.004680 -0.026104 +872 8.720000 -0.004421 -0.025760 +873 8.730000 -0.004165 -0.025420 +874 8.740000 -0.003912 -0.025080 +875 8.750000 -0.003663 -0.024735 +876 8.760000 -0.003418 -0.024380 +877 8.770000 -0.003176 -0.024009 +878 8.780000 -0.002938 -0.023620 +879 8.790000 -0.002703 -0.023207 +880 8.800000 -0.002473 -0.022768 +881 8.810000 -0.002248 -0.022304 +882 8.820000 -0.002027 -0.021818 +883 8.830000 -0.001812 -0.021314 +884 8.840000 -0.001601 -0.020800 +885 8.850000 -0.001396 -0.020284 +886 8.860000 -0.001195 -0.019774 +887 8.870000 -0.001000 -0.019278 +888 8.880000 -0.000810 -0.018802 +889 8.890000 -0.000624 -0.018355 +890 8.900000 -0.000443 -0.017940 +891 8.910000 -0.000265 -0.017557 +892 8.920000 -0.000092 -0.017201 +893 8.930000 0.000079 -0.016866 +894 8.940000 0.000246 -0.016540 +895 8.950000 0.000410 -0.016211 +896 8.960000 0.000570 -0.015867 +897 8.970000 0.000727 -0.015496 +898 8.980000 0.000880 -0.015087 +899 8.990000 0.001029 -0.014630 +900 9.000000 0.001173 -0.014119 +901 9.010000 0.001311 -0.013555 +902 9.020000 0.001444 -0.012947 +903 9.030000 0.001570 -0.012308 +904 9.040000 0.001690 -0.011656 +905 9.050000 0.001803 -0.011012 +906 9.060000 0.001910 -0.010397 +907 9.070000 0.002011 -0.009831 +908 9.080000 0.002107 -0.009335 +909 9.090000 0.002198 -0.008926 +910 9.100000 0.002285 -0.008615 +911 9.110000 0.002370 -0.008400 +912 9.120000 0.002453 -0.008272 +913 9.130000 0.002535 -0.008211 +914 9.140000 0.002617 -0.008188 +915 9.150000 0.002699 -0.008174 +916 9.160000 0.002781 -0.008137 +917 9.170000 0.002862 -0.008047 +918 9.180000 0.002942 -0.007873 +919 9.190000 0.003019 -0.007588 +920 9.200000 0.003094 -0.007176 +921 9.210000 0.003163 -0.006634 +922 9.220000 0.003226 -0.005970 +923 9.230000 0.003282 -0.005209 +924 9.240000 0.003330 -0.004384 +925 9.250000 0.003370 -0.003531 +926 9.260000 0.003401 -0.002688 +927 9.270000 0.003424 -0.001893 +928 9.280000 0.003439 -0.001182 +929 9.290000 0.003447 -0.000589 +930 9.300000 0.003451 -0.000137 +931 9.310000 0.003450 0.000164 +932 9.320000 0.003447 0.000317 +933 9.330000 0.003444 0.000338 +934 9.340000 0.003441 0.000252 +935 9.350000 0.003439 0.000089 +936 9.360000 0.003439 -0.000121 +937 9.370000 0.003441 -0.000347 +938 9.380000 0.003446 -0.000561 +939 9.390000 0.003452 -0.000734 +940 9.400000 0.003461 -0.000848 +941 9.410000 0.003469 -0.000890 +942 9.420000 0.003478 -0.000861 +943 9.430000 0.003487 -0.000768 +944 9.440000 0.003494 -0.000626 +945 9.450000 0.003499 -0.000454 +946 9.460000 0.003503 -0.000269 +947 9.470000 0.003504 -0.000089 +948 9.480000 0.003505 0.000066 +949 9.490000 0.003503 0.000182 +950 9.500000 0.003501 0.000246 +951 9.510000 0.003498 0.000252 +952 9.520000 0.003496 0.000202 +953 9.530000 0.003494 0.000102 +954 9.540000 0.003494 -0.000037 +955 9.550000 0.003495 -0.000202 +956 9.560000 0.003498 -0.000380 +957 9.570000 0.003503 -0.000558 +958 9.580000 0.003509 -0.000722 +959 9.590000 0.003517 -0.000860 +960 9.600000 0.003526 -0.000963 +961 9.610000 0.003536 -0.001024 +962 9.620000 0.003547 -0.001041 +963 9.630000 0.003557 -0.001014 +964 9.640000 0.003567 -0.000947 +965 9.650000 0.003576 -0.000842 +966 9.660000 0.003584 -0.000704 +967 9.670000 0.003590 -0.000538 +968 9.680000 0.003595 -0.000348 +969 9.690000 0.003597 -0.000137 +970 9.700000 0.003597 0.000089 +971 9.710000 0.003595 0.000322 +972 9.720000 0.003591 0.000557 +973 9.730000 0.003584 0.000784 +974 9.740000 0.003575 0.000993 +975 9.750000 0.003564 0.001175 +976 9.760000 0.003552 0.001321 +977 9.770000 0.003538 0.001419 +978 9.780000 0.003523 0.001461 +979 9.790000 0.003509 0.001439 +980 9.800000 0.003495 0.001348 +981 9.810000 0.003482 0.001190 +982 9.820000 0.003471 0.000971 +983 9.830000 0.003462 0.000703 +984 9.840000 0.003457 0.000402 +985 9.850000 0.003454 0.000085 +986 9.860000 0.003455 -0.000231 +987 9.870000 0.003459 -0.000528 +988 9.880000 0.003466 -0.000788 +989 9.890000 0.003475 -0.000997 +990 9.900000 0.003485 -0.001143 +991 9.910000 0.003497 -0.001220 +992 9.920000 0.003510 -0.001230 +993 9.930000 0.003522 -0.001179 +994 9.940000 0.003533 -0.001079 +995 9.950000 0.003544 -0.000942 +996 9.960000 0.003552 -0.000781 +997 9.970000 0.003559 -0.000609 +998 9.980000 0.003564 -0.000439 +999 9.990000 0.003568 -0.000284 +1000 10.000000 0.003570 -0.000151 +1001 10.010000 0.003571 -0.000045 +1002 10.020000 0.003571 0.000033 +1003 10.030000 0.003570 0.000085 +1004 10.040000 0.003569 0.000120 +1005 10.050000 0.003568 0.000143 +1006 10.060000 0.003566 0.000163 +1007 10.070000 0.003565 0.000187 +1008 10.080000 0.003563 0.000223 +1009 10.090000 0.003560 0.000278 +1010 10.100000 0.003557 0.000355 +1011 10.110000 0.003553 0.000455 +1012 10.120000 0.003548 0.000576 +1013 10.130000 0.003542 0.000713 +1014 10.140000 0.003534 0.000858 +1015 10.150000 0.003525 0.001000 +1016 10.160000 0.003514 0.001133 +1017 10.170000 0.003502 0.001245 +1018 10.180000 0.003489 0.001328 +1019 10.190000 0.003475 0.001376 +1020 10.200000 0.003461 0.001381 +1021 10.210000 0.003448 0.001344 +1022 10.220000 0.003435 0.001268 +1023 10.230000 0.003422 0.001159 +1024 10.240000 0.003411 0.001028 +1025 10.250000 0.003402 0.000884 +1026 10.260000 0.003394 0.000740 +1027 10.270000 0.003387 0.000606 +1028 10.280000 0.003382 0.000493 +1029 10.290000 0.003377 0.000412 +1030 10.300000 0.003373 0.000369 +1031 10.310000 0.003370 0.000369 +1032 10.320000 0.003366 0.000412 +1033 10.330000 0.003361 0.000496 +1034 10.340000 0.003356 0.000616 +1035 10.350000 0.003349 0.000764 +1036 10.360000 0.003341 0.000935 +1037 10.370000 0.003330 0.001123 +1038 10.380000 0.003318 0.001320 +1039 10.390000 0.003304 0.001521 +1040 10.400000 0.003288 0.001720 +1041 10.410000 0.003270 0.001912 +1042 10.420000 0.003250 0.002091 +1043 10.430000 0.003228 0.002255 +1044 10.440000 0.003204 0.002399 +1045 10.450000 0.003180 0.002520 +1046 10.460000 0.003154 0.002615 +1047 10.470000 0.003128 0.002679 +1048 10.480000 0.003100 0.002710 +1049 10.490000 0.003073 0.002706 +1050 10.500000 0.003046 0.002665 +1051 10.510000 0.003020 0.002590 +1052 10.520000 0.002995 0.002487 +1053 10.530000 0.002970 0.002362 +1054 10.540000 0.002947 0.002227 +1055 10.550000 0.002926 0.002091 +1056 10.560000 0.002906 0.001965 +1057 10.570000 0.002886 0.001861 +1058 10.580000 0.002868 0.001790 +1059 10.590000 0.002851 0.001759 +1060 10.600000 0.002833 0.001777 +1061 10.610000 0.002815 0.001845 +1062 10.620000 0.002796 0.001963 +1063 10.630000 0.002776 0.002124 +1064 10.640000 0.002754 0.002320 +1065 10.650000 0.002729 0.002543 +1066 10.660000 0.002703 0.002781 +1067 10.670000 0.002674 0.003025 +1068 10.680000 0.002642 0.003265 +1069 10.690000 0.002609 0.003493 +1070 10.700000 0.002573 0.003701 +1071 10.710000 0.002535 0.003882 +1072 10.720000 0.002495 0.004034 +1073 10.730000 0.002454 0.004154 +1074 10.740000 0.002412 0.004242 +1075 10.750000 0.002369 0.004299 +1076 10.760000 0.002326 0.004325 +1077 10.770000 0.002283 0.004321 +1078 10.780000 0.002239 0.004287 +1079 10.790000 0.002197 0.004226 +1080 10.800000 0.002155 0.004139 +1081 10.810000 0.002114 0.004030 +1082 10.820000 0.002074 0.003904 +1083 10.830000 0.002036 0.003766 +1084 10.840000 0.001999 0.003625 +1085 10.850000 0.001963 0.003486 +1086 10.860000 0.001929 0.003358 +1087 10.870000 0.001896 0.003246 +1088 10.880000 0.001864 0.003158 +1089 10.890000 0.001833 0.003100 +1090 10.900000 0.001802 0.003074 +1091 10.910000 0.001772 0.003082 +1092 10.920000 0.001741 0.003119 +1093 10.930000 0.001709 0.003182 +1094 10.940000 0.001677 0.003263 +1095 10.950000 0.001644 0.003354 +1096 10.960000 0.001610 0.003447 +1097 10.970000 0.001575 0.003534 +1098 10.980000 0.001539 0.003608 +1099 10.990000 0.001503 0.003662 +1100 11.000000 0.001466 0.003694 +1101 11.010000 0.001429 0.003702 +1102 11.020000 0.001392 0.003687 +1103 11.030000 0.001355 0.003653 +1104 11.040000 0.001319 0.003606 +1105 11.050000 0.001283 0.003554 +1106 11.060000 0.001248 0.003502 +1107 11.070000 0.001213 0.003455 +1108 11.080000 0.001179 0.003421 +1109 11.090000 0.001145 0.003402 +1110 11.100000 0.001111 0.003403 +1111 11.110000 0.001077 0.003422 +1112 11.120000 0.001042 0.003459 +1113 11.130000 0.001007 0.003508 +1114 11.140000 0.000972 0.003564 +1115 11.150000 0.000936 0.003620 +1116 11.160000 0.000900 0.003672 +1117 11.170000 0.000863 0.003713 +1118 11.180000 0.000825 0.003739 +1119 11.190000 0.000788 0.003745 +1120 11.200000 0.000751 0.003730 +1121 11.210000 0.000713 0.003692 +1122 11.220000 0.000677 0.003631 +1123 11.230000 0.000641 0.003552 +1124 11.240000 0.000606 0.003456 +1125 11.250000 0.000572 0.003348 +1126 11.260000 0.000539 0.003232 +1127 11.270000 0.000507 0.003110 +1128 11.280000 0.000477 0.002985 +1129 11.290000 0.000447 0.002861 +1130 11.300000 0.000419 0.002738 +1131 11.310000 0.000393 0.002619 +1132 11.320000 0.000367 0.002503 +1133 11.330000 0.000342 0.002391 +1134 11.340000 0.000319 0.002280 +1135 11.350000 0.000297 0.002171 +1136 11.360000 0.000276 0.002063 +1137 11.370000 0.000256 0.001954 +1138 11.380000 0.000237 0.001844 +1139 11.390000 0.000219 0.001734 +1140 11.400000 0.000202 0.001622 +1141 11.410000 0.000186 0.001510 +1142 11.420000 0.000172 0.001398 +1143 11.430000 0.000158 0.001288 +1144 11.440000 0.000146 0.001181 +1145 11.450000 0.000135 0.001078 +1146 11.460000 0.000124 0.000981 +1147 11.470000 0.000115 0.000891 +1148 11.480000 0.000107 0.000808 +1149 11.490000 0.000099 0.000733 +1150 11.500000 0.000092 0.000666 +1151 11.510000 0.000086 0.000608 +1152 11.520000 0.000080 0.000557 +1153 11.530000 0.000074 0.000514 +1154 11.540000 0.000069 0.000478 +1155 11.550000 0.000065 0.000448 +1156 11.560000 0.000061 0.000424 +1157 11.570000 0.000056 0.000405 +1158 11.580000 0.000052 0.000389 +1159 11.590000 0.000049 0.000378 +1160 11.600000 0.000045 0.000369 +1161 11.610000 0.000041 0.000362 +1162 11.620000 0.000038 0.000355 +1163 11.630000 0.000034 0.000348 +1164 11.640000 0.000031 0.000340 +1165 11.650000 0.000027 0.000330 +1166 11.660000 0.000024 0.000317 +1167 11.670000 0.000021 0.000301 +1168 11.680000 0.000018 0.000282 +1169 11.690000 0.000015 0.000260 +1170 11.700000 0.000013 0.000236 +1171 11.710000 0.000011 0.000210 +1172 11.720000 0.000009 0.000184 +1173 11.730000 0.000007 0.000158 +1174 11.740000 0.000005 0.000133 +1175 11.750000 0.000004 0.000110 +1176 11.760000 0.000003 0.000090 +1177 11.770000 0.000002 0.000072 +1178 11.780000 0.000002 0.000057 +1179 11.790000 0.000001 0.000044 +1180 11.800000 0.000001 0.000034 +1181 11.810000 0.000001 0.000025 +1182 11.820000 0.000000 0.000019 +1183 11.830000 0.000000 0.000014 +1184 11.840000 0.000000 0.000010 +1185 11.850000 0.000000 0.000007 +1186 11.860000 0.000000 0.000004 +1187 11.870000 0.000000 0.000003 +1188 11.880000 0.000000 0.000001 +1189 11.890000 0.000000 0.000000 +1190 11.900000 0.000000 0.000000 +1191 11.910000 0.000000 0.000000 +1192 11.920000 0.000000 0.000000 +1193 11.930000 0.000000 0.000000 +1194 11.940000 0.000000 0.000000 +1195 11.950000 0.000000 0.000000 +1196 11.960000 0.000000 0.000000 +1197 11.970000 0.000000 0.000000 +1198 11.980000 0.000000 0.000000 +1199 11.990000 0.000000 0.000000 +1200 12.000000 0.000000 0.000000 +1201 12.010000 0.000000 0.000000 +1202 12.020000 0.000000 0.000000 +1203 12.030000 0.000000 0.000000 +1204 12.040000 0.000000 0.000000 +1205 12.050000 0.000000 0.000000 +1206 12.060000 0.000000 0.000000 +1207 12.070000 0.000000 0.000000 +1208 12.080000 0.000000 0.000000 +1209 12.090000 0.000000 0.000000 +1210 12.100000 0.000000 0.000000 +1211 12.110000 0.000000 0.000000 +1212 12.120000 0.000000 0.000000 +1213 12.130000 0.000000 0.000000 +1214 12.140000 0.000000 0.000000 +1215 12.150000 0.000000 0.000000 +1216 12.160000 0.000000 0.000000 +1217 12.170000 0.000000 0.000000 +1218 12.180000 0.000000 0.000000 +1219 12.190000 0.000000 0.000000 +1220 12.200000 0.000000 0.000000 +1221 12.210000 0.000000 0.000000 +1222 12.220000 0.000000 0.000000 +1223 12.230000 0.000000 0.000000 +1224 12.240000 0.000000 0.000000 +1225 12.250000 0.000000 0.000000 +1226 12.260000 0.000000 0.000000 +1227 12.270000 0.000000 0.000000 +1228 12.280000 0.000000 0.000000 +1229 12.290000 0.000000 0.000000 +1230 12.300000 0.000000 0.000000 +1231 12.310000 0.000000 0.000000 +1232 12.320000 0.000000 0.000000 +1233 12.330000 0.000000 0.000000 +1234 12.340000 0.000000 0.000000 +1235 12.350000 0.000000 0.000000 +1236 12.360000 0.000000 0.000000 +1237 12.370000 0.000000 0.000000 +1238 12.380000 0.000000 0.000000 +1239 12.390000 0.000000 0.000000 +1240 12.400000 0.000000 0.000000 +1241 12.410000 0.000000 0.000000 +1242 12.420000 0.000000 0.000000 +1243 12.430000 0.000000 0.000000 +1244 12.440000 0.000000 0.000000 +1245 12.450000 0.000000 0.000000 +1246 12.460000 0.000000 0.000000 +1247 12.470000 0.000000 0.000000 +1248 12.480000 0.000000 0.000000 +1249 12.490000 0.000000 0.000000 +1250 12.500000 0.000000 0.000000 +1251 12.510000 0.000000 0.000000 +1252 12.520000 0.000000 0.000000 +1253 12.530000 0.000000 0.000000 +1254 12.540000 0.000000 0.000000 +1255 12.550000 0.000000 0.000000 +1256 12.560000 0.000000 0.000000 +1257 12.570000 0.000000 0.000000 +1258 12.580000 0.000000 0.000000 +1259 12.590000 0.000000 0.000000 +1260 12.600000 0.000000 0.000000 +1261 12.610000 0.000000 0.000000 +1262 12.620000 0.000000 0.000000 +1263 12.630000 0.000000 0.000000 +1264 12.640000 0.000000 0.000000 +1265 12.650000 0.000000 0.000000 +1266 12.660000 0.000000 0.000000 +1267 12.670000 0.000000 0.000000 +1268 12.680000 0.000000 0.000000 +1269 12.690000 0.000000 0.000000 +1270 12.700000 0.000000 0.000000 +1271 12.710000 0.000000 0.000000 +1272 12.720000 0.000000 0.000000 +1273 12.730000 0.000000 0.000000 +1274 12.740000 0.000000 0.000000 +1275 12.750000 0.000000 0.000000 +1276 12.760000 0.000000 0.000000 +1277 12.770000 0.000000 0.000000 +1278 12.780000 0.000000 0.000000 +1279 12.790000 0.000000 0.000000 +1280 12.800000 0.000000 0.000000 +1281 12.810000 0.000000 0.000000 +1282 12.820000 0.000000 0.000000 +1283 12.830000 0.000000 0.000000 +1284 12.840000 0.000000 0.000000 +1285 12.850000 0.000000 0.000000 +1286 12.860000 0.000000 0.000000 +1287 12.870000 0.000000 0.000000 +1288 12.880000 0.000000 0.000000 +1289 12.890000 0.000000 0.000000 +1290 12.900000 0.000000 0.000000 +1291 12.910000 0.000000 0.000000 +1292 12.920000 0.000000 0.000000 +1293 12.930000 0.000000 0.000000 +1294 12.940000 0.000000 0.000000 +1295 12.950000 0.000000 0.000000 +1296 12.960000 0.000000 0.000000 +1297 12.970000 0.000000 0.000000 +1298 12.980000 0.000000 0.000000 +1299 12.990000 0.000000 0.000000 +1300 13.000000 0.000000 0.000000 +1301 13.010000 0.000000 0.000000 +1302 13.020000 0.000000 0.000000 +1303 13.030000 0.000000 0.000000 +1304 13.040000 0.000000 0.000000 +1305 13.050000 0.000000 0.000000 +1306 13.060000 0.000000 0.000000 +1307 13.070000 0.000000 0.000000 +1308 13.080000 0.000000 0.000000 +1309 13.090000 0.000000 0.000000 +1310 13.100000 0.000000 0.000000 +1311 13.110000 0.000000 0.000000 +1312 13.120000 0.000000 0.000000 +1313 13.130000 0.000000 0.000000 +1314 13.140000 0.000000 0.000000 +1315 13.150000 0.000000 0.000000 +1316 13.160000 0.000000 0.000000 +1317 13.170000 0.000000 0.000000 +1318 13.180000 0.000000 0.000000 +1319 13.190000 0.000000 0.000000 +1320 13.200000 0.000000 0.000000 +1321 13.210000 0.000000 0.000000 +1322 13.220000 0.000000 0.000000 +1323 13.230000 0.000000 0.000000 +1324 13.240000 0.000000 0.000000 +1325 13.250000 0.000000 0.000000 +1326 13.260000 0.000000 0.000000 +1327 13.270000 0.000000 0.000000 +1328 13.280000 0.000000 0.000000 +1329 13.290000 0.000000 0.000000 +1330 13.300000 0.000000 0.000000 +1331 13.310000 0.000000 0.000000 +1332 13.320000 0.000000 0.000000 +1333 13.330000 0.000000 0.000000 +1334 13.340000 0.000000 0.000000 +1335 13.350000 0.000000 0.000000 +1336 13.360000 0.000000 0.000000 +1337 13.370000 0.000000 0.000000 +1338 13.380000 0.000000 0.000000 +1339 13.390000 0.000000 0.000000 +1340 13.400000 0.000000 0.000000 +1341 13.410000 0.000000 0.000000 +1342 13.420000 0.000000 0.000000 +1343 13.430000 0.000000 0.000000 +1344 13.440000 0.000000 0.000000 +1345 13.450000 0.000000 0.000000 +1346 13.460000 0.000000 0.000000 +1347 13.470000 0.000000 0.000000 +1348 13.480000 0.000000 0.000000 +1349 13.490000 0.000000 0.000000 +1350 13.500000 0.000000 0.000000 +1351 13.510000 0.000000 0.000000 +1352 13.520000 0.000000 0.000000 +1353 13.530000 0.000000 0.000000 +1354 13.540000 0.000000 0.000000 +1355 13.550000 0.000000 0.000000 +1356 13.560000 0.000000 0.000000 +1357 13.570000 0.000000 0.000000 +1358 13.580000 0.000000 0.000000 +1359 13.590000 0.000000 0.000000 +1360 13.600000 0.000000 0.000000 +1361 13.610000 0.000000 0.000000 +1362 13.620000 0.000000 0.000000 +1363 13.630000 0.000000 0.000000 +1364 13.640000 0.000000 0.000000 +1365 13.650000 0.000000 0.000000 +1366 13.660000 0.000000 0.000000 +1367 13.670000 0.000000 0.000000 +1368 13.680000 0.000000 0.000000 +1369 13.690000 0.000000 0.000000 +1370 13.700000 0.000000 0.000000 +1371 13.710000 0.000000 0.000000 +1372 13.720000 0.000000 0.000000 +1373 13.730000 0.000000 0.000000 +1374 13.740000 0.000000 0.000000 +1375 13.750000 0.000000 0.000000 +1376 13.760000 0.000000 0.000000 +1377 13.770000 0.000000 0.000000 +1378 13.780000 0.000000 0.000000 +1379 13.790000 0.000000 0.000000 +1380 13.800000 0.000000 0.000000 +1381 13.810000 0.000000 0.000000 +1382 13.820000 0.000000 0.000000 +1383 13.830000 0.000000 0.000000 +1384 13.840000 0.000000 0.000000 +1385 13.850000 0.000000 0.000000 +1386 13.860000 0.000000 0.000000 +1387 13.870000 0.000000 0.000000 +1388 13.880000 0.000000 0.000000 +1389 13.890000 0.000000 0.000000 +1390 13.900000 0.000000 0.000000 +1391 13.910000 0.000000 0.000000 +1392 13.920000 0.000000 0.000000 +1393 13.930000 0.000000 0.000000 +1394 13.940000 0.000000 0.000000 +1395 13.950000 0.000000 0.000000 +1396 13.960000 0.000000 0.000000 +1397 13.970000 0.000000 0.000000 +1398 13.980000 0.000000 0.000000 +1399 13.990000 0.000000 0.000000 +1400 14.000000 0.000000 0.000000 +1401 14.010000 0.000000 0.000000 +1402 14.020000 0.000000 0.000000 +1403 14.030000 0.000000 0.000000 +1404 14.040000 0.000000 0.000000 +1405 14.050000 0.000000 0.000000 +1406 14.060000 0.000000 0.000000 +1407 14.070000 0.000000 0.000000 +1408 14.080000 0.000000 0.000000 +1409 14.090000 0.000000 0.000000 +1410 14.100000 0.000000 0.000000 +1411 14.110000 0.000000 0.000000 +1412 14.120000 0.000000 0.000000 +1413 14.130000 0.000000 0.000000 +1414 14.140000 0.000000 0.000000 +1415 14.150000 0.000000 0.000000 +1416 14.160000 0.000000 0.000000 +1417 14.170000 0.000000 0.000000 +1418 14.180000 0.000000 0.000000 +1419 14.190000 0.000000 0.000000 +1420 14.200000 0.000000 0.000000 +1421 14.210000 0.000000 0.000000 +1422 14.220000 0.000000 0.000000 +1423 14.230000 0.000000 0.000000 +1424 14.240000 0.000000 0.000000 +1425 14.250000 0.000000 0.000000 +1426 14.260000 0.000000 0.000000 +1427 14.270000 0.000000 0.000000 +1428 14.280000 0.000000 0.000000 +1429 14.290000 0.000000 0.000000 +1430 14.300000 0.000000 0.000000 +1431 14.310000 0.000000 0.000000 +1432 14.320000 0.000000 0.000000 +1433 14.330000 0.000000 0.000000 +1434 14.340000 0.000000 0.000000 +1435 14.350000 0.000000 0.000000 +1436 14.360000 0.000000 0.000000 +1437 14.370000 0.000000 0.000000 +1438 14.380000 0.000000 0.000000 +1439 14.390000 0.000000 0.000000 +1440 14.400000 0.000000 0.000000 +1441 14.410000 0.000000 0.000000 +1442 14.420000 0.000000 0.000000 +1443 14.430000 0.000000 0.000000 +1444 14.440000 0.000000 0.000000 +1445 14.450000 0.000000 0.000000 +1446 14.460000 0.000000 0.000000 +1447 14.470000 0.000000 0.000000 +1448 14.480000 0.000000 0.000000 +1449 14.490000 0.000000 0.000000 +1450 14.500000 0.000000 0.000000 +1451 14.510000 0.000000 0.000000 +1452 14.520000 0.000000 0.000000 +1453 14.530000 0.000000 0.000000 +1454 14.540000 0.000000 0.000000 +1455 14.550000 0.000000 0.000000 +1456 14.560000 0.000000 0.000000 +1457 14.570000 0.000000 0.000000 +1458 14.580000 0.000000 0.000000 +1459 14.590000 0.000000 0.000000 +1460 14.600000 0.000000 0.000000 +1461 14.610000 0.000000 0.000000 +1462 14.620000 0.000000 0.000000 +1463 14.630000 0.000000 0.000000 +1464 14.640000 0.000000 0.000000 +1465 14.650000 0.000000 0.000000 +1466 14.660000 0.000000 0.000000 +1467 14.670000 0.000000 0.000000 +1468 14.680000 0.000000 0.000000 +1469 14.690000 0.000000 0.000000 +1470 14.700000 0.000000 0.000000 +1471 14.710000 0.000000 0.000000 +1472 14.720000 0.000000 0.000000 +1473 14.730000 0.000000 0.000000 +1474 14.740000 0.000000 0.000000 +1475 14.750000 0.000000 0.000000 +1476 14.760000 0.000000 0.000000 +1477 14.770000 0.000000 0.000000 +1478 14.780000 0.000000 0.000000 +1479 14.790000 0.000000 0.000000 +1480 14.800000 0.000000 0.000000 +1481 14.810000 0.000000 0.000000 +1482 14.820000 0.000000 0.000000 +1483 14.830000 0.000000 0.000000 +1484 14.840000 0.000000 0.000000 +1485 14.850000 0.000000 0.000000 +1486 14.860000 0.000000 0.000000 +1487 14.870000 0.000000 0.000000 +1488 14.880000 0.000000 0.000000 +1489 14.890000 0.000000 0.000000 +1490 14.900000 0.000000 0.000000 +1491 14.910000 0.000000 0.000000 +1492 14.920000 0.000000 0.000000 +1493 14.930000 0.000000 0.000000 +1494 14.940000 0.000000 0.000000 +1495 14.950000 0.000000 0.000000 +1496 14.960000 0.000000 0.000000 +1497 14.970000 0.000000 0.000000 +1498 14.980000 0.000000 0.000000 +1499 14.990000 0.000000 0.000000 +1500 15.000000 0.000000 0.000000 +1501 15.010000 0.000000 0.000000 +1502 15.020000 0.000000 0.000000 +1503 15.030000 0.000000 0.000000 +1504 15.040000 0.000000 0.000000 +1505 15.050000 0.000000 0.000000 +1506 15.060000 0.000000 0.000000 +1507 15.070000 0.000000 0.000000 +1508 15.080000 0.000000 0.000000 +1509 15.090000 0.000000 0.000000 +1510 15.100000 0.000000 0.000000 +1511 15.110000 0.000000 0.000000 +1512 15.120000 0.000000 0.000000 +1513 15.130000 0.000000 0.000000 +1514 15.140000 0.000000 0.000000 +1515 15.150000 0.000000 0.000000 +1516 15.160000 0.000000 0.000000 +1517 15.170000 0.000000 0.000000 +1518 15.180000 0.000000 0.000000 +1519 15.190000 0.000000 0.000000 +1520 15.200000 0.000000 0.000000 +1521 15.210000 0.000000 0.000000 +1522 15.220000 0.000000 0.000000 +1523 15.230000 0.000000 0.000000 +1524 15.240000 0.000000 0.000000 +1525 15.250000 0.000000 0.000000 +1526 15.260000 0.000000 0.000000 +1527 15.270000 0.000000 0.000000 +1528 15.280000 0.000000 0.000000 +1529 15.290000 0.000000 0.000000 +1530 15.300000 0.000000 0.000000 +1531 15.310000 0.000000 0.000000 +1532 15.320000 0.000000 0.000000 +1533 15.330000 0.000000 0.000000 +1534 15.340000 0.000000 0.000000 +1535 15.350000 0.000000 0.000000 +1536 15.360000 0.000000 0.000000 +1537 15.370000 0.000000 0.000000 +1538 15.380000 0.000000 0.000000 +1539 15.390000 0.000000 0.000000 +1540 15.400000 0.000000 0.000000 +1541 15.410000 0.000000 0.000000 +1542 15.420000 0.000000 0.000000 +1543 15.430000 0.000000 0.000000 +1544 15.440000 0.000000 0.000000 +1545 15.450000 0.000000 0.000000 +1546 15.460000 0.000000 0.000000 +1547 15.470000 0.000000 0.000000 +1548 15.480000 0.000000 0.000000 +1549 15.490000 0.000000 0.000000 +1550 15.500000 0.000000 0.000000 +1551 15.510000 0.000000 0.000000 +1552 15.520000 0.000000 0.000000 +1553 15.530000 0.000000 0.000000 +1554 15.540000 0.000000 0.000000 +1555 15.550000 0.000000 0.000000 +1556 15.560000 0.000000 0.000000 +1557 15.570000 0.000000 0.000000 +1558 15.580000 0.000000 0.000000 +1559 15.590000 0.000000 0.000000 +1560 15.600000 0.000000 0.000000 +1561 15.610000 0.000000 0.000000 +1562 15.620000 0.000000 0.000000 +1563 15.630000 0.000000 0.000000 +1564 15.640000 0.000000 0.000000 +1565 15.650000 0.000000 0.000000 +1566 15.660000 0.000000 0.000000 +1567 15.670000 0.000000 0.000000 +1568 15.680000 0.000000 0.000000 +1569 15.690000 0.000000 0.000000 +1570 15.700000 0.000000 0.000000 +1571 15.710000 0.000000 0.000000 +1572 15.720000 0.000000 0.000000 +1573 15.730000 0.000000 0.000000 +1574 15.740000 0.000000 0.000000 +1575 15.750000 0.000000 0.000000 +1576 15.760000 0.000000 0.000000 +1577 15.770000 0.000000 0.000000 +1578 15.780000 0.000000 0.000000 +1579 15.790000 0.000000 0.000000 +1580 15.800000 0.000000 0.000000 +1581 15.810000 0.000000 0.000000 +1582 15.820000 0.000000 0.000000 +1583 15.830000 0.000000 0.000000 +1584 15.840000 0.000000 0.000000 +1585 15.850000 0.000000 0.000000 +1586 15.860000 0.000000 0.000000 +1587 15.870000 0.000000 0.000000 +1588 15.880000 0.000000 0.000000 +1589 15.890000 0.000000 0.000000 +1590 15.900000 0.000000 0.000000 +1591 15.910000 0.000000 0.000000 +1592 15.920000 0.000000 0.000000 +1593 15.930000 0.000000 0.000000 +1594 15.940000 0.000000 0.000000 +1595 15.950000 0.000000 0.000000 +1596 15.960000 0.000000 0.000000 +1597 15.970000 0.000000 0.000000 +1598 15.980000 0.000000 0.000000 +1599 15.990000 0.000000 0.000000 +1600 16.000000 0.000000 0.000000 +1601 16.010000 0.000000 0.000000 +1602 16.020000 0.000000 0.000000 +1603 16.030000 0.000000 0.000000 +1604 16.040000 0.000000 0.000000 +1605 16.050000 0.000000 0.000000 +1606 16.060000 0.000000 0.000000 +1607 16.070000 0.000000 0.000000 +1608 16.080000 0.000000 0.000000 +1609 16.090000 0.000000 0.000000 +1610 16.100000 0.000000 0.000000 +1611 16.110000 0.000000 0.000000 +1612 16.120000 0.000000 0.000000 +1613 16.130000 0.000000 0.000000 +1614 16.140000 0.000000 0.000000 +1615 16.150000 0.000000 0.000000 +1616 16.160000 0.000000 0.000000 +1617 16.170000 0.000000 0.000000 +1618 16.180000 0.000000 0.000000 +1619 16.190000 0.000000 0.000000 +1620 16.200000 0.000000 0.000000 +1621 16.210000 0.000000 0.000000 +1622 16.220000 0.000000 0.000000 +1623 16.230000 0.000000 0.000000 +1624 16.240000 0.000000 0.000000 +1625 16.250000 0.000000 0.000000 +1626 16.260000 0.000000 0.000000 +1627 16.270000 0.000000 0.000000 +1628 16.280000 0.000000 0.000000 +1629 16.290000 0.000000 0.000000 +1630 16.300000 0.000000 0.000000 +1631 16.310000 0.000000 0.000000 +1632 16.320000 0.000000 0.000000 +1633 16.330000 0.000000 0.000000 +1634 16.340000 0.000000 0.000000 +1635 16.350000 0.000000 0.000000 +1636 16.360000 0.000000 0.000000 +1637 16.370000 0.000000 0.000000 +1638 16.380000 0.000000 0.000000 +1639 16.390000 0.000000 0.000000 +1640 16.400000 0.000000 0.000000 +1641 16.410000 0.000000 0.000000 +1642 16.420000 0.000000 0.000000 +1643 16.430000 0.000000 0.000000 +1644 16.440000 0.000000 0.000000 +1645 16.450000 0.000000 0.000000 +1646 16.460000 0.000000 0.000000 +1647 16.470000 0.000000 0.000000 +1648 16.480000 0.000000 0.000000 +1649 16.490000 0.000000 0.000000 +1650 16.500000 0.000000 0.000000 +1651 16.510000 0.000000 0.000000 +1652 16.520000 0.000000 0.000000 +1653 16.530000 0.000000 0.000000 +1654 16.540000 0.000000 0.000000 +1655 16.550000 0.000000 0.000000 +1656 16.560000 0.000000 0.000000 +1657 16.570000 0.000000 0.000000 +1658 16.580000 0.000000 0.000000 +1659 16.590000 0.000000 0.000000 +1660 16.600000 0.000000 0.000000 +1661 16.610000 0.000000 0.000000 +1662 16.620000 0.000000 0.000000 +1663 16.630000 0.000000 0.000000 +1664 16.640000 0.000000 0.000000 +1665 16.650000 0.000000 0.000000 +1666 16.660000 0.000000 0.000000 +1667 16.670000 0.000000 0.000000 +1668 16.680000 0.000000 0.000000 +1669 16.690000 0.000000 0.000000 +1670 16.700000 0.000000 0.000000 +1671 16.710000 0.000000 0.000000 +1672 16.720000 0.000000 0.000000 +1673 16.730000 0.000000 0.000000 +1674 16.740000 0.000000 0.000000 +1675 16.750000 0.000000 0.000000 +1676 16.760000 0.000000 0.000000 +1677 16.770000 0.000000 0.000000 +1678 16.780000 0.000000 0.000000 +1679 16.790000 0.000000 0.000000 +1680 16.800000 0.000000 0.000000 +1681 16.810000 0.000000 0.000000 +1682 16.820000 0.000000 0.000000 +1683 16.830000 0.000000 0.000000 +1684 16.840000 0.000000 0.000000 +1685 16.850000 0.000000 0.000000 +1686 16.860000 0.000000 0.000000 +1687 16.870000 0.000000 0.000000 +1688 16.880000 0.000000 0.000000 +1689 16.890000 0.000000 0.000000 +1690 16.900000 0.000000 0.000000 +1691 16.910000 0.000000 0.000000 +1692 16.920000 0.000000 0.000000 +1693 16.930000 0.000000 0.000000 +1694 16.940000 0.000000 0.000000 +1695 16.950000 0.000000 0.000000 +1696 16.960000 0.000000 0.000000 +1697 16.970000 0.000000 0.000000 +1698 16.980000 0.000000 0.000000 +1699 16.990000 0.000000 0.000000 +1700 17.000000 0.000000 0.000000 +1701 17.010000 0.000000 0.000000 +1702 17.020000 0.000000 0.000000 +1703 17.030000 0.000000 0.000000 +1704 17.040000 0.000000 0.000000 +1705 17.050000 0.000000 0.000000 +1706 17.060000 0.000000 0.000000 +1707 17.070000 0.000000 0.000000 +1708 17.080000 0.000000 0.000000 +1709 17.090000 0.000000 0.000000 +1710 17.100000 0.000000 0.000000 +1711 17.110000 0.000000 0.000000 +1712 17.120000 0.000000 0.000000 +1713 17.130000 0.000000 0.000000 +1714 17.140000 0.000000 0.000000 +1715 17.150000 0.000000 0.000000 +1716 17.160000 0.000000 0.000000 +1717 17.170000 0.000000 0.000000 +1718 17.180000 0.000000 0.000000 +1719 17.190000 0.000000 0.000000 +1720 17.200000 0.000000 0.000000 +1721 17.210000 0.000000 0.000000 +1722 17.220000 0.000000 0.000000 +1723 17.230000 0.000000 0.000000 +1724 17.240000 0.000000 0.000000 +1725 17.250000 0.000000 0.000000 +1726 17.260000 0.000000 0.000000 +1727 17.270000 0.000000 0.000000 +1728 17.280000 0.000000 0.000000 +1729 17.290000 0.000000 0.000000 +1730 17.300000 0.000000 0.000000 +1731 17.310000 0.000000 0.000000 +1732 17.320000 0.000000 0.000000 +1733 17.330000 0.000000 0.000000 +1734 17.340000 0.000000 0.000000 +1735 17.350000 0.000000 0.000000 +1736 17.360000 0.000000 0.000000 +1737 17.370000 0.000000 0.000000 +1738 17.380000 0.000000 0.000000 +1739 17.390000 0.000000 0.000000 +1740 17.400000 0.000000 0.000000 +1741 17.410000 0.000000 0.000000 +1742 17.420000 0.000000 0.000000 +1743 17.430000 0.000000 0.000000 +1744 17.440000 0.000000 0.000000 +1745 17.450000 0.000000 0.000000 +1746 17.460000 0.000000 0.000000 +1747 17.470000 0.000000 0.000000 +1748 17.480000 0.000000 0.000000 +1749 17.490000 0.000000 0.000000 +1750 17.500000 0.000000 0.000000 +1751 17.510000 0.000000 0.000000 +1752 17.520000 0.000000 0.000000 +1753 17.530000 0.000000 0.000000 +1754 17.540000 0.000000 0.000000 +1755 17.550000 0.000000 0.000000 +1756 17.560000 0.000000 0.000000 +1757 17.570000 0.000000 0.000000 +1758 17.580000 0.000000 0.000000 +1759 17.590000 0.000000 0.000000 +1760 17.600000 0.000000 0.000000 +1761 17.610000 0.000000 0.000000 +1762 17.620000 0.000000 0.000000 +1763 17.630000 0.000000 0.000000 +1764 17.640000 0.000000 0.000000 +1765 17.650000 0.000000 0.000000 +1766 17.660000 0.000000 0.000000 +1767 17.670000 0.000000 0.000000 +1768 17.680000 0.000000 0.000000 +1769 17.690000 0.000000 0.000000 +1770 17.700000 0.000000 0.000000 +1771 17.710000 0.000000 0.000000 +1772 17.720000 0.000000 0.000000 +1773 17.730000 0.000000 0.000000 +1774 17.740000 0.000000 0.000000 +1775 17.750000 0.000000 0.000000 +1776 17.760000 0.000000 0.000000 +1777 17.770000 0.000000 0.000000 +1778 17.780000 0.000000 0.000000 +1779 17.790000 0.000000 0.000000 +1780 17.800000 0.000000 0.000000 +1781 17.810000 0.000000 0.000000 +1782 17.820000 0.000000 0.000000 +1783 17.830000 0.000000 0.000000 +1784 17.840000 0.000000 0.000000 +1785 17.850000 0.000000 0.000000 +1786 17.860000 0.000000 0.000000 +1787 17.870000 0.000000 0.000000 +1788 17.880000 0.000000 0.000000 +1789 17.890000 0.000000 0.000000 +1790 17.900000 0.000000 0.000000 +1791 17.910000 0.000000 0.000000 +1792 17.920000 0.000000 0.000000 +1793 17.930000 0.000000 0.000000 +1794 17.940000 0.000000 0.000000 +1795 17.950000 0.000000 0.000000 +1796 17.960000 0.000000 0.000000 +1797 17.970000 0.000000 0.000000 +1798 17.980000 0.000000 0.000000 +1799 17.990000 0.000000 0.000000 +1800 18.000000 0.000000 0.000000 +1801 18.010000 0.000000 0.000000 +1802 18.020000 0.000000 0.000000 +1803 18.030000 0.000000 0.000000 +1804 18.040000 0.000000 0.000000 +1805 18.050000 0.000000 0.000000 +1806 18.060000 0.000000 0.000000 +1807 18.070000 0.000000 0.000000 +1808 18.080000 0.000000 0.000000 +1809 18.090000 0.000000 0.000000 +1810 18.100000 0.000000 0.000000 +1811 18.110000 0.000000 0.000000 +1812 18.120000 0.000000 0.000000 +1813 18.130000 0.000000 0.000000 +1814 18.140000 0.000000 0.000000 +1815 18.150000 0.000000 0.000000 +1816 18.160000 0.000000 0.000000 +1817 18.170000 0.000000 0.000000 +1818 18.180000 0.000000 0.000000 +1819 18.190000 0.000000 0.000000 +1820 18.200000 0.000000 0.000000 +1821 18.210000 0.000000 0.000000 +1822 18.220000 0.000000 0.000000 +1823 18.230000 0.000000 0.000000 +1824 18.240000 0.000000 0.000000 +1825 18.250000 0.000000 0.000000 +1826 18.260000 0.000000 0.000000 +1827 18.270000 0.000000 0.000000 +1828 18.280000 0.000000 0.000000 +1829 18.290000 0.000000 0.000000 +1830 18.300000 0.000000 0.000000 +1831 18.310000 0.000000 0.000000 +1832 18.320000 0.000000 0.000000 +1833 18.330000 0.000000 0.000000 +1834 18.340000 0.000000 0.000000 +1835 18.350000 0.000000 0.000000 +1836 18.360000 0.000000 0.000000 +1837 18.370000 0.000000 0.000000 +1838 18.380000 0.000000 0.000000 +1839 18.390000 0.000000 0.000000 +1840 18.400000 0.000000 0.000000 +1841 18.410000 0.000000 0.000000 +1842 18.420000 0.000000 0.000000 +1843 18.430000 0.000000 0.000000 +1844 18.440000 0.000000 0.000000 +1845 18.450000 0.000000 0.000000 +1846 18.460000 0.000000 0.000000 +1847 18.470000 0.000000 0.000000 +1848 18.480000 0.000000 0.000000 +1849 18.490000 0.000000 0.000000 +1850 18.500000 0.000000 0.000000 +1851 18.510000 0.000000 0.000000 +1852 18.520000 0.000000 0.000000 +1853 18.530000 0.000000 0.000000 +1854 18.540000 0.000000 0.000000 +1855 18.550000 0.000000 0.000000 +1856 18.560000 0.000000 0.000000 +1857 18.570000 0.000000 0.000000 +1858 18.580000 0.000000 0.000000 +1859 18.590000 0.000000 0.000000 +1860 18.600000 0.000000 0.000000 +1861 18.610000 0.000000 0.000000 +1862 18.620000 0.000000 0.000000 +1863 18.630000 0.000000 0.000000 +1864 18.640000 0.000000 0.000000 +1865 18.650000 0.000000 0.000000 +1866 18.660000 0.000000 0.000000 +1867 18.670000 0.000000 0.000000 +1868 18.680000 0.000000 0.000000 +1869 18.690000 0.000000 0.000000 +1870 18.700000 0.000000 0.000000 +1871 18.710000 0.000000 0.000000 +1872 18.720000 0.000000 0.000000 +1873 18.730000 0.000000 0.000000 +1874 18.740000 0.000000 0.000000 +1875 18.750000 0.000000 0.000000 +1876 18.760000 0.000000 0.000000 +1877 18.770000 0.000000 0.000000 +1878 18.780000 0.000000 0.000000 +1879 18.790000 0.000000 0.000000 +1880 18.800000 0.000000 0.000000 +1881 18.810000 0.000000 0.000000 +1882 18.820000 0.000000 0.000000 +1883 18.830000 0.000000 0.000000 +1884 18.840000 0.000000 0.000000 +1885 18.850000 0.000000 0.000000 +1886 18.860000 0.000000 0.000000 +1887 18.870000 0.000000 0.000000 +1888 18.880000 0.000000 0.000000 +1889 18.890000 0.000000 0.000000 +1890 18.900000 0.000000 0.000000 +1891 18.910000 0.000000 0.000000 +1892 18.920000 0.000000 0.000000 +1893 18.930000 0.000000 0.000000 +1894 18.940000 0.000000 0.000000 +1895 18.950000 0.000000 0.000000 +1896 18.960000 0.000000 0.000000 +1897 18.970000 0.000000 0.000000 +1898 18.980000 0.000000 0.000000 +1899 18.990000 0.000000 0.000000 +1900 19.000000 0.000000 0.000000 +1901 19.010000 0.000000 0.000000 +1902 19.020000 0.000000 0.000000 +1903 19.030000 0.000000 0.000000 +1904 19.040000 0.000000 0.000000 +1905 19.050000 0.000000 0.000000 +1906 19.060000 0.000000 0.000000 +1907 19.070000 0.000000 0.000000 +1908 19.080000 0.000000 0.000000 +1909 19.090000 0.000000 0.000000 +1910 19.100000 0.000000 0.000000 +1911 19.110000 0.000000 0.000000 +1912 19.120000 0.000000 0.000000 +1913 19.130000 0.000000 0.000000 +1914 19.140000 0.000000 0.000000 +1915 19.150000 0.000000 0.000000 +1916 19.160000 0.000000 0.000000 +1917 19.170000 0.000000 0.000000 +1918 19.180000 0.000000 0.000000 +1919 19.190000 0.000000 0.000000 +1920 19.200000 0.000000 0.000000 +1921 19.210000 0.000000 0.000000 +1922 19.220000 0.000000 0.000000 +1923 19.230000 0.000000 0.000000 +1924 19.240000 0.000000 0.000000 +1925 19.250000 0.000000 0.000000 +1926 19.260000 0.000000 0.000000 +1927 19.270000 0.000000 0.000000 +1928 19.280000 0.000000 0.000000 +1929 19.290000 0.000000 0.000000 +1930 19.300000 0.000000 0.000000 +1931 19.310000 0.000000 0.000000 +1932 19.320000 0.000000 0.000000 +1933 19.330000 0.000000 0.000000 +1934 19.340000 0.000000 0.000000 +1935 19.350000 0.000000 0.000000 +1936 19.360000 0.000000 0.000000 +1937 19.370000 0.000000 0.000000 +1938 19.380000 0.000000 0.000000 +1939 19.390000 0.000000 0.000000 +1940 19.400000 0.000000 0.000000 +1941 19.410000 0.000000 0.000000 +1942 19.420000 0.000000 0.000000 +1943 19.430000 0.000000 0.000000 +1944 19.440000 0.000000 0.000000 +1945 19.450000 0.000000 0.000000 +1946 19.460000 0.000000 0.000000 +1947 19.470000 0.000000 0.000000 +1948 19.480000 0.000000 0.000000 +1949 19.490000 0.000000 0.000000 +1950 19.500000 0.000000 0.000000 +1951 19.510000 0.000000 0.000000 +1952 19.520000 0.000000 0.000000 +1953 19.530000 0.000000 0.000000 +1954 19.540000 0.000000 0.000000 +1955 19.550000 0.000000 0.000000 +1956 19.560000 0.000000 0.000000 +1957 19.570000 0.000000 0.000000 +1958 19.580000 0.000000 0.000000 +1959 19.590000 0.000000 0.000000 +1960 19.600000 0.000000 0.000000 +1961 19.610000 0.000000 0.000000 +1962 19.620000 0.000000 0.000000 +1963 19.630000 0.000000 0.000000 +1964 19.640000 0.000000 0.000000 +1965 19.650000 0.000000 0.000000 +1966 19.660000 0.000000 0.000000 +1967 19.670000 0.000000 0.000000 +1968 19.680000 0.000000 0.000000 +1969 19.690000 0.000000 0.000000 +1970 19.700000 0.000000 0.000000 +1971 19.710000 0.000000 0.000000 +1972 19.720000 0.000000 0.000000 +1973 19.730000 0.000000 0.000000 +1974 19.740000 0.000000 0.000000 +1975 19.750000 0.000000 0.000000 +1976 19.760000 0.000000 0.000000 +1977 19.770000 0.000000 0.000000 +1978 19.780000 0.000000 0.000000 +1979 19.790000 0.000000 0.000000 +1980 19.800000 0.000000 0.000000 +1981 19.810000 0.000000 0.000000 +1982 19.820000 0.000000 0.000000 +1983 19.830000 0.000000 0.000000 +1984 19.840000 0.000000 0.000000 +1985 19.850000 0.000000 0.000000 +1986 19.860000 0.000000 0.000000 +1987 19.870000 0.000000 0.000000 +1988 19.880000 0.000000 0.000000 +1989 19.890000 0.000000 0.000000 +1990 19.900000 0.000000 0.000000 +1991 19.910000 0.000000 0.000000 +1992 19.920000 0.000000 0.000000 +1993 19.930000 0.000000 0.000000 +1994 19.940000 0.000000 0.000000 +1995 19.950000 0.000000 0.000000 +1996 19.960000 0.000000 0.000000 +1997 19.970000 0.000000 0.000000 +1998 19.980000 0.000000 0.000000 +1999 19.990000 0.000000 0.000000 +2000 20.000000 0.000000 0.000000 +2001 20.010000 0.000000 0.000000 +2002 20.020000 0.000000 0.000000 +2003 20.030000 0.000000 0.000000 +2004 20.040000 0.000000 0.000000 +2005 20.050000 0.000000 0.000000 +2006 20.060000 0.000000 0.000000 +2007 20.070000 0.000000 0.000000 +2008 20.080000 0.000000 0.000000 +2009 20.090000 0.000000 0.000000 +2010 20.100000 0.000000 0.000000 +2011 20.110000 0.000000 0.000000 +2012 20.120000 0.000000 0.000000 +2013 20.130000 0.000000 0.000000 +2014 20.140000 0.000000 0.000000 +2015 20.150000 0.000000 0.000000 +2016 20.160000 0.000000 0.000000 +2017 20.170000 0.000000 0.000000 +2018 20.180000 0.000000 0.000000 +2019 20.190000 0.000000 0.000000 +2020 20.200000 0.000000 0.000000 +2021 20.210000 0.000000 0.000000 +2022 20.220000 0.000000 0.000000 +2023 20.230000 0.000000 0.000000 +2024 20.240000 0.000000 0.000000 +2025 20.250000 0.000000 0.000000 +2026 20.260000 0.000000 0.000000 +2027 20.270000 0.000000 0.000000 +2028 20.280000 0.000000 0.000000 +2029 20.290000 0.000000 0.000000 +2030 20.300000 0.000000 0.000000 +2031 20.310000 0.000000 0.000000 +2032 20.320000 0.000000 0.000000 +2033 20.330000 0.000000 0.000000 +2034 20.340000 0.000000 0.000000 +2035 20.350000 0.000000 0.000000 +2036 20.360000 0.000000 0.000000 +2037 20.370000 0.000000 0.000000 +2038 20.380000 0.000000 0.000000 +2039 20.390000 0.000000 0.000000 +2040 20.400000 0.000000 0.000000 +2041 20.410000 0.000000 0.000000 +2042 20.420000 0.000000 0.000000 +2043 20.430000 0.000000 0.000000 +2044 20.440000 0.000000 0.000000 +2045 20.450000 0.000000 0.000000 +2046 20.460000 0.000000 0.000000 +2047 20.470000 0.000000 0.000000 +2048 20.480000 0.000000 0.000000 +2049 20.490000 0.000000 0.000000 +2050 20.500000 0.000000 0.000000 +2051 20.510000 0.000000 0.000000 +2052 20.520000 0.000000 0.000000 +2053 20.530000 0.000000 0.000000 +2054 20.540000 0.000000 0.000000 +2055 20.550000 0.000000 0.000000 +2056 20.560000 0.000000 0.000000 +2057 20.570000 0.000000 0.000000 +2058 20.580000 0.000000 0.000000 +2059 20.590000 0.000000 0.000000 +2060 20.600000 0.000000 0.000000 +2061 20.610000 0.000000 0.000000 +2062 20.620000 0.000000 0.000000 +2063 20.630000 0.000000 0.000000 +2064 20.640000 0.000000 0.000000 +2065 20.650000 0.000000 0.000000 +2066 20.660000 0.000000 0.000000 +2067 20.670000 0.000000 0.000000 +2068 20.680000 0.000000 0.000000 +2069 20.690000 0.000000 0.000000 +2070 20.700000 0.000000 0.000000 +2071 20.710000 0.000000 0.000000 +2072 20.720000 0.000000 0.000000 +2073 20.730000 0.000000 0.000000 +2074 20.740000 0.000000 0.000000 +2075 20.750000 0.000000 0.000000 +2076 20.760000 0.000000 0.000000 +2077 20.770000 0.000000 0.000000 +2078 20.780000 0.000000 0.000000 +2079 20.790000 0.000000 0.000000 +2080 20.800000 0.000000 0.000000 +2081 20.810000 0.000000 0.000000 +2082 20.820000 0.000000 0.000000 +2083 20.830000 0.000000 0.000000 +2084 20.840000 0.000000 0.000000 +2085 20.850000 0.000000 0.000000 +2086 20.860000 0.000000 0.000000 +2087 20.870000 0.000000 0.000000 +2088 20.880000 0.000000 0.000000 +2089 20.890000 0.000000 0.000000 +2090 20.900000 0.000000 0.000000 +2091 20.910000 0.000000 0.000000 +2092 20.920000 0.000000 0.000000 +2093 20.930000 0.000000 0.000000 +2094 20.940000 0.000000 0.000000 +2095 20.950000 0.000000 0.000000 +2096 20.960000 0.000000 0.000000 +2097 20.970000 0.000000 0.000000 +2098 20.980000 0.000000 0.000000 +2099 20.990000 0.000000 0.000000 +2100 21.000000 0.000000 0.000000 +2101 21.010000 0.000000 0.000000 +2102 21.020000 0.000000 0.000000 +2103 21.030000 0.000000 0.000000 +2104 21.040000 0.000000 0.000000 +2105 21.050000 0.000000 0.000000 +2106 21.060000 0.000000 0.000000 +2107 21.070000 0.000000 0.000000 +2108 21.080000 0.000000 0.000000 +2109 21.090000 0.000000 0.000000 +2110 21.100000 0.000000 0.000000 +2111 21.110000 0.000000 0.000000 +2112 21.120000 0.000000 0.000000 +2113 21.130000 0.000000 0.000000 +2114 21.140000 0.000000 0.000000 +2115 21.150000 0.000000 0.000000 +2116 21.160000 0.000000 0.000000 +2117 21.170000 0.000000 0.000000 +2118 21.180000 0.000000 0.000000 +2119 21.190000 0.000000 0.000000 +2120 21.200000 0.000000 0.000000 +2121 21.210000 0.000000 0.000000 +2122 21.220000 0.000000 0.000000 +2123 21.230000 0.000000 0.000000 +2124 21.240000 0.000000 0.000000 +2125 21.250000 0.000000 0.000000 +2126 21.260000 0.000000 0.000000 +2127 21.270000 0.000000 0.000000 +2128 21.280000 0.000000 0.000000 +2129 21.290000 0.000000 0.000000 +2130 21.300000 0.000000 0.000000 +2131 21.310000 0.000000 0.000000 +2132 21.320000 0.000000 0.000000 +2133 21.330000 0.000000 0.000000 +2134 21.340000 0.000000 0.000000 +2135 21.350000 0.000000 0.000000 +2136 21.360000 0.000000 0.000000 +2137 21.370000 0.000000 0.000000 +2138 21.380000 0.000000 0.000000 +2139 21.390000 0.000000 0.000000 +2140 21.400000 0.000000 0.000000 +2141 21.410000 0.000000 0.000000 +2142 21.420000 0.000000 0.000000 +2143 21.430000 0.000000 0.000000 +2144 21.440000 0.000000 0.000000 +2145 21.450000 0.000000 0.000000 +2146 21.460000 0.000000 0.000000 +2147 21.470000 0.000000 0.000000 +2148 21.480000 0.000000 0.000000 +2149 21.490000 0.000000 0.000000 +2150 21.500000 0.000000 0.000000 +2151 21.510000 0.000000 0.000000 +2152 21.520000 0.000000 0.000000 +2153 21.530000 0.000000 0.000000 +2154 21.540000 0.000000 0.000000 +2155 21.550000 0.000000 0.000000 +2156 21.560000 0.000000 0.000000 +2157 21.570000 0.000000 0.000000 +2158 21.580000 0.000000 0.000000 +2159 21.590000 0.000000 0.000000 +2160 21.600000 0.000000 0.000000 +2161 21.610000 0.000000 0.000000 +2162 21.620000 0.000000 0.000000 +2163 21.630000 0.000000 0.000000 +2164 21.640000 0.000000 0.000000 +2165 21.650000 0.000000 0.000000 +2166 21.660000 0.000000 0.000000 +2167 21.670000 0.000000 0.000000 +2168 21.680000 0.000000 0.000000 +2169 21.690000 0.000000 0.000000 +2170 21.700000 0.000000 0.000000 +2171 21.710000 0.000000 0.000000 +2172 21.720000 0.000000 0.000000 +2173 21.730000 0.000000 0.000000 +2174 21.740000 0.000000 0.000000 +2175 21.750000 0.000000 0.000000 +2176 21.760000 0.000000 0.000000 +2177 21.770000 0.000000 0.000000 +2178 21.780000 0.000000 0.000000 +2179 21.790000 0.000000 0.000000 +2180 21.800000 0.000000 0.000000 +2181 21.810000 0.000000 0.000000 +2182 21.820000 0.000000 0.000000 +2183 21.830000 0.000000 0.000000 +2184 21.840000 0.000000 0.000000 +2185 21.850000 0.000000 0.000000 +2186 21.860000 0.000000 0.000000 +2187 21.870000 0.000000 0.000000 +2188 21.880000 0.000000 0.000000 +2189 21.890000 0.000000 0.000000 +2190 21.900000 0.000000 0.000000 +2191 21.910000 0.000000 0.000000 +2192 21.920000 0.000000 0.000000 +2193 21.930000 0.000000 0.000000 +2194 21.940000 0.000000 0.000000 +2195 21.950000 0.000000 0.000000 +2196 21.960000 0.000000 0.000000 +2197 21.970000 0.000000 0.000000 +2198 21.980000 0.000000 0.000000 +2199 21.990000 0.000000 0.000000 +2200 22.000000 0.000000 0.000000 +2201 22.010000 0.000000 0.000000 +2202 22.020000 0.000000 0.000000 +2203 22.030000 0.000000 0.000000 +2204 22.040000 0.000000 0.000000 +2205 22.050000 0.000000 0.000000 +2206 22.060000 0.000000 0.000000 +2207 22.070000 0.000000 0.000000 +2208 22.080000 0.000000 0.000000 +2209 22.090000 0.000000 0.000000 +2210 22.100000 0.000000 0.000000 +2211 22.110000 0.000000 0.000000 +2212 22.120000 0.000000 0.000000 +2213 22.130000 0.000000 0.000000 +2214 22.140000 0.000000 0.000000 +2215 22.150000 0.000000 0.000000 +2216 22.160000 0.000000 0.000000 +2217 22.170000 0.000000 0.000000 +2218 22.180000 0.000000 0.000000 +2219 22.190000 0.000000 0.000000 +2220 22.200000 0.000000 0.000000 +2221 22.210000 0.000000 0.000000 +2222 22.220000 0.000000 0.000000 +2223 22.230000 0.000000 0.000000 +2224 22.240000 0.000000 0.000000 +2225 22.250000 0.000000 0.000000 +2226 22.260000 0.000000 0.000000 +2227 22.270000 0.000000 0.000000 +2228 22.280000 0.000000 0.000000 +2229 22.290000 0.000000 0.000000 +2230 22.300000 0.000000 0.000000 +2231 22.310000 0.000000 0.000000 +2232 22.320000 0.000000 0.000000 +2233 22.330000 0.000000 0.000000 +2234 22.340000 0.000000 0.000000 +2235 22.350000 0.000000 0.000000 +2236 22.360000 0.000000 0.000000 +2237 22.370000 0.000000 0.000000 +2238 22.380000 0.000000 0.000000 +2239 22.390000 0.000000 0.000000 +2240 22.400000 0.000000 0.000000 +2241 22.410000 0.000000 0.000000 +2242 22.420000 0.000000 0.000000 +2243 22.430000 0.000000 0.000000 +2244 22.440000 0.000000 0.000000 +2245 22.450000 0.000000 0.000000 +2246 22.460000 0.000000 0.000000 +2247 22.470000 0.000000 0.000000 +2248 22.480000 0.000000 0.000000 +2249 22.490000 0.000000 0.000000 +2250 22.500000 0.000000 0.000000 +2251 22.510000 0.000000 0.000000 +2252 22.520000 0.000000 0.000000 +2253 22.530000 0.000000 0.000000 +2254 22.540000 0.000000 0.000000 +2255 22.550000 0.000000 0.000000 +2256 22.560000 0.000000 0.000000 +2257 22.570000 0.000000 0.000000 +2258 22.580000 0.000000 0.000000 +2259 22.590000 0.000000 0.000000 +2260 22.600000 0.000000 0.000000 +2261 22.610000 0.000000 0.000000 +2262 22.620000 0.000000 0.000000 +2263 22.630000 0.000000 0.000000 +2264 22.640000 0.000000 0.000000 +2265 22.650000 0.000000 0.000000 +2266 22.660000 0.000000 0.000000 +2267 22.670000 0.000000 0.000000 +2268 22.680000 0.000000 0.000000 +2269 22.690000 0.000000 0.000000 +2270 22.700000 0.000000 0.000000 +2271 22.710000 0.000000 0.000000 +2272 22.720000 0.000000 0.000000 +2273 22.730000 0.000000 0.000000 +2274 22.740000 0.000000 0.000000 +2275 22.750000 0.000000 0.000000 +2276 22.760000 0.000000 0.000000 +2277 22.770000 0.000000 0.000000 +2278 22.780000 0.000000 0.000000 +2279 22.790000 0.000000 0.000000 +2280 22.800000 0.000000 0.000000 +2281 22.810000 0.000000 0.000000 +2282 22.820000 0.000000 0.000000 +2283 22.830000 0.000000 0.000000 +2284 22.840000 0.000000 0.000000 +2285 22.850000 0.000000 0.000000 +2286 22.860000 0.000000 0.000000 +2287 22.870000 0.000000 0.000000 +2288 22.880000 0.000000 0.000000 +2289 22.890000 0.000000 0.000000 +2290 22.900000 0.000000 0.000000 +2291 22.910000 0.000000 0.000000 +2292 22.920000 0.000000 0.000000 +2293 22.930000 0.000000 0.000000 +2294 22.940000 0.000000 0.000000 +2295 22.950000 0.000000 0.000000 +2296 22.960000 0.000000 0.000000 +2297 22.970000 0.000000 0.000000 +2298 22.980000 0.000000 0.000000 +2299 22.990000 0.000000 0.000000 +2300 23.000000 0.000000 0.000000 +2301 23.010000 0.000000 0.000000 +2302 23.020000 0.000000 0.000000 +2303 23.030000 0.000000 0.000000 +2304 23.040000 0.000000 0.000000 +2305 23.050000 0.000000 0.000000 +2306 23.060000 0.000000 0.000000 +2307 23.070000 0.000000 0.000000 +2308 23.080000 0.000000 0.000000 +2309 23.090000 0.000000 0.000000 +2310 23.100000 0.000000 0.000000 +2311 23.110000 0.000000 0.000000 +2312 23.120000 0.000000 0.000000 +2313 23.130000 0.000000 0.000000 +2314 23.140000 0.000000 0.000000 +2315 23.150000 0.000000 0.000000 +2316 23.160000 0.000000 0.000000 +2317 23.170000 0.000000 0.000000 +2318 23.180000 0.000000 0.000000 +2319 23.190000 0.000000 0.000000 +2320 23.200000 0.000000 0.000000 +2321 23.210000 0.000000 0.000000 +2322 23.220000 0.000000 0.000000 +2323 23.230000 0.000000 0.000000 +2324 23.240000 0.000000 0.000000 +2325 23.250000 0.000000 0.000000 +2326 23.260000 0.000000 0.000000 +2327 23.270000 0.000000 0.000000 +2328 23.280000 0.000000 0.000000 +2329 23.290000 0.000000 0.000000 +2330 23.300000 0.000000 0.000000 +2331 23.310000 0.000000 0.000000 +2332 23.320000 0.000000 0.000000 +2333 23.330000 0.000000 0.000000 +2334 23.340000 0.000000 0.000000 +2335 23.350000 0.000000 0.000000 +2336 23.360000 0.000000 0.000000 +2337 23.370000 0.000000 0.000000 +2338 23.380000 0.000000 0.000000 +2339 23.390000 0.000000 0.000000 +2340 23.400000 0.000000 0.000000 +2341 23.410000 0.000000 0.000000 +2342 23.420000 0.000000 0.000000 +2343 23.430000 0.000000 0.000000 +2344 23.440000 0.000000 0.000000 +2345 23.450000 0.000000 0.000000 +2346 23.460000 0.000000 0.000000 +2347 23.470000 0.000000 0.000000 +2348 23.480000 0.000000 0.000000 +2349 23.490000 0.000000 0.000000 +2350 23.500000 0.000000 0.000000 +2351 23.510000 0.000000 0.000000 +2352 23.520000 0.000000 0.000000 +2353 23.530000 0.000000 0.000000 +2354 23.540000 0.000000 0.000000 +2355 23.550000 0.000000 0.000000 +2356 23.560000 0.000000 0.000000 +2357 23.570000 0.000000 0.000000 +2358 23.580000 0.000000 0.000000 +2359 23.590000 0.000000 0.000000 +2360 23.600000 0.000000 0.000000 +2361 23.610000 0.000000 0.000000 +2362 23.620000 0.000000 0.000000 +2363 23.630000 0.000000 0.000000 +2364 23.640000 0.000000 0.000000 +2365 23.650000 0.000000 0.000000 +2366 23.660000 0.000000 0.000000 +2367 23.670000 0.000000 0.000000 +2368 23.680000 0.000000 0.000000 +2369 23.690000 0.000000 0.000000 +2370 23.700000 0.000000 0.000000 +2371 23.710000 0.000000 0.000000 +2372 23.720000 0.000000 0.000000 +2373 23.730000 0.000000 0.000000 +2374 23.740000 0.000000 0.000000 +2375 23.750000 0.000000 0.000000 +2376 23.760000 0.000000 0.000000 +2377 23.770000 0.000000 0.000000 +2378 23.780000 0.000000 0.000000 +2379 23.790000 0.000000 0.000000 +2380 23.800000 0.000000 0.000000 +2381 23.810000 0.000000 0.000000 +2382 23.820000 0.000000 0.000000 +2383 23.830000 0.000000 0.000000 +2384 23.840000 0.000000 0.000000 +2385 23.850000 0.000000 0.000000 +2386 23.860000 0.000000 0.000000 +2387 23.870000 0.000000 0.000000 +2388 23.880000 0.000000 0.000000 +2389 23.890000 0.000000 0.000000 +2390 23.900000 0.000000 0.000000 +2391 23.910000 0.000000 0.000000 +2392 23.920000 0.000000 0.000000 +2393 23.930000 0.000000 0.000000 +2394 23.940000 0.000000 0.000000 +2395 23.950000 0.000000 0.000000 +2396 23.960000 0.000000 0.000000 +2397 23.970000 0.000000 0.000000 +2398 23.980000 0.000000 0.000000 +2399 23.990000 0.000000 0.000000 +2400 24.000000 0.000000 0.000000 +2401 24.010000 0.000000 0.000000 +2402 24.020000 0.000000 0.000000 +2403 24.030000 0.000000 0.000000 +2404 24.040000 0.000000 0.000000 +2405 24.050000 0.000000 0.000000 +2406 24.060000 0.000000 0.000000 +2407 24.070000 0.000000 0.000000 +2408 24.080000 0.000000 0.000000 +2409 24.090000 0.000000 0.000000 +2410 24.100000 0.000000 0.000000 +2411 24.110000 0.000000 0.000000 +2412 24.120000 0.000000 0.000000 +2413 24.130000 0.000000 0.000000 +2414 24.140000 0.000000 0.000000 +2415 24.150000 0.000000 0.000000 +2416 24.160000 0.000000 0.000000 +2417 24.170000 0.000000 0.000000 +2418 24.180000 0.000000 0.000000 +2419 24.190000 0.000000 0.000000 +2420 24.200000 0.000000 0.000000 +2421 24.210000 0.000000 0.000000 +2422 24.220000 0.000000 0.000000 +2423 24.230000 0.000000 0.000000 +2424 24.240000 0.000000 0.000000 +2425 24.250000 0.000000 0.000000 +2426 24.260000 0.000000 0.000000 +2427 24.270000 0.000000 0.000000 +2428 24.280000 0.000000 0.000000 +2429 24.290000 0.000000 0.000000 +2430 24.300000 0.000000 0.000000 +2431 24.310000 0.000000 0.000000 +2432 24.320000 0.000000 0.000000 +2433 24.330000 0.000000 0.000000 +2434 24.340000 0.000000 0.000000 +2435 24.350000 0.000000 0.000000 +2436 24.360000 0.000000 0.000000 +2437 24.370000 0.000000 0.000000 +2438 24.380000 0.000000 0.000000 +2439 24.390000 0.000000 0.000000 +2440 24.400000 0.000000 0.000000 +2441 24.410000 0.000000 0.000000 +2442 24.420000 0.000000 0.000000 +2443 24.430000 0.000000 0.000000 +2444 24.440000 0.000000 0.000000 +2445 24.450000 0.000000 0.000000 +2446 24.460000 0.000000 0.000000 +2447 24.470000 0.000000 0.000000 +2448 24.480000 0.000000 0.000000 +2449 24.490000 0.000000 0.000000 +2450 24.500000 0.000000 0.000000 +2451 24.510000 0.000000 0.000000 +2452 24.520000 0.000000 0.000000 +2453 24.530000 0.000000 0.000000 +2454 24.540000 0.000000 0.000000 +2455 24.550000 0.000000 0.000000 +2456 24.560000 0.000000 0.000000 +2457 24.570000 0.000000 0.000000 +2458 24.580000 0.000000 0.000000 +2459 24.590000 0.000000 0.000000 +2460 24.600000 0.000000 0.000000 +2461 24.610000 0.000000 0.000000 +2462 24.620000 0.000000 0.000000 +2463 24.630000 0.000000 0.000000 +2464 24.640000 0.000000 0.000000 +2465 24.650000 0.000000 0.000000 +2466 24.660000 0.000000 0.000000 +2467 24.670000 0.000000 0.000000 +2468 24.680000 0.000000 0.000000 +2469 24.690000 0.000000 0.000000 +2470 24.700000 0.000000 0.000000 +2471 24.710000 0.000000 0.000000 +2472 24.720000 0.000000 0.000000 +2473 24.730000 0.000000 0.000000 +2474 24.740000 0.000000 0.000000 +2475 24.750000 0.000000 0.000000 +2476 24.760000 0.000000 0.000000 +2477 24.770000 0.000000 0.000000 +2478 24.780000 0.000000 0.000000 +2479 24.790000 0.000000 0.000000 +2480 24.800000 0.000000 0.000000 +2481 24.810000 0.000000 0.000000 +2482 24.820000 0.000000 0.000000 +2483 24.830000 0.000000 0.000000 +2484 24.840000 0.000000 0.000000 +2485 24.850000 0.000000 0.000000 +2486 24.860000 0.000000 0.000000 +2487 24.870000 0.000000 0.000000 +2488 24.880000 0.000000 0.000000 +2489 24.890000 0.000000 0.000000 +2490 24.900000 0.000000 0.000000 +2491 24.910000 0.000000 0.000000 +2492 24.920000 0.000000 0.000000 +2493 24.930000 0.000000 0.000000 +2494 24.940000 0.000000 0.000000 +2495 24.950000 0.000000 0.000000 +2496 24.960000 0.000000 0.000000 +2497 24.970000 0.000000 0.000000 +2498 24.980000 0.000000 0.000000 +2499 24.990000 0.000000 0.000000 +2500 25.000000 0.000000 0.000000 diff --git a/examples/USER/bocs/log.20Apr18.methanol.g++.1 b/examples/USER/bocs/log.20Apr18.methanol.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..a94bd959c816c3cb1faa1b03ee9dc176b5301950 --- /dev/null +++ b/examples/USER/bocs/log.20Apr18.methanol.g++.1 @@ -0,0 +1,143 @@ +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task +units real +dimension 3 +boundary p p p +atom_style atomic + +newton on +timestep 1.0 + +read_data methanol.data + orthogonal box = (0 0 0) to (40.4635 40.4635 40.4635) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 968 atoms + +velocity all create 300.0 16802 dist gaussian + +pair_style table spline 15000 + +pair_coeff 1 1 lammps_nb_MET-MET.table nb_METMET 12.0 +WARNING: 78 of 2500 force values in table are inconsistent with -dE/dr. + Should only be flagged at inflection points (../pair_table.cpp:481) + +neigh_modify delay 0 every 1 check yes one 10000 +neighbor 12.0 bin + +thermo 500 +thermo_style custom step temp pe etotal press vol + +variable STEP equal step +variable TEMP equal temp +## volume from cubic angstroms to cubic nm +variable VOL equal vol/1000.0 +## pressure from atm to bar +variable PRESS equal press*1.01325 +variable PXX equal pxx*1.01325 +variable PYY equal pyy*1.01325 +variable PZZ equal pzz*1.01325 +variable PXY equal pxy*1.01325 +variable PXZ equal pxz*1.01325 +variable PYZ equal pyz*1.01325 +## energy from kcal/mol to kJ/mol +variable KE equal ke*4.184 +variable PE equal pe*4.184 +variable UVDW equal evdwl*4.184 + + +##### SPECIAL COMMANDS FOR FIX_BOCS ##### +# ID group-ID style_name thermostat T_init T_end T_couple barostat P_start P_end P_couple pmatch_basis avg_vol N_sites N_coeffs coeff1 coeff2 +fix 1 all bocs temp 300.0 300.0 100.0 cgiso 0.986 0.986 1000.0 analytic 66476.015 968 2 245030.10 8962.20 + +# Report the modified pressure +thermo_modify press 1_press + + + +## Uncomment to save some data from simulation to files +#fix print_temp all print 500 "${STEP} ${TEMP}" file temp.dat screen no +#fix print_vol all print 500 "${STEP} ${VOL}" file vol.dat screen no +#fix print_press all print 500 "${STEP} ${PRESS}" file press.dat screen no +#fix print_ke all print 500 "${STEP} ${KE}" file kinetic_E.dat screen no +#fix print_pe all print 500 "${STEP} ${PE}" file potential_E.dat screen no +#fix print_ve all print 500 "${STEP} ${UVDW}" file vdw_E.dat screen no +#fix print_press_tens all print 500 "${STEP} ${PXX} ${PYY} ${PZZ} ${PXY} ${PXZ} ${PYZ}" file press_tens.dat screen no +#fix print_PV_eos all print 500 "${VOL} ${PRESS}" file pv_eos.dat screen no + +## Prints a configuration to dump.txt every 500 steps +#dump 1 all custom 500 dump.txt id type x y z fx fy fz + +# Write restart files to continue simulations +#restart 10000 state1.restart state2.restart + +## Run for this many steps +run_style verlet +run 10000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 10000, page size: 100000 + master list distance cutoff = 24 + ghost atom cutoff = 24 + binsize = 12, bins = 4 4 4 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair table, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.691 | 4.691 | 4.691 Mbytes +Step Temp PotEng TotEng Press Volume + 0 300 1061.5961 1926.3291 107.006 66250.679 + 500 314.54728 1034.1091 1940.7738 194.42689 65660.282 + 1000 301.41603 1030.7027 1899.5173 -91.966709 66262.543 + 1500 298.8308 1014.8276 1876.1905 -80.178606 67053.605 + 2000 294.78476 1046.8207 1896.521 50.592942 66316.735 + 2500 301.18564 1033.9214 1902.0719 40.48255 66607.667 + 3000 301.06632 1022.0381 1889.8447 47.582344 66341.947 + 3500 297.98361 989.80983 1848.7307 -204.69879 67462.078 + 4000 299.03493 1034.6571 1896.6083 89.188888 66457.385 + 4500 306.03351 985.4121 1867.5363 -51.102407 67519.446 + 5000 305.6903 1013.8613 1894.9963 -141.13704 67240.467 + 5500 292.23444 1029.5558 1871.905 20.764579 66683.876 + 6000 287.87735 1017.7325 1847.5226 -35.288049 66630.031 + 6500 305.26461 960.08118 1839.9891 -352.42596 67612.317 + 7000 300.34449 1055.0664 1920.7923 22.04027 66187.27 + 7500 305.48612 1038.6651 1919.2115 17.807254 66324.168 + 8000 316.03232 1034.6809 1945.6262 27.482857 66502.198 + 8500 294.28636 1038.8213 1887.085 -72.840559 66851.661 + 9000 316.69029 1065.7481 1978.5899 245.61677 65678.385 + 9500 297.46127 1034.5547 1891.97 54.23428 66892.627 + 10000 301.24799 1036.5432 1904.8735 7.7134029 66150.506 +Loop time of 34.426 on 1 procs for 10000 steps with 968 atoms + +Performance: 25.097 ns/day, 0.956 hours/ns, 290.478 timesteps/s +99.8% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 33.324 | 33.324 | 33.324 | 0.0 | 96.80 +Neigh | 0.12198 | 0.12198 | 0.12198 | 0.0 | 0.35 +Comm | 0.42865 | 0.42865 | 0.42865 | 0.0 | 1.25 +Output | 0.00059938 | 0.00059938 | 0.00059938 | 0.0 | 0.00 +Modify | 0.42553 | 0.42553 | 0.42553 | 0.0 | 1.24 +Other | | 0.1252 | | | 0.36 + +Nlocal: 968 ave 968 max 968 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 9112 ave 9112 max 9112 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 404392 ave 404392 max 404392 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 404392 +Ave neighs/atom = 417.76 +Neighbor list builds = 13 +Dangerous builds = 0 + + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:34 diff --git a/examples/USER/bocs/log.20Apr18.methanol.g++.4 b/examples/USER/bocs/log.20Apr18.methanol.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..cf5891f97cbf6fee1cc998fb40fb4e8e7cb04a24 --- /dev/null +++ b/examples/USER/bocs/log.20Apr18.methanol.g++.4 @@ -0,0 +1,143 @@ +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task +units real +dimension 3 +boundary p p p +atom_style atomic + +newton on +timestep 1.0 + +read_data methanol.data + orthogonal box = (0 0 0) to (40.4635 40.4635 40.4635) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 968 atoms + +velocity all create 300.0 16802 dist gaussian + +pair_style table spline 15000 + +pair_coeff 1 1 lammps_nb_MET-MET.table nb_METMET 12.0 +WARNING: 78 of 2500 force values in table are inconsistent with -dE/dr. + Should only be flagged at inflection points (../pair_table.cpp:481) + +neigh_modify delay 0 every 1 check yes one 10000 +neighbor 12.0 bin + +thermo 500 +thermo_style custom step temp pe etotal press vol + +variable STEP equal step +variable TEMP equal temp +## volume from cubic angstroms to cubic nm +variable VOL equal vol/1000.0 +## pressure from atm to bar +variable PRESS equal press*1.01325 +variable PXX equal pxx*1.01325 +variable PYY equal pyy*1.01325 +variable PZZ equal pzz*1.01325 +variable PXY equal pxy*1.01325 +variable PXZ equal pxz*1.01325 +variable PYZ equal pyz*1.01325 +## energy from kcal/mol to kJ/mol +variable KE equal ke*4.184 +variable PE equal pe*4.184 +variable UVDW equal evdwl*4.184 + + +##### SPECIAL COMMANDS FOR FIX_BOCS ##### +# ID group-ID style_name thermostat T_init T_end T_couple barostat P_start P_end P_couple pmatch_basis avg_vol N_sites N_coeffs coeff1 coeff2 +fix 1 all bocs temp 300.0 300.0 100.0 cgiso 0.986 0.986 1000.0 analytic 66476.015 968 2 245030.10 8962.20 + +# Report the modified pressure +thermo_modify press 1_press + + + +## Uncomment to save some data from simulation to files +#fix print_temp all print 500 "${STEP} ${TEMP}" file temp.dat screen no +#fix print_vol all print 500 "${STEP} ${VOL}" file vol.dat screen no +#fix print_press all print 500 "${STEP} ${PRESS}" file press.dat screen no +#fix print_ke all print 500 "${STEP} ${KE}" file kinetic_E.dat screen no +#fix print_pe all print 500 "${STEP} ${PE}" file potential_E.dat screen no +#fix print_ve all print 500 "${STEP} ${UVDW}" file vdw_E.dat screen no +#fix print_press_tens all print 500 "${STEP} ${PXX} ${PYY} ${PZZ} ${PXY} ${PXZ} ${PYZ}" file press_tens.dat screen no +#fix print_PV_eos all print 500 "${VOL} ${PRESS}" file pv_eos.dat screen no + +## Prints a configuration to dump.txt every 500 steps +#dump 1 all custom 500 dump.txt id type x y z fx fy fz + +# Write restart files to continue simulations +#restart 10000 state1.restart state2.restart + +## Run for this many steps +run_style verlet +run 10000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 10000, page size: 100000 + master list distance cutoff = 24 + ghost atom cutoff = 24 + binsize = 12, bins = 4 4 4 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair table, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.37 | 3.37 | 3.371 Mbytes +Step Temp PotEng TotEng Press Volume + 0 300 1061.5961 1926.3291 107.006 66250.679 + 500 314.54728 1034.1091 1940.7738 194.42689 65660.282 + 1000 301.41603 1030.7027 1899.5173 -91.966709 66262.543 + 1500 298.8308 1014.8276 1876.1905 -80.178606 67053.605 + 2000 294.78476 1046.8207 1896.521 50.592942 66316.735 + 2500 301.18564 1033.9214 1902.0719 40.482557 66607.667 + 3000 301.06631 1022.0381 1889.8447 47.582403 66341.947 + 3500 297.98353 989.81011 1848.7308 -204.69823 67462.076 + 4000 299.03465 1034.6603 1896.6108 89.196235 66457.338 + 4500 306.04532 985.37017 1867.5285 -51.094929 67519.735 + 5000 304.72903 1014.9543 1893.3184 -127.04402 67238.517 + 5500 292.52622 1025.6599 1868.8502 -19.753932 66716.551 + 6000 296.82719 1031.5184 1887.1059 -1.2609328 66368.611 + 6500 298.63312 1018.4299 1879.2229 -24.75835 66524.898 + 7000 303.25389 1005.9283 1880.0404 -96.273504 67349.674 + 7500 292.45089 1068.2863 1911.2595 103.23295 65778.08 + 8000 301.22765 1040.6294 1908.9011 -0.83635353 66831.038 + 8500 300.19765 1047.5856 1912.8883 -31.582343 66316.305 + 9000 295.1108 1023.8234 1874.4635 -88.165532 67192.344 + 9500 302.1087 1003.6348 1874.4459 -18.707065 66369.361 + 10000 296.3083 1004.126 1858.2178 -28.293045 66862.576 +Loop time of 28.8053 on 4 procs for 10000 steps with 968 atoms + +Performance: 29.994 ns/day, 0.800 hours/ns, 347.159 timesteps/s +95.2% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 19.929 | 21.765 | 23.391 | 27.8 | 75.56 +Neigh | 0.067397 | 0.071231 | 0.077313 | 1.5 | 0.25 +Comm | 3.9226 | 5.5183 | 7.3214 | 53.7 | 19.16 +Output | 0.00069928 | 0.0016099 | 0.0043275 | 3.9 | 0.01 +Modify | 1.0874 | 1.1376 | 1.1888 | 4.2 | 3.95 +Other | | 0.3112 | | | 1.08 + +Nlocal: 242 ave 244 max 239 min +Histogram: 1 0 0 0 0 0 1 0 1 1 +Nghost: 5718.5 ave 5736 max 5702 min +Histogram: 1 0 0 0 1 1 0 0 0 1 +Neighs: 100703 ave 108064 max 93454 min +Histogram: 1 0 0 1 0 0 1 0 0 1 + +Total # of neighbors = 402813 +Ave neighs/atom = 416.129 +Neighbor list builds = 14 +Dangerous builds = 0 + + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:28 diff --git a/examples/USER/bocs/methanol.data b/examples/USER/bocs/methanol.data new file mode 100644 index 0000000000000000000000000000000000000000..01f66de6f62294929f87497522ae541b567596a0 --- /dev/null +++ b/examples/USER/bocs/methanol.data @@ -0,0 +1,991 @@ +LAMMPS Description + + 968 atoms + 0 bonds + 0 angles + 0 dihedrals + 0 impropers + + 1 atom types + 0 bond types + 0 angle types + 0 dihedral types + + 0 40.4635 xlo xhi + 0 40.4635 ylo yhi + 0 40.4635 zlo zhi + +Masses + + 1 32.0424 + +Atoms + +1 1 36.39 8.05 27.55 +2 1 18.38 15.72 26.03 +3 1 3.52 1.77 23.57 +4 1 31.09 11.38 12.17 +5 1 13.3 34.8 2.89 +6 1 1.72 38.55 10.36 +7 1 38.6 23.16 6.19 +8 1 0.74 33.21 0.17 +9 1 26.97 9.53 11.24 +10 1 31.68 12.19 17.04 +11 1 15.19 9.06 0.2 +12 1 34.39 20.63 35.71 +13 1 21.79 4.93 6.49 +14 1 28.08 33.01 24.51 +15 1 37.03 20.52 32.9 +16 1 32.69 20 30.11 +17 1 23.77 38.59 18.79 +18 1 16.01 2.31 20.15 +19 1 5.65 15.5 28.5 +20 1 8.35 17.35 20.48 +21 1 31.24 24.68 27.4 +22 1 29.41 16.64 19.79 +23 1 37.42 31.93 26.68 +24 1 18.76 39.06 30.68 +25 1 22.97 35 20.81 +26 1 39.47 18.28 29.6 +27 1 34.37 19.4 0.17 +28 1 5.94 9.53 10.95 +29 1 11.45 38.44 14.64 +30 1 39.57 11.04 1.57 +31 1 25.91 20.97 12.79 +32 1 36.3 22.1 1.68 +33 1 21.87 22.49 3.43 +34 1 5.77 18.66 3.97 +35 1 7 7.59 18.42 +36 1 39.76 27.63 17.98 +37 1 10.26 23.18 5.11 +38 1 23.23 21.37 17.38 +39 1 7.47 37.37 5.57 +40 1 0.73 21.6 14.78 +41 1 2.27 30.22 14.93 +42 1 7.39 28.22 14.88 +43 1 27.48 1.11 25.02 +44 1 8.37 13.19 14.64 +45 1 7.11 33.57 0.65 +46 1 34.19 35.11 3.17 +47 1 7.52 3.2 20.33 +48 1 1.02 17.69 37.85 +49 1 8.59 6.21 10.26 +50 1 2.89 16.81 30.02 +51 1 27.05 9.07 32.8 +52 1 12.32 14.79 21.11 +53 1 26.63 22.69 16.75 +54 1 31.6 2.79 20.45 +55 1 35.11 0.74 12.16 +56 1 29.71 31.23 37.63 +57 1 38.22 19.02 18.12 +58 1 10.95 17.4 0.39 +59 1 1.65 19.87 6.67 +60 1 5.15 1.94 14.61 +61 1 8.2 31.43 15.72 +62 1 0.55 20.85 2.45 +63 1 15.27 31.74 0.33 +64 1 17.9 9.84 23.87 +65 1 1.46 8.39 19.24 +66 1 37.79 25.11 12.24 +67 1 14.11 27.19 30.7 +68 1 29.39 24.12 38.92 +69 1 39.15 20.32 39.86 +70 1 11.79 11.38 30.6 +71 1 29.87 30.18 32.5 +72 1 11.06 37.8 30.18 +73 1 20.11 4.59 35.57 +74 1 37.19 27.23 1.44 +75 1 18.83 26.13 35.26 +76 1 29.27 7.86 36.75 +77 1 34.83 29.59 37.82 +78 1 22.16 34.68 25.27 +79 1 5.95 14.65 25.55 +80 1 -0.04 3.48 29.91 +81 1 14.69 6.75 38.06 +82 1 16.8 23.69 3.14 +83 1 14.52 38.72 21.61 +84 1 37.36 15.13 27.98 +85 1 29.79 17.03 27.55 +86 1 21.01 0.39 0.9 +87 1 35.3 6.45 14.41 +88 1 13.74 34.69 10.01 +89 1 13.83 7.92 31.88 +90 1 26.88 37.81 22.36 +91 1 31.76 7.34 10.03 +92 1 11.98 37.49 19.61 +93 1 29.19 31.74 20.69 +94 1 39.15 10.97 21.06 +95 1 1.47 5 22.21 +96 1 -0.1 1.33 16.26 +97 1 34.74 34.78 30.66 +98 1 22.09 26.78 2.27 +99 1 36.58 34.8 16.19 +100 1 19.09 24.88 15.75 +101 1 2.21 31.42 38.32 +102 1 28.02 8.18 29.77 +103 1 15.99 16.78 17.61 +104 1 32.43 12.2 35.3 +105 1 26.54 38.8 30.88 +106 1 35.58 22.23 18.31 +107 1 28.3 30.81 2.96 +108 1 8.95 32.9 9.02 +109 1 28.51 30.02 29.39 +110 1 13 5.35 34.26 +111 1 37.9 36.79 1.37 +112 1 12.78 1.99 40.66 +113 1 21.19 34.55 17.45 +114 1 10.5 20 5.07 +115 1 16.19 21.64 18.49 +116 1 14.62 26.41 19.88 +117 1 27.97 2.89 28.03 +118 1 29.44 14.35 39.04 +119 1 2.29 24.16 33.8 +120 1 39.22 15.81 32.02 +121 1 7.31 19.66 18.18 +122 1 27.67 7.98 15.53 +123 1 31.23 4.04 33 +124 1 29.52 39.44 28.71 +125 1 30.86 20.28 15.84 +126 1 32.25 7.44 19.79 +127 1 34.68 15.68 1.18 +128 1 16.58 27.98 27.97 +129 1 32.27 24.24 15.82 +130 1 3.86 6.57 39.8 +131 1 9.1 2.88 13.12 +132 1 17.84 27.8 11.79 +133 1 4.77 10.88 6.75 +134 1 16.58 24.21 24.5 +135 1 10.17 19.31 38.32 +136 1 6.27 7.81 36.44 +137 1 34.76 37.89 29.76 +138 1 40.99 38.22 35.21 +139 1 25.04 21.79 36.88 +140 1 4.78 15.35 16.44 +141 1 19.24 5.77 40.18 +142 1 13.59 11.27 37.14 +143 1 1.61 23.83 39.61 +144 1 6.02 33.07 3.77 +145 1 0.85 7.4 35.42 +146 1 6.47 40.34 4.65 +147 1 16.45 36.52 15.44 +148 1 19.58 9.5 1.64 +149 1 1.36 1.72 35.53 +150 1 11.74 5.48 4.98 +151 1 25.45 40.36 15.44 +152 1 19.09 0.74 36.18 +153 1 31.78 37.98 1.84 +154 1 23.26 18.47 38.56 +155 1 7.29 22.87 25.86 +156 1 2.36 7.83 8.78 +157 1 39.61 25.94 21.12 +158 1 7.78 18.97 25.29 +159 1 36.56 19.61 26.7 +160 1 4.64 12.06 19.9 +161 1 21.05 33.08 0.87 +162 1 33.93 22.87 39.71 +163 1 33.62 29.48 20.83 +164 1 0.64 18.79 9.52 +165 1 27.53 16.7 22.51 +166 1 17.66 9.84 14.61 +167 1 31.23 22.44 24.98 +168 1 39.3 34.88 11.03 +169 1 24.01 10.56 0.09 +170 1 15.81 33.44 18.52 +171 1 19.92 30.61 19.25 +172 1 16.49 3.95 38.28 +173 1 18.6 38.87 24.98 +174 1 33.04 25.55 8.57 +175 1 16.9 35.09 22.94 +176 1 15.18 6.74 2.33 +177 1 40.54 12.58 31.65 +178 1 21.21 37.62 14.35 +179 1 33.52 38.19 14.89 +180 1 22.06 12.49 29.81 +181 1 19.49 29.03 2.52 +182 1 26.97 18.55 38.45 +183 1 24.1 11.86 17.22 +184 1 12.02 0.55 10.39 +185 1 3.8 35.94 19.94 +186 1 8.31 14.31 37.4 +187 1 29.03 8.28 22.92 +188 1 18.92 0.22 27.87 +189 1 26.79 24.9 24.62 +190 1 36.59 18.86 21.13 +191 1 33.06 13.58 30.17 +192 1 32.37 2.02 39.69 +193 1 22.65 25.97 32.59 +194 1 21.81 38.04 33.85 +195 1 36.82 37.68 19.22 +196 1 32.48 31.43 33.66 +197 1 8.75 36.66 20.34 +198 1 14.88 15.11 28.76 +199 1 22.83 28.55 29.5 +200 1 2.98 12.06 2.88 +201 1 3.01 37 6.91 +202 1 14.79 16.69 3.66 +203 1 12.62 38.28 0.97 +204 1 40.07 21.27 25.25 +205 1 34.58 6.14 39.48 +206 1 11.51 30.52 33.53 +207 1 32.22 9.28 30.52 +208 1 0.7 4.01 38.87 +209 1 32.66 39.86 36.84 +210 1 27.34 34.57 21.76 +211 1 13.7 23.12 8.34 +212 1 28 9.71 6.29 +213 1 31.69 26.39 38.19 +214 1 2.04 20.93 36.95 +215 1 30.31 26.61 12.31 +216 1 25.37 20.63 9.4 +217 1 16.29 5.62 14.04 +218 1 1.36 1.95 4.97 +219 1 38.75 26.8 5.62 +220 1 40.28 29.89 12.27 +221 1 0.52 31.22 7.58 +222 1 15.64 21.64 14.71 +223 1 10.11 28.8 9.67 +224 1 19.03 37.3 38.87 +225 1 12.07 6.46 19.25 +226 1 36.22 21.11 15.02 +227 1 12.49 15.69 7.21 +228 1 25.2 30.8 19.71 +229 1 8.24 35.22 23.02 +230 1 9.94 4.1 1.86 +231 1 4.31 19.07 26.23 +232 1 22.03 19.99 14.19 +233 1 30.84 5.24 2.75 +234 1 35.51 30.52 32.3 +235 1 3.88 20.41 39.48 +236 1 30.86 0.39 31.56 +237 1 25.91 27.12 39.04 +238 1 33.39 5.37 4.51 +239 1 20.58 28.33 37.53 +240 1 11.83 21.81 39.11 +241 1 39.94 5.2 5.73 +242 1 29.89 33.21 15.44 +243 1 23.42 15.38 30.98 +244 1 28.66 11.56 16.13 +245 1 16.74 20.43 21.72 +246 1 9.31 0.26 22.42 +247 1 4.38 37.78 14.12 +248 1 13.86 4.65 16.99 +249 1 6.72 27.43 8.14 +250 1 33.45 18.74 19.98 +251 1 17.34 14.55 35.57 +252 1 14.21 37.39 28.76 +253 1 26.29 29.06 22.26 +254 1 36.52 26.18 15.62 +255 1 17.6 8.81 10.14 +256 1 21.95 25.19 17.69 +257 1 17.4 7.46 18.59 +258 1 6.15 29.7 35.99 +259 1 9.73 37.39 24.96 +260 1 28.58 28.21 36.19 +261 1 8.24 13.72 32.2 +262 1 13.25 34.6 22.71 +263 1 38.58 7.98 10.3 +264 1 18.29 29.75 23.51 +265 1 3.74 13.22 31.05 +266 1 30.78 0.7 24.57 +267 1 24.5 12.94 10.81 +268 1 33.88 26.44 1.96 +269 1 29.92 22.6 9.59 +270 1 15.87 21.94 33.44 +271 1 23.63 8.41 10.95 +272 1 26.53 0.01 7.58 +273 1 33.88 8.73 2.52 +274 1 39.74 31.46 36.87 +275 1 13.28 39.54 37 +276 1 24.74 35.41 32.14 +277 1 17.3 34.32 6.85 +278 1 24.43 13.36 5.63 +279 1 31.23 17.12 7.11 +280 1 15.58 37.85 34.06 +281 1 25.93 38.17 3.13 +282 1 31.84 34.34 39.67 +283 1 14.41 17.74 14.43 +284 1 9.4 1.78 29.53 +285 1 8.29 29.61 6.81 +286 1 7.13 17.36 -0.19 +287 1 38.04 19.52 11.25 +288 1 34.87 32.77 38.75 +289 1 27.18 22.49 5.69 +290 1 29.69 27.11 20.29 +291 1 25.23 2.22 39.75 +292 1 35.8 17.1 36.09 +293 1 20.53 17.67 35.47 +294 1 23.41 31.36 2.24 +295 1 25.17 20.09 29.2 +296 1 0.32 9.28 39.74 +297 1 22.49 18.77 29.89 +298 1 38.64 0.85 39.43 +299 1 18.55 5.87 9.15 +300 1 35.21 28.69 25.76 +301 1 39.24 15.68 6.36 +302 1 5.91 13.29 3.92 +303 1 0.5 21.25 21.62 +304 1 34.39 9.43 18.59 +305 1 22.7 1.03 8.79 +306 1 40.15 16.25 24.87 +307 1 16.52 13.69 10.25 +308 1 6.88 36.77 39.57 +309 1 11.95 37.1 7.59 +310 1 19.49 26.66 9.76 +311 1 36.34 29.89 29.31 +312 1 18.76 35.75 12.72 +313 1 23.15 38.68 4.96 +314 1 10.78 17.11 34.38 +315 1 13.58 14.89 0.34 +316 1 4.73 33.88 32.41 +317 1 12.68 29.51 17.07 +318 1 9.45 27 4.98 +319 1 29.02 19.27 6.45 +320 1 19.09 36.35 19.84 +321 1 23.13 6.75 19.78 +322 1 8.02 34.1 26.95 +323 1 26.03 14.18 1.57 +324 1 15.01 34.16 28.32 +325 1 28.71 36.53 15.08 +326 1 9.64 13.94 24.05 +327 1 1.24 36.96 30.41 +328 1 15.44 31.39 4.77 +329 1 25.72 14.42 38.01 +330 1 7.35 31.84 12.61 +331 1 32.33 16.79 3.07 +332 1 15.86 0.39 8.39 +333 1 27.69 7.32 25.74 +334 1 27.77 1.17 4.96 +335 1 29.38 26.68 23.48 +336 1 14.95 3.41 2.13 +337 1 2.45 38.8 17.54 +338 1 9.18 27.58 31.12 +339 1 36.62 15.23 23.66 +340 1 12.23 30.74 10.85 +341 1 12.87 0.23 24.05 +342 1 33.85 35.75 19.95 +343 1 36.36 30.35 13.94 +344 1 38.11 8.15 5.49 +345 1 15.58 1.29 29.89 +346 1 25.95 30.47 39.19 +347 1 27.69 15.5 13.37 +348 1 25.48 13.7 25.29 +349 1 0.72 39.53 4.41 +350 1 8.75 15.21 5.79 +351 1 10.49 26.46 27.25 +352 1 16.9 20.08 26.58 +353 1 3.95 4.33 20.25 +354 1 18.03 7.66 31.87 +355 1 21.35 2.88 17.26 +356 1 32.92 22.68 6.56 +357 1 21.72 4.62 12.02 +358 1 37.6 6.04 25.2 +359 1 22.22 23.78 7.36 +360 1 12.53 19.53 10.6 +361 1 17.87 26.05 19.32 +362 1 20.94 30.75 31.23 +363 1 22.33 11.87 35.79 +364 1 28.54 6.88 10.52 +365 1 29.58 26.13 8.56 +366 1 19.06 24.2 21.73 +367 1 25.05 38.41 26.91 +368 1 18.66 40.35 4.69 +369 1 11.87 6.75 12.72 +370 1 17.99 11.82 37.79 +371 1 8.97 24.7 0.61 +372 1 26.89 1.52 31.33 +373 1 6.88 22.51 14.06 +374 1 29.51 3.87 13.35 +375 1 0.95 14.53 10 +376 1 26.43 31.54 11.63 +377 1 6.1 35.16 11.28 +378 1 10.2 15.91 28.7 +379 1 13.24 25.67 24.3 +380 1 34.5 3.91 20.22 +381 1 22.48 2.17 5.2 +382 1 24.26 16.15 11.3 +383 1 20.63 32.57 27.3 +384 1 39.95 6.81 1.05 +385 1 24.38 34.78 38.27 +386 1 4.63 23.56 0.55 +387 1 33.5 8.38 36.97 +388 1 5.76 27.14 12.06 +389 1 37.45 26.58 32.25 +390 1 2.8 8.96 32.35 +391 1 5.29 39.84 30.1 +392 1 29.2 26.49 31.18 +393 1 33.91 27.39 12.89 +394 1 3.37 14.19 39.34 +395 1 30.68 28.7 27 +396 1 2.59 18.45 19.38 +397 1 13.55 0.75 27.35 +398 1 3.82 20.12 16.1 +399 1 37.72 0.72 34.29 +400 1 23.85 3.32 19.46 +401 1 4.78 0.67 38.23 +402 1 22.78 23.26 38.6 +403 1 11.56 39.29 4.23 +404 1 21.38 32.45 5.39 +405 1 8.32 19.42 9.52 +406 1 28.43 31.07 17.8 +407 1 11.02 5.75 39.84 +408 1 27.36 36.71 7.62 +409 1 34.22 16.74 27.88 +410 1 3.22 22.01 27.42 +411 1 29.2 15.76 32.33 +412 1 25.29 23.44 2.2 +413 1 10.8 32.43 39.96 +414 1 32.2 1.41 4.44 +415 1 32.94 15.59 37.21 +416 1 6.8 8.08 0.84 +417 1 10.42 9.91 37.73 +418 1 1.18 31.39 3.93 +419 1 10.1 36.38 38.57 +420 1 32.89 26.96 35.07 +421 1 28.12 11.93 25.96 +422 1 4.9 29.15 -0.25 +423 1 2.21 27.99 3.72 +424 1 11.33 3.94 25.55 +425 1 3.3 30.26 10.78 +426 1 11.57 27.26 19.31 +427 1 21.79 32.67 13.3 +428 1 4.96 26.53 33.78 +429 1 33.41 32.87 18.46 +430 1 13.92 30.37 20.3 +431 1 16.91 3.5 11.57 +432 1 -0.06 4.42 34.05 +433 1 7.04 24.33 16.85 +434 1 28.66 11.93 19.73 +435 1 30.21 1.75 36.36 +436 1 3.91 6.2 6.26 +437 1 7.01 25.6 27.34 +438 1 34 1.06 18.12 +439 1 29.14 8.5 3.09 +440 1 40.13 23.52 16.94 +441 1 21.69 22.38 26.78 +442 1 18.44 32.85 39.84 +443 1 38.87 1.99 27.63 +444 1 10.47 12.02 33.68 +445 1 9.65 19.94 21.88 +446 1 25.04 8.12 27.89 +447 1 12.18 16.78 31.09 +448 1 38.31 8.2 30.6 +449 1 0.11 5.21 18.12 +450 1 23.48 7.88 38.7 +451 1 7.9 11.99 7.04 +452 1 2.09 34.5 8.64 +453 1 19 18.3 0.42 +454 1 37.94 18.06 15.21 +455 1 25.05 33.33 29.55 +456 1 33.74 37.88 34.54 +457 1 36.07 29.5 17.47 +458 1 27.7 13.54 10.46 +459 1 27.18 23.18 21.06 +460 1 17.49 2.04 23.22 +461 1 23.84 26.31 36.76 +462 1 31.08 32.24 24.92 +463 1 17.7 28.73 16.66 +464 1 1.59 15.5 18.04 +465 1 33.49 18.99 8.75 +466 1 1.19 8.43 28.01 +467 1 5.43 20.26 22.25 +468 1 23.3 5.31 15.05 +469 1 27.09 4.47 21.96 +470 1 26.61 27.48 28.83 +471 1 13 3.18 13.4 +472 1 36.09 34.56 10.58 +473 1 19.09 15.33 7.48 +474 1 12.94 18.16 22.07 +475 1 38.8 16.16 36.73 +476 1 16.73 39.94 -0.46 +477 1 3.64 12.56 9.42 +478 1 27.64 3.31 18.29 +479 1 15.58 12.36 4.52 +480 1 15.37 11.18 18.19 +481 1 37.52 11.23 14.94 +482 1 37.16 2.3 10.01 +483 1 36.19 9.86 21.99 +484 1 36.38 21.09 4.76 +485 1 38.15 12.94 25.35 +486 1 15.1 29.65 24.64 +487 1 16.54 29.12 38.85 +488 1 33.86 11.39 14.4 +489 1 27.99 18.55 9.87 +490 1 0.66 1.26 8.28 +491 1 29.89 33.84 29.75 +492 1 6.64 33.3 6.74 +493 1 31.47 0.39 11.25 +494 1 8.76 15.96 10.74 +495 1 39.6 15.8 21.04 +496 1 22.38 28.55 19.85 +497 1 25.87 6.23 5.4 +498 1 36.24 26.67 38.61 +499 1 23.05 8.79 7.01 +500 1 32.05 4.16 8.87 +501 1 35.3 13.36 38.03 +502 1 39.91 25.91 36.45 +503 1 32.17 17.27 31.82 +504 1 29.99 21.54 20.57 +505 1 9.39 0.57 34.17 +506 1 22.12 17.22 13.03 +507 1 15.23 16.27 24.39 +508 1 26.32 25.89 13.26 +509 1 39.25 3.46 1.34 +510 1 32.56 10.28 7.96 +511 1 25.76 14.8 34.79 +512 1 32.12 5.38 36.94 +513 1 17.74 15.37 14.87 +514 1 21.93 3.26 25.26 +515 1 24.05 0.48 36.27 +516 1 8.2 19.02 33.92 +517 1 33.07 25.88 24.79 +518 1 12.54 0.52 32.8 +519 1 18.5 6.34 23.21 +520 1 35.93 10.26 34.79 +521 1 19.33 11.86 6.94 +522 1 1.63 5.31 25.43 +523 1 30.62 36.78 30.77 +524 1 12.25 26.79 13.74 +525 1 21 1.47 13.99 +526 1 22.24 29.36 34.11 +527 1 29.05 1.74 0.24 +528 1 19.34 25.14 39.77 +529 1 12.9 25.42 35.42 +530 1 4.1 20.69 33.31 +531 1 35.38 5.64 9.17 +532 1 5.01 34.03 23.36 +533 1 15.7 10.01 7.1 +534 1 25.95 19.48 24.73 +535 1 11.15 4.16 21.43 +536 1 1.47 3.23 13.72 +537 1 26.54 36.76 17.48 +538 1 7.65 30.6 27.73 +539 1 18.59 3.05 3.32 +540 1 6.92 36.14 15.67 +541 1 12.72 36.21 32.72 +542 1 16.33 26.24 14.35 +543 1 21.66 12.61 26.18 +544 1 15.72 32.37 10.71 +545 1 27.57 15.75 4.97 +546 1 20.18 39.13 18.44 +547 1 18.77 17.09 4.74 +548 1 12.75 14.08 17.89 +549 1 10.71 37.26 35.13 +550 1 20.88 32.12 9.94 +551 1 8.69 0.06 9.54 +552 1 1.58 12.61 26.42 +553 1 10.29 22.73 13.14 +554 1 23.31 25.7 4.97 +555 1 36.7 30.78 5.26 +556 1 5.6 28.71 23.76 +557 1 13.04 7.91 15.46 +558 1 40.24 33.53 34.5 +559 1 39.7 18.36 34.25 +560 1 23.52 22.84 21.14 +561 1 32.82 27.9 5.02 +562 1 1.52 33.77 27.04 +563 1 31.48 18.68 13.1 +564 1 34 24.07 34.55 +565 1 34.72 25.03 30.45 +566 1 18.92 5.7 16.54 +567 1 15.26 40.2 16.97 +568 1 24.55 16.8 26.26 +569 1 17.59 18.03 31.75 +570 1 12.08 27.38 38.42 +571 1 31.42 21.91 35.27 +572 1 9.68 6.93 36.96 +573 1 22.93 15.19 2.53 +574 1 11.83 24.38 2.24 +575 1 16.02 12.44 31.42 +576 1 20.24 10.7 20.15 +577 1 37.38 17.37 40.63 +578 1 3.74 17.41 22.49 +579 1 23.21 9.86 23.99 +580 1 2.49 36.56 38 +581 1 20.51 1.54 22.62 +582 1 8.23 33.44 33.15 +583 1 30.93 8.12 14.85 +584 1 36.35 3.92 37.65 +585 1 5.57 10.63 28.64 +586 1 30.24 22.84 4.6 +587 1 3.24 15.97 7.43 +588 1 22.64 0.7 27.09 +589 1 1.64 40.37 27.74 +590 1 30.53 35.28 3.5 +591 1 25.55 4.7 2.53 +592 1 22.04 29.56 12.29 +593 1 3.42 8.76 2.28 +594 1 16.37 37.65 7.87 +595 1 20.65 12.75 2.9 +596 1 8.07 20.49 2.6 +597 1 20.04 24.72 28.2 +598 1 29.75 0.33 16.1 +599 1 31.36 33.09 8.02 +600 1 8.6 10.56 2.65 +601 1 20.55 33.93 33.71 +602 1 23.11 -0.42 31.7 +603 1 27.07 6.69 18.5 +604 1 15.65 23.71 11.8 +605 1 23.88 24.17 30.1 +606 1 0.79 32.46 16.99 +607 1 25.96 20.19 2.43 +608 1 35.16 12.33 4.73 +609 1 16.53 17.12 10.45 +610 1 19.74 35.94 8.62 +611 1 -0.24 28.29 28.3 +612 1 33.15 4.39 12.64 +613 1 24.27 18.59 33.59 +614 1 0.3 9.61 23.54 +615 1 5.52 10.89 34.71 +616 1 9.85 26.26 34.42 +617 1 25.54 37.74 39.13 +618 1 4.11 29.65 5.81 +619 1 30.86 22.72 31.07 +620 1 39.54 34.54 23.24 +621 1 15.03 9.34 12.11 +622 1 21.93 38.49 9.53 +623 1 18.21 19.2 16.65 +624 1 38.71 32.83 14.49 +625 1 37.74 36.38 31.43 +626 1 7.57 2.2 1.07 +627 1 12.27 10.05 1.53 +628 1 18.32 19.55 12.51 +629 1 12.49 24.81 16.57 +630 1 35.07 31.62 22.85 +631 1 4.91 19.68 30.45 +632 1 11.36 2.92 36.19 +633 1 26.76 35.53 1.29 +634 1 1.13 14.55 14.77 +635 1 8.2 25.14 37.83 +636 1 -0.5 0.85 23.08 +637 1 17.95 18.01 37.61 +638 1 2.44 37.75 0.71 +639 1 3.77 23.41 17.91 +640 1 3.34 14.41 35.96 +641 1 14.89 31.42 31.76 +642 1 15.72 22.91 30.66 +643 1 37.42 3.13 5.51 +644 1 1.51 38.14 20.78 +645 1 12.55 18.16 25.81 +646 1 18.98 15.88 29.21 +647 1 17.33 32.04 27.87 +648 1 31.21 37.38 22.84 +649 1 11.88 32.4 31 +650 1 25.1 2.19 12.69 +651 1 38.85 39.1 27.87 +652 1 5.9 16.14 33.34 +653 1 6.3 17.5 36.46 +654 1 2.28 25.02 12.53 +655 1 19.33 25.49 6.78 +656 1 8.57 37.22 8.4 +657 1 22 38.61 24.14 +658 1 35.63 3.23 2.15 +659 1 37.35 22.64 9.99 +660 1 25.46 28.22 33.18 +661 1 13.99 4.21 9.07 +662 1 9.04 40.64 37.59 +663 1 17.46 6.49 27.93 +664 1 1.42 6.14 30.2 +665 1 25.82 28.28 10.33 +666 1 30.71 30.2 -0.02 +667 1 8.05 29.32 0.62 +668 1 6.49 3.17 6.65 +669 1 7.77 39.88 26.03 +670 1 28.53 12.14 30.96 +671 1 6.25 12.64 39.55 +672 1 3.78 7.96 25.83 +673 1 28.69 29.58 6.61 +674 1 5.32 18.55 8.6 +675 1 5.3 11.44 14.19 +676 1 39 12.03 36.99 +677 1 11.08 32.51 19.12 +678 1 38.48 1.03 20.34 +679 1 38.47 11.31 10.12 +680 1 3.65 20.3 11.99 +681 1 27.18 11.39 3.4 +682 1 29.61 20.72 38.86 +683 1 31.88 4.82 24.75 +684 1 14.52 36.61 25.66 +685 1 21.68 19.96 24.58 +686 1 1.2 13.59 23.16 +687 1 37.71 5.97 35.28 +688 1 19.81 22.04 37.54 +689 1 40.67 27.07 10.14 +690 1 38.57 13.96 13.75 +691 1 18.15 17.19 21.63 +692 1 3.76 27.51 30.32 +693 1 11.39 25.09 7.96 +694 1 28.95 22.02 13.33 +695 1 31.72 35.46 35.33 +696 1 15.17 6.03 23.94 +697 1 9.63 9.42 22.18 +698 1 27.76 4.1 38.61 +699 1 27.37 37.46 11.07 +700 1 35.69 15.24 6.39 +701 1 21.92 33.09 36.84 +702 1 4.79 15.51 13.28 +703 1 9.31 26.44 22.8 +704 1 30.14 38.31 6.98 +705 1 4.33 6.66 13.77 +706 1 3.66 27.15 37.83 +707 1 0.44 24.06 29.62 +708 1 35.4 9.59 9.8 +709 1 33.77 39.44 21.41 +710 1 29.2 18.74 24.38 +711 1 34.14 30 7.36 +712 1 16.02 4.37 6.43 +713 1 35.75 39.41 40.58 +714 1 15.32 11.84 23.24 +715 1 32.52 24.39 20.97 +716 1 11.45 2.9 7.16 +717 1 7.07 34.28 36.04 +718 1 11.41 8.83 7.57 +719 1 29.29 27.79 16.55 +720 1 2.41 9.16 16.14 +721 1 13.14 38.07 12.01 +722 1 37.45 14.26 18.3 +723 1 34.64 18.37 16.65 +724 1 29.26 34.28 33.46 +725 1 13.67 19.83 3.04 +726 1 19.64 2.6 32.95 +727 1 23.61 23.55 11.34 +728 1 6.87 22.5 36.5 +729 1 36.78 28.34 22.96 +730 1 11.3 13.98 9.84 +731 1 20.82 19.73 9.16 +732 1 12.65 12.61 6.16 +733 1 9.25 7.81 25.28 +734 1 25.4 29.36 5.84 +735 1 17.86 9.06 4.45 +736 1 35.84 40.51 26.06 +737 1 26.97 21.28 31.59 +738 1 39.94 38.14 24.86 +739 1 3.16 17.07 2.49 +740 1 14.08 15.4 36.99 +741 1 26.1 13.88 29.68 +742 1 26.36 20 20.56 +743 1 12.02 6.35 27.65 +744 1 11.21 19.14 15.27 +745 1 35.86 22.93 26.81 +746 1 32.26 12.62 2.68 +747 1 29.36 4.91 6.86 +748 1 20.14 7.97 29.32 +749 1 25.53 11.2 36.18 +750 1 30.36 14.25 24.79 +751 1 29.84 38.37 39.29 +752 1 15.79 36.4 4.26 +753 1 32.59 14.17 10.29 +754 1 13.89 34.54 15.42 +755 1 12.13 33.62 7.27 +756 1 25.86 23.81 33.97 +757 1 18.4 31.27 34.96 +758 1 6.58 40.49 17.57 +759 1 5.64 39.86 23.05 +760 1 25.32 33 16.24 +761 1 0.98 10.99 12.21 +762 1 32.86 23.75 12.41 +763 1 32.91 1.3 26.94 +764 1 9.46 8.66 31.47 +765 1 17.49 15.53 1.82 +766 1 8.17 18.16 15.3 +767 1 4.84 30.63 26.32 +768 1 6.75 37.1 30.8 +769 1 7.16 5.72 15.74 +770 1 20.09 17.82 19.18 +771 1 1.02 27.99 32.54 +772 1 21.44 1.28 38.4 +773 1 21.06 14.62 37.08 +774 1 27.82 18.99 15.96 +775 1 33.51 21.46 22.82 +776 1 8.29 2.79 17.09 +777 1 18.14 11.41 28.62 +778 1 17.94 28.54 32.73 +779 1 36.1 9.54 40.1 +780 1 36.55 2.62 22.97 +781 1 27.29 10.41 39.35 +782 1 22.04 37.76 2.02 +783 1 23.01 30.08 16.58 +784 1 6.34 15.31 21.61 +785 1 7.3 22.39 7.74 +786 1 38 5.77 21.04 +787 1 32.93 12.85 26.58 +788 1 22.43 15.36 16.72 +789 1 18.54 2.38 8.35 +790 1 0.62 31.88 23.84 +791 1 39.56 30.3 21.7 +792 1 7.56 11.78 25.2 +793 1 16.05 3.98 26.72 +794 1 24.33 36.16 13.16 +795 1 26.38 31.24 35.77 +796 1 14.94 26.46 -0.44 +797 1 3.53 28 19.79 +798 1 11.94 32.27 25.88 +799 1 34.59 15.06 19.23 +800 1 3.51 10.62 24.22 +801 1 13.18 21.59 35.52 +802 1 19.95 13.15 16.23 +803 1 24.48 9.63 19.58 +804 1 37.7 34.42 19.19 +805 1 22.84 19.59 5.52 +806 1 34.62 36.75 12.26 +807 1 10.33 21.85 25.15 +808 1 21.51 29.7 7.23 +809 1 34.05 3 30.58 +810 1 12.43 29.67 5.59 +811 1 18.94 21.82 29.31 +812 1 39.21 17.7 4 +813 1 7.04 2.97 37.09 +814 1 30.87 10.8 22.09 +815 1 33.54 7.16 23.15 +816 1 32.82 32.27 11.47 +817 1 21.8 14.54 21.61 +818 1 38.83 6.69 13.68 +819 1 30.37 39.05 18.66 +820 1 31.21 15.08 13.79 +821 1 1.07 11.97 35.04 +822 1 26.02 35.8 35.47 +823 1 27.64 33.32 8.04 +824 1 39.57 36.88 4.39 +825 1 14.48 30.97 36.87 +826 1 36.86 27.04 8.96 +827 1 34.73 26.27 19.55 +828 1 29.24 29.12 10.86 +829 1 8.35 39.9 13.92 +830 1 5.43 5.1 31.85 +831 1 18.36 22.31 5.89 +832 1 2.46 27.35 16.36 +833 1 21.76 37.05 27.45 +834 1 29.32 17.11 2.28 +835 1 3.58 21.98 3.09 +836 1 10.61 9.17 10.69 +837 1 25.15 17.54 6.05 +838 1 3.4 22.81 7.03 +839 1 16.12 23.66 38.29 +840 1 8.67 4.79 31.8 +841 1 27.82 0.02 20.45 +842 1 4.46 2.44 29.46 +843 1 39.11 22.69 36.33 +844 1 4.26 2.45 34.43 +845 1 13.47 3.5 30.9 +846 1 26.92 22.55 26.54 +847 1 5.66 30.07 30.65 +848 1 31.58 35.68 25.46 +849 1 31.23 5.65 27.78 +850 1 8.76 19.49 28.61 +851 1 24.13 8.02 2.3 +852 1 8.27 6.8 4.93 +853 1 15.31 34.36 37.63 +854 1 3.96 35.82 26.97 +855 1 24.95 4.01 29.96 +856 1 26.54 25.95 19.15 +857 1 17.76 29.23 5.35 +858 1 16.95 21.79 0.78 +859 1 17.52 39.02 13.01 +860 1 20.5 22.86 10.41 +861 1 27.67 27.07 2.78 +862 1 37.1 31.02 2.03 +863 1 37.17 2.24 16.34 +864 1 24.51 34.69 10.28 +865 1 17.38 13.41 21.4 +866 1 38 9.37 17.94 +867 1 35.67 25.27 5.3 +868 1 22.66 4.47 0.97 +869 1 20.06 28.17 27.42 +870 1 27.33 2.38 9.79 +871 1 36.4 10.73 31.42 +872 1 0.53 9.45 6.96 +873 1 12.89 9.03 25.13 +874 1 37.5 23.54 21.33 +875 1 7.19 28.87 19.11 +876 1 21.45 32.81 22.71 +877 1 8.76 8.3 13.51 +878 1 10.24 31.46 3.73 +879 1 15.93 9.7 35.82 +880 1 14.92 19.46 39.91 +881 1 13.02 22.03 27.3 +882 1 34.57 1.59 34.73 +883 1 0.5 21.04 30.77 +884 1 24.84 32.67 4.97 +885 1 30.96 4.24 17.34 +886 1 23.63 8.84 32.7 +887 1 6.84 3.83 26.13 +888 1 31.57 9.23 27.06 +889 1 14.99 35.15 0.07 +890 1 36.29 40.01 8.22 +891 1 18 36.86 35.66 +892 1 11.5 29.22 0.37 +893 1 35.18 36.03 24.88 +894 1 14.49 9.41 27.73 +895 1 10.12 12.91 0.99 +896 1 11.91 29.4 27.3 +897 1 25.51 28.68 14.56 +898 1 29.32 12.95 35.59 +899 1 2.96 0.59 0.53 +900 1 5.47 5.35 9.88 +901 1 8.93 39.33 1.78 +902 1 39.68 38.49 12.33 +903 1 3.78 1.24 11.85 +904 1 29.54 33.76 11.99 +905 1 7.48 6.16 28.8 +906 1 10.83 33.63 36.96 +907 1 22.03 19.06 21.39 +908 1 31.68 31 3.71 +909 1 35.32 0.3 30.88 +910 1 9.93 35.42 14.85 +911 1 21.01 10.66 12.97 +912 1 22.54 21.62 33.81 +913 1 12.48 12.46 25.15 +914 1 0.64 27.93 39.01 +915 1 13.88 27.29 3.8 +916 1 13.03 20.93 19.25 +917 1 5.7 37.48 34.09 +918 1 2.27 35.08 14.29 +919 1 21.75 26.44 13.48 +920 1 10.66 11.35 17.49 +921 1 36.67 34.72 27.69 +922 1 8.23 22.8 33.36 +923 1 4.79 4.05 3.48 +924 1 35.61 35 35.21 +925 1 31.38 37.67 10.06 +926 1 26.44 35.58 27.52 +927 1 25.53 4.47 8.03 +928 1 38.81 33.08 31.55 +929 1 29.62 39.68 34.32 +930 1 0.76 3.88 10.61 +931 1 24.06 30.13 24.84 +932 1 18.77 8.38 37.02 +933 1 2.81 24.14 24.45 +934 1 11.33 1.25 19.69 +935 1 1.61 26.53 6.48 +936 1 9.52 29.81 35.98 +937 1 7.83 31.75 20.77 +938 1 9.67 23.93 20.57 +939 1 33.96 16.95 24.79 +940 1 37.55 37.31 37.17 +941 1 6.2 24.19 31.13 +942 1 17.79 4.35 30.56 +943 1 13.51 20.25 30.45 +944 1 14.76 12.48 13.13 +945 1 32.56 27.52 30.41 +946 1 35.81 40.1 4.85 +947 1 39.01 25.43 27.07 +948 1 22.8 5.53 32.22 +949 1 2.35 39.55 32.5 +950 1 3.31 31.51 34.19 +951 1 40.63 37.01 15.9 +952 1 18.43 35.86 30.77 +953 1 37.01 39.18 15.57 +954 1 6.74 6.26 21.64 +955 1 5.22 24.94 22.53 +956 1 25.2 11.08 13.98 +957 1 14.66 -0.14 5 +958 1 14.96 8.38 20.32 +959 1 1.89 23.03 10.1 +960 1 33.01 11.23 39.32 +961 1 32.68 6.79 32.04 +962 1 6.25 25.81 3.82 +963 1 18.37 31.97 14.57 +964 1 9.74 30.21 22.71 +965 1 3.09 1.52 19.38 +966 1 33.98 37.34 5.63 +967 1 32.19 28.35 15.8 +968 1 24.4 15.49 19.39 diff --git a/examples/USER/diffraction/BulkNi.in b/examples/USER/diffraction/BulkNi.in index a18163175cf35f9d125307df4dc8c7534d5526a5..0fa9c1b74c2c41d9917d21b7167d4761403a2c2b 100644 --- a/examples/USER/diffraction/BulkNi.in +++ b/examples/USER/diffraction/BulkNi.in @@ -20,7 +20,7 @@ compute XRD all xrd 1.541838 Ni 2Theta 40 80 c 2 2 2 LP 1 echo compute SAED all saed 0.0251 Ni Kmax 0.85 Zone 1 0 0 c 0.025 0.025 0.025 & dR_Ewald 0.05 echo manual -fix 1 all ave/histo 1 1 1 40 80 200 c_XRD[1] c_XRD[2] & +fix 1 all ave/histo/weight 1 1 1 40 80 200 c_XRD[1] c_XRD[2] & mode vector file $A.hist.xrd fix 2 all saed/vtk 1 1 1 c_SAED file $A_001.saed diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/in.large_nylon_melt b/examples/USER/misc/bond_react/nylon,6-6_melt/in.large_nylon_melt new file mode 100644 index 0000000000000000000000000000000000000000..f2dc506ddef28d978d48eb90569302e0de27124b --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/in.large_nylon_melt @@ -0,0 +1,52 @@ +# 35,000 atom nylon melt example + +units real + +boundary p p p + +atom_style full + +kspace_style pppm 1.0e-4 + +pair_style lj/class2/coul/long 8.5 + +angle_style class2 + +bond_style class2 + +dihedral_style class2 + +improper_style class2 + +read_data large_nylon_melt.data.gz + +velocity all create 800.0 4928459 dist gaussian + +molecule mol1 rxn1_stp1_unreacted.data_template +molecule mol2 rxn1_stp1_reacted.data_template +molecule mol3 rxn1_stp2_unreacted.data_template +molecule mol4 rxn1_stp2_reacted.data_template + +thermo 50 + +# dump 1 all xyz 100 test_vis.xyz + +fix myrxns all bond/react stabilization yes statted_grp .03 & + react rxn1 all 1 0.0 2.9 mol1 mol2 rxn1_stp1_map & + react rxn2 all 1 0.0 5.0 mol3 mol4 rxn1_stp2_map + +# stable at 800K +fix 1 statted_grp nvt temp 800 800 100 + +# in order to customize behavior of reacting atoms, +# you can use the internally created 'bond_react_MASTER_group', like so: +# fix 2 bond_react_MASTER_group temp/rescale 1 800 800 10 1 + +thermo_style custom step temp press density f_myrxns[1] f_myrxns[2] # cumulative reaction counts + +# restart 100 restart1 restart2 + +run 200 + +# write_restart restart_longrun +# write_data restart_longrun.data diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/large_nylon_melt.data.gz b/examples/USER/misc/bond_react/nylon,6-6_melt/large_nylon_melt.data.gz new file mode 100644 index 0000000000000000000000000000000000000000..c620b879a883817b8eb7abe4495e585ecacfaf02 Binary files /dev/null and b/examples/USER/misc/bond_react/nylon,6-6_melt/large_nylon_melt.data.gz differ diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/log.20Apr18.large_nylon_melt.g++.1 b/examples/USER/misc/bond_react/nylon,6-6_melt/log.20Apr18.large_nylon_melt.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..653c7582f8d7aba4c8800e5fcfff5ebb22d44a15 --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/log.20Apr18.large_nylon_melt.g++.1 @@ -0,0 +1,175 @@ +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task +# 35,000 atom nylon melt example + +units real + +boundary p p p + +atom_style full + +kspace_style pppm 1.0e-4 + +pair_style lj/class2/coul/long 8.5 + +angle_style class2 + +bond_style class2 + +dihedral_style class2 + +improper_style class2 + +read_data large_nylon_melt.data.gz + orthogonal box = (-2.68344 -2.06791 -2.21988) to (73.4552 73.2448 73.4065) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 35200 atoms + reading velocities ... + 35200 velocities + scanning bonds ... + 9 = max bonds/atom + scanning angles ... + 21 = max angles/atom + scanning dihedrals ... + 31 = max dihedrals/atom + scanning impropers ... + 29 = max impropers/atom + reading bonds ... + 33600 bonds + reading angles ... + 59200 angles + reading dihedrals ... + 80000 dihedrals + reading impropers ... + 35200 impropers + 4 = max # of 1-2 neighbors + 6 = max # of 1-3 neighbors + 12 = max # of 1-4 neighbors + 41 = max # of special neighbors + +velocity all create 800.0 4928459 dist gaussian + +molecule mol1 rxn1_stp1_unreacted.data_template +Read molecule mol1: + 18 atoms with max type 8 + 16 bonds with max type 12 + 25 angles with max type 24 + 23 dihedrals with max type 33 + 14 impropers with max type 9 +molecule mol2 rxn1_stp1_reacted.data_template +Read molecule mol2: + 18 atoms with max type 9 + 17 bonds with max type 11 + 31 angles with max type 23 + 39 dihedrals with max type 30 + 20 impropers with max type 1 +molecule mol3 rxn1_stp2_unreacted.data_template +Read molecule mol3: + 15 atoms with max type 9 + 14 bonds with max type 11 + 25 angles with max type 23 + 30 dihedrals with max type 30 + 16 impropers with max type 1 +molecule mol4 rxn1_stp2_reacted.data_template +Read molecule mol4: + 15 atoms with max type 11 + 13 bonds with max type 13 + 19 angles with max type 25 + 16 dihedrals with max type 29 + 10 impropers with max type 11 + +thermo 50 + +# dump 1 all xyz 100 test_vis.xyz + +fix myrxns all bond/react stabilization yes statted_grp .03 react rxn1 all 1 0.0 2.9 mol1 mol2 rxn1_stp1_map react rxn2 all 1 0.0 5.0 mol3 mol4 rxn1_stp2_map +WARNING: An atom in 'react #1' changes bond connectivity but not atom type (../fix_bond_react.cpp:1489) +WARNING: An atom in 'react #2' changes bond connectivity but not atom type (../fix_bond_react.cpp:1489) +dynamic group bond_react_MASTER_group defined +dynamic group statted_grp defined +dynamic group bond_react_MASTER_group defined +dynamic group statted_grp defined + +# stable at 800K +fix 1 statted_grp nvt temp 800 800 100 + +# in order to customize behavior of reacting atoms, +# you can use the internally created 'bond_react_MASTER_group', like so: +# fix 2 bond_react_MASTER_group temp/rescale 1 800 800 10 1 + +thermo_style custom step temp press density f_myrxns[1] f_myrxns[2] # cumulative reaction counts + +# restart 100 restart1 restart2 + +run 200 +PPPM initialization ... + using 12-bit tables for long-range coulomb (../kspace.cpp:321) + G vector (1/distance) = 0.20765 + grid = 18 18 18 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0333156 + estimated relative force accuracy = 0.000100329 + using double precision FFTs + 3d grid and FFT values/proc = 12167 5832 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 10.5 + ghost atom cutoff = 10.5 + binsize = 5.25, bins = 15 15 15 + 2 neighbor lists, perpetual/occasional/extra = 1 1 0 + (1) pair lj/class2/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard + (2) fix bond/react, occasional, copy from (1) + attributes: half, newton on + pair build: copy + stencil: none + bin: none +Per MPI rank memory allocation (min/avg/max) = 209.1 | 209.1 | 209.1 Mbytes +Step Temp Press Density f_myrxns[1] f_myrxns[2] + 0 800 3666.3948 0.80366765 0 0 + 50 673.95238 -9670.9169 0.80366765 31 0 + 100 697.22819 -4624.0512 0.80366765 57 22 + 150 723.60507 -17175.571 0.80366765 76 48 + 200 736.71277 -12961.963 0.80366765 84 64 +Loop time of 102.825 on 1 procs for 200 steps with 35200 atoms + +Performance: 0.168 ns/day, 142.812 hours/ns, 1.945 timesteps/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 27.193 | 27.193 | 27.193 | 0.0 | 26.45 +Bond | 11.324 | 11.324 | 11.324 | 0.0 | 11.01 +Kspace | 4.1878 | 4.1878 | 4.1878 | 0.0 | 4.07 +Neigh | 54.724 | 54.724 | 54.724 | 0.0 | 53.22 +Comm | 0.40662 | 0.40662 | 0.40662 | 0.0 | 0.40 +Output | 0.0011101 | 0.0011101 | 0.0011101 | 0.0 | 0.00 +Modify | 4.9422 | 4.9422 | 4.9422 | 0.0 | 4.81 +Other | | 0.04545 | | | 0.04 + +Nlocal: 35200 ave 35200 max 35200 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 38403 ave 38403 max 38403 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 6.9281e+06 ave 6.9281e+06 max 6.9281e+06 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 6928101 +Ave neighs/atom = 196.821 +Ave special neighs/atom = 9.83727 +Neighbor list builds = 200 +Dangerous builds = 0 + +# write_restart restart_longrun +# write_data restart_longrun.data + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:01:43 diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/log.20Apr18.large_nylon_melt.g++.4 b/examples/USER/misc/bond_react/nylon,6-6_melt/log.20Apr18.large_nylon_melt.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..cc0dda60c7dcec4b775d0d5cd6cdad4f6b751124 --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/log.20Apr18.large_nylon_melt.g++.4 @@ -0,0 +1,175 @@ +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task +# 35,000 atom nylon melt example + +units real + +boundary p p p + +atom_style full + +kspace_style pppm 1.0e-4 + +pair_style lj/class2/coul/long 8.5 + +angle_style class2 + +bond_style class2 + +dihedral_style class2 + +improper_style class2 + +read_data large_nylon_melt.data.gz + orthogonal box = (-2.68344 -2.06791 -2.21988) to (73.4552 73.2448 73.4065) + 2 by 1 by 2 MPI processor grid + reading atoms ... + 35200 atoms + reading velocities ... + 35200 velocities + scanning bonds ... + 9 = max bonds/atom + scanning angles ... + 21 = max angles/atom + scanning dihedrals ... + 31 = max dihedrals/atom + scanning impropers ... + 29 = max impropers/atom + reading bonds ... + 33600 bonds + reading angles ... + 59200 angles + reading dihedrals ... + 80000 dihedrals + reading impropers ... + 35200 impropers + 4 = max # of 1-2 neighbors + 6 = max # of 1-3 neighbors + 12 = max # of 1-4 neighbors + 41 = max # of special neighbors + +velocity all create 800.0 4928459 dist gaussian + +molecule mol1 rxn1_stp1_unreacted.data_template +Read molecule mol1: + 18 atoms with max type 8 + 16 bonds with max type 12 + 25 angles with max type 24 + 23 dihedrals with max type 33 + 14 impropers with max type 9 +molecule mol2 rxn1_stp1_reacted.data_template +Read molecule mol2: + 18 atoms with max type 9 + 17 bonds with max type 11 + 31 angles with max type 23 + 39 dihedrals with max type 30 + 20 impropers with max type 1 +molecule mol3 rxn1_stp2_unreacted.data_template +Read molecule mol3: + 15 atoms with max type 9 + 14 bonds with max type 11 + 25 angles with max type 23 + 30 dihedrals with max type 30 + 16 impropers with max type 1 +molecule mol4 rxn1_stp2_reacted.data_template +Read molecule mol4: + 15 atoms with max type 11 + 13 bonds with max type 13 + 19 angles with max type 25 + 16 dihedrals with max type 29 + 10 impropers with max type 11 + +thermo 50 + +# dump 1 all xyz 100 test_vis.xyz + +fix myrxns all bond/react stabilization yes statted_grp .03 react rxn1 all 1 0.0 2.9 mol1 mol2 rxn1_stp1_map react rxn2 all 1 0.0 5.0 mol3 mol4 rxn1_stp2_map +WARNING: An atom in 'react #1' changes bond connectivity but not atom type (../fix_bond_react.cpp:1489) +WARNING: An atom in 'react #2' changes bond connectivity but not atom type (../fix_bond_react.cpp:1489) +dynamic group bond_react_MASTER_group defined +dynamic group statted_grp defined +dynamic group bond_react_MASTER_group defined +dynamic group statted_grp defined + +# stable at 800K +fix 1 statted_grp nvt temp 800 800 100 + +# in order to customize behavior of reacting atoms, +# you can use the internally created 'bond_react_MASTER_group', like so: +# fix 2 bond_react_MASTER_group temp/rescale 1 800 800 10 1 + +thermo_style custom step temp press density f_myrxns[1] f_myrxns[2] # cumulative reaction counts + +# restart 100 restart1 restart2 + +run 200 +PPPM initialization ... + using 12-bit tables for long-range coulomb (../kspace.cpp:321) + G vector (1/distance) = 0.20765 + grid = 18 18 18 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0333156 + estimated relative force accuracy = 0.000100329 + using double precision FFTs + 3d grid and FFT values/proc = 4508 1620 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 10.5 + ghost atom cutoff = 10.5 + binsize = 5.25, bins = 15 15 15 + 2 neighbor lists, perpetual/occasional/extra = 1 1 0 + (1) pair lj/class2/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard + (2) fix bond/react, occasional, copy from (1) + attributes: half, newton on + pair build: copy + stencil: none + bin: none +Per MPI rank memory allocation (min/avg/max) = 81.11 | 81.13 | 81.15 Mbytes +Step Temp Press Density f_myrxns[1] f_myrxns[2] + 0 800 3666.3948 0.80366765 0 0 + 50 673.95238 -9670.9169 0.80366765 31 0 + 100 697.22819 -4624.0512 0.80366765 57 22 + 150 724.40407 -17166.729 0.80366765 76 49 + 200 737.28582 -12968.224 0.80366765 84 65 +Loop time of 51.171 on 4 procs for 200 steps with 35200 atoms + +Performance: 0.338 ns/day, 71.071 hours/ns, 3.908 timesteps/s +98.4% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 12.926 | 13.247 | 13.493 | 6.7 | 25.89 +Bond | 5.2132 | 5.2733 | 5.3367 | 1.9 | 10.31 +Kspace | 2.3601 | 2.6534 | 3.0067 | 16.0 | 5.19 +Neigh | 25.93 | 25.934 | 25.937 | 0.1 | 50.68 +Comm | 0.73273 | 0.75464 | 0.78505 | 2.3 | 1.47 +Output | 0.00045228 | 0.00067407 | 0.0013323 | 0.0 | 0.00 +Modify | 3.2682 | 3.2686 | 3.2692 | 0.0 | 6.39 +Other | | 0.03995 | | | 0.08 + +Nlocal: 8800 ave 8913 max 8652 min +Histogram: 1 0 0 0 1 0 0 0 1 1 +Nghost: 18366 ave 18461 max 18190 min +Histogram: 1 0 0 0 0 0 0 1 1 1 +Neighs: 1.73203e+06 ave 1.77261e+06 max 1.68165e+06 min +Histogram: 1 0 1 0 0 0 0 0 0 2 + +Total # of neighbors = 6928132 +Ave neighs/atom = 196.822 +Ave special neighs/atom = 9.83608 +Neighbor list builds = 200 +Dangerous builds = 0 + +# write_restart restart_longrun +# write_data restart_longrun.data + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:52 diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_map b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_map new file mode 100644 index 0000000000000000000000000000000000000000..44f7ad8137549eaa375046e114c59a7aa09c0c65 --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_map @@ -0,0 +1,35 @@ +this is a nominal superimpose file + +2 edgeIDs +18 equivalences + +BondingIDs + +10 +1 + +EdgeIDs + +16 +8 + +Equivalences + +1 1 +2 2 +3 3 +4 4 +5 5 +6 6 +7 7 +8 8 +9 9 +10 10 +11 11 +12 12 +13 13 +14 14 +15 15 +16 16 +17 17 +18 18 diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_reacted.data_template b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_reacted.data_template new file mode 100644 index 0000000000000000000000000000000000000000..61c0408ce3e57955e736d15e77736b95dccf240b --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_reacted.data_template @@ -0,0 +1,189 @@ +this is a molecule template for: initial nylon crosslink, post-reacting + +18 atoms +17 bonds +31 angles +39 dihedrals +20 impropers + +Types + +1 9 +2 1 +3 1 +4 4 +5 4 +6 3 +7 3 +8 1 +9 1 +10 5 +11 8 +12 6 +13 3 +14 3 +15 7 +16 1 +17 3 +18 3 + +Charges + +1 -0.300000 +2 0.000000 +3 0.000000 +4 0.000000 +5 0.000000 +6 0.000000 +7 0.000000 +8 0.000000 +9 0.000000 +10 0.300000 +11 0.000000 +12 0.000000 +13 0.000000 +14 0.000000 +15 0.000000 +16 0.000000 +17 0.000000 +18 0.000000 + +Coords + +1 -5.522237 -0.752722 1.631158 +2 -5.170398 -0.545733 0.178130 +3 -6.469695 -0.553072 -0.648889 +4 -6.052076 -1.721152 1.744648 +5 -6.183059 0.071387 1.971497 +6 -4.489340 -1.389197 -0.173156 +7 -4.637591 0.453703 0.051252 +8 -5.618658 0.138919 4.386107 +9 -4.669492 -0.989819 3.943591 +10 -4.270194 -0.766405 2.474102 +11 -3.348470 -1.875393 2.024289 +12 -3.569794 0.564183 2.345995 +13 -5.201079 -1.993301 4.044219 +14 -3.736682 -0.984819 4.598305 +15 -4.255402 1.370923 2.679069 +16 -6.136394 -0.339866 -2.136775 +17 -6.996331 -1.555519 -0.517408 +18 -7.153308 0.284949 -0.289930 + +Bonds + +1 9 1 2 +2 10 1 4 +3 10 1 5 +4 11 1 10 +5 1 2 3 +6 2 2 6 +7 2 2 7 +8 1 3 16 +9 2 3 17 +10 2 3 18 +11 1 8 9 +12 6 9 10 +13 2 9 13 +14 2 9 14 +15 7 10 11 +16 5 10 12 +17 8 12 15 + +Angles + +1 14 2 1 4 +2 14 2 1 5 +3 15 2 1 10 +4 16 4 1 5 +5 17 4 1 10 +6 17 5 1 10 +7 18 1 2 3 +8 19 1 2 6 +9 19 1 2 7 +10 1 3 2 6 +11 1 3 2 7 +12 3 6 2 7 +13 2 2 3 16 +14 1 2 3 17 +15 1 2 3 18 +16 1 16 3 17 +17 1 16 3 18 +18 3 17 3 18 +19 12 8 9 10 +20 1 8 9 13 +21 1 8 9 14 +22 13 13 9 10 +23 13 14 9 10 +24 3 13 9 14 +25 10 9 10 11 +26 8 9 10 12 +27 20 1 10 9 +28 21 11 10 12 +29 22 1 10 11 +30 23 1 10 12 +31 11 10 12 15 + +Dihedrals + +1 16 4 1 2 3 +2 17 4 1 2 6 +3 17 4 1 2 7 +4 16 5 1 2 3 +5 17 5 1 2 6 +6 17 5 1 2 7 +7 18 10 1 2 3 +8 19 10 1 2 6 +9 19 10 1 2 7 +10 20 2 1 10 9 +11 21 2 1 10 11 +12 22 2 1 10 12 +13 23 4 1 10 9 +14 24 4 1 10 11 +15 25 4 1 10 12 +16 23 5 1 10 9 +17 24 5 1 10 11 +18 25 5 1 10 12 +19 26 1 2 3 16 +20 27 1 2 3 17 +21 27 1 2 3 18 +22 4 16 3 2 6 +23 2 6 2 3 17 +24 2 6 2 3 18 +25 4 16 3 2 7 +26 2 7 2 3 17 +27 2 7 2 3 18 +28 14 8 9 10 11 +29 12 8 9 10 12 +30 28 8 9 10 1 +31 15 13 9 10 11 +32 13 13 9 10 12 +33 29 13 9 10 1 +34 15 14 9 10 11 +35 13 14 9 10 12 +36 29 14 9 10 1 +37 10 9 10 12 15 +38 11 11 10 12 15 +39 30 1 10 12 15 + +Impropers + +1 1 2 1 4 5 +2 1 2 1 4 10 +3 1 2 1 5 10 +4 1 4 1 5 10 +5 1 1 2 3 6 +6 1 1 2 3 7 +7 1 1 2 6 7 +8 1 3 2 6 7 +9 1 2 3 16 17 +10 1 2 3 16 18 +11 1 2 3 17 18 +12 1 16 3 17 18 +13 1 8 9 13 10 +14 1 8 9 14 10 +15 1 8 9 13 14 +16 1 13 9 14 10 +17 1 9 10 11 12 +18 1 1 10 9 11 +19 1 1 10 9 12 +20 1 1 10 11 12 diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_unreacted.data_template b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_unreacted.data_template new file mode 100644 index 0000000000000000000000000000000000000000..944d6918c57e77d2d96b3a949efac38cfce1c5f6 --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp1_unreacted.data_template @@ -0,0 +1,160 @@ +this is a molecule template for: initial nylon crosslink, pre-reacting + +18 atoms +16 bonds +25 angles +23 dihedrals +14 impropers + +Types + +1 2 +2 1 +3 1 +4 4 +5 4 +6 3 +7 3 +8 1 +9 1 +10 5 +11 8 +12 6 +13 3 +14 3 +15 7 +16 1 +17 3 +18 3 + +Charges + +1 -0.300000 +2 0.000000 +3 0.000000 +4 0.000000 +5 0.000000 +6 0.000000 +7 0.000000 +8 0.000000 +9 0.000000 +10 0.300000 +11 0.000000 +12 0.000000 +13 0.000000 +14 0.000000 +15 0.000000 +16 0.000000 +17 0.000000 +18 0.000000 + +Coords + +1 -4.922858 -0.946982 1.146055 +2 -5.047195 -0.935267 -0.358173 +3 -6.526281 -0.755366 -0.743523 +4 -5.282604 0.020447 1.552710 +5 -3.860697 -1.095850 1.428305 +6 -4.662382 -1.920900 -0.781524 +7 -4.433977 -0.072765 -0.784071 +8 -5.506279 0.202610 4.825816 +9 -4.449177 -0.844592 4.423366 +10 -4.103916 -0.749629 2.925195 +11 -3.376249 -1.886171 2.245643 +12 -4.493235 0.477214 2.137199 +13 -4.849053 -1.888877 4.663994 +14 -3.491823 -0.662913 5.018510 +15 -5.020777 1.189745 2.805427 +16 -3.964987 2.900602 -1.551341 +17 -4.460694 2.836102 0.668882 +18 -4.828494 3.219656 -0.122111 + +Bonds + +1 12 1 2 +2 4 1 4 +3 4 1 5 +4 1 2 3 +5 2 2 6 +6 2 2 7 +7 1 3 16 +8 2 3 17 +9 2 3 18 +10 1 8 9 +11 6 9 10 +12 2 9 13 +13 2 9 14 +14 7 10 11 +15 5 10 12 +16 8 12 15 + +Angles + +1 6 2 1 4 +2 6 2 1 5 +3 7 4 1 5 +4 24 1 2 3 +5 5 1 2 6 +6 5 1 2 7 +7 1 3 2 6 +8 1 3 2 7 +9 3 6 2 7 +10 2 2 3 16 +11 1 2 3 17 +12 1 2 3 18 +13 1 16 3 17 +14 1 16 3 18 +15 3 17 3 18 +16 12 8 9 10 +17 1 8 9 13 +18 1 8 9 14 +19 13 13 9 10 +20 13 14 9 10 +21 3 13 9 14 +22 10 9 10 11 +23 8 9 10 12 +24 21 11 10 12 +25 11 10 12 15 + +Dihedrals + +1 31 4 1 2 3 +2 32 4 1 2 6 +3 32 4 1 2 7 +4 31 5 1 2 3 +5 32 5 1 2 6 +6 32 5 1 2 7 +7 33 1 2 3 16 +8 1 1 2 3 17 +9 1 1 2 3 18 +10 4 16 3 2 6 +11 2 6 2 3 17 +12 2 6 2 3 18 +13 4 16 3 2 7 +14 2 7 2 3 17 +15 2 7 2 3 18 +16 14 8 9 10 11 +17 12 8 9 10 12 +18 15 13 9 10 11 +19 13 13 9 10 12 +20 15 14 9 10 11 +21 13 14 9 10 12 +22 10 9 10 12 15 +23 11 11 10 12 15 + +Impropers + +1 1 2 1 4 5 +2 9 9 10 11 12 +3 1 1 2 3 6 +4 1 1 2 3 7 +5 1 1 2 6 7 +6 1 3 2 6 7 +7 1 2 3 16 17 +8 1 2 3 16 18 +9 1 2 3 17 18 +10 1 16 3 17 18 +11 1 8 9 13 10 +12 1 8 9 14 10 +13 1 8 9 13 14 +14 1 13 9 14 10 diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_map b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_map new file mode 100644 index 0000000000000000000000000000000000000000..35fe47fdb3bdb0386d65b950d45cbfb39fbe6f7f --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_map @@ -0,0 +1,32 @@ +this is a nominal superimpose file + +2 edgeIDs +15 equivalences + +BondingIDs + +4 +12 + +EdgeIDs + +8 +3 + +Equivalences + +1 1 +2 2 +3 3 +4 4 +5 5 +6 6 +7 7 +8 8 +9 9 +10 10 +11 11 +12 12 +13 13 +14 14 +15 15 diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_reacted.data_template b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_reacted.data_template new file mode 100644 index 0000000000000000000000000000000000000000..ffd3ef733c0ff4eb28c59ba4d8c657a2710dd8ad --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_reacted.data_template @@ -0,0 +1,131 @@ +this is a molecule template for: water condensation, post-reacting + +15 atoms +13 bonds +19 angles +16 dihedrals +10 impropers + +Types + +1 9 +2 1 +3 1 +4 10 +5 4 +6 3 +7 3 +8 1 +9 1 +10 5 +11 8 +12 11 +13 3 +14 3 +15 10 + +Charges + +1 -0.300000 +2 0.000000 +3 0.000000 +4 0.410000 +5 0.000000 +6 0.000000 +7 0.000000 +8 0.000000 +9 0.000000 +10 0.300000 +11 0.000000 +12 -0.820000 +13 0.000000 +14 0.000000 +15 0.410000 + +Coords + +1 -4.856280 -1.050468 1.432625 +2 -5.047195 -0.935267 -0.358173 +3 -6.526281 -0.755366 -0.743523 +4 -5.282604 0.020447 1.552710 +5 -3.860697 -1.095850 1.428305 +6 -4.662382 -1.920900 -0.781524 +7 -4.433977 -0.072765 -0.784071 +8 -5.506279 0.202610 4.825816 +9 -4.449177 -0.844592 4.423366 +10 -4.103916 -0.749629 2.925195 +11 -3.376249 -1.886171 2.245643 +12 -4.493235 0.477214 2.137199 +13 -4.849053 -1.888877 4.663994 +14 -3.491823 -0.662913 5.018510 +15 -5.020777 1.189745 2.805427 + +Bonds + +1 9 1 2 +2 10 1 5 +3 11 1 10 +4 1 2 3 +5 2 2 6 +6 2 2 7 +7 13 4 12 +8 1 8 9 +9 6 9 10 +10 2 9 13 +11 2 9 14 +12 7 10 11 +13 13 15 12 + +Angles + +1 14 2 1 5 +2 15 2 1 10 +3 17 5 1 10 +4 18 1 2 3 +5 19 1 2 6 +6 19 1 2 7 +7 1 3 2 6 +8 1 3 2 7 +9 3 6 2 7 +10 12 8 9 10 +11 1 8 9 13 +12 1 8 9 14 +13 13 13 9 10 +14 13 14 9 10 +15 3 13 9 14 +16 10 9 10 11 +17 20 1 10 9 +18 22 1 10 11 +19 25 15 12 4 + +Dihedrals + +1 16 5 1 2 3 +2 17 5 1 2 6 +3 17 5 1 2 7 +4 18 10 1 2 3 +5 19 10 1 2 6 +6 19 10 1 2 7 +7 20 2 1 10 9 +8 21 2 1 10 11 +9 23 5 1 10 9 +10 24 5 1 10 11 +11 14 8 9 10 11 +12 28 8 9 10 1 +13 15 13 9 10 11 +14 29 13 9 10 1 +15 15 14 9 10 11 +16 29 14 9 10 1 + +Impropers + +1 10 2 1 5 10 +2 11 1 10 9 11 +3 1 1 2 3 6 +4 1 1 2 3 7 +5 1 1 2 6 7 +6 1 3 2 6 7 +7 1 8 9 13 10 +8 1 8 9 14 10 +9 1 8 9 13 14 +10 1 13 9 14 10 diff --git a/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_unreacted.data_template b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_unreacted.data_template new file mode 100644 index 0000000000000000000000000000000000000000..7abe15ada8d2372e4435ef82b5e60b7417865790 --- /dev/null +++ b/examples/USER/misc/bond_react/nylon,6-6_melt/rxn1_stp2_unreacted.data_template @@ -0,0 +1,158 @@ +this is a molecule template for: water condensation, pre-reacting + +15 atoms +14 bonds +25 angles +30 dihedrals +16 impropers + +Types + +1 9 +2 1 +3 1 +4 4 +5 4 +6 3 +7 3 +8 1 +9 1 +10 5 +11 8 +12 6 +13 3 +14 3 +15 7 + +Charges + +1 -0.300000 +2 0.000000 +3 0.000000 +4 0.000000 +5 0.000000 +6 0.000000 +7 0.000000 +8 0.000000 +9 0.000000 +10 0.300000 +11 0.000000 +12 0.000000 +13 0.000000 +14 0.000000 +15 0.000000 + +Coords + +1 -4.922858 -0.946982 1.146055 +2 -5.047195 -0.935267 -0.358173 +3 -6.526281 -0.755366 -0.743523 +4 -5.282604 0.020447 1.552710 +5 -3.860697 -1.095850 1.428305 +6 -4.662382 -1.920900 -0.781524 +7 -4.433977 -0.072765 -0.784071 +8 -5.506279 0.202610 4.825816 +9 -4.449177 -0.844592 4.423366 +10 -4.103916 -0.749629 2.925195 +11 -3.376249 -1.886171 2.245643 +12 -4.493235 0.477214 2.137199 +13 -4.849053 -1.888877 4.663994 +14 -3.491823 -0.662913 5.018510 +15 -5.020777 1.189745 2.805427 + +Bonds + +1 9 1 2 +2 10 1 4 +3 10 1 5 +4 11 1 10 +5 1 2 3 +6 2 2 6 +7 2 2 7 +8 1 8 9 +9 6 9 10 +10 2 9 13 +11 2 9 14 +12 7 10 11 +13 5 10 12 +14 8 12 15 + +Angles + +1 14 2 1 4 +2 14 2 1 5 +3 15 2 1 10 +4 16 4 1 5 +5 17 4 1 10 +6 17 5 1 10 +7 18 1 2 3 +8 19 1 2 6 +9 19 1 2 7 +10 1 3 2 6 +11 1 3 2 7 +12 3 6 2 7 +13 12 8 9 10 +14 1 8 9 13 +15 1 8 9 14 +16 13 13 9 10 +17 13 14 9 10 +18 3 13 9 14 +19 10 9 10 11 +20 8 9 10 12 +21 20 1 10 9 +22 21 11 10 12 +23 22 1 10 11 +24 23 1 10 12 +25 11 10 12 15 + +Dihedrals + +1 16 4 1 2 3 +2 17 4 1 2 6 +3 17 4 1 2 7 +4 16 5 1 2 3 +5 17 5 1 2 6 +6 17 5 1 2 7 +7 18 10 1 2 3 +8 19 10 1 2 6 +9 19 10 1 2 7 +10 20 2 1 10 9 +11 21 2 1 10 11 +12 22 2 1 10 12 +13 23 4 1 10 9 +14 24 4 1 10 11 +15 25 4 1 10 12 +16 23 5 1 10 9 +17 24 5 1 10 11 +18 25 5 1 10 12 +19 14 8 9 10 11 +20 12 8 9 10 12 +21 28 8 9 10 1 +22 15 13 9 10 11 +23 13 13 9 10 12 +24 29 13 9 10 1 +25 15 14 9 10 11 +26 13 14 9 10 12 +27 29 14 9 10 1 +28 10 9 10 12 15 +29 11 11 10 12 15 +30 30 1 10 12 15 + +Impropers + +1 1 2 1 4 5 +2 1 2 1 4 10 +3 1 2 1 5 10 +4 1 4 1 5 10 +5 1 1 2 3 6 +6 1 1 2 3 7 +7 1 1 2 6 7 +8 1 3 2 6 7 +9 1 8 9 13 10 +10 1 8 9 14 10 +11 1 8 9 13 14 +12 1 13 9 14 10 +13 1 9 10 11 12 +14 1 1 10 9 11 +15 1 1 10 9 12 +16 1 1 10 11 12 diff --git a/examples/USER/misc/bond_react/tiny_nylon/in.tiny_nylon b/examples/USER/misc/bond_react/tiny_nylon/in.tiny_nylon new file mode 100644 index 0000000000000000000000000000000000000000..1f7e9c42b7b4098fd355dec8afc696e42631321c --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/in.tiny_nylon @@ -0,0 +1,50 @@ +# two monomer nylon example +# reaction produces a condensed water molecule + +units real + +boundary p p p + +atom_style full + +kspace_style pppm 1.0e-4 + +pair_style lj/class2/coul/long 8.5 + +angle_style class2 + +bond_style class2 + +dihedral_style class2 + +improper_style class2 + +read_data tiny_nylon.data + +velocity all create 300.0 4928459 dist gaussian + +molecule mol1 rxn1_stp1_unreacted.data_template +molecule mol2 rxn1_stp1_reacted.data_template +molecule mol3 rxn1_stp2_unreacted.data_template +molecule mol4 rxn1_stp2_reacted.data_template + +thermo 50 + +# dump 1 all xyz 1 test_vis.xyz + +fix myrxns all bond/react stabilization yes statted_grp .03 & + react rxn1 all 1 0.0 2.9 mol1 mol2 rxn1_stp1_map & + react rxn2 all 1 0.0 5.0 mol3 mol4 rxn1_stp2_map + +fix 1 statted_grp nvt temp 300 300 100 + +fix 4 bond_react_MASTER_group temp/rescale 1 300 300 10 1 + +thermo_style custom step temp press density f_myrxns[1] f_myrxns[2] + +# restart 100 restart1 restart2 + +run 10000 + +# write_restart restart_longrun +# write_data restart_longrun.data diff --git a/examples/USER/misc/bond_react/tiny_nylon/log.20Apr18.tiny_nylon.g++.1 b/examples/USER/misc/bond_react/tiny_nylon/log.20Apr18.tiny_nylon.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..344439f94c5906e1fc7417921b89434ae0a7b8b5 --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/log.20Apr18.tiny_nylon.g++.1 @@ -0,0 +1,370 @@ +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task +# two monomer nylon example +# reaction produces a condensed water molecule + +units real + +boundary p p p + +atom_style full + +kspace_style pppm 1.0e-4 + +pair_style lj/class2/coul/long 8.5 + +angle_style class2 + +bond_style class2 + +dihedral_style class2 + +improper_style class2 + +read_data tiny_nylon.data + orthogonal box = (-25 -25 -25) to (25 25 25) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 44 atoms + reading velocities ... + 44 velocities + scanning bonds ... + 9 = max bonds/atom + scanning angles ... + 21 = max angles/atom + scanning dihedrals ... + 29 = max dihedrals/atom + scanning impropers ... + 29 = max impropers/atom + reading bonds ... + 42 bonds + reading angles ... + 74 angles + reading dihedrals ... + 100 dihedrals + reading impropers ... + 44 impropers + 4 = max # of 1-2 neighbors + 6 = max # of 1-3 neighbors + 12 = max # of 1-4 neighbors + 41 = max # of special neighbors + +velocity all create 300.0 4928459 dist gaussian + +molecule mol1 rxn1_stp1_unreacted.data_template +Read molecule mol1: + 18 atoms with max type 8 + 16 bonds with max type 14 + 25 angles with max type 28 + 23 dihedrals with max type 36 + 14 impropers with max type 11 +molecule mol2 rxn1_stp1_reacted.data_template +Read molecule mol2: + 18 atoms with max type 9 + 17 bonds with max type 13 + 31 angles with max type 27 + 39 dihedrals with max type 33 + 20 impropers with max type 1 +molecule mol3 rxn1_stp2_unreacted.data_template +Read molecule mol3: + 15 atoms with max type 9 + 14 bonds with max type 13 + 25 angles with max type 27 + 30 dihedrals with max type 33 + 16 impropers with max type 1 +molecule mol4 rxn1_stp2_reacted.data_template +Read molecule mol4: + 15 atoms with max type 11 + 13 bonds with max type 15 + 19 angles with max type 29 + 16 dihedrals with max type 32 + 10 impropers with max type 13 + +thermo 50 + +# dump 1 all xyz 1 test_vis.xyz + +fix myrxns all bond/react stabilization yes statted_grp .03 react rxn1 all 1 0.0 2.9 mol1 mol2 rxn1_stp1_map react rxn2 all 1 0.0 5.0 mol3 mol4 rxn1_stp2_map +WARNING: An atom in 'react #1' changes bond connectivity but not atom type (../fix_bond_react.cpp:1489) +WARNING: An atom in 'react #2' changes bond connectivity but not atom type (../fix_bond_react.cpp:1489) +dynamic group bond_react_MASTER_group defined +dynamic group statted_grp defined +dynamic group bond_react_MASTER_group defined +dynamic group statted_grp defined + +fix 1 statted_grp nvt temp 300 300 100 + +fix 4 bond_react_MASTER_group temp/rescale 1 300 300 10 1 + +thermo_style custom step temp press density f_myrxns[1] f_myrxns[2] + +# restart 100 restart1 restart2 + +run 10000 +PPPM initialization ... + using 12-bit tables for long-range coulomb (../kspace.cpp:321) + G vector (1/distance) = 0.0534597 + grid = 2 2 2 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0402256 + estimated relative force accuracy = 0.000121138 + using double precision FFTs + 3d grid and FFT values/proc = 343 8 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 10.5 + ghost atom cutoff = 10.5 + binsize = 5.25, bins = 10 10 10 + 2 neighbor lists, perpetual/occasional/extra = 1 1 0 + (1) pair lj/class2/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard + (2) fix bond/react, occasional, copy from (1) + attributes: half, newton on + pair build: copy + stencil: none + bin: none +WARNING: Inconsistent image flags (../domain.cpp:786) +Per MPI rank memory allocation (min/avg/max) = 33.34 | 33.34 | 33.34 Mbytes +Step Temp Press Density f_myrxns[1] f_myrxns[2] + 0 300 346.78165 0.0034851739 0 0 + 50 296.70408 -51.30066 0.0034851739 1 0 + 100 274.25324 46.715512 0.0034851739 1 1 + 150 471.61579 31.321598 0.0034851739 1 1 + 200 362.87766 42.061118 0.0034851739 1 1 + 250 367.58058 65.303109 0.0034851739 1 1 + 300 372.38236 -52.421725 0.0034851739 1 1 + 350 297.69957 17.869945 0.0034851739 1 1 + 400 258.30433 49.19156 0.0034851739 1 1 + 450 253.34384 -5.8162637 0.0034851739 1 1 + 500 269.96465 -43.337517 0.0034851739 1 1 + 550 303.23718 10.180246 0.0034851739 1 1 + 600 329.59579 -48.97461 0.0034851739 1 1 + 650 350.42568 50.983183 0.0034851739 1 1 + 700 342.03272 35.43465 0.0034851739 1 1 + 750 269.23405 -41.873166 0.0034851739 1 1 + 800 245.15025 13.953092 0.0034851739 1 1 + 850 257.85421 -3.1492141 0.0034851739 1 1 + 900 316.15644 7.7798301 0.0034851739 1 1 + 950 299.9124 -15.77014 0.0034851739 1 1 + 1000 302.89968 -17.049693 0.0034851739 1 1 + 1050 308.91651 71.84632 0.0034851739 1 1 + 1100 348.43932 -18.742012 0.0034851739 1 1 + 1150 309.03036 50.536311 0.0034851739 1 1 + 1200 318.9761 -16.905746 0.0034851739 1 1 + 1250 320.42806 -0.057975092 0.0034851739 1 1 + 1300 289.7824 18.200772 0.0034851739 1 1 + 1350 284.79836 -9.1978427 0.0034851739 1 1 + 1400 325.43292 42.082833 0.0034851739 1 1 + 1450 261.5041 -37.823325 0.0034851739 1 1 + 1500 298.88723 -5.1647385 0.0034851739 1 1 + 1550 291.37403 -7.7764201 0.0034851739 1 1 + 1600 293.83475 22.2458 0.0034851739 1 1 + 1650 293.80611 24.202512 0.0034851739 1 1 + 1700 291.70205 -23.397884 0.0034851739 1 1 + 1750 292.32437 -10.671214 0.0034851739 1 1 + 1800 302.01367 -11.671025 0.0034851739 1 1 + 1850 322.1651 24.438331 0.0034851739 1 1 + 1900 310.45076 45.343592 0.0034851739 1 1 + 1950 325.91745 -19.847809 0.0034851739 1 1 + 2000 276.89662 63.387098 0.0034851739 1 1 + 2050 311.33783 -24.683247 0.0034851739 1 1 + 2100 346.2336 -27.526891 0.0034851739 1 1 + 2150 345.30604 -15.722411 0.0034851739 1 1 + 2200 346.7718 -17.857633 0.0034851739 1 1 + 2250 304.28676 -1.9965581 0.0034851739 1 1 + 2300 322.56372 -31.786868 0.0034851739 1 1 + 2350 282.64326 6.1982735 0.0034851739 1 1 + 2400 286.65759 -63.207781 0.0034851739 1 1 + 2450 257.05528 32.931491 0.0034851739 1 1 + 2500 283.64386 26.912373 0.0034851739 1 1 + 2550 299.54005 27.277039 0.0034851739 1 1 + 2600 283.92503 14.660972 0.0034851739 1 1 + 2650 321.93453 -18.977358 0.0034851739 1 1 + 2700 376.7189 31.826935 0.0034851739 1 1 + 2750 372.20075 -32.821697 0.0034851739 1 1 + 2800 361.40604 83.035183 0.0034851739 1 1 + 2850 332.27269 -23.927452 0.0034851739 1 1 + 2900 331.14638 -0.12328446 0.0034851739 1 1 + 2950 303.67489 -24.078857 0.0034851739 1 1 + 3000 311.40462 21.563537 0.0034851739 1 1 + 3050 284.72849 -23.849667 0.0034851739 1 1 + 3100 303.48477 39.347763 0.0034851739 1 1 + 3150 264.2739 -0.22299879 0.0034851739 1 1 + 3200 300.03351 31.545323 0.0034851739 1 1 + 3250 288.56663 5.7225228 0.0034851739 1 1 + 3300 200.13238 -31.239655 0.0034851739 1 1 + 3350 231.32512 16.631728 0.0034851739 1 1 + 3400 260.57402 2.1717992 0.0034851739 1 1 + 3450 301.47128 -42.210623 0.0034851739 1 1 + 3500 321.77414 40.074365 0.0034851739 1 1 + 3550 353.21858 28.387783 0.0034851739 1 1 + 3600 331.45989 -57.800858 0.0034851739 1 1 + 3650 303.88123 44.86596 0.0034851739 1 1 + 3700 329.73833 -0.80615652 0.0034851739 1 1 + 3750 297.55588 -0.49626039 0.0034851739 1 1 + 3800 286.38794 -10.010003 0.0034851739 1 1 + 3850 290.17417 -43.51187 0.0034851739 1 1 + 3900 247.88933 51.23735 0.0034851739 1 1 + 3950 332.31324 -18.194985 0.0034851739 1 1 + 4000 325.56802 18.402825 0.0034851739 1 1 + 4050 338.37593 36.430977 0.0034851739 1 1 + 4100 370.95478 39.290285 0.0034851739 1 1 + 4150 348.47859 -7.0779678 0.0034851739 1 1 + 4200 241.30632 -33.371788 0.0034851739 1 1 + 4250 242.17258 -9.986197 0.0034851739 1 1 + 4300 300.85311 -7.9244294 0.0034851739 1 1 + 4350 273.15684 -21.257283 0.0034851739 1 1 + 4400 305.77463 -5.8720722 0.0034851739 1 1 + 4450 314.97697 45.0373 0.0034851739 1 1 + 4500 310.77723 16.958773 0.0034851739 1 1 + 4550 302.1742 12.156862 0.0034851739 1 1 + 4600 319.74799 6.84889 0.0034851739 1 1 + 4650 270.86805 -13.767905 0.0034851739 1 1 + 4700 249.81731 -31.197487 0.0034851739 1 1 + 4750 285.86481 -9.8916364 0.0034851739 1 1 + 4800 233.98321 7.1338571 0.0034851739 1 1 + 4850 302.60551 49.262889 0.0034851739 1 1 + 4900 316.55056 34.663247 0.0034851739 1 1 + 4950 357.32741 11.583006 0.0034851739 1 1 + 5000 400.21045 -8.1781061 0.0034851739 1 1 + 5050 390.01845 -20.490275 0.0034851739 1 1 + 5100 378.84247 -41.328757 0.0034851739 1 1 + 5150 324.02038 -15.023862 0.0034851739 1 1 + 5200 262.08429 10.937354 0.0034851739 1 1 + 5250 255.75508 16.381455 0.0034851739 1 1 + 5300 277.84989 40.68232 0.0034851739 1 1 + 5350 302.92832 9.1989494 0.0034851739 1 1 + 5400 283.7196 -1.6584671 0.0034851739 1 1 + 5450 300.71266 -4.7030295 0.0034851739 1 1 + 5500 343.5499 -0.30550044 0.0034851739 1 1 + 5550 369.51271 21.691649 0.0034851739 1 1 + 5600 372.69789 -38.67994 0.0034851739 1 1 + 5650 327.41266 11.352137 0.0034851739 1 1 + 5700 278.98614 -23.827304 0.0034851739 1 1 + 5750 308.30054 -20.756187 0.0034851739 1 1 + 5800 341.45594 28.058441 0.0034851739 1 1 + 5850 322.97844 -10.731921 0.0034851739 1 1 + 5900 304.53591 32.825279 0.0034851739 1 1 + 5950 287.1752 -36.780091 0.0034851739 1 1 + 6000 296.52681 18.781896 0.0034851739 1 1 + 6050 314.25442 15.992829 0.0034851739 1 1 + 6100 313.86576 3.4342714 0.0034851739 1 1 + 6150 325.64196 32.392039 0.0034851739 1 1 + 6200 367.42931 -27.160706 0.0034851739 1 1 + 6250 369.30798 39.020934 0.0034851739 1 1 + 6300 328.92285 -23.175157 0.0034851739 1 1 + 6350 305.63077 4.9024453 0.0034851739 1 1 + 6400 241.70341 -13.676629 0.0034851739 1 1 + 6450 265.66717 2.40612 0.0034851739 1 1 + 6500 249.36037 13.420255 0.0034851739 1 1 + 6550 294.53814 10.853462 0.0034851739 1 1 + 6600 308.2025 18.995308 0.0034851739 1 1 + 6650 305.43797 -49.56785 0.0034851739 1 1 + 6700 320.27344 11.336281 0.0034851739 1 1 + 6750 321.78666 -23.463899 0.0034851739 1 1 + 6800 303.40388 7.6224553 0.0034851739 1 1 + 6850 297.18966 51.52256 0.0034851739 1 1 + 6900 284.18909 -8.4947203 0.0034851739 1 1 + 6950 331.03663 13.233655 0.0034851739 1 1 + 7000 311.37928 -43.265479 0.0034851739 1 1 + 7050 286.81661 -14.174683 0.0034851739 1 1 + 7100 302.84119 12.048954 0.0034851739 1 1 + 7150 297.19357 -43.111968 0.0034851739 1 1 + 7200 332.47359 26.048249 0.0034851739 1 1 + 7250 262.70677 41.176242 0.0034851739 1 1 + 7300 250.61405 -23.413982 0.0034851739 1 1 + 7350 296.91117 35.88133 0.0034851739 1 1 + 7400 245.09229 -13.447194 0.0034851739 1 1 + 7450 272.28131 -23.322585 0.0034851739 1 1 + 7500 209.04985 13.871239 0.0034851739 1 1 + 7550 255.00955 4.9325621 0.0034851739 1 1 + 7600 312.30937 -37.368274 0.0034851739 1 1 + 7650 305.65903 55.245496 0.0034851739 1 1 + 7700 325.09504 -18.347711 0.0034851739 1 1 + 7750 363.28282 -22.479686 0.0034851739 1 1 + 7800 350.17429 26.849547 0.0034851739 1 1 + 7850 271.70853 -17.764575 0.0034851739 1 1 + 7900 272.66484 -11.701967 0.0034851739 1 1 + 7950 298.60202 -12.765675 0.0034851739 1 1 + 8000 274.58852 49.641532 0.0034851739 1 1 + 8050 304.72347 -0.55414183 0.0034851739 1 1 + 8100 328.30757 -39.861301 0.0034851739 1 1 + 8150 406.67601 2.8999409 0.0034851739 1 1 + 8200 332.20083 -51.217399 0.0034851739 1 1 + 8250 354.50609 53.128769 0.0034851739 1 1 + 8300 337.2758 20.68562 0.0034851739 1 1 + 8350 361.89708 -54.185869 0.0034851739 1 1 + 8400 305.63496 24.058529 0.0034851739 1 1 + 8450 303.27461 4.304683 0.0034851739 1 1 + 8500 253.53694 -10.909021 0.0034851739 1 1 + 8550 277.03017 23.241479 0.0034851739 1 1 + 8600 291.41844 -22.240665 0.0034851739 1 1 + 8650 307.85368 31.919587 0.0034851739 1 1 + 8700 309.19724 0.53529642 0.0034851739 1 1 + 8750 354.6583 11.565515 0.0034851739 1 1 + 8800 329.78598 19.5996 0.0034851739 1 1 + 8850 240.79198 21.803515 0.0034851739 1 1 + 8900 318.40749 -59.816923 0.0034851739 1 1 + 8950 308.47211 -57.808635 0.0034851739 1 1 + 9000 271.51207 50.943482 0.0034851739 1 1 + 9050 249.4005 6.7529187 0.0034851739 1 1 + 9100 221.8772 47.196092 0.0034851739 1 1 + 9150 297.9351 4.0058184 0.0034851739 1 1 + 9200 274.85051 -24.774393 0.0034851739 1 1 + 9250 336.04757 5.3799028 0.0034851739 1 1 + 9300 380.44956 -22.389381 0.0034851739 1 1 + 9350 336.9824 23.050616 0.0034851739 1 1 + 9400 304.46425 32.530218 0.0034851739 1 1 + 9450 317.55591 -22.265425 0.0034851739 1 1 + 9500 323.70901 -7.0159787 0.0034851739 1 1 + 9550 316.07308 28.062131 0.0034851739 1 1 + 9600 262.74608 -0.78519192 0.0034851739 1 1 + 9650 271.55045 -21.430123 0.0034851739 1 1 + 9700 239.6022 14.483637 0.0034851739 1 1 + 9750 338.1437 -0.72765302 0.0034851739 1 1 + 9800 334.50189 19.495144 0.0034851739 1 1 + 9850 354.87554 19.272719 0.0034851739 1 1 + 9900 334.02141 -22.393457 0.0034851739 1 1 + 9950 293.63651 19.178873 0.0034851739 1 1 + 10000 319.81736 21.904414 0.0034851739 1 1 +Loop time of 1.84987 on 1 procs for 10000 steps with 44 atoms + +Performance: 467.059 ns/day, 0.051 hours/ns, 5405.774 timesteps/s +99.5% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.26152 | 0.26152 | 0.26152 | 0.0 | 14.14 +Bond | 0.74069 | 0.74069 | 0.74069 | 0.0 | 40.04 +Kspace | 0.30505 | 0.30505 | 0.30505 | 0.0 | 16.49 +Neigh | 0.39991 | 0.39991 | 0.39991 | 0.0 | 21.62 +Comm | 0.02261 | 0.02261 | 0.02261 | 0.0 | 1.22 +Output | 0.0034585 | 0.0034585 | 0.0034585 | 0.0 | 0.19 +Modify | 0.099979 | 0.099979 | 0.099979 | 0.0 | 5.40 +Other | | 0.01666 | | | 0.90 + +Nlocal: 44 ave 44 max 44 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 44 ave 44 max 44 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 823 ave 823 max 823 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 823 +Ave neighs/atom = 18.7045 +Ave special neighs/atom = 9.77273 +Neighbor list builds = 10000 +Dangerous builds = 0 + +# write_restart restart_longrun +# write_data restart_longrun.data + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:01 diff --git a/examples/USER/misc/bond_react/tiny_nylon/log.20Apr18.tiny_nylon.g++.4 b/examples/USER/misc/bond_react/tiny_nylon/log.20Apr18.tiny_nylon.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..377781f48f7091dbc910d9ce1ab0f98723abb7bb --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/log.20Apr18.tiny_nylon.g++.4 @@ -0,0 +1,370 @@ +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task +# two monomer nylon example +# reaction produces a condensed water molecule + +units real + +boundary p p p + +atom_style full + +kspace_style pppm 1.0e-4 + +pair_style lj/class2/coul/long 8.5 + +angle_style class2 + +bond_style class2 + +dihedral_style class2 + +improper_style class2 + +read_data tiny_nylon.data + orthogonal box = (-25 -25 -25) to (25 25 25) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 44 atoms + reading velocities ... + 44 velocities + scanning bonds ... + 9 = max bonds/atom + scanning angles ... + 21 = max angles/atom + scanning dihedrals ... + 29 = max dihedrals/atom + scanning impropers ... + 29 = max impropers/atom + reading bonds ... + 42 bonds + reading angles ... + 74 angles + reading dihedrals ... + 100 dihedrals + reading impropers ... + 44 impropers + 4 = max # of 1-2 neighbors + 6 = max # of 1-3 neighbors + 12 = max # of 1-4 neighbors + 41 = max # of special neighbors + +velocity all create 300.0 4928459 dist gaussian + +molecule mol1 rxn1_stp1_unreacted.data_template +Read molecule mol1: + 18 atoms with max type 8 + 16 bonds with max type 14 + 25 angles with max type 28 + 23 dihedrals with max type 36 + 14 impropers with max type 11 +molecule mol2 rxn1_stp1_reacted.data_template +Read molecule mol2: + 18 atoms with max type 9 + 17 bonds with max type 13 + 31 angles with max type 27 + 39 dihedrals with max type 33 + 20 impropers with max type 1 +molecule mol3 rxn1_stp2_unreacted.data_template +Read molecule mol3: + 15 atoms with max type 9 + 14 bonds with max type 13 + 25 angles with max type 27 + 30 dihedrals with max type 33 + 16 impropers with max type 1 +molecule mol4 rxn1_stp2_reacted.data_template +Read molecule mol4: + 15 atoms with max type 11 + 13 bonds with max type 15 + 19 angles with max type 29 + 16 dihedrals with max type 32 + 10 impropers with max type 13 + +thermo 50 + +# dump 1 all xyz 1 test_vis.xyz + +fix myrxns all bond/react stabilization yes statted_grp .03 react rxn1 all 1 0.0 2.9 mol1 mol2 rxn1_stp1_map react rxn2 all 1 0.0 5.0 mol3 mol4 rxn1_stp2_map +WARNING: An atom in 'react #1' changes bond connectivity but not atom type (../fix_bond_react.cpp:1489) +WARNING: An atom in 'react #2' changes bond connectivity but not atom type (../fix_bond_react.cpp:1489) +dynamic group bond_react_MASTER_group defined +dynamic group statted_grp defined +dynamic group bond_react_MASTER_group defined +dynamic group statted_grp defined + +fix 1 statted_grp nvt temp 300 300 100 + +fix 4 bond_react_MASTER_group temp/rescale 1 300 300 10 1 + +thermo_style custom step temp press density f_myrxns[1] f_myrxns[2] + +# restart 100 restart1 restart2 + +run 10000 +PPPM initialization ... + using 12-bit tables for long-range coulomb (../kspace.cpp:321) + G vector (1/distance) = 0.0534597 + grid = 2 2 2 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0402256 + estimated relative force accuracy = 0.000121138 + using double precision FFTs + 3d grid and FFT values/proc = 252 2 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 10.5 + ghost atom cutoff = 10.5 + binsize = 5.25, bins = 10 10 10 + 2 neighbor lists, perpetual/occasional/extra = 1 1 0 + (1) pair lj/class2/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard + (2) fix bond/react, occasional, copy from (1) + attributes: half, newton on + pair build: copy + stencil: none + bin: none +WARNING: Inconsistent image flags (../domain.cpp:786) +Per MPI rank memory allocation (min/avg/max) = 33.34 | 33.69 | 34.37 Mbytes +Step Temp Press Density f_myrxns[1] f_myrxns[2] + 0 300 346.78165 0.0034851739 0 0 + 50 296.70408 -51.30066 0.0034851739 1 0 + 100 274.25324 46.715512 0.0034851739 1 1 + 150 471.61579 31.321598 0.0034851739 1 1 + 200 362.87766 42.061118 0.0034851739 1 1 + 250 367.58058 65.303109 0.0034851739 1 1 + 300 372.38236 -52.421725 0.0034851739 1 1 + 350 297.69957 17.869945 0.0034851739 1 1 + 400 258.30433 49.19156 0.0034851739 1 1 + 450 253.34384 -5.8162637 0.0034851739 1 1 + 500 269.96465 -43.337517 0.0034851739 1 1 + 550 303.23718 10.180246 0.0034851739 1 1 + 600 329.59579 -48.97461 0.0034851739 1 1 + 650 350.42568 50.983183 0.0034851739 1 1 + 700 342.03272 35.43465 0.0034851739 1 1 + 750 269.23405 -41.873166 0.0034851739 1 1 + 800 245.15025 13.953092 0.0034851739 1 1 + 850 257.85421 -3.1492141 0.0034851739 1 1 + 900 316.15644 7.7798301 0.0034851739 1 1 + 950 299.9124 -15.77014 0.0034851739 1 1 + 1000 302.89968 -17.049693 0.0034851739 1 1 + 1050 308.91651 71.84632 0.0034851739 1 1 + 1100 348.43932 -18.742012 0.0034851739 1 1 + 1150 309.03036 50.536311 0.0034851739 1 1 + 1200 318.9761 -16.905746 0.0034851739 1 1 + 1250 320.42806 -0.057975092 0.0034851739 1 1 + 1300 289.7824 18.200772 0.0034851739 1 1 + 1350 284.79836 -9.1978427 0.0034851739 1 1 + 1400 325.43292 42.082833 0.0034851739 1 1 + 1450 261.5041 -37.823325 0.0034851739 1 1 + 1500 298.88723 -5.1647385 0.0034851739 1 1 + 1550 291.37403 -7.7764201 0.0034851739 1 1 + 1600 293.83475 22.2458 0.0034851739 1 1 + 1650 293.80611 24.202512 0.0034851739 1 1 + 1700 291.70205 -23.397884 0.0034851739 1 1 + 1750 292.32437 -10.671214 0.0034851739 1 1 + 1800 302.01367 -11.671025 0.0034851739 1 1 + 1850 322.1651 24.438331 0.0034851739 1 1 + 1900 310.45076 45.343592 0.0034851739 1 1 + 1950 325.91745 -19.847809 0.0034851739 1 1 + 2000 276.89662 63.387098 0.0034851739 1 1 + 2050 311.33783 -24.683247 0.0034851739 1 1 + 2100 346.2336 -27.526891 0.0034851739 1 1 + 2150 345.30604 -15.722411 0.0034851739 1 1 + 2200 346.7718 -17.857633 0.0034851739 1 1 + 2250 304.28676 -1.9965581 0.0034851739 1 1 + 2300 322.56372 -31.786868 0.0034851739 1 1 + 2350 282.64326 6.1982735 0.0034851739 1 1 + 2400 286.65759 -63.207781 0.0034851739 1 1 + 2450 257.05528 32.931491 0.0034851739 1 1 + 2500 283.64386 26.912373 0.0034851739 1 1 + 2550 299.54005 27.277039 0.0034851739 1 1 + 2600 283.92503 14.660972 0.0034851739 1 1 + 2650 321.93453 -18.977358 0.0034851739 1 1 + 2700 376.7189 31.826935 0.0034851739 1 1 + 2750 372.20075 -32.821697 0.0034851739 1 1 + 2800 361.40604 83.035183 0.0034851739 1 1 + 2850 332.27269 -23.927452 0.0034851739 1 1 + 2900 331.14638 -0.12328446 0.0034851739 1 1 + 2950 303.67489 -24.078857 0.0034851739 1 1 + 3000 311.40462 21.563537 0.0034851739 1 1 + 3050 284.72849 -23.849667 0.0034851739 1 1 + 3100 303.48477 39.347763 0.0034851739 1 1 + 3150 264.2739 -0.22299878 0.0034851739 1 1 + 3200 300.03351 31.545323 0.0034851739 1 1 + 3250 288.56663 5.7225229 0.0034851739 1 1 + 3300 200.13238 -31.239655 0.0034851739 1 1 + 3350 231.32512 16.631728 0.0034851739 1 1 + 3400 260.57402 2.1717992 0.0034851739 1 1 + 3450 301.47128 -42.210623 0.0034851739 1 1 + 3500 321.77414 40.074365 0.0034851739 1 1 + 3550 353.21858 28.387783 0.0034851739 1 1 + 3600 331.45989 -57.800858 0.0034851739 1 1 + 3650 303.88123 44.86596 0.0034851739 1 1 + 3700 329.73833 -0.8061567 0.0034851739 1 1 + 3750 297.55588 -0.49626022 0.0034851739 1 1 + 3800 286.38794 -10.010003 0.0034851739 1 1 + 3850 290.17417 -43.51187 0.0034851739 1 1 + 3900 247.88933 51.23735 0.0034851739 1 1 + 3950 332.31324 -18.194985 0.0034851739 1 1 + 4000 325.56802 18.402825 0.0034851739 1 1 + 4050 338.37594 36.430977 0.0034851739 1 1 + 4100 370.95478 39.290285 0.0034851739 1 1 + 4150 348.47859 -7.0779683 0.0034851739 1 1 + 4200 241.30632 -33.371789 0.0034851739 1 1 + 4250 242.17258 -9.9861962 0.0034851739 1 1 + 4300 300.85311 -7.924429 0.0034851739 1 1 + 4350 273.15684 -21.257282 0.0034851739 1 1 + 4400 305.77464 -5.8720712 0.0034851739 1 1 + 4450 314.97697 45.037299 0.0034851739 1 1 + 4500 310.77723 16.958771 0.0034851739 1 1 + 4550 302.17421 12.156862 0.0034851739 1 1 + 4600 319.74799 6.8488914 0.0034851739 1 1 + 4650 270.86805 -13.767907 0.0034851739 1 1 + 4700 249.81731 -31.197484 0.0034851739 1 1 + 4750 285.86481 -9.8916332 0.0034851739 1 1 + 4800 233.98321 7.1338518 0.0034851739 1 1 + 4850 302.60551 49.262886 0.0034851739 1 1 + 4900 316.55055 34.663238 0.0034851739 1 1 + 4950 357.32741 11.583013 0.0034851739 1 1 + 5000 400.21044 -8.1780861 0.0034851739 1 1 + 5050 390.01845 -20.490268 0.0034851739 1 1 + 5100 378.84249 -41.328772 0.0034851739 1 1 + 5150 324.02039 -15.023852 0.0034851739 1 1 + 5200 262.08427 10.937367 0.0034851739 1 1 + 5250 255.75506 16.381495 0.0034851739 1 1 + 5300 277.84991 40.682283 0.0034851739 1 1 + 5350 302.92834 9.1989644 0.0034851739 1 1 + 5400 283.71964 -1.6583895 0.0034851739 1 1 + 5450 300.71261 -4.703054 0.0034851739 1 1 + 5500 343.54987 -0.30546396 0.0034851739 1 1 + 5550 369.51272 21.691639 0.0034851739 1 1 + 5600 372.69786 -38.679919 0.0034851739 1 1 + 5650 327.41256 11.352201 0.0034851739 1 1 + 5700 278.9861 -23.82728 0.0034851739 1 1 + 5750 308.30037 -20.756238 0.0034851739 1 1 + 5800 341.4559 28.058314 0.0034851739 1 1 + 5850 322.9786 -10.731862 0.0034851739 1 1 + 5900 304.53598 32.825105 0.0034851739 1 1 + 5950 287.17515 -36.780057 0.0034851739 1 1 + 6000 296.52688 18.782156 0.0034851739 1 1 + 6050 314.25411 15.99272 0.0034851739 1 1 + 6100 313.86572 3.4344108 0.0034851739 1 1 + 6150 325.64197 32.39212 0.0034851739 1 1 + 6200 367.4298 -27.161154 0.0034851739 1 1 + 6250 369.30937 39.020881 0.0034851739 1 1 + 6300 328.92245 -23.175612 0.0034851739 1 1 + 6350 305.6293 4.9011587 0.0034851739 1 1 + 6400 241.70456 -13.675247 0.0034851739 1 1 + 6450 265.66574 2.4049735 0.0034851739 1 1 + 6500 249.3592 13.420453 0.0034851739 1 1 + 6550 294.5367 10.856753 0.0034851739 1 1 + 6600 308.20246 18.992923 0.0034851739 1 1 + 6650 305.43756 -49.57151 0.0034851739 1 1 + 6700 320.27395 11.339101 0.0034851739 1 1 + 6750 321.7875 -23.463361 0.0034851739 1 1 + 6800 303.40316 7.6256997 0.0034851739 1 1 + 6850 297.18652 51.52186 0.0034851739 1 1 + 6900 284.19084 -8.496294 0.0034851739 1 1 + 6950 331.04173 13.227745 0.0034851739 1 1 + 7000 311.38027 -43.26105 0.0034851739 1 1 + 7050 286.82046 -14.171194 0.0034851739 1 1 + 7100 302.81691 12.058085 0.0034851739 1 1 + 7150 297.18018 -43.110658 0.0034851739 1 1 + 7200 332.46131 26.051496 0.0034851739 1 1 + 7250 262.72288 41.161451 0.0034851739 1 1 + 7300 250.62739 -23.440907 0.0034851739 1 1 + 7350 296.92141 35.869216 0.0034851739 1 1 + 7400 245.06807 -13.467896 0.0034851739 1 1 + 7450 272.2659 -23.292836 0.0034851739 1 1 + 7500 209.05776 13.888665 0.0034851739 1 1 + 7550 255.03716 4.9662624 0.0034851739 1 1 + 7600 312.26011 -37.350427 0.0034851739 1 1 + 7650 305.5823 55.208039 0.0034851739 1 1 + 7700 325.13382 -18.370791 0.0034851739 1 1 + 7750 363.24898 -22.473126 0.0034851739 1 1 + 7800 350.19254 26.792307 0.0034851739 1 1 + 7850 271.76418 -17.843445 0.0034851739 1 1 + 7900 272.70301 -11.709349 0.0034851739 1 1 + 7950 298.5993 -12.736235 0.0034851739 1 1 + 8000 274.52611 49.657345 0.0034851739 1 1 + 8050 304.73711 -0.52485689 0.0034851739 1 1 + 8100 328.29239 -39.901891 0.0034851739 1 1 + 8150 406.52096 2.8669076 0.0034851739 1 1 + 8200 332.17309 -51.168754 0.0034851739 1 1 + 8250 354.68419 53.003157 0.0034851739 1 1 + 8300 337.28934 20.766408 0.0034851739 1 1 + 8350 361.81133 -54.159227 0.0034851739 1 1 + 8400 305.59597 24.011667 0.0034851739 1 1 + 8450 303.25823 4.423341 0.0034851739 1 1 + 8500 253.50747 -11.026949 0.0034851739 1 1 + 8550 277.13504 23.204625 0.0034851739 1 1 + 8600 291.40211 -22.253861 0.0034851739 1 1 + 8650 307.93765 32.14162 0.0034851739 1 1 + 8700 309.1529 0.36279434 0.0034851739 1 1 + 8750 355.10326 11.677219 0.0034851739 1 1 + 8800 330.21328 19.235269 0.0034851739 1 1 + 8850 241.29109 21.707386 0.0034851739 1 1 + 8900 319.15363 -60.010115 0.0034851739 1 1 + 8950 308.88552 -57.637014 0.0034851739 1 1 + 9000 272.22373 51.15837 0.0034851739 1 1 + 9050 248.84947 7.3390565 0.0034851739 1 1 + 9100 221.91564 48.387079 0.0034851739 1 1 + 9150 298.03506 2.9058639 0.0034851739 1 1 + 9200 274.25114 -24.597819 0.0034851739 1 1 + 9250 334.08373 5.1079577 0.0034851739 1 1 + 9300 383.07285 -23.274763 0.0034851739 1 1 + 9350 335.00581 20.94212 0.0034851739 1 1 + 9400 309.23862 34.074744 0.0034851739 1 1 + 9450 312.62262 -28.468057 0.0034851739 1 1 + 9500 324.54274 2.851136 0.0034851739 1 1 + 9550 313.32781 22.468182 0.0034851739 1 1 + 9600 269.04372 4.064934 0.0034851739 1 1 + 9650 270.98476 -21.520127 0.0034851739 1 1 + 9700 236.8736 16.250728 0.0034851739 1 1 + 9750 333.94686 1.6864148 0.0034851739 1 1 + 9800 330.91875 12.150018 0.0034851739 1 1 + 9850 343.8603 25.338853 0.0034851739 1 1 + 9900 330.93364 -28.292992 0.0034851739 1 1 + 9950 291.25518 25.795948 0.0034851739 1 1 + 10000 319.25565 25.323846 0.0034851739 1 1 +Loop time of 3.55353 on 4 procs for 10000 steps with 44 atoms + +Performance: 243.139 ns/day, 0.099 hours/ns, 2814.105 timesteps/s +93.4% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0030422 | 0.10454 | 0.35211 | 44.8 | 2.94 +Bond | 0.0063896 | 0.29222 | 0.94356 | 71.3 | 8.22 +Kspace | 0.88508 | 1.6486 | 1.979 | 35.1 | 46.39 +Neigh | 0.61154 | 0.62212 | 0.63307 | 1.0 | 17.51 +Comm | 0.18944 | 0.24549 | 0.29196 | 7.9 | 6.91 +Output | 0.0050066 | 0.011804 | 0.032134 | 10.8 | 0.33 +Modify | 0.52282 | 0.60522 | 0.69588 | 7.9 | 17.03 +Other | | 0.02359 | | | 0.66 + +Nlocal: 11 ave 44 max 0 min +Histogram: 3 0 0 0 0 0 0 0 0 1 +Nghost: 33 ave 44 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 3 +Neighs: 205.75 ave 823 max 0 min +Histogram: 3 0 0 0 0 0 0 0 0 1 + +Total # of neighbors = 823 +Ave neighs/atom = 18.7045 +Ave special neighs/atom = 9.77273 +Neighbor list builds = 10000 +Dangerous builds = 0 + +# write_restart restart_longrun +# write_data restart_longrun.data + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:03 diff --git a/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_map b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_map new file mode 100644 index 0000000000000000000000000000000000000000..44f7ad8137549eaa375046e114c59a7aa09c0c65 --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_map @@ -0,0 +1,35 @@ +this is a nominal superimpose file + +2 edgeIDs +18 equivalences + +BondingIDs + +10 +1 + +EdgeIDs + +16 +8 + +Equivalences + +1 1 +2 2 +3 3 +4 4 +5 5 +6 6 +7 7 +8 8 +9 9 +10 10 +11 11 +12 12 +13 13 +14 14 +15 15 +16 16 +17 17 +18 18 diff --git a/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_reacted.data_template b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_reacted.data_template new file mode 100644 index 0000000000000000000000000000000000000000..d7256f43d2b3c659159ef23e3169dc6123d193ec --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_reacted.data_template @@ -0,0 +1,189 @@ +this is a molecule template for: initial nylon crosslink, post-reacting + +18 atoms +17 bonds +31 angles +39 dihedrals +20 impropers + +Types + +1 9 +2 1 +3 1 +4 8 +5 8 +6 4 +7 4 +8 1 +9 1 +10 2 +11 6 +12 3 +13 4 +14 4 +15 5 +16 1 +17 4 +18 4 + +Charges + +1 -0.300000 +2 0.000000 +3 0.000000 +4 0.000000 +5 0.000000 +6 0.000000 +7 0.000000 +8 0.000000 +9 0.000000 +10 0.300000 +11 0.000000 +12 0.000000 +13 0.000000 +14 0.000000 +15 0.000000 +16 0.000000 +17 0.000000 +18 0.000000 + +Coords + +1 -5.522237 -0.752722 1.631158 +2 -5.170398 -0.545733 0.178130 +3 -6.469695 -0.553072 -0.648889 +4 -6.052076 -1.721152 1.744648 +5 -6.183059 0.071387 1.971497 +6 -4.489340 -1.389197 -0.173156 +7 -4.637591 0.453703 0.051252 +8 -5.618658 0.138919 4.386107 +9 -4.669492 -0.989819 3.943591 +10 -4.270194 -0.766405 2.474102 +11 -3.348470 -1.875393 2.024289 +12 -3.569794 0.564183 2.345995 +13 -5.201079 -1.993301 4.044219 +14 -3.736682 -0.984819 4.598305 +15 -4.255402 1.370923 2.679069 +16 -6.136394 -0.339866 -2.136775 +17 -6.996331 -1.555519 -0.517408 +18 -7.153308 0.284949 -0.289930 + +Bonds + +1 11 1 2 +2 12 1 4 +3 12 1 5 +4 13 1 10 +5 2 2 3 +6 1 2 6 +7 1 2 7 +8 2 3 16 +9 1 3 17 +10 1 3 18 +11 2 8 9 +12 4 9 10 +13 1 9 13 +14 1 9 14 +15 5 10 11 +16 3 10 12 +17 6 12 15 + +Angles + +1 17 2 1 4 +2 17 2 1 5 +3 18 2 1 10 +4 19 4 1 5 +5 20 4 1 10 +6 20 5 1 10 +7 21 1 2 3 +8 22 1 2 6 +9 22 1 2 7 +10 2 3 2 6 +11 2 3 2 7 +12 1 6 2 7 +13 3 2 3 16 +14 2 2 3 17 +15 2 2 3 18 +16 2 16 3 17 +17 2 16 3 18 +18 1 17 3 18 +19 8 8 9 10 +20 2 8 9 13 +21 2 8 9 14 +22 23 13 9 10 +23 23 14 9 10 +24 1 13 9 14 +25 6 9 10 11 +26 4 9 10 12 +27 24 1 10 9 +28 25 11 10 12 +29 26 1 10 11 +30 27 1 10 12 +31 7 10 12 15 + +Dihedrals + +1 19 4 1 2 3 +2 20 4 1 2 6 +3 20 4 1 2 7 +4 19 5 1 2 3 +5 20 5 1 2 6 +6 20 5 1 2 7 +7 21 10 1 2 3 +8 22 10 1 2 6 +9 22 10 1 2 7 +10 23 2 1 10 9 +11 24 2 1 10 11 +12 25 2 1 10 12 +13 26 4 1 10 9 +14 27 4 1 10 11 +15 28 4 1 10 12 +16 26 5 1 10 9 +17 27 5 1 10 11 +18 28 5 1 10 12 +19 29 1 2 3 16 +20 30 1 2 3 17 +21 30 1 2 3 18 +22 4 16 3 2 6 +23 2 6 2 3 17 +24 2 6 2 3 18 +25 4 16 3 2 7 +26 2 7 2 3 17 +27 2 7 2 3 18 +28 10 8 9 10 11 +29 8 8 9 10 12 +30 31 8 9 10 1 +31 11 13 9 10 11 +32 9 13 9 10 12 +33 32 13 9 10 1 +34 11 14 9 10 11 +35 9 14 9 10 12 +36 32 14 9 10 1 +37 6 9 10 12 15 +38 7 11 10 12 15 +39 33 1 10 12 15 + +Impropers + +1 1 2 1 4 5 +2 1 2 1 4 10 +3 1 2 1 5 10 +4 1 4 1 5 10 +5 1 1 2 3 6 +6 1 1 2 3 7 +7 1 1 2 6 7 +8 1 3 2 6 7 +9 1 2 3 16 17 +10 1 2 3 16 18 +11 1 2 3 17 18 +12 1 16 3 17 18 +13 1 8 9 13 10 +14 1 8 9 14 10 +15 1 8 9 13 14 +16 1 13 9 14 10 +17 1 9 10 11 12 +18 1 1 10 9 11 +19 1 1 10 9 12 +20 1 1 10 11 12 diff --git a/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_unreacted.data_template b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_unreacted.data_template new file mode 100644 index 0000000000000000000000000000000000000000..ec3f109d7b50c06c642635693f77257c4ce68c7e --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp1_unreacted.data_template @@ -0,0 +1,160 @@ +this is a molecule template for: initial nylon crosslink, pre-reacting + +18 atoms +16 bonds +25 angles +23 dihedrals +14 impropers + +Types + +1 7 +2 1 +3 1 +4 8 +5 8 +6 4 +7 4 +8 1 +9 1 +10 2 +11 6 +12 3 +13 4 +14 4 +15 5 +16 1 +17 4 +18 4 + +Charges + +1 -0.300000 +2 0.000000 +3 0.000000 +4 0.000000 +5 0.000000 +6 0.000000 +7 0.000000 +8 0.000000 +9 0.000000 +10 0.300000 +11 0.000000 +12 0.000000 +13 0.000000 +14 0.000000 +15 0.000000 +16 0.000000 +17 0.000000 +18 0.000000 + +Coords + +1 -4.922858 -0.946982 1.146055 +2 -5.047195 -0.935267 -0.358173 +3 -6.526281 -0.755366 -0.743523 +4 -5.282604 0.020447 1.552710 +5 -3.860697 -1.095850 1.428305 +6 -4.662382 -1.920900 -0.781524 +7 -4.433977 -0.072765 -0.784071 +8 -5.506279 0.202610 4.825816 +9 -4.449177 -0.844592 4.423366 +10 -4.103916 -0.749629 2.925195 +11 -3.376249 -1.886171 2.245643 +12 -4.493235 0.477214 2.137199 +13 -4.849053 -1.888877 4.663994 +14 -3.491823 -0.662913 5.018510 +15 -5.020777 1.189745 2.805427 +16 -3.964987 2.900602 -1.551341 +17 -4.460694 2.836102 0.668882 +18 -4.828494 3.219656 -0.122111 + +Bonds + +1 14 1 2 +2 10 1 4 +3 10 1 5 +4 2 2 3 +5 1 2 6 +6 1 2 7 +7 2 3 16 +8 1 3 17 +9 1 3 18 +10 2 8 9 +11 4 9 10 +12 1 9 13 +13 1 9 14 +14 5 10 11 +15 3 10 12 +16 6 12 15 + +Angles + +1 15 2 1 4 +2 15 2 1 5 +3 16 4 1 5 +4 28 1 2 3 +5 14 1 2 6 +6 14 1 2 7 +7 2 3 2 6 +8 2 3 2 7 +9 1 6 2 7 +10 3 2 3 16 +11 2 2 3 17 +12 2 2 3 18 +13 2 16 3 17 +14 2 16 3 18 +15 1 17 3 18 +16 8 8 9 10 +17 2 8 9 13 +18 2 8 9 14 +19 23 13 9 10 +20 23 14 9 10 +21 1 13 9 14 +22 6 9 10 11 +23 4 9 10 12 +24 25 11 10 12 +25 7 10 12 15 + +Dihedrals + +1 34 4 1 2 3 +2 35 4 1 2 6 +3 35 4 1 2 7 +4 34 5 1 2 3 +5 35 5 1 2 6 +6 35 5 1 2 7 +7 36 1 2 3 16 +8 12 1 2 3 17 +9 12 1 2 3 18 +10 4 16 3 2 6 +11 2 6 2 3 17 +12 2 6 2 3 18 +13 4 16 3 2 7 +14 2 7 2 3 17 +15 2 7 2 3 18 +16 10 8 9 10 11 +17 8 8 9 10 12 +18 11 13 9 10 11 +19 9 13 9 10 12 +20 11 14 9 10 11 +21 9 14 9 10 12 +22 6 9 10 12 15 +23 7 11 10 12 15 + +Impropers + +1 6 2 1 4 5 +2 11 9 10 11 12 +3 1 1 2 3 6 +4 1 1 2 3 7 +5 1 1 2 6 7 +6 1 3 2 6 7 +7 1 2 3 16 17 +8 1 2 3 16 18 +9 1 2 3 17 18 +10 1 16 3 17 18 +11 1 8 9 13 10 +12 1 8 9 14 10 +13 1 8 9 13 14 +14 1 13 9 14 10 diff --git a/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_map b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_map new file mode 100644 index 0000000000000000000000000000000000000000..35fe47fdb3bdb0386d65b950d45cbfb39fbe6f7f --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_map @@ -0,0 +1,32 @@ +this is a nominal superimpose file + +2 edgeIDs +15 equivalences + +BondingIDs + +4 +12 + +EdgeIDs + +8 +3 + +Equivalences + +1 1 +2 2 +3 3 +4 4 +5 5 +6 6 +7 7 +8 8 +9 9 +10 10 +11 11 +12 12 +13 13 +14 14 +15 15 diff --git a/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_reacted.data_template b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_reacted.data_template new file mode 100644 index 0000000000000000000000000000000000000000..785363464696967b7938c142043868792546e3cf --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_reacted.data_template @@ -0,0 +1,131 @@ +this is a molecule template for: water condensation, post-reacting + +15 atoms +13 bonds +19 angles +16 dihedrals +10 impropers + +Types + +1 9 +2 1 +3 1 +4 10 +5 8 +6 4 +7 4 +8 1 +9 1 +10 2 +11 6 +12 11 +13 4 +14 4 +15 10 + +Charges + +1 -0.300000 +2 0.000000 +3 0.000000 +4 0.410000 +5 0.000000 +6 0.000000 +7 0.000000 +8 0.000000 +9 0.000000 +10 0.300000 +11 0.000000 +12 -0.820000 +13 0.000000 +14 0.000000 +15 0.410000 + +Coords + +1 -4.856280 -1.050468 1.432625 +2 -5.047195 -0.935267 -0.358173 +3 -6.526281 -0.755366 -0.743523 +4 -5.282604 0.020447 1.552710 +5 -3.860697 -1.095850 1.428305 +6 -4.662382 -1.920900 -0.781524 +7 -4.433977 -0.072765 -0.784071 +8 -5.506279 0.202610 4.825816 +9 -4.449177 -0.844592 4.423366 +10 -4.103916 -0.749629 2.925195 +11 -3.376249 -1.886171 2.245643 +12 -4.493235 0.477214 2.137199 +13 -4.849053 -1.888877 4.663994 +14 -3.491823 -0.662913 5.018510 +15 -5.020777 1.189745 2.805427 + +Bonds + +1 11 1 2 +2 12 1 5 +3 13 1 10 +4 2 2 3 +5 1 2 6 +6 1 2 7 +7 15 4 12 +8 2 8 9 +9 4 9 10 +10 1 9 13 +11 1 9 14 +12 5 10 11 +13 15 15 12 + +Angles + +1 17 2 1 5 +2 18 2 1 10 +3 20 5 1 10 +4 21 1 2 3 +5 22 1 2 6 +6 22 1 2 7 +7 2 3 2 6 +8 2 3 2 7 +9 1 6 2 7 +10 8 8 9 10 +11 2 8 9 13 +12 2 8 9 14 +13 23 13 9 10 +14 23 14 9 10 +15 1 13 9 14 +16 6 9 10 11 +17 24 1 10 9 +18 26 1 10 11 +19 29 15 12 4 + +Dihedrals + +1 19 5 1 2 3 +2 20 5 1 2 6 +3 20 5 1 2 7 +4 21 10 1 2 3 +5 22 10 1 2 6 +6 22 10 1 2 7 +7 23 2 1 10 9 +8 24 2 1 10 11 +9 26 5 1 10 9 +10 27 5 1 10 11 +11 10 8 9 10 11 +12 31 8 9 10 1 +13 11 13 9 10 11 +14 32 13 9 10 1 +15 11 14 9 10 11 +16 32 14 9 10 1 + +Impropers + +1 12 2 1 5 10 +2 13 1 10 9 11 +3 1 1 2 3 6 +4 1 1 2 3 7 +5 1 1 2 6 7 +6 1 3 2 6 7 +7 1 8 9 13 10 +8 1 8 9 14 10 +9 1 8 9 13 14 +10 1 13 9 14 10 diff --git a/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_unreacted.data_template b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_unreacted.data_template new file mode 100644 index 0000000000000000000000000000000000000000..847f0622e506865117fbe542f89de35fb20ccede --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/rxn1_stp2_unreacted.data_template @@ -0,0 +1,158 @@ +this is a molecule template for: water condensation, pre-reacting + +15 atoms +14 bonds +25 angles +30 dihedrals +16 impropers + +Types + +1 9 +2 1 +3 1 +4 8 +5 8 +6 4 +7 4 +8 1 +9 1 +10 2 +11 6 +12 3 +13 4 +14 4 +15 5 + +Charges + +1 -0.300000 +2 0.000000 +3 0.000000 +4 0.000000 +5 0.000000 +6 0.000000 +7 0.000000 +8 0.000000 +9 0.000000 +10 0.300000 +11 0.000000 +12 0.000000 +13 0.000000 +14 0.000000 +15 0.000000 + +Coords + +1 -4.922858 -0.946982 1.146055 +2 -5.047195 -0.935267 -0.358173 +3 -6.526281 -0.755366 -0.743523 +4 -5.282604 0.020447 1.552710 +5 -3.860697 -1.095850 1.428305 +6 -4.662382 -1.920900 -0.781524 +7 -4.433977 -0.072765 -0.784071 +8 -5.506279 0.202610 4.825816 +9 -4.449177 -0.844592 4.423366 +10 -4.103916 -0.749629 2.925195 +11 -3.376249 -1.886171 2.245643 +12 -4.493235 0.477214 2.137199 +13 -4.849053 -1.888877 4.663994 +14 -3.491823 -0.662913 5.018510 +15 -5.020777 1.189745 2.805427 + +Bonds + +1 11 1 2 +2 12 1 4 +3 12 1 5 +4 13 1 10 +5 2 2 3 +6 1 2 6 +7 1 2 7 +8 2 8 9 +9 4 9 10 +10 1 9 13 +11 1 9 14 +12 5 10 11 +13 3 10 12 +14 6 12 15 + +Angles + +1 17 2 1 4 +2 17 2 1 5 +3 18 2 1 10 +4 19 4 1 5 +5 20 4 1 10 +6 20 5 1 10 +7 21 1 2 3 +8 22 1 2 6 +9 22 1 2 7 +10 2 3 2 6 +11 2 3 2 7 +12 1 6 2 7 +13 8 8 9 10 +14 2 8 9 13 +15 2 8 9 14 +16 23 13 9 10 +17 23 14 9 10 +18 1 13 9 14 +19 6 9 10 11 +20 4 9 10 12 +21 24 1 10 9 +22 25 11 10 12 +23 26 1 10 11 +24 27 1 10 12 +25 7 10 12 15 + +Dihedrals + +1 19 4 1 2 3 +2 20 4 1 2 6 +3 20 4 1 2 7 +4 19 5 1 2 3 +5 20 5 1 2 6 +6 20 5 1 2 7 +7 21 10 1 2 3 +8 22 10 1 2 6 +9 22 10 1 2 7 +10 23 2 1 10 9 +11 24 2 1 10 11 +12 25 2 1 10 12 +13 26 4 1 10 9 +14 27 4 1 10 11 +15 28 4 1 10 12 +16 26 5 1 10 9 +17 27 5 1 10 11 +18 28 5 1 10 12 +19 10 8 9 10 11 +20 8 8 9 10 12 +21 31 8 9 10 1 +22 11 13 9 10 11 +23 9 13 9 10 12 +24 32 13 9 10 1 +25 11 14 9 10 11 +26 9 14 9 10 12 +27 32 14 9 10 1 +28 6 9 10 12 15 +29 7 11 10 12 15 +30 33 1 10 12 15 + +Impropers + +1 1 2 1 4 5 +2 1 2 1 4 10 +3 1 2 1 5 10 +4 1 4 1 5 10 +5 1 1 2 3 6 +6 1 1 2 3 7 +7 1 1 2 6 7 +8 1 3 2 6 7 +9 1 8 9 13 10 +10 1 8 9 14 10 +11 1 8 9 13 14 +12 1 13 9 14 10 +13 1 9 10 11 12 +14 1 1 10 9 11 +15 1 1 10 9 12 +16 1 1 10 11 12 diff --git a/examples/USER/misc/bond_react/tiny_nylon/tiny_nylon.data b/examples/USER/misc/bond_react/tiny_nylon/tiny_nylon.data new file mode 100644 index 0000000000000000000000000000000000000000..8466e68ea57fed2ddca9851724e4ea1509049435 --- /dev/null +++ b/examples/USER/misc/bond_react/tiny_nylon/tiny_nylon.data @@ -0,0 +1,795 @@ +this is LAMMPS data file containing two nylon monomers + +44 atoms +11 atom types +42 bonds +15 bond types +74 angles +29 angle types +100 dihedrals +36 dihedral types +44 impropers +13 improper types +5 extra bond per atom +15 extra angle per atom +15 extra dihedral per atom +25 extra improper per atom +25 extra special per atom + +-25 25 xlo xhi +-25 25 ylo yhi +-25 25 zlo zhi + +Masses + +1 12.0112 +2 12.0112 +3 15.9994 +4 1.00797 +5 1.00797 +6 15.9994 +7 14.0067 +8 1.00797 +9 14.0067 +10 1.00797 +11 15.9994 + +Pair Coeffs # lj/class2/coul/cut + +1 0.054 4.01 +2 0.12 3.81 +3 0.24 3.535 +4 0.02 2.7 +5 0.013 1.098 +6 0.267 3.3 +7 0.065 4.07 +8 0.013 1.098 +9 0.106 4.07 +10 0.013 1.098 +11 0.26 3.61 + +Bond Coeffs # class2 + +1 1.101 345 -691.89 844.6 +2 1.53 299.67 -501.77 679.81 +3 1.3649 368.731 -832.478 1274.02 +4 1.5202 253.707 -423.037 396.9 +5 1.202 851.14 -1918.49 2160.77 +6 0.965 532.506 -1282.9 2004.77 +7 1.53 299.67 -501.77 679.81 +8 1.101 345 -691.89 844.6 +9 1.457 365.805 -699.637 998.484 +10 1.006 466.74 -1073.6 1251.11 +11 1.452 327.166 -547.899 526.5 +12 1.01 462.75 -1053.63 1545.76 +13 1.416 359.159 -558.473 1146.38 +14 1.457 365.805 -699.637 998.484 +15 0.97 563.28 -1428.22 1902.12 + +Angle Coeffs # class2 + +1 107.66 39.641 -12.921 -2.4318 +2 110.77 41.453 -10.604 5.129 +3 112.67 39.516 -7.443 -9.5583 +4 123.145 55.5431 -17.2123 0.1348 +5 118.986 98.6813 -22.2485 10.3673 +6 123.145 55.5431 -17.2123 0.1348 +7 111.254 53.5303 -11.8454 -11.5405 +8 108.53 51.9747 -9.4851 -10.9985 +9 107.734 40.6099 -28.8121 0 +10 110.77 41.453 -10.604 5.129 +11 112.67 39.516 -7.443 -9.5583 +12 107.66 39.641 -12.921 -2.4318 +13 111.91 60.7147 -13.3366 -13.0785 +14 110.62 51.3137 -6.7198 -2.6003 +15 110.954 50.8652 -4.4522 -10.0298 +16 107.067 45.252 -7.5558 -9.512 +17 113.868 45.9271 -20.0824 0 +18 111.037 31.8958 -6.6942 -6.837 +19 116.94 37.5749 -8.6676 0 +20 117.961 37.4964 -8.1837 0 +21 114.302 42.6589 -10.5464 -9.3243 +22 108.937 57.401 2.9374 0 +23 107.734 40.6099 -28.8121 0 +24 116.926 39.4193 -10.9945 -8.7733 +25 118.986 98.6813 -22.2485 10.3673 +26 125.542 92.572 -34.48 -11.1871 +27 0 0 0 0 +28 111.91 60.7147 -13.3366 -13.0785 +29 103.7 49.84 -11.6 -8 + +BondBond Coeffs + +1 5.3316 1.101 1.101 +2 3.3872 1.53 1.101 +3 0 1.53 1.53 +4 0 1.5202 1.3649 +5 0 1.3649 1.202 +6 46.0685 1.5202 1.202 +7 0 1.3649 0.965 +8 5.4199 1.53 1.5202 +9 0.7115 1.5202 1.101 +10 3.3872 1.53 1.101 +11 0 1.53 1.53 +12 5.3316 1.101 1.101 +13 4.6217 1.53 1.457 +14 12.426 1.457 1.101 +15 -6.4168 1.457 1.006 +16 -1.8749 1.006 1.006 +17 -3.471 1.452 1.01 +18 12.1186 1.452 1.416 +19 -0.5655 1.01 1.01 +20 -4.3126 1.01 1.416 +21 3.5446 1.452 1.53 +22 15.2994 1.452 1.101 +23 0.7115 1.101 1.5202 +24 0 1.416 1.5202 +25 0 1.202 1.3649 +26 138.495 1.416 1.202 +27 0 1.416 1.3649 +28 4.6217 1.457 1.53 +29 -9.5 0.97 0.97 + +BondAngle Coeffs + +1 18.103 18.103 1.101 1.101 +2 20.754 11.421 1.53 1.101 +3 8.016 8.016 1.53 1.53 +4 0 0 1.5202 1.3649 +5 0 0 1.3649 1.202 +6 34.9982 37.1298 1.5202 1.202 +7 0 0 1.3649 0.965 +8 18.1678 15.8758 1.53 1.5202 +9 12.4632 9.1765 1.5202 1.101 +10 20.754 11.421 1.53 1.101 +11 8.016 8.016 1.53 1.53 +12 18.103 18.103 1.101 1.101 +13 6.0876 16.5702 1.53 1.457 +14 42.4332 13.4582 1.457 1.101 +15 31.8096 20.5799 1.457 1.006 +16 28.0322 28.0322 1.006 1.006 +17 11.8828 5.9339 1.452 1.01 +18 3.7812 14.8633 1.452 1.416 +19 19.8125 19.8125 1.01 1.01 +20 10.8422 29.5743 1.01 1.416 +21 4.6031 -5.479 1.452 1.53 +22 34.8907 10.6917 1.452 1.101 +23 9.1765 12.4632 1.101 1.5202 +24 0 0 1.416 1.5202 +25 0 0 1.202 1.3649 +26 62.7124 52.4045 1.416 1.202 +27 0 0 1.416 1.3649 +28 16.5702 6.0876 1.457 1.53 +29 22.35 22.35 0.97 0.97 + +Dihedral Coeffs # class2 + +1 -0.0228 0 0.028 0 -0.1863 0 +2 -0.1432 0 0.0617 0 -0.1083 0 +3 0.0972 0 0.0722 0 -0.2581 0 +4 0 0 0.0316 0 -0.1681 0 +5 0 0 0.0514 0 -0.143 0 +6 0 0 0 0 0 0 +7 -2.7332 0 2.9646 0 -0.0155 0 +8 0 0 0 0 0 0 +9 0 0 0 0 0 0 +10 0.0442 0 0.0292 0 0.0562 0 +11 -0.1804 0 0.0012 0 0.0371 0 +12 -0.2428 0 0.4065 0 -0.3079 0 +13 -0.1432 0 0.0617 0 -0.1083 0 +14 0.1764 0 0.1766 0 -0.5206 0 +15 0 0 0.0316 0 -0.1681 0 +16 0 0 0.0514 0 -0.143 0 +17 -1.1506 0 -0.6344 0 -0.1845 0 +18 -0.5187 0 -0.4837 0 -0.1692 0 +19 -0.0483 0 -0.0077 0 -0.0014 0 +20 -0.0148 0 -0.0791 0 -0.0148 0 +21 0.0143 0 -0.0132 0 0.0091 0 +22 0.0219 0 -0.026 0 0.0714 0 +23 -0.7532 0 2.7392 0 0.0907 0 +24 0.8297 0 3.7234 0 -0.0495 0 +25 0 0 0 0 0 0 +26 0 0 0 0 0 0 +27 -1.6938 0 2.7386 0 -0.336 0 +28 0 0 0 0 0 0 +29 0.0972 0 0.0722 0 -0.2581 0 +30 -0.0228 0 0.028 0 -0.1863 0 +31 0.1693 0 -0.009 0 -0.0687 0 +32 0.1693 0 -0.009 0 -0.0687 0 +33 0 0 0 0 0 0 +34 -1.1506 0 -0.6344 0 -0.1845 0 +35 -0.5187 0 -0.4837 0 -0.1692 0 +36 0.1764 0 0.1766 0 -0.5206 0 + +AngleAngleTorsion Coeffs + +1 -5.3624 108.53 110.77 +2 -12.564 110.77 110.77 +3 -0.3801 112.67 108.53 +4 -16.164 112.67 110.77 +5 -22.045 112.67 112.67 +6 0 0 111.254 +7 0 118.985 111.254 +8 0 108.53 0 +9 0 107.734 0 +10 -8.019 108.53 123.145 +11 -15.3496 107.734 123.145 +12 -15.7572 111.91 110.77 +13 -12.564 110.77 110.77 +14 -27.3953 112.67 111.91 +15 -16.164 112.67 110.77 +16 -22.045 112.67 112.67 +17 -7.5499 111.91 110.954 +18 -10.4258 110.62 110.954 +19 -4.6337 113.868 114.302 +20 -6.659 113.868 108.937 +21 -7.4314 111.037 114.302 +22 -8.1335 111.037 108.937 +23 -6.5335 111.037 116.926 +24 -15.5547 111.037 125.542 +25 0 111.037 0 +26 -1.3234 117.961 116.926 +27 -7.3186 117.961 125.542 +28 0 117.961 0 +29 -1.0631 114.302 112.67 +30 -12.7974 114.302 110.77 +31 -5.4514 108.53 116.926 +32 -12.2417 107.734 116.926 +33 0 0 111.254 +34 -7.5499 110.954 111.91 +35 -10.4258 110.954 110.62 +36 -27.3953 111.91 112.67 + +EndBondTorsion Coeffs + +1 -0.0204 0.3628 -0.4426 -0.0097 -0.0315 -0.0755 1.5202 1.101 +2 0.213 0.312 0.0777 0.213 0.312 0.0777 1.101 1.101 +3 0.0062 -0.0002 0.0036 0.0055 0.006 -0.0009 1.53 1.5202 +4 0.2486 0.2422 -0.0925 0.0814 0.0591 0.2219 1.53 1.101 +5 -0.0732 0 0 -0.0732 0 0 1.53 1.53 +6 0 0 0 0 0 0 1.5202 0.965 +7 0 0 0 0 0 0 1.202 0.965 +8 0 0 0 0 0 0 1.53 1.3649 +9 0 0 0 0 0 0 1.101 1.3649 +10 0.2654 0.0503 0.1046 -0.281 0.0816 -0.1522 1.53 1.202 +11 1.2143 0.2831 0.3916 -0.2298 0.0354 0.3853 1.101 1.202 +12 0.1022 0.209 0.6433 0.196 0.7056 0.112 1.457 1.101 +13 0.213 0.312 0.0777 0.213 0.312 0.0777 1.101 1.101 +14 0.1032 0.5896 -0.4836 0.0579 -0.0043 -0.1906 1.53 1.457 +15 0.2486 0.2422 -0.0925 0.0814 0.0591 0.2219 1.53 1.101 +16 -0.0732 0 0 -0.0732 0 0 1.53 1.53 +17 -0.9466 0.9356 -0.5542 0.057 0.0625 0.4112 1.53 1.006 +18 -1.1685 0.9266 -0.0993 0.085 0.3061 0.2104 1.101 1.006 +19 -0.0992 -0.0727 -0.4139 0.132 0.0015 0.1324 1.01 1.53 +20 -0.4894 0.1644 0.3105 -0.8983 0.2826 0.0881 1.01 1.101 +21 -0.1245 -0.9369 0.7781 -0.2033 0.0035 0.056 1.416 1.53 +22 0.2292 1.1732 -0.058 -0.3667 0.8197 0.1335 1.416 1.101 +23 0.2299 -0.1141 -0.1424 0.0933 -0.4631 0.2883 1.452 1.5202 +24 0.1598 0.7253 -0.1007 0.1226 -2.1326 0.5581 1.452 1.202 +25 0 0 0 0 0 0 1.452 1.3649 +26 0.6413 0.1676 0.144 -0.6979 0.5619 0.4212 1.01 1.5202 +27 0.1214 0.1936 0.0816 -0.7604 -2.6431 1.2467 1.01 1.202 +28 0 0 0 0 0 0 1.01 1.3649 +29 -0.0797 -0.0406 0.0255 0.0742 0.0105 0.0518 1.452 1.53 +30 0.3022 0.2513 0.4641 -0.0601 -0.3763 -0.1876 1.452 1.101 +31 -0.2631 -0.0076 -0.1145 -0.2751 -0.3058 -0.1767 1.53 1.416 +32 -0.0268 0.7836 0.0035 0.3552 -0.2685 0.5834 1.101 1.416 +33 0 0 0 0 0 0 1.416 0.965 +34 0.057 0.0625 0.4112 -0.9466 0.9356 -0.5542 1.006 1.53 +35 0.085 0.3061 0.2104 -1.1685 0.9266 -0.0993 1.006 1.101 +36 0.0579 -0.0043 -0.1906 0.1032 0.5896 -0.4836 1.457 1.53 + +MiddleBondTorsion Coeffs + +1 -3.5039 1.2458 -0.761 1.53 +2 -14.261 -0.5322 -0.4864 1.53 +3 -1.5945 0.2267 -0.6911 1.53 +4 -14.879 -3.6581 -0.3138 1.53 +5 -17.787 -7.1877 0 1.53 +6 0 0 0 1.3649 +7 0 0 0 1.3649 +8 0 0 0 1.5202 +9 0 0 0 1.5202 +10 0.3388 -0.1096 0.1219 1.5202 +11 0.2359 0.9139 0.9594 1.5202 +12 -10.4959 -0.7647 -0.0545 1.53 +13 -14.261 -0.5322 -0.4864 1.53 +14 -15.4174 -7.3055 -1.0749 1.53 +15 -14.879 -3.6581 -0.3138 1.53 +16 -17.787 -7.1877 0 1.53 +17 -2.2208 0.5479 -0.3527 1.457 +18 -3.4611 1.6996 -0.6007 1.457 +19 -3.5406 -3.3866 0.0352 1.452 +20 -1.1752 2.8058 0.8083 1.452 +21 -3.9501 -0.4002 -0.6798 1.452 +22 -0.6899 -2.2646 1.1579 1.452 +23 0 0 0 1.416 +24 -8.8301 14.3079 -1.7716 1.416 +25 0 0 0 1.416 +26 0 0 0 1.416 +27 -0.9084 6.1447 -0.4852 1.416 +28 0 0 0 1.416 +29 -4.2324 -3.3023 -1.3244 1.53 +30 -4.1028 -0.5941 -0.047 1.53 +31 0 0 0 1.5202 +32 0 0 0 1.5202 +33 0 0 0 1.3649 +34 -2.2208 0.5479 -0.3527 1.457 +35 -3.4611 1.6996 -0.6007 1.457 +36 -15.4174 -7.3055 -1.0749 1.53 + +BondBond13 Coeffs + +1 0 1.5202 1.101 +2 0 1.101 1.101 +3 0 1.53 1.5202 +4 0 1.53 1.101 +5 0 1.53 1.53 +6 0 1.5202 0.965 +7 0 1.202 0.965 +8 0 1.53 1.3649 +9 0 1.101 1.3649 +10 0 1.53 1.202 +11 0 1.101 1.202 +12 0 1.457 1.101 +13 0 1.101 1.101 +14 0 1.53 1.457 +15 0 1.53 1.101 +16 0 1.53 1.53 +17 0 1.53 1.006 +18 0 1.101 1.006 +19 0 1.01 1.53 +20 0 1.01 1.101 +21 0 1.416 1.53 +22 0 1.416 1.101 +23 0 1.452 1.5202 +24 0 1.452 1.202 +25 0 1.452 1.3649 +26 0 1.01 1.5202 +27 0 1.01 1.202 +28 0 1.01 1.3649 +29 0 1.452 1.53 +30 0 1.452 1.101 +31 0 1.53 1.416 +32 0 1.101 1.416 +33 0 1.416 0.965 +34 0 1.006 1.53 +35 0 1.006 1.101 +36 0 1.457 1.53 + +AngleTorsion Coeffs + +1 -0.7466 -0.9448 -0.6321 0.0162 1.4211 -1.4092 108.53 110.77 +2 -0.8085 0.5569 -0.2466 -0.8085 0.5569 -0.2466 110.77 110.77 +3 -0.2607 0.3203 -0.2283 0.0515 -0.0674 -0.0474 112.67 108.53 +4 -0.2454 0 -0.1136 0.3113 0.4516 -0.1988 112.67 110.77 +5 0.3886 -0.3139 0.1389 0.3886 -0.3139 0.1389 112.67 112.67 +6 0 0 0 0 0 0 0 111.254 +7 0 0 0 0 0 0 118.985 111.254 +8 0 0 0 0 0 0 108.53 0 +9 0 0 0 0 0 0 107.734 0 +10 0.0885 -1.3703 -0.5452 0.675 0.5965 0.6725 108.53 123.145 +11 9.1299 -0.4847 0.3582 -1.4946 0.7308 -0.2083 107.734 123.145 +12 -1.1075 0.282 0.8318 0.5111 1.6328 -1.0155 111.91 110.77 +13 -0.8085 0.5569 -0.2466 -0.8085 0.5569 -0.2466 110.77 110.77 +14 -1.9225 -1.345 0.221 2.0125 0.944 -2.7612 112.67 111.91 +15 -0.2454 0 -0.1136 0.3113 0.4516 -0.1988 112.67 110.77 +16 0.3886 -0.3139 0.1389 0.3886 -0.3139 0.1389 112.67 112.67 +17 -3.343 4.4558 -0.0346 0.2873 -0.8072 -0.096 111.91 110.954 +18 -3.9582 2.0063 0.3213 -0.4294 -0.4442 -0.6141 110.62 110.954 +19 -0.5807 0.2041 -0.1384 -2.8967 2.7084 -0.0375 113.868 114.302 +20 -0.3868 0.2041 0.0445 -3.7022 1.3876 0.2393 113.868 108.937 +21 -1.523 1.1296 0.7167 -0.7555 0.0564 1.2177 111.037 114.302 +22 0.0372 -0.3418 -0.0775 -1.5157 2.0781 0.5364 111.037 108.937 +23 5.916 1.7856 0.4052 4.2133 2.9302 3.2903 111.037 116.926 +24 7.4427 2.1505 -0.2206 4.4466 4.0317 1.7129 111.037 125.542 +25 0 0 0 0 0 0 111.037 0 +26 1.9306 0.2105 0.0557 -2.2134 1.2909 0.9726 117.961 116.926 +27 2.3848 0.703 0.1399 -2.6238 0.3606 0.5474 117.961 125.542 +28 0 0 0 0 0 0 117.961 0 +29 0.2039 0.1602 -0.7946 -0.5501 -1.6982 0.2485 114.302 112.67 +30 -1.982 0.2325 -0.3928 -1.2469 1.6933 -1.2081 114.302 110.77 +31 2.1802 -0.0335 -1.3816 2.1221 0.5032 -0.0767 108.53 116.926 +32 7.095 0.0075 0.691 2.0013 0.5068 0.8406 107.734 116.926 +33 0 0 0 0 0 0 0 111.254 +34 0.2873 -0.8072 -0.096 -3.343 4.4558 -0.0346 110.954 111.91 +35 -0.4294 -0.4442 -0.6141 -3.9582 2.0063 0.3213 110.954 110.62 +36 2.0125 0.944 -2.7612 -1.9225 -1.345 0.221 111.91 112.67 + +Improper Coeffs # class2 + +1 0 0 +2 0 0 +3 0 0 +4 0 0 +5 0 0 +6 0 0 +7 0 0 +8 0 0 +9 0 0 +10 0 0 +11 0 0 +12 0 0 +13 24.3329 0 + +AngleAngle Coeffs + +1 0 0 0 0 118.985 123.145 +2 0.2738 -0.4825 0.2738 110.77 107.66 110.77 +3 -1.3199 -1.3199 0.1184 112.67 110.77 110.77 +4 2.0403 -1.8202 1.0827 108.53 107.734 110.77 +5 -3.3867 -3.4976 -3.3867 107.734 107.66 107.734 +6 0 0 0 110.954 107.067 110.954 +7 0.2738 -0.4825 0.2738 110.77 107.66 110.77 +8 -1.3199 -1.3199 0.1184 112.67 110.77 110.77 +9 -2.5301 0.5381 2.4286 111.91 110.62 110.77 +10 2.4321 -3.5496 2.4321 110.62 107.66 110.62 +11 0 0 0 123.145 118.985 0 +12 0 0 0 113.868 117.961 111.037 +13 0 0 0 116.926 123.145 125.542 + +Atoms # full + +1 1 1 0.0000000000000000e+00 12.288168 0.738732 4.374280 0 0 0 +2 1 2 2.9999999999999999e-01 13.959928 -0.883144 5.090597 0 0 0 +3 1 3 0.0000000000000000e+00 14.411288 -1.994419 5.682160 0 0 0 +4 1 4 0.0000000000000000e+00 12.881083 0.872503 3.506176 0 0 0 +5 1 4 0.0000000000000000e+00 11.232775 0.801641 3.998777 0 0 0 +6 1 5 0.0000000000000000e+00 13.704366 -2.470396 6.130105 0 0 0 +7 1 1 0.0000000000000000e+00 12.489752 -0.793693 4.710639 0 0 0 +8 1 1 0.0000000000000000e+00 12.455071 1.866388 5.385870 0 0 0 +9 1 1 0.0000000000000000e+00 11.248961 1.901849 6.347664 0 0 0 +10 1 2 2.9999999999999999e-01 10.005971 2.466710 5.772840 -1 1 0 +11 1 6 0.0000000000000000e+00 14.795360 -0.034436 4.807367 0 0 0 +12 1 6 0.0000000000000000e+00 9.115239 1.654547 5.617002 -1 0 0 +13 1 3 0.0000000000000000e+00 9.745096 3.807654 5.573585 -1 1 0 +14 1 4 0.0000000000000000e+00 12.248215 -1.371492 3.808598 0 0 0 +15 1 4 0.0000000000000000e+00 11.715755 -1.036825 5.500449 0 0 0 +16 1 4 0.0000000000000000e+00 12.559724 2.807687 4.858452 0 1 0 +17 1 4 0.0000000000000000e+00 13.299968 1.616570 6.123781 0 0 0 +18 1 4 0.0000000000000000e+00 11.650505 2.330454 7.282410 0 1 0 +19 1 4 0.0000000000000000e+00 10.888420 0.913219 6.637162 -1 0 0 +20 1 5 0.0000000000000000e+00 10.550073 4.294209 5.758192 -1 1 0 +21 2 1 0.0000000000000000e+00 5.851425 1.929552 6.038335 0 0 0 +22 2 1 0.0000000000000000e+00 6.741509 3.160751 6.233074 0 0 0 +23 2 7 -2.9999999999999999e-01 7.957761 3.121780 5.252257 1 0 0 +24 2 7 -2.9999999999999999e-01 2.599653 -2.258940 5.985863 0 -1 0 +25 2 1 0.0000000000000000e+00 3.834337 -1.907078 5.441528 0 -1 0 +26 2 1 0.0000000000000000e+00 4.810793 -1.083699 6.310184 0 -1 0 +27 2 4 0.0000000000000000e+00 6.505912 1.182799 5.449104 0 0 0 +28 2 4 0.0000000000000000e+00 5.156429 2.256468 5.348423 0 0 0 +29 2 4 0.0000000000000000e+00 7.232782 3.178785 7.181911 0 0 0 +30 2 4 0.0000000000000000e+00 6.251671 4.103621 6.222913 0 0 0 +31 2 8 0.0000000000000000e+00 8.249909 4.070668 4.881297 1 0 0 +32 2 8 0.0000000000000000e+00 7.813025 2.623184 4.400744 1 0 0 +33 2 8 0.0000000000000000e+00 2.626695 -2.857547 6.817247 0 -1 0 +34 2 8 0.0000000000000000e+00 1.955281 -2.684319 5.328460 0 -1 0 +35 2 4 0.0000000000000000e+00 3.637708 -1.322842 4.469265 0 -1 0 +36 2 4 0.0000000000000000e+00 4.415570 -2.739689 4.997336 0 -1 0 +37 2 4 0.0000000000000000e+00 5.710714 -1.010014 5.642798 0 -1 0 +38 2 4 0.0000000000000000e+00 5.103831 -1.696423 7.160345 0 -1 0 +39 2 1 0.0000000000000000e+00 5.270763 1.286629 7.308822 0 0 0 +40 2 4 0.0000000000000000e+00 4.834381 2.168531 7.931687 0 0 1 +41 2 4 0.0000000000000000e+00 6.118354 0.786724 7.794709 0 0 1 +42 2 1 0.0000000000000000e+00 4.273849 0.167695 6.957862 0 -1 0 +43 2 4 0.0000000000000000e+00 3.792544 -0.081782 7.904418 0 -1 1 +44 2 4 0.0000000000000000e+00 3.527495 0.674238 6.348869 0 0 0 + +Velocities + +1 -2.4626989626218821e-03 -1.5920230003311222e-03 -3.0621927786115238e-03 +2 9.5082416704385837e-03 -6.9903166167507250e-03 1.3702671335945608e-02 +3 2.3431518493187576e-03 -2.9261683108242173e-03 1.4269399726982105e-03 +4 -1.8184451408256214e-02 3.1103803691687960e-02 -1.3358827768357973e-02 +5 2.6084132471017967e-02 -1.0819576493517332e-02 3.0403384454794881e-02 +6 -4.7312115958218744e-03 -1.9111462399478338e-02 -3.6793354156497558e-02 +7 -7.5068797595949869e-03 6.5661422055962489e-03 1.3226575122695422e-03 +8 3.3807881380161281e-03 3.0458732663557089e-03 2.2368826795446284e-03 +9 -3.1113905793879316e-03 8.2908867720754773e-03 -1.7561238039496530e-03 +10 2.4685206571693056e-03 1.3194776209841030e-03 -2.8041877032800441e-03 +11 -3.4945605770565296e-03 3.2323777135621814e-03 1.6223017668450866e-03 +12 -6.1153483612847778e-03 -5.1534857074262185e-03 1.7735747357354274e-03 +13 2.1384296781859011e-04 -4.5398902942729667e-03 6.1649769894413760e-03 +14 2.5004619864373401e-03 -1.5709184283264888e-03 2.0837548254667757e-02 +15 6.0547939205643532e-03 -1.2650704436910937e-02 -5.4430753266962190e-03 +16 -1.0374605775698001e-02 9.1408658463889240e-03 -1.1306875858287088e-02 +17 -1.2736499128987409e-02 -9.1726811852506501e-03 5.1136502685461254e-03 +18 7.6741778607048112e-03 1.8629856635459279e-02 -1.1300096447670932e-02 +19 -1.8616138775281121e-02 1.0848388547730185e-03 -5.7118433687798576e-03 +20 5.4137572241479059e-03 -1.4564578166395727e-02 -1.2618420441909540e-02 +21 5.8473521452312256e-03 -4.0595286000332086e-03 -6.2517801580146415e-03 +22 3.6402033824753104e-03 -1.4629540504663154e-03 -4.0030712318898046e-03 +23 9.0266305019107689e-03 -2.7511425384659687e-03 4.5576402565437142e-03 +24 -1.3102302415548614e-02 -4.7286703965305791e-03 -1.8966887841189517e-03 +25 7.8621682621103171e-03 -4.2046313540949568e-03 9.6887957374751301e-04 +26 -4.7380176438337968e-03 9.6090441940775827e-03 -8.7592431387039336e-03 +27 5.4311658811632517e-03 2.0032224663495989e-02 -9.4952076489808503e-03 +28 -2.9056381493904374e-03 3.3317109723156875e-03 1.6650350064426677e-02 +29 -6.4569944033489122e-03 2.8423983541959541e-03 -2.6066912906505167e-02 +30 -2.2173867823429387e-02 1.4628839880961319e-02 -2.3330833961402380e-02 +31 9.1925713381983114e-03 -2.5697556639281928e-03 -1.2822203161488303e-02 +32 -8.3206975051927905e-03 -2.2538429924858707e-03 7.7620244118580314e-03 +33 1.9920685674825727e-02 5.0317764848494097e-03 -2.1106672824976403e-02 +34 1.4118463330250982e-02 1.7455545466840316e-02 -1.2482101375598437e-02 +35 -6.1116505640437966e-03 1.3353021777303568e-02 -2.5492434283827668e-02 +36 9.1001521565859649e-03 5.5737774505222404e-03 1.4573768978939985e-02 +37 1.6523593470528035e-03 -2.2107518020000917e-02 2.0311423445130115e-02 +38 -1.0346275393471860e-02 1.6055856586351790e-02 5.5489127019262424e-03 +39 -3.2054811383248638e-03 1.6779208962376315e-03 2.9390509537535661e-03 +40 1.9649219364916443e-02 4.0815776523222859e-03 -9.8422441166041274e-03 +41 5.6961697588160361e-04 7.1361132234741477e-04 4.6335764220256257e-03 +42 2.2221300208006252e-03 3.6217319632558197e-03 -6.3299398503455151e-03 +43 2.5710172734841170e-03 8.0029179814482924e-03 1.9992986928468189e-02 +44 -6.0827581822674656e-03 -1.1834273655641976e-02 2.0526923045885208e-02 + +Bonds + +1 1 1 5 +2 1 1 4 +3 2 1 7 +4 2 1 8 +5 3 2 3 +6 5 2 11 +7 6 3 6 +8 4 7 2 +9 1 7 14 +10 1 7 15 +11 2 8 9 +12 1 8 16 +13 1 8 17 +14 4 9 10 +15 1 9 18 +16 1 9 19 +17 5 10 12 +18 3 10 13 +19 6 13 20 +20 7 21 22 +21 8 21 27 +22 8 21 28 +23 7 21 39 +24 9 22 23 +25 8 22 29 +26 8 22 30 +27 10 23 31 +28 10 23 32 +29 10 24 33 +30 10 24 34 +31 9 25 24 +32 7 25 26 +33 8 25 35 +34 8 25 36 +35 8 26 37 +36 8 26 38 +37 7 26 42 +38 8 39 40 +39 8 39 41 +40 7 39 42 +41 8 42 43 +42 8 42 44 + +Angles + +1 1 5 1 4 +2 2 7 1 5 +3 2 8 1 5 +4 2 7 1 4 +5 2 8 1 4 +6 3 7 1 8 +7 4 7 2 3 +8 5 3 2 11 +9 6 7 2 11 +10 7 2 3 6 +11 8 1 7 2 +12 2 1 7 14 +13 2 1 7 15 +14 9 2 7 14 +15 9 2 7 15 +16 1 14 7 15 +17 3 1 8 9 +18 2 1 8 16 +19 2 1 8 17 +20 2 9 8 16 +21 2 9 8 17 +22 1 16 8 17 +23 8 8 9 10 +24 2 8 9 18 +25 2 8 9 19 +26 9 10 9 18 +27 9 10 9 19 +28 1 18 9 19 +29 6 9 10 12 +30 4 9 10 13 +31 5 13 10 12 +32 7 10 13 20 +33 10 22 21 27 +34 10 22 21 28 +35 11 22 21 39 +36 12 27 21 28 +37 10 39 21 27 +38 10 39 21 28 +39 13 21 22 23 +40 10 21 22 29 +41 10 21 22 30 +42 14 23 22 29 +43 14 23 22 30 +44 12 29 22 30 +45 15 22 23 31 +46 15 22 23 32 +47 16 31 23 32 +48 15 25 24 33 +49 15 25 24 34 +50 16 33 24 34 +51 13 26 25 24 +52 14 24 25 35 +53 14 24 25 36 +54 10 26 25 35 +55 10 26 25 36 +56 12 35 25 36 +57 10 25 26 37 +58 10 25 26 38 +59 11 25 26 42 +60 12 37 26 38 +61 10 42 26 37 +62 10 42 26 38 +63 10 21 39 40 +64 10 21 39 41 +65 11 21 39 42 +66 12 40 39 41 +67 10 42 39 40 +68 10 42 39 41 +69 11 26 42 39 +70 10 26 42 43 +71 10 26 42 44 +72 10 39 42 43 +73 10 39 42 44 +74 12 43 42 44 + +Dihedrals + +1 2 5 1 7 14 +2 2 5 1 7 15 +3 2 4 1 7 14 +4 2 4 1 7 15 +5 3 8 1 7 2 +6 4 8 1 7 14 +7 4 8 1 7 15 +8 2 5 1 8 16 +9 2 5 1 8 17 +10 2 4 1 8 16 +11 2 4 1 8 17 +12 5 7 1 8 9 +13 4 7 1 8 16 +14 4 7 1 8 17 +15 6 7 2 3 6 +16 7 11 2 3 6 +17 1 2 7 1 5 +18 1 2 7 1 4 +19 8 1 7 2 3 +20 9 14 7 2 3 +21 9 15 7 2 3 +22 10 1 7 2 11 +23 11 14 7 2 11 +24 11 15 7 2 11 +25 4 9 8 1 5 +26 4 9 8 1 4 +27 3 1 8 9 10 +28 4 1 8 9 18 +29 4 1 8 9 19 +30 2 16 8 9 18 +31 2 16 8 9 19 +32 2 17 8 9 18 +33 2 17 8 9 19 +34 1 10 9 8 16 +35 1 10 9 8 17 +36 10 8 9 10 12 +37 8 8 9 10 13 +38 11 18 9 10 12 +39 9 18 9 10 13 +40 11 19 9 10 12 +41 9 19 9 10 13 +42 6 9 10 13 20 +43 7 12 10 13 20 +44 13 27 21 22 29 +45 13 27 21 22 30 +46 13 28 21 22 29 +47 13 28 21 22 30 +48 14 39 21 22 23 +49 15 39 21 22 29 +50 15 39 21 22 30 +51 15 22 21 39 40 +52 15 22 21 39 41 +53 16 22 21 39 42 +54 13 27 21 39 40 +55 13 27 21 39 41 +56 13 28 21 39 40 +57 13 28 21 39 41 +58 12 23 22 21 27 +59 12 23 22 21 28 +60 17 21 22 23 31 +61 17 21 22 23 32 +62 18 29 22 23 31 +63 18 29 22 23 32 +64 18 30 22 23 31 +65 18 30 22 23 32 +66 17 26 25 24 33 +67 18 35 25 24 33 +68 18 36 25 24 33 +69 17 26 25 24 34 +70 18 35 25 24 34 +71 18 36 25 24 34 +72 12 24 25 26 37 +73 12 24 25 26 38 +74 13 35 25 26 37 +75 13 35 25 26 38 +76 13 36 25 26 37 +77 13 36 25 26 38 +78 14 42 26 25 24 +79 15 42 26 25 35 +80 15 42 26 25 36 +81 16 25 26 42 39 +82 15 25 26 42 43 +83 15 25 26 42 44 +84 13 37 26 42 43 +85 13 37 26 42 44 +86 13 38 26 42 43 +87 13 38 26 42 44 +88 15 42 39 21 27 +89 15 42 39 21 28 +90 16 21 39 42 26 +91 15 21 39 42 43 +92 15 21 39 42 44 +93 13 40 39 42 43 +94 13 40 39 42 44 +95 13 41 39 42 43 +96 13 41 39 42 44 +97 15 39 42 26 37 +98 15 39 42 26 38 +99 15 26 42 39 40 +100 15 26 42 39 41 + +Impropers + +1 2 7 1 4 5 +2 2 8 1 4 5 +3 3 7 1 8 5 +4 3 7 1 8 4 +5 1 7 2 3 11 +6 4 1 7 2 14 +7 4 1 7 2 15 +8 2 1 7 14 15 +9 5 2 7 14 15 +10 3 1 8 9 16 +11 3 1 8 9 17 +12 2 1 8 16 17 +13 2 9 8 16 17 +14 4 8 9 10 18 +15 4 8 9 10 19 +16 2 8 9 18 19 +17 5 10 9 18 19 +18 1 9 10 13 12 +19 7 22 21 27 28 +20 8 22 21 39 27 +21 8 22 21 39 28 +22 7 39 21 28 27 +23 9 21 22 23 29 +24 9 21 22 23 30 +25 7 21 22 29 30 +26 10 23 22 29 30 +27 6 22 23 31 32 +28 6 25 24 33 34 +29 9 26 25 24 35 +30 9 26 25 24 36 +31 10 24 25 35 36 +32 7 26 25 35 36 +33 7 25 26 37 38 +34 8 25 26 42 37 +35 8 25 26 42 38 +36 7 42 26 38 37 +37 7 21 39 40 41 +38 8 21 39 42 40 +39 8 21 39 42 41 +40 7 42 39 41 40 +41 8 26 42 39 43 +42 8 26 42 39 44 +43 7 26 42 43 44 +44 7 39 42 43 44 diff --git a/examples/USER/misc/entropy/Na_MendelevM_2014.eam.fs b/examples/USER/misc/entropy/Na_MendelevM_2014.eam.fs new file mode 100644 index 0000000000000000000000000000000000000000..76ecae7b44401c7a2dc6380514ab33b9fc05f29a --- /dev/null +++ b/examples/USER/misc/entropy/Na_MendelevM_2014.eam.fs @@ -0,0 +1,6006 @@ +Source: M.I. Mendelev, unpublished +Contact information: mendelev@ameslab.gov +Tuesday, Sep 2, 2014 The potential was taken from v1_4_bcc (in C:\SIMULATION.MD\Na\Results\v1_4) +1 Na +10000 1.00000000000000E-0002 10000 9.20000000000000E-0004 9.20000000000000E+0000 +11 2.29897700000000E+0001 4.22786798098572E+0000 bcc +0 -1.00000000000000E-0001 -1.41421356237310E-0001 -1.73205080756888E-0001 -2.00000000000000E-0001 +-2.23606797749979E-0001 -2.44948974278318E-0001 -2.64575131106459E-0001 -2.82842712474619E-0001 -3.00000000000000E-0001 +-3.16227766016838E-0001 -3.31662479035540E-0001 -3.46410161513775E-0001 -3.60555127546399E-0001 -3.74165738677394E-0001 +-3.87298334620742E-0001 -4.00000000000000E-0001 -4.12310562561766E-0001 -4.24264068711929E-0001 -4.35889894354067E-0001 +-4.47213595499958E-0001 -4.58257569495584E-0001 -4.69041575982343E-0001 -4.79583152331272E-0001 -4.89897948556636E-0001 +-5.00000000000000E-0001 -5.09901951359279E-0001 -5.19615242270663E-0001 -5.29150262212918E-0001 -5.38516480713450E-0001 +-5.47722557505166E-0001 -5.56776436283002E-0001 -5.65685424949238E-0001 -5.74456264653803E-0001 -5.83095189484530E-0001 +-5.91607978309962E-0001 -6.00000000000000E-0001 -6.08276253029822E-0001 -6.16441400296898E-0001 -6.24499799839840E-0001 +-6.32455532033676E-0001 -6.40312423743285E-0001 -6.48074069840786E-0001 -6.55743852430200E-0001 -6.63324958071080E-0001 +-6.70820393249937E-0001 -6.78232998312527E-0001 -6.85565460040104E-0001 -6.92820323027551E-0001 -7.00000000000000E-0001 +-7.07106781186548E-0001 -7.14142842854285E-0001 -7.21110255092798E-0001 -7.28010988928052E-0001 -7.34846922834953E-0001 +-7.41619848709566E-0001 -7.48331477354788E-0001 -7.54983443527075E-0001 -7.61577310586391E-0001 -7.68114574786861E-0001 +-7.74596669241483E-0001 -7.81024967590665E-0001 -7.87400787401181E-0001 -7.93725393319377E-0001 -8.00000000000000E-0001 +-8.06225774829855E-0001 -8.12403840463596E-0001 -8.18535277187245E-0001 -8.24621125123532E-0001 -8.30662386291807E-0001 +-8.36660026534076E-0001 -8.42614977317636E-0001 -8.48528137423857E-0001 -8.54400374531753E-0001 -8.60232526704263E-0001 +-8.66025403784439E-0001 -8.71779788708135E-0001 -8.77496438739212E-0001 -8.83176086632785E-0001 -8.88819441731559E-0001 +-8.94427190999916E-0001 -9.00000000000000E-0001 -9.05538513813742E-0001 -9.11043357914430E-0001 -9.16515138991168E-0001 +-9.21954445729289E-0001 -9.27361849549570E-0001 -9.32737905308881E-0001 -9.38083151964686E-0001 -9.43398113205660E-0001 +-9.48683298050514E-0001 -9.53939201416946E-0001 -9.59166304662544E-0001 -9.64365076099296E-0001 -9.69535971483266E-0001 +-9.74679434480896E-0001 -9.79795897113271E-0001 -9.84885780179610E-0001 -9.89949493661167E-0001 -9.94987437106620E-0001 +-1.00000000000000E+0000 -1.00498756211209E+0000 -1.00995049383621E+0000 -1.01488915650922E+0000 -1.01980390271856E+0000 +-1.02469507659596E+0000 -1.02956301409870E+0000 -1.03440804327886E+0000 -1.03923048454133E+0000 -1.04403065089106E+0000 +-1.04880884817015E+0000 -1.05356537528527E+0000 -1.05830052442584E+0000 -1.06301458127346E+0000 -1.06770782520313E+0000 +-1.07238052947636E+0000 -1.07703296142690E+0000 -1.08166538263920E+0000 -1.08627804912002E+0000 -1.09087121146357E+0000 +-1.09544511501033E+0000 -1.10000000006718E+0000 -1.10453610279366E+0000 -1.10905365608280E+0000 -1.11355288976496E+0000 +-1.11803403073954E+0000 -1.12249730310191E+0000 -1.12694292826589E+0000 -1.13137112508183E+0000 -1.13578210995057E+0000 +-1.14017609693349E+0000 -1.14455329785864E+0000 -1.14891392242332E+0000 -1.15325817829318E+0000 -1.15758627119788E+0000 +-1.16189840502365E+0000 -1.16619478190269E+0000 -1.17047560229968E+0000 -1.17474106509540E+0000 -1.17899136766766E+0000 +-1.18322670596960E+0000 -1.18744727460551E+0000 -1.19165326690416E+0000 -1.19584487498991E+0000 -1.20002228985149E+0000 +-1.20418570140872E+0000 -1.20833529857707E+0000 -1.21247126933035E+0000 -1.21659380076137E+0000 -1.22070307914081E+0000 +-1.22479928997433E+0000 -1.22888261805798E+0000 -1.23295324753184E+0000 -1.23701136193229E+0000 -1.24105714424253E+0000 +-1.24509077694175E+0000 -1.24911244205286E+0000 -1.25312232118880E+0000 -1.25712059559759E+0000 -1.26110744620603E+0000 +-1.26508305366220E+0000 -1.26904759837680E+0000 -1.27300126056326E+0000 -1.27694422027680E+0000 -1.28087665745239E+0000 +-1.28479875194166E+0000 -1.28871068354884E+0000 -1.29261263206567E+0000 -1.29650477730545E+0000 -1.30038729913608E+0000 +-1.30426037751232E+0000 -1.30812419250714E+0000 -1.31197892434224E+0000 -1.31582475341782E+0000 -1.31966186034151E+0000 +-1.32349042595665E+0000 -1.32731063136972E+0000 -1.33112265797719E+0000 -1.33492668749159E+0000 -1.33872290196698E+0000 +-1.34251148382379E+0000 -1.34629261579811E+0000 -1.35006648014203E+0000 -1.35383325782324E+0000 -1.35759312847270E+0000 +-1.36134627040651E+0000 -1.36509286064725E+0000 -1.36883307494489E+0000 -1.37256708779708E+0000 -1.37629507246906E+0000 +-1.38001720101302E+0000 -1.38373364428704E+0000 -1.38744457197359E+0000 -1.39115015259757E+0000 -1.39485055354395E+0000 +-1.39854594107499E+0000 -1.40223648034706E+0000 -1.40592233542711E+0000 -1.40960366930871E+0000 -1.41328064392777E+0000 +-1.41695342017788E+0000 -1.42062215792530E+0000 -1.42428701602365E+0000 -1.42794815232825E+0000 -1.43160572371012E+0000 +-1.43525988606971E+0000 -1.43891079435033E+0000 -1.44255860255123E+0000 -1.44620346374048E+0000 -1.44984553006750E+0000 +-1.45348495277537E+0000 -1.45712188221283E+0000 -1.46075646784607E+0000 -1.46438885827024E+0000 -1.46801920122075E+0000 +-1.47164764358426E+0000 -1.47527433140955E+0000 -1.47889940991805E+0000 -1.48252302351425E+0000 -1.48614531579582E+0000 +-1.48976642956356E+0000 -1.49338650683116E+0000 -1.49700568883471E+0000 -1.50062411604207E+0000 -1.50424192816204E+0000 +-1.50785926415330E+0000 -1.51147626223323E+0000 -1.51509305988655E+0000 -1.51870979387373E+0000 -1.52232660023930E+0000 +-1.52594361431998E+0000 -1.52956097075262E+0000 -1.53317880348202E+0000 -1.53679724576861E+0000 -1.54041643019589E+0000 +-1.54403648867789E+0000 -1.54765755246631E+0000 -1.55127975215767E+0000 -1.55490321770021E+0000 -1.55852807840075E+0000 +-1.56215446293137E+0000 -1.56578249933596E+0000 -1.56941231503670E+0000 -1.57304403684034E+0000 -1.57667779094446E+0000 +-1.58031370294352E+0000 -1.58395189783485E+0000 -1.58759250002456E+0000 -1.59123563333324E+0000 -1.59488142100169E+0000 +-1.59852998569642E+0000 -1.60218144951515E+0000 -1.60583593399216E+0000 -1.60949356010353E+0000 -1.61315444827237E+0000 +-1.61681871837382E+0000 -1.62048648974013E+0000 -1.62415788116547E+0000 -1.62783301091084E+0000 -1.63151199670874E+0000 +-1.63519495576783E+0000 -1.63888200477753E+0000 -1.64257325991248E+0000 -1.64626883683698E+0000 -1.64996885070931E+0000 +-1.65367341618601E+0000 -1.65738264742605E+0000 -1.66109665809499E+0000 -1.66481556136900E+0000 -1.66853946993888E+0000 +-1.67226849601392E+0000 -1.67600275132581E+0000 -1.67974234713242E+0000 -1.68348739422148E+0000 -1.68723800291432E+0000 +-1.69099428306941E+0000 -1.69475634408595E+0000 -1.69852429490731E+0000 -1.70229824402453E+0000 -1.70607829947963E+0000 +-1.70986456886898E+0000 -1.71365715934652E+0000 -1.71745617762704E+0000 -1.72126172998929E+0000 -1.72507392227912E+0000 +-1.72889285991253E+0000 -1.73271864787871E+0000 -1.73655139074300E+0000 -1.74039119264978E+0000 -1.74423815732543E+0000 +-1.74809238808105E+0000 -1.75195398781535E+0000 -1.75582305901734E+0000 -1.75969970376905E+0000 -1.76358402374818E+0000 +-1.76747612023076E+0000 -1.77137609409365E+0000 -1.77528404581719E+0000 -1.77920007548761E+0000 -1.78312428279956E+0000 +-1.78705676705848E+0000 -1.79099762718305E+0000 -1.79494696170751E+0000 -1.79890486878400E+0000 -1.80287144618483E+0000 +-1.80684679130475E+0000 -1.81083100116315E+0000 -1.81482417240629E+0000 -1.81882640130939E+0000 -1.82283778377880E+0000 +-1.82685841535410E+0000 -1.83088839121012E+0000 -1.83492780615901E+0000 -1.83897675465222E+0000 -1.84303533078252E+0000 +-1.84710362828586E+0000 -1.85118174054337E+0000 -1.85526976058324E+0000 -1.85936778108252E+0000 -1.86347589436905E+0000 +-1.86759419242319E+0000 -1.87172276687967E+0000 -1.87586170902932E+0000 -1.88001110982080E+0000 -1.88417105986234E+0000 +-1.88834164942340E+0000 -1.89252296843637E+0000 -1.89671510649818E+0000 -1.90091815287193E+0000 -1.90513219648850E+0000 +-1.90935732594811E+0000 -1.91359362952191E+0000 -1.91784119515344E+0000 -1.92210011046022E+0000 -1.92637046273521E+0000 +-1.93065233894828E+0000 -1.93494582574765E+0000 -1.93925100946136E+0000 -1.94356797609866E+0000 -1.94789681135141E+0000 +-1.95223760059544E+0000 -1.95659042889194E+0000 -1.96095538098877E+0000 -1.96533254132182E+0000 -1.96972199401626E+0000 +-1.97412382288788E+0000 -1.97853811144436E+0000 -1.98296494288647E+0000 -1.98740440010937E+0000 -1.99185656570381E+0000 +-1.99632152195732E+0000 -2.00079935085545E+0000 -2.00529013408289E+0000 -2.00979395302466E+0000 -2.01431088876725E+0000 +-2.01884102209977E+0000 -2.02338443351504E+0000 -2.02794120321070E+0000 -2.03251141109033E+0000 -2.03709513676447E+0000 +-2.04169245955174E+0000 -2.04630345847984E+0000 -2.05092821228664E+0000 -2.05556679942114E+0000 -2.06021929804454E+0000 +-2.06488578603120E+0000 -2.06956634096962E+0000 -2.07426104016346E+0000 -2.07896996063246E+0000 -2.08369317911340E+0000 +-2.08843077206105E+0000 -2.09318281564907E+0000 -2.09794938577095E+0000 -2.10273055804093E+0000 -2.10752640779485E+0000 +-2.11233701009105E+0000 -2.11716243971128E+0000 -2.12200277116148E+0000 -2.12685807867274E+0000 -2.13172843620203E+0000 +-2.13661391743311E+0000 -2.14151459577734E+0000 -2.14643054437445E+0000 -2.15136183609339E+0000 -2.15630854353309E+0000 +-2.16127073902327E+0000 -2.16624849462521E+0000 -2.17124188213248E+0000 -2.17625097307175E+0000 -2.18127583870351E+0000 +-2.18631655002280E+0000 -2.19137317775997E+0000 -2.19644579238137E+0000 -2.20153446409009E+0000 -2.20663926282664E+0000 +-2.21176025826970E+0000 -2.21689751983673E+0000 -2.22205111668472E+0000 -2.22722111771083E+0000 -2.23240759155308E+0000 +-2.23761060659098E+0000 -2.24283023094620E+0000 -2.24806653248323E+0000 -2.25331957880997E+0000 -2.25858943727841E+0000 +-2.26387617498524E+0000 -2.26917985877244E+0000 -2.27450055522791E+0000 -2.27983833068608E+0000 -2.28519325122849E+0000 +-2.29056538268441E+0000 -2.29595479063136E+0000 -2.30136154039576E+0000 -2.30678569705344E+0000 -2.31222732543025E+0000 +-2.31768649010261E+0000 -2.32316325539801E+0000 -2.32865768539563E+0000 -2.33416984392685E+0000 -2.33969979457575E+0000 +-2.34524760067970E+0000 -2.35081332532984E+0000 -2.35639703137162E+0000 -2.36199878140528E+0000 -2.36761863778640E+0000 +-2.37325666262636E+0000 -2.37891291779289E+0000 -2.38458746491048E+0000 -2.39028036536094E+0000 -2.39599168028385E+0000 +-2.40172147057701E+0000 -2.40746979689698E+0000 -2.41323671965946E+0000 -2.41902229903981E+0000 -2.42482659497349E+0000 +-2.43064966715650E+0000 -2.43649157504585E+0000 -2.44235237785996E+0000 -2.44823213457916E+0000 -2.45413090394605E+0000 +-2.46004874446598E+0000 -2.46598571440747E+0000 -2.47194187180259E+0000 -2.47791727444744E+0000 -2.48391197990249E+0000 +-2.48992604549303E+0000 -2.49595952830957E+0000 -2.50201248520824E+0000 -2.50808497281116E+0000 -2.51417704750686E+0000 +-2.52028876545063E+0000 -2.52642018256497E+0000 -2.53257135453989E+0000 -2.53874233683334E+0000 -2.54493318467155E+0000 +-2.55114395304943E+0000 -2.55737469673090E+0000 -2.56362547024927E+0000 -2.56989632790759E+0000 -2.57618732377903E+0000 +-2.58249851170717E+0000 -2.58882994530642E+0000 -2.59518167796230E+0000 -2.60155376283183E+0000 -2.60794625284382E+0000 +-2.61435920069925E+0000 -2.62079265887156E+0000 -2.62724667960701E+0000 -2.63372131492498E+0000 -2.64021661661830E+0000 +-2.64673263625358E+0000 -2.65326942517149E+0000 -2.65982703448711E+0000 -2.66640551509022E+0000 -2.67300491764560E+0000 +-2.67962529259335E+0000 -2.68626669014918E+0000 -2.69292916030470E+0000 -2.69961275282774E+0000 -2.70631751726261E+0000 +-2.71304350293039E+0000 -2.71979075892926E+0000 -2.72655933413474E+0000 -2.73334927719997E+0000 -2.74016063655602E+0000 +-2.74699346041213E+0000 -2.75384779675603E+0000 -2.76072369335414E+0000 -2.76762119775191E+0000 -2.77454035727404E+0000 +-2.78148121902477E+0000 -2.78844382988811E+0000 -2.79542823652813E+0000 -2.80243448538920E+0000 -2.80946262269624E+0000 +-2.81651269445500E+0000 -2.82358474645225E+0000 -2.83067882425609E+0000 -2.83779497321616E+0000 -2.84493323846389E+0000 +-2.85209366491275E+0000 -2.85927629725845E+0000 -2.86648117997924E+0000 -2.87370835733609E+0000 -2.88095787337293E+0000 +-2.88822977191691E+0000 -2.89552409657860E+0000 -2.90284089075221E+0000 -2.91018019761584E+0000 -2.91754206013167E+0000 +-2.92492652104622E+0000 -2.93233362289054E+0000 -2.93976340798041E+0000 -2.94721591841659E+0000 -2.95469119608502E+0000 +-2.96218928265701E+0000 -2.96971021958948E+0000 -2.97725404812514E+0000 -2.98482080929271E+0000 -2.99241054390713E+0000 +-3.00002329256972E+0000 -3.00765909566843E+0000 -3.01531799337802E+0000 -3.02300002566024E+0000 -3.03070523226405E+0000 +-3.03843365272578E+0000 -3.04618532636936E+0000 -3.05396029230647E+0000 -3.06175858943677E+0000 -3.06958025644805E+0000 +-3.07742533181642E+0000 -3.08529385380652E+0000 -3.09318586047166E+0000 -3.10110138965405E+0000 -3.10904047898493E+0000 +-3.11700316588476E+0000 -3.12498948756344E+0000 -3.13299948102039E+0000 -3.14103318304484E+0000 -3.14909063021589E+0000 +-3.15717185890276E+0000 -3.16527690526491E+0000 -3.17340580525225E+0000 -3.18155859460524E+0000 -3.18973530885513E+0000 +-3.19793598332407E+0000 -3.20616065312528E+0000 -3.21440935316324E+0000 -3.22268211813382E+0000 -3.23097898252442E+0000 +-3.23929998061418E+0000 -3.24764514647409E+0000 -3.25601451396716E+0000 -3.26440811674858E+0000 -3.27282598826584E+0000 +-3.28126816175893E+0000 -3.28973467026043E+0000 -3.29822554659570E+0000 -3.30674082338303E+0000 -3.31528053303375E+0000 +-3.32384470775238E+0000 -3.33243337953683E+0000 -3.34104658017844E+0000 -3.34968434126221E+0000 -3.35834669416692E+0000 +-3.36703367006522E+0000 -3.37574529992383E+0000 -3.38448161450362E+0000 -3.39324264435980E+0000 -3.40202841984201E+0000 +-3.41083897109448E+0000 -3.41967432805613E+0000 -3.42853452046076E+0000 -3.43741957783710E+0000 -3.44632952950900E+0000 +-3.45526440459555E+0000 -3.46422423201117E+0000 -3.47320904046577E+0000 -3.48221885846487E+0000 -3.49125371430971E+0000 +-3.50031363609739E+0000 -3.50939865172098E+0000 -3.51850878886964E+0000 -3.52764407502875E+0000 -3.53680453748001E+0000 +-3.54599020330160E+0000 -3.55520109936822E+0000 -3.56443725235131E+0000 -3.57369868871907E+0000 -3.58298543473663E+0000 +-3.59229751646614E+0000 -3.60163495976691E+0000 -3.61099779029548E+0000 -3.62038603350576E+0000 -3.62979971464914E+0000 +-3.63923885877460E+0000 -3.64870349072878E+0000 -3.65819363515616E+0000 -3.66770931649911E+0000 -3.67725055899799E+0000 +-3.68681738669132E+0000 -3.69640982341582E+0000 -3.70602789280652E+0000 -3.71567161829692E+0000 -3.72534102311901E+0000 +-3.73503613030344E+0000 -3.74475696267958E+0000 -3.75450354287565E+0000 -3.76427589331878E+0000 -3.77407403623514E+0000 +-3.78389799365005E+0000 -3.79374778738802E+0000 -3.80362343907291E+0000 -3.81352497012798E+0000 -3.82345240177601E+0000 +-3.83340575503940E+0000 -3.84338505074023E+0000 -3.85339030950038E+0000 -3.86342155174162E+0000 -3.87347879768569E+0000 +-3.88356206735440E+0000 -3.89367138056974E+0000 -3.90380675695390E+0000 -3.91396821592945E+0000 -3.92415577671937E+0000 +-3.93436945834714E+0000 -3.94460927963686E+0000 -3.95487525921329E+0000 -3.96516741550200E+0000 -3.97548576672937E+0000 +-3.98583033092275E+0000 -3.99620112591051E+0000 -4.00659816932213E+0000 -4.01702147858827E+0000 -4.02747107094087E+0000 +-4.03794696341322E+0000 -4.04844917284006E+0000 -4.05897771585762E+0000 -4.06953260890374E+0000 -4.08011386821795E+0000 +-4.09072150984150E+0000 -4.10135554961749E+0000 -4.11201600319093E+0000 -4.12270288600882E+0000 -4.13341621332021E+0000 +-4.14415600017629E+0000 -4.15492226143047E+0000 -4.16571501173845E+0000 -4.17653426555829E+0000 -4.18738003715049E+0000 +-4.19825234057806E+0000 -4.20915118970658E+0000 -4.22007659820429E+0000 -4.23102857954219E+0000 -4.24200714699404E+0000 +-4.25301231363648E+0000 -4.26404409234908E+0000 -4.27510249581447E+0000 -4.28618753651828E+0000 -4.29729922674936E+0000 +-4.30843757859973E+0000 -4.31960260396473E+0000 -4.33079431454301E+0000 -4.34201272183669E+0000 -4.35325783715133E+0000 +-4.36452967159607E+0000 -4.37582823608367E+0000 -4.38715354133054E+0000 -4.39850559785688E+0000 -4.40988441598668E+0000 +-4.42129000584781E+0000 -4.43272237737208E+0000 -4.44418154029531E+0000 -4.45566750415737E+0000 -4.46718027830227E+0000 +-4.47871987187821E+0000 -4.49028629383765E+0000 -4.50187955293733E+0000 -4.51349965773840E+0000 -4.52514661660643E+0000 +-4.53682043771146E+0000 -4.54852112902814E+0000 -4.56024869833566E+0000 -4.57200315321794E+0000 -4.58378450106360E+0000 +-4.59559274906604E+0000 -4.60742790422353E+0000 -4.61928997333922E+0000 -4.63117896302122E+0000 -4.64309487968267E+0000 +-4.65503772954176E+0000 -4.66700751862181E+0000 -4.67900425275134E+0000 -4.69102793756408E+0000 -4.70307857849908E+0000 +-4.71515618080070E+0000 -4.72726074951872E+0000 -4.73939228950837E+0000 -4.75155080543039E+0000 -4.76373630175107E+0000 +-4.77594878274231E+0000 -4.78818825248168E+0000 -4.80045471485247E+0000 -4.81274817354371E+0000 -4.82506863205028E+0000 +-4.83741609367291E+0000 -4.84979056151825E+0000 -4.86219203849893E+0000 -4.87462052733358E+0000 -4.88707603054691E+0000 +-4.89955855046975E+0000 -4.91206808923909E+0000 -4.92460464879814E+0000 -4.93716823089637E+0000 -4.94975883708957E+0000 +-4.96237646873987E+0000 -4.97502112701583E+0000 -4.98769281289245E+0000 -5.00039152715123E+0000 -5.01311727038022E+0000 +-5.02587004297407E+0000 -5.03864984513405E+0000 -5.05145667686814E+0000 -5.06429053799104E+0000 -5.07715142812420E+0000 +-5.09003934669594E+0000 -5.10295429294140E+0000 -5.11589626590265E+0000 -5.12886526442871E+0000 -5.14186128717560E+0000 +-5.15488433260636E+0000 -5.16793439899115E+0000 -5.18101148440722E+0000 -5.19411558673901E+0000 -5.20724670367815E+0000 +-5.22040483272356E+0000 -5.23358997118141E+0000 -5.24680211616525E+0000 -5.26004126459596E+0000 -5.27330741320189E+0000 +-5.28660055851881E+0000 -5.29992069689002E+0000 -5.31326782446633E+0000 -5.32664193720616E+0000 -5.34004303087553E+0000 +-5.35347110104813E+0000 -5.36692614310535E+0000 -5.38040815223632E+0000 -5.39391712343795E+0000 -5.40745305151494E+0000 +-5.42101593107988E+0000 -5.43460575655324E+0000 -5.44822252216342E+0000 -5.46186622194679E+0000 -5.47553684974771E+0000 +-5.48923439921863E+0000 -5.50295886382002E+0000 -5.51671023682052E+0000 -5.53048851129689E+0000 -5.54429368013410E+0000 +-5.55812573602532E+0000 -5.57198467147203E+0000 -5.58587047878397E+0000 -5.59978315007921E+0000 -5.61372267728423E+0000 +-5.62768905213387E+0000 -5.64168226617145E+0000 -5.65570231074872E+0000 -5.66974917702598E+0000 -5.68382285597205E+0000 +-5.69792333836433E+0000 -5.71205061478884E+0000 -5.72620467564024E+0000 -5.74038551112187E+0000 -5.75459311124578E+0000 +-5.76882746583276E+0000 -5.78308856451239E+0000 -5.79737639672306E+0000 -5.81169095171199E+0000 -5.82603221853528E+0000 +-5.84040018605796E+0000 -5.85479484295396E+0000 -5.86921617770623E+0000 -5.88366417860668E+0000 -5.89813883375627E+0000 +-5.91264013106504E+0000 -5.92716805825212E+0000 -5.94172260284575E+0000 -5.95630375218336E+0000 -5.97091149341154E+0000 +-5.98554581348612E+0000 -6.00020669917218E+0000 -6.01489413704406E+0000 -6.02960811348544E+0000 -6.04434861468933E+0000 +-6.05911562665808E+0000 -6.07390913520348E+0000 -6.08872912594673E+0000 -6.10357558431848E+0000 -6.11844849555889E+0000 +-6.13334784471761E+0000 -6.14827361665384E+0000 -6.16322579603636E+0000 -6.17820436734354E+0000 -6.19320931486340E+0000 +-6.20824062269357E+0000 -6.22329827474141E+0000 -6.23838225472397E+0000 -6.25349254616804E+0000 -6.26862913241019E+0000 +-6.28379199659676E+0000 -6.29898112168393E+0000 -6.31419649043771E+0000 -6.32943808543401E+0000 -6.34470588905861E+0000 +-6.35999988350724E+0000 -6.37532005078556E+0000 -6.39066637270924E+0000 -6.40603883090393E+0000 -6.42143740680532E+0000 +-6.43686208165916E+0000 -6.45231283652128E+0000 -6.46778965225761E+0000 -6.48329250954422E+0000 -6.49882138886734E+0000 +-6.51437627052339E+0000 -6.52995713461898E+0000 -6.54556396107096E+0000 -6.56119672960644E+0000 -6.57685541976282E+0000 +-6.59254001088779E+0000 -6.60825048213937E+0000 -6.62398681248595E+0000 -6.63974898070629E+0000 -6.65553696538956E+0000 +-6.67135074493533E+0000 -6.68719029755365E+0000 -6.70305560126502E+0000 -6.71894663390046E+0000 -6.73486337310149E+0000 +-6.75080579632017E+0000 -6.76677388081914E+0000 -6.78276760367163E+0000 -6.79878694176145E+0000 -6.81483187178308E+0000 +-6.83090237024165E+0000 -6.84699841345294E+0000 -6.86311997754345E+0000 -6.87926703845041E+0000 -6.89543957192178E+0000 +-6.91163755351629E+0000 -6.92786095860346E+0000 -6.94410976236363E+0000 -6.96038393978795E+0000 -6.97668346567844E+0000 +-6.99300831464797E+0000 -7.00935846112033E+0000 -7.02573387933022E+0000 -7.04213454332326E+0000 -7.05856042695605E+0000 +-7.07501150389617E+0000 -7.09148774762217E+0000 -7.10798913142364E+0000 -7.12451562840122E+0000 -7.14106721146659E+0000 +-7.15764385334252E+0000 -7.17424552656287E+0000 -7.19087220347263E+0000 -7.20752385622794E+0000 -7.22420045679608E+0000 +-7.24090197695552E+0000 -7.25762838829593E+0000 -7.27437966221821E+0000 -7.29115576993446E+0000 -7.30795668246807E+0000 +-7.32478237065371E+0000 -7.34163280513733E+0000 -7.35850795637619E+0000 -7.37540779463890E+0000 -7.39233229000543E+0000 +-7.40928141236709E+0000 -7.42625513142659E+0000 -7.44325341669806E+0000 -7.46027623750706E+0000 -7.47732356299057E+0000 +-7.49439536209706E+0000 -7.51149160358645E+0000 -7.52861225603021E+0000 -7.54575728781128E+0000 -7.56292666712413E+0000 +-7.58012036197483E+0000 -7.59733834018098E+0000 -7.61458056937177E+0000 -7.63184701698803E+0000 -7.64913765028219E+0000 +-7.66645243631829E+0000 -7.68379134197208E+0000 -7.70115433393095E+0000 -7.71854137869400E+0000 -7.73595244257203E+0000 +-7.75338749168755E+0000 -7.77084649197485E+0000 -7.78832940917995E+0000 -7.80583620886064E+0000 -7.82336685638654E+0000 +-7.84092131693902E+0000 -7.85849955551133E+0000 -7.87610153690853E+0000 -7.89372722574755E+0000 -7.91137658645720E+0000 +-7.92904958327814E+0000 -7.94674618026299E+0000 -7.96446634127627E+0000 -7.98221002999442E+0000 -7.99997720990584E+0000 +-8.01776784431091E+0000 -8.03558189632200E+0000 -8.05341932886346E+0000 -8.07128010467167E+0000 -8.08916418629504E+0000 +-8.10707153609400E+0000 -8.12500211624110E+0000 -8.14295588872088E+0000 -8.16093281533005E+0000 -8.17893285767738E+0000 +-8.19695597718379E+0000 -8.21500213508232E+0000 -8.23307129241817E+0000 -8.25116341004869E+0000 -8.26927844864341E+0000 +-8.28741636868409E+0000 -8.30557713046465E+0000 -8.32376069409128E+0000 -8.34196701948234E+0000 -8.36019606636855E+0000 +-8.37844779429279E+0000 -8.39672216261028E+0000 -8.41501913048851E+0000 -8.43333865690730E+0000 -8.45168070065877E+0000 +-8.47004522034739E+0000 -8.48843217438998E+0000 -8.50684152101571E+0000 -8.52527321826615E+0000 -8.54372722399525E+0000 +-8.56220349586935E+0000 -8.58070199136725E+0000 -8.59922266778014E+0000 -8.61776548221166E+0000 -8.63633039157794E+0000 +-8.65491735260754E+0000 -8.67352632184154E+0000 -8.69215725563349E+0000 -8.71081011014946E+0000 -8.72948484136808E+0000 +-8.74818140508045E+0000 -8.76689975689027E+0000 -8.78563985221379E+0000 -8.80440164627982E+0000 -8.82318509412979E+0000 +-8.84199015061767E+0000 -8.86081677041013E+0000 -8.87966490798637E+0000 -8.89853451763834E+0000 -8.91742555347052E+0000 +-8.93633796940014E+0000 -8.95527171915707E+0000 -8.97422675628385E+0000 -8.99320303413578E+0000 -9.01220050588081E+0000 +-9.03121912449964E+0000 -9.05025884278571E+0000 -9.06931961334517E+0000 -9.08840138859700E+0000 -9.10750412077287E+0000 +-9.12662776191731E+0000 -9.14577226388758E+0000 -9.16493757835377E+0000 -9.18412365679882E+0000 -9.20333045051845E+0000 +-9.22255791062125E+0000 -9.24180598802864E+0000 -9.26107463347493E+0000 -9.28036379750728E+0000 -9.29967343048575E+0000 +-9.31900348258330E+0000 -9.33835390378580E+0000 -9.35772464389203E+0000 -9.37711565251370E+0000 -9.39652687907549E+0000 +-9.41595827281498E+0000 -9.43540978278274E+0000 -9.45488135784235E+0000 -9.47437294667034E+0000 -9.49388449775622E+0000 +-9.51341595940254E+0000 -9.53296727972486E+0000 -9.55253840665176E+0000 -9.57212928792486E+0000 -9.59173987109882E+0000 +-9.61137010354141E+0000 -9.63101993243340E+0000 -9.65068930476869E+0000 -9.67037816735425E+0000 -9.69008646681015E+0000 +-9.70981414956960E+0000 -9.72956116187888E+0000 -9.74932744979747E+0000 -9.76911295919791E+0000 -9.78891763576599E+0000 +-9.80874142500057E+0000 -9.82858427221374E+0000 -9.84844612253075E+0000 -9.86832692089005E+0000 -9.88822661204328E+0000 +-9.90814514055531E+0000 -9.92808245080423E+0000 -9.94803848698135E+0000 -9.96801319309121E+0000 -9.98800651295164E+0000 +-1.00080183901936E+0001 -1.00280487682617E+0001 -1.00480975904132E+0001 -1.00681647997193E+0001 -1.00882503390641E+0001 +-1.01083541511450E+0001 -1.01284761784730E+0001 -1.01486163633721E+0001 -1.01687746479799E+0001 -1.01889509742473E+0001 +-1.02091452839383E+0001 -1.02293575186305E+0001 -1.02495876197149E+0001 -1.02698355283958E+0001 -1.02901011856909E+0001 +-1.03103845324312E+0001 -1.03306855092613E+0001 -1.03510040566391E+0001 -1.03713401148359E+0001 -1.03916936239365E+0001 +-1.04120645238392E+0001 -1.04324527542556E+0001 -1.04528582547108E+0001 -1.04732809645435E+0001 -1.04937208229058E+0001 +-1.05141777687632E+0001 -1.05346517408948E+0001 -1.05551426778931E+0001 -1.05756505181643E+0001 -1.05961751999280E+0001 +-1.06167166612173E+0001 -1.06372748398789E+0001 -1.06578496735729E+0001 -1.06784410997733E+0001 -1.06990490557673E+0001 +-1.07196734786558E+0001 -1.07403143053533E+0001 -1.07609714725879E+0001 -1.07816449169012E+0001 -1.08023345746486E+0001 +-1.08230403819990E+0001 -1.08437622749348E+0001 -1.08645001892521E+0001 -1.08852540605608E+0001 -1.09060238242843E+0001 +-1.09268094156596E+0001 -1.09476107697375E+0001 -1.09684278213823E+0001 -1.09892605052721E+0001 -1.10101087558987E+0001 +-1.10309725075675E+0001 -1.10518516943977E+0001 -1.10727462503221E+0001 -1.10936561090872E+0001 -1.11145812042534E+0001 +-1.11355214691946E+0001 -1.11564768370987E+0001 -1.11774472409670E+0001 -1.11984326136149E+0001 -1.12194328876713E+0001 +-1.12404479955790E+0001 -1.12614778695946E+0001 -1.12825224417883E+0001 -1.13035816440443E+0001 -1.13246554080605E+0001 +-1.13457436653486E+0001 -1.13668463472341E+0001 -1.13879633848563E+0001 -1.14090947091684E+0001 -1.14302402509375E+0001 +-1.14513999407443E+0001 -1.14725737089834E+0001 -1.14937614858635E+0001 -1.15149632014070E+0001 -1.15361787854500E+0001 +-1.15574081676427E+0001 -1.15786512774492E+0001 -1.15999080441472E+0001 -1.16211783968287E+0001 -1.16424622643993E+0001 +-1.16637595755786E+0001 -1.16850702589001E+0001 -1.17063942427113E+0001 -1.17277314551735E+0001 -1.17490818242620E+0001 +-1.17704452777662E+0001 -1.17918217432891E+0001 -1.18132111482479E+0001 -1.18346134198737E+0001 -1.18560284852117E+0001 +-1.18774562711208E+0001 -1.18988967042742E+0001 -1.19203497111587E+0001 -1.19418152180755E+0001 -1.19632931511396E+0001 +-1.19847834362800E+0001 -1.20062859992396E+0001 -1.20278007655757E+0001 -1.20493276606593E+0001 -1.20708666096755E+0001 +-1.20924175376234E+0001 -1.21139803693162E+0001 -1.21355550293813E+0001 -1.21571414422600E+0001 -1.21787395322075E+0001 +-1.22003492232934E+0001 -1.22219704394012E+0001 -1.22436031042284E+0001 -1.22652471412869E+0001 -1.22869024739023E+0001 +-1.23085690252146E+0001 -1.23302467181777E+0001 -1.23519354755598E+0001 -1.23736352199431E+0001 -1.23953458737240E+0001 +-1.24170673591129E+0001 -1.24387995981344E+0001 -1.24605425126274E+0001 -1.24822960242447E+0001 -1.25040600544534E+0001 +-1.25258345245347E+0001 -1.25476193555840E+0001 -1.25694144685109E+0001 -1.25912197840391E+0001 -1.26130352227065E+0001 +-1.26348607048653E+0001 -1.26566961506818E+0001 -1.26785414801363E+0001 -1.27003966130237E+0001 -1.27222614689529E+0001 +-1.27441359673471E+0001 -1.27660200274435E+0001 -1.27879135682937E+0001 -1.28098165087637E+0001 -1.28317287675334E+0001 +-1.28536502630971E+0001 -1.28755809137635E+0001 -1.28975206376552E+0001 -1.29194693527095E+0001 -1.29414269766775E+0001 +-1.29633934271250E+0001 -1.29853686214318E+0001 -1.30073524767921E+0001 -1.30293449102143E+0001 -1.30513458385211E+0001 +-1.30733551783497E+0001 -1.30953728461513E+0001 -1.31173987581917E+0001 -1.31394328305507E+0001 -1.31614749791227E+0001 +-1.31835251196163E+0001 -1.32055831675545E+0001 -1.32276490382744E+0001 -1.32497226469278E+0001 -1.32718039084805E+0001 +-1.32938927377129E+0001 -1.33159890492197E+0001 -1.33380927574098E+0001 -1.33602037765066E+0001 -1.33823220205481E+0001 +-1.34044474033861E+0001 -1.34265798386873E+0001 -1.34487192399326E+0001 -1.34708655204171E+0001 -1.34930185932507E+0001 +-1.35151783713574E+0001 -1.35373447674757E+0001 -1.35595176941585E+0001 -1.35816970637730E+0001 -1.36038827885010E+0001 +-1.36260747803386E+0001 -1.36482729510965E+0001 -1.36704772123996E+0001 -1.36926874756873E+0001 -1.37149036522137E+0001 +-1.37371256530469E+0001 -1.37593533890698E+0001 -1.37815867709796E+0001 -1.38038257092880E+0001 -1.38260701143213E+0001 +-1.38483198962199E+0001 -1.38705749649391E+0001 -1.38928352302485E+0001 -1.39151006017320E+0001 -1.39373709887884E+0001 +-1.39596463006306E+0001 -1.39819264462861E+0001 -1.40042113345972E+0001 -1.40265008742203E+0001 -1.40487949736264E+0001 +-1.40710935411012E+0001 -1.40933964847449E+0001 -1.41157037124720E+0001 -1.41380151320116E+0001 -1.41603306509076E+0001 +-1.41826501765181E+0001 -1.42049736160159E+0001 -1.42273008763883E+0001 -1.42496318644372E+0001 -1.42719664867790E+0001 +-1.42943046498447E+0001 -1.43166462598799E+0001 -1.43389912229447E+0001 -1.43613394449137E+0001 -1.43836908314763E+0001 +-1.44060452881362E+0001 -1.44284027202119E+0001 -1.44507630328364E+0001 -1.44731261309574E+0001 -1.44954919193369E+0001 +-1.45178603025519E+0001 -1.45402311849938E+0001 -1.45626044708684E+0001 -1.45849800641967E+0001 -1.46073578688136E+0001 +-1.46297377883692E+0001 -1.46521197263278E+0001 -1.46745035859688E+0001 -1.46968892703857E+0001 -1.47192766824870E+0001 +-1.47416657249958E+0001 -1.47640563004497E+0001 -1.47864483112010E+0001 -1.48088416594167E+0001 -1.48312362470786E+0001 +-1.48536319759828E+0001 -1.48760287477404E+0001 -1.48984264637770E+0001 -1.49208250253329E+0001 -1.49432243334631E+0001 +-1.49656242890372E+0001 -1.49880247927396E+0001 -1.50104257450694E+0001 -1.50328270463403E+0001 -1.50552285966806E+0001 +-1.50776302960336E+0001 -1.51000320441570E+0001 -1.51224337406235E+0001 -1.51448352848201E+0001 -1.51672365759490E+0001 +-1.51896375130267E+0001 -1.52120379948847E+0001 -1.52344379201690E+0001 -1.52568371873406E+0001 -1.52792356946751E+0001 +-1.53016333402627E+0001 -1.53240300220085E+0001 -1.53464256376323E+0001 -1.53688200846687E+0001 -1.53912132604669E+0001 +-1.54136050621911E+0001 -1.54359953868200E+0001 -1.54583841311473E+0001 -1.54807711917812E+0001 -1.55031564651449E+0001 +-1.55255398474762E+0001 -1.55479212348278E+0001 -1.55703005230672E+0001 -1.55926776078765E+0001 -1.56150523847527E+0001 +-1.56374247490078E+0001 -1.56597945957681E+0001 -1.56821618199751E+0001 -1.57045263163851E+0001 -1.57268879795689E+0001 +-1.57492467039124E+0001 -1.57716023836161E+0001 -1.57939549126955E+0001 -1.58163041849808E+0001 -1.58386500941171E+0001 +-1.58609925335642E+0001 -1.58833313965968E+0001 -1.59056665763044E+0001 -1.59279979655914E+0001 -1.59503254571771E+0001 +-1.59726489435953E+0001 -1.59949683171951E+0001 -1.60172834701401E+0001 -1.60395942944090E+0001 -1.60619006817950E+0001 +-1.60842025239065E+0001 -1.61064997121667E+0001 -1.61287921378135E+0001 -1.61510796918999E+0001 -1.61733622652935E+0001 +-1.61956397486770E+0001 -1.62179120325478E+0001 -1.62401790072183E+0001 -1.62624405628157E+0001 -1.62846965892823E+0001 +-1.63069469763749E+0001 -1.63291916136654E+0001 -1.63514303905408E+0001 -1.63736631962026E+0001 -1.63958899196674E+0001 +-1.64181104497668E+0001 -1.64403246751472E+0001 -1.64625324842698E+0001 -1.64847337654109E+0001 -1.65069284066616E+0001 +-1.65291162959280E+0001 -1.65512973209310E+0001 -1.65734713692065E+0001 -1.65956383281053E+0001 -1.66177980847933E+0001 +-1.66399505262510E+0001 -1.66620955392742E+0001 -1.66842330104733E+0001 -1.67063628262739E+0001 -1.67284848729165E+0001 +-1.67505990364563E+0001 -1.67727052027637E+0001 -1.67948032575241E+0001 -1.68168930862376E+0001 -1.68389745742196E+0001 +-1.68610476066002E+0001 -1.68831120683243E+0001 -1.69051678441523E+0001 -1.69272148186592E+0001 -1.69492528762350E+0001 +-1.69712819010847E+0001 -1.69933017772283E+0001 -1.70153123885009E+0001 -1.70373136185523E+0001 -1.70593053508475E+0001 +-1.70812874686665E+0001 -1.71032598551041E+0001 -1.71252223930704E+0001 -1.71471749652902E+0001 -1.71691174543035E+0001 +-1.71910497424652E+0001 -1.72129717119452E+0001 -1.72348832447284E+0001 -1.72567842226148E+0001 -1.72786745272195E+0001 +-1.73005540399722E+0001 -1.73224226421182E+0001 -1.73442802147173E+0001 -1.73661266386447E+0001 -1.73879617945904E+0001 +-1.74097855630594E+0001 -1.74315978243721E+0001 -1.74533984586635E+0001 -1.74751873458838E+0001 -1.74969643657982E+0001 +-1.75187293979872E+0001 -1.75404823218459E+0001 -1.75622230165849E+0001 -1.75839513612295E+0001 -1.76056672346202E+0001 +-1.76273705154126E+0001 -1.76490610820772E+0001 -1.76707388128998E+0001 -1.76924035859810E+0001 -1.77140552792367E+0001 +-1.77356937703977E+0001 -1.77573189370099E+0001 -1.77789306564344E+0001 -1.78005288058472E+0001 -1.78221132622394E+0001 +-1.78436839024173E+0001 -1.78652406030023E+0001 -1.78867832404308E+0001 -1.79083116909541E+0001 -1.79298258306390E+0001 +-1.79513255353670E+0001 -1.79728106808350E+0001 -1.79942811425548E+0001 -1.80157367958534E+0001 -1.80371775158728E+0001 +-1.80586031775703E+0001 -1.80800136557181E+0001 -1.81014088249036E+0001 -1.81227885595293E+0001 -1.81441527338128E+0001 +-1.81655012217868E+0001 -1.81868338972993E+0001 -1.82081506340131E+0001 -1.82294513054063E+0001 -1.82507357847723E+0001 +-1.82720039452193E+0001 -1.82932556596708E+0001 -1.83144908008654E+0001 -1.83357092413568E+0001 -1.83569108535141E+0001 +-1.83780955095210E+0001 -1.83992630813769E+0001 -1.84204134408961E+0001 -1.84415464597079E+0001 -1.84626620092569E+0001 +-1.84837599608031E+0001 -1.85048401854212E+0001 -1.85259025540012E+0001 -1.85469469372485E+0001 -1.85679732056834E+0001 +-1.85889812296414E+0001 -1.86099708792732E+0001 -1.86309420245447E+0001 -1.86518945352370E+0001 -1.86728282809462E+0001 +-1.86937431310836E+0001 -1.87146389548760E+0001 -1.87355156213649E+0001 -1.87563729994073E+0001 -1.87772109576753E+0001 +-1.87980293646561E+0001 -1.88188280886522E+0001 -1.88396069977813E+0001 -1.88603659599762E+0001 -1.88811048429848E+0001 +-1.89018235143705E+0001 -1.89225218415116E+0001 -1.89431996916018E+0001 -1.89638569316498E+0001 -1.89844934284797E+0001 +-1.90051090487306E+0001 -1.90257036588571E+0001 -1.90462771251287E+0001 -1.90668293136303E+0001 -1.90873600902618E+0001 +-1.91078693207387E+0001 -1.91283568705914E+0001 -1.91488226051655E+0001 -1.91692663896221E+0001 -1.91896880889371E+0001 +-1.92100875679021E+0001 -1.92304646911236E+0001 -1.92508193230235E+0001 -1.92711513278386E+0001 -1.92914605696215E+0001 +-1.93117469122396E+0001 -1.93320102193755E+0001 -1.93522503545273E+0001 -1.93724671810084E+0001 -1.93926605619471E+0001 +-1.94128303602871E+0001 -1.94329764387874E+0001 -1.94530986600222E+0001 -1.94731968863811E+0001 -1.94932709800686E+0001 +-1.95133208031047E+0001 -1.95333462173248E+0001 -1.95533470843792E+0001 -1.95733232657336E+0001 -1.95932746226692E+0001 +-1.96132010162821E+0001 -1.96331023074839E+0001 -1.96529783570014E+0001 -1.96728290253766E+0001 -1.96926541729668E+0001 +-1.97124536599447E+0001 -1.97322273462981E+0001 -1.97519750918303E+0001 -1.97716967561595E+0001 -1.97913921987195E+0001 +-1.98110612787594E+0001 -1.98307038553434E+0001 -1.98503197873510E+0001 -1.98699089334771E+0001 -1.98894711522318E+0001 +-1.99090063019405E+0001 -1.99285142407441E+0001 -1.99479948265983E+0001 -1.99674479172748E+0001 -1.99868733703598E+0001 +-2.00062710432554E+0001 -2.00256407931788E+0001 -2.00449824771625E+0001 -2.00642959520543E+0001 -2.00835810745173E+0001 +-2.01028377010299E+0001 -2.01220656878859E+0001 -2.01412648911943E+0001 -2.01604351668795E+0001 -2.01795763706811E+0001 +-2.01986883581541E+0001 -2.02177709846689E+0001 -2.02368241054111E+0001 -2.02558475753815E+0001 -2.02748412493966E+0001 +-2.02938049820878E+0001 -2.03127386279021E+0001 -2.03316420411017E+0001 -2.03505150757643E+0001 -2.03693575857828E+0001 +-2.03881694248653E+0001 -2.04069504465356E+0001 -2.04257005041324E+0001 -2.04444194508100E+0001 -2.04631071395381E+0001 +-2.04817634231016E+0001 -2.05003881541007E+0001 -2.05189811849512E+0001 -2.05375423678838E+0001 -2.05560715549451E+0001 +-2.05745685979967E+0001 -2.05930333487155E+0001 -2.06114656585939E+0001 -2.06298653789398E+0001 -2.06482323608760E+0001 +-2.06665664553412E+0001 -2.06848675130890E+0001 -2.07031353846887E+0001 -2.07213699205249E+0001 -2.07395709707973E+0001 +-2.07577383855212E+0001 -2.07758720145273E+0001 -2.07939717074615E+0001 -2.08120373137852E+0001 -2.08300686827752E+0001 +-2.08480656635235E+0001 -2.08660281049375E+0001 -2.08839558557403E+0001 -2.09018487644700E+0001 -2.09197066794801E+0001 +-2.09375294489399E+0001 -2.09553169208334E+0001 -2.09730689429607E+0001 -2.09907853629367E+0001 -2.10084660281921E+0001 +-2.10261107859727E+0001 -2.10437194833398E+0001 -2.10612919671703E+0001 -2.10788280841560E+0001 -2.10963276808046E+0001 +-2.11137906034392E+0001 -2.11312166981975E+0001 -2.11486058110336E+0001 -2.11659577877164E+0001 -2.11832724738306E+0001 +-2.12005497147759E+0001 -2.12177893557676E+0001 -2.12349912418366E+0001 -2.12521552178287E+0001 -2.12692811284056E+0001 +-2.12863688180441E+0001 -2.13034181310367E+0001 -2.13204289114911E+0001 -2.13374010033305E+0001 -2.13543342502933E+0001 +-2.13712284959336E+0001 -2.13880835836209E+0001 -2.14048993565399E+0001 -2.14216756576911E+0001 -2.14384123298898E+0001 +-2.14551092157676E+0001 -2.14717661577706E+0001 -2.14883829981608E+0001 -2.15049595790158E+0001 -2.15214957422283E+0001 +-2.15379913295067E+0001 -2.15544461823744E+0001 -2.15708601421706E+0001 -2.15872330500500E+0001 -2.16035647469826E+0001 +-2.16198550737537E+0001 -2.16361038709641E+0001 -2.16523109790303E+0001 -2.16684762381840E+0001 -2.16845994884722E+0001 +-2.17006805697579E+0001 -2.17167193217188E+0001 -2.17327155838487E+0001 -2.17486691954565E+0001 -2.17645799956666E+0001 +-2.17804478234189E+0001 -2.17962725174688E+0001 -2.18120539163870E+0001 -2.18277918585597E+0001 -2.18434861821888E+0001 +-2.18591367252913E+0001 -2.18747433256998E+0001 -2.18903058210624E+0001 -2.19058240488429E+0001 -2.19212978463200E+0001 +-2.19367270505882E+0001 -2.19521114985574E+0001 -2.19674510269533E+0001 -2.19827454723165E+0001 -2.19979946710034E+0001 +-2.20131984591858E+0001 -2.20283566728511E+0001 -2.20434691478019E+0001 -2.20585357196564E+0001 -2.20735562238485E+0001 +-2.20885304956274E+0001 -2.21034583700574E+0001 -2.21183396820190E+0001 -2.21331742662077E+0001 -2.21479619571347E+0001 +-2.21627025891264E+0001 -2.21773959963250E+0001 -2.21920420126881E+0001 -2.22066404719886E+0001 -2.22211912078152E+0001 +-2.22356940535717E+0001 -2.22501488424779E+0001 -2.22645554075686E+0001 -2.22789135816944E+0001 -2.22932231975212E+0001 +-2.23074840875304E+0001 -2.23216960840193E+0001 -2.23358590191002E+0001 -2.23499727247010E+0001 -2.23640370325652E+0001 +-2.23780517742519E+0001 -2.23920167811356E+0001 -2.24059318844061E+0001 -2.24197969150691E+0001 -2.24336117039454E+0001 +-2.24473760816716E+0001 -2.24610898786998E+0001 -2.24747529252975E+0001 -2.24883650515476E+0001 -2.25019260873486E+0001 +-2.25154358624147E+0001 -2.25288942062756E+0001 -2.25423009482762E+0001 -2.25556559175771E+0001 -2.25689589431546E+0001 +-2.25822098538000E+0001 -2.25954084781207E+0001 -2.26085546445393E+0001 -2.26216481812941E+0001 -2.26346889164387E+0001 +-2.26476766778425E+0001 -2.26606112931901E+0001 -2.26734925899819E+0001 -2.26863203955338E+0001 -2.26990945369769E+0001 +-2.27118148412582E+0001 -2.27244811351404E+0001 -2.27370932452010E+0001 -2.27496509978338E+0001 -2.27621542192475E+0001 +-2.27746027354671E+0001 -2.27869963723322E+0001 -2.27993349554989E+0001 -2.28116183104380E+0001 -2.28238462624362E+0001 +-2.28360186365961E+0001 -2.28481352578350E+0001 -2.28601959508865E+0001 -2.28722005402995E+0001 -2.28841488504384E+0001 +-2.28960407054830E+0001 -2.29078759294288E+0001 -2.29196543460872E+0001 -2.29313757790843E+0001 -2.29430400518626E+0001 +-2.29546469876798E+0001 -2.29661964096089E+0001 -2.29776881405389E+0001 -2.29891220031742E+0001 -2.30004978200346E+0001 +-2.30118154134557E+0001 -2.30230746055884E+0001 -2.30342752183993E+0001 -2.30454170736706E+0001 -2.30564999929999E+0001 +-2.30675237978006E+0001 -2.30784883093015E+0001 -2.30893933485469E+0001 -2.31002387363970E+0001 -2.31110242935269E+0001 +-2.31217498404282E+0001 -2.31324151974072E+0001 -2.31430201845861E+0001 -2.31535646219029E+0001 -2.31640483291109E+0001 +-2.31744711257790E+0001 -2.31848328312916E+0001 -2.31951332648491E+0001 -2.32053722454668E+0001 -2.32155495919761E+0001 +-2.32256651230237E+0001 -2.32357186570721E+0001 -2.32457100123993E+0001 -2.32556390070987E+0001 -2.32655054590795E+0001 +-2.32753091860664E+0001 -2.32850500055995E+0001 -2.32947277350349E+0001 -2.33043421915440E+0001 -2.33138931921137E+0001 +-2.33233805535468E+0001 -2.33328040924614E+0001 -2.33421636252913E+0001 -2.33514589682858E+0001 -2.33606899375101E+0001 +-2.33698563488445E+0001 -2.33789580179853E+0001 -2.33879947604441E+0001 -2.33969663915485E+0001 -2.34058727264412E+0001 +-2.34147135800808E+0001 -2.34234887672414E+0001 -2.34321981025127E+0001 -2.34408414003001E+0001 -2.34494184748244E+0001 +-2.34579291401221E+0001 -2.34663732100455E+0001 -2.34747504982622E+0001 -2.34830608182554E+0001 -2.34913039833243E+0001 +-2.34994798065831E+0001 -2.35075881009621E+0001 -2.35156286792071E+0001 -2.35236013538793E+0001 -2.35315059373557E+0001 +-2.35393422418289E+0001 -2.35471100793069E+0001 -2.35548092616137E+0001 -2.35624396003886E+0001 -2.35700009070867E+0001 +-2.35774929929783E+0001 -2.35849156691501E+0001 -2.35922687465034E+0001 -2.35995520357560E+0001 -2.36067653474409E+0001 +-2.36139084919068E+0001 -2.36209812793180E+0001 -2.36279835196544E+0001 -2.36349150227116E+0001 -2.36417755981008E+0001 +-2.36485650552486E+0001 -2.36552832033975E+0001 -2.36619298516057E+0001 -2.36685048087467E+0001 -2.36750078835098E+0001 +-2.36814388843999E+0001 -2.36877976197375E+0001 -2.36940838976589E+0001 -2.37002975261157E+0001 -2.37064383128755E+0001 +-2.37125060655213E+0001 -2.37185005914516E+0001 -2.37244216978811E+0001 -2.37302691918395E+0001 -2.37360428801722E+0001 +-2.37417425695407E+0001 -2.37473680664216E+0001 -2.37529191771077E+0001 -2.37583957077069E+0001 -2.37637974641430E+0001 +-2.37691242521553E+0001 -2.37743758772991E+0001 -2.37795521449448E+0001 -2.37846528602788E+0001 -2.37896778283031E+0001 +-2.37946268538352E+0001 -2.37994997415084E+0001 -2.38042962957717E+0001 -2.38090163208894E+0001 -2.38136596209417E+0001 +-2.38182259998246E+0001 -2.38227152612495E+0001 -2.38271272087434E+0001 -2.38314616456492E+0001 -2.38357183751253E+0001 +-2.38398972001456E+0001 -2.38439979235000E+0001 -2.38480203477938E+0001 -2.38519642754479E+0001 -2.38558295086990E+0001 +-2.38596158495996E+0001 -2.38633231000175E+0001 -2.38669510616365E+0001 -2.38704995359558E+0001 -2.38739683242902E+0001 +-2.38773572277704E+0001 -2.38806660473430E+0001 -2.38838945837693E+0001 -2.38870426376273E+0001 -2.38901100093101E+0001 +-2.38930964990267E+0001 -2.38960019068015E+0001 -2.38988260324749E+0001 -2.39015686757028E+0001 -2.39042296359567E+0001 +-2.39068087125237E+0001 -2.39093057045066E+0001 -2.39117204108244E+0001 -2.39140526302108E+0001 -2.39163021612161E+0001 +-2.39184688022057E+0001 -2.39205523513609E+0001 -2.39225526066783E+0001 -2.39244693659710E+0001 -2.39263024268669E+0001 +-2.39280515868097E+0001 -2.39297166430596E+0001 -2.39312973926911E+0001 -2.39327936325957E+0001 -2.39342051594798E+0001 +-2.39355317698656E+0001 -2.39367732600915E+0001 -2.39379294263107E+0001 -2.39390000644925E+0001 -2.39399849704223E+0001 +-2.39408839397005E+0001 -2.39416967677431E+0001 -2.39424232497829E+0001 -2.39430631808672E+0001 -2.39436163558594E+0001 +-2.39440825694384E+0001 -2.39444616160994E+0001 -2.39447532901526E+0001 -2.39449573857243E+0001 -2.39450736967561E+0001 +-2.39451020170055E+0001 -2.39450421400460E+0001 -2.39448938592662E+0001 -2.39446569678709E+0001 -2.39443312588802E+0001 +-2.39439165251300E+0001 -2.39434125592721E+0001 -2.39428191537739E+0001 -2.39421361009182E+0001 -2.39413631928039E+0001 +-2.39405002213454E+0001 -2.39395469782725E+0001 -2.39385032551314E+0001 -2.39373688432836E+0001 -2.39361435339059E+0001 +-2.39348271179916E+0001 -2.39334193863491E+0001 -2.39319201296028E+0001 -2.39303291381924E+0001 -2.39286462023740E+0001 +-2.39268711122187E+0001 -2.39250036576135E+0001 -2.39230436282616E+0001 -2.39209908136811E+0001 -2.39188450032065E+0001 +-2.39166059859873E+0001 -2.39142735509895E+0001 -2.39118474869941E+0001 -2.39093275825982E+0001 -2.39067136262145E+0001 +-2.39040054060716E+0001 -2.39012027102134E+0001 -2.38983053264999E+0001 -2.38953130426067E+0001 -2.38922256460246E+0001 +-2.38890429240611E+0001 -2.38857646638385E+0001 -2.38823906522955E+0001 -2.38789206761859E+0001 -2.38753545220798E+0001 +-2.38716919763624E+0001 -2.38679328252351E+0001 -2.38640768547150E+0001 -2.38601238506346E+0001 -2.38560735986421E+0001 +-2.38519258842018E+0001 -2.38476804925937E+0001 -2.38433372089129E+0001 -2.38388958180709E+0001 -2.38343561047946E+0001 +-2.38297178536266E+0001 -2.38249808489255E+0001 -2.38201448748654E+0001 -2.38152097154359E+0001 -2.38101751544430E+0001 +-2.38050409755074E+0001 -2.37998069620666E+0001 -2.37944728973728E+0001 -2.37890385644951E+0001 -2.37835037463173E+0001 +-2.37778682255395E+0001 -2.37721317846771E+0001 -2.37662942060615E+0001 -2.37603552718400E+0001 -2.37543147639751E+0001 +-2.37481724642456E+0001 -2.37419281542456E+0001 -2.37355816153852E+0001 -2.37291326288901E+0001 -2.37225809758016E+0001 +-2.37159264369772E+0001 -2.37091687930895E+0001 -2.37023078246273E+0001 -2.36953433118950E+0001 -2.36882750350127E+0001 +-2.36811027739162E+0001 -2.36738263083571E+0001 -2.36664454179027E+0001 -2.36589598819362E+0001 -2.36513694796561E+0001 +-2.36436739900770E+0001 -2.36358731920295E+0001 -2.36279668641595E+0001 -2.36199547849282E+0001 -2.36118367326136E+0001 +-2.36036124853089E+0001 -2.35952818209228E+0001 -2.35868445171802E+0001 -2.35783003516215E+0001 -2.35696491016027E+0001 +-2.35608905442962E+0001 -2.35520244566891E+0001 -2.35430506155851E+0001 -2.35339687976033E+0001 -2.35247787791786E+0001 +-2.35154803365617E+0001 -2.35060732458188E+0001 -2.34965572828322E+0001 -2.34869322232997E+0001 -2.34771978427350E+0001 +-2.34673539164675E+0001 -2.34574002196421E+0001 -2.34473365272200E+0001 -2.34371626139775E+0001 -2.34268782545072E+0001 +-2.34164832232169E+0001 -2.34059772943309E+0001 -2.33953602418886E+0001 -2.33846318397455E+0001 -2.33737918615726E+0001 +-2.33628400808565E+0001 -2.33517762709006E+0001 -2.33406002048225E+0001 -2.33293116555568E+0001 -2.33179103958530E+0001 +-2.33063961982773E+0001 -2.32947688352107E+0001 -2.32830280788504E+0001 -2.32711737012095E+0001 -2.32592054741167E+0001 +-2.32471231692161E+0001 -2.32349265579683E+0001 -2.32226154116489E+0001 -2.32101895013499E+0001 -2.31976485979785E+0001 +-2.31849924722582E+0001 -2.31722208947280E+0001 -2.31593336357424E+0001 -2.31463304654720E+0001 -2.31332111539034E+0001 +-2.31199754708381E+0001 -2.31066231858945E+0001 -2.30931540685057E+0001 -2.30795678879213E+0001 -2.30658644132064E+0001 +-2.30520434132418E+0001 -2.30381046567240E+0001 -2.30240479121657E+0001 -2.30098729478948E+0001 -2.29955795320554E+0001 +-2.29811674326073E+0001 -2.29666364173256E+0001 -2.29519862538020E+0001 -2.29372167094432E+0001 -2.29223275514721E+0001 +-2.29073185469272E+0001 -2.28921894626629E+0001 -2.28769400653495E+0001 -2.28615701214724E+0001 -2.28460793973335E+0001 +-2.28304676590503E+0001 -2.28147346725558E+0001 -2.27988802035991E+0001 -2.27829040177450E+0001 -2.27668058803738E+0001 +-2.27505855566819E+0001 -2.27342428116816E+0001 -2.27177774102001E+0001 -2.27011891168818E+0001 -2.26844776961857E+0001 +-2.26676429123869E+0001 -2.26506845295766E+0001 -2.26336023116612E+0001 -2.26163960223636E+0001 -2.25990654252216E+0001 +-2.25816102835900E+0001 -2.25640303606381E+0001 -2.25463254193514E+0001 -2.25284952225318E+0001 -2.25105395327961E+0001 +-2.24924581125777E+0001 -2.24742507241250E+0001 -2.24559171295026E+0001 -2.24374570905909E+0001 -2.24188703690861E+0001 +-2.24001567265000E+0001 -2.23813159241603E+0001 -2.23623477232104E+0001 -2.23432518846097E+0001 -2.23240281691332E+0001 +-2.23046763373713E+0001 -2.22851961497315E+0001 -2.22655873664355E+0001 -2.22458497475218E+0001 -2.22259830528443E+0001 +-2.22059870420727E+0001 -2.21858614746927E+0001 -2.21656061100056E+0001 -2.21452207071285E+0001 -2.21247050249945E+0001 +-2.21040588223520E+0001 -2.20832818577659E+0001 -2.20623738896162E+0001 -2.20413346760994E+0001 -2.20201639752269E+0001 +-2.19988615448265E+0001 -2.19774271425421E+0001 -2.19558605258323E+0001 -2.19341614519727E+0001 -2.19123296780541E+0001 +-2.18903649609834E+0001 -2.18682670574825E+0001 -2.18460357240898E+0001 -2.18236707171598E+0001 -2.18011717928617E+0001 +-2.17785387071818E+0001 -2.17557712159210E+0001 -2.17328690746970E+0001 -2.17098320389424E+0001 -2.16866598639065E+0001 +-2.16633523046538E+0001 -2.16399091160646E+0001 -2.16163300528352E+0001 -2.15926148694776E+0001 -2.15687633203199E+0001 +-2.15447751595055E+0001 -2.15206501409941E+0001 -2.14963880185608E+0001 -2.14719885457969E+0001 -2.14474514761087E+0001 +-2.14227765627195E+0001 -2.13979635586674E+0001 -2.13730122168068E+0001 -2.13479222898079E+0001 -2.13226935301565E+0001 +-2.12973256901544E+0001 -2.12718185219188E+0001 -2.12461717773833E+0001 -2.12203852082968E+0001 -2.11944585662244E+0001 +-2.11683916025472E+0001 -2.11421840684610E+0001 -2.11158357149787E+0001 -2.10893462929281E+0001 -2.10627155529536E+0001 +-2.10359432455147E+0001 -2.10090291208872E+0001 -2.09819729291623E+0001 -2.09547744202473E+0001 -2.09274333438652E+0001 +-2.08999494495550E+0001 -2.08723224866710E+0001 -2.08445522043841E+0001 -2.08166383516804E+0001 -2.07885806773620E+0001 +-2.07603789300468E+0001 -2.07320328581686E+0001 -2.07035422099769E+0001 -2.06749067335371E+0001 -2.06461261767304E+0001 +-2.06172002872537E+0001 -2.05881288126196E+0001 -2.05589115001574E+0001 -2.05295480970108E+0001 -2.05000383501405E+0001 +-2.04703820063223E+0001 -2.04405788121486E+0001 -2.04106285140264E+0001 -2.03805308581798E+0001 -2.03502855906480E+0001 +-2.03198924572862E+0001 -2.02893512037652E+0001 -2.02586615755720E+0001 -2.02278233180091E+0001 -2.01968361761955E+0001 +-2.01656998950647E+0001 -2.01344142193672E+0001 -2.01029788936688E+0001 -2.00713936623515E+0001 -2.00396582696127E+0001 +-2.00077724594660E+0001 -1.99757359757400E+0001 -1.99435485620808E+0001 -1.99112099619480E+0001 -1.98787199186195E+0001 +-1.98460781751871E+0001 -1.98132844745592E+0001 -1.97803385594605E+0001 -1.97472401724301E+0001 -1.97139890558251E+0001 +-1.96805849518157E+0001 -1.96470276023904E+0001 -1.96133167493522E+0001 -1.95794521343203E+0001 -1.95454334987296E+0001 +-1.95112605838310E+0001 -1.94769331306909E+0001 -1.94424508801922E+0001 -1.94078135730329E+0001 -1.93730209497271E+0001 +-1.93380727506046E+0001 -1.93029687158114E+0001 -1.92677085853095E+0001 -1.92322920988756E+0001 -1.91967189961035E+0001 +-1.91609890164023E+0001 -1.91251018989963E+0001 -1.90890573829272E+0001 -1.90528552070512E+0001 -1.90164951100408E+0001 +-1.89799768303840E+0001 -1.89433001063853E+0001 -1.89064646761644E+0001 -1.88694702776570E+0001 -1.88323166486157E+0001 +-1.87950035266065E+0001 -1.87575306490139E+0001 -1.87198977530361E+0001 -1.86821045756888E+0001 -1.86441508538023E+0001 +-1.86060363240233E+0001 -1.85677607228149E+0001 -1.85293237864551E+0001 -1.84907252510372E+0001 -1.84519648524727E+0001 +-1.84130423264864E+0001 -1.83739574086205E+0001 -1.83347098342322E+0001 -1.82952993384949E+0001 -1.82557256563980E+0001 +-1.82159885227461E+0001 -1.81760876721607E+0001 -1.81360228390788E+0001 -1.80957937577518E+0001 -1.80554001622490E+0001 +-1.80148417864546E+0001 -1.79741183640681E+0001 -1.79332296286061E+0001 -1.78921753134000E+0001 -1.78509551515976E+0001 +-1.78095688761628E+0001 -1.77680162198742E+0001 -1.77262969153278E+0001 -1.76844106949331E+0001 -1.76423572909191E+0001 +-1.76001364353265E+0001 -1.75577478600153E+0001 -1.75151912966592E+0001 -1.74724664767487E+0001 -1.74295731315895E+0001 +-1.73865109923040E+0001 -1.73432797898299E+0001 -1.72998792549208E+0001 -1.72563091181462E+0001 -1.72125691098915E+0001 +-1.71686589603576E+0001 -1.71245783995616E+0001 -1.70803271573370E+0001 -1.70359049633319E+0001 -1.69913115470110E+0001 +-1.69465466376550E+0001 -1.69016099643600E+0001 -1.68565012560382E+0001 -1.68112202414175E+0001 -1.67657666490418E+0001 +-1.67201402072710E+0001 -1.66743406442802E+0001 -1.66283676880612E+0001 -1.65822210664210E+0001 -1.65359005069831E+0001 +-1.64894057371862E+0001 -1.64427364842852E+0001 -1.63958924753506E+0001 -1.63488734372695E+0001 -1.63016790967436E+0001 +-1.62543091802916E+0001 -1.62067634142470E+0001 -1.61590415247604E+0001 -1.61111432377982E+0001 -1.60630682791402E+0001 +-1.60148163743854E+0001 -1.59663872489468E+0001 -1.59177806280536E+0001 -1.58689962367514E+0001 -1.58200337999001E+0001 +-1.57708930421774E+0001 -1.57215736880759E+0001 -1.56720754619036E+0001 -1.56223980877855E+0001 -1.55725412896617E+0001 +-1.55225047912883E+0001 -1.54722883162371E+0001 -1.54218915878959E+0001 -1.53713143294689E+0001 -1.53205562639750E+0001 +-1.52696171142497E+0001 -1.52184966029453E+0001 -1.51671944525276E+0001 -1.51157103852808E+0001 -1.50640441233026E+0001 +-1.50121953885086E+0001 -1.49601639026291E+0001 -1.49079493872104E+0001 -1.48555515636151E+0001 -1.48029701530215E+0001 +-1.47502048764231E+0001 -1.46972554546307E+0001 -1.46441216082687E+0001 -1.45908030577802E+0001 -1.45372995234222E+0001 +-1.44836107252679E+0001 -1.44297363832067E+0001 -1.43756762169437E+0001 -1.43214299459996E+0001 -1.42669972897119E+0001 +-1.42123779672329E+0001 -1.41575716975312E+0001 -1.41025781993910E+0001 -1.40473971914134E+0001 -1.39920283920137E+0001 +-1.39364715194244E+0001 -1.38807262916936E+0001 -1.38247924266847E+0001 -1.37686696420778E+0001 -1.37123576553681E+0001 +-1.36558561838667E+0001 -1.35991649447019E+0001 -1.35422836548157E+0001 -1.34852120309676E+0001 -1.34279497897330E+0001 +-1.33704966475018E+0001 -1.33128523204814E+0001 -1.32550165246934E+0001 -1.31969889759770E+0001 -1.31387693899864E+0001 +-1.30803574821911E+0001 -1.30217529678775E+0001 -1.29629555621479E+0001 -1.29039649799190E+0001 -1.28447809359252E+0001 +-1.27854031447159E+0001 -1.27258313206562E+0001 -1.26660651779277E+0001 -1.26061044305272E+0001 -1.25459487922676E+0001 +-1.24855979767785E+0001 -1.24250516975037E+0001 -1.23643096677046E+0001 -1.23033716004572E+0001 -1.22422372086537E+0001 +-1.21809062050028E+0001 -1.21193783020285E+0001 -1.20576532120708E+0001 -1.19957306472856E+0001 -1.19336103196449E+0001 +-1.18712919409356E+0001 -1.18087752227618E+0001 -1.17460598765428E+0001 -1.16831456135134E+0001 -1.16200321447258E+0001 +-1.15567191810462E+0001 -1.14932064331578E+0001 -1.14294936115588E+0001 -1.13655804265649E+0001 -1.13014665883060E+0001 +-1.12371518067286E+0001 -1.11726357915952E+0001 -1.11079182524838E+0001 -1.10429988987884E+0001 -1.09778774397191E+0001 +-1.09125535843020E+0001 -1.08470270413784E+0001 -1.07812975196059E+0001 -1.07153647274578E+0001 -1.06492283732245E+0001 +-1.05828881650102E+0001 -1.05163438107367E+0001 -1.04495950181403E+0001 -1.03826414947743E+0001 -1.03154829480076E+0001 +-1.02481190850248E+0001 -1.01805496128265E+0001 -1.01127742382293E+0001 -1.00447926678650E+0001 -9.97660460818179E+0000 +-9.90820976544433E+0000 -9.83960784573219E+0000 -9.77079855494162E+0000 -9.70178159878424E+0000 -9.63255668278725E+0000 +-9.56312351229485E+0000 -9.49348179246567E+0000 -9.42363122827555E+0000 -9.35357152451570E+0000 -9.28330238579315E+0000 +-9.21282351653122E+0000 -9.14213462096791E+0000 -9.07123540315797E+0000 -9.00012556697288E+0000 -8.92880481609905E+0000 +-8.85727285403823E+0000 -8.78552938410871E+0000 -8.71357410944552E+0000 -8.64140673299835E+0000 -8.56902695753297E+0000 +-8.49643448563097E+0000 -8.42362901969091E+0000 -8.35061026192557E+0000 -8.27737791436516E+0000 -8.20393167885459E+0000 +-8.13027125705594E+0000 -8.05639635044531E+0000 -7.98230666031691E+0000 -7.90800188777894E+0000 -7.83348173375657E+0000 +-7.75874589899058E+0000 -7.68379408403734E+0000 -7.60862598926997E+0000 -7.53324131487648E+0000 -7.45763976086141E+0000 +-7.38182102704468E+0000 -7.30578481306316E+0000 -7.22953081836840E+0000 -7.15305874222827E+0000 -7.07636828372620E+0000 +-6.99945914176305E+0000 -6.92233101505349E+0000 -6.84498360212933E+0000 -6.76741660133780E+0000 -6.68962971084238E+0000 +-6.61162262862240E+0000 -6.53339505247209E+0000 -6.45494668000401E+0000 -6.37627720864361E+0000 -6.29738633563397E+0000 +-6.21827375803423E+0000 -6.13893917271935E+0000 -6.05938227637807E+0000 -5.97960276551862E+0000 -5.89960033646207E+0000 +-5.81937468534716E+0000 -5.73892550812798E+0000 -5.65825250057401E+0000 -5.57735535827146E+0000 -5.49623377662215E+0000 +-5.41488745084371E+0000 -5.33331607596983E+0000 -5.25151934684936E+0000 -5.16949695814833E+0000 -5.08724860434768E+0000 +-5.00477397974441E+0000 -4.92207277845228E+0000 -4.83914469439924E+0000 -4.75598942133115E+0000 -4.67260665280810E+0000 +-4.58899608220690E+0000 -4.50515740271999E+0000 -4.42109030735651E+0000 -4.33679448893986E+0000 -4.25226964011108E+0000 +-4.16751545332613E+0000 -4.08253162085703E+0000 -3.99731783479160E+0000 -3.91187378703421E+0000 -3.82619916930389E+0000 +-3.74029367313665E+0000 -3.65415698988477E+0000 -3.56778881071477E+0000 -3.48118882661061E+0000 -3.39435672837135E+0000 +-3.30729220661306E+0000 -3.21999495176465E+0000 -3.13246465407542E+0000 -3.04470100360777E+0000 -2.95670369023992E+0000 +-2.86847240366706E+0000 -2.78000683339928E+0000 -2.69130666876390E+0000 -2.60237159890312E+0000 -2.51320131277521E+0000 +-2.42379549915404E+0000 -2.33415384663067E+0000 -2.24427604361063E+0000 -2.15416177831571E+0000 -2.06381073878424E+0000 +-1.97322261286990E+0000 -1.88239708824244E+0000 -1.79133385238742E+0000 -1.70003259260602E+0000 -1.60849299601682E+0000 +-1.51671474955174E+0000 -1.42469753996079E+0000 -1.33244105380891E+0000 -1.23994497747799E+0000 -1.14720899716372E+0000 +-1.05423279887964E+0000 -9.61016068454910E-0001 -8.67558491533373E-0001 -7.73859753576517E-0001 -6.79919539860293E-0001 +-5.85737535477620E-0001 -4.91313425336102E-0001 -3.96646894160767E-0001 -3.01737626491786E-0001 -2.06585306684474E-0001 +-1.11189618911339E-0001 -1.55502471604904E-0002 8.03331247636834E-0002 1.76460813243239E-0001 2.72833134840766E-0001 + 3.69450406305987E-0001 4.66312944570291E-0001 5.63421066751062E-0001 6.60775090149173E-0001 7.58375332248306E-0001 + 8.56222110718818E-0001 9.54315743412280E-0001 1.05265654836649E+0000 1.15124484380271E+0000 1.25008094812529E+0000 + 1.34916517992451E+0000 1.44849785797282E+0000 1.54807930122934E+0000 1.64790982883369E+0000 1.74798976011243E+0000 + 1.84831941457469E+0000 1.94889911191581E+0000 2.04972917201189E+0000 2.15080991492619E+0000 2.25214166090382E+0000 + 2.35372473037523E+0000 2.45555944395460E+0000 2.55764612244093E+0000 2.65998508681582E+0000 2.76257665824596E+0000 + 2.86542115808174E+0000 2.96851890785865E+0000 3.07187022929429E+0000 3.17547544429181E+0000 3.27933487493851E+0000 + 3.38344884350522E+0000 3.48781767244668E+0000 3.59244168440227E+0000 3.69732120219487E+0000 3.80245654883220E+0000 + 3.90784804750569E+0000 4.01349602159053E+0000 4.11940079464603E+0000 4.22556269041615E+0000 4.33198203282882E+0000 + 4.43865914599564E+0000 4.54559435421152E+0000 4.65278798195777E+0000 4.76024035389810E+0000 4.86795179487945E+0000 + 4.97592262993567E+0000 5.08415318428251E+0000 5.19264378331945E+0000 5.30139475263195E+0000 5.41040641798736E+0000 + 5.51967910533995E+0000 5.62921314082496E+0000 5.73900885076318E+0000 5.84906656165958E+0000 5.95938660020374E+0000 + 6.06996929326806E+0000 6.18081496790910E+0000 6.29192395136897E+0000 6.40329657107213E+0000 6.51493315462858E+0000 + 6.62683402983021E+0000 6.73899952465581E+0000 6.85142996726609E+0000 6.96412568600772E+0000 7.07708700940930E+0000 + 7.19031426618403E+0000 7.30380778523158E+0000 7.41756789563215E+0000 7.53159492665236E+0000 7.64588920774258E+0000 + 7.76045106853644E+0000 7.87528083885218E+0000 7.99037884869131E+0000 8.10574542824179E+0000 8.22138090787212E+0000 + 8.33728561813859E+0000 8.45345988977851E+0000 8.56990405371471E+0000 8.68661844105418E+0000 8.80360338308765E+0000 + 8.92085921129001E+0000 9.03838625731942E+0000 9.15618485302002E+0000 9.27425533041833E+0000 9.39259802172501E+0000 + 9.51121325933582E+0000 9.63010137583069E+0000 9.74926270397100E+0000 9.86869757670638E+0000 9.98840632716610E+0000 + 1.01083892886676E+0001 1.02286467947101E+0001 1.03491791789761E+0001 1.04699867753347E+0001 1.05910699178375E+0001 + 1.07124289407202E+0001 1.08340641784025E+0001 1.09559759654885E+0001 1.10781646367672E+0001 1.12006305272102E+0001 + 1.13233739719739E+0001 1.14463953063977E+0001 1.15696948660074E+0001 1.16932729865097E+0001 1.18171300037997E+0001 + 1.19412662539521E+0001 1.20656820732283E+0001 1.21903777980724E+0001 1.23153537651137E+0001 1.24406103111650E+0001 + 1.25661477732237E+0001 1.26919664884699E+0001 1.28180667942697E+0001 1.29444490281716E+0001 1.30711135279084E+0001 + 1.31980606313986E+0001 1.33252906767434E+0001 1.34528040022264E+0001 1.35806009463185E+0001 1.37086818476741E+0001 + 1.38370470451300E+0001 1.39656968777076E+0001 1.40946316846134E+0001 1.42238518052354E+0001 1.43533575791502E+0001 + 1.44831493461129E+0001 1.46132274460678E+0001 1.47435922191407E+0001 1.48742440056407E+0001 1.50051831460627E+0001 + 1.51364099810839E+0001 1.52679248515692E+0001 1.53997280985622E+0001 1.55318200632955E+0001 1.56642010871823E+0001 + 1.57968715118213E+0001 1.59298316789963E+0001 1.60630819306725E+0001 1.61966226090017E+0001 1.63304540563186E+0001 + 1.64645766151425E+0001 1.65989906281752E+0001 1.67336964383048E+0001 1.68686943886019E+0001 1.70039848223228E+0001 + 1.71395680829055E+0001 1.72754445139735E+0001 1.74116144593340E+0001 1.75480782629793E+0001 1.76848362690844E+0001 + 1.78218888220085E+0001 1.79592362662956E+0001 1.80968789466738E+0001 1.82348172080542E+0001 1.83730513955325E+0001 + 1.85115818543886E+0001 1.86504089300879E+0001 1.87895329682760E+0001 1.89289543147861E+0001 1.90686733156358E+0001 + 1.92086903170225E+0001 1.93490056653322E+0001 1.94896197071325E+0001 1.96305327891769E+0001 1.97717452584002E+0001 + 1.99132574619234E+0001 2.00550697470517E+0001 2.01971824612733E+0001 2.03395959522600E+0001 2.04823105678697E+0001 + 2.06253266561430E+0001 2.07686445653048E+0001 2.09122646437627E+0001 2.10561872401117E+0001 2.12004127031273E+0001 + 2.13449413817707E+0001 2.14897736251878E+0001 2.16349097827069E+0001 2.17803502038423E+0001 2.19260952382906E+0001 + 2.20721452359330E+0001 2.22185005468350E+0001 2.23651615212466E+0001 2.25121285096006E+0001 2.26594018625156E+0001 + 2.28069819307921E+0001 2.29548690654165E+0001 2.31030636175583E+0001 2.32515659385717E+0001 2.34003763799933E+0001 + 2.35494952935464E+0001 2.36989230311369E+0001 2.38486599448543E+0001 2.39987063869735E+0001 2.41490627099520E+0001 + 2.42997292664313E+0001 2.44507064092386E+0001 2.46019944913846E+0001 2.47535938660631E+0001 2.49055048866526E+0001 + 2.50577279067152E+0001 2.52102632799988E+0001 2.53631113604315E+0001 2.55162725021310E+0001 2.56697470593931E+0001 + 2.58235353867030E+0001 2.59776378387260E+0001 2.61320547703135E+0001 2.62867865365010E+0001 2.64418334925062E+0001 + 2.65971959937328E+0001 2.67528743957678E+0001 2.69088690543831E+0001 2.70651803255328E+0001 2.72218085653567E+0001 + 2.73787541301781E+0001 2.75360173765034E+0001 2.76935986610256E+0001 2.78514983406194E+0001 2.80097167723438E+0001 + 2.81682543134434E+0001 2.83271113213455E+0001 2.84862881536606E+0001 2.86457851681862E+0001 2.88056027229013E+0001 + 2.89657411759690E+0001 2.91262008857384E+0001 2.92869822107405E+0001 2.94480855096922E+0001 2.96095111414929E+0001 + 2.97712594652266E+0001 2.99333308401619E+0001 3.00957256257502E+0001 3.02584441816289E+0001 3.04214868676167E+0001 + 3.05848540437196E+0001 3.07485460701255E+0001 3.09125633072067E+0001 3.10769061155183E+0001 3.12415748558037E+0001 + 3.14065698889854E+0001 3.15718915761722E+0001 3.17375402786574E+0001 3.19035163579179E+0001 3.20698201756140E+0001 + 3.22364520935907E+0001 3.24034124738764E+0001 3.25707016786851E+0001 3.27383200704126E+0001 3.29062680116403E+0001 + 3.30745458651336E+0001 3.32431539938420E+0001 3.34120927608978E+0001 3.35813625296187E+0001 3.37509636635059E+0001 + 3.39208965262446E+0001 3.40911614817051E+0001 3.42617588939393E+0001 3.44326891271853E+0001 3.46039525458650E+0001 + 3.47755495145839E+0001 3.49474803981307E+0001 3.51197455614806E+0001 3.52923453697895E+0001 3.54652801884008E+0001 + 3.56385503828396E+0001 3.58121563188156E+0001 3.59860983622229E+0001 3.61603768791392E+0001 3.63349922358266E+0001 + 3.65099447987318E+0001 3.66852349344845E+0001 3.68608630098970E+0001 3.70368293919705E+0001 3.72131344478862E+0001 + 3.73897785450094E+0001 3.75667620508907E+0001 3.77440853332646E+0001 3.79217487600504E+0001 3.80997526993492E+0001 + 3.82780975194482E+0001 3.84567835888179E+0001 3.86358112761141E+0001 3.88151809501719E+0001 3.89948929800175E+0001 + 3.91749477348567E+0001 3.93553455840793E+0001 3.95360868972602E+0001 3.97171720441593E+0001 3.98986013947192E+0001 + 4.00803753190658E+0001 4.02624941875115E+0001 4.04449583705505E+0001 4.06277682388618E+0001 4.08109241633092E+0001 + 4.09944265149388E+0001 4.11782756649836E+0001 4.13624719848563E+0001 4.15470158461585E+0001 4.17319076206722E+0001 + 4.19171476803649E+0001 4.21027363973876E+0001 4.22886741440784E+0001 4.24749612929536E+0001 4.26615982167177E+0001 + 4.28485852882591E+0001 4.30359228806487E+0001 4.32236113671420E+0001 4.34116511211796E+0001 4.36000425163838E+0001 + 4.37887859265647E+0001 4.39778817257111E+0001 4.41673302880022E+0001 4.43571319877947E+0001 4.45472871996349E+0001 + 4.47377962982496E+0001 4.49286596585516E+0001 4.51198776556366E+0001 4.53114506647848E+0001 4.55033790614602E+0001 + 4.56956632213105E+0001 4.58883035201688E+0001 4.60813003340513E+0001 4.62746540391577E+0001 4.64683650118736E+0001 + 4.66624336287668E+0001 4.68568602665887E+0001 4.70516453022765E+0001 4.72467891129518E+0001 4.74422920759180E+0001 + 4.76381545686631E+0001 4.78343769688622E+0001 4.80309596543698E+0001 4.82279030032264E+0001 4.84252073936582E+0001 + 4.86228732040736E+0001 4.88209008130643E+0001 4.90192905994086E+0001 4.92180429420673E+0001 4.94171582201843E+0001 + 4.96166368130903E+0001 4.98164791002960E+0001 5.00166854615004E+0001 5.02172562765845E+0001 5.04181919256116E+0001 + 5.06194927888337E+0001 5.08211592466814E+0001 5.10231916797729E+0001 5.12255904689114E+0001 5.14283559950791E+0001 + 5.16314886394471E+0001 5.18349887833683E+0001 5.20388568083808E+0001 5.22430930962055E+0001 5.24476980287486E+0001 + 5.26526719880985E+0001 5.28580153565290E+0001 5.30637285164994E+0001 5.32698118506487E+0001 5.34762657418050E+0001 + 5.36830905729771E+0001 5.38902867273591E+0001 5.40978545883272E+0001 5.43057945394457E+0001 5.45141069644583E+0001 + 5.47227922472966E+0001 5.49318507720741E+0001 5.51412829230885E+0001 5.53510890848220E+0001 5.55612696419407E+0001 + 5.57718249792938E+0001 5.59827554819167E+0001 5.61940615350268E+0001 5.64057435240270E+0001 5.66178018345026E+0001 + 5.68302368522259E+0001 5.70430489631485E+0001 5.72562385534097E+0001 5.74698060093333E+0001 5.76837517174235E+0001 + 5.78980760643726E+0001 5.81127794370541E+0001 5.83278622225262E+0001 5.85433248080317E+0001 5.87591675809990E+0001 + 5.89753909290362E+0001 5.91919952399394E+0001 5.94089809016864E+0001 5.96263483024409E+0001 5.98440978305489E+0001 + 6.00622298745407E+0001 6.02807448231320E+0001 6.04996430652213E+0001 6.07189249898934E+0001 6.09385909864118E+0001 + 6.11586414442295E+0001 6.13790767529817E+0001 6.15998973024853E+0001 6.18211034827459E+0001 6.20426956839497E+0001 + 6.22646742964671E+0001 6.24870397108548E+0001 6.27097923178503E+0001 6.29329325083777E+0001 6.31564606735442E+0001 + 6.33803772046408E+0001 6.36046824931423E+0001 6.38293769307102E+0001 6.40544609091853E+0001 6.42799348205954E+0001 + 6.45057990571545E+0001 6.47320540112546E+0001 6.49587000754768E+0001 6.51857376425855E+0001 6.54131671055266E+0001 + 6.56409888574331E+0001 6.58692032916192E+0001 6.60978108015861E+0001 6.63268117810167E+0001 6.65562066237776E+0001 + 6.67859957239230E+0001 6.70161794756873E+0001 6.72467582734894E+0001 6.74777325119344E+0001 6.77091025858099E+0001 + 6.79408688900880E+0001 6.81730318199238E+0001 6.84055917706587E+0001 6.86385491378146E+0001 6.88719043171009E+0001 + 6.91056577044105E+0001 6.93398096958181E+0001 6.95743606875844E+0001 6.98093110761520E+0001 7.00446612581513E+0001 + 7.02804116303932E+0001 7.05165625898744E+0001 7.07531145337748E+0001 7.09900678594586E+0001 7.12274229644750E+0001 + 7.14651802465564E+0001 7.17033401036169E+0001 7.19419029337587E+0001 7.21808691352676E+0001 7.24202391066092E+0001 + 7.26600132464373E+0001 7.29001919535881E+0001 7.31407756270814E+0001 7.33817646661241E+0001 7.36231594701044E+0001 + 7.38649604385919E+0001 7.41071679713459E+0001 7.43497824683072E+0001 7.45928043295989E+0001 7.48362339555310E+0001 + 7.50800717465954E+0001 7.53243181034700E+0001 7.55689734270131E+0001 7.58140381182729E+0001 7.60595125784776E+0001 + 7.63053972090365E+0001 7.65516924115518E+0001 7.67983985878004E+0001 7.70455161397485E+0001 7.72930454695465E+0001 + 7.75409869795253E+0001 7.77893410722040E+0001 7.80381081502806E+0001 7.82872886166447E+0001 7.85368828743608E+0001 + 7.87868913266848E+0001 7.90373143770535E+0001 7.92881524290879E+0001 7.95394058865932E+0001 7.97910751535583E+0001 + 8.00431606341563E+0001 8.02956627327458E+0001 8.05485818538668E+0001 8.08019184022464E+0001 8.10556727827911E+0001 + 8.13098454005972E+0001 8.15644366609408E+0001 8.18194469692826E+0001 8.20748767312693E+0001 8.23307263527313E+0001 + 8.25869962396800E+0001 8.28436867983137E+0001 8.31007984350135E+0001 8.33583315563474E+0001 8.36162865690630E+0001 + 8.38746638800922E+0001 8.41334638965563E+0001 8.43926870257565E+0001 8.46523336751752E+0001 8.49124042524863E+0001 + 8.51728991655400E+0001 8.54338188223765E+0001 8.56951636312160E+0001 8.59569340004682E+0001 8.62191303387172E+0001 + 8.64817530547407E+0001 8.67448025574949E+0001 8.70082792561243E+0001 8.72721835599523E+0001 8.75365158784889E+0001 + 8.78012766214297E+0001 8.80664661986521E+0001 8.83320850202163E+0001 8.85981334963708E+0001 8.88646120375452E+0001 + 8.91315210543544E+0001 8.93988609575936E+0001 8.96666321582479E+0001 8.99348350674827E+0001 9.02034700966478E+0001 + 9.04725376572769E+0001 9.07420381610891E+0001 9.10119720199873E+0001 9.12823396460572E+0001 9.15531414515681E+0001 + 9.18243778489750E+0001 9.20960492509175E+0001 9.23681560702162E+0001 9.26406987198789E+0001 9.29136776130945E+0001 + 9.31870931632384E+0001 9.34609457838715E+0001 9.37352358887319E+0001 9.40099638917472E+0001 9.42851302070312E+0001 + 9.45607352488732E+0001 9.48367794317573E+0001 9.51132631703422E+0001 9.53901868794756E+0001 9.56675509741890E+0001 + 9.59453558696960E+0001 9.62236019813963E+0001 9.65022897248700E+0001 9.67814195158890E+0001 9.70609917703987E+0001 + 9.73410069045349E+0001 9.76214653346196E+0001 9.79023674771543E+0001 9.81837137488237E+0001 9.84655045665004E+0001 + 9.87477403472385E+0001 9.90304215082779E+0001 9.93135484670393E+0001 9.95971216411326E+0001 9.98811414483471E+0001 + 1.00165608306658E+0002 1.00450522634224E+0002 1.00735884849388E+0002 1.01021695370678E+0002 1.01307954616804E+0002 + 1.01594663006663E+0002 1.01881820959331E+0002 1.02169428894074E+0002 1.02457487230337E+0002 1.02745996387753E+0002 + 1.03034956786134E+0002 1.03324368845484E+0002 1.03614232985982E+0002 1.03904549627996E+0002 1.04195319192079E+0002 + 1.04486542098966E+0002 1.04778218769574E+0002 1.05070349625008E+0002 1.05362935086554E+0002 1.05655975575687E+0002 + 1.05949471514059E+0002 1.06243423323509E+0002 1.06537831426061E+0002 1.06832696243925E+0002 1.07128018199489E+0002 + 1.07423797715329E+0002 1.07720035214207E+0002 1.08016731119062E+0002 1.08313885853026E+0002 1.08611499839408E+0002 + 1.08909573501704E+0002 1.09208107263594E+0002 1.09507101548942E+0002 1.09806556781793E+0002 1.10106473386381E+0002 + 1.10406851787122E+0002 1.10707692408613E+0002 1.11008995675640E+0002 1.11310762013169E+0002 1.11612991846353E+0002 + 1.11915685600527E+0002 1.12218843701211E+0002 1.12522466574109E+0002 1.12826554645109E+0002 1.13131108340280E+0002 + 1.13436128085882E+0002 1.13741614308352E+0002 1.14047567434314E+0002 1.14353987890576E+0002 1.14660876104131E+0002 + 1.14968232502154E+0002 1.15276057512005E+0002 1.15584351561226E+0002 1.15893115077547E+0002 1.16202348488880E+0002 + 1.16512052223321E+0002 1.16822226709148E+0002 1.17132872374828E+0002 1.17443989649008E+0002 1.17755578960517E+0002 + 1.18067640738373E+0002 1.18380175411778E+0002 1.18693183410114E+0002 1.19006665162948E+0002 1.19320621100036E+0002 + 1.19635051651309E+0002 1.19949957246891E+0002 1.20265338317084E+0002 1.20581195292376E+0002 1.20897528603442E+0002 + 1.21214338681135E+0002 1.21531625956496E+0002 1.21849390860748E+0002 1.22167633825304E+0002 1.22486355281752E+0002 + 1.22805555661867E+0002 1.23125235397612E+0002 1.23445394921132E+0002 1.23766034664752E+0002 1.24087155060987E+0002 + 1.24408756542532E+0002 1.24730839542268E+0002 1.25053404493260E+0002 1.25376451828754E+0002 1.25699981982183E+0002 + 1.26023995387165E+0002 1.26348492477499E+0002 1.26673473687169E+0002 1.26998939450346E+0002 1.27324890201381E+0002 + 1.27651326374808E+0002 1.27978248405350E+0002 1.28305656727911E+0002 1.28633551777580E+0002 1.28961933989627E+0002 + 1.29290803799512E+0002 1.29620161642873E+0002 1.29950007955536E+0002 1.30280343173508E+0002 1.30611167732983E+0002 + 1.30942482070336E+0002 1.31274286622130E+0002 1.31606581825108E+0002 1.31939368116198E+0002 1.32272645932511E+0002 + 1.32606415711350E+0002 1.32940677890188E+0002 1.33275432906696E+0002 1.33610681198718E+0002 1.33946423204287E+0002 + 1.34282659361626E+0002 1.34619390109126E+0002 1.34956615885379E+0002 1.35294337129149E+0002 1.35632554279393E+0002 + 1.35971267775243E+0002 1.36310478056024E+0002 1.36650185561241E+0002 1.36990390730578E+0002 1.37331094003913E+0002 + 1.37672295821299E+0002 1.38013996622978E+0002 1.38356196849376E+0002 1.38698896941100E+0002 1.39042097338944E+0002 + 1.39385798483884E+0002 1.39730000817082E+0002 1.40074704779881E+0002 1.40419910813813E+0002 1.40765619360588E+0002 + 1.41111830862104E+0002 1.41458545760442E+0002 1.41805764497867E+0002 1.42153487516826E+0002 1.42501715259955E+0002 + 1.42850448170070E+0002 1.43199686690170E+0002 1.43549431263443E+0002 1.43899682333255E+0002 1.44250440343160E+0002 + 1.44601705736896E+0002 1.44953478958384E+0002 1.45305760451728E+0002 1.45658550661216E+0002 1.46011850031324E+0002 + 1.46365659006707E+0002 1.46719978032207E+0002 1.47074807552849E+0002 1.47430148013841E+0002 1.47785999860575E+0002 + 1.48142363538632E+0002 1.48499239493771E+0002 1.48856628171936E+0002 1.49214530019258E+0002 1.49572945482048E+0002 + 1.49931875006804E+0002 1.50291319040210E+0002 1.50651278029128E+0002 1.51011752420606E+0002 1.51372742661881E+0002 + 1.51734249200366E+0002 1.52096272483666E+0002 1.52458812959565E+0002 1.52821871076030E+0002 1.53185447281218E+0002 + 1.53549542023463E+0002 1.53914155751288E+0002 1.54279288913397E+0002 1.54644941958680E+0002 1.55011115336212E+0002 + 1.55377809495246E+0002 1.55745024885227E+0002 1.56112761955779E+0002 1.56481021156711E+0002 1.56849802938017E+0002 + 1.57219107749873E+0002 1.57588936042641E+0002 1.57959288266867E+0002 1.58330164873280E+0002 1.58701566312793E+0002 + 1.59073493036503E+0002 1.59445945495691E+0002 1.59818924141825E+0002 1.60192429426553E+0002 1.60566461801706E+0002 + 1.60941021719304E+0002 1.61316109631548E+0002 1.61691725990822E+0002 1.62067871249697E+0002 1.62444545860926E+0002 + 1.62821750277446E+0002 1.63199484952379E+0002 1.63577750339029E+0002 1.63956546890889E+0002 1.64335875061627E+0002 + 1.64715735305106E+0002 1.65096128075363E+0002 1.65477053826626E+0002 1.65858513013303E+0002 1.66240506089988E+0002 + 1.66623033511461E+0002 1.67006095732680E+0002 1.67389693208791E+0002 1.67773826395124E+0002 1.68158495747193E+0002 + 1.68543701720696E+0002 1.68929444771512E+0002 1.69315725355709E+0002 1.69702543929537E+0002 1.70089900949426E+0002 + 1.70477796871997E+0002 1.70866232154050E+0002 1.71255207252570E+0002 1.71644722624728E+0002 1.72034778727878E+0002 + 1.72425376019555E+0002 1.72816514957482E+0002 1.73208195999567E+0002 1.73600419603895E+0002 1.73993186228743E+0002 + 1.74386496332566E+0002 1.74780350374008E+0002 1.75174748811893E+0002 1.75569692105232E+0002 1.75965180713218E+0002 + 1.76361215095228E+0002 1.76757795710822E+0002 1.77154923019751E+0002 1.77552597481938E+0002 1.77950819557503E+0002 + 1.78349589706739E+0002 1.78748908390128E+0002 1.79148776068339E+0002 1.79549193202219E+0002 1.79950160252802E+0002 + 1.80351677681306E+0002 1.80753745949131E+0002 1.81156365517866E+0002 1.81559536849277E+0002 1.81963260405320E+0002 + 1.82367536648133E+0002 1.82772366040036E+0002 1.83177749043535E+0002 1.83583686121321E+0002 1.83990177736268E+0002 + 1.84397224351432E+0002 1.84804826430054E+0002 1.85212984435563E+0002 1.85621698831565E+0002 1.86030970081856E+0002 + 1.86440798650412E+0002 1.86851185001398E+0002 1.87262129599157E+0002 1.87673632908218E+0002 1.88085695393297E+0002 + 1.88498317519291E+0002 1.88911499751281E+0002 1.89325242554532E+0002 1.89739546394499E+0002 1.90154411736808E+0002 + 1.90569839047282E+0002 1.90985828791920E+0002 1.91402381436910E+0002 1.91819497448620E+0002 1.92237177293606E+0002 + 1.92655421438603E+0002 1.93074230350536E+0002 1.93493604496506E+0002 1.93913544343806E+0002 1.94334050359912E+0002 + 1.94755123012477E+0002 1.95176762769345E+0002 1.95598970098543E+0002 1.96021745468277E+0002 1.96445089346945E+0002 + 1.96869002203122E+0002 1.97293484505572E+0002 1.97718536723240E+0002 1.98144159325255E+0002 1.98570352780930E+0002 + 1.98997117559766E+0002 1.99424454131441E+0002 1.99852362965823E+0002 2.00280844532961E+0002 2.00709899303091E+0002 + 2.01139527746627E+0002 2.01569730334174E+0002 2.02000507536517E+0002 2.02431859824625E+0002 2.02863787669651E+0002 + 2.03296291542936E+0002 2.03729371916000E+0002 2.04163029260547E+0002 2.04597264048470E+0002 2.05032076751841E+0002 + 2.05467467842917E+0002 2.05903437794143E+0002 2.06339987078141E+0002 2.06777116167725E+0002 2.07214825535883E+0002 + 2.07653115655799E+0002 2.08091987000832E+0002 2.08531440044528E+0002 2.08971475260615E+0002 2.09412093123010E+0002 + 2.09853294105809E+0002 2.10295078683295E+0002 2.10737447329932E+0002 2.11180400520372E+0002 2.11623938729447E+0002 + 2.12068062432177E+0002 2.12512772103762E+0002 2.12958068219586E+0002 2.13403951255224E+0002 2.13850421686425E+0002 + 2.14297479989131E+0002 2.14745126639458E+0002 2.15193362113718E+0002 2.15642186888398E+0002 2.16091601440173E+0002 + 2.16541606245899E+0002 2.16992201782618E+0002 2.17443388527558E+0002 2.17895166958127E+0002 2.18347537551918E+0002 + 2.18800500786711E+0002 2.19254057140468E+0002 2.19708207091334E+0002 2.20162951117638E+0002 2.20618289697893E+0002 + 2.21074223310800E+0002 2.21530752435239E+0002 2.21987877550276E+0002 2.22445599135159E+0002 2.22903917669324E+0002 + 2.23362833632390E+0002 2.23822347504157E+0002 2.24282459764611E+0002 2.24743170893921E+0002 2.25204481372442E+0002 + 2.25666391680717E+0002 2.26128902299457E+0002 2.26592013709574E+0002 2.27055726392156E+0002 2.27520040828478E+0002 + 2.27984957499999E+0002 2.28450476888360E+0002 2.28916599475384E+0002 2.29383325743084E+0002 2.29850656173653E+0002 + 2.30318591249469E+0002 2.30787131453093E+0002 2.31256277267274E+0002 2.31726029174935E+0002 2.32196387659197E+0002 + 2.32667353203354E+0002 2.33138926290888E+0002 2.33611107405465E+0002 2.34083897030937E+0002 2.34557295651336E+0002 + 2.35031303750878E+0002 2.35505921813967E+0002 2.35981150325190E+0002 2.36456989769314E+0002 2.36933440631294E+0002 + 2.37410503396267E+0002 2.37888178549557E+0002 2.38366466576666E+0002 2.38845367963288E+0002 2.39324883195293E+0002 + 2.39805012758744E+0002 2.40285757139877E+0002 2.40767116825121E+0002 2.41249092301086E+0002 2.41731684054561E+0002 + 2.42214892572530E+0002 2.42698718342152E+0002 2.43183161850773E+0002 2.43668223585923E+0002 2.44153904035315E+0002 + 2.44640203686848E+0002 2.45127123028602E+0002 2.45614662548844E+0002 2.46102822736023E+0002 2.46591604078772E+0002 + 2.47081007065914E+0002 2.47571032186443E+0002 2.48061679929549E+0002 2.48552950784602E+0002 2.49044845241154E+0002 + 2.49537363788945E+0002 2.50030506917894E+0002 2.50524275118108E+0002 2.51018668879877E+0002 2.51513688693674E+0002 + 2.52009335050157E+0002 2.52505608440168E+0002 2.53002509354734E+0002 2.53500038285060E+0002 2.53998195722545E+0002 + 2.54496982158764E+0002 2.54996398085482E+0002 2.55496443994639E+0002 2.55997120378369E+0002 2.56498427728983E+0002 + 2.57000366538980E+0002 2.57502937301039E+0002 2.58006140508032E+0002 2.58509976653004E+0002 2.59014446229188E+0002 + 2.59519549730005E+0002 2.60025287649052E+0002 2.60531660480119E+0002 2.61038668717174E+0002 2.61546312854372E+0002 + 2.62054593386047E+0002 2.62563510806722E+0002 2.63073065611108E+0002 2.63583258294086E+0002 2.64094089350736E+0002 + 2.64605559276312E+0002 2.65117668566258E+0002 2.65630417716197E+0002 2.66143807221940E+0002 2.66657837579482E+0002 + 2.67172509284997E+0002 2.67687822834852E+0002 2.68203778725589E+0002 2.68720377453937E+0002 2.69237619516812E+0002 + 2.69755505411305E+0002 2.70274035634708E+0002 2.70793210684479E+0002 2.71313031058270E+0002 2.71833497253914E+0002 + 2.72354609769429E+0002 2.72876369103014E+0002 2.73398775753061E+0002 2.73921830218133E+0002 2.74445532996984E+0002 + 2.74969884588557E+0002 2.75494885491965E+0002 2.76020536206522E+0002 2.76546837231713E+0002 2.77073789067213E+0002 + 2.77601392212878E+0002 2.78129647168750E+0002 2.78658554435056E+0002 2.79188114512202E+0002 2.79718327900781E+0002 + 2.80249195101577E+0002 2.80780716615549E+0002 2.81312892943835E+0002 2.81845724587775E+0002 2.82379212048875E+0002 + 2.82913355828839E+0002 2.83448156429541E+0002 2.83983614353049E+0002 2.84519730101616E+0002 2.85056504177673E+0002 + 2.85593937083833E+0002 2.86132029322906E+0002 2.86670781397870E+0002 2.87210193811901E+0002 2.87750267068344E+0002 + 2.88291001670743E+0002 2.88832398122817E+0002 2.89374456928472E+0002 2.89917178591795E+0002 2.90460563617064E+0002 + 2.91004612508732E+0002 2.91549325771441E+0002 2.92094703910019E+0002 2.92640747429472E+0002 2.93187456834996E+0002 + 2.93734832631966E+0002 2.94282875325945E+0002 2.94831585422677E+0002 2.95380963428091E+0002 2.95931009848304E+0002 + 2.96481725189609E+0002 2.97033109958487E+0002 2.97585164661607E+0002 2.98137889805816E+0002 2.98691285898147E+0002 + 2.99245353445818E+0002 2.99800092956226E+0002 3.00355504936964E+0002 3.00911589895795E+0002 3.01468348340675E+0002 + 3.02025780779741E+0002 3.02583887721314E+0002 3.03142669673900E+0002 3.03702127146184E+0002 3.04262260647043E+0002 + 3.04823070685534E+0002 3.05384557770898E+0002 3.05946722412558E+0002 3.06509565120125E+0002 3.07073086403392E+0002 + 3.07637286772337E+0002 3.08202166737117E+0002 3.08767726808082E+0002 3.09333967495761E+0002 3.09900889310860E+0002 + 3.10468492764287E+0002 3.11036778367115E+0002 3.11605746630610E+0002 3.12175398066225E+0002 3.12745733185588E+0002 + 3.13316752500519E+0002 3.13888456523020E+0002 3.14460845765274E+0002 3.15033920739650E+0002 3.15607681958702E+0002 + 3.16182129935165E+0002 3.16757265181961E+0002 3.17333088212197E+0002 3.17909599539162E+0002 3.18486799676324E+0002 + 3.19064689137345E+0002 3.19643268436066E+0002 3.20222538086504E+0002 3.20802498602881E+0002 3.21383150499581E+0002 + 3.21964494291180E+0002 3.22546530492444E+0002 3.23129259618318E+0002 3.23712682183923E+0002 3.24296798704579E+0002 + 3.24881609695785E+0002 3.25467115673213E+0002 3.26053317152735E+0002 3.26640214650399E+0002 3.27227808682434E+0002 + 3.27816099765261E+0002 3.28405088415479E+0002 3.28994775149871E+0002 3.29585160485411E+0002 3.30176244939246E+0002 + 3.30768029028713E+0002 3.31360513271340E+0002 3.31953698184827E+0002 3.32547584287058E+0002 3.33142172096112E+0002 + 3.33737462130246E+0002 3.34333454907895E+0002 3.34930150947690E+0002 3.35527550768435E+0002 3.36125654889125E+0002 + 3.36724463828938E+0002 3.37323978107233E+0002 3.37924198243552E+0002 3.38525124757629E+0002 3.39126758169372E+0002 + 3.39729098998881E+0002 3.40332147766434E+0002 3.40935904992499E+0002 3.41540371197718E+0002 3.42145546902932E+0002 + 3.42751432629151E+0002 3.43358028897579E+0002 3.43965336229601E+0002 3.44573355146780E+0002 3.45182086170878E+0002 + 3.45791529823822E+0002 3.46401686627740E+0002 3.47012557104932E+0002 3.47624141777886E+0002 3.48236441169276E+0002 + 3.48849455801959E+0002 3.49463186198978E+0002 3.50077632883551E+0002 3.50692796379091E+0002 3.51308677209190E+0002 + 3.51925275897625E+0002 3.52542592968353E+0002 3.53160628945521E+0002 3.53779384353460E+0002 3.54398859716675E+0002 + 3.55019055559867E+0002 3.55639972407922E+0002 3.56261610785892E+0002 3.56883971219033E+0002 3.57507054232779E+0002 + 3.58130860352743E+0002 3.58755390104723E+0002 3.59380644014707E+0002 3.60006622608862E+0002 3.60633326413541E+0002 + 3.61260755955278E+0002 3.61888911760796E+0002 3.62517794357000E+0002 3.63147404270976E+0002 3.63777742029997E+0002 + 3.64408808161519E+0002 3.65040603193180E+0002 3.65673127652812E+0002 3.66306382068409E+0002 3.66940366968178E+0002 + 3.67575082880485E+0002 3.68210530333896E+0002 3.68846709857149E+0002 3.69483621979181E+0002 3.70121267229099E+0002 + 3.70759646136197E+0002 3.71398759229958E+0002 3.72038607040045E+0002 3.72679190096309E+0002 3.73320508928779E+0002 + 3.73962564067670E+0002 3.74605356043381E+0002 3.75248885386502E+0002 3.75893152627797E+0002 3.76538158298219E+0002 + 3.77183902928904E+0002 3.77830387051172E+0002 3.78477611196520E+0002 3.79125575896649E+0002 3.79774281683423E+0002 + 3.80423729088900E+0002 3.81073918645317E+0002 3.81724850885101E+0002 3.82376526340859E+0002 3.83028945545382E+0002 + 3.83682109031648E+0002 3.84336017332813E+0002 3.84990670982228E+0002 3.85646070513410E+0002 3.86302216460081E+0002 + 3.86959109356130E+0002 3.87616749735642E+0002 3.88275138132874E+0002 3.88934275082282E+0002 3.89594161118492E+0002 + 3.90254796776324E+0002 3.90916182590770E+0002 3.91578319097023E+0002 3.92241206830444E+0002 3.92904846326590E+0002 + 3.93569238121192E+0002 3.94234382750174E+0002 3.94900280749633E+0002 3.95566932655864E+0002 3.96234339005332E+0002 + 3.96902500334700E+0002 3.97571417180799E+0002 3.98241090080661E+0002 3.98911519571488E+0002 3.99582706190675E+0002 + 4.00254650475794E+0002 4.00927352964607E+0002 4.01600814195057E+0002 4.02275034705270E+0002 4.02950015033561E+0002 + 4.03625755718422E+0002 4.04302257298534E+0002 4.04979520312760E+0002 4.05657545300148E+0002 4.06336332799930E+0002 + 4.07015883351518E+0002 4.07696197494512E+0002 4.08377275768704E+0002 4.09059118714049E+0002 4.09741726870705E+0002 + 4.10425100779008E+0002 4.11109240979475E+0002 4.11794148012808E+0002 4.12479822419898E+0002 4.13166264741814E+0002 + 4.13853475519809E+0002 4.14541455295330E+0002 4.15230204609994E+0002 4.15919724005607E+0002 4.16610014024167E+0002 + 4.17301075207839E+0002 4.17992908098991E+0002 4.18685513240165E+0002 4.19378891174085E+0002 4.20073042443666E+0002 + 4.20767967591995E+0002 4.21463667162361E+0002 4.22160141698223E+0002 4.22857391743228E+0002 4.23555417841202E+0002 + 4.24254220536171E+0002 4.24953800372328E+0002 4.25654157894058E+0002 4.26355293645920E+0002 4.27057208172673E+0002 + 4.27759902019252E+0002 4.28463375730775E+0002 4.29167629852542E+0002 4.29872664930044E+0002 4.30578481508950E+0002 + 4.31285080135114E+0002 4.31992461354577E+0002 4.32700625713560E+0002 4.33409573758470E+0002 4.34119306035900E+0002 + 4.34829823092623E+0002 4.35541125475598E+0002 4.36253213731969E+0002 4.36966088409061E+0002 4.37679750054387E+0002 + 4.38394199215636E+0002 4.39109436440694E+0002 4.39825462277622E+0002 4.40542277274668E+0002 4.41259881980259E+0002 + 4.41978276943008E+0002 4.42697462711716E+0002 4.43417439835372E+0002 4.44138208863134E+0002 4.44859770344354E+0002 + 4.45582124828572E+0002 4.46305272865502E+0002 4.47029215005046E+0002 4.47753951797293E+0002 4.48479483792515E+0002 + 4.49205811541160E+0002 4.49932935593875E+0002 4.50660856501478E+0002 4.51389574814972E+0002 4.52119091085555E+0002 + 4.52849405864597E+0002 4.53580519703657E+0002 4.54312433154479E+0002 4.55045146768987E+0002 4.55778661099292E+0002 + 4.56512976697690E+0002 4.57248094116658E+0002 4.57984013908863E+0002 4.58720736627141E+0002 4.59458262824530E+0002 + 4.60196593054245E+0002 4.60935727869681E+0002 4.61675667824420E+0002 4.62416413472232E+0002 4.63157965367065E+0002 + 4.63900324063052E+0002 4.64643490114513E+0002 4.65387464075948E+0002 4.66132246502048E+0002 4.66877837947679E+0002 + 4.67624238967894E+0002 4.68371450117937E+0002 4.69119471953223E+0002 4.69868305029362E+0002 4.70617949902145E+0002 + 4.71368407127546E+0002 4.72119677261719E+0002 4.72871760861011E+0002 4.73624658481947E+0002 4.74378370681234E+0002 + 4.75132898015769E+0002 4.75888241042629E+0002 4.76644400319074E+0002 4.77401376402555E+0002 4.78159169850696E+0002 + 4.78917781221318E+0002 4.79677211072411E+0002 4.80437459962162E+0002 4.81198528448938E+0002 4.81960417091283E+0002 + 4.82723126447934E+0002 4.83486657077810E+0002 4.84251009540010E+0002 4.85016184393826E+0002 4.85782182198722E+0002 + 4.86549003514354E+0002 4.87316648900556E+0002 4.88085118917357E+0002 4.88854414124951E+0002 4.89624535083743E+0002 + 4.90395482354294E+0002 4.91167256497371E+0002 4.91939858073905E+0002 4.92713287645032E+0002 4.93487545772057E+0002 + 4.94262633016475E+0002 4.95038549939960E+0002 4.95815297104376E+0002 4.96592875071774E+0002 4.97371284404373E+0002 + 4.98150525664594E+0002 4.98930599415029E+0002 4.99711506218466E+0002 5.00493246637865E+0002 5.01275821236379E+0002 + 5.02059230577341E+0002 5.02843475224263E+0002 5.03628555740857E+0002 5.04414472690998E+0002 5.05201226638763E+0002 + 5.05988818148398E+0002 5.06777247784348E+0002 5.07566516111228E+0002 5.08356623693846E+0002 5.09147571097194E+0002 + 5.09939358886439E+0002 5.10731987626945E+0002 5.11525457884249E+0002 5.12319770224074E+0002 5.13114925212334E+0002 + 5.13910923415124E+0002 5.14707765398714E+0002 5.15505451729568E+0002 5.16303982974334E+0002 5.17103359699837E+0002 + 5.17903582473095E+0002 5.18704651861301E+0002 5.19506568431836E+0002 5.20309332752267E+0002 5.21112945390343E+0002 + 5.21917406913994E+0002 5.22722717891340E+0002 5.23528878890684E+0002 5.24335890480506E+0002 5.25143753229477E+0002 + 5.25952467706451E+0002 5.26762034480462E+0002 5.27572454120735E+0002 5.28383727196671E+0002 5.29195854277861E+0002 + 5.30008835934077E+0002 5.30822672735278E+0002 5.31637365251599E+0002 5.32452914053370E+0002 5.33269319711100E+0002 + 5.34086582795477E+0002 5.34904703877384E+0002 5.35723683527876E+0002 5.36543522318203E+0002 5.37364220819787E+0002 + 5.38185779604248E+0002 5.39008199243379E+0002 5.39831480309162E+0002 5.40655623373754E+0002 5.41480629009513E+0002 + 5.42306497788972E+0002 5.43133230284840E+0002 5.43960827070021E+0002 5.44789288717602E+0002 5.45618615800850E+0002 + 5.46448808893216E+0002 5.47279868568337E+0002 5.48111795400033E+0002 5.48944589962313E+0002 5.49778252829357E+0002 + 5.50612784575540E+0002 5.51448185775425E+0002 5.52284457003747E+0002 5.53121598835429E+0002 5.53959611845581E+0002 + 5.54798496609499E+0002 5.55638253702649E+0002 5.56478883700705E+0002 5.57320387179501E+0002 5.58162764715065E+0002 + 5.59006016883619E+0002 5.59850144261549E+0002 5.60695147425440E+0002 5.61541026952054E+0002 5.62387783418339E+0002 + 5.63235417401429E+0002 5.64083929478642E+0002 5.64933320227472E+0002 5.65783590225607E+0002 5.66634740050915E+0002 + 5.67486770281444E+0002 5.68339681495436E+0002 5.69193474271309E+0002 5.70048149187664E+0002 5.70903706823292E+0002 + 5.71760147757161E+0002 5.72617472568436E+0002 5.73475681836446E+0002 5.74334776140720E+0002 5.75194756060968E+0002 + 5.76055622177075E+0002 5.76917375069124E+0002 5.77780015317368E+0002 5.78643543502258E+0002 5.79507960204419E+0002 + 5.80373266004657E+0002 5.81239461483974E+0002 5.82106547223553E+0002 5.82974523804747E+0002 5.83843391809110E+0002 + 5.84713151818376E+0002 5.85583804414458E+0002 5.86455350179451E+0002 5.87327789695644E+0002 5.88201123545503E+0002 + 5.89075352311682E+0002 5.89950476577013E+0002 5.90826496924516E+0002 5.91703413937394E+0002 5.92581228199038E+0002 + 5.93459940293014E+0002 5.94339550803084E+0002 5.95220060313181E+0002 5.96101469407431E+0002 5.96983778670146E+0002 + 5.97866988685810E+0002 5.98751100039099E+0002 5.99636113314877E+0002 6.00522029098180E+0002 6.01408847974242E+0002 + 6.02296570528471E+0002 6.03185197346465E+0002 6.04074729014003E+0002 6.04965166117045E+0002 6.05856509241738E+0002 + 6.06748758974418E+0002 6.07641915901593E+0002 6.08535980609966E+0002 6.09430953686420E+0002 6.10326835718024E+0002 + 6.11223627292027E+0002 6.12121328995861E+0002 6.13019941417149E+0002 6.13919465143696E+0002 6.14819900763481E+0002 + 6.15721248864682E+0002 6.16623510035652E+0002 6.17526684864930E+0002 6.18430773941234E+0002 6.19335777853479E+0002 + 6.20241697190751E+0002 6.21148532542325E+0002 6.22056284497661E+0002 6.22964953646404E+0002 6.23874540578374E+0002 + 6.24785045883586E+0002 6.25696470152234E+0002 6.26608813974699E+0002 6.27522077941541E+0002 6.28436262643507E+0002 + 6.29351368671527E+0002 6.30267396616715E+0002 6.31184347070375E+0002 6.32102220623983E+0002 6.33021017869209E+0002 + 6.33940739397900E+0002 6.34861385802096E+0002 6.35782957674013E+0002 6.36705455606047E+0002 6.37628880190796E+0002 + 6.38553232021024E+0002 6.39478511689686E+0002 6.40404719789918E+0002 6.41331856915047E+0002 6.42259923658574E+0002 + 6.43188920614197E+0002 6.44118848375780E+0002 6.45049707537391E+0002 6.45981498693269E+0002 6.46914222437836E+0002 + 6.47847879365707E+0002 6.48782470071672E+0002 6.49717995150713E+0002 6.50654455197995E+0002 6.51591850808856E+0002 + 6.52530182578830E+0002 6.53469451103632E+0002 6.54409656979160E+0002 6.55350800801491E+0002 6.56292883166898E+0002 + 6.57235904671828E+0002 6.58179865912916E+0002 6.59124767486979E+0002 6.60070609991019E+0002 6.61017394022223E+0002 + 6.61965120177956E+0002 6.62913789055779E+0002 6.63863401253422E+0002 6.64813957368813E+0002 6.65765458000058E+0002 + 6.66717903745441E+0002 6.67671295203441E+0002 6.68625632972713E+0002 6.69580917652105E+0002 6.70537149840631E+0002 + 6.71494330137510E+0002 6.72452459142130E+0002 6.73411537454076E+0002 6.74371565673102E+0002 6.75332544399158E+0002 + 6.76294474232373E+0002 6.77257355773054E+0002 6.78221189621707E+0002 6.79185976379014E+0002 6.80151716645832E+0002 + 6.81118411023217E+0002 6.82086060112402E+0002 6.83054664514802E+0002 6.84024224832023E+0002 6.84994741665840E+0002 + 6.85966215618235E+0002 6.86938647291354E+0002 6.87912037287530E+0002 6.88886386209299E+0002 6.89861694659354E+0002 + 6.90837963240585E+0002 6.91815192556071E+0002 6.92793383209060E+0002 6.93772535803006E+0002 6.94752650941526E+0002 + 6.95733729228428E+0002 6.96715771267707E+0002 6.97698777663541E+0002 6.98682749020289E+0002 6.99667685942502E+0002 + 7.00653589034899E+0002 7.01640458902400E+0002 7.02628296150106E+0002 7.03617101383283E+0002 7.04606875207410E+0002 + 7.05597618228134E+0002 7.06589331051278E+0002 7.07582014282871E+0002 7.08575668529107E+0002 7.09570294396373E+0002 + 7.10565892491233E+0002 7.11562463420449E+0002 7.12560007790951E+0002 7.13558526209858E+0002 7.14558019284481E+0002 + 7.15558487622307E+0002 7.16559931831005E+0002 7.17562352518433E+0002 7.18565750292633E+0002 7.19570125761831E+0002 + 7.20575479534429E+0002 7.21581812219027E+0002 7.22589124424401E+0002 7.23597416759505E+0002 7.24606689833488E+0002 + 7.25616944255680E+0002 7.26628180635587E+0002 7.27640399582913E+0002 7.28653601707536E+0002 7.29667787619521E+0002 + 7.30682957929108E+0002 7.31699113246741E+0002 7.32716254183029E+0002 7.33734381348775E+0002 7.34753495354960E+0002 + 7.35773596812762E+0002 7.36794686333522E+0002 7.37816764528781E+0002 7.38839832010255E+0002 7.39863889389857E+0002 + 7.40888937279662E+0002 7.41914976291959E+0002 7.42942007039186E+0002 7.43970030133998E+0002 7.44999046189208E+0002 + 7.46029055817831E+0002 7.47060059633055E+0002 7.48092058248259E+0002 7.49125052277001E+0002 7.50159042333027E+0002 + 7.51194029030263E+0002 7.52230012982818E+0002 7.53266994804992E+0002 7.54304975111263E+0002 7.55343954516296E+0002 + 7.56383933634943E+0002 7.57424913082221E+0002 7.58466893473360E+0002 7.59509875423755E+0002 7.60553859548992E+0002 + 7.61598846464836E+0002 7.62644836787234E+0002 7.63691831132332E+0002 7.64739830116439E+0002 7.65788834356070E+0002 + 7.66838844467904E+0002 7.67889861068812E+0002 7.68941884775853E+0002 7.69994916206268E+0002 7.71048955977474E+0002 + 7.72104004707084E+0002 7.73160063012889E+0002 7.74217131512863E+0002 7.75275210825161E+0002 7.76334301568135E+0002 + 7.77394404360310E+0002 7.78455519820391E+0002 7.79517648567278E+0002 7.80580791220051E+0002 7.81644948397970E+0002 + 7.82710120720483E+0002 7.83776308807221E+0002 7.84843513278003E+0002 7.85911734752826E+0002 7.86980973851871E+0002 + 7.88051231195503E+0002 7.89122507404278E+0002 7.90194803098930E+0002 7.91268118900374E+0002 7.92342455429723E+0002 + 7.93417813308257E+0002 7.94494193157439E+0002 7.95571595598940E+0002 7.96650021254583E+0002 7.97729470746399E+0002 + 7.98809944696597E+0002 7.99891443727571E+0002 8.00973968461880E+0002 8.02057519522295E+0002 8.03142097531760E+0002 + 8.04227703113389E+0002 8.05314336890511E+0002 8.06401999486603E+0002 8.07490691525360E+0002 8.08580413630636E+0002 + 8.09671166426469E+0002 8.10762950537108E+0002 8.11855766586952E+0002 8.12949615200603E+0002 8.14044497002847E+0002 + 8.15140412618654E+0002 8.16237362673164E+0002 8.17335347791723E+0002 8.18434368599839E+0002 8.19534425723217E+0002 + 8.20635519787746E+0002 8.21737651419502E+0002 8.22840821244718E+0002 8.23945029889859E+0002 8.25050277981532E+0002 + 8.26156566146547E+0002 8.27263895011885E+0002 8.28372265204736E+0002 8.29481677352454E+0002 8.30592132082569E+0002 + 8.31703630022821E+0002 8.32816171801107E+0002 8.33929758045535E+0002 8.35044389384377E+0002 8.36160066446097E+0002 + 8.37276789859330E+0002 8.38394560252920E+0002 8.39513378255873E+0002 8.40633244497389E+0002 8.41754159606851E+0002 + 8.42876124213821E+0002 8.43999138948064E+0002 8.45123204439489E+0002 8.46248321318228E+0002 8.47374490214581E+0002 + 8.48501711759032E+0002 8.49629986582255E+0002 8.50759315315099E+0002 8.51889698588609E+0002 8.53021137033997E+0002 + 8.54153631282672E+0002 8.55287181966221E+0002 8.56421789716424E+0002 8.57557455165232E+0002 8.58694178944792E+0002 + 8.59831961687429E+0002 8.60970804025648E+0002 8.62110706592146E+0002 8.63251670019799E+0002 8.64393694941671E+0002 + 8.65536781990999E+0002 8.66680931801220E+0002 8.67826145005940E+0002 8.68972422238970E+0002 8.70119764134281E+0002 + 8.71268171326039E+0002 8.72417644448597E+0002 8.73568184136479E+0002 8.74719791024418E+0002 8.75872465747296E+0002 + 8.77026208940213E+0002 8.78181021238426E+0002 8.79336903277399E+0002 8.80493855692766E+0002 8.81651879120345E+0002 + 8.82810974196138E+0002 8.83971141556343E+0002 8.85132381837331E+0002 8.86294695675650E+0002 8.87458083708047E+0002 + 8.88622546571456E+0002 8.89788084902961E+0002 8.90954699339884E+0002 8.92122390519678E+0002 8.93291159080021E+0002 + 8.94461005658748E+0002 8.95631930893891E+0002 8.96803935423657E+0002 8.97977019886453E+0002 8.99151184920847E+0002 + 9.00326431165617E+0002 9.01502759259700E+0002 9.02680169842242E+0002 9.03858663552543E+0002 9.05038241030106E+0002 + 9.06218902914632E+0002 9.07400649845971E+0002 9.08583482464186E+0002 9.09767401409503E+0002 9.10952407322355E+0002 + 9.12138500843343E+0002 9.13325682613249E+0002 9.14513953273050E+0002 9.15703313463902E+0002 9.16893763827142E+0002 + 9.18085305004297E+0002 9.19277937637078E+0002 9.20471662367370E+0002 9.21666479837251E+0002 9.22862390688988E+0002 + 9.24059395565018E+0002 9.25257495107966E+0002 9.26456689960658E+0002 9.27656980766074E+0002 9.28858368167403E+0002 + 9.30060852808005E+0002 9.31264435331432E+0002 9.32469116381413E+0002 9.33674896601864E+0002 9.34881776636881E+0002 + 9.36089757130754E+0002 9.37298838727951E+0002 9.38509022073118E+0002 9.39720307811098E+0002 9.40932696586904E+0002 + 9.42146189045747E+0002 9.43360785833000E+0002 9.44576487594251E+0002 9.45793294975250E+0002 9.47011208621931E+0002 + 9.48230229180426E+0002 9.49450357297039E+0002 9.50671593618255E+0002 9.51893938790763E+0002 9.53117393461413E+0002 + 9.54341958277244E+0002 9.55567633885494E+0002 9.56794420933573E+0002 9.58022320069071E+0002 9.59251331939769E+0002 + 9.60481457193626E+0002 9.61712696478804E+0002 9.62945050443617E+0002 9.64178519736590E+0002 9.65413105006413E+0002 + 9.66648806901983E+0002 9.67885626072359E+0002 9.69123563166791E+0002 9.70362618834715E+0002 9.71602793725750E+0002 + 9.72844088489703E+0002 9.74086503776554E+0002 9.75330040236480E+0002 9.76574698519835E+0002 9.77820479277158E+0002 + 9.79067383159159E+0002 9.80315410816766E+0002 9.81564562901058E+0002 9.82814840063311E+0002 9.84066242954985E+0002 + 9.85318772227725E+0002 9.86572428533349E+0002 9.87827212523873E+0002 9.89083124851488E+0002 9.90340166168589E+0002 + 9.91598337127718E+0002 9.92857638381636E+0002 9.94118070583259E+0002 9.95379634385714E+0002 9.96642330442290E+0002 + 9.97906159406488E+0002 9.99171121931951E+0002 1.00043721867253E+0003 1.00170445028229E+0003 1.00297281741541E+0003 + 1.00424232072633E+0003 1.00551296086960E+0003 1.00678473850002E+0003 1.00805765427252E+0003 1.00933170884225E+0003 + 1.01060690286454E+0003 1.01188323699488E+0003 1.01316071188897E+0003 1.01443932820269E+0003 1.01571908659208E+0003 + 1.01699998771339E+0003 1.01828203222306E+0003 1.01956522077768E+0003 1.02084955403405E+0003 1.02213503264916E+0003 + 1.02342165728016E+0003 1.02470942858439E+0003 1.02599834721939E+0003 1.02728841384287E+0003 1.02857962911274E+0003 + 1.02987199368706E+0003 1.03116550822411E+0003 1.03246017338233E+0003 1.03375598982037E+0003 1.03505295819704E+0003 + 1.03635107917133E+0003 1.03765035340243E+0003 1.03895078154973E+0003 1.04025236427276E+0003 1.04155510223127E+0003 + 1.04285899608517E+0003 1.04416404649458E+0003 1.04547025411978E+0003 1.04677761962124E+0003 1.04808614365963E+0003 + 1.04939582689578E+0003 1.05070666999072E+0003 1.05201867360566E+0003 1.05333183840199E+0003 1.05464616504129E+0003 + 1.05596165418532E+0003 1.05727830649603E+0003 1.05859612263555E+0003 1.05991510326618E+0003 1.06123524905042E+0003 + 1.06255656065097E+0003 1.06387903873067E+0003 1.06520268395259E+0003 1.06652749697994E+0003 1.06785347847616E+0003 + 1.06918062910483E+0003 1.07050894952976E+0003 1.07183844041490E+0003 1.07316910242441E+0003 1.07450093622262E+0003 + 1.07583394247406E+0003 1.07716812184343E+0003 1.07850347499562E+0003 1.07984000259569E+0003 1.08117770530892E+0003 + 1.08251658380074E+0003 1.08385663873677E+0003 1.08519787078283E+0003 1.08654028060489E+0003 1.08788386886915E+0003 + 1.08922863624196E+0003 1.09057458338987E+0003 1.09192171097960E+0003 1.09327001967807E+0003 1.09461951015238E+0003 + 1.09597018306980E+0003 1.09732203909779E+0003 1.09867507890402E+0003 1.10002930315630E+0003 1.10138471252266E+0003 + 1.10274130767129E+0003 1.10409908927058E+0003 1.10545805798911E+0003 1.10681821449561E+0003 1.10817955945903E+0003 + 1.10954209354849E+0003 1.11090581743328E+0003 1.11227073178290E+0003 1.11363683726703E+0003 1.11500413455551E+0003 + 1.11637262431839E+0003 1.11774230722589E+0003 1.11911318394842E+0003 1.12048525515657E+0003 1.12185852152111E+0003 + 1.12323298371301E+0003 1.12460864240341E+0003 1.12598549826364E+0003 1.12736355196520E+0003 1.12874280417980E+0003 + 1.13012325557932E+0003 1.13150490683581E+0003 1.13288775862153E+0003 1.13427181160891E+0003 1.13565706647056E+0003 + 1.13704352387929E+0003 1.13843118450806E+0003 1.13982004903007E+0003 1.14121011811864E+0003 1.14260139244734E+0003 + 1.14399387268985E+0003 1.14538755952010E+0003 1.14678245361217E+0003 1.14817855564034E+0003 1.14957586627905E+0003 + 1.15097438620295E+0003 1.15237411608685E+0003 1.15377505660578E+0003 1.15517720843491E+0003 1.15658057224962E+0003 + 1.15798514872548E+0003 1.15939093853822E+0003 1.16079794236378E+0003 1.16220616087826E+0003 1.16361559475795E+0003 + 1.16502624467934E+0003 1.16643811131910E+0003 1.16785119535406E+0003 1.16926549746126E+0003 1.17068101831791E+0003 + 1.17209775860141E+0003 1.17351571898935E+0003 1.17493490015949E+0003 1.17635530278978E+0003 1.17777692755836E+0003 + 1.17919977514354E+0003 1.18062384622383E+0003 1.18204914147792E+0003 1.18347566158467E+0003 1.18490340722314E+0003 + 1.18633237907257E+0003 1.18776257781238E+0003 1.18919400412218E+0003 1.19062665868175E+0003 1.19206054217108E+0003 + 1.19349565527032E+0003 1.19493199865981E+0003 1.19636957302007E+0003 1.19780837903183E+0003 1.19924841737598E+0003 + 1.20068968873358E+0003 1.20213219378591E+0003 1.20357593321441E+0003 1.20502090770071E+0003 1.20646711792663E+0003 + 1.20791456457415E+0003 1.20936324832548E+0003 1.21081316986296E+0003 1.21226432986915E+0003 1.21371672902680E+0003 + 1.21517036801880E+0003 1.21662524752826E+0003 1.21808136823848E+0003 1.21953873083292E+0003 1.22099733599523E+0003 + 1.22245718440925E+0003 1.22391827675901E+0003 1.22538061372872E+0003 1.22684419600274E+0003 1.22830902426567E+0003 + 1.22977509920226E+0003 1.23124242149746E+0003 1.23271099183638E+0003 1.23418081090434E+0003 1.23565187938683E+0003 + 1.23712419796953E+0003 1.23859776733829E+0003 1.24007258817918E+0003 1.24154866117841E+0003 1.24302598702240E+0003 + 1.24450456639774E+0003 1.24598439999122E+0003 1.24746548848980E+0003 1.24894783258063E+0003 1.25043143295106E+0003 + 1.25191629028858E+0003 1.25340240528090E+0003 1.25488977861591E+0003 1.25637841098168E+0003 1.25786830306646E+0003 + 1.25935945555869E+0003 1.26085186914699E+0003 1.26234554452016E+0003 1.26384048236720E+0003 1.26533668337726E+0003 + 1.26683414823972E+0003 1.26833287764412E+0003 1.26983287228017E+0003 1.27133413283779E+0003 1.27283666000708E+0003 + 1.27434045447830E+0003 1.27584551694192E+0003 1.27735184808857E+0003 1.27885944860910E+0003 1.28036831919451E+0003 + 1.28187846053601E+0003 1.28338987332496E+0003 1.28490255825294E+0003 1.28641651601169E+0003 1.28793174729314E+0003 + 1.28944825278943E+0003 1.29096603319283E+0003 1.29248508919584E+0003 1.29400542149114E+0003 1.29552703077155E+0003 + 1.29704991773013E+0003 1.29857408306010E+0003 1.30009952745486E+0003 1.30162625160799E+0003 1.30315425621327E+0003 + 1.30468354196466E+0003 1.30621410955630E+0003 1.30774595968251E+0003 1.30927909303779E+0003 1.31081351031684E+0003 + 1.31234921221455E+0003 1.31388619942595E+0003 1.31542447264631E+0003 1.31696403257105E+0003 1.31850487989577E+0003 + 1.32004701531629E+0003 1.32159043952857E+0003 1.32313515322877E+0003 1.32468115711326E+0003 1.32622845187855E+0003 + 1.32777703822137E+0003 1.32932691683861E+0003 1.33087808842737E+0003 1.33243055368490E+0003 1.33398431330865E+0003 + 1.33553936799627E+0003 1.33709571844557E+0003 1.33865336535456E+0003 1.34021230942142E+0003 1.34177255134453E+0003 + 1.34333409182244E+0003 1.34489693155389E+0003 1.34646107123780E+0003 1.34802651157328E+0003 1.34959325325962E+0003 + 1.35116129699630E+0003 1.35273064348298E+0003 1.35430129341950E+0003 1.35587324750589E+0003 1.35744650644235E+0003 + 1.35902107092928E+0003 1.36059694166727E+0003 1.36217411935707E+0003 1.36375260469964E+0003 1.36533239839609E+0003 + 1.36691350114777E+0003 1.36849591365614E+0003 1.37007963662291E+0003 1.37166467074992E+0003 1.37325101673925E+0003 + 1.37483867529313E+0003 1.37642764711396E+0003 1.37801793290436E+0003 1.37960953336711E+0003 1.38120244920518E+0003 + 1.38279668112172E+0003 1.38439222982009E+0003 1.38598909600378E+0003 1.38758728037652E+0003 1.38918678364221E+0003 + 1.39078760650489E+0003 1.39238974966885E+0003 1.39399321383851E+0003 1.39559799971852E+0003 1.39720410801366E+0003 + 1.39881153942895E+0003 1.40042029466956E+0003 1.40203037444085E+0003 1.40364177944838E+0003 1.40525451039785E+0003 + 1.40686856799520E+0003 1.40848395294652E+0003 1.41010066595810E+0003 1.41171870773639E+0003 1.41333807898805E+0003 + 1.41495878041992E+0003 1.41658081273900E+0003 1.41820417665252E+0003 1.41982887286784E+0003 1.42145490209253E+0003 + 1.42308226503436E+0003 1.42471096240127E+0003 1.42634099490136E+0003 1.42797236324296E+0003 1.42960506813454E+0003 + 1.43123911028478E+0003 1.43287449040254E+0003 1.43451120919687E+0003 1.43614926737698E+0003 1.43778866565229E+0003 + 1.43942940473239E+0003 1.44107148532705E+0003 1.44271490814625E+0003 1.44435967390012E+0003 1.44600578329900E+0003 + 1.44765323705338E+0003 1.44930203587399E+0003 1.45095218047170E+0003 1.45260367155756E+0003 1.45425650984283E+0003 + 1.45591069603896E+0003 1.45756623085754E+0003 1.45922311501039E+0003 1.46088134920949E+0003 1.46254093416699E+0003 + 1.46420187059528E+0003 1.46586415920686E+0003 1.46752780071448E+0003 1.46919279583103E+0003 1.47085914526961E+0003 + 1.47252684974347E+0003 1.47419590996610E+0003 1.47586632665111E+0003 1.47753810051235E+0003 1.47921123226381E+0003 + 1.48088572261969E+0003 1.48256157229436E+0003 1.48423878200239E+0003 1.48591735245853E+0003 1.48759728437770E+0003 + 1.48927857847501E+0003 1.49096123546576E+0003 1.49264525606543E+0003 1.49433064098968E+0003 1.49601739095438E+0003 + 1.49770550667553E+0003 1.49939498886937E+0003 1.50108583825230E+0003 1.50277805554088E+0003 1.50447164145191E+0003 + 1.50616659670233E+0003 1.50786292200926E+0003 1.50956061809005E+0003 1.51125968566218E+0003 1.51296012544335E+0003 + 1.51466193815143E+0003 1.51636512450447E+0003 1.51806968522073E+0003 1.51977562101861E+0003 1.52148293261673E+0003 + 1.52319162073388E+0003 1.52490168608903E+0003 1.52661312940135E+0003 1.52832595139018E+0003 1.53004015277505E+0003 + 1.53175573427567E+0003 1.53347269661193E+0003 1.53519104050392E+0003 1.53691076667190E+0003 1.53863187583631E+0003 + 1.54035436871779E+0003 1.54207824603716E+0003 1.54380350851542E+0003 1.54553015687373E+0003 1.54725819183349E+0003 + 1.54898761411623E+0003 1.55071842444369E+0003 1.55245062353779E+0003 1.55418421212064E+0003 1.55591919091452E+0003 + 1.55765556064191E+0003 1.55939332202545E+0003 1.56113247578800E+0003 1.56287302265256E+0003 1.56461496334236E+0003 + 1.56635829858077E+0003 1.56810302909138E+0003 1.56984915559795E+0003 1.57159667882441E+0003 1.57334559949490E+0003 + 1.57509591833372E+0003 1.57684763606538E+0003 1.57860075341455E+0003 1.58035527110609E+0003 1.58211118986505E+0003 + 1.58386851041665E+0003 1.58562723348633E+0003 1.58738735979967E+0003 1.58914889008246E+0003 1.59091182506066E+0003 + 1.59267616546043E+0003 1.59444191200810E+0003 1.59620906543018E+0003 1.59797762645339E+0003 1.59974759580461E+0003 + 1.60151897421090E+0003 1.60329176239953E+0003 1.60506596109792E+0003 1.60684157103372E+0003 1.60861859293471E+0003 + 1.61039702752890E+0003 1.61217687554445E+0003 1.61395813770972E+0003 1.61574081475326E+0003 1.61752490740379E+0003 + 1.61931041639022E+0003 1.62109734244166E+0003 1.62288568628737E+0003 1.62467544865681E+0003 1.62646663027964E+0003 + 1.62825923188568E+0003 1.63005325420495E+0003 1.63184869796764E+0003 1.63364556390415E+0003 1.63544385274503E+0003 + 1.63724356522103E+0003 1.63904470206309E+0003 1.64084726400232E+0003 1.64265125177003E+0003 1.64445666609770E+0003 + 1.64626350771701E+0003 1.64807177735980E+0003 1.64988147575813E+0003 1.65169260364419E+0003 1.65350516175041E+0003 + 1.65531915080937E+0003 1.65713457155384E+0003 1.65895142471679E+0003 1.66076971103135E+0003 1.66258943123085E+0003 + 1.66441058604880E+0003 1.66623317621890E+0003 1.66805720247501E+0003 1.66988266555120E+0003 1.67170956618172E+0003 + 1.67353790510100E+0003 1.67536768304365E+0003 1.67719890074446E+0003 1.67903155893842E+0003 1.68086565836070E+0003 + 1.68270119974664E+0003 1.68453818383176E+0003 1.68637661135181E+0003 1.68821648304267E+0003 1.69005779964043E+0003 + 1.69190056188136E+0003 1.69374477050190E+0003 1.69559042623870E+0003 1.69743752982858E+0003 1.69928608200855E+0003 + 1.70113608351579E+0003 1.70298753508766E+0003 1.70484043746174E+0003 1.70669479137577E+0003 1.70855059756767E+0003 + 1.71040785677553E+0003 1.71226656973766E+0003 1.71412673719255E+0003 1.71598835987883E+0003 1.71785143853537E+0003 + 1.71971597390119E+0003 1.72158196671549E+0003 1.72344941771769E+0003 1.72531832764734E+0003 1.72718869724424E+0003 + 1.72906052724832E+0003 1.73093381839970E+0003 1.73280857143872E+0003 1.73468478710586E+0003 1.73656246614182E+0003 + 1.73844160928746E+0003 1.74032221728384E+0003 1.74220429087218E+0003 1.74408783079391E+0003 1.74597283779064E+0003 + 1.74785931260415E+0003 1.74974725597641E+0003 1.75163666864959E+0003 1.75352755136602E+0003 1.75541990486821E+0003 + 1.75731372989890E+0003 1.75920902720096E+0003 1.76110579751745E+0003 1.76300404159166E+0003 1.76490376016704E+0003 + 1.76680495398718E+0003 1.76870762379592E+0003 1.77061177033724E+0003 1.77251739435533E+0003 1.77442449659455E+0003 + 1.77633307779946E+0003 1.77824313871477E+0003 1.78015468008540E+0003 1.78206770265647E+0003 1.78398220717324E+0003 + 1.78589819438118E+0003 1.78781566502596E+0003 1.78973461985339E+0003 1.79165505960950E+0003 1.79357698504051E+0003 + 1.79550039689278E+0003 1.79742529591289E+0003 1.79935168284760E+0003 1.80127955844386E+0003 1.80320892344876E+0003 + 1.80513977860964E+0003 1.80707212467398E+0003 1.80900596238946E+0003 1.81094129250391E+0003 1.81287811576541E+0003 + 1.81481643292217E+0003 1.81675624472260E+0003 1.81869755191530E+0003 1.82064035524904E+0003 1.82258465547279E+0003 + 1.82453045333570E+0003 1.82647774958711E+0003 1.82842654497650E+0003 1.83037684025359E+0003 1.83232863616827E+0003 + 1.83428193347060E+0003 1.83623673291082E+0003 1.83819303523938E+0003 1.84015084120690E+0003 1.84211015156417E+0003 + 1.84407096706217E+0003 1.84603328845209E+0003 1.84799711648527E+0003 1.84996245191327E+0003 1.85192929548778E+0003 + 1.85389764796072E+0003 1.85586751008419E+0003 1.85783888261046E+0003 1.85981176629198E+0003 1.86178616188139E+0003 + 1.86376207013152E+0003 1.86573949179539E+0003 1.86771842762619E+0003 1.86969887837730E+0003 1.87168084480227E+0003 + 1.87366432765485E+0003 1.87564932768896E+0003 1.87763584565875E+0003 1.87962388231849E+0003 1.88161343842265E+0003 + 1.88360451472592E+0003 1.88559711198315E+0003 1.88759123094935E+0003 1.88958687237975E+0003 1.89158403702976E+0003 + 1.89358272565496E+0003 1.89558293901111E+0003 1.89758467785420E+0003 1.89958794294031E+0003 1.90159273502580E+0003 + 1.90359905486717E+0003 1.90560690322110E+0003 1.90761628084447E+0003 1.90962718849434E+0003 1.91163962692794E+0003 + 1.91365359690271E+0003 1.91566909917625E+0003 1.91768613450635E+0003 1.91970470365100E+0003 1.92172480736834E+0003 + 1.92374644641675E+0003 1.92576962155472E+0003 1.92779433354099E+0003 1.92982058313443E+0003 1.93184837109415E+0003 + 1.93387769817941E+0003 1.93590856514964E+0003 1.93794097276448E+0003 1.93997492178376E+0003 1.94201041296747E+0003 + 1.94404744707580E+0003 1.94608602486912E+0003 1.94812614710797E+0003 1.95016781455310E+0003 1.95221102796541E+0003 + 1.95425578810602E+0003 1.95630209573623E+0003 1.95834995161750E+0003 1.96039935651149E+0003 1.96245031118002E+0003 + 1.96450281638515E+0003 1.96655687288906E+0003 1.96861248145415E+0003 1.97066964284301E+0003 1.97272835781838E+0003 + 1.97478862714322E+0003 1.97685045158065E+0003 1.97891383189397E+0003 1.98097876884670E+0003 1.98304526320251E+0003 + 1.98511331572527E+0003 1.98718292717900E+0003 1.98925409832797E+0003 1.99132682993658E+0003 1.99340112276942E+0003 + 1.99547697759129E+0003 1.99755439516715E+0003 1.99963337626215E+0003 2.00171392164163E+0003 2.00379603207111E+0003 + 2.00587970831628E+0003 2.00796495114304E+0003 2.01005176131747E+0003 2.01214013960581E+0003 2.01423008677451E+0003 + 2.01632160359019E+0003 2.01841469081966E+0003 2.02050934922991E+0003 2.02260557958811E+0003 2.02470338266162E+0003 + 2.02680275921800E+0003 2.02890371002496E+0003 2.03100623585040E+0003 2.03311033746244E+0003 2.03521601562935E+0003 + 2.03732327111958E+0003 2.03943210470180E+0003 2.04154251714484E+0003 2.04365450921770E+0003 2.04576808168958E+0003 + 2.04788323532987E+0003 2.04999997090813E+0003 2.05211828919414E+0003 2.05423819095778E+0003 2.05635967696921E+0003 + 2.05848274799874E+0003 2.06060740481682E+0003 2.06273364819413E+0003 2.06486147890156E+0003 2.06699089771011E+0003 + 2.06912190539102E+0003 2.07125450271570E+0003 2.07338869045573E+0003 2.07552446938288E+0003 2.07766184026912E+0003 + 2.07980080388660E+0003 2.08194136100762E+0003 2.08408351240470E+0003 2.08622725885057E+0003 2.08837260111805E+0003 + 2.09051953998024E+0003 2.09266807621039E+0003 2.09481821058190E+0003 2.09696994386840E+0003 2.09912327684370E+0003 + 2.10127821028177E+0003 2.10343474495677E+0003 2.10559288164308E+0003 2.10775262111519E+0003 2.10991396414786E+0003 + 2.11207691151596E+0003 2.11424146399459E+0003 2.11640762235901E+0003 2.11857538738469E+0003 2.12074475984726E+0003 + 2.12291574052255E+0003 2.12508833018653E+0003 2.12726252961544E+0003 2.12943833958563E+0003 2.13161576087365E+0003 + 2.13379479425625E+0003 2.13597544051037E+0003 2.13815770041310E+0003 2.14034157474173E+0003 2.14252706427376E+0003 + 2.14471416978681E+0003 2.14690289205878E+0003 2.14909323186766E+0003 2.15128518999169E+0003 2.15347876720924E+0003 + 2.15567396429891E+0003 2.15787078203946E+0003 2.16006922120983E+0003 2.16226928258918E+0003 2.16447096695679E+0003 + 2.16667427509219E+0003 2.16887920777505E+0003 2.17108576578525E+0003 2.17329394990284E+0003 2.17550376090805E+0003 + 2.17771519958132E+0003 2.17992826670322E+0003 2.18214296305458E+0003 2.18435928941632E+0003 2.18657724656965E+0003 + 2.18879683529589E+0003 2.19101805637656E+0003 2.19324091059338E+0003 2.19546539872822E+0003 2.19769152156318E+0003 + 2.19991927988052E+0003 2.20214867446268E+0003 2.20437970609228E+0003 2.20661237555214E+0003 2.20884668362525E+0003 + 2.21108263109480E+0003 2.21332021874415E+0003 2.21555944735685E+0003 2.21780031771663E+0003 2.22004283060740E+0003 + 2.22228698681328E+0003 2.22453278711854E+0003 2.22678023230762E+0003 2.22902932316525E+0003 2.23128006047618E+0003 + 2.23353244502548E+0003 2.23578647759835E+0003 2.23804215898016E+0003 2.24029948995649E+0003 2.24255847131310E+0003 + 2.24481910383594E+0003 2.24708138831110E+0003 2.24934532552493E+0003 2.25161091626389E+0003 2.25387816131467E+0003 + 2.25614706146412E+0003 2.25841761749930E+0003 2.26068983020743E+0003 2.26296370037592E+0003 2.26523922879235E+0003 + 2.26751641624451E+0003 2.26979526352040E+0003 2.27207577140811E+0003 2.27435794069601E+0003 2.27664177217259E+0003 + 2.27892726662657E+0003 2.28121442484683E+0003 2.28350324762244E+0003 2.28579373574261E+0003 2.28808588999684E+0003 + 2.29037971117472E+0003 2.29267520006603E+0003 2.29497235746080E+0003 2.29727118414917E+0003 2.29957168092151E+0003 + 2.30187384856834E+0003 2.30417768788042E+0003 2.30648319964861E+0003 2.30879038466403E+0003 2.31109924371797E+0003 + 2.31340977760185E+0003 2.31572198710733E+0003 2.31803587302624E+0003 2.32035143615059E+0003 2.32266867727258E+0003 + 2.32498759718458E+0003 2.32730819667916E+0003 2.32963047654905E+0003 2.33195443758719E+0003 2.33428008058671E+0003 + 2.33660740634089E+0003 2.33893641564321E+0003 2.34126710928736E+0003 2.34359948806716E+0003 2.34593355277667E+0003 + 2.34826930421009E+0003 2.35060674316184E+0003 2.35294587042648E+0003 2.35528668679880E+0003 2.35762919307376E+0003 + 2.35997339004648E+0003 2.36231927851228E+0003 2.36466685926670E+0003 2.36701613310539E+0003 2.36936710082424E+0003 + 2.37171976321933E+0003 2.37407412108686E+0003 2.37643017522328E+0003 2.37878792642520E+0003 2.38114737548941E+0003 + 2.38350852321289E+0003 2.38587137039279E+0003 2.38823591782647E+0003 2.39060216631145E+0003 2.39297011664546E+0003 + 2.39533976962639E+0003 2.39771112605230E+0003 2.40008418672150E+0003 2.40245895243239E+0003 2.40483542398363E+0003 + 2.40721360217404E+0003 2.40959348780261E+0003 2.41197508166853E+0003 2.41435838457118E+0003 2.41674339731010E+0003 + 2.41913012068503E+0003 2.42151855549589E+0003 2.42390870254279E+0003 2.42630056262601E+0003 2.42869413654604E+0003 + 2.43108942510351E+0003 2.43348642909930E+0003 2.43588514933440E+0003 2.43828558661003E+0003 2.44068774172759E+0003 + 2.44309161548865E+0003 2.44549720869497E+0003 2.44790452214850E+0003 2.45031355665136E+0003 2.45272431300587E+0003 + 2.45513679201455E+0003 2.45755099448003E+0003 2.45996692120520E+0003 2.46238457299313E+0003 2.46480395064702E+0003 + 2.46722505497029E+0003 2.46964788676655E+0003 2.47207244683961E+0003 2.47449873599339E+0003 2.47692675503207E+0003 + 2.47935650475997E+0003 2.48178798598164E+0003 2.48422119950176E+0003 2.48665614612522E+0003 2.48909282665709E+0003 + 2.49153124190264E+0003 2.49397139266731E+0003 2.49641327975671E+0003 2.49885690397666E+0003 2.50130226613314E+0003 + 2.50374936703234E+0003 2.50619820748060E+0003 2.50864878828449E+0003 2.51110111025073E+0003 2.51355517418621E+0003 + 2.51601098089806E+0003 2.51846853119353E+0003 2.52092782588010E+0003 2.52338886576542E+0003 2.52585165165730E+0003 + 2.52831618436379E+0003 2.53078246469306E+0003 2.53325049345350E+0003 2.53572027145368E+0003 2.53819179950238E+0003 + 2.54066507840848E+0003 2.54314010898116E+0003 2.54561689202966E+0003 2.54809542836351E+0003 2.55057571879239E+0003 + 2.55305776412612E+0003 2.55554156517475E+0003 2.55802712274851E+0003 2.56051443765782E+0003 2.56300351071325E+0003 + 2.56549434272558E+0003 2.56798693450577E+0003 2.57048128686498E+0003 2.57297740061450E+0003 2.57547527656587E+0003 + 2.57797491553079E+0003 2.58047631832111E+0003 2.58297948574892E+0003 2.58548441862645E+0003 2.58799111776614E+0003 + 2.59049958398060E+0003 2.59300981808262E+0003 2.59552182088522E+0003 2.59803559320152E+0003 2.60055113584489E+0003 + 2.60306844962887E+0003 2.60558753536718E+0003 2.60810839387370E+0003 2.61063102596256E+0003 2.61315543244798E+0003 + 2.61568161414444E+0003 2.61820957186658E+0003 2.62073930642923E+0003 2.62327081864737E+0003 2.62580410933620E+0003 + 2.62833917931112E+0003 2.63087602938765E+0003 2.63341466038156E+0003 2.63595507310876E+0003 2.63849726838537E+0003 + 2.64104124702767E+0003 2.64358700985216E+0003 2.64613455767549E+0003 2.64868389131450E+0003 2.65123501158623E+0003 + 2.65378791930789E+0003 2.65634261529687E+0003 2.65889910037077E+0003 2.66145737534735E+0003 2.66401744104454E+0003 + 2.66657929828049E+0003 2.66914294787352E+0003 2.67170839064213E+0003 2.67427562740500E+0003 2.67684465898101E+0003 + 2.67941548618920E+0003 2.68198810984882E+0003 2.68456253077928E+0003 2.68713874980020E+0003 2.68971676773136E+0003 + 2.69229658539271E+0003 2.69487820360446E+0003 2.69746162318691E+0003 2.70004684496060E+0003 2.70263386974623E+0003 + 2.70522269836471E+0003 2.70781333163710E+0003 2.71040577038468E+0003 2.71300001542886E+0003 2.71559606759132E+0003 + 2.71819392769384E+0003 2.72079359655841E+0003 2.72339507500723E+0003 2.72599836386266E+0003 2.72860346394723E+0003 + 2.73121037608371E+0003 2.73381910109500E+0003 2.73642963980418E+0003 2.73904199303456E+0003 2.74165616160959E+0003 + 2.74427214635295E+0003 2.74688994808846E+0003 2.74950956764013E+0003 2.75213100583217E+0003 2.75475426348899E+0003 + 2.75737934143514E+0003 2.76000624049537E+0003 2.76263496149464E+0003 2.76526550525807E+0003 2.76789787261097E+0003 + 2.77053206437882E+0003 2.77316808138732E+0003 2.77580592446228E+0003 2.77844559442980E+0003 2.78108709211609E+0003 + 2.78373041834755E+0003 2.78637557395079E+0003 2.78902255975258E+0003 2.79167137657989E+0003 2.79432202525986E+0003 + 2.79697450661984E+0003 2.79962882148733E+0003 2.80228497069002E+0003 2.80494295505583E+0003 2.80760277541279E+0003 + 2.81026443258917E+0003 2.81292792741340E+0003 2.81559326071411E+0003 2.81826043332010E+0003 2.82092944606035E+0003 + 2.82360029976402E+0003 2.82627299526049E+0003 2.82894753337929E+0003 2.83162391495016E+0003 2.83430214080297E+0003 + 2.83698221176785E+0003 2.83966412867505E+0003 2.84234789235504E+0003 2.84503350363844E+0003 2.84772096335611E+0003 + 2.85041027233905E+0003 2.85310143141844E+0003 2.85579444142570E+0003 2.85848930319236E+0003 2.86118601755016E+0003 + 2.86388458533105E+0003 2.86658500736715E+0003 2.86928728449073E+0003 2.87199141753429E+0003 2.87469740733050E+0003 + 2.87740525471223E+0003 2.88011496051247E+0003 2.88282652556445E+0003 2.88553995070160E+0003 2.88825523675750E+0003 + 2.89097238456590E+0003 2.89369139496077E+0003 2.89641226877624E+0003 2.89913500684665E+0003 2.90185961000650E+0003 + 2.90458607909046E+0003 2.90731441493341E+0003 2.91004461837043E+0003 2.91277669023674E+0003 2.91551063136779E+0003 + 2.91824644259917E+0003 2.92098412476667E+0003 2.92372367870629E+0003 2.92646510525418E+0003 2.92920840524667E+0003 + 2.93195357952033E+0003 2.93470062891184E+0003 2.93744955425811E+0003 2.94020035639622E+0003 2.94295303616344E+0003 + 2.94570759439722E+0003 2.94846403193517E+0003 2.95122234961515E+0003 2.95398254827515E+0003 2.95674462875333E+0003 + 2.95950859188806E+0003 2.96227443851792E+0003 2.96504216948165E+0003 2.96781178561815E+0003 2.97058328776654E+0003 + 2.97335667676610E+0003 2.97613195345629E+0003 2.97890911867681E+0003 2.98168817326746E+0003 2.98446911806829E+0003 + 2.98725195391949E+0003 2.99003668166147E+0003 2.99282330213480E+0003 2.99561181618024E+0003 2.99840222463874E+0003 + 3.00119452835143E+0003 3.00398872815962E+0003 3.00678482490480E+0003 3.00958281942867E+0003 3.01238271257307E+0003 + 3.01518450518008E+0003 3.01798819809190E+0003 3.02079379215097E+0003 3.02360128819987E+0003 3.02641068708140E+0003 + 3.02922198963854E+0003 3.03203519671442E+0003 3.03485030915238E+0003 3.03766732779595E+0003 3.04048625348883E+0003 + 3.04330708707493E+0003 3.04612982939828E+0003 3.04895448130317E+0003 3.05178104363402E+0003 3.05460951723547E+0003 + 3.05743990295232E+0003 3.06027220162956E+0003 3.06310641411238E+0003 3.06594254124613E+0003 3.06878058387635E+0003 + 3.07162054284877E+0003 3.07446241900933E+0003 3.07730621320407E+0003 3.08015192627932E+0003 3.08299955908153E+0003 + 3.08584911245735E+0003 3.08870058725358E+0003 3.09155398431728E+0003 3.09440930449563E+0003 3.09726654863602E+0003 + 3.10012571758602E+0003 3.10298681219336E+0003 3.10584983330600E+0003 3.10871478177205E+0003 3.11158165843981E+0003 + 3.11445046415779E+0003 3.11732119977462E+0003 3.12019386613919E+0003 3.12306846410054E+0003 3.12594499450787E+0003 + 3.12882345821062E+0003 3.13170385605833E+0003 3.13458618890084E+0003 3.13747045758807E+0003 3.14035666297015E+0003 + 3.14324480589746E+0003 3.14613488722045E+0003 3.14902690778986E+0003 3.15192086845655E+0003 3.15481677007159E+0003 + 3.15771461348621E+0003 3.16061439955187E+0003 3.16351612912017E+0003 3.16641980304290E+0003 3.16932542217205E+0003 + 3.17223298735979E+0003 3.17514249945848E+0003 3.17805395932064E+0003 3.18096736779900E+0003 3.18388272574645E+0003 + 3.18680003401608E+0003 3.18971929346117E+0003 3.19264050493516E+0003 3.19556366929170E+0003 3.19848878738461E+0003 + 3.20141586006790E+0003 3.20434488819575E+0003 3.20727587262255E+0003 3.21020881420284E+0003 3.21314371379139E+0003 + 3.21608057224308E+0003 3.21901939041307E+0003 3.22196016915663E+0003 3.22490290932924E+0003 3.22784761178656E+0003 + 3.23079427738446E+0003 3.23374290697893E+0003 3.23669350142621E+0003 3.23964606158269E+0003 3.24260058830495E+0003 + 3.24555708244977E+0003 3.24851554487409E+0003 3.25147597643505E+0003 3.25443837798994E+0003 3.25740275039630E+0003 + 3.26036909451179E+0003 3.26333741119430E+0003 3.26630770130187E+0003 3.26927996569275E+0003 3.27225420522534E+0003 + 3.27523042075826E+0003 3.27820861315031E+0003 3.28118878326044E+0003 3.28417093194783E+0003 3.28715506007180E+0003 + 3.29014116849189E+0003 3.29312925806780E+0003 3.29611932965944E+0003 3.29911138412687E+0003 3.30210542233035E+0003 + 3.30510144513034E+0003 3.30809945338747E+0003 3.31109944796254E+0003 3.31410142971655E+0003 3.31710539951068E+0003 + 3.32011135820630E+0003 3.32311930666496E+0003 3.32612924574839E+0003 3.32914117631850E+0003 3.33215509923743E+0003 + 3.33517101536740E+0003 3.33818892557093E+0003 3.34120883071065E+0003 3.34423073164940E+0003 3.34725462925019E+0003 + 3.35028052437626E+0003 3.35330841789096E+0003 3.35633831065790E+0003 3.35937020354079E+0003 3.36240409740361E+0003 + 3.36543999311047E+0003 3.36847789152568E+0003 3.37151779351372E+0003 3.37455969993929E+0003 3.37760361166724E+0003 + 3.38064952956261E+0003 3.38369745449062E+0003 3.38674738731670E+0003 3.38979932890643E+0003 3.39285328012562E+0003 + 3.39590924184021E+0003 3.39896721491634E+0003 3.40202720022036E+0003 3.40508919861878E+0003 3.40815321097830E+0003 + 3.41121923816580E+0003 3.41428728104835E+0003 3.41735734049321E+0003 3.42042941736781E+0003 3.42350351253976E+0003 + 3.42657962687688E+0003 3.42965776124714E+0003 3.43273791651873E+0003 3.43582009356000E+0003 3.43890429323950E+0003 + 3.44199051642593E+0003 3.44507876398820E+0003 3.44816903679541E+0003 3.45126133571686E+0003 3.45435566162196E+0003 + 3.45745201538039E+0003 3.46055039786197E+0003 3.46365080993670E+0003 3.46675325247478E+0003 3.46985772634659E+0003 + 3.47296423242270E+0003 3.47607277157386E+0003 3.47918334467098E+0003 3.48229595258520E+0003 3.48541059618780E+0003 + 3.48852727635028E+0003 3.49164599394429E+0003 3.49476674984168E+0003 3.49788954491450E+0003 3.50101438003498E+0003 + 3.50414125607548E+0003 3.50727017390863E+0003 3.51040113440716E+0003 3.51353413844406E+0003 3.51666918689247E+0003 + 3.51980628062567E+0003 3.52294542051722E+0003 3.52608660744077E+0003 3.52922984227023E+0003 3.53237512587962E+0003 + 3.53552245914321E+0003 3.53867184293541E+0003 3.54182327813084E+0003 3.54497676560430E+0003 3.54813230623076E+0003 + 3.55128990088537E+0003 3.55444955044350E+0003 3.55761125578067E+0003 3.56077501777258E+0003 3.56394083729516E+0003 + 3.56710871522447E+0003 3.57027865243678E+0003 3.57345064980854E+0003 3.57662470821636E+0003 3.57980082853712E+0003 + 3.58297901164775E+0003 3.58615925842548E+0003 3.58934156974769E+0003 3.59252594649189E+0003 3.59571238953585E+0003 + 3.59890089975748E+0003 3.60209147803488E+0003 3.60528412524635E+0003 3.60847884227038E+0003 3.61167562998558E+0003 + 3.61487448927085E+0003 3.61807542100517E+0003 3.62127842606777E+0003 3.62448350533803E+0003 3.62769065969555E+0003 + 3.63089989002006E+0003 3.63411119719153E+0003 3.63732458209009E+0003 3.64054004559603E+0003 3.64375758858988E+0003 + 3.64697721195228E+0003 3.65019891656414E+0003 3.65342270330649E+0003 3.65664857306055E+0003 3.65987652670775E+0003 + 3.66310656512967E+0003 3.66633868920814E+0003 3.66957289982510E+0003 3.67280919786268E+0003 3.67604758420327E+0003 + 3.67928805972935E+0003 3.68253062532363E+0003 3.68577528186901E+0003 3.68902203024856E+0003 3.69227087134555E+0003 + 3.69552180604338E+0003 3.69877483522572E+0003 3.70202995977636E+0003 3.70528718057929E+0003 3.70854649851868E+0003 + 3.71180791447889E+0003 3.71507142934449E+0003 3.71833704400017E+0003 3.72160475933089E+0003 3.72487457622169E+0003 + 3.72814649555790E+0003 3.73142051822496E+0003 3.73469664510852E+0003 3.73797487709441E+0003 3.74125521506865E+0003 + 3.74453765991743E+0003 3.74782221252716E+0003 3.75110887378439E+0003 3.75439764457587E+0003 3.75768852578854E+0003 + 3.76098151830951E+0003 3.76427662302610E+0003 3.76757384082580E+0003 3.77087317259626E+0003 3.77417461922536E+0003 + 3.77747818160111E+0003 3.78078386061176E+0003 3.78409165714570E+0003 3.78740157209153E+0003 3.79071360633805E+0003 + 3.79402776077418E+0003 3.79734403628908E+0003 3.80066243377206E+0003 3.80398295411265E+0003 3.80730559820055E+0003 + 3.81063036692564E+0003 3.81395726117797E+0003 3.81728628184778E+0003 3.82061742982552E+0003 3.82395070600181E+0003 + 3.82728611126742E+0003 3.83062364651335E+0003 3.83396331263077E+0003 3.83730511051104E+0003 3.84064904104567E+0003 + 3.84399510512639E+0003 3.84734330364512E+0003 3.85069363749391E+0003 3.85404610756507E+0003 3.85740071475103E+0003 + 3.86075745994444E+0003 3.86411634403811E+0003 3.86747736792505E+0003 3.87084053249846E+0003 3.87420583865172E+0003 + 3.87757328727837E+0003 3.88094287927216E+0003 3.88431461552700E+0003 3.88768849693703E+0003 3.89106452439656E+0003 + 3.89444269879999E+0003 3.89782302104206E+0003 3.90120549201759E+0003 3.90459011262160E+0003 3.90797688374932E+0003 + 3.91136580629613E+0003 3.91475688115761E+0003 3.91815010922957E+0003 3.92154549140790E+0003 3.92494302858879E+0003 + 3.92834272166853E+0003 3.93174457154361E+0003 3.93514857911072E+0003 3.93855474526674E+0003 3.94196307090874E+0003 + 3.94537355693392E+0003 3.94878620423973E+0003 3.95220101372376E+0003 3.95561798628381E+0003 3.95903712281783E+0003 + 3.96245842422402E+0003 3.96588189140071E+0003 3.96930752524640E+0003 3.97273532665979E+0003 3.97616529653982E+0003 + 3.97959743578554E+0003 3.98303174529623E+0003 3.98646822597130E+0003 3.98990687871043E+0003 3.99334770441337E+0003 + 3.99679070398017E+0003 4.00023587831098E+0003 4.00368322830617E+0003 4.00713275486631E+0003 4.01058445889211E+0003 + 4.01403834128449E+0003 4.01749440294456E+0003 4.02095264477360E+0003 4.02441306767310E+0003 4.02787567254468E+0003 + 4.03134046029018E+0003 4.03480743181163E+0003 4.03827658801124E+0003 4.04174792979140E+0003 4.04522145805466E+0003 + 4.04869717370381E+0003 4.05217507764175E+0003 4.05565517077164E+0003 4.05913745399679E+0003 4.06262192822067E+0003 + 4.06610859434696E+0003 4.06959745327952E+0003 4.07308850592240E+0003 4.07658175317984E+0003 4.08007719595622E+0003 + 4.08357483515616E+0003 4.08707467168445E+0003 4.09057670644602E+0003 4.09408094034605E+0003 4.09758737428988E+0003 + 4.10109600918297E+0003 4.10460684593108E+0003 4.10811988544005E+0003 4.11163512861598E+0003 4.11515257636511E+0003 + 4.11867222959386E+0003 4.12219408920888E+0003 4.12571815611696E+0003 4.12924443122509E+0003 4.13277291544042E+0003 + 4.13630360967034E+0003 4.13983651482236E+0003 4.14337163180423E+0003 4.14690896152383E+0003 4.15044850488927E+0003 + 4.15399026280884E+0003 4.15753423619095E+0003 4.16108042594430E+0003 4.16462883297766E+0003 4.16817945820010E+0003 + 4.17173230252077E+0003 4.17528736684907E+0003 4.17884465209457E+0003 4.18240415916700E+0003 4.18596588897629E+0003 + 4.18952984243257E+0003 4.19309602044614E+0003 4.19666442392746E+0003 4.20023505378722E+0003 4.20380791093626E+0003 + 4.20738299628562E+0003 4.21096031074651E+0003 4.21453985523033E+0003 4.21812163064870E+0003 4.22170563791334E+0003 + 4.22529187793624E+0003 4.22888035162953E+0003 4.23247105990554E+0003 4.23606400367677E+0003 4.23965918385590E+0003 + 4.24325660135580E+0003 4.24685625708955E+0003 4.25045815197039E+0003 4.25406228691174E+0003 4.25766866282720E+0003 + 4.26127728063059E+0003 4.26488814123587E+0003 4.26850124555719E+0003 4.27211659450893E+0003 4.27573418900558E+0003 + 4.27935402996191E+0003 4.28297611829275E+0003 4.28660045491322E+0003 4.29022704073859E+0003 4.29385587668431E+0003 + 4.29748696366598E+0003 4.30112030259945E+0003 4.30475589440073E+0003 4.30839373998599E+0003 4.31203384027158E+0003 + 4.31567619617407E+0003 4.31932080861021E+0003 4.32296767849691E+0003 4.32661680675130E+0003 4.33026819429063E+0003 + 4.33392184203240E+0003 4.33757775089424E+0003 4.34123592179403E+0003 4.34489635564975E+0003 4.34855905337966E+0003 + 4.35222401590212E+0003 4.35589124413571E+0003 4.35956073899921E+0003 4.36323250141153E+0003 4.36690653229184E+0003 + 4.37058283255943E+0003 4.37426140313379E+0003 4.37794224493461E+0003 4.38162535888176E+0003 4.38531074589529E+0003 + 4.38899840689544E+0003 4.39268834280259E+0003 4.39638055453739E+0003 4.40007504302060E+0003 4.40377180917317E+0003 + 4.40747085391627E+0003 4.41117217817125E+0003 4.41487578285961E+0003 4.41858166890308E+0003 4.42228983722352E+0003 + 4.42600028874300E+0003 4.42971302438385E+0003 4.43342804506837E+0003 4.43714535171933E+0003 4.44086494525945E+0003 + 4.44458682661173E+0003 4.44831099669941E+0003 4.45203745644576E+0003 4.45576620677439E+0003 4.45949724860900E+0003 + 4.46323058287351E+0003 4.46696621049200E+0003 4.47070413238880E+0003 4.47444434948829E+0003 4.47818686271516E+0003 + 4.48193167299429E+0003 4.48567878125064E+0003 4.48942818840942E+0003 4.49317989539598E+0003 4.49693390313597E+0003 + 4.50069021255511E+0003 4.50444882457927E+0003 4.50820974013467E+0003 4.51197296014756E+0003 4.51573848554443E+0003 + 4.51950631725193E+0003 4.52327645619694E+0003 4.52704890330652E+0003 4.53082365950786E+0003 4.53460072572839E+0003 + 4.53838010289570E+0003 4.54216179193753E+0003 4.54594579378188E+0003 4.54973210935686E+0003 4.55352073959085E+0003 + 4.55731168541231E+0003 4.56110494774993E+0003 4.56490052753265E+0003 4.56869842568948E+0003 4.57249864314969E+0003 + 4.57630118084268E+0003 4.58010603969810E+0003 4.58391322064573E+0003 4.58772272461557E+0003 4.59153455253778E+0003 + 4.59534870534269E+0003 4.59916518396085E+0003 4.60298398932299E+0003 4.60680512235999E+0003 4.61062858400297E+0003 + 4.61445437518318E+0003 4.61828249683203E+0003 4.62211294988125E+0003 4.62594573526259E+0003 4.62978085390810E+0003 + 4.63361830674992E+0003 4.63745809472050E+0003 4.64130021875232E+0003 4.64514467977817E+0003 4.64899147873095E+0003 + 4.65284061654381E+0003 4.65669209415000E+0003 4.66054591248301E+0003 4.66440207247651E+0003 4.66826057506433E+0003 + 4.67212142118052E+0003 4.67598461175931E+0003 4.67985014773507E+0003 4.68371803004236E+0003 4.68758825961599E+0003 + 4.69146083739088E+0003 4.69533576430217E+0003 4.69921304128523E+0003 4.70309266927544E+0003 4.70697464920861E+0003 + 4.71085898202055E+0003 4.71474566864733E+0003 4.71863471002517E+0003 4.72252610709053E+0003 4.72641986077995E+0003 + 4.73031597203028E+0003 4.73421444177846E+0003 4.73811527096167E+0003 4.74201846051721E+0003 4.74592401138265E+0003 + 4.74983192449569E+0003 4.75374220079421E+0003 4.75765484121631E+0003 4.76156984670022E+0003 4.76548721818441E+0003 + 4.76940695660748E+0003 4.77332906290828E+0003 4.77725353802578E+0003 4.78118038289917E+0003 4.78510959846782E+0003 + 4.78904118567126E+0003 4.79297514544924E+0003 4.79691147874168E+0003 4.80085018648866E+0003 4.80479126963048E+0003 + 4.80873472910761E+0003 4.81268056586072E+0003 4.81662878083059E+0003 4.82057937495831E+0003 4.82453234918501E+0003 + 4.82848770445216E+0003 4.83244544170127E+0003 4.83640556187413E+0003 4.84036806591264E+0003 4.84433295475897E+0003 + 4.84830022935540E+0003 4.85226989064444E+0003 4.85624193956876E+0003 4.86021637707121E+0003 4.86419320409486E+0003 + 4.86817242158289E+0003 4.87215403047878E+0003 4.87613803172605E+0003 4.88012442626852E+0003 4.88411321505018E+0003 + 4.88810439901512E+0003 4.89209797910771E+0003 4.89609395627248E+0003 4.90009233145406E+0003 4.90409310559745E+0003 + 4.90809627964758E+0003 4.91210185454981E+0003 4.91610983124950E+0003 4.92012021069233E+0003 4.92413299382408E+0003 + 4.92814818159073E+0003 4.93216577493846E+0003 4.93618577481361E+0003 4.94020818216274E+0003 4.94423299793256E+0003 + 4.94826022306998E+0003 4.95228985852211E+0003 4.95632190523618E+0003 4.96035636415970E+0003 4.96439323624028E+0003 + 4.96843252242573E+0003 4.97247422366413E+0003 4.97651834090361E+0003 4.98056487509259E+0003 4.98461382717961E+0003 + 4.98866519811341E+0003 4.99271898884293E+0003 4.99677520031732E+0003 5.00083383348580E+0003 5.00489488929791E+0003 + 5.00895836870332E+0003 5.01302427265186E+0003 5.01709260209357E+0003 5.02116335797864E+0003 5.02523654125753E+0003 + 5.02931215288080E+0003 5.03339019379921E+0003 5.03747066496372E+0003 5.04155356732546E+0003 5.04563890183579E+0003 + 5.04972666944616E+0003 5.05381687110831E+0003 5.05790950777409E+0003 5.06200458039556E+0003 5.06610208992493E+0003 + 5.07020203731471E+0003 5.07430442351743E+0003 5.07840924948591E+0003 5.08251651617316E+0003 5.08662622453229E+0003 + 5.09073837551667E+0003 5.09485297007982E+0003 5.09897000917548E+0003 5.10308949375752E+0003 5.10721142478002E+0003 + 5.11133580319729E+0003 5.11546262996372E+0003 5.11959190603397E+0003 5.12372363236286E+0003 5.12785780990538E+0003 + 5.13199443961676E+0003 5.13613352245231E+0003 5.14027505936760E+0003 5.14441905131839E+0003 5.14856549926057E+0003 + 5.15271440415026E+0003 5.15686576694377E+0003 5.16101958859756E+0003 5.16517587006824E+0003 5.16933461231273E+0003 + 5.17349581628799E+0003 5.17765948295126E+0003 5.18182561325995E+0003 5.18599420817160E+0003 5.19016526864396E+0003 + 5.19433879563503E+0003 5.19851479010291E+0003 5.20269325300591E+0003 5.20687418530251E+0003 5.21105758795145E+0003 + 5.21524346191152E+0003 5.21943180814183E+0003 5.22362262760158E+0003 5.22781592125016E+0003 5.23201169004723E+0003 + 5.23620993495255E+0003 5.24041065692608E+0003 5.24461385692797E+0003 5.24881953591858E+0003 5.25302769485841E+0003 + 5.25723833470815E+0003 5.26145145642871E+0003 5.26566706098117E+0003 5.26988514932679E+0003 5.27410572242699E+0003 + 5.27832878124338E+0003 5.28255432673778E+0003 5.28678235987222E+0003 5.29101288160883E+0003 5.29524589290998E+0003 + 5.29948139473821E+0003 5.30371938805628E+0003 5.30795987382706E+0003 5.31220285301367E+0003 5.31644832657940E+0003 + 5.32069629548768E+0003 5.32494676070217E+0003 5.32919972318670E+0003 5.33345518390530E+0003 5.33771314382220E+0003 + 5.34197360390170E+0003 5.34623656510843E+0003 5.35050202840709E+0003 5.35476999476270E+0003 5.35904046514028E+0003 + 5.36331344050521E+0003 5.36758892182296E+0003 5.37186691005917E+0003 5.37614740617972E+0003 5.38043041115064E+0003 + 5.38471592593817E+0003 5.38900395150870E+0003 5.39329448882880E+0003 5.39758753886528E+0003 5.40188310258513E+0003 + 5.40618118095541E+0003 5.41048177494349E+0003 5.41478488551687E+0003 5.41909051364328E+0003 5.42339866029056E+0003 + 5.42770932642679E+0003 5.43202251302020E+0003 5.43633822103924E+0003 5.44065645145252E+0003 5.44497720522885E+0003 + 5.44930048333717E+0003 5.45362628674670E+0003 5.45795461642675E+0003 5.46228547334687E+0003 5.46661885847677E+0003 + 5.47095477278635E+0003 5.47529321724572E+0003 5.47963419282515E+0003 5.48397770049506E+0003 5.48832374122612E+0003 + 5.49267231598914E+0003 5.49702342575513E+0003 5.50137707149526E+0003 5.50573325418093E+0003 5.51009197478367E+0003 + 5.51445323427526E+0003 5.51881703362761E+0003 5.52318337381280E+0003 5.52755225580317E+0003 5.53192368057116E+0003 + 5.53629764908945E+0003 5.54067416233092E+0003 5.54505322126852E+0003 5.54943482687551E+0003 5.55381898012532E+0003 + 5.55820568199147E+0003 5.56259493344772E+0003 5.56698673546812E+0003 5.57138108902668E+0003 5.57577799509779E+0003 + 5.58017745465595E+0003 5.58457946867580E+0003 5.58898403813224E+0003 5.59339116400034E+0003 5.59780084725528E+0003 + 5.60221308887254E+0003 5.60662788982769E+0003 5.61104525109656E+0003 5.61546517365507E+0003 5.61988765847943E+0003 + 5.62431270654593E+0003 5.62874031883111E+0003 5.63317049631172E+0003 5.63760323996458E+0003 5.64203855076684E+0003 + 5.64647642969570E+0003 5.65091687772864E+0003 5.65535989584327E+0003 5.65980548501742E+0003 5.66425364622909E+0003 + 5.66870438045643E+0003 5.67315768867783E+0003 5.67761357187184E+0003 5.68207203101717E+0003 5.68653306709277E+0003 + 5.69099668107771E+0003 5.69546287395127E+0003 5.69993164669297E+0003 5.70440300028239E+0003 5.70887693569940E+0003 + 5.71335345392405E+0003 5.71783255593647E+0003 5.72231424271713E+0003 5.72679851524657E+0003 5.73128537450552E+0003 + 5.73577482147494E+0003 5.74026685713598E+0003 5.74476148246990E+0003 5.74925869845822E+0003 5.75375850608259E+0003 + 5.75826090632493E+0003 5.76276590016721E+0003 5.76727348859169E+0003 5.77178367258080E+0003 5.77629645311710E+0003 + 5.78081183118341E+0003 5.78532980776265E+0003 5.78985038383800E+0003 5.79437356039279E+0003 5.79889933841050E+0003 + 5.80342771887487E+0003 5.80795870276976E+0003 5.81249229107924E+0003 5.81702848478756E+0003 5.82156728487917E+0003 + 5.82610869233869E+0003 5.83065270815088E+0003 5.83519933330078E+0003 5.83974856877355E+0003 5.84430041555451E+0003 + 5.84885487462925E+0003 5.85341194698345E+0003 5.85797163360304E+0003 5.86253393547409E+0003 5.86709885358291E+0003 + 5.87166638891591E+0003 5.87623654245978E+0003 5.88080931520133E+0003 5.88538470812756E+0003 5.88996272222568E+0003 + 5.89454335848305E+0003 5.89912661788725E+0003 5.90371250142601E+0003 5.90830101008728E+0003 5.91289214485917E+0003 + 5.91748590672994E+0003 5.92208229668811E+0003 5.92668131572235E+0003 5.93128296482151E+0003 5.93588724497461E+0003 + 5.94049415717086E+0003 5.94510370239968E+0003 5.94971588165064E+0003 5.95433069591354E+0003 5.95894814617831E+0003 + 5.96356823343506E+0003 5.96819095867420E+0003 5.97281632288614E+0003 5.97744432706160E+0003 5.98207497219152E+0003 + 5.98670825926684E+0003 5.99134418927888E+0003 5.99598276321906E+0003 6.00062398207896E+0003 6.00526784685040E+0003 + 6.00991435852535E+0003 6.01456351809597E+0003 6.01921532655459E+0003 6.02386978489377E+0003 6.02852689410621E+0003 + 6.03318665518478E+0003 6.03784906912260E+0003 6.04251413691293E+0003 6.04718185954921E+0003 6.05185223802507E+0003 + 6.05652527333431E+0003 6.06120096647098E+0003 6.06587931842920E+0003 6.07056033020341E+0003 6.07524400278809E+0003 + 6.07993033717807E+0003 6.08461933436817E+0003 6.08931099535356E+0003 6.09400532112952E+0003 6.09870231269147E+0003 + 6.10340197103516E+0003 6.10810429715633E+0003 6.11280929205108E+0003 6.11751695671558E+0003 6.12222729214626E+0003 + 6.12694029933964E+0003 6.13165597929251E+0003 6.13637433300185E+0003 6.14109536146470E+0003 6.14581906567847E+0003 + 6.15054544664061E+0003 6.15527450534880E+0003 6.16000624280090E+0003 6.16474065999496E+0003 6.16947775792921E+0003 + 6.17421753760208E+0003 6.17896000001216E+0003 6.18370514615825E+0003 6.18845297703928E+0003 6.19320349365445E+0003 + 6.19795669700307E+0003 6.20271258808463E+0003 6.20747116789893E+0003 6.21223243744575E+0003 6.21699639772519E+0003 + 6.22176304973755E+0003 6.22653239448323E+0003 6.23130443296286E+0003 6.23607916617728E+0003 6.24085659512741E+0003 + 6.24563672081449E+0003 6.25041954423986E+0003 6.25520506640506E+0003 6.25999328831182E+0003 6.26478421096203E+0003 + 6.26957783535782E+0003 6.27437416250147E+0003 6.27917319339539E+0003 6.28397492904229E+0003 6.28877937044499E+0003 + 6.29358651860643E+0003 6.29839637452991E+0003 6.30320893921878E+0003 6.30802421367660E+0003 6.31284219890709E+0003 + 6.31766289591425E+0003 6.32248630570214E+0003 6.32731242927509E+0003 6.33214126763758E+0003 6.33697282179430E+0003 + 6.34180709275007E+0003 6.34664408150996E+0003 6.35148378907915E+0003 6.35632621646310E+0003 6.36117136466739E+0003 + 6.36601923469776E+0003 6.37086982756018E+0003 6.37572314426083E+0003 6.38057918580600E+0003 6.38543795320220E+0003 + 6.39029944745613E+0003 6.39516366957467E+0003 6.40003062056488E+0003 6.40490030143400E+0003 6.40977271318949E+0003 + 6.41464785683894E+0003 6.41952573339014E+0003 6.42440634385108E+0003 6.42928968922995E+0003 6.43417577053505E+0003 + 6.43906458877497E+0003 6.44395614495836E+0003 6.44885044009420E+0003 6.45374747519153E+0003 6.45864725125961E+0003 + 6.46354976930791E+0003 6.46845503034607E+0003 6.47336303538393E+0003 6.47827378543146E+0003 6.48318728149886E+0003 + 6.48810352459652E+0003 6.49302251573496E+0003 6.49794425592494E+0003 6.50286874617744E+0003 6.50779598750349E+0003 + 6.51272598091443E+0003 6.51765872742170E+0003 6.52259422803699E+0003 6.52753248377216E+0003 6.53247349563918E+0003 + 6.53741726465031E+0003 6.54236379181793E+0003 6.54731307815462E+0003 6.55226512467320E+0003 6.55721993238652E+0003 + 6.56217750230779E+0003 6.56713783545030E+0003 6.57210093282754E+0003 6.57706679545321E+0003 6.58203542434117E+0003 + 6.58700682050548E+0003 6.59198098496039E+0003 6.59695791872029E+0003 6.60193762279979E+0003 6.60692009821370E+0003 + 6.61190534597698E+0003 6.61689336710479E+0003 6.62188416261245E+0003 6.62687773351549E+0003 6.63187408082964E+0003 + 6.63687320557078E+0003 6.64187510875500E+0003 6.64687979139852E+0003 6.65188725451783E+0003 6.65689749912954E+0003 + 6.66191052625047E+0003 6.66692633689760E+0003 6.67194493208808E+0003 6.67696631283934E+0003 6.68199048016893E+0003 + 6.68701743509450E+0003 6.69204717863405E+0003 6.69707971180562E+0003 6.70211503562753E+0003 6.70715315111823E+0003 + 6.71219405929639E+0003 6.71723776118083E+0003 6.72228425779057E+0003 6.72733355014483E+0003 6.73238563926297E+0003 + 6.73744052616457E+0003 6.74249821186940E+0003 6.74755869739740E+0003 6.75262198376868E+0003 6.75768807200354E+0003 + 6.76275696312248E+0003 6.76782865814619E+0003 6.77290315809549E+0003 6.77798046399147E+0003 6.78306057685534E+0003 + 6.78814349770849E+0003 6.79322922757253E+0003 6.79831776746927E+0003 6.80340911842062E+0003 6.80850328144876E+0003 + 6.81360025757599E+0003 6.81870004782488E+0003 6.82380265321808E+0003 6.82890807477848E+0003 6.83401631352915E+0003 + 6.83912737049337E+0003 6.84424124669451E+0003 6.84935794315625E+0003 6.85447746090237E+0003 6.85959980095686E+0003 + 6.86472496434387E+0003 6.86985295208778E+0003 6.87498376521312E+0003 6.88011740474463E+0003 6.88525387170716E+0003 + 6.89039316712585E+0003 6.89553529202598E+0003 6.90068024743296E+0003 6.90582803437251E+0003 6.91097865387036E+0003 + 6.91613210695259E+0003 6.92128839464535E+0003 6.92644751797506E+0003 6.93160947796826E+0003 6.93677427565170E+0003 + 6.94194191205229E+0003 6.94711238819716E+0003 6.95228570511364E+0003 6.95746186382916E+0003 6.96264086537139E+0003 + 6.96782271076822E+0003 6.97300740104764E+0003 6.97819493723789E+0003 6.98338532036738E+0003 6.98857855146464E+0003 + 6.99377463155851E+0003 6.99897356167795E+0003 7.00417534285202E+0003 7.00937997611008E+0003 7.01458746248165E+0003 + 7.01979780299641E+0003 7.02501099868424E+0003 7.03022705057518E+0003 7.03544595969947E+0003 7.04066772708757E+0003 + 7.04589235377005E+0003 7.05111984077770E+0003 7.05635018914152E+0003 7.06158339989267E+0003 7.06681947406247E+0003 + 7.07205841268248E+0003 7.07730021678441E+0003 7.08254488740014E+0003 7.08779242556177E+0003 7.09304283230151E+0003 + 7.09829610865189E+0003 7.10355225564548E+0003 7.10881127431511E+0003 7.11407316569382E+0003 7.11933793081474E+0003 + 7.12460557071128E+0003 7.12987608641695E+0003 7.13514947896553E+0003 7.14042574939091E+0003 7.14570489872723E+0003 + 7.15098692800872E+0003 7.15627183826989E+0003 7.16155963054539E+0003 7.16685030587007E+0003 7.17214386527897E+0003 + 7.17744030980724E+0003 7.18273964049030E+0003 7.18804185836374E+0003 7.19334696446332E+0003 7.19865495982495E+0003 + 7.20396584548480E+0003 7.20927962247914E+0003 7.21459629184451E+0003 7.21991585461756E+0003 7.22523831183519E+0003 + 7.23056366453439E+0003 7.23589191375242E+0003 7.24122306052670E+0003 7.24655710589483E+0003 7.25189405089458E+0003 + 7.25723389656392E+0003 7.26257664394102E+0003 7.26792229406421E+0003 7.27327084797200E+0003 7.27862230670310E+0003 + 7.28397667129636E+0003 7.28933394279092E+0003 7.29469412222598E+0003 7.30005721064098E+0003 7.30542320907557E+0003 + 7.31079211856957E+0003 7.31616394016294E+0003 7.32153867489584E+0003 7.32691632380868E+0003 7.33229688794198E+0003 + 7.33768036833643E+0003 7.34306676603296E+0003 7.34845608207269E+0003 7.35384831749690E+0003 7.35924347334703E+0003 + 7.36464155066473E+0003 7.37004255049182E+0003 7.37544647387035E+0003 7.38085332184250E+0003 7.38626309545062E+0003 + 7.39167579573733E+0003 7.39709142374534E+0003 7.40250998051761E+0003 7.40793146709724E+0003 7.41335588452754E+0003 + 7.41878323385199E+0003 7.42421351611428E+0003 7.42964673235826E+0003 7.43508288362791E+0003 7.44052197096754E+0003 + 7.44596399542151E+0003 7.45140895803440E+0003 7.45685685985102E+0003 7.46230770191629E+0003 7.46776148527538E+0003 + 7.47321821097360E+0003 7.47867788005645E+0003 7.48414049356966E+0003 7.48960605255906E+0003 7.49507455807074E+0003 + 7.50054601115096E+0003 7.50602041284613E+0003 7.51149776420287E+0003 7.51697806626793E+0003 7.52246132008836E+0003 + 7.52794752671130E+0003 7.53343668718409E+0003 7.53892880255428E+0003 7.54442387386957E+0003 7.54992190217788E+0003 + 7.55542288852728E+0003 7.56092683396602E+0003 7.56643373954260E+0003 7.57194360630561E+0003 7.57745643530390E+0003 + 7.58297222758649E+0003 7.58849098420251E+0003 7.59401270620141E+0003 7.59953739463269E+0003 7.60506505054611E+0003 + 7.61059567499158E+0003 7.61612926901922E+0003 7.62166583367935E+0003 7.62720537002239E+0003 7.63274787909904E+0003 + 7.63829336196014E+0003 7.64384181965671E+0003 7.64939325323993E+0003 7.65494766376127E+0003 7.66050505227226E+0003 + 7.66606541982468E+0003 7.67162876747048E+0003 7.67719509626177E+0003 7.68276440725087E+0003 7.68833670149032E+0003 + 7.69391198003278E+0003 7.69949024393110E+0003 7.70507149423835E+0003 7.71065573200774E+0003 7.71624295829273E+0003 + 7.72183317414690E+0003 7.72742638062406E+0003 7.73302257877815E+0003 7.73862176966334E+0003 7.74422395433398E+0003 + 7.74982913384457E+0003 7.75543730924984E+0003 7.76104848160465E+0003 7.76666265196413E+0003 7.77227982138350E+0003 + 7.77789999091820E+0003 7.78352316162387E+0003 7.78914933455635E+0003 7.79477851077158E+0003 7.80041069132574E+0003 + 7.80604587727526E+0003 7.81168406967662E+0003 7.81732526958657E+0003 7.82296947806205E+0003 7.82861669616013E+0003 + 7.83426692493810E+0003 7.83992016545344E+0003 7.84557641876377E+0003 7.85123568592696E+0003 7.85689796800102E+0003 + 7.86256326604412E+0003 7.86823158111471E+0003 7.87390291427131E+0003 7.87957726657268E+0003 7.88525463907777E+0003 + 7.89093503284572E+0003 7.89661844893577E+0003 7.90230488840750E+0003 7.90799435232054E+0003 7.91368684173473E+0003 + 7.91938235771013E+0003 7.92508090130698E+0003 7.93078247358570E+0003 7.93648707560684E+0003 7.94219470843118E+0003 + 7.94790537311973E+0003 7.95361907073361E+0003 7.95933580233413E+0003 7.96505556898285E+0003 7.97077837174143E+0003 + 7.97650421167174E+0003 7.98223308983591E+0003 7.98796500729612E+0003 7.99369996511484E+0003 7.99943796435469E+0003 + 8.00517900607844E+0003 8.01092309134913E+0003 8.01667022122987E+0003 8.02242039678407E+0003 8.02817361907521E+0003 + 8.03392988916706E+0003 8.03968920812350E+0003 8.04545157700863E+0003 8.05121699688672E+0003 8.05698546882221E+0003 + 8.06275699387977E+0003 8.06853157312420E+0003 8.07430920762054E+0003 8.08008989843396E+0003 8.08587364662984E+0003 + 8.09166045327374E+0003 8.09745031943142E+0003 8.10324324616879E+0003 8.10903923455196E+0003 8.11483828564726E+0003 + 8.12064040052114E+0003 8.12644558024027E+0003 8.13225382587148E+0003 8.13806513848186E+0003 8.14387951913859E+0003 + 8.14969696890906E+0003 8.15551748886086E+0003 8.16134108006179E+0003 8.16716774357976E+0003 8.17299748048291E+0003 + 8.17883029183961E+0003 8.18466617871828E+0003 8.19050514218771E+0003 8.19634718331671E+0003 8.20219230317432E+0003 + 8.20804050282983E+0003 8.21389178335264E+0003 8.21974614581239E+0003 8.22560359127878E+0003 8.23146412082188E+0003 + 8.23732773551182E+0003 8.24319443641893E+0003 8.24906422461376E+0003 8.25493710116699E+0003 8.26081306714956E+0003 + 8.26669212363254E+0003 8.27257427168716E+0003 8.27845951238491E+0003 8.28434784679738E+0003 8.29023927599640E+0003 + 8.29613380105399E+0003 8.30203142304232E+0003 8.30793214303376E+0003 8.31383596210086E+0003 8.31974288131636E+0003 + 8.32565290175317E+0003 8.33156602448437E+0003 8.33748225058330E+0003 8.34340158112341E+0003 8.34932401717835E+0003 + 8.35524955982198E+0003 8.36117821012827E+0003 8.36710996917148E+0003 8.37304483802596E+0003 8.37898281776634E+0003 + 8.38492390946735E+0003 8.39086811420388E+0003 8.39681543305113E+0003 8.40276586708440E+0003 8.40871941737918E+0003 + 8.41467608501113E+0003 8.42063587105612E+0003 8.42659877659020E+0003 8.43256480268961E+0003 8.43853395043075E+0003 + 8.44450622089021E+0003 8.45048161514482E+0003 8.45646013427150E+0003 8.46244177934740E+0003 8.46842655144990E+0003 + 8.47441445165644E+0003 8.48040548104481E+0003 8.48639964069286E+0003 8.49239693167865E+0003 8.49839735508042E+0003 + 8.50440091197663E+0003 8.51040760344590E+0003 8.51641743056707E+0003 8.52243039441906E+0003 8.52844649608110E+0003 + 8.53446573663253E+0003 8.54048811715288E+0003 8.54651363872188E+0003 8.55254230241946E+0003 8.55857410932571E+0003 + 8.56460906052090E+0003 8.57064715708549E+0003 8.57668840010010E+0003 8.58273279064559E+0003 8.58878032980299E+0003 + 8.59483101865349E+0003 8.60088485827846E+0003 8.60694184975943E+0003 8.61300199417818E+0003 8.61906529261667E+0003 + 8.62513174615699E+0003 8.63120135588147E+0003 8.63727412287252E+0003 8.64335004821290E+0003 8.64942913298540E+0003 + 8.65551137827308E+0003 8.66159678515920E+0003 8.66768535472709E+0003 8.67377708806039E+0003 8.67987198624286E+0003 + 8.68597005035845E+0003 8.69207128149130E+0003 8.69817568072576E+0003 8.70428324914631E+0003 8.71039398783764E+0003 + 8.71650789788466E+0003 8.72262498037242E+0003 8.72874523638612E+0003 8.73486866701127E+0003 8.74099527333341E+0003 + 8.74712505643837E+0003 8.75325801741212E+0003 8.75939415734082E+0003 8.76553347731085E+0003 8.77167597840869E+0003 + 8.77782166172111E+0003 8.78397052833498E+0003 8.79012257933739E+0003 8.79627781581563E+0003 8.80243623885709E+0003 + 8.80859784954946E+0003 8.81476264898054E+0003 8.82093063823837E+0003 8.82710181841110E+0003 8.83327619058707E+0003 + 8.83945375585493E+0003 8.84563451530333E+0003 8.85181847002124E+0003 8.85800562109778E+0003 8.86419596962223E+0003 + 8.87038951668402E+0003 8.87658626337285E+0003 8.88278621077855E+0003 8.88898935999119E+0003 8.89519571210098E+0003 + 8.90140526819820E+0003 8.90761802937355E+0003 8.91383399671776E+0003 8.92005317132179E+0003 8.92627555427674E+0003 + 8.93250114667391E+0003 8.93872994960485E+0003 8.94496196416127E+0003 8.95119719143496E+0003 8.95743563251798E+0003 + 8.96367728850260E+0003 8.96992216048123E+0003 8.97617024954649E+0003 8.98242155679113E+0003 8.98867608330814E+0003 + 8.99493383019064E+0003 9.00119479853203E+0003 9.00745898942578E+0003 9.01372640396564E+0003 9.01999704324550E+0003 + 9.02627090835937E+0003 9.03254800040160E+0003 9.03882832046653E+0003 9.04511186964890E+0003 9.05139864904345E+0003 + 9.05768865974517E+0003 9.06398190284929E+0003 9.07027837945109E+0003 9.07657809064620E+0003 9.08288103753033E+0003 + 9.08918722119935E+0003 9.09549664274938E+0003 9.10180930327676E+0003 9.10812520387788E+0003 9.11444434564939E+0003 + 9.12076672968818E+0003 9.12709235709123E+0003 9.13342122895576E+0003 9.13975334637916E+0003 9.14608871045899E+0003 + 9.15242732229295E+0003 9.15876918297907E+0003 9.16511429361542E+0003 9.17146265530029E+0003 9.17781426913223E+0003 + 9.18416913620988E+0003 9.19052725763209E+0003 9.19688863449790E+0003 9.20325326790653E+0003 9.20962115895742E+0003 + 9.21599230875017E+0003 9.22236671838450E+0003 9.22874438896043E+0003 9.23512532157810E+0003 9.24150951733776E+0003 + 9.24789697734005E+0003 9.25428770268556E+0003 9.26068169447522E+0003 9.26707895381008E+0003 9.27347948179136E+0003 + 9.27988327952060E+0003 9.28629034809931E+0003 9.29270068862935E+0003 9.29911430221266E+0003 9.30553118995143E+0003 + 9.31195135294799E+0003 9.31837479230495E+0003 9.32480150912495E+0003 9.33123150451096E+0003 9.33766477956598E+0003 + 9.34410133539338E+0003 9.35054117309660E+0003 9.35698429377917E+0003 9.36343069854505E+0003 9.36988038849819E+0003 + 9.37633336474279E+0003 9.38278962838325E+0003 9.38924918052406E+0003 9.39571202227005E+0003 9.40217815472609E+0003 + 9.40864757899732E+0003 9.41512029618899E+0003 9.42159630740665E+0003 9.42807561375591E+0003 9.43455821634266E+0003 + 9.44104411627293E+0003 9.44753331465287E+0003 9.45402581258895E+0003 9.46052161118775E+0003 9.46702071155598E+0003 + 9.47352311480067E+0003 9.48002882202889E+0003 9.48653783434798E+0003 9.49305015286546E+0003 9.49956577868902E+0003 + 9.50608471292649E+0003 9.51260695668600E+0003 9.51913251107570E+0003 9.52566137720407E+0003 9.53219355617973E+0003 + 9.53872904911140E+0003 9.54526785710811E+0003 9.55180998127902E+0003 9.55835542273344E+0003 9.56490418258098E+0003 + 9.57145626193126E+0003 9.57801166189420E+0003 9.58457038357989E+0003 9.59113242809859E+0003 9.59769779656074E+0003 + 9.60426649007697E+0003 9.61083850975813E+0003 9.61741385671514E+0003 9.62399253205930E+0003 9.63057453690186E+0003 + 9.63715987235446E+0003 9.64374853952877E+0003 9.65034053953673E+0003 9.65693587349047E+0003 9.66353454250224E+0003 + 9.67013654768451E+0003 9.67674189014995E+0003 9.68335057101141E+0003 9.68996259138190E+0003 9.69657795237462E+0003 + 9.70319665510296E+0003 9.70981870068054E+0003 9.71644409022103E+0003 9.72307282483844E+0003 9.72970490564690E+0003 + 9.73634033376069E+0003 9.74297911029425E+0003 9.74962123636238E+0003 9.75626671307982E+0003 9.76291554156173E+0003 + 9.76956772292327E+0003 9.77622325827988E+0003 9.78288214874716E+0003 9.78954439544084E+0003 9.79620999947694E+0003 + 9.80287896197161E+0003 9.80955128404117E+0003 9.81622696680215E+0003 9.82290601137123E+0003 9.82958841886523E+0003 + 9.83627419040140E+0003 9.84296332709683E+0003 9.84965583006904E+0003 9.85635170043560E+0003 9.86305093931439E+0003 + 9.86975354782323E+0003 9.87645952708056E+0003 9.88316887820448E+0003 9.88988160231369E+0003 9.89659770052691E+0003 + 9.90331717396295E+0003 9.91004002374096E+0003 9.91676625098020E+0003 9.92349585680020E+0003 9.93022884232044E+0003 + 9.93696520866099E+0003 9.94370495694166E+0003 9.95044808828278E+0003 9.95719460380462E+0003 9.96394450462775E+0003 + 9.97069779187307E+0003 9.97745446666135E+0003 9.98421453011376E+0003 9.99097798335165E+0003 9.99774482749641E+0003 + 1.00045150636697E+0004 1.00112886929935E+0004 1.00180657165898E+0004 1.00248461355807E+0004 1.00316299510888E+0004 + 1.00384171642366E+0004 1.00452077761468E+0004 1.00520017879424E+0004 1.00587992007466E+0004 1.00656000156826E+0004 + 1.00724042338741E+0004 1.00792118564446E+0004 1.00860228845182E+0004 1.00928373192187E+0004 1.00996551616704E+0004 + 1.01064764129979E+0004 1.01133010743256E+0004 1.01201291467785E+0004 1.01269606314814E+0004 1.01337955295595E+0004 + 1.01406338421383E+0004 1.01474755703432E+0004 1.01543207152998E+0004 1.01611692781343E+0004 1.01680212599725E+0004 + 1.01748766619408E+0004 1.01817354851657E+0004 1.01885977307737E+0004 1.01954633998917E+0004 1.02023324936468E+0004 + 1.02092050131659E+0004 1.02160809595767E+0004 1.02229603340065E+0004 1.02298431375832E+0004 1.02367293714347E+0004 + 1.02436190366890E+0004 1.02505121344745E+0004 1.02574086659197E+0004 1.02643086321531E+0004 1.02712120343037E+0004 + 1.02781188735004E+0004 1.02850291508726E+0004 1.02919428675494E+0004 1.02988600246607E+0004 1.03057806233361E+0004 + 1.03127046647055E+0004 1.03196321498991E+0004 1.03265630800473E+0004 1.03334974562804E+0004 1.03404352797292E+0004 + 1.03473765515246E+0004 1.03543212727976E+0004 1.03612694446794E+0004 1.03682210683015E+0004 1.03751761447954E+0004 + 1.03821346752930E+0004 1.03890966609262E+0004 1.03960621028271E+0004 1.04030310021282E+0004 1.04100033599619E+0004 + 1.04169791774609E+0004 1.04239584557582E+0004 1.04309411959867E+0004 1.04379273992799E+0004 1.04449170667710E+0004 + 1.04519101995937E+0004 1.04589067988818E+0004 1.04659068657694E+0004 1.04729104013906E+0004 1.04799174068798E+0004 + 1.04869278833715E+0004 1.04939418320004E+0004 1.05009592539015E+0004 1.05079801502098E+0004 1.05150045220606E+0004 + 1.05220323705895E+0004 1.05290636969320E+0004 1.05360985022239E+0004 1.05431367876014E+0004 1.05501785542006E+0004 + 1.05572238031579E+0004 1.05642725356098E+0004 1.05713247526931E+0004 1.05783804555448E+0004 1.05854396453019E+0004 + 1.05925023231018E+0004 1.05995684900819E+0004 1.06066381473800E+0004 1.06137112961339E+0004 1.06207879374816E+0004 + 1.06278680725613E+0004 1.06349517025115E+0004 1.06420388284708E+0004 1.06491294515779E+0004 1.06562235729717E+0004 + 1.06633211937916E+0004 1.06704223151766E+0004 1.06775269382665E+0004 1.06846350642008E+0004 1.06917466941195E+0004 + 1.06988618291626E+0004 1.07059804704703E+0004 1.07131026191832E+0004 1.07202282764418E+0004 1.07273574433868E+0004 + 1.07344901211594E+0004 1.07416263109007E+0004 1.07487660137519E+0004 1.07559092308547E+0004 1.07630559633508E+0004 + 1.07702062123820E+0004 1.07773599790906E+0004 1.07845172646186E+0004 1.07916780701087E+0004 1.07988423967034E+0004 + 1.08060102455455E+0004 1.08131816177781E+0004 1.08203565145444E+0004 1.08275349369876E+0004 1.08347168862515E+0004 + 1.08419023634797E+0004 1.08490913698161E+0004 1.08562839064050E+0004 1.08634799743904E+0004 1.08706795749171E+0004 + 1.08778827091296E+0004 1.08850893781726E+0004 1.08922995831914E+0004 1.08995133253311E+0004 1.09067306057371E+0004 + 1.09139514255549E+0004 1.09211757859305E+0004 1.09284036880096E+0004 1.09356351329385E+0004 1.09428701218634E+0004 + 1.09501086559308E+0004 1.09573507362876E+0004 1.09645963640804E+0004 1.09718455404563E+0004 1.09790982665628E+0004 + 1.09863545435470E+0004 1.09936143725567E+0004 1.10008777547396E+0004 1.10081446912437E+0004 1.10154151832171E+0004 + 1.10226892318083E+0004 1.10299668381657E+0004 1.10372480034380E+0004 1.10445327287742E+0004 1.10518210153233E+0004 + 1.10591128642345E+0004 1.10664082766574E+0004 1.10737072537415E+0004 1.10810097966367E+0004 1.10883159064929E+0004 + 1.10956255844604E+0004 1.11029388316895E+0004 1.11102556493307E+0004 1.11175760385349E+0004 1.11249000004528E+0004 + 1.11322275362357E+0004 1.11395586470348E+0004 1.11468933340015E+0004 1.11542315982876E+0004 1.11615734410448E+0004 + 1.11689188634252E+0004 1.11762678665809E+0004 1.11836204516645E+0004 1.11909766198284E+0004 1.11983363722254E+0004 + 1.12056997100085E+0004 1.12130666343307E+0004 1.12204371463454E+0004 1.12278112472061E+0004 1.12351889380664E+0004 + 1.12425702200802E+0004 1.12499550944017E+0004 1.12573435621848E+0004 1.12647356245842E+0004 1.12721312827544E+0004 + 1.12795305378502E+0004 1.12869333910264E+0004 1.12943398434385E+0004 1.13017498962415E+0004 1.13091635505910E+0004 + 1.13165808076428E+0004 1.13240016685527E+0004 1.13314261344769E+0004 1.13388542065715E+0004 1.13462858859929E+0004 + 1.13537211738978E+0004 1.13611600714431E+0004 1.13686025797856E+0004 1.13760487000827E+0004 1.13834984334915E+0004 + 1.13909517811697E+0004 1.13984087442750E+0004 1.14058693239653E+0004 1.14133335213987E+0004 1.14208013377334E+0004 + 1.14282727741280E+0004 1.14357478317410E+0004 1.14432265117314E+0004 1.14507088152580E+0004 1.14581947434802E+0004 + 1.14656842975572E+0004 1.14731774786487E+0004 1.14806742879144E+0004 1.14881747265142E+0004 1.14956787956082E+0004 + 1.15031864963569E+0004 1.15106978299205E+0004 1.15182127974598E+0004 1.15257314001357E+0004 1.15332536391091E+0004 + 1.15407795155413E+0004 1.15483090305938E+0004 1.15558421854280E+0004 1.15633789812058E+0004 1.15709194190891E+0004 + 1.15784635002401E+0004 1.15860112258210E+0004 1.15935625969945E+0004 1.16011176149231E+0004 1.16086762807697E+0004 + 1.16162385956975E+0004 1.16238045608697E+0004 1.16313741774495E+0004 1.16389474466008E+0004 1.16465243694874E+0004 + 1.16541049472730E+0004 1.16616891811220E+0004 1.16692770721986E+0004 1.16768686216675E+0004 1.16844638306933E+0004 + 1.16920627004409E+0004 1.16996652320754E+0004 1.17072714267621E+0004 1.17148812856664E+0004 1.17224948099539E+0004 + 1.17301120007905E+0004 1.17377328593422E+0004 1.17453573867751E+0004 1.17529855842557E+0004 1.17606174529504E+0004 + 1.17682529940261E+0004 1.17758922086496E+0004 1.17835350979881E+0004 1.17911816632088E+0004 1.17988319054792E+0004 + 1.18064858259670E+0004 1.18141434258400E+0004 1.18218047062663E+0004 1.18294696684140E+0004 1.18371383134515E+0004 + 1.18448106425475E+0004 1.18524866568706E+0004 1.18601663575898E+0004 1.18678497458743E+0004 1.18755368228934E+0004 + 1.18832275898166E+0004 1.18909220478135E+0004 1.18986201980540E+0004 1.19063220417082E+0004 1.19140275799463E+0004 + 1.19217368139387E+0004 1.19294497448559E+0004 1.19371663738690E+0004 1.19448867021487E+0004 1.19526107308662E+0004 + 1.19603384611928E+0004 1.19680698943001E+0004 1.19758050313599E+0004 1.19835438735439E+0004 1.19912864220243E+0004 + 1.19990326779732E+0004 1.20067826425632E+0004 1.20145363169669E+0004 1.20222937023570E+0004 1.20300547999067E+0004 + 1.20378196107889E+0004 1.20455881361772E+0004 1.20533603772450E+0004 1.20611363351661E+0004 1.20689160111144E+0004 + 1.20766994062640E+0004 1.20844865217892E+0004 1.20922773588644E+0004 1.21000719186643E+0004 1.21078702023637E+0004 + 1.21156722111376E+0004 1.21234779461612E+0004 1.21312874086101E+0004 1.21391005996595E+0004 1.21469175204854E+0004 + 1.21547381722637E+0004 1.21625625561704E+0004 1.21703906733820E+0004 1.21782225250748E+0004 1.21860581124257E+0004 + 1.21938974366113E+0004 1.22017404988087E+0004 1.22095873001953E+0004 1.22174378419482E+0004 1.22252921252453E+0004 + 1.22331501512643E+0004 1.22410119211830E+0004 1.22488774361797E+0004 1.22567466974327E+0004 1.22646197061205E+0004 + 1.22724964634217E+0004 1.22803769705153E+0004 1.22882612285804E+0004 1.22961492387961E+0004 1.23040410023419E+0004 + 1.23119365203975E+0004 1.23198357941426E+0004 1.23277388247572E+0004 1.23356456134214E+0004 1.23435561613157E+0004 + 1.23514704696206E+0004 1.23593885395167E+0004 1.23673103721849E+0004 1.23752359688066E+0004 1.23831653305626E+0004 + 1.23910984586347E+0004 1.23990353542044E+0004 1.24069760184536E+0004 1.24149204525643E+0004 1.24228686577185E+0004 + 1.24308206350988E+0004 1.24387763858877E+0004 1.24467359112679E+0004 1.24546992124224E+0004 1.24626662905341E+0004 + 1.24706371467867E+0004 1.24786117823633E+0004 1.24865901984477E+0004 1.24945723962237E+0004 1.25025583768755E+0004 + 1.25105481415870E+0004 1.25185416915430E+0004 1.25265390279277E+0004 1.25345401519261E+0004 1.25425450647232E+0004 + 1.25505537675038E+0004 1.25585662614536E+0004 1.25665825477578E+0004 1.25746026276023E+0004 1.25826265021729E+0004 + 1.25906541726556E+0004 1.25986856402367E+0004 1.26067209061026E+0004 1.26147599714400E+0004 1.26228028374355E+0004 + 1.26308495052762E+0004 1.26388999761492E+0004 1.26469542512419E+0004 1.26550123317418E+0004 1.26630742188366E+0004 + 1.26711399137142E+0004 1.26792094175627E+0004 1.26872827315703E+0004 1.26953598569255E+0004 1.27034407948170E+0004 + 1.27115255464333E+0004 1.27196141129638E+0004 1.27277064955975E+0004 1.27358026955237E+0004 1.27439027139321E+0004 + 1.27520065520122E+0004 1.27601142109542E+0004 1.27682256919480E+0004 1.27763409961840E+0004 1.27844601248526E+0004 + 1.27925830791444E+0004 1.28007098602504E+0004 1.28088404693614E+0004 1.28169749076689E+0004 1.28251131763641E+0004 + 1.28332552766385E+0004 1.28414012096840E+0004 1.28495509766926E+0004 1.28577045788562E+0004 1.28658620173672E+0004 + 1.28740232934182E+0004 1.28821884082017E+0004 1.28903573629107E+0004 1.28985301587382E+0004 1.29067067968774E+0004 + 1.29148872785218E+0004 1.29230716048649E+0004 1.29312597771004E+0004 1.29394517964226E+0004 1.29476476640252E+0004 + 1.29558473811029E+0004 1.29640509488500E+0004 1.29722583684613E+0004 1.29804696411317E+0004 1.29886847680561E+0004 + 1.29969037504299E+0004 1.30051265894486E+0004 1.30133532863076E+0004 1.30215838422029E+0004 1.30298182583305E+0004 + 1.30380565358864E+0004 1.30462986760670E+0004 1.30545446800690E+0004 1.30627945490890E+0004 1.30710482843238E+0004 + 1.30793058869707E+0004 1.30875673582268E+0004 1.30958326992898E+0004 1.31041019113570E+0004 1.31123749956265E+0004 + 1.31206519532962E+0004 1.31289327855643E+0004 1.31372174936293E+0004 1.31455060786895E+0004 1.31537985419439E+0004 + 1.31620948845913E+0004 1.31703951078309E+0004 1.31786992128619E+0004 1.31870072008839E+0004 1.31953190730964E+0004 + 1.32036348306993E+0004 1.32119544748928E+0004 1.32202780068770E+0004 1.32286054278522E+0004 1.32369367390192E+0004 + 1.32452719415786E+0004 1.32536110367314E+0004 1.32619540256788E+0004 1.32703009096220E+0004 1.32786516897626E+0004 + 1.32870063673024E+0004 1.32953649434430E+0004 1.33037274193866E+0004 1.33120937963356E+0004 1.33204640754921E+0004 + 1.33288382580589E+0004 1.33372163452388E+0004 1.33455983382348E+0004 1.33539842382499E+0004 1.33623740464876E+0004 + 1.33707677641515E+0004 1.33791653924451E+0004 1.33875669325724E+0004 1.33959723857375E+0004 1.34043817531446E+0004 + 1.34127950359982E+0004 1.34212122355030E+0004 1.34296333528636E+0004 1.34380583892853E+0004 1.34464873459731E+0004 + 1.34549202241324E+0004 1.34633570249687E+0004 1.34717977496878E+0004 1.34802423994957E+0004 1.34886909755983E+0004 + 1.34971434792020E+0004 1.35055999115134E+0004 1.35140602737390E+0004 1.35225245670856E+0004 1.35309927927604E+0004 + 1.35394649519704E+0004 1.35479410459231E+0004 1.35564210758262E+0004 1.35649050428873E+0004 1.35733929483144E+0004 + 1.35818847933155E+0004 1.35903805790991E+0004 1.35988803068737E+0004 1.36073839778478E+0004 1.36158915932304E+0004 + 1.36244031542305E+0004 1.36329186620573E+0004 1.36414381179203E+0004 1.36499615230292E+0004 1.36584888785935E+0004 + 1.36670201858233E+0004 1.36755554459288E+0004 1.36840946601204E+0004 1.36926378296084E+0004 1.37011849556037E+0004 + 1.37097360393171E+0004 1.37182910819596E+0004 1.37268500847426E+0004 1.37354130488775E+0004 1.37439799755759E+0004 + 1.37525508660497E+0004 1.37611257215107E+0004 1.37697045431712E+0004 1.37782873322435E+0004 1.37868740899403E+0004 + 1.37954648174741E+0004 1.38040595160580E+0004 1.38126581869050E+0004 1.38212608312284E+0004 1.38298674502417E+0004 + 1.38384780451584E+0004 1.38470926171925E+0004 1.38557111675579E+0004 1.38643336974690E+0004 1.38729602081399E+0004 + 1.38815907007854E+0004 1.38902251766200E+0004 1.38988636368589E+0004 1.39075060827172E+0004 1.39161525154100E+0004 + 1.39248029361529E+0004 1.39334573461616E+0004 1.39421157466519E+0004 1.39507781388399E+0004 1.39594445239417E+0004 + 1.39681149031739E+0004 1.39767892777530E+0004 1.39854676488956E+0004 1.39941500178189E+0004 1.40028363857400E+0004 + 1.40115267538762E+0004 1.40202211234449E+0004 1.40289194956639E+0004 1.40376218717512E+0004 1.40463282529246E+0004 + 1.40550386404025E+0004 1.40637530354033E+0004 1.40724714391457E+0004 1.40811938528484E+0004 1.40899202777303E+0004 + 1.40986507150107E+0004 1.41073851659090E+0004 1.41161236316446E+0004 1.41248661134372E+0004 1.41336126125069E+0004 + 1.41423631300735E+0004 1.41511176673576E+0004 1.41598762255793E+0004 1.41686388059596E+0004 1.41774054097190E+0004 + 1.41861760380787E+0004 1.41949506922598E+0004 1.42037293734838E+0004 1.42125120829721E+0004 1.42212988219464E+0004 + 1.42300895916289E+0004 1.42388843932414E+0004 1.42476832280065E+0004 1.42564860971464E+0004 1.42652930018839E+0004 + 1.42741039434417E+0004 1.42829189230431E+0004 1.42917379419111E+0004 1.43005610012692E+0004 1.43093881023409E+0004 + 1.43182192463500E+0004 1.43270544345205E+0004 1.43358936680764E+0004 1.43447369482421E+0004 1.43535842762422E+0004 + 1.43624356533012E+0004 1.43712910806441E+0004 1.43801505594959E+0004 1.43890140910818E+0004 1.43978816766272E+0004 + 1.44067533173579E+0004 1.44156290144996E+0004 1.44245087692781E+0004 1.44333925829198E+0004 1.44422804566508E+0004 + 1.44511723916977E+0004 1.44600683892874E+0004 1.44689684506467E+0004 1.44778725770025E+0004 1.44867807695823E+0004 + 1.44956930296133E+0004 1.45046093583233E+0004 1.45135297569402E+0004 1.45224542266917E+0004 1.45313827688062E+0004 + 1.45403153845120E+0004 1.45492520750377E+0004 1.45581928416120E+0004 1.45671376854637E+0004 1.45760866078221E+0004 + 1.45850396099163E+0004 1.45939966929760E+0004 1.46029578582306E+0004 1.46119231069101E+0004 1.46208924402444E+0004 + 1.46298658594638E+0004 1.46388433657986E+0004 1.46478249604795E+0004 1.46568106447372E+0004 1.46658004198025E+0004 + 1.46747942869068E+0004 1.46837922472811E+0004 1.46927943021571E+0004 1.47018004527665E+0004 1.47108107003409E+0004 + 1.47198250461127E+0004 1.47288434913138E+0004 1.47378660371768E+0004 1.47468926849343E+0004 1.47559234358190E+0004 + 1.47649582910639E+0004 1.47739972519021E+0004 1.47830403195670E+0004 1.47920874952921E+0004 1.48011387803110E+0004 + 1.48101941758577E+0004 1.48192536831663E+0004 1.48283173034710E+0004 1.48373850380061E+0004 1.48464568880064E+0004 + 1.48555328547067E+0004 1.48646129393418E+0004 1.48736971431470E+0004 1.48827854673578E+0004 1.48918779132094E+0004 + 1.49009744819379E+0004 1.49100751747788E+0004 1.49191799929685E+0004 1.49282889377432E+0004 1.49374020103393E+0004 + 1.49465192119935E+0004 1.49556405439426E+0004 1.49647660074236E+0004 1.49738956036738E+0004 1.49830293339304E+0004 + 1.49921671994310E+0004 1.50013092014135E+0004 1.50104553411157E+0004 1.50196056197757E+0004 1.50287600386318E+0004 + 1.50379185989225E+0004 1.50470813018866E+0004 1.50562481487628E+0004 1.50654191407901E+0004 1.50745942792078E+0004 + 1.50837735652553E+0004 1.50929570001722E+0004 1.51021445851981E+0004 1.51113363215732E+0004 1.51205322105375E+0004 + 1.51297322533314E+0004 1.51389364511953E+0004 1.51481448053699E+0004 1.51573573170962E+0004 1.51665739876151E+0004 + 1.51757948181680E+0004 1.51850198099961E+0004 1.51942489643412E+0004 1.52034822824451E+0004 1.52127197655497E+0004 + 1.52219614148971E+0004 1.52312072317298E+0004 1.52404572172902E+0004 1.52497113728211E+0004 1.52589696995653E+0004 + 1.52682321987660E+0004 1.52774988716664E+0004 1.52867697195099E+0004 1.52960447435402E+0004 1.53053239450011E+0004 + 1.53146073251366E+0004 1.53238948851909E+0004 1.53331866264083E+0004 1.53424825500335E+0004 1.53517826573111E+0004 + 1.53610869494860E+0004 1.53703954278034E+0004 1.53797080935085E+0004 1.53890249478470E+0004 1.53983459920642E+0004 + 1.54076712274062E+0004 1.54170006551189E+0004 1.54263342764485E+0004 1.54356720926415E+0004 1.54450141049445E+0004 + 1.54543603146041E+0004 1.54637107228673E+0004 1.54730653309813E+0004 1.54824241401933E+0004 1.54917871517508E+0004 + 1.55011543669017E+0004 1.55105257868936E+0004 1.55199014129746E+0004 1.55292812463931E+0004 1.55386652883973E+0004 + 1.55480535402359E+0004 1.55574460031576E+0004 1.55668426784116E+0004 1.55762435672468E+0004 1.55856486709126E+0004 + 1.55950579906586E+0004 1.56044715277344E+0004 1.56138892833900E+0004 1.56233112588753E+0004 1.56327374554408E+0004 + 1.56421678743367E+0004 1.56516025168137E+0004 1.56610413841227E+0004 1.56704844775146E+0004 1.56799317982406E+0004 + 1.56893833475520E+0004 1.56988391267004E+0004 1.57082991369376E+0004 1.57177633795153E+0004 1.57272318556858E+0004 + 1.57367045667014E+0004 1.57461815138143E+0004 1.57556626982774E+0004 1.57651481213434E+0004 1.57746377842653E+0004 + 1.57841316882965E+0004 1.57936298346901E+0004 1.58031322246999E+0004 1.58126388595795E+0004 1.58221497405829E+0004 + 1.58316648689642E+0004 1.58411842459777E+0004 1.58507078728779E+0004 1.58602357509194E+0004 1.58697678813572E+0004 + 1.58793042654462E+0004 1.58888449044417E+0004 1.58983897995991E+0004 1.59079389521739E+0004 1.59174923634220E+0004 + 1.59270500345992E+0004 1.59366119669619E+0004 1.59461781617662E+0004 1.59557486202686E+0004 1.59653233437259E+0004 + 1.59749023333950E+0004 1.59844855905328E+0004 1.59940731163968E+0004 1.60036649122442E+0004 1.60132609793327E+0004 + 1.60228613189201E+0004 1.60324659322643E+0004 1.60420748206237E+0004 1.60516879852563E+0004 1.60613054274209E+0004 + 1.60709271483762E+0004 1.60805531493809E+0004 1.60901834316943E+0004 1.60998179965756E+0004 1.61094568452842E+0004 + 1.61190999790797E+0004 1.61287473992221E+0004 1.61383991069713E+0004 1.61480551035875E+0004 1.61577153903310E+0004 + 1.61673799684625E+0004 1.61770488392426E+0004 1.61867220039323E+0004 1.61963994637927E+0004 1.62060812200851E+0004 + 1.62157672740709E+0004 1.62254576270119E+0004 1.62351522801698E+0004 1.62448512348067E+0004 1.62545544921848E+0004 + 1.62642620535665E+0004 1.62739739202144E+0004 1.62836900933913E+0004 1.62934105743600E+0004 1.63031353643837E+0004 + 1.63128644647258E+0004 1.63225978766498E+0004 1.63323356014192E+0004 1.63420776402981E+0004 1.63518239945504E+0004 + 1.63615746654403E+0004 1.63713296542324E+0004 1.63810889621911E+0004 1.63908525905813E+0004 1.64006205406680E+0004 + 1.64103928137163E+0004 1.64201694109916E+0004 1.64299503337593E+0004 1.64397355832853E+0004 1.64495251608353E+0004 + 1.64593190676754E+0004 1.64691173050719E+0004 1.64789198742914E+0004 1.64887267766003E+0004 1.64985380132654E+0004 + 1.65083535855539E+0004 1.65181734947327E+0004 1.65279977420695E+0004 1.65378263288316E+0004 1.65476592562868E+0004 + 1.65574965257030E+0004 1.65673381383484E+0004 1.65771840954910E+0004 1.65870343983996E+0004 1.65968890483428E+0004 + 1.66067480465893E+0004 1.66166113944081E+0004 1.66264790930685E+0004 1.66363511438399E+0004 1.66462275479917E+0004 + 1.66561083067938E+0004 1.66659934215162E+0004 1.66758828934290E+0004 1.66857767238023E+0004 1.66956749139068E+0004 + 1.67055774650131E+0004 1.67154843783921E+0004 1.67253956553148E+0004 1.67353112970524E+0004 1.67452313048764E+0004 + 1.67551556800583E+0004 1.67650844238699E+0004 1.67750175375832E+0004 1.67849550224704E+0004 1.67948968798036E+0004 + 1.68048431108556E+0004 1.68147937168989E+0004 1.68247486992064E+0004 1.68347080590512E+0004 1.68446717977067E+0004 + 1.68546399164461E+0004 1.68646124165431E+0004 1.68745892992716E+0004 1.68845705659054E+0004 1.68945562177188E+0004 + 1.69045462559861E+0004 1.69145406819819E+0004 1.69245394969809E+0004 1.69345427022579E+0004 1.69445502990882E+0004 + 1.69545622887468E+0004 1.69645786725093E+0004 1.69745994516515E+0004 1.69846246274490E+0004 1.69946542011778E+0004 + 1.70046881741142E+0004 1.70147265475345E+0004 1.70247693227155E+0004 1.70348165009336E+0004 1.70448680834658E+0004 + 1.70549240715894E+0004 1.70649844665816E+0004 1.70750492697198E+0004 1.70851184822818E+0004 1.70951921055454E+0004 + 1.71052701407885E+0004 1.71153525892895E+0004 1.71254394523267E+0004 1.71355307311787E+0004 1.71456264271244E+0004 + 1.71557265414425E+0004 1.71658310754123E+0004 1.71759400303132E+0004 1.71860534074244E+0004 1.71961712080259E+0004 + 1.72062934333974E+0004 1.72164200848191E+0004 1.72265511635711E+0004 1.72366866709338E+0004 1.72468266081879E+0004 + 1.72569709766142E+0004 1.72671197774937E+0004 1.72772730121074E+0004 1.72874306817368E+0004 1.72975927876634E+0004 + 1.73077593311689E+0004 1.73179303135351E+0004 1.73281057360443E+0004 1.73382855999785E+0004 1.73484699066203E+0004 + 1.73586586572523E+0004 1.73688518531573E+0004 1.73790494956184E+0004 1.73892515859186E+0004 1.73994581253415E+0004 + 1.74096691151704E+0004 1.74198845566892E+0004 1.74301044511817E+0004 1.74403287999322E+0004 1.74505576042248E+0004 + 1.74607908653440E+0004 1.74710285845746E+0004 1.74812707632012E+0004 1.74915174025090E+0004 1.75017685037832E+0004 + 1.75120240683090E+0004 1.75222840973723E+0004 1.75325485922586E+0004 1.75428175542539E+0004 1.75530909846443E+0004 + 1.75633688847163E+0004 1.75736512557561E+0004 1.75839380990506E+0004 1.75942294158866E+0004 1.76045252075512E+0004 + 1.76148254753315E+0004 1.76251302205150E+0004 1.76354394443892E+0004 1.76457531482420E+0004 1.76560713333614E+0004 + 1.76663940010354E+0004 1.76767211525525E+0004 1.76870527892011E+0004 1.76973889122698E+0004 1.77077295230477E+0004 + 1.77180746228239E+0004 1.77284242128874E+0004 1.77387782945278E+0004 1.77491368690347E+0004 1.77594999376980E+0004 + 1.77698675018075E+0004 1.77802395626535E+0004 1.77906161215263E+0004 1.78009971797165E+0004 1.78113827385147E+0004 + 1.78217727992120E+0004 1.78321673630994E+0004 1.78425664314681E+0004 1.78529700056097E+0004 1.78633780868157E+0004 + 1.78737906763781E+0004 1.78842077755888E+0004 1.78946293857399E+0004 1.79050555081240E+0004 1.79154861440336E+0004 + 1.79259212947613E+0004 1.79363609616001E+0004 1.79468051458433E+0004 1.79572538487840E+0004 1.79677070717158E+0004 + 1.79781648159323E+0004 1.79886270827273E+0004 1.79990938733949E+0004 1.80095651892294E+0004 1.80200410315251E+0004 + 1.80305214015766E+0004 1.80410063006787E+0004 1.80514957301263E+0004 1.80619896912146E+0004 1.80724881852389E+0004 + 1.80829912134948E+0004 1.80934987772778E+0004 1.81040108778839E+0004 1.81145275166092E+0004 1.81250486947499E+0004 + 1.81355744136024E+0004 1.81461046744633E+0004 1.81566394786294E+0004 1.81671788273977E+0004 1.81777227220654E+0004 + 1.81882711639299E+0004 1.81988241542885E+0004 1.82093816944392E+0004 1.82199437856796E+0004 1.82305104293081E+0004 + 1.82410816266227E+0004 1.82516573789220E+0004 1.82622376875046E+0004 1.82728225536693E+0004 1.82834119787152E+0004 + 1.82940059639414E+0004 1.83046045106472E+0004 1.83152076201322E+0004 1.83258152936963E+0004 1.83364275326393E+0004 + 1.83470443382612E+0004 1.83576657118625E+0004 1.83682916547435E+0004 1.83789221682049E+0004 1.83895572535477E+0004 + 1.84001969120727E+0004 1.84108411450812E+0004 1.84214899538746E+0004 1.84321433397545E+0004 1.84428013040227E+0004 + 1.84534638479811E+0004 1.84641309729317E+0004 1.84748026801771E+0004 1.84854789710195E+0004 1.84961598467618E+0004 + 1.85068453087068E+0004 1.85175353581575E+0004 1.85282299964172E+0004 1.85389292247891E+0004 1.85496330445772E+0004 + 1.85603414570850E+0004 1.85710544636166E+0004 1.85817720654761E+0004 1.85924942639678E+0004 1.86032210603963E+0004 + 1.86139524560662E+0004 1.86246884522825E+0004 1.86354290503502E+0004 1.86461742515746E+0004 1.86569240572612E+0004 + 1.86676784687154E+0004 1.86784374872433E+0004 1.86892011141507E+0004 1.86999693507439E+0004 1.87107421983292E+0004 + 1.87215196582130E+0004 1.87323017317023E+0004 1.87430884201038E+0004 1.87538797247248E+0004 1.87646756468724E+0004 + 1.87754761878542E+0004 1.87862813489776E+0004 1.87970911315508E+0004 1.88079055368816E+0004 1.88187245662781E+0004 + 1.88295482210490E+0004 1.88403765025025E+0004 1.88512094119477E+0004 1.88620469506933E+0004 1.88728891200485E+0004 + 1.88837359213226E+0004 1.88945873558251E+0004 1.89054434248657E+0004 1.89163041297542E+0004 1.89271694718006E+0004 + 1.89380394523152E+0004 1.89489140726085E+0004 1.89597933339909E+0004 1.89706772377733E+0004 1.89815657852665E+0004 + 1.89924589777819E+0004 1.90033568166307E+0004 1.90142593031243E+0004 1.90251664385746E+0004 1.90360782242933E+0004 + 1.90469946615926E+0004 1.90579157517847E+0004 1.90688414961821E+0004 1.90797718960972E+0004 1.90907069528430E+0004 + 1.91016466677325E+0004 1.91125910420787E+0004 1.91235400771952E+0004 1.91344937743952E+0004 1.91454521349927E+0004 + 1.91564151603015E+0004 1.91673828516357E+0004 1.91783552103095E+0004 1.91893322376376E+0004 1.92003139349344E+0004 + 1.92113003035147E+0004 1.92222913446935E+0004 1.92332870597863E+0004 1.92442874501082E+0004 1.92552925169748E+0004 + 1.92663022617019E+0004 1.92773166856053E+0004 1.92883357900013E+0004 1.92993595762060E+0004 1.93103880455360E+0004 + 1.93214211993080E+0004 1.93324590388388E+0004 1.93435015654453E+0004 1.93545487804450E+0004 1.93656006851550E+0004 + 1.93766572808931E+0004 1.93877185689769E+0004 1.93987845507245E+0004 1.94098552274540E+0004 1.94209306004836E+0004 + 1.94320106711320E+0004 1.94430954407176E+0004 1.94541849105596E+0004 1.94652790819768E+0004 1.94763779562886E+0004 + 1.94874815348144E+0004 1.94985898188737E+0004 1.95097028097863E+0004 1.95208205088724E+0004 1.95319429174519E+0004 + 1.95430700368452E+0004 1.95542018683729E+0004 1.95653384133557E+0004 1.95764796731144E+0004 1.95876256489703E+0004 + 1.95987763422443E+0004 1.96099317542581E+0004 1.96210918863334E+0004 1.96322567397917E+0004 1.96434263159554E+0004 + 1.96546006161464E+0004 1.96657796416870E+0004 1.96769633939000E+0004 1.96881518741081E+0004 1.96993450836341E+0004 + 1.97105430238011E+0004 1.97217456959324E+0004 1.97329531013516E+0004 1.97441652413821E+0004 1.97553821173480E+0004 + 1.97666037305732E+0004 1.97778300823818E+0004 1.97890611740985E+0004 1.98002970070477E+0004 1.98115375825540E+0004 + 1.98227829019424E+0004 1.98340329665383E+0004 1.98452877776667E+0004 1.98565473366532E+0004 1.98678116448235E+0004 + 1.98790807035035E+0004 1.98903545140191E+0004 1.99016330776966E+0004 1.99129163958625E+0004 1.99242044698433E+0004 + 1.99354973009658E+0004 1.99467948905570E+0004 1.99580972399439E+0004 1.99694043504541E+0004 1.99807162234149E+0004 + 1.99920328601541E+0004 2.00033542619995E+0004 2.00146804302793E+0004 2.00260113663216E+0004 2.00373470714550E+0004 + 2.00486875470080E+0004 2.00600327943094E+0004 2.00713828146882E+0004 2.00827376094736E+0004 2.00940971799950E+0004 + 2.01054615275819E+0004 2.01168306535640E+0004 2.01282045592712E+0004 2.01395832460336E+0004 2.01509667151816E+0004 + 2.01623549680455E+0004 2.01737480059559E+0004 2.01851458302438E+0004 2.01965484422402E+0004 2.02079558432761E+0004 + 2.02193680346831E+0004 2.02307850177927E+0004 2.02422067939366E+0004 2.02536333644466E+0004 2.02650647306551E+0004 + 2.02765008938943E+0004 2.02879418554966E+0004 2.02993876167948E+0004 2.03108381791215E+0004 2.03222935438101E+0004 + 2.03337537121935E+0004 2.03452186856052E+0004 2.03566884653789E+0004 2.03681630528482E+0004 2.03796424493473E+0004 + 2.03911266562100E+0004 2.04026156747709E+0004 2.04141095063645E+0004 2.04256081523252E+0004 2.04371116139882E+0004 + 2.04486198926884E+0004 2.04601329897612E+0004 2.04716509065417E+0004 2.04831736443659E+0004 2.04947012045692E+0004 + 2.05062335884879E+0004 2.05177707974581E+0004 2.05293128328160E+0004 2.05408596958984E+0004 2.05524113880417E+0004 + 2.05639679105829E+0004 2.05755292648592E+0004 2.05870954522078E+0004 2.05986664739661E+0004 2.06102423314718E+0004 + 2.06218230260627E+0004 2.06334085590767E+0004 2.06449989318522E+0004 2.06565941457273E+0004 2.06681942020408E+0004 + 2.06797991021315E+0004 2.06914088473379E+0004 2.07030234389995E+0004 2.07146428784555E+0004 2.07262671670452E+0004 + 2.07378963061085E+0004 2.07495302969851E+0004 2.07611691410150E+0004 2.07728128395385E+0004 2.07844613938961E+0004 + 2.07961148054280E+0004 2.08077730754753E+0004 2.08194362053789E+0004 2.08311041964799E+0004 2.08427770501196E+0004 + 2.08544547676393E+0004 2.08661373503811E+0004 2.08778247996864E+0004 2.08895171168976E+0004 2.09012143033568E+0004 + 2.09129163604064E+0004 2.09246232893891E+0004 2.09363350916476E+0004 2.09480517685249E+0004 2.09597733213640E+0004 + 2.09714997515085E+0004 2.09832310603019E+0004 2.09949672490876E+0004 2.10067083192098E+0004 2.10184542720124E+0004 + 2.10302051088398E+0004 2.10419608310362E+0004 2.10537214399466E+0004 2.10654869369155E+0004 2.10772573232879E+0004 + 2.10890326004092E+0004 2.11008127696246E+0004 2.11125978322796E+0004 2.11243877897200E+0004 2.11361826432917E+0004 + 2.11479823943409E+0004 2.11597870442136E+0004 2.11715965942566E+0004 2.11834110458164E+0004 2.11952304002397E+0004 + 2.12070546588738E+0004 2.12188838230657E+0004 2.12307178941627E+0004 2.12425568735126E+0004 2.12544007624631E+0004 + 2.12662495623620E+0004 2.12781032745575E+0004 2.12899619003979E+0004 2.13018254412318E+0004 2.13136938984077E+0004 + 2.13255672732744E+0004 2.13374455671812E+0004 2.13493287814772E+0004 2.13612169175117E+0004 2.13731099766344E+0004 + 2.13850079601951E+0004 2.13969108695436E+0004 2.14088187060304E+0004 2.14207314710054E+0004 2.14326491658193E+0004 + 2.14445717918229E+0004 2.14564993503669E+0004 2.14684318428024E+0004 2.14803692704807E+0004 2.14923116347533E+0004 + 2.15042589369717E+0004 2.15162111784877E+0004 2.15281683606532E+0004 2.15401304848206E+0004 2.15520975523421E+0004 + 2.15640695645703E+0004 2.15760465228578E+0004 2.15880284285577E+0004 2.16000152830228E+0004 2.16120070876067E+0004 + 2.16240038436626E+0004 2.16360055525443E+0004 2.16480122156055E+0004 2.16600238342003E+0004 2.16720404096828E+0004 + 2.16840619434075E+0004 2.16960884367288E+0004 2.17081198910017E+0004 2.17201563075808E+0004 2.17321976878213E+0004 + 2.17442440330787E+0004 2.17562953447083E+0004 2.17683516240657E+0004 2.17804128725069E+0004 2.17924790913880E+0004 + 2.18045502820649E+0004 2.18166264458943E+0004 2.18287075842326E+0004 2.18407936984366E+0004 2.18528847898634E+0004 + 2.18649808598699E+0004 2.18770819098137E+0004 2.18891879410520E+0004 2.19012989549426E+0004 2.19134149528435E+0004 + 2.19255359361125E+0004 2.19376619061080E+0004 2.19497928641885E+0004 2.19619288117125E+0004 2.19740697500387E+0004 + 2.19862156805263E+0004 2.19983666045342E+0004 2.20105225234219E+0004 2.20226834385489E+0004 2.20348493512748E+0004 + 2.20470202629598E+0004 2.20591961749637E+0004 2.20713770886467E+0004 2.20835630053694E+0004 2.20957539264925E+0004 + 2.21079498533766E+0004 2.21201507873829E+0004 2.21323567298725E+0004 2.21445676822068E+0004 2.21567836457473E+0004 + 2.21690046218557E+0004 2.21812306118939E+0004 2.21934616172240E+0004 2.22056976392085E+0004 2.22179386792097E+0004 + 2.22301847385902E+0004 2.22424358187130E+0004 2.22546919209408E+0004 2.22669530466372E+0004 2.22792191971654E+0004 + 2.22914903738889E+0004 2.23037665781716E+0004 2.23160478113773E+0004 2.23283340748704E+0004 2.23406253700147E+0004 + 2.23529216981753E+0004 2.23652230607165E+0004 2.23775294590031E+0004 2.23898408944004E+0004 2.24021573682734E+0004 + 2.24144788819878E+0004 2.24268054369090E+0004 2.24391370344026E+0004 2.24514736758348E+0004 2.24638153625718E+0004 + 2.24761620959798E+0004 2.24885138774254E+0004 2.25008707082752E+0004 2.25132325898961E+0004 2.25255995236553E+0004 + 2.25379715109199E+0004 2.25503485530574E+0004 2.25627306514354E+0004 2.25751178074217E+0004 2.25875100223843E+0004 + 2.25999072976914E+0004 2.26123096347113E+0004 2.26247170348126E+0004 2.26371294993639E+0004 2.26495470297343E+0004 + 2.26619696272927E+0004 2.26743972934085E+0004 2.26868300294511E+0004 2.26992678367902E+0004 2.27117107167955E+0004 + 2.27241586708372E+0004 2.27366117002852E+0004 2.27490698065103E+0004 2.27615329908827E+0004 2.27740012547733E+0004 + 2.27864745995530E+0004 2.27989530265930E+0004 2.28114365372644E+0004 2.28239251329389E+0004 2.28364188149881E+0004 + 2.28489175847836E+0004 2.28614214436978E+0004 2.28739303931029E+0004 2.28864444343710E+0004 2.28989635688749E+0004 + 2.29114877979874E+0004 2.29240171230813E+0004 2.29365515455298E+0004 2.29490910667062E+0004 2.29616356879842E+0004 + 2.29741854107373E+0004 2.29867402363393E+0004 2.29993001661645E+0004 2.30118652015869E+0004 2.30244353439811E+0004 + 2.30370105947217E+0004 2.30495909551833E+0004 2.30621764267411E+0004 2.30747670107702E+0004 2.30873627086459E+0004 + 2.30999635217437E+0004 2.31125694514394E+0004 2.31251804991089E+0004 2.31377966661282E+0004 2.31504179538736E+0004 + 2.31630443637215E+0004 2.31756758970487E+0004 2.31883125552319E+0004 2.32009543396481E+0004 2.32136012516744E+0004 + 2.32262532926884E+0004 2.32389104640674E+0004 2.32515727671893E+0004 2.32642402034319E+0004 2.32769127741735E+0004 + 2.32895904807922E+0004 2.33022733246665E+0004 2.33149613071752E+0004 2.33276544296969E+0004 2.33403526936109E+0004 + 2.33530561002962E+0004 2.33657646511323E+0004 2.33784783474986E+0004 2.33911971907751E+0004 2.34039211823416E+0004 + 2.34166503235783E+0004 2.34293846158654E+0004 2.34421240605837E+0004 2.34548686591134E+0004 2.34676184128358E+0004 + 2.34803733231316E+0004 2.34931333913823E+0004 2.35058986189693E+0004 2.35186690072739E+0004 2.35314445576782E+0004 + 2.35442252715642E+0004 2.35570111503137E+0004 2.35698021953093E+0004 2.35825984079335E+0004 2.35953997895691E+0004 + 2.36082063415988E+0004 2.36210180654055E+0004 2.36338349623731E+0004 2.36466570338844E+0004 2.36594842813233E+0004 + 2.36723167060735E+0004 2.36851543095190E+0004 2.36979970930442E+0004 2.37108450580332E+0004 2.37236982058706E+0004 + 2.37365565379412E+0004 2.37494200556299E+0004 2.37622887603217E+0004 2.37751626534020E+0004 2.37880417362562E+0004 + 2.38009260102698E+0004 2.38138154768289E+0004 2.38267101373193E+0004 2.38396099931275E+0004 2.38525150456395E+0004 + 2.38654252962422E+0004 2.38783407463221E+0004 2.38912613972662E+0004 2.39041872504616E+0004 2.39171183072957E+0004 + 2.39300545691561E+0004 2.39429960374301E+0004 2.39559427135058E+0004 2.39688945987713E+0004 2.39818516946147E+0004 + 2.39948140024243E+0004 2.40077815235889E+0004 2.40207542594972E+0004 2.40337322115381E+0004 2.40467153811009E+0004 + 2.40597037695748E+0004 2.40726973783492E+0004 2.40856962088140E+0004 2.40987002623590E+0004 2.41117095403742E+0004 + 2.41247240442501E+0004 2.41377437753767E+0004 2.41507687351450E+0004 2.41637989249456E+0004 2.41768343461695E+0004 + 2.41898750002080E+0004 2.42029208884522E+0004 2.42159720122938E+0004 2.42290283731246E+0004 2.42420899723363E+0004 + 2.42551568113212E+0004 2.42682288914714E+0004 2.42813062141793E+0004 2.42943887808378E+0004 2.43074765928395E+0004 + 2.43205696515773E+0004 2.43336679584448E+0004 2.43467715148350E+0004 2.43598803221416E+0004 2.43729943817584E+0004 + 2.43861136950791E+0004 2.43992382634982E+0004 2.44123680884095E+0004 2.44255031712079E+0004 2.44386435132878E+0004 + 2.44517891160442E+0004 2.44649399808720E+0004 2.44780961091665E+0004 2.44912575023231E+0004 2.45044241617373E+0004 + 2.45175960888050E+0004 2.45307732849220E+0004 2.45439557514846E+0004 2.45571434898888E+0004 2.45703365015315E+0004 + 2.45835347878091E+0004 2.45967383501187E+0004 2.46099471898571E+0004 2.46231613084217E+0004 2.46363807072099E+0004 + 2.46496053876192E+0004 2.46628353510475E+0004 2.46760705988928E+0004 2.46893111325531E+0004 2.47025569534269E+0004 + 2.47158080629127E+0004 2.47290644624090E+0004 2.47423261533150E+0004 2.47555931370296E+0004 2.47688654149520E+0004 + 2.47821429884820E+0004 2.47954258590188E+0004 2.48087140279623E+0004 2.48220074967127E+0004 2.48353062666700E+0004 + 2.48486103392346E+0004 2.48619197158070E+0004 2.48752343977881E+0004 2.48885543865787E+0004 2.49018796835798E+0004 + 2.49152102901929E+0004 2.49285462078193E+0004 2.49418874378607E+0004 2.49552339817191E+0004 2.49685858407961E+0004 + 2.49819430164943E+0004 2.49953055102159E+0004 2.50086733233636E+0004 2.50220464573402E+0004 2.50354249135483E+0004 + 2.50488086933913E+0004 2.50621977982725E+0004 2.50755922295952E+0004 2.50889919887633E+0004 2.51023970771807E+0004 + 2.51158074962511E+0004 2.51292232473789E+0004 2.51426443319688E+0004 2.51560707514250E+0004 2.51695025071524E+0004 + 2.51829396005560E+0004 2.51963820330409E+0004 2.52098298060126E+0004 2.52232829208763E+0004 2.52367413790380E+0004 + 2.52502051819033E+0004 2.52636743308785E+0004 2.52771488273698E+0004 2.52906286727836E+0004 2.53041138685265E+0004 + 2.53176044160053E+0004 2.53311003166271E+0004 2.53446015717988E+0004 2.53581081829281E+0004 2.53716201514224E+0004 + 2.53851374786892E+0004 2.53986601661367E+0004 2.54121882151730E+0004 2.54257216272061E+0004 2.54392604036446E+0004 + 2.54528045458973E+0004 2.54663540553727E+0004 2.54799089334801E+0004 2.54934691816285E+0004 2.55070348012276E+0004 + 2.55206057936865E+0004 2.55341821604153E+0004 2.55477639028237E+0004 2.55613510223220E+0004 2.55749435203203E+0004 + 2.55885413982292E+0004 2.56021446574593E+0004 2.56157532994216E+0004 2.56293673255271E+0004 2.56429867371869E+0004 + 2.56566115358124E+0004 2.56702417228153E+0004 2.56838772996073E+0004 2.56975182676003E+0004 2.57111646282066E+0004 + 2.57248163828383E+0004 2.57384735329080E+0004 2.57521360798284E+0004 2.57658040250126E+0004 2.57794773698732E+0004 + 2.57931561158239E+0004 2.58068402642776E+0004 2.58205298166485E+0004 2.58342247743500E+0004 2.58479251387960E+0004 + 2.58616309114011E+0004 2.58753420935792E+0004 2.58890586867452E+0004 2.59027806923134E+0004 2.59165081116991E+0004 + 2.59302409463171E+0004 2.59439791975828E+0004 2.59577228669116E+0004 2.59714719557191E+0004 2.59852264654212E+0004 + 2.59989863974339E+0004 2.60127517531732E+0004 2.60265225340557E+0004 2.60402987414979E+0004 2.60540803769164E+0004 + 2.60678674417283E+0004 2.60816599373505E+0004 2.60954578652005E+0004 2.61092612266957E+0004 2.61230700232537E+0004 + 2.61368842562923E+0004 2.61507039272296E+0004 2.61645290374839E+0004 2.61783595884734E+0004 2.61921955816168E+0004 + 2.62060370183328E+0004 2.62198839000403E+0004 2.62337362281586E+0004 2.62475940041069E+0004 2.62614572293047E+0004 + 2.62753259051717E+0004 2.62892000331277E+0004 2.63030796145928E+0004 2.63169646509872E+0004 2.63308551437313E+0004 + 2.63447510942458E+0004 2.63586525039513E+0004 2.63725593742690E+0004 2.63864717066199E+0004 2.64003895024254E+0004 + 2.64143127631069E+0004 2.64282414900862E+0004 2.64421756847853E+0004 2.64561153486259E+0004 2.64700604830307E+0004 + 2.64840110894219E+0004 2.64979671692220E+0004 2.65119287238542E+0004 2.65258957547412E+0004 2.65398682633061E+0004 + 2.65538462509725E+0004 2.65678297191637E+0004 2.65818186693037E+0004 2.65958131028161E+0004 2.66098130211253E+0004 + 2.66238184256553E+0004 2.66378293178308E+0004 2.66518456990763E+0004 2.66658675708167E+0004 2.66798949344769E+0004 + 2.66939277914822E+0004 2.67079661432580E+0004 2.67220099912298E+0004 2.67360593368234E+0004 2.67501141814647E+0004 + 2.67641745265798E+0004 2.67782403735951E+0004 2.67923117239369E+0004 2.68063885790321E+0004 2.68204709403074E+0004 + 2.68345588091898E+0004 2.68486521871067E+0004 2.68627510754854E+0004 2.68768554757534E+0004 2.68909653893386E+0004 + 2.69050808176688E+0004 2.69192017621724E+0004 2.69333282242776E+0004 2.69474602054127E+0004 2.69615977070067E+0004 + 2.69757407304885E+0004 2.69898892772868E+0004 2.70040433488311E+0004 2.70182029465509E+0004 2.70323680718756E+0004 + 2.70465387262351E+0004 2.70607149110595E+0004 2.70748966277787E+0004 2.70890838778233E+0004 2.71032766626236E+0004 + 2.71174749836106E+0004 2.71316788422149E+0004 2.71458882398678E+0004 2.71601031780004E+0004 2.71743236580444E+0004 + 2.71885496814312E+0004 2.72027812495927E+0004 2.72170183639609E+0004 2.72312610259680E+0004 2.72455092370464E+0004 + 2.72597629986285E+0004 2.72740223121473E+0004 2.72882871790355E+0004 2.73025576007263E+0004 2.73168335786531E+0004 + 2.73311151142491E+0004 2.73454022089482E+0004 2.73596948641840E+0004 2.73739930813909E+0004 2.73882968620028E+0004 + 2.74026062074542E+0004 2.74169211191796E+0004 2.74312415986140E+0004 2.74455676471921E+0004 2.74598992663491E+0004 + 2.74742364575203E+0004 2.74885792221413E+0004 2.75029275616477E+0004 2.75172814774753E+0004 2.75316409710603E+0004 + 2.75460060438389E+0004 2.75603766972473E+0004 2.75747529327224E+0004 2.75891347517009E+0004 2.76035221556199E+0004 + 2.76179151459160E+0004 2.76323137240272E+0004 2.76467178913908E+0004 2.76611276494443E+0004 2.76755429996258E+0004 + 2.76899639433735E+0004 2.77043904821253E+0004 2.77188226173199E+0004 2.77332603503958E+0004 2.77477036827918E+0004 + 2.77621526159471E+0004 2.77766071513007E+0004 2.77910672902919E+0004 2.78055330343604E+0004 2.78200043849460E+0004 + 2.78344813434884E+0004 2.78489639114277E+0004 2.78634520902044E+0004 2.78779458812588E+0004 2.78924452860315E+0004 + 2.79069503059636E+0004 2.79214609424958E+0004 2.79359771970695E+0004 2.79504990711259E+0004 2.79650265661069E+0004 + 2.79795596834539E+0004 2.79940984246089E+0004 2.80086427910143E+0004 2.80231927841121E+0004 2.80377484053448E+0004 + 2.80523096561554E+0004 2.80668765379863E+0004 2.80814490522809E+0004 2.80960272004823E+0004 2.81106109840340E+0004 + 2.81252004043793E+0004 2.81397954629623E+0004 2.81543961612267E+0004 2.81690025006169E+0004 2.81836144825771E+0004 + 2.81982321085519E+0004 2.82128553799857E+0004 2.82274842983237E+0004 2.82421188650109E+0004 2.82567590814925E+0004 + 2.82714049492140E+0004 2.82860564696209E+0004 2.83007136441591E+0004 2.83153764742745E+0004 2.83300449614134E+0004 + 2.83447191070219E+0004 2.83593989125469E+0004 2.83740843794348E+0004 2.83887755091327E+0004 2.84034723030875E+0004 + 2.84181747627466E+0004 2.84328828895576E+0004 2.84475966849679E+0004 2.84623161504253E+0004 2.84770412873781E+0004 + 2.84917720972741E+0004 2.85065085815621E+0004 2.85212507416903E+0004 2.85359985791077E+0004 2.85507520952630E+0004 + 2.85655112916055E+0004 2.85802761695845E+0004 2.85950467306493E+0004 2.86098229762496E+0004 2.86246049078355E+0004 + 2.86393925268567E+0004 2.86541858347636E+0004 2.86689848330065E+0004 2.86837895230361E+0004 2.86985999063031E+0004 + 2.87134159842585E+0004 2.87282377583534E+0004 2.87430652300390E+0004 2.87578984007671E+0004 2.87727372719891E+0004 + 2.87875818451570E+0004 2.88024321217228E+0004 2.88172881031387E+0004 2.88321497908573E+0004 2.88470171863312E+0004 + 2.88618902910129E+0004 2.88767691063557E+0004 2.88916536338126E+0004 2.89065438748369E+0004 2.89214398308822E+0004 + 2.89363415034023E+0004 2.89512488938509E+0004 2.89661620036822E+0004 2.89810808343505E+0004 2.89960053873102E+0004 + 2.90109356640158E+0004 2.90258716659223E+0004 2.90408133944846E+0004 2.90557608511581E+0004 2.90707140373976E+0004 + 2.90856729546594E+0004 2.91006376043987E+0004 2.91156079880715E+0004 2.91305841071342E+0004 2.91455659630427E+0004 + 2.91605535572537E+0004 2.91755468912238E+0004 2.91905459664098E+0004 2.92055507842688E+0004 2.92205613462579E+0004 + 2.92355776538346E+0004 2.92505997084564E+0004 2.92656275115810E+0004 2.92806610646665E+0004 2.92957003691710E+0004 + 2.93107454265527E+0004 2.93257962382701E+0004 2.93408528057821E+0004 2.93559151305471E+0004 2.93709832140246E+0004 + 2.93860570576737E+0004 2.94011366629538E+0004 2.94162220313243E+0004 2.94313131642453E+0004 2.94464100631765E+0004 + 2.94615127295784E+0004 2.94766211649108E+0004 2.94917353706347E+0004 2.95068553482107E+0004 2.95219810990994E+0004 + 2.95371126247621E+0004 2.95522499266603E+0004 2.95673930062549E+0004 2.95825418650077E+0004 2.95976965043808E+0004 + 2.96128569258359E+0004 2.96280231308353E+0004 2.96431951208412E+0004 2.96583728973164E+0004 2.96735564617233E+0004 + 2.96887458155251E+0004 2.97039409601847E+0004 2.97191418971654E+0004 2.97343486279309E+0004 2.97495611539445E+0004 + 2.97647794766703E+0004 2.97800035975720E+0004 2.97952335181141E+0004 2.98104692397609E+0004 2.98257107639769E+0004 + 2.98409580922269E+0004 2.98562112259758E+0004 2.98714701666887E+0004 2.98867349158309E+0004 2.99020054748680E+0004 + 2.99172818452655E+0004 2.99325640284895E+0004 2.99478520260057E+0004 2.99631458392805E+0004 2.99784454697803E+0004 + 2.99937509189717E+0004 3.00090621883214E+0004 3.00243792792966E+0004 3.00397021933640E+0004 3.00550309319914E+0004 + 3.00703654966457E+0004 3.00857058887953E+0004 3.01010521099077E+0004 3.01164041614509E+0004 3.01317620448933E+0004 + 3.01471257617033E+0004 3.01624953133494E+0004 3.01778707013005E+0004 3.01932519270256E+0004 3.02086389919937E+0004 + 3.02240318976744E+0004 3.02394306455372E+0004 3.02548352370514E+0004 3.02702456736874E+0004 3.02856619569151E+0004 + 3.03010840882047E+0004 3.03165120690267E+0004 3.03319459008519E+0004 3.03473855851507E+0004 3.03628311233947E+0004 + 3.03782825170545E+0004 3.03937397676017E+0004 3.04092028765080E+0004 3.04246718452450E+0004 3.04401466752845E+0004 + 3.04556273680989E+0004 3.04711139251603E+0004 3.04866063479412E+0004 3.05021046379142E+0004 3.05176087965523E+0004 + 3.05331188253284E+0004 3.05486347257157E+0004 3.05641564991878E+0004 3.05796841472179E+0004 3.05952176712801E+0004 + 3.06107570728482E+0004 3.06263023533963E+0004 3.06418535143988E+0004 3.06574105573302E+0004 3.06729734836651E+0004 + 3.06885422948785E+0004 3.07041169924453E+0004 3.07196975778407E+0004 3.07352840525403E+0004 3.07508764180196E+0004 + 3.07664746757544E+0004 3.07820788272207E+0004 3.07976888738946E+0004 3.08133048172525E+0004 3.08289266587708E+0004 + 3.08445543999263E+0004 3.08601880421959E+0004 3.08758275870566E+0004 3.08914730359857E+0004 3.09071243904607E+0004 + 3.09227816519591E+0004 3.09384448219589E+0004 3.09541139019379E+0004 3.09697888933744E+0004 3.09854697977465E+0004 + 3.10011566165332E+0004 3.10168493512128E+0004 3.10325480032645E+0004 3.10482525741673E+0004 3.10639630654003E+0004 + 3.10796794784434E+0004 3.10954018147758E+0004 3.11111300758775E+0004 3.11268642632286E+0004 3.11426043783093E+0004 + 3.11583504225998E+0004 3.11741023975808E+0004 3.11898603047330E+0004 3.12056241455375E+0004 3.12213939214752E+0004 + 3.12371696340275E+0004 3.12529512846760E+0004 3.12687388749021E+0004 3.12845324061879E+0004 3.13003318800153E+0004 + 3.13161372978667E+0004 3.13319486612242E+0004 3.13477659715707E+0004 3.13635892303889E+0004 3.13794184391616E+0004 + 3.13952535993721E+0004 3.14110947125035E+0004 3.14269417800398E+0004 3.14427948034642E+0004 3.14586537842608E+0004 + 3.14745187239136E+0004 3.14903896239069E+0004 3.15062664857252E+0004 3.15221493108529E+0004 3.15380381007752E+0004 + 3.15539328569764E+0004 3.15698335809422E+0004 3.15857402741580E+0004 3.16016529381090E+0004 3.16175715742811E+0004 + 3.16334961841602E+0004 3.16494267692324E+0004 3.16653633309840E+0004 3.16813058709012E+0004 3.16972543904710E+0004 + 3.17132088911801E+0004 3.17291693745154E+0004 3.17451358419640E+0004 3.17611082950137E+0004 3.17770867351515E+0004 + 3.17930711638656E+0004 3.18090615826437E+0004 3.18250579929739E+0004 3.18410603963447E+0004 3.18570687942444E+0004 + 3.18730831881617E+0004 3.18891035795854E+0004 3.19051299700047E+0004 3.19211623609085E+0004 3.19372007537864E+0004 + 3.19532451501281E+0004 3.19692955514233E+0004 3.19853519591618E+0004 3.20014143748337E+0004 3.20174827999295E+0004 + 3.20335572359397E+0004 3.20496376843549E+0004 3.20657241466661E+0004 3.20818166243641E+0004 3.20979151189403E+0004 + 3.21140196318862E+0004 3.21301301646932E+0004 3.21462467188532E+0004 3.21623692958583E+0004 3.21784978972005E+0004 + 3.21946325243721E+0004 3.22107731788657E+0004 3.22269198621741E+0004 3.22430725757901E+0004 3.22592313212067E+0004 + 3.22753960999174E+0004 3.22915669134153E+0004 3.23077437631942E+0004 3.23239266507480E+0004 3.23401155775707E+0004 + 3.23563105451563E+0004 3.23725115549994E+0004 3.23887186085943E+0004 3.24049317074360E+0004 3.24211508530191E+0004 + 3.24373760468389E+0004 3.24536072903907E+0004 3.24698445851699E+0004 3.24860879326722E+0004 3.25023373343933E+0004 + 3.25185927918295E+0004 3.25348543064769E+0004 3.25511218798316E+0004 3.25673955133905E+0004 3.25836752086503E+0004 + 3.25999609671079E+0004 3.26162527902603E+0004 3.26325506796050E+0004 3.26488546366394E+0004 3.26651646628613E+0004 + 3.26814807597683E+0004 3.26978029288586E+0004 3.27141311716305E+0004 3.27304654895823E+0004 3.27468058842128E+0004 + 3.27631523570205E+0004 3.27795049095044E+0004 3.27958635431638E+0004 3.28122282594978E+0004 3.28285990600064E+0004 + 3.28449759461887E+0004 3.28613589195450E+0004 3.28777479815752E+0004 3.28941431337795E+0004 3.29105443776586E+0004 + 3.29269517147127E+0004 3.29433651464429E+0004 3.29597846743501E+0004 3.29762102999356E+0004 3.29926420247006E+0004 + 3.30090798501467E+0004 3.30255237777756E+0004 3.30419738090891E+0004 3.30584299455896E+0004 3.30748921887790E+0004 + 3.30913605401601E+0004 3.31078350012354E+0004 3.31243155735076E+0004 3.31408022584799E+0004 3.31572950576553E+0004 + 3.31737939725374E+0004 3.31902990046296E+0004 3.32068101554358E+0004 3.32233274264597E+0004 3.32398508192057E+0004 + 3.32563803351778E+0004 3.32729159758806E+0004 3.32894577428190E+0004 3.33060056374976E+0004 3.33225596614213E+0004 + 3.33391198160958E+0004 3.33556861030260E+0004 3.33722585237177E+0004 3.33888370796767E+0004 3.34054217724088E+0004 + 3.34220126034204E+0004 3.34386095742176E+0004 3.34552126863071E+0004 3.34718219411952E+0004 3.34884373403894E+0004 + 3.35050588853961E+0004 3.35216865777230E+0004 3.35383204188774E+0004 3.35549604103667E+0004 3.35716065536989E+0004 + 3.35882588503821E+0004 3.36049173019243E+0004 3.36215819098337E+0004 3.36382526756192E+0004 3.36549296007891E+0004 + 3.36716126868526E+0004 3.36883019353186E+0004 3.37049973476965E+0004 3.37216989254957E+0004 3.37384066702258E+0004 + 3.37551205833967E+0004 3.37718406665183E+0004 3.37885669211008E+0004 3.38052993486546E+0004 3.38220379506903E+0004 + 3.38387827287185E+0004 3.38555336842503E+0004 3.38722908187967E+0004 3.38890541338690E+0004 3.39058236309786E+0004 + 3.39225993116373E+0004 3.39393811773570E+0004 3.39561692296494E+0004 3.39729634700270E+0004 3.39897639000021E+0004 + 3.40065705210872E+0004 3.40233833347952E+0004 3.40402023426390E+0004 3.40570275461316E+0004 3.40738589467866E+0004 + 3.40906965461171E+0004 3.41075403456371E+0004 3.41243903468603E+0004 3.41412465513009E+0004 3.41581089604731E+0004 + 3.41749775758912E+0004 3.41918523990698E+0004 3.42087334315238E+0004 3.42256206747681E+0004 3.42425141303178E+0004 + 3.42594137996884E+0004 3.42763196843952E+0004 3.42932317859541E+0004 3.43101501058809E+0004 3.43270746456917E+0004 + 3.43440054069026E+0004 3.43609423910304E+0004 3.43778855995914E+0004 3.43948350341024E+0004 3.44117906960805E+0004 + 3.44287525870430E+0004 3.44457207085072E+0004 3.44626950619904E+0004 3.44796756490106E+0004 3.44966624710856E+0004 + 3.45136555297335E+0004 3.45306548264725E+0004 3.45476603628212E+0004 3.45646721402982E+0004 3.45816901604225E+0004 + 3.45987144247128E+0004 3.46157449346884E+0004 3.46327816918688E+0004 3.46498246977734E+0004 3.46668739539221E+0004 + 3.46839294618348E+0004 3.47009912230317E+0004 3.47180592390329E+0004 3.47351335113590E+0004 3.47522140415306E+0004 + 3.47693008310685E+0004 3.47863938814941E+0004 3.48034931943283E+0004 3.48205987710925E+0004 3.48377106133084E+0004 + 3.48548287224978E+0004 3.48719531001825E+0004 3.48890837478848E+0004 3.49062206671271E+0004 3.49233638594315E+0004 + 3.49405133263212E+0004 3.49576690693188E+0004 3.49748310899474E+0004 3.49919993897303E+0004 3.50091739701908E+0004 + 3.50263548328526E+0004 3.50435419792396E+0004 3.50607354108756E+0004 3.50779351292850E+0004 3.50951411359918E+0004 + 3.51123534325209E+0004 3.51295720203966E+0004 3.51467969011444E+0004 3.51640280762888E+0004 3.51812655473553E+0004 + 3.51985093158695E+0004 3.52157593833568E+0004 3.52330157513431E+0004 3.52502784213545E+0004 3.52675473949171E+0004 + 3.52848226735572E+0004 3.53021042588016E+0004 3.53193921521767E+0004 3.53366863552098E+0004 3.53539868694276E+0004 + 3.53712936963578E+0004 3.53886068375276E+0004 3.54059262944648E+0004 3.54232520686972E+0004 3.54405841617528E+0004 + 3.54579225751598E+0004 3.54752673104466E+0004 3.54926183691421E+0004 3.55099757527745E+0004 3.55273394628729E+0004 + 3.55447095009668E+0004 3.55620858685852E+0004 3.55794685672577E+0004 3.55968575985139E+0004 3.56142529638839E+0004 + 3.56316546648974E+0004 3.56490627030848E+0004 3.56664770799767E+0004 3.56838977971034E+0004 3.57013248559960E+0004 + 3.57187582581851E+0004 3.57361980052022E+0004 3.57536440985784E+0004 3.57710965398453E+0004 3.57885553305348E+0004 + 3.58060204721785E+0004 3.58234919663086E+0004 3.58409698144574E+0004 3.58584540181573E+0004 3.58759445789409E+0004 + 3.58934414983410E+0004 3.59109447778907E+0004 3.59284544191230E+0004 3.59459704235715E+0004 3.59634927927696E+0004 + 3.59810215282511E+0004 3.59985566315497E+0004 3.60160981042000E+0004 3.60336459477358E+0004 3.60512001636915E+0004 + 3.60687607536022E+0004 3.60863277190026E+0004 3.61039010614274E+0004 3.61214807824121E+0004 3.61390668834920E+0004 + 3.61566593662028E+0004 3.61742582320800E+0004 3.61918634826598E+0004 3.62094751194782E+0004 3.62270931440714E+0004 + 3.62447175579761E+0004 3.62623483627289E+0004 3.62799855598666E+0004 3.62976291509263E+0004 3.63152791374451E+0004 + 3.63329355209607E+0004 3.63505983030103E+0004 3.63682674851321E+0004 3.63859430688638E+0004 3.64036250557435E+0004 + 3.64213134473097E+0004 3.64390082451008E+0004 3.64567094506556E+0004 3.64744170655129E+0004 3.64921310912117E+0004 + 3.65098515292915E+0004 3.65275783812914E+0004 3.65453116487513E+0004 3.65630513332109E+0004 3.65807974362102E+0004 + 3.65985499592893E+0004 3.66163089039886E+0004 3.66340742718487E+0004 3.66518460644102E+0004 3.66696242832140E+0004 + 3.66874089298014E+0004 3.67052000057134E+0004 3.67229975124918E+0004 3.67408014516779E+0004 3.67586118248136E+0004 + 3.67764286334410E+0004 3.67942518791023E+0004 3.68120815633399E+0004 3.68299176876962E+0004 3.68477602537140E+0004 + 3.68656092629363E+0004 3.68834647169062E+0004 3.69013266171670E+0004 3.69191949652622E+0004 3.69370697627353E+0004 + 3.69549510111305E+0004 3.69728387119914E+0004 3.69907328668626E+0004 3.70086334772882E+0004 3.70265405448129E+0004 + 3.70444540709815E+0004 3.70623740573390E+0004 3.70803005054304E+0004 3.70982334168012E+0004 3.71161727929967E+0004 + 3.71341186355627E+0004 3.71520709460450E+0004 3.71700297259899E+0004 3.71879949769432E+0004 3.72059667004518E+0004 + 3.72239448980620E+0004 3.72419295713207E+0004 3.72599207217748E+0004 3.72779183509715E+0004 3.72959224604582E+0004 + 3.73139330517824E+0004 3.73319501264919E+0004 3.73499736861343E+0004 3.73680037322580E+0004 3.73860402664111E+0004 + 3.74040832901421E+0004 3.74221328049997E+0004 3.74401888125325E+0004 3.74582513142897E+0004 3.74763203118205E+0004 + 3.74943958066740E+0004 3.75124778004001E+0004 3.75305662945482E+0004 3.75486612906685E+0004 3.75667627903111E+0004 + 3.75848707950261E+0004 3.76029853063640E+0004 3.76211063258756E+0004 3.76392338551115E+0004 3.76573678956230E+0004 + 3.76755084489612E+0004 3.76936555166775E+0004 3.77118091003233E+0004 3.77299692014506E+0004 3.77481358216112E+0004 + 3.77663089623573E+0004 3.77844886252412E+0004 3.78026748118154E+0004 3.78208675236325E+0004 3.78390667622455E+0004 + 3.78572725292073E+0004 3.78754848260712E+0004 3.78937036543907E+0004 3.79119290157193E+0004 3.79301609116108E+0004 + 3.79483993436191E+0004 3.79666443132984E+0004 3.79848958222030E+0004 3.80031538718877E+0004 3.80214184639069E+0004 + 3.80396895998153E+0004 3.80579672811684E+0004 3.80762515095214E+0004 3.80945422864295E+0004 3.81128396134485E+0004 + 3.81311434921341E+0004 3.81494539240422E+0004 3.81677709107293E+0004 3.81860944537515E+0004 3.82044245546655E+0004 + 3.82227612150278E+0004 3.82411044363956E+0004 3.82594542203257E+0004 3.82778105683756E+0004 3.82961734821026E+0004 + 3.83145429630645E+0004 3.83329190128191E+0004 3.83513016329242E+0004 3.83696908249383E+0004 3.83880865904196E+0004 + 3.84064889309268E+0004 3.84248978480184E+0004 3.84433133432536E+0004 3.84617354181914E+0004 3.84801640743911E+0004 + 3.84985993134122E+0004 3.85170411368143E+0004 3.85354895461574E+0004 3.85539445430015E+0004 3.85724061289067E+0004 + 3.85908743054335E+0004 3.86093490741426E+0004 3.86278304365946E+0004 3.86463183943504E+0004 3.86648129489712E+0004 + 3.86833141020185E+0004 3.87018218550537E+0004 3.87203362096385E+0004 3.87388571673345E+0004 3.87573847297043E+0004 + 3.87759188983096E+0004 3.87944596747133E+0004 3.88130070604777E+0004 3.88315610571657E+0004 3.88501216663403E+0004 + 3.88686888895646E+0004 3.88872627284020E+0004 3.89058431844159E+0004 3.89244302591702E+0004 3.89430239542289E+0004 + 3.89616242711558E+0004 3.89802312115151E+0004 3.89988447768717E+0004 3.90174649687899E+0004 3.90360917888345E+0004 + 3.90547252385707E+0004 3.90733653195635E+0004 3.90920120333784E+0004 3.91106653815809E+0004 3.91293253657367E+0004 + 3.91479919874119E+0004 3.91666652481724E+0004 3.91853451495847E+0004 3.92040316932150E+0004 3.92227248806301E+0004 + 3.92414247133969E+0004 3.92601311930825E+0004 3.92788443212538E+0004 3.92975640994785E+0004 3.93162905293239E+0004 + 3.93350236123581E+0004 3.93537633501489E+0004 3.93725097442644E+0004 3.93912627962727E+0004 3.94100225077427E+0004 + 3.94287888802428E+0004 3.94475619153422E+0004 3.94663416146096E+0004 3.94851279796143E+0004 3.95039210119258E+0004 + 3.95227207131138E+0004 3.95415270847479E+0004 3.95603401283980E+0004 3.95791598456345E+0004 3.95979862380276E+0004 + 3.96168193071479E+0004 3.96356590545661E+0004 3.96545054818529E+0004 3.96733585905796E+0004 3.96922183823175E+0004 + 3.97110848586378E+0004 3.97299580211122E+0004 3.97488378713126E+0004 3.97677244108110E+0004 3.97866176411795E+0004 + 3.98055175639906E+0004 3.98244241808165E+0004 3.98433374932304E+0004 3.98622575028050E+0004 3.98811842111131E+0004 + 3.99001176197286E+0004 3.99190577302244E+0004 3.99380045441744E+0004 3.99569580631527E+0004 3.99759182887326E+0004 + 3.99948852224891E+0004 4.00138588659959E+0004 4.00328392208282E+0004 4.00518262885602E+0004 4.00708200707673E+0004 + 4.00898205690243E+0004 4.01088277849066E+0004 4.01278417199897E+0004 4.01468623758492E+0004 4.01658897540612E+0004 + 4.01849238562014E+0004 4.02039646838462E+0004 4.02230122385721E+0004 4.02420665219556E+0004 4.02611275355733E+0004 + 4.02801952810025E+0004 4.02992697598201E+0004 4.03183509736035E+0004 4.03374389239305E+0004 4.03565336123782E+0004 + 4.03756350405249E+0004 4.03947432099484E+0004 4.04138581222274E+0004 4.04329797789399E+0004 4.04521081816646E+0004 + 4.04712433319805E+0004 4.04903852314664E+0004 4.05095338817014E+0004 4.05286892842652E+0004 4.05478514407368E+0004 + 4.05670203526965E+0004 4.05861960217238E+0004 4.06053784493989E+0004 4.06245676373020E+0004 4.06437635870139E+0004 + 4.06629663001149E+0004 4.06821757781857E+0004 4.07013920228077E+0004 4.07206150355621E+0004 4.07398448180297E+0004 + 4.07590813717927E+0004 4.07783246984325E+0004 4.07975747995311E+0004 4.08168316766707E+0004 4.08360953314335E+0004 + 4.08553657654019E+0004 4.08746429801587E+0004 4.08939269772869E+0004 4.09132177583691E+0004 4.09325153249889E+0004 + 4.09518196787296E+0004 4.09711308211746E+0004 4.09904487539079E+0004 4.10097734785134E+0004 4.10291049965752E+0004 + 4.10484433096775E+0004 4.10677884194050E+0004 4.10871403273424E+0004 4.11064990350743E+0004 4.11258645441860E+0004 + 4.11452368562628E+0004 4.11646159728899E+0004 4.11840018956530E+0004 4.12033946261379E+0004 4.12227941659306E+0004 + 4.12422005166172E+0004 4.12616136797839E+0004 4.12810336570176E+0004 4.13004604499048E+0004 4.13198940600324E+0004 + 4.13393344889874E+0004 4.13587817383573E+0004 4.13782358097293E+0004 4.13976967046910E+0004 4.14171644248305E+0004 + 4.14366389717356E+0004 4.14561203469944E+0004 4.14756085521956E+0004 4.14951035889273E+0004 4.15146054587787E+0004 + 4.15341141633383E+0004 4.15536297041956E+0004 4.15731520829393E+0004 4.15926813011596E+0004 4.16122173604457E+0004 + 4.16317602623876E+0004 4.16513100085750E+0004 4.16708666005986E+0004 4.16904300400484E+0004 4.17100003285152E+0004 + 4.17295774675898E+0004 4.17491614588628E+0004 4.17687523039257E+0004 4.17883500043697E+0004 4.18079545617861E+0004 + 4.18275659777668E+0004 4.18471842539037E+0004 4.18668093917886E+0004 4.18864413930139E+0004 4.19060802591721E+0004 + 4.19257259918555E+0004 4.19453785926571E+0004 4.19650380631699E+0004 4.19847044049869E+0004 4.20043776197016E+0004 + 4.20240577089073E+0004 4.20437446741979E+0004 4.20634385171673E+0004 4.20831392394094E+0004 4.21028468425185E+0004 + 4.21225613280890E+0004 4.21422826977157E+0004 4.21620109529933E+0004 4.21817460955168E+0004 4.22014881268812E+0004 + 4.22212370486822E+0004 4.22409928625150E+0004 4.22607555699756E+0004 4.22805251726598E+0004 4.23003016721635E+0004 + 4.23200850700833E+0004 4.23398753680154E+0004 4.23596725675567E+0004 4.23794766703038E+0004 4.23992876778538E+0004 + 4.24191055918041E+0004 4.24389304137515E+0004 4.24587621452943E+0004 4.24786007880297E+0004 4.24984463435558E+0004 + 4.25182988134708E+0004 4.25381581993728E+0004 4.25580245028607E+0004 4.25778977255327E+0004 4.25977778689878E+0004 + 4.26176649348251E+0004 4.26375589246440E+0004 4.26574598400434E+0004 4.26773676826234E+0004 4.26972824539833E+0004 + 4.27172041557236E+0004 4.27371327894439E+0004 4.27570683567452E+0004 4.27770108592272E+0004 4.27969602984909E+0004 + 4.28169166761375E+0004 4.28368799937677E+0004 4.28568502529829E+0004 4.28768274553844E+0004 4.28968116025740E+0004 + 4.29168026961533E+0004 4.29368007377245E+0004 4.29568057288894E+0004 4.29768176712507E+0004 4.29968365664108E+0004 + 4.30168624159724E+0004 4.30368952215385E+0004 4.30569349847120E+0004 4.30769817070963E+0004 4.30970353902949E+0004 + 4.31170960359111E+0004 4.31371636455493E+0004 4.31572382208130E+0004 4.31773197633066E+0004 4.31974082746343E+0004 + 4.32175037564010E+0004 4.32376062102111E+0004 4.32577156376696E+0004 4.32778320403817E+0004 4.32979554199526E+0004 + 4.33180857779880E+0004 4.33382231160933E+0004 4.33583674358742E+0004 4.33785187389370E+0004 4.33986770268881E+0004 + 4.34188423013334E+0004 4.34390145638798E+0004 4.34591938161342E+0004 4.34793800597031E+0004 4.34995732961938E+0004 + 4.35197735272138E+0004 4.35399807543704E+0004 4.35601949792714E+0004 4.35804162035247E+0004 4.36006444287382E+0004 + 4.36208796565201E+0004 4.36411218884790E+0004 4.36613711262234E+0004 4.36816273713623E+0004 4.37018906255043E+0004 + 4.37221608902587E+0004 4.37424381672349E+0004 4.37627224580424E+0004 4.37830137642909E+0004 4.38033120875904E+0004 + 4.38236174295506E+0004 4.38439297917821E+0004 4.38642491758954E+0004 4.38845755835008E+0004 4.39049090162095E+0004 + 4.39252494756321E+0004 4.39455969633801E+0004 4.39659514810644E+0004 4.39863130302971E+0004 4.40066816126897E+0004 + 4.40270572298541E+0004 4.40474398834024E+0004 4.40678295749468E+0004 4.40882263060999E+0004 4.41086300784744E+0004 + 4.41290408936827E+0004 4.41494587533383E+0004 4.41698836590544E+0004 4.41903156124442E+0004 4.42107546151212E+0004 + 4.42312006686992E+0004 4.42516537747923E+0004 4.42721139350143E+0004 4.42925811509800E+0004 4.43130554243034E+0004 + 4.43335367565995E+0004 4.43540251494827E+0004 4.43745206045688E+0004 4.43950231234723E+0004 4.44155327078091E+0004 + 4.44360493591945E+0004 4.44565730792441E+0004 4.44771038695744E+0004 4.44976417318013E+0004 4.45181866675409E+0004 + 4.45387386784101E+0004 4.45592977660252E+0004 4.45798639320034E+0004 4.46004371779617E+0004 4.46210175055171E+0004 + 4.46416049162874E+0004 4.46621994118900E+0004 4.46828009939427E+0004 4.47034096640635E+0004 4.47240254238706E+0004 + 4.47446482749822E+0004 4.47652782190173E+0004 4.47859152575940E+0004 4.48065593923316E+0004 4.48272106248490E+0004 + 4.48478689567657E+0004 4.48685343897009E+0004 4.48892069252743E+0004 4.49098865651059E+0004 4.49305733108156E+0004 + 4.49512671640234E+0004 4.49719681263499E+0004 4.49926761994158E+0004 4.50133913848412E+0004 4.50341136842478E+0004 + 4.50548430992563E+0004 4.50755796314881E+0004 4.50963232825645E+0004 4.51170740541074E+0004 4.51378319477387E+0004 + 4.51585969650800E+0004 4.51793691077540E+0004 4.52001483773829E+0004 4.52209347755892E+0004 4.52417283039958E+0004 + 4.52625289642256E+0004 4.52833367579017E+0004 4.53041516866476E+0004 4.53249737520863E+0004 4.53458029558420E+0004 + 4.53666392995386E+0004 4.53874827847999E+0004 4.54083334132499E+0004 4.54291911865135E+0004 4.54500561062152E+0004 + 4.54709281739799E+0004 4.54918073914319E+0004 4.55126937601973E+0004 4.55335872819008E+0004 4.55544879581680E+0004 + 4.55753957906248E+0004 4.55963107808970E+0004 4.56172329306107E+0004 4.56381622413923E+0004 4.56590987148678E+0004 + 4.56800423526644E+0004 4.57009931564085E+0004 4.57219511277273E+0004 4.57429162682479E+0004 4.57638885795978E+0004 + 4.57848680634042E+0004 4.58058547212952E+0004 4.58268485548984E+0004 4.58478495658423E+0004 4.58688577557550E+0004 + 4.58898731262647E+0004 4.59108956790003E+0004 4.59319254155909E+0004 4.59529623376649E+0004 4.59740064468522E+0004 + 4.59950577447816E+0004 4.60161162330830E+0004 4.60371819133860E+0004 4.60582547873206E+0004 4.60793348565170E+0004 + 4.61004221226054E+0004 4.61215165872165E+0004 4.61426182519806E+0004 4.61637271185287E+0004 4.61848431884920E+0004 + 4.62059664635017E+0004 4.62270969451893E+0004 4.62482346351859E+0004 4.62693795351237E+0004 4.62905316466348E+0004 + 4.63116909713510E+0004 4.63328575109047E+0004 4.63540312669285E+0004 4.63752122410551E+0004 4.63964004349174E+0004 + 4.64175958501485E+0004 4.64387984883816E+0004 4.64600083512500E+0004 4.64812254403875E+0004 4.65024497574279E+0004 + 4.65236813040050E+0004 4.65449200817531E+0004 4.65661660923066E+0004 4.65874193373000E+0004 4.66086798183682E+0004 + 4.66299475371457E+0004 4.66512224952677E+0004 4.66725046943699E+0004 4.66937941360874E+0004 4.67150908220558E+0004 + 4.67363947539111E+0004 4.67577059332891E+0004 4.67790243618260E+0004 4.68003500411586E+0004 4.68216829729232E+0004 + 4.68430231587564E+0004 4.68643706002950E+0004 4.68857252991769E+0004 4.69070872570385E+0004 4.69284564755176E+0004 + 4.69498329562519E+0004 4.69712167008795E+0004 4.69926077110380E+0004 4.70140059883660E+0004 4.70354115345014E+0004 + 4.70568243510834E+0004 4.70782444397502E+0004 4.70996718021412E+0004 4.71211064398953E+0004 4.71425483546519E+0004 + 4.71639975480505E+0004 4.71854540217308E+0004 4.72069177773325E+0004 4.72283888164960E+0004 4.72498671408612E+0004 + 4.72713527520689E+0004 4.72928456517593E+0004 4.73143458415734E+0004 4.73358533231522E+0004 4.73573680981367E+0004 + 4.73788901681685E+0004 4.74004195348890E+0004 4.74219561999398E+0004 4.74435001649631E+0004 4.74650514316006E+0004 + 4.74866100014948E+0004 4.75081758762880E+0004 4.75297490576231E+0004 4.75513295471427E+0004 4.75729173464898E+0004 + 4.75945124573078E+0004 4.76161148812397E+0004 4.76377246199294E+0004 4.76593416750204E+0004 4.76809660481570E+0004 + 4.77025977409827E+0004 4.77242367551421E+0004 4.77458830922799E+0004 4.77675367540404E+0004 4.77891977420684E+0004 + 4.78108660580094E+0004 4.78325417035082E+0004 4.78542246802103E+0004 4.78759149897614E+0004 4.78976126338070E+0004 + 4.79193176139932E+0004 4.79410299319662E+0004 4.79627495893721E+0004 4.79844765878578E+0004 4.80062109290694E+0004 + 4.80279526146542E+0004 4.80497016462591E+0004 4.80714580255314E+0004 4.80932217541183E+0004 4.81149928336678E+0004 + 4.81367712658274E+0004 4.81585570522450E+0004 4.81803501945687E+0004 4.82021506944473E+0004 4.82239585535290E+0004 + 4.82457737734625E+0004 4.82675963558966E+0004 4.82894263024805E+0004 4.83112636148635E+0004 4.83331082946950E+0004 + 4.83549603436247E+0004 4.83768197633021E+0004 4.83986865553776E+0004 4.84205607215011E+0004 4.84424422633230E+0004 + 4.84643311824938E+0004 4.84862274806645E+0004 4.85081311594857E+0004 4.85300422206089E+0004 4.85519606656847E+0004 + 4.85738864963651E+0004 4.85958197143017E+0004 4.86177603211460E+0004 4.86397083185505E+0004 4.86616637081670E+0004 + 4.86836264916481E+0004 4.87055966706462E+0004 4.87275742468144E+0004 4.87495592218052E+0004 4.87715515972719E+0004 + 4.87935513748678E+0004 4.88155585562466E+0004 4.88375731430614E+0004 4.88595951369666E+0004 4.88816245396161E+0004 + 4.89036613526640E+0004 4.89257055777648E+0004 4.89477572165732E+0004 4.89698162707436E+0004 4.89918827419314E+0004 + 4.90139566317914E+0004 4.90360379419794E+0004 4.90581266741501E+0004 4.90802228299599E+0004 4.91023264110647E+0004 + 4.91244374191201E+0004 4.91465558557825E+0004 4.91686817227086E+0004 4.91908150215546E+0004 4.92129557539776E+0004 + 4.92351039216345E+0004 4.92572595261824E+0004 4.92794225692787E+0004 4.93015930525810E+0004 4.93237709777468E+0004 + 4.93459563464344E+0004 4.93681491603017E+0004 4.93903494210065E+0004 4.94125571302080E+0004 4.94347722895644E+0004 + 4.94569949007347E+0004 4.94792249653776E+0004 4.95014624851525E+0004 4.95237074617192E+0004 4.95459598967365E+0004 + 4.95682197918647E+0004 4.95904871487633E+0004 4.96127619690928E+0004 4.96350442545132E+0004 4.96573340066851E+0004 + 4.96796312272693E+0004 4.97019359179264E+0004 4.97242480803175E+0004 4.97465677161036E+0004 4.97688948269467E+0004 + 4.97912294145080E+0004 4.98135714804492E+0004 4.98359210264322E+0004 4.98582780541194E+0004 4.98806425651730E+0004 + 4.99030145612555E+0004 4.99253940440294E+0004 4.99477810151578E+0004 4.99701754763038E+0004 4.99925774291303E+0004 + 5.00149868753011E+0004 5.00374038164797E+0004 5.00598282543296E+0004 5.00822601905152E+0004 5.01046996267004E+0004 + 5.01271465645497E+0004 5.01496010057274E+0004 5.01720629518982E+0004 5.01945324047273E+0004 5.02170093658796E+0004 + 5.02394938370204E+0004 5.02619858198150E+0004 5.02844853159292E+0004 5.03069923270287E+0004 5.03295068547794E+0004 + 5.03520289008480E+0004 5.03745584669003E+0004 5.03970955546028E+0004 5.04196401656227E+0004 5.04421923016266E+0004 + 5.04647519642817E+0004 5.04873191552551E+0004 5.05098938762145E+0004 5.05324761288275E+0004 5.05550659147620E+0004 + 5.05776632356859E+0004 5.06002680932676E+0004 5.06228804891749E+0004 5.06455004250769E+0004 5.06681279026424E+0004 + 5.06907629235403E+0004 5.07134054894394E+0004 5.07360556020093E+0004 5.07587132629193E+0004 5.07813784738393E+0004 + 5.08040512364387E+0004 5.08267315523883E+0004 5.08494194233578E+0004 5.08721148510176E+0004 5.08948178370385E+0004 + 5.09175283830912E+0004 5.09402464908465E+0004 5.09629721619759E+0004 5.09857053981506E+0004 5.10084462010417E+0004 + 5.10311945723215E+0004 5.10539505136614E+0004 5.10767140267339E+0004 5.10994851132110E+0004 5.11222637747651E+0004 + 5.11450500130689E+0004 5.11678438297953E+0004 5.11906452266171E+0004 5.12134542052075E+0004 5.12362707672401E+0004 + 5.12590949143879E+0004 5.12819266483253E+0004 5.13047659707256E+0004 5.13276128832633E+0004 5.13504673876127E+0004 + 5.13733294854476E+0004 5.13961991784435E+0004 5.14190764682748E+0004 5.14419613566165E+0004 5.14648538451439E+0004 + 5.14877539355325E+0004 5.15106616294573E+0004 5.15335769285946E+0004 5.15564998346204E+0004 5.15794303492103E+0004 + 5.16023684740410E+0004 5.16253142107888E+0004 5.16482675611306E+0004 5.16712285267428E+0004 5.16941971093029E+0004 + 5.17171733104879E+0004 5.17401571319752E+0004 5.17631485754424E+0004 5.17861476425672E+0004 5.18091543350278E+0004 + 5.18321686545020E+0004 5.18551906026684E+0004 5.18782201812054E+0004 5.19012573917916E+0004 5.19243022361060E+0004 + 5.19473547158275E+0004 5.19704148326355E+0004 5.19934825882096E+0004 5.20165579842289E+0004 5.20396410223736E+0004 + 5.20627317043234E+0004 5.20858300317586E+0004 5.21089360063599E+0004 5.21320496298072E+0004 5.21551709037817E+0004 + 5.21782998299639E+0004 5.22014364100351E+0004 5.22245806456766E+0004 5.22477325385698E+0004 5.22708920903961E+0004 + 5.22940593028378E+0004 5.23172341775764E+0004 5.23404167162945E+0004 5.23636069206741E+0004 5.23868047923980E+0004 + 5.24100103331489E+0004 5.24332235446098E+0004 5.24564444284636E+0004 5.24796729863936E+0004 5.25029092200834E+0004 + 5.25261531312164E+0004 5.25494047214771E+0004 5.25726639925487E+0004 5.25959309461159E+0004 5.26192055838630E+0004 + 5.26424879074744E+0004 5.26657779186349E+0004 5.26890756190299E+0004 5.27123810103441E+0004 5.27356940942626E+0004 + 5.27590148724715E+0004 5.27823433466558E+0004 5.28056795185020E+0004 5.28290233896958E+0004 5.28523749619235E+0004 + 5.28757342368712E+0004 5.28991012162262E+0004 5.29224759016747E+0004 5.29458582949040E+0004 5.29692483976012E+0004 + 5.29926462114532E+0004 5.30160517381480E+0004 5.30394649793733E+0004 5.30628859368166E+0004 5.30863146121664E+0004 + 5.31097510071106E+0004 5.31331951233379E+0004 5.31566469625370E+0004 5.31801065263962E+0004 5.32035738166050E+0004 + 5.32270488348523E+0004 5.32505315828277E+0004 5.32740220622207E+0004 5.32975202747207E+0004 5.33210262220178E+0004 + 5.33445399058023E+0004 5.33680613277643E+0004 5.33915904895941E+0004 5.34151273929828E+0004 5.34386720396206E+0004 + 5.34622244311993E+0004 5.34857845694092E+0004 5.35093524559424E+0004 5.35329280924901E+0004 5.35565114807441E+0004 + 5.35801026223965E+0004 5.36037015191392E+0004 5.36273081726646E+0004 5.36509225846652E+0004 5.36745447568338E+0004 + 5.36981746908630E+0004 5.37218123884459E+0004 5.37454578512759E+0004 5.37691110810462E+0004 5.37927720794505E+0004 + 5.38164408481824E+0004 5.38401173889360E+0004 5.38638017034055E+0004 5.38874937932852E+0004 5.39111936602695E+0004 + 5.39349013060533E+0004 5.39586167323311E+0004 5.39823399407984E+0004 5.40060709331499E+0004 5.40298097110818E+0004 + 5.40535562762892E+0004 5.40773106304677E+0004 5.41010727753137E+0004 5.41248427125232E+0004 5.41486204437927E+0004 + 5.41724059708184E+0004 5.41961992952971E+0004 5.42200004189264E+0004 5.42438093434023E+0004 5.42676260704226E+0004 + 5.42914506016849E+0004 5.43152829388867E+0004 5.43391230837256E+0004 5.43629710378997E+0004 5.43868268031074E+0004 + 5.44106903810470E+0004 5.44345617734167E+0004 5.44584409819159E+0004 5.44823280082430E+0004 5.45062228540973E+0004 + 5.45301255211780E+0004 5.45540360111846E+0004 5.45779543258169E+0004 5.46018804667746E+0004 5.46258144357577E+0004 + 5.46497562344666E+0004 5.46737058646014E+0004 5.46976633278630E+0004 5.47216286259519E+0004 5.47456017605690E+0004 + 5.47695827334160E+0004 5.47935715461936E+0004 5.48175682006035E+0004 5.48415726983473E+0004 5.48655850411271E+0004 + 5.48896052306448E+0004 5.49136332686025E+0004 5.49376691567028E+0004 5.49617128966483E+0004 5.49857644901416E+0004 + 5.50098239388861E+0004 5.50338912445845E+0004 5.50579664089403E+0004 5.50820494336571E+0004 5.51061403204384E+0004 + 5.51302390709885E+0004 5.51543456870108E+0004 5.51784601702102E+0004 5.52025825222910E+0004 5.52267127449575E+0004 + 5.52508508399149E+0004 5.52749968088680E+0004 5.52991506535220E+0004 5.53233123755822E+0004 5.53474819767544E+0004 + 5.53716594587440E+0004 5.53958448232572E+0004 5.54200380719997E+0004 5.54442392066784E+0004 5.54684482289990E+0004 + 5.54926651406689E+0004 5.55168899433943E+0004 5.55411226388827E+0004 5.55653632288411E+0004 5.55896117149768E+0004 + 5.56138680989975E+0004 5.56381323826112E+0004 5.56624045675251E+0004 5.56866846554480E+0004 5.57109726480879E+0004 + 5.57352685471536E+0004 5.57595723543533E+0004 5.57838840713961E+0004 5.58082036999912E+0004 5.58325312418477E+0004 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 2.25335734612510E+0000 + 2.25209420332874E+0000 2.25083167236899E+0000 2.24956975299087E+0000 2.24830844493953E+0000 2.24704774796018E+0000 + 2.24578766179813E+0000 2.24452818619880E+0000 2.24326932090767E+0000 2.24201106567033E+0000 2.24075342023248E+0000 + 2.23949638433987E+0000 2.23823995773837E+0000 2.23698414017394E+0000 2.23572893139262E+0000 2.23447433114055E+0000 + 2.23322033916397E+0000 2.23196695520918E+0000 2.23071417902260E+0000 2.22946201035074E+0000 2.22821044894020E+0000 + 2.22695949453765E+0000 2.22570914688988E+0000 2.22445940574375E+0000 2.22321027084622E+0000 2.22196174194435E+0000 + 2.22071381878527E+0000 2.21946650111623E+0000 2.21821978868454E+0000 2.21697368123763E+0000 2.21572817852299E+0000 + 2.21448328028823E+0000 2.21323898628103E+0000 2.21199529624917E+0000 2.21075220994053E+0000 2.20950972710307E+0000 + 2.20826784748483E+0000 2.20702657083397E+0000 2.20578589689872E+0000 2.20454582542739E+0000 2.20330635616841E+0000 + 2.20206748887029E+0000 2.20082922328161E+0000 2.19959155915108E+0000 2.19835449622745E+0000 2.19711803425962E+0000 + 2.19588217299653E+0000 2.19464691218724E+0000 2.19341225158088E+0000 2.19217819092669E+0000 2.19094472997399E+0000 + 2.18971186847219E+0000 2.18847960617080E+0000 2.18724794281940E+0000 2.18601687816769E+0000 2.18478641196542E+0000 + 2.18355654396248E+0000 2.18232727390881E+0000 2.18109860155446E+0000 2.17987052664956E+0000 2.17864304894433E+0000 + 2.17741616818910E+0000 2.17618988413426E+0000 2.17496419653032E+0000 2.17373910512786E+0000 2.17251460967755E+0000 + 2.17129070993016E+0000 2.17006740563654E+0000 2.16884469654765E+0000 2.16762258241450E+0000 2.16640106298824E+0000 + 2.16518013802008E+0000 2.16395980726132E+0000 2.16274007046336E+0000 2.16152092737767E+0000 2.16030237775584E+0000 + 2.15908442134953E+0000 2.15786705791049E+0000 2.15665028719057E+0000 2.15543410894170E+0000 2.15421852291590E+0000 + 2.15300352886529E+0000 2.15178912654206E+0000 2.15057531569852E+0000 2.14936209608703E+0000 2.14814946746007E+0000 + 2.14693742957021E+0000 2.14572598217008E+0000 2.14451512501243E+0000 2.14330485785009E+0000 2.14209518043597E+0000 + 2.14088609252309E+0000 2.13967759386453E+0000 2.13846968421348E+0000 2.13726236332322E+0000 2.13605563094711E+0000 + 2.13484948683860E+0000 2.13364393075124E+0000 2.13243896243865E+0000 2.13123458165456E+0000 2.13003078815278E+0000 + 2.12882758168721E+0000 2.12762496201182E+0000 2.12642292888070E+0000 2.12522148204802E+0000 2.12402062126803E+0000 + 2.12282034629506E+0000 2.12162065688356E+0000 2.12042155278804E+0000 2.11922303376312E+0000 2.11802509956348E+0000 + 2.11682774994393E+0000 2.11563098465933E+0000 2.11443480346464E+0000 2.11323920611493E+0000 2.11204419236533E+0000 + 2.11084976197108E+0000 2.10965591468749E+0000 2.10846265026997E+0000 2.10726996847402E+0000 2.10607786905521E+0000 + 2.10488635176923E+0000 2.10369541637184E+0000 2.10250506261888E+0000 2.10131529026630E+0000 2.10012609907011E+0000 + 2.09893748878644E+0000 2.09774945917149E+0000 2.09656200998155E+0000 2.09537514097299E+0000 2.09418885190230E+0000 + 2.09300314252601E+0000 2.09181801260079E+0000 2.09063346188335E+0000 2.08944949013052E+0000 2.08826609709921E+0000 + 2.08708328254642E+0000 2.08590104622923E+0000 2.08471938790481E+0000 2.08353830733042E+0000 2.08235780426341E+0000 + 2.08117787846122E+0000 2.07999852968138E+0000 2.07881975768149E+0000 2.07764156221925E+0000 2.07646394305245E+0000 + 2.07528689993897E+0000 2.07411043263677E+0000 2.07293454090391E+0000 2.07175922449851E+0000 2.07058448317881E+0000 + 2.06941031670312E+0000 2.06823672482984E+0000 2.06706370731746E+0000 2.06589126392456E+0000 2.06471939440980E+0000 + 2.06354809853193E+0000 2.06237737604980E+0000 2.06120722672232E+0000 2.06003765030852E+0000 2.05886864656749E+0000 + 2.05770021525842E+0000 2.05653235614059E+0000 2.05536506897336E+0000 2.05419835351619E+0000 2.05303220952860E+0000 + 2.05186663677023E+0000 2.05070163500078E+0000 2.04953720398007E+0000 2.04837334346796E+0000 2.04721005322444E+0000 + 2.04604733300956E+0000 2.04488518258348E+0000 2.04372360170643E+0000 2.04256259013873E+0000 2.04140214764079E+0000 + 2.04024227397310E+0000 2.03908296889625E+0000 2.03792423217091E+0000 2.03676606355782E+0000 2.03560846281785E+0000 + 2.03445142971191E+0000 2.03329496400101E+0000 2.03213906544628E+0000 2.03098373380889E+0000 2.02982896885012E+0000 + 2.02867477033133E+0000 2.02752113801398E+0000 2.02636807165960E+0000 2.02521557102981E+0000 2.02406363588633E+0000 + 2.02291226599094E+0000 2.02176146110554E+0000 2.02061122099209E+0000 2.01946154541265E+0000 2.01831243412936E+0000 + 2.01716388690444E+0000 2.01601590350022E+0000 2.01486848367909E+0000 2.01372162720354E+0000 2.01257533383615E+0000 + 2.01142960333957E+0000 2.01028443547655E+0000 2.00913983000992E+0000 2.00799578670260E+0000 2.00685230531760E+0000 + 2.00570938561800E+0000 2.00456702736699E+0000 2.00342523032782E+0000 2.00228399426384E+0000 2.00114331893850E+0000 + 2.00000320411530E+0000 1.99886364955786E+0000 1.99772465502987E+0000 1.99658622029511E+0000 1.99544834511744E+0000 + 1.99431102926081E+0000 1.99317427248925E+0000 1.99203807456690E+0000 1.99090243525796E+0000 1.98976735432672E+0000 + 1.98863283153755E+0000 1.98749886665493E+0000 1.98636545944341E+0000 1.98523260966761E+0000 1.98410031709227E+0000 + 1.98296858148218E+0000 1.98183740260225E+0000 1.98070678021744E+0000 1.97957671409283E+0000 1.97844720399356E+0000 + 1.97731824968487E+0000 1.97618985093208E+0000 1.97506200750058E+0000 1.97393471915588E+0000 1.97280798566354E+0000 + 1.97168180678923E+0000 1.97055618229870E+0000 1.96943111195777E+0000 1.96830659553237E+0000 1.96718263278849E+0000 + 1.96605922349223E+0000 1.96493636740975E+0000 1.96381406430731E+0000 1.96269231395126E+0000 1.96157111610802E+0000 + 1.96045047054411E+0000 1.95933037702612E+0000 1.95821083532073E+0000 1.95709184519471E+0000 1.95597340641492E+0000 + 1.95485551874829E+0000 1.95373818196184E+0000 1.95262139582268E+0000 1.95150516009801E+0000 1.95038947455509E+0000 + 1.94927433896130E+0000 1.94815975308407E+0000 1.94704571669093E+0000 1.94593222954951E+0000 1.94481929142749E+0000 + 1.94370690209268E+0000 1.94259506131293E+0000 1.94148376885619E+0000 1.94037302449051E+0000 1.93926282798402E+0000 + 1.93815317910490E+0000 1.93704407762147E+0000 1.93593552330209E+0000 1.93482751591523E+0000 1.93372005522942E+0000 + 1.93261314101330E+0000 1.93150677303559E+0000 1.93040095106507E+0000 1.92929567487063E+0000 1.92819094422124E+0000 + 1.92708675888595E+0000 1.92598311863390E+0000 1.92488002323429E+0000 1.92377747245644E+0000 1.92267546606973E+0000 + 1.92157400384363E+0000 1.92047308554770E+0000 1.91937271095157E+0000 1.91827287982498E+0000 1.91717359193772E+0000 + 1.91607484705969E+0000 1.91497664496086E+0000 1.91387898541129E+0000 1.91278186818113E+0000 1.91168529304059E+0000 + 1.91058925976000E+0000 1.90949376810974E+0000 1.90839881786030E+0000 1.90730440878223E+0000 1.90621054064618E+0000 + 1.90511721322287E+0000 1.90402442628313E+0000 1.90293217959785E+0000 1.90184047293800E+0000 1.90074930607465E+0000 + 1.89965867877895E+0000 1.89856859082213E+0000 1.89747904197550E+0000 1.89639003201045E+0000 1.89530156069848E+0000 + 1.89421362781114E+0000 1.89312623312008E+0000 1.89203937639703E+0000 1.89095305741381E+0000 1.88986727594232E+0000 + 1.88878203175452E+0000 1.88769732462250E+0000 1.88661315431839E+0000 1.88552952061443E+0000 1.88444642328293E+0000 + 1.88336386209628E+0000 1.88228183682697E+0000 1.88120034724756E+0000 1.88011939313070E+0000 1.87903897424911E+0000 + 1.87795909037560E+0000 1.87687974128308E+0000 1.87580092674452E+0000 1.87472264653298E+0000 1.87364490042160E+0000 + 1.87256768818361E+0000 1.87149100959232E+0000 1.87041486442113E+0000 1.86933925244350E+0000 1.86826417343299E+0000 + 1.86718962716326E+0000 1.86611561340801E+0000 1.86504213194106E+0000 1.86396918253629E+0000 1.86289676496768E+0000 + 1.86182487900928E+0000 1.86075352443523E+0000 1.85968270101974E+0000 1.85861240853711E+0000 1.85754264676174E+0000 + 1.85647341546808E+0000 1.85540471443069E+0000 1.85433654342420E+0000 1.85326890222332E+0000 1.85220179060285E+0000 + 1.85113520833766E+0000 1.85006915520272E+0000 1.84900363097308E+0000 1.84793863542384E+0000 1.84687416833024E+0000 + 1.84581022946754E+0000 1.84474681861113E+0000 1.84368393553647E+0000 1.84262158001907E+0000 1.84155975183457E+0000 + 1.84049845075867E+0000 1.83943767656715E+0000 1.83837742903587E+0000 1.83731770794077E+0000 1.83625851305790E+0000 + 1.83519984416336E+0000 1.83414170103333E+0000 1.83308408344410E+0000 1.83202699117202E+0000 1.83097042399353E+0000 + 1.82991438168516E+0000 1.82885886402349E+0000 1.82780387078522E+0000 1.82674940174711E+0000 1.82569545668601E+0000 + 1.82464203537884E+0000 1.82358913760262E+0000 1.82253676313443E+0000 1.82148491175146E+0000 1.82043358323096E+0000 + 1.81938277735026E+0000 1.81833249388678E+0000 1.81728273261802E+0000 1.81623349332157E+0000 1.81518477577508E+0000 + 1.81413657975630E+0000 1.81308890504305E+0000 1.81204175141325E+0000 1.81099511864488E+0000 1.80994900651601E+0000 + 1.80890341480478E+0000 1.80785834328945E+0000 1.80681379174830E+0000 1.80576975995975E+0000 1.80472624770227E+0000 + 1.80368325475440E+0000 1.80264078089480E+0000 1.80159882590218E+0000 1.80055738955535E+0000 1.79951647163317E+0000 + 1.79847607191462E+0000 1.79743619017874E+0000 1.79639682620465E+0000 1.79535797977155E+0000 1.79431965065875E+0000 + 1.79328183864559E+0000 1.79224454351153E+0000 1.79120776503611E+0000 1.79017150299892E+0000 1.78913575717966E+0000 + 1.78810052735809E+0000 1.78706581331409E+0000 1.78603161482756E+0000 1.78499793167854E+0000 1.78396476364711E+0000 + 1.78293211051344E+0000 1.78189997205780E+0000 1.78086834806052E+0000 1.77983723830202E+0000 1.77880664256279E+0000 + 1.77777656062340E+0000 1.77674699226453E+0000 1.77571793726691E+0000 1.77468939541135E+0000 1.77366136647876E+0000 + 1.77263385025012E+0000 1.77160684650648E+0000 1.77058035502899E+0000 1.76955437559886E+0000 1.76852890799741E+0000 + 1.76750395200601E+0000 1.76647950740612E+0000 1.76545557397929E+0000 1.76443215150713E+0000 1.76340923977135E+0000 + 1.76238683855373E+0000 1.76136494763614E+0000 1.76034356680051E+0000 1.75932269582888E+0000 1.75830233450333E+0000 + 1.75728248260606E+0000 1.75626313991933E+0000 1.75524430622547E+0000 1.75422598130692E+0000 1.75320816494618E+0000 + 1.75219085692582E+0000 1.75117405702851E+0000 1.75015776503700E+0000 1.74914198073409E+0000 1.74812670390270E+0000 + 1.74711193432581E+0000 1.74609767178648E+0000 1.74508391606784E+0000 1.74407066695312E+0000 1.74305792422563E+0000 + 1.74204568766873E+0000 1.74103395706588E+0000 1.74002273220064E+0000 1.73901201285661E+0000 1.73800179881749E+0000 + 1.73699208986706E+0000 1.73598288578919E+0000 1.73497418636779E+0000 1.73396599138689E+0000 1.73295830063059E+0000 + 1.73195111388306E+0000 1.73094443092855E+0000 1.72993825155140E+0000 1.72893257553601E+0000 1.72792740266689E+0000 + 1.72692273272860E+0000 1.72591856550579E+0000 1.72491490078319E+0000 1.72391173834561E+0000 1.72290907797794E+0000 + 1.72190691946514E+0000 1.72090526259226E+0000 1.71990410714442E+0000 1.71890345290684E+0000 1.71790329966478E+0000 + 1.71690364720362E+0000 1.71590449530879E+0000 1.71490584376582E+0000 1.71390769236030E+0000 1.71291004087792E+0000 + 1.71191288910442E+0000 1.71091623682564E+0000 1.70992008382750E+0000 1.70892442989599E+0000 1.70792927481718E+0000 + 1.70693461837722E+0000 1.70594046036234E+0000 1.70494680055886E+0000 1.70395363875314E+0000 1.70296097473167E+0000 + 1.70196880828098E+0000 1.70097713918770E+0000 1.69998596723853E+0000 1.69899529222024E+0000 1.69800511391970E+0000 + 1.69701543212383E+0000 1.69602624661966E+0000 1.69503755719428E+0000 1.69404936363487E+0000 1.69306166572866E+0000 + 1.69207446326299E+0000 1.69108775602526E+0000 1.69010154380297E+0000 1.68911582638367E+0000 1.68813060355500E+0000 + 1.68714587510470E+0000 1.68616164082054E+0000 1.68517790049041E+0000 1.68419465390227E+0000 1.68321190084414E+0000 + 1.68222964110413E+0000 1.68124787447044E+0000 1.68026660073134E+0000 1.67928581967516E+0000 1.67830553109032E+0000 + 1.67732573476534E+0000 1.67634643048879E+0000 1.67536761804931E+0000 1.67438929723566E+0000 1.67341146783664E+0000 + 1.67243412964114E+0000 1.67145728243813E+0000 1.67048092601666E+0000 1.66950506016584E+0000 1.66852968467488E+0000 + 1.66755479933307E+0000 1.66658040392974E+0000 1.66560649825435E+0000 1.66463308209640E+0000 1.66366015524548E+0000 + 1.66268771749126E+0000 1.66171576862349E+0000 1.66074430843198E+0000 1.65977333670663E+0000 1.65880285323743E+0000 + 1.65783285781443E+0000 1.65686335022776E+0000 1.65589433026763E+0000 1.65492579772433E+0000 1.65395775238822E+0000 + 1.65299019404974E+0000 1.65202312249942E+0000 1.65105653752785E+0000 1.65009043892570E+0000 1.64912482648372E+0000 + 1.64815969999275E+0000 1.64719505924369E+0000 1.64623090402752E+0000 1.64526723413530E+0000 1.64430404935817E+0000 + 1.64334134948734E+0000 1.64237913431410E+0000 1.64141740362982E+0000 1.64045615722596E+0000 1.63949539489402E+0000 + 1.63853511642560E+0000 1.63757532161240E+0000 1.63661601024615E+0000 1.63565718211868E+0000 1.63469883702192E+0000 + 1.63374097474782E+0000 1.63278359508847E+0000 1.63182669783600E+0000 1.63087028278261E+0000 1.62991434972060E+0000 + 1.62895889844234E+0000 1.62800392874028E+0000 1.62704944040693E+0000 1.62609543323489E+0000 1.62514190701683E+0000 + 1.62418886154551E+0000 1.62323629661376E+0000 1.62228421201447E+0000 1.62133260754064E+0000 1.62038148298530E+0000 + 1.61943083814161E+0000 1.61848067280277E+0000 1.61753098676206E+0000 1.61658177981285E+0000 1.61563305174858E+0000 + 1.61468480236276E+0000 1.61373703144899E+0000 1.61278973880094E+0000 1.61184292421234E+0000 1.61089658747702E+0000 + 1.60995072838887E+0000 1.60900534674188E+0000 1.60806044233008E+0000 1.60711601494761E+0000 1.60617206438867E+0000 + 1.60522859044752E+0000 1.60428559291854E+0000 1.60334307159615E+0000 1.60240102627485E+0000 1.60145945674923E+0000 + 1.60051836281394E+0000 1.59957774426372E+0000 1.59863760089338E+0000 1.59769793249780E+0000 1.59675873887195E+0000 + 1.59582001981086E+0000 1.59488177510965E+0000 1.59394400456351E+0000 1.59300670796770E+0000 1.59206988511757E+0000 + 1.59113353580852E+0000 1.59019765983605E+0000 1.58926225699574E+0000 1.58832732708322E+0000 1.58739286989421E+0000 + 1.58645888522451E+0000 1.58552537286999E+0000 1.58459233262660E+0000 1.58365976429035E+0000 1.58272766765734E+0000 + 1.58179604252376E+0000 1.58086488868584E+0000 1.57993420593991E+0000 1.57900399408236E+0000 1.57807425290968E+0000 + 1.57714498221842E+0000 1.57621618180519E+0000 1.57528785146670E+0000 1.57435999099972E+0000 1.57343260020112E+0000 + 1.57250567886780E+0000 1.57157922679678E+0000 1.57065324378513E+0000 1.56972772963000E+0000 1.56880268412863E+0000 + 1.56787810707831E+0000 1.56695399827641E+0000 1.56603035752041E+0000 1.56510718460781E+0000 1.56418447933623E+0000 + 1.56326224150334E+0000 1.56234047090689E+0000 1.56141916734472E+0000 1.56049833061472E+0000 1.55957796051488E+0000 + 1.55865805684324E+0000 1.55773861939793E+0000 1.55681964797716E+0000 1.55590114237920E+0000 1.55498310240240E+0000 + 1.55406552784520E+0000 1.55314841850608E+0000 1.55223177418364E+0000 1.55131559467651E+0000 1.55039987978343E+0000 + 1.54948462930319E+0000 1.54856984303467E+0000 1.54765552077682E+0000 1.54674166232866E+0000 1.54582826748930E+0000 + 1.54491533605790E+0000 1.54400286783371E+0000 1.54309086261605E+0000 1.54217932020432E+0000 1.54126824039800E+0000 + 1.54035762299662E+0000 1.53944746779981E+0000 1.53853777460726E+0000 1.53762854321874E+0000 1.53671977343409E+0000 + 1.53581146505324E+0000 1.53490361787616E+0000 1.53399623170292E+0000 1.53308930633368E+0000 1.53218284156863E+0000 + 1.53127683720807E+0000 1.53037129305237E+0000 1.52946620890195E+0000 1.52856158455733E+0000 1.52765741981909E+0000 + 1.52675371448789E+0000 1.52585046836447E+0000 1.52494768124962E+0000 1.52404535294424E+0000 1.52314348324928E+0000 + 1.52224207196575E+0000 1.52134111889478E+0000 1.52044062383753E+0000 1.51954058659526E+0000 1.51864100696928E+0000 + 1.51774188476100E+0000 1.51684321977189E+0000 1.51594501180349E+0000 1.51504726065743E+0000 1.51414996613539E+0000 + 1.51325312803914E+0000 1.51235674617053E+0000 1.51146082033146E+0000 1.51056535032393E+0000 1.50967033594999E+0000 + 1.50877577701179E+0000 1.50788167331152E+0000 1.50698802465148E+0000 1.50609483083401E+0000 1.50520209166154E+0000 + 1.50430980693659E+0000 1.50341797646172E+0000 1.50252660003957E+0000 1.50163567747289E+0000 1.50074520856446E+0000 + 1.49985519311714E+0000 1.49896563093389E+0000 1.49807652181772E+0000 1.49718786557172E+0000 1.49629966199904E+0000 + 1.49541191090294E+0000 1.49452461208670E+0000 1.49363776535373E+0000 1.49275137050746E+0000 1.49186542735144E+0000 + 1.49097993568926E+0000 1.49009489532460E+0000 1.48921030606119E+0000 1.48832616770288E+0000 1.48744248005354E+0000 + 1.48655924291714E+0000 1.48567645609773E+0000 1.48479411939941E+0000 1.48391223262638E+0000 1.48303079558289E+0000 + 1.48214980807326E+0000 1.48126926990191E+0000 1.48038918087332E+0000 1.47950954079202E+0000 1.47863034946265E+0000 + 1.47775160668989E+0000 1.47687331227853E+0000 1.47599546603339E+0000 1.47511806775938E+0000 1.47424111726151E+0000 + 1.47336461434482E+0000 1.47248855881444E+0000 1.47161295047559E+0000 1.47073778913353E+0000 1.46986307459361E+0000 + 1.46898880666126E+0000 1.46811498514196E+0000 1.46724160984130E+0000 1.46636868056489E+0000 1.46549619711847E+0000 + 1.46462415930779E+0000 1.46375256693874E+0000 1.46288141981723E+0000 1.46201071774926E+0000 1.46114046054090E+0000 + 1.46027064799831E+0000 1.45940127992769E+0000 1.45853235613535E+0000 1.45766387642763E+0000 1.45679584061098E+0000 + 1.45592824849189E+0000 1.45506109987696E+0000 1.45419439457282E+0000 1.45332813238620E+0000 1.45246231312390E+0000 + 1.45159693659279E+0000 1.45073200259979E+0000 1.44986751095192E+0000 1.44900346145627E+0000 1.44813985391999E+0000 + 1.44727668815030E+0000 1.44641396395451E+0000 1.44555168113998E+0000 1.44468983951415E+0000 1.44382843888454E+0000 + 1.44296747905875E+0000 1.44210695984441E+0000 1.44124688104926E+0000 1.44038724248111E+0000 1.43952804394783E+0000 + 1.43866928525736E+0000 1.43781096621771E+0000 1.43695308663698E+0000 1.43609564632332E+0000 1.43523864508496E+0000 + 1.43438208273022E+0000 1.43352595906745E+0000 1.43267027390512E+0000 1.43181502705173E+0000 1.43096021831587E+0000 + 1.43010584750620E+0000 1.42925191443146E+0000 1.42839841890045E+0000 1.42754536072204E+0000 1.42669273970518E+0000 + 1.42584055565888E+0000 1.42498880839224E+0000 1.42413749771441E+0000 1.42328662343463E+0000 1.42243618536219E+0000 + 1.42158618330647E+0000 1.42073661707692E+0000 1.41988748648305E+0000 1.41903879133444E+0000 1.41819053144077E+0000 + 1.41734270661174E+0000 1.41649531665718E+0000 1.41564836138693E+0000 1.41480184061097E+0000 1.41395575413928E+0000 + 1.41311010178196E+0000 1.41226488334916E+0000 1.41142009865111E+0000 1.41057574749811E+0000 1.40973182970053E+0000 + 1.40888834506880E+0000 1.40804529341343E+0000 1.40720267454501E+0000 1.40636048827419E+0000 1.40551873441169E+0000 + 1.40467741276830E+0000 1.40383652315488E+0000 1.40299606538238E+0000 1.40215603926179E+0000 1.40131644460420E+0000 + 1.40047728122075E+0000 1.39963854892265E+0000 1.39880024752120E+0000 1.39796237682776E+0000 1.39712493665374E+0000 + 1.39628792681066E+0000 1.39545134711008E+0000 1.39461519736365E+0000 1.39377947738307E+0000 1.39294418698013E+0000 + 1.39210932596667E+0000 1.39127489415463E+0000 1.39044089135599E+0000 1.38960731738281E+0000 1.38877417204724E+0000 + 1.38794145516147E+0000 1.38710916653778E+0000 1.38627730598851E+0000 1.38544587332608E+0000 1.38461486836297E+0000 + 1.38378429091174E+0000 1.38295414078501E+0000 1.38212441779548E+0000 1.38129512175591E+0000 1.38046625247914E+0000 + 1.37963780977808E+0000 1.37880979346569E+0000 1.37798220335503E+0000 1.37715503925922E+0000 1.37632830099143E+0000 + 1.37550198836492E+0000 1.37467610119303E+0000 1.37385063928914E+0000 1.37302560246671E+0000 1.37220099053930E+0000 + 1.37137680332049E+0000 1.37055304062398E+0000 1.36972970226349E+0000 1.36890678805285E+0000 1.36808429780593E+0000 + 1.36726223133671E+0000 1.36644058845919E+0000 1.36561936898747E+0000 1.36479857273571E+0000 1.36397819951816E+0000 + 1.36315824914911E+0000 1.36233872144292E+0000 1.36151961621406E+0000 1.36070093327701E+0000 1.35988267244638E+0000 + 1.35906483353680E+0000 1.35824741636300E+0000 1.35743042073976E+0000 1.35661384648195E+0000 1.35579769340450E+0000 + 1.35498196132239E+0000 1.35416665005070E+0000 1.35335175940457E+0000 1.35253728919919E+0000 1.35172323924985E+0000 + 1.35090960937189E+0000 1.35009639938072E+0000 1.34928360909183E+0000 1.34847123832076E+0000 1.34765928688314E+0000 + 1.34684775459466E+0000 1.34603664127108E+0000 1.34522594672823E+0000 1.34441567078200E+0000 1.34360581324836E+0000 + 1.34279637394335E+0000 1.34198735268307E+0000 1.34117874928370E+0000 1.34037056356148E+0000 1.33956279533272E+0000 + 1.33875544441380E+0000 1.33794851062117E+0000 1.33714199377135E+0000 1.33633589368094E+0000 1.33553021016657E+0000 + 1.33472494304499E+0000 1.33392009213298E+0000 1.33311565724741E+0000 1.33231163820521E+0000 1.33150803482338E+0000 + 1.33070484691899E+0000 1.32990207430917E+0000 1.32909971681114E+0000 1.32829777424216E+0000 1.32749624641959E+0000 + 1.32669513316083E+0000 1.32589443428337E+0000 1.32509414960475E+0000 1.32429427894260E+0000 1.32349482211459E+0000 + 1.32269577893849E+0000 1.32189714923212E+0000 1.32109893281338E+0000 1.32030112950021E+0000 1.31950373911065E+0000 + 1.31870676146281E+0000 1.31791019637483E+0000 1.31711404366497E+0000 1.31631830315152E+0000 1.31552297465284E+0000 + 1.31472805798739E+0000 1.31393355297366E+0000 1.31313945943024E+0000 1.31234577717577E+0000 1.31155250602895E+0000 + 1.31075964580857E+0000 1.30996719633348E+0000 1.30917515742260E+0000 1.30838352889490E+0000 1.30759231056944E+0000 + 1.30680150226534E+0000 1.30601110380180E+0000 1.30522111499805E+0000 1.30443153567344E+0000 1.30364236564736E+0000 + 1.30285360473925E+0000 1.30206525276866E+0000 1.30127730955518E+0000 1.30048977491848E+0000 1.29970264867827E+0000 + 1.29891593065438E+0000 1.29812962066665E+0000 1.29734371853504E+0000 1.29655822407953E+0000 1.29577313712021E+0000 + 1.29498845747722E+0000 1.29420418497074E+0000 1.29342031942108E+0000 1.29263686064855E+0000 1.29185380847358E+0000 + 1.29107116271665E+0000 1.29028892319828E+0000 1.28950708973911E+0000 1.28872566215980E+0000 1.28794464028111E+0000 + 1.28716402392385E+0000 1.28638381290890E+0000 1.28560400705721E+0000 1.28482460618980E+0000 1.28404561012776E+0000 + 1.28326701869223E+0000 1.28248883170444E+0000 1.28171104898567E+0000 1.28093367035727E+0000 1.28015669564068E+0000 + 1.27938012465737E+0000 1.27860395722890E+0000 1.27782819317689E+0000 1.27705283232305E+0000 1.27627787448911E+0000 + 1.27550331949692E+0000 1.27472916716835E+0000 1.27395541732538E+0000 1.27318206979001E+0000 1.27240912438436E+0000 + 1.27163658093058E+0000 1.27086443925089E+0000 1.27009269916759E+0000 1.26932136050305E+0000 1.26855042307968E+0000 + 1.26777988672000E+0000 1.26700975124654E+0000 1.26624001648196E+0000 1.26547068224894E+0000 1.26470174837025E+0000 + 1.26393321466871E+0000 1.26316508096722E+0000 1.26239734708875E+0000 1.26163001285632E+0000 1.26086307809304E+0000 + 1.26009654262207E+0000 1.25933040626663E+0000 1.25856466885002E+0000 1.25779933019562E+0000 1.25703439012684E+0000 + 1.25626984846718E+0000 1.25550570504022E+0000 1.25474195966957E+0000 1.25397861217894E+0000 1.25321566239209E+0000 + 1.25245311013285E+0000 1.25169095522511E+0000 1.25092919749285E+0000 1.25016783676007E+0000 1.24940687285090E+0000 + 1.24864630558947E+0000 1.24788613480003E+0000 1.24712636030687E+0000 1.24636698193435E+0000 1.24560799950690E+0000 + 1.24484941284900E+0000 1.24409122178523E+0000 1.24333342614021E+0000 1.24257602573862E+0000 1.24181902040524E+0000 + 1.24106240996487E+0000 1.24030619424243E+0000 1.23955037306285E+0000 1.23879494625118E+0000 1.23803991363248E+0000 + 1.23728527503193E+0000 1.23653103027474E+0000 1.23577717918621E+0000 1.23502372159167E+0000 1.23427065731656E+0000 + 1.23351798618636E+0000 1.23276570802663E+0000 1.23201382266297E+0000 1.23126232992107E+0000 1.23051122962669E+0000 + 1.22976052160563E+0000 1.22901020568379E+0000 1.22826028168710E+0000 1.22751074944157E+0000 1.22676160877330E+0000 + 1.22601285950842E+0000 1.22526450147313E+0000 1.22451653449373E+0000 1.22376895839655E+0000 1.22302177300799E+0000 + 1.22227497815453E+0000 1.22152857366270E+0000 1.22078255935912E+0000 1.22003693507045E+0000 1.21929170062343E+0000 + 1.21854685584485E+0000 1.21780240056159E+0000 1.21705833460057E+0000 1.21631465778879E+0000 1.21557136995332E+0000 + 1.21482847092128E+0000 1.21408596051987E+0000 1.21334383857635E+0000 1.21260210491804E+0000 1.21186075937232E+0000 + 1.21111980176666E+0000 1.21037923192858E+0000 1.20963904968566E+0000 1.20889925486555E+0000 1.20815984729597E+0000 + 1.20742082680470E+0000 1.20668219321958E+0000 1.20594394636853E+0000 1.20520608607953E+0000 1.20446861218062E+0000 + 1.20373152449990E+0000 1.20299482286554E+0000 1.20225850710579E+0000 1.20152257704895E+0000 1.20078703252337E+0000 + 1.20005187335751E+0000 1.19931709937985E+0000 1.19858271041896E+0000 1.19784870630346E+0000 1.19711508686204E+0000 + 1.19638185192347E+0000 1.19564900131656E+0000 1.19491653487021E+0000 1.19418445241336E+0000 1.19345275377503E+0000 + 1.19272143878430E+0000 1.19199050727032E+0000 1.19125995906230E+0000 1.19052979398951E+0000 1.18980001188130E+0000 + 1.18907061256707E+0000 1.18834159587629E+0000 1.18761296163849E+0000 1.18688470968328E+0000 1.18615683984031E+0000 + 1.18542935193932E+0000 1.18470224581010E+0000 1.18397552128250E+0000 1.18324917818645E+0000 1.18252321635193E+0000 + 1.18179763560900E+0000 1.18107243578777E+0000 1.18034761671842E+0000 1.17962317823119E+0000 1.17889912015639E+0000 + 1.17817544232440E+0000 1.17745214456565E+0000 1.17672922671064E+0000 1.17600668858995E+0000 1.17528453003419E+0000 + 1.17456275087407E+0000 1.17384135094035E+0000 1.17312033006384E+0000 1.17239968807543E+0000 1.17167942480608E+0000 + 1.17095954008680E+0000 1.17024003374866E+0000 1.16952090562283E+0000 1.16880215554049E+0000 1.16808378333293E+0000 + 1.16736578883147E+0000 1.16664817186753E+0000 1.16593093227256E+0000 1.16521406987809E+0000 1.16449758451572E+0000 + 1.16378147601710E+0000 1.16306574421394E+0000 1.16235038893804E+0000 1.16163541002124E+0000 1.16092080729546E+0000 + 1.16020658059266E+0000 1.15949272974489E+0000 1.15877925458425E+0000 1.15806615494291E+0000 1.15735343065309E+0000 + 1.15664108154710E+0000 1.15592910745729E+0000 1.15521750821608E+0000 1.15450628365596E+0000 1.15379543360948E+0000 + 1.15308495790925E+0000 1.15237485638794E+0000 1.15166512887830E+0000 1.15095577521313E+0000 1.15024679522530E+0000 + 1.14953818874773E+0000 1.14882995561343E+0000 1.14812209565544E+0000 1.14741460870690E+0000 1.14670749460098E+0000 + 1.14600075317093E+0000 1.14529438425007E+0000 1.14458838767177E+0000 1.14388276326946E+0000 1.14317751087666E+0000 + 1.14247263032691E+0000 1.14176812145386E+0000 1.14106398409120E+0000 1.14036021807267E+0000 1.13965682323210E+0000 + 1.13895379940336E+0000 1.13825114642041E+0000 1.13754886411724E+0000 1.13684695232794E+0000 1.13614541088663E+0000 + 1.13544423962751E+0000 1.13474343838484E+0000 1.13404300699294E+0000 1.13334294528621E+0000 1.13264325309908E+0000 + 1.13194393026608E+0000 1.13124497662177E+0000 1.13054639200080E+0000 1.12984817623786E+0000 1.12915032916772E+0000 + 1.12845285062521E+0000 1.12775574044522E+0000 1.12705899846270E+0000 1.12636262451266E+0000 1.12566661843019E+0000 + 1.12497098005042E+0000 1.12427570920856E+0000 1.12358080573988E+0000 1.12288626947970E+0000 1.12219210026342E+0000 + 1.12149829792649E+0000 1.12080486230443E+0000 1.12011179323283E+0000 1.11941909054732E+0000 1.11872675408360E+0000 + 1.11803478367745E+0000 1.11734317916471E+0000 1.11665194038125E+0000 1.11596106716304E+0000 1.11527055934609E+0000 + 1.11458041676650E+0000 1.11389063926039E+0000 1.11320122666397E+0000 1.11251217881353E+0000 1.11182349554537E+0000 + 1.11113517669590E+0000 1.11044722210158E+0000 1.10975963159892E+0000 1.10907240502449E+0000 1.10838554221495E+0000 + 1.10769904300700E+0000 1.10701290723741E+0000 1.10632713474299E+0000 1.10564172536066E+0000 1.10495667892735E+0000 + 1.10427199528009E+0000 1.10358767425595E+0000 1.10290371569207E+0000 1.10222011942566E+0000 1.10153688529398E+0000 + 1.10085401313435E+0000 1.10017150278417E+0000 1.09948935408089E+0000 1.09880756686202E+0000 1.09812614096512E+0000 + 1.09744507622785E+0000 1.09676437248790E+0000 1.09608402958302E+0000 1.09540404735105E+0000 1.09472442562986E+0000 + 1.09404516425740E+0000 1.09336626307168E+0000 1.09268772191077E+0000 1.09200954061281E+0000 1.09133171901598E+0000 + 1.09065425695854E+0000 1.08997715427881E+0000 1.08930041081516E+0000 1.08862402640604E+0000 1.08794800088995E+0000 + 1.08727233410545E+0000 1.08659702589118E+0000 1.08592207608581E+0000 1.08524748452809E+0000 1.08457325105684E+0000 + 1.08389937551093E+0000 1.08322585772928E+0000 1.08255269755091E+0000 1.08187989481485E+0000 1.08120744936024E+0000 + 1.08053536102625E+0000 1.07986362965212E+0000 1.07919225507716E+0000 1.07852123714072E+0000 1.07785057568224E+0000 + 1.07718027054119E+0000 1.07651032155714E+0000 1.07584072856968E+0000 1.07517149141849E+0000 1.07450260994330E+0000 + 1.07383408398391E+0000 1.07316591338016E+0000 1.07249809797198E+0000 1.07183063759934E+0000 1.07116353210227E+0000 + 1.07049678132089E+0000 1.06983038509534E+0000 1.06916434326586E+0000 1.06849865567271E+0000 1.06783332215626E+0000 + 1.06716834255689E+0000 1.06650371671509E+0000 1.06583944447137E+0000 1.06517552566632E+0000 1.06451196014059E+0000 + 1.06384874773490E+0000 1.06318588829000E+0000 1.06252338164674E+0000 1.06186122764601E+0000 1.06119942612876E+0000 + 1.06053797693601E+0000 1.05987687990882E+0000 1.05921613488834E+0000 1.05855574171577E+0000 1.05789570023236E+0000 + 1.05723601027942E+0000 1.05657667169835E+0000 1.05591768433058E+0000 1.05525904801760E+0000 1.05460076260099E+0000 + 1.05394282792236E+0000 1.05328524382339E+0000 1.05262801014584E+0000 1.05197112673150E+0000 1.05131459342224E+0000 + 1.05065841005998E+0000 1.05000257648671E+0000 1.04934709254448E+0000 1.04869195807538E+0000 1.04803717292160E+0000 + 1.04738273692535E+0000 1.04672864992893E+0000 1.04607491177468E+0000 1.04542152230502E+0000 1.04476848136240E+0000 + 1.04411578878937E+0000 1.04346344442851E+0000 1.04281144812247E+0000 1.04215979971396E+0000 1.04150849904576E+0000 + 1.04085754596069E+0000 1.04020694030165E+0000 1.03955668191159E+0000 1.03890677063352E+0000 1.03825720631051E+0000 + 1.03760798878569E+0000 1.03695911790226E+0000 1.03631059350347E+0000 1.03566241543263E+0000 1.03501458353312E+0000 + 1.03436709764837E+0000 1.03371995762187E+0000 1.03307316329717E+0000 1.03242671451789E+0000 1.03178061112769E+0000 + 1.03113485297032E+0000 1.03048943988957E+0000 1.02984437172929E+0000 1.02919964833338E+0000 1.02855526954583E+0000 + 1.02791123521067E+0000 1.02726754517198E+0000 1.02662419927392E+0000 1.02598119736071E+0000 1.02533853927661E+0000 + 1.02469622486596E+0000 1.02405425397315E+0000 1.02341262644262E+0000 1.02277134211889E+0000 1.02213040084654E+0000 + 1.02148980247018E+0000 1.02084954683451E+0000 1.02020963378428E+0000 1.01957006316429E+0000 1.01893083481943E+0000 + 1.01829194859461E+0000 1.01765340433482E+0000 1.01701520188511E+0000 1.01637734109058E+0000 1.01573982179641E+0000 + 1.01510264384782E+0000 1.01446580709009E+0000 1.01382931136857E+0000 1.01319315652866E+0000 1.01255734241583E+0000 + 1.01192186887560E+0000 1.01128673575354E+0000 1.01065194289531E+0000 1.01001749014660E+0000 1.00938337735318E+0000 + 1.00874960436086E+0000 1.00811617101552E+0000 1.00748307716310E+0000 1.00685032264960E+0000 1.00621790732107E+0000 + 1.00558583102363E+0000 1.00495409360345E+0000 1.00432269490677E+0000 1.00369163477988E+0000 1.00306091306913E+0000 + 1.00243052962094E+0000 1.00180048428176E+0000 1.00117077689815E+0000 1.00054140731667E+0000 9.99912375383982E-0001 + 9.99283680946789E-0001 9.98655323851857E-0001 9.98027303946008E-0001 9.97399621076128E-0001 9.96772275089156E-0001 + 9.96145265832096E-0001 9.95518593152005E-0001 9.94892256896004E-0001 9.94266256911269E-0001 9.93640593045037E-0001 + 9.93015265144602E-0001 9.92390273057320E-0001 9.91765616630601E-0001 9.91141295711919E-0001 9.90517310148802E-0001 + 9.89893659788839E-0001 9.89270344479679E-0001 9.88647364069025E-0001 9.88024718404645E-0001 9.87402407334361E-0001 + 9.86780430706055E-0001 9.86158788367668E-0001 9.85537480167197E-0001 9.84916505952702E-0001 9.84295865572298E-0001 + 9.83675558874159E-0001 9.83055585706520E-0001 9.82435945917671E-0001 9.81816639355962E-0001 9.81197665869803E-0001 + 9.80579025307659E-0001 9.79960717518055E-0001 9.79342742349576E-0001 9.78725099650864E-0001 9.78107789270618E-0001 + 9.77490811057597E-0001 9.76874164860618E-0001 9.76257850528556E-0001 9.75641867910345E-0001 9.75026216854975E-0001 + 9.74410897211497E-0001 9.73795908829019E-0001 9.73181251556706E-0001 9.72566925243784E-0001 9.71952929739534E-0001 + 9.71339264893297E-0001 9.70725930554471E-0001 9.70112926572514E-0001 9.69500252796941E-0001 9.68887909077323E-0001 + 9.68275895263291E-0001 9.67664211204535E-0001 9.67052856750801E-0001 9.66441831751895E-0001 9.65831136057678E-0001 + 9.65220769518070E-0001 9.64610731983052E-0001 9.64001023302659E-0001 9.63391643326985E-0001 9.62782591906183E-0001 + 9.62173868890461E-0001 9.61565474130089E-0001 9.60957407475391E-0001 9.60349668776751E-0001 9.59742257884610E-0001 + 9.59135174649466E-0001 9.58528418921875E-0001 9.57921990552453E-0001 9.57315889391871E-0001 9.56710115290858E-0001 + 9.56104668100201E-0001 9.55499547670745E-0001 9.54894753853392E-0001 9.54290286499102E-0001 9.53686145458893E-0001 + 9.53082330583840E-0001 9.52478841725074E-0001 9.51875678733786E-0001 9.51272841461223E-0001 9.50670329758691E-0001 + 9.50068143477552E-0001 9.49466282469224E-0001 9.48864746585186E-0001 9.48263535676972E-0001 9.47662649596174E-0001 + 9.47062088194441E-0001 9.46461851323480E-0001 9.45861938835054E-0001 9.45262350580985E-0001 9.44663086413151E-0001 + 9.44064146183489E-0001 9.43465529743990E-0001 9.42867236946705E-0001 9.42269267643741E-0001 9.41671621687263E-0001 + 9.41074298929493E-0001 9.40477299222708E-0001 9.39880622419246E-0001 9.39284268371499E-0001 9.38688236931917E-0001 + 9.38092527953008E-0001 9.37497141287334E-0001 9.36902076787519E-0001 9.36307334306239E-0001 9.35712913696231E-0001 + 9.35118814810286E-0001 9.34525037501252E-0001 9.33931581622038E-0001 9.33338447025605E-0001 9.32745633564973E-0001 + 9.32153141093218E-0001 9.31560969463475E-0001 9.30969118528933E-0001 9.30377588142841E-0001 9.29786378158501E-0001 + 9.29195488429275E-0001 9.28604918808580E-0001 9.28014669149890E-0001 9.27424739306736E-0001 9.26835129132707E-0001 + 9.26245838481446E-0001 9.25656867206653E-0001 9.25068215162089E-0001 9.24479882201565E-0001 9.23891868178953E-0001 + 9.23304172948182E-0001 9.22716796363233E-0001 9.22129738278149E-0001 9.21542998547026E-0001 9.20956577024017E-0001 + 9.20370473563334E-0001 9.19784688019243E-0001 9.19199220246066E-0001 9.18614070098184E-0001 9.18029237430031E-0001 + 9.17444722096101E-0001 9.16860523950942E-0001 9.16276642849159E-0001 9.15693078645413E-0001 9.15109831194422E-0001 + 9.14526900350961E-0001 9.13944285969859E-0001 9.13361987906003E-0001 9.12780006014335E-0001 9.12198340149856E-0001 + 9.11616990167619E-0001 9.11035955922737E-0001 9.10455237270377E-0001 9.09874834065763E-0001 9.09294746164174E-0001 + 9.08714973420947E-0001 9.08135515691475E-0001 9.07556372831204E-0001 9.06977544695640E-0001 9.06399031140341E-0001 + 9.05820832020926E-0001 9.05242947193067E-0001 9.04665376512490E-0001 9.04088119834982E-0001 9.03511177016382E-0001 + 9.02934547912586E-0001 9.02358232379547E-0001 9.01782230273271E-0001 9.01206541449824E-0001 9.00631165765324E-0001 + 9.00056103075948E-0001 8.99481353237927E-0001 8.98906916107547E-0001 8.98332791541152E-0001 8.97758979395140E-0001 + 8.97185479525967E-0001 8.96612291790141E-0001 8.96039416044229E-0001 8.95466852144853E-0001 8.94894599948689E-0001 + 8.94322659312471E-0001 8.93751030092987E-0001 8.93179712147081E-0001 8.92608705331653E-0001 8.92038009503658E-0001 + 8.91467624520108E-0001 8.90897550238067E-0001 8.90327786514659E-0001 8.89758333207061E-0001 8.89189190172505E-0001 + 8.88620357268280E-0001 8.88051834351731E-0001 8.87483621280255E-0001 8.86915717911308E-0001 8.86348124102400E-0001 + 8.85780839711095E-0001 8.85213864595016E-0001 8.84647198611838E-0001 8.84080841619293E-0001 8.83514793475167E-0001 + 8.82949054037302E-0001 8.82383623163595E-0001 8.81818500712000E-0001 8.81253686540523E-0001 8.80689180507228E-0001 + 8.80124982470232E-0001 8.79561092287710E-0001 8.78997509817889E-0001 8.78434234919053E-0001 8.77871267449542E-0001 + 8.77308607267747E-0001 8.76746254232120E-0001 8.76184208201163E-0001 8.75622469033435E-0001 8.75061036587551E-0001 + 8.74499910722179E-0001 8.73939091296043E-0001 8.73378578167923E-0001 8.72818371196652E-0001 8.72258470241119E-0001 + 8.71698875160268E-0001 8.71139585813098E-0001 8.70580602058662E-0001 8.70021923756067E-0001 8.69463550764479E-0001 + 8.68905482943115E-0001 8.68347720151246E-0001 8.67790262248202E-0001 8.67233109093364E-0001 8.66676260546171E-0001 + 8.66119716466112E-0001 8.65563476712736E-0001 8.65007541145643E-0001 8.64451909624489E-0001 8.63896582008985E-0001 + 8.63341558158897E-0001 8.62786837934043E-0001 8.62232421194299E-0001 8.61678307799593E-0001 8.61124497609910E-0001 + 8.60570990485287E-0001 8.60017786285816E-0001 8.59464884871646E-0001 8.58912286102978E-0001 8.58359989840067E-0001 + 8.57807995943226E-0001 8.57256304272818E-0001 8.56704914689263E-0001 8.56153827053035E-0001 8.55603041224662E-0001 + 8.55052557064728E-0001 8.54502374433868E-0001 8.53952493192774E-0001 8.53402913202192E-0001 8.52853634322922E-0001 + 8.52304656415817E-0001 8.51755979341786E-0001 8.51207602961793E-0001 8.50659527136854E-0001 8.50111751728039E-0001 + 8.49564276596474E-0001 8.49017101603339E-0001 8.48470226609867E-0001 8.47923651477346E-0001 8.47377376067117E-0001 + 8.46831400240577E-0001 8.46285723859176E-0001 8.45740346784417E-0001 8.45195268877859E-0001 8.44650490001113E-0001 + 8.44106010015847E-0001 8.43561828783779E-0001 8.43017946166684E-0001 8.42474362026390E-0001 8.41931076224779E-0001 + 8.41388088623787E-0001 8.40845399085403E-0001 8.40303007471671E-0001 8.39760913644689E-0001 8.39219117466607E-0001 + 8.38677618799632E-0001 8.38136417506021E-0001 8.37595513448088E-0001 8.37054906488199E-0001 8.36514596488774E-0001 + 8.35974583312287E-0001 8.35434866821266E-0001 8.34895446878293E-0001 8.34356323346002E-0001 8.33817496087081E-0001 + 8.33278964964274E-0001 8.32740729840377E-0001 8.32202790578238E-0001 8.31665147040761E-0001 8.31127799090903E-0001 + 8.30590746591674E-0001 8.30053989406138E-0001 8.29517527397412E-0001 8.28981360428667E-0001 8.28445488363127E-0001 + 8.27909911064071E-0001 8.27374628394828E-0001 8.26839640218785E-0001 8.26304946399378E-0001 8.25770546800100E-0001 + 8.25236441284495E-0001 8.24702629716162E-0001 8.24169111958751E-0001 8.23635887875968E-0001 8.23102957331571E-0001 + 8.22570320189370E-0001 8.22037976313232E-0001 8.21505925567073E-0001 8.20974167814866E-0001 8.20442702920634E-0001 + 8.19911530748454E-0001 8.19380651162458E-0001 8.18850064026829E-0001 8.18319769205805E-0001 8.17789766563675E-0001 + 8.17260055964783E-0001 8.16730637273525E-0001 8.16201510354351E-0001 8.15672675071762E-0001 8.15144131290316E-0001 + 8.14615878874619E-0001 8.14087917689333E-0001 8.13560247599173E-0001 8.13032868468907E-0001 8.12505780163354E-0001 + 8.11978982547388E-0001 8.11452475485936E-0001 8.10926258843976E-0001 8.10400332486541E-0001 8.09874696278714E-0001 + 8.09349350085634E-0001 8.08824293772492E-0001 8.08299527204531E-0001 8.07775050247046E-0001 8.07250862765387E-0001 + 8.06726964624955E-0001 8.06203355691204E-0001 8.05680035829642E-0001 8.05157004905828E-0001 8.04634262785375E-0001 + 8.04111809333948E-0001 8.03589644417264E-0001 8.03067767901094E-0001 8.02546179651261E-0001 8.02024879533640E-0001 + 8.01503867414159E-0001 8.00983143158800E-0001 8.00462706633595E-0001 7.99942557704630E-0001 7.99422696238043E-0001 + 7.98903122100025E-0001 7.98383835156819E-0001 7.97864835274721E-0001 7.97346122320079E-0001 7.96827696159294E-0001 + 7.96309556658817E-0001 7.95791703685154E-0001 7.95274137104864E-0001 7.94756856784556E-0001 7.94239862590892E-0001 + 7.93723154390586E-0001 7.93206732050407E-0001 7.92690595437172E-0001 7.92174744417753E-0001 7.91659178859075E-0001 + 7.91143898628112E-0001 7.90628903591893E-0001 7.90114193617497E-0001 7.89599768572058E-0001 7.89085628322761E-0001 + 7.88571772736841E-0001 7.88058201681587E-0001 7.87544915024341E-0001 7.87031912632495E-0001 7.86519194373494E-0001 + 7.86006760114836E-0001 7.85494609724070E-0001 7.84982743068797E-0001 7.84471160016669E-0001 7.83959860435392E-0001 + 7.83448844192724E-0001 7.82938111156472E-0001 7.82427661194499E-0001 7.81917494174716E-0001 7.81407609965088E-0001 + 7.80898008433633E-0001 7.80388689448418E-0001 7.79879652877564E-0001 7.79370898589243E-0001 7.78862426451679E-0001 + 7.78354236333147E-0001 7.77846328101974E-0001 7.77338701626541E-0001 7.76831356775278E-0001 7.76324293416667E-0001 + 7.75817511419244E-0001 7.75311010651592E-0001 7.74804790982352E-0001 7.74298852280212E-0001 7.73793194413912E-0001 + 7.73287817252245E-0001 7.72782720664056E-0001 7.72277904518240E-0001 7.71773368683745E-0001 7.71269113029568E-0001 + 7.70765137424761E-0001 7.70261441738426E-0001 7.69758025839715E-0001 7.69254889597834E-0001 7.68752032882038E-0001 + 7.68249455561636E-0001 7.67747157505986E-0001 7.67245138584499E-0001 7.66743398666637E-0001 7.66241937621912E-0001 + 7.65740755319891E-0001 7.65239851630188E-0001 7.64739226422471E-0001 7.64238879566459E-0001 7.63738810931920E-0001 + 7.63239020388677E-0001 7.62739507806601E-0001 7.62240273055616E-0001 7.61741316005698E-0001 7.61242636526871E-0001 + 7.60744234489213E-0001 7.60246109762852E-0001 7.59748262217968E-0001 7.59250691724791E-0001 7.58753398153603E-0001 + 7.58256381374736E-0001 7.57759641258576E-0001 7.57263177675555E-0001 7.56766990496161E-0001 7.56271079590929E-0001 + 7.55775444830449E-0001 7.55280086085359E-0001 7.54785003226349E-0001 7.54290196124160E-0001 7.53795664649583E-0001 + 7.53301408673462E-0001 7.52807428066690E-0001 7.52313722700211E-0001 7.51820292445020E-0001 7.51327137172165E-0001 + 7.50834256752742E-0001 7.50341651057899E-0001 7.49849319958834E-0001 7.49357263326797E-0001 7.48865481033088E-0001 + 7.48373972949058E-0001 7.47882738946109E-0001 7.47391778895693E-0001 7.46901092669314E-0001 7.46410680138524E-0001 + 7.45920541174929E-0001 7.45430675650183E-0001 7.44941083435992E-0001 7.44451764404113E-0001 7.43962718426353E-0001 + 7.43473945374568E-0001 7.42985445120667E-0001 7.42497217536608E-0001 7.42009262494401E-0001 7.41521579866105E-0001 + 7.41034169523830E-0001 7.40547031339737E-0001 7.40060165186037E-0001 7.39573570934991E-0001 7.39087248458911E-0001 + 7.38601197630159E-0001 7.38115418321149E-0001 7.37629910404343E-0001 7.37144673752255E-0001 7.36659708237447E-0001 + 7.36175013732535E-0001 7.35690590110183E-0001 7.35206437243106E-0001 7.34722555004067E-0001 7.34238943265884E-0001 + 7.33755601901419E-0001 7.33272530783591E-0001 7.32789729785364E-0001 7.32307198779754E-0001 7.31824937639828E-0001 + 7.31342946238702E-0001 7.30861224449542E-0001 7.30379772145565E-0001 7.29898589200038E-0001 7.29417675486277E-0001 + 7.28937030877649E-0001 7.28456655247571E-0001 7.27976548469511E-0001 7.27496710416984E-0001 7.27017140963558E-0001 + 7.26537839982850E-0001 7.26058807348527E-0001 7.25580042934305E-0001 7.25101546613951E-0001 7.24623318261282E-0001 + 7.24145357750165E-0001 7.23667664954516E-0001 7.23190239748300E-0001 7.22713082005535E-0001 7.22236191600287E-0001 + 7.21759568406671E-0001 7.21283212298852E-0001 7.20807123151047E-0001 7.20331300837519E-0001 7.19855745232585E-0001 + 7.19380456210609E-0001 7.18905433646005E-0001 7.18430677413237E-0001 7.17956187386818E-0001 7.17481963441313E-0001 + 7.17008005451334E-0001 7.16534313291544E-0001 7.16060886836655E-0001 7.15587725961428E-0001 7.15114830540676E-0001 + 7.14642200449259E-0001 7.14169835562088E-0001 7.13697735754123E-0001 7.13225900900373E-0001 7.12754330875897E-0001 + 7.12283025555805E-0001 7.11811984815253E-0001 7.11341208529450E-0001 7.10870696573652E-0001 7.10400448823165E-0001 + 7.09930465153346E-0001 7.09460745439599E-0001 7.08991289557378E-0001 7.08522097382188E-0001 7.08053168789582E-0001 + 7.07584503655161E-0001 7.07116101854577E-0001 7.06647963263532E-0001 7.06180087757776E-0001 7.05712475213108E-0001 + 7.05245125505377E-0001 7.04778038510480E-0001 7.04311214104365E-0001 7.03844652163028E-0001 7.03378352562515E-0001 + 7.02912315178920E-0001 7.02446539888386E-0001 7.01981026567106E-0001 7.01515775091324E-0001 7.01050785337329E-0001 + 7.00586057181461E-0001 7.00121590500109E-0001 6.99657385169713E-0001 6.99193441066758E-0001 6.98729758067780E-0001 + 6.98266336049366E-0001 6.97803174888149E-0001 6.97340274460811E-0001 6.96877634644086E-0001 6.96415255314753E-0001 + 6.95953136349643E-0001 6.95491277625634E-0001 6.95029679019653E-0001 6.94568340408677E-0001 6.94107261669731E-0001 + 6.93646442679889E-0001 6.93185883316274E-0001 6.92725583456057E-0001 6.92265542976458E-0001 6.91805761754747E-0001 + 6.91346239668241E-0001 6.90886976594307E-0001 6.90427972410360E-0001 6.89969226993863E-0001 6.89510740222330E-0001 + 6.89052511973321E-0001 6.88594542124446E-0001 6.88136830553364E-0001 6.87679377137782E-0001 6.87222181755454E-0001 + 6.86765244284187E-0001 6.86308564601831E-0001 6.85852142586288E-0001 6.85395978115508E-0001 6.84940071067490E-0001 + 6.84484421320280E-0001 6.84029028751972E-0001 6.83573893240712E-0001 6.83119014664690E-0001 6.82664392902148E-0001 + 6.82210027831374E-0001 6.81755919330705E-0001 6.81302067278527E-0001 6.80848471553274E-0001 6.80395132033429E-0001 + 6.79942048597522E-0001 6.79489221124132E-0001 6.79036649491885E-0001 6.78584333579459E-0001 6.78132273265576E-0001 + 6.77680468429009E-0001 6.77228918948577E-0001 6.76777624703149E-0001 6.76326585571641E-0001 6.75875801433019E-0001 + 6.75425272166295E-0001 6.74974997650531E-0001 6.74524977764835E-0001 6.74075212388364E-0001 6.73625701400325E-0001 + 6.73176444679970E-0001 6.72727442106602E-0001 6.72278693559569E-0001 6.71830198918269E-0001 6.71381958062148E-0001 + 6.70933970870699E-0001 6.70486237223463E-0001 6.70038757000032E-0001 6.69591530080041E-0001 6.69144556343176E-0001 + 6.68697835669170E-0001 6.68251367937804E-0001 6.67805153028909E-0001 6.67359190822359E-0001 6.66913481198081E-0001 + 6.66468024036046E-0001 6.66022819216276E-0001 6.65577866618838E-0001 6.65133166123848E-0001 6.64688717611470E-0001 + 6.64244520961916E-0001 6.63800576055444E-0001 6.63356882772362E-0001 6.62913440993024E-0001 6.62470250597832E-0001 + 6.62027311467237E-0001 6.61584623481736E-0001 6.61142186521874E-0001 6.60700000468244E-0001 6.60258065201487E-0001 + 6.59816380602290E-0001 6.59374946551390E-0001 6.58933762929569E-0001 6.58492829617658E-0001 6.58052146496536E-0001 + 6.57611713447127E-0001 6.57171530350406E-0001 6.56731597087393E-0001 6.56291913539156E-0001 6.55852479586811E-0001 + 6.55413295111521E-0001 6.54974359994496E-0001 6.54535674116994E-0001 6.54097237360319E-0001 6.53659049605826E-0001 + 6.53221110734913E-0001 6.52783420629028E-0001 6.52345979169665E-0001 6.51908786238366E-0001 6.51471841716721E-0001 + 6.51035145486365E-0001 6.50598697428983E-0001 6.50162497426304E-0001 6.49726545360108E-0001 6.49290841112219E-0001 + 6.48855384564509E-0001 6.48420175598899E-0001 6.47985214097356E-0001 6.47550499941892E-0001 6.47116033014569E-0001 + 6.46681813197496E-0001 6.46247840372826E-0001 6.45814114422763E-0001 6.45380635229557E-0001 6.44947402675502E-0001 + 6.44514416642943E-0001 6.44081677014270E-0001 6.43649183671920E-0001 6.43216936498379E-0001 6.42784935376176E-0001 + 6.42353180187890E-0001 6.41921670816146E-0001 6.41490407143618E-0001 6.41059389053023E-0001 6.40628616427127E-0001 + 6.40198089148743E-0001 6.39767807100731E-0001 6.39337770165997E-0001 6.38907978227494E-0001 6.38478431168222E-0001 + 6.38049128871228E-0001 6.37620071219606E-0001 6.37191258096496E-0001 6.36762689385084E-0001 6.36334364968606E-0001 + 6.35906284730340E-0001 6.35478448553615E-0001 6.35050856321804E-0001 6.34623507918327E-0001 6.34196403226652E-0001 + 6.33769542130293E-0001 6.33342924512809E-0001 6.32916550257808E-0001 6.32490419248944E-0001 6.32064531369915E-0001 + 6.31638886504470E-0001 6.31213484536400E-0001 6.30788325349547E-0001 6.30363408827795E-0001 6.29938734855078E-0001 + 6.29514303315374E-0001 6.29090114092710E-0001 6.28666167071156E-0001 6.28242462134833E-0001 6.27818999167903E-0001 + 6.27395778054580E-0001 6.26972798679119E-0001 6.26550060925825E-0001 6.26127564679049E-0001 6.25705309823186E-0001 + 6.25283296242680E-0001 6.24861523822021E-0001 6.24439992445742E-0001 6.24018701998427E-0001 6.23597652364702E-0001 + 6.23176843429242E-0001 6.22756275076769E-0001 6.22335947192047E-0001 6.21915859659890E-0001 6.21496012365157E-0001 + 6.21076405192753E-0001 6.20657038027629E-0001 6.20237910754783E-0001 6.19819023259257E-0001 6.19400375426142E-0001 + 6.18981967140573E-0001 6.18563798287731E-0001 6.18145868752845E-0001 6.17728178421188E-0001 6.17310727178080E-0001 + 6.16893514908885E-0001 6.16476541499018E-0001 6.16059806833934E-0001 6.15643310799137E-0001 6.15227053280177E-0001 + 6.14811034162650E-0001 6.14395253332196E-0001 6.13979710674503E-0001 6.13564406075304E-0001 6.13149339420378E-0001 + 6.12734510595549E-0001 6.12319919486689E-0001 6.11905565979713E-0001 6.11491449960584E-0001 6.11077571315310E-0001 + 6.10663929929943E-0001 6.10250525690586E-0001 6.09837358483380E-0001 6.09424428194519E-0001 6.09011734710239E-0001 + 6.08599277916821E-0001 6.08187057700593E-0001 6.07775073947930E-0001 6.07363326545251E-0001 6.06951815379019E-0001 + 6.06540540335746E-0001 6.06129501301988E-0001 6.05718698164347E-0001 6.05308130809468E-0001 6.04897799124046E-0001 + 6.04487702994817E-0001 6.04077842308567E-0001 6.03668216952124E-0001 6.03258826812362E-0001 6.02849671776203E-0001 + 6.02440751730610E-0001 6.02032066562596E-0001 6.01623616159217E-0001 6.01215400407575E-0001 6.00807419194817E-0001 + 6.00399672408135E-0001 5.99992159934767E-0001 5.99584881661997E-0001 5.99177837477153E-0001 5.98771027267610E-0001 + 5.98364450920785E-0001 5.97958108324144E-0001 5.97551999365197E-0001 5.97146123931497E-0001 5.96740481910647E-0001 + 5.96335073190290E-0001 5.95929897658118E-0001 5.95524955201866E-0001 5.95120245709315E-0001 5.94715769068292E-0001 + 5.94311525166667E-0001 5.93907513892357E-0001 5.93503735133324E-0001 5.93100188777572E-0001 5.92696874713156E-0001 + 5.92293792828171E-0001 5.91890943010759E-0001 5.91488325149106E-0001 5.91085939131445E-0001 5.90683784846051E-0001 + 5.90281862181248E-0001 5.89880171025401E-0001 5.89478711266923E-0001 5.89077482794269E-0001 5.88676485495941E-0001 + 5.88275719260487E-0001 5.87875183976496E-0001 5.87474879532605E-0001 5.87074805817496E-0001 5.86674962719894E-0001 + 5.86275350128569E-0001 5.85875967932338E-0001 5.85476816020061E-0001 5.85077894280642E-0001 5.84679202603032E-0001 + 5.84280740876225E-0001 5.83882508989261E-0001 5.83484506831223E-0001 5.83086734291241E-0001 5.82689191258488E-0001 + 5.82291877622182E-0001 5.81894793271585E-0001 5.81497938096006E-0001 5.81101311984797E-0001 5.80704914827353E-0001 + 5.80308746513117E-0001 5.79912806931574E-0001 5.79517095972255E-0001 5.79121613524734E-0001 5.78726359478631E-0001 + 5.78331333723611E-0001 5.77936536149382E-0001 5.77541966645696E-0001 5.77147625102352E-0001 5.76753511409191E-0001 + 5.76359625456100E-0001 5.75965967133009E-0001 5.75572536329894E-0001 5.75179332936775E-0001 5.74786356843716E-0001 + 5.74393607940825E-0001 5.74001086118254E-0001 5.73608791266202E-0001 5.73216723274909E-0001 5.72824882034661E-0001 + 5.72433267435789E-0001 5.72041879368666E-0001 5.71650717723712E-0001 5.71259782391388E-0001 5.70869073262203E-0001 + 5.70478590226707E-0001 5.70088333175496E-0001 5.69698301999209E-0001 5.69308496588531E-0001 5.68918916834189E-0001 + 5.68529562626956E-0001 5.68140433857648E-0001 5.67751530417125E-0001 5.67362852196293E-0001 5.66974399086098E-0001 + 5.66586170977534E-0001 5.66198167761638E-0001 5.65810389329491E-0001 5.65422835572217E-0001 5.65035506380984E-0001 + 5.64648401647006E-0001 5.64261521261540E-0001 5.63874865115886E-0001 5.63488433101389E-0001 5.63102225109436E-0001 + 5.62716241031462E-0001 5.62330480758942E-0001 5.61944944183395E-0001 5.61559631196388E-0001 5.61174541689527E-0001 + 5.60789675554464E-0001 5.60405032682896E-0001 5.60020612966560E-0001 5.59636416297241E-0001 5.59252442566767E-0001 + 5.58868691667006E-0001 5.58485163489875E-0001 5.58101857927331E-0001 5.57718774871377E-0001 5.57335914214057E-0001 + 5.56953275847462E-0001 5.56570859663725E-0001 5.56188665555022E-0001 5.55806693413574E-0001 5.55424943131644E-0001 + 5.55043414601541E-0001 5.54662107715615E-0001 5.54281022366262E-0001 5.53900158445919E-0001 5.53519515847069E-0001 + 5.53139094462237E-0001 5.52758894183993E-0001 5.52378914904948E-0001 5.51999156517759E-0001 5.51619618915125E-0001 + 5.51240301989789E-0001 5.50861205634538E-0001 5.50482329742201E-0001 5.50103674205652E-0001 5.49725238917807E-0001 + 5.49347023771626E-0001 5.48969028660113E-0001 5.48591253476315E-0001 5.48213698113321E-0001 5.47836362464267E-0001 + 5.47459246422326E-0001 5.47082349880721E-0001 5.46705672732715E-0001 5.46329214871613E-0001 5.45952976190767E-0001 + 5.45576956583569E-0001 5.45201155943455E-0001 5.44825574163906E-0001 5.44450211138443E-0001 5.44075066760634E-0001 + 5.43700140924086E-0001 5.43325433522453E-0001 5.42950944449429E-0001 5.42576673598754E-0001 5.42202620864209E-0001 + 5.41828786139618E-0001 5.41455169318850E-0001 5.41081770295816E-0001 5.40708588964468E-0001 5.40335625218806E-0001 + 5.39962878952867E-0001 5.39590350060736E-0001 5.39218038436539E-0001 5.38845943974443E-0001 5.38474066568662E-0001 + 5.38102406113450E-0001 5.37730962503105E-0001 5.37359735631968E-0001 5.36988725394421E-0001 5.36617931684893E-0001 + 5.36247354397852E-0001 5.35876993427809E-0001 5.35506848669322E-0001 5.35136920016987E-0001 5.34767207365445E-0001 + 5.34397710609380E-0001 5.34028429643517E-0001 5.33659364362627E-0001 5.33290514661520E-0001 5.32921880435051E-0001 + 5.32553461578118E-0001 5.32185257985661E-0001 5.31817269552663E-0001 5.31449496174147E-0001 5.31081937745184E-0001 + 5.30714594160883E-0001 5.30347465316398E-0001 5.29980551106924E-0001 5.29613851427701E-0001 5.29247366174009E-0001 + 5.28881095241172E-0001 5.28515038524556E-0001 5.28149195919571E-0001 5.27783567321667E-0001 5.27418152626339E-0001 + 5.27052951729122E-0001 5.26687964525596E-0001 5.26323190911383E-0001 5.25958630782145E-0001 5.25594284033589E-0001 + 5.25230150561465E-0001 5.24866230261562E-0001 5.24502523029714E-0001 5.24139028761798E-0001 5.23775747353732E-0001 + 5.23412678701476E-0001 5.23049822701032E-0001 5.22687179248448E-0001 5.22324748239810E-0001 5.21962529571247E-0001 + 5.21600523138933E-0001 5.21238728839082E-0001 5.20877146567950E-0001 5.20515776221836E-0001 5.20154617697082E-0001 + 5.19793670890071E-0001 5.19432935697228E-0001 5.19072412015022E-0001 5.18712099739962E-0001 5.18351998768601E-0001 + 5.17992108997532E-0001 5.17632430323392E-0001 5.17272962642860E-0001 5.16913705852656E-0001 5.16554659849543E-0001 + 5.16195824530325E-0001 5.15837199791849E-0001 5.15478785531005E-0001 5.15120581644722E-0001 5.14762588029974E-0001 + 5.14404804583776E-0001 5.14047231203185E-0001 5.13689867785298E-0001 5.13332714227258E-0001 5.12975770426245E-0001 + 5.12619036279487E-0001 5.12262511684248E-0001 5.11906196537837E-0001 5.11550090737605E-0001 5.11194194180942E-0001 + 5.10838506765285E-0001 5.10483028388108E-0001 5.10127758946929E-0001 5.09772698339307E-0001 5.09417846462845E-0001 + 5.09063203215184E-0001 5.08708768494009E-0001 5.08354542197047E-0001 5.08000524222067E-0001 5.07646714466878E-0001 + 5.07293112829332E-0001 5.06939719207323E-0001 5.06586533498785E-0001 5.06233555601695E-0001 5.05880785414072E-0001 + 5.05528222833974E-0001 5.05175867759506E-0001 5.04823720088809E-0001 5.04471779720068E-0001 5.04120046551509E-0001 + 5.03768520481401E-0001 5.03417201408054E-0001 5.03066089229817E-0001 5.02715183845084E-0001 5.02364485152289E-0001 + 5.02013993049906E-0001 5.01663707436455E-0001 5.01313628210492E-0001 5.00963755270617E-0001 5.00614088515473E-0001 + 5.00264627843742E-0001 4.99915373154147E-0001 4.99566324345456E-0001 4.99217481316474E-0001 4.98868843966050E-0001 + 4.98520412193073E-0001 4.98172185896475E-0001 4.97824164975228E-0001 4.97476349328345E-0001 4.97128738854882E-0001 + 4.96781333453934E-0001 4.96434133024639E-0001 4.96087137466176E-0001 4.95740346677764E-0001 4.95393760558665E-0001 + 4.95047379008181E-0001 4.94701201925656E-0001 4.94355229210475E-0001 4.94009460762062E-0001 4.93663896479886E-0001 + 4.93318536263453E-0001 4.92973380012315E-0001 4.92628427626060E-0001 4.92283679004321E-0001 4.91939134046770E-0001 + 4.91594792653121E-0001 4.91250654723128E-0001 4.90906720156586E-0001 4.90562988853334E-0001 4.90219460713247E-0001 + 4.89876135636246E-0001 4.89533013522290E-0001 4.89190094271378E-0001 4.88847377783554E-0001 4.88504863958899E-0001 + 4.88162552697536E-0001 4.87820443899631E-0001 4.87478537465389E-0001 4.87136833295055E-0001 4.86795331288916E-0001 + 4.86454031347301E-0001 4.86112933370578E-0001 4.85772037259156E-0001 4.85431342913486E-0001 4.85090850234059E-0001 + 4.84750559121407E-0001 4.84410469476101E-0001 4.84070581198757E-0001 4.83730894190027E-0001 4.83391408350607E-0001 + 4.83052123581232E-0001 4.82713039782678E-0001 4.82374156855763E-0001 4.82035474701344E-0001 4.81696993220318E-0001 + 4.81358712313626E-0001 4.81020631882246E-0001 4.80682751827198E-0001 4.80345072049544E-0001 4.80007592450384E-0001 + 4.79670312930861E-0001 4.79333233392156E-0001 4.78996353735493E-0001 4.78659673862135E-0001 4.78323193673386E-0001 + 4.77986913070591E-0001 4.77650831955134E-0001 4.77314950228441E-0001 4.76979267791978E-0001 4.76643784547251E-0001 + 4.76308500395807E-0001 4.75973415239233E-0001 4.75638528979156E-0001 4.75303841517245E-0001 4.74969352755207E-0001 + 4.74635062594792E-0001 4.74300970937788E-0001 4.73967077686026E-0001 4.73633382741373E-0001 4.73299886005741E-0001 + 4.72966587381080E-0001 4.72633486769379E-0001 4.72300584072670E-0001 4.71967879193025E-0001 4.71635372032553E-0001 + 4.71303062493407E-0001 4.70970950477778E-0001 4.70639035887899E-0001 4.70307318626040E-0001 4.69975798594515E-0001 + 4.69644475695675E-0001 4.69313349831914E-0001 4.68982420905663E-0001 4.68651688819396E-0001 4.68321153475624E-0001 + 4.67990814776902E-0001 4.67660672625822E-0001 4.67330726925016E-0001 4.67000977577159E-0001 4.66671424484962E-0001 + 4.66342067551180E-0001 4.66012906678605E-0001 4.65683941770069E-0001 4.65355172728447E-0001 4.65026599456650E-0001 + 4.64698221857633E-0001 4.64370039834387E-0001 4.64042053289946E-0001 4.63714262127382E-0001 4.63386666249806E-0001 + 4.63059265560373E-0001 4.62732059962274E-0001 4.62405049358741E-0001 4.62078233653046E-0001 4.61751612748501E-0001 + 4.61425186548456E-0001 4.61098954956305E-0001 4.60772917875476E-0001 4.60447075209442E-0001 4.60121426861713E-0001 + 4.59795972735840E-0001 4.59470712735411E-0001 4.59145646764057E-0001 4.58820774725448E-0001 4.58496096523292E-0001 + 4.58171612061338E-0001 4.57847321243375E-0001 4.57523223973230E-0001 4.57199320154771E-0001 4.56875609691907E-0001 + 4.56552092488582E-0001 4.56228768448784E-0001 4.55905637476538E-0001 4.55582699475911E-0001 4.55259954351008E-0001 + 4.54937402005972E-0001 4.54615042344989E-0001 4.54292875272280E-0001 4.53970900692111E-0001 4.53649118508784E-0001 + 4.53327528626639E-0001 4.53006130950060E-0001 4.52684925383466E-0001 4.52363911831318E-0001 4.52043090198116E-0001 + 4.51722460388399E-0001 4.51402022306745E-0001 4.51081775857773E-0001 4.50761720946138E-0001 4.50441857476539E-0001 + 4.50122185353710E-0001 4.49802704482427E-0001 4.49483414767505E-0001 4.49164316113796E-0001 4.48845408426195E-0001 + 4.48526691609632E-0001 4.48208165569080E-0001 4.47889830209550E-0001 4.47571685436090E-0001 4.47253731153791E-0001 + 4.46935967267780E-0001 4.46618393683226E-0001 4.46301010305333E-0001 4.45983817039350E-0001 4.45666813790559E-0001 + 4.45350000464285E-0001 4.45033376965892E-0001 4.44716943200781E-0001 4.44400699074394E-0001 4.44084644492211E-0001 + 4.43768779359750E-0001 4.43453103582572E-0001 4.43137617066272E-0001 4.42822319716488E-0001 4.42507211438895E-0001 + 4.42192292139207E-0001 4.41877561723177E-0001 4.41563020096598E-0001 4.41248667165301E-0001 4.40934502835157E-0001 + 4.40620527012074E-0001 4.40306739601999E-0001 4.39993140510921E-0001 4.39679729644865E-0001 4.39366506909895E-0001 + 4.39053472212114E-0001 4.38740625457666E-0001 4.38427966552731E-0001 4.38115495403528E-0001 4.37803211916317E-0001 + 4.37491115997395E-0001 4.37179207553097E-0001 4.36867486489801E-0001 4.36555952713917E-0001 4.36244606131900E-0001 + 4.35933446650240E-0001 4.35622474175466E-0001 4.35311688614149E-0001 4.35001089872893E-0001 4.34690677858346E-0001 + 4.34380452477192E-0001 4.34070413636154E-0001 4.33760561241993E-0001 4.33450895201510E-0001 4.33141415421543E-0001 + 4.32832121808971E-0001 4.32523014270708E-0001 4.32214092713710E-0001 4.31905357044969E-0001 4.31596807171518E-0001 + 4.31288443000426E-0001 4.30980264438802E-0001 4.30672271393793E-0001 4.30364463772584E-0001 4.30056841482399E-0001 + 4.29749404430502E-0001 4.29442152524192E-0001 4.29135085670809E-0001 4.28828203777731E-0001 4.28521506752373E-0001 + 4.28214994502190E-0001 4.27908666934675E-0001 4.27602523957359E-0001 4.27296565477811E-0001 4.26990791403639E-0001 + 4.26685201642490E-0001 4.26379796102047E-0001 4.26074574690033E-0001 4.25769537314209E-0001 4.25464683882375E-0001 + 4.25160014302367E-0001 4.24855528482061E-0001 4.24551226329371E-0001 4.24247107752249E-0001 4.23943172658686E-0001 + 4.23639420956709E-0001 4.23335852554385E-0001 4.23032467359819E-0001 4.22729265281154E-0001 4.22426246226570E-0001 + 4.22123410104287E-0001 4.21820756822561E-0001 4.21518286289689E-0001 4.21215998414003E-0001 4.20913893103874E-0001 + 4.20611970267712E-0001 4.20310229813964E-0001 4.20008671651116E-0001 4.19707295687691E-0001 4.19406101832250E-0001 + 4.19105089993394E-0001 4.18804260079758E-0001 4.18503612000018E-0001 4.18203145662888E-0001 4.17902860977119E-0001 + 4.17602757851499E-0001 4.17302836194856E-0001 4.17003095916054E-0001 4.16703536923995E-0001 4.16404159127622E-0001 + 4.16104962435911E-0001 4.15805946757879E-0001 4.15507112002579E-0001 4.15208458079105E-0001 4.14909984896585E-0001 + 4.14611692364186E-0001 4.14313580391114E-0001 4.14015648886611E-0001 4.13717897759958E-0001 4.13420326920474E-0001 + 4.13122936277514E-0001 4.12825725740472E-0001 4.12528695218780E-0001 4.12231844621906E-0001 4.11935173859357E-0001 + 4.11638682840677E-0001 4.11342371475450E-0001 4.11046239673293E-0001 4.10750287343864E-0001 4.10454514396858E-0001 + 4.10158920742008E-0001 4.09863506289083E-0001 4.09568270947890E-0001 4.09273214628276E-0001 4.08978337240121E-0001 + 4.08683638693347E-0001 4.08389118897910E-0001 4.08094777763806E-0001 4.07800615201068E-0001 4.07506631119765E-0001 + 4.07212825430004E-0001 4.06919198041930E-0001 4.06625748865727E-0001 4.06332477811612E-0001 4.06039384789844E-0001 + 4.05746469710716E-0001 4.05453732484561E-0001 4.05161173021747E-0001 4.04868791232681E-0001 4.04576587027807E-0001 + 4.04284560317606E-0001 4.03992711012596E-0001 4.03701039023334E-0001 4.03409544260411E-0001 4.03118226634458E-0001 + 4.02827086056143E-0001 4.02536122436170E-0001 4.02245335685282E-0001 4.01954725714257E-0001 4.01664292433912E-0001 + 4.01374035755100E-0001 4.01083955588711E-0001 4.00794051845675E-0001 4.00504324436955E-0001 4.00214773273555E-0001 + 3.99925398266512E-0001 3.99636199326904E-0001 3.99347176365844E-0001 3.99058329294482E-0001 3.98769658024006E-0001 + 3.98481162465641E-0001 3.98192842530648E-0001 3.97904698130326E-0001 3.97616729176010E-0001 3.97328935579074E-0001 + 3.97041317250927E-0001 3.96753874103016E-0001 3.96466606046824E-0001 3.96179512993872E-0001 3.95892594855717E-0001 + 3.95605851543955E-0001 3.95319282970215E-0001 3.95032889046168E-0001 3.94746669683517E-0001 3.94460624794004E-0001 + 3.94174754289409E-0001 3.93889058081547E-0001 3.93603536082271E-0001 3.93318188203470E-0001 3.93033014357070E-0001 + 3.92748014455035E-0001 3.92463188409364E-0001 3.92178536132093E-0001 3.91894057535295E-0001 3.91609752531082E-0001 + 3.91325621031599E-0001 3.91041662949030E-0001 3.90757878195595E-0001 3.90474266683551E-0001 3.90190828325192E-0001 + 3.89907563032847E-0001 3.89624470718884E-0001 3.89341551295705E-0001 3.89058804675752E-0001 3.88776230771500E-0001 + 3.88493829495465E-0001 3.88211600760193E-0001 3.87929544478273E-0001 3.87647660562328E-0001 3.87365948925017E-0001 + 3.87084409479036E-0001 3.86803042137118E-0001 3.86521846812033E-0001 3.86240823416585E-0001 3.85959971863617E-0001 + 3.85679292066008E-0001 3.85398783936671E-0001 3.85118447388561E-0001 3.84838282334663E-0001 3.84558288688003E-0001 + 3.84278466361641E-0001 3.83998815268675E-0001 3.83719335322237E-0001 3.83440026435499E-0001 3.83160888521666E-0001 + 3.82881921493980E-0001 3.82603125265722E-0001 3.82324499750205E-0001 3.82046044860783E-0001 3.81767760510842E-0001 + 3.81489646613807E-0001 3.81211703083138E-0001 3.80933929832332E-0001 3.80656326774922E-0001 3.80378893824477E-0001 + 3.80101630894602E-0001 3.79824537898940E-0001 3.79547614751167E-0001 3.79270861364998E-0001 3.78994277654182E-0001 + 3.78717863532507E-0001 3.78441618913795E-0001 3.78165543711903E-0001 3.77889637840727E-0001 3.77613901214198E-0001 + 3.77338333746282E-0001 3.77062935350982E-0001 3.76787705942338E-0001 3.76512645434424E-0001 3.76237753741351E-0001 + 3.75963030777267E-0001 3.75688476456354E-0001 3.75414090692832E-0001 3.75139873400956E-0001 3.74865824495017E-0001 + 3.74591943889342E-0001 3.74318231498294E-0001 3.74044687236272E-0001 3.73771311017710E-0001 3.73498102757080E-0001 + 3.73225062368889E-0001 3.72952189767678E-0001 3.72679484868026E-0001 3.72406947584548E-0001 3.72134577831894E-0001 + 3.71862375524749E-0001 3.71590340577836E-0001 3.71318472905912E-0001 3.71046772423770E-0001 3.70775239046240E-0001 + 3.70503872688187E-0001 3.70232673264512E-0001 3.69961640690149E-0001 3.69690774880074E-0001 3.69420075749292E-0001 + 3.69149543212848E-0001 3.68879177185821E-0001 3.68608977583327E-0001 3.68338944320515E-0001 3.68069077312573E-0001 + 3.67799376474721E-0001 3.67529841722219E-0001 3.67260472970359E-0001 3.66991270134470E-0001 3.66722233129916E-0001 + 3.66453361872098E-0001 3.66184656276451E-0001 3.65916116258447E-0001 3.65647741733592E-0001 3.65379532617429E-0001 + 3.65111488825535E-0001 3.64843610273524E-0001 3.64575896877044E-0001 3.64308348551780E-0001 3.64040965213451E-0001 + 3.63773746777813E-0001 3.63506693160657E-0001 3.63239804277809E-0001 3.62973080045129E-0001 3.62706520378516E-0001 + 3.62440125193901E-0001 3.62173894407252E-0001 3.61907827934572E-0001 3.61641925691900E-0001 3.61376187595310E-0001 + 3.61110613560911E-0001 3.60845203504846E-0001 3.60579957343297E-0001 3.60314874992477E-0001 3.60049956368638E-0001 + 3.59785201388065E-0001 3.59520609967079E-0001 3.59256182022036E-0001 3.58991917469327E-0001 3.58727816225379E-0001 + 3.58463878206654E-0001 3.58200103329649E-0001 3.57936491510897E-0001 3.57673042666963E-0001 3.57409756714452E-0001 + 3.57146633570000E-0001 3.56883673150280E-0001 3.56620875372002E-0001 3.56358240151906E-0001 3.56095767406772E-0001 + 3.55833457053413E-0001 3.55571309008677E-0001 3.55309323189448E-0001 3.55047499512643E-0001 3.54785837895217E-0001 + 3.54524338254158E-0001 3.54263000506489E-0001 3.54001824569269E-0001 3.53740810359592E-0001 3.53479957794585E-0001 + 3.53219266791413E-0001 3.52958737267273E-0001 3.52698369139399E-0001 3.52438162325059E-0001 3.52178116741557E-0001 + 3.51918232306230E-0001 3.51658508936451E-0001 3.51398946549629E-0001 3.51139545063205E-0001 3.50880304394658E-0001 + 3.50621224461499E-0001 3.50362305181276E-0001 3.50103546471572E-0001 3.49844948250002E-0001 3.49586510434218E-0001 + 3.49328232941908E-0001 3.49070115690790E-0001 3.48812158598623E-0001 3.48554361583197E-0001 3.48296724562336E-0001 + 3.48039247453901E-0001 3.47781930175787E-0001 3.47524772645924E-0001 3.47267774782274E-0001 3.47010936502838E-0001 + 3.46754257725649E-0001 3.46497738368774E-0001 3.46241378350317E-0001 3.45985177588415E-0001 3.45729136001240E-0001 + 3.45473253506999E-0001 3.45217530023933E-0001 3.44961965470317E-0001 3.44706559764462E-0001 3.44451312824712E-0001 + 3.44196224569448E-0001 3.43941294917082E-0001 3.43686523786064E-0001 3.43431911094876E-0001 3.43177456762036E-0001 + 3.42923160706095E-0001 3.42669022845640E-0001 3.42415043099291E-0001 3.42161221385705E-0001 3.41907557623569E-0001 + 3.41654051731609E-0001 3.41400703628583E-0001 3.41147513233284E-0001 3.40894480464539E-0001 3.40641605241208E-0001 + 3.40388887482190E-0001 3.40136327106413E-0001 3.39883924032842E-0001 3.39631678180476E-0001 3.39379589468348E-0001 + 3.39127657815526E-0001 3.38875883141111E-0001 3.38624265364240E-0001 3.38372804404083E-0001 3.38121500179844E-0001 + 3.37870352610762E-0001 3.37619361616110E-0001 3.37368527115195E-0001 3.37117849027358E-0001 3.36867327271976E-0001 + 3.36616961768457E-0001 3.36366752436246E-0001 3.36116699194821E-0001 3.35866801963693E-0001 3.35617060662409E-0001 + 3.35367475210549E-0001 3.35118045527729E-0001 3.34868771533596E-0001 3.34619653147833E-0001 3.34370690290156E-0001 + 3.34121882880317E-0001 3.33873230838100E-0001 3.33624734083324E-0001 3.33376392535841E-0001 3.33128206115539E-0001 + 3.32880174742339E-0001 3.32632298336194E-0001 3.32384576817094E-0001 3.32137010105062E-0001 3.31889598120154E-0001 + 3.31642340782460E-0001 3.31395238012105E-0001 3.31148289729248E-0001 3.30901495854080E-0001 3.30654856306829E-0001 + 3.30408371007752E-0001 3.30162039877146E-0001 3.29915862835336E-0001 3.29669839802686E-0001 3.29423970699589E-0001 + 3.29178255446476E-0001 3.28932693963809E-0001 3.28687286172085E-0001 3.28442031991835E-0001 3.28196931343622E-0001 + 3.27951984148045E-0001 3.27707190325735E-0001 3.27462549797358E-0001 3.27218062483613E-0001 3.26973728305233E-0001 + 3.26729547182985E-0001 3.26485519037668E-0001 3.26241643790117E-0001 3.25997921361198E-0001 3.25754351671815E-0001 + 3.25510934642900E-0001 3.25267670195423E-0001 3.25024558250386E-0001 3.24781598728823E-0001 3.24538791551805E-0001 + 3.24296136640434E-0001 3.24053633915847E-0001 3.23811283299213E-0001 3.23569084711736E-0001 3.23327038074653E-0001 + 3.23085143309234E-0001 3.22843400336782E-0001 3.22601809078637E-0001 3.22360369456167E-0001 3.22119081390778E-0001 + 3.21877944803908E-0001 3.21636959617027E-0001 3.21396125751641E-0001 3.21155443129287E-0001 3.20914911671537E-0001 + 3.20674531299996E-0001 3.20434301936302E-0001 3.20194223502126E-0001 3.19954295919174E-0001 3.19714519109184E-0001 + 3.19474892993927E-0001 3.19235417495209E-0001 3.18996092534867E-0001 3.18756918034774E-0001 3.18517893916833E-0001 + 3.18279020102984E-0001 3.18040296515197E-0001 3.17801723075478E-0001 3.17563299705863E-0001 3.17325026328424E-0001 + 3.17086902865266E-0001 3.16848929238525E-0001 3.16611105370373E-0001 3.16373431183013E-0001 3.16135906598682E-0001 + 3.15898531539651E-0001 3.15661305928223E-0001 3.15424229686734E-0001 3.15187302737553E-0001 3.14950525003084E-0001 + 3.14713896405762E-0001 3.14477416868056E-0001 3.14241086312468E-0001 3.14004904661533E-0001 3.13768871837818E-0001 + 3.13532987763926E-0001 3.13297252362489E-0001 3.13061665556176E-0001 3.12826227267685E-0001 3.12590937419751E-0001 + 3.12355795935139E-0001 3.12120802736648E-0001 3.11885957747110E-0001 3.11651260889390E-0001 3.11416712086387E-0001 + 3.11182311261029E-0001 3.10948058336283E-0001 3.10713953235143E-0001 3.10479995880639E-0001 3.10246186195834E-0001 + 3.10012524103822E-0001 3.09779009527733E-0001 3.09545642390726E-0001 3.09312422615995E-0001 3.09079350126767E-0001 + 3.08846424846301E-0001 3.08613646697889E-0001 3.08381015604856E-0001 3.08148531490560E-0001 3.07916194278390E-0001 + 3.07684003891771E-0001 3.07451960254157E-0001 3.07220063289038E-0001 3.06988312919935E-0001 3.06756709070401E-0001 + 3.06525251664023E-0001 3.06293940624422E-0001 3.06062775875247E-0001 3.05831757340186E-0001 3.05600884942953E-0001 + 3.05370158607300E-0001 3.05139578257009E-0001 3.04909143815895E-0001 3.04678855207806E-0001 3.04448712356622E-0001 + 3.04218715186256E-0001 3.03988863620653E-0001 3.03759157583791E-0001 3.03529596999681E-0001 3.03300181792366E-0001 + 3.03070911885921E-0001 3.02841787204454E-0001 3.02612807672106E-0001 3.02383973213050E-0001 3.02155283751490E-0001 + 3.01926739211666E-0001 3.01698339517848E-0001 3.01470084594337E-0001 3.01241974365470E-0001 3.01014008755614E-0001 + 3.00786187689168E-0001 3.00558511090566E-0001 3.00330978884272E-0001 3.00103590994783E-0001 2.99876347346629E-0001 + 2.99649247864371E-0001 2.99422292472603E-0001 2.99195481095952E-0001 2.98968813659077E-0001 2.98742290086668E-0001 + 2.98515910303448E-0001 2.98289674234175E-0001 2.98063581803634E-0001 2.97837632936647E-0001 2.97611827558065E-0001 + 2.97386165592774E-0001 2.97160646965689E-0001 2.96935271601759E-0001 2.96710039425967E-0001 2.96484950363324E-0001 + 2.96260004338877E-0001 2.96035201277703E-0001 2.95810541104912E-0001 2.95586023745645E-0001 2.95361649125077E-0001 + 2.95137417168414E-0001 2.94913327800894E-0001 2.94689380947787E-0001 2.94465576534395E-0001 2.94241914486054E-0001 + 2.94018394728128E-0001 2.93795017186018E-0001 2.93571781785153E-0001 2.93348688450995E-0001 2.93125737109040E-0001 + 2.92902927684814E-0001 2.92680260103876E-0001 2.92457734291815E-0001 2.92235350174255E-0001 2.92013107676849E-0001 + 2.91791006725285E-0001 2.91569047245279E-0001 2.91347229162583E-0001 2.91125552402979E-0001 2.90904016892279E-0001 + 2.90682622556331E-0001 2.90461369321012E-0001 2.90240257112231E-0001 2.90019285855930E-0001 2.89798455478082E-0001 + 2.89577765904692E-0001 2.89357217061796E-0001 2.89136808875465E-0001 2.88916541271797E-0001 2.88696414176925E-0001 + 2.88476427517013E-0001 2.88256581218257E-0001 2.88036875206884E-0001 2.87817309409154E-0001 2.87597883751357E-0001 + 2.87378598159816E-0001 2.87159452560885E-0001 2.86940446880950E-0001 2.86721581046429E-0001 2.86502854983772E-0001 + 2.86284268619458E-0001 2.86065821880001E-0001 2.85847514691946E-0001 2.85629346981867E-0001 2.85411318676373E-0001 + 2.85193429702103E-0001 2.84975679985726E-0001 2.84758069453945E-0001 2.84540598033495E-0001 2.84323265651141E-0001 + 2.84106072233678E-0001 2.83889017707936E-0001 2.83672102000775E-0001 2.83455325039085E-0001 2.83238686749791E-0001 + 2.83022187059846E-0001 2.82805825896235E-0001 2.82589603185978E-0001 2.82373518856121E-0001 2.82157572833746E-0001 + 2.81941765045964E-0001 2.81726095419917E-0001 2.81510563882782E-0001 2.81295170361762E-0001 2.81079914784096E-0001 + 2.80864797077052E-0001 2.80649817167930E-0001 2.80434974984061E-0001 2.80220270452808E-0001 2.80005703501564E-0001 + 2.79791274057756E-0001 2.79576982048839E-0001 2.79362827402302E-0001 2.79148810045663E-0001 2.78934929906473E-0001 + 2.78721186912313E-0001 2.78507580990797E-0001 2.78294112069569E-0001 2.78080780076303E-0001 2.77867584938707E-0001 + 2.77654526584518E-0001 2.77441604941505E-0001 2.77228819937468E-0001 2.77016171500239E-0001 2.76803659557680E-0001 + 2.76591284037684E-0001 2.76379044868177E-0001 2.76166941977113E-0001 2.75954975292481E-0001 2.75743144742298E-0001 + 2.75531450254613E-0001 2.75319891757507E-0001 2.75108469179090E-0001 2.74897182447505E-0001 2.74686031490926E-0001 + 2.74475016237557E-0001 2.74264136615633E-0001 2.74053392553421E-0001 2.73842783979218E-0001 2.73632310821353E-0001 + 2.73421973008184E-0001 2.73211770468104E-0001 2.73001703129532E-0001 2.72791770920921E-0001 2.72581973770754E-0001 + 2.72372311607546E-0001 2.72162784359841E-0001 2.71953391956216E-0001 2.71744134325277E-0001 2.71535011395662E-0001 + 2.71326023096039E-0001 2.71117169355109E-0001 2.70908450101600E-0001 2.70699865264275E-0001 2.70491414771925E-0001 + 2.70283098553373E-0001 2.70074916537473E-0001 2.69866868653108E-0001 2.69658954829195E-0001 2.69451174994678E-0001 + 2.69243529078535E-0001 2.69036017009773E-0001 2.68828638717430E-0001 2.68621394130574E-0001 2.68414283178306E-0001 + 2.68207305789756E-0001 2.68000461894084E-0001 2.67793751420482E-0001 2.67587174298172E-0001 2.67380730456408E-0001 + 2.67174419824473E-0001 2.66968242331681E-0001 2.66762197907377E-0001 2.66556286480936E-0001 2.66350507981765E-0001 + 2.66144862339300E-0001 2.65939349483008E-0001 2.65733969342388E-0001 2.65528721846967E-0001 2.65323606926304E-0001 + 2.65118624509989E-0001 2.64913774527642E-0001 2.64709056908913E-0001 2.64504471583483E-0001 2.64300018481064E-0001 + 2.64095697531397E-0001 2.63891508664255E-0001 2.63687451809442E-0001 2.63483526896789E-0001 2.63279733856161E-0001 + 2.63076072617453E-0001 2.62872543110588E-0001 2.62669145265522E-0001 2.62465879012240E-0001 2.62262744280757E-0001 + 2.62059741001121E-0001 2.61856869103407E-0001 2.61654128517723E-0001 2.61451519174205E-0001 2.61249041003021E-0001 + 2.61046693934369E-0001 2.60844477898477E-0001 2.60642392825604E-0001 2.60440438646038E-0001 2.60238615290098E-0001 + 2.60036922688133E-0001 2.59835360770523E-0001 2.59633929467678E-0001 2.59432628710038E-0001 2.59231458428073E-0001 + 2.59030418552282E-0001 2.58829509013198E-0001 2.58628729741380E-0001 2.58428080667420E-0001 2.58227561721938E-0001 + 2.58027172835587E-0001 2.57826913939047E-0001 2.57626784963030E-0001 2.57426785838277E-0001 2.57226916495561E-0001 + 2.57027176865683E-0001 2.56827566879475E-0001 2.56628086467800E-0001 2.56428735561549E-0001 2.56229514091644E-0001 + 2.56030421989038E-0001 2.55831459184714E-0001 2.55632625609682E-0001 2.55433921194986E-0001 2.55235345871698E-0001 + 2.55036899570920E-0001 2.54838582223784E-0001 2.54640393761453E-0001 2.54442334115119E-0001 2.54244403216003E-0001 + 2.54046600995359E-0001 2.53848927384467E-0001 2.53651382314640E-0001 2.53453965717220E-0001 2.53256677523578E-0001 + 2.53059517665116E-0001 2.52862486073265E-0001 2.52665582679487E-0001 2.52468807415273E-0001 2.52272160212143E-0001 + 2.52075641001650E-0001 2.51879249715373E-0001 2.51682986284922E-0001 2.51486850641939E-0001 2.51290842718092E-0001 + 2.51094962445083E-0001 2.50899209754640E-0001 2.50703584578523E-0001 2.50508086848521E-0001 2.50312716496452E-0001 + 2.50117473454166E-0001 2.49922357653540E-0001 2.49727369026483E-0001 2.49532507504932E-0001 2.49337773020854E-0001 + 2.49143165506247E-0001 2.48948684893136E-0001 2.48754331113579E-0001 2.48560104099661E-0001 2.48366003783498E-0001 + 2.48172030097235E-0001 2.47978182973046E-0001 2.47784462343136E-0001 2.47590868139740E-0001 2.47397400295120E-0001 + 2.47204058741569E-0001 2.47010843411411E-0001 2.46817754236996E-0001 2.46624791150708E-0001 2.46431954084957E-0001 + 2.46239242972184E-0001 2.46046657744860E-0001 2.45854198335482E-0001 2.45661864676583E-0001 2.45469656700718E-0001 + 2.45277574340477E-0001 2.45085617528478E-0001 2.44893786197367E-0001 2.44702080279820E-0001 2.44510499708544E-0001 + 2.44319044416274E-0001 2.44127714335773E-0001 2.43936509399837E-0001 2.43745429541289E-0001 2.43554474692980E-0001 + 2.43363644787794E-0001 2.43172939758642E-0001 2.42982359538464E-0001 2.42791904060231E-0001 2.42601573256941E-0001 + 2.42411367061624E-0001 2.42221285407337E-0001 2.42031328227168E-0001 2.41841495454232E-0001 2.41651787021677E-0001 + 2.41462202862675E-0001 2.41272742910433E-0001 2.41083407098183E-0001 2.40894195359188E-0001 2.40705107626739E-0001 + 2.40516143834158E-0001 2.40327303914795E-0001 2.40138587802028E-0001 2.39949995429268E-0001 2.39761526729951E-0001 + 2.39573181637544E-0001 2.39384960085542E-0001 2.39196862007473E-0001 2.39008887336888E-0001 2.38821036007371E-0001 + 2.38633307952535E-0001 2.38445703106022E-0001 2.38258221401501E-0001 2.38070862772672E-0001 2.37883627153264E-0001 + 2.37696514477033E-0001 2.37509524677768E-0001 2.37322657689283E-0001 2.37135913445423E-0001 2.36949291880061E-0001 + 2.36762792927101E-0001 2.36576416520473E-0001 2.36390162594139E-0001 2.36204031082087E-0001 2.36018021918336E-0001 + 2.35832135036934E-0001 2.35646370371956E-0001 2.35460727857508E-0001 2.35275207427723E-0001 2.35089809016766E-0001 + 2.34904532558826E-0001 2.34719377988126E-0001 2.34534345238914E-0001 2.34349434245469E-0001 2.34164644942098E-0001 + 2.33979977263138E-0001 2.33795431142952E-0001 2.33611006515935E-0001 2.33426703316508E-0001 2.33242521479124E-0001 + 2.33058460938262E-0001 2.32874521628430E-0001 2.32690703484167E-0001 2.32507006440038E-0001 2.32323430430638E-0001 + 2.32139975390591E-0001 2.31956641254550E-0001 2.31773427957195E-0001 2.31590335433236E-0001 2.31407363617412E-0001 + 2.31224512444489E-0001 2.31041781849263E-0001 2.30859171766559E-0001 2.30676682131230E-0001 2.30494312878157E-0001 + 2.30312063942251E-0001 2.30129935258450E-0001 2.29947926761722E-0001 2.29766038387062E-0001 2.29584270069496E-0001 + 2.29402621744077E-0001 2.29221093345886E-0001 2.29039684810033E-0001 2.28858396071658E-0001 2.28677227065928E-0001 + 2.28496177728038E-0001 2.28315247993212E-0001 2.28134437796705E-0001 2.27953747073796E-0001 2.27773175759795E-0001 + 2.27592723790042E-0001 2.27412391099901E-0001 2.27232177624769E-0001 2.27052083300070E-0001 2.26872108061254E-0001 + 2.26692251843802E-0001 2.26512514583223E-0001 2.26332896215055E-0001 2.26153396674862E-0001 2.25974015898239E-0001 + 2.25794753820807E-0001 2.25615610378218E-0001 2.25436585506149E-0001 2.25257679140309E-0001 2.25078891216433E-0001 + 2.24900221670285E-0001 2.24721670437657E-0001 2.24543237454369E-0001 2.24364922656269E-0001 2.24186725979236E-0001 + 2.24008647359174E-0001 2.23830686732016E-0001 2.23652844033725E-0001 2.23475119200289E-0001 2.23297512167728E-0001 + 2.23120022872088E-0001 2.22942651249442E-0001 2.22765397235894E-0001 2.22588260767575E-0001 2.22411241780643E-0001 + 2.22234340211286E-0001 2.22057555995719E-0001 2.21880889070185E-0001 2.21704339370957E-0001 2.21527906834332E-0001 + 2.21351591396641E-0001 2.21175392994237E-0001 2.20999311563506E-0001 2.20823347040859E-0001 2.20647499362735E-0001 + 2.20471768465605E-0001 2.20296154285962E-0001 2.20120656760332E-0001 2.19945275825267E-0001 2.19770011417346E-0001 + 2.19594863473179E-0001 2.19419831929401E-0001 2.19244916722676E-0001 2.19070117789697E-0001 2.18895435067183E-0001 + 2.18720868491882E-0001 2.18546418000571E-0001 2.18372083530054E-0001 2.18197865017161E-0001 2.18023762398754E-0001 + 2.17849775611718E-0001 2.17675904592971E-0001 2.17502149279454E-0001 2.17328509608140E-0001 2.17154985516027E-0001 + 2.16981576940143E-0001 2.16808283817542E-0001 2.16635106085306E-0001 2.16462043680546E-0001 2.16289096540401E-0001 + 2.16116264602036E-0001 2.15943547802644E-0001 2.15770946079448E-0001 2.15598459369697E-0001 2.15426087610667E-0001 + 2.15253830739664E-0001 2.15081688694020E-0001 2.14909661411095E-0001 2.14737748828277E-0001 2.14565950882982E-0001 + 2.14394267512654E-0001 2.14222698654762E-0001 2.14051244246807E-0001 2.13879904226314E-0001 2.13708678530837E-0001 + 2.13537567097958E-0001 2.13366569865287E-0001 2.13195686770460E-0001 2.13024917751141E-0001 2.12854262745023E-0001 + 2.12683721689826E-0001 2.12513294523297E-0001 2.12342981183210E-0001 2.12172781607368E-0001 2.12002695733602E-0001 + 2.11832723499768E-0001 2.11662864843752E-0001 2.11493119703466E-0001 2.11323488016851E-0001 2.11153969721873E-0001 + 2.10984564756529E-0001 2.10815273058840E-0001 2.10646094566856E-0001 2.10477029218656E-0001 2.10308076952344E-0001 + 2.10139237706052E-0001 2.09970511417940E-0001 2.09801898026196E-0001 2.09633397469034E-0001 2.09465009684696E-0001 + 2.09296734611451E-0001 2.09128572187597E-0001 2.08960522351458E-0001 2.08792585041385E-0001 2.08624760195756E-0001 + 2.08457047752980E-0001 2.08289447651488E-0001 2.08121959829741E-0001 2.07954584226229E-0001 2.07787320779466E-0001 + 2.07620169427995E-0001 2.07453130110387E-0001 2.07286202765238E-0001 2.07119387331174E-0001 2.06952683746846E-0001 + 2.06786091950933E-0001 2.06619611882141E-0001 2.06453243479205E-0001 2.06286986680885E-0001 2.06120841425968E-0001 + 2.05954807653271E-0001 2.05788885301635E-0001 2.05623074309930E-0001 2.05457374617053E-0001 2.05291786161927E-0001 + 2.05126308883503E-0001 2.04960942720760E-0001 2.04795687612702E-0001 2.04630543498363E-0001 2.04465510316801E-0001 + 2.04300588007103E-0001 2.04135776508383E-0001 2.03971075759781E-0001 2.03806485700465E-0001 2.03642006269630E-0001 + 2.03477637406498E-0001 2.03313379050317E-0001 2.03149231140363E-0001 2.02985193615941E-0001 2.02821266416378E-0001 + 2.02657449481033E-0001 2.02493742749289E-0001 2.02330146160557E-0001 2.02166659654274E-0001 2.02003283169907E-0001 + 2.01840016646946E-0001 2.01676860024909E-0001 2.01513813243344E-0001 2.01350876241821E-0001 2.01188048959941E-0001 + 2.01025331337330E-0001 2.00862723313641E-0001 2.00700224828554E-0001 2.00537835821776E-0001 2.00375556233040E-0001 + 2.00213386002109E-0001 2.00051325068768E-0001 1.99889373372832E-0001 1.99727530854143E-0001 1.99565797452568E-0001 + 1.99404173108002E-0001 1.99242657760366E-0001 1.99081251349609E-0001 1.98919953815706E-0001 1.98758765098658E-0001 + 1.98597685138495E-0001 1.98436713875271E-0001 1.98275851249068E-0001 1.98115097199996E-0001 1.97954451668189E-0001 + 1.97793914593810E-0001 1.97633485917048E-0001 1.97473165578117E-0001 1.97312953517261E-0001 1.97152849674748E-0001 + 1.96992853990874E-0001 1.96832966405961E-0001 1.96673186860357E-0001 1.96513515294438E-0001 1.96353951648605E-0001 + 1.96194495863289E-0001 1.96035147878943E-0001 1.95875907636049E-0001 1.95716775075116E-0001 1.95557750136679E-0001 + 1.95398832761299E-0001 1.95240022889564E-0001 1.95081320462089E-0001 1.94922725419514E-0001 1.94764237702508E-0001 + 1.94605857251764E-0001 1.94447584008003E-0001 1.94289417911972E-0001 1.94131358904444E-0001 1.93973406926220E-0001 + 1.93815561918126E-0001 1.93657823821015E-0001 1.93500192575765E-0001 1.93342668123284E-0001 1.93185250404503E-0001 + 1.93027939360380E-0001 1.92870734931901E-0001 1.92713637060076E-0001 1.92556645685945E-0001 1.92399760750570E-0001 + 1.92242982195043E-0001 1.92086309960479E-0001 1.91929743988023E-0001 1.91773284218843E-0001 1.91616930594136E-0001 + 1.91460683055124E-0001 1.91304541543055E-0001 1.91148505999203E-0001 1.90992576364870E-0001 1.90836752581383E-0001 + 1.90681034590095E-0001 1.90525422332387E-0001 1.90369915749664E-0001 1.90214514783358E-0001 1.90059219374929E-0001 + 1.89904029465860E-0001 1.89748944997662E-0001 1.89593965911873E-0001 1.89439092150056E-0001 1.89284323653801E-0001 + 1.89129660364722E-0001 1.88975102224462E-0001 1.88820649174688E-0001 1.88666301157095E-0001 1.88512058113403E-0001 + 1.88357919985358E-0001 1.88203886714732E-0001 1.88049958243324E-0001 1.87896134512959E-0001 1.87742415465488E-0001 + 1.87588801042785E-0001 1.87435291186756E-0001 1.87281885839329E-0001 1.87128584942457E-0001 1.86975388438124E-0001 + 1.86822296268334E-0001 1.86669308375122E-0001 1.86516424700546E-0001 1.86363645186691E-0001 1.86210969775668E-0001 + 1.86058398409614E-0001 1.85905931030692E-0001 1.85753567581091E-0001 1.85601308003025E-0001 1.85449152238735E-0001 + 1.85297100230488E-0001 1.85145151920576E-0001 1.84993307251319E-0001 1.84841566165059E-0001 1.84689928604167E-0001 + 1.84538394511040E-0001 1.84386963828100E-0001 1.84235636497794E-0001 1.84084412462595E-0001 1.83933291665004E-0001 + 1.83782274047547E-0001 1.83631359552773E-0001 1.83480548123260E-0001 1.83329839701611E-0001 1.83179234230455E-0001 + 1.83028731652445E-0001 1.82878331910263E-0001 1.82728034946613E-0001 1.82577840704228E-0001 1.82427749125865E-0001 + 1.82277760154307E-0001 1.82127873732363E-0001 1.81978089802868E-0001 1.81828408308682E-0001 1.81678829192691E-0001 + 1.81529352397806E-0001 1.81379977866965E-0001 1.81230705543132E-0001 1.81081535369294E-0001 1.80932467288466E-0001 + 1.80783501243689E-0001 1.80634637178027E-0001 1.80485875034572E-0001 1.80337214756441E-0001 1.80188656286776E-0001 + 1.80040199568746E-0001 1.79891844545543E-0001 1.79743591160388E-0001 1.79595439356525E-0001 1.79447389077224E-0001 + 1.79299440265782E-0001 1.79151592865519E-0001 1.79003846819783E-0001 1.78856202071946E-0001 1.78708658565406E-0001 + 1.78561216243587E-0001 1.78413875049937E-0001 1.78266634927931E-0001 1.78119495821069E-0001 1.77972457672877E-0001 + 1.77825520426904E-0001 1.77678684026729E-0001 1.77531948415951E-0001 1.77385313538199E-0001 1.77238779337124E-0001 + 1.77092345756406E-0001 1.76946012739746E-0001 1.76799780230875E-0001 1.76653648173546E-0001 1.76507616511538E-0001 + 1.76361685188657E-0001 1.76215854148733E-0001 1.76070123335621E-0001 1.75924492693202E-0001 1.75778962165382E-0001 + 1.75633531696094E-0001 1.75488201229292E-0001 1.75342970708961E-0001 1.75197840079107E-0001 1.75052809283763E-0001 + 1.74907878266986E-0001 1.74763046972861E-0001 1.74618315345495E-0001 1.74473683329022E-0001 1.74329150867601E-0001 + 1.74184717905417E-0001 1.74040384386678E-0001 1.73896150255618E-0001 1.73752015456499E-0001 1.73607979933605E-0001 + 1.73464043631245E-0001 1.73320206493755E-0001 1.73176468465496E-0001 1.73032829490853E-0001 1.72889289514236E-0001 + 1.72745848480082E-0001 1.72602506332852E-0001 1.72459263017031E-0001 1.72316118477130E-0001 1.72173072657686E-0001 + 1.72030125503261E-0001 1.71887276958440E-0001 1.71744526967835E-0001 1.71601875476083E-0001 1.71459322427844E-0001 + 1.71316867767806E-0001 1.71174511440680E-0001 1.71032253391203E-0001 1.70890093564137E-0001 1.70748031904267E-0001 + 1.70606068356406E-0001 1.70464202865390E-0001 1.70322435376081E-0001 1.70180765833365E-0001 1.70039194182154E-0001 + 1.69897720367383E-0001 1.69756344334016E-0001 1.69615066027036E-0001 1.69473885391457E-0001 1.69332802372314E-0001 + 1.69191816914667E-0001 1.69050928963603E-0001 1.68910138464233E-0001 1.68769445361691E-0001 1.68628849601139E-0001 + 1.68488351127762E-0001 1.68347949886770E-0001 1.68207645823398E-0001 1.68067438882905E-0001 1.67927329010577E-0001 + 1.67787316151722E-0001 1.67647400251676E-0001 1.67507581255796E-0001 1.67367859109467E-0001 1.67228233758098E-0001 + 1.67088705147120E-0001 1.66949273221994E-0001 1.66809937928201E-0001 1.66670699211248E-0001 1.66531557016669E-0001 + 1.66392511290020E-0001 1.66253561976882E-0001 1.66114709022862E-0001 1.65975952373592E-0001 1.65837291974726E-0001 + 1.65698727771945E-0001 1.65560259710954E-0001 1.65421887737484E-0001 1.65283611797287E-0001 1.65145431836143E-0001 + 1.65007347799856E-0001 1.64869359634253E-0001 1.64731467285188E-0001 1.64593670698538E-0001 1.64455969820205E-0001 + 1.64318364596115E-0001 1.64180854972220E-0001 1.64043440894494E-0001 1.63906122308939E-0001 1.63768899161579E-0001 + 1.63631771398463E-0001 1.63494738965665E-0001 1.63357801809284E-0001 1.63220959875441E-0001 1.63084213110285E-0001 + 1.62947561459987E-0001 1.62811004870743E-0001 1.62674543288775E-0001 1.62538176660326E-0001 1.62401904931668E-0001 + 1.62265728049094E-0001 1.62129645958922E-0001 1.61993658607495E-0001 1.61857765941181E-0001 1.61721967906371E-0001 + 1.61586264449482E-0001 1.61450655516953E-0001 1.61315141055251E-0001 1.61179721010863E-0001 1.61044395330304E-0001 + 1.60909163960111E-0001 1.60774026846848E-0001 1.60638983937099E-0001 1.60504035177478E-0001 1.60369180514617E-0001 + 1.60234419895178E-0001 1.60099753265844E-0001 1.59965180573322E-0001 1.59830701764347E-0001 1.59696316785673E-0001 + 1.59562025584083E-0001 1.59427828106380E-0001 1.59293724299396E-0001 1.59159714109982E-0001 1.59025797485018E-0001 + 1.58891974371405E-0001 1.58758244716069E-0001 1.58624608465961E-0001 1.58491065568056E-0001 1.58357615969352E-0001 + 1.58224259616873E-0001 1.58090996457665E-0001 1.57957826438800E-0001 1.57824749507374E-0001 1.57691765610505E-0001 + 1.57558874695338E-0001 1.57426076709041E-0001 1.57293371598804E-0001 1.57160759311846E-0001 1.57028239795404E-0001 + 1.56895812996745E-0001 1.56763478863155E-0001 1.56631237341948E-0001 1.56499088380459E-0001 1.56367031926049E-0001 + 1.56235067926103E-0001 1.56103196328028E-0001 1.55971417079258E-0001 1.55839730127249E-0001 1.55708135419481E-0001 + 1.55576632903459E-0001 1.55445222526712E-0001 1.55313904236791E-0001 1.55182677981273E-0001 1.55051543707759E-0001 + 1.54920501363872E-0001 1.54789550897262E-0001 1.54658692255599E-0001 1.54527925386581E-0001 1.54397250237927E-0001 + 1.54266666757380E-0001 1.54136174892710E-0001 1.54005774591707E-0001 1.53875465802187E-0001 1.53745248471989E-0001 + 1.53615122548977E-0001 1.53485087981037E-0001 1.53355144716081E-0001 1.53225292702043E-0001 1.53095531886882E-0001 + 1.52965862218580E-0001 1.52836283645144E-0001 1.52706796114603E-0001 1.52577399575011E-0001 1.52448093974446E-0001 + 1.52318879261009E-0001 1.52189755382825E-0001 1.52060722288043E-0001 1.51931779924835E-0001 1.51802928241398E-0001 + 1.51674167185952E-0001 1.51545496706740E-0001 1.51416916752029E-0001 1.51288427270112E-0001 1.51160028209302E-0001 + 1.51031719517939E-0001 1.50903501144384E-0001 1.50775373037023E-0001 1.50647335144266E-0001 1.50519387414545E-0001 + 1.50391529796318E-0001 1.50263762238065E-0001 1.50136084688289E-0001 1.50008497095519E-0001 1.49880999408305E-0001 + 1.49753591575223E-0001 1.49626273544871E-0001 1.49499045265870E-0001 1.49371906686866E-0001 1.49244857756529E-0001 + 1.49117898423550E-0001 1.48991028636646E-0001 1.48864248344557E-0001 1.48737557496045E-0001 1.48610956039898E-0001 + 1.48484443924925E-0001 1.48358021099961E-0001 1.48231687513863E-0001 1.48105443115510E-0001 1.47979287853808E-0001 + 1.47853221677683E-0001 1.47727244536088E-0001 1.47601356377996E-0001 1.47475557152405E-0001 1.47349846808336E-0001 + 1.47224225294835E-0001 1.47098692560969E-0001 1.46973248555830E-0001 1.46847893228533E-0001 1.46722626528216E-0001 + 1.46597448404041E-0001 1.46472358805193E-0001 1.46347357680881E-0001 1.46222444980335E-0001 1.46097620652811E-0001 + 1.45972884647588E-0001 1.45848236913967E-0001 1.45723677401274E-0001 1.45599206058855E-0001 1.45474822836085E-0001 + 1.45350527682356E-0001 1.45226320547088E-0001 1.45102201379721E-0001 1.44978170129721E-0001 1.44854226746575E-0001 + 1.44730371179795E-0001 1.44606603378915E-0001 1.44482923293493E-0001 1.44359330873109E-0001 1.44235826067368E-0001 + 1.44112408825897E-0001 1.43989079098346E-0001 1.43865836834389E-0001 1.43742681983723E-0001 1.43619614496068E-0001 + 1.43496634321167E-0001 1.43373741408786E-0001 1.43250935708714E-0001 1.43128217170765E-0001 1.43005585744773E-0001 + 1.42883041380598E-0001 1.42760584028122E-0001 1.42638213637249E-0001 1.42515930157907E-0001 1.42393733540048E-0001 + 1.42271623733646E-0001 1.42149600688697E-0001 1.42027664355223E-0001 1.41905814683267E-0001 1.41784051622894E-0001 + 1.41662375124195E-0001 1.41540785137282E-0001 1.41419281612290E-0001 1.41297864499377E-0001 1.41176533748726E-0001 + 1.41055289310540E-0001 1.40934131135047E-0001 1.40813059172497E-0001 1.40692073373163E-0001 1.40571173687342E-0001 + 1.40450360065353E-0001 1.40329632457537E-0001 1.40208990814261E-0001 1.40088435085911E-0001 1.39967965222899E-0001 + 1.39847581175659E-0001 1.39727282894646E-0001 1.39607070330341E-0001 1.39486943433246E-0001 1.39366902153886E-0001 + 1.39246946442809E-0001 1.39127076250586E-0001 1.39007291527811E-0001 1.38887592225101E-0001 1.38767978293094E-0001 + 1.38648449682453E-0001 1.38529006343863E-0001 1.38409648228032E-0001 1.38290375285691E-0001 1.38171187467592E-0001 + 1.38052084724513E-0001 1.37933067007251E-0001 1.37814134266628E-0001 1.37695286453489E-0001 1.37576523518702E-0001 + 1.37457845413155E-0001 1.37339252087761E-0001 1.37220743493456E-0001 1.37102319581198E-0001 1.36983980301967E-0001 + 1.36865725606766E-0001 1.36747555446622E-0001 1.36629469772583E-0001 1.36511468535720E-0001 1.36393551687128E-0001 + 1.36275719177924E-0001 1.36157970959245E-0001 1.36040306982255E-0001 1.35922727198138E-0001 1.35805231558100E-0001 + 1.35687820013372E-0001 1.35570492515206E-0001 1.35453249014876E-0001 1.35336089463680E-0001 1.35219013812938E-0001 + 1.35102022013993E-0001 1.34985114018210E-0001 1.34868289776976E-0001 1.34751549241701E-0001 1.34634892363818E-0001 + 1.34518319094783E-0001 1.34401829386072E-0001 1.34285423189187E-0001 1.34169100455650E-0001 1.34052861137005E-0001 + 1.33936705184821E-0001 1.33820632550688E-0001 1.33704643186218E-0001 1.33588737043047E-0001 1.33472914072831E-0001 + 1.33357174227250E-0001 1.33241517458007E-0001 1.33125943716827E-0001 1.33010452955456E-0001 1.32895045125664E-0001 + 1.32779720179243E-0001 1.32664478068006E-0001 1.32549318743792E-0001 1.32434242158458E-0001 1.32319248263886E-0001 + 1.32204337011980E-0001 1.32089508354665E-0001 1.31974762243890E-0001 1.31860098631626E-0001 1.31745517469865E-0001 + 1.31631018710623E-0001 1.31516602305938E-0001 1.31402268207868E-0001 1.31288016368497E-0001 1.31173846739928E-0001 + 1.31059759274289E-0001 1.30945753923728E-0001 1.30831830640416E-0001 1.30717989376547E-0001 1.30604230084336E-0001 + 1.30490552716021E-0001 1.30376957223862E-0001 1.30263443560141E-0001 1.30150011677163E-0001 1.30036661527255E-0001 + 1.29923393062765E-0001 1.29810206236063E-0001 1.29697100999544E-0001 1.29584077305622E-0001 1.29471135106735E-0001 + 1.29358274355343E-0001 1.29245495003926E-0001 1.29132797004989E-0001 1.29020180311058E-0001 1.28907644874680E-0001 + 1.28795190648426E-0001 1.28682817584888E-0001 1.28570525636680E-0001 1.28458314756439E-0001 1.28346184896822E-0001 + 1.28234136010511E-0001 1.28122168050208E-0001 1.28010280968636E-0001 1.27898474718544E-0001 1.27786749252698E-0001 + 1.27675104523891E-0001 1.27563540484933E-0001 1.27452057088661E-0001 1.27340654287931E-0001 1.27229332035620E-0001 + 1.27118090284630E-0001 1.27006928987882E-0001 1.26895848098322E-0001 1.26784847568916E-0001 1.26673927352652E-0001 + 1.26563087402539E-0001 1.26452327671611E-0001 1.26341648112921E-0001 1.26231048679546E-0001 1.26120529324582E-0001 + 1.26010090001150E-0001 1.25899730662392E-0001 1.25789451261470E-0001 1.25679251751570E-0001 1.25569132085900E-0001 + 1.25459092217688E-0001 1.25349132100185E-0001 1.25239251686664E-0001 1.25129450930419E-0001 1.25019729784767E-0001 + 1.24910088203046E-0001 1.24800526138615E-0001 1.24691043544857E-0001 1.24581640375174E-0001 1.24472316582993E-0001 + 1.24363072121760E-0001 1.24253906944944E-0001 1.24144821006035E-0001 1.24035814258546E-0001 1.23926886656011E-0001 + 1.23818038151984E-0001 1.23709268700045E-0001 1.23600578253792E-0001 1.23491966766845E-0001 1.23383434192847E-0001 + 1.23274980485463E-0001 1.23166605598378E-0001 1.23058309485300E-0001 1.22950092099958E-0001 1.22841953396102E-0001 + 1.22733893327506E-0001 1.22625911847964E-0001 1.22518008911290E-0001 1.22410184471322E-0001 1.22302438481920E-0001 + 1.22194770896964E-0001 1.22087181670356E-0001 1.21979670756020E-0001 1.21872238107901E-0001 1.21764883679965E-0001 + 1.21657607426202E-0001 1.21550409300621E-0001 1.21443289257254E-0001 1.21336247250153E-0001 1.21229283233394E-0001 + 1.21122397161073E-0001 1.21015588987306E-0001 1.20908858666234E-0001 1.20802206152016E-0001 1.20695631398835E-0001 + 1.20589134360895E-0001 1.20482714992419E-0001 1.20376373247656E-0001 1.20270109080872E-0001 1.20163922446358E-0001 + 1.20057813298423E-0001 1.19951781591401E-0001 1.19845827279644E-0001 1.19739950317528E-0001 1.19634150659450E-0001 + 1.19528428259826E-0001 1.19422783073098E-0001 1.19317215053724E-0001 1.19211724156187E-0001 1.19106310334991E-0001 + 1.19000973544661E-0001 1.18895713739741E-0001 1.18790530874800E-0001 1.18685424904426E-0001 1.18580395783231E-0001 + 1.18475443465843E-0001 1.18370567906918E-0001 1.18265769061128E-0001 1.18161046883168E-0001 1.18056401327757E-0001 + 1.17951832349630E-0001 1.17847339903547E-0001 1.17742923944290E-0001 1.17638584426658E-0001 1.17534321305476E-0001 + 1.17430134535587E-0001 1.17326024071856E-0001 1.17221989869170E-0001 1.17118031882438E-0001 1.17014150066586E-0001 + 1.16910344376567E-0001 1.16806614767351E-0001 1.16702961193930E-0001 1.16599383611319E-0001 1.16495881974552E-0001 + 1.16392456238685E-0001 1.16289106358795E-0001 1.16185832289981E-0001 1.16082633987362E-0001 1.15979511406078E-0001 + 1.15876464501292E-0001 1.15773493228185E-0001 1.15670597541962E-0001 1.15567777397847E-0001 1.15465032751087E-0001 + 1.15362363556949E-0001 1.15259769770720E-0001 1.15157251347711E-0001 1.15054808243251E-0001 1.14952440412691E-0001 + 1.14850147811405E-0001 1.14747930394784E-0001 1.14645788118245E-0001 1.14543720937221E-0001 1.14441728807170E-0001 + 1.14339811683569E-0001 1.14237969521916E-0001 1.14136202277730E-0001 1.14034509906552E-0001 1.13932892363944E-0001 + 1.13831349605487E-0001 1.13729881586784E-0001 1.13628488263460E-0001 1.13527169591160E-0001 1.13425925525549E-0001 + 1.13324756022316E-0001 1.13223661037166E-0001 1.13122640525830E-0001 1.13021694444056E-0001 1.12920822747615E-0001 + 1.12820025392299E-0001 1.12719302333920E-0001 1.12618653528310E-0001 1.12518078931324E-0001 1.12417578498837E-0001 + 1.12317152186743E-0001 1.12216799950960E-0001 1.12116521747425E-0001 1.12016317532095E-0001 1.11916187260950E-0001 + 1.11816130889989E-0001 1.11716148375233E-0001 1.11616239672723E-0001 1.11516404738521E-0001 1.11416643528710E-0001 + 1.11316955999393E-0001 1.11217342106694E-0001 1.11117801806759E-0001 1.11018335055753E-0001 1.10918941809863E-0001 + 1.10819622025296E-0001 1.10720375658280E-0001 1.10621202665062E-0001 1.10522103001914E-0001 1.10423076625124E-0001 + 1.10324123491004E-0001 1.10225243555884E-0001 1.10126436776116E-0001 1.10027703108074E-0001 1.09929042508150E-0001 + 1.09830454932759E-0001 1.09731940338335E-0001 1.09633498681332E-0001 1.09535129918228E-0001 1.09436834005518E-0001 + 1.09338610899719E-0001 1.09240460557369E-0001 1.09142382935027E-0001 1.09044377989270E-0001 1.08946445676698E-0001 + 1.08848585953931E-0001 1.08750798777609E-0001 1.08653084104394E-0001 1.08555441890967E-0001 1.08457872094029E-0001 + 1.08360374670304E-0001 1.08262949576535E-0001 1.08165596769485E-0001 1.08068316205937E-0001 1.07971107842698E-0001 + 1.07873971636591E-0001 1.07776907544463E-0001 1.07679915523179E-0001 1.07582995529625E-0001 1.07486147520709E-0001 + 1.07389371453358E-0001 1.07292667284520E-0001 1.07196034971163E-0001 1.07099474470275E-0001 1.07002985738865E-0001 + 1.06906568733964E-0001 1.06810223412620E-0001 1.06713949731904E-0001 1.06617747648907E-0001 1.06521617120740E-0001 + 1.06425558104533E-0001 1.06329570557439E-0001 1.06233654436630E-0001 1.06137809699297E-0001 1.06042036302655E-0001 + 1.05946334203935E-0001 1.05850703360391E-0001 1.05755143729297E-0001 1.05659655267947E-0001 1.05564237933655E-0001 + 1.05468891683756E-0001 1.05373616475603E-0001 1.05278412266574E-0001 1.05183279014063E-0001 1.05088216675485E-0001 + 1.04993225208276E-0001 1.04898304569893E-0001 1.04803454717812E-0001 1.04708675609530E-0001 1.04613967202563E-0001 + 1.04519329454448E-0001 1.04424762322743E-0001 1.04330265765025E-0001 1.04235839738891E-0001 1.04141484201959E-0001 + 1.04047199111868E-0001 1.03952984426275E-0001 1.03858840102859E-0001 1.03764766099318E-0001 1.03670762373371E-0001 + 1.03576828882756E-0001 1.03482965585232E-0001 1.03389172438578E-0001 1.03295449400593E-0001 1.03201796429097E-0001 + 1.03108213481928E-0001 1.03014700516946E-0001 1.02921257492030E-0001 1.02827884365080E-0001 1.02734581094015E-0001 + 1.02641347636775E-0001 1.02548183951320E-0001 1.02455089995629E-0001 1.02362065727701E-0001 1.02269111105558E-0001 + 1.02176226087238E-0001 1.02083410630801E-0001 1.01990664694327E-0001 1.01897988235916E-0001 1.01805381213688E-0001 + 1.01712843585782E-0001 1.01620375310358E-0001 1.01527976345596E-0001 1.01435646649696E-0001 1.01343386180876E-0001 + 1.01251194897377E-0001 1.01159072757458E-0001 1.01067019719398E-0001 1.00975035741497E-0001 1.00883120782074E-0001 + 1.00791274799468E-0001 1.00699497752038E-0001 1.00607789598163E-0001 1.00516150296242E-0001 1.00424579804694E-0001 + 1.00333078081956E-0001 1.00241645086488E-0001 1.00150280776768E-0001 1.00058985111293E-0001 9.99677580485826E-0002 + 9.98765995471732E-0002 9.97855095656227E-0002 9.96944880625086E-0002 9.96035349964281E-0002 9.95126503259982E-0002 + 9.94218340098557E-0002 9.93310860066571E-0002 9.92404062750786E-0002 9.91497947738166E-0002 9.90592514615869E-0002 + 9.89687762971250E-0002 9.88783692391862E-0002 9.87880302465457E-0002 9.86977592779984E-0002 9.86075562923588E-0002 + 9.85174212484611E-0002 9.84273541051592E-0002 9.83373548213270E-0002 9.82474233558577E-0002 9.81575596676644E-0002 + 9.80677637156798E-0002 9.79780354588562E-0002 9.78883748561658E-0002 9.77987818666003E-0002 9.77092564491710E-0002 + 9.76197985629089E-0002 9.75304081668645E-0002 9.74410852201082E-0002 9.73518296817299E-0002 9.72626415108390E-0002 + 9.71735206665645E-0002 9.70844671080552E-0002 9.69954807944794E-0002 9.69065616850247E-0002 9.68177097388987E-0002 + 9.67289249153282E-0002 9.66402071735599E-0002 9.65515564728598E-0002 9.64629727725136E-0002 9.63744560318263E-0002 + 9.62860062101226E-0002 9.61976232667468E-0002 9.61093071610625E-0002 9.60210578524530E-0002 9.59328753003209E-0002 + 9.58447594640885E-0002 9.57567103031974E-0002 9.56687277771088E-0002 9.55808118453033E-0002 9.54929624672809E-0002 + 9.54051796025613E-0002 9.53174632106834E-0002 9.52298132512055E-0002 9.51422296837056E-0002 9.50547124677807E-0002 + 9.49672615630478E-0002 9.48798769291428E-0002 9.47925585257212E-0002 9.47053063124578E-0002 9.46181202490471E-0002 + 9.45310002952025E-0002 9.44439464106571E-0002 9.43569585551632E-0002 9.42700366884925E-0002 9.41831807704363E-0002 + 9.40963907608047E-0002 9.40096666194276E-0002 9.39230083061541E-0002 9.38364157808524E-0002 9.37498890034104E-0002 + 9.36634279337350E-0002 9.35770325317525E-0002 9.34907027574084E-0002 9.34044385706677E-0002 9.33182399315145E-0002 + 9.32321067999521E-0002 9.31460391360033E-0002 9.30600368997098E-0002 9.29741000511329E-0002 9.28882285503530E-0002 + 9.28024223574697E-0002 9.27166814326019E-0002 9.26310057358873E-0002 9.25453952274836E-0002 9.24598498675671E-0002 + 9.23743696163334E-0002 9.22889544339972E-0002 9.22036042807928E-0002 9.21183191169733E-0002 9.20330989028109E-0002 + 9.19479435985973E-0002 9.18628531646428E-0002 9.17778275612776E-0002 9.16928667488503E-0002 9.16079706877292E-0002 + 9.15231393383012E-0002 9.14383726609727E-0002 9.13536706161691E-0002 9.12690331643348E-0002 9.11844602659335E-0002 + 9.10999518814476E-0002 9.10155079713790E-0002 9.09311284962485E-0002 9.08468134165958E-0002 9.07625626929799E-0002 + 9.06783762859786E-0002 9.05942541561891E-0002 9.05101962642272E-0002 9.04262025707280E-0002 9.03422730363456E-0002 + 9.02584076217528E-0002 9.01746062876420E-0002 9.00908689947241E-0002 9.00071957037290E-0002 8.99235863754059E-0002 + 8.98400409705227E-0002 8.97565594498663E-0002 8.96731417742426E-0002 8.95897879044766E-0002 8.95064978014119E-0002 + 8.94232714259113E-0002 8.93401087388565E-0002 8.92570097011480E-0002 8.91739742737054E-0002 8.90910024174669E-0002 + 8.90080940933900E-0002 8.89252492624508E-0002 8.88424678856443E-0002 8.87597499239844E-0002 8.86770953385042E-0002 + 8.85945040902551E-0002 8.85119761403077E-0002 8.84295114497515E-0002 8.83471099796944E-0002 8.82647716912638E-0002 + 8.81824965456054E-0002 8.81002845038839E-0002 8.80181355272829E-0002 8.79360495770045E-0002 8.78540266142701E-0002 + 8.77720666003193E-0002 8.76901694964110E-0002 8.76083352638225E-0002 8.75265638638501E-0002 8.74448552578089E-0002 + 8.73632094070323E-0002 8.72816262728731E-0002 8.72001058167023E-0002 8.71186479999100E-0002 8.70372527839048E-0002 + 8.69559201301141E-0002 8.68746499999840E-0002 8.67934423549792E-0002 8.67122971565834E-0002 8.66312143662987E-0002 + 8.65501939456460E-0002 8.64692358561646E-0002 8.63883400594131E-0002 8.63075065169681E-0002 8.62267351904251E-0002 + 8.61460260413985E-0002 8.60653790315207E-0002 8.59847941224436E-0002 8.59042712758369E-0002 8.58238104533895E-0002 + 8.57434116168086E-0002 8.56630747278199E-0002 8.55827997481681E-0002 8.55025866396162E-0002 8.54224353639459E-0002 + 8.53423458829572E-0002 8.52623181584691E-0002 8.51823521523189E-0002 8.51024478263625E-0002 8.50226051424743E-0002 + 8.49428240625471E-0002 8.48631045484927E-0002 8.47834465622410E-0002 8.47038500657405E-0002 8.46243150209583E-0002 + 8.45448413898799E-0002 8.44654291345094E-0002 8.43860782168693E-0002 8.43067885990006E-0002 8.42275602429627E-0002 + 8.41483931108338E-0002 8.40692871647101E-0002 8.39902423667065E-0002 8.39112586789564E-0002 8.38323360636113E-0002 + 8.37534744828416E-0002 8.36746738988358E-0002 8.35959342738009E-0002 8.35172555699624E-0002 8.34386377495639E-0002 + 8.33600807748678E-0002 8.32815846081548E-0002 8.32031492117236E-0002 8.31247745478916E-0002 8.30464605789948E-0002 + 8.29682072673870E-0002 8.28900145754406E-0002 8.28118824655466E-0002 8.27338109001138E-0002 8.26557998415700E-0002 + 8.25778492523607E-0002 8.24999590949500E-0002 8.24221293318204E-0002 8.23443599254725E-0002 8.22666508384253E-0002 + 8.21890020332160E-0002 8.21114134724003E-0002 8.20338851185518E-0002 8.19564169342629E-0002 8.18790088821437E-0002 + 8.18016609248229E-0002 8.17243730249474E-0002 8.16471451451820E-0002 8.15699772482104E-0002 8.14928692967339E-0002 + 8.14158212534723E-0002 8.13388330811636E-0002 8.12619047425639E-0002 8.11850362004477E-0002 8.11082274176074E-0002 + 8.10314783568538E-0002 8.09547889810157E-0002 8.08781592529404E-0002 8.08015891354930E-0002 8.07250785915569E-0002 + 8.06486275840336E-0002 8.05722360758428E-0002 8.04959040299223E-0002 8.04196314092281E-0002 8.03434181767342E-0002 + 8.02672642954327E-0002 8.01911697283339E-0002 8.01151344384662E-0002 8.00391583888761E-0002 7.99632415426280E-0002 + 7.98873838628046E-0002 7.98115853125065E-0002 7.97358458548526E-0002 7.96601654529795E-0002 7.95845440700422E-0002 + 7.95089816692135E-0002 7.94334782136843E-0002 7.93580336666637E-0002 7.92826479913785E-0002 7.92073211510738E-0002 + 7.91320531090123E-0002 7.90568438284754E-0002 7.89816932727618E-0002 7.89066014051886E-0002 7.88315681890906E-0002 + 7.87565935878208E-0002 7.86816775647501E-0002 7.86068200832673E-0002 7.85320211067791E-0002 7.84572805987103E-0002 + 7.83825985225036E-0002 7.83079748416195E-0002 7.82334095195366E-0002 7.81589025197512E-0002 7.80844538057777E-0002 + 7.80100633411484E-0002 7.79357310894134E-0002 7.78614570141406E-0002 7.77872410789160E-0002 7.77130832473434E-0002 + 7.76389834830444E-0002 7.75649417496585E-0002 7.74909580108430E-0002 7.74170322302731E-0002 7.73431643716419E-0002 + 7.72693543986603E-0002 7.71956022750569E-0002 7.71219079645782E-0002 7.70482714309884E-0002 7.69746926380700E-0002 + 7.69011715496225E-0002 7.68277081294640E-0002 7.67543023414296E-0002 7.66809541493728E-0002 7.66076635171647E-0002 + 7.65344304086939E-0002 7.64612547878671E-0002 7.63881366186085E-0002 7.63150758648603E-0002 7.62420724905822E-0002 + 7.61691264597516E-0002 7.60962377363639E-0002 7.60234062844319E-0002 7.59506320679864E-0002 7.58779150510756E-0002 + 7.58052551977657E-0002 7.57326524721403E-0002 7.56601068383009E-0002 7.55876182603665E-0002 7.55151867024740E-0002 + 7.54428121287776E-0002 7.53704945034495E-0002 7.52982337906794E-0002 7.52260299546746E-0002 7.51538829596601E-0002 + 7.50817927698786E-0002 7.50097593495900E-0002 7.49377826630725E-0002 7.48658626746214E-0002 7.47939993485496E-0002 + 7.47221926491880E-0002 7.46504425408844E-0002 7.45787489880050E-0002 7.45071119549329E-0002 7.44355314060691E-0002 + 7.43640073058320E-0002 7.42925396186578E-0002 7.42211283089998E-0002 7.41497733413293E-0002 7.40784746801348E-0002 + 7.40072322899225E-0002 7.39360461352161E-0002 7.38649161805567E-0002 7.37938423905030E-0002 7.37228247296312E-0002 + 7.36518631625348E-0002 7.35809576538251E-0002 7.35101081681307E-0002 7.34393146700976E-0002 7.33685771243894E-0002 + 7.32978954956870E-0002 7.32272697486890E-0002 7.31566998481111E-0002 7.30861857586867E-0002 7.30157274451664E-0002 + 7.29453248723186E-0002 7.28749780049287E-0002 7.28046868077997E-0002 7.27344512457520E-0002 7.26642712836233E-0002 + 7.25941468862688E-0002 7.25240780185610E-0002 7.24540646453899E-0002 7.23841067316626E-0002 7.23142042423039E-0002 + 7.22443571422556E-0002 7.21745653964772E-0002 7.21048289699451E-0002 7.20351478276535E-0002 7.19655219346138E-0002 + 7.18959512558544E-0002 7.18264357564214E-0002 7.17569754013779E-0002 7.16875701558045E-0002 7.16182199847992E-0002 + 7.15489248534769E-0002 7.14796847269701E-0002 7.14104995704284E-0002 7.13413693490188E-0002 7.12722940279255E-0002 + 7.12032735723499E-0002 7.11343079475106E-0002 7.10653971186436E-0002 7.09965410510021E-0002 7.09277397098564E-0002 + 7.08589930604940E-0002 7.07903010682199E-0002 7.07216636983559E-0002 7.06530809162414E-0002 7.05845526872325E-0002 + 7.05160789767031E-0002 7.04476597500436E-0002 7.03792949726622E-0002 7.03109846099839E-0002 7.02427286274508E-0002 + 7.01745269905224E-0002 7.01063796646751E-0002 7.00382866154028E-0002 6.99702478082160E-0002 6.99022632086429E-0002 + 6.98343327822282E-0002 6.97664564945343E-0002 6.96986343111403E-0002 6.96308661976426E-0002 6.95631521196545E-0002 + 6.94954920428066E-0002 6.94278859327466E-0002 6.93603337551389E-0002 6.92928354756653E-0002 6.92253910600246E-0002 + 6.91580004739326E-0002 6.90906636831222E-0002 6.90233806533431E-0002 6.89561513503625E-0002 6.88889757399641E-0002 + 6.88218537879489E-0002 6.87547854601350E-0002 6.86877707223573E-0002 6.86208095404677E-0002 6.85539018803351E-0002 + 6.84870477078456E-0002 6.84202469889020E-0002 6.83534996894243E-0002 6.82868057753491E-0002 6.82201652126303E-0002 + 6.81535779672388E-0002 6.80870440051620E-0002 6.80205632924048E-0002 6.79541357949886E-0002 6.78877614789518E-0002 + 6.78214403103499E-0002 6.77551722552552E-0002 6.76889572797568E-0002 6.76227953499608E-0002 6.75566864319903E-0002 + 6.74906304919851E-0002 6.74246274961020E-0002 6.73586774105144E-0002 6.72927802014129E-0002 6.72269358350049E-0002 + 6.71611442775146E-0002 6.70954054951828E-0002 6.70297194542675E-0002 6.69640861210433E-0002 6.68985054618018E-0002 + 6.68329774428513E-0002 6.67675020305169E-0002 6.67020791911405E-0002 6.66367088910810E-0002 6.65713910967137E-0002 + 6.65061257744311E-0002 6.64409128906421E-0002 6.63757524117726E-0002 6.63106443042652E-0002 6.62455885345794E-0002 + 6.61805850691913E-0002 6.61156338745936E-0002 6.60507349172959E-0002 6.59858881638248E-0002 6.59210935807231E-0002 + 6.58563511345506E-0002 6.57916607918839E-0002 6.57270225193161E-0002 6.56624362834571E-0002 6.55979020509335E-0002 + 6.55334197883885E-0002 6.54689894624820E-0002 6.54046110398908E-0002 6.53402844873081E-0002 6.52760097714437E-0002 + 6.52117868590243E-0002 6.51476157167930E-0002 6.50834963115099E-0002 6.50194286099514E-0002 6.49554125789105E-0002 + 6.48914481851970E-0002 6.48275353956374E-0002 6.47636741770745E-0002 6.46998644963680E-0002 6.46361063203939E-0002 + 6.45723996160449E-0002 6.45087443502306E-0002 6.44451404898767E-0002 6.43815880019256E-0002 6.43180868533365E-0002 + 6.42546370110848E-0002 6.41912384421627E-0002 6.41278911135790E-0002 6.40645949923586E-0002 6.40013500455434E-0002 + 6.39381562401917E-0002 6.38750135433782E-0002 6.38119219221941E-0002 6.37488813437472E-0002 6.36858917751618E-0002 + 6.36229531835786E-0002 6.35600655361550E-0002 6.34972288000644E-0002 6.34344429424973E-0002 6.33717079306601E-0002 + 6.33090237317761E-0002 6.32463903130847E-0002 6.31838076418419E-0002 6.31212756853202E-0002 6.30587944108084E-0002 + 6.29963637856119E-0002 6.29339837770522E-0002 6.28716543524676E-0002 6.28093754792124E-0002 6.27471471246577E-0002 + 6.26849692561907E-0002 6.26228418412152E-0002 6.25607648471511E-0002 6.24987382414350E-0002 6.24367619915196E-0002 + 6.23748360648741E-0002 6.23129604289840E-0002 6.22511350513511E-0002 6.21893598994938E-0002 6.21276349409464E-0002 + 6.20659601432599E-0002 6.20043354740015E-0002 6.19427609007545E-0002 6.18812363911190E-0002 6.18197619127109E-0002 + 6.17583374331626E-0002 6.16969629201229E-0002 6.16356383412566E-0002 6.15743636642451E-0002 6.15131388567859E-0002 + 6.14519638865927E-0002 6.13908387213955E-0002 6.13297633289407E-0002 6.12687376769907E-0002 6.12077617333244E-0002 + 6.11468354657368E-0002 6.10859588420388E-0002 6.10251318300582E-0002 6.09643543976385E-0002 6.09036265126396E-0002 + 6.08429481429375E-0002 6.07823192564243E-0002 6.07217398210087E-0002 6.06612098046151E-0002 6.06007291751844E-0002 + 6.05402979006734E-0002 6.04799159490554E-0002 6.04195832883194E-0002 6.03592998864711E-0002 6.02990657115318E-0002 + 6.02388807315393E-0002 6.01787449145474E-0002 6.01186582286260E-0002 6.00586206418611E-0002 5.99986321223550E-0002 + 5.99386926382257E-0002 5.98788021576078E-0002 5.98189606486516E-0002 5.97591680795238E-0002 5.96994244184067E-0002 + 5.96397296334993E-0002 5.95800836930161E-0002 5.95204865651880E-0002 5.94609382182618E-0002 5.94014386205004E-0002 + 5.93419877401828E-0002 5.92825855456039E-0002 5.92232320050747E-0002 5.91639270869222E-0002 5.91046707594894E-0002 + 5.90454629911354E-0002 5.89863037502352E-0002 5.89271930051798E-0002 5.88681307243762E-0002 5.88091168762475E-0002 + 5.87501514292326E-0002 5.86912343517864E-0002 5.86323656123799E-0002 5.85735451794998E-0002 5.85147730216491E-0002 + 5.84560491073464E-0002 5.83973734051266E-0002 5.83387458835401E-0002 5.82801665111535E-0002 5.82216352565493E-0002 + 5.81631520883259E-0002 5.81047169750976E-0002 5.80463298854945E-0002 5.79879907881628E-0002 5.79296996517644E-0002 + 5.78714564449771E-0002 5.78132611364947E-0002 5.77551136950267E-0002 5.76970140892987E-0002 5.76389622880518E-0002 + 5.75809582600434E-0002 5.75230019740463E-0002 5.74650933988494E-0002 5.74072325032575E-0002 5.73494192560909E-0002 + 5.72916536261860E-0002 5.72339355823948E-0002 5.71762650935854E-0002 5.71186421286415E-0002 5.70610666564626E-0002 + 5.70035386459639E-0002 5.69460580660766E-0002 5.68886248857476E-0002 5.68312390739394E-0002 5.67739005996305E-0002 + 5.67166094318150E-0002 5.66593655395027E-0002 5.66021688917194E-0002 5.65450194575064E-0002 5.64879172059208E-0002 + 5.64308621060354E-0002 5.63738541269389E-0002 5.63168932377354E-0002 5.62599794075449E-0002 5.62031126055031E-0002 + 5.61462928007613E-0002 5.60895199624866E-0002 5.60327940598617E-0002 5.59761150620849E-0002 5.59194829383705E-0002 + 5.58628976579479E-0002 5.58063591900628E-0002 5.57498675039761E-0002 5.56934225689645E-0002 5.56370243543202E-0002 + 5.55806728293513E-0002 5.55243679633813E-0002 5.54681097257494E-0002 5.54118980858104E-0002 5.53557330129345E-0002 + 5.52996144765081E-0002 5.52435424459325E-0002 5.51875168906250E-0002 5.51315377800183E-0002 5.50756050835608E-0002 + 5.50197187707164E-0002 5.49638788109645E-0002 5.49080851738003E-0002 5.48523378287341E-0002 5.47966367452923E-0002 + 5.47409818930164E-0002 5.46853732414636E-0002 5.46298107602067E-0002 5.45742944188338E-0002 5.45188241869489E-0002 + 5.44634000341709E-0002 5.44080219301349E-0002 5.43526898444909E-0002 5.42974037469047E-0002 5.42421636070576E-0002 + 5.41869693946462E-0002 5.41318210793828E-0002 5.40767186309948E-0002 5.40216620192255E-0002 5.39666512138334E-0002 + 5.39116861845925E-0002 5.38567669012921E-0002 5.38018933337371E-0002 5.37470654517479E-0002 5.36922832251601E-0002 + 5.36375466238248E-0002 5.35828556176086E-0002 5.35282101763933E-0002 5.34736102700764E-0002 5.34190558685705E-0002 + 5.33645469418038E-0002 5.33100834597196E-0002 5.32556653922769E-0002 5.32012927094499E-0002 5.31469653812281E-0002 + 5.30926833776165E-0002 5.30384466686352E-0002 5.29842552243201E-0002 5.29301090147219E-0002 5.28760080099071E-0002 + 5.28219521799571E-0002 5.27679414949688E-0002 5.27139759250546E-0002 5.26600554403420E-0002 5.26061800109737E-0002 + 5.25523496071079E-0002 5.24985641989179E-0002 5.24448237565926E-0002 5.23911282503358E-0002 5.23374776503669E-0002 + 5.22838719269201E-0002 5.22303110502454E-0002 5.21767949906076E-0002 5.21233237182872E-0002 5.20698972035794E-0002 + 5.20165154167950E-0002 5.19631783282600E-0002 5.19098859083155E-0002 5.18566381273178E-0002 5.18034349556386E-0002 + 5.17502763636645E-0002 5.16971623217977E-0002 5.16440928004551E-0002 5.15910677700693E-0002 5.15380872010875E-0002 + 5.14851510639727E-0002 5.14322593292025E-0002 5.13794119672700E-0002 5.13266089486835E-0002 5.12738502439660E-0002 + 5.12211358236562E-0002 5.11684656583075E-0002 5.11158397184888E-0002 5.10632579747838E-0002 5.10107203977914E-0002 + 5.09582269581257E-0002 5.09057776264160E-0002 5.08533723733063E-0002 5.08010111694562E-0002 5.07486939855399E-0002 + 5.06964207922471E-0002 5.06441915602823E-0002 5.05920062603652E-0002 5.05398648632304E-0002 5.04877673396278E-0002 + 5.04357136603223E-0002 5.03837037960935E-0002 5.03317377177365E-0002 5.02798153960611E-0002 5.02279368018924E-0002 + 5.01761019060703E-0002 5.01243106794498E-0002 5.00725630929009E-0002 5.00208591173087E-0002 4.99691987235730E-0002 + 4.99175818826090E-0002 4.98660085653465E-0002 4.98144787427305E-0002 4.97629923857210E-0002 4.97115494652927E-0002 + 4.96601499524357E-0002 4.96087938181546E-0002 4.95574810334691E-0002 4.95062115694141E-0002 4.94549853970391E-0002 + 4.94038024874086E-0002 4.93526628116022E-0002 4.93015663407142E-0002 4.92505130458540E-0002 4.91995028981457E-0002 + 4.91485358687285E-0002 4.90976119287563E-0002 4.90467310493980E-0002 4.89958932018375E-0002 4.89450983572734E-0002 + 4.88943464869192E-0002 4.88436375620032E-0002 4.87929715537688E-0002 4.87423484334739E-0002 4.86917681723917E-0002 + 4.86412307418097E-0002 4.85907361130307E-0002 4.85402842573720E-0002 4.84898751461661E-0002 4.84395087507598E-0002 + 4.83891850425151E-0002 4.83389039928088E-0002 4.82886655730323E-0002 4.82384697545919E-0002 4.81883165089086E-0002 + 4.81382058074183E-0002 4.80881376215717E-0002 4.80381119228342E-0002 4.79881286826858E-0002 4.79381878726215E-0002 + 4.78882894641511E-0002 4.78384334287988E-0002 4.77886197381039E-0002 4.77388483636203E-0002 4.76891192769164E-0002 + 4.76394324495758E-0002 4.75897878531963E-0002 4.75401854593909E-0002 4.74906252397870E-0002 4.74411071660266E-0002 + 4.73916312097667E-0002 4.73421973426788E-0002 4.72928055364492E-0002 4.72434557627786E-0002 4.71941479933828E-0002 + 4.71448821999918E-0002 4.70956583543507E-0002 4.70464764282189E-0002 4.69973363933705E-0002 4.69482382215944E-0002 + 4.68991818846942E-0002 4.68501673544877E-0002 4.68011946028078E-0002 4.67522636015017E-0002 4.67033743224314E-0002 + 4.66545267374734E-0002 4.66057208185188E-0002 4.65569565374732E-0002 4.65082338662572E-0002 4.64595527768054E-0002 + 4.64109132410674E-0002 4.63623152310072E-0002 4.63137587186033E-0002 4.62652436758490E-0002 4.62167700747519E-0002 + 4.61683378873343E-0002 4.61199470856328E-0002 4.60715976416989E-0002 4.60232895275984E-0002 4.59750227154116E-0002 + 4.59267971772334E-0002 4.58786128851732E-0002 4.58304698113549E-0002 4.57823679279169E-0002 4.57343072070120E-0002 + 4.56862876208077E-0002 4.56383091414857E-0002 4.55903717412424E-0002 4.55424753922887E-0002 4.54946200668497E-0002 + 4.54468057371651E-0002 4.53990323754891E-0002 4.53512999540904E-0002 4.53036084452520E-0002 4.52559578212714E-0002 + 4.52083480544603E-0002 4.51607791171454E-0002 4.51132509816672E-0002 4.50657636203809E-0002 4.50183170056562E-0002 + 4.49709111098769E-0002 4.49235459054414E-0002 4.48762213647625E-0002 4.48289374602674E-0002 4.47816941643974E-0002 + 4.47344914496085E-0002 4.46873292883710E-0002 4.46402076531694E-0002 4.45931265165027E-0002 4.45460858508841E-0002 + 4.44990856288414E-0002 4.44521258229166E-0002 4.44052064056658E-0002 4.43583273496598E-0002 4.43114886274834E-0002 + 4.42646902117360E-0002 4.42179320750312E-0002 4.41712141899968E-0002 4.41245365292749E-0002 4.40778990655220E-0002 + 4.40313017714089E-0002 4.39847446196205E-0002 4.39382275828563E-0002 4.38917506338295E-0002 4.38453137452683E-0002 + 4.37989168899145E-0002 4.37525600405246E-0002 4.37062431698690E-0002 4.36599662507326E-0002 4.36137292559144E-0002 + 4.35675321582277E-0002 4.35213749304999E-0002 4.34752575455728E-0002 4.34291799763021E-0002 4.33831421955581E-0002 + 4.33371441762251E-0002 4.32911858912015E-0002 4.32452673133999E-0002 4.31993884157474E-0002 4.31535491711849E-0002 + 4.31077495526676E-0002 4.30619895331648E-0002 4.30162690856602E-0002 4.29705881831513E-0002 4.29249467986500E-0002 + 4.28793449051823E-0002 4.28337824757882E-0002 4.27882594835219E-0002 4.27427759014519E-0002 4.26973317026606E-0002 + 4.26519268602445E-0002 4.26065613473143E-0002 4.25612351369948E-0002 4.25159482024250E-0002 4.24707005167577E-0002 + 4.24254920531600E-0002 4.23803227848129E-0002 4.23351926849119E-0002 4.22901017266660E-0002 4.22450498832986E-0002 + 4.22000371280471E-0002 4.21550634341628E-0002 4.21101287749114E-0002 4.20652331235722E-0002 4.20203764534389E-0002 + 4.19755587378189E-0002 4.19307799500339E-0002 4.18860400634195E-0002 4.18413390513252E-0002 4.17966768871147E-0002 + 4.17520535441656E-0002 4.17074689958695E-0002 4.16629232156320E-0002 4.16184161768727E-0002 4.15739478530250E-0002 + 4.15295182175366E-0002 4.14851272438688E-0002 4.14407749054972E-0002 4.13964611759111E-0002 4.13521860286138E-0002 + 4.13079494371226E-0002 4.12637513749688E-0002 4.12195918156974E-0002 4.11754707328676E-0002 4.11313881000523E-0002 + 4.10873438908385E-0002 4.10433380788268E-0002 4.09993706376321E-0002 4.09554415408829E-0002 4.09115507622217E-0002 + 4.08676982753050E-0002 4.08238840538029E-0002 4.07801080713996E-0002 4.07363703017930E-0002 4.06926707186952E-0002 + 4.06490092958316E-0002 4.06053860069421E-0002 4.05618008257798E-0002 4.05182537261121E-0002 4.04747446817202E-0002 + 4.04312736663988E-0002 4.03878406539567E-0002 4.03444456182166E-0002 4.03010885330147E-0002 4.02577693722012E-0002 + 4.02144881096401E-0002 4.01712447192093E-0002 4.01280391748001E-0002 4.00848714503180E-0002 4.00417415196821E-0002 + 3.99986493568253E-0002 3.99555949356942E-0002 3.99125782302493E-0002 3.98695992144647E-0002 3.98266578623284E-0002 + 3.97837541478421E-0002 3.97408880450211E-0002 3.96980595278945E-0002 3.96552685705054E-0002 3.96125151469102E-0002 + 3.95697992311792E-0002 3.95271207973965E-0002 3.94844798196599E-0002 3.94418762720807E-0002 3.93993101287841E-0002 + 3.93567813639088E-0002 3.93142899516074E-0002 3.92718358660460E-0002 3.92294190814045E-0002 3.91870395718764E-0002 + 3.91446973116689E-0002 3.91023922750027E-0002 3.90601244361124E-0002 3.90178937692461E-0002 3.89757002486655E-0002 + 3.89335438486460E-0002 3.88914245434767E-0002 3.88493423074601E-0002 3.88072971149127E-0002 3.87652889401641E-0002 + 3.87233177575579E-0002 3.86813835414512E-0002 3.86394862662147E-0002 3.85976259062325E-0002 3.85558024359026E-0002 + 3.85140158296363E-0002 3.84722660618587E-0002 3.84305531070083E-0002 3.83888769395372E-0002 3.83472375339111E-0002 + 3.83056348646093E-0002 3.82640689061245E-0002 3.82225396329630E-0002 3.81810470196446E-0002 3.81395910407027E-0002 + 3.80981716706843E-0002 3.80567888841498E-0002 3.80154426556730E-0002 3.79741329598414E-0002 3.79328597712558E-0002 + 3.78916230645309E-0002 3.78504228142944E-0002 3.78092589951878E-0002 3.77681315818658E-0002 3.77270405489970E-0002 + 3.76859858712631E-0002 3.76449675233594E-0002 3.76039854799946E-0002 3.75630397158909E-0002 3.75221302057840E-0002 + 3.74812569244229E-0002 3.74404198465702E-0002 3.73996189470017E-0002 3.73588542005068E-0002 3.73181255818884E-0002 + 3.72774330659626E-0002 3.72367766275590E-0002 3.71961562415205E-0002 3.71555718827038E-0002 3.71150235259784E-0002 + 3.70745111462276E-0002 3.70340347183480E-0002 3.69935942172493E-0002 3.69531896178551E-0002 3.69128208951019E-0002 + 3.68724880239398E-0002 3.68321909793321E-0002 3.67919297362555E-0002 3.67517042697002E-0002 3.67115145546695E-0002 + 3.66713605661801E-0002 3.66312422792621E-0002 3.65911596689589E-0002 3.65511127103271E-0002 3.65111013784369E-0002 + 3.64711256483714E-0002 3.64311854952272E-0002 3.63912808941144E-0002 3.63514118201560E-0002 3.63115782484885E-0002 + 3.62717801542617E-0002 3.62320175126386E-0002 3.61922902987954E-0002 3.61525984879217E-0002 3.61129420552203E-0002 + 3.60733209759072E-0002 3.60337352252117E-0002 3.59941847783764E-0002 3.59546696106569E-0002 3.59151896973224E-0002 + 3.58757450136549E-0002 3.58363355349500E-0002 3.57969612365162E-0002 3.57576220936755E-0002 3.57183180817628E-0002 + 3.56790491761263E-0002 3.56398153521276E-0002 3.56006165851413E-0002 3.55614528505551E-0002 3.55223241237699E-0002 + 3.54832303802000E-0002 3.54441715952726E-0002 3.54051477444283E-0002 3.53661588031205E-0002 3.53272047468161E-0002 + 3.52882855509949E-0002 3.52494011911501E-0002 3.52105516427876E-0002 3.51717368814270E-0002 3.51329568826004E-0002 + 3.50942116218536E-0002 3.50555010747451E-0002 3.50168252168466E-0002 3.49781840237430E-0002 3.49395774710322E-0002 + 3.49010055343253E-0002 3.48624681892463E-0002 3.48239654114324E-0002 3.47854971765339E-0002 3.47470634602140E-0002 + 3.47086642381492E-0002 3.46702994860289E-0002 3.46319691795555E-0002 3.45936732944446E-0002 3.45554118064248E-0002 + 3.45171846912377E-0002 3.44789919246378E-0002 3.44408334823929E-0002 3.44027093402835E-0002 3.43646194741035E-0002 + 3.43265638596594E-0002 3.42885424727711E-0002 3.42505552892710E-0002 3.42126022850051E-0002 3.41746834358318E-0002 + 3.41367987176230E-0002 3.40989481062631E-0002 3.40611315776498E-0002 3.40233491076936E-0002 3.39856006723182E-0002 + 3.39478862474598E-0002 3.39102058090681E-0002 3.38725593331052E-0002 3.38349467955466E-0002 3.37973681723805E-0002 + 3.37598234396080E-0002 3.37223125732431E-0002 3.36848355493131E-0002 3.36473923438577E-0002 3.36099829329298E-0002 + 3.35726072925950E-0002 3.35352653989321E-0002 3.34979572280325E-0002 3.34606827560006E-0002 3.34234419589537E-0002 + 3.33862348130219E-0002 3.33490612943483E-0002 3.33119213790888E-0002 3.32748150434120E-0002 3.32377422634997E-0002 + 3.32007030155461E-0002 3.31636972757587E-0002 3.31267250203575E-0002 3.30897862255756E-0002 3.30528808676586E-0002 + 3.30160089228652E-0002 3.29791703674669E-0002 3.29423651777478E-0002 3.29055933300049E-0002 3.28688548005483E-0002 + 3.28321495657003E-0002 3.27954776017966E-0002 3.27588388851853E-0002 3.27222333922274E-0002 3.26856610992967E-0002 + 3.26491219827797E-0002 3.26126160190757E-0002 3.25761431845967E-0002 3.25397034557677E-0002 3.25032968090260E-0002 + 3.24669232208221E-0002 3.24305826676190E-0002 3.23942751258924E-0002 3.23580005721309E-0002 3.23217589828356E-0002 + 3.22855503345206E-0002 3.22493746037125E-0002 3.22132317669505E-0002 3.21771218007869E-0002 3.21410446817863E-0002 + 3.21050003865261E-0002 3.20689888915966E-0002 3.20330101736005E-0002 3.19970642091533E-0002 3.19611509748831E-0002 + 3.19252704474309E-0002 3.18894226034500E-0002 3.18536074196065E-0002 3.18178248725794E-0002 3.17820749390599E-0002 + 3.17463575957522E-0002 3.17106728193730E-0002 3.16750205866515E-0002 3.16394008743297E-0002 3.16038136591623E-0002 + 3.15682589179163E-0002 3.15327366273716E-0002 3.14972467643205E-0002 3.14617893055680E-0002 3.14263642279317E-0002 + 3.13909715082418E-0002 3.13556111233410E-0002 3.13202830500846E-0002 3.12849872653405E-0002 3.12497237459891E-0002 + 3.12144924689236E-0002 3.11792934110493E-0002 3.11441265492846E-0002 3.11089918605599E-0002 3.10738893218186E-0002 + 3.10388189100164E-0002 3.10037806021215E-0002 3.09687743751148E-0002 3.09338002059895E-0002 3.08988580717514E-0002 + 3.08639479494190E-0002 3.08290698160230E-0002 3.07942236486068E-0002 3.07594094242262E-0002 3.07246271199496E-0002 + 3.06898767128576E-0002 3.06551581800437E-0002 3.06204714986135E-0002 3.05858166456853E-0002 3.05511935983897E-0002 + 3.05166023338699E-0002 3.04820428292815E-0002 3.04475150617925E-0002 3.04130190085834E-0002 3.03785546468472E-0002 + 3.03441219537890E-0002 3.03097209066268E-0002 3.02753514825907E-0002 3.02410136589233E-0002 3.02067074128796E-0002 + 3.01724327217271E-0002 3.01381895627456E-0002 3.01039779132273E-0002 3.00697977504769E-0002 3.00356490518112E-0002 + 3.00015317945598E-0002 2.99674459560643E-0002 2.99333915136788E-0002 2.98993684447699E-0002 2.98653767267164E-0002 + 2.98314163369095E-0002 2.97974872527528E-0002 2.97635894516621E-0002 2.97297229110656E-0002 2.96958876084040E-0002 + 2.96620835211302E-0002 2.96283106267092E-0002 2.95945689026188E-0002 2.95608583263487E-0002 2.95271788754011E-0002 + 2.94935305272905E-0002 2.94599132595436E-0002 2.94263270496994E-0002 2.93927718753094E-0002 2.93592477139371E-0002 + 2.93257545431585E-0002 2.92922923405617E-0002 2.92588610837471E-0002 2.92254607503276E-0002 2.91920913179280E-0002 + 2.91587527641855E-0002 2.91254450667497E-0002 2.90921682032821E-0002 2.90589221514569E-0002 2.90257068889601E-0002 + 2.89925223934901E-0002 2.89593686427576E-0002 2.89262456144854E-0002 2.88931532864086E-0002 2.88600916362744E-0002 + 2.88270606418424E-0002 2.87940602808840E-0002 2.87610905311832E-0002 2.87281513705361E-0002 2.86952427767509E-0002 + 2.86623647276479E-0002 2.86295172010597E-0002 2.85967001748311E-0002 2.85639136268189E-0002 2.85311575348922E-0002 + 2.84984318769322E-0002 2.84657366308322E-0002 2.84330717744978E-0002 2.84004372858465E-0002 2.83678331428082E-0002 + 2.83352593233246E-0002 2.83027158053499E-0002 2.82702025668500E-0002 2.82377195858034E-0002 2.82052668402002E-0002 + 2.81728443080429E-0002 2.81404519673461E-0002 2.81080897961363E-0002 2.80757577724524E-0002 2.80434558743450E-0002 + 2.80111840798771E-0002 2.79789423671235E-0002 2.79467307141713E-0002 2.79145490991196E-0002 2.78823975000794E-0002 + 2.78502758951740E-0002 2.78181842625385E-0002 2.77861225803203E-0002 2.77540908266785E-0002 2.77220889797845E-0002 + 2.76901170178217E-0002 2.76581749189854E-0002 2.76262626614830E-0002 2.75943802235340E-0002 2.75625275833696E-0002 + 2.75307047192334E-0002 2.74989116093806E-0002 2.74671482320788E-0002 2.74354145656071E-0002 2.74037105882572E-0002 + 2.73720362783321E-0002 2.73403916141473E-0002 2.73087765740301E-0002 2.72771911363195E-0002 2.72456352793668E-0002 + 2.72141089815352E-0002 2.71826122211998E-0002 2.71511449767474E-0002 2.71197072265772E-0002 2.70882989490999E-0002 + 2.70569201227385E-0002 2.70255707259275E-0002 2.69942507371137E-0002 2.69629601347557E-0002 2.69316988973239E-0002 + 2.69004670033006E-0002 2.68692644311802E-0002 2.68380911594687E-0002 2.68069471666842E-0002 2.67758324313567E-0002 + 2.67447469320280E-0002 2.67136906472516E-0002 2.66826635555932E-0002 2.66516656356301E-0002 2.66206968659516E-0002 + 2.65897572251588E-0002 2.65588466918646E-0002 2.65279652446939E-0002 2.64971128622833E-0002 2.64662895232811E-0002 + 2.64354952063478E-0002 2.64047298901554E-0002 2.63739935533879E-0002 2.63432861747410E-0002 2.63126077329222E-0002 + 2.62819582066509E-0002 2.62513375746582E-0002 2.62207458156871E-0002 2.61901829084923E-0002 2.61596488318403E-0002 + 2.61291435645094E-0002 2.60986670852896E-0002 2.60682193729828E-0002 2.60378004064026E-0002 2.60074101643743E-0002 + 2.59770486257350E-0002 2.59467157693335E-0002 2.59164115740305E-0002 2.58861360186983E-0002 2.58558890822209E-0002 + 2.58256707434941E-0002 2.57954809814255E-0002 2.57653197749343E-0002 2.57351871029514E-0002 2.57050829444194E-0002 + 2.56750072782928E-0002 2.56449600835376E-0002 2.56149413391316E-0002 2.55849510240642E-0002 2.55549891173364E-0002 + 2.55250555979613E-0002 2.54951504449631E-0002 2.54652736373781E-0002 2.54354251542541E-0002 2.54056049746505E-0002 + 2.53758130776385E-0002 2.53460494423008E-0002 2.53163140477320E-0002 2.52866068730380E-0002 2.52569278973366E-0002 + 2.52272770997571E-0002 2.51976544594405E-0002 2.51680599555393E-0002 2.51384935672177E-0002 2.51089552736516E-0002 + 2.50794450540283E-0002 2.50499628875469E-0002 2.50205087534180E-0002 2.49910826308638E-0002 2.49616844991181E-0002 + 2.49323143374262E-0002 2.49029721250452E-0002 2.48736578412434E-0002 2.48443714653012E-0002 2.48151129765100E-0002 + 2.47858823541731E-0002 2.47566795776052E-0002 2.47275046261327E-0002 2.46983574790935E-0002 2.46692381158368E-0002 + 2.46401465157238E-0002 2.46110826581267E-0002 2.45820465224297E-0002 2.45530380880281E-0002 2.45240573343291E-0002 + 2.44951042407511E-0002 2.44661787867242E-0002 2.44372809516899E-0002 2.44084107151012E-0002 2.43795680564227E-0002 + 2.43507529551303E-0002 2.43219653907115E-0002 2.42932053426653E-0002 2.42644727905021E-0002 2.42357677137439E-0002 + 2.42070900919239E-0002 2.41784399045870E-0002 2.41498171312894E-0002 2.41212217515989E-0002 2.40926537450946E-0002 + 2.40641130913672E-0002 2.40355997700185E-0002 2.40071137606621E-0002 2.39786550429229E-0002 2.39502235964371E-0002 + 2.39218194008525E-0002 2.38934424358281E-0002 2.38650926810346E-0002 2.38367701161537E-0002 2.38084747208789E-0002 + 2.37802064749148E-0002 2.37519653579775E-0002 2.37237513497945E-0002 2.36955644301046E-0002 2.36674045786580E-0002 + 2.36392717752163E-0002 2.36111659995525E-0002 2.35830872314508E-0002 2.35550354507069E-0002 2.35270106371277E-0002 + 2.34990127705317E-0002 2.34710418307484E-0002 2.34430977976189E-0002 2.34151806509956E-0002 2.33872903707419E-0002 + 2.33594269367330E-0002 2.33315903288552E-0002 2.33037805270059E-0002 2.32759975110942E-0002 2.32482412610401E-0002 + 2.32205117567752E-0002 2.31928089782423E-0002 2.31651329053954E-0002 2.31374835181998E-0002 2.31098607966322E-0002 + 2.30822647206805E-0002 2.30546952703439E-0002 2.30271524256326E-0002 2.29996361665685E-0002 2.29721464731844E-0002 + 2.29446833255245E-0002 2.29172467036441E-0002 2.28898365876101E-0002 2.28624529575001E-0002 2.28350957934034E-0002 + 2.28077650754202E-0002 2.27804607836622E-0002 2.27531828982520E-0002 2.27259313993236E-0002 2.26987062670223E-0002 + 2.26715074815044E-0002 2.26443350229374E-0002 2.26171888715001E-0002 2.25900690073825E-0002 2.25629754107857E-0002 + 2.25359080619220E-0002 2.25088669410148E-0002 2.24818520282987E-0002 2.24548633040197E-0002 2.24279007484346E-0002 + 2.24009643418116E-0002 2.23740540644299E-0002 2.23471698965798E-0002 2.23203118185630E-0002 2.22934798106921E-0002 + 2.22666738532910E-0002 2.22398939266944E-0002 2.22131400112485E-0002 2.21864120873104E-0002 2.21597101352484E-0002 + 2.21330341354419E-0002 2.21063840682813E-0002 2.20797599141682E-0002 2.20531616535152E-0002 2.20265892667462E-0002 + 2.20000427342958E-0002 2.19735220366102E-0002 2.19470271541461E-0002 2.19205580673716E-0002 2.18941147567660E-0002 + 2.18676972028192E-0002 2.18413053860326E-0002 2.18149392869184E-0002 2.17885988860000E-0002 2.17622841638116E-0002 + 2.17359951008987E-0002 2.17097316778177E-0002 2.16834938751360E-0002 2.16572816734321E-0002 2.16310950532955E-0002 + 2.16049339953266E-0002 2.15787984801371E-0002 2.15526884883493E-0002 2.15266040005968E-0002 2.15005449975240E-0002 + 2.14745114597865E-0002 2.14485033680508E-0002 2.14225207029942E-0002 2.13965634453052E-0002 2.13706315756831E-0002 + 2.13447250748384E-0002 2.13188439234923E-0002 2.12929881023772E-0002 2.12671575922362E-0002 2.12413523738236E-0002 + 2.12155724279043E-0002 2.11898177352546E-0002 2.11640882766613E-0002 2.11383840329224E-0002 2.11127049848467E-0002 + 2.10870511132539E-0002 2.10614223989748E-0002 2.10358188228510E-0002 2.10102403657347E-0002 2.09846870084896E-0002 + 2.09591587319899E-0002 2.09336555171207E-0002 2.09081773447780E-0002 2.08827241958689E-0002 2.08572960513112E-0002 + 2.08318928920334E-0002 2.08065146989753E-0002 2.07811614530872E-0002 2.07558331353304E-0002 2.07305297266770E-0002 + 2.07052512081101E-0002 2.06799975606234E-0002 2.06547687652216E-0002 2.06295648029202E-0002 2.06043856547456E-0002 + 2.05792313017350E-0002 2.05541017249362E-0002 2.05289969054082E-0002 2.05039168242205E-0002 2.04788614624536E-0002 + 2.04538308011987E-0002 2.04288248215578E-0002 2.04038435046438E-0002 2.03788868315803E-0002 2.03539547835016E-0002 + 2.03290473415530E-0002 2.03041644868904E-0002 2.02793062006806E-0002 2.02544724641010E-0002 2.02296632583398E-0002 + 2.02048785645962E-0002 2.01801183640799E-0002 2.01553826380114E-0002 2.01306713676220E-0002 2.01059845341536E-0002 + 2.00813221188591E-0002 2.00566841030019E-0002 2.00320704678561E-0002 2.00074811947068E-0002 1.99829162648495E-0002 + 1.99583756595905E-0002 1.99338593602471E-0002 1.99093673481468E-0002 1.98848996046282E-0002 1.98604561110404E-0002 + 1.98360368487433E-0002 1.98116417991074E-0002 1.97872709435139E-0002 1.97629242633546E-0002 1.97386017400322E-0002 + 1.97143033549599E-0002 1.96900290895615E-0002 1.96657789252716E-0002 1.96415528435354E-0002 1.96173508258087E-0002 + 1.95931728535580E-0002 1.95690189082605E-0002 1.95448889714040E-0002 1.95207830244867E-0002 1.94967010490178E-0002 + 1.94726430265169E-0002 1.94486089385142E-0002 1.94245987665507E-0002 1.94006124921778E-0002 1.93766500969575E-0002 + 1.93527115624627E-0002 1.93287968702765E-0002 1.93049060019929E-0002 1.92810389392162E-0002 1.92571956635616E-0002 + 1.92333761566546E-0002 1.92095804001315E-0002 1.91858083756389E-0002 1.91620600648343E-0002 1.91383354493854E-0002 + 1.91146345109707E-0002 1.90909572312792E-0002 1.90673035920104E-0002 1.90436735748745E-0002 1.90200671615919E-0002 + 1.89964843338938E-0002 1.89729250735218E-0002 1.89493893622283E-0002 1.89258771817758E-0002 1.89023885139375E-0002 + 1.88789233404973E-0002 1.88554816432493E-0002 1.88320634039983E-0002 1.88086686045594E-0002 1.87852972267585E-0002 + 1.87619492524316E-0002 1.87386246634255E-0002 1.87153234415974E-0002 1.86920455688149E-0002 1.86687910269561E-0002 + 1.86455597979095E-0002 1.86223518635742E-0002 1.85991672058597E-0002 1.85760058066859E-0002 1.85528676479833E-0002 + 1.85297527116925E-0002 1.85066609797650E-0002 1.84835924341623E-0002 1.84605470568567E-0002 1.84375248298306E-0002 + 1.84145257350771E-0002 1.83915497545995E-0002 1.83685968704116E-0002 1.83456670645376E-0002 1.83227603190121E-0002 + 1.82998766158802E-0002 1.82770159371972E-0002 1.82541782650289E-0002 1.82313635814514E-0002 1.82085718685514E-0002 + 1.81858031084258E-0002 1.81630572831817E-0002 1.81403343749371E-0002 1.81176343658197E-0002 1.80949572379680E-0002 + 1.80723029735308E-0002 1.80496715546671E-0002 1.80270629635464E-0002 1.80044771823484E-0002 1.79819141932632E-0002 + 1.79593739784913E-0002 1.79368565202434E-0002 1.79143618007406E-0002 1.78918898022144E-0002 1.78694405069063E-0002 + 1.78470138970686E-0002 1.78246099549634E-0002 1.78022286628634E-0002 1.77798700030515E-0002 1.77575339578211E-0002 + 1.77352205094754E-0002 1.77129296403284E-0002 1.76906613327042E-0002 1.76684155689369E-0002 1.76461923313713E-0002 + 1.76239916023623E-0002 1.76018133642749E-0002 1.75796575994845E-0002 1.75575242903768E-0002 1.75354134193478E-0002 + 1.75133249688034E-0002 1.74912589211601E-0002 1.74692152588445E-0002 1.74471939642934E-0002 1.74251950199539E-0002 + 1.74032184082833E-0002 1.73812641117490E-0002 1.73593321128288E-0002 1.73374223940106E-0002 1.73155349377925E-0002 + 1.72936697266828E-0002 1.72718267432001E-0002 1.72500059698730E-0002 1.72282073892405E-0002 1.72064309838516E-0002 + 1.71846767362656E-0002 1.71629446290519E-0002 1.71412346447901E-0002 1.71195467660699E-0002 1.70978809754913E-0002 + 1.70762372556643E-0002 1.70546155892092E-0002 1.70330159587563E-0002 1.70114383469462E-0002 1.69898827364295E-0002 + 1.69683491098669E-0002 1.69468374499295E-0002 1.69253477392982E-0002 1.69038799606642E-0002 1.68824340967287E-0002 + 1.68610101302033E-0002 1.68396080438093E-0002 1.68182278202783E-0002 1.67968694423521E-0002 1.67755328927825E-0002 + 1.67542181543313E-0002 1.67329252097705E-0002 1.67116540418822E-0002 1.66904046334585E-0002 1.66691769673015E-0002 + 1.66479710262236E-0002 1.66267867930471E-0002 1.66056242506044E-0002 1.65844833817380E-0002 1.65633641693002E-0002 + 1.65422665961538E-0002 1.65211906451712E-0002 1.65001362992352E-0002 1.64791035412383E-0002 1.64580923540832E-0002 + 1.64371027206828E-0002 1.64161346239597E-0002 1.63951880468467E-0002 1.63742629722865E-0002 1.63533593832320E-0002 + 1.63324772626458E-0002 1.63116165935009E-0002 1.62907773587799E-0002 1.62699595414756E-0002 1.62491631245908E-0002 + 1.62283880911383E-0002 1.62076344241407E-0002 1.61869021066307E-0002 1.61661911216510E-0002 1.61455014522542E-0002 + 1.61248330815028E-0002 1.61041859924695E-0002 1.60835601682368E-0002 1.60629555918969E-0002 1.60423722465524E-0002 + 1.60218101153156E-0002 1.60012691813087E-0002 1.59807494276639E-0002 1.59602508375233E-0002 1.59397733940390E-0002 + 1.59193170803729E-0002 1.58988818796969E-0002 1.58784677751928E-0002 1.58580747500522E-0002 1.58377027874768E-0002 + 1.58173518706779E-0002 1.57970219828771E-0002 1.57767131073055E-0002 1.57564252272043E-0002 1.57361583258246E-0002 + 1.57159123864272E-0002 1.56956873922828E-0002 1.56754833266722E-0002 1.56553001728859E-0002 1.56351379142241E-0002 + 1.56149965339972E-0002 1.55948760155251E-0002 1.55747763421378E-0002 1.55546974971750E-0002 1.55346394639864E-0002 + 1.55146022259313E-0002 1.54945857663790E-0002 1.54745900687086E-0002 1.54546151163089E-0002 1.54346608925787E-0002 + 1.54147273809264E-0002 1.53948145647705E-0002 1.53749224275390E-0002 1.53550509526698E-0002 1.53352001236108E-0002 + 1.53153699238194E-0002 1.52955603367628E-0002 1.52757713459183E-0002 1.52560029347726E-0002 1.52362550868224E-0002 + 1.52165277855740E-0002 1.51968210145438E-0002 1.51771347572575E-0002 1.51574689972508E-0002 1.51378237180693E-0002 + 1.51181989032680E-0002 1.50985945364119E-0002 1.50790106010758E-0002 1.50594470808439E-0002 1.50399039593104E-0002 + 1.50203812200792E-0002 1.50008788467639E-0002 1.49813968229877E-0002 1.49619351323837E-0002 1.49424937585946E-0002 + 1.49230726852729E-0002 1.49036718960807E-0002 1.48842913746898E-0002 1.48649311047817E-0002 1.48455910700477E-0002 + 1.48262712541886E-0002 1.48069716409151E-0002 1.47876922139474E-0002 1.47684329570154E-0002 1.47491938538587E-0002 + 1.47299748882267E-0002 1.47107760438781E-0002 1.46915973045817E-0002 1.46724386541155E-0002 1.46533000762676E-0002 + 1.46341815548354E-0002 1.46150830736260E-0002 1.45960046164563E-0002 1.45769461671528E-0002 1.45579077095513E-0002 + 1.45388892274977E-0002 1.45198907048472E-0002 1.45009121254647E-0002 1.44819534732248E-0002 1.44630147320114E-0002 + 1.44440958857185E-0002 1.44251969182492E-0002 1.44063178135166E-0002 1.43874585554430E-0002 1.43686191279606E-0002 + 1.43497995150111E-0002 1.43309997005457E-0002 1.43122196685251E-0002 1.42934594029199E-0002 1.42747188877099E-0002 + 1.42559981068846E-0002 1.42372970444431E-0002 1.42186156843940E-0002 1.41999540107555E-0002 1.41813120075553E-0002 + 1.41626896588306E-0002 1.41440869486282E-0002 1.41255038610043E-0002 1.41069403800250E-0002 1.40883964897654E-0002 + 1.40698721743104E-0002 1.40513674177546E-0002 1.40328822042017E-0002 1.40144165177651E-0002 1.39959703425678E-0002 + 1.39775436627422E-0002 1.39591364624301E-0002 1.39407487257830E-0002 1.39223804369618E-0002 1.39040315801367E-0002 + 1.38857021394876E-0002 1.38673920992038E-0002 1.38491014434841E-0002 1.38308301565368E-0002 1.38125782225794E-0002 + 1.37943456258393E-0002 1.37761323505529E-0002 1.37579383809663E-0002 1.37397637013351E-0002 1.37216082959241E-0002 + 1.37034721490078E-0002 1.36853552448699E-0002 1.36672575678037E-0002 1.36491791021118E-0002 1.36311198321064E-0002 + 1.36130797421088E-0002 1.35950588164501E-0002 1.35770570394705E-0002 1.35590743955196E-0002 1.35411108689568E-0002 + 1.35231664441503E-0002 1.35052411054783E-0002 1.34873348373278E-0002 1.34694476240956E-0002 1.34515794501878E-0002 + 1.34337303000197E-0002 1.34159001580161E-0002 1.33980890086112E-0002 1.33802968362486E-0002 1.33625236253810E-0002 + 1.33447693604708E-0002 1.33270340259894E-0002 1.33093176064179E-0002 1.32916200862464E-0002 1.32739414499746E-0002 + 1.32562816821115E-0002 1.32386407671752E-0002 1.32210186896934E-0002 1.32034154342031E-0002 1.31858309852503E-0002 + 1.31682653273907E-0002 1.31507184451892E-0002 1.31331903232198E-0002 1.31156809460661E-0002 1.30981902983207E-0002 + 1.30807183645858E-0002 1.30632651294727E-0002 1.30458305776020E-0002 1.30284146936036E-0002 1.30110174621167E-0002 + 1.29936388677897E-0002 1.29762788952803E-0002 1.29589375292557E-0002 1.29416147543919E-0002 1.29243105553745E-0002 + 1.29070249168982E-0002 1.28897578236671E-0002 1.28725092603944E-0002 1.28552792118026E-0002 1.28380676626233E-0002 + 1.28208745975976E-0002 1.28037000014757E-0002 1.27865438590169E-0002 1.27694061549899E-0002 1.27522868741726E-0002 + 1.27351860013519E-0002 1.27181035213241E-0002 1.27010394188947E-0002 1.26839936788784E-0002 1.26669662860991E-0002 + 1.26499572253897E-0002 1.26329664815926E-0002 1.26159940395591E-0002 1.25990398841499E-0002 1.25821040002348E-0002 + 1.25651863726926E-0002 1.25482869864116E-0002 1.25314058262890E-0002 1.25145428772312E-0002 1.24976981241538E-0002 + 1.24808715519817E-0002 1.24640631456487E-0002 1.24472728900978E-0002 1.24305007702813E-0002 1.24137467711604E-0002 + 1.23970108777056E-0002 1.23802930748964E-0002 1.23635933477217E-0002 1.23469116811791E-0002 1.23302480602757E-0002 + 1.23136024700274E-0002 1.22969748954595E-0002 1.22803653216062E-0002 1.22637737335108E-0002 1.22472001162258E-0002 + 1.22306444548128E-0002 1.22141067343424E-0002 1.21975869398943E-0002 1.21810850565573E-0002 1.21646010694292E-0002 + 1.21481349636171E-0002 1.21316867242369E-0002 1.21152563364138E-0002 1.20988437852817E-0002 1.20824490559840E-0002 + 1.20660721336729E-0002 1.20497130035097E-0002 1.20333716506647E-0002 1.20170480603172E-0002 1.20007422176558E-0002 + 1.19844541078777E-0002 1.19681837161896E-0002 1.19519310278069E-0002 1.19356960279541E-0002 1.19194787018648E-0002 + 1.19032790347815E-0002 1.18870970119557E-0002 1.18709326186480E-0002 1.18547858401279E-0002 1.18386566616741E-0002 + 1.18225450685741E-0002 1.18064510461243E-0002 1.17903745796303E-0002 1.17743156544067E-0002 1.17582742557768E-0002 + 1.17422503690732E-0002 1.17262439796372E-0002 1.17102550728192E-0002 1.16942836339786E-0002 1.16783296484837E-0002 + 1.16623931017117E-0002 1.16464739790488E-0002 1.16305722658902E-0002 1.16146879476400E-0002 1.15988210097111E-0002 + 1.15829714375255E-0002 1.15671392165142E-0002 1.15513243321169E-0002 1.15355267697824E-0002 1.15197465149683E-0002 + 1.15039835531412E-0002 1.14882378697766E-0002 1.14725094503587E-0002 1.14567982803810E-0002 1.14411043453456E-0002 + 1.14254276307636E-0002 1.14097681221549E-0002 1.13941258050484E-0002 1.13785006649818E-0002 1.13628926875017E-0002 + 1.13473018581637E-0002 1.13317281625320E-0002 1.13161715861799E-0002 1.13006321146895E-0002 1.12851097336516E-0002 + 1.12696044286662E-0002 1.12541161853419E-0002 1.12386449892961E-0002 1.12231908261552E-0002 1.12077536815544E-0002 + 1.11923335411377E-0002 1.11769303905579E-0002 1.11615442154767E-0002 1.11461750015646E-0002 1.11308227345010E-0002 + 1.11154873999739E-0002 1.11001689836803E-0002 1.10848674713259E-0002 1.10695828486253E-0002 1.10543151013019E-0002 + 1.10390642150878E-0002 1.10238301757239E-0002 1.10086129689601E-0002 1.09934125805547E-0002 1.09782289962752E-0002 + 1.09630622018975E-0002 1.09479121832066E-0002 1.09327789259960E-0002 1.09176624160682E-0002 1.09025626392342E-0002 + 1.08874795813140E-0002 1.08724132281363E-0002 1.08573635655384E-0002 1.08423305793665E-0002 1.08273142554756E-0002 + 1.08123145797291E-0002 1.07973315379996E-0002 1.07823651161680E-0002 1.07674153001243E-0002 1.07524820757669E-0002 + 1.07375654290032E-0002 1.07226653457491E-0002 1.07077818119294E-0002 1.06929148134773E-0002 1.06780643363351E-0002 + 1.06632303664534E-0002 1.06484128897919E-0002 1.06336118923188E-0002 1.06188273600108E-0002 1.06040592788536E-0002 + 1.05893076348414E-0002 1.05745724139771E-0002 1.05598536022724E-0002 1.05451511857474E-0002 1.05304651504312E-0002 + 1.05157954823612E-0002 1.05011421675838E-0002 1.04865051921539E-0002 1.04718845421350E-0002 1.04572802035992E-0002 + 1.04426921626275E-0002 1.04281204053094E-0002 1.04135649177428E-0002 1.03990256860347E-0002 1.03845026963002E-0002 + 1.03699959346635E-0002 1.03555053872572E-0002 1.03410310402224E-0002 1.03265728797091E-0002 1.03121308918755E-0002 + 1.02977050628889E-0002 1.02832953789249E-0002 1.02689018261676E-0002 1.02545243908100E-0002 1.02401630590535E-0002 + 1.02258178171080E-0002 1.02114886511922E-0002 1.01971755475332E-0002 1.01828784923668E-0002 1.01685974719373E-0002 + 1.01543324724976E-0002 1.01400834803091E-0002 1.01258504816419E-0002 1.01116334627743E-0002 1.00974324099937E-0002 + 1.00832473095956E-0002 1.00690781478842E-0002 1.00549249111722E-0002 1.00407875857810E-0002 1.00266661580402E-0002 + 1.00125606142884E-0002 9.99847094087222E-0003 9.98439712414710E-0003 9.97033915047693E-0003 9.95629700623412E-0003 + 9.94227067779958E-0003 9.92826015156273E-0003 9.91426541392145E-0003 9.90028645128221E-0003 9.88632325005988E-0003 + 9.87237579667786E-0003 9.85844407756805E-0003 9.84452807917078E-0003 9.83062778793495E-0003 9.81674319031784E-0003 + 9.80287427278525E-0003 9.78902102181144E-0003 9.77518342387912E-0003 9.76136146547950E-0003 9.74755513311220E-0003 + 9.73376441328530E-0003 9.71998929251534E-0003 9.70622975732733E-0003 9.69248579425467E-0003 9.67875738983923E-0003 + 9.66504453063130E-0003 9.65134720318959E-0003 9.63766539408128E-0003 9.62399908988193E-0003 9.61034827717553E-0003 + 9.59671294255449E-0003 9.58309307261960E-0003 9.56948865398013E-0003 9.55589967325369E-0003 9.54232611706629E-0003 + 9.52876797205236E-0003 9.51522522485473E-0003 9.50169786212459E-0003 9.48818587052155E-0003 9.47468923671355E-0003 + 9.46120794737694E-0003 9.44774198919646E-0003 9.43429134886520E-0003 9.42085601308460E-0003 9.40743596856449E-0003 + 9.39403120202304E-0003 9.38064170018679E-0003 9.36726744979062E-0003 9.35390843757777E-0003 9.34056465029978E-0003 + 9.32723607471661E-0003 9.31392269759649E-0003 9.30062450571601E-0003 9.28734148586007E-0003 9.27407362482191E-0003 + 9.26082090940309E-0003 9.24758332641350E-0003 9.23436086267132E-0003 9.22115350500305E-0003 9.20796124024348E-0003 + 9.19478405523576E-0003 9.18162193683126E-0003 9.16847487188972E-0003 9.15534284727909E-0003 9.14222584987570E-0003 + 9.12912386656409E-0003 9.11603688423713E-0003 9.10296488979593E-0003 9.08990787014988E-0003 9.07686581221667E-0003 + 9.06383870292223E-0003 9.05082652920075E-0003 9.03782927799469E-0003 9.02484693625474E-0003 9.01187949093989E-0003 + 8.99892692901734E-0003 8.98598923746253E-0003 8.97306640325914E-0003 8.96015841339913E-0003 8.94726525488265E-0003 + 8.93438691471808E-0003 8.92152337992203E-0003 8.90867463751934E-0003 8.89584067454308E-0003 8.88302147803450E-0003 + 8.87021703504308E-0003 8.85742733262651E-0003 8.84465235785066E-0003 8.83189209778964E-0003 8.81914653952574E-0003 + 8.80641567014941E-0003 8.79369947675932E-0003 8.78099794646233E-0003 8.76831106637346E-0003 8.75563882361593E-0003 + 8.74298120532110E-0003 8.73033819862852E-0003 8.71770979068594E-0003 8.70509596864921E-0003 8.69249671968238E-0003 + 8.67991203095765E-0003 8.66734188965534E-0003 8.65478628296397E-0003 8.64224519808018E-0003 8.62971862220875E-0003 + 8.61720654256256E-0003 8.60470894636272E-0003 8.59222582083837E-0003 8.57975715322683E-0003 8.56730293077353E-0003 + 8.55486314073200E-0003 8.54243777036393E-0003 8.53002680693909E-0003 8.51763023773535E-0003 8.50524805003871E-0003 + 8.49288023114324E-0003 8.48052676835115E-0003 8.46818764897270E-0003 8.45586286032628E-0003 8.44355238973831E-0003 + 8.43125622454336E-0003 8.41897435208404E-0003 8.40670675971103E-0003 8.39445343478311E-0003 8.38221436466708E-0003 + 8.36998953673787E-0003 8.35777893837843E-0003 8.34558255697976E-0003 8.33340037994094E-0003 8.32123239466907E-0003 + 8.30907858857934E-0003 8.29693894909494E-0003 8.28481346364712E-0003 8.27270211967514E-0003 8.26060490462634E-0003 + 8.24852180595606E-0003 8.23645281112765E-0003 8.22439790761251E-0003 8.21235708289002E-0003 8.20033032444763E-0003 + 8.18831761978075E-0003 8.17631895639282E-0003 8.16433432179527E-0003 8.15236370350753E-0003 8.14040708905706E-0003 + 8.12846446597927E-0003 8.11653582181756E-0003 8.10462114412334E-0003 8.09272042045599E-0003 8.08083363838287E-0003 + 8.06896078547931E-0003 8.05710184932861E-0003 8.04525681752202E-0003 8.03342567765881E-0003 8.02160841734615E-0003 + 8.00980502419920E-0003 7.99801548584104E-0003 7.98623978990273E-0003 7.97447792402328E-0003 7.96272987584962E-0003 + 7.95099563303662E-0003 7.93927518324708E-0003 7.92756851415177E-0003 7.91587561342934E-0003 7.90419646876639E-0003 + 7.89253106785743E-0003 7.88087939840488E-0003 7.86924144811912E-0003 7.85761720471837E-0003 7.84600665592880E-0003 + 7.83440978948447E-0003 7.82282659312734E-0003 7.81125705460727E-0003 7.79970116168202E-0003 7.78815890211721E-0003 + 7.77663026368636E-0003 7.76511523417089E-0003 7.75361380136007E-0003 7.74212595305106E-0003 7.73065167704888E-0003 + 7.71919096116641E-0003 7.70774379322443E-0003 7.69631016105154E-0003 7.68489005248422E-0003 7.67348345536679E-0003 + 7.66209035755141E-0003 7.65071074689813E-0003 7.63934461127479E-0003 7.62799193855709E-0003 7.61665271662857E-0003 + 7.60532693338059E-0003 7.59401457671236E-0003 7.58271563453089E-0003 7.57143009475101E-0003 7.56015794529538E-0003 + 7.54889917409448E-0003 7.53765376908660E-0003 7.52642171821780E-0003 7.51520300944199E-0003 7.50399763072085E-0003 + 7.49280557002387E-0003 7.48162681532834E-0003 7.47046135461932E-0003 7.45930917588964E-0003 7.44817026713998E-0003 + 7.43704461637873E-0003 7.42593221162208E-0003 7.41483304089399E-0003 7.40374709222618E-0003 7.39267435365817E-0003 + 7.38161481323720E-0003 7.37056845901827E-0003 7.35953527906415E-0003 7.34851526144535E-0003 7.33750839424016E-0003 + 7.32651466553456E-0003 7.31553406342230E-0003 7.30456657600485E-0003 7.29361219139145E-0003 7.28267089769903E-0003 + 7.27174268305226E-0003 7.26082753558354E-0003 7.24992544343295E-0003 7.23903639474835E-0003 7.22816037768526E-0003 + 7.21729738040694E-0003 7.20644739108432E-0003 7.19561039789606E-0003 7.18478638902852E-0003 7.17397535267573E-0003 + 7.16317727703944E-0003 7.15239215032905E-0003 7.14161996076168E-0003 7.13086069656211E-0003 7.12011434596281E-0003 + 7.10938089720392E-0003 7.09866033853322E-0003 7.08795265820621E-0003 7.07725784448602E-0003 7.06657588564343E-0003 + 7.05590676995691E-0003 7.04525048571254E-0003 7.03460702120409E-0003 7.02397636473296E-0003 7.01335850460818E-0003 + 7.00275342914642E-0003 6.99216112667201E-0003 6.98158158551689E-0003 6.97101479402063E-0003 6.96046074053043E-0003 + 6.94991941340110E-0003 6.93939080099509E-0003 6.92887489168244E-0003 6.91837167384082E-0003 6.90788113585549E-0003 + 6.89740326611932E-0003 6.88693805303280E-0003 6.87648548500399E-0003 6.86604555044855E-0003 6.85561823778973E-0003 + 6.84520353545838E-0003 6.83480143189293E-0003 6.82441191553937E-0003 6.81403497485128E-0003 6.80367059828981E-0003 + 6.79331877432369E-0003 6.78297949142921E-0003 6.77265273809021E-0003 6.76233850279810E-0003 6.75203677405184E-0003 + 6.74174754035795E-0003 6.73147079023051E-0003 6.72120651219111E-0003 6.71095469476890E-0003 6.70071532650059E-0003 + 6.69048839593040E-0003 6.68027389161007E-0003 6.67007180209890E-0003 6.65988211596369E-0003 6.64970482177878E-0003 + 6.63953990812601E-0003 6.62938736359475E-0003 6.61924717678187E-0003 6.60911933629174E-0003 6.59900383073626E-0003 + 6.58890064873481E-0003 6.57880977891428E-0003 6.56873120990903E-0003 6.55866493036094E-0003 6.54861092891937E-0003 + 6.53856919424114E-0003 6.52853971499057E-0003 6.51852247983946E-0003 6.50851747746708E-0003 6.49852469656016E-0003 + 6.48854412581290E-0003 6.47857575392698E-0003 6.46861956961151E-0003 6.45867556158309E-0003 6.44874371856575E-0003 + 6.43882402929096E-0003 6.42891648249766E-0003 6.41902106693223E-0003 6.40913777134848E-0003 6.39926658450765E-0003 + 6.38940749517842E-0003 6.37956049213690E-0003 6.36972556416664E-0003 6.35990270005858E-0003 6.35009188861110E-0003 + 6.34029311863000E-0003 6.33050637892846E-0003 6.32073165832712E-0003 6.31096894565399E-0003 6.30121822974448E-0003 + 6.29147949944140E-0003 6.28175274359498E-0003 6.27203795106283E-0003 6.26233511070992E-0003 6.25264421140864E-0003 + 6.24296524203873E-0003 6.23329819148736E-0003 6.22364304864903E-0003 6.21399980242561E-0003 6.20436844172636E-0003 + 6.19474895546789E-0003 6.18514133257419E-0003 6.17554556197658E-0003 6.16596163261376E-0003 6.15638953343176E-0003 + 6.14682925338398E-0003 6.13728078143115E-0003 6.12774410654134E-0003 6.11821921768996E-0003 6.10870610385975E-0003 + 6.09920475404081E-0003 6.08971515723053E-0003 6.08023730243363E-0003 6.07077117866217E-0003 6.06131677493551E-0003 + 6.05187408028034E-0003 6.04244308373065E-0003 6.03302377432773E-0003 6.02361614112019E-0003 6.01422017316393E-0003 + 6.00483585952216E-0003 5.99546318926537E-0003 5.98610215147135E-0003 5.97675273522516E-0003 5.96741492961917E-0003 + 5.95808872375302E-0003 5.94877410673362E-0003 5.93947106767516E-0003 5.93017959569909E-0003 5.92089967993415E-0003 + 5.91163130951634E-0003 5.90237447358889E-0003 5.89312916130232E-0003 5.88389536181438E-0003 5.87467306429011E-0003 + 5.86546225790175E-0003 5.85626293182881E-0003 5.84707507525803E-0003 5.83789867738340E-0003 5.82873372740614E-0003 + 5.81958021453469E-0003 5.81043812798473E-0003 5.80130745697914E-0003 5.79218819074806E-0003 5.78308031852882E-0003 + 5.77398382956597E-0003 5.76489871311126E-0003 5.75582495842367E-0003 5.74676255476938E-0003 5.73771149142174E-0003 + 5.72867175766134E-0003 5.71964334277593E-0003 5.71062623606048E-0003 5.70162042681713E-0003 5.69262590435519E-0003 + 5.68364265799119E-0003 5.67467067704879E-0003 5.66570995085887E-0003 5.65676046875946E-0003 5.64782222009575E-0003 + 5.63889519422010E-0003 5.62997938049204E-0003 5.62107476827825E-0003 5.61218134695256E-0003 5.60329910589596E-0003 + 5.59442803449658E-0003 5.58556812214970E-0003 5.57671935825775E-0003 5.56788173223028E-0003 5.55905523348399E-0003 + 5.55023985144268E-0003 5.54143557553733E-0003 5.53264239520600E-0003 5.52386029989390E-0003 5.51508927905334E-0003 + 5.50632932214374E-0003 5.49758041863166E-0003 5.48884255799075E-0003 5.48011572970176E-0003 5.47139992325253E-0003 + 5.46269512813806E-0003 5.45400133386037E-0003 5.44531852992861E-0003 5.43664670585901E-0003 5.42798585117489E-0003 + 5.41933595540665E-0003 5.41069700809178E-0003 5.40206899877481E-0003 5.39345191700739E-0003 5.38484575234820E-0003 + 5.37625049436301E-0003 5.36766613262464E-0003 5.35909265671297E-0003 5.35053005621494E-0003 5.34197832072455E-0003 + 5.33343743984284E-0003 5.32490740317789E-0003 5.31638820034483E-0003 5.30787982096583E-0003 5.29938225467010E-0003 + 5.29089549109389E-0003 5.28241951988045E-0003 5.27395433068008E-0003 5.26549991315010E-0003 5.25705625695486E-0003 + 5.24862335176571E-0003 5.24020118726102E-0003 5.23178975312616E-0003 5.22338903905354E-0003 5.21499903474253E-0003 + 5.20661972989954E-0003 5.19825111423794E-0003 5.18989317747813E-0003 5.18154590934748E-0003 5.17320929958035E-0003 + 5.16488333791809E-0003 5.15656801410902E-0003 5.14826331790845E-0003 5.13996923907867E-0003 5.13168576738892E-0003 + 5.12341289261543E-0003 5.11515060454137E-0003 5.10689889295691E-0003 5.09865774765914E-0003 5.09042715845213E-0003 + 5.08220711514688E-0003 5.07399760756136E-0003 5.06579862552049E-0003 5.05761015885611E-0003 5.04943219740701E-0003 + 5.04126473101891E-0003 5.03310774954447E-0003 5.02496124284329E-0003 5.01682520078188E-0003 5.00869961323367E-0003 + 5.00058447007902E-0003 4.99247976120521E-0003 4.98438547650642E-0003 4.97630160588376E-0003 4.96822813924522E-0003 + 4.96016506650571E-0003 4.95211237758706E-0003 4.94407006241796E-0003 4.93603811093402E-0003 4.92801651307772E-0003 + 4.92000525879845E-0003 4.91200433805248E-0003 4.90401374080294E-0003 4.89603345701987E-0003 4.88806347668015E-0003 + 4.88010378976758E-0003 4.87215438627278E-0003 4.86421525619327E-0003 4.85628638953341E-0003 4.84836777630441E-0003 + 4.84045940652438E-0003 4.83256127021824E-0003 4.82467335741779E-0003 4.81679565816165E-0003 4.80892816249528E-0003 + 4.80107086047103E-0003 4.79322374214802E-0003 4.78538679759226E-0003 4.77756001687653E-0003 4.76974339008051E-0003 + 4.76193690729065E-0003 4.75414055860024E-0003 4.74635433410938E-0003 4.73857822392498E-0003 4.73081221816079E-0003 + 4.72305630693735E-0003 4.71531048038199E-0003 4.70757472862886E-0003 4.69984904181890E-0003 4.69213341009987E-0003 + 4.68442782362628E-0003 4.67673227255946E-0003 4.66904674706751E-0003 4.66137123732533E-0003 4.65370573351458E-0003 + 4.64605022582372E-0003 4.63840470444796E-0003 4.63076915958928E-0003 4.62314358145645E-0003 4.61552796026499E-0003 + 4.60792228623717E-0003 4.60032654960205E-0003 4.59274074059539E-0003 4.58516484945976E-0003 4.57759886644445E-0003 + 4.57004278180548E-0003 4.56249658580564E-0003 4.55496026871446E-0003 4.54743382080817E-0003 4.53991723236977E-0003 + 4.53241049368897E-0003 4.52491359506220E-0003 4.51742652679263E-0003 4.50994927919016E-0003 4.50248184257136E-0003 + 4.49502420725957E-0003 4.48757636358479E-0003 4.48013830188376E-0003 4.47271001249992E-0003 4.46529148578340E-0003 + 4.45788271209102E-0003 4.45048368178634E-0003 4.44309438523955E-0003 4.43571481282757E-0003 4.42834495493399E-0003 + 4.42098480194907E-0003 4.41363434426980E-0003 4.40629357229977E-0003 4.39896247644932E-0003 4.39164104713539E-0003 + 4.38432927478163E-0003 4.37702714981834E-0003 4.36973466268249E-0003 4.36245180381770E-0003 4.35517856367423E-0003 + 4.34791493270901E-0003 4.34066090138562E-0003 4.33341646017427E-0003 4.32618159955181E-0003 4.31895631000175E-0003 + 4.31174058201421E-0003 4.30453440608597E-0003 4.29733777272041E-0003 4.29015067242755E-0003 4.28297309572403E-0003 + 4.27580503313313E-0003 4.26864647518471E-0003 4.26149741241527E-0003 4.25435783536789E-0003 4.24722773459232E-0003 + 4.24010710064485E-0003 4.23299592408840E-0003 4.22589419549248E-0003 4.21880190543319E-0003 4.21171904449325E-0003 + 4.20464560326195E-0003 4.19758157233514E-0003 4.19052694231530E-0003 4.18348170381145E-0003 4.17644584743922E-0003 + 4.16941936382079E-0003 4.16240224358491E-0003 4.15539447736691E-0003 4.14839605580868E-0003 4.14140696955867E-0003 + 4.13442720927188E-0003 4.12745676560987E-0003 4.12049562924076E-0003 4.11354379083921E-0003 4.10660124108644E-0003 + 4.09966797067018E-0003 4.09274397028473E-0003 4.08582923063091E-0003 4.07892374241608E-0003 4.07202749635414E-0003 + 4.06514048316550E-0003 4.05826269357710E-0003 4.05139411832240E-0003 4.04453474814138E-0003 4.03768457378054E-0003 + 4.03084358599288E-0003 4.02401177553792E-0003 4.01718913318167E-0003 4.01037564969667E-0003 4.00357131586193E-0003 + 3.99677612246297E-0003 3.98999006029180E-0003 3.98321312014694E-0003 3.97644529283336E-0003 3.96968656916255E-0003 + 3.96293693995245E-0003 3.95619639602750E-0003 3.94946492821862E-0003 3.94274252736318E-0003 3.93602918430504E-0003 + 3.92932488989449E-0003 3.92262963498834E-0003 3.91594341044981E-0003 3.90926620714860E-0003 3.90259801596086E-0003 + 3.89593882776919E-0003 3.88928863346263E-0003 3.88264742393669E-0003 3.87601519009328E-0003 3.86939192284079E-0003 + 3.86277761309402E-0003 3.85617225177421E-0003 3.84957582980904E-0003 3.84298833813259E-0003 3.83640976768538E-0003 + 3.82984010941436E-0003 3.82327935427289E-0003 3.81672749322073E-0003 3.81018451722406E-0003 3.80365041725547E-0003 + 3.79712518429398E-0003 3.79060880932496E-0003 3.78410128334021E-0003 3.77760259733793E-0003 3.77111274232271E-0003 + 3.76463170930552E-0003 3.75815948930373E-0003 3.75169607334107E-0003 3.74524145244768E-0003 3.73879561766007E-0003 + 3.73235856002112E-0003 3.72593027058007E-0003 3.71951074039256E-0003 3.71309996052056E-0003 3.70669792203243E-0003 + 3.70030461600289E-0003 3.69392003351299E-0003 3.68754416565016E-0003 3.68117700350817E-0003 3.67481853818714E-0003 + 3.66846876079354E-0003 3.66212766244017E-0003 3.65579523424617E-0003 3.64947146733704E-0003 3.64315635284458E-0003 + 3.63684988190694E-0003 3.63055204566859E-0003 3.62426283528031E-0003 3.61798224189924E-0003 3.61171025668881E-0003 + 3.60544687081875E-0003 3.59919207546513E-0003 3.59294586181032E-0003 3.58670822104300E-0003 3.58047914435814E-0003 + 3.57425862295702E-0003 3.56804664804721E-0003 3.56184321084258E-0003 3.55564830256330E-0003 3.54946191443582E-0003 + 3.54328403769285E-0003 3.53711466357342E-0003 3.53095378332282E-0003 3.52480138819262E-0003 3.51865746944066E-0003 + 3.51252201833106E-0003 3.50639502613419E-0003 3.50027648412670E-0003 3.49416638359150E-0003 3.48806471581774E-0003 + 3.48197147210084E-0003 3.47588664374249E-0003 3.46981022205058E-0003 3.46374219833930E-0003 3.45768256392905E-0003 + 3.45163131014648E-0003 3.44558842832448E-0003 3.43955390980216E-0003 3.43352774592489E-0003 3.42750992804425E-0003 + 3.42150044751802E-0003 3.41549929571027E-0003 3.40950646399122E-0003 3.40352194373735E-0003 3.39754572633133E-0003 + 3.39157780316206E-0003 3.38561816562463E-0003 3.37966680512035E-0003 3.37372371305672E-0003 3.36778888084744E-0003 + 3.36186229991242E-0003 3.35594396167775E-0003 3.35003385757571E-0003 3.34413197904477E-0003 3.33823831752958E-0003 + 3.33235286448099E-0003 3.32647561135600E-0003 3.32060654961780E-0003 3.31474567073575E-0003 3.30889296618539E-0003 + 3.30304842744842E-0003 3.29721204601268E-0003 3.29138381337222E-0003 3.28556372102719E-0003 3.27975176048395E-0003 + 3.27394792325498E-0003 3.26815220085890E-0003 3.26236458482051E-0003 3.25658506667072E-0003 3.25081363794660E-0003 + 3.24505029019136E-0003 3.23929501495432E-0003 3.23354780379094E-0003 3.22780864826285E-0003 3.22207753993774E-0003 + 3.21635447038947E-0003 3.21063943119799E-0003 3.20493241394938E-0003 3.19923341023585E-0003 3.19354241165569E-0003 + 3.18785940981332E-0003 3.18218439631925E-0003 3.17651736279010E-0003 3.17085830084860E-0003 3.16520720212355E-0003 + 3.15956405824987E-0003 3.15392886086856E-0003 3.14830160162669E-0003 3.14268227217745E-0003 3.13707086418008E-0003 + 3.13146736929992E-0003 3.12587177920837E-0003 3.12028408558292E-0003 3.11470428010712E-0003 3.10913235447058E-0003 + 3.10356830036899E-0003 3.09801210950408E-0003 3.09246377358366E-0003 3.08692328432160E-0003 3.08139063343780E-0003 + 3.07586581265822E-0003 3.07034881371486E-0003 3.06483962834579E-0003 3.05933824829509E-0003 3.05384466531289E-0003 + 3.04835887115536E-0003 3.04288085758469E-0003 3.03741061636913E-0003 3.03194813928291E-0003 3.02649341810632E-0003 + 3.02104644462566E-0003 3.01560721063324E-0003 3.01017570792740E-0003 3.00475192831249E-0003 2.99933586359885E-0003 + 2.99392750560285E-0003 2.98852684614685E-0003 2.98313387705922E-0003 2.97774859017432E-0003 2.97237097733251E-0003 + 2.96700103038013E-0003 2.96163874116954E-0003 2.95628410155904E-0003 2.95093710341296E-0003 2.94559773860157E-0003 + 2.94026599900116E-0003 2.93494187649396E-0003 2.92962536296819E-0003 2.92431645031802E-0003 2.91901513044361E-0003 + 2.91372139525107E-0003 2.90843523665248E-0003 2.90315664656587E-0003 2.89788561691521E-0003 2.89262213963046E-0003 + 2.88736620664750E-0003 2.88211780990815E-0003 2.87687694136021E-0003 2.87164359295737E-0003 2.86641775665931E-0003 + 2.86119942443161E-0003 2.85598858824580E-0003 2.85078524007931E-0003 2.84558937191553E-0003 2.84040097574376E-0003 + 2.83522004355923E-0003 2.83004656736306E-0003 2.82488053916231E-0003 2.81972195096996E-0003 2.81457079480487E-0003 + 2.80942706269182E-0003 2.80429074666151E-0003 2.79916183875050E-0003 2.79404033100130E-0003 2.78892621546227E-0003 + 2.78381948418768E-0003 2.77872012923770E-0003 2.77362814267837E-0003 2.76854351658162E-0003 2.76346624302526E-0003 + 2.75839631409298E-0003 2.75333372187434E-0003 2.74827845846478E-0003 2.74323051596560E-0003 2.73818988648397E-0003 + 2.73315656213294E-0003 2.72813053503138E-0003 2.72311179730407E-0003 2.71810034108160E-0003 2.71309615850045E-0003 + 2.70809924170292E-0003 2.70310958283717E-0003 2.69812717405721E-0003 2.69315200752288E-0003 2.68818407539985E-0003 + 2.68322336985966E-0003 2.67826988307964E-0003 2.67332360724299E-0003 2.66838453453871E-0003 2.66345265716162E-0003 + 2.65852796731239E-0003 2.65361045719748E-0003 2.64870011902919E-0003 2.64379694502561E-0003 2.63890092741066E-0003 + 2.63401205841405E-0003 2.62913033027132E-0003 2.62425573522377E-0003 2.61938826551855E-0003 2.61452791340855E-0003 + 2.60967467115252E-0003 2.60482853101494E-0003 2.59998948526611E-0003 2.59515752618210E-0003 2.59033264604478E-0003 + 2.58551483714179E-0003 2.58070409176653E-0003 2.57590040221821E-0003 2.57110376080178E-0003 2.56631415982796E-0003 + 2.56153159161326E-0003 2.55675604847993E-0003 2.55198752275599E-0003 2.54722600677521E-0003 2.54247149287711E-0003 + 2.53772397340699E-0003 2.53298344071586E-0003 2.52824988716051E-0003 2.52352330510343E-0003 2.51880368691291E-0003 + 2.51409102496293E-0003 2.50938531163323E-0003 2.50468653930925E-0003 2.49999470038220E-0003 2.49530978724900E-0003 + 2.49063179231228E-0003 2.48596070798041E-0003 2.48129652666747E-0003 2.47663924079325E-0003 2.47198884278327E-0003 + 2.46734532506874E-0003 2.46270868008659E-0003 2.45807890027944E-0003 2.45345597809564E-0003 2.44883990598920E-0003 + 2.44423067641986E-0003 2.43962828185303E-0003 2.43503271475983E-0003 2.43044396761706E-0003 2.42586203290719E-0003 + 2.42128690311838E-0003 2.41671857074449E-0003 2.41215702828504E-0003 2.40760226824521E-0003 2.40305428313588E-0003 + 2.39851306547358E-0003 2.39397860778051E-0003 2.38945090258453E-0003 2.38492994241916E-0003 2.38041571982359E-0003 + 2.37590822734265E-0003 2.37140745752683E-0003 2.36691340293225E-0003 2.36242605612072E-0003 2.35794540965964E-0003 + 2.35347145612209E-0003 2.34900418808677E-0003 2.34454359813802E-0003 2.34008967886582E-0003 2.33564242286577E-0003 + 2.33120182273909E-0003 2.32676787109265E-0003 2.32234056053891E-0003 2.31791988369598E-0003 2.31350583318756E-0003 + 2.30909840164298E-0003 2.30469758169718E-0003 2.30030336599070E-0003 2.29591574716968E-0003 2.29153471788588E-0003 + 2.28716027079665E-0003 2.28279239856494E-0003 2.27843109385929E-0003 2.27407634935384E-0003 2.26972815772830E-0003 + 2.26538651166799E-0003 2.26105140386380E-0003 2.25672282701220E-0003 2.25240077381525E-0003 2.24808523698058E-0003 + 2.24377620922137E-0003 2.23947368325641E-0003 2.23517765181002E-0003 2.23088810761211E-0003 2.22660504339814E-0003 + 2.22232845190914E-0003 2.21805832589167E-0003 2.21379465809788E-0003 2.20953744128544E-0003 2.20528666821758E-0003 + 2.20104233166309E-0003 2.19680442439627E-0003 2.19257293919699E-0003 2.18834786885064E-0003 2.18412920614816E-0003 + 2.17991694388600E-0003 2.17571107486616E-0003 2.17151159189615E-0003 2.16731848778902E-0003 2.16313175536333E-0003 + 2.15895138744317E-0003 2.15477737685811E-0003 2.15060971644329E-0003 2.14644839903931E-0003 2.14229341749231E-0003 + 2.13814476465391E-0003 2.13400243338126E-0003 2.12986641653698E-0003 2.12573670698922E-0003 2.12161329761159E-0003 + 2.11749618128320E-0003 2.11338535088867E-0003 2.10928079931809E-0003 2.10518251946703E-0003 2.10109050423655E-0003 + 2.09700474653318E-0003 2.09292523926892E-0003 2.08885197536128E-0003 2.08478494773318E-0003 2.08072414931305E-0003 + 2.07666957303478E-0003 2.07262121183771E-0003 2.06857905866664E-0003 2.06454310647184E-0003 2.06051334820902E-0003 + 2.05648977683934E-0003 2.05247238532943E-0003 2.04846116665133E-0003 2.04445611378257E-0003 2.04045721970607E-0003 + 2.03646447741022E-0003 2.03247787988884E-0003 2.02849742014118E-0003 2.02452309117191E-0003 2.02055488599115E-0003 + 2.01659279761442E-0003 2.01263681906269E-0003 2.00868694336231E-0003 2.00474316354508E-0003 2.00080547264820E-0003 + 1.99687386371429E-0003 1.99294832979137E-0003 1.98902886393286E-0003 1.98511545919761E-0003 1.98120810864982E-0003 + 1.97730680535915E-0003 1.97341154240062E-0003 1.96952231285463E-0003 1.96563910980700E-0003 1.96176192634893E-0003 + 1.95789075557700E-0003 1.95402559059316E-0003 1.95016642450476E-0003 1.94631325042451E-0003 1.94246606147051E-0003 + 1.93862485076622E-0003 1.93478961144047E-0003 1.93096033662746E-0003 1.92713701946674E-0003 1.92331965310326E-0003 + 1.91950823068728E-0003 1.91570274537444E-0003 1.91190319032572E-0003 1.90810955870748E-0003 1.90432184369139E-0003 + 1.90054003845449E-0003 1.89676413617916E-0003 1.89299413005309E-0003 1.88923001326936E-0003 1.88547177902634E-0003 + 1.88171942052775E-0003 1.87797293098264E-0003 1.87423230360538E-0003 1.87049753161567E-0003 1.86676860823852E-0003 + 1.86304552670428E-0003 1.85932828024860E-0003 1.85561686211244E-0003 1.85191126554209E-0003 1.84821148378913E-0003 + 1.84451751011045E-0003 1.84082933776824E-0003 1.83714696003000E-0003 1.83347037016853E-0003 1.82979956146190E-0003 + 1.82613452719351E-0003 1.82247526065202E-0003 1.81882175513139E-0003 1.81517400393086E-0003 1.81153200035496E-0003 + 1.80789573771349E-0003 1.80426520932152E-0003 1.80064040849943E-0003 1.79702132857282E-0003 1.79340796287260E-0003 + 1.78980030473493E-0003 1.78619834750124E-0003 1.78260208451820E-0003 1.77901150913778E-0003 1.77542661471716E-0003 + 1.77184739461880E-0003 1.76827384221041E-0003 1.76470595086495E-0003 1.76114371396061E-0003 1.75758712488084E-0003 + 1.75403617701430E-0003 1.75049086375494E-0003 1.74695117850191E-0003 1.74341711465959E-0003 1.73988866563759E-0003 + 1.73636582485078E-0003 1.73284858571921E-0003 1.72933694166818E-0003 1.72583088612821E-0003 1.72233041253502E-0003 + 1.71883551432956E-0003 1.71534618495798E-0003 1.71186241787165E-0003 1.70838420652715E-0003 1.70491154438624E-0003 + 1.70144442491590E-0003 1.69798284158833E-0003 1.69452678788088E-0003 1.69107625727612E-0003 1.68763124326181E-0003 + 1.68419173933091E-0003 1.68075773898154E-0003 1.67732923571702E-0003 1.67390622304584E-0003 1.67048869448169E-0003 + 1.66707664354342E-0003 1.66367006375504E-0003 1.66026894864577E-0003 1.65687329174995E-0003 1.65348308660713E-0003 + 1.65009832676199E-0003 1.64671900576438E-0003 1.64334511716932E-0003 1.63997665453698E-0003 1.63661361143266E-0003 + 1.63325598142685E-0003 1.62990375809516E-0003 1.62655693501834E-0003 1.62321550578230E-0003 1.61987946397809E-0003 + 1.61654880320189E-0003 1.61322351705502E-0003 1.60990359914391E-0003 1.60658904308015E-0003 1.60327984248045E-0003 + 1.59997599096663E-0003 1.59667748216565E-0003 1.59338430970957E-0003 1.59009646723559E-0003 1.58681394838601E-0003 + 1.58353674680825E-0003 1.58026485615481E-0003 1.57699827008334E-0003 1.57373698225657E-0003 1.57048098634234E-0003 + 1.56723027601358E-0003 1.56398484494832E-0003 1.56074468682969E-0003 1.55750979534591E-0003 1.55428016419028E-0003 + 1.55105578706119E-0003 1.54783665766213E-0003 1.54462276970164E-0003 1.54141411689337E-0003 1.53821069295603E-0003 + 1.53501249161340E-0003 1.53181950659435E-0003 1.52863173163280E-0003 1.52544916046773E-0003 1.52227178684322E-0003 + 1.51909960450836E-0003 1.51593260721735E-0003 1.51277078872942E-0003 1.50961414280884E-0003 1.50646266322495E-0003 + 1.50331634375214E-0003 1.50017517816984E-0003 1.49703916026252E-0003 1.49390828381970E-0003 1.49078254263593E-0003 + 1.48766193051080E-0003 1.48454644124893E-0003 1.48143606865997E-0003 1.47833080655862E-0003 1.47523064876456E-0003 + 1.47213558910254E-0003 1.46904562140230E-0003 1.46596073949862E-0003 1.46288093723127E-0003 1.45980620844507E-0003 + 1.45673654698981E-0003 1.45367194672031E-0003 1.45061240149640E-0003 1.44755790518290E-0003 1.44450845164964E-0003 + 1.44146403477144E-0003 1.43842464842813E-0003 1.43539028650452E-0003 1.43236094289040E-0003 1.42933661148058E-0003 + 1.42631728617483E-0003 1.42330296087792E-0003 1.42029362949957E-0003 1.41728928595453E-0003 1.41428992416247E-0003 + 1.41129553804807E-0003 1.40830612154098E-0003 1.40532166857578E-0003 1.40234217309207E-0003 1.39936762903437E-0003 + 1.39639803035218E-0003 1.39343337099996E-0003 1.39047364493712E-0003 1.38751884612803E-0003 1.38456896854199E-0003 + 1.38162400615327E-0003 1.37868395294108E-0003 1.37574880288958E-0003 1.37281854998785E-0003 1.36989318822993E-0003 + 1.36697271161478E-0003 1.36405711414630E-0003 1.36114638983333E-0003 1.35824053268963E-0003 1.35533953673388E-0003 + 1.35244339598969E-0003 1.34955210448559E-0003 1.34666565625503E-0003 1.34378404533638E-0003 1.34090726577291E-0003 + 1.33803531161280E-0003 1.33516817690917E-0003 1.33230585572001E-0003 1.32944834210823E-0003 1.32659563014165E-0003 + 1.32374771389295E-0003 1.32090458743976E-0003 1.31806624486457E-0003 1.31523268025477E-0003 1.31240388770263E-0003 + 1.30957986130532E-0003 1.30676059516488E-0003 1.30394608338826E-0003 1.30113632008725E-0003 1.29833129937854E-0003 + 1.29553101538369E-0003 1.29273546222913E-0003 1.28994463404616E-0003 1.28715852497095E-0003 1.28437712914452E-0003 + 1.28160044071278E-0003 1.27882845382647E-0003 1.27606116264120E-0003 1.27329856131744E-0003 1.27054064402050E-0003 + 1.26778740492054E-0003 1.26503883819259E-0003 1.26229493801649E-0003 1.25955569857695E-0003 1.25682111406350E-0003 + 1.25409117867052E-0003 1.25136588659722E-0003 1.24864523204765E-0003 1.24592920923067E-0003 1.24321781236000E-0003 + 1.24051103565415E-0003 1.23780887333647E-0003 1.23511131963514E-0003 1.23241836878314E-0003 1.22973001501828E-0003 + 1.22704625258316E-0003 1.22436707572522E-0003 1.22169247869668E-0003 1.21902245575459E-0003 1.21635700116080E-0003 + 1.21369610918194E-0003 1.21103977408945E-0003 1.20838799015958E-0003 1.20574075167335E-0003 1.20309805291660E-0003 + 1.20045988817992E-0003 1.19782625175871E-0003 1.19519713795316E-0003 1.19257254106823E-0003 1.18995245541366E-0003 + 1.18733687530398E-0003 1.18472579505845E-0003 1.18211920900117E-0003 1.17951711146095E-0003 1.17691949677139E-0003 + 1.17432635927087E-0003 1.17173769330250E-0003 1.16915349321418E-0003 1.16657375335854E-0003 1.16399846809298E-0003 + 1.16142763177965E-0003 1.15886123878546E-0003 1.15629928348205E-0003 1.15374176024581E-0003 1.15118866345788E-0003 + 1.14863998750414E-0003 1.14609572677519E-0003 1.14355587566639E-0003 1.14102042857781E-0003 1.13848937991428E-0003 + 1.13596272408533E-0003 1.13344045550524E-0003 1.13092256859298E-0003 1.12840905777228E-0003 1.12589991747155E-0003 + 1.12339514212396E-0003 1.12089472616736E-0003 1.11839866404431E-0003 1.11590695020211E-0003 1.11341957909274E-0003 + 1.11093654517290E-0003 1.10845784290397E-0003 1.10598346675205E-0003 1.10351341118793E-0003 1.10104767068709E-0003 + 1.09858623972972E-0003 1.09612911280068E-0003 1.09367628438953E-0003 1.09122774899050E-0003 1.08878350110253E-0003 + 1.08634353522920E-0003 1.08390784587882E-0003 1.08147642756432E-0003 1.07904927480335E-0003 1.07662638211821E-0003 + 1.07420774403586E-0003 1.07179335508794E-0003 1.06938320981075E-0003 1.06697730274526E-0003 1.06457562843707E-0003 + 1.06217818143648E-0003 1.05978495629841E-0003 1.05739594758244E-0003 1.05501114985280E-0003 1.05263055767839E-0003 + 1.05025416563271E-0003 1.04788196829394E-0003 1.04551396024488E-0003 1.04315013607298E-0003 1.04079049037032E-0003 + 1.03843501773360E-0003 1.03608371276418E-0003 1.03373657006803E-0003 1.03139358425573E-0003 1.02905474994252E-0003 + 1.02672006174823E-0003 1.02438951429733E-0003 1.02206310221888E-0003 1.01974082014659E-0003 1.01742266271875E-0003 + 1.01510862457828E-0003 1.01279870037269E-0003 1.01049288475411E-0003 1.00819117237927E-0003 1.00589355790948E-0003 + 1.00360003601067E-0003 1.00131060135336E-0003 9.99025248612663E-0004 9.96743972468274E-0004 9.94466767604487E-0004 + 9.92193628710175E-0004 9.89924550478794E-0004 9.87659527608389E-0004 9.85398554801577E-0004 9.83141626765551E-0004 + 9.80888738212078E-0004 9.78639883857504E-0004 9.76395058422735E-0004 9.74154256633248E-0004 9.71917473219085E-0004 + 9.69684702914847E-0004 9.67455940459703E-0004 9.65231180597371E-0004 9.63010418076129E-0004 9.60793647648806E-0004 + 9.58580864072780E-0004 9.56372062109984E-0004 9.54167236526890E-0004 9.51966382094517E-0004 9.49769493588423E-0004 + 9.47576565788709E-0004 9.45387593480009E-0004 9.43202571451492E-0004 9.41021494496860E-0004 9.38844357414341E-0004 + 9.36671155006700E-0004 9.34501882081215E-0004 9.32336533449694E-0004 9.30175103928464E-0004 9.28017588338366E-0004 + 9.25863981504765E-0004 9.23714278257533E-0004 9.21568473431054E-0004 9.19426561864219E-0004 9.17288538400433E-0004 + 9.15154397887598E-0004 9.13024135178118E-0004 9.10897745128901E-0004 9.08775222601344E-0004 9.06656562461351E-0004 + 9.04541759579309E-0004 9.02430808830098E-0004 9.00323705093086E-0004 8.98220443252125E-0004 8.96121018195555E-0004 + 8.94025424816191E-0004 8.91933658011332E-0004 8.89845712682747E-0004 8.87761583736688E-0004 8.85681266083871E-0004 + 8.83604754639485E-0004 8.81532044323184E-0004 8.79463130059087E-0004 8.77398006775781E-0004 8.75336669406307E-0004 + 8.73279112888165E-0004 8.71225332163312E-0004 8.69175322178156E-0004 8.67129077883562E-0004 8.65086594234837E-0004 + 8.63047866191739E-0004 8.61012888718464E-0004 8.58981656783661E-0004 8.56954165360407E-0004 8.54930409426222E-0004 + 8.52910383963061E-0004 8.50894083957308E-0004 8.48881504399784E-0004 8.46872640285733E-0004 8.44867486614825E-0004 + 8.42866038391156E-0004 8.40868290623239E-0004 8.38874238324014E-0004 8.36883876510829E-0004 8.34897200205452E-0004 + 8.32914204434060E-0004 8.30934884227239E-0004 8.28959234619989E-0004 8.26987250651709E-0004 8.25018927366203E-0004 + 8.23054259811672E-0004 8.21093243040726E-0004 8.19135872110360E-0004 8.17182142081967E-0004 8.15232048021333E-0004 + 8.13285584998630E-0004 8.11342748088423E-0004 8.09403532369656E-0004 8.07467932925657E-0004 8.05535944844135E-0004 + 8.03607563217176E-0004 8.01682783141246E-0004 7.99761599717178E-0004 7.97844008050181E-0004 7.95930003249827E-0004 + 7.94019580430065E-0004 7.92112734709198E-0004 7.90209461209897E-0004 7.88309755059191E-0004 7.86413611388464E-0004 + 7.84521025333463E-0004 7.82631992034280E-0004 7.80746506635363E-0004 7.78864564285505E-0004 7.76986160137847E-0004 + 7.75111289349876E-0004 7.73239947083417E-0004 7.71372128504637E-0004 7.69507828784038E-0004 7.67647043096463E-0004 + 7.65789766621080E-0004 7.63935994541393E-0004 7.62085722045230E-0004 7.60238944324748E-0004 7.58395656576429E-0004 + 7.56555854001074E-0004 7.54719531803804E-0004 7.52886685194056E-0004 7.51057309385583E-0004 7.49231399596452E-0004 + 7.47408951049038E-0004 7.45589958970025E-0004 7.43774418590400E-0004 7.41962325145461E-0004 7.40153673874800E-0004 + 7.38348460022311E-0004 7.36546678836185E-0004 7.34748325568904E-0004 7.32953395477251E-0004 7.31161883822291E-0004 + 7.29373785869380E-0004 7.27589096888160E-0004 7.25807812152553E-0004 7.24029926940769E-0004 7.22255436535291E-0004 + 7.20484336222883E-0004 7.18716621294577E-0004 7.16952287045687E-0004 7.15191328775789E-0004 7.13433741788730E-0004 + 7.11679521392623E-0004 7.09928662899841E-0004 7.08181161627024E-0004 7.06437012895068E-0004 7.04696212029124E-0004 + 7.02958754358600E-0004 7.01224635217152E-0004 6.99493849942695E-0004 6.97766393877384E-0004 6.96042262367621E-0004 + 6.94321450764051E-0004 6.92603954421566E-0004 6.90889768699289E-0004 6.89178888960584E-0004 6.87471310573050E-0004 + 6.85767028908514E-0004 6.84066039343040E-0004 6.82368337256915E-0004 6.80673918034653E-0004 6.78982777064990E-0004 + 6.77294909740885E-0004 6.75610311459518E-0004 6.73928977622282E-0004 6.72250903634785E-0004 6.70576084906850E-0004 + 6.68904516852510E-0004 6.67236194890005E-0004 6.65571114441779E-0004 6.63909270934482E-0004 6.62250659798964E-0004 + 6.60595276470279E-0004 6.58943116387671E-0004 6.57294174994583E-0004 6.55648447738650E-0004 6.54005930071695E-0004 + 6.52366617449734E-0004 6.50730505332966E-0004 6.49097589185774E-0004 6.47467864476721E-0004 6.45841326678554E-0004 + 6.44217971268194E-0004 6.42597793726738E-0004 6.40980789539456E-0004 6.39366954195785E-0004 6.37756283189339E-0004 + 6.36148772017890E-0004 6.34544416183379E-0004 6.32943211191906E-0004 6.31345152553731E-0004 6.29750235783276E-0004 + 6.28158456399113E-0004 6.26569809923970E-0004 6.24984291884723E-0004 6.23401897812403E-0004 6.21822623242181E-0004 + 6.20246463713378E-0004 6.18673414769452E-0004 6.17103471958003E-0004 6.15536630830773E-0004 6.13972886943635E-0004 + 6.12412235856598E-0004 6.10854673133800E-0004 6.09300194343509E-0004 6.07748795058125E-0004 6.06200470854166E-0004 + 6.04655217312275E-0004 6.03113030017217E-0004 6.01573904557875E-0004 6.00037836527248E-0004 5.98504821522449E-0004 + 5.96974855144701E-0004 5.95447932999338E-0004 5.93924050695806E-0004 5.92403203847650E-0004 5.90885388072521E-0004 + 5.89370598992170E-0004 5.87858832232447E-0004 5.86350083423303E-0004 5.84844348198777E-0004 5.83341622197005E-0004 + 5.81841901060209E-0004 5.80345180434706E-0004 5.78851455970892E-0004 5.77360723323251E-0004 5.75872978150347E-0004 + 5.74388216114822E-0004 5.72906432883400E-0004 5.71427624126876E-0004 5.69951785520120E-0004 5.68478912742071E-0004 + 5.67009001475737E-0004 5.65542047408197E-0004 5.64078046230589E-0004 5.62616993638115E-0004 5.61158885330037E-0004 + 5.59703717009678E-0004 5.58251484384412E-0004 5.56802183165670E-0004 5.55355809068933E-0004 5.53912357813730E-0004 + 5.52471825123644E-0004 5.51034206726295E-0004 5.49599498353350E-0004 5.48167695740516E-0004 5.46738794627538E-0004 + 5.45312790758202E-0004 5.43889679880322E-0004 5.42469457745748E-0004 5.41052120110358E-0004 5.39637662734063E-0004 + 5.38226081380793E-0004 5.36817371818508E-0004 5.35411529819185E-0004 5.34008551158820E-0004 5.32608431617434E-0004 + 5.31211166979055E-0004 5.29816753031726E-0004 5.28425185567505E-0004 5.27036460382451E-0004 5.25650573276640E-0004 + 5.24267520054145E-0004 5.22887296523044E-0004 5.21509898495413E-0004 5.20135321787332E-0004 5.18763562218871E-0004 + 5.17394615614097E-0004 5.16028477801068E-0004 5.14665144611832E-0004 5.13304611882426E-0004 5.11946875452870E-0004 + 5.10591931167169E-0004 5.09239774873309E-0004 5.07890402423253E-0004 5.06543809672947E-0004 5.05199992482305E-0004 + 5.03858946715219E-0004 5.02520668239547E-0004 5.01185152927120E-0004 4.99852396653735E-0004 4.98522395299149E-0004 + 4.97195144747087E-0004 4.95870640885229E-0004 4.94548879605218E-0004 4.93229856802650E-0004 4.91913568377074E-0004 + 4.90600010231993E-0004 4.89289178274858E-0004 4.87981068417070E-0004 4.86675676573973E-0004 4.85372998664854E-0004 + 4.84073030612942E-0004 4.82775768345408E-0004 4.81481207793356E-0004 4.80189344891825E-0004 4.78900175579790E-0004 + 4.77613695800153E-0004 4.76329901499749E-0004 4.75048788629336E-0004 4.73770353143597E-0004 4.72494591001139E-0004 + 4.71221498164486E-0004 4.69951070600085E-0004 4.68683304278295E-0004 4.67418195173391E-0004 4.66155739263557E-0004 + 4.64895932530892E-0004 4.63638770961400E-0004 4.62384250544988E-0004 4.61132367275472E-0004 4.59883117150562E-0004 + 4.58636496171877E-0004 4.57392500344925E-0004 4.56151125679114E-0004 4.54912368187742E-0004 4.53676223888000E-0004 + 4.52442688800968E-0004 4.51211758951613E-0004 4.49983430368785E-0004 4.48757699085218E-0004 4.47534561137527E-0004 + 4.46314012566206E-0004 4.45096049415623E-0004 4.43880667734024E-0004 4.42667863573523E-0004 4.41457632990109E-0004 + 4.40249972043636E-0004 4.39044876797826E-0004 4.37842343320263E-0004 4.36642367682393E-0004 4.35444945959526E-0004 + 4.34250074230826E-0004 4.33057748579313E-0004 4.31867965091861E-0004 4.30680719859197E-0004 4.29496008975897E-0004 + 4.28313828540384E-0004 4.27134174654926E-0004 4.25957043425635E-0004 4.24782430962465E-0004 4.23610333379209E-0004 + 4.22440746793497E-0004 4.21273667326793E-0004 4.20109091104395E-0004 4.18947014255434E-0004 4.17787432912866E-0004 + 4.16630343213478E-0004 4.15475741297879E-0004 4.14323623310502E-0004 4.13173985399601E-0004 4.12026823717248E-0004 + 4.10882134419332E-0004 4.09739913665554E-0004 4.08600157619435E-0004 4.07462862448298E-0004 4.06328024323279E-0004 + 4.05195639419320E-0004 4.04065703915165E-0004 4.02938213993364E-0004 4.01813165840265E-0004 4.00690555646015E-0004 + 3.99570379604554E-0004 3.98452633913623E-0004 3.97337314774749E-0004 3.96224418393250E-0004 3.95113940978235E-0004 + 3.94005878742595E-0004 3.92900227903009E-0004 3.91796984679935E-0004 3.90696145297612E-0004 3.89597705984056E-0004 + 3.88501662971058E-0004 3.87408012494186E-0004 3.86316750792778E-0004 3.85227874109940E-0004 3.84141378692546E-0004 + 3.83057260791240E-0004 3.81975516660424E-0004 3.80896142558264E-0004 3.79819134746685E-0004 3.78744489491369E-0004 + 3.77672203061757E-0004 3.76602271731038E-0004 3.75534691776156E-0004 3.74469459477804E-0004 3.73406571120419E-0004 + 3.72346022992189E-0004 3.71287811385042E-0004 3.70231932594647E-0004 3.69178382920411E-0004 3.68127158665484E-0004 + 3.67078256136745E-0004 3.66031671644809E-0004 3.64987401504021E-0004 3.63945442032456E-0004 3.62905789551918E-0004 + 3.61868440387932E-0004 3.60833390869748E-0004 3.59800637330339E-0004 3.58770176106393E-0004 3.57742003538321E-0004 + 3.56716115970242E-0004 3.55692509749994E-0004 3.54671181229121E-0004 3.53652126762881E-0004 3.52635342710236E-0004 + 3.51620825433854E-0004 3.50608571300104E-0004 3.49598576679057E-0004 3.48590837944487E-0004 3.47585351473859E-0004 + 3.46582113648336E-0004 3.45581120852774E-0004 3.44582369475717E-0004 3.43585855909403E-0004 3.42591576549754E-0004 + 3.41599527796376E-0004 3.40609706052560E-0004 3.39622107725277E-0004 3.38636729225178E-0004 3.37653566966588E-0004 + 3.36672617367511E-0004 3.35693876849621E-0004 3.34717341838265E-0004 3.33743008762456E-0004 3.32770874054878E-0004 + 3.31800934151878E-0004 3.30833185493463E-0004 3.29867624523306E-0004 3.28904247688738E-0004 3.27943051440744E-0004 + 3.26984032233968E-0004 3.26027186526701E-0004 3.25072510780894E-0004 3.24120001462140E-0004 3.23169655039680E-0004 + 3.22221467986402E-0004 3.21275436778839E-0004 3.20331557897159E-0004 3.19389827825175E-0004 3.18450243050334E-0004 + 3.17512800063719E-0004 3.16577495360047E-0004 3.15644325437664E-0004 3.14713286798549E-0004 3.13784375948304E-0004 + 3.12857589396159E-0004 3.11932923654967E-0004 3.11010375241201E-0004 3.10089940674956E-0004 3.09171616479940E-0004 + 3.08255399183482E-0004 3.07341285316520E-0004 3.06429271413606E-0004 3.05519354012899E-0004 3.04611529656167E-0004 + 3.03705794888785E-0004 3.02802146259730E-0004 3.01900580321580E-0004 3.01001093630514E-0004 3.00103682746307E-0004 + 2.99208344232333E-0004 2.98315074655556E-0004 2.97423870586534E-0004 2.96534728599414E-0004 2.95647645271931E-0004 + 2.94762617185406E-0004 2.93879640924744E-0004 2.92998713078432E-0004 2.92119830238536E-0004 2.91242989000702E-0004 + 2.90368185964152E-0004 2.89495417731679E-0004 2.88624680909652E-0004 2.87755972108007E-0004 2.86889287940252E-0004 + 2.86024625023458E-0004 2.85161979978262E-0004 2.84301349428862E-0004 2.83442730003020E-0004 2.82586118332052E-0004 + 2.81731511050832E-0004 2.80878904797791E-0004 2.80028296214909E-0004 2.79179681947720E-0004 2.78333058645305E-0004 + 2.77488422960292E-0004 2.76645771548854E-0004 2.75805101070706E-0004 2.74966408189106E-0004 2.74129689570851E-0004 + 2.73294941886272E-0004 2.72462161809238E-0004 2.71631346017151E-0004 2.70802491190943E-0004 2.69975594015076E-0004 + 2.69150651177540E-0004 2.68327659369849E-0004 2.67506615287043E-0004 2.66687515627681E-0004 2.65870357093843E-0004 + 2.65055136391126E-0004 2.64241850228642E-0004 2.63430495319020E-0004 2.62621068378399E-0004 2.61813566126426E-0004 + 2.61007985286259E-0004 2.60204322584561E-0004 2.59402574751500E-0004 2.58602738520744E-0004 2.57804810629464E-0004 + 2.57008787818327E-0004 2.56214666831499E-0004 2.55422444416638E-0004 2.54632117324898E-0004 2.53843682310919E-0004 + 2.53057136132833E-0004 2.52272475552259E-0004 2.51489697334300E-0004 2.50708798247542E-0004 2.49929775064052E-0004 + 2.49152624559377E-0004 2.48377343512539E-0004 2.47603928706039E-0004 2.46832376925849E-0004 2.46062684961411E-0004 + 2.45294849605641E-0004 2.44528867654918E-0004 2.43764735909091E-0004 2.43002451171468E-0004 2.42242010248824E-0004 + 2.41483409951390E-0004 2.40726647092858E-0004 2.39971718490375E-0004 2.39218620964540E-0004 2.38467351339410E-0004 + 2.37717906442486E-0004 2.36970283104722E-0004 2.36224478160517E-0004 2.35480488447714E-0004 2.34738310807601E-0004 + 2.33997942084906E-0004 2.33259379127795E-0004 2.32522618787871E-0004 2.31787657920174E-0004 2.31054493383177E-0004 + 2.30323122038783E-0004 2.29593540752326E-0004 2.28865746392565E-0004 2.28139735831688E-0004 2.27415505945306E-0004 + 2.26693053612451E-0004 2.25972375715575E-0004 2.25253469140547E-0004 2.24536330776657E-0004 2.23820957516604E-0004 + 2.23107346256502E-0004 2.22395493895875E-0004 2.21685397337655E-0004 2.20977053488183E-0004 2.20270459257202E-0004 + 2.19565611557860E-0004 2.18862507306705E-0004 2.18161143423685E-0004 2.17461516832145E-0004 2.16763624458826E-0004 + 2.16067463233861E-0004 2.15373030090775E-0004 2.14680321966485E-0004 2.13989335801294E-0004 2.13300068538891E-0004 + 2.12612517126348E-0004 2.11926678514123E-0004 2.11242549656050E-0004 2.10560127509345E-0004 2.09879409034599E-0004 + 2.09200391195777E-0004 2.08523070960218E-0004 2.07847445298633E-0004 2.07173511185098E-0004 2.06501265597062E-0004 + 2.05830705515333E-0004 2.05161827924089E-0004 2.04494629810865E-0004 2.03829108166557E-0004 2.03165259985419E-0004 + 2.02503082265061E-0004 2.01842572006447E-0004 2.01183726213894E-0004 2.00526541895068E-0004 1.99871016060984E-0004 + 1.99217145726004E-0004 1.98564927907835E-0004 1.97914359627526E-0004 1.97265437909467E-0004 1.96618159781388E-0004 + 1.95972522274358E-0004 1.95328522422776E-0004 1.94686157264381E-0004 1.94045423840239E-0004 1.93406319194747E-0004 + 1.92768840375633E-0004 1.92132984433947E-0004 1.91498748424066E-0004 1.90866129403686E-0004 1.90235124433830E-0004 + 1.89605730578833E-0004 1.88977944906349E-0004 1.88351764487350E-0004 1.87727186396117E-0004 1.87104207710244E-0004 + 1.86482825510636E-0004 1.85863036881502E-0004 1.85244838910360E-0004 1.84628228688030E-0004 1.84013203308635E-0004 + 1.83399759869599E-0004 1.82787895471641E-0004 1.82177607218780E-0004 1.81568892218328E-0004 1.80961747580891E-0004 + 1.80356170420364E-0004 1.79752157853933E-0004 1.79149707002069E-0004 1.78548814988532E-0004 1.77949478940362E-0004 + 1.77351695987882E-0004 1.76755463264696E-0004 1.76160777907685E-0004 1.75567637057006E-0004 1.74976037856091E-0004 + 1.74385977451644E-0004 1.73797452993639E-0004 1.73210461635322E-0004 1.72625000533202E-0004 1.72041066847057E-0004 + 1.71458657739924E-0004 1.70877770378105E-0004 1.70298401931161E-0004 1.69720549571910E-0004 1.69144210476427E-0004 + 1.68569381824040E-0004 1.67996060797330E-0004 1.67424244582129E-0004 1.66853930367518E-0004 1.66285115345823E-0004 + 1.65717796712616E-0004 1.65151971666713E-0004 1.64587637410172E-0004 1.64024791148288E-0004 1.63463430089595E-0004 + 1.62903551445864E-0004 1.62345152432098E-0004 1.61788230266535E-0004 1.61232782170642E-0004 1.60678805369113E-0004 + 1.60126297089870E-0004 1.59575254564063E-0004 1.59025675026062E-0004 1.58477555713457E-0004 1.57930893867060E-0004 + 1.57385686730902E-0004 1.56841931552227E-0004 1.56299625581494E-0004 1.55758766072376E-0004 1.55219350281752E-0004 + 1.54681375469715E-0004 1.54144838899563E-0004 1.53609737837797E-0004 1.53076069554123E-0004 1.52543831321448E-0004 + 1.52013020415881E-0004 1.51483634116724E-0004 1.50955669706478E-0004 1.50429124470839E-0004 1.49903995698693E-0004 + 1.49380280682119E-0004 1.48857976716382E-0004 1.48337081099937E-0004 1.47817591134421E-0004 1.47299504124657E-0004 + 1.46782817378648E-0004 1.46267528207578E-0004 1.45753633925808E-0004 1.45241131850875E-0004 1.44730019303491E-0004 + 1.44220293607540E-0004 1.43711952090078E-0004 1.43204992081328E-0004 1.42699410914682E-0004 1.42195205926696E-0004 + 1.41692374457090E-0004 1.41190913848747E-0004 1.40690821447708E-0004 1.40192094603173E-0004 1.39694730667499E-0004 + 1.39198726996198E-0004 1.38704080947932E-0004 1.38210789884517E-0004 1.37718851170918E-0004 1.37228262175245E-0004 + 1.36739020268757E-0004 1.36251122825854E-0004 1.35764567224081E-0004 1.35279350844120E-0004 1.34795471069794E-0004 + 1.34312925288062E-0004 1.33831710889017E-0004 1.33351825265887E-0004 1.32873265815030E-0004 1.32396029935935E-0004 + 1.31920115031217E-0004 1.31445518506617E-0004 1.30972237771004E-0004 1.30500270236364E-0004 1.30029613317808E-0004 + 1.29560264433564E-0004 1.29092221004977E-0004 1.28625480456509E-0004 1.28160040215734E-0004 1.27695897713339E-0004 + 1.27233050383119E-0004 1.26771495661980E-0004 1.26311230989933E-0004 1.25852253810095E-0004 1.25394561568683E-0004 + 1.24938151715019E-0004 1.24483021701521E-0004 1.24029168983709E-0004 1.23576591020194E-0004 1.23125285272683E-0004 + 1.22675249205978E-0004 1.22226480287968E-0004 1.21778975989632E-0004 1.21332733785038E-0004 1.20887751151336E-0004 + 1.20444025568761E-0004 1.20001554520632E-0004 1.19560335493344E-0004 1.19120365976373E-0004 1.18681643462270E-0004 + 1.18244165446663E-0004 1.17807929428250E-0004 1.17372932908804E-0004 1.16939173393163E-0004 1.16506648389236E-0004 + 1.16075355407996E-0004 1.15645291963483E-0004 1.15216455572796E-0004 1.14788843756097E-0004 1.14362454036606E-0004 + 1.13937283940600E-0004 1.13513330997414E-0004 1.13090592739432E-0004 1.12669066702093E-0004 1.12248750423887E-0004 + 1.11829641446351E-0004 1.11411737314067E-0004 1.10995035574666E-0004 1.10579533778820E-0004 1.10165229480241E-0004 + 1.09752120235684E-0004 1.09340203604939E-0004 1.08929477150833E-0004 1.08519938439229E-0004 1.08111585039021E-0004 + 1.07704414522136E-0004 1.07298424463527E-0004 1.06893612441177E-0004 1.06489976036096E-0004 1.06087512832313E-0004 + 1.05686220416886E-0004 1.05286096379888E-0004 1.04887138314413E-0004 1.04489343816572E-0004 1.04092710485493E-0004 + 1.03697235923315E-0004 1.03302917735189E-0004 1.02909753529279E-0004 1.02517740916754E-0004 1.02126877511792E-0004 + 1.01737160931575E-0004 1.01348588796288E-0004 1.00961158729118E-0004 1.00574868356252E-0004 1.00189715306874E-0004 + 9.98056972131672E-0005 9.94228117103043E-0005 9.90410564364558E-0005 9.86604290327798E-0005 9.82809271434263E-0005 + 9.79025484155325E-0005 9.75252904992197E-0005 9.71491510475963E-0005 9.67741277167502E-0005 9.64002181657526E-0005 + 9.60274200566534E-0005 9.56557310544778E-0005 9.52851488272288E-0005 9.49156710458836E-0005 9.45472953843890E-0005 + 9.41800195196654E-0005 9.38138411315991E-0005 9.34487579030455E-0005 9.30847675198255E-0005 9.27218676707213E-0005 + 9.23600560474800E-0005 9.19993303448060E-0005 9.16396882603642E-0005 9.12811274947765E-0005 9.09236457516175E-0005 + 9.05672407374182E-0005 9.02119101616583E-0005 8.98576517367696E-0005 8.95044631781319E-0005 8.91523422040698E-0005 + 8.88012865358551E-0005 8.84512938977003E-0005 8.81023620167611E-0005 8.77544886231331E-0005 8.74076714498475E-0005 + 8.70619082328749E-0005 8.67171967111176E-0005 8.63735346264128E-0005 8.60309197235288E-0005 8.56893497501616E-0005 + 8.53488224569367E-0005 8.50093355974058E-0005 8.46708869280431E-0005 8.43334742082481E-0005 8.39970952003384E-0005 + 8.36617476695531E-0005 8.33274293840489E-0005 8.29941381148964E-0005 8.26618716360828E-0005 8.23306277245056E-0005 + 8.20004041599747E-0005 8.16711987252093E-0005 8.13430092058342E-0005 8.10158333903822E-0005 8.06896690702879E-0005 + 8.03645140398900E-0005 8.00403660964279E-0005 7.97172230400381E-0005 7.93950826737570E-0005 7.90739428035139E-0005 + 7.87538012381341E-0005 7.84346557893350E-0005 7.81165042717228E-0005 7.77993445027949E-0005 7.74831743029335E-0005 + 7.71679914954082E-0005 7.68537939063724E-0005 7.65405793648596E-0005 7.62283457027859E-0005 7.59170907549459E-0005 + 7.56068123590097E-0005 7.52975083555251E-0005 7.49891765879112E-0005 7.46818149024611E-0005 7.43754211483383E-0005 + 7.40699931775729E-0005 7.37655288450648E-0005 7.34620260085768E-0005 7.31594825287369E-0005 7.28578962690353E-0005 + 7.25572650958210E-0005 7.22575868783035E-0005 7.19588594885474E-0005 7.16610808014742E-0005 7.13642486948590E-0005 + 7.10683610493274E-0005 7.07734157483571E-0005 7.04794106782728E-0005 7.01863437282474E-0005 6.98942127902994E-0005 + 6.96030157592890E-0005 6.93127505329209E-0005 6.90234150117378E-0005 6.87350070991225E-0005 6.84475247012951E-0005 + 6.81609657273092E-0005 6.78753280890539E-0005 6.75906097012499E-0005 6.73068084814471E-0005 6.70239223500259E-0005 + 6.67419492301917E-0005 6.64608870479770E-0005 6.61807337322377E-0005 6.59014872146504E-0005 6.56231454297141E-0005 + 6.53457063147447E-0005 6.50691678098762E-0005 6.47935278580586E-0005 6.45187844050538E-0005 6.42449353994380E-0005 + 6.39719787925957E-0005 6.36999125387219E-0005 6.34287345948188E-0005 6.31584429206922E-0005 6.28890354789544E-0005 + 6.26205102350174E-0005 6.23528651570955E-0005 6.20860982162019E-0005 6.18202073861455E-0005 6.15551906435329E-0005 + 6.12910459677627E-0005 6.10277713410272E-0005 6.07653647483096E-0005 6.05038241773805E-0005 6.02431476187994E-0005 + 5.99833330659116E-0005 5.97243785148450E-0005 5.94662819645121E-0005 5.92090414166040E-0005 5.89526548755927E-0005 + 5.86971203487277E-0005 5.84424358460329E-0005 5.81885993803084E-0005 5.79356089671252E-0005 5.76834626248267E-0005 + 5.74321583745254E-0005 5.71816942401004E-0005 5.69320682481986E-0005 5.66832784282298E-0005 5.64353228123677E-0005 + 5.61881994355475E-0005 5.59419063354622E-0005 5.56964415525649E-0005 5.54518031300631E-0005 5.52079891139204E-0005 + 5.49649975528532E-0005 5.47228264983284E-0005 5.44814740045640E-0005 5.42409381285248E-0005 5.40012169299232E-0005 + 5.37623084712167E-0005 5.35242108176045E-0005 5.32869220370292E-0005 5.30504402001731E-0005 5.28147633804558E-0005 + 5.25798896540352E-0005 5.23458170998029E-0005 5.21125437993852E-0005 5.18800678371404E-0005 5.16483873001558E-0005 + 5.14175002782490E-0005 5.11874048639632E-0005 5.09580991525682E-0005 5.07295812420576E-0005 5.05018492331459E-0005 + 5.02749012292702E-0005 5.00487353365845E-0005 4.98233496639617E-0005 4.95987423229905E-0005 4.93749114279721E-0005 + 4.91518550959226E-0005 4.89295714465666E-0005 4.87080586023398E-0005 4.84873146883853E-0005 4.82673378325512E-0005 + 4.80481261653918E-0005 4.78296778201624E-0005 4.76119909328209E-0005 4.73950636420250E-0005 4.71788940891291E-0005 + 4.69634804181851E-0005 4.67488207759401E-0005 4.65349133118330E-0005 4.63217561779959E-0005 4.61093475292494E-0005 + 4.58976855231038E-0005 4.56867683197561E-0005 4.54765940820873E-0005 4.52671609756638E-0005 4.50584671687323E-0005 + 4.48505108322211E-0005 4.46432901397372E-0005 4.44368032675640E-0005 4.42310483946618E-0005 4.40260237026634E-0005 + 4.38217273758753E-0005 4.36181576012747E-0005 4.34153125685070E-0005 4.32131904698868E-0005 4.30117895003931E-0005 + 4.28111078576705E-0005 4.26111437420267E-0005 4.24118953564293E-0005 4.22133609065071E-0005 4.20155386005457E-0005 + 4.18184266494880E-0005 4.16220232669322E-0005 4.14263266691284E-0005 4.12313350749797E-0005 4.10370467060393E-0005 + 4.08434597865079E-0005 4.06505725432346E-0005 4.04583832057124E-0005 4.02668900060793E-0005 4.00760911791155E-0005 + 3.98859849622408E-0005 3.96965695955153E-0005 3.95078433216353E-0005 3.93198043859341E-0005 3.91324510363793E-0005 + 3.89457815235700E-0005 3.87597941007381E-0005 3.85744870237435E-0005 3.83898585510753E-0005 3.82059069438488E-0005 + 3.80226304658034E-0005 3.78400273833030E-0005 3.76580959653316E-0005 3.74768344834947E-0005 3.72962412120162E-0005 + 3.71163144277359E-0005 3.69370524101104E-0005 3.67584534412087E-0005 3.65805158057132E-0005 3.64032377909170E-0005 + 3.62266176867210E-0005 3.60506537856351E-0005 3.58753443827747E-0005 3.57006877758590E-0005 3.55266822652111E-0005 + 3.53533261537542E-0005 3.51806177470121E-0005 3.50085553531067E-0005 3.48371372827557E-0005 3.46663618492729E-0005 + 3.44962273685643E-0005 3.43267321591288E-0005 3.41578745420555E-0005 3.39896528410214E-0005 3.38220653822919E-0005 + 3.36551104947169E-0005 3.34887865097311E-0005 3.33230917613518E-0005 3.31580245861764E-0005 3.29935833233830E-0005 + 3.28297663147259E-0005 3.26665719045371E-0005 3.25039984397230E-0005 3.23420442697624E-0005 3.21807077467069E-0005 + 3.20199872251769E-0005 3.18598810623622E-0005 3.17003876180196E-0005 3.15415052544704E-0005 3.13832323366008E-0005 + 3.12255672318589E-0005 3.10685083102530E-0005 3.09120539443516E-0005 3.07562025092797E-0005 3.06009523827195E-0005 + 3.04463019449074E-0005 3.02922495786321E-0005 3.01387936692350E-0005 2.99859326046060E-0005 2.98336647751845E-0005 + 2.96819885739565E-0005 2.95309023964527E-0005 2.93804046407483E-0005 2.92304937074598E-0005 2.90811679997451E-0005 + 2.89324259233014E-0005 2.87842658863622E-0005 2.86366862996987E-0005 2.84896855766149E-0005 2.83432621329490E-0005 + 2.81974143870705E-0005 2.80521407598777E-0005 2.79074396747986E-0005 2.77633095577868E-0005 2.76197488373221E-0005 + 2.74767559444079E-0005 2.73343293125688E-0005 2.71924673778512E-0005 2.70511685788205E-0005 2.69104313565588E-0005 + 2.67702541546654E-0005 2.66306354192530E-0005 2.64915735989481E-0005 2.63530671448887E-0005 2.62151145107220E-0005 + 2.60777141526045E-0005 2.59408645291987E-0005 2.58045641016730E-0005 2.56688113336998E-0005 2.55336046914530E-0005 + 2.53989426436083E-0005 2.52648236613396E-0005 2.51312462183191E-0005 2.49982087907156E-0005 2.48657098571914E-0005 + 2.47337478989031E-0005 2.46023213994982E-0005 2.44714288451145E-0005 2.43410687243788E-0005 2.42112395284042E-0005 + 2.40819397507901E-0005 2.39531678876192E-0005 2.38249224374572E-0005 2.36972019013509E-0005 2.35700047828259E-0005 + 2.34433295878864E-0005 2.33171748250130E-0005 2.31915390051607E-0005 2.30664206417586E-0005 2.29418182507070E-0005 + 2.28177303503770E-0005 2.26941554616088E-0005 2.25710921077093E-0005 2.24485388144518E-0005 2.23264941100735E-0005 + 2.22049565252747E-0005 2.20839245932174E-0005 2.19633968495223E-0005 2.18433718322696E-0005 2.17238480819954E-0005 + 2.16048241416915E-0005 2.14862985568037E-0005 2.13682698752293E-0005 2.12507366473174E-0005 2.11336974258652E-0005 + 2.10171507661186E-0005 2.09010952257695E-0005 2.07855293649541E-0005 2.06704517462527E-0005 2.05558609346863E-0005 + 2.04417554977169E-0005 2.03281340052454E-0005 2.02149950296090E-0005 2.01023371455817E-0005 1.99901589303708E-0005 + 1.98784589636171E-0005 1.97672358273926E-0005 1.96564881061983E-0005 1.95462143869643E-0005 1.94364132590473E-0005 + 1.93270833142287E-0005 1.92182231467146E-0005 1.91098313531323E-0005 1.90019065325307E-0005 1.88944472863781E-0005 + 1.87874522185598E-0005 1.86809199353782E-0005 1.85748490455499E-0005 1.84692381602052E-0005 1.83640858928865E-0005 + 1.82593908595458E-0005 1.81551516785448E-0005 1.80513669706517E-0005 1.79480353590415E-0005 1.78451554692931E-0005 + 1.77427259293882E-0005 1.76407453697104E-0005 1.75392124230428E-0005 1.74381257245672E-0005 1.73374839118625E-0005 + 1.72372856249027E-0005 1.71375295060564E-0005 1.70382142000841E-0005 1.69393383541378E-0005 1.68409006177591E-0005 + 1.67428996428773E-0005 1.66453340838087E-0005 1.65482025972548E-0005 1.64515038423003E-0005 1.63552364804126E-0005 + 1.62593991754394E-0005 1.61639905936079E-0005 1.60690094035233E-0005 1.59744542761663E-0005 1.58803238848933E-0005 + 1.57866169054333E-0005 1.56933320158876E-0005 1.56004678967282E-0005 1.55080232307951E-0005 1.54159967032966E-0005 + 1.53243870018065E-0005 1.52331928162633E-0005 1.51424128389688E-0005 1.50520457645857E-0005 1.49620902901377E-0005 + 1.48725451150061E-0005 1.47834089409303E-0005 1.46946804720052E-0005 1.46063584146794E-0005 1.45184414777550E-0005 + 1.44309283723847E-0005 1.43438178120718E-0005 1.42571085126677E-0005 1.41707991923703E-0005 1.40848885717235E-0005 + 1.39993753736152E-0005 1.39142583232754E-0005 1.38295361482758E-0005 1.37452075785270E-0005 1.36612713462784E-0005 + 1.35777261861160E-0005 1.34945708349605E-0005 1.34118040320672E-0005 1.33294245190231E-0005 1.32474310397465E-0005 + 1.31658223404850E-0005 1.30845971698139E-0005 1.30037542786355E-0005 1.29232924201767E-0005 1.28432103499884E-0005 + 1.27635068259436E-0005 1.26841806082357E-0005 1.26052304593777E-0005 1.25266551442002E-0005 1.24484534298502E-0005 + 1.23706240857899E-0005 1.22931658837945E-0005 1.22160775979515E-0005 1.21393580046589E-0005 1.20630058826238E-0005 + 1.19870200128611E-0005 1.19113991786917E-0005 1.18361421657415E-0005 1.17612477619397E-0005 1.16867147575173E-0005 + 1.16125419450059E-0005 1.15387281192358E-0005 1.14652720773353E-0005 1.13921726187287E-0005 1.13194285451347E-0005 + 1.12470386605657E-0005 1.11750017713254E-0005 1.11033166860084E-0005 1.10319822154980E-0005 1.09609971729648E-0005 + 1.08903603738659E-0005 1.08200706359425E-0005 1.07501267792193E-0005 1.06805276260030E-0005 1.06112720008799E-0005 + 1.05423587307160E-0005 1.04737866446540E-0005 1.04055545741132E-0005 1.03376613527874E-0005 1.02701058166431E-0005 + 1.02028868039191E-0005 1.01360031551240E-0005 1.00694537130356E-0005 1.00032373226993E-0005 9.93735283142584E-0006 + 9.87179908879109E-0006 9.80657494663407E-0006 9.74167925905511E-0006 9.67711088241535E-0006 9.61286867533431E-0006 + 9.54895149868933E-0006 9.48535821561375E-0006 9.42208769149517E-0006 9.35913879397482E-0006 9.29651039294524E-0006 + 9.23420136054963E-0006 9.17221057118012E-0006 9.11053690147595E-0006 9.04917923032292E-0006 8.98813643885101E-0006 + 8.92740741043376E-0006 8.86699103068655E-0006 8.80688618746478E-0006 8.74709177086331E-0006 8.68760667321408E-0006 + 8.62842978908554E-0006 8.56956001528085E-0006 8.51099625083616E-0006 8.45273739701994E-0006 8.39478235733073E-0006 + 8.33713003749646E-0006 8.27977934547273E-0006 8.22272919144104E-0006 8.16597848780808E-0006 8.10952614920395E-0006 + 8.05337109248044E-0006 7.99751223671038E-0006 7.94194850318536E-0006 7.88667881541511E-0006 7.83170209912571E-0006 + 7.77701728225791E-0006 7.72262329496643E-0006 7.66851906961777E-0006 7.61470354078945E-0006 7.56117564526839E-0006 + 7.50793432204911E-0006 7.45497851233310E-0006 7.40230715952658E-0006 7.34991920923981E-0006 7.29781360928540E-0006 + 7.24598930967656E-0006 7.19444526262647E-0006 7.14318042254601E-0006 7.09219374604313E-0006 7.04148419192109E-0006 + 6.99105072117679E-0006 6.94089229700007E-0006 6.89100788477152E-0006 6.84139645206176E-0006 6.79205696862977E-0006 + 6.74298840642119E-0006 6.69418973956749E-0006 6.64565994438434E-0006 6.59739799936986E-0006 6.54940288520393E-0006 + 6.50167358474608E-0006 6.45420908303465E-0006 6.40700836728523E-0006 6.36007042688893E-0006 6.31339425341163E-0006 + 6.26697884059191E-0006 6.22082318434023E-0006 6.17492628273732E-0006 6.12928713603252E-0006 6.08390474664298E-0006 + 6.03877811915160E-0006 5.99390626030624E-0006 5.94928817901810E-0006 5.90492288636003E-0006 5.86080939556580E-0006 + 5.81694672202798E-0006 5.77333388329720E-0006 5.72996989908049E-0006 5.68685379123962E-0006 5.64398458379036E-0006 + 5.60136130290040E-0006 5.55898297688855E-0006 5.51684863622311E-0006 5.47495731352026E-0006 5.43330804354316E-0006 + 5.39189986320034E-0006 5.35073181154406E-0006 5.30980292976952E-0006 5.26911226121281E-0006 5.22865885135014E-0006 + 5.18844174779618E-0006 5.14846000030247E-0006 5.10871266075661E-0006 5.06919878318023E-0006 5.02991742372820E-0006 + 4.99086764068696E-0006 4.95204849447301E-0006 4.91345904763200E-0006 4.87509836483677E-0006 4.83696551288654E-0006 + 4.79905956070528E-0006 4.76137957934011E-0006 4.72392464196049E-0006 4.68669382385625E-0006 4.64968620243670E-0006 + 4.61290085722909E-0006 4.57633686987703E-0006 4.53999332413956E-0006 4.50386930588931E-0006 4.46796390311156E-0006 + 4.43227620590268E-0006 4.39680530646859E-0006 4.36155029912379E-0006 4.32651028028977E-0006 4.29168434849349E-0006 + 4.25707160436645E-0006 4.22267115064283E-0006 4.18848209215858E-0006 4.15450353584983E-0006 4.12073459075142E-0006 + 4.08717436799589E-0006 4.05382198081169E-0006 4.02067654452225E-0006 3.98773717654440E-0006 3.95500299638687E-0006 + 3.92247312564935E-0006 3.89014668802063E-0006 3.85802280927771E-0006 3.82610061728424E-0006 3.79437924198898E-0006 + 3.76285781542487E-0006 3.73153547170723E-0006 3.70041134703280E-0006 3.66948457967821E-0006 3.63875430999844E-0006 + 3.60821968042593E-0006 3.57787983546874E-0006 3.54773392170956E-0006 3.51778108780428E-0006 3.48802048448040E-0006 + 3.45845126453604E-0006 3.42907258283845E-0006 3.39988359632249E-0006 3.37088346398963E-0006 3.34207134690622E-0006 + 3.31344640820252E-0006 3.28500781307116E-0006 3.25675472876566E-0006 3.22868632459949E-0006 3.20080177194423E-0006 + 3.17310024422868E-0006 3.14558091693731E-0006 3.11824296760878E-0006 3.09108557583497E-0006 3.06410792325922E-0006 + 3.03730919357535E-0006 3.01068857252618E-0006 2.98424524790203E-0006 2.95797840953975E-0006 2.93188724932095E-0006 + 2.90597096117108E-0006 2.88022874105787E-0006 2.85465978698989E-0006 2.82926329901556E-0006 2.80403847922144E-0006 + 2.77898453173117E-0006 2.75410066270408E-0006 2.72938608033367E-0006 2.70483999484657E-0006 2.68046161850105E-0006 + 2.65625016558560E-0006 2.63220485241787E-0006 2.60832489734302E-0006 2.58460952073269E-0006 2.56105794498352E-0006 + 2.53766939451572E-0006 2.51444309577205E-0006 2.49137827721611E-0006 2.46847416933138E-0006 2.44573000461969E-0006 + 2.42314501759984E-0006 2.40071844480653E-0006 2.37844952478872E-0006 2.35633749810858E-0006 2.33438160734007E-0006 + 2.31258109706747E-0006 2.29093521388438E-0006 2.26944320639204E-0006 2.24810432519829E-0006 2.22691782291619E-0006 + 2.20588295416249E-0006 2.18499897555669E-0006 2.16426514571931E-0006 2.14368072527093E-0006 2.12324497683071E-0006 + 2.10295716501496E-0006 2.08281655643610E-0006 2.06282241970116E-0006 2.04297402541040E-0006 2.02327064615627E-0006 + 2.00371155652176E-0006 1.98429603307937E-0006 1.96502335438970E-0006 1.94589280099998E-0006 1.92690365544309E-0006 + 1.90805520223589E-0006 1.88934672787820E-0006 1.87077752085138E-0006 1.85234687161689E-0006 1.83405407261529E-0006 + 1.81589841826458E-0006 1.79787920495917E-0006 1.77999573106849E-0006 1.76224729693555E-0006 1.74463320487589E-0006 + 1.72715275917598E-0006 1.70980526609222E-0006 1.69259003384943E-0006 1.67550637263956E-0006 1.65855359462052E-0006 + 1.64173101391470E-0006 1.62503794660783E-0006 1.60847371074763E-0006 1.59203762634237E-0006 1.57572901535986E-0006 + 1.55954720172583E-0006 1.54349151132287E-0006 1.52756127198907E-0006 1.51175581351660E-0006 1.49607446765059E-0006 + 1.48051656808779E-0006 1.46508145047512E-0006 1.44976845240864E-0006 1.43457691343197E-0006 1.41950617503526E-0006 + 1.40455558065374E-0006 1.38972447566641E-0006 1.37501220739490E-0006 1.36041812510196E-0006 1.34594157999039E-0006 + 1.33158192520163E-0006 1.31733851581442E-0006 1.30321070884367E-0006 1.28919786323900E-0006 1.27529933988360E-0006 + 1.26151450159286E-0006 1.24784271311302E-0006 1.23428334112010E-0006 1.22083575421832E-0006 1.20749932293908E-0006 + 1.19427341973956E-0006 1.18115741900135E-0006 1.16815069702937E-0006 1.15525263205035E-0006 1.14246260421178E-0006 + 1.12977999558048E-0006 1.11720419014131E-0006 1.10473457379599E-0006 1.09237053436177E-0006 1.08011146157007E-0006 + 1.06795674706537E-0006 1.05590578440374E-0006 1.04395796905174E-0006 1.03211269838503E-0006 1.02036937168707E-0006 + 1.00872739014800E-0006 9.97186156863137E-0007 9.85745076831911E-0007 9.74403556956491E-0007 9.63161006040456E-0007 + 9.52016834787669E-0007 9.40970455800833E-0007 9.30021283580368E-0007 9.19168734523074E-0007 9.08412226920795E-0007 + 8.97751180959296E-0007 8.87185018716826E-0007 8.76713164162992E-0007 8.66335043157424E-0007 8.56050083448451E-0007 + 8.45857714671970E-0007 8.35757368350018E-0007 8.25748477889646E-0007 8.15830478581588E-0007 8.06002807598940E-0007 + 7.96264903996011E-0007 7.86616208706995E-0007 7.77056164544654E-0007 7.67584216199184E-0007 7.58199810236802E-0007 + 7.48902395098611E-0007 7.39691421099285E-0007 7.30566340425749E-0007 7.21526607136046E-0007 7.12571677157934E-0007 + 7.03701008287745E-0007 6.94914060189079E-0007 6.86210294391485E-0007 6.77589174289327E-0007 6.69050165140391E-0007 + 6.60592734064741E-0007 6.52216350043412E-0007 6.43920483917110E-0007 6.35704608385060E-0007 6.27568198003631E-0007 + 6.19510729185185E-0007 6.11531680196781E-0007 6.03630531158868E-0007 5.95806764044146E-0007 5.88059862676188E-0007 + 5.80389312728291E-0007 5.72794601722183E-0007 5.65275219026725E-0007 5.57830655856749E-0007 5.50460405271765E-0007 + 5.43163962174665E-0007 5.35940823310578E-0007 5.28790487265504E-0007 5.21712454465168E-0007 5.14706227173727E-0007 + 5.07771309492484E-0007 5.00907207358735E-0007 4.94113428544419E-0007 4.87389482654960E-0007 4.80734881127989E-0007 + 4.74149137232054E-0007 4.67631766065471E-0007 4.61182284554979E-0007 4.54800211454581E-0007 4.48485067344269E-0007 + 4.42236374628742E-0007 4.36053657536253E-0007 4.29936442117269E-0007 4.23884256243318E-0007 4.17896629605710E-0007 + 4.11973093714265E-0007 4.06113181896155E-0007 4.00316429294576E-0007 3.94582372867587E-0007 3.88910551386843E-0007 + 3.83300505436319E-0007 3.77751777411150E-0007 3.72263911516352E-0007 3.66836453765564E-0007 3.61468951979882E-0007 + 3.56160955786546E-0007 3.50912016617775E-0007 3.45721687709507E-0007 3.40589524100135E-0007 3.35515082629344E-0007 + 3.30497921936804E-0007 3.25537602461007E-0007 3.20633686438005E-0007 3.15785737900156E-0007 3.10993322674958E-0007 + 3.06256008383748E-0007 3.01573364440537E-0007 2.96944962050757E-0007 2.92370374210006E-0007 2.87849175702883E-0007 + 2.83380943101694E-0007 2.78965254765286E-0007 2.74601690837800E-0007 2.70289833247413E-0007 2.66029265705184E-0007 + 2.61819573703754E-0007 2.57660344516191E-0007 2.53551167194734E-0007 2.49491632569553E-0007 2.45481333247574E-0007 + 2.41519863611238E-0007 2.37606819817250E-0007 2.33741799795422E-0007 2.29924403247388E-0007 2.26154231645439E-0007 + 2.22430888231286E-0007 2.18753978014814E-0007 2.15123107772925E-0007 2.11537886048254E-0007 2.07997923148013E-0007 + 2.04502831142747E-0007 2.01052223865103E-0007 1.97645716908659E-0007 1.94282927626663E-0007 1.90963475130862E-0007 + 1.87686980290268E-0007 1.84453065729932E-0007 1.81261355829771E-0007 1.78111476723313E-0007 1.75003056296523E-0007 + 1.71935724186581E-0007 1.68909111780648E-0007 1.65922852214707E-0007 1.62976580372297E-0007 1.60069932883355E-0007 + 1.57202548122988E-0007 1.54374066210247E-0007 1.51584129006956E-0007 1.48832380116491E-0007 1.46118464882557E-0007 + 1.43442030388018E-0007 1.40802725453657E-0007 1.38200200637002E-0007 1.35634108231111E-0007 1.33104102263354E-0007 + 1.30609838494243E-0007 1.28150974416195E-0007 1.25727169252362E-0007 1.23338083955417E-0007 1.20983381206338E-0007 + 1.18662725413243E-0007 1.16375782710155E-0007 1.14122220955833E-0007 1.11901709732561E-0007 1.09713920344937E-0007 + 1.07558525818707E-0007 1.05435200899534E-0007 1.03343622051835E-0007 1.01283467457564E-0007 9.92544170150155E-0008 + 9.72561523376501E-0008 9.52883567528739E-0008 9.33507153008703E-0008 9.14429147333954E-0008 8.95646435125754E-0008 + 8.77155918097364E-0008 8.58954515042017E-0008 8.41039161820914E-0008 8.23406811351558E-0008 8.06054433595581E-0008 + 7.88979015547097E-0008 7.72177561220701E-0008 7.55647091639498E-0008 7.39384644823452E-0008 7.23387275777254E-0008 + 7.07652056478679E-0008 6.92176075866631E-0008 6.76956439829190E-0008 6.61990271191981E-0008 6.47274709706081E-0008 + 6.32806912036388E-0008 6.18584051749695E-0008 6.04603319302779E-0008 5.90861922030764E-0008 5.77357084135089E-0008 + 5.64086046671873E-0008 5.51046067540031E-0008 5.38234421469388E-0008 5.25648400009059E-0008 5.13285311515454E-0008 + 5.01142481140658E-0008 4.89217250820576E-0008 4.77506979263083E-0008 4.66009041936387E-0008 4.54720831057191E-0008 + 4.43639755578863E-0008 4.32763241179831E-0008 4.22088730251657E-0008 4.11613681887433E-0008 4.01335571869979E-0008 + 3.91251892660039E-0008 3.81360153384692E-0008 3.71657879825462E-0008 3.62142614406734E-0008 3.52811916183975E-0008 + 3.43663360831967E-0008 3.34694540633226E-0008 3.25903064466157E-0008 3.17286557793480E-0008 3.08842662650480E-0008 + 3.00569037633274E-0008 2.92463357887243E-0008 2.84523315095224E-0008 2.76746617465950E-0008 2.69130989722333E-0008 + 2.61674173089761E-0008 2.54373925284537E-0008 2.47228020502122E-0008 2.40234249405577E-0008 2.33390419113884E-0008 + 2.26694353190267E-0008 2.20143891630642E-0008 2.13736890851949E-0008 2.07471223680492E-0008 2.01344779340412E-0008 + 1.95355463441973E-0008 1.89501197970047E-0008 1.83779921272468E-0008 1.78189588048409E-0008 1.72728169336865E-0008 + 1.67393652504978E-0008 1.62184041236538E-0008 1.57097355520364E-0008 1.52131631638711E-0008 1.47284922155771E-0008 + 1.42555295906035E-0008 1.37940837982802E-0008 1.33439649726599E-0008 1.29049848713610E-0008 1.24769568744199E-0008 + 1.20596959831300E-0008 1.16530188188949E-0008 1.12567436220733E-0008 1.08706902508243E-0008 1.04946801799614E-0008 + 1.01285364997957E-0008 9.77208391499000E-0009 9.42514874340661E-0009 9.08755891495612E-0009 8.75914397045206E-0009 + 8.43973506046039E-0009 8.12916494414964E-0009 7.82726798814760E-0009 7.53388016538953E-0009 7.24883905397565E-0009 + 6.97198383602334E-0009 6.70315529652000E-0009 6.44219582218173E-0009 6.18894940030463E-0009 5.94326161762428E-0009 + 5.70497965917066E-0009 5.47395230712376E-0009 5.25002993967418E-0009 5.03306452987760E-0009 4.82290964451620E-0009 + 4.61942044295629E-0009 4.42245367600665E-0009 4.23186768478115E-0009 4.04752239955622E-0009 3.86927933863433E-0009 + 3.69700160720432E-0009 3.53055389620239E-0009 3.36980248117681E-0009 3.21461522114833E-0009 3.06486155747578E-0009 + 2.92041251271902E-0009 2.78114068950263E-0009 2.64692026938244E-0009 2.51762701171012E-0009 2.39313825249841E-0009 + 2.27333290328920E-0009 2.15809145001857E-0009 2.04729595188583E-0009 1.94083004022071E-0009 1.83857891735115E-0009 + 1.74042935547365E-0009 1.64626969552107E-0009 1.55598984603385E-0009 1.46948128202985E-0009 1.38663704387471E-0009 + 1.30735173615440E-0009 1.23152152654579E-0009 1.15904414469014E-0009 1.08981888106545E-0009 1.02374658585944E-0009 + 9.60729667844352E-0010 9.00672093250214E-0010 8.43479384640598E-0010 7.89058619787536E-0010 7.37318430547061E-0010 + 6.88169001736244E-0010 6.41522070009209E-0010 5.97290922735112E-0010 5.55390396875635E-0010 5.15736877863052E-0010 + 4.78248298479568E-0010 4.42844137735982E-0010 4.09445419751971E-0010 3.77974712636112E-0010 3.48356127366473E-0010 + 3.20515316672219E-0010 2.94379473915146E-0010 2.69877331971772E-0010 2.46939162116404E-0010 2.25496772903960E-0010 + 2.05483509053992E-0010 1.86834250334726E-0010 1.69485410447647E-0010 1.53374935912921E-0010 1.38442304954780E-0010 + 1.24628526387900E-0010 1.11876138503939E-0010 1.00129207958605E-0010 8.93333286594398E-0011 7.94356206537470E-0011 + 7.03847290173443E-0011 6.21308227435788E-0011 5.46255936328635E-0011 4.78222551828504E-0011 4.16755414788679E-0011 + 3.61417060850584E-0011 3.11785209358638E-0011 2.67452752280201E-0011 2.28027743131284E-0011 1.93133385905797E-0011 + 1.62408024010923E-0011 1.35505129206535E-0011 1.12093290549642E-0011 9.18562033441218E-0012 7.44926580948414E-0012 + 5.97165294667466E-0012 4.72567652491142E-0012 3.68573753242149E-0012 2.82774206412488E-0012 2.12910021948726E-0012 + 1.56872500086494E-0012 1.12703121234674E-0012 7.85934359063799E-0013 5.28849547000072E-0013 3.40690383278238E-0013 + 2.07867876933512E-0013 1.18289340174957E-0013 6.13572901270581E-0014 2.79683510593944E-0014 1.05121570985169E-0014 + 2.87025542484574E-0015 4.15009953669473E-0016 8.50549965556171E-0018 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 0.00000000000000E+0000 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 + 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 1.00000000000000E+0012 9.22928988634834E+0002 + 9.18497682817860E+0002 9.14098678325109E+0002 9.09731601923418E+0002 9.05396086317276E+0002 9.01091770040226E+0002 + 8.96818297348349E+0002 8.92575318115777E+0002 8.88362487732226E+0002 8.84179467002478E+0002 8.80025922047792E+0002 + 8.75901524209206E+0002 8.71805949952684E+0002 8.67738880776083E+0002 8.63700003117892E+0002 8.59689008267725E+0002 + 8.55705592278519E+0002 8.51749455880411E+0002 8.47820304396256E+0002 8.43917847658771E+0002 8.40041799929243E+0002 + 8.36191879817802E+0002 8.32367810205210E+0002 8.28569318166136E+0002 8.24796134893907E+0002 8.21047995626676E+0002 + 8.17324639575011E+0002 8.13625809850854E+0002 8.09951253397837E+0002 8.06300720922916E+0002 8.02673966829319E+0002 + 7.99070749150755E+0002 7.95490829486878E+0002 7.91933972939984E+0002 7.88399948052899E+0002 7.84888526748052E+0002 + 7.81399484267701E+0002 7.77932599115299E+0002 7.74487652997962E+0002 7.71064430770034E+0002 7.67662720377722E+0002 + 7.64282312804768E+0002 7.60923002019166E+0002 7.57584584920871E+0002 7.54266861290509E+0002 7.50969633739045E+0002 + 7.47692707658411E+0002 7.44435891173064E+0002 7.41198995092449E+0002 7.37981832864375E+0002 7.34784220529254E+0002 + 7.31605976675212E+0002 7.28446922394041E+0002 7.25306881237983E+0002 7.22185679177323E+0002 7.19083144558783E+0002 + 7.15999108064695E+0002 7.12933402672943E+0002 7.09885863617656E+0002 7.06856328350637E+0002 7.03844636503518E+0002 + 7.00850629850620E+0002 6.97874152272516E+0002 6.94915049720263E+0002 6.91973170180320E+0002 6.89048363640104E+0002 + 6.86140482054205E+0002 6.83249379311222E+0002 6.80374911201221E+0002 6.77516935383797E+0002 6.74675311356738E+0002 + 6.71849900425264E+0002 6.69040565671846E+0002 6.66247171926580E+0002 6.63469585738114E+0002 6.60707675345118E+0002 + 6.57961310648277E+0002 6.55230363182808E+0002 6.52514706091486E+0002 6.49814214098170E+0002 6.47128763481814E+0002 + 6.44458232050963E+0002 6.41802499118722E+0002 6.39161445478180E+0002 6.36534953378294E+0002 6.33922906500217E+0002 + 6.31325189934056E+0002 6.28741690156064E+0002 6.26172295006250E+0002 6.23616893666398E+0002 6.21075376638492E+0002 + 6.18547635723535E+0002 6.16033564000759E+0002 6.13533055807209E+0002 6.11046006717712E+0002 6.08572313525199E+0002 + 6.06111874221394E+0002 6.03664587977857E+0002 6.01230355127365E+0002 5.98809077145640E+0002 5.96400656633403E+0002 + 5.94004997298759E+0002 5.91622003939898E+0002 5.89251582428113E+0002 5.86893639691125E+0002 5.84548083696707E+0002 + 5.82214823436609E+0002 5.79893768910768E+0002 5.77584831111807E+0002 5.75287922009816E+0002 5.73002954537394E+0002 + 5.70729842574980E+0002 5.68468500936429E+0002 5.66218845354860E+0002 5.63980792468751E+0002 5.61754259808282E+0002 + 5.59539165781928E+0002 5.57335429663290E+0002 5.55142971578154E+0002 5.52961712491792E+0002 5.50791574196479E+0002 + 5.48632479299241E+0002 5.46484351209808E+0002 5.44347114128799E+0002 5.42220693036097E+0002 5.40105013679443E+0002 + 5.38000002563227E+0002 5.35905586937474E+0002 5.33821694787030E+0002 5.31748254820936E+0002 5.29685196461985E+0002 + 5.27632449836467E+0002 5.25589945764092E+0002 5.23557615748092E+0002 5.21535391965488E+0002 5.19523207257538E+0002 + 5.17520995120344E+0002 5.15528689695624E+0002 5.13546225761642E+0002 5.11573538724305E+0002 5.09610564608403E+0002 + 5.07657240049002E+0002 5.05713502282997E+0002 5.03779289140792E+0002 5.01854539038143E+0002 4.99939190968126E+0002 + 4.98033184493250E+0002 4.96136459737703E+0002 4.94248957379733E+0002 4.92370618644158E+0002 4.90501385294999E+0002 + 4.88641199628247E+0002 4.86790004464748E+0002 4.84947743143206E+0002 4.83114359513309E+0002 4.81289797928974E+0002 + 4.79474003241694E+0002 4.77666920794012E+0002 4.75868496413092E+0002 4.74078676404408E+0002 4.72297407545530E+0002 + 4.70524637080020E+0002 4.68760312711429E+0002 4.67004382597388E+0002 4.65256795343809E+0002 4.63517499999169E+0002 + 4.61786446048895E+0002 4.60063583409847E+0002 4.58348862424880E+0002 4.56642233857506E+0002 4.54943648886638E+0002 + 4.53253059101421E+0002 4.51570416496148E+0002 4.49895673465264E+0002 4.48228782798438E+0002 4.46569697675730E+0002 + 4.44918371662828E+0002 4.43274758706364E+0002 4.41638813129303E+0002 4.40010489626412E+0002 4.38389743259799E+0002 + 4.36776529454519E+0002 4.35170803994257E+0002 4.33572523017077E+0002 4.31981643011238E+0002 4.30398120811078E+0002 + 4.28821913592961E+0002 4.27252978871293E+0002 4.25691274494591E+0002 4.24136758641626E+0002 4.22589389817617E+0002 + 4.21049126850491E+0002 4.19515928887196E+0002 4.17989755390072E+0002 4.16470566133286E+0002 4.14958321199313E+0002 + 4.13452980975472E+0002 4.11954506150524E+0002 4.10462857711311E+0002 4.08977996939456E+0002 4.07499885408106E+0002 + 4.06028484978731E+0002 4.04563757797964E+0002 4.03105666294499E+0002 4.01654173176027E+0002 4.00209241426221E+0002 + 3.98770834301769E+0002 3.97338915329449E+0002 3.95913448303244E+0002 3.94494397281511E+0002 3.93081726584179E+0002 + 3.91675400789996E+0002 3.90275384733818E+0002 3.88881643503930E+0002 3.87494142439416E+0002 3.86112847127560E+0002 + 3.84737723401291E+0002 3.83368737336656E+0002 3.82005855250343E+0002 3.80649043697227E+0002 3.79298269467957E+0002 + 3.77953499586581E+0002 3.76614701308199E+0002 3.75281842116651E+0002 3.73954889722241E+0002 3.72633812059489E+0002 + 3.71318577284917E+0002 3.70009153774870E+0002 3.68705510123356E+0002 3.67407615139930E+0002 3.66115437847601E+0002 + 3.64828947480765E+0002 3.63548113483172E+0002 3.62272905505920E+0002 3.61003293405473E+0002 3.59739247241713E+0002 + 3.58480737276010E+0002 3.57227733969325E+0002 3.55980207980338E+0002 3.54738130163596E+0002 3.53501471567694E+0002 + 3.52270203433473E+0002 3.51044297192245E+0002 3.49823724464047E+0002 3.48608457055905E+0002 3.47398466960137E+0002 + 3.46193726352665E+0002 3.44994207591357E+0002 3.43799883214388E+0002 3.42610725938622E+0002 3.41426708658016E+0002 + 3.40247804442047E+0002 3.39073986534151E+0002 3.37905228350192E+0002 3.36741503476946E+0002 3.35582785670602E+0002 + 3.34429048855287E+0002 3.33280267121607E+0002 3.32136414725205E+0002 3.30997466085341E+0002 3.29863395783485E+0002 + 3.28734178561933E+0002 3.27609789322434E+0002 3.26490203124839E+0002 3.25375395185765E+0002 3.24265340877273E+0002 + 3.23160015725568E+0002 3.22059395409707E+0002 3.20963455760329E+0002 3.19872172758397E+0002 3.18785522533958E+0002 + 3.17703481364914E+0002 3.16626025675811E+0002 3.15553132036640E+0002 3.14484777161653E+0002 3.13420937908194E+0002 + 3.12361591275543E+0002 3.11306714403773E+0002 3.10256284572619E+0002 3.09210279200367E+0002 3.08168675842742E+0002 + 3.07131452191825E+0002 3.06098586074971E+0002 3.05070055453745E+0002 3.04045838422865E+0002 3.03025913209163E+0002 + 3.02010258170556E+0002 3.00998851795020E+0002 2.99991672699592E+0002 2.98988699629368E+0002 2.97989911456519E+0002 + 2.96995287179318E+0002 2.96004805921176E+0002 2.95018446929687E+0002 2.94036189575688E+0002 2.93058013352325E+0002 + 2.92083897874130E+0002 2.91113822876112E+0002 2.90147768212850E+0002 2.89185713857600E+0002 2.88227639901416E+0002 + 2.87273526552272E+0002 2.86323354134195E+0002 2.85377103086416E+0002 2.84434753962513E+0002 2.83496287429583E+0002 + 2.82561684267404E+0002 2.81630925367619E+0002 2.80703991732921E+0002 2.79780864476250E+0002 2.78861524819995E+0002 + 2.77945954095208E+0002 2.77034133740821E+0002 2.76126045302878E+0002 2.75221670433765E+0002 2.74320990891459E+0002 + 2.73423988538772E+0002 2.72530645342615E+0002 2.71640943373257E+0002 2.70754864803605E+0002 2.69872391908476E+0002 + 2.68993507063888E+0002 2.68118192746353E+0002 2.67246431532174E+0002 2.66378206096758E+0002 2.65513499213923E+0002 + 2.64652293755221E+0002 2.63794572689266E+0002 2.62940319081065E+0002 2.62089516091356E+0002 2.61242146975958E+0002 + 2.60398195085115E+0002 2.59557643862862E+0002 2.58720476846381E+0002 2.57886677665375E+0002 2.57056230041441E+0002 + 2.56229117787451E+0002 2.55405324806939E+0002 2.54584835093492E+0002 2.53767632730150E+0002 2.52953701888803E+0002 + 2.52143026829607E+0002 2.51335591900392E+0002 2.50531381536082E+0002 2.49730380258118E+0002 2.48932572673891E+0002 + 2.48137943476171E+0002 2.47346477442547E+0002 2.46558159434875E+0002 2.45772974398720E+0002 2.44990907362814E+0002 + 2.44211943438512E+0002 2.43436067819257E+0002 2.42663265780044E+0002 2.41893522676895E+0002 2.41126823946335E+0002 + 2.40363155104868E+0002 2.39602501748471E+0002 2.38844849552074E+0002 2.38090184269061E+0002 2.37338491730764E+0002 + 2.36589757845966E+0002 2.35843968600410E+0002 2.35101110056304E+0002 2.34361168351839E+0002 2.33624129700707E+0002 + 2.32889980391623E+0002 2.32158706787850E+0002 2.31430295326730E+0002 2.30704732519217E+0002 2.29982004949417E+0002 + 2.29262099274127E+0002 2.28545002222377E+0002 2.27830700594985E+0002 2.27119181264104E+0002 2.26410431172781E+0002 + 2.25704437334512E+0002 2.25001186832809E+0002 2.24300666820762E+0002 2.23602864520613E+0002 2.22907767223323E+0002 + 2.22215362288153E+0002 2.21525637142241E+0002 2.20838579280185E+0002 2.20154176263629E+0002 2.19472415720849E+0002 + 2.18793285346353E+0002 2.18116772900465E+0002 2.17442866208932E+0002 2.16771553162523E+0002 2.16102821716630E+0002 + 2.15436659890879E+0002 2.14773055768740E+0002 2.14111997497138E+0002 2.13453473286068E+0002 2.12797471408220E+0002 + 2.12143980198593E+0002 2.11492988054124E+0002 2.10844483433314E+0002 2.10198454855857E+0002 2.09554890902274E+0002 + 2.08913780213549E+0002 2.08275111490764E+0002 2.07638873494742E+0002 2.07005055045691E+0002 2.06373645022844E+0002 + 2.05744632364116E+0002 2.05118006065748E+0002 2.04493755181964E+0002 2.03871868824624E+0002 2.03252336162883E+0002 + 2.02635146422856E+0002 2.02020288887274E+0002 2.01407752895153E+0002 2.00797527841462E+0002 2.00189603176795E+0002 + 1.99583968407038E+0002 1.98980613093049E+0002 1.98379526850331E+0002 1.97780699348714E+0002 1.97184120312037E+0002 + 1.96589779517828E+0002 1.95997666796994E+0002 1.95407772033505E+0002 1.94820085164089E+0002 1.94234596177919E+0002 + 1.93651295116312E+0002 1.93070172072421E+0002 1.92491217190940E+0002 1.91914420667795E+0002 1.91339772749858E+0002 + 1.90767263734642E+0002 1.90196883970013E+0002 1.89628623853896E+0002 1.89062473833987E+0002 1.88498424407466E+0002 + 1.87936466120710E+0002 1.87376589569009E+0002 1.86818785396286E+0002 1.86263044294816E+0002 1.85709357004948E+0002 + 1.85157714314828E+0002 1.84608107060129E+0002 1.84060526123770E+0002 1.83514962435653E+0002 1.82971406972391E+0002 + 1.82429850757041E+0002 1.81890284858837E+0002 1.81352700392931E+0002 1.80817088520123E+0002 1.80283440446610E+0002 + 1.79751747423719E+0002 1.79222000747656E+0002 1.78694191759248E+0002 1.78168311843689E+0002 1.77644352430290E+0002 + 1.77122304992226E+0002 1.76602161046291E+0002 1.76083912152646E+0002 1.75567549914576E+0002 1.75053065978249E+0002 + 1.74540452032467E+0002 1.74029699808430E+0002 1.73520801079494E+0002 1.73013747660936E+0002 1.72508531409715E+0002 + 1.72005144224238E+0002 1.71503578044126E+0002 1.71003824849985E+0002 1.70505876663171E+0002 1.70009725545563E+0002 + 1.69515363599340E+0002 1.69022782966746E+0002 1.68531975829871E+0002 1.68042934410430E+0002 1.67555650969533E+0002 + 1.67070117807474E+0002 1.66586327263504E+0002 1.66104271715617E+0002 1.65623943580333E+0002 1.65145335312485E+0002 + 1.64668439405002E+0002 1.64193248388695E+0002 1.63719754832053E+0002 1.63247951341026E+0002 1.62777830558822E+0002 + 1.62309385165694E+0002 1.61842607878740E+0002 1.61377491451693E+0002 1.60914028674723E+0002 1.60452212374230E+0002 + 1.59992035412646E+0002 1.59533490688233E+0002 1.59076571134886E+0002 1.58621269721938E+0002 1.58167579453960E+0002 + 1.57715493370565E+0002 1.57265004546220E+0002 1.56816106090050E+0002 1.56368791145647E+0002 1.55923052890878E+0002 + 1.55478884537699E+0002 1.55036279331967E+0002 1.54595230553250E+0002 1.54155731514645E+0002 1.53717775562591E+0002 + 1.53281356076688E+0002 1.52846466469510E+0002 1.52413100186431E+0002 1.51981250705438E+0002 1.51550911536955E+0002 + 1.51122076223668E+0002 1.50694738340340E+0002 1.50268891493644E+0002 1.49844529321983E+0002 1.49421645495317E+0002 + 1.49000233714992E+0002 1.48580287713566E+0002 1.48161801254639E+0002 1.47744768132686E+0002 1.47329182172885E+0002 + 1.46915037230949E+0002 1.46502327192964E+0002 1.46091045975217E+0002 1.45681187524036E+0002 1.45272745815626E+0002 + 1.44865714855903E+0002 1.44460088680335E+0002 1.44055861353781E+0002 1.43653026970329E+0002 1.43251579653142E+0002 + 1.42851513554292E+0002 1.42452822854611E+0002 1.42055501763531E+0002 1.41659544518928E+0002 1.41264945386970E+0002 + 1.40871698661961E+0002 1.40479798666191E+0002 1.40089239749784E+0002 1.39700016290545E+0002 1.39312122693813E+0002 + 1.38925553392310E+0002 1.38540302845994E+0002 1.38156365541912E+0002 1.37773735994050E+0002 1.37392408743195E+0002 + 1.37012378356783E+0002 1.36633639428758E+0002 1.36256186579429E+0002 1.35880014455330E+0002 1.35505117729072E+0002 + 1.35131491099211E+0002 1.34759129290102E+0002 1.34388027051764E+0002 1.34018179159737E+0002 1.33649580414951E+0002 + 1.33282225643585E+0002 1.32916109696933E+0002 1.32551227451267E+0002 1.32187573807708E+0002 1.31825143692085E+0002 + 1.31463932054811E+0002 1.31103933870741E+0002 1.30745144139053E+0002 1.30387557883106E+0002 1.30031170150319E+0002 + 1.29675976012037E+0002 1.29321970563406E+0002 1.28969148923242E+0002 1.28617506233911E+0002 1.28267037661194E+0002 + 1.27917738394169E+0002 1.27569603645087E+0002 1.27222628649239E+0002 1.26876808664846E+0002 1.26532138972925E+0002 + 1.26188614877175E+0002 1.25846231703853E+0002 1.25504984801654E+0002 1.25164869541592E+0002 1.24825881316881E+0002 + 1.24488015542816E+0002 1.24151267656655E+0002 1.23815633117507E+0002 1.23481107406207E+0002 1.23147686025209E+0002 + 1.22815364498466E+0002 1.22484138371318E+0002 1.22154003210379E+0002 1.21824954603419E+0002 1.21496988159260E+0002 + 1.21170099507658E+0002 1.20844284299193E+0002 1.20519538205162E+0002 1.20195856917464E+0002 1.19873236148496E+0002 + 1.19551671631041E+0002 1.19231159118161E+0002 1.18911694383091E+0002 1.18593273219131E+0002 1.18275891439539E+0002 + 1.17959544877428E+0002 1.17644229385660E+0002 1.17329940836741E+0002 1.17016675122718E+0002 1.16704428155075E+0002 + 1.16393195864633E+0002 1.16082974201444E+0002 1.15773759134695E+0002 1.15465546652601E+0002 1.15158332762309E+0002 + 1.14852113489797E+0002 1.14546884879776E+0002 1.14242642995590E+0002 1.13939383919118E+0002 1.13637103750677E+0002 + 1.13335798608926E+0002 1.13035464630768E+0002 1.12736097971256E+0002 1.12437694803496E+0002 1.12140251318553E+0002 + 1.11843763725357E+0002 1.11548228250608E+0002 1.11253641138686E+0002 1.10959998651555E+0002 1.10667297068673E+0002 + 1.10375532686897E+0002 1.10084701820399E+0002 1.09794800800566E+0002 1.09505825975920E+0002 1.09217773712018E+0002 + 1.08930640391373E+0002 1.08644422413357E+0002 1.08359116194119E+0002 1.08074718166495E+0002 1.07791224779919E+0002 + 1.07508632500339E+0002 1.07226937810132E+0002 1.06946137208016E+0002 1.06666227208963E+0002 1.06387204344120E+0002 + 1.06109065160719E+0002 1.05831806221998E+0002 1.05555424107114E+0002 1.05279915411062E+0002 1.05005276744593E+0002 + 1.04731504734130E+0002 1.04458596021691E+0002 1.04186547264801E+0002 1.03915355136419E+0002 1.03645016324852E+0002 + 1.03375527533681E+0002 1.03106885481674E+0002 1.02839086902716E+0002 1.02572128545723E+0002 1.02306007174572E+0002 + 1.02040719568015E+0002 1.01776262519608E+0002 1.01512632837633E+0002 1.01249827345020E+0002 1.00987842879275E+0002 + 1.00726676292399E+0002 1.00466324450819E+0002 1.00206784235309E+0002 9.99480525409217E+0001 9.96901262769057E+0001 + 9.94330023666407E+0001 9.91766777475607E+0001 9.89211493710824E+0001 9.86664142025328E+0001 9.84124692210780E+0001 + 9.81593114196514E+0001 9.79069378048834E+0001 9.76553453970305E+0001 9.74045312299053E+0001 9.71544923508071E+0001 + 9.69052258204522E+0001 9.66567287129050E+0001 9.64089981155097E+0001 9.61620311288221E+0001 9.59158248665413E+0001 + 9.56703764554431E+0001 9.54256830353121E+0001 9.51817417588757E+0001 9.49385497917375E+0001 9.46961043123110E+0001 + 9.44544025117548E+0001 9.42134415939068E+0001 9.39732187752191E+0001 9.37337312846944E+0001 9.34949763638210E+0001 + 9.32569512665091E+0001 9.30196532590279E+0001 9.27830796199420E+0001 9.25472276400486E+0001 9.23120946223153E+0001 + 9.20776778818181E+0001 9.18439747456796E+0001 9.16109825530072E+0001 9.13786986548326E+0001 9.11471204140510E+0001 + 9.09162452053605E+0001 9.06860704152019E+0001 9.04565934416994E+0001 9.02278116946011E+0001 8.99997225952196E+0001 + 8.97723235763736E+0001 8.95456120823292E+0001 8.93195855687421E+0001 8.90942415025994E+0001 8.88695773621627E+0001 + 8.86455906369104E+0001 8.84222788274808E+0001 8.81996394456162E+0001 8.79776700141061E+0001 8.77563680667315E+0001 + 8.75357311482091E+0001 8.73157568141363E+0001 8.70964426309359E+0001 8.68777861758015E+0001 8.66597850366430E+0001 + 8.64424368120330E+0001 8.62257391111518E+0001 8.60096895537352E+0001 8.57942857700206E+0001 8.55795254006940E+0001 + 8.53654060968374E+0001 8.51519255198767E+0001 8.49390813415295E+0001 8.47268712437527E+0001 8.45152929186923E+0001 + 8.43043440686306E+0001 8.40940224059365E+0001 8.38843256530141E+0001 8.36752515422525E+0001 8.34667978159758E+0001 + 8.32589622263930E+0001 8.30517425355485E+0001 8.28451365152730E+0001 8.26391419471339E+0001 8.24337566223872E+0001 + 8.22289783419284E+0001 8.20248049162446E+0001 8.18212341653664E+0001 8.16182639188199E+0001 8.14158920155798E+0001 + 8.12141163040218E+0001 8.10129346418752E+0001 8.08123448961774E+0001 8.06123449432261E+0001 8.04129326685340E+0001 + 8.02141059667825E+0001 8.00158627417760E+0001 7.98182009063966E+0001 7.96211183825585E+0001 7.94246131011636E+0001 + 7.92286830020562E+0001 7.90333260339791E+0001 7.88385401545286E+0001 7.86443233301114E+0001 7.84506735359001E+0001 + 7.82575887557900E+0001 7.80650669823557E+0001 7.78731062168082E+0001 7.76817044689517E+0001 7.74908597571415E+0001 + 7.73005701082413E+0001 7.71108335575812E+0001 7.69216481489156E+0001 7.67330119343816E+0001 7.65449229744579E+0001 + 7.63573793379228E+0001 7.61703791018139E+0001 7.59839203513869E+0001 7.57980011800754E+0001 7.56126196894497E+0001 + 7.54277739891780E+0001 7.52434621969851E+0001 7.50596824386136E+0001 7.48764328477841E+0001 7.46937115661557E+0001 + 7.45115167432876E+0001 7.43298465365992E+0001 7.41486991113325E+0001 7.39680726405130E+0001 7.37879653049116E+0001 + 7.36083752930066E+0001 7.34293008009459E+0001 7.32507400325095E+0001 7.30726911990715E+0001 7.28951525195637E+0001 + 7.27181222204380E+0001 7.25415985356295E+0001 7.23655797065204E+0001 7.21900639819033E+0001 7.20150496179445E+0001 + 7.18405348781486E+0001 7.16665180333226E+0001 7.14929973615398E+0001 7.13199711481046E+0001 7.11474376855173E+0001 + 7.09753952734387E+0001 7.08038422186557E+0001 7.06327768350459E+0001 7.04621974435436E+0001 7.02921023721055E+0001 + 7.01224899556760E+0001 6.99533585361536E+0001 6.97847064623571E+0001 6.96165320899920E+0001 6.94488337816167E+0001 + 6.92816099066097E+0001 6.91148588411363E+0001 6.89485789681155E+0001 6.87827686771877E+0001 6.86174263646818E+0001 + 6.84525504335829E+0001 6.82881392935001E+0001 6.81241913606343E+0001 6.79607050577468E+0001 6.77976788141269E+0001 + 6.76351110655609E+0001 6.74730002543007E+0001 6.73113448290321E+0001 6.71501432448443E+0001 6.69893939631990E+0001 + 6.68290954518993E+0001 6.66692461850594E+0001 6.65098446430743E+0001 6.63508893125896E+0001 6.61923786864709E+0001 + 6.60343112637749E+0001 6.58766855497184E+0001 6.57195000556500E+0001 6.55627532990196E+0001 6.54064438033499E+0001 + 6.52505700982068E+0001 6.50951307191706E+0001 6.49401242078072E+0001 6.47855491116394E+0001 6.46314039841184E+0001 + 6.44776873845955E+0001 6.43243978782939E+0001 6.41715340362805E+0001 6.40190944354380E+0001 6.38670776584374E+0001 + 6.37154822937100E+0001 6.35643069354204E+0001 6.34135501834385E+0001 6.32632106433131E+0001 6.31132869262443E+0001 + 6.29637776490568E+0001 6.28146814341730E+0001 6.26659969095868E+0001 6.25177227088366E+0001 6.23698574709792E+0001 + 6.22223998405639E+0001 6.20753484676057E+0001 6.19287020075601E+0001 6.17824591212971E+0001 6.16366184750753E+0001 + 6.14911787405168E+0001 6.13461385945814E+0001 6.12014967195416E+0001 6.10572518029575E+0001 6.09134025376517E+0001 + 6.07699476216845E+0001 6.06268857583292E+0001 6.04842156560476E+0001 6.03419360284651E+0001 6.02000455943471E+0001 + 6.00585430775742E+0001 5.99174272071181E+0001 5.97766967170181E+0001 5.96363503463571E+0001 5.94963868392376E+0001 + 5.93568049447583E+0001 5.92176034169908E+0001 5.90787810149563E+0001 5.89403365026019E+0001 5.88022686487780E+0001 + 5.86645762272151E+0001 5.85272580165012E+0001 5.83903128000587E+0001 5.82537393661220E+0001 5.81175365077150E+0001 + 5.79817030226287E+0001 5.78462377133989E+0001 5.77111393872842E+0001 5.75764068562437E+0001 5.74420389369154E+0001 + 5.73080344505941E+0001 5.71743922232099E+0001 5.70411110853066E+0001 5.69081898720204E+0001 5.67756274230580E+0001 + 5.66434225826759E+0001 5.65115741996592E+0001 5.63800811273004E+0001 5.62489422233785E+0001 5.61181563501383E+0001 + 5.59877223742697E+0001 5.58576391668871E+0001 5.57279056035088E+0001 5.55985205640367E+0001 5.54694829327364E+0001 + 5.53407915982162E+0001 5.52124454534079E+0001 5.50844433955463E+0001 5.49567843261496E+0001 5.48294671509995E+0001 + 5.47024907801217E+0001 5.45758541277662E+0001 5.44495561123881E+0001 5.43235956566279E+0001 5.41979716872927E+0001 + 5.40726831353364E+0001 5.39477289358414E+0001 5.38231080279993E+0001 5.36988193550918E+0001 5.35748618644725E+0001 + 5.34512345075477E+0001 5.33279362397583E+0001 5.32049660205610E+0001 5.30823228134100E+0001 5.29600055857390E+0001 + 5.28380133089425E+0001 5.27163449583583E+0001 5.25949995132489E+0001 5.24739759567842E+0001 5.23532732760233E+0001 + 5.22328904618968E+0001 5.21128265091893E+0001 5.19930804165219E+0001 5.18736511863345E+0001 5.17545378248689E+0001 + 5.16357393421508E+0001 5.15172547519735E+0001 5.13990830718801E+0001 5.12812233231468E+0001 5.11636745307661E+0001 + 5.10464357234297E+0001 5.09295059335117E+0001 5.08128841970525E+0001 5.06965695537415E+0001 5.05805610469010E+0001 + 5.04648577234700E+0001 5.03494586339871E+0001 5.02343628325754E+0001 5.01195693769252E+0001 5.00050773282788E+0001 + 4.98908857514140E+0001 4.97769937146283E+0001 4.96634002897233E+0001 4.95501045519885E+0001 4.94371055801863E+0001 + 4.93244024565355E+0001 4.92119942666968E+0001 4.90998800997567E+0001 4.89880590482121E+0001 4.88765302079556E+0001 + 4.87652926782597E+0001 4.86543455617621E+0001 4.85436879644504E+0001 4.84333189956473E+0001 4.83232377679956E+0001 + 4.82134433974434E+0001 4.81039350032294E+0001 4.79947117078683E+0001 4.78857726371361E+0001 4.77771169200554E+0001 + 4.76687436888815E+0001 4.75606520790875E+0001 4.74528412293503E+0001 4.73453102815362E+0001 4.72380583806869E+0001 + 4.71310846750053E+0001 4.70243883158415E+0001 4.69179684498454E+0001 4.68118197728693E+0001 4.67059377784212E+0001 + 4.66003217754165E+0001 4.64949710743691E+0001 4.63898849873898E+0001 4.62850628281852E+0001 4.61805039120549E+0001 + 4.60762075558914E+0001 4.59721730781772E+0001 4.58683997989839E+0001 4.57648870399701E+0001 4.56616341243801E+0001 + 4.55586403770416E+0001 4.54559051243648E+0001 4.53534276943399E+0001 4.52512074165357E+0001 4.51492436220978E+0001 + 4.50475356437466E+0001 4.49460828157759E+0001 4.48448844740506E+0001 4.47439399560051E+0001 4.46432486006415E+0001 + 4.45428097485277E+0001 4.44426227417952E+0001 4.43426869241375E+0001 4.42430016408083E+0001 4.41435662386192E+0001 + 4.40443800659379E+0001 4.39454424726863E+0001 4.38467528103386E+0001 4.37483104319191E+0001 4.36501146920000E+0001 + 4.35521649467000E+0001 4.34544605536818E+0001 4.33570008721502E+0001 4.32597852628498E+0001 4.31628130880634E+0001 + 4.30660837116095E+0001 4.29695964988403E+0001 4.28733508166396E+0001 4.27773460334208E+0001 4.26815815191246E+0001 + 4.25860566452170E+0001 4.24907707846869E+0001 4.23957233120440E+0001 4.23009136033171E+0001 4.22063410360510E+0001 + 4.21120049893051E+0001 4.20179048436508E+0001 4.19240399811694E+0001 4.18304097854495E+0001 4.17370136415855E+0001 + 4.16438509361747E+0001 4.15509210573149E+0001 4.14582233946032E+0001 4.13657573391322E+0001 4.12735222834890E+0001 + 4.11815176217520E+0001 4.10897427494891E+0001 4.09981970637552E+0001 4.09068799630899E+0001 4.08157908475150E+0001 + 4.07249291185325E+0001 4.06342941791218E+0001 4.05438854337377E+0001 4.04537022883076E+0001 4.03637441502299E+0001 + 4.02740104283705E+0001 4.01845005330615E+0001 4.00952138760978E+0001 4.00061498707355E+0001 3.99173079316891E+0001 + 3.98286874751290E+0001 3.97402879186790E+0001 3.96521086814144E+0001 3.95641491838588E+0001 3.94764088479823E+0001 + 3.93888870971986E+0001 3.93015833563625E+0001 3.92144970517680E+0001 3.91276276111448E+0001 3.90409744636570E+0001 + 3.89545370398995E+0001 3.88683147718964E+0001 3.87823070930979E+0001 3.86965134383779E+0001 3.86109332440316E+0001 + 3.85255659477731E+0001 3.84404109887324E+0001 3.83554678074534E+0001 3.82707358458910E+0001 3.81862145474085E+0001 + 3.81019033567756E+0001 3.80178017201649E+0001 3.79339090851506E+0001 3.78502249007045E+0001 3.77667486171946E+0001 + 3.76834796863819E+0001 3.76004175614180E+0001 3.75175616968427E+0001 3.74349115485809E+0001 3.73524665739406E+0001 + 3.72702262316097E+0001 3.71881899816541E+0001 3.71063572855146E+0001 3.70247276060043E+0001 3.69433004073063E+0001 + 3.68620751549706E+0001 3.67810513159121E+0001 3.67002283584075E+0001 3.66196057520927E+0001 3.65391829679606E+0001 + 3.64589594783580E+0001 3.63789347569832E+0001 3.62991082788831E+0001 3.62194795204510E+0001 3.61400479594237E+0001 + 3.60608130748789E+0001 3.59817743472323E+0001 3.59029312582355E+0001 3.58242832909729E+0001 3.57458299298591E+0001 + 3.56675706606365E+0001 3.55895049703724E+0001 3.55116323474564E+0001 3.54339522815978E+0001 3.53564642638228E+0001 + 3.52791677864722E+0001 3.52020623431980E+0001 3.51251474289616E+0001 3.50484225400307E+0001 3.49718871739763E+0001 + 3.48955408296710E+0001 3.48193830072852E+0001 3.47434132082852E+0001 3.46676309354301E+0001 3.45920356927695E+0001 + 3.45166269856405E+0001 3.44414043206651E+0001 3.43663672057477E+0001 3.42915151500723E+0001 3.42168476640997E+0001 + 3.41423642595648E+0001 3.40680644494745E+0001 3.39939477481041E+0001 3.39200136709953E+0001 3.38462617349534E+0001 + 3.37726914580443E+0001 3.36993023595922E+0001 3.36260939601768E+0001 3.35530657816304E+0001 3.34802173470356E+0001 + 3.34075481807222E+0001 3.33350578082649E+0001 3.32627457564805E+0001 3.31906115534251E+0001 3.31186547283913E+0001 + 3.30468748119061E+0001 3.29752713357274E+0001 3.29038438328422E+0001 3.28325918374631E+0001 3.27615148850261E+0001 + 3.26906125121881E+0001 3.26198842568234E+0001 3.25493296580220E+0001 3.24789482560863E+0001 3.24087395925287E+0001 + 3.23387032100687E+0001 3.22688386526305E+0001 3.21991454653402E+0001 3.21296231945230E+0001 3.20602713877007E+0001 + 3.19910895935889E+0001 3.19220773620947E+0001 3.18532342443135E+0001 3.17845597925265E+0001 3.17160535601984E+0001 + 3.16477151019742E+0001 3.15795439736770E+0001 3.15115397323050E+0001 3.14437019360290E+0001 3.13760301441898E+0001 + 3.13085239172953E+0001 3.12411828170182E+0001 3.11740064061930E+0001 3.11069942488136E+0001 3.10401459100307E+0001 + 3.09734609561487E+0001 3.09069389546236E+0001 3.08405794740600E+0001 3.07743820842089E+0001 3.07083463559643E+0001 + 3.06424718613613E+0001 3.05767581735731E+0001 3.05112048669084E+0001 3.04458115168091E+0001 3.03805776998470E+0001 + 3.03155029937218E+0001 3.02505869772581E+0001 3.01858292304031E+0001 3.01212293342237E+0001 3.00567868709040E+0001 + 2.99925014237425E+0001 2.99283725771500E+0001 2.98643999166465E+0001 2.98005830288586E+0001 2.97369215015172E+0001 + 2.96734149234546E+0001 2.96100628846023E+0001 2.95468649759878E+0001 2.94838207897327E+0001 2.94209299190495E+0001 + 2.93581919582393E+0001 2.92956065026892E+0001 2.92331731488698E+0001 2.91708914943325E+0001 2.91087611377068E+0001 + 2.90467816786980E+0001 2.89849527180844E+0001 2.89232738577149E+0001 2.88617447005064E+0001 2.88003648504411E+0001 + 2.87391339125641E+0001 2.86780514929807E+0001 2.86171171988542E+0001 2.85563306384026E+0001 2.84956914208969E+0001 + 2.84351991566583E+0001 2.83748534570550E+0001 2.83146539345008E+0001 2.82546002024516E+0001 2.81946918754034E+0001 + 2.81349285688896E+0001 2.80753098994784E+0001 2.80158354847705E+0001 2.79565049433964E+0001 2.78973178950138E+0001 + 2.78382739603054E+0001 2.77793727609761E+0001 2.77206139197507E+0001 2.76619970603713E+0001 2.76035218075947E+0001 + 2.75451877871902E+0001 2.74869946259366E+0001 2.74289419516205E+0001 2.73710293930329E+0001 2.73132565799674E+0001 + 2.72556231432176E+0001 2.71981287145742E+0001 2.71407729268231E+0001 2.70835554137427E+0001 2.70264758101013E+0001 + 2.69695337516548E+0001 2.69127288751442E+0001 2.68560608182932E+0001 2.67995292198057E+0001 2.67431337193634E+0001 + 2.66868739576231E+0001 2.66307495762149E+0001 2.65747602177390E+0001 2.65189055257638E+0001 2.64631851448232E+0001 + 2.64075987204144E+0001 2.63521458989953E+0001 2.62968263279822E+0001 2.62416396557472E+0001 2.61865855316162E+0001 + 2.61316636058659E+0001 2.60768735297220E+0001 2.60222149553565E+0001 2.59676875358852E+0001 2.59132909253656E+0001 + 2.58590247787945E+0001 2.58048887521052E+0001 2.57508825021656E+0001 2.56970056867757E+0001 2.56432579646651E+0001 + 2.55896389954909E+0001 2.55361484398351E+0001 2.54827859592021E+0001 2.54295512160169E+0001 2.53764438736222E+0001 + 2.53234635962763E+0001 2.52706100491510E+0001 2.52178828983288E+0001 2.51652818108007E+0001 2.51128064544641E+0001 + 2.50604564981204E+0001 2.50082316114723E+0001 2.49561314651223E+0001 2.49041557305695E+0001 2.48523040802077E+0001 + 2.48005761873235E+0001 2.47489717260931E+0001 2.46974903715807E+0001 2.46461317997362E+0001 2.45948956873924E+0001 + 2.45437817122632E+0001 2.44927895529414E+0001 2.44419188888959E+0001 2.43911694004698E+0001 2.43405407688781E+0001 + 2.42900326762055E+0001 2.42396448054041E+0001 2.41893768402908E+0001 2.41392284655458E+0001 2.40891993667097E+0001 + 2.40392892301814E+0001 2.39894977432162E+0001 2.39398245939232E+0001 2.38902694712632E+0001 2.38408320650464E+0001 + 2.37915120659306E+0001 2.37423091654183E+0001 2.36932230558550E+0001 2.36442534304270E+0001 2.35953999831587E+0001 + 2.35466624089112E+0001 2.34980404033792E+0001 2.34495336630897E+0001 2.34011418853992E+0001 2.33528647684918E+0001 + 2.33047020113770E+0001 2.32566533138872E+0001 2.32087183766762E+0001 2.31608969012165E+0001 2.31131885897974E+0001 + 2.30655931455226E+0001 2.30181102723084E+0001 2.29707396748812E+0001 2.29234810587757E+0001 2.28763341303325E+0001 + 2.28292985966963E+0001 2.27823741658132E+0001 2.27355605464292E+0001 2.26888574480876E+0001 2.26422645811276E+0001 + 2.25957816566811E+0001 2.25494083866715E+0001 2.25031444838113E+0001 2.24569896616000E+0001 2.24109436343220E+0001 + 2.23650061170447E+0001 2.23191768256159E+0001 2.22734554766625E+0001 2.22278417875877E+0001 2.21823354765695E+0001 + 2.21369362625581E+0001 2.20916438652745E+0001 2.20464580052077E+0001 2.20013784036132E+0001 2.19564047825110E+0001 + 2.19115368646829E+0001 2.18667743736712E+0001 2.18221170337764E+0001 2.17775645700550E+0001 2.17331167083177E+0001 + 2.16887731751273E+0001 2.16445336977968E+0001 2.16003980043870E+0001 2.15563658237052E+0001 2.15124368853025E+0001 + 2.14686109194721E+0001 2.14248876572474E+0001 2.13812668303998E+0001 2.13377481714369E+0001 2.12943314136006E+0001 + 2.12510162908646E+0001 2.12078025379331E+0001 2.11646898902385E+0001 2.11216780839394E+0001 2.10787668559188E+0001 + 2.10359559437820E+0001 2.09932450858548E+0001 2.09506340211816E+0001 2.09081224895229E+0001 2.08657102313543E+0001 + 2.08233969878640E+0001 2.07811825009506E+0001 2.07390665132220E+0001 2.06970487679926E+0001 2.06551290092822E+0001 + 2.06133069818134E+0001 2.05715824310102E+0001 2.05299551029957E+0001 2.04884247445906E+0001 2.04469911033109E+0001 + 2.04056539273665E+0001 2.03644129656587E+0001 2.03232679677790E+0001 2.02822186840068E+0001 2.02412648653074E+0001 + 2.02004062633306E+0001 2.01596426304087E+0001 2.01189737195542E+0001 2.00783992844585E+0001 2.00379190794899E+0001 + 1.99975328596916E+0001 1.99572403807801E+0001 1.99170413991430E+0001 1.98769356718377E+0001 1.98369229565891E+0001 + 1.97970030117878E+0001 1.97571755964889E+0001 1.97174404704094E+0001 1.96777973939267E+0001 1.96382461280769E+0001 + 1.95987864345531E+0001 1.95594180757031E+0001 1.95201408145281E+0001 1.94809544146808E+0001 1.94418586404636E+0001 + 1.94028532568265E+0001 1.93639380293660E+0001 1.93251127243226E+0001 1.92863771085796E+0001 1.92477309496611E+0001 + 1.92091740157303E+0001 1.91707060755874E+0001 1.91323268986686E+0001 1.90940362550437E+0001 1.90558339154146E+0001 + 1.90177196511135E+0001 1.89796932341012E+0001 1.89417544369657E+0001 1.89039030329196E+0001 1.88661387957995E+0001 + 1.88284615000634E+0001 1.87908709207895E+0001 1.87533668336741E+0001 1.87159490150302E+0001 1.86786172417860E+0001 + 1.86413712914826E+0001 1.86042109422726E+0001 1.85671359729187E+0001 1.85301461627916E+0001 1.84932412918685E+0001 + 1.84564211407315E+0001 1.84196854905658E+0001 1.83830341231581E+0001 1.83464668208950E+0001 1.83099833667610E+0001 + 1.82735835443375E+0001 1.82372671378004E+0001 1.82010339319192E+0001 1.81648837120547E+0001 1.81288162641579E+0001 + 1.80928313747677E+0001 1.80569288310102E+0001 1.80211084205963E+0001 1.79853699318204E+0001 1.79497131535587E+0001 + 1.79141378752677E+0001 1.78786438869825E+0001 1.78432309793152E+0001 1.78078989434532E+0001 1.77726475711581E+0001 + 1.77374766547632E+0001 1.77023859871730E+0001 1.76673753618606E+0001 1.76324445728667E+0001 1.75975934147983E+0001 + 1.75628216828263E+0001 1.75281291726843E+0001 1.74935156806676E+0001 1.74589810036307E+0001 1.74245249389865E+0001 + 1.73901472847042E+0001 1.73558478393081E+0001 1.73216264018761E+0001 1.72874827720379E+0001 1.72534167499734E+0001 + 1.72194281364116E+0001 1.71855167326289E+0001 1.71516823404473E+0001 1.71179247622331E+0001 1.70842438008954E+0001 + 1.70506392598847E+0001 1.70171109431910E+0001 1.69836586553427E+0001 1.69502822014050E+0001 1.69169813869782E+0001 + 1.68837560181965E+0001 1.68506059017263E+0001 1.68175308447647E+0001 1.67845306550382E+0001 1.67516051408013E+0001 + 1.67187541108346E+0001 1.66859773744437E+0001 1.66532747414576E+0001 1.66206460222272E+0001 1.65880910276241E+0001 + 1.65556095690387E+0001 1.65232014583793E+0001 1.64908665080701E+0001 1.64586045310500E+0001 1.64264153407715E+0001 + 1.63942987511985E+0001 1.63622545768058E+0001 1.63302826325767E+0001 1.62983827340023E+0001 1.62665546970800E+0001 + 1.62347983383115E+0001 1.62031134747022E+0001 1.61714999237593E+0001 1.61399575034905E+0001 1.61084860324024E+0001 + 1.60770853294995E+0001 1.60457552142827E+0001 1.60144955067476E+0001 1.59833060273834E+0001 1.59521865971716E+0001 + 1.59211370375843E+0001 1.58901571705829E+0001 1.58592468186171E+0001 1.58284058046231E+0001 1.57976339520224E+0001 + 1.57669310847205E+0001 1.57362970271053E+0001 1.57057316040461E+0001 1.56752346408921E+0001 1.56448059634707E+0001 + 1.56144453980868E+0001 1.55841527715212E+0001 1.55539279110289E+0001 1.55237706443383E+0001 1.54936807996495E+0001 + 1.54636582056333E+0001 1.54337026914296E+0001 1.54038140866461E+0001 1.53739922213572E+0001 1.53442369261025E+0001 + 1.53145480318855E+0001 1.52849253701725E+0001 1.52553687728910E+0001 1.52258780724287E+0001 1.51964531016318E+0001 + 1.51670936938042E+0001 1.51377996827059E+0001 1.51085709025518E+0001 1.50794071880105E+0001 1.50503083742027E+0001 + 1.50212742967004E+0001 1.49923047915254E+0001 1.49633996951480E+0001 1.49345588444855E+0001 1.49057820769018E+0001 + 1.48770692302050E+0001 1.48484201426469E+0001 1.48198346529217E+0001 1.47913126001645E+0001 1.47628538239502E+0001 + 1.47344581642920E+0001 1.47061254616409E+0001 1.46778555568834E+0001 1.46496482913413E+0001 1.46215035067698E+0001 + 1.45934210453564E+0001 1.45654007497201E+0001 1.45374424629094E+0001 1.45095460284020E+0001 1.44817112901029E+0001 + 1.44539380923435E+0001 1.44262262798802E+0001 1.43985756978935E+0001 1.43709861919866E+0001 1.43434576081843E+0001 + 1.43159897929316E+0001 1.42885825930927E+0001 1.42612358559499E+0001 1.42339494292024E+0001 1.42067231609647E+0001 + 1.41795568997661E+0001 1.41524504945490E+0001 1.41254037946680E+0001 1.40984166498886E+0001 1.40714889103863E+0001 + 1.40446204267449E+0001 1.40178110499562E+0001 1.39910606314177E+0001 1.39643690229328E+0001 1.39377360767083E+0001 + 1.39111616453544E+0001 1.38846455818829E+0001 1.38581877397061E+0001 1.38317879726361E+0001 1.38054461348832E+0001 + 1.37791620810550E+0001 1.37529356661553E+0001 1.37267667455826E+0001 1.37006551751299E+0001 1.36746008109824E+0001 + 1.36486035097173E+0001 1.36226631283023E+0001 1.35967795240946E+0001 1.35709525548397E+0001 1.35451820786704E+0001 + 1.35194679541057E+0001 1.34938100400498E+0001 1.34682081957907E+0001 1.34426622809993E+0001 1.34171721557285E+0001 + 1.33917376804120E+0001 1.33663587158628E+0001 1.33410351232730E+0001 1.33157667642120E+0001 1.32905535006254E+0001 + 1.32653951948348E+0001 1.32402917095355E+0001 1.32152429077967E+0001 1.31902486530592E+0001 1.31653088091356E+0001 + 1.31404232402081E+0001 1.31155918108283E+0001 1.30908143859157E+0001 1.30660908307568E+0001 1.30414210110042E+0001 + 1.30168047926752E+0001 1.29922420421512E+0001 1.29677326261762E+0001 1.29432764118564E+0001 1.29188732666585E+0001 + 1.28945230584091E+0001 1.28702256552936E+0001 1.28459809258552E+0001 1.28217887389937E+0001 1.27976489639647E+0001 + 1.27735614703786E+0001 1.27495261281995E+0001 1.27255428077442E+0001 1.27016113796812E+0001 1.26777317150298E+0001 + 1.26539036851591E+0001 1.26301271617867E+0001 1.26064020169783E+0001 1.25827281231461E+0001 1.25591053530483E+0001 + 1.25355335797878E+0001 1.25120126768114E+0001 1.24885425179089E+0001 1.24651229772117E+0001 1.24417539291924E+0001 + 1.24184352486634E+0001 1.23951668107763E+0001 1.23719484910206E+0001 1.23487801652229E+0001 1.23256617095461E+0001 + 1.23025930004881E+0001 1.22795739148811E+0001 1.22566043298907E+0001 1.22336841230147E+0001 1.22108131720823E+0001 + 1.21879913552534E+0001 1.21652185510172E+0001 1.21424946381916E+0001 1.21198194959223E+0001 1.20971930036815E+0001 + 1.20746150412673E+0001 1.20520854888029E+0001 1.20296042267353E+0001 1.20071711358346E+0001 1.19847860971930E+0001 + 1.19624489922241E+0001 1.19401597026616E+0001 1.19179181105589E+0001 1.18957240982878E+0001 1.18735775485376E+0001 + 1.18514783443144E+0001 1.18294263689403E+0001 1.18074215060521E+0001 1.17854636396007E+0001 1.17635526538502E+0001 + 1.17416884333770E+0001 1.17198708630688E+0001 1.16980998281237E+0001 1.16763752140498E+0001 1.16546969066636E+0001 + 1.16330647920895E+0001 1.16114787567591E+0001 1.15899386874099E+0001 1.15684444710848E+0001 1.15469959951312E+0001 + 1.15255931471999E+0001 1.15042358152443E+0001 1.14829238875199E+0001 1.14616572525830E+0001 1.14404357992899E+0001 + 1.14192594167964E+0001 1.13981279945567E+0001 1.13770414223225E+0001 1.13559995901423E+0001 1.13350023883604E+0001 + 1.13140497076163E+0001 1.12931414388437E+0001 1.12722774732696E+0001 1.12514577024137E+0001 1.12306820180873E+0001 + 1.12099503123928E+0001 1.11892624777225E+0001 1.11686184067582E+0001 1.11480179924699E+0001 1.11274611281154E+0001 + 1.11069477072392E+0001 1.10864776236721E+0001 1.10660507715298E+0001 1.10456670452126E+0001 1.10253263394041E+0001 + 1.10050285490711E+0001 1.09847735694622E+0001 1.09645612961071E+0001 1.09443916248160E+0001 1.09242644516788E+0001 + 1.09041796730640E+0001 1.08841371856184E+0001 1.08641368862658E+0001 1.08441786722067E+0001 1.08242624409170E+0001 + 1.08043880901478E+0001 1.07845555179241E+0001 1.07647646225443E+0001 1.07450153025795E+0001 1.07253074568725E+0001 + 1.07056409845371E+0001 1.06860157849574E+0001 1.06664317577871E+0001 1.06468888029487E+0001 1.06273868206324E+0001 + 1.06079257112959E+0001 1.05885053756632E+0001 1.05691257147243E+0001 1.05497866297338E+0001 1.05304880222108E+0001 + 1.05112297939378E+0001 1.04920118469601E+0001 1.04728340835849E+0001 1.04536964063805E+0001 1.04345987181761E+0001 + 1.04155409220605E+0001 1.03965229213813E+0001 1.03775446197449E+0001 1.03586059210149E+0001 1.03397067293119E+0001 + 1.03208469490127E+0001 1.03020264847493E+0001 1.02832452414086E+0001 1.02645031241314E+0001 1.02458000383118E+0001 + 1.02271358895964E+0001 1.02085105838835E+0001 1.01899240273227E+0001 1.01713761263140E+0001 1.01528667875070E+0001 + 1.01343959178003E+0001 1.01159634243411E+0001 1.00975692145236E+0001 1.00792131959894E+0001 1.00608952766262E+0001 + 1.00426153645671E+0001 1.00243733681900E+0001 1.00061691961170E+0001 9.98800275721367E+0000 9.96987396058820E+0000 + 9.95178271559098E+0000 9.93372893181370E+0000 9.91571251908879E+0000 9.89773338748866E+0000 9.87979144732512E+0000 + 9.86188660914860E+0000 9.84401878374756E+0000 9.82618788214779E+0000 9.80839381561174E+0000 9.79063649563783E+0000 + 9.77291583395982E+0000 9.75523174254614E+0000 9.73758413359924E+0000 9.71997291955487E+0000 9.70239801308152E+0000 + 9.68485932707967E+0000 9.66735677468119E+0000 9.64989026924870E+0000 9.63245972437487E+0000 9.61506505388181E+0000 + 9.59770617182041E+0000 9.58038299246972E+0000 9.56309543033625E+0000 9.54584340015341E+0000 9.52862681688078E+0000 + 9.51144559570355E+0000 9.49429965203189E+0000 9.47718890150022E+0000 9.46011325996667E+0000 9.44307264351245E+0000 + 9.42606696844116E+0000 9.40909615127818E+0000 9.39216010877016E+0000 9.37525875788424E+0000 9.35839201580744E+0000 + 9.34155979994621E+0000 9.32476202792562E+0000 9.30799861758884E+0000 9.29126948699654E+0000 9.27457455442624E+0000 + 9.25791373837168E+0000 9.24128695754226E+0000 9.22469413086241E+0000 9.20813517747101E+0000 9.19161001672078E+0000 + 9.17511856817764E+0000 9.15866075162012E+0000 9.14223648703886E+0000 9.12584569463585E+0000 9.10948829482395E+0000 + 9.09316420822633E+0000 9.07687335567574E+0000 9.06061565821404E+0000 9.04439103709156E+0000 9.02819941376656E+0000 + 9.01204070990455E+0000 8.99591484737786E+0000 8.97982174826492E+0000 8.96376133484974E+0000 8.94773352962133E+0000 + 8.93173825527313E+0000 8.91577543470243E+0000 8.89984499100978E+0000 8.88394684749847E+0000 8.86808092767390E+0000 + 8.85224715524305E+0000 8.83644545411391E+0000 8.82067574839490E+0000 8.80493796239434E+0000 8.78923202061985E+0000 + 8.77355784777784E+0000 8.75791536877291E+0000 8.74230450870728E+0000 8.72672519288031E+0000 8.71117734678789E+0000 + 8.69566089612188E+0000 8.68017576676962E+0000 8.66472188481330E+0000 8.64929917652952E+0000 8.63390756838862E+0000 + 8.61854698705425E+0000 8.60321735938273E+0000 8.58791861242266E+0000 8.57265067341417E+0000 8.55741346978856E+0000 + 8.54220692916769E+0000 8.52703097936346E+0000 8.51188554837727E+0000 8.49677056439951E+0000 8.48168595580902E+0000 + 8.46663165117253E+0000 8.45160757924420E+0000 8.43661366896505E+0000 8.42164984946242E+0000 8.40671605004954E+0000 + 8.39181220022490E+0000 8.37693822967179E+0000 8.36209406825776E+0000 8.34727964603416E+0000 8.33249489323552E+0000 + 8.31773974027917E+0000 8.30301411776463E+0000 8.28831795647312E+0000 8.27365118736708E+0000 8.25901374158965E+0000 + 8.24440555046416E+0000 8.22982654549363E+0000 8.21527665836027E+0000 8.20075582092498E+0000 8.18626396522686E+0000 + 8.17180102348267E+0000 8.15736692808640E+0000 8.14296161160873E+0000 8.12858500679654E+0000 8.11423704657245E+0000 + 8.09991766403428E+0000 8.08562679245460E+0000 8.07136436528021E+0000 8.05713031613174E+0000 8.04292457880302E+0000 + 8.02874708726071E+0000 8.01459777564381E+0000 8.00047657826311E+0000 7.98638342960078E+0000 7.97231826430987E+0000 + 7.95828101721382E+0000 7.94427162330600E+0000 7.93029001774926E+0000 7.91633613587539E+0000 7.90240991318470E+0000 + 7.88851128534553E+0000 7.87464018819388E+0000 7.86079655773274E+0000 7.84698033013181E+0000 7.83319144172694E+0000 + 7.81942982901971E+0000 7.80569542867694E+0000 7.79198817753027E+0000 7.77830801257566E+0000 7.76465487097292E+0000 + 7.75102869004534E+0000 7.73742940727912E+0000 7.72385696032301E+0000 7.71031128698783E+0000 7.69679232524597E+0000 + 7.68330001323105E+0000 7.66983428923732E+0000 7.65639509171937E+0000 7.64298235929155E+0000 7.62959603072767E+0000 + 7.61623604496041E+0000 7.60290234108095E+0000 7.58959485833856E+0000 7.57631353614008E+0000 7.56305831404955E+0000 + 7.54982913178778E+0000 7.53662592923182E+0000 7.52344864641465E+0000 7.51029722352467E+0000 7.49717160090527E+0000 + 7.48407171905442E+0000 7.47099751862429E+0000 7.45794894042070E+0000 7.44492592540282E+0000 7.43192841468264E+0000 + 7.41895634952465E+0000 7.40600967134530E+0000 7.39308832171271E+0000 7.38019224234614E+0000 7.36732137511561E+0000 + 7.35447566204149E+0000 7.34165504529410E+0000 7.32885946719324E+0000 7.31608887020782E+0000 7.30334319695546E+0000 + 7.29062239020199E+0000 7.27792639286118E+0000 7.26525514799420E+0000 7.25260859880928E+0000 7.23998668866130E+0000 + 7.22738936105135E+0000 7.21481655962637E+0000 7.20226822817871E+0000 7.18974431064574E+0000 7.17724475110947E+0000 + 7.16476949379610E+0000 7.15231848307567E+0000 7.13989166346166E+0000 7.12748897961054E+0000 7.11511037632144E+0000 + 7.10275579853571E+0000 7.09042519133657E+0000 7.07811849994866E+0000 7.06583566973772E+0000 7.05357664621014E+0000 + 7.04134137501257E+0000 7.02912980193160E+0000 7.01694187289331E+0000 7.00477753396289E+0000 6.99263673134432E+0000 + 6.98051941137989E+0000 6.96842552054987E+0000 6.95635500547215E+0000 6.94430781290181E+0000 6.93228388973078E+0000 + 6.92028318298746E+0000 6.90830563983631E+0000 6.89635120757752E+0000 6.88441983364660E+0000 6.87251146561401E+0000 + 6.86062605118481E+0000 6.84876353819831E+0000 6.83692387462763E+0000 6.82510700857936E+0000 6.81331288829323E+0000 + 6.80154146214170E+0000 6.78979267862960E+0000 6.77806648639382E+0000 6.76636283420284E+0000 6.75468167095647E+0000 + 6.74302294568543E+0000 6.73138660755101E+0000 6.71977260584473E+0000 6.70818088998790E+0000 6.69661140953139E+0000 + 6.68506411415518E+0000 6.67353895366800E+0000 6.66203587800706E+0000 6.65055483723761E+0000 6.63909578155264E+0000 + 6.62765866127248E+0000 6.61624342684452E+0000 6.60485002884280E+0000 6.59347841796768E+0000 6.58212854504550E+0000 + 6.57080036102825E+0000 6.55949381699317E+0000 6.54820886414248E+0000 6.53694545380297E+0000 6.52570353742569E+0000 + 6.51448306658562E+0000 6.50328399298130E+0000 6.49210626843451E+0000 6.48094984488995E+0000 6.46981467441484E+0000 + 6.45870070919866E+0000 6.44760790155276E+0000 6.43653620391004E+0000 6.42548556882467E+0000 6.41445594897166E+0000 + 6.40344729714659E+0000 6.39245956626527E+0000 6.38149270936341E+0000 6.37054667959629E+0000 6.35962143023845E+0000 + 6.34871691468333E+0000 6.33783308644296E+0000 6.32696989914764E+0000 6.31612730654561E+0000 6.30530526250272E+0000 + 6.29450372100215E+0000 6.28372263614403E+0000 6.27296196214516E+0000 6.26222165333867E+0000 6.25150166417370E+0000 + 6.24080194921511E+0000 6.23012246314315E+0000 6.21946316075314E+0000 6.20882399695512E+0000 6.19820492677362E+0000 + 6.18760590534729E+0000 6.17702688792855E+0000 6.16646782988341E+0000 6.15592868669101E+0000 6.14540941394342E+0000 + 6.13490996734525E+0000 6.12443030271342E+0000 6.11397037597680E+0000 6.10353014317592E+0000 6.09310956046266E+0000 + 6.08270858409998E+0000 6.07232717046155E+0000 6.06196527603152E+0000 6.05162285740416E+0000 6.04129987128362E+0000 + 6.03099627448356E+0000 6.02071202392691E+0000 6.01044707664554E+0000 6.00020138977997E+0000 5.98997492057910E+0000 + 5.97976762639987E+0000 5.96957946470699E+0000 5.95941039307265E+0000 5.94926036917622E+0000 5.93912935080397E+0000 + 5.92901729584874E+0000 5.91892416230972E+0000 5.90884990829207E+0000 5.89879449200674E+0000 5.88875787177007E+0000 + 5.87874000600360E+0000 5.86874085323369E+0000 5.85876037209135E+0000 5.84879852131182E+0000 5.83885525973444E+0000 + 5.82893054630222E+0000 5.81902434006164E+0000 5.80913660016236E+0000 5.79926728585693E+0000 5.78941635650050E+0000 + 5.77958377155060E+0000 5.76976949056676E+0000 5.75997347321031E+0000 5.75019567924410E+0000 5.74043606853217E+0000 + 5.73069460103955E+0000 5.72097123683195E+0000 5.71126593607545E+0000 5.70157865903629E+0000 5.69190936608057E+0000 + 5.68225801767397E+0000 5.67262457438151E+0000 5.66300899686725E+0000 5.65341124589404E+0000 5.64383128232324E+0000 + 5.63426906711448E+0000 5.62472456132532E+0000 5.61519772611109E+0000 5.60568852272458E+0000 5.59619691251571E+0000 + 5.58672285693140E+0000 5.57726631751517E+0000 5.56782725590699E+0000 5.55840563384294E+0000 5.54900141315500E+0000 + 5.53961455577077E+0000 5.53024502371323E+0000 5.52089277910042E+0000 5.51155778414525E+0000 5.50224000115526E+0000 + 5.49293939253229E+0000 5.48365592077225E+0000 5.47438954846491E+0000 5.46514023829362E+0000 5.45590795303500E+0000 + 5.44669265555880E+0000 5.43749430882755E+0000 5.42831287589637E+0000 5.41914831991270E+0000 5.41000060411600E+0000 + 5.40086969183764E+0000 5.39175554650048E+0000 5.38265813161875E+0000 5.37357741079774E+0000 5.36451334773360E+0000 + 5.35546590621305E+0000 5.34643505011315E+0000 5.33742074340108E+0000 5.32842295013387E+0000 5.31944163445816E+0000 + 5.31047676060999E+0000 5.30152829291450E+0000 5.29259619578575E+0000 5.28368043372645E+0000 5.27478097132772E+0000 + 5.26589777326889E+0000 5.25703080431718E+0000 5.24818002932756E+0000 5.23934541324244E+0000 5.23052692109149E+0000 + 5.22172451799134E+0000 5.21293816914545E+0000 5.20416783984375E+0000 5.19541349546250E+0000 5.18667510146404E+0000 + 5.17795262339648E+0000 5.16924602689364E+0000 5.16055527767463E+0000 5.15188034154375E+0000 5.14322118439021E+0000 + 5.13457777218789E+0000 5.12595007099517E+0000 5.11733804695463E+0000 5.10874166629289E+0000 5.10016089532035E+0000 + 5.09159570043094E+0000 5.08304604810197E+0000 5.07451190489382E+0000 5.06599323744981E+0000 5.05749001249587E+0000 + 5.04900219684043E+0000 5.04052975737409E+0000 5.03207266106953E+0000 5.02363087498114E+0000 5.01520436624490E+0000 + 5.00679310207818E+0000 4.99839704977941E+0000 4.99001617672799E+0000 4.98165045038399E+0000 4.97329983828797E+0000 + 4.96496430806073E+0000 4.95664382740316E+0000 4.94833836409596E+0000 4.94004788599946E+0000 4.93177236105341E+0000 + 4.92351175727672E+0000 4.91526604276735E+0000 4.90703518570196E+0000 4.89881915433583E+0000 4.89061791700259E+0000 + 4.88243144211398E+0000 4.87425969815972E+0000 4.86610265370722E+0000 4.85796027740142E+0000 4.84983253796460E+0000 + 4.84171940419612E+0000 4.83362084497226E+0000 4.82553682924598E+0000 4.81746732604674E+0000 4.80941230448029E+0000 + 4.80137173372846E+0000 4.79334558304898E+0000 4.78533382177522E+0000 4.77733641931608E+0000 4.76935334515568E+0000 + 4.76138456885327E+0000 4.75343006004294E+0000 4.74548978843346E+0000 4.73756372380811E+0000 4.72965183602441E+0000 + 4.72175409501398E+0000 4.71387047078233E+0000 4.70600093340864E+0000 4.69814545304561E+0000 4.69030399991920E+0000 + 4.68247654432851E+0000 4.67466305664551E+0000 4.66686350731493E+0000 4.65907786685396E+0000 4.65130610585217E+0000 + 4.64354819497126E+0000 4.63580410494482E+0000 4.62807380657827E+0000 4.62035727074852E+0000 4.61265446840392E+0000 + 4.60496537056394E+0000 4.59728994831907E+0000 4.58962817283062E+0000 4.58198001533050E+0000 4.57434544712105E+0000 + 4.56672443957484E+0000 4.55911696413454E+0000 4.55152299231264E+0000 4.54394249569136E+0000 4.53637544592238E+0000 + 4.52882181472671E+0000 4.52128157389451E+0000 4.51375469528488E+0000 4.50624115082567E+0000 4.49874091251334E+0000 + 4.49125395241274E+0000 4.48378024265694E+0000 4.47631975544706E+0000 4.46887246305207E+0000 4.46143833780864E+0000 + 4.45401735212093E+0000 4.44660947846040E+0000 4.43921468936571E+0000 4.43183295744245E+0000 4.42446425536302E+0000 + 4.41710855586641E+0000 4.40976583175806E+0000 4.40243605590969E+0000 4.39511920125909E+0000 4.38781524080998E+0000 + 4.38052414763179E+0000 4.37324589485953E+0000 4.36598045569363E+0000 4.35872780339969E+0000 4.35148791130841E+0000 + 4.34426075281530E+0000 4.33704630138064E+0000 4.32984453052922E+0000 4.32265541385019E+0000 4.31547892499688E+0000 + 4.30831503768667E+0000 4.30116372570079E+0000 4.29402496288414E+0000 4.28689872314517E+0000 4.27978498045566E+0000 + 4.27268370885058E+0000 4.26559488242793E+0000 4.25851847534853E+0000 4.25145446183593E+0000 4.24440281617618E+0000 + 4.23736351271769E+0000 4.23033652587108E+0000 4.22332183010895E+0000 4.21631939996584E+0000 4.20932921003792E+0000 + 4.20235123498297E+0000 4.19538544952011E+0000 4.18843182842967E+0000 4.18149034655308E+0000 4.17456097879261E+0000 + 4.16764370011133E+0000 4.16073848553284E+0000 4.15384531014118E+0000 4.14696414908063E+0000 4.14009497755561E+0000 + 4.13323777083044E+0000 4.12639250422925E+0000 4.11955915313580E+0000 4.11273769299331E+0000 4.10592809930435E+0000 + 4.09913034763058E+0000 4.09234441359276E+0000 4.08557027287042E+0000 4.07880790120184E+0000 4.07205727438380E+0000 + 4.06531836827151E+0000 4.05859115877841E+0000 4.05187562187599E+0000 4.04517173359372E+0000 4.03847947001879E+0000 + 4.03179880729609E+0000 4.02512972162793E+0000 4.01847218927398E+0000 4.01182618655108E+0000 4.00519168983308E+0000 + 3.99856867555073E+0000 3.99195712019151E+0000 3.98535700029945E+0000 3.97876829247507E+0000 3.97219097337512E+0000 + 3.96562501971252E+0000 3.95907040825616E+0000 3.95252711583080E+0000 3.94599511931690E+0000 3.93947439565043E+0000 + 3.93296492182283E+0000 3.92646667488076E+0000 3.91997963192602E+0000 3.91350377011537E+0000 3.90703906666042E+0000 + 3.90058549882747E+0000 3.89414304393734E+0000 3.88771167936529E+0000 3.88129138254082E+0000 3.87488213094755E+0000 + 3.86848390212309E+0000 3.86209667365889E+0000 3.85572042320009E+0000 3.84935512844537E+0000 3.84300076714689E+0000 + 3.83665731711002E+0000 3.83032475619332E+0000 3.82400306230831E+0000 3.81769221341943E+0000 3.81139218754380E+0000 + 3.80510296275114E+0000 3.79882451716362E+0000 3.79255682895576E+0000 3.78629987635421E+0000 3.78005363763771E+0000 + 3.77381809113688E+0000 3.76759321523411E+0000 3.76137898836345E+0000 3.75517538901044E+0000 3.74898239571200E+0000 + 3.74279998705630E+0000 3.73662814168258E+0000 3.73046683828108E+0000 3.72431605559286E+0000 3.71817577240972E+0000 + 3.71204596757399E+0000 3.70592661997847E+0000 3.69981770856630E+0000 3.69371921233073E+0000 3.68763111031514E+0000 + 3.68155338161280E+0000 3.67548600536674E+0000 3.66942896076973E+0000 3.66338222706399E+0000 3.65734578354123E+0000 + 3.65131960954236E+0000 3.64530368445751E+0000 3.63929798772578E+0000 3.63330249883519E+0000 3.62731719732255E+0000 + 3.62134206277327E+0000 3.61537707482131E+0000 3.60942221314901E+0000 3.60347745748697E+0000 3.59754278761396E+0000 + 3.59161818335673E+0000 3.58570362458995E+0000 3.57979909123605E+0000 3.57390456326509E+0000 3.56802002069469E+0000 + 3.56214544358984E+0000 3.55628081206281E+0000 3.55042610627301E+0000 3.54458130642694E+0000 3.53874639277794E+0000 + 3.53292134562619E+0000 3.52710614531850E+0000 3.52130077224828E+0000 3.51550520685531E+0000 3.50971942962572E+0000 + 3.50394342109181E+0000 3.49817716183197E+0000 3.49242063247050E+0000 3.48667381367757E+0000 3.48093668616906E+0000 + 3.47520923070643E+0000 3.46949142809662E+0000 3.46378325919195E+0000 3.45808470488997E+0000 3.45239574613335E+0000 + 3.44671636390978E+0000 3.44104653925187E+0000 3.43538625323696E+0000 3.42973548698708E+0000 3.42409422166883E+0000 + 3.41846243849320E+0000 3.41284011871554E+0000 3.40722724363539E+0000 3.40162379459638E+0000 3.39602975298610E+0000 + 3.39044510023605E+0000 3.38486981782146E+0000 3.37930388726118E+0000 3.37374729011763E+0000 3.36820000799661E+0000 + 3.36266202254724E+0000 3.35713331546183E+0000 3.35161386847576E+0000 3.34610366336742E+0000 3.34060268195803E+0000 + 3.33511090611155E+0000 3.32962831773460E+0000 3.32415489877634E+0000 3.31869063122834E+0000 3.31323549712447E+0000 + 3.30778947854083E+0000 3.30235255759560E+0000 3.29692471644897E+0000 3.29150593730297E+0000 3.28609620240144E+0000 + 3.28069549402988E+0000 3.27530379451533E+0000 3.26992108622632E+0000 3.26454735157268E+0000 3.25918257300550E+0000 + 3.25382673301703E+0000 3.24847981414051E+0000 3.24314179895013E+0000 3.23781267006089E+0000 3.23249241012851E+0000 + 3.22718100184931E+0000 3.22187842796012E+0000 3.21658467123818E+0000 3.21129971450104E+0000 3.20602354060642E+0000 + 3.20075613245215E+0000 3.19549747297604E+0000 3.19024754515581E+0000 3.18500633200895E+0000 3.17977381659263E+0000 + 3.17454998200362E+0000 3.16933481137816E+0000 3.16412828789187E+0000 3.15893039475967E+0000 3.15374111523564E+0000 + 3.14856043261295E+0000 3.14338833022375E+0000 3.13822479143906E+0000 3.13306979966870E+0000 3.12792333836116E+0000 + 3.12278539100352E+0000 3.11765594112134E+0000 3.11253497227857E+0000 3.10742246807746E+0000 3.10231841215843E+0000 + 3.09722278820001E+0000 3.09213557991872E+0000 3.08705677106900E+0000 3.08198634544306E+0000 3.07692428687084E+0000 + 3.07187057921988E+0000 3.06682520639526E+0000 3.06178815233944E+0000 3.05675940103222E+0000 3.05173893649067E+0000 + 3.04672674276892E+0000 3.04172280395821E+0000 3.03672710418668E+0000 3.03173962761933E+0000 3.02676035845794E+0000 + 3.02178928094093E+0000 3.01682637934331E+0000 3.01187163797654E+0000 3.00692504118851E+0000 3.00198657336335E+0000 + 2.99705621892143E+0000 2.99213396231922E+0000 2.98721978804919E+0000 2.98231368063976E+0000 2.97741562465515E+0000 + 2.97252560469537E+0000 2.96764360539603E+0000 2.96276961142835E+0000 2.95790360749898E+0000 2.95304557834998E+0000 + 2.94819550875869E+0000 2.94335338353765E+0000 2.93851918753450E+0000 2.93369290563194E+0000 2.92887452274757E+0000 + 2.92406402383386E+0000 2.91926139387800E+0000 2.91446661790189E+0000 2.90967968096200E+0000 2.90490056814927E+0000 + 2.90012926458909E+0000 2.89536575544112E+0000 2.89061002589929E+0000 2.88586206119166E+0000 2.88112184658033E+0000 + 2.87638936736141E+0000 2.87166460886489E+0000 2.86694755645452E+0000 2.86223819552782E+0000 2.85753651151589E+0000 + 2.85284248988341E+0000 2.84815611612851E+0000 2.84347737578269E+0000 2.83880625441073E+0000 2.83414273761065E+0000 + 2.82948681101356E+0000 2.82483846028361E+0000 2.82019767111792E+0000 2.81556442924650E+0000 2.81093872043209E+0000 + 2.80632053047019E+0000 2.80170984518890E+0000 2.79710665044886E+0000 2.79251093214318E+0000 2.78792267619733E+0000 + 2.78334186856909E+0000 2.77876849524843E+0000 2.77420254225749E+0000 2.76964399565042E+0000 2.76509284151337E+0000 + 2.76054906596436E+0000 2.75601265515323E+0000 2.75148359526154E+0000 2.74696187250250E+0000 2.74244747312090E+0000 + 2.73794038339300E+0000 2.73344058962647E+0000 2.72894807816034E+0000 2.72446283536484E+0000 2.71998484764143E+0000 + 2.71551410142262E+0000 2.71105058317195E+0000 2.70659427938391E+0000 2.70214517658382E+0000 2.69770326132781E+0000 + 2.69326852020270E+0000 2.68884093982594E+0000 2.68442050684552E+0000 2.68000720793993E+0000 2.67560102981803E+0000 + 2.67120195921899E+0000 2.66680998291227E+0000 2.66242508769745E+0000 2.65804726040422E+0000 2.65367648789229E+0000 + 2.64931275705129E+0000 2.64495605480075E+0000 2.64060636808995E+0000 2.63626368389791E+0000 2.63192798923329E+0000 + 2.62759927113430E+0000 2.62327751666865E+0000 2.61896271293347E+0000 2.61465484705524E+0000 2.61035390618967E+0000 + 2.60605987752172E+0000 2.60177274826545E+0000 2.59749250566396E+0000 2.59321913698933E+0000 2.58895262954256E+0000 + 2.58469297065345E+0000 2.58044014768061E+0000 2.57619414801127E+0000 2.57195495906133E+0000 2.56772256827521E+0000 + 2.56349696312580E+0000 2.55927813111441E+0000 2.55506605977063E+0000 2.55086073665237E+0000 2.54666214934569E+0000 + 2.54247028546477E+0000 2.53828513265184E+0000 2.53410667857710E+0000 2.52993491093867E+0000 2.52576981746250E+0000 + 2.52161138590228E+0000 2.51745960403943E+0000 2.51331445968299E+0000 2.50917594066955E+0000 2.50504403486318E+0000 + 2.50091873015538E+0000 2.49680001446501E+0000 2.49268787573821E+0000 2.48858230194832E+0000 2.48448328109582E+0000 + 2.48039080120831E+0000 2.47630485034035E+0000 2.47222541657349E+0000 2.46815248801612E+0000 2.46408605280344E+0000 + 2.46002609909742E+0000 2.45597261508667E+0000 2.45192558898644E+0000 2.44788500903851E+0000 2.44385086351111E+0000 + 2.43982314069892E+0000 2.43580182892293E+0000 2.43178691653042E+0000 2.42777839189489E+0000 2.42377624341597E+0000 + 2.41978045951939E+0000 2.41579102865687E+0000 2.41180793930610E+0000 2.40783117997065E+0000 2.40386073917991E+0000 + 2.39989660548904E+0000 2.39593876747886E+0000 2.39198721375585E+0000 2.38804193295206E+0000 2.38410291372499E+0000 + 2.38017014475763E+0000 2.37624361475833E+0000 2.37232331246074E+0000 2.36840922662376E+0000 2.36450134603147E+0000 + 2.36059965949310E+0000 2.35670415584290E+0000 2.35281482394014E+0000 2.34893165266901E+0000 2.34505463093859E+0000 + 2.34118374768275E+0000 2.33731899186013E+0000 2.33346035245404E+0000 2.32960781847240E+0000 2.32576137894775E+0000 + 2.32192102293707E+0000 2.31808673952182E+0000 2.31425851780782E+0000 2.31043634692523E+0000 2.30662021602844E+0000 + 2.30281011429608E+0000 2.29900603093088E+0000 2.29520795515967E+0000 2.29141587623330E+0000 2.28762978342656E+0000 + 2.28384966603817E+0000 2.28007551339066E+0000 2.27630731483036E+0000 2.27254505972732E+0000 2.26878873747524E+0000 + 2.26503833749144E+0000 2.26129384921678E+0000 2.25755526211561E+0000 2.25382256567569E+0000 2.25009574940817E+0000 + 2.24637480284751E+0000 2.24265971555142E+0000 2.23895047710080E+0000 2.23524707709970E+0000 2.23154950517525E+0000 + 2.22785775097760E+0000 2.22417180417988E+0000 2.22049165447810E+0000 2.21681729159115E+0000 2.21314870526071E+0000 + 2.20948588525119E+0000 2.20582882134970E+0000 2.20217750336597E+0000 2.19853192113230E+0000 2.19489206450348E+0000 + 2.19125792335681E+0000 2.18762948759196E+0000 2.18400674713096E+0000 2.18038969191812E+0000 2.17677831191998E+0000 + 2.17317259712530E+0000 2.16957253754493E+0000 2.16597812321181E+0000 2.16238934418089E+0000 2.15880619052909E+0000 + 2.15522865235523E+0000 2.15165671977999E+0000 2.14809038294584E+0000 2.14452963201701E+0000 2.14097445717942E+0000 + 2.13742484864062E+0000 2.13388079662976E+0000 2.13034229139749E+0000 2.12680932321598E+0000 2.12328188237879E+0000 + 2.11975995920087E+0000 2.11624354401849E+0000 2.11273262718918E+0000 2.10922719909168E+0000 2.10572725012590E+0000 + 2.10223277071284E+0000 2.09874375129460E+0000 2.09526018233422E+0000 2.09178205431576E+0000 2.08830935774413E+0000 + 2.08484208314511E+0000 2.08138022106527E+0000 2.07792376207194E+0000 2.07447269675313E+0000 2.07102701571750E+0000 + 2.06758670959430E+0000 2.06415176903332E+0000 2.06072218470485E+0000 2.05729794729961E+0000 2.05387904752870E+0000 + 2.05046547612360E+0000 2.04705722383602E+0000 2.04365428143796E+0000 2.04025663972158E+0000 2.03686428949920E+0000 + 2.03347722160320E+0000 2.03009542688602E+0000 2.02671889622010E+0000 2.02334762049779E+0000 2.01998159063136E+0000 + 2.01662079755291E+0000 2.01326523221433E+0000 2.00991488558726E+0000 2.00656974866304E+0000 2.00322981245264E+0000 + 1.99989506798667E+0000 1.99656550631522E+0000 1.99324111850795E+0000 1.98992189565395E+0000 1.98660782886169E+0000 + 1.98329890925906E+0000 1.97999512799318E+0000 1.97669647623051E+0000 1.97340294515666E+0000 1.97011452597646E+0000 + 1.96683120991383E+0000 1.96355298821177E+0000 1.96027985213232E+0000 1.95701179295647E+0000 1.95374880198417E+0000 + 1.95049087053426E+0000 1.94723798994438E+0000 1.94399015157102E+0000 1.94074734678935E+0000 1.93750956699331E+0000 + 1.93427680359545E+0000 1.93104904802693E+0000 1.92782629173750E+0000 1.92460852619540E+0000 1.92139574288735E+0000 + 1.91818793331850E+0000 1.91498508901238E+0000 1.91178720151085E+0000 1.90859426237406E+0000 1.90540626318042E+0000 + 1.90222319552651E+0000 1.89904505102710E+0000 1.89587182131505E+0000 1.89270349804128E+0000 1.88954007287476E+0000 + 1.88638153750240E+0000 1.88322788362908E+0000 1.88007910297753E+0000 1.87693518728837E+0000 1.87379612831998E+0000 + 1.87066191784852E+0000 1.86753254766787E+0000 1.86440800958954E+0000 1.86128829544271E+0000 1.85817339707413E+0000 + 1.85506330634808E+0000 1.85195801514634E+0000 1.84885751536816E+0000 1.84576179893018E+0000 1.84267085776641E+0000 + 1.83958468382820E+0000 1.83650326908417E+0000 1.83342660552018E+0000 1.83035468513930E+0000 1.82728749996175E+0000 + 1.82422504202485E+0000 1.82116730338300E+0000 1.81811427610764E+0000 1.81506595228718E+0000 1.81202232402699E+0000 + 1.80898338344934E+0000 1.80594912269336E+0000 1.80291953391499E+0000 1.79989460928697E+0000 1.79687434099878E+0000 + 1.79385872125658E+0000 1.79084774228319E+0000 1.78784139631805E+0000 1.78483967561717E+0000 1.78184257245312E+0000 + 1.77885007911491E+0000 1.77586218790807E+0000 1.77287889115448E+0000 1.76990018119243E+0000 1.76692605037653E+0000 + 1.76395649107768E+0000 1.76099149568304E+0000 1.75803105659598E+0000 1.75507516623603E+0000 1.75212381703887E+0000 + 1.74917700145627E+0000 1.74623471195603E+0000 1.74329694102199E+0000 1.74036368115398E+0000 1.73743492486770E+0000 + 1.73451066469483E+0000 1.73159089318284E+0000 1.72867560289506E+0000 1.72576478641058E+0000 1.72285843632424E+0000 + 1.71995654524657E+0000 1.71705910580378E+0000 1.71416611063769E+0000 1.71127755240572E+0000 1.70839342378084E+0000 + 1.70551371745151E+0000 1.70263842612169E+0000 1.69976754251076E+0000 1.69690105935350E+0000 1.69403896940004E+0000 + 1.69118126541584E+0000 1.68832794018165E+0000 1.68547898649347E+0000 1.68263439716248E+0000 1.67979416501506E+0000 + 1.67695828289271E+0000 1.67412674365204E+0000 1.67129954016472E+0000 1.66847666531743E+0000 1.66565811201183E+0000 + 1.66284387316457E+0000 1.66003394170717E+0000 1.65722831058606E+0000 1.65442697276248E+0000 1.65162992121249E+0000 + 1.64883714892693E+0000 1.64604864891135E+0000 1.64326441418600E+0000 1.64048443778579E+0000 1.63770871276026E+0000 + 1.63493723217355E+0000 1.63216998910432E+0000 1.62940697664577E+0000 1.62664818790556E+0000 1.62389361600583E+0000 + 1.62114325408310E+0000 1.61839709528826E+0000 1.61565513278658E+0000 1.61291735975758E+0000 1.61018376939509E+0000 + 1.60745435490716E+0000 1.60472910951603E+0000 1.60200802645814E+0000 1.59929109898401E+0000 1.59657832035829E+0000 + 1.59386968385967E+0000 1.59116518278090E+0000 1.58846481042868E+0000 1.58576856012369E+0000 1.58307642520054E+0000 + 1.58038839900772E+0000 1.57770447490757E+0000 1.57502464627625E+0000 1.57234890650373E+0000 1.56967724899372E+0000 + 1.56700966716363E+0000 1.56434615444461E+0000 1.56168670428140E+0000 1.55903131013240E+0000 1.55637996546959E+0000 + 1.55373266377849E+0000 1.55108939855816E+0000 1.54845016332114E+0000 1.54581495159342E+0000 1.54318375691439E+0000 + 1.54055657283687E+0000 1.53793339292702E+0000 1.53531421076430E+0000 1.53269901994149E+0000 1.53008781406462E+0000 + 1.52748058675293E+0000 1.52487733163887E+0000 1.52227804236804E+0000 1.51968271259918E+0000 1.51709133600411E+0000 + 1.51450390626774E+0000 1.51192041708797E+0000 1.50934086217575E+0000 1.50676523525496E+0000 1.50419353006244E+0000 + 1.50162574034792E+0000 1.49906185987401E+0000 1.49650188241616E+0000 1.49394580176264E+0000 1.49139361171448E+0000 + 1.48884530608548E+0000 1.48630087870215E+0000 1.48376032340366E+0000 1.48122363404189E+0000 1.47869080448128E+0000 + 1.47616182859891E+0000 1.47363670028440E+0000 1.47111541343990E+0000 1.46859796198009E+0000 1.46608433983208E+0000 + 1.46357454093544E+0000 1.46106855924214E+0000 1.45856638871655E+0000 1.45606802333536E+0000 1.45357345708760E+0000 + 1.45108268397458E+0000 1.44859569800986E+0000 1.44611249321924E+0000 1.44363306364072E+0000 1.44115740332446E+0000 + 1.43868550633277E+0000 1.43621736674003E+0000 1.43375297863277E+0000 1.43129233610950E+0000 1.42883543328079E+0000 + 1.42638226426920E+0000 1.42393282320922E+0000 1.42148710424732E+0000 1.41904510154183E+0000 1.41660680926298E+0000 + 1.41417222159283E+0000 1.41174133272527E+0000 1.40931413686596E+0000 1.40689062823234E+0000 1.40447080105356E+0000 + 1.40205464957049E+0000 1.39964216803564E+0000 1.39723335071320E+0000 1.39482819187896E+0000 1.39242668582029E+0000 + 1.39002882683612E+0000 1.38763460923692E+0000 1.38524402734467E+0000 1.38285707549279E+0000 1.38047374802617E+0000 + 1.37809403930113E+0000 1.37571794368535E+0000 1.37334545555789E+0000 1.37097656930914E+0000 1.36861127934079E+0000 + 1.36624958006583E+0000 1.36389146590848E+0000 1.36153693130419E+0000 1.35918597069961E+0000 1.35683857855254E+0000 + 1.35449474933196E+0000 1.35215447751793E+0000 1.34981775760162E+0000 1.34748458408523E+0000 1.34515495148202E+0000 + 1.34282885431625E+0000 1.34050628712316E+0000 1.33818724444894E+0000 1.33587172085069E+0000 1.33355971089644E+0000 + 1.33125120916507E+0000 1.32894621024631E+0000 1.32664470874070E+0000 1.32434669925960E+0000 1.32205217642511E+0000 + 1.31976113487007E+0000 1.31747356923806E+0000 1.31518947418331E+0000 1.31290884437074E+0000 1.31063167447590E+0000 + 1.30835795918493E+0000 1.30608769319457E+0000 1.30382087121212E+0000 1.30155748795540E+0000 1.29929753815275E+0000 + 1.29704101654297E+0000 1.29478791787533E+0000 1.29253823690953E+0000 1.29029196841565E+0000 1.28804910717418E+0000 + 1.28580964797594E+0000 1.28357358562209E+0000 1.28134091492408E+0000 1.27911163070364E+0000 1.27688572779276E+0000 + 1.27466320103365E+0000 1.27244404527871E+0000 1.27022825539054E+0000 1.26801582624187E+0000 1.26580675271557E+0000 + 1.26360102970461E+0000 1.26139865211203E+0000 1.25919961485093E+0000 1.25700391284443E+0000 1.25481154102565E+0000 + 1.25262249433772E+0000 1.25043676773367E+0000 1.24825435617652E+0000 1.24607525463915E+0000 1.24389945810434E+0000 + 1.24172696156473E+0000 1.23955776002279E+0000 1.23739184849079E+0000 1.23522922199079E+0000 1.23306987555462E+0000 + 1.23091380422385E+0000 1.22876100304973E+0000 1.22661146709325E+0000 1.22446519142502E+0000 1.22232217112533E+0000 + 1.22018240128405E+0000 1.21804587700069E+0000 1.21591259338429E+0000 1.21378254555345E+0000 1.21165572863633E+0000 + 1.20953213777053E+0000 1.20741176810317E+0000 1.20529461479083E+0000 1.20318067299949E+0000 1.20106993790457E+0000 + 1.19896240469084E+0000 1.19685806855247E+0000 1.19475692469295E+0000 1.19265896832510E+0000 1.19056419467101E+0000 + 1.18847259896207E+0000 1.18638417643889E+0000 1.18429892235134E+0000 1.18221683195846E+0000 1.18013790052850E+0000 + 1.17806212333883E+0000 1.17598949567601E+0000 1.17392001283566E+0000 1.17185367012253E+0000 1.16979046285042E+0000 + 1.16773038634217E+0000 1.16567343592966E+0000 1.16361960695378E+0000 1.16156889476438E+0000 1.15952129472027E+0000 + 1.15747680218921E+0000 1.15543541254788E+0000 1.15339712118181E+0000 1.15136192348547E+0000 1.14932981486210E+0000 + 1.14730079072384E+0000 1.14527484649160E+0000 1.14325197759506E+0000 1.14123217947271E+0000 1.13921544757172E+0000 + 1.13720177734805E+0000 1.13519116426628E+0000 1.13318360379974E+0000 1.13117909143039E+0000 1.12917762264879E+0000 + 1.12717919295417E+0000 1.12518379785430E+0000 1.12319143286557E+0000 1.12120209351289E+0000 1.11921577532970E+0000 + 1.11723247385797E+0000 1.11525218464813E+0000 1.11327490325911E+0000 1.11130062525823E+0000 1.10932934622131E+0000 + 1.10736106173252E+0000 1.10539576738442E+0000 1.10343345877797E+0000 1.10147413152242E+0000 1.09951778123539E+0000 + 1.09756440354277E+0000 1.09561399407876E+0000 1.09366654848578E+0000 1.09172206241455E+0000 1.08978053152395E+0000 + 1.08784195148110E+0000 1.08590631796129E+0000 1.08397362664797E+0000 1.08204387323273E+0000 1.08011705341528E+0000 + 1.07819316290344E+0000 1.07627219741310E+0000 1.07435415266822E+0000 1.07243902440078E+0000 1.07052680835082E+0000 + 1.06861750026634E+0000 1.06671109590335E+0000 1.06480759102582E+0000 1.06290698140565E+0000 1.06100926282268E+0000 + 1.05911443106464E+0000 1.05722248192716E+0000 1.05533341121371E+0000 1.05344721473563E+0000 1.05156388831209E+0000 + 1.04968342777004E+0000 1.04780582894425E+0000 1.04593108767723E+0000 1.04405919981927E+0000 1.04219016122837E+0000 + 1.04032396777025E+0000 1.03846061531833E+0000 1.03660009975368E+0000 1.03474241696506E+0000 1.03288756284885E+0000 + 1.03103553330903E+0000 1.02918632425722E+0000 1.02733993161258E+0000 1.02549635130186E+0000 1.02365557925934E+0000 + 1.02181761142683E+0000 1.01998244375365E+0000 1.01815007219660E+0000 1.01632049271996E+0000 1.01449370129544E+0000 + 1.01266969390221E+0000 1.01084846652684E+0000 1.00903001516330E+0000 1.00721433581293E+0000 1.00540142448445E+0000 + 1.00359127719391E+0000 1.00178388996468E+0000 9.99979258827450E-0001 9.98177379820177E-0001 9.96378248988107E-0001 + 9.94581862383730E-0001 9.92788216066775E-0001 9.90997306104184E-0001 9.89209128570101E-0001 9.87423679545855E-0001 + 9.85640955119927E-0001 9.83860951387954E-0001 9.82083664452700E-0001 9.80309090424038E-0001 9.78537225418941E-0001 + 9.76768065561442E-0001 9.75001606982661E-0001 9.73237845820727E-0001 9.71476778220811E-0001 9.69718400335101E-0001 + 9.67962708322743E-0001 9.66209698349893E-0001 9.64459366589632E-0001 9.62711709221999E-0001 9.60966722433938E-0001 + 9.59224402419307E-0001 9.57484745378858E-0001 9.55747747520198E-0001 9.54013405057798E-0001 9.52281714212955E-0001 + 9.50552671213797E-0001 9.48826272295258E-0001 9.47102513699033E-0001 9.45381391673621E-0001 9.43662902474243E-0001 + 9.41947042362883E-0001 9.40233807608219E-0001 9.38523194485655E-0001 9.36815199277268E-0001 9.35109818271807E-0001 + 9.33407047764680E-0001 9.31706884057917E-0001 9.30009323460197E-0001 9.28314362286779E-0001 9.26621996859519E-0001 + 9.24932223506850E-0001 9.23245038563746E-0001 9.21560438371746E-0001 9.19878419278885E-0001 9.18198977639724E-0001 + 9.16522109815315E-0001 9.14847812173179E-0001 9.13176081087303E-0001 9.11506912938101E-0001 9.09840304112445E-0001 + 9.08176251003599E-0001 9.06514750011223E-0001 9.04855797541369E-0001 9.03199390006442E-0001 9.01545523825209E-0001 + 8.99894195422754E-0001 8.98245423520496E-0001 8.96600805057968E-0001 8.94961299580162E-0001 8.93326872313418E-0001 + 8.91697488711662E-0001 8.90073114470498E-0001 8.88453715534491E-0001 8.86839258067538E-0001 8.85229708495680E-0001 + 8.83625033461059E-0001 8.82025199836011E-0001 8.80430174757708E-0001 8.78839925546479E-0001 8.77254419802042E-0001 + 8.75673625320423E-0001 8.74097510138184E-0001 8.72526042526006E-0001 8.70959190961687E-0001 8.69396924167565E-0001 + 8.67839211076657E-0001 8.66286020849514E-0001 8.64737322878761E-0001 8.63193086749682E-0001 8.61653282294164E-0001 + 8.60117879552656E-0001 8.58586848771802E-0001 8.57060160433701E-0001 8.55537785219185E-0001 8.54019694032955E-0001 + 8.52505857987469E-0001 8.50996248396433E-0001 8.49490836810981E-0001 8.47989594964989E-0001 8.46492494805732E-0001 + 8.44999508502540E-0001 8.43510608405829E-0001 8.42025767095710E-0001 8.40544957339626E-0001 8.39068152110638E-0001 + 8.37595324589174E-0001 8.36126448139926E-0001 8.34661496359155E-0001 8.33200443001858E-0001 8.31743262045654E-0001 + 8.30289927660755E-0001 8.28840414199250E-0001 8.27394696231404E-0001 8.25952748490691E-0001 8.24514545925311E-0001 + 8.23080063670876E-0001 8.21649277036893E-0001 8.20222161536178E-0001 8.18798692872746E-0001 8.17378846919961E-0001 + 8.15962599762454E-0001 8.14549927635454E-0001 8.13140806984734E-0001 8.11735214432278E-0001 8.10333126771044E-0001 + 8.08934520994434E-0001 8.07539374252193E-0001 8.06147663886823E-0001 8.04759367418631E-0001 8.03374462532139E-0001 + 8.01992927106980E-0001 8.00614739180673E-0001 7.99239876966999E-0001 7.97868318856312E-0001 7.96500043406105E-0001 + 7.95135029355236E-0001 7.93773255596374E-0001 7.92414701194400E-0001 7.91059345399257E-0001 7.89707167596060E-0001 + 7.88358147366732E-0001 7.87012264435914E-0001 7.85669498699840E-0001 7.84329830228735E-0001 7.82993239225905E-0001 + 7.81659706085272E-0001 7.80329211342781E-0001 7.79001735697624E-0001 7.77677260020219E-0001 7.76355765309137E-0001 + 7.75037232745915E-0001 7.73721643657569E-0001 7.72408979514055E-0001 7.71099221965638E-0001 7.69792352785054E-0001 + 7.68488353918190E-0001 7.67187207452835E-0001 7.65888895620330E-0001 7.64593400821777E-0001 7.63300705578511E-0001 + 7.62010792579341E-0001 7.60723644651350E-0001 7.59439244760842E-0001 7.58157576040275E-0001 7.56878621737254E-0001 + 7.55602365258314E-0001 7.54328790155132E-0001 7.53057880098051E-0001 7.51789618930462E-0001 7.50523990608577E-0001 + 7.49260979230490E-0001 7.48000569049098E-0001 7.46742744426584E-0001 7.45487489883924E-0001 7.44234790065928E-0001 + 7.42984629748497E-0001 7.41736993857190E-0001 7.40491867424450E-0001 7.39249235634947E-0001 7.38009083794081E-0001 + 7.36771397335955E-0001 7.35536161837012E-0001 7.34303362977431E-0001 7.33072986588646E-0001 7.31845018617560E-0001 + 7.30619445126741E-0001 7.29396252329278E-0001 7.28175426536683E-0001 7.26956954198695E-0001 7.25740821880151E-0001 + 7.24527016264729E-0001 7.23315524173563E-0001 7.22106332525094E-0001 7.20899428369256E-0001 7.19694798882738E-0001 + 7.18492431333030E-0001 7.17292313136043E-0001 7.16094431798172E-0001 7.14898774954781E-0001 7.13705330356931E-0001 + 7.12514085856662E-0001 7.11325029429903E-0001 7.10138149160333E-0001 7.08953433244543E-0001 7.07770869996491E-0001 + 7.06590447820677E-0001 7.05412155250004E-0001 7.04235980918948E-0001 7.03061913560887E-0001 7.01889942038177E-0001 + 7.00720055289654E-0001 6.99552242385636E-0001 6.98386492488222E-0001 6.97222794858586E-0001 6.96061138880675E-0001 + 6.94901514016471E-0001 6.93743909850370E-0001 6.92588316052981E-0001 6.91434722398410E-0001 6.90283118774433E-0001 + 6.89133495142677E-0001 6.87985841582341E-0001 6.86840148269661E-0001 6.85696405458766E-0001 6.84554603526158E-0001 + 6.83414732919403E-0001 6.82276784198755E-0001 6.81140748013011E-0001 6.80006615093212E-0001 6.78874376278570E-0001 + 6.77744022496580E-0001 6.76615544756727E-0001 6.75488934174991E-0001 6.74364181938172E-0001 6.73241279334138E-0001 + 6.72120217741944E-0001 6.71000988614761E-0001 6.69883583515181E-0001 6.68767994065841E-0001 6.67654211994787E-0001 + 6.66542229111213E-0001 6.65432037299129E-0001 6.64323628542652E-0001 6.63216994895242E-0001 6.62112128497088E-0001 + 6.61009021578850E-0001 6.59907666434451E-0001 6.58808055460791E-0001 6.57710181118299E-0001 6.56614035949050E-0001 + 6.55519612589156E-0001 6.54426903722782E-0001 6.53335902146404E-0001 6.52246600709126E-0001 6.51158992344514E-0001 + 6.50073070067849E-0001 6.48988826956049E-0001 6.47906256171600E-0001 6.46825350948250E-0001 6.45746104591131E-0001 + 6.44668510486987E-0001 6.43592562074675E-0001 6.42518252885024E-0001 6.41445576514217E-0001 6.40374526618838E-0001 + 6.39305096945647E-0001 6.38237281287560E-0001 6.37171073523561E-0001 6.36106467593488E-0001 6.35043457500305E-0001 + 6.33982037329778E-0001 6.32922201215083E-0001 6.31863943370246E-0001 6.30807258065609E-0001 6.29752139631552E-0001 + 6.28698582486175E-0001 6.27646581085340E-0001 6.26596129958322E-0001 6.25547223702117E-0001 6.24499856960481E-0001 + 6.23454024460349E-0001 6.22409720971251E-0001 6.21366941326478E-0001 6.20325680435556E-0001 6.19285933239239E-0001 + 6.18247694761262E-0001 6.17210960072051E-0001 6.16175724299010E-0001 6.15141982643363E-0001 6.14109730332905E-0001 + 6.13078962680368E-0001 6.12049675039075E-0001 6.11021862816863E-0001 6.09995521493690E-0001 6.08970646575034E-0001 + 6.07947233647424E-0001 6.06925278334025E-0001 6.05904776313688E-0001 6.04885723326157E-0001 6.03868115151701E-0001 + 6.02851947627998E-0001 6.01837216642183E-0001 6.00823918128000E-0001 5.99812048079783E-0001 5.98801602530593E-0001 + 5.97792577561072E-0001 5.96784969317092E-0001 5.95778773963709E-0001 5.94773987746752E-0001 5.93770606932842E-0001 + 5.92768627845360E-0001 5.91768046861599E-0001 5.90768860384243E-0001 5.89771064879566E-0001 5.88774656852580E-0001 + 5.87779632849297E-0001 5.86785989468551E-0001 5.85793723334893E-0001 5.84802831136858E-0001 5.83813309596918E-0001 + 5.82825155467867E-0001 5.81838365571852E-0001 5.80852936739415E-0001 5.79868865866180E-0001 5.78886149881301E-0001 + 5.77904785742360E-0001 5.76924770467825E-0001 5.75946101098833E-0001 5.74968774721338E-0001 5.73992788459547E-0001 + 5.73018139467874E-0001 5.72044824955325E-0001 5.71072842150173E-0001 5.70102188325821E-0001 5.69132860795706E-0001 + 5.68164856894164E-0001 5.67198174009703E-0001 5.66232809556276E-0001 5.65268760974797E-0001 5.64306025764979E-0001 + 5.63344601424783E-0001 5.62384485519956E-0001 5.61425675627899E-0001 5.60468169366555E-0001 5.59511964390032E-0001 + 5.58557058369406E-0001 5.57603449026822E-0001 5.56651134104459E-0001 5.55700111369008E-0001 5.54750378641365E-0001 + 5.53801933739618E-0001 5.52854774540613E-0001 5.51908898937751E-0001 5.50964304846210E-0001 5.50020990229714E-0001 + 5.49078953062727E-0001 5.48138191354251E-0001 5.47198703144901E-0001 5.46260486486896E-0001 5.45323539485707E-0001 + 5.44387860248828E-0001 5.43453446920003E-0001 5.42520297675562E-0001 5.41588410698418E-0001 5.40657784222760E-0001 + 5.39728416482737E-0001 5.38800305750458E-0001 5.37873450327110E-0001 5.36947848517660E-0001 5.36023498674110E-0001 + 5.35100399156784E-0001 5.34178548353001E-0001 5.33257944680095E-0001 5.32338586557107E-0001 5.31420472451073E-0001 + 5.30503600836777E-0001 5.29587970201988E-0001 5.28673579082610E-0001 5.27760426004450E-0001 5.26848509532551E-0001 + 5.25937828251065E-0001 5.25028380752809E-0001 5.24120165666218E-0001 5.23213181626960E-0001 5.22307427292173E-0001 + 5.21402901343497E-0001 5.20499602467636E-0001 5.19597529390836E-0001 5.18696680836975E-0001 5.17797055553799E-0001 + 5.16898652318214E-0001 5.16001469900325E-0001 5.15105507113699E-0001 5.14210762766648E-0001 5.13317235695255E-0001 + 5.12424924752911E-0001 5.11533828796063E-0001 5.10643946712027E-0001 5.09755277394233E-0001 5.08867819753514E-0001 + 5.07981572717381E-0001 5.07096535221025E-0001 5.06212706222381E-0001 5.05330084688614E-0001 5.04448669595382E-0001 + 5.03568459948696E-0001 5.02689454745788E-0001 5.01811653014291E-0001 5.00935053785148E-0001 5.00059656103175E-0001 + 4.99185459030102E-0001 4.98312461632530E-0001 4.97440662995525E-0001 4.96570062212833E-0001 4.95700658382366E-0001 + 4.94832450628869E-0001 4.93965438072233E-0001 4.93099619853182E-0001 4.92234995119702E-0001 4.91371563024028E-0001 + 4.90509322740051E-0001 4.89648273439898E-0001 4.88788414311337E-0001 4.87929744554776E-0001 4.87072263367384E-0001 + 4.86215969970352E-0001 4.85360863580904E-0001 4.84506943431994E-0001 4.83654208763994E-0001 4.82802658820916E-0001 + 4.81952292858766E-0001 4.81103110141766E-0001 4.80255109937061E-0001 4.79408291526110E-0001 4.78562654184969E-0001 + 4.77718197213144E-0001 4.76874919904765E-0001 4.76032821561494E-0001 4.75191901497861E-0001 4.74352159028362E-0001 + 4.73513593475824E-0001 4.72676204167620E-0001 4.71839990434916E-0001 4.71004951621048E-0001 4.70171087069366E-0001 + 4.69338396123239E-0001 4.68506878146613E-0001 4.67676532487487E-0001 4.66847358515983E-0001 4.66019355595427E-0001 + 4.65192523099105E-0001 4.64366860404187E-0001 4.63542366884865E-0001 4.62719041929142E-0001 4.61896884922059E-0001 + 4.61075895249515E-0001 4.60256072311251E-0001 4.59437415495664E-0001 4.58619924207303E-0001 4.57803597843965E-0001 + 4.56988435811977E-0001 4.56174437517801E-0001 4.55361602367271E-0001 4.54549929775543E-0001 4.53739419151800E-0001 + 4.52930069909204E-0001 4.52121881471030E-0001 4.51314853249231E-0001 4.50508984662816E-0001 4.49704275136334E-0001 + 4.48900724086845E-0001 4.48098330943856E-0001 4.47297095122490E-0001 4.46497016051860E-0001 4.45698093158209E-0001 + 4.44900325859530E-0001 4.44103713589364E-0001 4.43308255772249E-0001 4.42513951829850E-0001 4.41720801193261E-0001 + 4.40928803285336E-0001 4.40137957532983E-0001 4.39348263360254E-0001 4.38559720191416E-0001 4.37772327456348E-0001 + 4.36986084568989E-0001 4.36200990958898E-0001 4.35417046045085E-0001 4.34634249249095E-0001 4.33852599992712E-0001 + 4.33072097687157E-0001 4.32292741756221E-0001 4.31514531613138E-0001 4.30737466668291E-0001 4.29961546340787E-0001 + 4.29186770033000E-0001 4.28413137158343E-0001 4.27640647123526E-0001 4.26869299328550E-0001 4.26099093182153E-0001 + 4.25330028078638E-0001 4.24562103418729E-0001 4.23795318597214E-0001 4.23029673006027E-0001 4.22265166035801E-0001 + 4.21501797074317E-0001 4.20739565504957E-0001 4.19978470712892E-0001 4.19218512070375E-0001 4.18459688959194E-0001 + 4.17702000749761E-0001 4.16945446811175E-0001 4.16190026513558E-0001 4.15435739214864E-0001 4.14682584277161E-0001 + 4.13930561055004E-0001 4.13179668900076E-0001 4.12429907167406E-0001 4.11681275194402E-0001 4.10933772325694E-0001 + 4.10187397900708E-0001 4.09442151247448E-0001 4.08698031704253E-0001 4.07955038590257E-0001 4.07213171229486E-0001 + 4.06472428939193E-0001 4.05732811029852E-0001 4.04994316815273E-0001 4.04256945596258E-0001 4.03520696676159E-0001 + 4.02785569349984E-0001 4.02051562904382E-0001 4.01318676633231E-0001 4.00586909817372E-0001 3.99856261730059E-0001 + 3.99126731648649E-0001 3.98398318837447E-0001 3.97671022565643E-0001 3.96944842084675E-0001 3.96219776651643E-0001 + 3.95495825516819E-0001 3.94772987922076E-0001 3.94051263106353E-0001 3.93330650302523E-0001 3.92611148740523E-0001 + 3.91892757644216E-0001 3.91175476229043E-0001 3.90459303712190E-0001 3.89744239299280E-0001 3.89030282189847E-0001 + 3.88317431587509E-0001 3.87605686681177E-0001 3.86895046654438E-0001 3.86185510694177E-0001 3.85477077970983E-0001 + 3.84769747657947E-0001 3.84063518918908E-0001 3.83358390913934E-0001 3.82654362797746E-0001 3.81951433712655E-0001 + 3.81249602808176E-0001 3.80548869216692E-0001 3.79849232072289E-0001 3.79150690499762E-0001 3.78453243618533E-0001 + 3.77756890541860E-0001 3.77061630381556E-0001 3.76367462236181E-0001 3.75674385207564E-0001 3.74982398382692E-0001 + 3.74291500849454E-0001 3.73601691687186E-0001 3.72912969968239E-0001 3.72225334765069E-0001 3.71538785134472E-0001 + 3.70853320135700E-0001 3.70168938821007E-0001 3.69485640230905E-0001 3.68803423409148E-0001 3.68122287383793E-0001 + 3.67442231185343E-0001 3.66763253835697E-0001 3.66085354344980E-0001 3.65408531729708E-0001 3.64732784989874E-0001 + 3.64058113123161E-0001 3.63384515122574E-0001 3.62711989970892E-0001 3.62040536651743E-0001 3.61370154139312E-0001 + 3.60700841399130E-0001 3.60032597397561E-0001 3.59365421085972E-0001 3.58699311420517E-0001 3.58034267341546E-0001 + 3.57370287789439E-0001 3.56707371699059E-0001 3.56045517995783E-0001 3.55384725600252E-0001 3.54724993427574E-0001 + 3.54066320391291E-0001 3.53408705392260E-0001 3.52752147329762E-0001 3.52096645094352E-0001 3.51442197575001E-0001 + 3.50788803649562E-0001 3.50136462197477E-0001 3.49485172081489E-0001 3.48834932173085E-0001 3.48185741323859E-0001 + 3.47537598388576E-0001 3.46890502213231E-0001 3.46244451639825E-0001 3.45599445502377E-0001 3.44955482630103E-0001 + 3.44312561847415E-0001 3.43670681973918E-0001 3.43029841822010E-0001 3.42390040196884E-0001 3.41751275905289E-0001 + 3.41113547737186E-0001 3.40476854489677E-0001 3.39841194944655E-0001 3.39206567881573E-0001 3.38572972080634E-0001 + 3.37940406304420E-0001 3.37308869318653E-0001 3.36678359884203E-0001 3.36048876753093E-0001 3.35420418675686E-0001 + 3.34792984391086E-0001 3.34166572639128E-0001 3.33541182153984E-0001 3.32916811657748E-0001 3.32293459879647E-0001 + 3.31671125532021E-0001 3.31049807330337E-0001 3.30429503979568E-0001 3.29810214180599E-0001 3.29191936636640E-0001 + 3.28574670033980E-0001 3.27958413062029E-0001 3.27343164407703E-0001 3.26728922740175E-0001 3.26115686742173E-0001 + 3.25503455075459E-0001 3.24892226404908E-0001 3.24281999394503E-0001 3.23672772690447E-0001 3.23064544950097E-0001 + 3.22457314814634E-0001 3.21851080925133E-0001 3.21245841919351E-0001 3.20641596429306E-0001 3.20038343081280E-0001 + 3.19436080498225E-0001 3.18834807299762E-0001 3.18234522103797E-0001 3.17635223514425E-0001 3.17036910142077E-0001 + 3.16439580588205E-0001 3.15843233450115E-0001 3.15247867323386E-0001 3.14653480796220E-0001 3.14060072455896E-0001 + 3.13467640883118E-0001 3.12876184656858E-0001 3.12285702352737E-0001 3.11696192538989E-0001 3.11107653785342E-0001 + 3.10520084653323E-0001 3.09933483700294E-0001 3.09347849488347E-0001 3.08763180563276E-0001 3.08179475478033E-0001 + 3.07596732778166E-0001 3.07014951003430E-0001 3.06434128694270E-0001 3.05854264383716E-0001 3.05275356607913E-0001 + 3.04697403893164E-0001 3.04120404765643E-0001 3.03544357748161E-0001 3.02969261359347E-0001 3.02395114116897E-0001 + 3.01821914537573E-0001 3.01249661124219E-0001 3.00678352391726E-0001 3.00107986843501E-0001 2.99538562977953E-0001 + 2.98970079301494E-0001 2.98402534304975E-0001 2.97835926486442E-0001 2.97270254337316E-0001 2.96705516343206E-0001 + 2.96141710996517E-0001 2.95578836778144E-0001 2.95016892171308E-0001 2.94455875656264E-0001 2.93895785708672E-0001 + 2.93336620806113E-0001 2.92778379421984E-0001 2.92221060025495E-0001 2.91664661088595E-0001 2.91109181074973E-0001 + 2.90554618454322E-0001 2.90000971687668E-0001 2.89448239236742E-0001 2.88896419562765E-0001 2.88345511121956E-0001 + 2.87795512372065E-0001 2.87246421769925E-0001 2.86698237766555E-0001 2.86150958814917E-0001 2.85604583365425E-0001 + 2.85059109869222E-0001 2.84514536773677E-0001 2.83970862522389E-0001 2.83428085566232E-0001 2.82886204345358E-0001 + 2.82345217304746E-0001 2.81805122888067E-0001 2.81265919534406E-0001 2.80727605686050E-0001 2.80190179782755E-0001 + 2.79653640261743E-0001 2.79117985563858E-0001 2.78583214123315E-0001 2.78049324380008E-0001 2.77516314767615E-0001 + 2.76984183724267E-0001 2.76452929684758E-0001 2.75922551081773E-0001 2.75393046352463E-0001 2.74864413932290E-0001 + 2.74336652250917E-0001 2.73809759747419E-0001 2.73283734851375E-0001 2.72758575998497E-0001 2.72234281622406E-0001 + 2.71710850157106E-0001 2.71188280037399E-0001 2.70666569694357E-0001 2.70145717566444E-0001 2.69625722085930E-0001 + 2.69106581686721E-0001 2.68588294809304E-0001 2.68070859883036E-0001 2.67554275347985E-0001 2.67038539640927E-0001 + 2.66523651197401E-0001 2.66009608458322E-0001 2.65496409861728E-0001 2.64984053848151E-0001 2.64472538857317E-0001 + 2.63961863328151E-0001 2.63452025709106E-0001 2.62943024439583E-0001 2.62434857966455E-0001 2.61927524733330E-0001 + 2.61421023187995E-0001 2.60915351780772E-0001 2.60410508958313E-0001 2.59906493172291E-0001 2.59403302876516E-0001 + 2.58900936524449E-0001 2.58399392569211E-0001 2.57898669468968E-0001 2.57398765681970E-0001 2.56899679671525E-0001 + 2.56401409896060E-0001 2.55903954819900E-0001 2.55407312910376E-0001 2.54911482630360E-0001 2.54416462456942E-0001 + 2.53922250854881E-0001 2.53428846301505E-0001 2.52936247271783E-0001 2.52444452241640E-0001 2.51953459694619E-0001 + 2.51463268111079E-0001 2.50973875976933E-0001 2.50485281778657E-0001 2.49997484003720E-0001 2.49510481147655E-0001 + 2.49024271703670E-0001 2.48538854168892E-0001 2.48054227044375E-0001 2.47570388830525E-0001 2.47087338035020E-0001 + 2.46605073165735E-0001 2.46123592732417E-0001 2.45642895251270E-0001 2.45162979235797E-0001 2.44683843208476E-0001 + 2.44205485692431E-0001 2.43727905212270E-0001 2.43251100299515E-0001 2.42775069484265E-0001 2.42299811303130E-0001 + 2.41825324296739E-0001 2.41351607005147E-0001 2.40878657977035E-0001 2.40406475758854E-0001 2.39935058904440E-0001 + 2.39464405972521E-0001 2.38994515517937E-0001 2.38525386110470E-0001 2.38057016312679E-0001 2.37589404698320E-0001 + 2.37122549841889E-0001 2.36656450320304E-0001 2.36191104719193E-0001 2.35726511622852E-0001 2.35262669622629E-0001 + 2.34799577313579E-0001 2.34337233291120E-0001 2.33875636164039E-0001 2.33414784535208E-0001 2.32954677015851E-0001 + 2.32495312222617E-0001 2.32036688772974E-0001 2.31578805293610E-0001 2.31121660411622E-0001 2.30665252759569E-0001 + 2.30209580975894E-0001 2.29754643699475E-0001 2.29300439580138E-0001 2.28846967266473E-0001 2.28394225414675E-0001 + 2.27942212686028E-0001 2.27490927742705E-0001 2.27040369257458E-0001 2.26590535902259E-0001 2.26141426357148E-0001 + 2.25693039308565E-0001 2.25245373441769E-0001 2.24798427452224E-0001 2.24352200039709E-0001 2.23906689905797E-0001 + 2.23461895763563E-0001 2.23017816323250E-0001 2.22574450307469E-0001 2.22131796438543E-0001 2.21689853444853E-0001 + 2.21248620063796E-0001 2.20808095035469E-0001 2.20368277103088E-0001 2.19929165021460E-0001 2.19490757542190E-0001 + 2.19053053430604E-0001 2.18616051450958E-0001 2.18179750376597E-0001 2.17744148987006E-0001 2.17309246064853E-0001 + 2.16875040397693E-0001 2.16441530783481E-0001 2.16008716019572E-0001 2.15576594914588E-0001 2.15145166277837E-0001 + 2.14714428929919E-0001 2.14284381691708E-0001 2.13855023391152E-0001 2.13426352867943E-0001 2.12998368956562E-0001 + 2.12571070508347E-0001 2.12144456375809E-0001 2.11718525412203E-0001 2.11293276488110E-0001 2.10868708470632E-0001 + 2.10444820236564E-0001 2.10021610669016E-0001 2.09599078654436E-0001 2.09177223090281E-0001 2.08756042876518E-0001 + 2.08335536916482E-0001 2.07915704128803E-0001 2.07496543426985E-0001 2.07078053740702E-0001 2.06660233998350E-0001 + 2.06243083138553E-0001 2.05826600108049E-0001 2.05410783852744E-0001 2.04995633332218E-0001 2.04581147508223E-0001 + 2.04167325349810E-0001 2.03754165834618E-0001 2.03341667940778E-0001 2.02929830660149E-0001 2.02518652985956E-0001 + 2.02108133918771E-0001 2.01698272469087E-0001 2.01289067647933E-0001 2.00880518477988E-0001 2.00472623986330E-0001 + 2.00065383204015E-0001 1.99658795174213E-0001 1.99252858941953E-0001 1.98847573561832E-0001 1.98442938092466E-0001 + 1.98038951599061E-0001 1.97635613157712E-0001 1.97232921846414E-0001 1.96830876750217E-0001 1.96429476964658E-0001 + 1.96028721585061E-0001 1.95628609721120E-0001 1.95229140484047E-0001 1.94830312993873E-0001 1.94432126376452E-0001 + 1.94034579763044E-0001 1.93637672295047E-0001 1.93241403117566E-0001 1.92845771383718E-0001 1.92450776252921E-0001 + 1.92056416891768E-0001 1.91662692471024E-0001 1.91269602173376E-0001 1.90877145182263E-0001 1.90485320693497E-0001 + 1.90094127904521E-0001 1.89703566023882E-0001 1.89313634263497E-0001 1.88924331842102E-0001 1.88535657989142E-0001 + 1.88147611937458E-0001 1.87760192924155E-0001 1.87373400201390E-0001 1.86987233016549E-0001 1.86601690635110E-0001 + 1.86216772321681E-0001 1.85832477350785E-0001 1.85448805004292E-0001 1.85065754564945E-0001 1.84683325332346E-0001 + 1.84301516603540E-0001 1.83920327685972E-0001 1.83539757897071E-0001 1.83159806551729E-0001 1.82780472983050E-0001 + 1.82401756522051E-0001 1.82023656509770E-0001 1.81646172295985E-0001 1.81269303231430E-0001 1.80893048678627E-0001 + 1.80517408006267E-0001 1.80142380584893E-0001 1.79767965799028E-0001 1.79394163032897E-0001 1.79020971681266E-0001 + 1.78648391146847E-0001 1.78276420832081E-0001 1.77905060153442E-0001 1.77534308531917E-0001 1.77164165392577E-0001 + 1.76794630169359E-0001 1.76425702298997E-0001 1.76057381233189E-0001 1.75689666419937E-0001 1.75322557319185E-0001 + 1.74956053399359E-0001 1.74590154127380E-0001 1.74224858985620E-0001 1.73860167457572E-0001 1.73496079033069E-0001 + 1.73132593212648E-0001 1.72769709496246E-0001 1.72407427396263E-0001 1.72045746428865E-0001 1.71684666115736E-0001 + 1.71324185987135E-0001 1.70964305576238E-0001 1.70605024425252E-0001 1.70246342082806E-0001 1.69888258099603E-0001 + 1.69530772039321E-0001 1.69173883464243E-0001 1.68817591947029E-0001 1.68461897068117E-0001 1.68106798406563E-0001 + 1.67752295557507E-0001 1.67398388114287E-0001 1.67045075679358E-0001 1.66692357860375E-0001 1.66340234269756E-0001 + 1.65988704529946E-0001 1.65637768263797E-0001 1.65287425102453E-0001 1.64937674685356E-0001 1.64588516651943E-0001 + 1.64239950653467E-0001 1.63891976342063E-0001 1.63544593377324E-0001 1.63197801426746E-0001 1.62851600158727E-0001 + 1.62505989250899E-0001 1.62160968384877E-0001 1.61816537247144E-0001 1.61472695533880E-0001 1.61129442939132E-0001 + 1.60786779169729E-0001 1.60444703932573E-0001 1.60103216941224E-0001 1.59762317917662E-0001 1.59422006584839E-0001 + 1.59082282674141E-0001 1.58743145919252E-0001 1.58404596060114E-0001 1.58066632843371E-0001 1.57729256017985E-0001 + 1.57392465340074E-0001 1.57056260568525E-0001 1.56720641468516E-0001 1.56385607811088E-0001 1.56051159370945E-0001 + 1.55717295926029E-0001 1.55384017262798E-0001 1.55051323167435E-0001 1.54719213434661E-0001 1.54387687862449E-0001 + 1.54056746256008E-0001 1.53726388418962E-0001 1.53396614163944E-0001 1.53067423307307E-0001 1.52738815669572E-0001 + 1.52410791074995E-0001 1.52083349355101E-0001 1.51756490339423E-0001 1.51430213867421E-0001 1.51104519780107E-0001 + 1.50779407923136E-0001 1.50454878147700E-0001 1.50130930303898E-0001 1.49807564252682E-0001 1.49484779854809E-0001 + 1.49162576973054E-0001 1.48840955480179E-0001 1.48519915247878E-0001 1.48199456150766E-0001 1.47879578071690E-0001 + 1.47560280890231E-0001 1.47241564498642E-0001 1.46923428784146E-0001 1.46605873640450E-0001 1.46288898969527E-0001 + 1.45972504665222E-0001 1.45656690637192E-0001 1.45341456789631E-0001 1.45026803032356E-0001 1.44712729282596E-0001 + 1.44399235452562E-0001 1.44086321462327E-0001 1.43773987235388E-0001 1.43462232695123E-0001 1.43151057773230E-0001 + 1.42840462395958E-0001 1.42530446497443E-0001 1.42221010015713E-0001 1.41912152886022E-0001 1.41603875053302E-0001 + 1.41296176456605E-0001 1.40989057045115E-0001 1.40682516764811E-0001 1.40376555566916E-0001 1.40071173403458E-0001 + 1.39766370229939E-0001 1.39462146001778E-0001 1.39158500678767E-0001 1.38855434220173E-0001 1.38552946590983E-0001 + 1.38251037752539E-0001 1.37949707672804E-0001 1.37648956320562E-0001 1.37348783662743E-0001 1.37049189671568E-0001 + 1.36750174319641E-0001 1.36451737580395E-0001 1.36153879431225E-0001 1.35856599845001E-0001 1.35559898803471E-0001 + 1.35263776282071E-0001 1.34968232262445E-0001 1.34673266728419E-0001 1.34378879657957E-0001 1.34085071036130E-0001 + 1.33791840847516E-0001 1.33499189073961E-0001 1.33207115704877E-0001 1.32915620722916E-0001 1.32624704116960E-0001 + 1.32334365872711E-0001 1.32044605978521E-0001 1.31755424423151E-0001 1.31466821193084E-0001 1.31178796277004E-0001 + 1.30891349665803E-0001 1.30604481344505E-0001 1.30318191305277E-0001 1.30032479534866E-0001 1.29747346022229E-0001 + 1.29462790757638E-0001 1.29178813725938E-0001 1.28895414918683E-0001 1.28612594319753E-0001 1.28330351918389E-0001 + 1.28048687701551E-0001 1.27767601653020E-0001 1.27487093759691E-0001 1.27207164005277E-0001 1.26927812373458E-0001 + 1.26649038848333E-0001 1.26370843409463E-0001 1.26093226039527E-0001 1.25816186717118E-0001 1.25539725420341E-0001 + 1.25263842129069E-0001 1.24988536816381E-0001 1.24713809457570E-0001 1.24439660026538E-0001 1.24166088493543E-0001 + 1.23893094831510E-0001 1.23620679005202E-0001 1.23348840983400E-0001 1.23077580729880E-0001 1.22806898207469E-0001 + 1.22536793378501E-0001 1.22267266200743E-0001 1.21998316629658E-0001 1.21729944622465E-0001 1.21462150129555E-0001 + 1.21194933101718E-0001 1.20928293487429E-0001 1.20662231230134E-0001 1.20396746274576E-0001 1.20131838558201E-0001 + 1.19867508020658E-0001 1.19603754595191E-0001 1.19340578213173E-0001 1.19077978805906E-0001 1.18815956296019E-0001 + 1.18554510608784E-0001 1.18293641663967E-0001 1.18033349375811E-0001 1.17773633659846E-0001 1.17514494424263E-0001 + 1.17255931578076E-0001 1.16997945022956E-0001 1.16740534656851E-0001 1.16483700378529E-0001 1.16227442078034E-0001 + 1.15971759644861E-0001 1.15716652964315E-0001 1.15462121915695E-0001 1.15208166376827E-0001 1.14954786219975E-0001 + 1.14701981314108E-0001 1.14449751523078E-0001 1.14198096708343E-0001 1.13947016723504E-0001 1.13696511422494E-0001 + 1.13446580650921E-0001 1.13197224251075E-0001 1.12948442062380E-0001 1.12700233916374E-0001 1.12452599642174E-0001 + 1.12205539063740E-0001 1.11959051998952E-0001 1.11713138263260E-0001 1.11467797663744E-0001 1.11223030005498E-0001 + 1.10978835085694E-0001 1.10735212699509E-0001 1.10492162632813E-0001 1.10249684671301E-0001 1.10007778589524E-0001 + 1.09766444160931E-0001 1.09525681151471E-0001 1.09285489322328E-0001 1.09045868426710E-0001 1.08806818215797E-0001 + 1.08568338431868E-0001 1.08330428813786E-0001 1.08093089092419E-0001 1.07856318993376E-0001 1.07620118236545E-0001 + 1.07384486534256E-0001 1.07149423595854E-0001 1.06914929121280E-0001 1.06681002804728E-0001 1.06447644336017E-0001 + 1.06214853394621E-0001 1.05982629658836E-0001 1.05750972795225E-0001 1.05519882466866E-0001 1.05289358330596E-0001 + 1.05059400032409E-0001 1.04830007217096E-0001 1.04601179518133E-0001 1.04372916564562E-0001 1.04145217977310E-0001 + 1.03918083371483E-0001 1.03691512353135E-0001 1.03465504523402E-0001 1.03240059474589E-0001 1.03015176791996E-0001 + 1.02790856054835E-0001 1.02567096833231E-0001 1.02343898691435E-0001 1.02121261185517E-0001 1.01899183864048E-0001 + 1.01677666267400E-0001 1.01456707930043E-0001 1.01236308377775E-0001 1.01016467127941E-0001 1.00797183690577E-0001 + 1.00578457570022E-0001 1.00360288258446E-0001 1.00142675244843E-0001 9.99256180067143E-0002 9.97091160151384E-0002 + 9.94931687329170E-0002 9.92777756147965E-0002 9.90629361072301E-0002 9.88486496485996E-0002 9.86349156694390E-0002 + 9.84217335915015E-0002 9.82091028279823E-0002 9.79970227842037E-0002 9.77854928576069E-0002 9.75745124361248E-0002 + 9.73640809002554E-0002 9.71541976205076E-0002 9.69448619613277E-0002 9.67360732762299E-0002 9.65278309114915E-0002 + 9.63201342035972E-0002 9.61129824824734E-0002 9.59063750656876E-0002 9.57003112663175E-0002 9.54947903862227E-0002 + 9.52898117181206E-0002 9.50853745476652E-0002 9.48814781504236E-0002 9.46781217932584E-0002 9.44753047336229E-0002 + 9.42730262221054E-0002 9.40712854977779E-0002 9.38700817928308E-0002 9.36694143274536E-0002 9.34692823167958E-0002 + 9.32696849644529E-0002 9.30706214645477E-0002 9.28720910045113E-0002 9.26740927604248E-0002 9.24766259002648E-0002 + 9.22796895811034E-0002 9.20832829544505E-0002 9.18874051597302E-0002 9.16920553284596E-0002 9.14972325809811E-0002 + 9.13029360318091E-0002 9.11091647840321E-0002 9.09159179302337E-0002 9.07231945578440E-0002 9.05309937414404E-0002 + 9.03393145462326E-0002 9.01481560313198E-0002 8.99575172447850E-0002 8.97673972253177E-0002 8.95777950005709E-0002 + 8.93887095927536E-0002 8.92001400118535E-0002 8.90120852598293E-0002 8.88245443282669E-0002 8.86375162023420E-0002 + 8.84509998549703E-0002 8.82649942505363E-0002 8.80794983448853E-0002 8.78945110839117E-0002 8.77100314056548E-0002 + 8.75260582370157E-0002 8.73425904970229E-0002 8.71596270961227E-0002 8.69771669331270E-0002 8.67952089005889E-0002 + 8.66137518803458E-0002 8.64327947446807E-0002 8.62523363586570E-0002 8.60723755763607E-0002 8.58929112437039E-0002 + 8.57139421991205E-0002 8.55354672683986E-0002 8.53574852721764E-0002 8.51799950198361E-0002 8.50029953127792E-0002 + 8.48264849425411E-0002 8.46504626940690E-0002 8.44749273412537E-0002 8.42998776499729E-0002 8.41253123778489E-0002 + 8.39512302742410E-0002 8.37776300776519E-0002 8.36045105208907E-0002 8.34318703256580E-0002 8.32597082067706E-0002 + 8.30880228707429E-0002 8.29168130153090E-0002 8.27460773284728E-0002 8.25758144922665E-0002 8.24060231792125E-0002 + 8.22367020530216E-0002 8.20678497714123E-0002 8.18994649823347E-0002 8.17315463249046E-0002 8.15640924336396E-0002 + 8.13971019318519E-0002 8.12305734368274E-0002 8.10645055565175E-0002 8.08988968933065E-0002 8.07337460407021E-0002 + 8.05690515845084E-0002 8.04048121039994E-0002 8.02410261709689E-0002 8.00776923487788E-0002 7.99148091944787E-0002 + 7.97523752578544E-0002 7.95903890816591E-0002 7.94288492016066E-0002 7.92677541466020E-0002 7.91071024394461E-0002 + 7.89468925947000E-0002 7.87871231210455E-0002 7.86277925217529E-0002 7.84688992915995E-0002 7.83104419213613E-0002 + 7.81524188933099E-0002 7.79948286861805E-0002 7.78376697694818E-0002 7.76809406101253E-0002 7.75246396672079E-0002 + 7.73687653946137E-0002 7.72133162410102E-0002 7.70582906488952E-0002 7.69036870574400E-0002 7.67495038970275E-0002 + 7.65957395966050E-0002 7.64423925775095E-0002 7.62894612589251E-0002 7.61369440524174E-0002 7.59848393671552E-0002 + 7.58331456063445E-0002 7.56818611703143E-0002 7.55309844541373E-0002 7.53805138500045E-0002 7.52304477443691E-0002 + 7.50807845219874E-0002 7.49315225623484E-0002 7.47826602439551E-0002 7.46341959381344E-0002 7.44861280164142E-0002 + 7.43384548469521E-0002 7.41911747933422E-0002 7.40442862179487E-0002 7.38977874795225E-0002 7.37516769362987E-0002 + 7.36059529426590E-0002 7.34606138519920E-0002 7.33156580150238E-0002 7.31710837810101E-0002 7.30268894991686E-0002 + 7.28830735153383E-0002 7.27396341750823E-0002 7.25965698241667E-0002 7.24538788047406E-0002 7.23115594627412E-0002 + 7.21696101397741E-0002 7.20280291798035E-0002 7.18868149236575E-0002 7.17459657173968E-0002 7.16054799034718E-0002 + 7.14653558267020E-0002 7.13255918314083E-0002 7.11861862654840E-0002 7.10471374748939E-0002 7.09084438098996E-0002 + 7.07701036212346E-0002 7.06321152615435E-0002 7.04944770863446E-0002 7.03571874525968E-0002 7.02202447206207E-0002 + 7.00836472533849E-0002 6.99473934157912E-0002 6.98114815792364E-0002 6.96759101153824E-0002 6.95406774021585E-0002 + 6.94057818192092E-0002 6.92712217526994E-0002 6.91369955919615E-0002 6.90031017321428E-0002 6.88695385727720E-0002 + 6.87363045189673E-0002 6.86033979819250E-0002 6.84708173786873E-0002 6.83385611309483E-0002 6.82066276693899E-0002 + 6.80750154293632E-0002 6.79437228540233E-0002 6.78127483940986E-0002 6.76820905071790E-0002 6.75517476601324E-0002 + 6.74217183262268E-0002 6.72920009873068E-0002 6.71625941359728E-0002 6.70334962724615E-0002 6.69047059056204E-0002 + 6.67762215558113E-0002 6.66480417525135E-0002 6.65201650345761E-0002 6.63925899533660E-0002 6.62653150706118E-0002 + 6.61383389581746E-0002 6.60116602004752E-0002 6.58852773940258E-0002 6.57591891476867E-0002 6.56333940819558E-0002 + 6.55078908316414E-0002 6.53826780446700E-0002 6.52577543811354E-0002 6.51331185174237E-0002 6.50087691421211E-0002 + 6.48847049608659E-0002 6.47609246924980E-0002 6.46374270717360E-0002 6.45142108501639E-0002 6.43912747950404E-0002 + 6.42686176895593E-0002 6.41462383345633E-0002 6.40241355478377E-0002 6.39023081667954E-0002 6.37807550436522E-0002 + 6.36594750524737E-0002 6.35384670843511E-0002 6.34177300505734E-0002 6.32972628821652E-0002 6.31770645291817E-0002 + 6.30571339641268E-0002 6.29374701795524E-0002 6.28180721897795E-0002 6.26989390309236E-0002 6.25800697609187E-0002 + 6.24614634617283E-0002 6.23431192369427E-0002 6.22250362149627E-0002 6.21072135485409E-0002 6.19896504133503E-0002 + 6.18723460116573E-0002 6.17552995706493E-0002 6.16385103431917E-0002 6.15219776098030E-0002 6.14057006755218E-0002 + 6.12896788748025E-0002 6.11739115693564E-0002 6.10583981491558E-0002 6.09431380331961E-0002 6.08281306690401E-0002 + 6.07133755345558E-0002 6.05988721384365E-0002 6.04846200192597E-0002 6.03706187479583E-0002 6.02568679263922E-0002 + 6.01433671890903E-0002 6.00301162040173E-0002 5.99171146709025E-0002 5.98043623256675E-0002 5.96918589370480E-0002 + 5.95796043100477E-0002 5.94675982842678E-0002 5.93558407351663E-0002 5.92443315770290E-0002 5.91330707583672E-0002 + 5.90220582646439E-0002 5.89112940977724E-0002 5.88007782575458E-0002 5.86905107421236E-0002 5.85804915458282E-0002 + 5.84707206640361E-0002 5.83611980855900E-0002 5.82519238011174E-0002 5.81428977969096E-0002 5.80341200581022E-0002 + 5.79255905669587E-0002 5.78173093038478E-0002 5.77092762472418E-0002 5.76014913732243E-0002 5.74939546554878E-0002 + 5.73866660658222E-0002 5.72796255750938E-0002 5.71728331495640E-0002 5.70662887557937E-0002 5.69599923569607E-0002 + 5.68539439140847E-0002 5.67481433877440E-0002 5.66425907331625E-0002 5.65372859075750E-0002 5.64322288626114E-0002 + 5.63274195506817E-0002 5.62228579195685E-0002 5.61185439178319E-0002 5.60144774891538E-0002 5.59106585772528E-0002 + 5.58070871226859E-0002 5.57037630650606E-0002 5.56006863413104E-0002 5.54978568856925E-0002 5.53952746322481E-0002 + 5.52929395115996E-0002 5.51908514526727E-0002 5.50890103831866E-0002 5.49874162281751E-0002 5.48860689107230E-0002 + 5.47849683524576E-0002 5.46841144723140E-0002 5.45835071887531E-0002 5.44831464163068E-0002 5.43830320695223E-0002 + 5.42831640597542E-0002 5.41835422971359E-0002 5.40841666893441E-0002 5.39850371428314E-0002 5.38861535618369E-0002 + 5.37875158491255E-0002 5.36891239047512E-0002 5.35909776275370E-0002 5.34930769143326E-0002 5.33954216605070E-0002 + 5.32980117594527E-0002 5.32008471020886E-0002 5.31039275776005E-0002 5.30072530749243E-0002 5.29108234790328E-0002 + 5.28146386748932E-0002 5.27186985447435E-0002 5.26230029693283E-0002 5.25275518269063E-0002 5.24323449954785E-0002 + 5.23373823498134E-0002 5.22426637639238E-0002 5.21481891088337E-0002 5.20539582560483E-0002 5.19599710728411E-0002 + 5.18662274267163E-0002 5.17727271821824E-0002 5.16794702034806E-0002 5.15864563498669E-0002 5.14936854838024E-0002 + 5.14011574620150E-0002 5.13088721417047E-0002 5.12168293770651E-0002 5.11250290222638E-0002 5.10334709279617E-0002 + 5.09421549445421E-0002 5.08510809201214E-0002 5.07602487010441E-0002 5.06696581328770E-0002 5.05793090581684E-0002 + 5.04892013194325E-0002 5.03993347564109E-0002 5.03097092080621E-0002 5.02203245103196E-0002 5.01311804993272E-0002 + 5.00422770086992E-0002 4.99536138702650E-0002 4.98651909155637E-0002 4.97770079728521E-0002 4.96890648695952E-0002 + 4.96013614319669E-0002 4.95138974843499E-0002 4.94266728495839E-0002 4.93396873487145E-0002 4.92529408019904E-0002 + 4.91664330276138E-0002 4.90801638422391E-0002 4.89941330614703E-0002 4.89083404983614E-0002 4.88227859659132E-0002 + 4.87374692748240E-0002 4.86523902339870E-0002 4.85675486519899E-0002 4.84829443341129E-0002 4.83985770863286E-0002 + 4.83144467120498E-0002 4.82305530126282E-0002 4.81468957898555E-0002 4.80634748414572E-0002 4.79802899660979E-0002 + 4.78973409598753E-0002 4.78146276178211E-0002 4.77321497333995E-0002 4.76499070987559E-0002 4.75678995049671E-0002 + 4.74861267400340E-0002 4.74045885933938E-0002 4.73232848511550E-0002 4.72422152983526E-0002 4.71613797189477E-0002 + 4.70807778960770E-0002 4.70004096100446E-0002 4.69202746403274E-0002 4.68403727665802E-0002 4.67607037648672E-0002 + 4.66812674116792E-0002 4.66020634819240E-0002 4.65230917476677E-0002 4.64443519816528E-0002 4.63658439540292E-0002 + 4.62875674346164E-0002 4.62095221908901E-0002 4.61317079899939E-0002 4.60541245967252E-0002 4.59767717763027E-0002 + 4.58996492910935E-0002 4.58227569026255E-0002 4.57460943715871E-0002 4.56696614575739E-0002 4.55934579175768E-0002 + 4.55174835092561E-0002 4.54417379874126E-0002 4.53662211072636E-0002 4.52909326209125E-0002 4.52158722806255E-0002 + 4.51410398370655E-0002 4.50664350397962E-0002 4.49920576370281E-0002 4.49179073753658E-0002 4.48439840023313E-0002 + 4.47702872610615E-0002 4.46968168958616E-0002 4.46235726489224E-0002 4.45505542618342E-0002 4.44777614745756E-0002 + 4.44051940262709E-0002 4.43328516544309E-0002 4.42607340967218E-0002 4.41888410876773E-0002 4.41171723624911E-0002 + 4.40457276542338E-0002 4.39745066953704E-0002 4.39035092172532E-0002 4.38327349498679E-0002 4.37621836223392E-0002 + 4.36918549619169E-0002 4.36217486965083E-0002 4.35518645518914E-0002 4.34822022517125E-0002 4.34127615207815E-0002 + 4.33435420807614E-0002 4.32745436539707E-0002 4.32057659608474E-0002 4.31372087209619E-0002 4.30688716527634E-0002 + 4.30007544730709E-0002 4.29328568993574E-0002 4.28651786467032E-0002 4.27977194290638E-0002 4.27304789602858E-0002 + 4.26634569533444E-0002 4.25966531180553E-0002 4.25300671671738E-0002 4.24636988083875E-0002 4.23975477505435E-0002 + 4.23316137017414E-0002 4.22658963684431E-0002 4.22003954561067E-0002 4.21351106696961E-0002 4.20700417124068E-0002 + 4.20051882877026E-0002 4.19405500968958E-0002 4.18761268411840E-0002 4.18119182210131E-0002 4.17479239349298E-0002 + 4.16841436813650E-0002 4.16205771576135E-0002 4.15572240603439E-0002 4.14940840845777E-0002 4.14311569252188E-0002 + 4.13684422756502E-0002 4.13059398295196E-0002 4.12436492783149E-0002 4.11815703134048E-0002 4.11197026246347E-0002 + 4.10580459017302E-0002 4.09965998332756E-0002 4.09353641068408E-0002 4.08743384093641E-0002 4.08135224274074E-0002 + 4.07529158453665E-0002 4.06925183478989E-0002 4.06323296189012E-0002 4.05723493412527E-0002 4.05125771956633E-0002 + 4.04530128650233E-0002 4.03936560289012E-0002 4.03345063669978E-0002 4.02755635576099E-0002 4.02168272791668E-0002 + 4.01582972092052E-0002 4.00999730236004E-0002 4.00418543988716E-0002 3.99839410089783E-0002 3.99262325285236E-0002 + 3.98687286309598E-0002 3.98114289889723E-0002 3.97543332744793E-0002 3.96974411590165E-0002 3.96407523125816E-0002 + 3.95842664054308E-0002 3.95279831064100E-0002 3.94719020837243E-0002 3.94160230054517E-0002 3.93603455378730E-0002 + 3.93048693477835E-0002 3.92495941001804E-0002 3.91945194605752E-0002 3.91396450925520E-0002 3.90849706599516E-0002 + 3.90304958254577E-0002 3.89762202511108E-0002 3.89221435990795E-0002 3.88682655293449E-0002 3.88145857022728E-0002 + 3.87611037775852E-0002 3.87078194141017E-0002 3.86547322706412E-0002 3.86018420035740E-0002 3.85491482714592E-0002 + 3.84966507293756E-0002 3.84443490338180E-0002 3.83922428392172E-0002 3.83403318011627E-0002 3.82886155726631E-0002 + 3.82370938071117E-0002 3.81857661579003E-0002 3.81346322771283E-0002 3.80836918154730E-0002 3.80329444247712E-0002 + 3.79823897550499E-0002 3.79320274565922E-0002 3.78818571782580E-0002 3.78318785689043E-0002 3.77820912764812E-0002 + 3.77324949491949E-0002 3.76830892338269E-0002 3.76338737763799E-0002 3.75848482240183E-0002 3.75360122207988E-0002 + 3.74873654129752E-0002 3.74389074442101E-0002 3.73906379588106E-0002 3.73425565995273E-0002 3.72946630102734E-0002 + 3.72469568323688E-0002 3.71994377082965E-0002 3.71521052792409E-0002 3.71049591865132E-0002 3.70579990701256E-0002 + 3.70112245698277E-0002 3.69646353260152E-0002 3.69182309766162E-0002 3.68720111605939E-0002 3.68259755165196E-0002 + 3.67801236808852E-0002 3.67344552917372E-0002 3.66889699854321E-0002 3.66436673985832E-0002 3.65985471668920E-0002 + 3.65536089256678E-0002 3.65088523095674E-0002 3.64642769537649E-0002 3.64198824918724E-0002 3.63756685578893E-0002 + 3.63316347847725E-0002 3.62877808058668E-0002 3.62441062536043E-0002 3.62006107593738E-0002 3.61572939559936E-0002 + 3.61141554738071E-0002 3.60711949443272E-0002 3.60284119977630E-0002 3.59858062651034E-0002 3.59433773744696E-0002 + 3.59011249568476E-0002 3.58590486403549E-0002 3.58171480542810E-0002 3.57754228266104E-0002 3.57338725854565E-0002 + 3.56924969582800E-0002 3.56512955729318E-0002 3.56102680558269E-0002 3.55694140336405E-0002 3.55287331334391E-0002 + 3.54882249799385E-0002 3.54478892002051E-0002 3.54077254183009E-0002 3.53677332601167E-0002 3.53279123501064E-0002 + 3.52882623125936E-0002 3.52487827716405E-0002 3.52094733513103E-0002 3.51703336752746E-0002 3.51313633664213E-0002 + 3.50925620476389E-0002 3.50539293422101E-0002 3.50154648718487E-0002 3.49771682589240E-0002 3.49390391256768E-0002 + 3.49010770934329E-0002 3.48632817837823E-0002 3.48256528171383E-0002 3.47881898150957E-0002 3.47508923976796E-0002 + 3.47137601858356E-0002 3.46767927994635E-0002 3.46399898585977E-0002 3.46033509824889E-0002 3.45668757903914E-0002 + 3.45305639023508E-0002 3.44944149368424E-0002 3.44584285127391E-0002 3.44226042485247E-0002 3.43869417630821E-0002 + 3.43514406737226E-0002 3.43161005989452E-0002 3.42809211560718E-0002 3.42459019636131E-0002 3.42110426378509E-0002 + 3.41763427965192E-0002 3.41418020568329E-0002 3.41074200350926E-0002 3.40731963487899E-0002 3.40391306133183E-0002 + 3.40052224463161E-0002 3.39714714631916E-0002 3.39378772796241E-0002 3.39044395122230E-0002 3.38711577770797E-0002 + 3.38380316884498E-0002 3.38050608631013E-0002 3.37722449154396E-0002 3.37395834613294E-0002 3.37070761150633E-0002 + 3.36747224923944E-0002 3.36425222068442E-0002 3.36104748747149E-0002 3.35785801098136E-0002 3.35468375264858E-0002 + 3.35152467389568E-0002 3.34838073618599E-0002 3.34525190093124E-0002 3.34213812949159E-0002 3.33903938329451E-0002 + 3.33595562376879E-0002 3.33288681223888E-0002 3.32983291005699E-0002 3.32679387861639E-0002 3.32376967927216E-0002 + 3.32076027338084E-0002 3.31776562230048E-0002 3.31478568731128E-0002 3.31182042973467E-0002 3.30886981095989E-0002 + 3.30593379224545E-0002 3.30301233493095E-0002 3.30010540031796E-0002 3.29721294974957E-0002 3.29433494441161E-0002 + 3.29147134573024E-0002 3.28862211493471E-0002 3.28578721329585E-0002 3.28296660217927E-0002 3.28016024275357E-0002 + 3.27736809637504E-0002 3.27459012434893E-0002 3.27182628788968E-0002 3.26907654830669E-0002 3.26634086691153E-0002 + 3.26361920489843E-0002 3.26091152364974E-0002 3.25821778435083E-0002 3.25553794836204E-0002 3.25287197688659E-0002 + 3.25021983126296E-0002 3.24758147275227E-0002 3.24495686267127E-0002 3.24234596224608E-0002 3.23974873277183E-0002 + 3.23716513563935E-0002 3.23459513206910E-0002 3.23203868337731E-0002 3.22949575088290E-0002 3.22696629585424E-0002 + 3.22445027965566E-0002 3.22194766356106E-0002 3.21945840895377E-0002 3.21698247712671E-0002 3.21451982944239E-0002 + 3.21207042718624E-0002 3.20963423178008E-0002 3.20721120454206E-0002 3.20480130684678E-0002 3.20240450008533E-0002 + 3.20002074558524E-0002 3.19765000479736E-0002 3.19529223909575E-0002 3.19294740983102E-0002 3.19061547850405E-0002 + 3.18829640647218E-0002 3.18599015525651E-0002 3.18369668618119E-0002 3.18141596080108E-0002 3.17914794051419E-0002 + 3.17689258686926E-0002 3.17464986128492E-0002 3.17241972533067E-0002 3.17020214040580E-0002 3.16799706814088E-0002 + 3.16580447003653E-0002 3.16362430762397E-0002 3.16145654250534E-0002 3.15930113617961E-0002 3.15715805033728E-0002 + 3.15502724652561E-0002 3.15290868632271E-0002 3.15080233145834E-0002 3.14870814346536E-0002 3.14662608406861E-0002 + 3.14455611495700E-0002 3.14249819782384E-0002 3.14045229438025E-0002 3.13841836628811E-0002 3.13639637533457E-0002 + 3.13438628328452E-0002 3.13238805189401E-0002 3.13040164297747E-0002 3.12842701832714E-0002 3.12646413979376E-0002 + 3.12451296917913E-0002 3.12257346841083E-0002 3.12064559928693E-0002 3.11872932382553E-0002 3.11682460384809E-0002 + 3.11493140134244E-0002 3.11304967827464E-0002 3.11117939661591E-0002 3.10932051835610E-0002 3.10747300554415E-0002 + 3.10563682020742E-0002 3.10381192441898E-0002 3.10199828027078E-0002 3.10019584984677E-0002 3.09840459530375E-0002 + 3.09662447881760E-0002 3.09485546248892E-0002 3.09309750857224E-0002 3.09135057928740E-0002 3.08961463688697E-0002 + 3.08788964361586E-0002 3.08617556173834E-0002 3.08447235364605E-0002 3.08277998162866E-0002 3.08109840806287E-0002 + 3.07942759534496E-0002 3.07776750589088E-0002 3.07611810212276E-0002 3.07447934653655E-0002 3.07285120163449E-0002 + 3.07123362989818E-0002 3.06962659389673E-0002 3.06803005619218E-0002 3.06644397936664E-0002 3.06486832608995E-0002 + 3.06330305899801E-0002 3.06174814074693E-0002 3.06020353409432E-0002 3.05866920173689E-0002 3.05714510647301E-0002 + 3.05563121105377E-0002 3.05412747833204E-0002 3.05263387115419E-0002 3.05115035242785E-0002 3.04967688501361E-0002 + 3.04821343190121E-0002 3.04675995601989E-0002 3.04531642040108E-0002 3.04388278811076E-0002 3.04245902214092E-0002 + 3.04104508561310E-0002 3.03964094161570E-0002 3.03824655340758E-0002 3.03686188410595E-0002 3.03548689690361E-0002 + 3.03412155510973E-0002 3.03276582202781E-0002 3.03141966087407E-0002 3.03008303510368E-0002 3.02875590805754E-0002 + 3.02743824313893E-0002 3.02613000380007E-0002 3.02483115356933E-0002 3.02354165591536E-0002 3.02226147439666E-0002 + 3.02099057262096E-0002 3.01972891423160E-0002 3.01847646282599E-0002 3.01723318211891E-0002 3.01599903584741E-0002 + 3.01477398772994E-0002 3.01355800164348E-0002 3.01235104136484E-0002 3.01115307076139E-0002 3.00996405377756E-0002 + 3.00878395431218E-0002 3.00761273638222E-0002 3.00645036397276E-0002 3.00529680110532E-0002 3.00415201197433E-0002 + 3.00301596063340E-0002 3.00188861125462E-0002 3.00076992803309E-0002 2.99965987522800E-0002 2.99855841713534E-0002 + 2.99746551806066E-0002 2.99638114233282E-0002 2.99530525439964E-0002 2.99423781863672E-0002 2.99317879957980E-0002 + 2.99212816169248E-0002 2.99108586954401E-0002 2.99005188776834E-0002 2.98902618096847E-0002 2.98800871382591E-0002 + 2.98699945100495E-0002 2.98599835735810E-0002 2.98500539758389E-0002 2.98402053659659E-0002 2.98304373925247E-0002 + 2.98207497044566E-0002 2.98111419519044E-0002 2.98016137842953E-0002 2.97921648523965E-0002 2.97827948070828E-0002 + 2.97735033000228E-0002 2.97642899823081E-0002 2.97551545065112E-0002 2.97460965251776E-0002 2.97371156912376E-0002 + 2.97282116582821E-0002 2.97193840801509E-0002 2.97106326109339E-0002 2.97019569059325E-0002 2.96933566198754E-0002 + 2.96848314085673E-0002 2.96763809283404E-0002 2.96680048353676E-0002 2.96597027864879E-0002 2.96514744400324E-0002 + 2.96433194529375E-0002 2.96352374840453E-0002 2.96272281920423E-0002 2.96192912361471E-0002 2.96114262761115E-0002 + 2.96036329720836E-0002 2.95959109847458E-0002 2.95882599750406E-0002 2.95806796045843E-0002 2.95731695353920E-0002 + 2.95657294300164E-0002 2.95583589515485E-0002 2.95510577633426E-0002 2.95438255290171E-0002 2.95366619134197E-0002 + 2.95295665809745E-0002 2.95225391969231E-0002 2.95155794278772E-0002 2.95086869389228E-0002 2.95018613978973E-0002 + 2.94951024715272E-0002 2.94884098277746E-0002 2.94817831345957E-0002 2.94752220610459E-0002 2.94687262760380E-0002 + 2.94622954493096E-0002 2.94559292511474E-0002 2.94496273522500E-0002 2.94433894235905E-0002 2.94372151371078E-0002 + 2.94311041646712E-0002 2.94250561791868E-0002 2.94190708538379E-0002 2.94131478619471E-0002 2.94072868782225E-0002 + 2.94014875769594E-0002 2.93957496334942E-0002 2.93900727235133E-0002 2.93844565230532E-0002 2.93789007090559E-0002 + 2.93734049588152E-0002 2.93679689497697E-0002 2.93625923603349E-0002 2.93572748694883E-0002 2.93520161560769E-0002 + 2.93468159004124E-0002 2.93416737822611E-0002 2.93365894832029E-0002 2.93315626839265E-0002 2.93265930667973E-0002 + 2.93216803139842E-0002 2.93168241085022E-0002 2.93120241340039E-0002 2.93072800742953E-0002 2.93025916138216E-0002 + 2.92979584380854E-0002 2.92933802323275E-0002 2.92888566828472E-0002 2.92843874763785E-0002 2.92799723000205E-0002 + 2.92756108415864E-0002 2.92713027893952E-0002 2.92670478320638E-0002 2.92628456592734E-0002 2.92586959610046E-0002 + 2.92545984273989E-0002 2.92505527495252E-0002 2.92465586191715E-0002 2.92426157284285E-0002 2.92387237697594E-0002 + 2.92348824364880E-0002 2.92310914225915E-0002 2.92273504218641E-0002 2.92236591295209E-0002 2.92200172408745E-0002 + 2.92164244521026E-0002 2.92128804596213E-0002 2.92093849603644E-0002 2.92059376522029E-0002 2.92025382333180E-0002 + 2.91991864024112E-0002 2.91958818587746E-0002 2.91926243023614E-0002 2.91894134337873E-0002 2.91862489537019E-0002 + 2.91831305642569E-0002 2.91800579672206E-0002 2.91770308653755E-0002 2.91740489622401E-0002 2.91711119614405E-0002 + 2.91682195674801E-0002 2.91653714854604E-0002 2.91625674208725E-0002 2.91598070799471E-0002 2.91570901693758E-0002 + 2.91544163966614E-0002 2.91517854696993E-0002 2.91491970964272E-0002 2.91466509865074E-0002 2.91441468493658E-0002 + 2.91416843951742E-0002 2.91392633348501E-0002 2.91368833797079E-0002 2.91345442417394E-0002 2.91322456336151E-0002 + 2.91299872680534E-0002 2.91277688595049E-0002 2.91255901214874E-0002 2.91234507692527E-0002 2.91213505184544E-0002 + 2.91192890851485E-0002 2.91172661856536E-0002 2.91152815374642E-0002 2.91133348585501E-0002 2.91114258670754E-0002 + 2.91095542822424E-0002 2.91077198240117E-0002 2.91059222121189E-0002 2.91041611675510E-0002 2.91024364119152E-0002 + 2.91007476670170E-0002 2.90990946554244E-0002 2.90974771006084E-0002 2.90958947265228E-0002 2.90943472571114E-0002 + 2.90928344177167E-0002 2.90913559338840E-0002 2.90899115319959E-0002 2.90885009387803E-0002 2.90871238814512E-0002 + 2.90857800887671E-0002 2.90844692885656E-0002 2.90831912105822E-0002 2.90819455845489E-0002 2.90807321408994E-0002 + 2.90795506109111E-0002 2.90784007262125E-0002 2.90772822190653E-0002 2.90761948222955E-0002 2.90751382694343E-0002 + 2.90741122951436E-0002 2.90731166337334E-0002 2.90721510202923E-0002 2.90712151913949E-0002 2.90703088832656E-0002 + 2.90694318332634E-0002 2.90685837794586E-0002 2.90677644598558E-0002 2.90669736138089E-0002 2.90662109810316E-0002 + 2.90654763014572E-0002 2.90647693165117E-0002 2.90640897673471E-0002 2.90634373961855E-0002 2.90628119461083E-0002 + 2.90622131604194E-0002 2.90616407829298E-0002 2.90610945584529E-0002 2.90605742323107E-0002 2.90600795501214E-0002 + 2.90596102587210E-0002 2.90591661048894E-0002 2.90587468368384E-0002 2.90583522028668E-0002 2.90579819517149E-0002 + 2.90576358332743E-0002 2.90573135978798E-0002 2.90570149960974E-0002 2.90567397797176E-0002 2.90564877007638E-0002 + 2.90562585122728E-0002 2.90560519673024E-0002 2.90558678202099E-0002 2.90557058254456E-0002 2.90555657384767E-0002 + 2.90554473152204E-0002 2.90553503119730E-0002 2.90552744863343E-0002 2.90552195957167E-0002 2.90551853989089E-0002 + 2.90551716550108E-0002 2.90551781234339E-0002 2.90552045647557E-0002 2.90552507401513E-0002 2.90553164109675E-0002 + 2.90554013393634E-0002 2.90555052886675E-0002 2.90556280219550E-0002 2.90557693035428E-0002 2.90559288983501E-0002 + 2.90561065718281E-0002 2.90563020897461E-0002 2.90565152191907E-0002 2.90567457274259E-0002 2.90569933821788E-0002 + 2.90572579523537E-0002 2.90575392071055E-0002 2.90578369161972E-0002 2.90581508505000E-0002 2.90584807807098E-0002 + 2.90588264790603E-0002 2.90591877177543E-0002 2.90595642701056E-0002 2.90599559096838E-0002 2.90603624108859E-0002 + 2.90607835486514E-0002 2.90612190988919E-0002 2.90616688375625E-0002 2.90621325418067E-0002 2.90626099888839E-0002 + 2.90631009573867E-0002 2.90636052262399E-0002 2.90641225744868E-0002 2.90646527825772E-0002 2.90651956311527E-0002 + 2.90657509015472E-0002 2.90663183762182E-0002 2.90668978374584E-0002 2.90674890686135E-0002 2.90680918542266E-0002 + 2.90687059780331E-0002 2.90693312260418E-0002 2.90699673838134E-0002 2.90706142381091E-0002 2.90712715757443E-0002 + 2.90719391850954E-0002 2.90726168543793E-0002 2.90733043725146E-0002 2.90740015298401E-0002 2.90747081160346E-0002 + 2.90754239227006E-0002 2.90761487412845E-0002 2.90768823643689E-0002 2.90776245845962E-0002 2.90783751958907E-0002 + 2.90791339925251E-0002 2.90799007691934E-0002 2.90806753215859E-0002 2.90814574459595E-0002 2.90822469389223E-0002 + 2.90830435982969E-0002 2.90838472221149E-0002 2.90846576089771E-0002 2.90854745587013E-0002 2.90862978708124E-0002 + 2.90871273465579E-0002 2.90879627868937E-0002 2.90888039938518E-0002 2.90896507703978E-0002 2.90905029195672E-0002 + 2.90913602453303E-0002 2.90922225520888E-0002 2.90930896455409E-0002 2.90939613308808E-0002 2.90948374153216E-0002 + 2.90957177055015E-0002 2.90966020092863E-0002 2.90974901352657E-0002 2.90983818923213E-0002 2.90992770902761E-0002 + 2.91001755397519E-0002 2.91010770513030E-0002 2.91019814367887E-0002 2.91028885085078E-0002 2.91037980792712E-0002 + 2.91047099627642E-0002 2.91056239731855E-0002 2.91065399254650E-0002 2.91074576349033E-0002 2.91083769178946E-0002 + 2.91092975908437E-0002 2.91102194715397E-0002 2.91111423778561E-0002 2.91120661287630E-0002 2.91129905430266E-0002 + 2.91139154412348E-0002 2.91148406437725E-0002 2.91157659719077E-0002 2.91166912476474E-0002 2.91176162933036E-0002 + 2.91185409320737E-0002 2.91194649881859E-0002 2.91203882855961E-0002 2.91213106497272E-0002 2.91222319062380E-0002 + 2.91231518815316E-0002 2.91240704026103E-0002 2.91249872971495E-0002 2.91259023932082E-0002 2.91268155202446E-0002 + 2.91277265073766E-0002 2.91286351846876E-0002 2.91295413835907E-0002 2.91304449351598E-0002 2.91313456717272E-0002 + 2.91322434254324E-0002 2.91331380306913E-0002 2.91340293207843E-0002 2.91349171304709E-0002 2.91358012952644E-0002 + 2.91366816509969E-0002 2.91375580340374E-0002 2.91384302818741E-0002 2.91392982321706E-0002 2.91401617234199E-0002 + 2.91410205948735E-0002 2.91418746858865E-0002 2.91427238371556E-0002 2.91435678894096E-0002 2.91444066845023E-0002 + 2.91452400646846E-0002 2.91460678727515E-0002 2.91468899521146E-0002 2.91477061468767E-0002 2.91485163021957E-0002 + 2.91493202631934E-0002 2.91501178759755E-0002 2.91509089871222E-0002 2.91516934439081E-0002 2.91524710944482E-0002 + 2.91532417871152E-0002 2.91540053709779E-0002 2.91547616961666E-0002 2.91555106127793E-0002 2.91562519719039E-0002 + 2.91569856253271E-0002 2.91577114256081E-0002 2.91584292252026E-0002 2.91591388776325E-0002 2.91598402374860E-0002 + 2.91605331593961E-0002 2.91612174985521E-0002 2.91618931112854E-0002 2.91625598540464E-0002 2.91632175843560E-0002 + 2.91638661597820E-0002 2.91645054391836E-0002 2.91651352813950E-0002 2.91657555463234E-0002 2.91663660944378E-0002 + 2.91669667867695E-0002 2.91675574846930E-0002 2.91681380505854E-0002 2.91687083471684E-0002 2.91692682381679E-0002 + 2.91698175873624E-0002 2.91703562594626E-0002 2.91708841202589E-0002 2.91714010350828E-0002 2.91719068707868E-0002 + 2.91724014944984E-0002 2.91728847738409E-0002 2.91733565773008E-0002 2.91738167738614E-0002 2.91742652331506E-0002 + 2.91747018252944E-0002 2.91751264211375E-0002 2.91755388920244E-0002 2.91759391101664E-0002 2.91763269482023E-0002 + 2.91767022792717E-0002 2.91770649773101E-0002 2.91774149166085E-0002 2.91777519724749E-0002 2.91780760203539E-0002 + 2.91783869367819E-0002 2.91786845985065E-0002 2.91789688830743E-0002 2.91792396683911E-0002 2.91794968333105E-0002 + 2.91797402571933E-0002 2.91799698196871E-0002 2.91801854013896E-0002 2.91803868837019E-0002 2.91805741477982E-0002 + 2.91807470764674E-0002 2.91809055521990E-0002 2.91810494587304E-0002 2.91811786798685E-0002 2.91812931005960E-0002 + 2.91813926061878E-0002 2.91814770823583E-0002 2.91815464154835E-0002 2.91816004926756E-0002 2.91816392015617E-0002 + 2.91816624305804E-0002 2.91816700686128E-0002 2.91816620046142E-0002 2.91816381290170E-0002 2.91815983322551E-0002 + 2.91815425055027E-0002 2.91814705405271E-0002 2.91813823298372E-0002 2.91812777661668E-0002 2.91811567432881E-0002 + 2.91810191550513E-0002 2.91808648962723E-0002 2.91806938622159E-0002 2.91805059488921E-0002 2.91803010526128E-0002 + 2.91800790705103E-0002 2.91798398999458E-0002 2.91795834392502E-0002 2.91793095873545E-0002 2.91790182432721E-0002 + 2.91787093072842E-0002 2.91783826796073E-0002 2.91780382615048E-0002 2.91776759544725E-0002 2.91772956609063E-0002 + 2.91768972833615E-0002 2.91764807253687E-0002 2.91760458909155E-0002 2.91755926843729E-0002 2.91751210109406E-0002 + 2.91746307761289E-0002 2.91741218864261E-0002 2.91735942483354E-0002 2.91730477694136E-0002 2.91724823574557E-0002 + 2.91718979209405E-0002 2.91712943689946E-0002 2.91706716112808E-0002 2.91700295578878E-0002 2.91693681195162E-0002 + 2.91686872075164E-0002 2.91679867338888E-0002 2.91672666108388E-0002 2.91665267514461E-0002 2.91657670692565E-0002 + 2.91649874783193E-0002 2.91641878934113E-0002 2.91633682297398E-0002 2.91625284027568E-0002 2.91616683292016E-0002 + 2.91607879256871E-0002 2.91598871096682E-0002 2.91589657993676E-0002 2.91580239127715E-0002 2.91570613695658E-0002 + 2.91560780889029E-0002 2.91550739912266E-0002 2.91540489971184E-0002 2.91530030280055E-0002 2.91519360054908E-0002 + 2.91508478520612E-0002 2.91497384906788E-0002 2.91486078445570E-0002 2.91474558377951E-0002 2.91462823949316E-0002 + 2.91450874410188E-0002 2.91438709017733E-0002 2.91426327030905E-0002 2.91413727717175E-0002 2.91400910350668E-0002 + 2.91387874206568E-0002 2.91374618569339E-0002 2.91361142725632E-0002 2.91347445970269E-0002 2.91333527601013E-0002 + 2.91319386921944E-0002 2.91305023242708E-0002 2.91290435878154E-0002 2.91275624148337E-0002 2.91260587378522E-0002 + 2.91245324899566E-0002 2.91229836045674E-0002 2.91214120158148E-0002 2.91198176585394E-0002 2.91182004676559E-0002 + 2.91165603788654E-0002 2.91148973283557E-0002 2.91132112529149E-0002 2.91115020898190E-0002 2.91097697765703E-0002 + 2.91080142515722E-0002 2.91062354534552E-0002 2.91044333217523E-0002 2.91026077961494E-0002 2.91007588168232E-0002 + 2.90988863247419E-0002 2.90969902611779E-0002 2.90950705678960E-0002 2.90931271875290E-0002 2.90911600627151E-0002 + 2.90891691367738E-0002 2.90871543536315E-0002 2.90851156577466E-0002 2.90830529939979E-0002 2.90809663076468E-0002 + 2.90788555445633E-0002 2.90767206511893E-0002 2.90745615743131E-0002 2.90723782615591E-0002 2.90701706605980E-0002 + 2.90679387199000E-0002 2.90656823881328E-0002 2.90634016148775E-0002 2.90610963499136E-0002 2.90587665435962E-0002 + 2.90564121467058E-0002 2.90540331107495E-0002 2.90516293872843E-0002 2.90492009287833E-0002 2.90467476879584E-0002 + 2.90442696180997E-0002 2.90417666730003E-0002 2.90392388069197E-0002 2.90366859746215E-0002 2.90341081312230E-0002 + 2.90315052324597E-0002 2.90288772345349E-0002 2.90262240939692E-0002 2.90235457679405E-0002 2.90208422141712E-0002 + 2.90181133905892E-0002 2.90153592558185E-0002 2.90125797688782E-0002 2.90097748892582E-0002 2.90069445769194E-0002 + 2.90040887923701E-0002 2.90012074964394E-0002 2.89983006504289E-0002 2.89953682164533E-0002 2.89924101563446E-0002 + 2.89894264334293E-0002 2.89864170104871E-0002 2.89833818515287E-0002 2.89803209205102E-0002 2.89772341819766E-0002 + 2.89741216014027E-0002 2.89709831438315E-0002 2.89678187756908E-0002 2.89646284631285E-0002 2.89614121731107E-0002 + 2.89581698731192E-0002 2.89549015307353E-0002 2.89516071143978E-0002 2.89482865928353E-0002 2.89449399349904E-0002 + 2.89415671106269E-0002 2.89381680899130E-0002 2.89347428430427E-0002 2.89312913411081E-0002 2.89278135555690E-0002 + 2.89243094582157E-0002 2.89207790211686E-0002 2.89172222174106E-0002 2.89136390198762E-0002 2.89100294020972E-0002 + 2.89063933382791E-0002 2.89027308026940E-0002 2.88990417703267E-0002 2.88953262166848E-0002 2.88915841171156E-0002 + 2.88878154480601E-0002 2.88840201862936E-0002 2.88801983084318E-0002 2.88763497922614E-0002 2.88724746155626E-0002 + 2.88685727566409E-0002 2.88646441944427E-0002 2.88606889078315E-0002 2.88567068765408E-0002 2.88526980806408E-0002 + 2.88486625005010E-0002 2.88446001169051E-0002 2.88405109112029E-0002 2.88363948649687E-0002 2.88322519605345E-0002 + 2.88280821801141E-0002 2.88238855067945E-0002 2.88196619238878E-0002 2.88154114149323E-0002 2.88111339644163E-0002 + 2.88068295567501E-0002 2.88024981767991E-0002 2.87981398100373E-0002 2.87937544421663E-0002 2.87893420594968E-0002 + 2.87849026483385E-0002 2.87804361959166E-0002 2.87759426894941E-0002 2.87714221167919E-0002 2.87668744661424E-0002 + 2.87622997259543E-0002 2.87576978852105E-0002 2.87530689334296E-0002 2.87484128601313E-0002 2.87437296554867E-0002 + 2.87390193101656E-0002 2.87342818149928E-0002 2.87295171611776E-0002 2.87247253404293E-0002 2.87199063450720E-0002 + 2.87150601671268E-0002 2.87101867997659E-0002 2.87052862361273E-0002 2.87003584696970E-0002 2.86954034945777E-0002 + 2.86904213050682E-0002 2.86854118959311E-0002 2.86803752621258E-0002 2.86753113992296E-0002 2.86702203032083E-0002 + 2.86651019701102E-0002 2.86599563966410E-0002 2.86547835797041E-0002 2.86495835165162E-0002 2.86443562050293E-0002 + 2.86391016430870E-0002 2.86338198291924E-0002 2.86285107620860E-0002 2.86231744410918E-0002 2.86178108654645E-0002 + 2.86124200351967E-0002 2.86070019504040E-0002 2.86015566119023E-0002 2.85960840204777E-0002 2.85905841773478E-0002 + 2.85850570843542E-0002 2.85795027432714E-0002 2.85739211565366E-0002 2.85683123269434E-0002 2.85626762574875E-0002 + 2.85570129514444E-0002 2.85513224126771E-0002 2.85456046451747E-0002 2.85398596534377E-0002 2.85340874421320E-0002 + 2.85282880164737E-0002 2.85224613818061E-0002 2.85166075439467E-0002 2.85107265091485E-0002 2.85048182836002E-0002 + 2.84988828743891E-0002 2.84929202883068E-0002 2.84869305331987E-0002 2.84809136165768E-0002 2.84748695465444E-0002 + 2.84687983316813E-0002 2.84626999806586E-0002 2.84565745026240E-0002 2.84504219070098E-0002 2.84442422033784E-0002 + 2.84380354020404E-0002 2.84318015133598E-0002 2.84255405479089E-0002 2.84192525166612E-0002 2.84129374311852E-0002 + 2.84065953029881E-0002 2.84002261439789E-0002 2.83938299665855E-0002 2.83874067833293E-0002 2.83809566070574E-0002 + 2.83744794511750E-0002 2.83679753289494E-0002 2.83614442544387E-0002 2.83548862416021E-0002 2.83483013048808E-0002 + 2.83416894592751E-0002 2.83350507194940E-0002 2.83283851010772E-0002 2.83216926195826E-0002 2.83149732908577E-0002 + 2.83082271315046E-0002 2.83014541576407E-0002 2.82946543863320E-0002 2.82878278345863E-0002 2.82809745198960E-0002 + 2.82740944599667E-0002 2.82671876726790E-0002 2.82602541764762E-0002 2.82532939897440E-0002 2.82463071314317E-0002 + 2.82392936206642E-0002 2.82322534768584E-0002 2.82251867196852E-0002 2.82180933692245E-0002 2.82109734455774E-0002 + 2.82038269694487E-0002 2.81966539614873E-0002 2.81894544428684E-0002 2.81822284349058E-0002 2.81749759593626E-0002 + 2.81676970379855E-0002 2.81603916930874E-0002 2.81530599469262E-0002 2.81457018224044E-0002 2.81383173424477E-0002 + 2.81309065303155E-0002 2.81234694093687E-0002 2.81160060035359E-0002 2.81085163367692E-0002 2.81010004334727E-0002 + 2.80934583179965E-0002 2.80858900153372E-0002 2.80782955505161E-0002 2.80706749487343E-0002 2.80630282357626E-0002 + 2.80553554371630E-0002 2.80476565792621E-0002 2.80399316883340E-0002 2.80321807907945E-0002 2.80244039136694E-0002 + 2.80166010838930E-0002 2.80087723288150E-0002 2.80009176760059E-0002 2.79930371532570E-0002 2.79851307885806E-0002 + 2.79771986102493E-0002 2.79692406469131E-0002 2.79612569270924E-0002 2.79532474799587E-0002 2.79452123345932E-0002 + 2.79371515206112E-0002 2.79290650676555E-0002 2.79209530055909E-0002 2.79128153646615E-0002 2.79046521752555E-0002 + 2.78964634677891E-0002 2.78882492731749E-0002 2.78800096226662E-0002 2.78717445473095E-0002 2.78634540786879E-0002 + 2.78551382484516E-0002 2.78467970887097E-0002 2.78384306315212E-0002 2.78300389092086E-0002 2.78216219543972E-0002 + 2.78131798000149E-0002 2.78047124789403E-0002 2.77962200243945E-0002 2.77877024699018E-0002 2.77791598491332E-0002 + 2.77705921959462E-0002 2.77619995443451E-0002 2.77533819285208E-0002 2.77447393831641E-0002 2.77360719427607E-0002 + 2.77273796423754E-0002 2.77186625169066E-0002 2.77099206017932E-0002 2.77011539323867E-0002 2.76923625444222E-0002 + 2.76835464738222E-0002 2.76747057565401E-0002 2.76658404289132E-0002 2.76569505273491E-0002 2.76480360886005E-0002 + 2.76390971493728E-0002 2.76301337466774E-0002 2.76211459178321E-0002 2.76121337001076E-0002 2.76030971311205E-0002 + 2.75940362486763E-0002 2.75849510906908E-0002 2.75758416953476E-0002 2.75667081007836E-0002 2.75575503456397E-0002 + 2.75483684684316E-0002 2.75391625080612E-0002 2.75299325036203E-0002 2.75206784941150E-0002 2.75114005189775E-0002 + 2.75020986176726E-0002 2.74927728301705E-0002 2.74834231958437E-0002 2.74740497550827E-0002 2.74646525480349E-0002 + 2.74552316149598E-0002 2.74457869963862E-0002 2.74363187329553E-0002 2.74268268656173E-0002 2.74173114353559E-0002 + 2.74077724831882E-0002 2.73982100506777E-0002 2.73886241790665E-0002 2.73790149100842E-0002 2.73693822854544E-0002 + 2.73597263470929E-0002 2.73500471373046E-0002 2.73403446979149E-0002 2.73306190716918E-0002 2.73208703009044E-0002 + 2.73110984283494E-0002 2.73013034967991E-0002 2.72914855492771E-0002 2.72816446287231E-0002 2.72717807786055E-0002 + 2.72618940421306E-0002 2.72519844628955E-0002 2.72420520845516E-0002 2.72320969508050E-0002 2.72221191057528E-0002 + 2.72121185933291E-0002 2.72020954577800E-0002 2.71920497434462E-0002 2.71819814947233E-0002 2.71718907562399E-0002 + 2.71617775726600E-0002 2.71516419889207E-0002 2.71414840499744E-0002 2.71313038007298E-0002 2.71211012866067E-0002 + 2.71108765528623E-0002 2.71006296449677E-0002 2.70903606084893E-0002 2.70800694890685E-0002 2.70697563325217E-0002 + 2.70594211849390E-0002 2.70490640920495E-0002 2.70386851002534E-0002 2.70282842557087E-0002 2.70178616048678E-0002 + 2.70074171940999E-0002 2.69969510700883E-0002 2.69864632794532E-0002 2.69759538691290E-0002 2.69654228858481E-0002 + 2.69548703767368E-0002 2.69442963888981E-0002 2.69337009695509E-0002 2.69230841659109E-0002 2.69124460255480E-0002 + 2.69017865959300E-0002 2.68911059245607E-0002 2.68804040592992E-0002 2.68696810477824E-0002 2.68589369380817E-0002 + 2.68481717780468E-0002 2.68373856158027E-0002 2.68265784994517E-0002 2.68157504773717E-0002 2.68049015977784E-0002 + 2.67940319091433E-0002 2.67831414599750E-0002 2.67722302989784E-0002 2.67612984745964E-0002 2.67503460357874E-0002 + 2.67393730312475E-0002 2.67283795099893E-0002 2.67173655209825E-0002 2.67063311133339E-0002 2.66952763360476E-0002 + 2.66842012385040E-0002 2.66731058700210E-0002 2.66619902798341E-0002 2.66508545173755E-0002 2.66396986322943E-0002 + 2.66285226739777E-0002 2.66173266922892E-0002 2.66061107367503E-0002 2.65948748571994E-0002 2.65836191034724E-0002 + 2.65723435255424E-0002 2.65610481732602E-0002 2.65497330968135E-0002 2.65383983460079E-0002 2.65270439713061E-0002 + 2.65156700226484E-0002 2.65042765504324E-0002 2.64928636049735E-0002 2.64814312365443E-0002 2.64699794956750E-0002 + 2.64585084327532E-0002 2.64470180983243E-0002 2.64355085428709E-0002 2.64239798172336E-0002 2.64124319719100E-0002 + 2.64008650575955E-0002 2.63892791251032E-0002 2.63776742252235E-0002 2.63660504088047E-0002 2.63544077267124E-0002 + 2.63427462298897E-0002 2.63310659693377E-0002 2.63193669959545E-0002 2.63076493609163E-0002 2.62959131152365E-0002 + 2.62841583099259E-0002 2.62723849963336E-0002 2.62605932254654E-0002 2.62487830485849E-0002 2.62369545169736E-0002 + 2.62251076818903E-0002 2.62132425945506E-0002 2.62013593063287E-0002 2.61894578686559E-0002 2.61775383328809E-0002 + 2.61656007503294E-0002 2.61536451724651E-0002 2.61416716508295E-0002 2.61296802367200E-0002 2.61176709817128E-0002 + 2.61056439373613E-0002 2.60935991551557E-0002 2.60815366866035E-0002 2.60694565833100E-0002 2.60573588968174E-0002 + 2.60452436787857E-0002 2.60331109807109E-0002 2.60209608542472E-0002 2.60087933510058E-0002 2.59966085227356E-0002 + 2.59844064208404E-0002 2.59721870971639E-0002 2.59599506033051E-0002 2.59476969908803E-0002 2.59354263115830E-0002 + 2.59231386171643E-0002 2.59108339591301E-0002 2.58985123892250E-0002 2.58861739591302E-0002 2.58738187205638E-0002 + 2.58614467251196E-0002 2.58490580244487E-0002 2.58366526702592E-0002 2.58242307142157E-0002 2.58117922079189E-0002 + 2.57993372030263E-0002 2.57868657511721E-0002 2.57743779040069E-0002 2.57618737131578E-0002 2.57493532300864E-0002 + 2.57368165066148E-0002 2.57242635942175E-0002 2.57116945443251E-0002 2.56991094087485E-0002 2.56865082387691E-0002 + 2.56738910860487E-0002 2.56612580020634E-0002 2.56486090382850E-0002 2.56359442461211E-0002 2.56232636770965E-0002 + 2.56105673826104E-0002 2.55978554140178E-0002 2.55851278227705E-0002 2.55723846601139E-0002 2.55596259773495E-0002 + 2.55468518258561E-0002 2.55340622568864E-0002 2.55212573216886E-0002 2.55084370714459E-0002 2.54956015572762E-0002 + 2.54827508304347E-0002 2.54698849419289E-0002 2.54570039429035E-0002 2.54441078843364E-0002 2.54311968174036E-0002 + 2.54182707928299E-0002 2.54053298617615E-0002 2.53923740749947E-0002 2.53794034834022E-0002 2.53664181378109E-0002 + 2.53534180889818E-0002 2.53404033876506E-0002 2.53273740845274E-0002 2.53143302302563E-0002 2.53012718753948E-0002 + 2.52881990705560E-0002 2.52751118662663E-0002 2.52620103129249E-0002 2.52488944609455E-0002 2.52357643608179E-0002 + 2.52226200627414E-0002 2.52094616169909E-0002 2.51962890737746E-0002 2.51831024833153E-0002 2.51699018956875E-0002 + 2.51566873608577E-0002 2.51434589289904E-0002 2.51302166498975E-0002 2.51169605734666E-0002 2.51036907495380E-0002 + 2.50904072279460E-0002 2.50771100583148E-0002 2.50637992903232E-0002 2.50504749734603E-0002 2.50371371574122E-0002 + 2.50237858915531E-0002 2.50104212252092E-0002 2.49970432077818E-0002 2.49836518885635E-0002 2.49702473167174E-0002 + 2.49568295412570E-0002 2.49433986113722E-0002 2.49299545760420E-0002 2.49164974841767E-0002 2.49030273845163E-0002 + 2.48895443259975E-0002 2.48760483572229E-0002 2.48625395268284E-0002 2.48490178833812E-0002 2.48354834753591E-0002 + 2.48219363511094E-0002 2.48083765590741E-0002 2.47948041474624E-0002 2.47812191643325E-0002 2.47676216578979E-0002 + 2.47540116760576E-0002 2.47403892668659E-0002 2.47267544781233E-0002 2.47131073575198E-0002 2.46994479528392E-0002 + 2.46857763115499E-0002 2.46720924813164E-0002 2.46583965094259E-0002 2.46446884432800E-0002 2.46309683301483E-0002 + 2.46172362171072E-0002 2.46034921513473E-0002 2.45897361797630E-0002 2.45759683492396E-0002 2.45621887066326E-0002 + 2.45483972986654E-0002 2.45345941718673E-0002 2.45207793727581E-0002 2.45069529478890E-0002 2.44931149434939E-0002 + 2.44792654058176E-0002 2.44654043810332E-0002 2.44515319150987E-0002 2.44376480540855E-0002 2.44237528437673E-0002 + 2.44098463298253E-0002 2.43959285580333E-0002 2.43819995738261E-0002 2.43680594227306E-0002 2.43541081500578E-0002 + 2.43401458009230E-0002 2.43261724206364E-0002 2.43121880541478E-0002 2.42981927463755E-0002 2.42841865420624E-0002 + 2.42701694861047E-0002 2.42561416229761E-0002 2.42421029970978E-0002 2.42280536529618E-0002 2.42139936348018E-0002 + 2.41999229867780E-0002 2.41858417529981E-0002 2.41717499773517E-0002 2.41576477035932E-0002 2.41435349755267E-0002 + 2.41294118367796E-0002 2.41152783307197E-0002 2.41011345007852E-0002 2.40869803902780E-0002 2.40728160421786E-0002 + 2.40586414996815E-0002 2.40444568056182E-0002 2.40302620027249E-0002 2.40160571336835E-0002 2.40018422411014E-0002 + 2.39876173673457E-0002 2.39733825546673E-0002 2.39591378453657E-0002 2.39448832813967E-0002 2.39306189047441E-0002 + 2.39163447571302E-0002 2.39020608803669E-0002 2.38877673159426E-0002 2.38734641052904E-0002 2.38591512897262E-0002 + 2.38448289104276E-0002 2.38304970084757E-0002 2.38161556247510E-0002 2.38018048000576E-0002 2.37874445750818E-0002 + 2.37730749903919E-0002 2.37586960862310E-0002 2.37443079030965E-0002 2.37299104808915E-0002 2.37155038598559E-0002 + 2.37010880798004E-0002 2.36866631802929E-0002 2.36722292011341E-0002 2.36577861818196E-0002 2.36433341615395E-0002 + 2.36288731795301E-0002 2.36144032749707E-0002 2.35999244866102E-0002 2.35854368533887E-0002 2.35709404139194E-0002 + 2.35564352067369E-0002 2.35419212701316E-0002 2.35273986423980E-0002 2.35128673615652E-0002 2.34983274657287E-0002 + 2.34837789925522E-0002 2.34692219797655E-0002 2.34546564649361E-0002 2.34400824853655E-0002 2.34255000783584E-0002 + 2.34109092809117E-0002 2.33963101300879E-0002 2.33817026626619E-0002 2.33670869152039E-0002 2.33524629244117E-0002 + 2.33378307264460E-0002 2.33231903576985E-0002 2.33085418541688E-0002 2.32938852516720E-0002 2.32792205861501E-0002 + 2.32645478931943E-0002 2.32498672081897E-0002 2.32351785665548E-0002 2.32204820034084E-0002 2.32057775538295E-0002 + 2.31910652525659E-0002 2.31763451344607E-0002 2.31616172340775E-0002 2.31468815857315E-0002 2.31321382237285E-0002 + 2.31173871822614E-0002 2.31026284951697E-0002 2.30878621963147E-0002 2.30730883192358E-0002 2.30583068975144E-0002 + 2.30435179644620E-0002 2.30287215532653E-0002 2.30139176968714E-0002 2.29991064282072E-0002 2.29842877799178E-0002 + 2.29694617845547E-0002 2.29546284745442E-0002 2.29397878820409E-0002 2.29249400391261E-0002 2.29100849777242E-0002 + 2.28952227296025E-0002 2.28803533262666E-0002 2.28654767992212E-0002 2.28505931796152E-0002 2.28357024986172E-0002 + 2.28208047871651E-0002 2.28059000760282E-0002 2.27909883957445E-0002 2.27760697767775E-0002 2.27611442495366E-0002 + 2.27462118439175E-0002 2.27312725900544E-0002 2.27163265176508E-0002 2.27013736563452E-0002 2.26864140355126E-0002 + 2.26714476845989E-0002 2.26564746325137E-0002 2.26414949083841E-0002 2.26265085409155E-0002 2.26115155587376E-0002 + 2.25965159903092E-0002 2.25815098639295E-0002 2.25664972076113E-0002 2.25514780494692E-0002 2.25364524170798E-0002 + 2.25214203382155E-0002 2.25063818401943E-0002 2.24913369503515E-0002 2.24762856957458E-0002 2.24612281033166E-0002 + 2.24461641998106E-0002 2.24310940117498E-0002 2.24160175656309E-0002 2.24009348876210E-0002 2.23858460037880E-0002 + 2.23707509400796E-0002 2.23556497222080E-0002 2.23405423756072E-0002 2.23254289257798E-0002 2.23103093978345E-0002 + 2.22951838168432E-0002 2.22800522076308E-0002 2.22649145948485E-0002 2.22497710030577E-0002 2.22346214564777E-0002 + 2.22194659793534E-0002 2.22043045956293E-0002 2.21891373290754E-0002 2.21739642033188E-0002 2.21587852418223E-0002 + 2.21436004678424E-0002 2.21284099044500E-0002 2.21132135745619E-0002 2.20980115009407E-0002 2.20828037061523E-0002 + 2.20675902124925E-0002 2.20523710422392E-0002 2.20371462173996E-0002 2.20219157598469E-0002 2.20066796911730E-0002 + 2.19914380328670E-0002 2.19761908063575E-0002 2.19609380326434E-0002 2.19456797327474E-0002 2.19304159273989E-0002 + 2.19151466371927E-0002 2.18998718825462E-0002 2.18845916837311E-0002 2.18693060607467E-0002 2.18540150334250E-0002 + 2.18387186215575E-0002 2.18234168445465E-0002 2.18081097218275E-0002 2.17927972724675E-0002 2.17774795154396E-0002 + 2.17621564695489E-0002 2.17468281533691E-0002 2.17314945853792E-0002 2.17161557837421E-0002 2.17008117665367E-0002 + 2.16854625516622E-0002 2.16701081567965E-0002 2.16547485994693E-0002 2.16393838969672E-0002 2.16240140664392E-0002 + 2.16086391249071E-0002 2.15932590890750E-0002 2.15778739755300E-0002 2.15624838007846E-0002 2.15470885809591E-0002 + 2.15316883321939E-0002 2.15162830702579E-0002 2.15008728108980E-0002 2.14854575695947E-0002 2.14700373616686E-0002 + 2.14546122022268E-0002 2.14391821062479E-0002 2.14237470884225E-0002 2.14083071634288E-0002 2.13928623455827E-0002 + 2.13774126491343E-0002 2.13619580881092E-0002 2.13464986763181E-0002 2.13310344274743E-0002 2.13155653550019E-0002 + 2.13000914721525E-0002 2.12846127921644E-0002 2.12691293278592E-0002 2.12536410920129E-0002 2.12381480971011E-0002 + 2.12226503556175E-0002 2.12071478796379E-0002 2.11916406812245E-0002 2.11761287721592E-0002 2.11606121641355E-0002 + 2.11450908685561E-0002 2.11295648966388E-0002 2.11140342595232E-0002 2.10984989680999E-0002 2.10829590330641E-0002 + 2.10674144649361E-0002 2.10518652740509E-0002 2.10363114706219E-0002 2.10207530645065E-0002 2.10051900656318E-0002 + 2.09896224834832E-0002 2.09740503275945E-0002 2.09584736071108E-0002 2.09428923310866E-0002 2.09273065084432E-0002 + 2.09117161478406E-0002 2.08961212577520E-0002 2.08805218465700E-0002 2.08649179223085E-0002 2.08493094930284E-0002 + 2.08336965664327E-0002 2.08180791501221E-0002 2.08024572515096E-0002 2.07868308777351E-0002 2.07712000359318E-0002 + 2.07555647329166E-0002 2.07399249753182E-0002 2.07242807696197E-0002 2.07086321221582E-0002 2.06929790390605E-0002 + 2.06773215261796E-0002 2.06616595893714E-0002 2.06459932341318E-0002 2.06303224658208E-0002 2.06146472897372E-0002 + 2.05989677108300E-0002 2.05832837339867E-0002 2.05675953637980E-0002 2.05519026047608E-0002 2.05362054612568E-0002 + 2.05205039373062E-0002 2.05047980367924E-0002 2.04890877635685E-0002 2.04733731211685E-0002 2.04576541130213E-0002 + 2.04419307422471E-0002 2.04262030119461E-0002 2.04104709248880E-0002 2.03947344838226E-0002 2.03789936912009E-0002 + 2.03632485492930E-0002 2.03474990602627E-0002 2.03317452260606E-0002 2.03159870484344E-0002 2.03002245289931E-0002 + 2.02844576691425E-0002 2.02686864700426E-0002 2.02529109328639E-0002 2.02371310584024E-0002 2.02213468473679E-0002 + 2.02055583002774E-0002 2.01897654174975E-0002 2.01739681991371E-0002 2.01581666451973E-0002 2.01423607555503E-0002 + 2.01265505297238E-0002 2.01107359672558E-0002 2.00949170673724E-0002 2.00790938292017E-0002 2.00632662516562E-0002 + 2.00474343334863E-0002 2.00315980732800E-0002 2.00157574694088E-0002 1.99999125201679E-0002 1.99840632235070E-0002 + 1.99682095773416E-0002 1.99523515794247E-0002 1.99364892272166E-0002 1.99206225181008E-0002 1.99047514492541E-0002 + 1.98888760176899E-0002 1.98729962202688E-0002 1.98571120536121E-0002 1.98412235142419E-0002 1.98253305984193E-0002 + 1.98094333023489E-0002 1.97935316220066E-0002 1.97776255531714E-0002 1.97617150915331E-0002 1.97458002324769E-0002 + 1.97298809713310E-0002 1.97139573032585E-0002 1.96980292231823E-0002 1.96820967259138E-0002 1.96661598060021E-0002 + 1.96502184579818E-0002 1.96342726760820E-0002 1.96183224544629E-0002 1.96023677870330E-0002 1.95864086676099E-0002 + 1.95704450897809E-0002 1.95544770469884E-0002 1.95385045325411E-0002 1.95225275395380E-0002 1.95065460609440E-0002 + 1.94905600895359E-0002 1.94745696179343E-0002 1.94585746386038E-0002 1.94425751438853E-0002 1.94265711258552E-0002 + 1.94105625764444E-0002 1.93945494875351E-0002 1.93785318507666E-0002 1.93625096576104E-0002 1.93464828993813E-0002 + 1.93304515672693E-0002 1.93144156521883E-0002 1.92983751450790E-0002 1.92823300365948E-0002 1.92662803172208E-0002 + 1.92502259773926E-0002 1.92341670072908E-0002 1.92181033968949E-0002 1.92020351361670E-0002 1.91859622148139E-0002 + 1.91698846224273E-0002 1.91538023484627E-0002 1.91377153820758E-0002 1.91216237124808E-0002 1.91055273285925E-0002 + 1.90894262192426E-0002 1.90733203729956E-0002 1.90572097784414E-0002 1.90410944238807E-0002 1.90249742974767E-0002 + 1.90088493873091E-0002 1.89927196812551E-0002 1.89765851670321E-0002 1.89604458322523E-0002 1.89443016642595E-0002 + 1.89281526504657E-0002 1.89119987779059E-0002 1.88958400336394E-0002 1.88796764044571E-0002 1.88635078770653E-0002 + 1.88473344379883E-0002 1.88311560736770E-0002 1.88149727703129E-0002 1.87987845140363E-0002 1.87825912908052E-0002 + 1.87663930864708E-0002 1.87501898866473E-0002 1.87339816768530E-0002 1.87177684425646E-0002 1.87015501689345E-0002 + 1.86853268410949E-0002 1.86690984440165E-0002 1.86528649625194E-0002 1.86366263812618E-0002 1.86203826848164E-0002 + 1.86041338575612E-0002 1.85878798837341E-0002 1.85716207475306E-0002 1.85553564328749E-0002 1.85390869236490E-0002 + 1.85228122035341E-0002 1.85065322561307E-0002 1.84902470648930E-0002 1.84739566131344E-0002 1.84576608840052E-0002 + 1.84413598605476E-0002 1.84250535256733E-0002 1.84087418621857E-0002 1.83924248527028E-0002 1.83761024797179E-0002 + 1.83597747256805E-0002 1.83434415727842E-0002 1.83271030032173E-0002 1.83107589989004E-0002 1.82944095417325E-0002 + 1.82780546134760E-0002 1.82616941957295E-0002 1.82453282699764E-0002 1.82289568176073E-0002 1.82125798198210E-0002 + 1.81961972577723E-0002 1.81798091124189E-0002 1.81634153646686E-0002 1.81470159952101E-0002 1.81306109846932E-0002 + 1.81142003136684E-0002 1.80977839624339E-0002 1.80813619113473E-0002 1.80649341404754E-0002 1.80485006298838E-0002 + 1.80320613594623E-0002 1.80156163090225E-0002 1.79991654582386E-0002 1.79827087866682E-0002 1.79662462737583E-0002 + 1.79497778988065E-0002 1.79333036410929E-0002 1.79168234796549E-0002 1.79003373935558E-0002 1.78838453616274E-0002 + 1.78673473626338E-0002 1.78508433752610E-0002 1.78343333780998E-0002 1.78178173494871E-0002 1.78012952678733E-0002 + 1.77847671113611E-0002 1.77682328581941E-0002 1.77516924862954E-0002 1.77351459736577E-0002 1.77185932980246E-0002 + 1.77020344371097E-0002 1.76854693685152E-0002 1.76688980697308E-0002 1.76523205181780E-0002 1.76357366911225E-0002 + 1.76191465657722E-0002 1.76025501192341E-0002 1.75859473284749E-0002 1.75693381704371E-0002 1.75527226218625E-0002 + 1.75361006595234E-0002 1.75194722599859E-0002 1.75028373997857E-0002 1.74861960553185E-0002 1.74695482029606E-0002 + 1.74528938188981E-0002 1.74362328793090E-0002 1.74195653602085E-0002 1.74028912376090E-0002 1.73862104873436E-0002 + 1.73695230852422E-0002 1.73528290069610E-0002 1.73361282281419E-0002 1.73194207242860E-0002 1.73027064708469E-0002 + 1.72859854431649E-0002 1.72692576165382E-0002 1.72525229661238E-0002 1.72357814670315E-0002 1.72190330943232E-0002 + 1.72022778228976E-0002 1.71855156276386E-0002 1.71687464833275E-0002 1.71519703646812E-0002 1.71351872463357E-0002 + 1.71183971028241E-0002 1.71015999085929E-0002 1.70847956381180E-0002 1.70679842657059E-0002 1.70511657655766E-0002 + 1.70343401119514E-0002 1.70175072789046E-0002 1.70006672405339E-0002 1.69838199707675E-0002 1.69669654435128E-0002 + 1.69501036326183E-0002 1.69332345118396E-0002 1.69163580548679E-0002 1.68994742353512E-0002 1.68825830268895E-0002 + 1.68656844029290E-0002 1.68487783369728E-0002 1.68318648023594E-0002 1.68149437724174E-0002 1.67980152204325E-0002 + 1.67810791195753E-0002 1.67641354430180E-0002 1.67471841638062E-0002 1.67302252550037E-0002 1.67132586895424E-0002 + 1.66962844403996E-0002 1.66793024803766E-0002 1.66623127823202E-0002 1.66453153189561E-0002 1.66283100629947E-0002 + 1.66112969871196E-0002 1.65942760639268E-0002 1.65772472659524E-0002 1.65602105657168E-0002 1.65431659356747E-0002 + 1.65261133482599E-0002 1.65090527758237E-0002 1.64919841906739E-0002 1.64749075651360E-0002 1.64578228714200E-0002 + 1.64407300817531E-0002 1.64236291682360E-0002 1.64065201030534E-0002 1.63894028582355E-0002 1.63722774058410E-0002 + 1.63551437178962E-0002 1.63380017663281E-0002 1.63208515230980E-0002 1.63036929600735E-0002 1.62865260491897E-0002 + 1.62693507622324E-0002 1.62521670709771E-0002 1.62349749472557E-0002 1.62177743627895E-0002 1.62005652892563E-0002 + 1.61833476983957E-0002 1.61661215618536E-0002 1.61488868512544E-0002 1.61316435382175E-0002 1.61143915943243E-0002 + 1.60971309911514E-0002 1.60798617002481E-0002 1.60625836930868E-0002 1.60452969412462E-0002 1.60280014161610E-0002 + 1.60106970892891E-0002 1.59933839321167E-0002 1.59760619160476E-0002 1.59587310125139E-0002 1.59413911929428E-0002 + 1.59240424286791E-0002 1.59066846911293E-0002 1.58893179516673E-0002 1.58719421816401E-0002 1.58545573524231E-0002 + 1.58371634353146E-0002 1.58197604016917E-0002 1.58023482228486E-0002 1.57849268701474E-0002 1.57674963148841E-0002 + 1.57500565283832E-0002 1.57326074819702E-0002 1.57151491469437E-0002 1.56976814946140E-0002 1.56802044963317E-0002 + 1.56627181233754E-0002 1.56452223470976E-0002 1.56277171388122E-0002 1.56102024698511E-0002 1.55926783115360E-0002 + 1.55751446352452E-0002 1.55576014122855E-0002 1.55400486140710E-0002 1.55224862119216E-0002 1.55049141772926E-0002 + 1.54873324814948E-0002 1.54697410959969E-0002 1.54521399921789E-0002 1.54345291415119E-0002 1.54169085154620E-0002 + 1.53992780854634E-0002 1.53816378230463E-0002 1.53639876996863E-0002 1.53463276869385E-0002 1.53286577563819E-0002 + 1.53109778795180E-0002 1.52932880280237E-0002 1.52755881734648E-0002 1.52578782875320E-0002 1.52401583419060E-0002 + 1.52224283082692E-0002 1.52046881583387E-0002 1.51869378639175E-0002 1.51691773968155E-0002 1.51514067288051E-0002 + 1.51336258317891E-0002 1.51158346776438E-0002 1.50980332383091E-0002 1.50802214857713E-0002 1.50623993920015E-0002 + 1.50445669290513E-0002 1.50267240690413E-0002 1.50088707840434E-0002 1.49910070462437E-0002 1.49731328278637E-0002 + 1.49552481011608E-0002 1.49373528383885E-0002 1.49194470119541E-0002 1.49015305942107E-0002 1.48836035575921E-0002 + 1.48656658745907E-0002 1.48477175177905E-0002 1.48297584597276E-0002 1.48117886730581E-0002 1.47938081304911E-0002 + 1.47758168047943E-0002 1.47578146687489E-0002 1.47398016951948E-0002 1.47217778571209E-0002 1.47037431274619E-0002 + 1.46856974792681E-0002 1.46676408856595E-0002 1.46495733197647E-0002 1.46314947548781E-0002 1.46134051642068E-0002 + 1.45953045211916E-0002 1.45771927992143E-0002 1.45590699718002E-0002 1.45409360124722E-0002 1.45227908949024E-0002 + 1.45046345927493E-0002 1.44864670798267E-0002 1.44682883299964E-0002 1.44500983171462E-0002 1.44318970152855E-0002 + 1.44136843985343E-0002 1.43954604409877E-0002 1.43772251169020E-0002 1.43589784006051E-0002 1.43407202664790E-0002 + 1.43224506889939E-0002 1.43041696427425E-0002 1.42858771023208E-0002 1.42675730425041E-0002 1.42492574380656E-0002 + 1.42309302639746E-0002 1.42125914951703E-0002 1.41942411067599E-0002 1.41758790739226E-0002 1.41575053719095E-0002 + 1.41391199760774E-0002 1.41207228619236E-0002 1.41023140049437E-0002 1.40838933808187E-0002 1.40654609652965E-0002 + 1.40470167342087E-0002 1.40285606634988E-0002 1.40100927292453E-0002 1.39916129075428E-0002 1.39731211746888E-0002 + 1.39546175070366E-0002 1.39361018810182E-0002 1.39175742732289E-0002 1.38990346603430E-0002 1.38804830191248E-0002 + 1.38619193265027E-0002 1.38433435594895E-0002 1.38247556951488E-0002 1.38061557107820E-0002 1.37875435836907E-0002 + 1.37689192913716E-0002 1.37502828114039E-0002 1.37316341214747E-0002 1.37129731993816E-0002 1.36943000231186E-0002 + 1.36756145706826E-0002 1.36569168203262E-0002 1.36382067503027E-0002 1.36194843390731E-0002 1.36007495651727E-0002 + 1.35820024073223E-0002 1.35632428442945E-0002 1.35444708550644E-0002 1.35256864186934E-0002 1.35068895143830E-0002 + 1.34880801214667E-0002 1.34692582194439E-0002 1.34504237878778E-0002 1.34315768065636E-0002 1.34127172553486E-0002 + 1.33938451142499E-0002 1.33749603634452E-0002 1.33560629832137E-0002 1.33371529540211E-0002 1.33182302564233E-0002 + 1.32992948711577E-0002 1.32803467791257E-0002 1.32613859613334E-0002 1.32424123989033E-0002 1.32234260732076E-0002 + 1.32044269656811E-0002 1.31854150579518E-0002 1.31663903318041E-0002 1.31473527691278E-0002 1.31283023520207E-0002 + 1.31092390627203E-0002 1.30901628835696E-0002 1.30710737971687E-0002 1.30519717861890E-0002 1.30328568335137E-0002 + 1.30137289221575E-0002 1.29945880353212E-0002 1.29754341563177E-0002 1.29562672687118E-0002 1.29370873561434E-0002 + 1.29178944024818E-0002 1.28986883917431E-0002 1.28794693080815E-0002 1.28602371358868E-0002 1.28409918596761E-0002 + 1.28217334641419E-0002 1.28024619341443E-0002 1.27831772547366E-0002 1.27638794111538E-0002 1.27445683887732E-0002 + 1.27252441731740E-0002 1.27059067501092E-0002 1.26865561055171E-0002 1.26671922255272E-0002 1.26478150964143E-0002 + 1.26284247046505E-0002 1.26090210369509E-0002 1.25896040801136E-0002 1.25701738211999E-0002 1.25507302474375E-0002 + 1.25312733462404E-0002 1.25118031052061E-0002 1.24923195121390E-0002 1.24728225550130E-0002 1.24533122220434E-0002 + 1.24337885015752E-0002 1.24142513821694E-0002 1.23947008526486E-0002 1.23751369019316E-0002 1.23555595191989E-0002 + 1.23359686938105E-0002 1.23163644153544E-0002 1.22967466735894E-0002 1.22771154584711E-0002 1.22574707601867E-0002 + 1.22378125691146E-0002 1.22181408758648E-0002 1.21984556712134E-0002 1.21787569461741E-0002 1.21590446919583E-0002 + 1.21393189000069E-0002 1.21195795619244E-0002 1.20998266696023E-0002 1.20800602150732E-0002 1.20602801906599E-0002 + 1.20404865888094E-0002 1.20206794022734E-0002 1.20008586239769E-0002 1.19810242470729E-0002 1.19611762649276E-0002 + 1.19413146711500E-0002 1.19214394595487E-0002 1.19015506241691E-0002 1.18816481592827E-0002 1.18617320593895E-0002 + 1.18418023192043E-0002 1.18218589336680E-0002 1.18019018979738E-0002 1.17819312075242E-0002 1.17619468579687E-0002 + 1.17419488451692E-0002 1.17219371652318E-0002 1.17019118145132E-0002 1.16818727895712E-0002 1.16618200872346E-0002 + 1.16417537045542E-0002 1.16216736388141E-0002 1.16015798875327E-0002 1.15814724485053E-0002 1.15613513197412E-0002 + 1.15412164994929E-0002 1.15210679862414E-0002 1.15009057787718E-0002 1.14807298760374E-0002 1.14605402773018E-0002 + 1.14403369820522E-0002 1.14201199900082E-0002 1.13998893011711E-0002 1.13796449157607E-0002 1.13593868342817E-0002 + 1.13391150574864E-0002 1.13188295863575E-0002 1.12985304221576E-0002 1.12782175663916E-0002 1.12578910208184E-0002 + 1.12375507874773E-0002 1.12171968686446E-0002 1.11968292668716E-0002 1.11764479849673E-0002 1.11560530259927E-0002 + 1.11356443932959E-0002 1.11152220904544E-0002 1.10947861213444E-0002 1.10743364900807E-0002 1.10538732010745E-0002 + 1.10333962589958E-0002 1.10129056687566E-0002 1.09924014355834E-0002 1.09718835649474E-0002 1.09513520625886E-0002 + 1.09308069345414E-0002 1.09102481871004E-0002 1.08896758268265E-0002 1.08690898605697E-0002 1.08484902954671E-0002 + 1.08278771389164E-0002 1.08072503985939E-0002 1.07866100824748E-0002 1.07659561987930E-0002 1.07452887560784E-0002 + 1.07246077631319E-0002 1.07039132290595E-0002 1.06832051632270E-0002 1.06624835753086E-0002 1.06417484752440E-0002 + 1.06209998732738E-0002 1.06002377799360E-0002 1.05794622060146E-0002 1.05586731626613E-0002 1.05378706612392E-0002 + 1.05170547134537E-0002 1.04962253312914E-0002 1.04753825270147E-0002 1.04545263132114E-0002 1.04336567027396E-0002 + 1.04127737087688E-0002 1.03918773447740E-0002 1.03709676244924E-0002 1.03500445619935E-0002 1.03291081716560E-0002 + 1.03081584681387E-0002 1.02871954663956E-0002 1.02662191816961E-0002 1.02452296296170E-0002 1.02242268260304E-0002 + 1.02032107871480E-0002 1.01821815294253E-0002 1.01611390696750E-0002 1.01400834250006E-0002 1.01190146128196E-0002 + 1.00979326508522E-0002 1.00768375571334E-0002 1.00557293500302E-0002 1.00346080481750E-0002 1.00134736705682E-0002 + 9.99232623647283E-0003 9.97116576552005E-0003 9.94999227760448E-0003 9.92880579297171E-0003 9.90760633219234E-0003 + 9.88639391611263E-0003 9.86516856593340E-0003 9.84393030317242E-0003 9.82267914965286E-0003 9.80141512755609E-0003 + 9.78013825931097E-0003 9.75884856777212E-0003 9.73754607601581E-0003 9.71623080751530E-0003 9.69490278604474E-0003 + 9.67356203569694E-0003 9.65220858091271E-0003 9.63084244643734E-0003 9.60946365735583E-0003 9.58807223909605E-0003 + 9.56666821739098E-0003 9.54525161831690E-0003 9.52382246827902E-0003 9.50238079403212E-0003 9.48092662264284E-0003 + 9.45945998150736E-0003 9.43798089838093E-0003 9.41648940132835E-0003 9.39498551877682E-0003 9.37346927948403E-0003 + 9.35194071251202E-0003 9.33039984730347E-0003 9.30884671362636E-0003 9.28728134159175E-0003 9.26570376163348E-0003 + 9.24411400454354E-0003 9.22251210145182E-0003 9.20089808382340E-0003 9.17927198347632E-0003 9.15763383258770E-0003 + 9.13598366362952E-0003 9.11432150947134E-0003 9.09264740330147E-0003 9.07096137865942E-0003 9.04926346943904E-0003 + 9.02755370987116E-0003 9.00583213454144E-0003 8.98409877838178E-0003 8.96235367668519E-0003 8.94059686507675E-0003 + 8.91882837954311E-0003 8.89704825642102E-0003 8.87525653239168E-0003 8.85345324451326E-0003 8.83163843016830E-0003 + 8.80981212710503E-0003 8.78797437343464E-0003 8.76612520761397E-0003 8.74426466845445E-0003 8.72239279512831E-0003 + 8.70050962717166E-0003 8.67861520445540E-0003 8.65670956723539E-0003 8.63479275610857E-0003 8.61286481204265E-0003 + 8.59092577635129E-0003 8.56897569071201E-0003 8.54701459717820E-0003 8.52504253814693E-0003 8.50305955639902E-0003 + 8.48106569504176E-0003 8.45906099756957E-0003 8.43704550785096E-0003 8.41501927008018E-0003 8.39298232885843E-0003 + 8.37093472914112E-0003 8.34887651621744E-0003 8.32680773577984E-0003 8.30472843386386E-0003 8.28263865689703E-0003 + 8.26053845164894E-0003 8.23842786526394E-0003 8.21630694527022E-0003 8.19417573953137E-0003 8.17203429631446E-0003 + 8.14988266422835E-0003 8.12772089227552E-0003 8.10554902982432E-0003 8.08336712658703E-0003 8.06117523269685E-0003 + 8.03897339858863E-0003 8.01676167515105E-0003 7.99454011358082E-0003 7.97230876548027E-0003 7.95006768279858E-0003 + 7.92781691790140E-0003 7.90555652346032E-0003 7.88328655260822E-0003 7.86100705878880E-0003 7.83871809582923E-0003 + 7.81641971793006E-0003 7.79411197972008E-0003 7.77179493612215E-0003 7.74946864248491E-0003 7.72713315453574E-0003 + 7.70478852836923E-0003 7.68243482043844E-0003 7.66007208758331E-0003 7.63770038705306E-0003 7.61531977643693E-0003 + 7.59293031371911E-0003 7.57053205723612E-0003 7.54812506574951E-0003 7.52570939838398E-0003 7.50328511460690E-0003 + 7.48085227430695E-0003 7.45841093773965E-0003 7.43596116554384E-0003 7.41350301872564E-0003 7.39103655867203E-0003 + 7.36856184718218E-0003 7.34607894639659E-0003 7.32358791885067E-0003 7.30108882747200E-0003 7.27858173554796E-0003 + 7.25606670677491E-0003 7.23354380519912E-0003 7.21101309526887E-0003 7.18847464181992E-0003 7.16592851004750E-0003 + 7.14337476554370E-0003 7.12081347428724E-0003 7.09824470264086E-0003 7.07566851731729E-0003 7.05308498544786E-0003 + 7.03049417454411E-0003 7.00789615247871E-0003 6.98529098752582E-0003 6.96267874833308E-0003 6.94005950394268E-0003 + 6.91743332375443E-0003 6.89480027758393E-0003 6.87216043560192E-0003 6.84951386839245E-0003 6.82686064688624E-0003 + 6.80420084242483E-0003 6.78153452671771E-0003 6.75886177187080E-0003 6.73618265036291E-0003 6.71349723505042E-0003 + 6.69080559920171E-0003 6.66810781643496E-0003 6.64540396074960E-0003 6.62269410656671E-0003 6.59997832866084E-0003 + 6.57725670218551E-0003 6.55452930270172E-0003 6.53179620611570E-0003 6.50905748876101E-0003 6.48631322731238E-0003 + 6.46356349886790E-0003 6.44080838086434E-0003 6.41804795114140E-0003 6.39528228793157E-0003 6.37251146984991E-0003 + 6.34973557585999E-0003 6.32695468534418E-0003 6.30416887804131E-0003 6.28137823408112E-0003 6.25858283398457E-0003 + 6.23578275864164E-0003 6.21297808931607E-0003 6.19016890766199E-0003 6.16735529572564E-0003 6.14453733590379E-0003 + 6.12171511100076E-0003 6.09888870418229E-0003 6.07605819899970E-0003 6.05322367938861E-0003 6.03038522965725E-0003 + 6.00754293448663E-0003 5.98469687894428E-0003 5.96184714849040E-0003 5.93899382892283E-0003 5.91613700644449E-0003 + 5.89327676764125E-0003 5.87041319945668E-0003 5.84754638921323E-0003 5.82467642462591E-0003 5.80180339376365E-0003 + 5.77892738509138E-0003 5.75604848742388E-0003 5.73316678997240E-0003 5.71028238231194E-0003 5.68739535439946E-0003 + 5.66450579654713E-0003 5.64161379944953E-0003 5.61871945418682E-0003 5.59582285219506E-0003 5.57292408527089E-0003 + 5.55002324560622E-0003 5.52712042575396E-0003 5.50421571864028E-0003 5.48130921754981E-0003 5.45840101614082E-0003 + 5.43549120844549E-0003 5.41257988884760E-0003 5.38966715211725E-0003 5.36675309339007E-0003 5.34383780816145E-0003 + 5.32092139227325E-0003 5.29800394197399E-0003 5.27508555383811E-0003 5.25216632482765E-0003 5.22924635225795E-0003 + 5.20632573380689E-0003 5.18340456751208E-0003 5.16048295178011E-0003 5.13756098537020E-0003 5.11463876740192E-0003 + 5.09171639736747E-0003 5.06879397509577E-0003 5.04587160079627E-0003 5.02294937500357E-0003 5.00002739864822E-0003 + 4.97710577299084E-0003 4.95418459964933E-0003 4.93126398060363E-0003 4.90834401818390E-0003 4.88542481506014E-0003 + 4.86250647428004E-0003 4.83958909922555E-0003 4.81667279362210E-0003 4.79375766155838E-0003 4.77084380746844E-0003 + 4.74793133613344E-0003 4.72502035268484E-0003 4.70211096256995E-0003 4.67920327163499E-0003 4.65629738603487E-0003 + 4.63339341227413E-0003 4.61049145719347E-0003 4.58759162799416E-0003 4.56469403219445E-0003 4.54179877766901E-0003 + 4.51890597262496E-0003 4.49601572560960E-0003 4.47312814550612E-0003 4.45024334153375E-0003 4.42736142324193E-0003 + 4.40448250051650E-0003 4.38160668357996E-0003 4.35873408297951E-0003 4.33586480960537E-0003 4.31299897465778E-0003 + 4.29013668968341E-0003 4.26727806654831E-0003 4.24442321743668E-0003 4.22157225488265E-0003 4.19872529171620E-0003 + 4.17588244110255E-0003 4.15304381653779E-0003 4.13020953182796E-0003 4.10737970109373E-0003 4.08455443878417E-0003 + 4.06173385965880E-0003 4.03891807879985E-0003 4.01610721160490E-0003 3.99330137376885E-0003 3.97050068131592E-0003 + 3.94770525057705E-0003 3.92491519819319E-0003 3.90213064110178E-0003 3.87935169657022E-0003 3.85657848214611E-0003 + 3.83381111570737E-0003 3.81104971541696E-0003 3.78829439973974E-0003 3.76554528744863E-0003 3.74280249761120E-0003 + 3.72006614960040E-0003 3.69733636307807E-0003 3.67461325799206E-0003 3.65189695460214E-0003 3.62918757345744E-0003 + 3.60648523537841E-0003 3.58379006149789E-0003 3.56110217322340E-0003 3.53842169224330E-0003 3.51574874055125E-0003 + 3.49308344041144E-0003 3.47042591435879E-0003 3.44777628522937E-0003 3.42513467612116E-0003 3.40250121041692E-0003 + 3.37987601177371E-0003 3.35725920412914E-0003 3.33465091167184E-0003 3.31205125888497E-0003 3.28946037050980E-0003 + 3.26687837154975E-0003 3.24430538728261E-0003 3.22174154324626E-0003 3.19918696524111E-0003 3.17664177932714E-0003 + 3.15410611182485E-0003 3.13158008931308E-0003 3.10906383862534E-0003 3.08655748683777E-0003 3.06406116129437E-0003 + 3.04157498958051E-0003 3.01909909953065E-0003 2.99663361922922E-0003 2.97417867700621E-0003 2.95173440141594E-0003 + 2.92930092127983E-0003 2.90687836564310E-0003 2.88446686378864E-0003 2.86206654523173E-0003 2.83967753973620E-0003 + 2.81729997727950E-0003 2.79493398807867E-0003 2.77257970257527E-0003 2.75023725143087E-0003 2.72790676553786E-0003 + 2.70558837601190E-0003 2.68328221417300E-0003 2.66098841157230E-0003 2.63870709997460E-0003 2.61643841135548E-0003 + 2.59418247789750E-0003 2.57193943200485E-0003 2.54970940627217E-0003 2.52749253351282E-0003 2.50528894673079E-0003 + 2.48309877913148E-0003 2.46092216413700E-0003 2.43875923533974E-0003 2.41661012654749E-0003 2.39447497173772E-0003 + 2.37235390509658E-0003 2.35024706099077E-0003 2.32815457396756E-0003 2.30607657876256E-0003 2.28401321029139E-0003 + 2.26196460363443E-0003 2.23993089408048E-0003 2.21791221704281E-0003 2.19590870814778E-0003 2.17392050317387E-0003 + 2.15194773807081E-0003 2.12999054893209E-0003 2.10804907204862E-0003 2.08612344383150E-0003 2.06421380087327E-0003 + 2.04232027991588E-0003 2.02044301784840E-0003 1.99858215171094E-0003 1.97673781868705E-0003 1.95491015610985E-0003 + 1.93309930144529E-0003 1.91130539230290E-0003 1.88952856643123E-0003 1.86776896171562E-0003 1.84602671615295E-0003 + 1.82430196789305E-0003 1.80259485518281E-0003 1.78090551642753E-0003 1.75923409012656E-0003 1.73758071489867E-0003 + 1.71594552948662E-0003 1.69432867274037E-0003 1.67273028361940E-0003 1.65115050119120E-0003 1.62958946462515E-0003 + 1.60804731318718E-0003 1.58652418625514E-0003 1.56502022328736E-0003 1.54353556383879E-0003 1.52207034755254E-0003 + 1.50062471416684E-0003 1.47919880349584E-0003 1.45779275543115E-0003 1.43640670995186E-0003 1.41504080709994E-0003 + 1.39369518700021E-0003 1.37236998984348E-0003 1.35106535587805E-0003 1.32978142542282E-0003 1.30851833885802E-0003 + 1.28727623662061E-0003 1.26605525919198E-0003 1.24485554710562E-0003 1.22367724095557E-0003 1.20252048136639E-0003 + 1.18138540900012E-0003 1.16027216457696E-0003 1.13918088882760E-0003 1.11811172252783E-0003 1.09706480647767E-0003 + 1.07604028151144E-0003 1.05503828846688E-0003 1.03405896821360E-0003 1.01310246162845E-0003 9.92168909606998E-0004 + 9.71258453046569E-0004 9.50371232858519E-0004 9.29507389941238E-0004 9.08667065203210E-0004 8.87850399546018E-0004 + 8.67057533854282E-0004 8.46288609011784E-0004 8.25543765875213E-0004 8.04823145292606E-0004 7.84126888081708E-0004 + 7.63455135035301E-0004 7.42808026924231E-0004 7.22185704474979E-0004 7.01588308381154E-0004 6.81015979284142E-0004 + 6.60468857816236E-0004 6.39947084523410E-0004 6.19450799913846E-0004 5.98980144453999E-0004 5.78535258522205E-0004 + 5.58116282463402E-0004 5.37723356537315E-0004 5.17356620936129E-0004 4.97016215789798E-0004 4.76702281138151E-0004 + 4.56414956938512E-0004 4.36154383074104E-0004 4.15920699327678E-0004 3.95714045389900E-0004 3.75534560860798E-0004 + 3.55382385234962E-0004 3.35257657905300E-0004 3.15160518143591E-0004 2.95091105125885E-0004 2.75049557896810E-0004 + 2.55036015389561E-0004 2.35050616409527E-0004 2.15093499627202E-0004 1.95164803586565E-0004 1.75264666692566E-0004 + 1.55393227202476E-0004 1.35550623241231E-0004 1.15736992773420E-0004 9.59524736062412E-0005 7.61972033970919E-0005 + 5.64713196387132E-0005 3.67749596567111E-0005 1.71082606047544E-0005 -2.52864054565762E-0006 -2.21356069852039E-0005 +-4.17125021079796E-0005 -6.12591894853108E-0005 -8.07755328829737E-0005 -1.00261396270672E-0004 -1.19716643805149E-0004 +-1.39141139866039E-0004 -1.58534749032778E-0004 -1.77897336106506E-0004 -1.97228766100943E-0004 -2.16528904259645E-0004 +-2.35797616056196E-0004 -2.55034767186641E-0004 -2.74240223601505E-0004 -2.93413851481933E-0004 -3.12555517256963E-0004 +-3.31665087615390E-0004 -3.50742429489657E-0004 -3.69787410089470E-0004 -3.88799896877153E-0004 -4.07779757586508E-0004 +-4.26726860244020E-0004 -4.45641073132555E-0004 -4.64522264838215E-0004 -4.83370304222585E-0004 -5.02185060455621E-0004 +-5.20966403004219E-0004 -5.39714201629345E-0004 -5.58428326412716E-0004 -5.77108647748492E-0004 -5.95755036348969E-0004 +-6.14367363247939E-0004 -6.32945499816508E-0004 -6.51489317754018E-0004 -6.69998689102312E-0004 -6.88473486246001E-0004 +-7.06913581925186E-0004 -7.25318849227162E-0004 -7.43689161601487E-0004 -7.62024392870386E-0004 -7.80324417219682E-0004 +-7.98589109209203E-0004 -8.16818343787877E-0004 -8.35011996283107E-0004 -8.53169942422891E-0004 -8.71292058323640E-0004 +-8.89378220507633E-0004 -9.07428305908775E-0004 -9.25442191864323E-0004 -9.43419756144055E-0004 -9.61360876930300E-0004 +-9.79265432836976E-0004 -9.97133302919271E-0004 -1.01496436666850E-0003 -1.03275850401713E-0003 -1.05051559535939E-0003 +-1.06823552154221E-0003 -1.08591816387303E-0003 -1.10356340413298E-0003 -1.12117112457138E-0003 -1.13874120792367E-0003 +-1.15627353740587E-0003 -1.17376799672865E-0003 -1.19122447009881E-0003 -1.20864284222711E-0003 -1.22602299832821E-0003 +-1.24336482413747E-0003 -1.26066820590858E-0003 -1.27793303042645E-0003 -1.29515918499389E-0003 -1.31234655746172E-0003 +-1.32949503623423E-0003 -1.34660451024457E-0003 -1.36367486900204E-0003 -1.38070600256552E-0003 -1.39769780156851E-0003 +-1.41465015721172E-0003 -1.43156296128851E-0003 -1.44843610616612E-0003 -1.46526948481077E-0003 -1.48206299079121E-0003 +-1.49881651827204E-0003 -1.51552996203695E-0003 -1.53220321748632E-0003 -1.54883618063848E-0003 -1.56542874814541E-0003 +-1.58198081730417E-0003 -1.59849228604403E-0003 -1.61496305294882E-0003 -1.63139301725392E-0003 -1.64778207885959E-0003 +-1.66413013833621E-0003 -1.68043709693172E-0003 -1.69670285656630E-0003 -1.71292731985863E-0003 -1.72911039011899E-0003 +-1.74525197135404E-0003 -1.76135196829005E-0003 -1.77741028635690E-0003 -1.79342683171176E-0003 -1.80940151123602E-0003 +-1.82533423255311E-0003 -1.84122490402384E-0003 -1.85707343475287E-0003 -1.87287973461038E-0003 -1.88864371422120E-0003 +-1.90436528498107E-0003 -1.92004435906779E-0003 -1.93568084943028E-0003 -1.95127466981159E-0003 -1.96682573476161E-0003 +-1.98233395962224E-0003 -1.99779926055353E-0003 -2.01322155452323E-0003 -2.02860075934190E-0003 -2.04393679363287E-0003 +-2.05922957687244E-0003 -2.07447902938110E-0003 -2.08968507232521E-0003 -2.10484762774438E-0003 -2.11996661853234E-0003 +-2.13504196847613E-0003 -2.15007360222557E-0003 -2.16506144534034E-0003 -2.18000542426217E-0003 -2.19490546634546E-0003 +-2.20976149985858E-0003 -2.22457345398258E-0003 -2.23934125882873E-0003 -2.25406484545252E-0003 -2.26874414583736E-0003 +-2.28337909292438E-0003 -2.29796962061223E-0003 -2.31251566376449E-0003 -2.32701715821775E-0003 -2.34147404079058E-0003 +-2.35588624928020E-0003 -2.37025372249430E-0003 -2.38457640023754E-0003 -2.39885422332521E-0003 -2.41308713359336E-0003 +-2.42727507390501E-0003 -2.44141798816190E-0003 -2.45551582130592E-0003 -2.46956851932500E-0003 -2.48357602927583E-0003 +-2.49753829927871E-0003 -2.51145527852612E-0003 -2.52532691729488E-0003 -2.53915316695832E-0003 -2.55293397998189E-0003 +-2.56666930994399E-0003 -2.58035911153674E-0003 -2.59400334057655E-0003 -2.60760195401083E-0003 -2.62115490992623E-0003 +-2.63466216756638E-0003 -2.64812368732432E-0003 -2.66153943076309E-0003 -2.67490936061525E-0003 -2.68823344079592E-0003 +-2.70151163641982E-0003 -2.71474391379048E-0003 -2.72793024042250E-0003 -2.74107058505295E-0003 -2.75416491763742E-0003 +-2.76721320936431E-0003 -2.78021543266907E-0003 -2.79317156123777E-0003 -2.80608157001071E-0003 -2.81894543520105E-0003 +-2.83176313430158E-0003 -2.84453464608514E-0003 -2.85725995062605E-0003 -2.86993902929584E-0003 -2.88257186478307E-0003 +-2.89515844109181E-0003 -2.90769874356830E-0003 -2.92019275888708E-0003 -2.93264047507688E-0003 -2.94504188151950E-0003 +-2.95739696897287E-0003 -2.96970572955928E-0003 -2.98196815679202E-0003 -2.99418424557905E-0003 -3.00635399222987E-0003 +-3.01847739446117E-0003 -3.03055445142830E-0003 -3.04258516369720E-0003 -3.05456953328743E-0003 -3.06650756366592E-0003 +-3.07839925975621E-0003 -3.09024462795378E-0003 -3.10204367613165E-0003 -3.11379641364535E-0003 -3.12550285135813E-0003 +-3.13716300162913E-0003 -3.14877687834104E-0003 -3.16034449689986E-0003 -3.17186587425252E-0003 -3.18334102888117E-0003 +-3.19476998083315E-0003 -3.20615275171365E-0003 -3.21748936470576E-0003 -3.22877984457869E-0003 -3.24002421769668E-0003 +-3.25122251202205E-0003 -3.26237475713486E-0003 -3.27348098424356E-0003 -3.28454122618955E-0003 -3.29555551745181E-0003 +-3.30652389417345E-0003 -3.31744639415117E-0003 -3.32832305686660E-0003 -3.33915392348418E-0003 -3.34993903685499E-0003 +-3.36067844154614E-0003 -3.37137218383584E-0003 -3.38202031172687E-0003 -3.39262287496038E-0003 -3.40317992502258E-0003 +-3.41369151516103E-0003 -3.42415770038249E-0003 -3.43457853748121E-0003 -3.44495408502962E-0003 -3.45528440341103E-0003 +-3.46556955480674E-0003 -3.47580960322674E-0003 -3.48600461450723E-0003 -3.49615465632577E-0003 -3.50625979822237E-0003 +-3.51632011158228E-0003 -3.52633566968071E-0003 -3.53630654766958E-0003 -3.54623282259792E-0003 -3.55611457341859E-0003 +-3.56595188100870E-0003 -3.57574482816638E-0003 -3.58549349963635E-0003 -3.59519798210877E-0003 -3.60485836423242E-0003 +-3.61447473663830E-0003 -3.62404719193488E-0003 -3.63357582472451E-0003 -3.64306073161990E-0003 -3.65250201124850E-0003 +-3.66189976426741E-0003 -3.67125409337502E-0003 -3.68056510331987E-0003 -3.68983290091394E-0003 -3.69905759504274E-0003 +-3.70823929667959E-0003 -3.71737811889133E-0003 -3.72647417685781E-0003 -3.73552758788104E-0003 -3.74453847138747E-0003 +-3.75350694895477E-0003 -3.76243314431213E-0003 -3.77131718335824E-0003 -3.78015919416980E-0003 -3.78895930701294E-0003 +-3.79771765436057E-0003 -3.80643437089855E-0003 -3.81510959353526E-0003 -3.82374346142086E-0003 -3.83233611595944E-0003 +-3.84088770081426E-0003 -3.84939836191832E-0003 -3.85786824750028E-0003 -3.86629750808082E-0003 -3.87468629649814E-0003 +-3.88303476790774E-0003 -3.89134307980379E-0003 -3.89961139202628E-0003 -3.90783986677923E-0003 -3.91602866863544E-0003 +-3.92417796455249E-0003 -3.93228792389104E-0003 -3.94035871841625E-0003 -3.94839052231742E-0003 -3.95638351221562E-0003 +-3.96433786719134E-0003 -3.97225376876830E-0003 -3.98013140095653E-0003 -3.98797095024728E-0003 -3.99577260562937E-0003 +-4.00353655860383E-0003 -4.01126300319846E-0003 -4.01895213597443E-0003 -4.02660415604508E-0003 -4.03421926508457E-0003 +-4.04179766734869E-0003 -4.04933956967446E-0003 -4.05684518150503E-0003 -4.06431471490052E-0003 -4.07174838454747E-0003 +-4.07914640777269E-0003 -4.08650900455979E-0003 -4.09383639756165E-0003 -4.10112881211009E-0003 -4.10838647623262E-0003 +-4.11560962066554E-0003 -4.12279847886786E-0003 -4.12995328702983E-0003 -4.13707428409532E-0003 -4.14416171176631E-0003 +-4.15121581452395E-0003 -4.15823683963844E-0003 -4.16522503717984E-0003 -4.17218066003969E-0003 -4.17910396393878E-0003 +-4.18599520743895E-0003 -4.19285465196577E-0003 -4.19968256181391E-0003 -4.20647920416539E-0003 -4.21324484910225E-0003 +-4.21997976961936E-0003 -4.22668424164480E-0003 -4.23335854404054E-0003 -4.24000295863356E-0003 -4.24661777021434E-0003 +-4.25320326656615E-0003 -4.25975973846196E-0003 -4.26628747969860E-0003 -4.27278678709208E-0003 -4.27925796050487E-0003 +-4.28570130285503E-0003 -4.29211712013495E-0003 -4.29850572141489E-0003 -4.30486741887388E-0003 -4.31120252780264E-0003 +-4.31751136661913E-0003 -4.32379425688828E-0003 -4.33005152333276E-0003 -4.33628349385040E-0003 -4.34249049952364E-0003 +-4.34867287464263E-0003 -4.35483095671546E-0003 -4.36096508648062E-0003 -4.36707560792673E-0003 -4.37316286830398E-0003 +-4.37922721814492E-0003 -4.38526901127028E-0003 -4.39128860481459E-0003 -4.39728635923083E-0003 -4.40326263831484E-0003 +-4.40921780921669E-0003 -4.41515224175059E-0003 -4.42106630419365E-0003 -4.42696036066209E-0003 -4.43283477101928E-0003 +-4.43868989090704E-0003 -4.44452607175744E-0003 -4.45034366082146E-0003 -4.45614300119811E-0003 -4.46192443184731E-0003 +-4.46768828762167E-0003 -4.47343489928003E-0003 -4.47916459352818E-0003 -4.48487769301886E-0003 -4.49057451639641E-0003 +-4.49625537830488E-0003 -4.50192058941729E-0003 -4.50757045645944E-0003 -4.51320528222602E-0003 -4.51882536561274E-0003 +-4.52443100163167E-0003 -4.53002248143716E-0003 -4.53560009234851E-0003 -4.54116411786734E-0003 -4.54671483770931E-0003 +-4.55225252781747E-0003 -4.55777746038844E-0003 -4.56328990389766E-0003 -4.56879012311016E-0003 -4.57427837911985E-0003 +-4.57975492935564E-0003 -4.58522002761081E-0003 -4.59067392406752E-0003 -4.59611686530885E-0003 -4.60154909435052E-0003 +-4.60697085065540E-0003 -4.61238237016216E-0003 -4.61778388529847E-0003 -4.62317562500680E-0003 -4.62855781476782E-0003 +-4.63393067661529E-0003 -4.63929442916797E-0003 -4.64464928763626E-0003 -4.64999546385556E-0003 -4.65533316630271E-0003 +-4.66066260011369E-0003 -4.66598396710926E-0003 -4.67129746581603E-0003 -4.67660329148305E-0003 -4.68190163610563E-0003 +-4.68719268844443E-0003 -4.69247663404641E-0003 -4.69775365526806E-0003 -4.70302393128699E-0003 -4.70828763813457E-0003 +-4.71354494870700E-0003 -4.71879603279098E-0003 -4.72404105707867E-0003 -4.72928018519145E-0003 -4.73451357769791E-0003 +-4.73974139213557E-0003 -4.74496378303349E-0003 -4.75018090192127E-0003 -4.75539289736114E-0003 -4.76059991496188E-0003 +-4.76580209739662E-0003 -4.77099958443096E-0003 -4.77619251292681E-0003 -4.78138101687715E-0003 -4.78656522742195E-0003 +-4.79174527285842E-0003 -4.79692127867003E-0003 -4.80209336754481E-0003 -4.80726165938801E-0003 -4.81242627134697E-0003 +-4.81758731782509E-0003 -4.82274491051074E-0003 -4.82789915838272E-0003 -4.83305016773759E-0003 -4.83819804220861E-0003 +-4.84334288277673E-0003 -4.84848478780087E-0003 -4.85362385302278E-0003 -4.85876017159852E-0003 -4.86389383411008E-0003 +-4.86902492858009E-0003 -4.87415354050276E-0003 -4.87927975284414E-0003 -4.88440364607667E-0003 -4.88952529819173E-0003 +-4.89464478470904E-0003 -4.89976217870972E-0003 -4.90487755084193E-0003 -4.90999096934497E-0003 -4.91510250006442E-0003 +-4.92021220647120E-0003 -4.92532014967939E-0003 -4.93042638846292E-0003 -4.93553097926957E-0003 -4.94063397624776E-0003 +-4.94573543125444E-0003 -4.95083539387755E-0003 -4.95593391145066E-0003 -4.96103102907297E-0003 -4.96612678962429E-0003 +-4.97122123378311E-0003 -4.97631440004091E-0003 -4.98140632472629E-0003 -4.98649704200914E-0003 -4.99158658393482E-0003 +-4.99667498042169E-0003 -5.00176225929565E-0003 -5.00684844629395E-0003 -5.01193356508712E-0003 -5.01701763729524E-0003 +-5.02210068250548E-0003 -5.02718271828366E-0003 -5.03226376019705E-0003 -5.03734382182527E-0003 -5.04242291477982E-0003 +-5.04750104871980E-0003 -5.05257823136470E-0003 -5.05765446851594E-0003 -5.06272976407006E-0003 -5.06780412003112E-0003 +-5.07287753653340E-0003 -5.07795001185279E-0003 -5.08302154242575E-0003 -5.08809212285747E-0003 -5.09316174594652E-0003 +-5.09823040269784E-0003 -5.10329808233508E-0003 -5.10836477231748E-0003 -5.11343045835756E-0003 -5.11849512443434E-0003 +-5.12355875280847E-0003 -5.12862132403936E-0003 -5.13368281699533E-0003 -5.13874320887899E-0003 -5.14380247522886E-0003 +-5.14886058994507E-0003 -5.15391752529908E-0003 -5.15897325195080E-0003 -5.16402773896115E-0003 -5.16908095380786E-0003 +-5.17413286240227E-0003 -5.17918342910197E-0003 -5.18423261672068E-0003 -5.18928038655602E-0003 -5.19432669838897E-0003 +-5.19937151050537E-0003 -5.20441477971408E-0003 -5.20945646135207E-0003 -5.21449650930637E-0003 -5.21953487602463E-0003 +-5.22457151252943E-0003 -5.22960636843497E-0003 -5.23463939195666E-0003 -5.23967052992742E-0003 -5.24469972781482E-0003 +-5.24972692972894E-0003 -5.25475207843808E-0003 -5.25977511538729E-0003 -5.26479598070445E-0003 -5.26981461321880E-0003 +-5.27483095047466E-0003 -5.27984492874040E-0003 -5.28485648302856E-0003 -5.28986554710424E-0003 -5.29487205349866E-0003 +-5.29987593352472E-0003 -5.30487711729231E-0003 -5.30987553371273E-0003 -5.31487111052240E-0003 -5.31986377428761E-0003 +-5.32485345042309E-0003 -5.32984006320247E-0003 -5.33482353577236E-0003 -5.33980379016189E-0003 -5.34478074730083E-0003 +-5.34975432702749E-0003 -5.35472444810459E-0003 -5.35969102823176E-0003 -5.36465398405519E-0003 -5.36961323118344E-0003 +-5.37456868419708E-0003 -5.37952025666536E-0003 -5.38446786115427E-0003 -5.38941140923827E-0003 -5.39435081151972E-0003 +-5.39928597763213E-0003 -5.40421681625789E-0003 -5.40914323513755E-0003 -5.41406514108492E-0003 -5.41898243999714E-0003 +-5.42389503686544E-0003 -5.42880283578802E-0003 -5.43370573998435E-0003 -5.43860365180393E-0003 -5.44349647273770E-0003 +-5.44838410343314E-0003 -5.45326644370303E-0003 -5.45814339253594E-0003 -5.46301484811190E-0003 -5.46788070781129E-0003 +-5.47274086822482E-0003 -5.47759522516923E-0003 -5.48244367369446E-0003 -5.48728610809488E-0003 -5.49212242192577E-0003 +-5.49695250800973E-0003 -5.50177625844552E-0003 -5.50659356462753E-0003 -5.51140431724775E-0003 -5.51620840631453E-0003 +-5.52100572115749E-0003 -5.52579615044027E-0003 -5.53057958217344E-0003 -5.53535590372103E-0003 -5.54012500181796E-0003 +-5.54488676257177E-0003 -5.54964107148237E-0003 -5.55438781344514E-0003 -5.55912687276651E-0003 -5.56385813317010E-0003 +-5.56858147781371E-0003 -5.57329678929191E-0003 -5.57800394965103E-0003 -5.58270284039766E-0003 -5.58739334251269E-0003 +-5.59207533645427E-0003 -5.59674870217495E-0003 -5.60141331912806E-0003 -5.60606906627694E-0003 -5.61071582211074E-0003 +-5.61535346464489E-0003 -5.61998187144066E-0003 -5.62460091960753E-0003 -5.62921048581809E-0003 -5.63381044631532E-0003 +-5.63840067692110E-0003 -5.64298105304940E-0003 -5.64755144971324E-0003 -5.65211174153555E-0003 -5.65666180275586E-0003 +-5.66120150724495E-0003 -5.66573072850767E-0003 -5.67024933970082E-0003 -5.67475721363248E-0003 -5.67925422277915E-0003 +-5.68374023929187E-0003 -5.68821513500410E-0003 -5.69267878144474E-0003 -5.69713104984335E-0003 -5.70157181114048E-0003 +-5.70600093599719E-0003 -5.71041829480417E-0003 -5.71482375768972E-0003 -5.71921719452858E-0003 -5.72359847495258E-0003 +-5.72796746835623E-0003 -5.73232404390803E-0003 -5.73666807055788E-0003 -5.74099941704606E-0003 -5.74531795191320E-0003 +-5.74962354350439E-0003 -5.75391605998266E-0003 -5.75819536933720E-0003 -5.76246133938601E-0003 -5.76671383779089E-0003 +-5.77095273206238E-0003 -5.77517788956881E-0003 -5.77938917754339E-0003 -5.78358646309522E-0003 -5.78776961321365E-0003 +-5.79193849477908E-0003 -5.79609297457106E-0003 -5.80023291927427E-0003 -5.80435819548672E-0003 -5.80846866973119E-0003 +-5.81256420845668E-0003 -5.81664467805372E-0003 -5.82070994485605E-0003 -5.82475987515122E-0003 -5.82879433518694E-0003 +-5.83281319118057E-0003 -5.83681630932517E-0003 -5.84080355579768E-0003 -5.84477479676523E-0003 -5.84872989839436E-0003 +-5.85266872685700E-0003 -5.85659114834001E-0003 -5.86049702904911E-0003 -5.86438623521986E-0003 -5.86825863312066E-0003 +-5.87211408906399E-0003 -5.87595246941258E-0003 -5.87977364058519E-0003 -5.88357746906327E-0003 -5.88736382140037E-0003 +-5.89113256422773E-0003 -5.89488356426119E-0003 -5.89861668830855E-0003 -5.90233180327517E-0003 -5.90602877617327E-0003 +-5.90970747412618E-0003 -5.91336776437627E-0003 -5.91700951429161E-0003 -5.92063259137242E-0003 -5.92423686325873E-0003 +-5.92782219773370E-0003 -5.93138846273564E-0003 -5.93493552635777E-0003 -5.93846325686022E-0003 -5.94197152267561E-0003 +-5.94546019241155E-0003 -5.94892913486174E-0003 -5.95237821900827E-0003 -5.95580731403171E-0003 -5.95921628931395E-0003 +-5.96260501444675E-0003 -5.96597335923622E-0003 -5.96932119371050E-0003 -5.97264838812290E-0003 -5.97595481296282E-0003 +-5.97924033895652E-0003 -5.98250483707603E-0003 -5.98574817854448E-0003 -5.98897023484155E-0003 -5.99217087771002E-0003 +-5.99534997915997E-0003 -5.99850741147728E-0003 -6.00164304722568E-0003 -6.00475675925630E-0003 -6.00784842070976E-0003 +-6.01091790502394E-0003 -6.01396508593898E-0003 -6.01698983750304E-0003 -6.01999203407594E-0003 -6.02297155033860E-0003 +-6.02592826129218E-0003 -6.02886204227128E-0003 -6.03177276894241E-0003 -6.03466031731252E-0003 -6.03752456373353E-0003 +-6.04036538490826E-0003 -6.04318265789413E-0003 -6.04597626010932E-0003 -6.04874606933789E-0003 -6.05149196373506E-0003 +-6.05421382183016E-0003 -6.05691152253478E-0003 -6.05958494514469E-0003 -6.06223396934694E-0003 -6.06485847522414E-0003 +-6.06745834325827E-0003 -6.07003345433643E-0003 -6.07258368975605E-0003 -6.07510893122761E-0003 -6.07760906088105E-0003 +-6.08008396127082E-0003 -6.08253351537937E-0003 -6.08495760662127E-0003 -6.08735611884861E-0003 -6.08972893635532E-0003 +-6.09207594388265E-0003 -6.09439702662081E-0003 -6.09669207021662E-0003 -6.09896096077508E-0003 -6.10120358486695E-0003 +-6.10341982952770E-0003 -6.10560958226868E-0003 -6.10777273107454E-0003 -6.10990916441394E-0003 -6.11201877123701E-0003 +-6.11410144098433E-0003 -6.11615706358991E-0003 -6.11818552948394E-0003 -6.12018672959673E-0003 -6.12216055536565E-0003 +-6.12410689873557E-0003 -6.12602565216412E-0003 -6.12791670862607E-0003 -6.12977996161593E-0003 -6.13161530515259E-0003 +-6.13342263378338E-0003 -6.13520184258730E-0003 -6.13695282717822E-0003 -6.13867548370913E-0003 -6.14036970887595E-0003 +-6.14203539992074E-0003 -6.14367245463500E-0003 -6.14528077136398E-0003 -6.14686024901019E-0003 -6.14841078703508E-0003 +-6.14993228546441E-0003 -6.15142464489128E-0003 -6.15288776647943E-0003 -6.15432155196485E-0003 -6.15572590366249E-0003 +-6.15710072446631E-0003 -6.15844591785370E-0003 -6.15976138788946E-0003 -6.16104703922743E-0003 -6.16230277711575E-0003 +-6.16352850739712E-0003 -6.16472413651365E-0003 -6.16588957151029E-0003 -6.16702472003672E-0003 -6.16812949035093E-0003 +-6.16920379132160E-0003 -6.17024753243140E-0003 -6.17126062377971E-0003 -6.17224297608629E-0003 -6.17319450069263E-0003 +-6.17411510956516E-0003 -6.17500471530017E-0003 -6.17586323112158E-0003 -6.17669057089023E-0003 -6.17748664909978E-0003 +-6.17825138088414E-0003 -6.17898468201909E-0003 -6.17968646892183E-0003 -6.18035665865864E-0003 -6.18099516894315E-0003 +-6.18160191814028E-0003 -6.18217682526906E-0003 -6.18271981000470E-0003 -6.18323079268087E-0003 -6.18370969429153E-0003 +-6.18415643649471E-0003 -6.18457094161354E-0003 -6.18495313263814E-0003 -6.18530293323044E-0003 -6.18562026772320E-0003 +-6.18590506112265E-0003 -6.18615723911391E-0003 -6.18637672805847E-0003 -6.18656345499952E-0003 -6.18671734766348E-0003 +-6.18683833445977E-0003 -6.18692634448633E-0003 -6.18698130752891E-0003 -6.18700315406428E-0003 -6.18699181526136E-0003 +-6.18694722298326E-0003 -6.18686930979064E-0003 -6.18675800894075E-0003 -6.18661325439190E-0003 -6.18643498080357E-0003 +-6.18622312353837E-0003 -6.18597761866509E-0003 -6.18569840295771E-0003 -6.18538541389953E-0003 -6.18503858968477E-0003 +-6.18465786921794E-0003 -6.18424319211719E-0003 -6.18379449871638E-0003 -6.18331173006467E-0003 -6.18279482792912E-0003 +-6.18224373479630E-0003 -6.18165839387376E-0003 -6.18103874909070E-0003 -6.18038474510005E-0003 -6.17969632727953E-0003 +-6.17897344173325E-0003 -6.17821603529274E-0003 -6.17742405551806E-0003 -6.17659745069912E-0003 -6.17573616985821E-0003 +-6.17484016274803E-0003 -6.17390937985695E-0003 -6.17294377240734E-0003 -6.17194329235662E-0003 -6.17090789240068E-0003 +-6.16983752597209E-0003 -6.16873214724323E-0003 -6.16759171112599E-0003 -6.16641617327444E-0003 -6.16520549008354E-0003 +-6.16395961869142E-0003 -6.16267851698059E-0003 -6.16136214357824E-0003 -6.16001045785661E-0003 -6.15862341993506E-0003 +-6.15720099068012E-0003 -6.15574313170579E-0003 -6.15424980537606E-0003 -6.15272097480371E-0003 -6.15115660385162E-0003 +-6.14955665713407E-0003 -6.14792110001743E-0003 -6.14624989861924E-0003 -6.14454301981078E-0003 -6.14280043121707E-0003 +-6.14102210121575E-0003 -6.13920799894098E-0003 -6.13735809428070E-0003 -6.13547235787907E-0003 -6.13355076113588E-0003 +-6.13159327620852E-0003 -6.12959987600984E-0003 -6.12757053421143E-0003 -6.12550522524183E-0003 -6.12340392428795E-0003 +-6.12126660729523E-0003 -6.11909325096780E-0003 -6.11688383276882E-0003 -6.11463833092076E-0003 -6.11235672440563E-0003 +-6.11003899296537E-0003 -6.10768511710157E-0003 -6.10529507807600E-0003 -6.10286885791143E-0003 -6.10040643938973E-0003 +-6.09790780605464E-0003 -6.09537294220958E-0003 -6.09280183291887E-0003 -6.09019446400797E-0003 -6.08755082206280E-0003 +-6.08487089442921E-0003 -6.08215466921498E-0003 -6.07940213528783E-0003 -6.07661328227644E-0003 -6.07378810056962E-0003 +-6.07092658131633E-0003 -6.06802871642688E-0003 -6.06509449857019E-0003 -6.06212392117590E-0003 -6.05911697843384E-0003 +-6.05607366529209E-0003 -6.05299397745872E-0003 -6.04987791140130E-0003 -6.04672546434454E-0003 -6.04353663427364E-0003 +-6.04031141992969E-0003 -6.03704982081313E-0003 -6.03375183718097E-0003 -6.03041747004787E-0003 -6.02704672118450E-0003 +-6.02363959311782E-0003 -6.02019608913046E-0003 -6.01671621326069E-0003 -6.01319997030101E-0003 -6.00964736579853E-0003 +-6.00605840605426E-0003 -6.00243309812168E-0003 -5.99877144980774E-0003 -5.99507346967123E-0003 -5.99133916702185E-0003 +-5.98756855192123E-0003 -5.98376163517942E-0003 -5.97991842835789E-0003 -5.97603894376602E-0003 -5.97212319446147E-0003 +-5.96817119424923E-0003 -5.96418295768118E-0003 -5.96015850005505E-0003 -5.95609783741376E-0003 -5.95200098654466E-0003 +-5.94786796497875E-0003 -5.94369879098940E-0003 -5.93949348359254E-0003 -5.93525206254432E-0003 -5.93097454834147E-0003 +-5.92666096222024E-0003 -5.92231132615491E-0003 -5.91792566285667E-0003 -5.91350399577428E-0003 -5.90904634909123E-0003 +-5.90455274772526E-0003 -5.90002321732815E-0003 -5.89545778428370E-0003 -5.89085647570784E-0003 -5.88621931944529E-0003 +-5.88154634407220E-0003 -5.87683757889087E-0003 -5.87209305393176E-0003 -5.86731279995128E-0003 -5.86249684843022E-0003 +-5.85764523157293E-0003 -5.85275798230671E-0003 -5.84783513427950E-0003 -5.84287672185986E-0003 -5.83788278013479E-0003 +-5.83285334490868E-0003 -5.82778845270295E-0003 -5.82268814075340E-0003 -5.81755244700960E-0003 -5.81238141013381E-0003 +-5.80717506949912E-0003 -5.80193346518855E-0003 -5.79665663799372E-0003 -5.79134462941270E-0003 -5.78599748164953E-0003 +-5.78061523761250E-0003 -5.77519794091266E-0003 -5.76974563586264E-0003 -5.76425836747445E-0003 -5.75873618145913E-0003 +-5.75317912422420E-0003 -5.74758724287296E-0003 -5.74196058520288E-0003 -5.73629919970318E-0003 -5.73060313555487E-0003 +-5.72487244262735E-0003 -5.71910717147838E-0003 -5.71330737335211E-0003 -5.70747310017647E-0003 -5.70160440456315E-0003 +-5.69570133980467E-0003 -5.68976395987339E-0003 -5.68379231942007E-0003 -5.67778647377096E-0003 -5.67174647892790E-0003 +-5.66567239156532E-0003 -5.65956426902863E-0003 -5.65342216933346E-0003 -5.64724615116290E-0003 -5.64103627386545E-0003 +-5.63479259745505E-0003 -5.62851518260700E-0003 -5.62220409065837E-0003 -5.61585938360421E-0003 -5.60948112409707E-0003 +-5.60306937544456E-0003 -5.59662420160777E-0003 -5.59014566719953E-0003 -5.58363383748155E-0003 -5.57708877836414E-0003 +-5.57051055640311E-0003 -5.56389923879806E-0003 -5.55725489339066E-0003 -5.55057758866308E-0003 -5.54386739373506E-0003 +-5.53712437836247E-0003 -5.53034861293591E-0003 -5.52354016847751E-0003 -5.51669911664027E-0003 -5.50982552970496E-0003 +-5.50291948057849E-0003 -5.49598104279173E-0003 -5.48901029049817E-0003 -5.48200729847086E-0003 -5.47497214210089E-0003 +-5.46790489739526E-0003 -5.46080564097478E-0003 -5.45367445007164E-0003 -5.44651140252787E-0003 -5.43931657679245E-0003 +-5.43209005192045E-0003 -5.42483190756909E-0003 -5.41754222399707E-0003 -5.41022108206209E-0003 -5.40286856321750E-0003 +-5.39548474951207E-0003 -5.38806972358642E-0003 -5.38062356867054E-0003 -5.37314636858310E-0003 -5.36563820772756E-0003 +-5.35809917109108E-0003 -5.35052934424141E-0003 -5.34292881332537E-0003 -5.33529766506585E-0003 -5.32763598676008E-0003 +-5.31994386627725E-0003 -5.31222139205599E-0003 -5.30446865310186E-0003 -5.29668573898585E-0003 -5.28887273984100E-0003 +-5.28102974636057E-0003 -5.27315684979611E-0003 -5.26525414195408E-0003 -5.25732171519420E-0003 -5.24935966242696E-0003 +-5.24136807711112E-0003 -5.23334705325115E-0003 -5.22529668539511E-0003 -5.21721706863218E-0003 -5.20910829859004E-0003 +-5.20097047143229E-0003 -5.19280368385693E-0003 -5.18460803309216E-0003 -5.17638361689594E-0003 -5.16813053355193E-0003 +-5.15984888186755E-0003 -5.15153876117212E-0003 -5.14320027131283E-0003 -5.13483351265420E-0003 -5.12643858607355E-0003 +-5.11801559296015E-0003 -5.10956463521137E-0003 -5.10108581523091E-0003 -5.09257923592659E-0003 -5.08404500070660E-0003 +-5.07548321347744E-0003 -5.06689397864239E-0003 -5.05827740109677E-0003 -5.04963358622780E-0003 -5.04096263990980E-0003 +-5.03226466850325E-0003 -5.02353977885109E-0003 -5.01478807827659E-0003 -5.00600967458069E-0003 -4.99720467603923E-0003 +-4.98837319140047E-0003 -4.97951532988208E-0003 -4.97063120116871E-0003 -4.96172091540973E-0003 -4.95278458321593E-0003 +-4.94382231565696E-0003 -4.93483422425878E-0003 -4.92582042100088E-0003 -4.91678101831406E-0003 -4.90771612907678E-0003 +-4.89862586661318E-0003 -4.88951034469009E-0003 -4.88036967751425E-0003 -4.87120397972977E-0003 -4.86201336641544E-0003 +-4.85279795308166E-0003 -4.84355785566762E-0003 -4.83429319053919E-0003 -4.82500407448563E-0003 -4.81569062471677E-0003 +-4.80635295886052E-0003 -4.79699119496005E-0003 -4.78760545147069E-0003 -4.77819584725741E-0003 -4.76876250159204E-0003 +-4.75930553415059E-0003 -4.74982506500986E-0003 -4.74032121464507E-0003 -4.73079410392724E-0003 -4.72124385411982E-0003 +-4.71167058687640E-0003 -4.70207442423732E-0003 -4.69245548862722E-0003 -4.68281390285231E-0003 -4.67314979009703E-0003 +-4.66346327392138E-0003 -4.65375447825848E-0003 -4.64402352741122E-0003 -4.63427054604922E-0003 -4.62449565920676E-0003 +-4.61469899227933E-0003 -4.60488067102035E-0003 -4.59504082153929E-0003 -4.58517957029800E-0003 -4.57529704410822E-0003 +-4.56539337012828E-0003 -4.55546867586052E-0003 -4.54552308914834E-0003 -4.53555673817334E-0003 -4.52556975145202E-0003 +-4.51556225783340E-0003 -4.50553438649562E-0003 -4.49548626694354E-0003 -4.48541802900508E-0003 -4.47532980282908E-0003 +-4.46522171888175E-0003 -4.45509390794400E-0003 -4.44494650110861E-0003 -4.43477962977687E-0003 -4.42459342565609E-0003 +-4.41438802075630E-0003 -4.40416354738749E-0003 -4.39392013815659E-0003 -4.38365792596463E-0003 -4.37337704400331E-0003 +-4.36307762575258E-0003 -4.35275980497762E-0003 -4.34242371572542E-0003 -4.33206949232201E-0003 -4.32169726937005E-0003 +-4.31130718174478E-0003 -4.30089936459178E-0003 -4.29047395332406E-0003 -4.28003108361844E-0003 -4.26957089141309E-0003 +-4.25909351290440E-0003 -4.24859908454393E-0003 -4.23808774303521E-0003 -4.22755962533158E-0003 -4.21701486863191E-0003 +-4.20645361037840E-0003 -4.19587598825378E-0003 -4.18528214017752E-0003 -4.17467220430368E-0003 -4.16404631901683E-0003 +-4.15340462293045E-0003 -4.14274725488260E-0003 -4.13207435393342E-0003 -4.12138605936267E-0003 -4.11068251066559E-0003 +-4.09996384755060E-0003 -4.08923020993641E-0003 -4.07848173794845E-0003 -4.06771857191624E-0003 -4.05694085237019E-0003 +-4.04614872003878E-0003 -4.03534231584507E-0003 -4.02452178090429E-0003 -4.01368725652055E-0003 -4.00283888418334E-0003 +-3.99197680556551E-0003 -3.98110116251923E-0003 -3.97021209707349E-0003 -3.95930975143108E-0003 -3.94839426796534E-0003 +-3.93746578921722E-0003 -3.92652445789231E-0003 -3.91557041685789E-0003 -3.90460380913937E-0003 -3.89362477791803E-0003 +-3.88263346652750E-0003 -3.87163001845079E-0003 -3.86061457731721E-0003 -3.84958728689965E-0003 -3.83854829111111E-0003 +-3.82749773400206E-0003 -3.81643575975707E-0003 -3.80536251269201E-0003 -3.79427813725091E-0003 -3.78318277800317E-0003 +-3.77207657963993E-0003 -3.76095968697172E-0003 -3.74983224492511E-0003 -3.73869439853957E-0003 -3.72754629296474E-0003 +-3.71638807345713E-0003 -3.70521988537739E-0003 -3.69404187418691E-0003 -3.68285418544501E-0003 -3.67165696480601E-0003 +-3.66045035801601E-0003 -3.64923451091007E-0003 -3.63800956940879E-0003 -3.62677567951589E-0003 -3.61553298731469E-0003 +-3.60428163896539E-0003 -3.59302178070177E-0003 -3.58175355882867E-0003 -3.57047711971829E-0003 -3.55919260980779E-0003 +-3.54790017559596E-0003 -3.53659996364034E-0003 -3.52529212055406E-0003 -3.51397679300303E-0003 -3.50265412770288E-0003 +-3.49132427141581E-0003 -3.47998737094796E-0003 -3.46864357314590E-0003 -3.45729302489405E-0003 -3.44593587311155E-0003 +-3.43457226474914E-0003 -3.42320234678653E-0003 -3.41182626622901E-0003 -3.40044417010461E-0003 -3.38905620546136E-0003 +-3.37766251936384E-0003 -3.36626325889071E-0003 -3.35485857113152E-0003 -3.34344860318337E-0003 -3.33203350214867E-0003 +-3.32061341513158E-0003 -3.30918848923548E-0003 -3.29775887155953E-0003 -3.28632470919619E-0003 -3.27488614922801E-0003 +-3.26344333872466E-0003 -3.25199642474018E-0003 -3.24054555430978E-0003 -3.22909087444716E-0003 -3.21763253214135E-0003 +-3.20617067435386E-0003 -3.19470544801583E-0003 -3.18323700002503E-0003 -3.17176547724286E-0003 -3.16029102649166E-0003 +-3.14881379455137E-0003 -3.13733392815716E-0003 -3.12585157399625E-0003 -3.11436687870474E-0003 -3.10287998886510E-0003 +-3.09139105100328E-0003 -3.07990021158555E-0003 -3.06840761701572E-0003 -3.05691341363231E-0003 -3.04541774770559E-0003 +-3.03392076543475E-0003 -3.02242261294505E-0003 -3.01092343628491E-0003 -2.99942338142297E-0003 -2.98792259424532E-0003 +-2.97642122055273E-0003 -2.96491940605748E-0003 -2.95341729638101E-0003 -2.94191503705048E-0003 -2.93041277349642E-0003 +-2.91891065104966E-0003 -2.90740881493858E-0003 -2.89590741028621E-0003 -2.88440658210737E-0003 -2.87290647530604E-0003 +-2.86140723467253E-0003 -2.84990900488029E-0003 -2.83841193048365E-0003 -2.82691615591462E-0003 -2.81542182548032E-0003 +-2.80392908336009E-0003 -2.79243807360268E-0003 -2.78094894012362E-0003 -2.76946182670227E-0003 -2.75797687697917E-0003 +-2.74649423445322E-0003 -2.73501404247892E-0003 -2.72353644426370E-0003 -2.71206158286502E-0003 -2.70058960118775E-0003 +-2.68912064198150E-0003 -2.67765484783761E-0003 -2.66619236118684E-0003 -2.65473332429615E-0003 -2.64327787926642E-0003 +-2.63182616802950E-0003 -2.62037833234568E-0003 -2.60893451380085E-0003 -2.59749485380375E-0003 -2.58605949358355E-0003 +-2.57462857418687E-0003 -2.56320223647538E-0003 -2.55178062112285E-0003 -2.54036386861284E-0003 -2.52895211923551E-0003 +-2.51754551308569E-0003 -2.50614419005953E-0003 -2.49474828985241E-0003 -2.48335795195595E-0003 -2.47197331565564E-0003 +-2.46059452002787E-0003 -2.44922170393774E-0003 -2.43785500603627E-0003 -2.42649456475776E-0003 -2.41514051831712E-0003 +-2.40379300470749E-0003 -2.39245216169769E-0003 -2.38111812682928E-0003 -2.36979103741437E-0003 -2.35847103053288E-0003 +-2.34715824303022E-0003 -2.33585281151426E-0003 -2.32455487235328E-0003 -2.31326456167323E-0003 -2.30198201535519E-0003 +-2.29070736903296E-0003 -2.27944075809037E-0003 -2.26818231765891E-0003 -2.25693218261533E-0003 -2.24569048757879E-0003 +-2.23445736690889E-0003 -2.22323295470263E-0003 -2.21201738479248E-0003 -2.20081079074353E-0003 -2.18961330585112E-0003 +-2.17842506313867E-0003 -2.16724619535480E-0003 -2.15607683497123E-0003 -2.14491711418015E-0003 -2.13376716489199E-0003 +-2.12262711873292E-0003 -2.11149710704240E-0003 -2.10037726087076E-0003 -2.08926771097709E-0003 -2.07816858782645E-0003 +-2.06708002158788E-0003 -2.05600214213169E-0003 -2.04493507902742E-0003 -2.03387896154129E-0003 -2.02283391863395E-0003 +-2.01180007895805E-0003 -2.00077757085606E-0003 -1.98976652235792E-0003 -1.97876706117858E-0003 -1.96777931471589E-0003 +-1.95680341004825E-0003 -1.94583947393226E-0003 -1.93488763280052E-0003 -1.92394801275928E-0003 -1.91302073958643E-0003 +-1.90210593872880E-0003 -1.89120373530033E-0003 -1.88031425407970E-0003 -1.86943761950808E-0003 -1.85857395568687E-0003 +-1.84772338637553E-0003 -1.83688603498952E-0003 -1.82606202459782E-0003 -1.81525147792104E-0003 -1.80445451732911E-0003 +-1.79367126483901E-0003 -1.78290184211286E-0003 -1.77214637045559E-0003 -1.76140497081281E-0003 -1.75067776376877E-0003 +-1.73996486954414E-0003 -1.72926640799402E-0003 -1.71858249860568E-0003 -1.70791326049654E-0003 -1.69725881241224E-0003 +-1.68661927272414E-0003 -1.67599475942779E-0003 -1.66538539014050E-0003 -1.65479128209932E-0003 -1.64421255215920E-0003 +-1.63364931679076E-0003 -1.62310169207834E-0003 -1.61256979371803E-0003 -1.60205373701557E-0003 -1.59155363688441E-0003 +-1.58106960784377E-0003 -1.57060176401656E-0003 -1.56015021912754E-0003 -1.54971508650116E-0003 -1.53929647905990E-0003 +-1.52889450932203E-0003 -1.51850928939991E-0003 -1.50814093099799E-0003 -1.49778954541081E-0003 -1.48745524352130E-0003 +-1.47713813579868E-0003 -1.46683833229668E-0003 -1.45655594265170E-0003 -1.44629107608086E-0003 -1.43604384138023E-0003 +-1.42581434692296E-0003 -1.41560270065735E-0003 -1.40540901010526E-0003 -1.39523338235999E-0003 -1.38507592408477E-0003 +-1.37493674151080E-0003 -1.36481594043540E-0003 -1.35471362622050E-0003 -1.34462990379059E-0003 -1.33456487763110E-0003 +-1.32451865178676E-0003 -1.31449132985956E-0003 -1.30448301500744E-0003 -1.29449380994215E-0003 -1.28452381692785E-0003 +-1.27457313777931E-0003 -1.26464187386026E-0003 -1.25473012608162E-0003 -1.24483799489993E-0003 -1.23496558031572E-0003 +-1.22511298187183E-0003 -1.21528029865164E-0003 -1.20546762927776E-0003 -1.19567507191014E-0003 -1.18590272424453E-0003 +-1.17615068351103E-0003 -1.16641904647237E-0003 -1.15670790942227E-0003 -1.14701736818419E-0003 -1.13734751810940E-0003 +-1.12769845407574E-0003 -1.11807027048585E-0003 -1.10846306126592E-0003 -1.09887691986398E-0003 -1.08931193924842E-0003 +-1.07976821190662E-0003 -1.07024582984334E-0003 -1.06074488457939E-0003 -1.05126546715007E-0003 -1.04180766810372E-0003 +-1.03237157750048E-0003 -1.02295728491055E-0003 -1.01356487941306E-0003 -1.00419444959455E-0003 -9.94846083547572E-0004 +-9.85519868869380E-0004 -9.76215892660407E-0004 -9.66934241523195E-0004 -9.57675001560784E-0004 -9.48438258375425E-0004 +-9.39224097067385E-0004 -9.30032602233548E-0004 -9.20863857966046E-0004 -9.11717947851189E-0004 -9.02594954967873E-0004 +-8.93494961886571E-0004 -8.84418050668031E-0004 -8.75364302861845E-0004 -8.66333799505492E-0004 -8.57326621122928E-0004 +-8.48342847723387E-0004 -8.39382558800314E-0004 -8.30445833329953E-0004 -8.21532749770399E-0004 -8.12643386060266E-0004 +-8.03777819617596E-0004 -7.94936127338770E-0004 -7.86118385597253E-0004 -7.77324670242561E-0004 -7.68555056599052E-0004 +-7.59809619465031E-0004 -7.51088433111428E-0004 -7.42391571280838E-0004 -7.33719107186491E-0004 -7.25071113511069E-0004 +-7.16447662405761E-0004 -7.07848825489308E-0004 -6.99274673846735E-0004 -6.90725278028626E-0004 -6.82200708049895E-0004 +-6.73701033389011E-0004 -6.65226322986818E-0004 -6.56776645245718E-0004 -6.48352068028710E-0004 -6.39952658658366E-0004 +-6.31578483915942E-0004 -6.23229610040547E-0004 -6.14906102728086E-0004 -6.06608027130514E-0004 -5.98335447854841E-0004 +-5.90088428962341E-0004 -5.81867033967671E-0004 -5.73671325837996E-0004 -5.65501366992181E-0004 -5.57357219300015E-0004 +-5.49238944081286E-0004 -5.41146602105102E-0004 -5.33080253588987E-0004 -5.25039958198256E-0004 -5.17025775045129E-0004 +-5.09037762687949E-0004 -5.01075979130647E-0004 -4.93140481821726E-0004 -4.85231327653807E-0004 -4.77348572962765E-0004 +-4.69492273527073E-0004 -4.61662484567199E-0004 -4.53859260744768E-0004 -4.46082656162071E-0004 -4.38332724361378E-0004 +-4.30609518324214E-0004 -4.22913090470841E-0004 -4.15243492659682E-0004 -4.07600776186514E-0004 -3.99984991784166E-0004 +-3.92396189621709E-0004 -3.84834419304014E-0004 -3.77299729871241E-0004 -3.69792169798115E-0004 -3.62311786993662E-0004 +-3.54858628800428E-0004 -3.47432741994226E-0004 -3.40034172783446E-0004 -3.32662966808688E-0004 -3.25319169142274E-0004 +-3.18002824287739E-0004 -3.10713976179535E-0004 -3.03452668182421E-0004 -2.96218943091156E-0004 -2.89012843130085E-0004 +-2.81834409952691E-0004 -2.74683684641265E-0004 -2.67560707706581E-0004 -2.60465519087378E-0004 -2.53398158150207E-0004 +-2.46358663688948E-0004 -2.39347073924599E-0004 -2.32363426504907E-0004 -2.25407758504030E-0004 -2.18480106422392E-0004 +-2.11580506186288E-0004 -2.04708993147656E-0004 -1.97865602083824E-0004 -1.91050367197317E-0004 -1.84263322115593E-0004 +-1.77504499890797E-0004 -1.70773932999675E-0004 -1.64071653343301E-0004 -1.57397692246834E-0004 -1.50752080459552E-0004 +-1.44134848154554E-0004 -1.37546024928610E-0004 -1.30985639802135E-0004 -1.24453721218996E-0004 -1.17950297046440E-0004 +-1.11475394575007E-0004 -1.05029040518427E-0004 -9.86112610136051E-0005 -9.22220816204923E-0005 -8.58615273221034E-0005 +-7.95296225245172E-0005 -7.32263910567412E-0005 -6.69518561708302E-0005 -6.07060405418482E-0005 -5.44889662678500E-0005 +-4.83006548699931E-0005 -4.21411272924927E-0005 -3.60104039027634E-0005 -2.99085044914551E-0005 -2.38354482724692E-0005 +-1.77912538831751E-0005 -1.17759393844039E-0005 -5.78952226064093E-0006 1.67980579862291E-0007 6.09655280502058E-0006 + 1.19961786585950E-0005 1.78668429602365E-0005 2.37085311051118E-0005 2.95212290638465E-0005 3.53049233822571E-0005 + 4.10596011811589E-0005 4.67852501561380E-0005 5.24818585773132E-0005 5.81494152890404E-0005 6.37879097097539E-0005 + 6.93973318315582E-0005 7.49776722200544E-0005 8.05289220139506E-0005 8.60510729248129E-0005 9.15441172367139E-0005 + 9.70080478059010E-0005 1.02442858060462E-0004 1.07848541999898E-0004 1.13225094194849E-0004 1.18572509786647E-0004 + 1.23890784486926E-0004 1.29179914577200E-0004 1.34439896908508E-0004 1.39670728900873E-0004 1.44872408542973E-0004 + 1.50044934391587E-0004 1.55188305571148E-0004 1.60302521773317E-0004 1.65387583256431E-0004 1.70443490845008E-0004 + 1.75470245929241E-0004 1.80467850464437E-0004 1.85436306970523E-0004 1.90375618531464E-0004 1.95285788794695E-0004 + 2.00166821970546E-0004 2.05018722831637E-0004 2.09841496712316E-0004 2.14635149507996E-0004 2.19399687674571E-0004 + 2.24135118227754E-0004 2.28841448742399E-0004 2.33518687351923E-0004 2.38166842747518E-0004 2.42785924177587E-0004 + 2.47375941446942E-0004 2.51936904916128E-0004 2.56468825500758E-0004 2.60971714670677E-0004 2.65445584449290E-0004 + 2.69890447412793E-0004 2.74306316689362E-0004 2.78693205958447E-0004 2.83051129449903E-0004 2.87380101943208E-0004 + 2.91680138766690E-0004 2.95951255796623E-0004 3.00193469456465E-0004 3.04406796715935E-0004 3.08591255090183E-0004 + 3.12746862638931E-0004 3.16873637965547E-0004 3.20971600216178E-0004 3.25040769078824E-0004 3.29081164782396E-0004 + 3.33092808095844E-0004 3.37075720327117E-0004 3.41029923322303E-0004 3.44955439464584E-0004 3.48852291673298E-0004 + 3.52720503402935E-0004 3.56560098642118E-0004 3.60371101912627E-0004 3.64153538268310E-0004 3.67907433294091E-0004 + 3.71632813104936E-0004 3.75329704344713E-0004 3.78998134185203E-0004 3.82638130324959E-0004 3.86249720988255E-0004 + 3.89832934923930E-0004 3.93387801404295E-0004 3.96914350224010E-0004 4.00412611698918E-0004 4.03882616664915E-0004 + 4.07324396476781E-0004 4.10737983006961E-0004 4.14123408644446E-0004 4.17480706293543E-0004 4.20809909372645E-0004 + 4.24111051813036E-0004 4.27384168057656E-0004 4.30629293059824E-0004 4.33846462282056E-0004 4.37035711694707E-0004 + 4.40197077774771E-0004 4.43330597504544E-0004 4.46436308370332E-0004 4.49514248361169E-0004 4.52564455967458E-0004 + 4.55586970179671E-0004 4.58581830486968E-0004 4.61549076875874E-0004 4.64488749828891E-0004 4.67400890323143E-0004 + 4.70285539828958E-0004 4.73142740308511E-0004 4.75972534214353E-0004 4.78774964488073E-0004 4.81550074558768E-0004 + 4.84297908341688E-0004 4.87018510236738E-0004 4.89711925127009E-0004 4.92378198377335E-0004 4.95017375832775E-0004 + 4.97629503817125E-0004 5.00214629131432E-0004 5.02772799052446E-0004 5.05304061331118E-0004 5.07808464191035E-0004 + 5.10286056326872E-0004 5.12736886902877E-0004 5.15161005551246E-0004 5.17558462370544E-0004 5.19929307924166E-0004 + 5.22273593238674E-0004 5.24591369802218E-0004 5.26882689562888E-0004 5.29147604927127E-0004 5.31386168758030E-0004 + 5.33598434373714E-0004 5.35784455545678E-0004 5.37944286497089E-0004 5.40077981901107E-0004 5.42185596879208E-0004 + 5.44267186999450E-0004 5.46322808274794E-0004 5.48352517161341E-0004 5.50356370556607E-0004 5.52334425797802E-0004 + 5.54286740660024E-0004 5.56213373354546E-0004 5.58114382527011E-0004 5.59989827255633E-0004 5.61839767049444E-0004 + 5.63664261846430E-0004 5.65463372011785E-0004 5.67237158336011E-0004 5.68985682033138E-0004 5.70709004738856E-0004 + 5.72407188508661E-0004 5.74080295815993E-0004 5.75728389550362E-0004 5.77351533015450E-0004 5.78949789927248E-0004 + 5.80523224412118E-0004 5.82071901004910E-0004 5.83595884647013E-0004 5.85095240684438E-0004 5.86570034865881E-0004 + 5.88020333340757E-0004 5.89446202657253E-0004 5.90847709760348E-0004 5.92224921989843E-0004 5.93577907078373E-0004 + 5.94906733149395E-0004 5.96211468715198E-0004 5.97492182674879E-0004 5.98748944312329E-0004 5.99981823294176E-0004 + 6.01190889667766E-0004 6.02376213859090E-0004 6.03537866670747E-0004 6.04675919279846E-0004 6.05790443235954E-0004 + 6.06881510458986E-0004 6.07949193237122E-0004 6.08993564224693E-0004 6.10014696440063E-0004 6.11012663263537E-0004 + 6.11987538435178E-0004 6.12939396052701E-0004 6.13868310569328E-0004 6.14774356791605E-0004 6.15657609877254E-0004 + 6.16518145332994E-0004 6.17356039012351E-0004 6.18171367113488E-0004 6.18964206176966E-0004 6.19734633083578E-0004 + 6.20482725052104E-0004 6.21208559637097E-0004 6.21912214726645E-0004 6.22593768540138E-0004 6.23253299626009E-0004 + 6.23890886859475E-0004 6.24506609440288E-0004 6.25100546890437E-0004 6.25672779051886E-0004 6.26223386084276E-0004 + 6.26752448462630E-0004 6.27260046975038E-0004 6.27746262720363E-0004 6.28211177105895E-0004 6.28654871845050E-0004 + 6.29077428955012E-0004 6.29478930754397E-0004 6.29859459860901E-0004 6.30219099188945E-0004 6.30557931947299E-0004 + 6.30876041636711E-0004 6.31173512047534E-0004 6.31450427257327E-0004 6.31706871628465E-0004 6.31942929805726E-0004 + 6.32158686713892E-0004 6.32354227555333E-0004 6.32529637807559E-0004 6.32685003220815E-0004 6.32820409815635E-0004 + 6.32935943880376E-0004 6.33031691968798E-0004 6.33107740897572E-0004 6.33164177743837E-0004 6.33201089842713E-0004 + 6.33218564784829E-0004 6.33216690413824E-0004 6.33195554823866E-0004 6.33155246357144E-0004 6.33095853601368E-0004 + 6.33017465387239E-0004 6.32920170785954E-0004 6.32804059106658E-0004 6.32669219893925E-0004 6.32515742925213E-0004 + 6.32343718208310E-0004 6.32153235978805E-0004 6.31944386697511E-0004 6.31717261047907E-0004 6.31471949933569E-0004 + 6.31208544475595E-0004 6.30927136010019E-0004 6.30627816085228E-0004 6.30310676459367E-0004 6.29975809097740E-0004 + 6.29623306170203E-0004 6.29253260048551E-0004 6.28865763303908E-0004 6.28460908704105E-0004 6.28038789211042E-0004 + 6.27599497978070E-0004 6.27143128347337E-0004 6.26669773847161E-0004 6.26179528189362E-0004 6.25672485266622E-0004 + 6.25148739149825E-0004 6.24608384085378E-0004 6.24051514492562E-0004 6.23478224960838E-0004 6.22888610247179E-0004 + 6.22282765273383E-0004 6.21660785123376E-0004 6.21022765040532E-0004 6.20368800424958E-0004 6.19698986830797E-0004 + 6.19013419963528E-0004 6.18312195677233E-0004 6.17595409971898E-0004 6.16863158990683E-0004 6.16115539017192E-0004 + 6.15352646472753E-0004 6.14574577913668E-0004 6.13781430028487E-0004 6.12973299635254E-0004 6.12150283678769E-0004 + 6.11312479227829E-0004 6.10459983472471E-0004 6.09592893721220E-0004 6.08711307398322E-0004 6.07815322040969E-0004 + 6.06905035296546E-0004 6.05980544919827E-0004 6.05041948770232E-0004 6.04089344809018E-0004 6.03122831096500E-0004 + 6.02142505789273E-0004 6.01148467137401E-0004 6.00140813481640E-0004 5.99119643250626E-0004 5.98085054958075E-0004 + 5.97037147199988E-0004 5.95976018651825E-0004 5.94901768065706E-0004 5.93814494267598E-0004 5.92714296154487E-0004 + 5.91601272691574E-0004 5.90475522909429E-0004 5.89337145901193E-0004 5.88186240819731E-0004 5.87022906874802E-0004 + 5.85847243330241E-0004 5.84659349501102E-0004 5.83459324750840E-0004 5.82247268488460E-0004 5.81023280165672E-0004 + 5.79787459274060E-0004 5.78539905342224E-0004 5.77280717932928E-0004 5.76009996640265E-0004 5.74727841086785E-0004 + 5.73434350920661E-0004 5.72129625812822E-0004 5.70813765454086E-0004 5.69486869552324E-0004 5.68149037829576E-0004 + 5.66800370019208E-0004 5.65440965863036E-0004 5.64070925108458E-0004 5.62690347505606E-0004 5.61299332804454E-0004 + 5.59897980751972E-0004 5.58486391089244E-0004 5.57064663548594E-0004 5.55632897850729E-0004 5.54191193701849E-0004 + 5.52739650790790E-0004 5.51278368786144E-0004 5.49807447333372E-0004 5.48326986051958E-0004 5.46837084532499E-0004 + 5.45337842333857E-0004 5.43829358980274E-0004 5.42311733958483E-0004 5.40785066714851E-0004 5.39249456652495E-0004 + 5.37705003128393E-0004 5.36151805450532E-0004 5.34589962875005E-0004 5.33019574603155E-0004 5.31440739778692E-0004 + 5.29853557484808E-0004 5.28258126741320E-0004 5.26654546501774E-0004 5.25042915650593E-0004 5.23423333000188E-0004 + 5.21795897288085E-0004 5.20160707174065E-0004 5.18517861237274E-0004 5.16867457973376E-0004 5.15209595791668E-0004 + 5.13544373012207E-0004 5.11871887862965E-0004 5.10192238476935E-0004 5.08505522889292E-0004 5.06811839034522E-0004 + 5.05111284743544E-0004 5.03403957740883E-0004 5.01689955641774E-0004 4.99969375949339E-0004 4.98242316051718E-0004 + 4.96508873219205E-0004 4.94769144601421E-0004 4.93023227224452E-0004 4.91271217987995E-0004 4.89513213662535E-0004 + 4.87749310886479E-0004 4.85979606163336E-0004 4.84204195858877E-0004 4.82423176198279E-0004 4.80636643263332E-0004 + 4.78844692989564E-0004 4.77047421163459E-0004 4.75244923419606E-0004 4.73437295237881E-0004 4.71624631940643E-0004 + 4.69807028689900E-0004 4.67984580484521E-0004 4.66157382157413E-0004 4.64325528372712E-0004 4.62489113623004E-0004 + 4.60648232226499E-0004 4.58802978324266E-0004 4.56953445877427E-0004 4.55099728664362E-0004 4.53241920277956E-0004 + 4.51380114122787E-0004 4.49514403412380E-0004 4.47644881166426E-0004 4.45771640208003E-0004 4.43894773160841E-0004 + 4.42014372446551E-0004 4.40130530281863E-0004 4.38243338675902E-0004 4.36352889427421E-0004 4.34459274122080E-0004 + 4.32562584129711E-0004 4.30662910601572E-0004 4.28760344467653E-0004 4.26854976433925E-0004 4.24946896979657E-0004 + 4.23036196354696E-0004 4.21122964576751E-0004 4.19207291428728E-0004 4.17289266456003E-0004 4.15368978963769E-0004 + 4.13446518014338E-0004 4.11521972424464E-0004 4.09595430762696E-0004 4.07666981346689E-0004 4.05736712240574E-0004 + 4.03804711252298E-0004 4.01871065930970E-0004 3.99935863564249E-0004 3.97999191175688E-0004 3.96061135522134E-0004 + 3.94121783091101E-0004 3.92181220098149E-0004 3.90239532484304E-0004 3.88296805913453E-0004 3.86353125769738E-0004 + 3.84408577155009E-0004 3.82463244886215E-0004 3.80517213492862E-0004 3.78570567214446E-0004 3.76623389997892E-0004 + 3.74675765495029E-0004 3.72727777060029E-0004 3.70779507746906E-0004 3.68831040306981E-0004 3.66882457186359E-0004 + 3.64933840523454E-0004 3.62985272146460E-0004 3.61036833570890E-0004 3.59088605997089E-0004 3.57140670307748E-0004 + 3.55193107065474E-0004 3.53245996510299E-0004 3.51299418557271E-0004 3.49353452794001E-0004 3.47408178478229E-0004 + 3.45463674535433E-0004 3.43520019556390E-0004 3.41577291794806E-0004 3.39635569164914E-0004 3.37694929239084E-0004 + 3.35755449245480E-0004 3.33817206065682E-0004 3.31880276232330E-0004 3.29944735926808E-0004 3.28010660976887E-0004 + 3.26078126854429E-0004 3.24147208673068E-0004 3.22217981185899E-0004 3.20290518783216E-0004 3.18364895490205E-0004 + 3.16441184964705E-0004 3.14519460494937E-0004 3.12599794997248E-0004 3.10682261013906E-0004 3.08766930710845E-0004 + 3.06853875875480E-0004 3.04943167914494E-0004 3.03034877851640E-0004 3.01129076325589E-0004 2.99225833587733E-0004 + 2.97325219500059E-0004 2.95427303532997E-0004 2.93532154763273E-0004 2.91639841871826E-0004 2.89750433141663E-0004 + 2.87863996455802E-0004 2.85980599295169E-0004 2.84100308736527E-0004 2.82223191450439E-0004 2.80349313699216E-0004 + 2.78478741334872E-0004 2.76611539797137E-0004 2.74747774111421E-0004 2.72887508886850E-0004 2.71030808314278E-0004 + 2.69177736164310E-0004 2.67328355785382E-0004 2.65482730101789E-0004 2.63640921611791E-0004 2.61802992385693E-0004 + 2.59969004063938E-0004 2.58139017855251E-0004 2.56313094534746E-0004 2.54491294442096E-0004 2.52673677479685E-0004 + 2.50860303110776E-0004 2.49051230357723E-0004 2.47246517800153E-0004 2.45446223573209E-0004 2.43650405365779E-0004 + 2.41859120418731E-0004 2.40072425523209E-0004 2.38290377018887E-0004 2.36513030792286E-0004 2.34740442275080E-0004 + 2.32972666442417E-0004 2.31209757811278E-0004 2.29451770438832E-0004 2.27698757920800E-0004 2.25950773389874E-0004 + 2.24207869514096E-0004 2.22470098495310E-0004 2.20737512067594E-0004 2.19010161495705E-0004 2.17288097573582E-0004 + 2.15571370622813E-0004 2.13860030491161E-0004 2.12154126551091E-0004 2.10453707698294E-0004 2.08758822350280E-0004 + 2.07069518444923E-0004 2.05385843439088E-0004 2.03707844307231E-0004 2.02035567540022E-0004 2.00369059143019E-0004 + 1.98708364635312E-0004 1.97053529048229E-0004 1.95404596924033E-0004 1.93761612314638E-0004 1.92124618780371E-0004 + 1.90493659388707E-0004 1.88868776713075E-0004 1.87250012831643E-0004 1.85637409326130E-0004 1.84031007280660E-0004 + 1.82430847280609E-0004 1.80836969411476E-0004 1.79249413257794E-0004 1.77668217902026E-0004 1.76093421923521E-0004 + 1.74525063397459E-0004 1.72963179893818E-0004 1.71407808476391E-0004 1.69858985701780E-0004 1.68316747618450E-0004 + 1.66781129765784E-0004 1.65252167173144E-0004 1.63729894358999E-0004 1.62214345330014E-0004 1.60705553580219E-0004 + 1.59203552090160E-0004 1.57708373326073E-0004 1.56220049239111E-0004 1.54738611264550E-0004 1.53264090321056E-0004 + 1.51796516809951E-0004 1.50335920614492E-0004 1.48882331099212E-0004 1.47435777109232E-0004 1.45996286969645E-0004 + 1.44563888484884E-0004 1.43138608938124E-0004 1.41720475090729E-0004 1.40309513181690E-0004 1.38905748927095E-0004 + 1.37509207519645E-0004 1.36119913628156E-0004 1.34737891397120E-0004 1.33363164446267E-0004 1.31995755870149E-0004 + 1.30635688237777E-0004 1.29282983592237E-0004 1.27937663450377E-0004 1.26599748802488E-0004 1.25269260112005E-0004 + 1.23946217315270E-0004 1.22630639821273E-0004 1.21322546511452E-0004 1.20021955739509E-0004 1.18728885331232E-0004 + 1.17443352584380E-0004 1.16165374268551E-0004 1.14894966625117E-0004 1.13632145367152E-0004 1.12376925679397E-0004 + 1.11129322218263E-0004 1.09889349111837E-0004 1.08657019959939E-0004 1.07432347834188E-0004 1.06215345278092E-0004 + 1.05006024307192E-0004 1.03804396409191E-0004 1.02610472544150E-0004 1.01424263144690E-0004 1.00245778116214E-0004 + 9.90750268371829E-0005 9.79120181593977E-0005 9.67567604083077E-0005 9.56092613833701E-0005 9.44695283584038E-0005 + 9.33375680820051E-0005 9.22133867779695E-0005 9.10969901457412E-0005 8.99883833609144E-0005 8.88875710757296E-0005 + 8.77945574196318E-0005 8.67093459998359E-0005 8.56319399019220E-0005 8.45623416904801E-0005 8.35005534097535E-0005 + 8.24465765843433E-0005 8.14004122199213E-0005 8.03620608039733E-0005 7.93315223065927E-0005 7.83087961812740E-0005 + 7.72938813657667E-0005 7.62867762829401E-0005 7.52874788416782E-0005 7.42959864378257E-0005 7.33122959551355E-0005 + 7.23364037662755E-0005 7.13683057338493E-0005 7.04079972114466E-0005 6.94554730447428E-0005 6.85107275726137E-0005 + 6.75737546282817E-0005 6.66445475405129E-0005 6.57230991348181E-0005 6.48094017347145E-0005 6.39034471630008E-0005 + 6.30052267430657E-0005 6.21147313002465E-0005 6.12319511631945E-0005 6.03568761652993E-0005 5.94894956461298E-0005 + 5.86297984529074E-0005 5.77777729420313E-0005 5.69334069806108E-0005 5.60966879480572E-0005 5.52676027376935E-0005 + 5.44461377583977E-0005 5.36322789362965E-0005 5.28260117164705E-0005 5.20273210647167E-0005 5.12361914693305E-0005 + 5.04526069429232E-0005 4.96765510242890E-0005 4.89080067802854E-0005 4.81469568077710E-0005 4.73933832355644E-0005 + 4.66472677264386E-0005 4.59085914791648E-0005 4.51773352305786E-0005 4.44534792576832E-0005 4.37370033798028E-0005 + 4.30278869607517E-0005 4.23261089110606E-0005 4.16316476902264E-0005 4.09444813089988E-0005 4.02645873317180E-0005 + 3.95919428786692E-0005 3.89265246284947E-0005 3.82683088206308E-0005 3.76172712577823E-0005 3.69733873084481E-0005 + 3.63366319094654E-0005 3.57069795686120E-0005 3.50844043672336E-0005 3.44688799629110E-0005 3.38603795921771E-0005 + 3.32588760732558E-0005 3.26643418088572E-0005 3.20767487890011E-0005 3.14960685938795E-0005 3.09222723967702E-0005 + 3.03553309669738E-0005 2.97952146728069E-0005 2.92418934846247E-0005 2.86953369778838E-0005 2.81555143362557E-0005 + 2.76223943547704E-0005 2.70959454430021E-0005 2.65761356283052E-0005 2.60629325590770E-0005 2.55563035080761E-0005 + 2.50562153757728E-0005 2.45626346937417E-0005 2.40755276281047E-0005 2.35948599830025E-0005 2.31205972041225E-0005 + 2.26527043822593E-0005 2.21911462569181E-0005 2.17358872199698E-0005 2.12868913193357E-0005 2.08441222627281E-0005 + 2.04075434214260E-0005 1.99771178340938E-0005 1.95528082106522E-0005 1.91345769361805E-0005 1.87223860748748E-0005 + 1.83161973740425E-0005 1.79159722681411E-0005 1.75216718828692E-0005 1.71332570392904E-0005 1.67506882580141E-0005 + 1.63739257634125E-0005 1.60029294878844E-0005 1.56376590761695E-0005 1.52780738897025E-0005 1.49241330110129E-0005 + 1.45757952481771E-0005 1.42330191393068E-0005 1.38957629570939E-0005 1.35639847133943E-0005 1.32376421638591E-0005 + 1.29166928126188E-0005 1.26010939170047E-0005 1.22908024923274E-0005 1.19857753166954E-0005 1.16859689358822E-0005 + 1.13913396682469E-0005 1.11018436096928E-0005 1.08174366386846E-0005 1.05380744213058E-0005 1.02637124163666E-0005 + 9.99430588056503E-0006 9.72980987368781E-0006 9.47017926386999E-0006 9.21536873289693E-0006 8.96533278155642E-0006 + 8.72002573504495E-0006 8.47940174841647E-0006 8.24341481208815E-0006 8.01201875739140E-0006 7.78516726217330E-0006 + 7.56281385645245E-0006 7.34491192812125E-0006 7.13141472869931E-0006 6.92227537914181E-0006 6.71744687569289E-0006 + 6.51688209579652E-0006 6.32053380405484E-0006 6.12835465823826E-0006 5.94029721535139E-0006 5.75631393774529E-0006 + 5.57635719928764E-0006 5.40037929158169E-0006 5.22833243023802E-0006 5.06016876120245E-0006 4.89584036713204E-0006 + 4.73529927382928E-0006 4.57849745672636E-0006 4.42538684742322E-0006 4.27591934028238E-0006 4.13004679907336E-0006 + 3.98772106367556E-0006 3.84889395683278E-0006 3.71351729096225E-0006 3.58154287502123E-0006 3.45292252142448E-0006 + 3.32760805302093E-0006 3.20555131012295E-0006 3.08670415759140E-0006 2.97101849197846E-0006 2.85844624872425E-0006 + 2.74893940940973E-0006 2.64245000906797E-0006 2.53893014354883E-0006 2.43833197694346E-0006 2.34060774906365E-0006 + 2.24570978297830E-0006 2.15359049260920E-0006 2.06420239038139E-0006 1.97749809493404E-0006 1.89343033888735E-0006 + 1.81195197666774E-0006 1.73301599239279E-0006 1.65657550781241E-0006 1.58258379031096E-0006 1.51099426096679E-0006 + 1.44176050267088E-0006 1.37483626830616E-0006 1.31017548898428E-0006 1.24773228234413E-0006 1.18746096090882E-0006 + 1.12931604050296E-0006 1.07325224873125E-0006 1.01922453351597E-0006 9.67188071696823E-0007 9.17098277690499E-0007 + 8.68910812211531E-0007 8.22581591055247E-0007 7.78066793941369E-0007 7.35322873419411E-0007 6.94306563836826E-0007 + 6.54974890368040E-0007 6.17285178107042E-0007 5.81195061221700E-0007 5.46662492170888E-0007 5.13645750985240E-0007 + 4.82103454610044E-0007 4.51994566312503E-0007 4.23278405151905E-0007 3.95914655513624E-0007 3.69863376707652E-0007 + 3.45085012630518E-0007 3.21540401492401E-0007 2.99190785608330E-0007 2.77997821254255E-0007 2.57923588588570E-0007 + 2.38930601638247E-0007 2.20981818351032E-0007 2.04040650712903E-0007 1.88070974931435E-0007 1.73037141685566E-0007 + 1.58903986441186E-0007 1.45636839833692E-0007 1.33201538116957E-0007 1.21564433679263E-0007 1.10692405626588E-0007 + 1.00552870433028E-0007 9.11137926588199E-0008 8.23436957363261E-0008 7.42116728237514E-0008 6.66873977273309E-0008 + 5.97411358917731E-0008 5.33437554593655E-0008 4.74667383980654E-0008 4.20821916984745E-0008 3.71628586402839E-0008 + 3.26821301281065E-0008 2.86140560970481E-0008 2.49333569882986E-0008 2.16154352947598E-0008 1.86363871771627E-0008 + 1.59730141507011E-0008 1.36028348424899E-0008 1.15040968200991E-0008 9.65578849126629E-0009 8.03765107514337E-0009 + 6.63019064518825E-0009 5.41469024397186E-0009 4.37322207013818E-0009 3.48865973767612E-0009 2.74469060779544E-0009 + 2.12582819357182E-0009 1.61742463760986E-0009 1.20568326295078E-0009 8.77671197425942E-0010 6.21332071693833E-0010 + 4.25498791185477E-0010 2.79906382168121E-0010 1.75204912166188E-0010 1.02972484952037E-0010 5.57283103367888E-0011 + 2.69458489853916E-0011 1.10660324784449E-0011 3.51055884905364E-0012 6.95263818452957E-0013 4.35679574858516E-0014 diff --git a/examples/USER/misc/entropy/data.interface b/examples/USER/misc/entropy/data.interface new file mode 100644 index 0000000000000000000000000000000000000000..a7d35a6e2cf7aa50b804f8ad4fb6f57335f33771 --- /dev/null +++ b/examples/USER/misc/entropy/data.interface @@ -0,0 +1,8211 @@ +LAMMPS data file via write_data, version 30 Mar 2018, timestep = 10000 + +4096 atoms +1 atom types + +0.0000000000000000e+00 1.3840000000000001e+02 xlo xhi +0.0000000000000000e+00 3.4570000000000000e+01 ylo yhi +0.0000000000000000e+00 3.4570000000000000e+01 zlo zhi +0.0000000000000000e+00 0.0000000000000000e+00 0.0000000000000000e+00 xy xz yz + +Masses + +1 22.9898 + +Atoms # full + +761 0 1 0.0000000000000000e+00 6.5718387526877970e+00 1.3719687167668809e+01 9.0764489103374970e+00 0 0 0 +972 0 1 0.0000000000000000e+00 1.4040336334056608e+01 3.2667223025732810e+01 1.8263405578025584e+00 0 0 1 +157 0 1 0.0000000000000000e+00 2.0169041879956669e+01 1.1923176551958365e+01 2.3241277343098265e+01 0 0 0 +333 0 1 0.0000000000000000e+00 1.4596985870718415e+01 1.3111147113686026e+00 1.2091348567791039e+01 0 0 1 +704 0 1 0.0000000000000000e+00 1.7400578084605492e+01 1.9073806421872103e+01 1.6458951010748358e+01 -1 1 0 +943 0 1 0.0000000000000000e+00 1.0855900156710607e+01 1.9178285448765071e+00 1.0364062719981291e+01 0 1 0 +562 0 1 0.0000000000000000e+00 9.7599449965098266e+00 1.1723146328035016e+01 8.0162503238031189e+00 1 0 0 +770 0 1 0.0000000000000000e+00 2.3087951846789174e+01 3.4715780948569632e+00 2.8384438687399964e+01 0 0 0 +701 0 1 0.0000000000000000e+00 8.0741075565448028e+00 4.1972700998148440e+00 1.0991536283363629e+01 1 1 0 +973 0 1 0.0000000000000000e+00 1.4513238119939416e+01 2.0077151599737558e+01 6.8621440235341868e+00 0 0 1 +97 0 1 0.0000000000000000e+00 1.7248338899179114e+01 1.3685010659538008e+01 6.3453085642023321e+00 0 0 0 +471 0 1 0.0000000000000000e+00 1.5302598577052368e+01 1.9611332756830230e+01 1.0861949403189952e+01 0 0 1 +326 0 1 0.0000000000000000e+00 2.3043108700853956e+01 2.3309593465704057e+00 1.7947804714422517e+00 0 0 1 +409 0 1 0.0000000000000000e+00 4.8085504808438735e+00 7.0464245407128612e+00 1.8140994863672759e+01 0 0 0 +481 0 1 0.0000000000000000e+00 5.6197712390228105e+00 3.2949187827072066e+01 9.9926418284218048e+00 0 -1 1 +974 0 1 0.0000000000000000e+00 1.5216033397050754e+01 1.5539705377326133e+01 3.2476660781361005e+01 0 1 0 +171 0 1 0.0000000000000000e+00 1.8486309859024331e+01 3.1960001827275097e+01 5.1323952888642617e-02 0 -1 0 +631 0 1 0.0000000000000000e+00 7.8755730458910271e+00 1.2423205774806140e+01 1.4804436620433419e+01 1 0 0 +620 0 1 0.0000000000000000e+00 1.1048848844019032e+00 2.8000395612369168e+01 1.0480207395658669e+01 0 0 0 +719 0 1 0.0000000000000000e+00 1.7358994345351960e+01 8.6623896759854055e+00 1.6481714984661654e+01 0 0 0 +502 0 1 0.0000000000000000e+00 1.6621383415613515e+01 1.0165002507976945e+01 1.9679295760668928e+01 0 0 1 +773 0 1 0.0000000000000000e+00 8.8366160728714220e+00 3.0591541762394893e+01 5.7254755000250768e+00 0 0 0 +50 0 1 0.0000000000000000e+00 8.9311860902618054e+00 1.9543477906419458e+01 8.7330786805673046e+00 0 0 0 +226 0 1 0.0000000000000000e+00 2.6292798027842501e+01 2.1160963460232047e+01 1.0001306207813423e+01 0 0 0 +863 0 1 0.0000000000000000e+00 1.7947700590702048e+01 9.4576099770855855e+00 2.0521984886265985e+00 0 1 1 +3228 0 1 0.0000000000000000e+00 4.5653152333179287e-01 2.4562727253449705e+01 9.6936858265485100e+00 0 0 -1 +347 0 1 0.0000000000000000e+00 2.2768900344654568e+01 9.7190617211070940e+00 8.8129568754109968e+00 -1 0 0 +847 0 1 0.0000000000000000e+00 7.4660003859981714e+00 3.3961017179402418e+01 1.2129412963637314e+00 1 -1 0 +1004 0 1 0.0000000000000000e+00 1.2852637288040327e+01 1.1201663850785248e+01 1.0928298694390248e+01 0 0 0 +829 0 1 0.0000000000000000e+00 8.8055620875741329e+00 2.5166386299067444e+01 1.4857838199926318e+01 0 0 0 +388 0 1 0.0000000000000000e+00 1.0963521585000954e+01 4.7733658263323147e+00 1.3219264306990674e+01 0 0 0 +717 0 1 0.0000000000000000e+00 6.6064571312036735e+00 1.4750508161105300e+01 1.2252989368238277e+01 0 0 0 +670 0 1 0.0000000000000000e+00 4.4313514018795370e+00 1.0087487472490693e+01 9.0776345780894676e+00 0 0 0 +103 0 1 0.0000000000000000e+00 3.0797906114614877e+00 5.2850603282682078e+00 3.3152825100647355e+01 0 0 -1 +114 0 1 0.0000000000000000e+00 2.6478769069650532e+01 3.2734200521383681e+00 7.5944261786273897e+00 -1 0 0 +818 0 1 0.0000000000000000e+00 9.9888017633094286e+00 1.2178207780971793e+01 1.1418457658710548e+01 -1 0 1 +658 0 1 0.0000000000000000e+00 1.1679232214066761e+01 1.5820844068897983e+01 1.5630687682899799e+01 0 0 0 +217 0 1 0.0000000000000000e+00 6.3674209939515736e+00 1.1296361058881828e+01 1.1793248578305748e+01 1 0 -1 +979 0 1 0.0000000000000000e+00 1.2313379964092958e+01 5.1280886940418071e+00 1.6322648498335209e+01 0 0 0 +106 0 1 0.0000000000000000e+00 1.8552210538438821e+01 1.0456297121004681e+01 9.2534298754824125e+00 0 0 0 +976 0 1 0.0000000000000000e+00 6.9625204092844024e+00 1.7455372721352231e+00 4.1401463593297585e+00 0 1 0 +487 0 1 0.0000000000000000e+00 2.0469863904621519e+01 2.1344305412635091e+01 1.7214710893816839e+01 0 0 0 +36 0 1 0.0000000000000000e+00 1.1070916525533457e+01 3.3814535338552638e+01 6.9713051695709334e+00 0 -1 0 +445 0 1 0.0000000000000000e+00 1.9444618364238945e+01 4.4777320237652889e+00 2.7776496666562164e+01 0 0 -1 +703 0 1 0.0000000000000000e+00 2.1160262653830397e+01 1.7162264093902881e+01 7.0301704699379854e+00 0 1 0 +30 0 1 0.0000000000000000e+00 7.4129670214820456e+00 5.4676827510485921e+00 4.6332226895066508e+00 1 0 0 +585 0 1 0.0000000000000000e+00 8.4612359427175377e-01 2.6799055918916488e+00 1.2979784905280601e+01 0 1 0 +205 0 1 0.0000000000000000e+00 6.2605859964206916e+00 1.2939512687461880e+01 7.0475435471634240e-01 0 0 0 +180 0 1 0.0000000000000000e+00 2.0253230330234807e+01 7.5557089764830998e+00 1.1035588923878905e+01 0 0 0 +824 0 1 0.0000000000000000e+00 1.7819436277563145e+01 1.9512449315277692e+01 8.1903482501004454e+00 0 0 1 +65 0 1 0.0000000000000000e+00 1.6389175357749373e+01 2.0569603882548794e+01 3.4201730367220989e+01 0 0 -1 +3367 0 1 0.0000000000000000e+00 1.7360000033238305e+00 1.1705783965476870e+01 3.1912515310299657e+01 1 0 0 +970 0 1 0.0000000000000000e+00 1.1306376021300386e+01 8.8223505504547131e+00 1.5481427296671452e+01 0 1 0 +752 0 1 0.0000000000000000e+00 9.7648479717276384e+00 3.2610672975123755e+01 1.3700303134291930e+01 0 0 0 +248 0 1 0.0000000000000000e+00 8.1500679410195360e+00 9.3258882100115070e-01 1.2705252585620412e+01 1 1 0 +3255 0 1 0.0000000000000000e+00 5.9906413747293741e-01 1.2889327685742108e+01 1.4001430287037646e+01 1 0 0 +852 0 1 0.0000000000000000e+00 1.2455623117519725e+01 1.3801203591265017e+01 3.1851518758227709e+01 1 0 -1 +473 0 1 0.0000000000000000e+00 2.2257310068439303e+01 3.3130172069447269e+01 6.9828521491174755e-01 0 0 1 +173 0 1 0.0000000000000000e+00 2.2064926565114369e+01 5.8399017260108295e+00 7.3989952110535713e+00 0 1 0 +835 0 1 0.0000000000000000e+00 1.3904437557099596e+01 1.3109779638188648e+01 1.7813730114820064e+01 0 0 0 +888 0 1 0.0000000000000000e+00 2.5051879243504458e+00 6.8117381813365689e+00 8.5435365249792135e+00 0 0 0 +3272 0 1 0.0000000000000000e+00 1.4397993169457066e+00 2.0118048649462366e+01 2.1092347912670689e+01 1 0 -1 +662 0 1 0.0000000000000000e+00 1.7635759375590947e+01 2.1914379318844553e+01 1.4151580693379767e+01 0 0 0 +844 0 1 0.0000000000000000e+00 2.5670364987218530e+01 3.4363654202312283e+01 3.2562490462809116e+01 0 -1 0 +3921 0 1 0.0000000000000000e+00 3.4667080835953650e+00 3.0769127953400652e+01 2.6926012683881289e+01 1 0 0 +64 0 1 0.0000000000000000e+00 3.8403658318201912e+00 2.1218742779148016e+01 1.8648954200249335e+01 0 -1 0 +564 0 1 0.0000000000000000e+00 1.1822461342496192e+01 1.6149964680790337e+01 1.1893540376496464e+01 0 0 0 +379 0 1 0.0000000000000000e+00 2.3383485072496430e+00 1.1138962685969731e+00 1.5689940452528885e+01 1 0 0 +426 0 1 0.0000000000000000e+00 3.8359164749496122e+00 1.6350823047648557e+01 1.2780062536409899e+01 1 0 1 +526 0 1 0.0000000000000000e+00 6.0692814565229787e+00 1.0161526916166972e+01 2.6431117720400588e+00 1 0 0 +687 0 1 0.0000000000000000e+00 1.0997040205963252e-01 1.5395188299866923e+01 1.1140973521458648e+01 0 0 0 +659 0 1 0.0000000000000000e+00 4.2893538118134469e+00 1.5695481093966510e+01 7.7468695928725291e+00 0 0 0 +31 0 1 0.0000000000000000e+00 8.7990405423793359e+00 4.8062043089969881e+00 1.9428340532606651e+01 0 0 0 +3128 0 1 0.0000000000000000e+00 6.3324784831724101e-01 3.3910228941750852e+01 1.7818310126154650e+01 1 -1 0 +340 0 1 0.0000000000000000e+00 7.3321854432089451e+00 4.4404813278138313e+00 1.4074384453277320e+01 0 0 1 +266 0 1 0.0000000000000000e+00 1.1824717103976514e+01 1.2363370814145560e+01 1.4383398579819842e+01 1 0 0 +635 0 1 0.0000000000000000e+00 2.2194625357529958e+01 1.1485198762968599e+01 1.1583514966998887e+01 1 0 0 +1011 0 1 0.0000000000000000e+00 1.5304559963252837e+01 9.5926952366395746e+00 1.6998922962292637e-01 0 0 0 +272 0 1 0.0000000000000000e+00 9.0758984780930643e+00 1.2955669609333196e+01 2.6803762773481852e+00 1 0 1 +2 0 1 0.0000000000000000e+00 9.2745765888376948e+00 2.1284160170118982e+00 1.6803423067306156e+01 0 0 0 +785 0 1 0.0000000000000000e+00 9.0985446101799106e+00 1.5467852730097190e+01 1.3718053688743057e+01 -1 0 0 +194 0 1 0.0000000000000000e+00 2.7472818492208958e+01 3.2669410421744509e+01 4.3809707398334945e+00 0 -1 1 +814 0 1 0.0000000000000000e+00 4.8426723771273075e+00 4.5789650507973976e+00 2.0605871947445987e+01 1 1 0 +177 0 1 0.0000000000000000e+00 2.0177366160725015e+01 3.4565482401847962e+00 8.8702198181459853e+00 0 1 0 +144 0 1 0.0000000000000000e+00 1.2847903725632213e+01 5.7495489650145268e+00 2.0237982845086893e+01 0 0 -1 +145 0 1 0.0000000000000000e+00 1.2256145789560971e+01 9.7363881109590817e+00 8.0021801107541517e+00 0 -1 0 +567 0 1 0.0000000000000000e+00 3.4926238119517325e+00 3.4257715880207606e+01 5.5316681719448617e+00 0 -1 0 +823 0 1 0.0000000000000000e+00 2.0200546905788460e+01 2.4913145631861163e+01 1.5047657953979385e+01 -1 0 1 +387 0 1 0.0000000000000000e+00 3.3186357916219369e+00 1.2850106590432334e+01 7.1273548359765080e+00 0 0 0 +3579 0 1 0.0000000000000000e+00 3.3587522755734796e+00 1.4881501066826782e+01 3.2505667085866001e+01 0 0 -1 +767 0 1 0.0000000000000000e+00 1.5585243364171605e+01 1.9398179918078238e+01 1.9393447986143080e+01 0 0 0 +889 0 1 0.0000000000000000e+00 9.0280191279618762e+00 1.5837314162526699e+01 9.6164144657818262e+00 0 0 0 +700 0 1 0.0000000000000000e+00 1.3854614046022542e+01 6.4008895465616495e+00 7.8280054525574609e+00 0 1 0 +45 0 1 0.0000000000000000e+00 2.2253989268193823e+01 1.4408157282374667e+01 1.4021855994831846e+01 0 0 0 +820 0 1 0.0000000000000000e+00 5.6699625413040851e+00 1.7413212270358702e+01 9.9780711847422143e+00 0 0 0 +819 0 1 0.0000000000000000e+00 1.0769564506594842e+01 5.6464267563855310e+00 9.8326985192177787e+00 1 0 0 +408 0 1 0.0000000000000000e+00 2.1080239743165041e+00 8.7940372831036289e+00 2.8319373313407241e+00 0 0 1 +856 0 1 0.0000000000000000e+00 2.8578427452652186e+00 2.9901078327119176e+01 3.2116332651131430e+01 0 0 0 +421 0 1 0.0000000000000000e+00 1.5721152120744575e+01 3.8090800522803256e+00 1.4539035533315499e+01 1 0 1 +251 0 1 0.0000000000000000e+00 6.4445709042323660e+00 1.1367147743372550e+01 2.2974566579135271e+01 1 0 0 +215 0 1 0.0000000000000000e+00 6.2774454104044333e+00 1.5290914868730775e+01 3.0802572683197425e+01 0 0 -1 +77 0 1 0.0000000000000000e+00 2.1436706120520622e+01 7.6328318383808762e+00 1.8015379750315351e+01 1 -1 0 +478 0 1 0.0000000000000000e+00 8.7588598468053309e+00 2.2173044695958509e+01 2.6581826536815476e+00 1 -1 1 +642 0 1 0.0000000000000000e+00 2.5261334335323394e+01 4.4307356449117998e+00 1.3685475229962160e+01 0 1 0 +301 0 1 0.0000000000000000e+00 1.7056327695277897e+01 2.2527629658943422e+01 1.0821650164353118e+01 0 0 1 +953 0 1 0.0000000000000000e+00 9.3702320898675975e+00 3.3112779314350469e+01 9.9980626724739690e+00 0 -1 1 +821 0 1 0.0000000000000000e+00 2.5899867363635629e+01 1.0593655788239458e+01 1.4075515969704295e+01 0 0 0 +442 0 1 0.0000000000000000e+00 1.7240451576855385e+01 2.5272425838676455e+01 7.8611695743930721e+00 0 -1 1 +710 0 1 0.0000000000000000e+00 7.5224636381612395e+00 3.0169233922489070e+01 8.7752348426243909e+00 1 -1 0 +706 0 1 0.0000000000000000e+00 1.8558212261168598e+00 5.8036642540649668e+00 1.5144182497011009e+00 0 0 0 +947 0 1 0.0000000000000000e+00 4.0020883300865320e+00 5.4161126027846362e-01 1.8951573051860819e+01 0 1 0 +731 0 1 0.0000000000000000e+00 2.1178637237848449e+01 1.1486314891879037e+01 1.9202107759472637e+00 0 1 0 +29 0 1 0.0000000000000000e+00 7.1663341217932324e+00 1.6682216214069804e+01 1.6431080400376043e+01 1 0 0 +455 0 1 0.0000000000000000e+00 1.1792422186970267e+01 1.7590032037707545e+01 6.0354398819545594e+00 1 0 1 +839 0 1 0.0000000000000000e+00 1.4605379447678184e+01 1.0611914045254979e+01 1.5498650526217780e+01 0 1 0 +71 0 1 0.0000000000000000e+00 2.5977569550225339e+00 1.9877486151206689e+00 3.1896266113112539e+01 1 0 -1 +811 0 1 0.0000000000000000e+00 1.7013390198933472e+01 3.3496721659120773e+01 3.0470853380158913e+00 0 -1 0 +626 0 1 0.0000000000000000e+00 2.1583903762083697e+01 5.7209879219168052e+00 1.4560197757283701e+01 0 1 0 +865 0 1 0.0000000000000000e+00 1.7944107731900914e+01 1.7317849501156097e+01 4.6229096063009321e+00 0 1 1 +341 0 1 0.0000000000000000e+00 4.4735072071369464e+00 1.3681408542334813e+01 1.4646865329976952e+01 0 0 0 +826 0 1 0.0000000000000000e+00 1.0378600611817816e+00 1.8678134733140197e+01 6.4806660852324871e+00 0 0 0 +793 0 1 0.0000000000000000e+00 5.7642772277317107e+00 1.8621910468783344e+01 1.3811456012578221e+01 1 -1 0 +638 0 1 0.0000000000000000e+00 8.7677536263085702e+00 6.4759534658602025e+00 1.6328513925548322e+01 0 0 0 +3680 0 1 0.0000000000000000e+00 4.7327075813230737e+00 2.4856492276640100e+01 1.8980820971361236e+01 0 0 0 +805 0 1 0.0000000000000000e+00 9.6384969588096447e-01 1.6089195066991323e+01 1.4361402465750190e+01 1 0 0 +981 0 1 0.0000000000000000e+00 1.4581847435479556e+01 6.8074686325544871e+00 1.4316520594799929e+01 0 0 1 +94 0 1 0.0000000000000000e+00 1.9802013084705756e+01 4.1818430513286886e-01 6.4317730338630010e+00 0 0 0 +711 0 1 0.0000000000000000e+00 1.3760444805807827e+01 4.5403088317810916e+00 1.1170246382573589e+01 1 1 0 +989 0 1 0.0000000000000000e+00 1.3339187787949545e+01 2.9215950674457709e+01 1.1583513356757273e+01 0 0 1 +875 0 1 0.0000000000000000e+00 2.1686084285187682e+01 3.3639196772829990e+01 1.5544927889975847e+01 0 0 1 +383 0 1 0.0000000000000000e+00 3.1352193031169755e+01 1.8037470319701026e+01 2.4586515119465422e+00 0 0 1 +736 0 1 0.0000000000000000e+00 1.9995270192713928e+01 3.8590012404033824e-01 2.5514606940581435e+00 0 1 1 +884 0 1 0.0000000000000000e+00 6.7696839298583278e+00 3.4516113082422422e+01 1.6025504696791948e+01 0 -1 0 +169 0 1 0.0000000000000000e+00 1.5229476184809119e+01 1.5448586751447177e+01 3.8373029867095094e+00 1 0 0 +738 0 1 0.0000000000000000e+00 1.2947992983996327e+01 3.0461588537809753e+01 4.9831409888677500e+00 0 0 0 +25 0 1 0.0000000000000000e+00 1.7464602564529754e+00 2.2423510882735609e+01 6.7183349821366747e+00 1 0 0 +583 0 1 0.0000000000000000e+00 4.9505811713186230e+00 2.4517668430466564e+01 5.7706555690114723e+00 1 0 0 +364 0 1 0.0000000000000000e+00 8.5990984770773817e+00 8.9158209387633729e+00 9.7751263051921349e+00 -1 0 0 +3912 0 1 0.0000000000000000e+00 3.5047260329962100e+00 2.5629138976239382e+01 3.2232111780908511e+01 1 0 0 +254 0 1 0.0000000000000000e+00 2.0867490382212054e+01 1.3519502130883302e+01 7.8112631642210122e+00 1 -1 1 +225 0 1 0.0000000000000000e+00 2.9381368298685686e+01 1.3824314268457496e+00 2.2892211478885578e+00 0 1 0 +290 0 1 0.0000000000000000e+00 1.2730219267310357e+01 3.2413701307295163e+01 1.9217155103987533e+01 0 -1 0 +117 0 1 0.0000000000000000e+00 2.7654457562779999e+01 6.2657747747896284e+00 6.0276754591425377e+00 0 0 0 +484 0 1 0.0000000000000000e+00 1.2531600559163897e+01 2.7775894166930093e+00 7.3089137860926652e+00 0 1 1 +304 0 1 0.0000000000000000e+00 2.1890147273544468e+01 3.0106196470508156e+01 1.4722176430570878e+01 0 -1 0 +591 0 1 0.0000000000000000e+00 1.4849928203884478e+01 1.6716313299501557e+01 7.4366460869956166e+00 0 1 0 +939 0 1 0.0000000000000000e+00 6.4640811601907648e+00 1.2251682219968909e+01 6.2853550952494190e+00 0 0 1 +3238 0 1 0.0000000000000000e+00 1.5115231542448648e+00 2.5003049558830499e+00 6.0299393859049566e-01 0 0 0 +898 0 1 0.0000000000000000e+00 7.8544811020054146e+00 3.4130407706210029e+01 3.0786061227316303e+01 0 0 -1 +16 0 1 0.0000000000000000e+00 4.7965771022136687e+00 1.3868949528245309e+01 3.8005757640400484e+00 0 0 0 +3744 0 1 0.0000000000000000e+00 8.8548408649825872e-01 2.6757036242893872e+01 1.5450314551558401e+01 1 0 0 +361 0 1 0.0000000000000000e+00 1.4900858775458387e+01 1.3379880470744553e+01 1.2970904875178011e+01 0 0 0 +3939 0 1 0.0000000000000000e+00 1.4999508728469232e-01 1.1360187782461416e+01 1.7308422967202169e+01 0 0 1 +281 0 1 0.0000000000000000e+00 1.1939443356957000e+01 1.4366781906813321e+01 8.7840481579835430e+00 0 0 1 +479 0 1 0.0000000000000000e+00 9.6870091412921848e+00 2.9189004499112844e+01 1.1062084862446927e+01 1 -1 0 +424 0 1 0.0000000000000000e+00 2.3857784252554570e+01 1.5512088344118061e+01 9.5944290681633504e+00 -1 0 1 +531 0 1 0.0000000000000000e+00 1.9422428796846511e+01 1.3126418848343180e+01 1.1392030662579206e+01 0 0 0 +964 0 1 0.0000000000000000e+00 1.7089892100327457e+01 3.7703235282804677e+00 1.0748195830295062e+01 0 0 0 +438 0 1 0.0000000000000000e+00 1.0873795453236990e+01 2.1361270980259222e+00 4.0709573899120048e+00 1 0 0 +790 0 1 0.0000000000000000e+00 1.7099300819346926e+01 9.9895856614918959e+00 1.3029869137744548e+01 0 1 1 +696 0 1 0.0000000000000000e+00 2.5503156319831913e+01 6.5158245676785933e+00 9.1969653829780320e+00 -1 0 0 +3375 0 1 0.0000000000000000e+00 1.4814299622220142e+00 2.7254508865677650e+01 1.9172831126455350e+01 0 0 0 +513 0 1 0.0000000000000000e+00 3.3003282982120858e+01 2.3073214906502926e+01 2.7966762602713828e+01 0 0 -1 +121 0 1 0.0000000000000000e+00 4.0660447136615856e+00 3.6835442049516809e-01 2.0623315222236283e+00 1 0 0 +190 0 1 0.0000000000000000e+00 5.2622367671215171e+00 3.1955597004788334e+00 1.7163337939619460e+01 1 1 0 +396 0 1 0.0000000000000000e+00 1.1414969733803526e+01 3.3423871547403202e+01 3.0314619782582550e+01 0 -1 0 +43 0 1 0.0000000000000000e+00 2.4468010487163472e+01 1.5143574035061512e+01 5.6130216876186916e+00 0 -1 0 +712 0 1 0.0000000000000000e+00 1.7912859836497187e+01 1.8195211072081918e+01 1.2784381380444284e+01 1 0 0 +261 0 1 0.0000000000000000e+00 2.0954196674581031e+01 8.5365414044088492e+00 6.0945938827261799e+00 1 0 1 +993 0 1 0.0000000000000000e+00 1.5740788826219125e+01 1.2772614212666788e+01 9.4770701158345432e+00 0 0 0 +550 0 1 0.0000000000000000e+00 3.2354484960557748e+01 2.7152583772107244e+00 3.3404454708033256e+01 1 1 -1 +969 0 1 0.0000000000000000e+00 1.9607208448343716e+01 1.2353153797047300e+00 3.3672725071664949e+01 -1 1 0 +457 0 1 0.0000000000000000e+00 1.9863816990919281e+00 2.3615262532529076e+01 2.9196117779382817e+01 1 -1 0 +509 0 1 0.0000000000000000e+00 1.6852825760521142e+01 1.3014005194267568e+01 1.5918293362393596e+01 0 0 -1 +520 0 1 0.0000000000000000e+00 5.5327901135110551e+00 1.7386151708714099e+00 2.9743454811687542e+01 0 1 -1 +529 0 1 0.0000000000000000e+00 2.5736647286668440e+01 2.1682741406976049e+00 4.3743771638224773e+00 0 1 0 +161 0 1 0.0000000000000000e+00 1.7872532215477889e+01 1.5784394449478999e+01 9.0427989660752601e+00 0 0 0 +769 0 1 0.0000000000000000e+00 1.6597745147515653e+01 1.3429748220227243e+01 8.8336747746565428e-02 0 0 1 +827 0 1 0.0000000000000000e+00 3.4932290555536243e+00 1.3758006574170468e+01 1.7719476930083552e+01 0 1 0 +665 0 1 0.0000000000000000e+00 1.6910127304827011e+01 1.7264258416372893e+01 5.8718038364582137e-01 0 0 0 +557 0 1 0.0000000000000000e+00 1.0644079434393678e+01 1.0926690090792484e+01 4.3502342476109863e+00 0 0 0 +732 0 1 0.0000000000000000e+00 3.2776397209539283e+01 6.0204678726043399e+00 3.2603267809128553e+01 0 0 -1 +485 0 1 0.0000000000000000e+00 7.9638424508037851e+00 9.0594325534294455e+00 5.8329339813186589e+00 0 0 0 +482 0 1 0.0000000000000000e+00 2.3886725548898536e+01 4.4077679221076913e+00 1.7161934656833594e+01 0 0 1 +641 0 1 0.0000000000000000e+00 2.7550654625113754e+01 1.4058319168781278e+01 3.4899844488875713e+00 0 0 0 +112 0 1 0.0000000000000000e+00 1.5665212634146982e+01 1.0562658952951685e+01 6.9676218483932049e+00 0 0 0 +402 0 1 0.0000000000000000e+00 2.4416956803334031e+01 5.0444448357578464e+00 4.8666048750919755e+00 0 0 0 +577 0 1 0.0000000000000000e+00 5.2793218040775391e+00 7.2085916546066180e+00 1.1752725922395383e+01 0 0 0 +535 0 1 0.0000000000000000e+00 6.8445146036063962e+00 1.5262285422731534e+00 9.9008586528444127e+00 0 1 0 +116 0 1 0.0000000000000000e+00 1.4226645412997089e+01 8.5786234540870865e+00 1.7830031018162540e+01 0 0 0 +817 0 1 0.0000000000000000e+00 1.9741570267233051e+01 4.4802595337012114e+00 5.2751726175486358e+00 0 1 1 +766 0 1 0.0000000000000000e+00 1.9650672629827156e+01 1.1695720990204045e+01 1.4849894833136723e+01 0 1 0 +21 0 1 0.0000000000000000e+00 9.3274625507818616e+00 8.1950923159071625e+00 1.7875396364864595e+00 0 1 0 +410 0 1 0.0000000000000000e+00 4.2401606227327742e+00 9.5215754435469986e+00 5.5493211819022950e+00 -1 0 1 +19 0 1 0.0000000000000000e+00 9.3774272532703584e+00 1.4882696114937309e+01 5.9110898393261007e+00 0 0 0 +411 0 1 0.0000000000000000e+00 1.9699767643116608e+01 2.2532011922754162e+01 7.9050445282504924e+00 0 0 1 +702 0 1 0.0000000000000000e+00 3.1821824027432676e+01 7.5313073773081773e-01 3.0917412859750780e+01 0 1 0 +944 0 1 0.0000000000000000e+00 3.1213962650570519e+01 3.2682183259341777e+01 3.9738452390361116e+00 0 0 1 +727 0 1 0.0000000000000000e+00 1.7828496068208739e+01 1.4956382510077630e+01 1.3386993573287743e+01 -1 1 0 +3158 0 1 0.0000000000000000e+00 3.8816978801776936e-01 1.3805215385932627e+01 2.4277258864112596e+01 0 0 -1 +1378 0 1 0.0000000000000000e+00 2.9845919580048825e+01 1.7566999454632551e+01 2.0334277216277794e+01 0 0 0 +59 0 1 0.0000000000000000e+00 2.1535186724777944e+01 2.9993489408446656e+01 6.1782678445936474e+00 0 -1 0 +661 0 1 0.0000000000000000e+00 8.7538337591431397e+00 1.8869048198228125e+01 4.1871957848743522e+00 0 0 1 +747 0 1 0.0000000000000000e+00 1.8611824932369370e+01 1.1273097708685638e+01 4.9724902712540366e+00 0 1 0 +925 0 1 0.0000000000000000e+00 1.5532024786823790e+01 8.4118103105208988e+00 1.0014922528488334e+01 0 0 1 +111 0 1 0.0000000000000000e+00 6.2237310231642962e+00 5.6592041509198143e+00 3.2953123303900924e+01 0 0 -1 +234 0 1 0.0000000000000000e+00 7.5046743292188003e+00 3.0927073153128752e+01 1.7188303881399520e+01 0 -1 -1 +978 0 1 0.0000000000000000e+00 6.0665343724958678e+00 1.9258353840910225e+01 1.8432384730179538e+00 0 1 1 +13 0 1 0.0000000000000000e+00 8.7848610660748161e+00 7.8055204161204106e+00 1.2792439429156266e+01 0 0 0 +563 0 1 0.0000000000000000e+00 1.8447697940871631e+01 6.4149938211504498e+00 8.3431400191969445e+00 0 0 0 +948 0 1 0.0000000000000000e+00 2.0795223499421130e+01 2.0040928761159819e+01 1.0385960389498930e+01 0 0 0 +778 0 1 0.0000000000000000e+00 2.5304120176133601e+01 9.0382620919724417e+00 6.6503519266826325e+00 -1 0 0 +500 0 1 0.0000000000000000e+00 2.4189240897167970e+01 7.2542358824616837e+00 1.9272813278006847e+01 0 0 0 +982 0 1 0.0000000000000000e+00 2.3057488996227256e+01 2.2830826706390454e+01 5.8036890290212551e+00 0 0 1 +3365 0 1 0.0000000000000000e+00 1.8402500726099877e+00 4.9575003914017595e+00 1.7726306981260365e+01 0 0 0 +985 0 1 0.0000000000000000e+00 2.6466157282679362e+01 3.3778959360703089e+00 4.2549587731940147e-01 0 1 1 +503 0 1 0.0000000000000000e+00 1.2151821195239805e+01 8.2602003837499165e+00 1.1884608836852806e+01 0 0 0 +461 0 1 0.0000000000000000e+00 3.1572205725077387e+00 1.3297859907923851e+01 1.0682136870397215e+01 1 0 0 +677 0 1 0.0000000000000000e+00 1.1789374031431468e+00 1.0009281977635949e+01 9.1138019275496838e+00 0 0 0 +556 0 1 0.0000000000000000e+00 2.2621257981859241e+01 2.0395936709873816e+00 5.9245794180404134e+00 0 1 0 +3458 0 1 0.0000000000000000e+00 1.9725045465075031e+00 7.8825657595605669e+00 3.0202777329012470e+01 1 0 0 +267 0 1 0.0000000000000000e+00 2.3492864043268259e+01 2.7548817069525118e+00 3.2928154089232613e+01 1 0 0 +533 0 1 0.0000000000000000e+00 1.9112753406363261e+01 2.2315813733880084e+01 2.7615159065335789e+01 0 0 -1 +469 0 1 0.0000000000000000e+00 2.3941167187407171e+00 2.0345775232961497e+01 2.8294953004348038e+01 1 -1 0 +607 0 1 0.0000000000000000e+00 8.7391702072351691e+00 3.3290332856029590e+00 7.0565217887422289e+00 0 1 0 +252 0 1 0.0000000000000000e+00 2.2795720659965411e+01 1.0863398258018449e+01 1.5950482950288649e+01 -1 0 0 +202 0 1 0.0000000000000000e+00 5.7171947868822439e+00 8.9681227470864560e+00 1.5037162115902944e+01 0 0 0 +707 0 1 0.0000000000000000e+00 7.0396926223932477e+00 3.4291934348238179e+01 6.9265153217992959e+00 0 0 0 +48 0 1 0.0000000000000000e+00 7.6523513011822752e-01 2.9365244123894605e+01 6.7948435050645264e+00 0 -1 0 +393 0 1 0.0000000000000000e+00 3.4293107974780019e+00 2.8117830390718787e+01 4.0375409865456167e+00 0 -1 1 +99 0 1 0.0000000000000000e+00 1.6781116102336362e+01 3.2965760523778883e+01 6.5238435604580554e+00 0 -1 0 +175 0 1 0.0000000000000000e+00 2.1671877787791363e+01 2.5363065015224402e+00 1.5290267665475035e+01 0 -1 0 +548 0 1 0.0000000000000000e+00 1.8549452927918736e+01 6.7982517296516631e+00 2.0134539993839390e+01 0 1 0 +32 0 1 0.0000000000000000e+00 3.8935074769739728e+00 4.0999982265547574e+00 1.0562460436810012e+01 1 0 0 +639 0 1 0.0000000000000000e+00 5.9261797076837714e+00 2.7894360767065535e+01 1.0918873019975740e+01 1 0 0 +656 0 1 0.0000000000000000e+00 2.0715288274367321e+01 1.6516408855853243e+01 1.1061384232519728e+01 0 1 0 +33 0 1 0.0000000000000000e+00 2.1316536571254801e+01 1.4374627941290658e+01 4.5886174944408742e+00 0 -1 0 +260 0 1 0.0000000000000000e+00 3.5038879491075545e+00 7.8790357836459368e-01 8.6131470098626863e+00 0 0 0 +142 0 1 0.0000000000000000e+00 2.2436014141511134e+01 1.4969839579410412e+01 3.4455930625235439e+01 -1 0 0 +3337 0 1 0.0000000000000000e+00 2.1316676097070997e+00 8.6971236732986057e+00 1.6133726718610362e+01 0 0 0 +12 0 1 0.0000000000000000e+00 3.2683462475457603e+01 1.1940705965077958e+01 1.5893988505079761e+01 -1 0 0 +4012 0 1 0.0000000000000000e+00 6.3367347115002559e+00 2.7964277915875389e+01 3.0807653043405001e+01 1 0 0 +314 0 1 0.0000000000000000e+00 4.0054020570170890e+00 6.1921913321995623e+00 5.1287891176373135e+00 1 0 1 +233 0 1 0.0000000000000000e+00 1.0129987498210429e+01 1.9030767104766031e+01 1.6029831489119974e+01 1 0 0 +644 0 1 0.0000000000000000e+00 1.9754316463193238e+01 2.4338502202869311e+01 1.1107161815799637e+01 0 0 0 +1026 0 1 0.0000000000000000e+00 3.3073673918752981e+01 3.4182015234387677e+01 1.0482495320063816e+00 0 -1 0 +241 0 1 0.0000000000000000e+00 1.8693218603348196e+01 2.3921164427332268e+01 1.0772437047125061e+00 1 0 0 +627 0 1 0.0000000000000000e+00 1.9097859652665729e+01 1.9848146379924156e+01 2.0569282164547591e+00 0 0 0 +539 0 1 0.0000000000000000e+00 9.9084860938020947e-01 2.3331168637288069e+01 1.4826585473489981e+01 0 0 0 +690 0 1 0.0000000000000000e+00 1.8050413586215274e+01 3.4318383987651067e+00 2.6183104695699564e+00 0 0 0 +289 0 1 0.0000000000000000e+00 1.5951240629320834e+01 1.6156561191632587e+01 1.6699300048749667e+01 0 0 1 +230 0 1 0.0000000000000000e+00 6.8216563262937004e+00 6.1911912542858207e+00 8.1515256745689637e+00 1 0 0 +1 0 1 0.0000000000000000e+00 1.8160371067291596e+01 2.7475802909092710e+01 6.9594951583791431e-01 0 0 0 +849 0 1 0.0000000000000000e+00 3.1646987218486309e+01 3.3625639072675732e+01 6.8890070168739426e+00 0 0 1 +602 0 1 0.0000000000000000e+00 1.7821568671787301e+01 2.8961542589425388e+01 1.0265537814389745e+01 0 0 -1 +528 0 1 0.0000000000000000e+00 1.4013881808356741e+01 5.8171525167848299e-02 8.7625046091978120e+00 0 0 0 +285 0 1 0.0000000000000000e+00 1.3983965114223766e+01 2.4393023087023447e+01 5.5365016348419989e+00 0 -1 1 +634 0 1 0.0000000000000000e+00 7.5069348414796044e-01 1.8239934032253953e+00 2.0338902101492099e+01 0 1 0 +815 0 1 0.0000000000000000e+00 1.7586195329861361e+01 2.2202723059463533e+01 1.7913475621626077e+01 0 0 -1 +132 0 1 0.0000000000000000e+00 4.0304032218261927e+00 3.1265630636711755e+01 1.7656227148457040e+00 0 0 0 +288 0 1 0.0000000000000000e+00 2.2588950927186353e+01 2.2154348724813325e+01 1.3123459487252008e+01 0 -1 1 +237 0 1 0.0000000000000000e+00 1.6784038657819291e+01 3.3125845119478377e+01 1.8808490091905380e+01 0 -1 0 +723 0 1 0.0000000000000000e+00 5.9257157714389699e+00 2.1732724818631976e+01 3.3952070627447490e+01 0 0 -1 +435 0 1 0.0000000000000000e+00 2.9104294846679199e+01 2.7355284539892899e+01 1.9331589514548753e+01 0 -1 0 +3500 0 1 0.0000000000000000e+00 4.4746993817150251e+00 2.6901735362753040e+01 2.6679835109142939e+01 1 0 0 +936 0 1 0.0000000000000000e+00 1.0984072264804070e+01 2.5895749335402851e+01 8.6975909809435397e+00 1 0 1 +325 0 1 0.0000000000000000e+00 2.4734339297533769e+01 2.3696986354607503e+01 2.0039394433736896e-01 0 0 1 +70 0 1 0.0000000000000000e+00 8.3198330104478266e+00 2.7477430105121204e+01 7.5698993474959062e+00 1 -1 0 +930 0 1 0.0000000000000000e+00 1.5058021854150876e+01 1.5432423429623428e+00 2.1669860864563808e+00 0 1 1 +1265 0 1 0.0000000000000000e+00 3.4445968199395047e+01 1.6348438237561609e+01 1.1857663065671813e+01 0 0 0 +868 0 1 0.0000000000000000e+00 1.5741942967571637e+01 2.2236979046729193e+01 2.7150262308036637e+00 0 0 1 +178 0 1 0.0000000000000000e+00 6.4262156357929934e+00 3.1504854163534826e+01 1.2851891365235049e+01 1 -1 0 +1018 0 1 0.0000000000000000e+00 2.3549908747389445e+01 2.6730868341638601e+01 6.2300984594337638e+00 0 0 1 +464 0 1 0.0000000000000000e+00 2.5572107655662936e+01 2.2878574632140779e+01 2.9982142274405145e+01 0 0 0 +992 0 1 0.0000000000000000e+00 2.1070231222374442e+01 2.5598155418836591e+01 8.1277307875421219e+00 0 0 0 +739 0 1 0.0000000000000000e+00 2.3937568912382027e+01 1.8596464806826571e+01 1.2120458916829802e+01 -1 0 0 +681 0 1 0.0000000000000000e+00 3.9312982738759135e+00 2.4442038214808154e+01 9.0239584427628579e+00 0 0 0 +3573 0 1 0.0000000000000000e+00 3.4226248383135252e+00 1.0139448110572278e+01 2.0355101183374622e+01 1 0 1 +496 0 1 0.0000000000000000e+00 3.0709796147266808e+01 1.9483925446703868e+01 3.2030818582907855e+01 0 -1 0 +955 0 1 0.0000000000000000e+00 1.6038679307198997e+01 3.1852842220418154e+01 1.1904965617423979e+01 0 -1 0 +771 0 1 0.0000000000000000e+00 2.1804793822240111e+01 2.8883694003075618e+01 9.9927035339231640e+00 0 0 0 +804 0 1 0.0000000000000000e+00 7.7890950745171290e+00 1.5989134950225433e+01 2.4336089038898514e+00 1 0 0 +57 0 1 0.0000000000000000e+00 2.5653226154950055e+01 2.0754253738083710e+00 1.5614175334618952e+01 0 0 0 +651 0 1 0.0000000000000000e+00 1.2978454637491851e+01 2.2714807898237432e+01 9.3090728096399271e+00 0 0 0 +741 0 1 0.0000000000000000e+00 7.4012143349419777e+00 2.4493185407690525e+01 8.6336153979966301e+00 0 0 0 +604 0 1 0.0000000000000000e+00 2.0681770082595087e+01 2.7572626388266933e+01 3.9250812429283903e+00 0 0 0 +883 0 1 0.0000000000000000e+00 4.4494852579941870e+00 1.7751801725408022e+01 4.9849608504729250e+00 0 0 0 +952 0 1 0.0000000000000000e+00 2.0179190954835784e+00 3.3953511376159064e+01 1.1447631955197087e+01 0 -1 0 +843 0 1 0.0000000000000000e+00 1.2832684610412420e+01 1.7396720271095653e+01 2.1056026178411685e-01 0 0 1 +188 0 1 0.0000000000000000e+00 3.3921985382487300e+01 2.7893408132298624e+01 9.5497539084161094e+00 0 0 0 +760 0 1 0.0000000000000000e+00 2.8987314279228777e+01 2.8676757434785536e+01 3.3416592056149774e+01 -1 1 0 +941 0 1 0.0000000000000000e+00 7.3377958960638567e-01 1.9622691249925484e+01 1.6898937366771996e+01 1 0 0 +618 0 1 0.0000000000000000e+00 1.0893117251383888e+01 3.3210188065242392e+01 2.9795282790984872e+00 1 0 0 +118 0 1 0.0000000000000000e+00 2.5308741769392945e+01 2.4665658330207911e+01 7.6919910489478784e+00 0 -1 0 +664 0 1 0.0000000000000000e+00 1.1130663401994337e+01 2.7454191737444138e+01 5.4311875515435108e+00 0 0 1 +278 0 1 0.0000000000000000e+00 6.5340813517528291e+00 3.2247097927405235e+01 3.9645217685677840e+00 1 -1 0 +218 0 1 0.0000000000000000e+00 1.4171433646758677e+01 2.3402407120169940e+01 1.2375885139473912e+01 0 0 0 +406 0 1 0.0000000000000000e+00 3.8596074964672380e+00 2.9020892865077904e+01 1.4044386616428534e+01 0 0 1 +834 0 1 0.0000000000000000e+00 2.0910613667952759e+01 6.2600272323643780e-01 1.0580986539858415e+01 0 1 0 +222 0 1 0.0000000000000000e+00 2.4663876248083402e-01 5.5108999186343777e+00 5.1111874782744628e+00 1 0 0 +139 0 1 0.0000000000000000e+00 1.4389901250118237e+01 1.7051562855310781e+01 1.3721121047358315e+01 0 0 0 +199 0 1 0.0000000000000000e+00 1.3606043262443492e+01 3.4252968311428504e+01 5.3578217224503684e+00 0 -1 -1 +584 0 1 0.0000000000000000e+00 2.6406243240340174e+01 2.6692310374370795e+01 1.7879716908776668e+01 0 0 0 +280 0 1 0.0000000000000000e+00 9.7027017222662462e+00 2.2664540328146671e+01 8.1890322131757323e+00 0 0 1 +640 0 1 0.0000000000000000e+00 1.9677402681431374e+01 3.1636983368048952e+01 9.0042881255007021e+00 0 0 0 +181 0 1 0.0000000000000000e+00 1.9798190771682922e+01 3.8421242841197323e+00 1.2493602222690615e+01 0 0 0 +552 0 1 0.0000000000000000e+00 8.8465238786114107e+00 2.6013140945555445e+01 1.1372388308146853e+01 0 0 0 +749 0 1 0.0000000000000000e+00 2.8560000243921611e+00 2.2266581959754479e+01 1.1556520250341730e+01 0 0 0 +837 0 1 0.0000000000000000e+00 1.1088531726606560e+01 2.1469267919976502e+01 5.3820019790443530e+00 1 0 0 +676 0 1 0.0000000000000000e+00 4.0057296641593672e+00 2.1492102200311791e+01 3.9659113300503805e+00 1 0 0 +1682 0 1 0.0000000000000000e+00 3.2536105156441316e+01 2.3263362731027033e+01 1.0171392789448907e+01 0 0 0 +851 0 1 0.0000000000000000e+00 2.5954520451673826e+01 2.0776871116920610e+01 6.3095253630251404e+00 0 0 1 +130 0 1 0.0000000000000000e+00 8.5306317891607542e+00 2.4236301717089972e+01 5.4576790975037763e+00 1 -1 0 +729 0 1 0.0000000000000000e+00 1.4264495738079066e+01 2.6268989038391574e+01 9.9358654012789458e+00 1 0 0 +861 0 1 0.0000000000000000e+00 2.0640092100556839e+00 1.7912649533422645e+01 9.9170096850626486e+00 1 0 0 +168 0 1 0.0000000000000000e+00 1.1972835107942037e+01 2.6016694021223273e+01 1.3099569562882776e+01 0 -1 0 +855 0 1 0.0000000000000000e+00 1.3289211582753520e+01 1.9062340931970759e+01 1.7035362022984149e+01 0 0 0 +517 0 1 0.0000000000000000e+00 2.2125346567658447e+01 2.1695690086596382e+01 1.5634025978365924e+00 0 0 0 +450 0 1 0.0000000000000000e+00 1.2063652728843222e+01 1.8697162622064351e+01 9.3005740454241952e+00 0 0 1 +698 0 1 0.0000000000000000e+00 7.1640701528938253e+00 1.7677064330036963e+01 6.8069191188883975e+00 0 0 0 +81 0 1 0.0000000000000000e+00 2.9048583505047120e+01 2.0287009603609295e+01 8.0212235819137465e+00 0 -1 -1 +927 0 1 0.0000000000000000e+00 8.8194762268831994e-01 1.7284637861862901e+01 3.0533260884447905e+01 1 0 -1 +776 0 1 0.0000000000000000e+00 5.0444056335059582e+00 2.7708758257301188e+01 5.3486880998556341e-01 0 0 0 +74 0 1 0.0000000000000000e+00 1.4746234331782466e+01 1.8636091266692137e+01 3.3414121310267677e+00 0 0 0 +994 0 1 0.0000000000000000e+00 4.3706627556149531e+00 1.4912175440707953e+00 1.3003455755139159e+01 0 1 0 +263 0 1 0.0000000000000000e+00 1.7127037933060322e+01 2.6118176078812120e+01 4.0916408981673564e+00 1 0 1 +959 0 1 0.0000000000000000e+00 4.0549302270404679e+00 1.9995962973621872e+01 7.8161856937699561e+00 1 0 1 +1007 0 1 0.0000000000000000e+00 2.2985929894161099e+01 2.2886666100090448e+01 9.1397216918830786e+00 0 0 0 +302 0 1 0.0000000000000000e+00 1.5007455161383124e+01 3.0133524126797113e+01 1.8170349155425921e+01 1 -1 0 +646 0 1 0.0000000000000000e+00 4.8480960076661876e+00 3.0589210984168858e+01 6.4412406666458635e+00 0 0 0 +892 0 1 0.0000000000000000e+00 1.9993200086891378e+01 3.1824727245170969e+01 3.5888436668349821e+00 0 0 1 +553 0 1 0.0000000000000000e+00 2.3220612353968388e+01 2.5915204125825692e+01 1.9826929682329840e+01 0 0 0 +933 0 1 0.0000000000000000e+00 3.8094586545495690e+00 3.3035790137188627e+01 1.4482847094976856e+01 1 0 1 +596 0 1 0.0000000000000000e+00 2.2696892230429984e+01 3.2313197567619717e+01 1.1733173812387450e+01 1 0 1 +159 0 1 0.0000000000000000e+00 2.4015945474469092e+01 1.8012905190801014e+00 9.2056396160945901e+00 0 1 0 +920 0 1 0.0000000000000000e+00 1.3463031594802205e+01 3.1398080471313037e+01 1.4957742679457715e+01 1 0 0 +433 0 1 0.0000000000000000e+00 1.8449731455561725e+01 1.8288311684249990e+01 3.2134563917653111e+01 0 -1 -1 +1490 0 1 0.0000000000000000e+00 2.9113458350465383e+01 1.0410973604128968e+01 3.0252983569695349e+01 0 0 0 +221 0 1 0.0000000000000000e+00 1.4831108044758002e+01 3.0301324235260065e+01 2.8283844433278748e+01 0 -1 -1 +417 0 1 0.0000000000000000e+00 1.7029719155834080e+01 2.6432717939446484e+01 1.2337002688833904e+01 0 0 1 +133 0 1 0.0000000000000000e+00 2.6722060168530639e+01 1.5487861626990448e+01 2.9698352419934128e+01 0 0 -1 +693 0 1 0.0000000000000000e+00 1.5327668285071796e+01 3.0653340500960862e+01 8.2978926751681037e+00 0 0 1 +678 0 1 0.0000000000000000e+00 2.5731347141993613e+01 3.3950795026677469e+01 1.2127274043471143e+00 0 0 0 +394 0 1 0.0000000000000000e+00 2.7394966919741442e+01 1.8546716087357471e+01 1.8269014988260444e+01 -1 0 0 +917 0 1 0.0000000000000000e+00 1.0351262275439608e+00 2.3773125784882435e+01 1.8385551694058215e+01 0 0 0 +846 0 1 0.0000000000000000e+00 2.2887298960281921e+01 2.5989996141036553e+01 1.1498413764353407e+01 -1 0 1 +146 0 1 0.0000000000000000e+00 1.1540734189302182e+01 1.8067195136900442e+00 1.4004061563144653e+01 1 0 -1 +23 0 1 0.0000000000000000e+00 1.8607113589176702e+01 2.8419319758680775e+01 7.1977990889791084e+00 0 -1 0 +41 0 1 0.0000000000000000e+00 7.9510761600759883e-01 1.5443268665826475e+01 8.0381021334789065e+00 0 0 -1 +866 0 1 0.0000000000000000e+00 1.4002906836250535e+01 2.7439289251121124e+01 2.8719047242200642e+00 0 0 0 +498 0 1 0.0000000000000000e+00 6.4743691954429998e+00 2.0996191231463566e+01 1.0740246478737923e+01 0 -1 0 +101 0 1 0.0000000000000000e+00 1.7199593356883494e+01 2.1187871357933826e+01 5.3064462677960567e+00 -1 0 0 +540 0 1 0.0000000000000000e+00 2.3404826187747940e+01 1.9363543449342043e+01 8.1054420459473828e+00 -1 0 -1 +887 0 1 0.0000000000000000e+00 1.1765059216583468e+01 2.9686795936179962e+01 7.9935820953119929e+00 0 0 0 +792 0 1 0.0000000000000000e+00 1.7667539658197808e+00 2.6009268518991178e+01 7.0478801630033452e+00 0 0 0 +753 0 1 0.0000000000000000e+00 2.4970858297815440e+01 3.0619812221307111e+01 6.3514081564025258e+00 -1 0 0 +320 0 1 0.0000000000000000e+00 1.8987700122420001e+01 3.0930753637367559e+01 1.2717878786792035e+01 0 -1 0 +530 0 1 0.0000000000000000e+00 1.9378734046266273e+00 1.8972453123431546e+01 2.2753767609550462e+00 0 1 0 +353 0 1 0.0000000000000000e+00 1.6343839799534468e+01 2.4588035907393181e+01 1.5416122004715048e+01 0 -1 0 +92 0 1 0.0000000000000000e+00 1.4869950326064476e+01 1.6251512653959082e+01 1.0739860658686307e+01 0 0 0 +547 0 1 0.0000000000000000e+00 1.0794165103647575e+01 2.8481245420673666e+01 1.4831038857328327e+01 0 0 0 +335 0 1 0.0000000000000000e+00 2.9098604464857747e+00 2.5663413651089584e+01 1.2456709975872187e+01 1 -1 0 +570 0 1 0.0000000000000000e+00 3.6531599059087330e+00 1.7696973045780020e+01 1.6321251665678904e+01 0 0 -1 +3542 0 1 0.0000000000000000e+00 2.3674273030047912e+00 2.6916419731467570e+01 2.3977268927003006e+01 2 0 1 +419 0 1 0.0000000000000000e+00 5.9458491905971735e+00 2.3727877097629971e+01 1.2377276807802728e+01 0 0 0 +93 0 1 0.0000000000000000e+00 1.0259486784935614e+00 8.8016652633190606e+00 6.1392076257377104e+00 0 0 0 +871 0 1 0.0000000000000000e+00 9.3732444702429696e+00 1.8692264390906669e+01 8.0526740850689815e-01 0 1 1 +581 0 1 0.0000000000000000e+00 2.2894714336336349e+01 3.3930422586608685e+01 4.1501088976189671e+00 0 0 1 +149 0 1 0.0000000000000000e+00 1.0530790033232300e+01 2.9661023357673859e+01 2.7099694830183561e+00 -1 -1 0 +586 0 1 0.0000000000000000e+00 8.9135698527351845e+00 1.8738668373581763e+01 1.2066095031731953e+01 0 0 0 +573 0 1 0.0000000000000000e+00 6.7508510878211583e+00 2.1133644111991579e+01 6.1990685447125120e+00 0 0 0 +971 0 1 0.0000000000000000e+00 1.2349359986598971e+01 3.3510092137326730e+01 1.1296880495861554e+01 0 0 1 +777 0 1 0.0000000000000000e+00 1.4708934674038712e+01 8.4034982877917042e+00 2.9322020674796040e+01 0 1 0 +937 0 1 0.0000000000000000e+00 9.0062754797685223e+00 3.3833333791881572e+01 2.3095852623774892e+01 0 0 0 +983 0 1 0.0000000000000000e+00 1.1794418609528408e+01 2.3981673402518165e+01 2.5851036878225999e+00 0 0 1 +491 0 1 0.0000000000000000e+00 2.3482992304484882e+00 3.3414433324423861e+01 2.9976340984186109e+01 0 0 0 +768 0 1 0.0000000000000000e+00 1.4120801107745043e+01 2.1883486038748683e+00 1.6894097952281296e+01 0 1 0 +141 0 1 0.0000000000000000e+00 1.9223245839289689e+01 1.5088613647021459e+01 3.2891659161713598e+01 0 0 0 +828 0 1 0.0000000000000000e+00 1.5764380803344347e+01 3.0396606677681589e+01 3.2368003842452644e+01 1 0 -1 +401 0 1 0.0000000000000000e+00 1.5912825472459811e+01 5.4512292735273968e+00 1.7941586164135277e+01 0 0 0 +243 0 1 0.0000000000000000e+00 2.4232154933832813e+01 2.7798285352520043e+01 3.1148417662389402e+01 0 0 0 +46 0 1 0.0000000000000000e+00 7.3929055053114210e+00 1.8823268572371273e+01 3.2716757142654188e+01 0 0 0 +691 0 1 0.0000000000000000e+00 1.4499901362117226e+01 1.6451756522729355e+01 2.0143365224006910e+01 0 0 0 +838 0 1 0.0000000000000000e+00 3.8217060178186828e+00 3.0245476463996340e+01 1.0404114618106714e+01 0 0 0 +914 0 1 0.0000000000000000e+00 1.2793010394789684e+01 3.3277832029581869e+00 8.9291429788871057e-01 1 0 1 +3954 0 1 0.0000000000000000e+00 4.7249132909428679e+00 3.0848727169429266e+00 6.8734232285465948e+00 1 1 0 +220 0 1 0.0000000000000000e+00 4.3344976867997946e+00 1.1465161975473762e+01 2.9486819140410965e+01 1 0 0 +779 0 1 0.0000000000000000e+00 2.2386081049376941e+01 1.8724647069111364e-01 2.6555064910226633e+01 -1 1 0 +187 0 1 0.0000000000000000e+00 2.2999111401884694e+01 2.4830677852961333e+01 2.3196215757211558e+01 0 -1 -1 +346 0 1 0.0000000000000000e+00 1.0212723393597450e+01 2.8219657645691345e+01 2.1200060576107905e+01 0 -1 0 +253 0 1 0.0000000000000000e+00 2.7794818594092924e+01 2.1451196997499263e+01 2.5622809829612091e+01 1 -1 0 +616 0 1 0.0000000000000000e+00 9.4917462603827403e+00 3.2261442282809263e+01 3.3893715386594501e+01 0 0 -1 +579 0 1 0.0000000000000000e+00 3.1299535919331398e+00 1.4638287283263390e+01 2.9196189503836063e+01 1 0 0 +134 0 1 0.0000000000000000e+00 7.9866795441952751e+00 6.8865807708667015e-01 1.9601733742001556e+01 0 0 0 +1395 0 1 0.0000000000000000e+00 3.3391700896065764e+01 1.8772624447137286e+01 1.9305474618130727e+01 0 0 0 +382 0 1 0.0000000000000000e+00 1.0774993382523999e+01 1.4953858626837601e+01 2.7825455486344165e+01 1 -1 0 +371 0 1 0.0000000000000000e+00 2.8592710340451241e+01 3.1427791763936213e+01 2.7233273387524214e+01 0 -1 0 +334 0 1 0.0000000000000000e+00 1.9696694325606131e+01 3.7224055242535843e+00 2.1864318869323693e+01 0 0 0 +508 0 1 0.0000000000000000e+00 2.1317410636644091e+01 2.5589778700553364e+01 3.3130011871276629e+01 0 0 -1 +774 0 1 0.0000000000000000e+00 6.3642383249828720e+00 2.4700710680948621e+01 2.8784259906625639e+01 0 0 0 +1009 0 1 0.0000000000000000e+00 1.2417243676423627e+01 2.9433078975379956e+01 1.7974993678508472e-01 0 0 1 +523 0 1 0.0000000000000000e+00 7.2357660892890729e+00 2.7013178492214280e+01 1.7196632958622210e+01 0 0 0 +782 0 1 0.0000000000000000e+00 2.0364121157595115e+01 8.8032118586250494e+00 1.4162514144917012e+01 0 0 0 +153 0 1 0.0000000000000000e+00 4.0274212697517147e+00 4.9126966747333300e+00 2.9558674308182010e+01 0 0 0 +366 0 1 0.0000000000000000e+00 3.2130205109803441e+01 3.2765136482613407e+01 1.4589182422476203e+01 -1 0 0 +799 0 1 0.0000000000000000e+00 5.8344579884377596e+00 2.4630372809943655e+01 1.7838669728726475e+00 0 0 1 +572 0 1 0.0000000000000000e+00 2.0094780144924126e+01 2.4276174675517218e+01 4.4266653726643623e+00 0 -1 1 +375 0 1 0.0000000000000000e+00 1.7879359406134952e+01 2.8088497281302272e-01 2.2187020382358924e+01 -1 0 0 +337 0 1 0.0000000000000000e+00 1.7183894851342387e+01 2.7257258652817399e+01 2.7784757662306589e+01 0 -1 -1 +603 0 1 0.0000000000000000e+00 3.1651241775814057e+01 2.6386194358635553e+01 2.6540122057610745e+01 0 0 0 +274 0 1 0.0000000000000000e+00 2.1559298537075431e+01 9.5210760027712080e+00 2.1434218833445986e+01 0 0 0 +1023 0 1 0.0000000000000000e+00 1.7537132816582627e+01 2.1990088857071527e+01 2.4403112490380796e+01 0 0 0 +39 0 1 0.0000000000000000e+00 2.2201488850240107e+01 1.8532696136546164e+01 1.7419161554948722e+01 -1 -1 0 +781 0 1 0.0000000000000000e+00 1.5418453163969287e+01 2.6255642485342143e+01 2.2577242432512953e+01 0 0 0 +210 0 1 0.0000000000000000e+00 1.8282447152707057e+01 3.0831529156608742e+01 2.8423197330452503e+01 0 -1 0 +869 0 1 0.0000000000000000e+00 9.2647311253930642e+00 2.2541191638322957e+01 3.4174313419260443e+01 0 1 0 +589 0 1 0.0000000000000000e+00 1.9323581815803781e+01 1.1971124879840714e+01 3.3944849374952362e+01 0 0 0 +942 0 1 0.0000000000000000e+00 1.1556288842095684e+01 2.5617486203123921e+01 3.3515000404944374e+01 1 0 0 +580 0 1 0.0000000000000000e+00 1.4026362976580797e+01 5.3523268382951992e+00 2.7198785158829452e+01 0 1 -1 +918 0 1 0.0000000000000000e+00 1.5855871324443449e+01 3.3166261873563187e+01 1.5274648529689687e+01 0 0 0 +510 0 1 0.0000000000000000e+00 1.4341292756716669e+01 2.2616050285181775e+01 1.7812919842109906e+01 0 0 -1 +242 0 1 0.0000000000000000e+00 1.8817212814127842e+01 3.1861296792316075e+01 1.6373594659135826e+01 0 -1 0 +174 0 1 0.0000000000000000e+00 2.4239737281901029e+01 2.9041648151934037e+01 2.0313511081894191e+01 0 0 0 +794 0 1 0.0000000000000000e+00 1.9737783029698459e+01 1.1505895515440338e+01 1.8637529649455736e+01 0 1 1 +297 0 1 0.0000000000000000e+00 3.3353238433856106e+01 2.7725994766794457e+01 1.5800986087077402e+00 0 -1 0 +1013 0 1 0.0000000000000000e+00 1.5214638089823932e+01 1.4450367943426835e+01 2.9227745403141071e+01 1 0 0 +668 0 1 0.0000000000000000e+00 2.7436744293259341e+01 1.7846752123851143e+01 4.4516097477323138e+00 -1 1 0 +615 0 1 0.0000000000000000e+00 5.1098571493785521e+00 3.1739838260896530e+01 2.9740527161770679e+01 0 0 -1 +17 0 1 0.0000000000000000e+00 4.3552305516824621e+00 2.8896867895727308e+01 1.7457747911832300e+01 0 -1 -1 +872 0 1 0.0000000000000000e+00 1.8992092759604610e+01 2.4736863005154099e+01 2.2234295161041029e+01 0 1 0 +1024 0 1 0.0000000000000000e+00 1.2075924350343527e+01 2.5796012008921970e+01 1.6995986759955713e+01 0 0 0 +1218 0 1 0.0000000000000000e+00 3.0538801409414642e+01 2.9992919403855765e+01 1.2416189117638513e+01 0 -1 0 +363 0 1 0.0000000000000000e+00 1.9644145079320123e+00 1.7447253277799697e+00 2.7782228683279182e+01 0 1 0 +896 0 1 0.0000000000000000e+00 2.8147834488949037e+01 1.7613342352736790e+01 1.3670361045737245e+00 0 0 1 +938 0 1 0.0000000000000000e+00 1.3250247165405913e+01 2.2272643024947996e+01 3.3581882379455408e+01 0 0 0 +368 0 1 0.0000000000000000e+00 1.9087918396242735e+01 9.9949410955685281e+00 3.0602472689859127e+01 0 0 0 +565 0 1 0.0000000000000000e+00 6.8700928849759615e+00 2.8479868521352643e+01 2.0607714613949558e+01 1 0 -1 +66 0 1 0.0000000000000000e+00 5.9813536896834920e+00 3.0817079443469861e+01 3.2715211747048855e+01 1 0 -1 +189 0 1 0.0000000000000000e+00 1.5457280095888353e+00 2.7623808295798355e+01 7.9687018949174637e-01 0 0 0 +483 0 1 0.0000000000000000e+00 1.2357512327840801e+01 1.0593033963755175e+01 1.2019973688144818e+00 0 0 0 +296 0 1 0.0000000000000000e+00 2.0410236337947676e+01 1.9819245946572288e+01 1.4208863362127508e+01 0 -1 0 +271 0 1 0.0000000000000000e+00 1.7654144861555077e+00 3.2068138161085123e+01 8.2906087963061559e+00 0 -1 0 +534 0 1 0.0000000000000000e+00 1.8459712637862342e+01 5.7133148289442195e+00 1.5981679887993902e+01 0 0 0 +745 0 1 0.0000000000000000e+00 2.6480221164077321e+01 6.4486246445773281e+00 2.7907631029360761e+01 0 1 0 +430 0 1 0.0000000000000000e+00 1.4741585917670063e+01 2.7491529397668003e+01 1.5400859756368861e+01 0 -1 0 +787 0 1 0.0000000000000000e+00 1.3411754375253508e+01 2.8225105492043738e+01 2.0352325338032063e+01 0 0 1 +645 0 1 0.0000000000000000e+00 1.7661209301584730e+01 1.5961675384833404e+01 2.2541236702866357e+01 1 0 0 +744 0 1 0.0000000000000000e+00 2.0308041733938683e+01 2.9994169013988124e+01 3.1547184454989377e+01 0 0 0 +633 0 1 0.0000000000000000e+00 2.7059346154535277e+01 3.3719827599647942e+01 1.7471266313204715e+01 0 0 0 +352 0 1 0.0000000000000000e+00 6.9890501144314152e+00 2.2624090070364144e+01 2.1517238992701106e+01 1 -1 0 +904 0 1 0.0000000000000000e+00 7.4113454286306224e+00 2.4877574450079727e+01 3.2672625641695575e+01 1 0 0 +649 0 1 0.0000000000000000e+00 4.9019922487844818e+00 2.6042813118880208e+01 2.1890510403081429e+01 1 1 0 +619 0 1 0.0000000000000000e+00 1.9427998962667200e+01 1.8948160155556629e+01 2.4033392882524929e+01 0 0 -1 +997 0 1 0.0000000000000000e+00 1.3514144931905808e+01 2.3162880829094359e+01 2.3459423955636947e+01 0 0 -1 +429 0 1 0.0000000000000000e+00 1.8765694057903325e+01 1.8956512849921374e+01 2.7247256717571425e+01 0 0 0 +965 0 1 0.0000000000000000e+00 1.8350144710793447e+01 3.3417860929603897e+01 3.1301339979325142e+01 0 0 0 +299 0 1 0.0000000000000000e+00 4.0115567289266751e+00 3.2068851845577512e+01 1.7361061287301382e+01 1 0 -1 +960 0 1 0.0000000000000000e+00 1.4740485811661449e+01 2.0925579073442499e+01 1.4671174817416555e+01 0 0 0 +963 0 1 0.0000000000000000e+00 1.9970710675978854e+01 2.5346294266913446e+01 1.8844219510361977e+01 1 0 0 +196 0 1 0.0000000000000000e+00 9.2746205036812484e+00 1.8093043968029068e+01 2.5825311048502790e+01 0 0 0 +270 0 1 0.0000000000000000e+00 1.5629283008561899e+01 2.3630523929036904e+01 2.8833347393726278e+01 0 0 0 +560 0 1 0.0000000000000000e+00 1.8776770293676659e+01 1.7059121539393495e+01 1.9174380556340811e+01 0 1 0 +612 0 1 0.0000000000000000e+00 5.3400787557913141e+00 3.4159274071866953e+01 3.3071144742331015e+01 0 0 -1 +1006 0 1 0.0000000000000000e+00 6.8423736038853349e+00 1.0985741587581073e+01 2.6802581346809951e+01 0 0 0 +1012 0 1 0.0000000000000000e+00 1.9949696839110853e+01 3.1944844119792240e+01 1.9729637896085844e+01 0 0 0 +800 0 1 0.0000000000000000e+00 3.5531278941387172e+00 2.9414984678164760e+01 2.1322707497887684e+01 0 0 0 +257 0 1 0.0000000000000000e+00 2.2057299885234297e+01 8.1054749133412862e+00 2.8402487709988275e+01 -1 0 -1 +182 0 1 0.0000000000000000e+00 4.4265867936800243e+00 2.1938143761420168e+01 1.5420782831062136e+01 0 -1 0 +458 0 1 0.0000000000000000e+00 6.1848914495976608e+00 1.5874668036729529e+00 2.2645753141545161e+01 0 0 0 +390 0 1 0.0000000000000000e+00 2.8724116665399201e+01 2.4349463088740002e+00 2.2682347898919677e+01 -1 0 0 +551 0 1 0.0000000000000000e+00 2.8851736670608258e+01 4.3367644556993490e+00 1.4639732886776072e+01 0 1 0 +537 0 1 0.0000000000000000e+00 7.2755922260871584e+00 3.0430081146202070e+01 2.7020176589210337e+01 0 0 -1 +600 0 1 0.0000000000000000e+00 9.8972703179380499e+00 8.6899761715984116e+00 2.9544979703440550e+01 0 0 0 +191 0 1 0.0000000000000000e+00 1.7729001317770688e+01 2.4293891664229976e+00 3.0590879907308921e+01 0 0 0 +674 0 1 0.0000000000000000e+00 1.6284554415038631e+01 2.4049446136325717e+01 3.1911927564132654e+01 0 0 0 +416 0 1 0.0000000000000000e+00 1.9831939949296125e+01 2.5464713228901697e+01 2.6137273926560542e+01 0 0 -1 +949 0 1 0.0000000000000000e+00 1.2725815232229140e+01 2.3129482689365869e+01 2.6877158756238948e+01 0 0 0 +336 0 1 0.0000000000000000e+00 2.6252105846322005e+00 2.7806701106998450e+01 2.9297248116848763e+01 0 0 0 +881 0 1 0.0000000000000000e+00 1.7018882941457726e+01 3.0451756137106130e+01 2.1368270489682015e+01 0 0 0 +95 0 1 0.0000000000000000e+00 2.4206404998350063e+01 2.7530362501584648e+01 2.4049854813797108e+01 -1 -1 -1 +381 0 1 0.0000000000000000e+00 2.0446186404736583e+01 4.5639050353638275e+00 3.6132875312744478e-01 0 0 1 +239 0 1 0.0000000000000000e+00 1.5684465517262124e+01 1.8845963571439199e+01 2.3128217107843877e+01 1 -1 -1 +84 0 1 0.0000000000000000e+00 9.3666301048662373e+00 2.3925879665104045e+01 2.6890744181985056e+01 0 0 -1 +813 0 1 0.0000000000000000e+00 6.0909061178370161e-01 1.3104652756022816e+01 2.0851235987621383e+01 0 1 0 +305 0 1 0.0000000000000000e+00 7.1930645541914897e+00 3.0470473617287190e+01 1.3888760766566792e+00 0 -1 1 +324 0 1 0.0000000000000000e+00 1.5691352694487929e+01 2.9782876179468108e+01 1.1116311988613323e+00 0 -1 1 +277 0 1 0.0000000000000000e+00 1.8782950756478176e+01 2.7802150457874703e+01 1.6086155269619816e+01 0 -1 0 +1000 0 1 0.0000000000000000e+00 5.6503961268506000e+00 2.8841050604188407e+01 2.4472606913515008e+01 0 0 0 +259 0 1 0.0000000000000000e+00 3.2175609067148741e+01 1.9083413438737832e+01 1.1896178968149997e+01 0 0 0 +38 0 1 0.0000000000000000e+00 9.2616306376349389e+00 1.4938825654155803e+01 3.3178908632039288e+01 0 0 -1 +380 0 1 0.0000000000000000e+00 2.4436056965137137e+01 1.9850710988540563e+01 1.5877506316566082e+01 0 -1 0 +124 0 1 0.0000000000000000e+00 1.9174532359457825e+01 1.8485664039433081e+00 2.5518224450049875e+01 0 1 0 +977 0 1 0.0000000000000000e+00 1.0139072607454786e+01 2.1629214107199878e+01 1.8631440221564056e+01 0 1 1 +919 0 1 0.0000000000000000e+00 2.1196962912961020e+01 2.8881458294113095e+01 2.5282378104327183e+01 0 0 1 +758 0 1 0.0000000000000000e+00 2.2081797117362552e+01 1.3974843092948094e+01 3.0955358620649402e+01 0 0 0 +351 0 1 0.0000000000000000e+00 1.9990401062309587e+01 3.4388626953011538e+01 2.8677728018045940e+01 0 -1 0 +467 0 1 0.0000000000000000e+00 1.9733773120071362e+01 5.8308753443188408e+00 3.0448399589105726e+01 0 0 0 +311 0 1 0.0000000000000000e+00 9.6908127436052069e+00 2.2342191380119544e+01 1.1627142129297599e+01 0 0 0 +201 0 1 0.0000000000000000e+00 1.1695277403329699e+01 2.2380905650249286e+01 1.4903660838706877e+01 1 -1 0 +536 0 1 0.0000000000000000e+00 2.7271685898144270e+01 2.1126278027267716e+01 3.2689232009500095e+01 0 0 -1 +682 0 1 0.0000000000000000e+00 2.3137708067488717e+01 2.6147208353393427e+01 2.6550576387839541e+01 0 0 0 +862 0 1 0.0000000000000000e+00 1.4677900976895948e+01 2.7059547422217513e+01 3.2105989464357457e+01 0 0 0 +150 0 1 0.0000000000000000e+00 1.1760759422085345e+01 2.6421083649769528e+01 2.4329914156499672e+01 0 0 -2 +436 0 1 0.0000000000000000e+00 1.4432122893087960e+00 1.2314676094101511e+01 2.7513395854320457e+01 1 0 0 +192 0 1 0.0000000000000000e+00 5.2009296432385641e+00 1.6538468330693394e+01 1.6033223243946407e-01 1 0 0 +648 0 1 0.0000000000000000e+00 1.0762945921370120e+01 3.3563068659952314e+01 1.7310581666628067e+01 1 0 0 +198 0 1 0.0000000000000000e+00 1.9013987448043248e+00 3.3403500389009686e+01 3.3827902462110231e+01 1 0 -1 +841 0 1 0.0000000000000000e+00 2.3385517705689765e+01 3.1851630029406433e+01 1.8771589046783504e+01 -1 0 0 +470 0 1 0.0000000000000000e+00 2.9300564373429069e+01 2.0836551373684237e+01 2.2730308438775545e+01 1 0 1 +905 0 1 0.0000000000000000e+00 2.0745147371748303e+01 2.7984865129675931e+01 2.8695481786072836e+01 0 0 0 +956 0 1 0.0000000000000000e+00 1.6786516150066092e+01 1.6956395299036476e+01 2.5879411658702168e+01 0 0 0 +15 0 1 0.0000000000000000e+00 8.0971920410364824e+00 2.6964659185281025e+01 2.6457316870832376e+01 0 -1 -1 +924 0 1 0.0000000000000000e+00 1.2940114925142472e+01 1.7130269225517171e+01 3.0162394233982834e+01 0 0 -1 +622 0 1 0.0000000000000000e+00 1.7957584724445812e+01 2.7569144066388382e+01 2.0114893359156188e+01 0 0 0 +413 0 1 0.0000000000000000e+00 2.7392711463946902e+01 2.9072909077181613e+01 3.0487610030071117e+01 -1 -1 0 +504 0 1 0.0000000000000000e+00 1.5769207893781349e+01 1.0816055362702230e+00 2.4301459968310184e+01 0 0 0 +685 0 1 0.0000000000000000e+00 1.4484587815663602e+01 3.3102648838908443e+01 2.2039069106766210e+01 0 0 -1 +643 0 1 0.0000000000000000e+00 2.5161513773810945e+01 1.3846754706561084e+01 2.6830733560311462e+01 0 0 0 +331 0 1 0.0000000000000000e+00 8.6876231819150611e+00 3.0431035334452162e+01 2.3697088015741528e+01 0 0 0 +1002 0 1 0.0000000000000000e+00 3.1330446094768515e+01 2.6353745996725422e+01 1.1870402722781344e+01 0 0 0 +788 0 1 0.0000000000000000e+00 1.9107365014524863e+01 2.4552182142717346e+01 2.9990974827172440e+01 -1 0 0 +499 0 1 0.0000000000000000e+00 1.7434336033641120e+01 1.3889086103503248e+01 2.5810622627206417e+01 0 0 0 +667 0 1 0.0000000000000000e+00 2.1040053701380856e+01 2.8780769362451519e+01 1.8499235039091349e+01 0 0 0 +303 0 1 0.0000000000000000e+00 3.0885474235437623e+01 2.0977181388782594e+01 1.8735060369083243e+01 -1 0 0 +931 0 1 0.0000000000000000e+00 2.6531788447732016e+01 2.5135651315032677e+00 1.9761404878637897e+01 0 1 1 +684 0 1 0.0000000000000000e+00 1.1989511072275411e+01 2.3913585880653144e+01 3.0344194228570458e+01 1 0 -1 +486 0 1 0.0000000000000000e+00 2.0902575324076533e+01 2.7869566073000545e+01 2.1852652990940332e+01 0 0 0 +657 0 1 0.0000000000000000e+00 2.1570000194836322e+01 3.1231788673554952e+01 2.2207032582958970e+01 0 0 0 +1019 0 1 0.0000000000000000e+00 2.1659737019406293e+01 1.1073485580169323e-01 2.2508887753308603e+01 0 1 0 +713 0 1 0.0000000000000000e+00 7.5148542006767780e+00 2.8252813901970370e+01 1.3871212826606719e+01 1 0 0 +980 0 1 0.0000000000000000e+00 5.3925894416031754e+00 3.2366147957368327e+01 2.3838028435044830e+01 0 0 0 +666 0 1 0.0000000000000000e+00 8.9272905098715345e+00 2.5253976643025609e+01 1.9423443303504254e+01 0 0 -1 +975 0 1 0.0000000000000000e+00 2.3616351424571100e+01 2.3471491663330006e+01 1.7266208771012771e+01 0 0 0 +34 0 1 0.0000000000000000e+00 3.2875519717864123e+01 5.3130353116646463e+00 1.7487046948695026e+00 0 0 0 +129 0 1 0.0000000000000000e+00 1.8035389204513105e+01 2.8208350386317676e+01 2.4252989278473276e+01 0 -1 0 +801 0 1 0.0000000000000000e+00 1.1313410246283370e+01 1.3138760635105124e+00 2.4952202219300180e+01 0 2 0 +440 0 1 0.0000000000000000e+00 1.7543173677214085e+01 3.0193892818660924e+01 4.0496138978811675e+00 1 -1 1 +451 0 1 0.0000000000000000e+00 2.0298427640954806e+01 2.7576499285174719e+01 1.2894427633154850e+01 0 -1 0 +1016 0 1 0.0000000000000000e+00 1.0049932642985381e+01 2.6526954319176074e+01 2.9772417307539328e+01 0 0 0 +466 0 1 0.0000000000000000e+00 2.4731447660547524e+01 2.7684358018483714e+01 2.3151214438031384e-01 -1 -1 1 +1267 0 1 0.0000000000000000e+00 3.2617279632687797e+01 9.6823392995877313e+00 1.0971325381236420e+01 0 0 0 +275 0 1 0.0000000000000000e+00 7.0377795729132950e+00 1.2368092094644744e+01 1.9445373717160990e+01 0 0 0 +990 0 1 0.0000000000000000e+00 2.9503047817228552e+01 3.3222017139682293e+01 1.1771558199562902e+01 -1 0 0 +765 0 1 0.0000000000000000e+00 4.3153715463959301e+00 2.1791660702668754e+01 3.1067192623047738e+01 0 0 -1 +367 0 1 0.0000000000000000e+00 2.2687196388183725e+01 3.6303420836213869e+00 2.4676139618079844e+01 0 -1 0 +216 0 1 0.0000000000000000e+00 5.3073370269251132e+00 2.1654624467783407e+01 2.7756151503932120e+01 0 0 0 +184 0 1 0.0000000000000000e+00 2.2181962043149433e+01 2.4004682840185687e+01 2.9475418929911356e+01 0 -1 0 +695 0 1 0.0000000000000000e+00 4.5917849690040820e+00 1.8287283070942291e+01 2.9930515378004834e+01 0 0 -1 +946 0 1 0.0000000000000000e+00 4.4835178798330455e+00 1.8007181564863526e+01 2.6446067512442081e+01 0 0 0 +874 0 1 0.0000000000000000e+00 1.5788949175089453e+01 1.1665499175575597e+01 3.1735584690138911e+01 0 1 0 +527 0 1 0.0000000000000000e+00 9.7720595778316355e+00 3.2708114418439585e+01 2.7243818168766868e+01 1 0 -1 +284 0 1 0.0000000000000000e+00 1.2110171235215399e+01 1.9717548966648085e+01 1.2480245421590029e+01 0 0 0 +512 0 1 0.0000000000000000e+00 9.2810865092959620e+00 3.1566633387536747e+01 2.0126815117126959e+01 0 -1 -1 +541 0 1 0.0000000000000000e+00 8.8886934142779932e+00 4.2214073240774974e+00 1.3646107305165367e+00 0 1 0 +803 0 1 0.0000000000000000e+00 1.2481930051294626e+01 2.0615762438102983e+01 1.7726561499472493e+00 0 0 0 +427 0 1 0.0000000000000000e+00 7.9284796636694050e+00 2.1461895084997643e+01 1.4308548970900908e+01 0 0 0 +1021 0 1 0.0000000000000000e+00 4.9657103892316119e+00 1.0796015388039843e+01 1.7484880601677204e+01 0 0 0 +521 0 1 0.0000000000000000e+00 1.7779097897883002e+01 2.7416062956693217e+01 3.1468365161384906e+01 0 0 0 +389 0 1 0.0000000000000000e+00 6.6343858655919172e+00 2.7431899576933269e+01 4.0752509928723128e+00 0 0 1 +1428 0 1 0.0000000000000000e+00 3.0128368585399990e+01 1.1045764454294998e+01 2.4950822607512858e+01 0 0 0 +663 0 1 0.0000000000000000e+00 2.6877656507580479e+01 2.4859562264076043e+01 2.5339108998126921e+01 0 0 0 +755 0 1 0.0000000000000000e+00 1.6397184178994699e+01 1.7813288215186258e+01 2.9314392484179127e+01 0 0 0 +37 0 1 0.0000000000000000e+00 1.6828182918378015e+01 2.6196084765992951e+00 6.5666302771288612e+00 0 1 0 +899 0 1 0.0000000000000000e+00 3.2776242945375216e+01 2.1072094773972001e+00 4.1895447234217489e+00 -1 0 0 +762 0 1 0.0000000000000000e+00 1.1004913723426766e+01 2.0199878208575331e+01 2.8319339409056468e+01 0 0 0 +138 0 1 0.0000000000000000e+00 3.0979996379742932e+01 2.9900373728212042e+01 8.9730033784319598e+00 0 -1 -1 +102 0 1 0.0000000000000000e+00 1.4401734312000796e+01 2.8675893386529850e+01 2.5125159291240127e+01 0 -1 -1 +576 0 1 0.0000000000000000e+00 1.3022697308114216e+01 3.2466740912360692e+01 2.6511744623271348e+01 0 0 0 +808 0 1 0.0000000000000000e+00 9.8292066914262133e+00 1.6287253406829694e+00 2.8464901134556573e+01 0 1 0 +518 0 1 0.0000000000000000e+00 1.4393756799242881e+01 2.7928350533176406e+01 6.7792737049924785e+00 0 0 0 +24 0 1 0.0000000000000000e+00 1.6001205489111086e+01 2.5030611380859792e+01 2.5325690863900594e+01 0 0 -1 +3130 0 1 0.0000000000000000e+00 2.1276759769472670e-01 2.4698903760176847e+01 2.1474405764054744e+01 0 0 0 +900 0 1 0.0000000000000000e+00 2.1037144890390536e+01 2.9040706675541625e+01 6.9003519914786193e-01 0 1 1 +54 0 1 0.0000000000000000e+00 1.3331271007615516e+01 2.6570291816478914e+01 2.8640022406890434e+01 1 0 -1 +593 0 1 0.0000000000000000e+00 1.2078415797349896e+01 8.8844647929693643e+00 3.2130807156733411e+01 0 1 -1 +505 0 1 0.0000000000000000e+00 1.5927009900414545e+01 2.2323258477043126e+01 2.1377553961918323e+01 0 -1 0 +155 0 1 0.0000000000000000e+00 1.5048311078275644e+01 2.0421743744312664e+01 2.6945404703906338e+01 0 -1 -1 +611 0 1 0.0000000000000000e+00 2.5259729021236677e+01 1.2162158474424679e+01 3.0171844439106454e+01 0 1 -1 +128 0 1 0.0000000000000000e+00 1.6399321489022142e+01 1.2097068031074024e+01 2.2777408915367513e+01 0 0 0 +262 0 1 0.0000000000000000e+00 1.1027211632896151e+01 2.9789832742945652e+01 1.7535222056193739e+01 1 -1 0 +163 0 1 0.0000000000000000e+00 3.1442409050308601e+01 1.8058590427859468e+01 6.2970766028567553e+00 -1 0 0 +26 0 1 0.0000000000000000e+00 6.6359244658301169e+00 3.4380037717257373e+01 2.6901027572884370e+01 0 0 -1 +783 0 1 0.0000000000000000e+00 1.0493141917495860e+01 7.9899139399920864e+00 1.9659765706439099e+01 0 0 0 +923 0 1 0.0000000000000000e+00 2.1673977236089463e+00 1.9661513457331335e+01 1.3493617718379973e+01 0 0 0 +652 0 1 0.0000000000000000e+00 2.4992472396766939e+01 1.5754228933075318e+01 2.0892288274342885e+00 0 0 1 +91 0 1 0.0000000000000000e+00 4.1026179480628162e+00 1.3369935143127091e+01 2.1728181148015221e+01 1 0 0 +569 0 1 0.0000000000000000e+00 8.7830623708056788e+00 1.9411703375123246e+01 2.1637691027703887e+01 1 0 0 +568 0 1 0.0000000000000000e+00 7.5575748661092597e+00 8.6934787253493386e+00 3.3514514994367183e+01 0 1 -1 +448 0 1 0.0000000000000000e+00 8.8019982036548949e+00 2.2137210541143983e+01 3.0127793755412402e+01 0 0 0 +915 0 1 0.0000000000000000e+00 1.0794100895741472e+01 2.1536595660345945e+00 3.2037965431652879e+01 0 0 0 +1014 0 1 0.0000000000000000e+00 2.4905921721965289e+01 3.2378666245179907e+01 1.4536725644364500e+01 -1 0 0 +28 0 1 0.0000000000000000e+00 1.8009416934668987e+01 2.1213632427322441e+01 3.0735322672452327e+01 1 -1 -1 +718 0 1 0.0000000000000000e+00 6.4567999109573049e-01 2.1352286602486028e+01 3.1795286496831242e+01 1 0 -1 +348 0 1 0.0000000000000000e+00 1.2129420633777730e+01 2.5132000753683243e+01 2.0842976502357271e+01 0 0 0 +1001 0 1 0.0000000000000000e+00 1.6562868211393667e+01 3.4214946898392817e+01 2.7573693873458584e+01 0 -1 0 +330 0 1 0.0000000000000000e+00 1.3799212076929290e+01 1.4295339965675728e+01 2.2899341753185716e+01 0 0 0 +812 0 1 0.0000000000000000e+00 9.1811372705292342e+00 2.8317109941529814e+01 3.3490158311221798e+01 0 -1 -1 +594 0 1 0.0000000000000000e+00 7.0885543243883644e+00 2.0548647541145311e+01 2.4482512276090350e+01 0 0 -1 +746 0 1 0.0000000000000000e+00 2.3943118456899960e+01 2.2418206773117365e+01 2.6780597961021574e+01 0 0 -1 +10 0 1 0.0000000000000000e+00 2.4052226982834235e+01 2.0344199170477150e+01 2.3746164169833648e+01 -1 -1 0 +127 0 1 0.0000000000000000e+00 1.0378521612126399e+01 1.1642227153460061e+01 2.6307394789562391e+01 0 0 -1 +1491 0 1 0.0000000000000000e+00 3.2926729988213388e+01 3.2466503702966854e+01 2.8663277030705672e+01 0 -1 0 +545 0 1 0.0000000000000000e+00 2.1673533084591355e+01 2.2936144997246476e+01 2.0477112888873801e+01 0 0 0 +292 0 1 0.0000000000000000e+00 1.4980858610732184e+01 3.3777788286886050e+01 3.0312041258786930e+01 0 0 0 +55 0 1 0.0000000000000000e+00 2.1854648180321274e+01 3.3846620672849568e+01 3.2222718008341523e+01 0 -1 0 +506 0 1 0.0000000000000000e+00 1.6369886386802431e+01 3.1610554830832257e+01 2.4745547372505406e+01 -1 0 0 +185 0 1 0.0000000000000000e+00 1.7490703388123446e+01 2.1939147625111768e+00 1.9022752407815396e+01 0 0 -1 +392 0 1 0.0000000000000000e+00 1.8103694666896811e+01 7.6054114631243213e+00 2.7419843722755409e+01 0 0 0 +908 0 1 0.0000000000000000e+00 1.5661942488598594e+01 2.5492871814774162e+01 6.9256304722067985e-01 0 0 1 +107 0 1 0.0000000000000000e+00 1.1160714428150069e+01 2.8842143111084056e+01 2.6721340864054305e+01 0 -1 0 +756 0 1 0.0000000000000000e+00 3.1027720303971119e+01 3.4057493464905903e+01 1.7846692441192886e+01 0 0 0 +784 0 1 0.0000000000000000e+00 1.9129766318670249e+01 2.0887633725849398e+01 2.0597429558432719e+01 0 0 0 +83 0 1 0.0000000000000000e+00 1.1445786551242302e+01 1.9924682210517553e+01 3.2316257971427653e+01 0 0 -1 +797 0 1 0.0000000000000000e+00 5.5760962506006049e+00 6.7601766974423123e+00 1.5779192214013322e+00 0 1 1 +909 0 1 0.0000000000000000e+00 7.0426338889255531e+00 1.9485008148895588e+01 1.8551163907883620e+01 0 0 0 +3787 0 1 0.0000000000000000e+00 8.2709193571376431e+00 2.5774212008623309e+01 2.3008216977835954e+01 1 0 0 +830 0 1 0.0000000000000000e+00 1.2959064542749193e+01 3.0752854376569662e+01 2.3310061244048303e+01 0 0 0 +176 0 1 0.0000000000000000e+00 1.2716091248276037e+01 8.5683487932111220e+00 2.6414544143968488e+01 0 0 0 +273 0 1 0.0000000000000000e+00 1.6431076740864835e+01 7.3896663104037801e+00 5.3515288089655701e+00 -1 0 1 +795 0 1 0.0000000000000000e+00 1.4737540706289485e+01 6.6685940107305317e+00 3.2243376360289574e+01 0 1 0 +546 0 1 0.0000000000000000e+00 7.0867013919414896e+00 2.2738950326260330e+01 1.7136941150726322e+01 1 0 -1 +404 0 1 0.0000000000000000e+00 1.4125893887048155e+01 2.4684071012877977e+00 3.0905536971656741e+01 0 1 0 +327 0 1 0.0000000000000000e+00 2.3853241753994848e+01 9.5637530225932643e-01 1.8485554368381315e+01 0 1 1 +309 0 1 0.0000000000000000e+00 9.2701253970898190e+00 2.6160972875072101e+01 1.9626809345585132e+00 0 0 1 +587 0 1 0.0000000000000000e+00 2.7885511346307701e+00 2.4930318331300775e+01 2.8060390990825663e+00 1 1 0 +362 0 1 0.0000000000000000e+00 2.0653010725461009e+01 3.6410887654028540e-01 1.8437234730433513e+01 0 1 1 +344 0 1 0.0000000000000000e+00 2.2597664254242826e+01 2.6921444725907371e+01 1.6025761292188339e+01 -1 0 0 +232 0 1 0.0000000000000000e+00 1.5703783581727352e+01 2.6004149444062971e+01 1.8568225401397189e+01 0 -1 0 +160 0 1 0.0000000000000000e+00 2.5979917597824876e+01 2.4433159514057177e+01 1.1056729402845368e+01 -1 0 0 +286 0 1 0.0000000000000000e+00 1.8567137001273164e+01 3.4550045915065745e+01 1.2729571401007549e+01 0 0 1 +3585 0 1 0.0000000000000000e+00 1.1168866970583076e+00 1.6067579768186516e+01 2.6826111111365599e+01 1 0 -1 +385 0 1 0.0000000000000000e+00 1.7255849592488079e+01 6.6531302194482711e+00 1.2795705317114686e+01 0 0 1 +358 0 1 0.0000000000000000e+00 2.1149925469088096e+01 1.8487051385253732e+01 3.3718830072448100e+01 1 0 0 +802 0 1 0.0000000000000000e+00 1.2750432162671661e+01 1.0704521493804984e+01 2.0301350576975800e+01 -1 0 0 +350 0 1 0.0000000000000000e+00 1.1350988368766663e+01 1.6951128900024273e+01 2.9281614191090704e+00 1 1 1 +522 0 1 0.0000000000000000e+00 2.5672320953440526e+01 8.8464883840120532e+00 3.0779339577798453e+01 0 0 0 +454 0 1 0.0000000000000000e+00 9.9368860217906452e+00 1.1660396791510331e+01 3.2731072557369835e+01 0 0 -1 +945 0 1 0.0000000000000000e+00 1.8491110615434248e+01 1.4091911411017836e+01 2.5632895415818333e+00 0 0 1 +282 0 1 0.0000000000000000e+00 2.0771575181346325e+01 4.0349358500063435e+00 1.8337870868665707e+01 0 0 0 +60 0 1 0.0000000000000000e+00 9.5480408978994991e+00 6.1064137679386299e+00 3.1809990971167039e+01 1 0 -1 +231 0 1 0.0000000000000000e+00 3.0112191134561721e+00 3.3870810544581602e+01 2.5806862170164912e+01 1 -1 0 +110 0 1 0.0000000000000000e+00 2.0678984986899579e+01 1.7127420501800998e+01 2.9480318607288080e+01 0 0 -1 +349 0 1 0.0000000000000000e+00 1.2380490458743159e+01 7.0023593898468759e+00 3.5811263194131110e-01 0 0 1 +256 0 1 0.0000000000000000e+00 2.6152047198998996e+00 1.2060818695861611e+01 9.3210882375317539e-01 0 0 0 +82 0 1 0.0000000000000000e+00 1.5053417375364138e+01 1.1861067890517837e+01 3.2734499451873962e+00 0 0 1 +894 0 1 0.0000000000000000e+00 1.1679065082595079e+01 4.5700411291765279e+00 2.9615384362364345e+01 0 0 0 +113 0 1 0.0000000000000000e+00 1.9772419940527900e+01 3.2487518935805362e+01 2.4927089986742168e+01 0 -1 0 +264 0 1 0.0000000000000000e+00 2.8022780899702312e+01 1.0065586600025975e+01 4.5432616074614014e+00 0 0 1 +229 0 1 0.0000000000000000e+00 1.2665193562896221e+01 1.3491232553808963e+01 5.7182869086631332e+00 0 0 0 +179 0 1 0.0000000000000000e+00 2.2050382044008352e+01 1.8764210831320792e+01 2.1665707373946340e+01 0 0 0 +858 0 1 0.0000000000000000e+00 2.6332630124056770e+01 4.6962170493611781e+00 3.1116419322768770e+01 0 0 0 +780 0 1 0.0000000000000000e+00 2.2931010165200362e+01 6.7816314930739692e+00 3.1882918833593564e+01 0 1 0 +1010 0 1 0.0000000000000000e+00 1.5696767112592042e+01 8.3367700697031246e+00 2.4942521130444099e+01 0 1 1 +807 0 1 0.0000000000000000e+00 1.7840251495921247e+01 5.5956036746411453e+00 2.4807068541928228e+01 0 1 0 +786 0 1 0.0000000000000000e+00 1.8394828437339012e+01 8.7673647320293107e+00 2.2611953662347396e+01 0 1 0 +315 0 1 0.0000000000000000e+00 2.0480408828597366e+01 1.4302069010610065e+01 2.0588586596572711e+01 0 0 0 +737 0 1 0.0000000000000000e+00 1.4732969891598467e+01 8.2557787456577998e+00 2.1935096280134960e+01 0 1 0 +137 0 1 0.0000000000000000e+00 1.2491774098774654e+01 2.9640935180526363e+01 3.0416819345824251e+01 1 0 -1 +460 0 1 0.0000000000000000e+00 1.4670680371367361e+01 2.0719192747636754e+01 3.0318602474860860e+01 -1 0 0 +490 0 1 0.0000000000000000e+00 1.0354896083201803e+01 1.7654382144477438e+01 1.9195259741482719e+01 1 0 0 +1970 0 1 0.0000000000000000e+00 3.3163657775061274e+01 3.1843876761616180e+01 1.9299966928059877e+01 0 0 0 +395 0 1 0.0000000000000000e+00 1.6264414665861416e+01 5.1524683484222642e+00 2.9865412407570464e+01 1 0 0 +853 0 1 0.0000000000000000e+00 1.2040437233176577e+01 5.2834146917022384e-01 3.9442141222887422e-01 1 1 1 +238 0 1 0.0000000000000000e+00 1.8677537381625552e+01 1.3800186041277952e+01 2.9043494780509064e+01 0 0 0 +456 0 1 0.0000000000000000e+00 1.3433913279407921e+01 8.2167071033669536e+00 4.3832364379682698e+00 -1 0 1 +857 0 1 0.0000000000000000e+00 1.2718353938778838e+01 1.4358538634856478e+01 1.8064447971400073e+00 0 1 1 +907 0 1 0.0000000000000000e+00 2.3380292574226040e+01 1.5826291105536901e+01 2.8748196531061595e+01 -1 0 0 +477 0 1 0.0000000000000000e+00 1.4420100696099812e+01 4.0655801821001534e+00 4.5502545960801708e+00 0 0 1 +832 0 1 0.0000000000000000e+00 1.0085882626658504e+01 2.2387247800652556e+01 2.3524742767038301e+01 0 0 0 +511 0 1 0.0000000000000000e+00 2.6032453476838896e+01 3.3416522559812172e+01 2.6490652346715695e+01 0 0 -1 +122 0 1 0.0000000000000000e+00 3.4930056768198834e+00 4.7948794358474389e+00 1.4609145736566532e+01 1 1 0 +1017 0 1 0.0000000000000000e+00 7.0577289499357283e+00 1.6391458237546704e+01 2.3552747349398256e+01 0 0 0 +958 0 1 0.0000000000000000e+00 2.6840972715392146e+00 2.9530916051934701e+00 2.3209461134601248e+01 0 1 0 +235 0 1 0.0000000000000000e+00 6.2514402973417287e+00 6.4336760376286666e+00 2.6121445566977300e+01 1 0 0 +721 0 1 0.0000000000000000e+00 2.0337867979910939e+01 8.5131805775071427e+00 3.3978972550004364e+01 0 0 -1 +891 0 1 0.0000000000000000e+00 2.5852199748235815e+01 4.9507046976259099e+00 2.1875468804862770e+01 0 1 0 +825 0 1 0.0000000000000000e+00 4.2028947821113176e+00 7.9113308962883879e+00 2.3056181160050151e+01 1 1 0 +441 0 1 0.0000000000000000e+00 2.0762431101537409e+01 6.7599858447273951e+00 2.5097403765787604e+01 1 0 0 +689 0 1 0.0000000000000000e+00 7.3889977235673054e+00 2.5958402802631322e+00 3.2959871928885534e+01 0 1 -1 +398 0 1 0.0000000000000000e+00 1.6467447817882164e+01 1.1038661551232860e+01 2.7817558281467438e+01 0 0 0 +1185 0 1 0.0000000000000000e+00 3.2957945373617889e+01 5.4389430808222095e+00 1.4913607685527140e+01 0 0 0 +1020 0 1 0.0000000000000000e+00 8.9528919596957444e+00 1.4216988700546350e+01 1.7269237198121360e+01 0 0 0 +544 0 1 0.0000000000000000e+00 3.8613424614992224e+00 8.7056557480334806e+00 3.3216285000314990e+01 1 0 -1 +345 0 1 0.0000000000000000e+00 2.9771378082573182e+01 1.3565422056108201e+01 3.0946384410756256e+01 0 0 0 +52 0 1 0.0000000000000000e+00 9.9348080161278762e+00 1.6947750004698356e+01 3.0544397852764963e+01 0 0 0 +75 0 1 0.0000000000000000e+00 2.2397597343994200e+01 1.0502002559613221e+01 3.1300525118714155e+01 0 0 0 +613 0 1 0.0000000000000000e+00 1.0523643587310680e+01 1.1025052479118614e+01 1.7582898836572856e+01 1 0 0 +420 0 1 0.0000000000000000e+00 2.1032534359395413e+01 2.7022228745330072e+00 3.0674043512593467e+01 1 0 0 +249 0 1 0.0000000000000000e+00 1.2962699734758706e+01 1.1163624371996047e+01 2.3841440227060183e+01 0 0 0 +35 0 1 0.0000000000000000e+00 3.0149189615114288e+01 2.7827215931655513e+01 2.5506822853503928e+00 0 -1 0 +903 0 1 0.0000000000000000e+00 1.1617844632734212e+01 3.0080483944001806e+00 1.8809699104941952e+01 0 1 0 +609 0 1 0.0000000000000000e+00 1.2549429849036155e+01 1.1531176206304458e+01 2.9036054722198394e+01 0 1 -1 +910 0 1 0.0000000000000000e+00 1.0510285638454276e+01 1.4071248915280554e+01 2.0349561584859810e+01 0 1 0 +968 0 1 0.0000000000000000e+00 9.6419893445651557e+00 1.4144432257933422e+01 2.3534358264022842e+01 0 0 0 +452 0 1 0.0000000000000000e+00 9.4368014763254173e+00 8.0809710574088296e+00 2.5734708780860501e+01 0 0 0 +988 0 1 0.0000000000000000e+00 3.1215715682029263e+01 2.9578292102593313e+01 2.8586313299130829e+01 -1 0 0 +632 0 1 0.0000000000000000e+00 1.2239374163532290e+01 2.0354339640207481e+01 2.5073706258414781e+01 -1 1 0 +89 0 1 0.0000000000000000e+00 7.3046246626539384e+00 8.6402003197071444e+00 1.9768150515731339e+01 0 0 0 +186 0 1 0.0000000000000000e+00 1.6155428024524497e+01 4.9269666773801086e+00 2.1561711873031161e+01 1 0 -1 +472 0 1 0.0000000000000000e+00 7.7710950933484568e+00 1.8670999543742425e+01 2.8605219460448726e+01 0 0 0 +224 0 1 0.0000000000000000e+00 1.6290147470549762e+01 6.2030496894778668e+00 1.4727753389562324e+00 -1 0 0 +328 0 1 0.0000000000000000e+00 2.5834660418548818e+01 8.8747727670150667e+00 2.2192696104633775e+01 -1 1 1 +614 0 1 0.0000000000000000e+00 1.8047348180807020e+01 6.5820935454427083e+00 3.3166236431107485e+01 0 1 0 +100 0 1 0.0000000000000000e+00 5.8130135546331365e+00 1.1976130030594145e+01 3.2421213990043526e+01 0 0 0 +245 0 1 0.0000000000000000e+00 1.4169330953546098e+01 1.3208344682957495e+01 2.6187025504850062e+01 0 1 0 +62 0 1 0.0000000000000000e+00 1.2558476963166989e+01 2.0524882896756935e+01 2.1357263964493441e+01 0 0 0 +647 0 1 0.0000000000000000e+00 4.7201847409952604e+00 3.1928730586781460e+00 2.5834689650635546e+01 0 1 -1 +343 0 1 0.0000000000000000e+00 5.5235850452270503e+00 8.4440140808996436e+00 2.9874892217490562e+01 0 0 0 +276 0 1 0.0000000000000000e+00 2.0219046796307506e+01 1.5274544751101272e+01 2.5748241701414621e+01 0 0 0 +893 0 1 0.0000000000000000e+00 1.4511311796329180e+01 1.6762457228743344e+00 2.0445909980410896e+01 0 1 0 +895 0 1 0.0000000000000000e+00 1.3197415747655500e+01 1.3760557916420879e+00 2.7662880310776551e+01 0 1 0 +69 0 1 0.0000000000000000e+00 1.6184033316551055e+01 3.0499800358434270e+00 2.6926583070922575e+01 1 0 0 +809 0 1 0.0000000000000000e+00 5.9977995040800494e+00 3.2224745362008463e+01 2.0426476127749321e+01 0 0 0 +836 0 1 0.0000000000000000e+00 1.1223528773522812e+01 5.7741705769530913e+00 3.4278984226513329e+00 0 1 1 +98 0 1 0.0000000000000000e+00 2.5202386683312135e+01 1.9350213943350958e+01 2.9161277349287815e+01 0 0 0 +588 0 1 0.0000000000000000e+00 2.5006573616935572e+01 1.3908306940534539e+01 3.2747270767943185e+01 1 0 0 +845 0 1 0.0000000000000000e+00 2.1822246257207439e+01 1.4241023696804245e+01 1.7694619572841347e+01 -1 0 0 +623 0 1 0.0000000000000000e+00 1.6048303173750369e+01 3.4254125291857392e+01 3.3890665062807223e+01 -1 0 0 +3511 0 1 0.0000000000000000e+00 2.2867745186483335e+00 2.4585150633814202e+01 2.5926954731563217e+01 1 -1 0 +294 0 1 0.0000000000000000e+00 8.2481468747565554e+00 3.0774690931225472e+00 2.5615977444686333e+01 0 0 0 +880 0 1 0.0000000000000000e+00 1.1592638575706015e+01 6.8681639742038163e+00 2.3288113017322868e+01 0 0 0 +1008 0 1 0.0000000000000000e+00 2.5709657914555944e+01 2.2668607297486211e+01 2.2315460821738064e+01 0 0 0 +750 0 1 0.0000000000000000e+00 1.1969569955759294e+01 1.7795801286936019e+01 2.2973662035569951e+01 0 1 0 +162 0 1 0.0000000000000000e+00 2.3729825800993765e+01 2.1465562070019157e+01 3.2389082145002995e+01 0 0 0 +4007 0 1 0.0000000000000000e+00 2.7206978151255252e+00 3.3818075325555249e+01 2.1982717919443402e+01 0 -1 0 +359 0 1 0.0000000000000000e+00 2.2283780086796583e+01 1.9316679479215413e+01 2.6505824911670540e+01 0 0 0 +246 0 1 0.0000000000000000e+00 1.5702184057945281e+00 5.7482049817561114e+00 2.1065172169019572e+01 0 0 0 +597 0 1 0.0000000000000000e+00 1.6345975583659374e+01 3.4587480287455326e+00 3.3940290159900059e+01 1 1 -1 +444 0 1 0.0000000000000000e+00 8.9765067841018329e+00 3.0483277472782984e+01 3.0453381211522583e+01 0 -1 0 +950 0 1 0.0000000000000000e+00 4.3447724872135547e+00 1.3788364251660598e+01 2.5360002320154983e+01 0 1 0 +165 0 1 0.0000000000000000e+00 1.6952611088018990e+01 1.3683055597150775e+01 1.9385788248753119e+01 0 1 -1 +203 0 1 0.0000000000000000e+00 2.3986019064345221e+01 1.7585823506920725e+01 3.1715375030775594e+01 0 0 -1 +822 0 1 0.0000000000000000e+00 1.0482259788085555e+01 3.8257172481119675e+00 2.2286284446022936e+01 1 1 0 +759 0 1 0.0000000000000000e+00 2.2154784506113696e+01 6.2838457887156203e+00 2.1953131990992773e+01 0 1 0 +108 0 1 0.0000000000000000e+00 9.6666095040997551e+00 9.7847820171921214e+00 2.2615834803117963e+01 -1 0 -1 +726 0 1 0.0000000000000000e+00 2.9676299939332836e+01 4.3875321498952617e+00 2.6099945951270531e+01 0 1 -1 +897 0 1 0.0000000000000000e+00 2.8453250801893208e+01 1.2475901513562045e+01 2.7533314406923523e+01 0 1 0 +79 0 1 0.0000000000000000e+00 1.0433812019602426e+01 6.7554864396430512e+00 6.6914369230862452e+00 0 0 0 +610 0 1 0.0000000000000000e+00 1.1115133095264104e+01 1.9406402262716257e-01 2.1136817755885058e+01 0 2 -1 +494 0 1 0.0000000000000000e+00 1.3961716763460917e+01 4.0620015800640834e+00 2.4239364868246579e+01 0 0 0 +407 0 1 0.0000000000000000e+00 7.5186724721600964e+00 5.2833128883558338e+00 2.8915309581212252e+01 1 0 0 +671 0 1 0.0000000000000000e+00 4.9196686777616696e+00 3.4503718335426967e+00 9.3195255778592834e-01 0 1 0 +307 0 1 0.0000000000000000e+00 2.3860921887545427e+01 9.3300530260933154e+00 3.4362501783253293e+01 0 0 0 +403 0 1 0.0000000000000000e+00 1.9964971057160476e+01 1.0316989693207844e+01 2.5918975512065689e+01 0 0 0 +212 0 1 0.0000000000000000e+00 2.5309748024357241e+01 1.3647088209441643e+01 1.2228178795771923e+01 0 0 -1 +675 0 1 0.0000000000000000e+00 1.3305795007424477e+01 1.7143073385252578e+01 2.7031955389731397e+01 0 0 0 +372 0 1 0.0000000000000000e+00 8.8434332028462013e+00 1.2806353233866632e+01 2.9508230817087814e+01 0 0 0 +354 0 1 0.0000000000000000e+00 7.8015778135672535e+00 6.0371440282251587e+00 2.2658537767191298e+01 1 0 0 +734 0 1 0.0000000000000000e+00 1.0835626167312828e+01 5.2717627207793232e+00 2.6492816280757886e+01 1 1 -1 +519 0 1 0.0000000000000000e+00 6.4155834328456436e+00 1.6251492584153517e+01 2.0009607688753306e+01 1 1 0 +120 0 1 0.0000000000000000e+00 2.8294614415551983e+01 2.3708877813791879e+01 7.6244537596426278e+00 0 1 0 +629 0 1 0.0000000000000000e+00 3.6243118060385910e+00 1.9026339823310209e+01 3.2918418623321244e+01 1 0 -1 +405 0 1 0.0000000000000000e+00 3.8490201862725213e+00 8.9867025031330741e+00 2.6788123495443980e+01 0 0 0 +322 0 1 0.0000000000000000e+00 2.9205656774183315e+00 1.7612383926465213e+01 1.9650076247794853e+01 0 0 0 +733 0 1 0.0000000000000000e+00 1.2718113112633940e+01 3.2256527065895476e+01 3.3036013457705877e+01 1 0 -1 +595 0 1 0.0000000000000000e+00 3.1271435463383430e+01 3.0360955653520083e+01 1.3477880295307447e+00 0 0 0 +501 0 1 0.0000000000000000e+00 3.2026498859018311e+01 9.0172185802649985e+00 1.4259349705532578e+01 0 0 1 +3495 0 1 0.0000000000000000e+00 3.2330036375804911e+00 2.0884025579939365e+01 2.4913097279977354e+01 0 -1 0 +90 0 1 0.0000000000000000e+00 2.7485745834920262e+01 2.9639443989583221e+01 2.2386759575544318e+01 0 -1 0 +791 0 1 0.0000000000000000e+00 3.0443238304386725e+01 4.1680074789555768e+00 3.0428131422423039e+01 -1 0 0 +763 0 1 0.0000000000000000e+00 2.6889268949341680e+01 2.6238349056379278e+01 3.2587011381623313e+01 0 1 -1 +313 0 1 0.0000000000000000e+00 3.1596141401226724e+01 1.6129237978909778e+01 3.3888797741205465e+01 0 0 0 +606 0 1 0.0000000000000000e+00 2.7737438186146171e+01 3.0655702060312873e+01 1.8955611955005089e+01 0 0 0 +916 0 1 0.0000000000000000e+00 2.2148089487867782e+01 3.1137711312176002e+01 2.7638561055287575e+01 -1 -1 0 +109 0 1 0.0000000000000000e+00 3.1093593136760060e+01 2.9825437953030537e+01 2.1321722614195792e+01 0 0 0 +516 0 1 0.0000000000000000e+00 2.5743273820022409e+01 2.3947686794153430e+01 4.2936877087132475e+00 -1 0 0 +268 0 1 0.0000000000000000e+00 2.5540869361212579e+01 9.9022472655981151e+00 2.7651060220406599e+01 -1 1 0 +308 0 1 0.0000000000000000e+00 2.9505701268528732e+01 7.1831302583661731e+00 3.1219176577845001e+01 0 0 0 +655 0 1 0.0000000000000000e+00 3.1274121845166665e+01 2.6299889754991458e+01 8.0373524939500687e+00 0 0 0 +549 0 1 0.0000000000000000e+00 3.2459488832372656e+01 2.3036614375783159e+01 1.3905253546332116e+01 0 1 0 +725 0 1 0.0000000000000000e+00 3.1170987676598692e+01 8.5794990568203318e+00 6.3618236617450741e+00 -1 1 0 +258 0 1 0.0000000000000000e+00 2.3861084041085352e+01 3.1476623459012966e+01 2.4373526751649759e+01 0 -1 -1 +3942 0 1 0.0000000000000000e+00 4.9183756932530382e+00 2.5443474490506105e+01 1.5514576966019746e+01 1 -1 0 +934 0 1 0.0000000000000000e+00 3.0801623068360662e+01 3.0784146810327112e+01 2.4649497105467141e+01 -1 0 0 +757 0 1 0.0000000000000000e+00 3.1646795760119282e+01 2.1257704423346762e+00 1.9827663685962122e+01 0 1 0 +864 0 1 0.0000000000000000e+00 2.2905759533175317e+01 1.1224211340202512e+01 5.2940089851899126e+00 0 1 1 +901 0 1 0.0000000000000000e+00 2.0934825826607778e+01 7.4989194120555602e+00 3.0434013477900557e+00 0 1 1 +715 0 1 0.0000000000000000e+00 2.8399185978947848e+01 2.8494090173968939e+01 1.4935115234203137e+01 0 0 0 +136 0 1 0.0000000000000000e+00 2.4544688496320465e+01 1.2153295889911988e+01 1.9306568285931720e+00 0 0 0 +628 0 1 0.0000000000000000e+00 2.5227041361345332e+01 2.9474375192045724e+01 1.6537962517398718e+01 0 0 0 +374 0 1 0.0000000000000000e+00 2.4781113636676995e+01 2.9437866325147805e+01 2.7607779392316719e+01 0 -1 0 +660 0 1 0.0000000000000000e+00 2.3046748011057181e+00 1.5395786046064348e+01 1.9466752619439724e+00 0 0 0 +582 0 1 0.0000000000000000e+00 2.7910650672166145e+01 1.7489169034348670e+01 3.2609487788877196e+01 0 0 0 +418 0 1 0.0000000000000000e+00 3.0691984117993105e+01 4.9074108848828404e+00 1.7617128120857647e+01 0 0 0 +810 0 1 0.0000000000000000e+00 3.0037005268845679e+01 2.6804222553950691e+01 3.0049815609949015e+01 -1 0 0 +624 0 1 0.0000000000000000e+00 2.8622124547778000e+01 3.1761701317722697e+01 1.5069160334865233e+01 -1 0 -1 +867 0 1 0.0000000000000000e+00 3.1128467431573654e+01 1.7953779458436166e+01 1.6797079286927254e+01 -1 0 1 +85 0 1 0.0000000000000000e+00 2.2990063454947673e+01 3.0699898817379694e+01 3.3140226557929587e+01 -1 0 -1 +439 0 1 0.0000000000000000e+00 3.4188765695030213e+01 3.0570866188891994e+01 2.2436340475968237e+01 0 -1 0 +147 0 1 0.0000000000000000e+00 2.8318925030281097e+01 1.8402951501369915e+00 2.9270289993843530e+01 -1 1 -1 +1022 0 1 0.0000000000000000e+00 3.0071723683272676e+01 2.6230541544340731e+01 2.2423916651425998e+01 0 0 0 +437 0 1 0.0000000000000000e+00 3.4065114025014594e+01 1.8740146550673774e+01 3.4863242928932009e-01 0 0 1 +240 0 1 0.0000000000000000e+00 2.4114228342868255e+01 1.6891789510666168e+01 1.9002508309187931e+01 -1 0 0 +1489 0 1 0.0000000000000000e+00 3.1106396040315637e+01 3.4079244445878878e+01 2.2506441736508890e+01 0 -1 0 +764 0 1 0.0000000000000000e+00 2.6643526292157418e+01 7.5270777073888970e+00 3.3486302273222975e+01 0 1 -1 +3548 0 1 0.0000000000000000e+00 1.4481892065068056e+00 3.1090776630293831e+01 4.3279723890755406e+00 1 -1 1 +806 0 1 0.0000000000000000e+00 2.7853473675612875e+01 3.2499197135097049e+01 2.3623372822434121e+01 -1 -1 0 +796 0 1 0.0000000000000000e+00 3.0932328282906088e+01 2.4759754062093577e+01 1.7062523468283416e+01 -1 0 0 +3985 0 1 0.0000000000000000e+00 2.4479353260339984e-01 1.8055103530774833e+01 3.4148145059225236e+01 0 0 0 +356 0 1 0.0000000000000000e+00 3.2877751730605695e+01 2.4348633576771057e+01 3.1042570191144431e+01 0 -1 0 +1810 0 1 0.0000000000000000e+00 3.4292113108590875e+01 1.8873363550713222e+01 1.4990712993394883e+01 0 0 0 +1015 0 1 0.0000000000000000e+00 3.1693953002238640e+01 6.8282452900904902e+00 2.8370941695684110e+01 -1 1 0 +397 0 1 0.0000000000000000e+00 2.8340108405460697e+01 3.3250313219819866e+01 3.0258131344759153e+01 0 -1 0 +697 0 1 0.0000000000000000e+00 2.5265471024191637e+01 1.0676322877929953e+00 2.3187840602850731e+01 0 1 0 +833 0 1 0.0000000000000000e+00 2.9415925250300816e+01 3.3434492930918502e+01 3.4253308007180060e+01 0 0 0 +599 0 1 0.0000000000000000e+00 2.9138246995557793e+01 2.3629753058767939e+01 3.1585292989260342e+01 0 0 0 +87 0 1 0.0000000000000000e+00 2.8143100747697886e+01 2.8073458854961572e+01 2.5718032052662132e+01 -1 0 0 +207 0 1 0.0000000000000000e+00 2.3149958355312247e+01 9.8196063607319068e+00 2.4498437322344287e+01 0 0 0 +428 0 1 0.0000000000000000e+00 2.5574333013903409e+01 3.2803889098589138e+01 2.1320412288955847e+01 0 0 0 +1778 0 1 0.0000000000000000e+00 2.8052854007867172e+01 9.8826981309442552e-01 9.4418395795457108e+00 0 1 0 +376 0 1 0.0000000000000000e+00 3.2084329105927026e+01 2.2625307267386021e+00 2.3954357453050260e+01 -1 1 0 +126 0 1 0.0000000000000000e+00 2.3296439263005684e+01 1.1172562635799617e+00 1.2698931597965679e+01 0 0 0 +200 0 1 0.0000000000000000e+00 3.3402772655013791e+01 2.3113824866445377e+01 2.4044094793889546e+01 0 0 -1 +532 0 1 0.0000000000000000e+00 2.7509120352247184e+01 2.7704926029587554e+01 6.9743332133550835e+00 -1 0 0 +209 0 1 0.0000000000000000e+00 3.2619811114528234e+00 1.6562117417508698e+01 2.3145796884488480e+01 0 0 0 +842 0 1 0.0000000000000000e+00 2.9373188334493236e+01 2.5046549606943884e+01 1.4229375613951515e+01 0 0 1 +370 0 1 0.0000000000000000e+00 2.6438016086770151e+01 2.1279907797043958e+01 1.3533002651097986e+01 -1 0 0 +951 0 1 0.0000000000000000e+00 2.8681974768155985e+01 1.9649386172559371e+01 2.8883465351122638e+01 0 0 0 +384 0 1 0.0000000000000000e+00 2.9189179932158048e+01 2.3456488190320290e+01 2.8178063861114854e+01 0 0 0 +158 0 1 0.0000000000000000e+00 2.4644385224241034e+01 1.8546779719403006e+01 2.1651614734989974e-01 0 -1 0 +228 0 1 0.0000000000000000e+00 2.0063708827651073e+01 2.2185530598416602e+01 3.3447365853754278e+01 1 0 0 +3150 0 1 0.0000000000000000e+00 2.6579179258933525e+00 1.0862659532520901e+01 2.3880464070110577e+01 1 0 -1 +1329 0 1 0.0000000000000000e+00 2.9000421267282313e+01 1.6646523077140145e+01 2.7271565033178305e+01 0 0 0 +870 0 1 0.0000000000000000e+00 3.0029222999845206e+01 6.4225247748289235e-02 2.6360016080743957e+01 0 0 0 +22 0 1 0.0000000000000000e+00 2.3311997379574201e+01 1.3159556738982163e+01 2.3818225529521229e+01 0 0 -1 +873 0 1 0.0000000000000000e+00 2.6771942947438262e+01 2.6065215944799991e+01 2.8459684449190771e+01 0 0 0 +7 0 1 0.0000000000000000e+00 2.6258857742812530e+01 2.6202926038418688e+01 2.1549635975164154e+01 0 0 0 +318 0 1 0.0000000000000000e+00 2.8425181438355260e+01 2.3659049860483833e+01 2.0547905970186381e+01 0 0 0 +400 0 1 0.0000000000000000e+00 3.0631383159342278e+01 3.0597381250422483e+01 3.1177499907545371e+01 -1 0 0 +3597 0 1 0.0000000000000000e+00 3.3571672492833224e+00 2.2636431181101131e+01 2.2014840342282522e+01 0 0 0 +559 0 1 0.0000000000000000e+00 3.3425400151235756e+01 2.7067790196210119e+01 2.3074630669887529e+01 -1 0 0 +465 0 1 0.0000000000000000e+00 3.3898921865440741e+01 2.7293872413011787e+01 2.9395717745443235e+01 0 -1 0 +378 0 1 0.0000000000000000e+00 1.7964571990812885e+01 1.7828392510485929e+00 1.5440431427464382e+01 -1 0 0 +3 0 1 0.0000000000000000e+00 2.4766820100944102e+01 7.4501488129075399e+00 1.5576312104065474e+01 -1 0 -1 +1170 0 1 0.0000000000000000e+00 3.1680188835649336e+01 1.2030045908918747e+00 9.6754294029705292e+00 0 0 0 +3535 0 1 0.0000000000000000e+00 8.6269995345501527e-01 3.0572522690807759e+01 1.3297455835347428e+01 1 -1 0 +172 0 1 0.0000000000000000e+00 3.2073119240124178e+01 1.6752414455248822e+01 2.5797998591384143e+01 0 0 -1 +524 0 1 0.0000000000000000e+00 3.2493126674310211e+01 2.7288842858576437e+01 1.4882609345327687e+01 -1 0 0 +1251 0 1 0.0000000000000000e+00 3.0006104215504394e+01 1.2723322368361249e+01 1.8772054570678986e+01 0 0 0 +204 0 1 0.0000000000000000e+00 3.1132547434000521e+01 3.0408321653939808e+01 1.6932807107229358e+01 -1 -1 0 +877 0 1 0.0000000000000000e+00 2.6694317773002009e+01 1.1114470685945925e+01 2.4280055167922022e+01 0 1 1 +1313 0 1 0.0000000000000000e+00 3.2400574069925078e+01 1.5355232155505403e+01 1.8656097552314101e+01 0 0 0 +686 0 1 0.0000000000000000e+00 3.1479223487232090e+01 2.0146484785758279e+01 2.6063803284409452e+01 0 0 0 +306 0 1 0.0000000000000000e+00 3.0284770174967331e+01 2.3773123266861344e+01 2.5055824016452377e+01 0 -1 0 +432 0 1 0.0000000000000000e+00 2.8797750687612094e+01 1.4460089439720049e+01 2.4585884203947813e+01 0 0 0 +423 0 1 0.0000000000000000e+00 3.2964057006120264e+01 1.5434304232730085e+01 1.5622207406553066e+01 -1 -1 0 +1003 0 1 0.0000000000000000e+00 3.0805969306770184e+01 7.9263860600522413e+00 2.9461731869914067e+00 0 1 1 +3159 0 1 0.0000000000000000e+00 5.9137257304138915e+00 2.3646326295533481e+01 2.5131465422494138e+01 0 0 0 +966 0 1 0.0000000000000000e+00 3.2525217589111008e+01 1.2668394935117835e+01 2.1973624397255211e+01 0 0 1 +88 0 1 0.0000000000000000e+00 3.2770921211559518e+01 2.8334180918469752e+01 3.2833532634453150e+01 -1 -1 -1 +1154 0 1 0.0000000000000000e+00 3.1742240463915621e+01 8.4544779519515210e+00 1.7926743719215249e+01 0 0 0 +462 0 1 0.0000000000000000e+00 2.4631259753101560e+01 3.1684654612958916e+01 2.9928293527161845e+01 0 -1 0 +630 0 1 0.0000000000000000e+00 2.6533318832095855e+01 4.3252809983031654e-01 1.1998462167110146e+01 0 0 0 +754 0 1 0.0000000000000000e+00 2.6394883571017065e+01 2.7418747290936643e+00 2.5950169201585386e+01 0 1 -1 +51 0 1 0.0000000000000000e+00 3.2314370624877526e+01 2.4640094180278025e+00 2.8155160979672846e+01 -1 1 -1 +878 0 1 0.0000000000000000e+00 2.9495450498693760e+01 5.4096562194147815e+00 3.4378554163549502e+01 0 1 0 +1762 0 1 0.0000000000000000e+00 3.2682623820441741e+01 2.7938593609760304e+01 5.2724657527721437e+00 0 0 0 +566 0 1 0.0000000000000000e+00 2.9163539716107646e+01 2.0802327591089483e+01 4.2184415148062442e+00 -1 0 0 +449 0 1 0.0000000000000000e+00 2.8282903491212124e+01 1.1028478362015740e+01 1.2695225834385526e+00 -1 0 1 +4 0 1 0.0000000000000000e+00 2.5706425158762762e+01 2.4978841904735223e+01 1.4502886877465317e+01 0 -1 0 +850 0 1 0.0000000000000000e+00 2.8925913139257140e+01 8.7159352721705741e+00 2.6949032293969672e+01 -1 0 0 +772 0 1 0.0000000000000000e+00 2.4038962435956453e+01 1.2328501994992184e+01 2.0129627218351406e+01 -1 1 1 +683 0 1 0.0000000000000000e+00 2.0991893985144685e+01 2.2101289696798165e+01 2.4680704629683159e+01 -1 0 0 +954 0 1 0.0000000000000000e+00 3.0178568951245847e+01 9.0494742856174106e+00 3.3953920122583220e+01 -1 0 0 +489 0 1 0.0000000000000000e+00 2.6062554999076568e+01 1.3330303942902882e+01 1.6410144475569357e+01 0 0 0 +269 0 1 0.0000000000000000e+00 3.1053170062798724e+01 1.1219468232263431e+01 4.8102844234829965e+00 -1 0 0 +902 0 1 0.0000000000000000e+00 2.1143739059224803e+01 2.0263276496517424e+01 4.9556448976581438e+00 -1 0 0 +475 0 1 0.0000000000000000e+00 2.8366000175218918e+01 3.1883017755334823e+01 7.6896902163756806e+00 0 -1 0 +300 0 1 0.0000000000000000e+00 3.1027930718155005e+01 9.6042085682069160e+00 2.1267554222718818e+01 -1 0 0 +236 0 1 0.0000000000000000e+00 2.5973948427015809e+01 9.7405132950452042e+00 1.7688610864776368e+01 -1 0 0 +987 0 1 0.0000000000000000e+00 2.2928796925771891e+01 3.1238758066300489e+00 2.0881198917290174e+01 0 1 0 +323 0 1 0.0000000000000000e+00 2.4449838240201085e+01 5.7378686372551568e-01 2.9722151804983742e+01 0 0 0 +293 0 1 0.0000000000000000e+00 2.8998975205376244e+01 7.5151714657248014e+00 1.5198131383533644e+01 -1 0 0 +940 0 1 0.0000000000000000e+00 2.8727264561532959e+01 3.3565724007815476e+01 2.0607337409977671e+01 0 0 0 +291 0 1 0.0000000000000000e+00 4.4160152052708002e-01 8.8323796449466681e+00 2.0359504853826891e+01 1 0 0 +673 0 1 0.0000000000000000e+00 2.8981951558238492e+01 1.3346802680965304e+01 1.2593208502856998e+01 0 0 0 +104 0 1 0.0000000000000000e+00 2.1237460097745718e+01 1.7282614557972870e+01 2.3353867697911834e+00 -1 0 0 +447 0 1 0.0000000000000000e+00 3.2625995011055828e+01 1.6048334407606475e+01 2.2281254794558556e+01 0 -1 0 +219 0 1 0.0000000000000000e+00 2.8895980636163106e+01 7.4595419456144774e-01 1.4907603790877348e+01 0 0 0 +206 0 1 0.0000000000000000e+00 2.6247718344259106e+01 1.5252111330292617e+01 2.2021856492591613e+01 -1 0 0 +708 0 1 0.0000000000000000e+00 2.1713058392095931e+01 2.0651148915000924e+01 2.9741230553022877e+01 0 0 -1 +3615 0 1 0.0000000000000000e+00 4.7552752805274201e-01 3.4283591647744615e+01 2.4092715023587035e+00 1 0 0 +789 0 1 0.0000000000000000e+00 1.9667111027738141e+01 1.5976384467103369e+01 1.6091776110934443e+01 0 0 0 +3220 0 1 0.0000000000000000e+00 1.8072888844843837e+00 2.6126630192580929e+00 4.6085914063595919e+00 1 0 0 +295 0 1 0.0000000000000000e+00 2.3422827522711525e+01 1.6562361842607185e+01 2.3681224909149694e+01 0 0 0 +740 0 1 0.0000000000000000e+00 2.7526168868820335e+01 1.7956651184402244e+01 1.4982372013277701e+01 0 0 -1 +672 0 1 0.0000000000000000e+00 2.4201446305797489e+01 2.0928192667788739e+01 1.9467262761358281e+01 0 0 0 +991 0 1 0.0000000000000000e+00 3.2503162019051402e+01 1.9709321379408863e+01 2.2538596846629989e+01 -1 1 0 +319 0 1 0.0000000000000000e+00 2.4951651605061990e+01 6.2101870868903486e+00 2.4717312591175403e+01 0 0 0 +962 0 1 0.0000000000000000e+00 3.1405164412954210e+01 2.5672760312651331e+01 3.3976848925685395e+01 0 0 0 +932 0 1 0.0000000000000000e+00 2.6625326184216661e+01 1.1208353931703078e+01 3.3011769766790366e+01 0 1 0 +911 0 1 0.0000000000000000e+00 2.8136088156967606e+01 7.8561804280662733e+00 1.9918054968258136e+01 0 0 0 +3829 0 1 0.0000000000000000e+00 4.4735081594898329e-01 3.1283911927219393e+01 2.0077065613878421e+01 1 0 0 +724 0 1 0.0000000000000000e+00 2.1964606833940248e+01 1.1854620698649615e+01 2.8128103416921771e+01 0 0 -1 +558 0 1 0.0000000000000000e+00 2.9200584057013032e+01 1.9467052358941633e+01 1.1169092380405734e+01 0 0 0 +688 0 1 0.0000000000000000e+00 3.3281062838440107e+01 3.2406752919768017e+01 3.2567418049720395e+01 0 0 0 +743 0 1 0.0000000000000000e+00 2.8744947285923811e+01 1.1428134870908430e+01 7.5512219738205228e+00 -1 0 0 +957 0 1 0.0000000000000000e+00 2.2583179270548875e+01 2.5354990300850314e+01 2.1902896949296897e+00 0 0 0 +514 0 1 0.0000000000000000e+00 3.0007168329801949e+01 2.9718953147015220e+01 5.5095960725947721e+00 0 0 0 +11 0 1 0.0000000000000000e+00 3.1844306077777411e+01 2.3928723279542929e+01 2.0780318561124325e+01 0 0 -1 +332 0 1 0.0000000000000000e+00 2.5167749667396361e+01 2.8461952143987215e+01 1.3022916346799741e+01 -1 0 0 +415 0 1 0.0000000000000000e+00 3.1715001990657669e+01 1.6367319742410860e+01 9.5397563473784821e+00 0 0 1 +68 0 1 0.0000000000000000e+00 3.2571903256948225e+01 2.6776036934269406e+01 1.9339958328300256e+01 0 -1 0 +879 0 1 0.0000000000000000e+00 2.8337806403650415e+01 2.7219790562973181e+01 1.0500279609313054e+01 0 0 -1 +699 0 1 0.0000000000000000e+00 3.1571223908552422e+01 1.3623176451009545e+01 2.5312855532122347e+00 -1 1 0 +906 0 1 0.0000000000000000e+00 2.7985062360253586e+01 1.4216888156123499e+01 9.5040803892088306e+00 0 0 0 +1713 0 1 0.0000000000000000e+00 2.4348067443465869e+01 3.0904140865607083e+01 2.6585252608961056e+00 0 0 0 +3198 0 1 0.0000000000000000e+00 1.0286493030725603e-01 3.0221871789407015e+01 1.6796501809591359e+01 1 -1 0 +1283 0 1 0.0000000000000000e+00 3.4223032297884238e+01 2.9934706646297844e+01 1.3109036866728777e+01 0 -1 0 +1746 0 1 0.0000000000000000e+00 2.6330733984054074e+01 1.8827324591406896e+01 2.1870918952974058e+01 0 0 0 +183 0 1 0.0000000000000000e+00 3.0459925683466366e+01 1.6520762407462414e+01 1.2883481223720105e+01 0 0 0 +555 0 1 0.0000000000000000e+00 2.9061391748891356e+01 9.8197941880402861e-01 6.1838610372409288e+00 0 0 0 +140 0 1 0.0000000000000000e+00 2.9307290141205996e+01 2.1021024407576991e+01 1.1729250758922611e+00 0 0 0 +3133 0 1 0.0000000000000000e+00 5.0491156171072396e+00 2.7471548218483580e+01 7.6336854446934792e+00 1 -1 0 +748 0 1 0.0000000000000000e+00 3.1568192898271125e+01 1.1829249403550225e+01 3.4022278779415991e+01 0 1 -1 +459 0 1 0.0000000000000000e+00 2.8956068681454116e+01 2.4866762512118363e+01 4.4916565155520534e+00 0 0 0 +816 0 1 0.0000000000000000e+00 2.7528542939259751e+01 1.5556001814996602e+01 1.8649078579421793e+01 0 0 0 +679 0 1 0.0000000000000000e+00 2.8583221770086045e+01 2.5013409570290781e+00 1.7529467880663002e+01 -1 1 1 +208 0 1 0.0000000000000000e+00 2.9057965413668025e+01 9.8169007874410870e+00 1.1968182172728335e+01 -1 0 0 +1250 0 1 0.0000000000000000e+00 3.3040846381132752e+01 6.2945883502817939e+00 8.5024008276693408e+00 0 0 0 +542 0 1 0.0000000000000000e+00 3.2254663605614574e+01 2.0401593181747934e+01 8.5481646102995743e+00 -1 0 0 +5 0 1 0.0000000000000000e+00 2.4770710495887332e+01 1.2851215134068221e+01 8.7368285334447666e+00 0 0 0 +986 0 1 0.0000000000000000e+00 2.4444393921639961e+01 8.5925410524792181e+00 3.2239439391169644e+00 0 1 0 +1266 0 1 0.0000000000000000e+00 2.9131968038026010e+01 1.4819186604807983e+01 1.5816445390242301e+01 0 0 0 +321 0 1 0.0000000000000000e+00 2.7097008635150466e+01 7.6812552283920725e+00 2.2553856854551055e+00 0 0 1 +984 0 1 0.0000000000000000e+00 2.9074317186328823e+01 1.1149176823917792e+01 1.6305255406464720e+01 -1 1 0 +1361 0 1 0.0000000000000000e+00 2.7756632450973111e+01 1.1989695832001626e+01 2.1063695079342160e+01 0 0 0 +27 0 1 0.0000000000000000e+00 2.8123090478801522e+01 2.4594888169597223e+01 9.7938133521135851e-01 -1 -1 0 +493 0 1 0.0000000000000000e+00 3.1160138948413895e+01 1.7762927862814097e+00 1.2952887799682246e+01 0 0 1 +197 0 1 0.0000000000000000e+00 2.2829962956808295e+01 3.2719829417431399e+01 8.5220352648940327e+00 -1 -1 0 +425 0 1 0.0000000000000000e+00 3.2885111993341880e+01 2.1050559210002106e+01 3.4068637026778297e+00 -1 0 0 +840 0 1 0.0000000000000000e+00 3.0561805078251012e+01 5.5901208827551558e+00 2.1189739270633627e+01 0 1 0 +283 0 1 0.0000000000000000e+00 2.8741212992414845e+01 2.1916054537253862e+00 3.3025176003161697e+01 -1 0 0 +967 0 1 0.0000000000000000e+00 3.3235665091821247e+01 1.9113947678758830e+01 2.8831774900316976e+01 -1 0 -1 +882 0 1 0.0000000000000000e+00 2.2859101790836711e+01 4.5890803290409172e+00 1.1099589226270782e+01 0 1 0 +56 0 1 0.0000000000000000e+00 2.7928060207005529e+01 3.8225341340876069e+00 1.1159114920684253e+01 0 0 0 +360 0 1 0.0000000000000000e+00 2.4040067427560992e+01 1.9124650950355193e+01 3.8879129487105790e+00 -1 0 1 +3219 0 1 0.0000000000000000e+00 1.6488713841680853e+00 3.1033945422418309e+01 2.3750285901295534e+01 0 0 -1 +515 0 1 0.0000000000000000e+00 3.0741813064256224e+01 4.8367086920589424e+00 5.3604926185527360e+00 -1 1 0 +1362 0 1 0.0000000000000000e+00 3.2340422305546454e+01 9.9029496257441600e+00 2.7461957150070752e+01 0 0 0 +317 0 1 0.0000000000000000e+00 2.5600489289249122e+01 3.4233913920315352e+01 6.9612780288813392e+00 0 -1 1 +42 0 1 0.0000000000000000e+00 2.6157597469670030e+01 2.7619060782352559e+01 3.5426713779707946e+00 0 -1 0 +578 0 1 0.0000000000000000e+00 2.3628163889023291e+01 5.8740713289384034e+00 6.3723510714506504e-01 0 1 0 +928 0 1 0.0000000000000000e+00 3.4117334242401974e+01 9.6400614927780524e+00 7.3950221524727811e+00 0 0 1 +131 0 1 0.0000000000000000e+00 2.6353970983997986e+01 3.1500725303710780e+01 1.0189975211896456e+01 0 0 0 +3084 0 1 0.0000000000000000e+00 2.9818800114341295e+00 1.0449445784399465e+01 1.2822095056585084e+01 0 0 0 +798 0 1 0.0000000000000000e+00 2.5199350328122186e+01 2.8219006600592600e+01 9.2116333093831546e+00 -1 -1 0 +152 0 1 0.0000000000000000e+00 3.2123941009159097e+01 1.2948055138116256e+01 1.2872315926241393e+01 -1 0 0 +342 0 1 0.0000000000000000e+00 2.8722699436423561e+01 1.4096627294280440e+01 3.4247884416490088e+01 -1 0 0 +654 0 1 0.0000000000000000e+00 3.0629680978927503e+01 5.0016545145546178e+00 9.2251919715466233e+00 0 1 0 +722 0 1 0.0000000000000000e+00 2.9444057221854987e+01 2.2752705199103659e+01 1.0793731701568161e+01 0 0 0 +1249 0 1 0.0000000000000000e+00 2.8933096614763102e+01 8.0887329837800372e+00 9.1519018452755585e+00 0 0 0 +617 0 1 0.0000000000000000e+00 1.0014342672705698e+00 3.2962062802945309e+00 8.4369869065623533e+00 1 1 1 +76 0 1 0.0000000000000000e+00 2.7689063179113145e+01 3.0498956497055122e+01 2.0380672871872032e+00 0 -1 0 +694 0 1 0.0000000000000000e+00 1.5138944542740063e+00 1.5434281090230879e+01 4.8419390148142067e+00 0 0 0 +96 0 1 0.0000000000000000e+00 3.2809215438784406e+01 3.2645282089162372e+01 1.0482816077936471e+01 0 -1 0 +227 0 1 0.0000000000000000e+00 2.7604561364534781e+01 2.2518419786797438e+01 1.6379288417082591e+01 0 0 -1 +329 0 1 0.0000000000000000e+00 2.6752180499311891e+01 1.6868015494177911e+01 1.1889780932507511e+01 0 -1 0 +1186 0 1 0.0000000000000000e+00 3.0952890825859225e+01 6.4501515736175463e+00 1.2261968193953381e+01 0 0 0 +476 0 1 0.0000000000000000e+00 3.2700555921271899e+01 2.0446819320027361e+00 1.6312151213537955e+01 0 0 1 +279 0 1 0.0000000000000000e+00 2.6112224895996022e+01 1.0468406242251540e+01 1.0012091754004523e+01 0 0 0 +575 0 1 0.0000000000000000e+00 2.7241905940067838e+01 5.5039363705768958e+00 1.7799531866077380e+01 0 1 0 +1005 0 1 0.0000000000000000e+00 2.4518397389694830e+01 1.6529090625580832e+01 1.5222466304568925e+01 0 1 0 +115 0 1 0.0000000000000000e+00 2.9609725924252405e+01 1.4630713437781955e+01 6.1715892295764876e+00 0 0 0 +709 0 1 0.0000000000000000e+00 3.0487638339622734e+01 2.0750045050235322e+01 1.4525933301725651e+01 1 -1 0 +590 0 1 0.0000000000000000e+00 2.6990330450376590e+01 7.0224713666999046e+00 1.2303298997305721e+01 0 1 1 +1426 0 1 0.0000000000000000e+00 3.1212442866284970e+01 1.6710243918511949e+01 2.9983938335954594e+01 0 0 0 +488 0 1 0.0000000000000000e+00 2.7755711246857548e+01 4.6173261482876899e+00 3.0835179665603514e+00 -1 0 1 +625 0 1 0.0000000000000000e+00 2.6567361876708830e+01 3.0990216315184998e+01 3.3198474503103171e+01 0 0 -1 +213 0 1 0.0000000000000000e+00 2.6195858180885121e+01 2.0985164287086288e+01 1.8532918636024449e+00 0 0 0 +735 0 1 0.0000000000000000e+00 3.1839000782528029e+01 2.3805051523567620e+01 2.5064073298044960e+00 0 0 0 +265 0 1 0.0000000000000000e+00 3.4316526265394160e+01 4.3785414233692119e+00 2.1283079691165508e+01 -1 0 0 +391 0 1 0.0000000000000000e+00 2.9528804655642759e+01 1.7845260529696034e+01 2.3606498959629395e+01 -1 0 0 +999 0 1 0.0000000000000000e+00 1.7258495272227787e+01 3.3743124151718074e-01 9.4427965069403648e+00 0 1 1 +598 0 1 0.0000000000000000e+00 2.6146847005008919e+01 1.8553387352635621e+01 2.6093495477694812e+01 0 0 0 +453 0 1 0.0000000000000000e+00 2.6285862252769309e+01 1.7370799641594967e+01 8.0738450229786434e+00 0 -1 1 +287 0 1 0.0000000000000000e+00 2.3955793491619197e+01 8.4153791570402880e+00 1.2062638510609959e+01 0 0 0 +119 0 1 0.0000000000000000e+00 3.1759141429475477e+01 1.3049596826999851e+01 9.5388823817522965e+00 0 -1 1 +538 0 1 0.0000000000000000e+00 3.2123647881338712e+01 2.3702628927586563e+01 5.9946337461132639e+00 0 0 0 +554 0 1 0.0000000000000000e+00 4.8572630371995347e+00 1.9270361024346119e+01 2.2054035755020305e+01 0 0 -1 +1427 0 1 0.0000000000000000e+00 3.1784044242569831e+01 1.3837915966425641e+01 2.7457773006862425e+01 0 0 0 +4060 0 1 0.0000000000000000e+00 6.8636025919143844e+00 1.5585168731725780e+01 2.7620313112166627e+01 0 0 0 +636 0 1 0.0000000000000000e+00 1.1466823521668699e+00 7.1553037389951450e+00 1.1708526454393489e+01 0 0 0 +714 0 1 0.0000000000000000e+00 3.2969846979550347e+01 2.2010681932417466e+01 3.3711858286595636e+01 0 0 -1 +1377 0 1 0.0000000000000000e+00 2.8697657533006375e+01 7.5079096271105961e+00 2.3898715035640361e+01 0 0 0 +125 0 1 0.0000000000000000e+00 2.4408852600803339e+00 5.8222863321173683e+00 2.6546345198393219e+01 1 0 0 +431 0 1 0.0000000000000000e+00 3.3894937558670421e+01 2.2203641687684968e+01 1.7079352751223830e+01 -1 0 0 +40 0 1 0.0000000000000000e+00 3.3063688805541950e+01 1.4820307266637231e+01 6.2755146249803335e+00 -1 0 0 +885 0 1 0.0000000000000000e+00 2.5594102641429211e+00 2.2136561537391440e+01 3.4537386366290629e-01 1 0 1 +669 0 1 0.0000000000000000e+00 7.7148219699651865e-01 1.1899932214044226e+01 3.9791447063605885e+00 0 0 0 +468 0 1 0.0000000000000000e+00 3.3177977175656352e+01 1.1926087531466500e+01 1.8930968502926930e+01 0 0 0 +47 0 1 0.0000000000000000e+00 3.2485333837827326e+01 7.4135261080374262e+00 2.4241166266197151e+01 -1 0 -1 +650 0 1 0.0000000000000000e+00 3.2815525520876797e+01 9.1291216004280837e+00 3.1063546810660473e+01 -1 1 -1 +211 0 1 0.0000000000000000e+00 3.3686741421718168e+01 3.0988411925570819e+01 6.8508831222342321e+00 0 -1 1 +1986 0 1 0.0000000000000000e+00 3.4144313852228869e+01 1.8971297258482625e+01 3.1813230235600589e+01 0 0 0 +386 0 1 0.0000000000000000e+00 3.4158996820100143e+01 1.2060898927636098e+01 3.0645871929001359e+01 0 0 0 +728 0 1 0.0000000000000000e+00 3.4368456521144374e+01 8.7011764865944539e+00 4.0644939673457117e+00 0 1 0 +1458 0 1 0.0000000000000000e+00 3.4119335717433827e+01 1.3466462893836539e+01 2.4945928893084819e+01 0 0 0 +412 0 1 0.0000000000000000e+00 3.3841731533948895e+01 1.5699541376228476e+01 3.1148765393191669e+00 0 -1 1 +751 0 1 0.0000000000000000e+00 2.8886317121076810e-01 7.0874363323366039e+00 2.3648781159162979e+01 0 1 0 +1714 0 1 0.0000000000000000e+00 3.4144766047346337e+01 2.9768895881309548e-01 1.3211376740031838e+01 0 1 0 +166 0 1 0.0000000000000000e+00 3.3958308301228698e+01 8.6489592086370752e+00 4.6217981020974991e-01 -1 0 0 +67 0 1 0.0000000000000000e+00 3.3996559793418925e+01 3.4906309827651527e+00 1.2009325376665609e+01 0 0 0 +692 0 1 0.0000000000000000e+00 3.4388460739720692e+01 5.6502233768521553e+00 5.1900618598281270e+00 1 1 0 +151 0 1 0.0000000000000000e+00 3.4052188565923679e+01 2.9418531327640430e+01 2.6279246250972044e+01 0 0 0 +1124 0 1 0.0000000000000000e+00 3.3860109692947560e+01 2.7898452985447144e+00 7.8187890654368202e+00 0 0 0 +1315 0 1 0.0000000000000000e+00 3.4555185248418056e+01 8.8202119220806914e+00 2.0523439382589761e+01 0 0 0 +935 0 1 0.0000000000000000e+00 3.4322675413118603e+01 3.4521398637190437e+01 2.1307955158533836e+01 -1 -1 0 +1105 0 1 0.0000000000000000e+00 3.3340355066696517e+01 3.3424149445980788e+01 2.4997860448670323e+01 0 -1 -1 +446 0 1 0.0000000000000000e+00 4.4234838485460848e-01 1.5523483802875212e+01 1.8141071441826885e+01 0 0 0 +3868 0 1 0.0000000000000000e+00 6.1295241062261831e-03 1.8318573111060992e+01 2.4541688795840120e+01 0 0 0 +3276 0 1 0.0000000000000000e+00 2.6790846619250774e-01 2.4658015190974805e+01 3.1837296107738993e+01 0 -1 0 +434 0 1 0.0000000000000000e+00 2.9970291866072207e-01 3.1010704112934064e+01 1.0865252552657594e+00 1 -1 0 +1443 0 1 0.0000000000000000e+00 3.4572459814797050e+01 1.0279997902305103e+01 2.3984753387830828e+01 0 0 0 +3922 0 1 0.0000000000000000e+00 5.7854907741811701e-01 8.9160310957376279e+00 3.3496476834349167e+01 0 0 0 +926 0 1 0.0000000000000000e+00 2.4163695622838813e-01 2.6219069374104254e-01 2.4021302091491808e+01 0 1 0 +298 0 1 0.0000000000000000e+00 1.4015248946752212e-01 1.4648094860215540e+01 3.4098887990076499e+01 0 0 -1 +3448 0 1 0.0000000000000000e+00 2.0045687792685563e-02 3.2952075607699364e+01 2.7274767434028927e+01 0 0 0 +1043 0 1 0.0000000000000000e+00 3.9532628266017674e+01 8.5134434629144042e+00 3.3399151184954960e+01 0 0 -1 +1033 0 1 0.0000000000000000e+00 5.1400228709459782e+01 3.4006407391665050e+01 3.3628910306589880e+01 0 -1 -1 +1927 0 1 0.0000000000000000e+00 4.7812150462992108e+01 1.6943499878189865e+01 2.5791267653791483e+01 0 0 0 +1799 0 1 0.0000000000000000e+00 4.7395442243574941e+01 1.8296172070896475e+01 1.6835603085744584e+01 0 0 0 +1029 0 1 0.0000000000000000e+00 4.1226282886756486e+01 3.3421480937639934e+01 4.6065966524528412e-01 0 -1 0 +1511 0 1 0.0000000000000000e+00 5.0318123866056062e+01 1.1173372568912860e+01 2.7515648711118171e+01 0 0 0 +1510 0 1 0.0000000000000000e+00 4.5373541084094839e+01 1.0634746305979061e+01 3.1737820089964369e+01 0 0 0 +1509 0 1 0.0000000000000000e+00 4.2687447687352673e+01 9.2002133159324266e+00 2.9250638798674281e+01 0 0 0 +1508 0 1 0.0000000000000000e+00 4.1059818585039203e+01 1.4465063306093180e+01 2.8191322712542789e+01 0 0 0 +1507 0 1 0.0000000000000000e+00 3.8653107525210061e+01 3.6981652947455799e+00 2.4938039242244308e+01 0 0 0 +1506 0 1 0.0000000000000000e+00 3.8235634456559396e+01 7.9592435133147053e+00 2.5585260111971149e+01 0 0 0 +1496 0 1 0.0000000000000000e+00 4.9831836061640843e+01 6.5757231741318458e+00 3.1544427211512776e+01 0 0 0 +1495 0 1 0.0000000000000000e+00 4.7583154437139505e+01 4.9924560947817049e+00 2.9341757774629006e+01 0 0 0 +1494 0 1 0.0000000000000000e+00 4.4158209833587200e+01 6.8617025435879944e+00 3.1252969899857852e+01 0 0 0 +1493 0 1 0.0000000000000000e+00 4.3937834985382082e+01 4.1926982614160133e+00 2.9080134561337367e+01 0 0 0 +1492 0 1 0.0000000000000000e+00 4.0999233944870738e+01 2.1243140777861771e+00 2.7514274650952810e+01 0 0 0 +1923 0 1 0.0000000000000000e+00 3.7988389910575471e+01 1.4270360610575583e+01 1.9032525522919791e+01 0 0 0 +1425 0 1 0.0000000000000000e+00 3.5357346474856264e+01 8.2575895545298170e+00 2.8305911961985572e+01 0 0 0 +1842 0 1 0.0000000000000000e+00 3.7397969147210510e+01 2.7786964799459248e+01 1.7064766845862714e+01 0 0 0 +1522 0 1 0.0000000000000000e+00 3.7468117649435001e+01 1.8575029293137266e+01 3.2716175164359498e+01 0 0 0 +148 0 1 0.0000000000000000e+00 3.6870465416913127e+01 2.1859159912023105e+00 1.4270680998918035e+01 0 0 0 +1797 0 1 0.0000000000000000e+00 4.2627685717207022e+01 1.7754737655263760e+01 1.5953537430574476e+01 0 0 0 +1480 0 1 0.0000000000000000e+00 4.9037284083723691e+01 3.0164199084175536e+00 3.2156989802090813e+01 0 0 0 +1524 0 1 0.0000000000000000e+00 4.1496075145868076e+01 1.8856568930340678e+01 3.2817475034267147e+01 0 0 0 +1478 0 1 0.0000000000000000e+00 4.7958543012452793e+01 1.5469818896103230e-01 2.9982503188288632e+01 0 0 0 +1525 0 1 0.0000000000000000e+00 4.0802630114892708e+01 1.1347450417160447e+01 2.7755271406879899e+01 0 0 0 +1476 0 1 0.0000000000000000e+00 4.4627308293242180e+01 3.2331437001048322e+01 2.7036332886978343e+01 0 -1 0 +929 0 1 0.0000000000000000e+00 3.4786442654551550e+01 3.0180225415259269e+01 3.0221022014316056e+01 0 0 0 +1465 0 1 0.0000000000000000e+00 5.2914483568319461e+01 1.2860701619298478e+01 2.6178168678426552e+01 0 0 0 +1464 0 1 0.0000000000000000e+00 5.0427870511547439e+01 1.5014156943716701e+01 2.7707667760204483e+01 0 0 0 +1463 0 1 0.0000000000000000e+00 4.5518140518738008e+01 1.5060540655664504e+01 2.4199593398246261e+01 0 0 0 +1462 0 1 0.0000000000000000e+00 4.8394933278039161e+01 1.3486686647969201e+01 2.9792301567987050e+01 0 0 0 +1461 0 1 0.0000000000000000e+00 4.3435790078302453e+01 1.2556373484243796e+01 2.5440291219573567e+01 0 0 0 +1460 0 1 0.0000000000000000e+00 3.9721320965594444e+01 1.7151182223781536e+01 2.9854662871989326e+01 0 0 0 +1459 0 1 0.0000000000000000e+00 3.8473568957019651e+01 9.0760496036403815e+00 2.2308596820426523e+01 0 0 0 +49 0 1 0.0000000000000000e+00 3.6400054749103724e+01 3.1729814677801837e+01 1.0523551155918440e+01 0 -1 0 +1449 0 1 0.0000000000000000e+00 5.2526805154890020e+01 8.8463438522734830e+00 2.5790312620121618e+01 0 0 0 +1448 0 1 0.0000000000000000e+00 4.7420355109101060e+01 1.3060573911491463e+01 2.6155686474793711e+01 0 0 0 +1447 0 1 0.0000000000000000e+00 4.7732576395134174e+01 9.1067559761000574e+00 2.5919719812670703e+01 0 0 0 +1446 0 1 0.0000000000000000e+00 4.5109372501971045e+01 1.0676510606331357e+01 2.7942556428977223e+01 0 0 0 +1445 0 1 0.0000000000000000e+00 4.1274645881126098e+01 6.0805132786319387e+00 2.6682581316808442e+01 0 0 0 +1444 0 1 0.0000000000000000e+00 4.0692051207061546e+01 6.1908975271457392e+00 2.2982378813214225e+01 0 0 0 +244 0 1 0.0000000000000000e+00 3.4628218149578096e+01 2.4941758874170670e+01 3.8571288039314182e+00 0 -1 0 +6 0 1 0.0000000000000000e+00 3.5192410070823740e+01 1.0100522414804288e+01 1.3248650310103180e+01 -1 0 -1 +1433 0 1 0.0000000000000000e+00 5.1970337803935877e+01 4.8988943278060999e+00 2.5139043285859490e+01 0 0 0 +1432 0 1 0.0000000000000000e+00 5.0073102518488511e+01 7.1804989376627493e+00 2.7409798615827164e+01 0 0 0 +1431 0 1 0.0000000000000000e+00 4.4936107923228967e+01 7.3367087882807409e+00 2.3881733932536367e+01 0 0 0 +1430 0 1 0.0000000000000000e+00 4.7721808526677542e+01 8.2595988034387968e+00 2.9623830810887586e+01 0 0 0 +1429 0 1 0.0000000000000000e+00 4.5080633602575105e+01 6.7602692415448855e+00 2.7320723194831601e+01 0 0 0 +338 0 1 0.0000000000000000e+00 3.6602274360544847e+01 1.5066152177919767e+01 5.5341367122520007e+00 0 0 1 +1650 0 1 0.0000000000000000e+00 3.9756286271266063e+01 3.0103951040055833e+01 8.3353042378357927e+00 0 0 0 +1394 0 1 0.0000000000000000e+00 3.5529197726720007e+01 1.7145534475688784e+01 1.7399190804296733e+01 0 0 0 +255 0 1 0.0000000000000000e+00 3.6988439993168797e+01 1.5481997998913124e+01 1.2599672125265016e+00 0 -1 0 +1526 0 1 0.0000000000000000e+00 4.1416211754537997e+01 1.4903295367456378e+01 3.2052776372621679e+01 0 0 0 +1527 0 1 0.0000000000000000e+00 4.3233746262615561e+01 1.3150675343344131e+01 3.0011476095110901e+01 0 0 0 +1528 0 1 0.0000000000000000e+00 5.2545664524320202e+01 1.3273410511778723e+01 3.0164305317652666e+01 0 0 0 +1416 0 1 0.0000000000000000e+00 4.7938691342350893e+01 4.5795817593462722e+00 2.5601990864617875e+01 0 0 0 +1414 0 1 0.0000000000000000e+00 4.3203821156700855e+01 4.1809277018096616e+00 2.5160737832569314e+01 0 0 0 +1412 0 1 0.0000000000000000e+00 4.3585249946042481e+01 4.9258182560018121e-01 2.5359325930357578e+01 0 0 0 +1505 0 1 0.0000000000000000e+00 3.8913554176442503e+01 8.7581828101385497e+00 2.9824032451865143e+01 0 0 0 +80 0 1 0.0000000000000000e+00 3.7653011953292037e+01 9.7179042456112708e+00 1.2490303101942735e+00 -1 0 1 +1401 0 1 0.0000000000000000e+00 5.1996631800235882e+01 1.2949485012028022e+01 2.0974075560264883e+01 0 0 0 +1400 0 1 0.0000000000000000e+00 4.9905994752703393e+01 1.4814304631834824e+01 2.3826636866240786e+01 0 0 0 +1399 0 1 0.0000000000000000e+00 4.6610387851140352e+01 1.3677391485892315e+01 2.0722189023326457e+01 0 0 0 +1398 0 1 0.0000000000000000e+00 4.5236302682856774e+01 1.5235076305450933e+01 2.7643962965399020e+01 0 0 0 +1397 0 1 0.0000000000000000e+00 4.4462888166917516e+01 1.6031394547621897e+01 1.8232457048902450e+01 0 0 0 +1396 0 1 0.0000000000000000e+00 3.9353907498483487e+01 1.2529167446351652e+01 2.1713868499181800e+01 0 0 0 +680 0 1 0.0000000000000000e+00 3.6921912967601990e+01 2.7866051572147050e+01 3.1960999021377241e+01 -1 1 -1 +1667 0 1 0.0000000000000000e+00 3.5028331546624685e+01 2.1996639108619760e+01 1.5443564224966637e+00 0 0 0 +1385 0 1 0.0000000000000000e+00 5.1762828181276099e+01 8.9228654392530409e+00 2.1132442478379389e+01 0 0 0 +1384 0 1 0.0000000000000000e+00 4.9499552163726385e+01 1.1194153005115007e+01 2.3342953101112538e+01 0 0 0 +1383 0 1 0.0000000000000000e+00 4.7265217252328490e+01 8.9512481687179335e+00 2.0846862183774732e+01 0 0 0 +1382 0 1 0.0000000000000000e+00 4.5857437656526052e+01 1.1763049056416950e+01 2.3191918688583844e+01 0 0 0 +1381 0 1 0.0000000000000000e+00 4.3150559971882771e+01 3.9363466464095125e+00 2.0917285267765504e+01 0 0 0 +1380 0 1 0.0000000000000000e+00 4.2286042377789599e+01 8.7435507861167530e+00 2.1011515350080447e+01 0 0 0 +1379 0 1 0.0000000000000000e+00 3.8605442855488306e+01 1.1895550351663074e+01 2.5275872798315827e+01 0 0 0 +1345 0 1 0.0000000000000000e+00 3.8708816632601810e+01 3.4490919448611081e+01 2.0844649129824791e+01 0 -1 0 +2018 0 1 0.0000000000000000e+00 3.9042950020549000e+01 3.0300808993126154e+01 3.4000880966247088e+01 0 0 0 +1369 0 1 0.0000000000000000e+00 5.1139415438783438e+01 4.0908627730054539e+00 2.1669991535401163e+01 0 0 0 +1368 0 1 0.0000000000000000e+00 4.9438193405512742e+01 7.3945971029015762e+00 2.3359382852448284e+01 0 0 0 +1367 0 1 0.0000000000000000e+00 4.6828013561194837e+01 5.2888980497387381e+00 2.2210698092135310e+01 0 0 0 +1366 0 1 0.0000000000000000e+00 4.2399740665231782e+01 8.8065940523688653e+00 2.4881045927510200e+01 0 0 0 +1365 0 1 0.0000000000000000e+00 4.1058928268268993e+01 1.8310126745609259e+00 1.8686005746619632e+01 0 0 0 +1122 0 1 0.0000000000000000e+00 3.8945298917548890e+01 4.0657942592889400e+00 3.0158760479017479e+00 0 0 0 +1363 0 1 0.0000000000000000e+00 3.6564234014694698e+01 3.2946765320954341e+01 2.3027823575626403e+01 0 -1 0 +1346 0 1 0.0000000000000000e+00 3.6674847291337834e+01 1.7785068471142829e+00 2.7157783399009926e+01 0 0 0 +1352 0 1 0.0000000000000000e+00 4.9487497529198926e+01 2.3593260705994785e+00 2.3811452999772627e+01 0 0 0 +1350 0 1 0.0000000000000000e+00 4.5790701894424686e+01 1.9225505566250918e+00 2.7287208936693784e+01 0 0 0 +1512 0 1 0.0000000000000000e+00 4.8966809188974253e+01 1.0713486271878409e+01 3.1638180856693602e+01 0 0 0 +1348 0 1 0.0000000000000000e+00 4.0892338128897393e+01 1.8474240514477993e+00 2.2988163706031365e+01 0 0 0 +1153 0 1 0.0000000000000000e+00 3.7144588022735213e+01 3.2944115953177118e+01 1.4486476547642764e+00 0 -1 0 +1543 0 1 0.0000000000000000e+00 4.8320040351168039e+01 1.7307736700749771e+01 3.3938073151476978e+01 0 0 -1 +1336 0 1 0.0000000000000000e+00 4.9292099508948290e+01 1.5540567636984363e+01 1.8587114916261623e+01 0 0 0 +1513 0 1 0.0000000000000000e+00 5.1482309864919095e+01 9.1883962339811216e+00 3.0024040633663514e+01 0 0 0 +1334 0 1 0.0000000000000000e+00 4.3551217838871359e+01 1.3492779742405602e+01 1.6206933342698637e+01 0 0 0 +1063 0 1 0.0000000000000000e+00 4.7583161980658531e+01 8.0820941783399665e+00 3.3587972807546599e+01 0 0 -1 +1332 0 1 0.0000000000000000e+00 4.1374915312233036e+01 1.3757838189497512e+01 1.8968627053530728e+01 0 0 0 +1330 0 1 0.0000000000000000e+00 3.7998171119507113e+01 1.9053183033181309e+01 1.9210086094985261e+01 0 0 0 +1320 0 1 0.0000000000000000e+00 4.9742726355544079e+01 1.1130772959906549e+01 1.9200796301456581e+01 0 0 0 +1318 0 1 0.0000000000000000e+00 4.4605170888792109e+01 1.1285095468379659e+01 1.9498113787726336e+01 0 0 0 +1349 0 1 0.0000000000000000e+00 4.3538112151058151e+01 2.0336542291204215e-01 2.1684688453217515e+01 0 0 0 +1316 0 1 0.0000000000000000e+00 4.2654442831009135e+01 1.1706008285643128e+01 2.2527852907847844e+01 0 0 0 +1314 0 1 0.0000000000000000e+00 3.7421670145928523e+01 1.1022899645980912e+01 1.8685874749444416e+01 0 0 0 +1047 0 1 0.0000000000000000e+00 4.5556438178729842e+01 2.9464716342360386e+00 3.1606708043713532e+01 0 0 -1 +1987 0 1 0.0000000000000000e+00 3.6777211852032053e+01 2.3468937435826948e+01 2.3614446013546175e+01 0 0 0 +1479 0 1 0.0000000000000000e+00 4.9792834342322443e+01 2.0083737506955703e+00 2.7461331394502082e+01 0 0 0 +1304 0 1 0.0000000000000000e+00 4.9150383675474487e+01 6.3855359919946686e+00 1.8978996037196659e+01 0 0 0 +1989 0 1 0.0000000000000000e+00 3.8192359554753679e+01 1.2451758531446197e+01 3.0431117306004204e+01 0 0 0 +1302 0 1 0.0000000000000000e+00 3.8982232143029378e+01 8.1650190710510095e+00 1.2339517894883937e+01 0 0 0 +1300 0 1 0.0000000000000000e+00 3.7844020832612813e+01 7.6908470847286949e+00 1.8977417981844628e+01 0 0 0 +1049 0 1 0.0000000000000000e+00 5.1985265127307159e+01 4.8696714877609830e+00 3.3929814516150785e+01 0 0 -1 +998 0 1 0.0000000000000000e+00 3.4742495998206721e+01 2.4939415894807063e+01 7.7049327752342869e+00 -1 0 0 +1285 0 1 0.0000000000000000e+00 4.3587398021366013e+01 3.4268527927284225e+01 1.6248954299036090e+01 0 -1 0 +1415 0 1 0.0000000000000000e+00 4.7335123447651803e+01 3.3740068578983610e+01 2.5839138614070826e+01 0 -1 0 +1351 0 1 0.0000000000000000e+00 4.7897395370378909e+01 1.5378859682845952e-01 2.1128338138077449e+01 0 0 0 +1288 0 1 0.0000000000000000e+00 4.8748309063897466e+01 2.8792485684435518e+00 1.9371601050535453e+01 0 0 0 +1286 0 1 0.0000000000000000e+00 4.4892275744443737e+01 1.7310309413479115e+00 1.8939842411228476e+01 0 0 0 +1284 0 1 0.0000000000000000e+00 3.8290844744126034e+01 3.2791668828255767e+00 2.1192471885503405e+01 0 0 0 +1233 0 1 0.0000000000000000e+00 3.5133358673501434e+01 9.3818375918773480e+00 1.6928527435794411e+01 0 0 0 +1413 0 1 0.0000000000000000e+00 4.1179275175432331e+01 3.2601867184507682e+01 2.3166950879068118e+01 0 -1 0 +1925 0 1 0.0000000000000000e+00 4.1282585814790025e+01 1.4619340586920320e+01 2.4061703311707856e+01 0 0 0 +1027 0 1 0.0000000000000000e+00 4.1368057142606496e+01 3.2537801004047644e+01 3.1688396725818212e+01 0 -1 -1 +463 0 1 0.0000000000000000e+00 3.5119708584807299e+01 3.4487438141487537e+01 7.7141649897593680e+00 0 -1 0 +1411 0 1 0.0000000000000000e+00 3.8966167106733401e+01 8.4449451826578717e-02 2.4898918176607090e+01 0 0 0 +1477 0 1 0.0000000000000000e+00 4.0744775836883996e+01 3.2580583658086077e+01 2.6958891182579382e+01 0 -1 0 +1555 0 1 0.0000000000000000e+00 4.0584000075234755e+01 1.6312859399017615e+01 5.1755384750417033e-01 0 0 0 +1794 0 1 0.0000000000000000e+00 4.0279316194457770e+01 2.0354829621500048e+01 1.6910953264381977e+01 0 0 0 +1796 0 1 0.0000000000000000e+00 3.9309615098021951e+01 1.2885438021403282e+01 1.5778936336104490e+01 0 0 0 +1798 0 1 0.0000000000000000e+00 4.7391895703542389e+01 2.2055991533719546e+01 2.0943521178572944e+01 0 0 0 +1800 0 1 0.0000000000000000e+00 4.9890143607562614e+01 1.9156380010971674e+01 1.9494192379310178e+01 0 0 0 +58 0 1 0.0000000000000000e+00 3.5523151416981904e+01 2.1568176208079883e+01 2.0915130487181159e+01 -1 0 0 +1863 0 1 0.0000000000000000e+00 4.7773570810693492e+01 1.6909576473258717e+01 2.1518818196285221e+01 0 0 0 +961 0 1 0.0000000000000000e+00 3.6966914747874938e+01 1.8571125025732869e+01 2.8775452717541306e+01 0 0 0 +1587 0 1 0.0000000000000000e+00 4.1087080450475575e+01 2.7965279749862173e+01 1.0686442500880540e+01 0 0 0 +1814 0 1 0.0000000000000000e+00 4.5578647288740129e+01 2.4336399916017562e+01 1.8828090100866088e+01 0 0 0 +1816 0 1 0.0000000000000000e+00 5.0918637242950538e+01 2.4757704294761865e+01 1.8701555738165439e+01 0 0 0 +1813 0 1 0.0000000000000000e+00 4.4847398674349186e+01 1.9039858359115875e+01 1.9969426575258268e+01 0 0 0 +1777 0 1 0.0000000000000000e+00 3.7397680252840807e+01 2.8245199772446288e+01 1.0551844707512897e+01 0 0 0 +1826 0 1 0.0000000000000000e+00 3.6957215080367291e+01 2.3164236304460015e+01 1.8253338042880877e+01 0 0 0 +1828 0 1 0.0000000000000000e+00 4.0742828790951613e+01 2.8413920807946177e+01 1.8186570335153970e+01 0 0 0 +1993 0 1 0.0000000000000000e+00 5.2128910109286728e+01 1.7644580961173446e+01 2.9626330287254493e+01 0 0 0 +1830 0 1 0.0000000000000000e+00 4.7962773505657410e+01 2.5802986724488271e+01 1.6799542337031120e+01 0 0 0 +1832 0 1 0.0000000000000000e+00 5.0093381427914522e+01 2.7936376636754250e+01 1.9187215357677402e+01 0 0 0 +1845 0 1 0.0000000000000000e+00 4.5343053764671907e+01 2.8297073145904687e+01 1.8845758142571462e+01 0 0 0 +78 0 1 0.0000000000000000e+00 3.4905087395573531e+01 1.2675949935286223e+01 1.0110500056577887e+00 0 0 0 +1844 0 1 0.0000000000000000e+00 4.1206718310847130e+01 3.2634375375287817e+01 1.9011072678323043e+01 0 0 0 +1846 0 1 0.0000000000000000e+00 4.4973161285263899e+01 3.2241256552578932e+01 1.9589247135982781e+01 0 0 0 +1848 0 1 0.0000000000000000e+00 4.9651996458530547e+01 3.2455961195707125e+01 1.9086402589830396e+01 0 0 0 +61 0 1 0.0000000000000000e+00 4.1112586563367458e+01 3.2987435271218011e+01 6.4237183364607366e+00 0 -1 0 +1858 0 1 0.0000000000000000e+00 4.1163111883360266e+01 2.4252226634043431e+01 1.8472943212542297e+01 0 0 0 +1860 0 1 0.0000000000000000e+00 4.1649294405858043e+01 1.9256209070346095e+01 2.3383725825703578e+01 0 0 0 +1862 0 1 0.0000000000000000e+00 4.5054717789200360e+01 1.9145049910400800e+01 2.3501624662114263e+01 0 0 0 +1864 0 1 0.0000000000000000e+00 4.9399782814653356e+01 1.9634060558074253e+01 2.3767244506943545e+01 0 0 0 +2041 0 1 0.0000000000000000e+00 5.2369851745542995e+01 2.9570725936564148e+01 2.9539519215411616e+01 0 0 0 +156 0 1 0.0000000000000000e+00 3.5089467105815032e+01 2.5570132401323683e+01 1.1710541020354706e+01 -1 0 -1 +2040 0 1 0.0000000000000000e+00 4.9131133960965926e+01 3.1491217013329319e+01 3.1308814493059952e+01 0 0 0 +1874 0 1 0.0000000000000000e+00 3.7194536322878719e+01 1.4830159639331788e+01 2.3614476943727922e+01 0 0 0 +1875 0 1 0.0000000000000000e+00 4.1615229103874114e+01 1.8726029157424104e+01 1.9680716377330473e+01 0 0 0 +1876 0 1 0.0000000000000000e+00 4.3401403120414273e+01 2.2396681075235282e+01 2.1089872266899185e+01 0 0 0 +1877 0 1 0.0000000000000000e+00 4.3349363138404478e+01 2.6336058734122695e+01 1.6458150758010223e+01 0 0 0 +1878 0 1 0.0000000000000000e+00 4.3578100366614109e+01 2.1818261768395207e+01 1.7623136056518526e+01 0 0 0 +1879 0 1 0.0000000000000000e+00 4.5851166488693757e+01 2.4054872738607337e+01 2.3322774032128216e+01 0 0 0 +1880 0 1 0.0000000000000000e+00 4.9512063365795065e+01 2.3401143865349166e+01 2.3250931462311243e+01 0 0 0 +1881 0 1 0.0000000000000000e+00 5.0991918575748592e+01 2.1763524338294776e+01 2.1127875886829660e+01 0 0 0 +1890 0 1 0.0000000000000000e+00 3.9623301482130785e+01 2.5294922770037598e+01 3.2982338325943992e+01 0 0 0 +1891 0 1 0.0000000000000000e+00 3.9821960147862953e+01 2.4891186664396990e+01 1.5225589949613964e+01 0 0 0 +1892 0 1 0.0000000000000000e+00 4.0774766228453252e+01 2.7541180380637321e+01 2.2856559656765945e+01 0 0 0 +1893 0 1 0.0000000000000000e+00 4.3064175194254759e+01 2.6209827712474446e+01 2.0533624710407935e+01 0 0 0 +1894 0 1 0.0000000000000000e+00 4.5080607755190158e+01 2.8578447181862170e+01 2.2860573361292744e+01 0 0 0 +1895 0 1 0.0000000000000000e+00 4.7547984935282621e+01 2.6555361205963248e+01 2.1457513644917757e+01 0 0 0 +1896 0 1 0.0000000000000000e+00 5.0285950147689029e+01 2.7854948712714897e+01 2.2943639763637254e+01 0 0 0 +1897 0 1 0.0000000000000000e+00 5.2424287584740014e+01 2.5655653716503014e+01 2.1689142051720886e+01 0 0 0 +1906 0 1 0.0000000000000000e+00 3.6372972681443791e+01 3.2519002622754272e+01 1.4026028673827819e+01 0 0 0 +1907 0 1 0.0000000000000000e+00 4.3248438155422171e+01 3.0309694754893258e+01 1.6958023033547413e+01 0 0 0 +1908 0 1 0.0000000000000000e+00 3.5295922018318166e+01 2.8442657250002554e+01 1.9963244063584053e+01 0 0 0 +1909 0 1 0.0000000000000000e+00 4.2870691570076247e+01 2.9827219884821567e+01 2.0652190697601448e+01 0 0 0 +1910 0 1 0.0000000000000000e+00 4.5352836814325805e+01 3.1901820832205662e+01 2.3475671588490908e+01 0 0 0 +1911 0 1 0.0000000000000000e+00 4.7650818286809056e+01 3.0732873382874246e+01 2.1305936999686075e+01 0 0 0 +1912 0 1 0.0000000000000000e+00 5.0214003547422585e+01 3.2671086166516929e+01 2.2986594868087430e+01 0 0 0 +1913 0 1 0.0000000000000000e+00 5.2006810247311925e+01 3.0352264718839059e+01 2.0935073607890779e+01 0 0 0 +2025 0 1 0.0000000000000000e+00 5.2109910376459950e+01 2.5937097072209863e+01 2.9127210666671704e+01 0 0 0 +1812 0 1 0.0000000000000000e+00 3.7120334549400042e+01 2.7990912384685654e+01 1.3570061337964407e+01 0 0 0 +1924 0 1 0.0000000000000000e+00 4.1775551971474094e+01 1.9539074614687497e+01 2.8221597462138654e+01 0 0 0 +2024 0 1 0.0000000000000000e+00 5.0253390998714501e+01 2.7767180350085177e+01 3.1453830889301191e+01 0 0 0 +1926 0 1 0.0000000000000000e+00 4.5654561184076371e+01 1.9266729259122865e+01 2.7923704558622415e+01 0 0 0 +2039 0 1 0.0000000000000000e+00 4.7747466141503480e+01 3.0274734375700746e+01 2.8609441222987240e+01 0 0 0 +1928 0 1 0.0000000000000000e+00 4.7386808646338210e+01 2.1777306175279868e+01 2.9836614218648542e+01 0 0 0 +1475 0 1 0.0000000000000000e+00 3.9268045421400075e+01 3.4488840626934888e+01 2.9101536902138957e+01 0 -1 0 +2023 0 1 0.0000000000000000e+00 4.7553540361233068e+01 2.6394755142054706e+01 2.8937596186145921e+01 0 0 0 +2038 0 1 0.0000000000000000e+00 4.3531425037641611e+01 3.0246305645008960e+01 3.3786160102701032e+01 0 0 0 +1169 0 1 0.0000000000000000e+00 3.5457549534961089e+01 2.5647653059760294e+00 1.8549836439117708e+01 0 0 0 +1939 0 1 0.0000000000000000e+00 3.7607027358410278e+01 2.3655933577655325e+01 2.7874225398223022e+01 0 0 0 +1940 0 1 0.0000000000000000e+00 4.0192999788696710e+01 2.3250896921247936e+01 2.3746824886555284e+01 0 0 0 +1941 0 1 0.0000000000000000e+00 4.3079491309569640e+01 1.7250168807131672e+01 2.5816756952997988e+01 0 0 0 +1942 0 1 0.0000000000000000e+00 4.5373269748875842e+01 2.3994074774155138e+01 2.7787839067604835e+01 0 0 0 +1943 0 1 0.0000000000000000e+00 4.7282092917154479e+01 2.1724712364868754e+01 2.5754911611357155e+01 0 0 0 +1944 0 1 0.0000000000000000e+00 4.9713078154140455e+01 2.3441532746823608e+01 2.7396019224937813e+01 0 0 0 +1945 0 1 0.0000000000000000e+00 5.1581950784976343e+01 2.1117671194861895e+01 2.5771422435622735e+01 0 0 0 +1954 0 1 0.0000000000000000e+00 4.3426140682151903e+01 3.2467607792215125e-01 2.9139667034415115e+01 0 1 0 +1955 0 1 0.0000000000000000e+00 3.6389926293970937e+01 1.8741854502606849e+01 2.3254196659973598e+01 0 0 0 +1956 0 1 0.0000000000000000e+00 4.2906439665813323e+01 2.5111704875128282e+01 2.5028373320279929e+01 0 0 0 +1957 0 1 0.0000000000000000e+00 3.8700204573389414e+01 2.6296490278578219e+01 1.9986119802110778e+01 0 0 0 +1958 0 1 0.0000000000000000e+00 4.4971549283467297e+01 2.8223434890707452e+01 2.6487984535664395e+01 0 0 0 +1959 0 1 0.0000000000000000e+00 4.7578371133225794e+01 2.6135371803756975e+01 2.5729300041351561e+01 0 0 0 +1960 0 1 0.0000000000000000e+00 5.0079156489455329e+01 2.8245348205372490e+01 2.7582178934284759e+01 0 0 0 +1473 0 1 0.0000000000000000e+00 3.9046576034436328e+01 1.3228865451408289e+00 3.4336538020904094e+01 0 0 0 +1971 0 1 0.0000000000000000e+00 3.7244084693315784e+01 2.7392044951035849e+01 2.3197426044469857e+01 0 0 0 +1972 0 1 0.0000000000000000e+00 3.8742396603412139e+01 3.0088272167247535e+01 2.1112578941925662e+01 0 0 0 +1973 0 1 0.0000000000000000e+00 4.2213108348329278e+01 3.0122202059374814e+01 2.4688264695364847e+01 0 0 0 +1974 0 1 0.0000000000000000e+00 4.2867765456080008e+01 3.0215080991292105e+01 2.9784634653543318e+01 0 0 0 +1975 0 1 0.0000000000000000e+00 4.8939282587166950e+01 3.0045233989595889e+01 2.5079200590147476e+01 0 0 0 +1976 0 1 0.0000000000000000e+00 5.0109540436173198e+01 3.2735128536580305e+01 2.7128677811499198e+01 0 0 0 +1977 0 1 0.0000000000000000e+00 5.2125058959561287e+01 2.9933927951666167e+01 2.4678102174093080e+01 0 0 0 +2037 0 1 0.0000000000000000e+00 4.1439457639319023e+01 2.8220686226597611e+01 2.7378692738407516e+01 0 0 0 +214 0 1 0.0000000000000000e+00 3.5794300933246205e+01 7.1130901722351254e+00 3.2094457715099203e+01 0 0 -1 +2022 0 1 0.0000000000000000e+00 4.6171925749658300e+01 2.8595798847307261e+01 3.1406174058871940e+01 0 0 0 +1988 0 1 0.0000000000000000e+00 3.9139430357938565e+01 1.7216164768264623e+01 2.5733668922609468e+01 0 0 0 +2036 0 1 0.0000000000000000e+00 4.3820717541065576e+01 1.7753008489728581e-01 3.2690689462017623e+01 0 1 0 +1990 0 1 0.0000000000000000e+00 4.3602807018966338e+01 2.1497936490535942e+01 2.5239618694243632e+01 0 0 0 +1992 0 1 0.0000000000000000e+00 4.9641359073381061e+01 1.9501796390270560e+01 3.1937971666360554e+01 0 0 0 +1618 0 1 0.0000000000000000e+00 3.4985894994054171e+01 2.1461524439352516e+01 6.8177567903946441e+00 0 0 0 +1698 0 1 0.0000000000000000e+00 3.4783832854036483e+01 3.3715299184486604e+01 1.6772909529934374e+01 0 0 0 +1859 0 1 0.0000000000000000e+00 3.5537629389051155e+01 1.6179379175740095e+01 2.0961455363803871e+01 0 0 0 +2002 0 1 0.0000000000000000e+00 3.8213183965897599e+01 2.3766258577454291e+01 1.9599347144900960e+00 0 0 1 +2003 0 1 0.0000000000000000e+00 3.9148411653192859e+01 2.1082728947606480e+01 2.6418758704142210e+01 0 0 0 +2004 0 1 0.0000000000000000e+00 4.1861620983639071e+01 2.7897391692514727e+01 3.2023260347372222e+01 0 0 0 +2005 0 1 0.0000000000000000e+00 4.4135609419181264e+01 2.1557590172688833e+01 3.0263530328882027e+01 0 0 0 +2006 0 1 0.0000000000000000e+00 4.1718860055392987e+01 2.4072931103318641e+01 1.9458722741202701e+00 0 0 1 +2007 0 1 0.0000000000000000e+00 4.5697185249739753e+01 2.4740640443701395e+01 3.1820620247910050e+01 0 0 0 +2008 0 1 0.0000000000000000e+00 4.9447198103161483e+01 2.4431039524922067e+01 3.1150512846314026e+01 0 0 0 +123 0 1 0.0000000000000000e+00 4.1468498973763189e+01 3.2595262142710688e+01 1.0103890850994656e+01 0 -1 0 +2019 0 1 0.0000000000000000e+00 4.1601929562207765e+01 2.3551821736640619e+01 2.8091858063080210e+01 0 0 0 +2020 0 1 0.0000000000000000e+00 4.1249621349627105e+01 2.7744419145405281e+01 1.2362389582166244e+00 0 0 1 +2021 0 1 0.0000000000000000e+00 4.3899805125673680e+01 2.6711892264140726e+01 2.9564447107894019e+01 0 0 0 +1353 0 1 0.0000000000000000e+00 5.1520772137535552e+01 5.7880524173455117e-01 2.1229811038494695e+01 0 0 0 +1589 0 1 0.0000000000000000e+00 4.2792846970556411e+01 3.4314915997640931e+01 3.5775772745409213e+00 0 0 0 +1559 0 1 0.0000000000000000e+00 4.7835298596319603e+01 2.2630928197011322e+01 3.4083503613475266e+01 0 0 -1 +1815 0 1 0.0000000000000000e+00 4.5356935884389024e+01 2.0161590957000222e+01 1.4818917041619478e+01 0 0 0 +1575 0 1 0.0000000000000000e+00 4.8161040235203401e+01 2.6432299877365661e+01 3.4358230951551498e+01 0 0 -1 +1829 0 1 0.0000000000000000e+00 4.5710066317965250e+01 2.8269791606128209e+01 1.4806049952424388e+01 0 0 0 +1539 0 1 0.0000000000000000e+00 4.3466731351059934e+01 1.2899327325701183e+01 3.4280527535439056e+01 0 0 -1 +1861 0 1 0.0000000000000000e+00 4.3364566924714175e+01 1.5879146180588601e+01 2.1452910170704389e+01 0 0 0 +1991 0 1 0.0000000000000000e+00 4.7422749679155643e+01 1.6769374655192635e+01 3.0240614863160086e+01 0 0 0 +1795 0 1 0.0000000000000000e+00 4.0222063132284497e+01 1.8348524446332135e+01 1.3441845893878243e+01 0 0 0 +1538 0 1 0.0000000000000000e+00 3.9817680511298882e+01 2.1288334186205141e+01 3.8204769001894259e+00 0 0 0 +1811 0 1 0.0000000000000000e+00 3.6920421808267179e+01 1.6445180912304004e+01 1.4297318231044686e+01 0 0 0 +1540 0 1 0.0000000000000000e+00 4.3495779243173921e+01 1.7170237732308330e+01 3.0320400591525985e+01 0 0 -1 +247 0 1 0.0000000000000000e+00 3.4796408099244907e+01 2.9907694557009368e+01 1.6823123399730388e+01 -1 0 0 +1542 0 1 0.0000000000000000e+00 4.4132057271442434e+01 2.1282068151541402e+01 2.4320579200572956e-02 0 0 0 +1305 0 1 0.0000000000000000e+00 5.1141628703019386e+01 4.7606764221996354e+00 1.6974890585763003e+01 0 0 0 +1544 0 1 0.0000000000000000e+00 5.0351824204260353e+01 2.0206435980788164e+01 1.7252642413080219e+00 0 0 0 +1045 0 1 0.0000000000000000e+00 4.3150418035416358e+01 5.2232900051940918e+00 3.3868409077712982e+01 0 0 -1 +1301 0 1 0.0000000000000000e+00 4.1051492964824057e+01 6.0657779694166116e+00 1.9248367409307146e+01 0 0 0 +1335 0 1 0.0000000000000000e+00 4.6827410604118910e+01 1.3594670260204936e+01 1.6592546604455386e+01 0 0 0 +1303 0 1 0.0000000000000000e+00 4.6269284851520908e+01 4.5306969587555468e+00 1.7772223656405508e+01 0 0 0 +1057 0 1 0.0000000000000000e+00 3.6203966231265873e+01 6.0191834484354416e+00 2.4704152653872873e+00 0 0 0 +1223 0 1 0.0000000000000000e+00 4.7341182378039811e+01 2.1700914889717743e-01 1.2521732052103589e+01 0 0 0 +1321 0 1 0.0000000000000000e+00 5.1800551884239084e+01 8.7720122548604973e+00 1.7050602372000487e+01 0 0 0 +1059 0 1 0.0000000000000000e+00 4.3282047497879482e+01 9.4276462626911854e+00 3.4292285631569385e+01 0 0 -1 +1545 0 1 0.0000000000000000e+00 5.2676248999323029e+01 1.8551011194106337e+01 3.3802671749423212e+01 0 0 -1 +1671 0 1 0.0000000000000000e+00 4.7962398791333072e+01 1.7596416828204948e+01 8.6505893406729992e+00 0 0 0 +1252 0 1 0.0000000000000000e+00 3.6689553607265225e+01 6.2517782662759762e+00 1.5081112743040483e+01 0 0 0 +1985 0 1 0.0000000000000000e+00 3.5759322097531808e+01 1.2603088606864823e+01 2.1131518503324180e+01 0 0 0 +357 0 1 0.0000000000000000e+00 3.7356421224823350e+01 6.8991859109878986e+00 5.9674387292749893e+00 0 0 1 +1938 0 1 0.0000000000000000e+00 4.2303371305416178e+01 2.3913976223676713e+01 3.2141046245139584e+01 0 0 0 +1241 0 1 0.0000000000000000e+00 5.1462651607305006e+01 4.9657445335463599e+00 1.2789706099614071e+01 0 0 0 +1240 0 1 0.0000000000000000e+00 4.9087289539456172e+01 6.7635319827159304e+00 1.5175896592382406e+01 0 0 0 +1239 0 1 0.0000000000000000e+00 4.7820526468506586e+01 4.8318915089427179e+00 1.2602880680512822e+01 0 0 0 +1238 0 1 0.0000000000000000e+00 4.5182522852203540e+01 7.3997182372356365e+00 1.4543819250364558e+01 0 0 0 +2033 0 1 0.0000000000000000e+00 3.9322004505815379e+01 2.6020319409659535e+01 2.9391230525819111e+01 0 0 0 +1817 0 1 0.0000000000000000e+00 5.1490675593507554e+01 2.1224391349263833e+01 1.6982203100927602e+01 0 0 0 +1410 0 1 0.0000000000000000e+00 3.6122036304234115e+01 3.2724962186317157e+01 2.7927382577100499e+01 0 -1 0 +1541 0 1 0.0000000000000000e+00 4.5794980420885452e+01 1.4892855710547169e+01 3.2168127353873871e+01 0 0 -1 +1593 0 1 0.0000000000000000e+00 5.1575628806708778e+01 3.0532427469906544e+01 3.3864575808430772e+01 0 0 -1 +1609 0 1 0.0000000000000000e+00 5.2294601414067316e+01 1.7801532884048076e+01 4.1693475527279862e+00 0 0 0 +1097 0 1 0.0000000000000000e+00 5.1520725889074363e+01 6.2039051268955037e-02 4.1590470086233600e+00 0 0 0 +1161 0 1 0.0000000000000000e+00 5.1970670021735813e+01 5.6698174259530243e-01 8.6601053044145591e+00 0 0 0 +1571 0 1 0.0000000000000000e+00 3.8920703386971596e+01 3.0292338232492419e+01 2.9817004764620506e+01 0 0 -1 +1225 0 1 0.0000000000000000e+00 5.1939540072480654e+01 3.4481068153753242e+01 1.2903369204397732e+01 0 -1 0 +1095 0 1 0.0000000000000000e+00 4.7609123500483697e+01 1.9765927934220348e-01 4.1296775663338172e+00 0 0 0 +1733 0 1 0.0000000000000000e+00 4.1437840143984751e+01 1.9635177725757266e+01 9.3760695493566004e+00 0 0 0 +1557 0 1 0.0000000000000000e+00 4.3928732908314160e+01 2.6413891527673869e+01 3.4427656163446393e+01 0 0 -1 +921 0 1 0.0000000000000000e+00 3.7294346298829687e+01 3.3488627836850263e+01 3.1740052198532737e+01 -1 0 0 +223 0 1 0.0000000000000000e+00 3.9309859785987143e+01 3.0604786157566785e+01 3.5192445500556651e+00 0 -1 0 +1157 0 1 0.0000000000000000e+00 4.5732667242797312e+01 3.2511260492610937e+01 1.0074253719764824e+01 0 -1 0 +1847 0 1 0.0000000000000000e+00 4.8329155539983020e+01 3.0087981847749521e+01 1.7379124555896286e+01 0 0 0 +1737 0 1 0.0000000000000000e+00 5.1903286616304740e+01 1.7889340048096965e+01 1.1837752374754434e+01 0 0 0 +1766 0 1 0.0000000000000000e+00 4.0740836755948088e+01 3.3072691587193951e+01 1.4562151933805685e+01 0 0 0 +1765 0 1 0.0000000000000000e+00 4.5468092341533939e+01 2.4242731014409379e+01 1.0681391064310690e+01 0 0 0 +1764 0 1 0.0000000000000000e+00 3.9385984742399856e+01 3.0701827167025129e+01 1.2665371754408197e+01 0 0 0 +1763 0 1 0.0000000000000000e+00 4.1907320194374066e+01 2.4354719711711457e+01 1.0339243181901283e+01 0 0 0 +525 0 1 0.0000000000000000e+00 3.9611061495379190e+01 1.6482653718542437e+01 2.1285899632456193e+01 -1 0 0 +1753 0 1 0.0000000000000000e+00 5.2003281950672161e+01 2.2280251068369676e+01 1.2135094328033881e+01 0 0 0 +1752 0 1 0.0000000000000000e+00 4.9698439093372919e+01 2.3423469800928089e+01 1.4611114715980513e+01 0 0 0 +1751 0 1 0.0000000000000000e+00 4.7655046052255422e+01 2.1794516113448235e+01 1.2607812668456702e+01 0 0 0 +1750 0 1 0.0000000000000000e+00 4.5264155836852481e+01 2.3678897268323571e+01 1.4742239639020363e+01 0 0 0 +1749 0 1 0.0000000000000000e+00 4.1907473758276460e+01 2.2388544851038088e+01 1.4741729465195261e+01 0 0 0 +1748 0 1 0.0000000000000000e+00 4.3353174922205213e+01 2.2196797109159395e+01 7.7881421581520556e+00 0 0 0 +1747 0 1 0.0000000000000000e+00 3.9607646939811218e+01 2.2406326702087117e+01 8.2109184887642055e+00 0 0 0 +474 0 1 0.0000000000000000e+00 3.6316509453310381e+01 1.0673186364855136e+01 3.2668337632178527e+01 -1 0 0 +1736 0 1 0.0000000000000000e+00 4.9681501944529394e+01 1.9697390048012579e+01 1.4472265960209828e+01 0 0 0 +1734 0 1 0.0000000000000000e+00 4.3844437347666442e+01 1.7909334587455383e+01 1.2297909023981102e+01 0 0 0 +1768 0 1 0.0000000000000000e+00 4.9663400623566268e+01 2.7810833980966535e+01 1.4395937990293664e+01 0 0 0 +1732 0 1 0.0000000000000000e+00 3.9548970970201445e+01 1.6627463126548037e+01 1.7007605539733273e+01 0 0 0 +592 0 1 0.0000000000000000e+00 3.6650447295094807e+01 2.2461312954674256e+01 9.4900619985586356e+00 0 0 0 +1730 0 1 0.0000000000000000e+00 3.9161238436047796e+01 2.2221834909373630e+01 1.2594351634031975e+01 0 0 0 +1769 0 1 0.0000000000000000e+00 5.2467386467516583e+01 2.5626158156332334e+01 1.2468582585994032e+01 0 0 0 +1721 0 1 0.0000000000000000e+00 5.1961289695376635e+01 3.0578459896708527e+01 8.0236681588766050e+00 0 0 0 +1720 0 1 0.0000000000000000e+00 5.0273668391267904e+01 3.2313629172344498e+01 1.0963410447108370e+01 0 0 0 +1719 0 1 0.0000000000000000e+00 4.8237980937618815e+01 2.9809856420862900e+01 8.3640918901863923e+00 0 0 0 +1718 0 1 0.0000000000000000e+00 4.3718090416101901e+01 3.0582642514549978e+01 1.3223005056415577e+01 0 0 0 +1717 0 1 0.0000000000000000e+00 4.3762326643367935e+01 3.0685964095311615e+01 8.1922117200955924e+00 0 0 0 +1716 0 1 0.0000000000000000e+00 4.1147186273406703e+01 2.8354531916890192e+01 1.4994389911566717e+01 0 0 0 +1715 0 1 0.0000000000000000e+00 3.7546222022887683e+01 3.1877624713359701e+01 5.8156565969349545e+00 0 0 0 +1665 0 1 0.0000000000000000e+00 3.5873617977028943e+01 1.3618665018811486e+01 1.3194889365767191e+01 0 0 0 +608 0 1 0.0000000000000000e+00 3.9286274371751901e+01 2.6002205882634662e+01 2.5904784863215081e+01 -1 0 0 +1705 0 1 0.0000000000000000e+00 5.1766225837115989e+01 2.6342794746288710e+01 8.4306968206066504e+00 0 0 0 +1704 0 1 0.0000000000000000e+00 5.0354724548449731e+01 2.8824496150547784e+01 1.0733237445918041e+01 0 0 0 +1703 0 1 0.0000000000000000e+00 4.7701347629382582e+01 2.5963351611721670e+01 8.0400488550157689e+00 0 0 0 +1702 0 1 0.0000000000000000e+00 4.5361674775471606e+01 2.8468143385662735e+01 1.0574153773959203e+01 0 0 0 +1701 0 1 0.0000000000000000e+00 4.3451368377853349e+01 2.6300612266331289e+01 8.3041403564464549e+00 0 0 0 +1700 0 1 0.0000000000000000e+00 3.8536647704637225e+01 2.5249965950913545e+01 1.1769302340272933e+01 0 0 0 +1699 0 1 0.0000000000000000e+00 3.8895749347378597e+01 2.5678360913712222e+01 8.2293236514571912e+00 0 0 0 +1521 0 1 0.0000000000000000e+00 3.5265470735606755e+01 1.7360004394437183e+01 2.5993017031998356e+01 0 0 0 +1689 0 1 0.0000000000000000e+00 5.2354326984854403e+01 2.1586777349555692e+01 7.9440000927929315e+00 0 0 0 +1688 0 1 0.0000000000000000e+00 4.9622364575065099e+01 2.3814814308512403e+01 1.0174709292656777e+01 0 0 0 +1687 0 1 0.0000000000000000e+00 4.7603250510003711e+01 2.2173826818009136e+01 8.2710920930293472e+00 0 0 0 +1686 0 1 0.0000000000000000e+00 4.3146099955289529e+01 2.1681124124719481e+01 1.2092565680843705e+01 0 0 0 +1685 0 1 0.0000000000000000e+00 4.5745578731674563e+01 1.9510584142010789e+01 5.5350083627228273e+00 0 0 0 +1684 0 1 0.0000000000000000e+00 4.6586490756858588e+01 1.5358046251148432e+01 1.0765066326339945e+00 0 0 0 +1683 0 1 0.0000000000000000e+00 4.4543616203771016e+01 1.7139937502981976e+01 3.4598163271806421e+00 0 0 0 +2545 0 1 0.0000000000000000e+00 6.8926646144384108e+01 1.3525566681458672e+01 2.9988929646753004e+01 0 0 0 +1237 0 1 0.0000000000000000e+00 4.2804531834672069e+01 4.8125935872322465e+00 1.2417427204477208e+01 0 0 0 +2385 0 1 0.0000000000000000e+00 6.8888032370296457e+01 4.2495445759349240e+00 2.1041930052155507e+01 0 0 0 +1779 0 1 0.0000000000000000e+00 3.6489897256702768e+01 2.3028253291771751e+01 1.4545182941157989e+01 0 0 0 +1780 0 1 0.0000000000000000e+00 4.6013448549855916e+01 1.6810776260607836e+00 2.3247044128555274e+01 0 1 0 +1781 0 1 0.0000000000000000e+00 4.3247984862810192e+01 2.5838201418862020e+01 1.3020261769927469e+01 0 0 0 +1672 0 1 0.0000000000000000e+00 4.9557933369398960e+01 2.0034564935658551e+01 1.0139423829498886e+01 0 0 0 +1782 0 1 0.0000000000000000e+00 4.5920578767344068e+01 3.2612320740997973e+01 1.5040527933278018e+01 0 0 0 +1670 0 1 0.0000000000000000e+00 4.6100007151279108e+01 2.0124972770257990e+01 1.0218917903830535e+01 0 0 0 +1783 0 1 0.0000000000000000e+00 4.7723588795606936e+01 3.0989485565133464e+01 1.3090526116070290e+01 0 0 0 +1668 0 1 0.0000000000000000e+00 4.1938274147707780e+01 1.6024927698799392e+01 1.0284717938869314e+01 0 0 0 +1784 0 1 0.0000000000000000e+00 5.0139465407564181e+01 3.2666693399743906e+01 1.5322844666712117e+01 0 0 0 +1666 0 1 0.0000000000000000e+00 3.5286562329747888e+01 1.4840079203148399e+01 8.6925295832426617e+00 0 0 0 +1656 0 1 0.0000000000000000e+00 5.0044473534499339e+01 3.2294032670759798e+01 5.9696177255345910e+00 0 0 0 +1655 0 1 0.0000000000000000e+00 4.7598249806750189e+01 3.0682399568762275e+01 4.1989590435577462e+00 0 0 0 +1654 0 1 0.0000000000000000e+00 4.5036059085914708e+01 3.3131774754392524e+01 5.9761287573970741e+00 0 0 0 +1653 0 1 0.0000000000000000e+00 4.2851051337977459e+01 3.0847752601001172e+01 3.9881909288928661e+00 0 0 0 +1652 0 1 0.0000000000000000e+00 3.6318736878311796e+01 1.8727544222001267e+00 1.0281055593032963e+01 0 1 0 +1651 0 1 0.0000000000000000e+00 4.3484582379637224e+01 7.4445436879902815e-01 9.0791256820865822e+00 0 1 0 +876 0 1 0.0000000000000000e+00 3.7897463146282334e+01 1.5336926991910202e+01 3.1870593872333224e+01 0 0 0 +1641 0 1 0.0000000000000000e+00 5.1670303394780802e+01 2.5886759905637728e+01 4.1752800327833572e+00 0 0 0 +1640 0 1 0.0000000000000000e+00 5.0084171382411711e+01 2.8108519007513024e+01 5.9761311698879904e+00 0 0 0 +1639 0 1 0.0000000000000000e+00 4.7851376656921154e+01 2.6474880315319687e+01 4.4966309431452558e+00 0 0 0 +1638 0 1 0.0000000000000000e+00 4.5581659274284718e+01 2.8768443917454629e+01 5.7365784429093800e+00 0 0 0 +1637 0 1 0.0000000000000000e+00 4.6304910698084221e+01 2.4266468439594249e+01 1.8133774002499952e+00 0 0 0 +1636 0 1 0.0000000000000000e+00 3.8646257253348971e+01 6.0752073746771540e-01 7.8057620038740554e+00 0 1 0 +1635 0 1 0.0000000000000000e+00 4.1494339623369932e+01 2.3701211733424849e+01 5.7189387925556971e+00 0 0 0 +831 0 1 0.0000000000000000e+00 3.7164191134664364e+01 2.1942629333463096e+01 3.3423967379650350e+01 -1 0 0 +1625 0 1 0.0000000000000000e+00 5.1841899647827184e+01 2.2099275875429534e+01 4.1609825239624669e+00 0 0 0 +1236 0 1 0.0000000000000000e+00 3.8482298510993196e+01 9.6069044308472549e+00 1.5208826484176381e+01 0 0 0 +1624 0 1 0.0000000000000000e+00 5.0304030891293429e+01 2.4130663087865759e+01 6.5246555501380357e+00 0 0 0 +1623 0 1 0.0000000000000000e+00 4.7852383285746811e+01 2.2292843282799161e+01 4.2034026631360559e+00 0 0 0 +1622 0 1 0.0000000000000000e+00 4.5458993371575517e+01 2.4803885051932134e+01 5.6199575839292262e+00 0 0 0 +1621 0 1 0.0000000000000000e+00 4.2166787156082201e+01 1.9287684622274629e+01 2.2232387809802581e+00 0 0 0 +1620 0 1 0.0000000000000000e+00 4.1914543614959960e+01 1.9517009894681067e+01 5.8718577710138735e+00 0 0 0 +1235 0 1 0.0000000000000000e+00 4.2866093745926754e+01 4.1007348824263898e+00 1.6618008622655083e+01 0 0 0 +1619 0 1 0.0000000000000000e+00 3.7931068175772516e+01 1.9679953882953495e+01 6.9143182819305986e+00 0 0 0 +2017 0 1 0.0000000000000000e+00 6.9050877693910991e+01 2.5710526743534249e+01 3.0034990918481366e+01 -1 0 0 +1608 0 1 0.0000000000000000e+00 4.9647089237868869e+01 1.9392281795460157e+01 6.4810445687934548e+00 0 0 0 +1767 0 1 0.0000000000000000e+00 4.7569428298488532e+01 2.6360213115374268e+01 1.2394071735896018e+01 0 0 0 +1606 0 1 0.0000000000000000e+00 4.5986038809725798e+01 1.9232179718064550e+01 3.2193476339015056e+01 0 0 -1 +1604 0 1 0.0000000000000000e+00 3.9409787910810820e+01 1.6635954292819847e+01 7.8170382842536092e+00 0 0 0 +1602 0 1 0.0000000000000000e+00 4.2255100004006316e+01 1.5171820351837367e+01 5.8819320890432456e+00 0 0 0 +1093 0 1 0.0000000000000000e+00 4.5304202561316103e+01 2.3472770834134997e+00 5.9303977068829621e+00 0 0 0 +310 0 1 0.0000000000000000e+00 3.7057623487169806e+01 2.8406052135025700e+01 2.7815312249275433e+01 0 0 0 +1234 0 1 0.0000000000000000e+00 3.8044304039353918e+01 4.1029979402282217e+00 1.7149797135897753e+01 0 0 0 +1219 0 1 0.0000000000000000e+00 3.7976322339706904e+01 3.4327530407632693e+01 1.1797783017877105e+01 0 -1 0 +1592 0 1 0.0000000000000000e+00 5.0006288527728039e+01 3.2644050873269848e+01 1.7267865524219801e+00 0 0 0 +742 0 1 0.0000000000000000e+00 4.2054733643699691e+01 2.0573462177847559e+00 6.6603262678334152e-01 0 1 0 +1669 0 1 0.0000000000000000e+00 4.4081478310697022e+01 1.7815569143864384e+01 8.1941091978651137e+00 0 0 0 +1590 0 1 0.0000000000000000e+00 4.5227607482604583e+01 3.2814644676048374e+01 1.6354020917211995e+00 0 0 0 +1221 0 1 0.0000000000000000e+00 4.3642454286892203e+01 4.3055994609512906e-02 1.2627997339707614e+01 0 0 0 +1588 0 1 0.0000000000000000e+00 4.1927212229032108e+01 2.2086857754615483e+00 6.1584446421128201e+00 0 1 0 +1831 0 1 0.0000000000000000e+00 4.8161174823781224e+01 2.1941066760188367e+01 1.7306427514664001e+01 0 0 0 +1843 0 1 0.0000000000000000e+00 3.7453373465987028e+01 1.9761486372948408e+01 1.5411303928170934e+01 0 0 0 +1091 0 1 0.0000000000000000e+00 4.1006000380094775e+01 2.4112457351459518e+00 1.0558072185129042e+01 0 0 0 +1603 0 1 0.0000000000000000e+00 3.9599404551645243e+01 1.7270243950158783e+01 4.2618606855545016e+00 0 0 0 +1576 0 1 0.0000000000000000e+00 5.0301958618118718e+01 2.8323055837471362e+01 1.8131106193419371e+00 0 0 0 +1605 0 1 0.0000000000000000e+00 4.3756809474630522e+01 1.7102431843939176e+01 4.8878098660129930e-03 0 0 0 +1574 0 1 0.0000000000000000e+00 4.5973806203354563e+01 2.8480168585643696e+01 2.0116086868997050e+00 0 0 0 +1572 0 1 0.0000000000000000e+00 3.6554095528483181e+01 2.4654376289559565e+01 3.0799511561688135e+01 0 0 -1 +1591 0 1 0.0000000000000000e+00 4.8193283129030334e+01 3.0500208228951617e+01 2.1174910667497659e-01 0 0 0 +1570 0 1 0.0000000000000000e+00 4.1124961827833758e+01 1.9884887650326568e+00 1.4356044235550504e+01 0 1 0 +1254 0 1 0.0000000000000000e+00 4.5334603165859484e+01 1.0852017459966468e+01 1.4288784215437431e+01 0 0 0 +1560 0 1 0.0000000000000000e+00 4.9769234065043882e+01 2.4377736882660709e+01 1.8971940354739019e+00 0 0 0 +1558 0 1 0.0000000000000000e+00 4.4006798673868971e+01 2.1924805258808519e+01 3.6624584917177478e+00 0 0 0 +1607 0 1 0.0000000000000000e+00 4.6922648517899823e+01 1.9490166831051347e+01 1.7757544154780662e+00 0 0 0 +1556 0 1 0.0000000000000000e+00 3.9156415882410734e+01 2.6810898442732910e+01 3.8735456344009567e+00 0 0 0 +1554 0 1 0.0000000000000000e+00 3.6519347733829129e+01 2.7721860141847941e+01 6.3431831760586341e+00 0 0 0 +1731 0 1 0.0000000000000000e+00 3.8821963355356459e+01 1.1681337817692752e+01 1.1883940987821122e+01 0 0 0 +1573 0 1 0.0000000000000000e+00 3.7314210722376529e+01 2.7199298481291578e+01 8.3010340572294827e-01 0 0 0 +1673 0 1 0.0000000000000000e+00 5.2621799297513100e+01 1.7662722463354953e+01 8.1461649045015658e+00 0 0 0 +2529 0 1 0.0000000000000000e+00 6.9130776839501479e+01 8.5729275043840225e+00 2.9774402822137883e+01 0 0 0 +1075 0 1 0.0000000000000000e+00 3.5573363099200506e+01 1.1323653455312355e+01 2.7331447047277265e+01 0 0 -1 +1028 0 1 0.0000000000000000e+00 3.9186706803018176e+01 5.2805068627267122e+00 3.3849325645293462e+01 0 0 -1 +1030 0 1 0.0000000000000000e+00 4.7637089676204489e+01 1.7177523223790694e-01 3.4253938082656610e+01 0 0 -1 +1032 0 1 0.0000000000000000e+00 4.9365114137310620e+01 2.7282820632551483e+00 1.2665563927358878e+00 0 0 0 +1061 0 1 0.0000000000000000e+00 4.5254577579787039e+01 6.8994362708408303e+00 1.7449291945612895e+00 0 0 0 +1801 0 1 0.0000000000000000e+00 5.1618788995094420e+01 1.7401579414805180e+01 1.6820501006486957e+01 0 0 0 +1331 0 1 0.0000000000000000e+00 4.0786390011952555e+01 1.0253499196428553e+01 1.8398748936074750e+01 0 0 0 +1031 0 1 0.0000000000000000e+00 4.5551962981628996e+01 3.2693621246742879e+01 3.0972172873831692e+01 0 -1 -1 +1042 0 1 0.0000000000000000e+00 4.3554951985572281e+01 9.3571090673782784e+00 3.5619138643199153e+00 0 0 0 +1044 0 1 0.0000000000000000e+00 4.0886810601854172e+01 1.0678208990903185e+01 2.0293064751971457e+00 0 0 0 +1077 0 1 0.0000000000000000e+00 4.1081015526893481e+01 1.1215189313742355e+01 3.2053000359068669e+01 0 0 -1 +1046 0 1 0.0000000000000000e+00 4.0885366264902238e+01 7.1845990933914186e+00 2.3644229066254856e+00 0 0 0 +1299 0 1 0.0000000000000000e+00 3.5929160384257557e+01 2.2058348482243630e+00 2.3559011845429090e+01 0 0 0 +1048 0 1 0.0000000000000000e+00 4.6614740308464768e+01 4.7973009674177085e+00 3.4165490557030616e+01 0 0 -1 +1333 0 1 0.0000000000000000e+00 4.3031346679991877e+01 8.4595213353512140e+00 1.6981549287035318e+01 0 0 0 +1337 0 1 0.0000000000000000e+00 5.1982319703238240e+01 1.2726824744146519e+01 1.6643174688938483e+01 0 0 0 +1319 0 1 0.0000000000000000e+00 4.7447074469210264e+01 9.3042305561112002e+00 1.7290297658123027e+01 0 0 0 +1937 0 1 0.0000000000000000e+00 6.8914803175442657e+01 2.1728608860665613e+01 2.5857301547107010e+01 -1 0 0 +1735 0 1 0.0000000000000000e+00 4.7818598117539715e+01 1.7535394185673979e+01 1.2493255503234773e+01 0 0 0 +1060 0 1 0.0000000000000000e+00 4.1661856177489121e+01 1.2033759247233325e+01 9.7306698007807366e+00 0 0 0 +1289 0 1 0.0000000000000000e+00 5.1388538453771318e+01 4.3352535189709918e-01 1.7220538154795644e+01 0 0 0 +1062 0 1 0.0000000000000000e+00 4.7540026165624226e+01 9.2497919895109515e+00 4.2036753109313603e+00 0 0 0 +365 0 1 0.0000000000000000e+00 3.8729879377490846e+01 3.0601067982717716e+01 1.6134352165344158e+01 0 -1 0 +1064 0 1 0.0000000000000000e+00 4.9586954722025190e+01 1.0481970805161444e+01 1.7690005389901371e+00 0 0 0 +1317 0 1 0.0000000000000000e+00 4.4980203981318816e+01 7.0943801884834219e+00 1.9891915210390195e+01 0 0 0 +922 0 1 0.0000000000000000e+00 3.8477456764258292e+01 3.0092677778109049e+01 2.5454627239135498e+01 -1 0 0 +1287 0 1 0.0000000000000000e+00 4.7623243367568847e+01 3.4556938758222337e+01 1.7228095405973274e+01 0 -1 0 +1074 0 1 0.0000000000000000e+00 4.0793384751488752e+01 5.9804863542476863e+00 3.0547648931028384e+01 0 0 -1 +1076 0 1 0.0000000000000000e+00 3.8806675943006816e+01 1.3131626879523781e+01 3.4252648692286265e+01 0 0 -1 +1078 0 1 0.0000000000000000e+00 4.6281822712749047e+01 1.0820700619988633e+01 1.1267508081774424e+00 0 0 0 +1080 0 1 0.0000000000000000e+00 5.0782959294839223e+01 1.5735276323256659e+01 1.5700659952073506e+00 0 0 0 +601 0 1 0.0000000000000000e+00 4.0019818892650527e+01 2.1451583621571885e+01 3.4503525882116541e+01 0 1 -1 +1079 0 1 0.0000000000000000e+00 4.8378601708325625e+01 1.3252648186650612e+01 3.3975002664734802e+01 0 0 -1 +1092 0 1 0.0000000000000000e+00 4.3074446664132971e+01 4.6859018122477920e+00 8.1476514608054824e+00 0 0 0 +1094 0 1 0.0000000000000000e+00 4.5258722052261440e+01 6.8461093416030572e+00 6.0685875142832133e+00 0 0 0 +1096 0 1 0.0000000000000000e+00 4.9853419511672676e+01 2.4641048564476802e+00 6.1080665194284327e+00 0 0 0 +1159 0 1 0.0000000000000000e+00 4.7898060460338449e+01 3.4134963513177929e+01 8.2694815549629457e+00 0 -1 0 +1253 0 1 0.0000000000000000e+00 4.0692416038769643e+01 6.7744110079324624e+00 1.5340661479147785e+01 0 0 0 +1273 0 1 0.0000000000000000e+00 5.2040161509901004e+01 1.2108892841872665e+01 1.2868380049905380e+01 0 0 0 +44 0 1 0.0000000000000000e+00 3.5463736934730029e+01 2.1616330882110670e+01 3.0077895824016029e+01 0 -1 -1 +1106 0 1 0.0000000000000000e+00 3.9495017567133644e+01 4.1360982076869286e+00 6.4938559853787750e+00 0 0 0 +1107 0 1 0.0000000000000000e+00 3.5513821568978017e+01 2.1923913785273879e+00 1.9225295260167290e+00 0 0 0 +1108 0 1 0.0000000000000000e+00 4.1181479120594240e+01 2.1470146590776147e+00 3.1299289083454948e+01 0 0 -1 +1109 0 1 0.0000000000000000e+00 3.5195341804543716e+01 7.8983795776240162e-01 3.3207636210324729e+01 0 0 -1 +1110 0 1 0.0000000000000000e+00 4.2231968375896251e+01 1.1089853667402513e+01 5.7528455186989884e+00 0 0 0 +1111 0 1 0.0000000000000000e+00 4.7483183110812767e+01 4.3063423686971225e+00 3.4310893633182538e+00 0 0 0 +1112 0 1 0.0000000000000000e+00 4.9807957425458213e+01 6.9281458850507605e+00 5.5362060316241060e+00 0 0 0 +1113 0 1 0.0000000000000000e+00 5.1641658178782968e+01 4.5673763075678000e+00 3.6499831651417805e+00 0 0 0 +1922 0 1 0.0000000000000000e+00 3.9200175314282063e+01 2.1981533480473836e+01 2.0450385406426033e+01 0 0 0 +1123 0 1 0.0000000000000000e+00 4.0961208266623551e+01 6.9918316219641143e+00 5.8321614681114688e+00 0 0 0 +1617 0 1 0.0000000000000000e+00 6.8599595666342935e+01 2.1524193523957653e+01 4.3266640530883089e+00 -1 0 0 +1125 0 1 0.0000000000000000e+00 3.9472656951919262e+01 1.3647264677242520e+01 3.7302843514649244e+00 0 0 0 +1126 0 1 0.0000000000000000e+00 4.5544970936526020e+01 1.1606406941250029e+01 5.8136899535493072e+00 0 0 0 +1127 0 1 0.0000000000000000e+00 4.9440427571424060e+01 6.7569895417769761e+00 1.6580597927651834e+00 0 0 0 +1128 0 1 0.0000000000000000e+00 5.0186157676549108e+01 1.0910788036320799e+01 5.9674451185899553e+00 0 0 0 +1129 0 1 0.0000000000000000e+00 5.1889782855821736e+01 8.6047675275839666e+00 3.3110761219075471e+00 0 0 0 +1138 0 1 0.0000000000000000e+00 3.9686802943506699e+01 1.3291372734276861e+01 7.0023524491688960e+00 0 0 0 +443 0 1 0.0000000000000000e+00 3.6122773308905451e+01 2.1647918574237099e+00 5.3040168326848764e+00 0 0 1 +1140 0 1 0.0000000000000000e+00 4.4127379883585995e+01 1.3070758150793626e+01 3.1563953327959733e+00 0 0 0 +1141 0 1 0.0000000000000000e+00 4.5968143422515254e+01 1.5581416939362679e+01 5.9931299427391620e+00 0 0 0 +1142 0 1 0.0000000000000000e+00 4.8647131473110356e+01 1.7406095343116910e+01 3.8956218171208912e+00 0 0 0 +1143 0 1 0.0000000000000000e+00 4.8030395233111214e+01 1.2826675783136322e+01 3.3642702144136103e+00 0 0 0 +1144 0 1 0.0000000000000000e+00 4.9730179665192082e+01 1.5038125809498380e+01 6.1583765147149414e+00 0 0 0 +1145 0 1 0.0000000000000000e+00 5.2312687441066124e+01 1.3122915048241531e+01 3.8997719057197702e+00 0 0 0 +1272 0 1 0.0000000000000000e+00 5.0061017088902176e+01 1.5338295268635770e+01 1.4389237071903356e+01 0 0 0 +1681 0 1 0.0000000000000000e+00 3.8143402108684761e+01 1.9235641924473278e+01 1.0828157505896552e+01 0 0 0 +1257 0 1 0.0000000000000000e+00 5.1851627930437722e+01 8.5350253766756836e+00 1.3240301901620876e+01 0 0 0 +1156 0 1 0.0000000000000000e+00 4.3103233065986778e+01 4.6416123492487573e+00 3.3607494492180958e+00 0 0 0 +1271 0 1 0.0000000000000000e+00 4.8043416888506002e+01 1.2733709640026708e+01 1.2609400613580762e+01 0 0 0 +1158 0 1 0.0000000000000000e+00 4.5624947193907396e+01 2.7348576485617118e+00 1.0844605552938718e+01 0 0 0 +1256 0 1 0.0000000000000000e+00 4.9639625579474092e+01 1.1185089843006677e+01 1.5226206491013277e+01 0 0 0 +1160 0 1 0.0000000000000000e+00 4.9908638654443081e+01 2.3165674666063039e+00 1.0962681890088449e+01 0 0 0 +1270 0 1 0.0000000000000000e+00 4.6081706360471053e+01 1.5918872917306706e+01 1.4579210120937031e+01 0 0 0 +1089 0 1 0.0000000000000000e+00 4.2890683586639085e+01 2.6623227629157213e+01 3.7193429179996604e+00 0 -1 0 +1269 0 1 0.0000000000000000e+00 4.5571858165000549e+01 1.0916995645803194e+01 1.0531934179620947e+01 0 0 0 +1255 0 1 0.0000000000000000e+00 4.8002626698151559e+01 8.8103795162185570e+00 1.3014033951749344e+01 0 0 0 +1537 0 1 0.0000000000000000e+00 3.6792560774742370e+01 1.2120589760695234e+01 7.9368534374413366e+00 0 0 0 +1171 0 1 0.0000000000000000e+00 4.0525327717505817e+01 6.2123786699559647e+00 9.6904923280202944e+00 0 0 0 +1172 0 1 0.0000000000000000e+00 3.6716546253570137e+01 8.8835273626318489e+00 9.4504255026492920e+00 0 0 0 +1173 0 1 0.0000000000000000e+00 3.6837921187751967e+01 4.8032261136259855e+00 9.1523331090704900e+00 0 0 0 +1174 0 1 0.0000000000000000e+00 4.5423736343285377e+01 6.6318751309910908e+00 1.0284949147081290e+01 0 0 0 +1175 0 1 0.0000000000000000e+00 4.7476214964358277e+01 4.4110173322155326e+00 8.0397077252869256e+00 0 0 0 +1176 0 1 0.0000000000000000e+00 4.9400603838451715e+01 6.5517404764832250e+00 1.0383045339719830e+01 0 0 0 +1177 0 1 0.0000000000000000e+00 5.1753446775063672e+01 4.3317806066176132e+00 7.9913144871598432e+00 0 0 0 +2034 0 1 0.0000000000000000e+00 3.5478038697992147e+01 2.9807065542044928e+01 3.3366874654451371e+00 0 0 1 +1523 0 1 0.0000000000000000e+00 3.7593143622441907e+01 1.4751073444423231e+01 2.7106932957237493e+01 0 0 0 +1187 0 1 0.0000000000000000e+00 4.5199662512224265e+01 2.0736761762320146e+00 1.9025337537754754e+00 0 0 0 +1188 0 1 0.0000000000000000e+00 4.3011102844570239e+01 8.4766452467121542e+00 1.1623928488992744e+01 0 0 0 +1189 0 1 0.0000000000000000e+00 3.9674797213035987e+01 9.2881004968017464e+00 8.5143531591012245e+00 0 0 0 +1190 0 1 0.0000000000000000e+00 4.3250364745989366e+01 9.1245792373602495e+00 8.1701603411187431e+00 0 0 0 +1191 0 1 0.0000000000000000e+00 4.7231178839218607e+01 8.7175130135427974e+00 7.9387069087956421e+00 0 0 0 +1192 0 1 0.0000000000000000e+00 4.9890244549575790e+01 1.0682352606808669e+01 1.0140319814723409e+01 0 0 0 +1193 0 1 0.0000000000000000e+00 5.1525083466048187e+01 8.4650638491625347e+00 8.2370500708289214e+00 0 0 0 +1553 0 1 0.0000000000000000e+00 6.8851331126472815e+01 2.1605269929994236e+01 9.7870323857777664e-02 -1 0 0 +1347 0 1 0.0000000000000000e+00 3.6852705405542714e+01 3.1938452287536819e+01 1.8913784697649916e+01 0 -1 0 +1203 0 1 0.0000000000000000e+00 4.1663555020111730e+01 1.0943265979921950e+01 1.3962130315294820e+01 0 0 0 +1204 0 1 0.0000000000000000e+00 4.3949559085612620e+01 1.3576012353346291e+01 1.2410826250081197e+01 0 0 0 +1205 0 1 0.0000000000000000e+00 4.4035142213143480e+01 1.4321032906636590e+01 8.4715060823371680e+00 0 0 0 +1206 0 1 0.0000000000000000e+00 4.6756421786489682e+01 1.4855825300765822e+01 1.0658674424454887e+01 0 0 0 +1207 0 1 0.0000000000000000e+00 4.8321622288544212e+01 1.2795319255932760e+01 8.6138780792811556e+00 0 0 0 +1208 0 1 0.0000000000000000e+00 5.0454111435949407e+01 1.5016232116252912e+01 1.0141026761253965e+01 0 0 0 +1209 0 1 0.0000000000000000e+00 5.1667164778989253e+01 1.2997339631568725e+01 8.4328761815666979e+00 0 0 0 +1268 0 1 0.0000000000000000e+00 4.0997678896823970e+01 1.4872426340634105e+01 1.3859228962633473e+01 0 0 0 +86 0 1 0.0000000000000000e+00 3.5287104493670434e+01 2.4826847480032360e+01 2.1034896012328566e+01 -1 0 -1 +1827 0 1 0.0000000000000000e+00 3.4905324761239257e+01 2.1139780169029944e+01 1.2296530443184158e+01 0 0 0 +1220 0 1 0.0000000000000000e+00 3.8232091342086399e+01 4.8539079550337144e-01 1.6960308837010086e+01 0 0 0 +1364 0 1 0.0000000000000000e+00 3.5958941761931051e+01 6.0764700057681065e+00 2.3509615933263987e+01 0 0 0 +1222 0 1 0.0000000000000000e+00 4.5275824978486362e+01 2.6466052116465457e+00 1.4569248127650029e+01 0 0 0 +1201 0 1 0.0000000000000000e+00 3.5831842932753275e+01 1.3702465320220103e+01 1.6642473200912900e+01 0 0 0 +1224 0 1 0.0000000000000000e+00 4.9167456722964701e+01 2.4123991833610128e+00 1.4732240871953431e+01 0 0 0 +1155 0 1 0.0000000000000000e+00 3.8959519943740894e+01 4.6192686285559654e+00 1.2899505296425334e+01 0 0 0 +1805 0 1 0.0000000000000000e+00 6.0543133330538872e+01 1.7726257082451824e+01 1.6499930746121937e+01 0 0 0 +1081 0 1 0.0000000000000000e+00 5.0323735522976300e+01 1.5255584866157312e+01 3.2124175889107683e+01 0 0 -1 +1933 0 1 0.0000000000000000e+00 6.0946684043767860e+01 1.7331631095799924e+01 2.5216928517782307e+01 0 0 0 +8 0 1 0.0000000000000000e+00 3.7428939600878884e+01 1.9328512405742611e+01 2.1120418185038963e+00 0 0 0 +1867 0 1 0.0000000000000000e+00 5.5499873680590987e+01 1.7099174505042292e+01 2.1314226865095140e+01 0 0 0 +1997 0 1 0.0000000000000000e+00 6.0783329189208516e+01 1.7393636011476453e+01 3.0076487174558114e+01 0 0 0 +1065 0 1 0.0000000000000000e+00 5.1647291838271094e+01 8.9425479198137516e+00 3.3473402422506034e+01 0 0 -1 +1504 0 1 0.0000000000000000e+00 6.6914707427510393e+01 7.1794047947678834e+00 3.1769064304101917e+01 0 0 0 +1503 0 1 0.0000000000000000e+00 6.5221316933422941e+01 3.5107269014364846e+00 2.9956747084574044e+01 0 0 0 +1502 0 1 0.0000000000000000e+00 6.3238601938730220e+01 6.6071457138237291e+00 3.1936067335167131e+01 0 0 0 +1501 0 1 0.0000000000000000e+00 6.0643210833484844e+01 4.4217586132287154e+00 2.9839687873470425e+01 0 0 0 +1500 0 1 0.0000000000000000e+00 5.8182495072312371e+01 6.3454350619452633e+00 3.1872094865580852e+01 0 0 0 +1499 0 1 0.0000000000000000e+00 5.6246797832584740e+01 3.4473166524391816e+00 2.9826699156516408e+01 0 0 0 +1498 0 1 0.0000000000000000e+00 5.4171011035845900e+01 6.1512251210373288e+00 3.1446704334440739e+01 0 0 0 +1497 0 1 0.0000000000000000e+00 5.2256318959056998e+01 4.4035800014511528e+00 2.9122110775829903e+01 0 0 0 +1488 0 1 0.0000000000000000e+00 6.7300464382415868e+01 2.0167120917341594e+00 3.2614753114203445e+01 0 0 0 +1486 0 1 0.0000000000000000e+00 6.2687444547073589e+01 1.9797658812285783e+00 3.2075940363227765e+01 0 0 0 +1484 0 1 0.0000000000000000e+00 5.8619808833434526e+01 2.1585499090097016e+00 3.1751925829263726e+01 0 0 0 +1515 0 1 0.0000000000000000e+00 5.6229814949706011e+01 9.0857132080237566e+00 3.0838110374182538e+01 0 0 0 +1482 0 1 0.0000000000000000e+00 5.3716763265007891e+01 1.9640718191566742e+00 3.1602698770817735e+01 0 0 0 +1871 0 1 0.0000000000000000e+00 6.4747192702332100e+01 1.6636645933219928e+01 2.0540090069459417e+01 0 0 0 +1472 0 1 0.0000000000000000e+00 6.7228452877693385e+01 1.5209064169260746e+01 2.7861710502942316e+01 0 0 0 +1471 0 1 0.0000000000000000e+00 6.5054546200287731e+01 1.3000063172461411e+01 2.5805647011698834e+01 0 0 0 +1470 0 1 0.0000000000000000e+00 6.3027271796135423e+01 1.5753490982922470e+01 2.7442647316261830e+01 0 0 0 +1469 0 1 0.0000000000000000e+00 6.0900275877220544e+01 1.3294498095815205e+01 2.5642988811183230e+01 0 0 0 +1468 0 1 0.0000000000000000e+00 5.8459576170989735e+01 1.5933801485044748e+01 2.7737441703744516e+01 0 0 0 +1467 0 1 0.0000000000000000e+00 5.6286532641409266e+01 1.3269235430018098e+01 2.5653770134446688e+01 0 0 0 +1466 0 1 0.0000000000000000e+00 5.4212903385136634e+01 1.5800157179174155e+01 2.7347234061166699e+01 0 0 0 +53 0 1 0.0000000000000000e+00 3.4810155391859816e+01 1.8479901123778323e+01 4.5059089155802239e+00 0 0 0 +1456 0 1 0.0000000000000000e+00 6.7170617873064515e+01 1.0729688798375665e+01 2.7890412953831547e+01 0 0 0 +1455 0 1 0.0000000000000000e+00 6.4462902880104963e+01 8.9027276013373076e+00 2.5620109847815637e+01 0 0 0 +1454 0 1 0.0000000000000000e+00 6.2437066324168320e+01 1.0479805128809824e+01 2.7852314015528862e+01 0 0 0 +1453 0 1 0.0000000000000000e+00 5.9704476121116585e+01 8.6079591362859915e+00 2.5348035984155231e+01 0 0 0 +1452 0 1 0.0000000000000000e+00 5.8748404751210778e+01 1.0763611606429651e+01 2.8156978189157051e+01 0 0 0 +1451 0 1 0.0000000000000000e+00 5.6268387976069235e+01 8.5180196647179915e+00 2.5165308029629173e+01 0 0 0 +1450 0 1 0.0000000000000000e+00 5.4536804689163617e+01 1.0726077960221167e+01 2.8704219388723764e+01 0 0 0 +1052 0 1 0.0000000000000000e+00 5.8408598896898305e+01 5.7187129125138174e+00 1.6736235888646394e+00 0 0 0 +1440 0 1 0.0000000000000000e+00 6.6624414977520800e+01 6.6874628563012131e+00 2.7866888652371433e+01 0 0 0 +1439 0 1 0.0000000000000000e+00 6.5099740304101189e+01 4.6150499019945519e+00 2.5712894816730049e+01 0 0 0 +1438 0 1 0.0000000000000000e+00 6.2595330146459254e+01 6.8076891885322475e+00 2.7938759325280067e+01 0 0 0 +1437 0 1 0.0000000000000000e+00 6.0082023300250050e+01 4.8561755690686956e+00 2.5736980841635468e+01 0 0 0 +1436 0 1 0.0000000000000000e+00 5.8153000554220277e+01 7.0390199222680074e+00 2.8367047379742161e+01 0 0 0 +1435 0 1 0.0000000000000000e+00 5.6279266721778683e+01 4.3932256238961109e+00 2.5223976440596996e+01 0 0 0 +1434 0 1 0.0000000000000000e+00 5.4546584967098390e+01 6.4419984423269812e+00 2.7764637480151205e+01 0 0 0 +1424 0 1 0.0000000000000000e+00 6.7537349345065692e+01 1.8504107489234780e+00 2.7827364792234427e+01 0 0 0 +1422 0 1 0.0000000000000000e+00 6.2513194034471269e+01 1.2039390952694637e+00 2.8294780096970694e+01 0 0 0 +1420 0 1 0.0000000000000000e+00 5.8733190520437091e+01 2.1186633707931266e+00 2.7958032057188600e+01 0 0 0 +1418 0 1 0.0000000000000000e+00 5.4169544395683410e+01 1.7274029495289718e+00 2.7336667305338821e+01 0 0 0 +1529 0 1 0.0000000000000000e+00 5.1905002891029959e+01 1.2858758238771543e+01 3.4182066006598561e+01 0 0 0 +1530 0 1 0.0000000000000000e+00 5.3891856851809159e+01 1.5615105984834457e+01 3.1775297477614561e+01 0 0 0 +1531 0 1 0.0000000000000000e+00 5.6600735174708255e+01 1.3417109350513105e+01 3.0221937486247889e+01 0 0 0 +1532 0 1 0.0000000000000000e+00 5.8644182109341664e+01 1.5836723839543621e+01 3.1844407502253027e+01 0 0 0 +1408 0 1 0.0000000000000000e+00 6.6677707275747736e+01 1.5680428097983192e+01 2.3187790011826614e+01 0 0 0 +1407 0 1 0.0000000000000000e+00 6.4802604088637125e+01 1.2967332964329556e+01 2.1143167290802058e+01 0 0 0 +1406 0 1 0.0000000000000000e+00 6.2892864103034746e+01 1.4955608220241139e+01 2.3323269220389346e+01 0 0 0 +1405 0 1 0.0000000000000000e+00 6.0753157230837388e+01 1.3845903857265474e+01 2.1060264098061971e+01 0 0 0 +1404 0 1 0.0000000000000000e+00 5.8364095937094348e+01 1.5287602804012247e+01 2.3478767451672248e+01 0 0 0 +1403 0 1 0.0000000000000000e+00 5.6005045410099306e+01 1.3233041740935930e+01 2.1699528589302048e+01 0 0 0 +1402 0 1 0.0000000000000000e+00 5.1761050925700751e+01 1.7336034566960095e+01 2.5228543943744786e+01 0 0 0 +1054 0 1 0.0000000000000000e+00 6.2451512762378911e+01 5.8575279372201248e+00 1.5092971463455480e+00 0 0 0 +1392 0 1 0.0000000000000000e+00 6.6736085051411166e+01 1.0344576488983790e+01 2.3097860527674300e+01 0 0 0 +1391 0 1 0.0000000000000000e+00 6.4769628250329035e+01 8.5765954593195293e+00 2.0789368310101349e+01 0 0 0 +1390 0 1 0.0000000000000000e+00 6.2066797698762791e+01 1.0653590861194552e+01 2.3479999553890959e+01 0 0 0 +1389 0 1 0.0000000000000000e+00 6.0724773319260606e+01 8.4742063079449821e+00 2.1132408710845613e+01 0 0 0 +1388 0 1 0.0000000000000000e+00 5.8690076019342037e+01 1.1837521619959091e+01 2.3448536752866698e+01 0 0 0 +1387 0 1 0.0000000000000000e+00 5.6611627607589810e+01 8.9662449079552040e+00 2.1043497107091966e+01 0 0 0 +1386 0 1 0.0000000000000000e+00 5.3326162798457418e+01 1.1154099656474223e+01 2.3107435142795190e+01 0 0 0 +1376 0 1 0.0000000000000000e+00 6.7315080110734499e+01 6.1170635541690856e+00 2.3278299719125563e+01 0 0 0 +1375 0 1 0.0000000000000000e+00 6.4922980751282154e+01 4.0037838152958880e+00 2.1663990420497864e+01 0 0 0 +1374 0 1 0.0000000000000000e+00 6.2866010340610664e+01 6.2957595465486138e+00 2.3251971398044020e+01 0 0 0 +1373 0 1 0.0000000000000000e+00 6.0944294923734525e+01 3.6098507421338248e+00 2.1744424680740668e+01 0 0 0 +1372 0 1 0.0000000000000000e+00 5.8717839992572365e+01 6.1618150153777931e+00 2.2783860802376562e+01 0 0 0 +1371 0 1 0.0000000000000000e+00 5.6128715265117414e+01 4.7804544634635837e+00 2.1547580918964584e+01 0 0 0 +1370 0 1 0.0000000000000000e+00 5.4209047477858505e+01 6.7233741183979916e+00 2.3098424381117454e+01 0 0 0 +1360 0 1 0.0000000000000000e+00 6.7421960920453301e+01 1.9106326085830290e+00 2.3480223645263340e+01 0 0 0 +1533 0 1 0.0000000000000000e+00 6.0882907199787645e+01 1.3454540200184722e+01 2.9694748380971408e+01 0 0 0 +1358 0 1 0.0000000000000000e+00 6.3139269735622321e+01 2.3257979085639939e+00 2.4244579569303443e+01 0 0 0 +1516 0 1 0.0000000000000000e+00 5.8916618088948042e+01 1.0783630810463769e+01 3.2207902140238559e+01 0 0 0 +1356 0 1 0.0000000000000000e+00 5.8593848906103695e+01 1.8881919267660456e+00 2.3613191968436173e+01 0 0 0 +1534 0 1 0.0000000000000000e+00 6.2932923917542809e+01 1.5173156428655799e+01 3.1958813823894005e+01 0 0 0 +1354 0 1 0.0000000000000000e+00 5.3721617988002606e+01 2.3044211115287347e+00 2.3338547078877419e+01 0 0 0 +1535 0 1 0.0000000000000000e+00 6.4647529182226762e+01 1.2916202916110947e+01 2.9277257023835848e+01 0 0 0 +1536 0 1 0.0000000000000000e+00 6.6853712489406433e+01 1.5238138743992929e+01 3.2005849821049104e+01 0 0 0 +1344 0 1 0.0000000000000000e+00 6.7235038673132195e+01 1.5639690988979197e+01 1.8669849646531588e+01 0 0 0 +1517 0 1 0.0000000000000000e+00 6.0634533149920806e+01 8.7846889746061372e+00 3.0185636084526426e+01 0 0 0 +1342 0 1 0.0000000000000000e+00 6.2596624551551571e+01 1.5339526889946850e+01 1.8520839820688874e+01 0 0 0 +1518 0 1 0.0000000000000000e+00 6.2798595734008089e+01 1.1441171363707523e+01 3.2232244077954597e+01 0 0 0 +1340 0 1 0.0000000000000000e+00 5.7806725544669163e+01 1.5311072135473122e+01 1.8647784957503330e+01 0 0 0 +1311 0 1 0.0000000000000000e+00 6.4537821743864626e+01 3.6311884198676871e+00 1.6916805156513536e+01 0 0 0 +1338 0 1 0.0000000000000000e+00 5.3649314042786791e+01 1.5581740834233949e+01 1.8734234809587626e+01 0 0 0 +1519 0 1 0.0000000000000000e+00 6.4581267263966183e+01 8.8709089155628646e+00 2.9822674780302936e+01 0 0 0 +1520 0 1 0.0000000000000000e+00 6.6586855095800033e+01 1.0990482987998698e+01 3.1901925416607295e+01 0 0 0 +1357 0 1 0.0000000000000000e+00 6.0956614722993208e+01 2.2146370607489413e-01 2.1295279666245992e+01 0 0 0 +1328 0 1 0.0000000000000000e+00 6.6780625609134276e+01 1.0524571627517716e+01 1.8940256204117617e+01 0 0 0 +1326 0 1 0.0000000000000000e+00 6.2453348943634545e+01 1.1089017577679927e+01 1.8743033053665002e+01 0 0 0 +1514 0 1 0.0000000000000000e+00 5.4806894211528174e+01 1.1135997599956259e+01 3.2837051617527621e+01 0 0 0 +1324 0 1 0.0000000000000000e+00 5.8771282368346121e+01 1.1184392000363735e+01 1.9396570347337939e+01 0 0 0 +1865 0 1 0.0000000000000000e+00 5.1552912445574691e+01 1.7039161953237571e+01 2.1269230967855560e+01 0 0 0 +1322 0 1 0.0000000000000000e+00 5.4422083837008465e+01 1.0829099100651701e+01 1.9164782414909777e+01 0 0 0 +1323 0 1 0.0000000000000000e+00 5.6561766253590520e+01 8.4235809884532085e+00 1.7691125194998474e+01 0 0 0 +1055 0 1 0.0000000000000000e+00 6.5231756481542973e+01 4.1763980341441922e+00 5.4545306937083947e-02 0 0 0 +1935 0 1 0.0000000000000000e+00 6.5000913080685947e+01 1.7793215257814698e+01 2.5814846728279196e+01 0 0 0 +1312 0 1 0.0000000000000000e+00 6.6834437306551408e+01 6.1593781077794727e+00 1.9086465569677202e+01 0 0 0 +1310 0 1 0.0000000000000000e+00 6.3001820697421969e+01 5.8011820675480550e+00 1.9457956281701449e+01 0 0 0 +1071 0 1 0.0000000000000000e+00 6.4796521225403723e+01 8.3206368734873841e+00 3.4332476671994215e+01 0 0 -1 +1308 0 1 0.0000000000000000e+00 5.8768651171234715e+01 5.8777247634981444e+00 1.9534267810125218e+01 0 0 0 +1487 0 1 0.0000000000000000e+00 6.5921261905062067e+01 3.4241217380072115e+01 3.0263391404757456e+01 0 -1 0 +1306 0 1 0.0000000000000000e+00 5.3662847518524998e+01 6.6350433289593855e+00 1.9377035506521487e+01 0 0 0 +1485 0 1 0.0000000000000000e+00 6.0445118995560286e+01 3.4370190064543813e+01 3.0297224177241830e+01 0 -1 0 +1296 0 1 0.0000000000000000e+00 6.7147617129732595e+01 2.0171254087247670e+00 1.8985016109353541e+01 0 0 0 +1294 0 1 0.0000000000000000e+00 6.2640969054801637e+01 2.0417671399032216e+00 1.8729808113381392e+01 0 0 0 +1051 0 1 0.0000000000000000e+00 5.5791648143847979e+01 3.8111481289255367e+00 3.4440782078701638e+01 0 0 -1 +1292 0 1 0.0000000000000000e+00 5.8846593312570185e+01 2.1325998832605682e+00 1.9018753404614753e+01 0 0 0 +1290 0 1 0.0000000000000000e+00 5.3503020611045464e+01 2.4390111888905315e+00 1.9102172386628446e+01 0 0 0 +1931 0 1 0.0000000000000000e+00 5.3623075197357338e+01 1.5078082508394832e+01 2.3512173974337230e+01 0 0 0 +1807 0 1 0.0000000000000000e+00 6.4512659136847006e+01 1.7531301535271911e+01 1.6828590734589955e+01 0 0 0 +1483 0 1 0.0000000000000000e+00 5.6090224634153465e+01 3.4419725507235846e+01 2.9703975663104579e+01 0 -1 0 +1547 0 1 0.0000000000000000e+00 5.6382294106156685e+01 1.7452432613228805e+01 3.3850648466522564e+01 0 0 -1 +1037 0 1 0.0000000000000000e+00 6.0286660980518562e+01 3.3847704967972845e+01 3.3858377991042765e+01 0 -1 -1 +2048 0 1 0.0000000000000000e+00 6.7554755533516015e+01 3.2034927526120633e+01 3.2975328418254350e+01 0 0 0 +2047 0 1 0.0000000000000000e+00 6.5667772040578754e+01 3.0619777575856734e+01 2.9600395944379247e+01 0 0 0 +1802 0 1 0.0000000000000000e+00 5.3941264273968187e+01 1.9665213646724936e+01 1.8867403106183311e+01 0 0 0 +2046 0 1 0.0000000000000000e+00 6.2971108887009535e+01 3.2019313246621330e+01 3.2076839404288386e+01 0 0 0 +1804 0 1 0.0000000000000000e+00 5.7903471976108925e+01 1.9104946032093522e+01 1.8822850505214124e+01 0 0 0 +2045 0 1 0.0000000000000000e+00 6.0369798634583908e+01 3.0360641621137411e+01 2.9788375361668621e+01 0 0 0 +1806 0 1 0.0000000000000000e+00 6.2587826032774650e+01 1.8929723331773854e+01 1.9048476169377814e+01 0 0 0 +1359 0 1 0.0000000000000000e+00 6.4896125988575051e+01 3.4425925251954865e+01 2.1080342555763746e+01 0 -1 0 +1808 0 1 0.0000000000000000e+00 6.6528571976683054e+01 1.9562478105251536e+01 1.8865103217168244e+01 0 0 0 +1417 0 1 0.0000000000000000e+00 5.1921227065891678e+01 1.4381452370702177e-01 2.5297116508037750e+01 0 0 0 +1818 0 1 0.0000000000000000e+00 5.3934829270206421e+01 2.3589937699383235e+01 1.9077194671799063e+01 0 0 0 +1820 0 1 0.0000000000000000e+00 5.8261193882039741e+01 2.3667451874244023e+01 1.9231183771527455e+01 0 0 0 +1822 0 1 0.0000000000000000e+00 6.2283669667936827e+01 2.3489333478098985e+01 1.9309578072932108e+01 0 0 0 +1824 0 1 0.0000000000000000e+00 6.7055531387823166e+01 2.3786892171474559e+01 1.8703414995777369e+01 0 0 0 +1995 0 1 0.0000000000000000e+00 5.6461528020374047e+01 1.7478942298024290e+01 3.0175882636470305e+01 0 0 0 +1839 0 1 0.0000000000000000e+00 6.4487925373263181e+01 2.5776329973530213e+01 1.6948262708545958e+01 0 0 0 +1999 0 1 0.0000000000000000e+00 6.4904981422658139e+01 1.7419767820854080e+01 2.9676020002359799e+01 0 0 0 +2031 0 1 0.0000000000000000e+00 6.4961683763090150e+01 2.6079704507425863e+01 2.9694483476322571e+01 0 0 0 +1834 0 1 0.0000000000000000e+00 5.3916208115444029e+01 2.7433186623559319e+01 1.8896892697224601e+01 0 0 0 +1836 0 1 0.0000000000000000e+00 5.8027791021886713e+01 2.8242583543435639e+01 1.9114230019164292e+01 0 0 0 +1563 0 1 0.0000000000000000e+00 5.5846024654531362e+01 2.1792440300668435e+01 3.4476528715549549e+01 0 0 -1 +1838 0 1 0.0000000000000000e+00 6.2372608375954414e+01 2.7808520477477764e+01 1.8837493169066207e+01 0 0 0 +1840 0 1 0.0000000000000000e+00 6.6318111682348274e+01 2.7945517627296219e+01 1.8609578602260559e+01 0 0 0 +1579 0 1 0.0000000000000000e+00 5.5869017496699186e+01 2.5965704313895909e+01 3.4071579097563330e+01 0 0 -1 +2029 0 1 0.0000000000000000e+00 6.0557536238913293e+01 2.6138033347587257e+01 2.9527269002906710e+01 0 0 0 +2028 0 1 0.0000000000000000e+00 5.8278541471759539e+01 2.7933519135102500e+01 3.2015765372096197e+01 0 0 0 +2027 0 1 0.0000000000000000e+00 5.6775287057559417e+01 2.5575899696598864e+01 2.9659846594876477e+01 0 0 0 +2026 0 1 0.0000000000000000e+00 5.4664613312650253e+01 2.7850849078607734e+01 3.1883174577933413e+01 0 0 0 +1850 0 1 0.0000000000000000e+00 5.4089656843490090e+01 3.2797887399505676e+01 1.9333767997779063e+01 0 0 0 +1561 0 1 0.0000000000000000e+00 5.1013237511151281e+01 2.2292399586237355e+01 3.3385022842259609e+01 0 0 -1 +1852 0 1 0.0000000000000000e+00 5.7612227829572156e+01 3.3449990446649842e+01 1.9119728707083933e+01 0 0 0 +1854 0 1 0.0000000000000000e+00 6.2345791278543786e+01 3.2157847919442808e+01 1.8589864597170173e+01 0 0 0 +2032 0 1 0.0000000000000000e+00 6.7191259495159059e+01 2.7588398874389014e+01 3.2047364462109691e+01 0 0 0 +1856 0 1 0.0000000000000000e+00 6.6513261686214477e+01 3.2121534412055397e+01 1.8911241868236822e+01 0 0 0 +2044 0 1 0.0000000000000000e+00 5.7174328508464740e+01 3.2053711499981105e+01 3.2034307998087712e+01 0 0 0 +2043 0 1 0.0000000000000000e+00 5.5848021183990873e+01 3.0351025003642185e+01 2.9348502469726515e+01 0 0 0 +1423 0 1 0.0000000000000000e+00 6.4952352517406709e+01 9.6983051162515405e-02 2.5398134535405546e+01 0 0 0 +2042 0 1 0.0000000000000000e+00 5.3546605591633153e+01 3.2005680789985988e+01 3.1619027788137711e+01 0 0 0 +1823 0 1 0.0000000000000000e+00 6.4652309031906796e+01 2.1629307536751678e+01 1.6943526615592251e+01 0 0 0 +1866 0 1 0.0000000000000000e+00 5.3611710170371765e+01 1.9596656182018098e+01 2.2957114946253466e+01 0 0 0 +1868 0 1 0.0000000000000000e+00 5.8406397007181567e+01 1.9179584008575745e+01 2.3404780799474160e+01 0 0 0 +1870 0 1 0.0000000000000000e+00 6.2878609841992422e+01 1.8736296934140036e+01 2.2697015528192910e+01 0 0 0 +1872 0 1 0.0000000000000000e+00 6.7311354371698073e+01 1.9731206882357103e+01 2.3024445996275070e+01 0 0 0 +1231 0 1 0.0000000000000000e+00 6.4484280260460480e+01 3.4351879270781410e+01 1.2835091805120017e+01 0 -1 0 +1882 0 1 0.0000000000000000e+00 5.3925749291623902e+01 2.3245849458753487e+01 2.3549239909231034e+01 0 0 0 +1883 0 1 0.0000000000000000e+00 5.5969474820233025e+01 2.1216675876926452e+01 2.1078292259298973e+01 0 0 0 +1884 0 1 0.0000000000000000e+00 5.8005512762491122e+01 2.2951164830060808e+01 2.3398298944044615e+01 0 0 0 +1885 0 1 0.0000000000000000e+00 6.0479889720444795e+01 2.1251434863956565e+01 2.0825972260593108e+01 0 0 0 +1886 0 1 0.0000000000000000e+00 6.2118460464416714e+01 2.3352669005783042e+01 2.2742274401022993e+01 0 0 0 +1887 0 1 0.0000000000000000e+00 6.4786197897191954e+01 2.1465079944670723e+01 2.1072752903738788e+01 0 0 0 +1888 0 1 0.0000000000000000e+00 6.6571249092967889e+01 2.3610550052984646e+01 2.2718660309036547e+01 0 0 0 +1034 0 1 0.0000000000000000e+00 5.3278945234263702e+01 2.0326927362158740e+00 2.0971333763055759e+00 0 0 0 +1898 0 1 0.0000000000000000e+00 5.4335927192783757e+01 2.8170135496930278e+01 2.3003282919382841e+01 0 0 0 +1899 0 1 0.0000000000000000e+00 5.6066749790324444e+01 2.5433648809524612e+01 2.1305812967226039e+01 0 0 0 +1900 0 1 0.0000000000000000e+00 5.8358397897360057e+01 2.8574943157094495e+01 2.2938432918390401e+01 0 0 0 +1901 0 1 0.0000000000000000e+00 6.0058096913192571e+01 2.5514775245911476e+01 2.1496843044000656e+01 0 0 0 +1902 0 1 0.0000000000000000e+00 6.2409731034135305e+01 2.7792097383090173e+01 2.3236425319811492e+01 0 0 0 +1903 0 1 0.0000000000000000e+00 6.4574307442853694e+01 2.5555280778155947e+01 2.0746668098491554e+01 0 0 0 +1904 0 1 0.0000000000000000e+00 6.6330605656145522e+01 2.7954712126323830e+01 2.2233047023632775e+01 0 0 0 +339 0 1 0.0000000000000000e+00 3.8951623741033444e+01 5.9649514979481588e-01 3.8410584201320574e+00 0 0 0 +1914 0 1 0.0000000000000000e+00 5.4394240577785631e+01 3.2796208813737010e+01 2.2942756361237507e+01 0 0 0 +1915 0 1 0.0000000000000000e+00 5.5794696183730998e+01 3.0677111729501945e+01 2.1270636772794870e+01 0 0 0 +1916 0 1 0.0000000000000000e+00 5.8383010158809519e+01 3.2504465543747422e+01 2.2766143707824025e+01 0 0 0 +1917 0 1 0.0000000000000000e+00 6.0382977840551114e+01 3.0575955637577980e+01 2.0632605108760210e+01 0 0 0 +1918 0 1 0.0000000000000000e+00 6.2467681987885655e+01 3.2063425081777268e+01 2.3588175834244069e+01 0 0 0 +1919 0 1 0.0000000000000000e+00 6.4382390990908917e+01 3.0070183784195816e+01 2.0897997203554031e+01 0 0 0 +1920 0 1 0.0000000000000000e+00 6.6820818014776890e+01 3.2274240165530074e+01 2.2823021139331843e+01 0 0 0 +1548 0 1 0.0000000000000000e+00 5.8330289468417135e+01 1.9766415299320236e+01 1.7900029826971779e+00 0 0 0 +1930 0 1 0.0000000000000000e+00 5.4484147474471612e+01 1.9413317032893531e+01 2.6916482189214467e+01 0 0 0 +1932 0 1 0.0000000000000000e+00 5.6203392128176645e+01 1.7328089624546955e+01 2.5143078444449234e+01 0 0 0 +1934 0 1 0.0000000000000000e+00 6.2923092168308237e+01 1.9965957556645620e+01 2.7827673606180095e+01 0 0 0 +1036 0 1 0.0000000000000000e+00 5.8774383687949211e+01 1.8224302960662728e+00 1.2641410459778732e+00 0 0 0 +1936 0 1 0.0000000000000000e+00 6.7365514174682730e+01 1.9564635147295370e+01 2.7356637352900911e+01 0 0 0 +1050 0 1 0.0000000000000000e+00 5.3697033456074458e+01 6.9738159062803033e+00 1.1713281463120715e+00 0 0 0 +1946 0 1 0.0000000000000000e+00 5.4114438539870072e+01 2.3587772686374386e+01 2.7184679491829904e+01 0 0 0 +1947 0 1 0.0000000000000000e+00 5.5869891385377478e+01 2.1179264402406766e+01 2.5019002799382491e+01 0 0 0 +1948 0 1 0.0000000000000000e+00 5.8437003520912100e+01 2.3013838100221331e+01 2.6924247773241170e+01 0 0 0 +1949 0 1 0.0000000000000000e+00 6.0823916155225383e+01 2.1194655646919358e+01 2.4989878727265040e+01 0 0 0 +1950 0 1 0.0000000000000000e+00 6.2660851048329235e+01 2.4228205413243156e+01 2.7320763245886262e+01 0 0 0 +1951 0 1 0.0000000000000000e+00 6.4821751184627814e+01 2.1474668973309559e+01 2.5286516821797534e+01 0 0 0 +1952 0 1 0.0000000000000000e+00 6.6475506306808327e+01 2.3690951947566067e+01 2.6972419346839576e+01 0 0 0 +1041 0 1 0.0000000000000000e+00 3.7347066240251664e+01 5.6451578840770686e+00 2.8122192303813353e+01 0 0 -1 +1961 0 1 0.0000000000000000e+00 5.1751289426200181e+01 2.5764785043767890e+01 2.5486264261318968e+01 0 0 0 +1962 0 1 0.0000000000000000e+00 5.4241871743192760e+01 2.7877024017469488e+01 2.6982969245914020e+01 0 0 0 +1963 0 1 0.0000000000000000e+00 5.6193858769640585e+01 2.5728659450010991e+01 2.4901900284006704e+01 0 0 0 +1964 0 1 0.0000000000000000e+00 5.7743591211441547e+01 2.8062455456289012e+01 2.7637159510720377e+01 0 0 0 +1965 0 1 0.0000000000000000e+00 5.9897592440898563e+01 2.6005207998075043e+01 2.5464564670359014e+01 0 0 0 +1966 0 1 0.0000000000000000e+00 6.2492255888035025e+01 2.8086070736020908e+01 2.7344224539690963e+01 0 0 0 +1967 0 1 0.0000000000000000e+00 6.4641964369971703e+01 2.5650761780260947e+01 2.4704279389718337e+01 0 0 0 +1968 0 1 0.0000000000000000e+00 6.7199244085411124e+01 2.7723873968427608e+01 2.7821660180164553e+01 0 0 0 +886 0 1 0.0000000000000000e+00 3.4866840178200320e+01 1.2016525926043185e+01 1.0686260060072945e+01 0 1 1 +1978 0 1 0.0000000000000000e+00 5.3612263287389062e+01 3.2465510416370698e+01 2.7723058155452772e+01 0 0 0 +1979 0 1 0.0000000000000000e+00 5.6215503478642589e+01 3.0392798149868728e+01 2.5118433246964052e+01 0 0 0 +1980 0 1 0.0000000000000000e+00 5.8525554709505194e+01 3.2797232350424103e+01 2.7958207446479417e+01 0 0 0 +1981 0 1 0.0000000000000000e+00 5.9861455179257746e+01 3.0161742451428751e+01 2.5444831702144409e+01 0 0 0 +1982 0 1 0.0000000000000000e+00 6.2760421255797894e+01 3.2047826280754464e+01 2.7482042446225485e+01 0 0 0 +1983 0 1 0.0000000000000000e+00 6.5128170686670742e+01 2.9841022937866782e+01 2.5926867553232157e+01 0 0 0 +1984 0 1 0.0000000000000000e+00 6.7691898631334951e+01 3.2397648208349949e+01 2.7318088034571037e+01 0 0 0 +2030 0 1 0.0000000000000000e+00 6.2738282856471308e+01 2.8012489551090194e+01 3.1861779228360508e+01 0 0 0 +1994 0 1 0.0000000000000000e+00 5.4271963898832908e+01 2.0057572599064727e+01 3.0924172853277760e+01 0 0 0 +1996 0 1 0.0000000000000000e+00 5.8284522365970190e+01 2.0071816998506293e+01 3.1746706472492594e+01 0 0 0 +1929 0 1 0.0000000000000000e+00 4.9533894045679062e+01 1.9188563155799706e+01 2.7799420373072586e+01 0 0 0 +1998 0 1 0.0000000000000000e+00 6.2639988860210060e+01 1.9634845710784077e+01 3.1753775964077317e+01 0 0 0 +2000 0 1 0.0000000000000000e+00 6.6827489511499692e+01 1.9625815678732380e+01 3.2466354783181593e+01 0 0 0 +1634 0 1 0.0000000000000000e+00 3.7658762203096707e+01 2.3399251884880755e+01 5.3991583225009441e+00 0 0 0 +2009 0 1 0.0000000000000000e+00 5.2218350251178144e+01 2.1721163332071136e+01 2.9601310245416006e+01 0 0 0 +2010 0 1 0.0000000000000000e+00 5.3683045886965374e+01 2.4118323844202376e+01 3.1418113551163742e+01 0 0 0 +2011 0 1 0.0000000000000000e+00 5.6237259998003445e+01 2.2125632754060824e+01 2.9570860273052784e+01 0 0 0 +2012 0 1 0.0000000000000000e+00 5.8554542328649447e+01 2.3765485897961664e+01 3.2590471844166196e+01 0 0 0 +2013 0 1 0.0000000000000000e+00 5.8591209194326211e+01 1.9385386883465635e+01 2.7074650553128397e+01 0 0 0 +2014 0 1 0.0000000000000000e+00 6.0607252544471109e+01 2.2133727939499344e+01 2.9671277516974918e+01 0 0 0 +2015 0 1 0.0000000000000000e+00 6.5449009906996992e+01 2.2235928853677937e+01 3.0187911117530000e+01 0 0 0 +2016 0 1 0.0000000000000000e+00 6.7491857531540035e+01 2.3725751089938637e+01 3.2659660336677696e+01 0 0 0 +492 0 1 0.0000000000000000e+00 3.8075410910314147e+01 1.0581188251944855e+01 4.9536571281985458e+00 0 0 1 +1851 0 1 0.0000000000000000e+00 5.5982063202140154e+01 3.0531097247930415e+01 1.7730856104917219e+01 0 0 0 +1421 0 1 0.0000000000000000e+00 6.0806411199166917e+01 7.6052262009386487e-02 2.5547711129899632e+01 0 0 0 +1577 0 1 0.0000000000000000e+00 5.1947896136628778e+01 2.6591031234889918e+01 3.3697543781238203e+01 0 0 -1 +1855 0 1 0.0000000000000000e+00 6.4398218213998845e+01 3.0129945090781597e+01 1.6389559635249480e+01 0 0 0 +18 0 1 0.0000000000000000e+00 3.9672079411961221e+01 2.1738996416707050e+01 3.0546362095422097e+01 0 0 0 +1869 0 1 0.0000000000000000e+00 6.0332102104544930e+01 1.7199988621212686e+01 2.0666380231055633e+01 0 0 0 +1419 0 1 0.0000000000000000e+00 5.6195061523864020e+01 3.4469500735948152e+01 2.5526206211025464e+01 0 -1 0 +1595 0 1 0.0000000000000000e+00 5.5121884496603279e+01 3.0359958630606044e+01 4.3325188341673149e-02 0 0 0 +1295 0 1 0.0000000000000000e+00 6.4542145235758241e+01 3.4064219378304756e+01 1.6786657953343816e+01 0 -1 0 +1481 0 1 0.0000000000000000e+00 5.1703723369789920e+01 3.2500769048765588e-01 3.0034736458740909e+01 0 0 0 +1355 0 1 0.0000000000000000e+00 5.6113607970114373e+01 1.0753382146396828e+00 2.1072717956086340e+01 0 0 0 +1597 0 1 0.0000000000000000e+00 6.0511220899465641e+01 3.0089803663263144e+01 3.3402409252861183e+01 0 0 -1 +1565 0 1 0.0000000000000000e+00 6.0486070722019804e+01 2.1187839208527226e+01 3.3820969897056926e+01 0 0 -1 +1307 0 1 0.0000000000000000e+00 5.6474319197519321e+01 4.0771464726080051e+00 1.7762746071794886e+01 0 0 0 +1278 0 1 0.0000000000000000e+00 6.2213962234465271e+01 1.5468377187989159e+01 1.4411181255077924e+01 0 0 0 +1611 0 1 0.0000000000000000e+00 5.6264322188490567e+01 1.6926921439754196e+01 3.6321506384092221e+00 0 0 0 +1039 0 1 0.0000000000000000e+00 6.5099831726238079e+01 3.4468830979110727e+01 5.4372419669367011e-02 0 -1 0 +1792 0 1 0.0000000000000000e+00 6.6828878908040664e+01 3.2073263843760330e+01 1.4952089147672517e+01 0 0 0 +1038 0 1 0.0000000000000000e+00 6.2358417670160549e+01 2.0707503370408094e+00 1.2220675298253072e+00 0 0 0 +1679 0 1 0.0000000000000000e+00 6.4678592620954248e+01 1.7405997018113364e+01 8.0081749230601460e+00 0 0 0 +1849 0 1 0.0000000000000000e+00 5.1852932841362488e+01 3.0128222438575410e+01 1.7104358996003121e+01 0 0 0 +1853 0 1 0.0000000000000000e+00 5.9904488967502260e+01 3.0435364787608957e+01 1.7177351335038672e+01 0 0 0 +1085 0 1 0.0000000000000000e+00 6.0378632947190511e+01 1.3183019646702400e+01 3.4508100622725323e+01 0 0 -1 +1229 0 1 0.0000000000000000e+00 5.9906056409253509e+01 6.1815979663641041e-01 1.2535579478677827e+01 0 0 0 +1567 0 1 0.0000000000000000e+00 6.4727735280225076e+01 2.1336637838258884e+01 3.4061168088062459e+01 0 0 -1 +1101 0 1 0.0000000000000000e+00 6.0356671662532399e+01 7.6701472892657691e-02 4.0206694267467249e+00 0 0 0 +1677 0 1 0.0000000000000000e+00 6.0523451398700985e+01 1.7334965887022499e+01 8.2864235271279174e+00 0 0 0 +1067 0 1 0.0000000000000000e+00 5.6647566800630358e+01 8.5543768307031662e+00 3.4072068759737199e+01 0 0 -1 +1040 0 1 0.0000000000000000e+00 6.7178711542900601e+01 2.1300192659015784e+00 2.1002311513536345e+00 0 0 0 +1053 0 1 0.0000000000000000e+00 6.0181265962480808e+01 4.4575625569478383e+00 3.3429368145522332e+01 0 0 -1 +1069 0 1 0.0000000000000000e+00 6.0699182254263341e+01 8.1939016396366302e+00 3.4023384869903481e+01 0 0 -1 +1327 0 1 0.0000000000000000e+00 6.4573269246106051e+01 8.7221876103341245e+00 1.6937795305171662e+01 0 0 0 +1293 0 1 0.0000000000000000e+00 6.0529470337976470e+01 3.4522813852104285e+01 1.7160664299768726e+01 0 -1 0 +1309 0 1 0.0000000000000000e+00 6.0184503628858025e+01 3.9332183969324865e+00 1.6396923866157966e+01 0 0 0 +1837 0 1 0.0000000000000000e+00 6.0766245915063841e+01 2.5194523725293532e+01 1.6664361981992766e+01 0 0 0 +1833 0 1 0.0000000000000000e+00 5.2220685025613072e+01 2.5973646846010080e+01 1.5760570482224782e+01 0 0 0 +1905 0 1 0.0000000000000000e+00 6.8838350105454751e+01 2.9961768763452813e+01 2.0767976638349946e+01 -1 0 0 +1087 0 1 0.0000000000000000e+00 6.5315120360867709e+01 1.2870597405538854e+01 3.4128340562933438e+01 0 0 -1 +1058 0 1 0.0000000000000000e+00 3.7865211528102549e+01 3.1086144769263444e+00 3.1619240343289700e+01 0 0 -1 +1339 0 1 0.0000000000000000e+00 5.5827812239410576e+01 1.3191923799348297e+01 1.7340289732148761e+01 0 0 0 +1291 0 1 0.0000000000000000e+00 5.5822354095974084e+01 3.0052851550642967e-01 1.6857080710231710e+01 0 0 0 +1615 0 1 0.0000000000000000e+00 6.4906223474550885e+01 1.7232377041043446e+01 3.9007655321833687e+00 0 0 0 +1341 0 1 0.0000000000000000e+00 6.0170375995025552e+01 1.2988568274746875e+01 1.6267392405844586e+01 0 0 0 +1549 0 1 0.0000000000000000e+00 6.0441328851636349e+01 1.7304573581813724e+01 3.4289497568316413e+01 0 0 -1 +1165 0 1 0.0000000000000000e+00 6.0225060739720654e+01 9.9910522193430870e-02 7.9287053821001248e+00 0 0 0 +1083 0 1 0.0000000000000000e+00 5.6516868577185214e+01 1.3690199940464474e+01 3.3727770009320700e+01 0 0 -1 +1103 0 1 0.0000000000000000e+00 6.4361905220129245e+01 2.1333278843004799e-01 3.6302270264123422e+00 0 0 0 +1741 0 1 0.0000000000000000e+00 6.0253377841661731e+01 1.7585313866029374e+01 1.2416600645540203e+01 0 0 0 +1035 0 1 0.0000000000000000e+00 5.6126732611630935e+01 7.1841252671537653e-02 3.3800417621784440e+01 0 0 -1 +1821 0 1 0.0000000000000000e+00 6.0560098210901558e+01 2.1203668022339574e+01 1.7404157409695987e+01 0 0 0 +1248 0 1 0.0000000000000000e+00 6.6471152084541330e+01 6.0180283563782675e+00 1.5209579670948312e+01 0 0 0 +1247 0 1 0.0000000000000000e+00 6.4943301023073744e+01 4.1132289387422887e+00 1.2800219709824223e+01 0 0 0 +1246 0 1 0.0000000000000000e+00 6.2298631104768639e+01 6.5725388251359051e+00 1.4463333604352048e+01 0 0 0 +1245 0 1 0.0000000000000000e+00 6.0391837021792604e+01 4.4925702816804955e+00 1.2782228727128157e+01 0 0 0 +1244 0 1 0.0000000000000000e+00 5.8104908418724676e+01 6.6943629565141238e+00 1.4796547018176529e+01 0 0 0 +1243 0 1 0.0000000000000000e+00 5.6164329494302116e+01 4.3197014083470808e+00 1.3266602509618812e+01 0 0 0 +1242 0 1 0.0000000000000000e+00 5.4348816181631506e+01 6.5148004915910631e+00 1.5433544640331409e+01 0 0 0 +1583 0 1 0.0000000000000000e+00 6.4914544518194688e+01 2.6095052253900530e+01 3.4163676683970884e+01 0 0 -1 +1819 0 1 0.0000000000000000e+00 5.6406992075836271e+01 2.1821092262001422e+01 1.7002377798637720e+01 0 0 0 +1163 0 1 0.0000000000000000e+00 5.5814911650895723e+01 3.4496621130823598e+01 8.7717415696613337e+00 0 -1 0 +1167 0 1 0.0000000000000000e+00 6.4715672806234124e+01 3.4453878852588510e+01 8.5815750078666042e+00 0 -1 0 +1562 0 1 0.0000000000000000e+00 5.3523491332565499e+01 2.3736028564169015e+01 1.5051222983856540e+00 0 0 0 +1760 0 1 0.0000000000000000e+00 6.6960965589881454e+01 2.3660435004914696e+01 1.4948130255161271e+01 0 0 0 +1759 0 1 0.0000000000000000e+00 6.4848533605556710e+01 2.1263109547388641e+01 1.2458909376214358e+01 0 0 0 +1758 0 1 0.0000000000000000e+00 6.2658771037181886e+01 2.3425106319785417e+01 1.4811079023942716e+01 0 0 0 +1757 0 1 0.0000000000000000e+00 6.0436963621091571e+01 2.1274647122298362e+01 1.2982908663196437e+01 0 0 0 +1232 0 1 0.0000000000000000e+00 6.6838083926142815e+01 1.6267352577814809e+00 1.4781137781209532e+01 0 0 0 +1263 0 1 0.0000000000000000e+00 6.4845446792161169e+01 8.3263641806584410e+00 1.2669102721735937e+01 0 0 0 +1230 0 1 0.0000000000000000e+00 6.2374925988631951e+01 1.9566258494026596e+00 1.4153367860022906e+01 0 0 0 +1756 0 1 0.0000000000000000e+00 5.8319471090734844e+01 2.3745552733328417e+01 1.5139831718596938e+01 0 0 0 +1228 0 1 0.0000000000000000e+00 5.7890929169706432e+01 2.0410814958276191e+00 1.5046357218723816e+01 0 0 0 +1755 0 1 0.0000000000000000e+00 5.6026773945228804e+01 2.1887089252288231e+01 1.2942862588098405e+01 0 0 0 +1226 0 1 0.0000000000000000e+00 5.3100915388677215e+01 2.5987595635767127e+00 1.4640216191644969e+01 0 0 0 +1264 0 1 0.0000000000000000e+00 6.6820709415663629e+01 1.0757808332242698e+01 1.4654027449905138e+01 0 0 0 +1754 0 1 0.0000000000000000e+00 5.3575973820809892e+01 2.3332368408697338e+01 1.4775401699188951e+01 0 0 0 +1099 0 1 0.0000000000000000e+00 5.6123013045682363e+01 5.0778613785114068e-01 3.4790952818518499e+00 0 0 0 +1744 0 1 0.0000000000000000e+00 6.6997009279793573e+01 1.9430968279198712e+01 1.4843876515542751e+01 0 0 0 +1776 0 1 0.0000000000000000e+00 6.7251057195811981e+01 2.7636527452479726e+01 1.4588588335853769e+01 0 0 0 +1742 0 1 0.0000000000000000e+00 6.2572428885994981e+01 1.9365882409678154e+01 1.4562926884744769e+01 0 0 0 +1773 0 1 0.0000000000000000e+00 6.0143136615476173e+01 2.6054167113062100e+01 1.2554373809693644e+01 0 0 0 +1740 0 1 0.0000000000000000e+00 5.8389126518604904e+01 1.9804005080696154e+01 1.4988892992014602e+01 0 0 0 +1739 0 1 0.0000000000000000e+00 5.6157831671760505e+01 1.7872043663384982e+01 1.2520669959067879e+01 0 0 0 +1216 0 1 0.0000000000000000e+00 6.6221865097155700e+01 1.4810919161235869e+01 1.0449943577723676e+01 0 0 0 +1215 0 1 0.0000000000000000e+00 6.3896847561940454e+01 1.2685168765456266e+01 8.2624809111232249e+00 0 0 0 +1214 0 1 0.0000000000000000e+00 6.2207250697016107e+01 1.4955941648504043e+01 1.0716179858814831e+01 0 0 0 +1213 0 1 0.0000000000000000e+00 5.9937142607240489e+01 1.3126931172366316e+01 8.5971308190105269e+00 0 0 0 +1212 0 1 0.0000000000000000e+00 5.7790194584390441e+01 1.4416127431865664e+01 1.1014334231251933e+01 0 0 0 +1211 0 1 0.0000000000000000e+00 5.6053108266637977e+01 1.2622514724018345e+01 8.0434244921941360e+00 0 0 0 +1210 0 1 0.0000000000000000e+00 5.4127266666604726e+01 1.4866002514992035e+01 1.0295225116964829e+01 0 0 0 +1738 0 1 0.0000000000000000e+00 5.3548893605147065e+01 1.9822174526817090e+01 1.4759668093313012e+01 0 0 0 +1774 0 1 0.0000000000000000e+00 6.2166295132756460e+01 2.8269241088575352e+01 1.4874128121291770e+01 0 0 0 +1581 0 1 0.0000000000000000e+00 6.3250109469742682e+01 2.3804599241314762e+01 3.1707309774919405e+01 0 0 -1 +1772 0 1 0.0000000000000000e+00 5.8383178964603786e+01 2.8237685734396390e+01 1.4881094880877660e+01 0 0 0 +1728 0 1 0.0000000000000000e+00 6.6914482301213880e+01 3.2433591617992356e+01 1.0934439629940202e+01 0 0 0 +1727 0 1 0.0000000000000000e+00 6.4289951088390723e+01 3.0786652835769505e+01 8.5540729869287109e+00 0 0 0 +1726 0 1 0.0000000000000000e+00 6.2214644824618965e+01 3.2598387877682462e+01 1.0694230316306154e+01 0 0 0 +1725 0 1 0.0000000000000000e+00 6.0421647588719075e+01 3.0179584060734548e+01 8.4217600908093786e+00 0 0 0 +1724 0 1 0.0000000000000000e+00 5.8207754674975838e+01 3.2861322088638225e+01 1.0739284140548010e+01 0 0 0 +1200 0 1 0.0000000000000000e+00 6.6543290070255509e+01 1.0585451208240901e+01 1.0757854844380162e+01 0 0 0 +1199 0 1 0.0000000000000000e+00 6.4190362866434512e+01 8.0913630423818503e+00 8.5425497985758128e+00 0 0 0 +1198 0 1 0.0000000000000000e+00 6.2294689095099187e+01 1.0383167535079650e+01 1.0391633193088493e+01 0 0 0 +1197 0 1 0.0000000000000000e+00 6.0085611266869115e+01 7.9398720038419910e+00 8.4161273099513760e+00 0 0 0 +1196 0 1 0.0000000000000000e+00 5.8102651576274717e+01 1.0574567382946720e+01 1.0192702275460311e+01 0 0 0 +1195 0 1 0.0000000000000000e+00 5.6469033416669348e+01 8.2522910860034173e+00 8.0645551493867185e+00 0 0 0 +1194 0 1 0.0000000000000000e+00 5.4012277548901224e+01 1.0565257659785063e+01 1.0098554775271705e+01 0 0 0 +1723 0 1 0.0000000000000000e+00 5.6494185079152714e+01 3.0559516128620682e+01 8.3657297879487977e+00 0 0 0 +1722 0 1 0.0000000000000000e+00 5.3810646696904790e+01 3.2387515853748724e+01 1.0637458310057818e+01 0 0 0 +1712 0 1 0.0000000000000000e+00 6.6315899315886028e+01 2.8413701309942571e+01 1.0217678753359378e+01 0 0 0 +1711 0 1 0.0000000000000000e+00 6.4507845679186076e+01 2.5607589552175554e+01 9.0205764620838842e+00 0 0 0 +1710 0 1 0.0000000000000000e+00 6.2452668207245765e+01 2.8429242469051452e+01 1.0380055636694937e+01 0 0 0 +1709 0 1 0.0000000000000000e+00 6.0232477191259861e+01 2.5441472812680598e+01 8.0459303183274802e+00 0 0 0 +1708 0 1 0.0000000000000000e+00 5.8476683574423085e+01 2.7657495821358747e+01 1.0466825708716380e+01 0 0 0 +1707 0 1 0.0000000000000000e+00 5.6565611668353149e+01 2.6076918241690109e+01 7.9239851674001205e+00 0 0 0 +1706 0 1 0.0000000000000000e+00 5.4577725528963171e+01 2.7979513019086550e+01 1.0230869634581104e+01 0 0 0 +1184 0 1 0.0000000000000000e+00 6.7242493059102188e+01 6.2261548015788977e+00 1.0581356528350559e+01 0 0 0 +1183 0 1 0.0000000000000000e+00 6.4392891704027761e+01 4.1473708963862190e+00 8.1909661349987246e+00 0 0 0 +1182 0 1 0.0000000000000000e+00 6.2570440050890568e+01 6.0764404721245580e+00 1.0846944742593793e+01 0 0 0 +1181 0 1 0.0000000000000000e+00 5.9955101588959863e+01 3.8193410095332019e+00 8.6491186153638289e+00 0 0 0 +1180 0 1 0.0000000000000000e+00 5.8157461412369059e+01 6.5333996242011860e+00 1.0697561831546698e+01 0 0 0 +1179 0 1 0.0000000000000000e+00 5.5792231786976366e+01 4.4478815212338150e+00 8.0311394175039261e+00 0 0 0 +1178 0 1 0.0000000000000000e+00 5.4156002352776511e+01 6.6005560668339651e+00 1.0166519560344337e+01 0 0 0 +1325 0 1 0.0000000000000000e+00 6.0908032586781133e+01 7.7080433581994434e+00 1.7043462092418594e+01 0 0 0 +1696 0 1 0.0000000000000000e+00 6.7108780737024816e+01 2.3212064087299151e+01 1.0154198697781457e+01 0 0 0 +1695 0 1 0.0000000000000000e+00 6.4156861557574814e+01 2.1564510727384462e+01 8.4604690125213793e+00 0 0 0 +1694 0 1 0.0000000000000000e+00 6.2405782006301770e+01 2.3786185729741451e+01 1.1102792730583676e+01 0 0 0 +1693 0 1 0.0000000000000000e+00 6.0718923493486720e+01 2.1343923587912286e+01 8.6374917545556418e+00 0 0 0 +1692 0 1 0.0000000000000000e+00 5.8523046123615096e+01 2.3558143107275797e+01 1.0869683090203999e+01 0 0 0 +1691 0 1 0.0000000000000000e+00 5.7182378458986797e+01 2.2203567507295780e+01 7.8938916453185461e+00 0 0 0 +1690 0 1 0.0000000000000000e+00 5.4423274886864938e+01 2.3696561433979692e+01 1.0328597616267359e+01 0 0 0 +1168 0 1 0.0000000000000000e+00 6.6782816149384701e+01 1.8536603660132065e+00 1.0509349318494687e+01 0 0 0 +1790 0 1 0.0000000000000000e+00 6.2299574316279156e+01 3.2620466414818765e+01 1.4501237519997034e+01 0 0 0 +1166 0 1 0.0000000000000000e+00 6.2412147595590241e+01 2.1037412996966811e+00 1.0144172394029592e+01 0 0 0 +1550 0 1 0.0000000000000000e+00 6.1889062594426818e+01 1.9679657025214318e+01 2.3934446266995755e+00 0 0 0 +1164 0 1 0.0000000000000000e+00 5.7581029954839245e+01 2.3238528381959966e+00 1.0359037564042435e+01 0 0 0 +1680 0 1 0.0000000000000000e+00 6.7571619261762095e+01 1.8892718331451793e+01 1.0090473206973396e+01 0 0 0 +1162 0 1 0.0000000000000000e+00 5.3437686833800150e+01 2.9808927081155780e+00 1.0635132296740347e+01 0 0 0 +1678 0 1 0.0000000000000000e+00 6.2684484256157674e+01 1.8286373250821200e+01 1.0448068829279499e+01 0 0 0 +1676 0 1 0.0000000000000000e+00 5.7931361036012682e+01 1.9576949835711751e+01 1.0284929018850747e+01 0 0 0 +1674 0 1 0.0000000000000000e+00 5.3951269691290342e+01 2.0236864279857009e+01 1.0135633045156505e+01 0 0 0 +1785 0 1 0.0000000000000000e+00 5.2200238461251146e+01 2.9873129822220076e+01 1.2806891694889130e+01 0 0 0 +1664 0 1 0.0000000000000000e+00 6.6231849921533751e+01 3.2064475797837517e+01 5.9590131143980631e+00 0 0 0 +1663 0 1 0.0000000000000000e+00 6.4339830573048403e+01 2.9995533327795016e+01 3.7493983977598844e+00 0 0 0 +1662 0 1 0.0000000000000000e+00 6.2374218160092376e+01 3.2305263281039025e+01 5.8512203207740843e+00 0 0 0 +1661 0 1 0.0000000000000000e+00 5.9880869844962639e+01 3.0252269447286842e+01 3.8080622742547940e+00 0 0 0 +1660 0 1 0.0000000000000000e+00 5.8360378303538418e+01 3.2489396660631584e+01 6.0917796892825313e+00 0 0 0 +1152 0 1 0.0000000000000000e+00 6.6612268608314764e+01 1.4716084067999326e+01 6.7844886227578387e+00 0 0 0 +1151 0 1 0.0000000000000000e+00 6.4589747269771948e+01 1.2983110834349652e+01 4.3599649186473810e+00 0 0 0 +1150 0 1 0.0000000000000000e+00 6.2420576859840843e+01 1.4921133549385416e+01 6.5083139108939116e+00 0 0 0 +1149 0 1 0.0000000000000000e+00 6.0990383808993663e+01 1.2174713393941401e+01 4.1192676410955027e+00 0 0 0 +1148 0 1 0.0000000000000000e+00 5.7974429734307840e+01 1.5149210514885022e+01 6.2036615717250854e+00 0 0 0 +1147 0 1 0.0000000000000000e+00 5.6452581988113323e+01 1.2972719820608033e+01 3.6627642250860650e+00 0 0 0 +1146 0 1 0.0000000000000000e+00 5.3631135686255512e+01 1.5086065852286429e+01 6.1276183977676304e+00 0 0 0 +1564 0 1 0.0000000000000000e+00 6.0762237992881374e+01 2.5907554152894125e+01 3.3751475626497339e+01 0 0 -1 +1659 0 1 0.0000000000000000e+00 5.6162359920334509e+01 3.0033907200288148e+01 3.5656564821821983e+00 0 0 0 +1658 0 1 0.0000000000000000e+00 5.4229042196592786e+01 3.2783863106011324e+01 5.9293363007801476e+00 0 0 0 +1657 0 1 0.0000000000000000e+00 5.2440159057526309e+01 3.0272492030592808e+01 3.9454750168611601e+00 0 0 0 +1697 0 1 0.0000000000000000e+00 4.1599469392668176e+01 2.8412972698243660e+01 6.3666312473680868e+00 0 0 0 +1648 0 1 0.0000000000000000e+00 6.6143823087257289e+01 2.8348367149399696e+01 6.2880167207417745e+00 0 0 0 +1647 0 1 0.0000000000000000e+00 6.4069777158417295e+01 2.5456861937228080e+01 3.5638624249157425e+00 0 0 0 +1791 0 1 0.0000000000000000e+00 6.4608549763140687e+01 3.0367684958933015e+01 1.2755419471768072e+01 0 0 0 +1599 0 1 0.0000000000000000e+00 6.5032975534022341e+01 3.0080047781968595e+01 3.4181986348186740e+01 0 0 -1 +1136 0 1 0.0000000000000000e+00 6.6702631853398486e+01 1.0732854837808883e+01 5.8990304113934542e+00 0 0 0 +1135 0 1 0.0000000000000000e+00 6.4512849269553598e+01 8.3413837190490945e+00 4.0696131183954529e+00 0 0 0 +1134 0 1 0.0000000000000000e+00 6.2077627963076132e+01 1.0160747645193636e+01 6.4460982417521606e+00 0 0 0 +1133 0 1 0.0000000000000000e+00 6.0634876674438203e+01 8.0779670307053504e+00 3.5379390798373023e+00 0 0 0 +1132 0 1 0.0000000000000000e+00 5.8126061981087588e+01 1.0658468904661012e+01 5.6717071378262816e+00 0 0 0 +1131 0 1 0.0000000000000000e+00 5.5970486755089617e+01 8.3991511421061134e+00 3.6526445420970601e+00 0 0 0 +1130 0 1 0.0000000000000000e+00 5.3770764369461389e+01 1.0474830484824949e+01 6.0466239511826174e+00 0 0 0 +1646 0 1 0.0000000000000000e+00 6.2451391032232770e+01 2.8196710253049851e+01 6.1113696857643927e+00 0 0 0 +1645 0 1 0.0000000000000000e+00 6.0407515778451938e+01 2.5750428262757140e+01 3.8193631982504415e+00 0 0 0 +1644 0 1 0.0000000000000000e+00 5.8379726997554229e+01 2.8224148717436872e+01 5.9193096707589872e+00 0 0 0 +1643 0 1 0.0000000000000000e+00 5.6376413664037635e+01 2.5804055261713831e+01 3.7865246972541304e+00 0 0 0 +1546 0 1 0.0000000000000000e+00 5.4419927769298482e+01 1.9821631386356124e+01 2.2883813193946585e+00 0 0 0 +1642 0 1 0.0000000000000000e+00 5.4725432483384239e+01 2.8499352561240780e+01 6.1177546070130981e+00 0 0 0 +1613 0 1 0.0000000000000000e+00 6.0597113316395898e+01 1.6313550566611308e+01 4.0064111930282253e+00 0 0 0 +1632 0 1 0.0000000000000000e+00 6.6833274872070930e+01 2.3916177876407712e+01 6.3578810747208241e+00 0 0 0 +1566 0 1 0.0000000000000000e+00 6.2005934093666013e+01 2.3319701842745591e+01 1.3669868421847116e+00 0 0 0 +1120 0 1 0.0000000000000000e+00 6.6727661016320084e+01 6.3239699765293400e+00 6.1812476168064014e+00 0 0 0 +1119 0 1 0.0000000000000000e+00 6.5018643876360159e+01 4.5467081087491135e+00 3.5534988956458862e+00 0 0 0 +1118 0 1 0.0000000000000000e+00 6.2663650390517283e+01 6.3708382901218972e+00 6.3086387773319776e+00 0 0 0 +1117 0 1 0.0000000000000000e+00 6.0417895383407568e+01 4.2070121271460268e+00 4.0504398748576422e+00 0 0 0 +1116 0 1 0.0000000000000000e+00 5.8256427020876941e+01 5.7562225233661994e+00 5.7293184402674138e+00 0 0 0 +1115 0 1 0.0000000000000000e+00 5.5430217089361086e+01 3.9864756341239955e+00 3.9293351412299424e+00 0 0 0 +1114 0 1 0.0000000000000000e+00 5.4107611090486991e+01 6.7709645001393088e+00 6.1067040710247085e+00 0 0 0 +1631 0 1 0.0000000000000000e+00 6.4158413063238228e+01 2.1760363556803952e+01 3.7674111347122849e+00 0 0 0 +1630 0 1 0.0000000000000000e+00 6.2516839640712497e+01 2.3651698192952452e+01 6.5137297737065705e+00 0 0 0 +1629 0 1 0.0000000000000000e+00 5.8305681702200587e+01 2.3737937478788677e+01 1.3493351506495559e+00 0 0 0 +1628 0 1 0.0000000000000000e+00 5.9787853289476580e+01 2.2353974116598259e+01 4.5459578034063579e+00 0 0 0 +1627 0 1 0.0000000000000000e+00 5.6001837780527261e+01 2.1958502682947802e+01 4.0314241896274314e+00 0 0 0 +1626 0 1 0.0000000000000000e+00 5.4532814613446192e+01 2.4163089977256693e+01 6.7643129838278426e+00 0 0 0 +1793 0 1 0.0000000000000000e+00 3.8591566827246986e+01 1.5215000780221967e+01 1.1320983717710199e+01 0 0 0 +1552 0 1 0.0000000000000000e+00 6.6502406194212909e+01 1.9809288812490596e+01 2.3407250606984076e+00 0 0 0 +1835 0 1 0.0000000000000000e+00 5.6146582925709929e+01 2.5993535792528725e+01 1.6899890434319218e+01 0 0 0 +1104 0 1 0.0000000000000000e+00 6.6429475293179152e+01 1.9538883782751770e+00 5.9639779965797937e+00 0 0 0 +1616 0 1 0.0000000000000000e+00 6.6538467088040051e+01 1.9354314607348975e+01 6.2570388608055616e+00 0 0 0 +1102 0 1 0.0000000000000000e+00 6.2549086293023173e+01 2.2966806718601522e+00 5.7651521626657019e+00 0 0 0 +1274 0 1 0.0000000000000000e+00 5.3364412945994779e+01 1.4881481542135235e+01 1.4398481217222928e+01 0 0 0 +1100 0 1 0.0000000000000000e+00 5.7429215693014498e+01 1.7218928929308279e+00 6.4895756614949960e+00 0 0 0 +1775 0 1 0.0000000000000000e+00 6.4867862392739852e+01 2.6007488112653494e+01 1.2504319636949448e+01 0 0 0 +1098 0 1 0.0000000000000000e+00 5.3685668708412152e+01 2.1808131376280948e+00 5.9794550661298169e+00 0 0 0 +1614 0 1 0.0000000000000000e+00 6.2623055515421775e+01 1.9401867838307023e+01 5.7999031043354492e+00 0 0 0 +1786 0 1 0.0000000000000000e+00 5.4320035008876239e+01 3.2402184847404733e+01 1.4962767486111927e+01 0 0 0 +1275 0 1 0.0000000000000000e+00 5.5854994354777325e+01 1.2334476495950545e+01 1.2528622785880732e+01 0 0 0 +1612 0 1 0.0000000000000000e+00 5.8860298368841939e+01 1.9364751614463181e+01 6.2337608074649591e+00 0 0 0 +1276 0 1 0.0000000000000000e+00 5.7825449648743046e+01 1.4729028588285479e+01 1.4356706368805508e+01 0 0 0 +1787 0 1 0.0000000000000000e+00 5.6706127966906109e+01 2.9824237366062174e+01 1.2141861425912618e+01 0 0 0 +1610 0 1 0.0000000000000000e+00 5.5176286634250793e+01 1.9651834798991512e+01 6.2221230981550493e+00 0 0 0 +1788 0 1 0.0000000000000000e+00 5.8070846419730444e+01 3.2910696569086653e+01 1.5063237671705126e+01 0 0 0 +1277 0 1 0.0000000000000000e+00 6.0465892312468348e+01 1.2388747625112856e+01 1.2716955848507315e+01 0 0 0 +1088 0 1 0.0000000000000000e+00 6.7026496932887710e+01 1.5021784237784891e+01 2.0713472099008023e+00 0 0 0 +1259 0 1 0.0000000000000000e+00 5.5693561720998616e+01 8.4967311511960908e+00 1.2696680531115570e+01 0 0 0 +1086 0 1 0.0000000000000000e+00 6.3426138397880685e+01 1.4576403420581446e+01 1.9033244330516563e+00 0 0 0 +1258 0 1 0.0000000000000000e+00 5.4112676248333393e+01 1.0747612926261935e+01 1.5167658170388187e+01 0 0 0 +1084 0 1 0.0000000000000000e+00 5.8425398148953505e+01 1.5071564153507248e+01 1.4701858636415770e+00 0 0 0 +1260 0 1 0.0000000000000000e+00 5.8286767145388012e+01 1.0538298431764439e+01 1.4927007818176920e+01 0 0 0 +1082 0 1 0.0000000000000000e+00 5.4605892945444040e+01 1.5294890866272628e+01 1.3875239357886471e+00 0 0 0 +1261 0 1 0.0000000000000000e+00 6.0322496677548777e+01 8.7059506923831407e+00 1.2422112239922537e+01 0 0 0 +1568 0 1 0.0000000000000000e+00 6.6766100279890324e+01 2.3757664589319671e+01 2.3776189534032399e+00 0 0 0 +1262 0 1 0.0000000000000000e+00 6.2632436396232279e+01 1.0634050576714188e+01 1.4925329123286492e+01 0 0 0 +1789 0 1 0.0000000000000000e+00 5.9980537070527269e+01 3.0728882827186272e+01 1.2788147532272772e+01 0 0 0 +1675 0 1 0.0000000000000000e+00 5.5942114800132721e+01 1.7019050408874936e+01 8.6125710785864715e+00 0 0 0 +1600 0 1 0.0000000000000000e+00 6.7005378848205893e+01 3.2303908939094484e+01 2.2975733142009656e+00 0 0 0 +1279 0 1 0.0000000000000000e+00 6.4628643256548358e+01 1.2807096114759023e+01 1.3016750129850248e+01 0 0 0 +1770 0 1 0.0000000000000000e+00 5.5052888718679817e+01 2.8255628683615463e+01 1.5208632451642652e+01 0 0 0 +1598 0 1 0.0000000000000000e+00 6.2304312787990625e+01 3.2280760550333980e+01 1.7911583733196863e+00 0 0 0 +1072 0 1 0.0000000000000000e+00 6.6816753276256350e+01 1.1078911726087952e+01 2.0452908667932652e+00 0 0 0 +1343 0 1 0.0000000000000000e+00 6.4947179160075393e+01 1.3048115333550269e+01 1.6930188136049875e+01 0 0 0 +1070 0 1 0.0000000000000000e+00 6.2738669015664385e+01 1.0580684890367692e+01 1.4469007945679582e+00 0 0 0 +1743 0 1 0.0000000000000000e+00 6.4841390103357568e+01 1.7465772315696910e+01 1.2628044220126265e+01 0 0 0 +1068 0 1 0.0000000000000000e+00 5.8592051805758807e+01 1.0276469171158451e+01 1.7501561282886113e+00 0 0 0 +1771 0 1 0.0000000000000000e+00 5.5904789403229600e+01 2.5678654567975986e+01 1.2852738316044483e+01 0 0 0 +1066 0 1 0.0000000000000000e+00 5.3896606340767903e+01 1.0853531919148697e+01 1.7006593097088247e+00 0 0 0 +1596 0 1 0.0000000000000000e+00 5.8064495001443035e+01 3.1761937578597031e+01 1.3468863187972806e+00 0 0 0 +1594 0 1 0.0000000000000000e+00 5.3538997252052589e+01 3.2489056989483188e+01 1.9535593329236070e+00 0 0 0 +1584 0 1 0.0000000000000000e+00 6.6681004560358957e+01 2.7983376944979703e+01 2.4852269920721666e+00 0 0 0 +1803 0 1 0.0000000000000000e+00 5.5658393583882152e+01 1.7497234928656535e+01 1.6393592749349263e+01 0 0 0 +1582 0 1 0.0000000000000000e+00 6.2444482844564568e+01 2.7836735280966742e+01 1.7077457587279956e+00 0 0 0 +1580 0 1 0.0000000000000000e+00 5.8119506289575014e+01 2.7980877030077846e+01 1.2605251901823045e+00 0 0 0 +1227 0 1 0.0000000000000000e+00 5.5258867144285489e+01 3.7417909974509334e-01 1.2821990410372850e+01 0 0 0 +1578 0 1 0.0000000000000000e+00 5.3885338313809747e+01 2.7584247248134407e+01 2.1390356058176669e+00 0 0 0 +1280 0 1 0.0000000000000000e+00 6.6974485152515967e+01 1.5203674284779110e+01 1.4667635690915269e+01 0 0 0 +1056 0 1 0.0000000000000000e+00 6.7179159593551532e+01 6.6618252080372642e+00 1.5700661076590612e+00 0 0 0 +1551 0 1 0.0000000000000000e+00 6.4200821896656592e+01 1.7473877112936840e+01 3.4564452963472121e+01 0 0 -1 +1090 0 1 0.0000000000000000e+00 3.4980798051008435e+01 1.2340910255740294e+00 2.9770647775949890e+01 0 0 -1 +1442 0 1 0.0000000000000000e+00 3.4867515244263082e+01 1.5639610689729388e+01 2.8985979537302981e+01 0 0 0 +1761 0 1 0.0000000000000000e+00 6.8907965062199196e+01 2.5578083309589697e+01 1.2164605989205315e+01 -1 0 0 +2035 0 1 0.0000000000000000e+00 3.5276730496938988e+01 2.5410721915843084e+01 2.6019726163547631e+01 0 0 0 +1953 0 1 0.0000000000000000e+00 6.8383234865963800e+01 2.5984930842337384e+01 2.5150382624889954e+01 -1 0 0 +543 0 1 0.0000000000000000e+00 3.5517618160318797e+01 3.0754177147219700e+01 3.4050268269430966e+01 0 0 -1 +2129 0 1 0.0000000000000000e+00 6.8673474836518793e+01 4.3119736547437117e+00 4.5453120100775921e+00 0 0 0 +1585 0 1 0.0000000000000000e+00 3.5462812471008029e+01 4.0043906372371652e+00 3.3720818634660695e+01 0 1 -1 +1601 0 1 0.0000000000000000e+00 6.8921945728206765e+01 1.7566424967324426e+01 3.8801488142156741e+00 -1 0 0 +507 0 1 0.0000000000000000e+00 3.4914351135067193e+01 1.2149184855081188e+01 4.2107067636276190e+00 -1 0 0 +2401 0 1 0.0000000000000000e+00 6.8838471828017461e+01 8.1969909790763680e+00 2.1308401978700733e+01 0 0 0 +2225 0 1 0.0000000000000000e+00 6.8760941469488216e+01 1.2666445838547631e+01 8.6987858224307022e+00 0 0 0 +1137 0 1 0.0000000000000000e+00 6.8574193953824491e+01 1.3274892737369148e+01 4.2364746920973362e+00 -1 0 0 +2353 0 1 0.0000000000000000e+00 6.8857934481020621e+01 1.2996984656488481e+01 1.6760786139796782e+01 0 0 0 +1202 0 1 0.0000000000000000e+00 3.4783504721504940e+01 1.8315253797692431e+01 8.2913227465766024e+00 0 0 0 +1729 0 1 0.0000000000000000e+00 6.8726227427331438e+01 1.7265765835672870e+01 1.2321796125091380e+01 -1 0 0 +720 0 1 0.0000000000000000e+00 3.4750484036911473e+01 1.4757246490213653e+01 3.2743434976661447e+01 0 1 -1 +1569 0 1 0.0000000000000000e+00 6.8831698824502865e+01 2.6300347179735578e+01 2.3045481909889992e-01 -1 0 0 +2721 0 1 0.0000000000000000e+00 6.8070527265605648e+01 2.6268157464069471e+01 8.4169960240277888e+00 0 0 0 +913 0 1 0.0000000000000000e+00 3.5018827033901481e+01 2.0974326333827033e+01 2.6121985281079432e+01 -1 0 0 +1586 0 1 0.0000000000000000e+00 3.5083337103677771e+01 2.4770606827102057e+01 3.4001613283752349e+01 0 0 -1 +1745 0 1 0.0000000000000000e+00 6.8677916816581032e+01 2.1444493633527525e+01 1.2095272579661179e+01 -1 0 0 +2177 0 1 0.0000000000000000e+00 6.9088701696282371e+01 3.4338413712934681e+01 7.8066050945746310e+00 0 -1 0 +1825 0 1 0.0000000000000000e+00 3.4835483358231421e+01 2.5648667704431389e+01 1.6263088456540423e+01 0 0 0 +1281 0 1 0.0000000000000000e+00 6.9066482983981246e+01 3.4544576936390129e+01 1.7282522634147782e+01 -1 -1 0 +2513 0 1 0.0000000000000000e+00 6.8777594145559291e+01 4.3769614562405499e+00 2.9950642753634746e+01 0 0 0 +1121 0 1 0.0000000000000000e+00 6.8776118431124630e+01 8.4543733559841918e+00 3.8111012206211305e+00 -1 0 0 +1441 0 1 0.0000000000000000e+00 6.9060069745019803e+01 8.4141570008285793e+00 2.5884276827956704e+01 -1 0 0 +2337 0 1 0.0000000000000000e+00 6.9179130902630078e+01 8.4444207412345573e+00 1.6994665378202278e+01 0 0 0 +2801 0 1 0.0000000000000000e+00 6.8728901093819957e+01 3.0291049031752415e+01 1.2773501280464391e+01 0 0 0 +2561 0 1 0.0000000000000000e+00 6.7985897320662133e+01 1.7722606980998574e+01 3.4199732316972366e+01 0 0 -1 +2193 0 1 0.0000000000000000e+00 6.8335287732035312e+01 4.0384470249388071e+00 8.3085597274304046e+00 0 0 0 +1073 0 1 0.0000000000000000e+00 6.8921902873730446e+01 1.2797313059507275e+01 3.4107533971561203e+01 -1 0 -1 +1633 0 1 0.0000000000000000e+00 6.8447448073120896e+01 2.6220566125111930e+01 4.2257999294355582e+00 -1 0 0 +1649 0 1 0.0000000000000000e+00 6.9173941038939702e+01 3.0421759742177798e+01 4.6141806515044097e+00 -1 0 0 +1841 0 1 0.0000000000000000e+00 6.9087169796747347e+01 2.9990395595814114e+01 1.6901348518804888e+01 -1 0 0 +1393 0 1 0.0000000000000000e+00 6.8819240734608499e+01 1.2864375550795755e+01 2.0753986118486733e+01 -1 0 0 +2257 0 1 0.0000000000000000e+00 6.9068438968507039e+01 3.9674694033254196e+00 1.2729677800083016e+01 0 0 0 +1297 0 1 0.0000000000000000e+00 6.8862606179014321e+01 4.0148836018445984e+00 1.6898672806010143e+01 -1 0 0 +2289 0 1 0.0000000000000000e+00 6.8944134289499232e+01 1.3299305460988865e+01 1.2499737191210674e+01 0 0 0 +1889 0 1 0.0000000000000000e+00 6.8791107034926540e+01 2.5785430467941044e+01 2.1152331232072584e+01 -1 0 0 +2209 0 1 0.0000000000000000e+00 6.8660093321318556e+01 8.6425987831108824e+00 8.9186164320415795e+00 0 0 0 +2609 0 1 0.0000000000000000e+00 6.8861924183470791e+01 2.9991495541130909e+01 6.6724966273087039e-01 0 0 0 +2113 0 1 0.0000000000000000e+00 6.8796836820639371e+01 3.4002800119193438e+01 4.3720410391258433e+00 0 -1 0 +1969 0 1 0.0000000000000000e+00 6.8840258129273124e+01 2.9507597943807745e+01 2.4737842463100609e+01 -1 0 0 +3057 0 1 0.0000000000000000e+00 6.9017762235842781e+01 3.0507910433884149e+01 3.0188785712469947e+01 0 0 0 +1457 0 1 0.0000000000000000e+00 6.8704390568632988e+01 1.3087399874117862e+01 2.5117158575881007e+01 -1 0 0 +2081 0 1 0.0000000000000000e+00 6.9068005377555551e+01 8.8459208430122498e+00 3.4081603238322479e+01 0 0 -1 +2001 0 1 0.0000000000000000e+00 6.8924084389282413e+01 2.1723133872946715e+01 2.9629994276714125e+01 -1 0 0 +1873 0 1 0.0000000000000000e+00 6.9121252803195560e+01 2.1550245400825048e+01 2.1084853193551904e+01 -1 0 0 +1474 0 1 0.0000000000000000e+00 3.4823872843370395e+01 4.5433815928639110e+00 2.9712083414357888e+01 0 0 0 +1298 0 1 0.0000000000000000e+00 3.4617425465982699e+01 5.8305692526902071e+00 1.7819669025126277e+01 0 0 0 +1139 0 1 0.0000000000000000e+00 3.5129757611210692e+01 7.1859278785822447e+00 1.1592210805387626e+01 0 0 0 +1282 0 1 0.0000000000000000e+00 3.4626833772274203e+01 5.0392687269706871e+00 2.6359452955247129e+01 0 0 0 +399 0 1 0.0000000000000000e+00 3.4941250710654806e+01 3.3219012630309862e+01 4.5459988090628709e+00 -1 -1 0 +2050 0 1 0.0000000000000000e+00 7.0945966046070723e+01 2.5097390299647611e+00 1.5401118181675537e+00 0 0 0 +2307 0 1 0.0000000000000000e+00 7.3194718924037943e+01 3.4824251914014509e-01 1.7365188966800375e+01 0 0 0 +2563 0 1 0.0000000000000000e+00 7.3579052547573397e+01 1.7720609016781825e+01 3.3928605776223051e+01 0 0 -1 +2099 0 1 0.0000000000000000e+00 7.2904142337028674e+01 1.2670993807876235e+01 3.4094487123708340e+01 0 0 -1 +2853 0 1 0.0000000000000000e+00 7.6662055608233430e+01 2.6042846602532983e+01 1.7004250529941533e+01 0 0 0 +2052 0 1 0.0000000000000000e+00 7.5663533971981821e+01 2.1078479115351816e+00 1.9507383928166619e+00 0 0 0 +2085 0 1 0.0000000000000000e+00 7.7367911014384802e+01 8.7424826940906897e+00 3.4191857520624133e+01 0 0 -1 +2355 0 1 0.0000000000000000e+00 7.3194827508913832e+01 1.3077932443624377e+01 1.6526585233113181e+01 0 0 0 +2066 0 1 0.0000000000000000e+00 7.1158868151223402e+01 6.0797350109405341e+00 1.7385781955658395e+00 0 0 0 +2613 0 1 0.0000000000000000e+00 7.8145182713362004e+01 2.9917392419212568e+01 2.5394788781749800e-01 0 0 0 +2068 0 1 0.0000000000000000e+00 7.5309524333183717e+01 6.6494197264656272e+00 2.1654593346549698e+00 0 0 0 +2323 0 1 0.0000000000000000e+00 7.3021592258369068e+01 4.5266790506765062e+00 1.6938738592578062e+01 0 0 0 +2357 0 1 0.0000000000000000e+00 7.7657939623591531e+01 1.2813628518636694e+01 1.7060641612516378e+01 0 0 0 +3044 0 1 0.0000000000000000e+00 7.5552416332421572e+01 2.7622465293954171e+01 3.1830175214872529e+01 0 0 0 +2082 0 1 0.0000000000000000e+00 7.0683189362494005e+01 1.1164496776689042e+01 2.2986176836504351e+00 0 0 0 +2084 0 1 0.0000000000000000e+00 7.4923765001232852e+01 1.0529387121866199e+01 1.7622026063076754e+00 0 0 0 +3043 0 1 0.0000000000000000e+00 7.3100983293821301e+01 2.6414019829026792e+01 2.9954621217165453e+01 0 0 0 +3633 0 1 0.0000000000000000e+00 1.0087912754061816e+02 1.0193793453343261e+01 1.0210909546670557e+01 1 1 -1 +2341 0 1 0.0000000000000000e+00 7.8159164598230547e+01 8.3093305364810188e+00 1.6664168143963753e+01 0 0 0 +2557 0 1 0.0000000000000000e+00 9.7010441592230620e+01 1.4839643364015656e+01 2.8071896407390614e+01 0 0 0 +2098 0 1 0.0000000000000000e+00 7.1277781105129989e+01 1.5353576362110738e+01 2.0376290612457435e+00 0 0 0 +3042 0 1 0.0000000000000000e+00 7.0668384949172804e+01 2.7989493712870740e+01 3.2143844983360772e+01 0 0 0 +3028 0 1 0.0000000000000000e+00 7.5466489290003580e+01 2.3872126119621278e+01 3.2308244230942535e+01 0 0 0 +3027 0 1 0.0000000000000000e+00 7.2967245598980099e+01 2.2015430319175334e+01 3.0145673932509467e+01 0 0 0 +3026 0 1 0.0000000000000000e+00 7.0970613747889303e+01 2.4047978946011526e+01 3.2386746088132540e+01 0 0 0 +2883 0 1 0.0000000000000000e+00 7.3170691153099398e+01 1.6940775495365468e+01 2.0565162285480415e+01 0 0 0 +3058 0 1 0.0000000000000000e+00 7.1295364053976357e+01 3.1825922410427658e+01 3.2335655859349124e+01 0 0 0 +2100 0 1 0.0000000000000000e+00 7.4840165841418809e+01 1.4864804486668264e+01 1.5731910261394804e+00 0 0 0 +3059 0 1 0.0000000000000000e+00 7.2534062292532766e+01 2.9690748450670643e+01 3.0175040130006963e+01 0 0 0 +3060 0 1 0.0000000000000000e+00 7.5371936187345057e+01 3.1481539248131742e+01 3.2469083536510482e+01 0 0 0 +2114 0 1 0.0000000000000000e+00 7.1012290785063158e+01 2.2959207772354926e+00 5.5106462582905253e+00 0 0 0 +2116 0 1 0.0000000000000000e+00 7.5643250004050614e+01 2.0922906981265892e+00 5.7170231600021006e+00 0 0 0 +3012 0 1 0.0000000000000000e+00 7.5158308189412494e+01 1.9550936346578467e+01 3.1618734325087640e+01 0 0 0 +3010 0 1 0.0000000000000000e+00 7.0877392978561247e+01 1.9367003028171975e+01 3.2146670468226773e+01 0 0 0 +2997 0 1 0.0000000000000000e+00 7.6712930234899218e+01 3.0000910038289071e+01 2.5871279835552702e+01 0 0 0 +2996 0 1 0.0000000000000000e+00 7.5247738251111386e+01 3.2310563151012609e+01 2.8230131770191594e+01 0 0 0 +2995 0 1 0.0000000000000000e+00 7.3325146314892564e+01 2.9893029063480327e+01 2.4953065956400138e+01 0 0 0 +2994 0 1 0.0000000000000000e+00 7.1393752490001376e+01 3.1843077060244358e+01 2.7404777497181044e+01 0 0 0 +2981 0 1 0.0000000000000000e+00 7.7788425695144497e+01 2.5722378480852278e+01 2.5044865116451490e+01 0 0 0 +2980 0 1 0.0000000000000000e+00 7.5262198867346896e+01 2.7325883435322421e+01 2.7381379852091378e+01 0 0 0 +2277 0 1 0.0000000000000000e+00 7.7713163723216539e+01 8.5768184778186960e+00 1.2726448959414425e+01 0 0 0 +3692 0 1 0.0000000000000000e+00 1.0129827281480186e+02 3.1883859575085275e+01 1.1633821029723739e+01 0 0 0 +2130 0 1 0.0000000000000000e+00 7.1490181456489879e+01 6.7493836331838466e+00 6.4932207185098241e+00 0 0 0 +2131 0 1 0.0000000000000000e+00 7.3632645420982627e+01 4.0614825871073021e+00 4.0198640316888890e+00 0 0 0 +2132 0 1 0.0000000000000000e+00 7.5345953970874675e+01 6.7087439707625380e+00 5.9574119996782686e+00 0 0 0 +2146 0 1 0.0000000000000000e+00 7.1345545354850231e+01 1.0667196350511226e+01 6.2931725128201910e+00 0 0 0 +2147 0 1 0.0000000000000000e+00 7.2760528970054310e+01 8.4095791505046655e+00 3.6073492600920227e+00 0 0 0 +2148 0 1 0.0000000000000000e+00 7.4615428563330070e+01 1.1051204599468925e+01 6.3627145860440848e+00 0 0 0 +2979 0 1 0.0000000000000000e+00 7.3033473393642950e+01 2.5710178303246735e+01 2.5378220554266704e+01 0 0 0 +2978 0 1 0.0000000000000000e+00 7.1269387839306532e+01 2.7769084279597756e+01 2.7183017801447900e+01 0 0 0 +2965 0 1 0.0000000000000000e+00 7.7205070506479828e+01 2.1758119209281912e+01 2.5420103840600419e+01 0 0 0 +2964 0 1 0.0000000000000000e+00 7.5116536229129224e+01 2.3589645399783201e+01 2.7826484276277753e+01 0 0 0 +2963 0 1 0.0000000000000000e+00 7.3576984600964536e+01 2.1341742280376796e+01 2.5361833825137850e+01 0 0 0 +2962 0 1 0.0000000000000000e+00 7.0798780558654840e+01 2.4100509706432156e+01 2.7328875117761395e+01 0 0 0 +2499 0 1 0.0000000000000000e+00 7.3508068061734278e+01 3.4311036138221560e+01 3.0241124234049085e+01 0 -1 0 +2948 0 1 0.0000000000000000e+00 7.5204036749609543e+01 1.9450981164323728e+01 2.7768671051671756e+01 0 0 0 +2149 0 1 0.0000000000000000e+00 7.7321176198565126e+01 8.6974481551468816e+00 4.0986311438658722e+00 0 0 0 +2162 0 1 0.0000000000000000e+00 7.1208558000747189e+01 1.5011624227052241e+01 6.0522551625250340e+00 0 0 0 +2163 0 1 0.0000000000000000e+00 7.2982763185031246e+01 1.3103124151245270e+01 3.5082844313946406e+00 0 0 0 +2164 0 1 0.0000000000000000e+00 7.5741252575729973e+01 1.4948311436107952e+01 5.3932220802261819e+00 0 0 0 +2178 0 1 0.0000000000000000e+00 7.0999324175194758e+01 2.0836337407591410e+00 1.0166604459270248e+01 0 0 0 +2180 0 1 0.0000000000000000e+00 7.5658151336831878e+01 1.5932545398537534e+00 1.0241800488649963e+01 0 0 0 +2382 0 1 0.0000000000000000e+00 9.7144314525553725e+01 1.6460181877567144e+00 2.3251254894132348e+01 0 0 0 +2293 0 1 0.0000000000000000e+00 7.7627206759531830e+01 1.2685639610633521e+01 1.2545531715829027e+01 0 0 0 +2194 0 1 0.0000000000000000e+00 7.0773682965895404e+01 6.3658390181293250e+00 1.0702024206366525e+01 0 0 0 +2946 0 1 0.0000000000000000e+00 7.1475013609784369e+01 1.9760673027831970e+01 2.7148366709373668e+01 0 0 0 +2195 0 1 0.0000000000000000e+00 7.3554623654098009e+01 4.1874203363503772e+00 8.5130936485404067e+00 0 0 0 +2933 0 1 0.0000000000000000e+00 7.7509247850943183e+01 3.0476113841147960e+01 2.0673946760305480e+01 0 0 0 +2932 0 1 0.0000000000000000e+00 7.5815409357868731e+01 3.2740329011171546e+01 2.3370447839113453e+01 0 0 0 +2931 0 1 0.0000000000000000e+00 7.3084031035810156e+01 3.0618182405519036e+01 2.1029743003992685e+01 0 0 0 +2930 0 1 0.0000000000000000e+00 7.1311240752241588e+01 3.2659850536024720e+01 2.3372706538812913e+01 0 0 0 +2917 0 1 0.0000000000000000e+00 7.7291901417228871e+01 2.5997507402090104e+01 2.1131692920589202e+01 0 0 0 +2916 0 1 0.0000000000000000e+00 7.5394536799113993e+01 2.7616943899390236e+01 2.3282135375209020e+01 0 0 0 +2196 0 1 0.0000000000000000e+00 7.5475636947910886e+01 6.6214808561152489e+00 1.0425175363295834e+01 0 0 0 +2197 0 1 0.0000000000000000e+00 7.7189454378772169e+01 4.3985103306493816e+00 7.8605972575395908e+00 0 0 0 +2540 0 1 0.0000000000000000e+00 9.4964908081802378e+01 1.2679660962498367e+01 3.0618783287652040e+01 0 0 0 +2210 0 1 0.0000000000000000e+00 7.1065347506385933e+01 1.0635956365783811e+01 1.0836999191364011e+01 0 0 0 +2211 0 1 0.0000000000000000e+00 7.3053382475466222e+01 8.4053052384246385e+00 8.9423623999224304e+00 0 0 0 +2212 0 1 0.0000000000000000e+00 7.5296374905949946e+01 1.0738021397602825e+01 1.0792892113343582e+01 0 0 0 +2213 0 1 0.0000000000000000e+00 7.7467245278650978e+01 8.7803964904289185e+00 8.5434201113011845e+00 0 0 0 +2915 0 1 0.0000000000000000e+00 7.3102996678919240e+01 2.5746794909038016e+01 2.1202139678609804e+01 0 0 0 +2914 0 1 0.0000000000000000e+00 7.1094746666029920e+01 2.8195961941276632e+01 2.2779303771881239e+01 0 0 0 +2901 0 1 0.0000000000000000e+00 7.7637030311303121e+01 2.1711472010600623e+01 2.0619717944148547e+01 0 0 0 +2900 0 1 0.0000000000000000e+00 7.5235638117012201e+01 2.3733416376369444e+01 2.3645833050519030e+01 0 0 0 +2899 0 1 0.0000000000000000e+00 7.2864107145943336e+01 2.2378490342278962e+01 2.1317263342007220e+01 0 0 0 +2898 0 1 0.0000000000000000e+00 7.0340897453579046e+01 2.3927533586929080e+01 2.3309809312387600e+01 0 0 0 +2947 0 1 0.0000000000000000e+00 7.3392430318009517e+01 1.7386481350092854e+01 2.4802838924416534e+01 0 0 0 +2884 0 1 0.0000000000000000e+00 7.5248164712434743e+01 1.9474800933589478e+01 2.2317010458344988e+01 0 0 0 +2882 0 1 0.0000000000000000e+00 7.1126618264652322e+01 1.9535647817680090e+01 2.3283997173427608e+01 0 0 0 +2380 0 1 0.0000000000000000e+00 9.2730307638795509e+01 2.4798658913324902e+00 2.3299437747356816e+01 0 0 0 +2226 0 1 0.0000000000000000e+00 7.0313002688542156e+01 1.5533494682164582e+01 1.0392407894202567e+01 0 0 0 +2227 0 1 0.0000000000000000e+00 7.2956755511403500e+01 1.3565207001878424e+01 8.2060474116721664e+00 0 0 0 +2228 0 1 0.0000000000000000e+00 7.5503385724963138e+01 1.5637125112314900e+01 1.0575699095830768e+01 0 0 0 +2229 0 1 0.0000000000000000e+00 7.7045430906379295e+01 1.3159714355063786e+01 8.2445656686373354e+00 0 0 0 +2292 0 1 0.0000000000000000e+00 7.5566637127905480e+01 1.5149367241374783e+01 1.4644614530085290e+01 0 0 0 +2242 0 1 0.0000000000000000e+00 7.1541006867003574e+01 2.2881314915694513e+00 1.4891398182100989e+01 0 0 0 +2558 0 1 0.0000000000000000e+00 9.6736758691617950e+01 1.4924947286339357e+01 1.8950882613035487e+00 0 0 1 +2868 0 1 0.0000000000000000e+00 7.5242059160020418e+01 3.2905507499197505e+01 1.9112175996952715e+01 0 0 0 +2866 0 1 0.0000000000000000e+00 7.1241285560559120e+01 3.2182041945993461e+01 1.9322688261223007e+01 0 0 0 +2291 0 1 0.0000000000000000e+00 7.3306449580958983e+01 1.2919503807835898e+01 1.2634861301423291e+01 0 0 0 +2869 0 1 0.0000000000000000e+00 7.7069920213900559e+01 3.0602786444582378e+01 1.6867619481009424e+01 0 0 0 +2852 0 1 0.0000000000000000e+00 7.4890468540923194e+01 2.8342953107410985e+01 1.9439725061011448e+01 0 0 0 +2850 0 1 0.0000000000000000e+00 7.0677026811887302e+01 2.7688161310927665e+01 1.9406825898618351e+01 0 0 0 +2867 0 1 0.0000000000000000e+00 7.3159432113966815e+01 3.0049540837947273e+01 1.6920406120303891e+01 0 0 0 +2244 0 1 0.0000000000000000e+00 7.5630217414388937e+01 2.2379092450092282e+00 1.4493775694409530e+01 0 0 0 +2290 0 1 0.0000000000000000e+00 7.1049366111311286e+01 1.5167085621238705e+01 1.4466136144100858e+01 0 0 0 +2689 0 1 0.0000000000000000e+00 6.9350728878455911e+01 1.7346850790617346e+01 7.7553999985106046e+00 0 0 0 +2179 0 1 0.0000000000000000e+00 7.2939123697188776e+01 3.2586297667676234e-01 8.1987255022893049e+00 0 0 0 +2378 0 1 0.0000000000000000e+00 8.8728336464365711e+01 2.1368430872295701e+00 2.3493832560775481e+01 0 0 0 +2258 0 1 0.0000000000000000e+00 7.0929402295469728e+01 6.1926979225491898e+00 1.5106716558861383e+01 0 0 0 +2259 0 1 0.0000000000000000e+00 7.3024133491995954e+01 4.1986184418326591e+00 1.2273902518080607e+01 0 0 0 +2851 0 1 0.0000000000000000e+00 7.2905023569537647e+01 2.5739209867455632e+01 1.6449392347790898e+01 0 0 0 +2837 0 1 0.0000000000000000e+00 7.7472820442771749e+01 2.2034956100150779e+01 1.6741115010127807e+01 0 0 0 +2260 0 1 0.0000000000000000e+00 7.5537660862562376e+01 6.2960314519162655e+00 1.4981886168066563e+01 0 0 0 +2611 0 1 0.0000000000000000e+00 7.2854317215324727e+01 2.9303254871680991e+01 3.4389378255256972e+01 0 0 -1 +2836 0 1 0.0000000000000000e+00 7.4945560427187331e+01 2.3813075646670306e+01 1.8674750165273824e+01 0 0 0 +2834 0 1 0.0000000000000000e+00 7.0853908613786373e+01 2.3820045612537886e+01 1.8805401442939335e+01 0 0 0 +2261 0 1 0.0000000000000000e+00 7.7724749123808479e+01 4.1200763394005735e+00 1.2519515973918111e+01 0 0 0 +2820 0 1 0.0000000000000000e+00 7.5060140110668328e+01 1.9613218016713596e+01 1.8593630072281293e+01 0 0 0 +2818 0 1 0.0000000000000000e+00 7.1456601355507402e+01 1.9711097245324208e+01 1.8657543434916455e+01 0 0 0 +2329 0 1 0.0000000000000000e+00 8.6702927948542097e+01 4.3351382360514430e+00 1.7004422363409688e+01 0 0 0 +2579 0 1 0.0000000000000000e+00 7.3220590435721022e+01 2.2372682460442615e+01 3.4168012907888695e+01 0 0 -1 +2274 0 1 0.0000000000000000e+00 7.1072686672177724e+01 1.0864585716982148e+01 1.4480810281907843e+01 0 0 0 +2565 0 1 0.0000000000000000e+00 7.7671994447098797e+01 1.7202942670219031e+01 3.4126665489120434e+01 0 0 -1 +2275 0 1 0.0000000000000000e+00 7.2938150930502729e+01 8.2470458699062856e+00 1.3244913907908455e+01 0 0 0 +2595 0 1 0.0000000000000000e+00 7.3130493954066466e+01 2.5690285486410296e+01 2.4664072493347598e-02 0 0 0 +2276 0 1 0.0000000000000000e+00 7.5598227609831440e+01 1.0534920335597523e+01 1.4710172352252181e+01 0 0 0 +2757 0 1 0.0000000000000000e+00 7.8003898213732384e+01 1.6910549467339123e+01 1.2384100830399566e+01 0 0 0 +2581 0 1 0.0000000000000000e+00 7.7184775348543297e+01 2.1951090776269996e+01 3.4500290493453704e+01 0 0 -1 +2394 0 1 0.0000000000000000e+00 8.8159619880840140e+01 7.1322797065760684e+00 2.3224620691807893e+01 0 0 0 +2393 0 1 0.0000000000000000e+00 8.6939354681441102e+01 4.3552317201061754e+00 2.1342780765780883e+01 0 0 0 +2181 0 1 0.0000000000000000e+00 7.7645194712048621e+01 3.4233628599785369e+01 8.2150697719394614e+00 0 -1 0 +2789 0 1 0.0000000000000000e+00 7.7514741694867425e+01 2.5640795065609495e+01 1.2634108114399107e+01 0 0 0 +2788 0 1 0.0000000000000000e+00 7.5061194870034043e+01 2.8062145686328968e+01 1.4571428155413484e+01 0 0 0 +2787 0 1 0.0000000000000000e+00 7.3605413382385493e+01 2.5896090075799666e+01 1.2031446173431846e+01 0 0 0 +2083 0 1 0.0000000000000000e+00 7.2410314099505840e+01 9.1226038959812499e+00 3.4170830060607472e+01 0 0 -1 +2449 0 1 0.0000000000000000e+00 6.9683934532348886e+01 3.5709235257756342e+00 2.5679141347319813e+01 0 0 0 +2325 0 1 0.0000000000000000e+00 7.8083997113214608e+01 4.4830400681017251e+00 1.6591421625414831e+01 0 0 0 +2306 0 1 0.0000000000000000e+00 7.0916681152228051e+01 2.0118073510839625e+00 1.9166727432543023e+01 0 0 0 +2308 0 1 0.0000000000000000e+00 7.5735534209335754e+01 2.7009576971013827e+00 1.8899131343354764e+01 0 0 0 +2322 0 1 0.0000000000000000e+00 7.0870320643807631e+01 6.1625857348490900e+00 1.9030208592281245e+01 0 0 0 +2324 0 1 0.0000000000000000e+00 7.6384282051831164e+01 6.2999027079893999e+00 1.8847768670017075e+01 0 0 0 +3013 0 1 0.0000000000000000e+00 7.7342239707191837e+01 1.6998575276367557e+01 2.9875473534439738e+01 0 0 0 +3011 0 1 0.0000000000000000e+00 7.3418078316406266e+01 1.7183587293380665e+01 2.9362350995657476e+01 0 0 0 +2786 0 1 0.0000000000000000e+00 7.1282880089268943e+01 2.7801368943608196e+01 1.4031452418084742e+01 0 0 0 +2773 0 1 0.0000000000000000e+00 7.8060427237073000e+01 2.1662604160107655e+01 1.2782948597042594e+01 0 0 0 +2772 0 1 0.0000000000000000e+00 7.5501198068216667e+01 2.3502196510933530e+01 1.4587008339915524e+01 0 0 0 +2771 0 1 0.0000000000000000e+00 7.2934410860764288e+01 2.1843050191164732e+01 1.1717300816795682e+01 0 0 0 +2770 0 1 0.0000000000000000e+00 7.0833233733722764e+01 2.3773193863375177e+01 1.4135687604776999e+01 0 0 0 +2756 0 1 0.0000000000000000e+00 7.5735910455284824e+01 1.9485899178557812e+01 1.4235988183405803e+01 0 0 0 +2392 0 1 0.0000000000000000e+00 8.4466257101616335e+01 7.0353736356070895e+00 2.3996497754736808e+01 0 0 0 +2338 0 1 0.0000000000000000e+00 7.1043395466582055e+01 1.0701883700186887e+01 1.8906848352114434e+01 0 0 0 +2340 0 1 0.0000000000000000e+00 7.5088058204733500e+01 1.0953860895667781e+01 1.8718755807960985e+01 0 0 0 +2354 0 1 0.0000000000000000e+00 7.0930374565029965e+01 1.4997564618264185e+01 1.8606815168535938e+01 0 0 0 +2356 0 1 0.0000000000000000e+00 7.5188919078997444e+01 1.4865595970435388e+01 1.8982944110833255e+01 0 0 0 +2370 0 1 0.0000000000000000e+00 7.1576581805404658e+01 1.9972938288337707e+00 2.3092608653223465e+01 0 0 0 +2372 0 1 0.0000000000000000e+00 7.5553789632947911e+01 2.1958071939890762e+00 2.3446872745890968e+01 0 0 0 +2386 0 1 0.0000000000000000e+00 7.1623396656933480e+01 6.9046569938349984e+00 2.3491994332776844e+01 0 0 0 +2387 0 1 0.0000000000000000e+00 7.3200319073786090e+01 4.4559164187761606e+00 2.0915092106202646e+01 0 0 0 +2754 0 1 0.0000000000000000e+00 7.1365844673489718e+01 1.9138220940201638e+01 1.4380728619815368e+01 0 0 0 +2741 0 1 0.0000000000000000e+00 7.7666140907132174e+01 3.0704734609669249e+01 8.3109096482183382e+00 0 0 0 +2740 0 1 0.0000000000000000e+00 7.5411875620567599e+01 3.2688578803905436e+01 1.0395704794894401e+01 0 0 0 +2739 0 1 0.0000000000000000e+00 7.3221331352897124e+01 3.0415994904073678e+01 8.1600213444908416e+00 0 0 0 +2738 0 1 0.0000000000000000e+00 7.1110477740458080e+01 3.2534805324146618e+01 1.0458126075287376e+01 0 0 0 +2384 0 1 0.0000000000000000e+00 9.8735185585937415e+01 4.5002086022793559e+00 2.0781846309546385e+01 0 0 0 +2724 0 1 0.0000000000000000e+00 7.5506111647966378e+01 2.8506703783793355e+01 1.0666515828263337e+01 0 0 0 +2723 0 1 0.0000000000000000e+00 7.3886376594044094e+01 2.5414714013882779e+01 8.1425503979683462e+00 0 0 0 +2388 0 1 0.0000000000000000e+00 7.5384049299500305e+01 6.7860858532347503e+00 2.3429638568822785e+01 0 0 0 +2389 0 1 0.0000000000000000e+00 7.7784084272988110e+01 4.5301809943889255e+00 2.1108950001907353e+01 0 0 0 +2391 0 1 0.0000000000000000e+00 8.2462539210053620e+01 4.9643892002137093e+00 2.1217776073071686e+01 0 0 0 +2402 0 1 0.0000000000000000e+00 7.1282159973684202e+01 1.0960703300890628e+01 2.2935156639122063e+01 0 0 0 +2403 0 1 0.0000000000000000e+00 7.3563759055843519e+01 8.3872136491752283e+00 2.0591016435909381e+01 0 0 0 +2404 0 1 0.0000000000000000e+00 7.5414483724204302e+01 1.0927505228037599e+01 2.3268033051895042e+01 0 0 0 +2405 0 1 0.0000000000000000e+00 7.7584758832034780e+01 9.2260957389354807e+00 2.0793406199562039e+01 0 0 0 +2418 0 1 0.0000000000000000e+00 7.0401121821792884e+01 1.5236813034479955e+01 2.2672631614321752e+01 0 0 0 +2722 0 1 0.0000000000000000e+00 7.1279659326592281e+01 2.7588379821817149e+01 9.9095286342042925e+00 0 0 0 +2419 0 1 0.0000000000000000e+00 7.3007650055318535e+01 1.2842889878719273e+01 2.1088240872345935e+01 0 0 0 +2709 0 1 0.0000000000000000e+00 7.7943253616228247e+01 2.1558090115825220e+01 8.3629361729682863e+00 0 0 0 +2708 0 1 0.0000000000000000e+00 7.5928468862964877e+01 2.3344421804041875e+01 1.0427822841422389e+01 0 0 0 +2707 0 1 0.0000000000000000e+00 7.3597285793082960e+01 2.1322680587653640e+01 7.6917715265648292e+00 0 0 0 +2706 0 1 0.0000000000000000e+00 7.0732475417704947e+01 2.3511648311333865e+01 9.9298797893117428e+00 0 0 0 +2420 0 1 0.0000000000000000e+00 7.5355841413062308e+01 1.5403996138430783e+01 2.3155571887198583e+01 0 0 0 +2802 0 1 0.0000000000000000e+00 7.1058278289985196e+01 3.2583006940530964e+01 1.4886809458670298e+01 0 0 0 +2803 0 1 0.0000000000000000e+00 7.3026059095058599e+01 3.0626855197841053e+01 1.2146419924080325e+01 0 0 0 +2804 0 1 0.0000000000000000e+00 7.4903316477956011e+01 3.2316867972718143e+01 1.5096977416281817e+01 0 0 0 +2421 0 1 0.0000000000000000e+00 7.7384414569008442e+01 1.3504239159813245e+01 2.1504109958281351e+01 0 0 0 +1025 0 1 0.0000000000000000e+00 6.9287559861036883e+01 8.7127518081236338e-02 3.4443385261998557e+01 -1 0 -1 +2434 0 1 0.0000000000000000e+00 7.1407497755346952e+01 1.8967269616666125e+00 2.8095918337091803e+01 0 0 0 +2436 0 1 0.0000000000000000e+00 7.4884253601510281e+01 1.9629144540323664e+00 2.7431385628865222e+01 0 0 0 +2390 0 1 0.0000000000000000e+00 7.9802053360432552e+01 6.6232656948490414e+00 2.3329149185567434e+01 0 0 0 +2450 0 1 0.0000000000000000e+00 7.1243099542231491e+01 6.5197660540346583e+00 2.7473323314330628e+01 0 0 0 +2451 0 1 0.0000000000000000e+00 7.2727071893423727e+01 4.3593176882057216e+00 2.5407246711145348e+01 0 0 0 +2452 0 1 0.0000000000000000e+00 7.5289686733356149e+01 6.3211281753759794e+00 2.7211395585437778e+01 0 0 0 +2453 0 1 0.0000000000000000e+00 7.7945251037730657e+01 4.1128324015792446e+00 2.5524269614935644e+01 0 0 0 +2805 0 1 0.0000000000000000e+00 7.7515640466643802e+01 3.0526032955044592e+01 1.2323665809081890e+01 0 0 0 +2692 0 1 0.0000000000000000e+00 7.5699123970776569e+01 1.9657259374235323e+01 1.0596410654163451e+01 0 0 0 +2690 0 1 0.0000000000000000e+00 7.1430651082087195e+01 1.9340295768899527e+01 1.0267995157160158e+01 0 0 0 +2466 0 1 0.0000000000000000e+00 7.0838914584364872e+01 1.1483908804272327e+01 2.7317110597836919e+01 0 0 0 +2677 0 1 0.0000000000000000e+00 7.7952176149282749e+01 3.0546770359568690e+01 4.2584787408692630e+00 0 0 0 +2467 0 1 0.0000000000000000e+00 7.2576493022055999e+01 9.1693810244193994e+00 2.5827363933641927e+01 0 0 0 +2676 0 1 0.0000000000000000e+00 7.5683919130704652e+01 3.2327081573926513e+01 5.9732399201074475e+00 0 0 0 +2675 0 1 0.0000000000000000e+00 7.3542310222363881e+01 2.9934925468601072e+01 4.3528751332502305e+00 0 0 0 +2468 0 1 0.0000000000000000e+00 7.4950623669243868e+01 1.1547833981992289e+01 2.7608378553809580e+01 0 0 0 +2469 0 1 0.0000000000000000e+00 7.7406959788154921e+01 8.8038593686587987e+00 2.5696356778165480e+01 0 0 0 +2482 0 1 0.0000000000000000e+00 7.1728022592676751e+01 1.5265213527372799e+01 2.7067826101445885e+01 0 0 0 +2483 0 1 0.0000000000000000e+00 7.2869200333403612e+01 1.3099111201121364e+01 2.5169889283322750e+01 0 0 0 +2484 0 1 0.0000000000000000e+00 7.5751975074717052e+01 1.5029054888896772e+01 2.7037263661952341e+01 0 0 0 +2674 0 1 0.0000000000000000e+00 7.1095234453034166e+01 3.1998085129387828e+01 6.3615759988024632e+00 0 0 0 +2661 0 1 0.0000000000000000e+00 7.7369772025210509e+01 2.5894104794394156e+01 3.5918801204067101e+00 0 0 0 +2485 0 1 0.0000000000000000e+00 7.7924624191220033e+01 1.2789867135099673e+01 2.5623614000698538e+01 0 0 0 +2660 0 1 0.0000000000000000e+00 7.5435507188650377e+01 2.8068529464668099e+01 6.4228053502086446e+00 0 0 0 +2659 0 1 0.0000000000000000e+00 7.3153689908151208e+01 2.6131697925669915e+01 4.8312773769470363e+00 0 0 0 +2658 0 1 0.0000000000000000e+00 7.1270569942102014e+01 2.8179031113643507e+01 6.5308363147788819e+00 0 0 0 +2644 0 1 0.0000000000000000e+00 7.6378376239343453e+01 2.4063800580041647e+01 6.0656682615630091e+00 0 0 0 +2643 0 1 0.0000000000000000e+00 7.3356884670217127e+01 2.2422651103849834e+01 4.4161653164260519e+00 0 0 0 +2642 0 1 0.0000000000000000e+00 7.0650882898425550e+01 2.4226141031465229e+01 6.1675478103289745e+00 0 0 0 +2628 0 1 0.0000000000000000e+00 7.5865173990267380e+01 1.9239514825828838e+01 5.8454011807344743e+00 0 0 0 +2626 0 1 0.0000000000000000e+00 7.1650745337305324e+01 1.9508803537799732e+01 6.1697998252167743e+00 0 0 0 +2691 0 1 0.0000000000000000e+00 7.3346254026639514e+01 1.7572400499112955e+01 7.8694279004501624e+00 0 0 0 +2243 0 1 0.0000000000000000e+00 7.3140166396955436e+01 5.2593167069419300e-01 1.2347087099404622e+01 0 0 0 +2498 0 1 0.0000000000000000e+00 7.1133845887821366e+01 2.5019582804768610e+00 3.1775282374385210e+01 0 0 0 +2339 0 1 0.0000000000000000e+00 7.3125311311495395e+01 8.6218269383627995e+00 1.7095912885032824e+01 0 0 0 +2500 0 1 0.0000000000000000e+00 7.5231579534656930e+01 2.5127115553828174e+00 3.2054862097606183e+01 0 0 0 +2693 0 1 0.0000000000000000e+00 7.7509287470622567e+01 1.6738992276810588e+01 8.4389104278752320e+00 0 0 0 +2549 0 1 0.0000000000000000e+00 7.7381346885853446e+01 1.3173196156340921e+01 2.9668257161130292e+01 0 0 0 +2548 0 1 0.0000000000000000e+00 7.4915774799020397e+01 1.4828749407644654e+01 3.1648761261265928e+01 0 0 0 +2547 0 1 0.0000000000000000e+00 7.2505154156647762e+01 1.3215256871806774e+01 2.9732735845263957e+01 0 0 0 +2546 0 1 0.0000000000000000e+00 7.0837487104363149e+01 1.5419986699223045e+01 3.2474853487827922e+01 0 0 0 +2245 0 1 0.0000000000000000e+00 7.7490509066517220e+01 3.4398526729848243e+01 1.2572858073039530e+01 0 -1 0 +2612 0 1 0.0000000000000000e+00 7.5608276629692611e+01 3.2304790402191209e+01 1.9873015305430066e+00 0 0 0 +2610 0 1 0.0000000000000000e+00 7.1633173680271526e+01 3.2065947481402830e+01 1.9428881265550424e+00 0 0 0 +2376 0 1 0.0000000000000000e+00 8.4703497361272639e+01 1.9123792673025937e+00 2.3218272746273495e+01 0 0 0 +2115 0 1 0.0000000000000000e+00 7.3491153267069862e+01 3.4423131918997704e+01 4.1116750220426157e+00 0 -1 0 +2627 0 1 0.0000000000000000e+00 7.3263888689826445e+01 1.7241920160901021e+01 4.1141616618873877e+00 0 0 0 +2629 0 1 0.0000000000000000e+00 7.7428353614086433e+01 1.6971893601828064e+01 3.8024706896797702e+00 0 0 0 +2514 0 1 0.0000000000000000e+00 7.1113246564030590e+01 6.3721193491055805e+00 3.1768319688188047e+01 0 0 0 +2515 0 1 0.0000000000000000e+00 7.3152758107967614e+01 4.3798006907429743e+00 2.9678048153816317e+01 0 0 0 +2596 0 1 0.0000000000000000e+00 7.5407238034986207e+01 2.8374544386729674e+01 1.9609947035011348e+00 0 0 0 +2516 0 1 0.0000000000000000e+00 7.5175713996689254e+01 6.8972004643920686e+00 3.1325272024773046e+01 0 0 0 +2530 0 1 0.0000000000000000e+00 7.0735164382633442e+01 1.0828622162933428e+01 3.1322556427712044e+01 0 0 0 +2531 0 1 0.0000000000000000e+00 7.3137665583582304e+01 8.5915047457418972e+00 2.9912444130871243e+01 0 0 0 +2532 0 1 0.0000000000000000e+00 7.4706342134189427e+01 1.1022487843969250e+01 3.2148176702607834e+01 0 0 0 +2533 0 1 0.0000000000000000e+00 7.7333729150257852e+01 9.2772582038527407e+00 2.9281535252847160e+01 0 0 0 +2067 0 1 0.0000000000000000e+00 7.3204000837564934e+01 4.8644222108262971e+00 3.3937982778561377e+01 0 0 -1 +2594 0 1 0.0000000000000000e+00 7.1120600804386484e+01 2.7892779072985817e+01 2.7411512425601758e+00 0 0 0 +2949 0 1 0.0000000000000000e+00 7.7251018940218501e+01 1.7551697297109122e+01 2.5084284625309650e+01 0 0 0 +2051 0 1 0.0000000000000000e+00 7.3513992696464584e+01 3.4223022147781286e+01 3.3609612239912707e+01 0 -1 -1 +2580 0 1 0.0000000000000000e+00 7.5125402479060696e+01 2.3661551103048577e+01 2.2080127513067334e+00 0 0 0 +2578 0 1 0.0000000000000000e+00 7.0698033144660030e+01 2.4195224023307457e+01 2.1539370347108098e+00 0 0 0 +2371 0 1 0.0000000000000000e+00 7.3574851579987183e+01 2.7691028477476071e-01 2.1345533424891013e+01 0 0 0 +2755 0 1 0.0000000000000000e+00 7.2958741187402481e+01 1.7049088329131127e+01 1.2274809041905087e+01 0 0 0 +2435 0 1 0.0000000000000000e+00 7.3798029315424074e+01 3.4128028272474644e+01 2.5418819016620173e+01 0 -1 0 +2819 0 1 0.0000000000000000e+00 7.3259420105038046e+01 1.7179533190864149e+01 1.6709859549320065e+01 0 0 0 +2564 0 1 0.0000000000000000e+00 7.5311898648968011e+01 1.9577300553405987e+01 2.0076090591395737e+00 0 0 0 +2562 0 1 0.0000000000000000e+00 7.1391312838751631e+01 2.0081190475649723e+01 2.1089880202132445e+00 0 0 0 +2835 0 1 0.0000000000000000e+00 7.2966457394045236e+01 2.1564320574707310e+01 1.5855439683402977e+01 0 0 0 +2829 0 1 0.0000000000000000e+00 9.5079239227011030e+01 1.7602448582270220e+01 1.7129692104742798e+01 0 0 0 +2589 0 1 0.0000000000000000e+00 9.4180477720348321e+01 2.1296499506885805e+01 3.4341830553236576e+01 0 0 -1 +3015 0 1 0.0000000000000000e+00 8.1731273762026206e+01 1.7204564578158713e+01 3.0105584168967180e+01 0 0 0 +2885 0 1 0.0000000000000000e+00 7.7148347760529717e+01 1.7051333927774820e+01 2.0526470752201682e+01 0 0 0 +2621 0 1 0.0000000000000000e+00 9.5095172548997638e+01 3.0683193299776033e+01 3.4237184331949848e+01 0 0 -1 +2841 0 1 0.0000000000000000e+00 8.6293350576009402e+01 2.1965818390897898e+01 1.7072564234163853e+01 0 0 0 +2379 0 1 0.0000000000000000e+00 9.0489539870407853e+01 3.4473810140790320e+01 2.0722828724464371e+01 0 -1 0 +2505 0 1 0.0000000000000000e+00 8.6174113663414218e+01 3.4507876629042151e+01 2.9709216159758228e+01 0 -1 0 +2873 0 1 0.0000000000000000e+00 8.6200953457601955e+01 3.0579662560522362e+01 1.6589560842717948e+01 0 0 0 +2319 0 1 0.0000000000000000e+00 9.9404088988728830e+01 5.0409150448291651e-01 1.7382721264741420e+01 0 0 0 +2619 0 1 0.0000000000000000e+00 9.0494963644914236e+01 3.0319251019718013e+01 3.4102429832388971e+01 0 0 -1 +2599 0 1 0.0000000000000000e+00 8.1969803135725300e+01 2.5651604031895808e+01 3.4284318941978903e+01 0 0 -1 +2443 0 1 0.0000000000000000e+00 9.0518182568671691e+01 2.5075262238104945e-01 2.5537310259105812e+01 0 0 0 +2893 0 1 0.0000000000000000e+00 9.5372616301421957e+01 1.7178761655389433e+01 2.1564805987535667e+01 0 0 0 +2831 0 1 0.0000000000000000e+00 1.0302540689875551e+02 1.8214978212038929e+01 2.1800747916614291e+01 0 0 0 +2839 0 1 0.0000000000000000e+00 8.1722468510387387e+01 2.1210381268036151e+01 1.7021626768890329e+01 0 0 0 +2879 0 1 0.0000000000000000e+00 1.0143645993652083e+02 2.7555413762690655e+01 1.4586026097200623e+01 0 0 0 +2601 0 1 0.0000000000000000e+00 8.5913459055895999e+01 2.5822410219005732e+01 3.4211155032720043e+01 0 0 -1 +2583 0 1 0.0000000000000000e+00 8.2336496947781498e+01 2.1946170142056850e+01 3.3932327302590032e+01 0 0 -1 +2445 0 1 0.0000000000000000e+00 9.4572887481065905e+01 3.4423794151570966e+01 2.5423053021350210e+01 0 -1 0 +2377 0 1 0.0000000000000000e+00 8.6100127506800376e+01 2.9582286329006197e-01 2.0703511997077786e+01 0 0 0 +2875 0 1 0.0000000000000000e+00 9.0614120495668502e+01 3.0525322062429950e+01 1.6478061925913689e+01 0 0 0 +3045 0 1 0.0000000000000000e+00 7.7584659875741522e+01 2.5124572422770378e+01 2.9891591032621299e+01 0 0 0 +3041 0 1 0.0000000000000000e+00 1.0135533888227211e+02 2.8420192846044490e+01 3.2109904097923057e+01 -1 0 0 +3040 0 1 0.0000000000000000e+00 1.0055910582018689e+02 1.9764284091583058e+01 3.2426533446114526e+01 0 0 0 +3039 0 1 0.0000000000000000e+00 1.0100280826161307e+02 1.9280834139246672e+01 2.7874406351484932e+01 0 0 0 +3038 0 1 0.0000000000000000e+00 9.6786155572354744e+01 2.3771443083383996e+01 3.2023925213208450e+01 0 0 0 +3037 0 1 0.0000000000000000e+00 9.4376076123903744e+01 2.1446652719863454e+01 2.9927780429053261e+01 0 0 0 +3036 0 1 0.0000000000000000e+00 9.3079312330606058e+01 2.3916723436838932e+01 3.1884654572029056e+01 0 0 0 +3035 0 1 0.0000000000000000e+00 9.0041921310663469e+01 2.1892010384479942e+01 2.9038570188670029e+01 0 0 0 +3034 0 1 0.0000000000000000e+00 8.8033975060467569e+01 2.4239485918474148e+01 3.1586889272960693e+01 0 0 0 +3033 0 1 0.0000000000000000e+00 8.5877163385739053e+01 2.2062612851704603e+01 3.0079759184670468e+01 0 0 0 +3032 0 1 0.0000000000000000e+00 8.4218646585672062e+01 2.4559673007927955e+01 3.1662871626589297e+01 0 0 0 +3031 0 1 0.0000000000000000e+00 8.1819480963235648e+01 2.1701807652020090e+01 3.0223245162337005e+01 0 0 0 +3030 0 1 0.0000000000000000e+00 7.9600552012557600e+01 2.3667812694037881e+01 3.2432061324727677e+01 0 0 0 +3029 0 1 0.0000000000000000e+00 7.7229238220327957e+01 2.1493381157401586e+01 2.9646745022751571e+01 0 0 0 +2657 0 1 0.0000000000000000e+00 9.9117030018518818e+01 3.0140788388158519e+01 3.8621969567114163e+00 -1 0 0 +2417 0 1 0.0000000000000000e+00 1.0305026851760240e+02 1.3197884763020566e+01 2.1717253753858426e+01 -1 0 0 +3022 0 1 0.0000000000000000e+00 9.6368659596369611e+01 1.9576199585921898e+01 3.2573622459186360e+01 0 0 0 +2953 0 1 0.0000000000000000e+00 8.5359626315390301e+01 1.7160839166450437e+01 2.5589454042888015e+01 0 0 0 +3020 0 1 0.0000000000000000e+00 9.2157441395092974e+01 1.9543795723763029e+01 3.1485638151468923e+01 0 0 0 +3018 0 1 0.0000000000000000e+00 8.8178879734448756e+01 1.9552741206890790e+01 3.1540608674147915e+01 0 0 0 +3016 0 1 0.0000000000000000e+00 8.3907424606613262e+01 1.9570766482338122e+01 3.1813447912007323e+01 0 0 0 +3054 0 1 0.0000000000000000e+00 9.7517927116132157e+01 2.8590929307391445e+01 3.2351584670631233e+01 0 0 0 +3014 0 1 0.0000000000000000e+00 7.9395203851962677e+01 1.9974954341244445e+01 3.2044319873477008e+01 0 0 0 +3046 0 1 0.0000000000000000e+00 7.9686267468067285e+01 2.7488171787795331e+01 3.2621328626090431e+01 0 0 0 +3061 0 1 0.0000000000000000e+00 7.7532183666613307e+01 2.9915851785776400e+01 3.0198290443224920e+01 0 0 0 +2080 0 1 0.0000000000000000e+00 1.0132441315584066e+02 5.4999666895022408e+00 1.8299887254932874e+00 0 0 0 +3007 0 1 0.0000000000000000e+00 1.0131788356285929e+02 3.2301593659292664e+01 2.3853747404830450e+01 0 0 0 +3006 0 1 0.0000000000000000e+00 9.7161281746559553e+01 2.8234555431221082e+01 2.3775519188548596e+01 0 0 0 +3005 0 1 0.0000000000000000e+00 9.5004141147087637e+01 3.0518159775929497e+01 2.6088459298383679e+01 0 0 0 +3004 0 1 0.0000000000000000e+00 9.2220710746336650e+01 3.1994518750582333e+01 2.7517539674343116e+01 0 0 0 +3003 0 1 0.0000000000000000e+00 9.0305201066792620e+01 2.9906229924695495e+01 2.4961941555247325e+01 0 0 0 +3002 0 1 0.0000000000000000e+00 8.8586956151842358e+01 3.2182555681283453e+01 2.7692153138438155e+01 0 0 0 +3001 0 1 0.0000000000000000e+00 8.6308827863776742e+01 3.0241529303499551e+01 2.5669292815020999e+01 0 0 0 +3000 0 1 0.0000000000000000e+00 8.4146491467797446e+01 3.2139937079726359e+01 2.7981428816066373e+01 0 0 0 +2999 0 1 0.0000000000000000e+00 8.1919908563090672e+01 3.0216343616582044e+01 2.5424740666897289e+01 0 0 0 +2998 0 1 0.0000000000000000e+00 7.9265564053995845e+01 3.2355590648047773e+01 2.7371312490786060e+01 0 0 0 +2993 0 1 0.0000000000000000e+00 9.8907314099949630e+01 3.4409478974660587e+01 2.5547705221680307e+01 -1 0 0 +2272 0 1 0.0000000000000000e+00 9.9012288007538217e+01 8.4298041886116124e+00 1.7247664427731777e+01 0 0 0 +2991 0 1 0.0000000000000000e+00 9.9749014059884061e+01 2.5876526683318978e+01 2.5890510580565216e+01 0 0 0 +2990 0 1 0.0000000000000000e+00 9.7299049124647510e+01 2.8449268859383274e+01 2.8021900912673164e+01 0 0 0 +2989 0 1 0.0000000000000000e+00 9.5484515493122160e+01 2.5916571267099108e+01 2.5599098401582204e+01 0 0 0 +2988 0 1 0.0000000000000000e+00 9.3121665688126868e+01 2.8137945701426524e+01 2.7482363683849005e+01 0 0 0 +2987 0 1 0.0000000000000000e+00 9.0491449344767418e+01 2.5984767494175827e+01 2.5947899700226600e+01 0 0 0 +2986 0 1 0.0000000000000000e+00 8.9005555145461486e+01 2.8501307218550068e+01 2.7544478755701977e+01 0 0 0 +2985 0 1 0.0000000000000000e+00 8.5908824629494262e+01 2.5426168425140929e+01 2.5705988270065454e+01 0 0 0 +2984 0 1 0.0000000000000000e+00 8.3648362320384109e+01 2.7908040417646053e+01 2.7791906745695570e+01 0 0 0 +2983 0 1 0.0000000000000000e+00 8.2146410254559328e+01 2.5892784502682144e+01 2.5162387410421381e+01 0 0 0 +2982 0 1 0.0000000000000000e+00 7.9758003710279695e+01 2.8242402403158053e+01 2.7382822522867567e+01 0 0 0 +2977 0 1 0.0000000000000000e+00 1.0161750581774780e+02 2.3418872169398242e+01 2.3329769006076642e+01 -1 0 0 +2976 0 1 0.0000000000000000e+00 9.8981410629184296e+01 2.1487361605750461e+01 2.9932666279969229e+01 0 0 0 +2975 0 1 0.0000000000000000e+00 9.9662720812832490e+01 2.2296730896937312e+01 2.6556017438696621e+01 0 0 0 +2974 0 1 0.0000000000000000e+00 9.6887780810364305e+01 2.3914639370325279e+01 2.8324532586117577e+01 0 0 0 +2973 0 1 0.0000000000000000e+00 9.5049982354173679e+01 2.1133593129037813e+01 2.5849712655018674e+01 0 0 0 +2972 0 1 0.0000000000000000e+00 9.2813569041245700e+01 2.3825950135065092e+01 2.7527543595235329e+01 0 0 0 +2971 0 1 0.0000000000000000e+00 9.1289103674621757e+01 2.1394883968105386e+01 2.5616922823066087e+01 0 0 0 +2970 0 1 0.0000000000000000e+00 8.8459006941320354e+01 2.4389236746808848e+01 2.8134372887799763e+01 0 0 0 +2969 0 1 0.0000000000000000e+00 8.5677572853866764e+01 2.1787557334818331e+01 2.6594235136140703e+01 0 0 0 +2968 0 1 0.0000000000000000e+00 8.3621433822811738e+01 2.4021028041662220e+01 2.8241139385348145e+01 0 0 0 +2967 0 1 0.0000000000000000e+00 8.0892393481517416e+01 2.0896084738919221e+01 2.4934372851228446e+01 0 0 0 +2966 0 1 0.0000000000000000e+00 7.9678488743879825e+01 2.3978938113224299e+01 2.7703972956245977e+01 0 0 0 +3741 0 1 0.0000000000000000e+00 9.8989410767558169e+01 1.2525727987066547e+01 3.4039385950535170e+01 0 0 -1 +2960 0 1 0.0000000000000000e+00 9.8981945128907938e+01 1.7118779249329457e+01 3.0033718835313987e+01 0 0 0 +1409 0 1 0.0000000000000000e+00 6.9785966311686721e+01 9.1448519278430437e-02 2.5581609752769950e+01 -1 0 0 +2958 0 1 0.0000000000000000e+00 9.7227570696027101e+01 1.9118859576158787e+01 2.8199184527718284e+01 0 0 0 +3062 0 1 0.0000000000000000e+00 7.9555187766543241e+01 3.2524549645208573e+01 3.1604409357118900e+01 0 0 0 +2956 0 1 0.0000000000000000e+00 9.2514541333141139e+01 1.8985940804448262e+01 2.7874843844124861e+01 0 0 0 +3047 0 1 0.0000000000000000e+00 8.1797021491283573e+01 2.6543498314874675e+01 3.0399299069562428e+01 0 0 0 +2954 0 1 0.0000000000000000e+00 8.8147588119454554e+01 1.9635203069581721e+01 2.7364272137502468e+01 0 0 0 +2952 0 1 0.0000000000000000e+00 8.3948743472953140e+01 1.9408465667279017e+01 2.8283691490351348e+01 0 0 0 +3063 0 1 0.0000000000000000e+00 8.1762031252886274e+01 3.0392245233321958e+01 2.9693694075025125e+01 0 0 0 +2950 0 1 0.0000000000000000e+00 7.9379050011456656e+01 1.9248881454721658e+01 2.7837464467814829e+01 0 0 0 +3048 0 1 0.0000000000000000e+00 8.3894579860225463e+01 2.8401944583449410e+01 3.2104318931039337e+01 0 0 0 +2912 0 1 0.0000000000000000e+00 1.0325264665052511e+02 2.5848219082616747e+01 2.1445243851510888e+01 0 0 0 +3049 0 1 0.0000000000000000e+00 8.6238038020129920e+01 2.6126791832170252e+01 2.9800666259839467e+01 0 0 0 +2688 0 1 0.0000000000000000e+00 1.0305573983144328e+02 1.7864120972603123e-01 4.1323687383783305e+00 0 1 0 +2943 0 1 0.0000000000000000e+00 9.9155158317593077e+01 3.0492798721103465e+01 2.1496238520820793e+01 0 0 0 +2942 0 1 0.0000000000000000e+00 9.6962227933824053e+01 3.2215463646105306e+01 2.3531602867882711e+01 0 0 0 +2941 0 1 0.0000000000000000e+00 9.7299684557971716e+01 3.2352480628268395e+01 1.9607483975351141e+01 0 0 0 +2940 0 1 0.0000000000000000e+00 9.2676189789014302e+01 3.2548936246649554e+01 2.3200690819351024e+01 0 0 0 +2939 0 1 0.0000000000000000e+00 9.0310747716324244e+01 3.0240484509362108e+01 2.0967571922364936e+01 0 0 0 +2938 0 1 0.0000000000000000e+00 8.8433549351901519e+01 3.2670953230479896e+01 2.3604078796214726e+01 0 0 0 +2937 0 1 0.0000000000000000e+00 8.6035994810808546e+01 3.0849018171062195e+01 2.1586569875480709e+01 0 0 0 +2936 0 1 0.0000000000000000e+00 8.4272591944672953e+01 3.2733542137196515e+01 2.3231945596749288e+01 0 0 0 +2935 0 1 0.0000000000000000e+00 8.1644719591513507e+01 3.0264766394234076e+01 2.0653981498835627e+01 0 0 0 +2934 0 1 0.0000000000000000e+00 8.0012884667659449e+01 3.2314376874873183e+01 2.3021062094990288e+01 0 0 0 +2097 0 1 0.0000000000000000e+00 1.0095365469432915e+02 1.0465219353565427e+01 3.2244926173352226e+01 -1 0 -1 +2928 0 1 0.0000000000000000e+00 1.0156217489631764e+02 2.8197678338104957e+01 2.3273443554943075e+01 0 0 0 +2927 0 1 0.0000000000000000e+00 9.9400121604232936e+01 2.5874853128640975e+01 2.1598232077060899e+01 0 0 0 +2926 0 1 0.0000000000000000e+00 9.4695302679512949e+01 3.0117860700437074e+01 2.0830504618417304e+01 0 0 0 +2925 0 1 0.0000000000000000e+00 9.5699607033292395e+01 2.6184248065952879e+01 2.1730664472364492e+01 0 0 0 +2924 0 1 0.0000000000000000e+00 9.3035391776786270e+01 2.8180270751211044e+01 2.3652647312689744e+01 0 0 0 +2923 0 1 0.0000000000000000e+00 8.9557684289829481e+01 2.5599055322900877e+01 2.1813935554468713e+01 0 0 0 +2922 0 1 0.0000000000000000e+00 8.7525056139899107e+01 2.8344456254752384e+01 2.2781188757045328e+01 0 0 0 +2921 0 1 0.0000000000000000e+00 8.5943736695628331e+01 2.5375926241311667e+01 2.1401691115638123e+01 0 0 0 +2920 0 1 0.0000000000000000e+00 8.3786972197386945e+01 2.8113171243191868e+01 2.3002615868049052e+01 0 0 0 +2919 0 1 0.0000000000000000e+00 8.1753083179584280e+01 2.6217960679116931e+01 2.1087666852785460e+01 0 0 0 +2918 0 1 0.0000000000000000e+00 7.9288521332685804e+01 2.8654995097705203e+01 2.3403894163218702e+01 0 0 0 +2374 0 1 0.0000000000000000e+00 8.0289374728020832e+01 2.5189699676099409e+00 2.2786881646115891e+01 0 0 0 +3145 0 1 0.0000000000000000e+00 1.0136024701052672e+02 1.4504931511826493e+01 2.8141720071481895e+01 0 0 -1 +2911 0 1 0.0000000000000000e+00 1.0001569824770688e+02 2.1605965336627257e+01 2.0738266863542517e+01 0 0 0 +2910 0 1 0.0000000000000000e+00 9.7420639411379241e+01 2.3480326541833676e+01 2.3865006243299796e+01 0 0 0 +2909 0 1 0.0000000000000000e+00 9.5444707829774543e+01 2.1907734764560846e+01 2.2128878896954440e+01 0 0 0 +2908 0 1 0.0000000000000000e+00 9.2660049025642536e+01 2.4732415793165462e+01 2.3130603339581672e+01 0 0 0 +2907 0 1 0.0000000000000000e+00 9.0950917401214312e+01 2.1261320029103711e+01 2.1704022547028536e+01 0 0 0 +2906 0 1 0.0000000000000000e+00 8.8479069164909092e+01 2.2963955688344338e+01 2.3934827071196018e+01 0 0 0 +2905 0 1 0.0000000000000000e+00 8.5845789215365059e+01 2.1414011008995203e+01 2.0926363207363217e+01 0 0 0 +2904 0 1 0.0000000000000000e+00 8.3515601820103242e+01 2.3127746757502287e+01 2.3113843716109198e+01 0 0 0 +2903 0 1 0.0000000000000000e+00 8.1825172444183409e+01 2.0823382518527133e+01 2.0890630315945909e+01 0 0 0 +2902 0 1 0.0000000000000000e+00 7.9513021861519931e+01 2.3578147899797607e+01 2.3027436185728071e+01 0 0 0 +2321 0 1 0.0000000000000000e+00 1.0359158219470645e+02 4.4597948903389995e+00 2.1671266077958119e+01 -1 0 0 +3478 0 1 0.0000000000000000e+00 1.0273577457847529e+02 3.4232677667486669e+01 9.6392015151782893e+00 0 0 1 +3064 0 1 0.0000000000000000e+00 8.4598480482115036e+01 3.2232227903337154e+01 3.2023036700856203e+01 0 0 0 +2894 0 1 0.0000000000000000e+00 9.8221767115655325e+01 1.9441594317225146e+01 2.3407532357602566e+01 0 0 0 +2892 0 1 0.0000000000000000e+00 9.3636746193909502e+01 1.8965520596743492e+01 2.3652431256358796e+01 0 0 0 +3065 0 1 0.0000000000000000e+00 8.6552595902762135e+01 3.0348729244475440e+01 3.0022484607217677e+01 0 0 0 +2890 0 1 0.0000000000000000e+00 8.8383612581240271e+01 1.9295391200627190e+01 2.3044761717563325e+01 0 0 0 +2847 0 1 0.0000000000000000e+00 1.0155986447086164e+02 1.9466636940645273e+01 1.8346572374614635e+01 0 0 0 +2888 0 1 0.0000000000000000e+00 8.3946334111483338e+01 1.9348302490618515e+01 2.3058820319858164e+01 0 0 0 +3066 0 1 0.0000000000000000e+00 8.8095142010369415e+01 3.2772655506874436e+01 3.2346092683686919e+01 0 0 0 +2886 0 1 0.0000000000000000e+00 7.9167645641877840e+01 1.9219998023568667e+01 2.2383517334888005e+01 0 0 0 +3242 0 1 0.0000000000000000e+00 1.0349415046247950e+02 4.0814043662803154e+00 3.4082760512958863e+01 0 1 -1 +3067 0 1 0.0000000000000000e+00 9.0018627563316230e+01 3.0707280151246064e+01 3.0420796036717913e+01 0 0 0 +3068 0 1 0.0000000000000000e+00 9.2273393779761065e+01 3.2408728038499753e+01 3.1926017807507620e+01 0 0 0 +2880 0 1 0.0000000000000000e+00 1.0152277187951455e+02 3.2650354334117793e+01 1.9295553630739281e+01 0 0 0 +2639 0 1 0.0000000000000000e+00 1.0346460572887000e+02 1.7481237742284733e+01 3.9197405134495940e+00 0 0 0 +2878 0 1 0.0000000000000000e+00 9.6510143084912741e+01 2.1957637782046739e+00 1.8848916052786958e+01 0 1 0 +2876 0 1 0.0000000000000000e+00 9.2565795965757630e+01 3.1746411955983628e+01 1.9336654803294831e+01 0 0 0 +2288 0 1 0.0000000000000000e+00 9.9451786532391012e+01 1.3108381653226099e+01 1.6810544464194379e+01 0 0 0 +2874 0 1 0.0000000000000000e+00 8.8002241487176022e+01 3.1994357647268757e+01 1.8807609890446624e+01 0 0 0 +3050 0 1 0.0000000000000000e+00 8.7809134190617527e+01 2.7979612823750365e+01 3.2481613740678732e+01 0 0 0 +2872 0 1 0.0000000000000000e+00 8.4104534650919973e+01 3.2130452937816059e+01 1.8785835576813131e+01 0 0 0 +3051 0 1 0.0000000000000000e+00 9.0525781453380347e+01 2.6333816983303247e+01 2.9827821326913234e+01 0 0 0 +2870 0 1 0.0000000000000000e+00 7.9522131429488326e+01 3.2311694857010316e+01 1.8872572150209159e+01 0 0 0 +3052 0 1 0.0000000000000000e+00 9.2869571922369175e+01 2.8402294845738496e+01 3.1707910153203990e+01 0 0 0 +3053 0 1 0.0000000000000000e+00 9.4785275150117030e+01 2.6381637064490686e+01 2.9523196541306447e+01 0 0 0 +2603 0 1 0.0000000000000000e+00 9.0830627874760836e+01 2.6307657820875992e+01 3.3919704669655886e+01 0 0 -1 +2864 0 1 0.0000000000000000e+00 1.0141009154792305e+02 2.7340486559200880e+01 1.8445157231866713e+01 0 0 0 +2862 0 1 0.0000000000000000e+00 9.7929514359816920e+01 2.8394355868858067e+01 1.9150802622770669e+01 0 0 0 +2587 0 1 0.0000000000000000e+00 8.9967071393933665e+01 2.1940083259277277e+01 3.3680921407381355e+01 0 0 -1 +2860 0 1 0.0000000000000000e+00 9.1979487941086205e+01 2.7792640519711824e+01 1.8615287722064704e+01 0 0 0 +2858 0 1 0.0000000000000000e+00 8.8670785331388657e+01 2.7805643796423652e+01 1.9198156116040227e+01 0 0 0 +3055 0 1 0.0000000000000000e+00 9.9538572453779750e+01 2.5753713574834421e+01 2.9751311798685272e+01 0 0 0 +2856 0 1 0.0000000000000000e+00 8.4373419813404041e+01 2.8431844864724763e+01 1.9154310739645450e+01 0 0 0 +3023 0 1 0.0000000000000000e+00 9.6092652767973419e+01 1.4747572173517165e+01 3.2531081562500596e+01 0 0 0 +2854 0 1 0.0000000000000000e+00 7.9168147954079103e+01 2.7715463849039185e+01 1.8588596445423970e+01 0 0 0 +3017 0 1 0.0000000000000000e+00 8.6044788686082015e+01 1.7065834429057016e+01 2.9853190479109717e+01 0 0 0 +2863 0 1 0.0000000000000000e+00 9.9336975330111088e+01 2.5281521286607667e+01 1.6949625777761241e+01 0 0 0 +3019 0 1 0.0000000000000000e+00 9.0045141834833714e+01 1.7154273292861330e+01 2.9180948065030783e+01 0 0 0 +2848 0 1 0.0000000000000000e+00 1.0226187400754064e+02 2.4155894481929352e+01 1.8499685886085931e+01 0 0 0 +2846 0 1 0.0000000000000000e+00 9.7061536191067788e+01 2.3751168897176818e+01 1.9551352786037558e+01 0 0 0 +2844 0 1 0.0000000000000000e+00 9.2867296830683159e+01 2.3962258941512779e+01 1.9803989015858413e+01 0 0 0 +2842 0 1 0.0000000000000000e+00 8.8630406314981926e+01 2.3639606290626816e+01 1.9328887993220157e+01 0 0 0 +2840 0 1 0.0000000000000000e+00 8.3737198528193574e+01 2.4278298653901498e+01 1.9165954557696253e+01 0 0 0 +2441 0 1 0.0000000000000000e+00 8.5921262661433929e+01 3.4060313678026795e+01 2.5563829357247361e+01 0 -1 0 +2838 0 1 0.0000000000000000e+00 7.9776702156164447e+01 2.3919452826812670e+01 1.9065563743583677e+01 0 0 0 +2887 0 1 0.0000000000000000e+00 8.1794114900928577e+01 1.7230105703897927e+01 2.0861574902130336e+01 0 0 0 +2929 0 1 0.0000000000000000e+00 1.0309556731554521e+02 3.0464107206882751e+01 2.0722668562785760e+01 -1 0 0 +2383 0 1 0.0000000000000000e+00 9.9368632120008684e+01 3.4457143740417976e+01 2.1344061703871002e+01 0 -1 0 +2830 0 1 0.0000000000000000e+00 9.7153224607911753e+01 1.9462239237111397e+01 1.9227375186021291e+01 0 0 0 +3069 0 1 0.0000000000000000e+00 9.5209920973766089e+01 3.0504918966987944e+01 3.0287136254775067e+01 0 0 0 +2828 0 1 0.0000000000000000e+00 9.3032201845766494e+01 1.9552240534622232e+01 1.9329009601526998e+01 0 0 0 +3070 0 1 0.0000000000000000e+00 9.6779666532279094e+01 3.2725572132757748e+01 3.1941352778099510e+01 0 0 0 +2826 0 1 0.0000000000000000e+00 8.8692051525154014e+01 1.9631367829242034e+01 1.9051566016391156e+01 0 0 0 +3071 0 1 0.0000000000000000e+00 9.9108539010928382e+01 3.0740884624889546e+01 2.9998130815841890e+01 0 0 0 +2824 0 1 0.0000000000000000e+00 8.4017671969723224e+01 1.9038322743237956e+01 1.8665984912730742e+01 0 0 0 +3072 0 1 0.0000000000000000e+00 9.9286380483829987e+01 3.0393345467486188e+01 3.4338679519120177e+01 0 0 0 +2822 0 1 0.0000000000000000e+00 7.9410321629361547e+01 1.9452184979862821e+01 1.8728748359712764e+01 0 0 0 +2061 0 1 0.0000000000000000e+00 9.4570086421557846e+01 3.7312110111668212e-01 3.3699028292106483e+01 0 0 -1 +2877 0 1 0.0000000000000000e+00 9.4822116742848792e+01 2.9800078519996386e+01 1.7087470466267249e+01 0 0 0 +2591 0 1 0.0000000000000000e+00 9.9204949509568877e+01 2.2010523559796042e+01 3.4346423402086778e+01 0 0 -1 +2861 0 1 0.0000000000000000e+00 9.4366324263240969e+01 2.6091173606221155e+01 1.7577406911567305e+01 0 0 0 +2617 0 1 0.0000000000000000e+00 8.6233505592099704e+01 3.0722776727743195e+01 3.8615611218221146e-01 0 0 0 +2857 0 1 0.0000000000000000e+00 8.6378382305023123e+01 2.6134076769924036e+01 1.6724576486351037e+01 0 0 0 +2865 0 1 0.0000000000000000e+00 1.0371856805443419e+02 2.9822713385935238e+01 1.6988349095414602e+01 -1 0 0 +2256 0 1 0.0000000000000000e+00 1.0280829844271109e+02 8.4622795940008064e+00 1.7108547337569451e+01 0 0 0 +2633 0 1 0.0000000000000000e+00 8.6319138409526957e+01 1.6889905455538965e+01 3.2748606489100829e+00 0 0 0 +2573 0 1 0.0000000000000000e+00 9.4089659578060107e+01 1.7377887066396173e+01 3.4449811356232381e+01 0 0 -1 +2127 0 1 0.0000000000000000e+00 9.8837046596466067e+01 2.4040754230994466e-01 4.4100246647838288e+00 0 0 0 +2121 0 1 0.0000000000000000e+00 8.6360874377654994e+01 2.3854605880457391e-01 3.9087105761152321e+00 0 0 0 +2765 0 1 0.0000000000000000e+00 9.4785211887637303e+01 1.7540444381843923e+01 1.2419814454011453e+01 0 0 0 +2059 0 1 0.0000000000000000e+00 9.0620162033507142e+01 4.5246032559733385e-01 3.4507155133003927e+01 0 0 -1 +2845 0 1 0.0000000000000000e+00 9.4917409364358420e+01 2.1566080134144002e+01 1.7524647903644265e+01 0 0 0 +2607 0 1 0.0000000000000000e+00 9.9168576744130448e+01 2.6076941665174129e+01 3.3963915088221938e+01 0 0 -1 +2185 0 1 0.0000000000000000e+00 8.6610893091272729e+01 3.4393384581851151e+01 8.7156361803556930e+00 0 -1 0 +2249 0 1 0.0000000000000000e+00 8.6428069683936016e+01 3.0136678281488659e-02 1.2639216102285621e+01 0 0 0 +2119 0 1 0.0000000000000000e+00 8.1764297171164358e+01 2.8204222559461373e-01 4.1831545254312168e+00 0 0 0 +2843 0 1 0.0000000000000000e+00 9.0850041013290749e+01 2.2225900348960742e+01 1.7307848115516084e+01 0 0 0 +2187 0 1 0.0000000000000000e+00 9.0866399930564910e+01 3.4561038232399639e+01 8.4643616598990583e+00 0 -1 0 +2191 0 1 0.0000000000000000e+00 9.9404184412271775e+01 3.4523324181267633e+01 8.5649039038807278e+00 0 -1 0 +2871 0 1 0.0000000000000000e+00 8.1960297502149174e+01 3.0446579259361240e+01 1.6956888492527678e+01 0 0 0 +2761 0 1 0.0000000000000000e+00 8.5877530312343993e+01 1.6851469155566193e+01 1.2246471552036853e+01 0 0 0 +2790 0 1 0.0000000000000000e+00 7.9848196078663548e+01 2.8573980678807462e+01 1.4673106212338764e+01 0 0 0 +3480 0 1 0.0000000000000000e+00 1.0093881160788933e+02 1.0945746230408313e+01 1.6111635201790717e+00 0 0 1 +3281 0 1 0.0000000000000000e+00 1.0343885049875588e+02 1.7417356584224798e+01 2.5781395533221833e+01 0 0 0 +2783 0 1 0.0000000000000000e+00 9.9311727844423814e+01 2.1413154989921715e+01 1.6822608325879877e+01 0 0 0 +2782 0 1 0.0000000000000000e+00 9.6912822262707323e+01 2.3623082990467974e+01 1.4932531149894118e+01 0 0 0 +2781 0 1 0.0000000000000000e+00 9.4414263223372771e+01 2.1466924063732939e+01 1.2688611811210581e+01 0 0 0 +2780 0 1 0.0000000000000000e+00 9.2498297011854817e+01 2.3682871362211039e+01 1.4674780589022580e+01 0 0 0 +2779 0 1 0.0000000000000000e+00 9.0338300513709726e+01 2.1442955413168630e+01 1.2746322405296558e+01 0 0 0 +2778 0 1 0.0000000000000000e+00 8.8417547343059042e+01 2.3472676848598475e+01 1.4580885762773290e+01 0 0 0 +2777 0 1 0.0000000000000000e+00 8.6037236021588782e+01 2.1545436562720056e+01 1.2710467434806027e+01 0 0 0 +2776 0 1 0.0000000000000000e+00 8.3973026276787095e+01 2.4699213892747409e+01 1.4739075309768470e+01 0 0 0 +2775 0 1 0.0000000000000000e+00 8.1613290421948406e+01 2.1373108579477158e+01 1.2957555436553601e+01 0 0 0 +2774 0 1 0.0000000000000000e+00 7.9511850096803670e+01 2.3975031255481980e+01 1.4971179946836434e+01 0 0 0 +3377 0 1 0.0000000000000000e+00 1.0364601602395213e+02 3.0570935346526703e+01 2.5309674081346088e+01 0 -1 0 +2768 0 1 0.0000000000000000e+00 1.0180692047531682e+02 1.9780174887494560e+01 1.4307172829505905e+01 0 0 0 +3024 0 1 0.0000000000000000e+00 1.0297015953223081e+02 1.7417060448887337e+01 3.4278957727663730e+01 0 0 0 +2766 0 1 0.0000000000000000e+00 9.6522418469291182e+01 1.9810768828644434e+01 1.4736627177311801e+01 0 0 0 +2797 0 1 0.0000000000000000e+00 9.4730929746512913e+01 2.5601102810185424e+01 1.2303527772401440e+01 0 0 0 +2764 0 1 0.0000000000000000e+00 9.2703397689590616e+01 1.9632273666856673e+01 1.5300424622382160e+01 0 0 0 +2763 0 1 0.0000000000000000e+00 9.0096260673403151e+01 1.7358476001440664e+01 1.2792233862457024e+01 0 0 0 +2762 0 1 0.0000000000000000e+00 8.8124426637778171e+01 1.9479371073539497e+01 1.4969299017011659e+01 0 0 0 +2798 0 1 0.0000000000000000e+00 9.6495270399024875e+01 2.7611274753900680e+01 1.4569401062980313e+01 0 0 0 +2760 0 1 0.0000000000000000e+00 8.4315491502520700e+01 1.9333755648830749e+01 1.5045582300099840e+01 0 0 0 +2796 0 1 0.0000000000000000e+00 9.2823395331772559e+01 2.7967728004965249e+01 1.4623431690648820e+01 0 0 0 +2758 0 1 0.0000000000000000e+00 7.9357572535811258e+01 1.9239558056008036e+01 1.4761502717307161e+01 0 0 0 +2792 0 1 0.0000000000000000e+00 8.4576060929274277e+01 2.8120807535033208e+01 1.4574143534463088e+01 0 0 0 +2793 0 1 0.0000000000000000e+00 8.7065254096397240e+01 2.6210925666960328e+01 1.2415537041176629e+01 0 0 0 +2752 0 1 0.0000000000000000e+00 9.7297714098397591e+01 3.2507878795087819e+01 1.4756618419712336e+01 0 0 0 +2751 0 1 0.0000000000000000e+00 9.8980942182711175e+01 2.9773672447173908e+01 1.2858906212839784e+01 0 0 0 +2750 0 1 0.0000000000000000e+00 9.7369202986799948e+01 3.2714773211422781e+01 1.0622465117265616e+01 0 0 0 +2749 0 1 0.0000000000000000e+00 9.5460579010227065e+01 3.0337630808100066e+01 8.1380806155902814e+00 0 0 0 +2748 0 1 0.0000000000000000e+00 9.3092964551452567e+01 3.2167357162667820e+01 1.0212394035419623e+01 0 0 0 +2747 0 1 0.0000000000000000e+00 9.0377240230307962e+01 3.0390570423658755e+01 8.6367816501844281e+00 0 0 0 +2746 0 1 0.0000000000000000e+00 8.8783827801140930e+01 3.2893345569066000e+01 1.0193609284049842e+01 0 0 0 +2745 0 1 0.0000000000000000e+00 8.6225778901597252e+01 3.0657400188017661e+01 8.5583634109599185e+00 0 0 0 +2744 0 1 0.0000000000000000e+00 8.4098472537455933e+01 3.2627276645133655e+01 1.0531544671867207e+01 0 0 0 +2743 0 1 0.0000000000000000e+00 8.2090284285076805e+01 2.9949671872684849e+01 8.4557060286266168e+00 0 0 0 +2742 0 1 0.0000000000000000e+00 8.0359368417067671e+01 3.2239892288543800e+01 1.0983370475874500e+01 0 0 0 +2736 0 1 0.0000000000000000e+00 9.8772810590494956e+01 2.6071227867344295e+01 1.2909102332794161e+01 0 0 0 +2735 0 1 0.0000000000000000e+00 9.9473332472932142e+01 2.6505639521324632e+01 8.4333177036338007e+00 0 0 0 +2734 0 1 0.0000000000000000e+00 9.7022119367409331e+01 2.8018667483853744e+01 1.0592375904904967e+01 0 0 0 +2733 0 1 0.0000000000000000e+00 9.4711892805793568e+01 2.5972784577419873e+01 7.6778228185292487e+00 0 0 0 +2732 0 1 0.0000000000000000e+00 9.3125952171680510e+01 2.8323931780839281e+01 1.0371358372465091e+01 0 0 0 +2731 0 1 0.0000000000000000e+00 9.0527138665019820e+01 2.6132139573581910e+01 7.7418923268030184e+00 0 0 0 +2730 0 1 0.0000000000000000e+00 8.8130726911055191e+01 2.8284047183227838e+01 9.9212704113860983e+00 0 0 0 +2729 0 1 0.0000000000000000e+00 8.6676741480479365e+01 2.5802540311407743e+01 8.1094842386958153e+00 0 0 0 +2728 0 1 0.0000000000000000e+00 8.4459972622125179e+01 2.7714075870338252e+01 1.0196242386818142e+01 0 0 0 +2727 0 1 0.0000000000000000e+00 8.1231547459523227e+01 2.5994518433716916e+01 8.5728776721490902e+00 0 0 0 +2726 0 1 0.0000000000000000e+00 7.9663482834782855e+01 2.8208008917107026e+01 1.0679341385464394e+01 0 0 0 +2725 0 1 0.0000000000000000e+00 7.7529023165726741e+01 2.5995855803259307e+01 8.8905939804395171e+00 0 0 0 +2720 0 1 0.0000000000000000e+00 1.0078885405999107e+02 2.3983969237538588e+01 1.0129714312923591e+01 0 0 0 +2719 0 1 0.0000000000000000e+00 9.9592065741868666e+01 2.1434297003212887e+01 7.7561064796677837e+00 0 0 0 +2718 0 1 0.0000000000000000e+00 9.6991601881612382e+01 2.4176673538030609e+01 1.0285557774796130e+01 0 0 0 +2717 0 1 0.0000000000000000e+00 9.4539313703221353e+01 2.1589432141118870e+01 8.2234973464074290e+00 0 0 0 +2716 0 1 0.0000000000000000e+00 9.2596781037261849e+01 2.4134853554788045e+01 1.0292062517739435e+01 0 0 0 +2715 0 1 0.0000000000000000e+00 9.0378843080781351e+01 2.1468016000551444e+01 8.5830107294355447e+00 0 0 0 +2714 0 1 0.0000000000000000e+00 8.8646983485631907e+01 2.3695340563652820e+01 1.0642575058637915e+01 0 0 0 +2713 0 1 0.0000000000000000e+00 8.6655560629230337e+01 2.1732219509007198e+01 8.6156527243851500e+00 0 0 0 +2712 0 1 0.0000000000000000e+00 8.4215864929349735e+01 2.4154624947605999e+01 1.0684951012417809e+01 0 0 0 +2711 0 1 0.0000000000000000e+00 8.1465113165779911e+01 2.1966564207288990e+01 8.2926187701857934e+00 0 0 0 +2710 0 1 0.0000000000000000e+00 7.9692617458026646e+01 2.3836251270105205e+01 1.0661664538336641e+01 0 0 0 +2560 0 1 0.0000000000000000e+00 1.0279922128494906e+02 1.3314860617492728e+01 3.3844022814668222e+01 0 0 0 +2702 0 1 0.0000000000000000e+00 9.9373973231255150e+01 2.1753243191771549e+01 1.2457246723965511e+01 0 0 0 +2700 0 1 0.0000000000000000e+00 9.2456547274368177e+01 1.9658850369281019e+01 1.0656605199935781e+01 0 0 0 +2698 0 1 0.0000000000000000e+00 8.8317903758757296e+01 1.8920767702585501e+01 1.0333581539263227e+01 0 0 0 +2696 0 1 0.0000000000000000e+00 8.3777226233913225e+01 1.9508346610200025e+01 1.0026212061600681e+01 0 0 0 +2806 0 1 0.0000000000000000e+00 8.0101099239245613e+01 3.2346500291523050e+01 1.4978254210611153e+01 0 0 0 +2694 0 1 0.0000000000000000e+00 7.9951270716824823e+01 1.9500445292595703e+01 1.0345217338340984e+01 0 0 0 +2807 0 1 0.0000000000000000e+00 8.2386324443865206e+01 2.9943075474525561e+01 1.1997019676445156e+01 0 0 0 +2808 0 1 0.0000000000000000e+00 8.3908876733722622e+01 3.2576881011615193e+01 1.4559360832699886e+01 0 0 0 +2809 0 1 0.0000000000000000e+00 8.6529319134910423e+01 3.0235683914648167e+01 1.2287291557519390e+01 0 0 0 +3651 0 1 0.0000000000000000e+00 1.0344659092819300e+02 1.3130976078542496e+01 2.5813172868390811e+01 1 0 0 +2687 0 1 0.0000000000000000e+00 1.0091511421989956e+02 3.2650397113999972e+01 6.0170892856686367e+00 0 0 0 +2686 0 1 0.0000000000000000e+00 9.7121975067510760e+01 3.2565000868945098e+01 6.3273613822245283e+00 0 0 0 +2685 0 1 0.0000000000000000e+00 9.2710749473585395e+01 3.2135243587799884e+01 6.3505744849237500e+00 0 0 0 +2684 0 1 0.0000000000000000e+00 9.4854662323444103e+01 2.7459955190121052e-02 8.4382337764041662e+00 0 1 0 +2683 0 1 0.0000000000000000e+00 9.1114717128822164e+01 3.0550395817474822e+01 3.7282195869797463e+00 0 0 0 +2682 0 1 0.0000000000000000e+00 8.8948819919438918e+01 3.2666129454055103e+01 6.3582282137154618e+00 0 0 0 +2681 0 1 0.0000000000000000e+00 8.6343293218491198e+01 3.0783516107596178e+01 3.9826161480214930e+00 0 0 0 +2680 0 1 0.0000000000000000e+00 8.4708499576202470e+01 3.2639913887369026e+01 6.4347242733155356e+00 0 0 0 +2679 0 1 0.0000000000000000e+00 8.2784188426741196e+01 3.0562484739039530e+01 3.9850163203306730e+00 0 0 0 +2678 0 1 0.0000000000000000e+00 8.0188539050741213e+01 3.2290632463434449e+01 5.7371831596667899e+00 0 0 0 +3790 0 1 0.0000000000000000e+00 1.0344188596754979e+02 2.1768018155767017e+01 2.9374371880259481e+01 1 0 -1 +2672 0 1 0.0000000000000000e+00 9.9058181737731616e+01 3.0297313235444459e+01 8.0149227853440177e+00 0 0 0 +2671 0 1 0.0000000000000000e+00 9.7206940665491146e+01 2.3913980116059747e+01 5.9782573198193045e+00 0 0 0 +2670 0 1 0.0000000000000000e+00 9.5237299528358875e+01 3.0501737877446335e+01 4.2111632468821369e+00 0 0 0 +2669 0 1 0.0000000000000000e+00 9.4943742148806294e+01 2.5785218177361891e+01 4.0903404001061148e+00 0 0 0 +2668 0 1 0.0000000000000000e+00 9.2493664339411225e+01 2.8365702050068336e+01 6.2738552913154253e+00 0 0 0 +2667 0 1 0.0000000000000000e+00 9.0576290390226958e+01 2.6161715718460659e+01 3.9781745702761957e+00 0 0 0 +2666 0 1 0.0000000000000000e+00 8.8359811666941553e+01 2.8460842332830872e+01 6.0414297839785052e+00 0 0 0 +2665 0 1 0.0000000000000000e+00 8.5755483294121007e+01 2.6071112493013654e+01 3.7159480142018899e+00 0 0 0 +2664 0 1 0.0000000000000000e+00 8.4573004700485129e+01 2.8341994434200316e+01 6.2508099328307303e+00 0 0 0 +2663 0 1 0.0000000000000000e+00 8.2427461647008755e+01 2.6415553679597956e+01 4.7791609342868062e+00 0 0 0 +2662 0 1 0.0000000000000000e+00 7.9398766184919680e+01 2.7989035257627297e+01 6.1202214932622381e+00 0 0 0 +3725 0 1 0.0000000000000000e+00 1.0045859325174943e+02 2.6106605542382479e+00 1.0425629052956257e+01 0 1 -1 +2656 0 1 0.0000000000000000e+00 1.0132059797502713e+02 2.3985127423569264e+01 5.3284240286603284e+00 0 0 0 +2655 0 1 0.0000000000000000e+00 9.8946062808391957e+01 2.1871447141661154e+01 3.7096713065978917e+00 0 0 0 +2654 0 1 0.0000000000000000e+00 9.7147521656121683e+01 2.7729931558187854e+01 6.2318612062132441e+00 0 0 0 +2653 0 1 0.0000000000000000e+00 9.4504249839823459e+01 2.1665865352510263e+01 3.9590019923685560e+00 0 0 0 +2652 0 1 0.0000000000000000e+00 9.2438901931803571e+01 2.4044613393412053e+01 5.7568445734075562e+00 0 0 0 +2651 0 1 0.0000000000000000e+00 9.0783285678467237e+01 2.1894096915804447e+01 3.3722639584903380e+00 0 0 0 +2650 0 1 0.0000000000000000e+00 8.8198125591437432e+01 2.4086330795013190e+01 5.5891059988774527e+00 0 0 0 +2649 0 1 0.0000000000000000e+00 8.6868435652860583e+01 2.1073959897249921e+01 3.2440638404059721e+00 0 0 0 +2648 0 1 0.0000000000000000e+00 8.4198475345115440e+01 2.3449355044636146e+01 5.8456620794879335e+00 0 0 0 +2647 0 1 0.0000000000000000e+00 8.1620676684542047e+01 2.1852945214422750e+01 3.4997488891841733e+00 0 0 0 +2646 0 1 0.0000000000000000e+00 8.0015276295082288e+01 2.3654136088093843e+01 5.7720873295076025e+00 0 0 0 +2645 0 1 0.0000000000000000e+00 7.7635118819039334e+01 2.1692625742111257e+01 3.6095265021782903e+00 0 0 0 +3709 0 1 0.0000000000000000e+00 1.0131954320194258e+02 1.0640709358500541e+01 1.9160976592109922e+01 0 0 0 +3766 0 1 0.0000000000000000e+00 1.0147909390659801e+02 2.8413039755920476e+01 1.7120050820561921e+00 0 0 0 +2799 0 1 0.0000000000000000e+00 1.0173250666074706e+02 2.3535259220866440e+01 1.4345176897581480e+01 0 0 0 +2638 0 1 0.0000000000000000e+00 9.6981988436626381e+01 1.9813523295286210e+01 6.0738983433678548e+00 0 0 0 +2810 0 1 0.0000000000000000e+00 8.8156276126461009e+01 3.2690420805914108e+01 1.4421971912633191e+01 0 0 0 +2636 0 1 0.0000000000000000e+00 9.2205697992864756e+01 1.9781920594744374e+01 6.2491697853488155e+00 0 0 0 +2811 0 1 0.0000000000000000e+00 9.0257257865612090e+01 3.0830533970606425e+01 1.2207902732898427e+01 0 0 0 +2634 0 1 0.0000000000000000e+00 8.8195250619388176e+01 1.9265265010480761e+01 6.1222678742084131e+00 0 0 0 +2812 0 1 0.0000000000000000e+00 9.2860326912383982e+01 3.2636041292111386e+01 1.4917544609830825e+01 0 0 0 +2632 0 1 0.0000000000000000e+00 8.3340413394336039e+01 1.9709740842242010e+01 5.9389633051503328e+00 0 0 0 +2791 0 1 0.0000000000000000e+00 8.1821199017888532e+01 2.5929686110212405e+01 1.2584522249685163e+01 0 0 0 +2630 0 1 0.0000000000000000e+00 7.9531582091906685e+01 1.9647486989938109e+01 5.8423642597487495e+00 0 0 0 +2239 0 1 0.0000000000000000e+00 1.0105030949367742e+02 1.9603052527363090e+01 5.8130370200644066e+00 0 0 0 +2813 0 1 0.0000000000000000e+00 9.4985540296661298e+01 3.0454945316077151e+01 1.2487981214634829e+01 0 0 0 +2117 0 1 0.0000000000000000e+00 7.8115510479093288e+01 5.0312107192234556e-02 3.6505488754571371e+00 0 0 0 +3506 0 1 0.0000000000000000e+00 1.0342446001449197e+02 1.3308946019760448e-01 3.4319345950768685e+01 1 0 -1 +2794 0 1 0.0000000000000000e+00 8.8568936137080456e+01 2.8565503553242774e+01 1.4199552077840696e+01 0 0 0 +2622 0 1 0.0000000000000000e+00 9.7469789123256035e+01 3.2525395001122398e+01 1.8644517313553921e+00 0 0 0 +2795 0 1 0.0000000000000000e+00 9.0954490603823658e+01 2.6115457972576134e+01 1.2272430913691293e+01 0 0 0 +2620 0 1 0.0000000000000000e+00 9.2948112470307905e+01 3.2968754078983856e+01 2.0655898243703881e+00 0 0 0 +2618 0 1 0.0000000000000000e+00 8.9113566796776610e+01 3.2196507640704631e+01 2.0127605284858183e+00 0 0 0 +2616 0 1 0.0000000000000000e+00 8.4078848508872071e+01 3.3231182390673496e+01 2.0875687850010047e+00 0 0 0 +2614 0 1 0.0000000000000000e+00 8.0472671893014308e+01 3.2278305028205821e+01 1.7286329464541637e+00 0 0 0 +2855 0 1 0.0000000000000000e+00 8.1919883066057707e+01 2.5792482234482545e+01 1.6945879822388715e+01 0 0 0 +2608 0 1 0.0000000000000000e+00 9.9763733199129248e+01 2.6302575190665074e+01 3.3650199832300141e+00 0 0 0 +2827 0 1 0.0000000000000000e+00 9.0716592666196007e+01 1.7366353066774412e+01 1.6834248005528281e+01 0 0 0 +2606 0 1 0.0000000000000000e+00 9.7202074917111105e+01 2.8377709413244350e+01 1.9646249555921975e+00 0 0 0 +2604 0 1 0.0000000000000000e+00 9.3128638576823548e+01 2.8676252210994729e+01 2.1245979602338605e+00 0 0 0 +2251 0 1 0.0000000000000000e+00 9.0582204860384635e+01 2.6907092228846703e-02 1.2541374538363083e+01 0 0 0 +2602 0 1 0.0000000000000000e+00 8.8305543857428532e+01 2.8389744821999557e+01 2.3685334114008820e+00 0 0 0 +2585 0 1 0.0000000000000000e+00 8.6072283853549195e+01 2.1975235329649028e+01 3.3614161564276273e+01 0 0 -1 +2600 0 1 0.0000000000000000e+00 8.4283481797991442e+01 2.8107135410146341e+01 1.3345205494979955e+00 0 0 0 +2598 0 1 0.0000000000000000e+00 8.0221112865683452e+01 2.7776244097805936e+01 2.4626708414569447e+00 0 0 0 +2605 0 1 0.0000000000000000e+00 9.4702954157606186e+01 2.6237898717766790e+01 3.4309773076917878e+01 0 0 -1 +2615 0 1 0.0000000000000000e+00 8.1670286709276226e+01 3.0221479756422848e+01 3.3799374699061403e+01 0 0 -1 +2255 0 1 0.0000000000000000e+00 1.0169688497827488e+02 6.2018624659085670e+00 1.4903537457824543e+01 0 0 0 +2592 0 1 0.0000000000000000e+00 1.0184488734367800e+02 2.4175802640162384e+01 1.4060877051996921e+00 0 0 0 +2590 0 1 0.0000000000000000e+00 9.7308910966079395e+01 2.4121455306898628e+01 1.8302136078642333e+00 0 0 0 +2368 0 1 0.0000000000000000e+00 1.0187472151188636e+02 1.5218573568398337e+01 1.8999160023205292e+01 0 0 0 +2588 0 1 0.0000000000000000e+00 9.2722530921285255e+01 2.4035071945246980e+01 1.6120256505737591e+00 0 0 0 +2123 0 1 0.0000000000000000e+00 9.0550431756623610e+01 5.4928481794082340e-01 4.1843724189849159e+00 0 0 0 +2586 0 1 0.0000000000000000e+00 8.8002149739677577e+01 2.3929336166503450e+01 1.2792971789036442e+00 0 0 0 +3388 0 1 0.0000000000000000e+00 1.0139015496568440e+02 1.9392011362484716e+01 1.0428434838854040e+01 0 0 1 +2584 0 1 0.0000000000000000e+00 8.4232625770184129e+01 2.3622253444226732e+01 1.7335678083645916e+00 0 0 0 +2623 0 1 0.0000000000000000e+00 1.0205729598516808e+02 2.8208288604189420e+01 6.0273741899921225e+00 0 0 0 +2582 0 1 0.0000000000000000e+00 7.9489089371213566e+01 2.3901655776106725e+01 1.6639001678697556e+00 0 0 0 +2631 0 1 0.0000000000000000e+00 8.0925204851012296e+01 1.7174676693942391e+01 3.3728253366301946e+00 0 0 0 +2637 0 1 0.0000000000000000e+00 9.4560473552777054e+01 1.7938038059948234e+01 3.7741562452083808e+00 0 0 0 +2859 0 1 0.0000000000000000e+00 9.0131084754247397e+01 2.5602169559544198e+01 1.6321815786584043e+01 0 0 0 +2576 0 1 0.0000000000000000e+00 1.0140007211406258e+02 1.9495939597700314e+01 1.9861894328882221e+00 0 0 0 +2574 0 1 0.0000000000000000e+00 9.7354951008425942e+01 1.9202185486753834e+01 1.3357959463091507e+00 0 0 0 +2814 0 1 0.0000000000000000e+00 9.9691120418792224e+01 3.0254419825878045e+01 1.6204587998833425e+01 0 0 0 +2572 0 1 0.0000000000000000e+00 9.2042583380835069e+01 1.9717417241946940e+01 1.4056122539692031e+00 0 0 0 +2815 0 1 0.0000000000000000e+00 1.0172222114308049e+02 3.2754663415545764e+01 1.5284019579740587e+01 0 0 0 +2570 0 1 0.0000000000000000e+00 8.8264548345868135e+01 1.8814675243432625e+01 1.1461062296261439e+00 0 0 0 +2597 0 1 0.0000000000000000e+00 7.6764386910866648e+01 2.5947441098402884e+01 3.4478226603861621e+01 0 0 -1 +2568 0 1 0.0000000000000000e+00 8.3984130825048567e+01 1.9435755336690608e+01 2.0744726994599687e+00 0 0 0 +3708 0 1 0.0000000000000000e+00 1.0360375143132910e+02 1.2574404796067260e+01 1.2632128568770961e+01 0 0 0 +2566 0 1 0.0000000000000000e+00 7.9509503538607220e+01 2.0107836537247305e+01 1.0870139212284839e+00 0 0 0 +2635 0 1 0.0000000000000000e+00 9.0771474880043982e+01 1.7865955247785859e+01 4.1925296963862460e+00 0 0 0 +2305 0 1 0.0000000000000000e+00 9.9845439719285764e+01 4.2412747810766055e-01 1.2892596996398371e+01 -1 0 0 +2571 0 1 0.0000000000000000e+00 9.0419357112541761e+01 1.7058229334061959e+01 3.3643206978226942e+01 0 0 -1 +2501 0 1 0.0000000000000000e+00 7.7641332199353371e+01 5.0558924724800641e-02 2.9849006934012650e+01 0 0 0 +2105 0 1 0.0000000000000000e+00 8.6524444570886246e+01 1.2272700869820227e+01 3.3857690402442337e+01 0 0 -1 +2057 0 1 0.0000000000000000e+00 8.6572200471470168e+01 1.0219067467463359e-01 2.5040335564162297e-01 0 0 0 +2957 0 1 0.0000000000000000e+00 9.5470548255148671e+01 1.7325252587336323e+01 2.5744078617701742e+01 0 0 0 +2951 0 1 0.0000000000000000e+00 8.1574618014593753e+01 1.7699985430109830e+01 2.5918570595332191e+01 0 0 0 +2823 0 1 0.0000000000000000e+00 8.1761363295352623e+01 1.7224995519402370e+01 1.6921126605334884e+01 0 0 0 +3960 0 1 0.0000000000000000e+00 1.0142796725982532e+02 1.0571859093645346e+01 1.4587048755174706e+01 0 0 0 +2053 0 1 0.0000000000000000e+00 7.7210311258865190e+01 1.7315103835299139e-01 3.3974699596158757e+01 0 0 -1 +2891 0 1 0.0000000000000000e+00 9.0360639254696380e+01 1.7159200427600346e+01 2.1298240721788428e+01 0 0 0 +2331 0 1 0.0000000000000000e+00 9.0548428402619876e+01 4.3190145310284569e+00 1.7076359839235280e+01 0 0 0 +3021 0 1 0.0000000000000000e+00 9.5038082443476512e+01 1.6898190220824524e+01 3.0196840704944211e+01 0 0 0 +2089 0 1 0.0000000000000000e+00 8.6343119643288986e+01 8.5394082821860202e+00 3.3895546042011169e+01 0 0 -1 +2535 0 1 0.0000000000000000e+00 8.1772292467094360e+01 8.4774784123179128e+00 3.0108325310549624e+01 0 0 0 +2534 0 1 0.0000000000000000e+00 7.9568308898258195e+01 1.1092147377029470e+01 3.1733869488908734e+01 0 0 0 +2528 0 1 0.0000000000000000e+00 9.8839308226705754e+01 4.0217019426669074e+00 3.4358981997152107e+01 0 0 0 +2527 0 1 0.0000000000000000e+00 9.8867840911357163e+01 4.1807809023423346e+00 2.9240258210162928e+01 0 0 0 +2526 0 1 0.0000000000000000e+00 9.7718637892764320e+01 6.5535986309458734e+00 3.2408388507169278e+01 0 0 0 +2525 0 1 0.0000000000000000e+00 9.4689167424485007e+01 4.0083740911878065e+00 2.9858416461701061e+01 0 0 0 +2524 0 1 0.0000000000000000e+00 9.2344080704128061e+01 6.6443088957137295e+00 3.1958484819049843e+01 0 0 0 +2523 0 1 0.0000000000000000e+00 9.0418851387251948e+01 4.0898572825593122e+00 2.8992644853252457e+01 0 0 0 +2522 0 1 0.0000000000000000e+00 8.8184397911496603e+01 6.1799600566649868e+00 3.1671065528516316e+01 0 0 0 +2521 0 1 0.0000000000000000e+00 8.6288706079050598e+01 4.1858806148165186e+00 2.9553863078819990e+01 0 0 0 +2520 0 1 0.0000000000000000e+00 8.4173594085876402e+01 6.2818162997841638e+00 3.1573860074215496e+01 0 0 0 +2519 0 1 0.0000000000000000e+00 8.1671928218808773e+01 4.0563700277959942e+00 3.0268980205339794e+01 0 0 0 +2518 0 1 0.0000000000000000e+00 7.9291534493506774e+01 6.9876132473105992e+00 3.1736625559017583e+01 0 0 0 +2517 0 1 0.0000000000000000e+00 7.7464095880718673e+01 4.5532542700774492e+00 2.9901847785630189e+01 0 0 0 +3876 0 1 0.0000000000000000e+00 1.0331065700924152e+02 2.2232014120520603e+01 7.7038537643294971e+00 1 0 0 +2510 0 1 0.0000000000000000e+00 9.6942169736638803e+01 2.0934558164800725e+00 3.1646322661356667e+01 0 0 0 +2508 0 1 0.0000000000000000e+00 9.2338916562546061e+01 2.3838611396250382e+00 3.1522872252463625e+01 0 0 0 +2539 0 1 0.0000000000000000e+00 9.1169176895188514e+01 9.1452553165383321e+00 2.9410958749247140e+01 0 0 0 +2506 0 1 0.0000000000000000e+00 8.8306349674737120e+01 2.2766178405183100e+00 3.1783945716057978e+01 0 0 0 +2821 0 1 0.0000000000000000e+00 7.7513116804072880e+01 1.6930746645997186e+01 1.6495832285274272e+01 0 0 0 +2504 0 1 0.0000000000000000e+00 8.4210144400762630e+01 2.0930330634015806e+00 3.2369333357340111e+01 0 0 0 +2502 0 1 0.0000000000000000e+00 7.9571869211030304e+01 1.9726257218556105e+00 3.2138061941751118e+01 0 0 0 +2895 0 1 0.0000000000000000e+00 9.9635405514998723e+01 1.7303500995571184e+01 2.0881966850910977e+01 0 0 0 +2496 0 1 0.0000000000000000e+00 9.8859925157148027e+01 1.3058571587561678e+01 3.0412491981565410e+01 0 0 0 +2495 0 1 0.0000000000000000e+00 9.9489354994736658e+01 1.3472377760815267e+01 2.5413278392511501e+01 0 0 0 +2494 0 1 0.0000000000000000e+00 9.9392183873641883e+01 1.6841312807940323e+01 2.6028612671744547e+01 0 0 0 +2493 0 1 0.0000000000000000e+00 9.5002074033920621e+01 1.3190040474478241e+01 2.5491202236893006e+01 0 0 0 +2492 0 1 0.0000000000000000e+00 9.3183512944467864e+01 1.5473232620697727e+01 2.7730744752951797e+01 0 0 0 +2491 0 1 0.0000000000000000e+00 9.0909320944179242e+01 1.3731321884443627e+01 2.4945281969393903e+01 0 0 0 +2490 0 1 0.0000000000000000e+00 8.7543451121557922e+01 1.4906800989484182e+01 2.7109835802828194e+01 0 0 0 +2489 0 1 0.0000000000000000e+00 8.5407305806091117e+01 1.2508943198779097e+01 2.5229268734177158e+01 0 0 0 +2488 0 1 0.0000000000000000e+00 8.3378734474974621e+01 1.4830328932913739e+01 2.7310934911303164e+01 0 0 0 +2487 0 1 0.0000000000000000e+00 8.1447100106048879e+01 1.2752368942458190e+01 2.5017994511492841e+01 0 0 0 +2486 0 1 0.0000000000000000e+00 7.9801463727857168e+01 1.5351938416103337e+01 2.7115798257938437e+01 0 0 0 +2481 0 1 0.0000000000000000e+00 1.0151350174763563e+02 1.5739269528755374e+01 2.3499927876831723e+01 -1 0 0 +2480 0 1 0.0000000000000000e+00 1.0067862460686531e+02 1.1158791045003500e+01 2.7570280466829207e+01 0 0 0 +2479 0 1 0.0000000000000000e+00 9.8611027047973948e+01 7.9935356954720067e+00 2.5777478506296536e+01 0 0 0 +2478 0 1 0.0000000000000000e+00 9.7176935532529171e+01 1.0784455439286068e+01 2.7609714399202321e+01 0 0 0 +2477 0 1 0.0000000000000000e+00 9.4736666263099337e+01 8.8162708329943342e+00 2.5708907167800351e+01 0 0 0 +2476 0 1 0.0000000000000000e+00 9.3226922100563698e+01 1.1507406965205949e+01 2.7478442420525507e+01 0 0 0 +2475 0 1 0.0000000000000000e+00 9.0479640851649805e+01 9.1160304039153157e+00 2.5782714269457990e+01 0 0 0 +2474 0 1 0.0000000000000000e+00 8.8307769228060764e+01 1.1284847890810154e+01 2.7515555077057194e+01 0 0 0 +2473 0 1 0.0000000000000000e+00 8.6576349922791280e+01 8.9350774640308988e+00 2.5777795675447958e+01 0 0 0 +2472 0 1 0.0000000000000000e+00 8.3794471975999357e+01 1.0487655328118800e+01 2.7199966209663199e+01 0 0 0 +2471 0 1 0.0000000000000000e+00 8.1494431269520987e+01 9.0191058121339704e+00 2.4863345347148957e+01 0 0 0 +2470 0 1 0.0000000000000000e+00 8.0132260631138337e+01 1.0447416918547397e+01 2.7925050218846327e+01 0 0 0 +2465 0 1 0.0000000000000000e+00 1.0112568144667775e+02 6.5284575645305987e+00 2.7584962896340667e+01 -1 0 0 +3788 0 1 0.0000000000000000e+00 1.0352904439680580e+02 2.6015290295970491e+01 8.5221263055599525e+00 0 0 0 +2463 0 1 0.0000000000000000e+00 9.9077399835414937e+01 4.1980427039394161e+00 2.5269401101806544e+01 0 0 0 +2462 0 1 0.0000000000000000e+00 9.6607898160646869e+01 6.4891355653396730e+00 2.8262767464059650e+01 0 0 0 +2461 0 1 0.0000000000000000e+00 9.5143383459968589e+01 4.1031096028242748e+00 2.5849615566505118e+01 0 0 0 +2460 0 1 0.0000000000000000e+00 9.2728292950663757e+01 6.6830343050163536e+00 2.7695452885451498e+01 0 0 0 +2459 0 1 0.0000000000000000e+00 9.0601071949761788e+01 4.8363583107337833e+00 2.5311852556333047e+01 0 0 0 +2458 0 1 0.0000000000000000e+00 8.8549616222225453e+01 6.7920733274087732e+00 2.7685224871734469e+01 0 0 0 +2457 0 1 0.0000000000000000e+00 8.5934210533259289e+01 4.4549200071051214e+00 2.5387545193879049e+01 0 0 0 +2456 0 1 0.0000000000000000e+00 8.4028631463209067e+01 6.6834221845633808e+00 2.7688019749186235e+01 0 0 0 +2455 0 1 0.0000000000000000e+00 8.2142516936811447e+01 3.7053297214668781e+00 2.5659911336149921e+01 0 0 0 +2454 0 1 0.0000000000000000e+00 8.0123209539678925e+01 6.6524556603584122e+00 2.7647904970021848e+01 0 0 0 +2448 0 1 0.0000000000000000e+00 9.9215335416597540e+01 1.8025510918127685e-01 2.9705172064018246e+01 0 0 0 +2550 0 1 0.0000000000000000e+00 8.0230051296672428e+01 1.5414257300927810e+01 3.2564014675141422e+01 0 0 0 +2446 0 1 0.0000000000000000e+00 9.6495493976272272e+01 1.6531678678837258e+00 2.8016988793511800e+01 0 0 0 +2551 0 1 0.0000000000000000e+00 8.1298894545301692e+01 1.3133646127214512e+01 2.9786610497518659e+01 0 0 0 +2444 0 1 0.0000000000000000e+00 9.2609874968058719e+01 2.6432853000147727e+00 2.7424936431760038e+01 0 0 0 +2552 0 1 0.0000000000000000e+00 8.4160547347497754e+01 1.5313929899132743e+01 3.2494517736294178e+01 0 0 0 +2442 0 1 0.0000000000000000e+00 8.8134930579625888e+01 1.8224172254077489e+00 2.7251052604703581e+01 0 0 0 +2553 0 1 0.0000000000000000e+00 8.5367271393206948e+01 1.3142419450236297e+01 2.9823342976214661e+01 0 0 0 +2440 0 1 0.0000000000000000e+00 8.4231370100602433e+01 2.5738249893313734e+00 2.7718159906054741e+01 0 0 0 +2554 0 1 0.0000000000000000e+00 8.7976652632777856e+01 1.5232011857048454e+01 3.2066899243404357e+01 0 0 0 +2438 0 1 0.0000000000000000e+00 7.9512285908724380e+01 2.1518339154633574e+00 2.7951242349702593e+01 0 0 0 +2555 0 1 0.0000000000000000e+00 9.0574160220909505e+01 1.3369813751876297e+01 2.9033622559998111e+01 0 0 0 +2556 0 1 0.0000000000000000e+00 9.2370498639533835e+01 1.4821473215493320e+01 3.1222417326875327e+01 0 0 0 +2544 0 1 0.0000000000000000e+00 1.0303044026612429e+02 1.2499804848417119e+01 3.0290590176193895e+01 0 0 0 +2431 0 1 0.0000000000000000e+00 9.9170048330303885e+01 1.3172096625790163e+01 2.1102262755012351e+01 0 0 0 +2430 0 1 0.0000000000000000e+00 9.7336263593531456e+01 1.4839540438893515e+01 2.3169523168071606e+01 0 0 0 +2429 0 1 0.0000000000000000e+00 9.4846828922396057e+01 1.3163166166444002e+01 2.1195500918374059e+01 0 0 0 +2428 0 1 0.0000000000000000e+00 9.3634512545311736e+01 1.4908340695848704e+01 2.3379830999693755e+01 0 0 0 +2427 0 1 0.0000000000000000e+00 9.0814494070988616e+01 1.2996442278624155e+01 2.1794454007897663e+01 0 0 0 +2426 0 1 0.0000000000000000e+00 8.7991809386857000e+01 1.5359467429459528e+01 2.3178103459512354e+01 0 0 0 +2425 0 1 0.0000000000000000e+00 8.6347767021709316e+01 1.3584026278568038e+01 2.0715705817536350e+01 0 0 0 +2424 0 1 0.0000000000000000e+00 8.3256944300103882e+01 1.5006317378479837e+01 2.3468504566162878e+01 0 0 0 +2423 0 1 0.0000000000000000e+00 8.1280169763470923e+01 1.2200790621820767e+01 2.1594527116503372e+01 0 0 0 +2422 0 1 0.0000000000000000e+00 7.9452118382172941e+01 1.5454629551222123e+01 2.3245004748536132e+01 0 0 0 +2541 0 1 0.0000000000000000e+00 9.4746234493507757e+01 8.9325143534981244e+00 3.0206151074258425e+01 0 0 0 +2416 0 1 0.0000000000000000e+00 1.0092883337548975e+02 1.0282407043500195e+01 2.3665083472577869e+01 0 0 0 +2415 0 1 0.0000000000000000e+00 1.0118310002538307e+02 6.3264748669508126e+00 2.3247709357663318e+01 0 0 0 +2414 0 1 0.0000000000000000e+00 9.6772990440781641e+01 1.0766076378924470e+01 2.3527134096702266e+01 0 0 0 +2413 0 1 0.0000000000000000e+00 9.4507278021330777e+01 8.5712520293685959e+00 2.1689573244832701e+01 0 0 0 +2412 0 1 0.0000000000000000e+00 9.3139254987520317e+01 1.0959322143373381e+01 2.3646049692825414e+01 0 0 0 +2411 0 1 0.0000000000000000e+00 9.0908974329676340e+01 8.2301564787104873e+00 2.1786120239221848e+01 0 0 0 +2410 0 1 0.0000000000000000e+00 8.8481687872846052e+01 1.1111111852142503e+01 2.3329366055692205e+01 0 0 0 +2409 0 1 0.0000000000000000e+00 8.6443243078768347e+01 8.9928160090801992e+00 2.0619995574931341e+01 0 0 0 +2408 0 1 0.0000000000000000e+00 8.4370034688674139e+01 1.0549616809036511e+01 2.3090657334725297e+01 0 0 0 +2407 0 1 0.0000000000000000e+00 8.2071561306110212e+01 8.7741957750310728e+00 2.0685734654685621e+01 0 0 0 +2406 0 1 0.0000000000000000e+00 7.9024623539016105e+01 1.0546663632530652e+01 2.3518157357773731e+01 0 0 0 +2896 0 1 0.0000000000000000e+00 1.0376374408603996e+02 2.1892663728988765e+01 2.0693463734299772e+01 0 0 0 +2399 0 1 0.0000000000000000e+00 1.0153945283493161e+02 6.4585110290771706e+00 1.9186962023038706e+01 0 0 0 +2398 0 1 0.0000000000000000e+00 9.6924576647213257e+01 6.5525271375744518e+00 2.3395073934024698e+01 0 0 0 +2397 0 1 0.0000000000000000e+00 9.5347159997696664e+01 4.0723726949316399e+00 2.1625764749169385e+01 0 0 0 +2396 0 1 0.0000000000000000e+00 9.3487213351622970e+01 6.2519106294802311e+00 2.3716167598777361e+01 0 0 0 +2395 0 1 0.0000000000000000e+00 9.0504960947799674e+01 5.2064631844015112e+00 2.1616266177508660e+01 0 0 0 +2697 0 1 0.0000000000000000e+00 8.6240419253136068e+01 1.7289231101471046e+01 8.2116497100198718e+00 0 0 0 +3332 0 1 0.0000000000000000e+00 1.0086727760641544e+02 6.8515040080820535e+00 1.0853911222986381e+01 0 0 0 +2054 0 1 0.0000000000000000e+00 8.0249460779883606e+01 2.0064675819435207e+00 1.3289862718924446e+00 0 0 0 +2303 0 1 0.0000000000000000e+00 9.9639042752974419e+01 1.2733958047596257e+01 1.2650305633573090e+01 0 0 0 +2056 0 1 0.0000000000000000e+00 8.3837187473930456e+01 2.7245575446186803e+00 1.9758088882608875e+00 0 0 0 +2058 0 1 0.0000000000000000e+00 8.8678490201857642e+01 2.7665933385447650e+00 2.1654778097598766e+00 0 0 0 +2825 0 1 0.0000000000000000e+00 8.6818934595302949e+01 1.6826252120660207e+01 1.8113158463553184e+01 0 0 0 +2060 0 1 0.0000000000000000e+00 9.3084337778701922e+01 2.4318154755219035e+00 2.0241142880742951e+00 0 0 0 +2302 0 1 0.0000000000000000e+00 9.9598676030426063e+01 1.7428495378792316e+01 1.6510102605349218e+01 0 0 0 +3236 0 1 0.0000000000000000e+00 1.0336724569088348e+02 1.9157867324491751e-01 1.7118049057516068e+01 0 0 0 +2064 0 1 0.0000000000000000e+00 1.0112943120411180e+02 2.6119134543113480e+00 3.1501512345852035e+01 0 0 -1 +2055 0 1 0.0000000000000000e+00 8.2248831023356374e+01 3.4434704737427424e+01 3.3887976458700578e+01 0 -1 -1 +2349 0 1 0.0000000000000000e+00 9.4671582545309093e+01 8.8466256842906468e+00 1.6523612689949800e+01 0 0 0 +2101 0 1 0.0000000000000000e+00 7.7185056778817724e+01 1.2676653741583426e+01 3.3924370577083451e+01 0 0 -1 +2070 0 1 0.0000000000000000e+00 7.9574687003908139e+01 7.3621596367997313e+00 2.1269468969966789e+00 0 0 0 +2072 0 1 0.0000000000000000e+00 8.4094899487830361e+01 6.8881214569194045e+00 1.5973123876791262e+00 0 0 0 +2074 0 1 0.0000000000000000e+00 8.8288161102064464e+01 6.8200192824105557e+00 2.0495540373648722e+00 0 0 0 +2361 0 1 0.0000000000000000e+00 8.6205106028025426e+01 1.3538306614383094e+01 1.7233133014881034e+01 0 0 0 +2076 0 1 0.0000000000000000e+00 9.2624460512775443e+01 6.2875595151261576e+00 1.3154023462225275e+00 0 0 0 +2343 0 1 0.0000000000000000e+00 8.2472910749496549e+01 8.4360177608024731e+00 1.6521722506553992e+01 0 0 0 +2078 0 1 0.0000000000000000e+00 9.6936004570690116e+01 6.2647765237853070e+00 1.9872867291870602e+00 0 0 0 +2575 0 1 0.0000000000000000e+00 9.8748382372916097e+01 1.6571670389675209e+01 3.3514948876024178e+01 0 0 -1 +2336 0 1 0.0000000000000000e+00 1.0310751948057060e+02 8.5270782075246405e+00 2.1584239854587370e+01 0 0 0 +3962 0 1 0.0000000000000000e+00 1.0193537755848050e+02 1.9875535538378073e+00 2.8005531083132002e+01 0 1 0 +2759 0 1 0.0000000000000000e+00 8.2354465304333260e+01 1.6682393942208563e+01 1.2778194382604385e+01 0 0 0 +2313 0 1 0.0000000000000000e+00 8.5362805918838774e+01 9.8552473335903293e-02 1.6748147648512401e+01 0 0 0 +2086 0 1 0.0000000000000000e+00 7.9517673244338923e+01 1.0839618166948153e+01 1.9222405215859371e+00 0 0 0 +2088 0 1 0.0000000000000000e+00 8.4323246419962274e+01 1.0857968900180326e+01 1.1851195957916185e+00 0 0 0 +2090 0 1 0.0000000000000000e+00 8.8154704191327781e+01 1.0930150383844859e+01 1.8743892989365658e+00 0 0 0 +2092 0 1 0.0000000000000000e+00 9.2051121497631286e+01 1.0691084593908055e+01 1.5162506176680741e+00 0 0 0 +2767 0 1 0.0000000000000000e+00 9.9834225419593878e+01 1.7542437771390791e+01 1.2690750652278259e+01 0 0 0 +2094 0 1 0.0000000000000000e+00 9.6528918036402359e+01 1.0865607005588391e+01 1.3367358591862870e+00 0 0 0 +2367 0 1 0.0000000000000000e+00 9.7423058322361541e+01 1.5209943898156254e+01 1.4524289295204863e+01 0 0 0 +2096 0 1 0.0000000000000000e+00 9.8702383176085789e+01 1.3140377601267698e+01 4.1501059224353458e+00 0 0 0 +2311 0 1 0.0000000000000000e+00 8.1830042079310473e+01 1.1741229767787840e-01 1.7014537107314947e+01 0 0 0 +3408 0 1 0.0000000000000000e+00 1.0189795662763356e+02 2.3792530353033705e+01 3.1542362084726904e+01 0 0 0 +2699 0 1 0.0000000000000000e+00 9.0905968999049364e+01 1.7559920576079232e+01 8.4480456386013110e+00 0 0 0 +2102 0 1 0.0000000000000000e+00 7.9597040124776967e+01 1.4486569396654115e+01 1.5840926871165650e+00 0 0 0 +2286 0 1 0.0000000000000000e+00 9.4988429184512597e+01 8.8061882227858135e+00 1.2474465475543676e+01 0 0 0 +2104 0 1 0.0000000000000000e+00 8.4253589717012233e+01 1.4865569039274417e+01 1.6308773976148436e+00 0 0 0 +2285 0 1 0.0000000000000000e+00 9.7110949052625728e+01 7.0627663474850761e+00 1.0939058648564954e+01 0 0 0 +2106 0 1 0.0000000000000000e+00 8.8513546952616437e+01 1.4911258901799581e+01 1.7369787281799942e+00 0 0 0 +2284 0 1 0.0000000000000000e+00 9.2227585203065004e+01 1.0242950422431756e+01 1.4545830421101329e+01 0 0 0 +2108 0 1 0.0000000000000000e+00 9.1995974324858253e+01 1.5456920003317807e+01 2.2050984982272679e+00 0 0 0 +2282 0 1 0.0000000000000000e+00 8.8485079513301159e+01 1.1842435980217108e+01 1.4894648814636673e+01 0 0 0 +2110 0 1 0.0000000000000000e+00 9.9396364374823094e+01 1.7055490778635221e+01 4.4522244766172152e+00 0 0 0 +2283 0 1 0.0000000000000000e+00 8.9993981670714035e+01 8.8336642066717470e+00 1.2741004641192104e+01 0 0 0 +2112 0 1 0.0000000000000000e+00 1.0087034047390827e+02 1.5463273588094189e+01 1.8291343997537086e+00 0 0 0 +2301 0 1 0.0000000000000000e+00 9.4801643928283454e+01 1.2875550161457820e+01 1.2904766048017406e+01 0 0 0 +2103 0 1 0.0000000000000000e+00 8.1928812497139873e+01 1.2825568738213429e+01 3.3818603358741505e+01 0 0 -1 +2300 0 1 0.0000000000000000e+00 9.3297059411136260e+01 1.5863882426438227e+01 1.4772470028645071e+01 0 0 0 +2118 0 1 0.0000000000000000e+00 7.9081594756884783e+01 2.1699413507776599e+00 6.1170726016178865e+00 0 0 0 +2299 0 1 0.0000000000000000e+00 9.0807367584450759e+01 1.3480702067468519e+01 1.3070748168104492e+01 0 0 0 +2120 0 1 0.0000000000000000e+00 8.4194765476724527e+01 1.7911406426388534e+00 6.4029599989874058e+00 0 0 0 +2183 0 1 0.0000000000000000e+00 8.1550790591989895e+01 3.4256506324760252e+01 8.5238181915297240e+00 0 -1 0 +2122 0 1 0.0000000000000000e+00 8.8561988554587401e+01 2.0311330310380851e+00 6.6530887902773443e+00 0 0 0 +2124 0 1 0.0000000000000000e+00 9.2637892500306108e+01 2.6655885307644960e+00 6.4222234200790442e+00 0 0 0 +2298 0 1 0.0000000000000000e+00 8.8213122253219055e+01 1.5529438000232163e+01 1.5348663971764356e+01 0 0 0 +2126 0 1 0.0000000000000000e+00 9.9450815388461081e+01 4.4112275567033237e+00 4.4918107158489216e+00 0 0 0 +2297 0 1 0.0000000000000000e+00 8.6439678749040155e+01 1.3461035994062305e+01 1.2907429516554757e+01 0 0 0 +2128 0 1 0.0000000000000000e+00 1.0135356382707745e+02 2.6871174107347007e+00 6.8600097917685288e+00 0 0 0 +2133 0 1 0.0000000000000000e+00 7.7934652821263484e+01 4.4587328795621799e+00 4.1216044326644283e+00 0 0 0 +2134 0 1 0.0000000000000000e+00 7.9430921517018689e+01 6.9542888518372319e+00 6.3584104313750940e+00 0 0 0 +2135 0 1 0.0000000000000000e+00 8.1444438026076085e+01 4.4792685023610437e+00 4.0183110200201062e+00 0 0 0 +2136 0 1 0.0000000000000000e+00 8.3934717393907221e+01 6.5436597693146350e+00 5.6691079004583926e+00 0 0 0 +2137 0 1 0.0000000000000000e+00 8.6432725754573525e+01 4.7139747380889450e+00 4.0331919426830432e+00 0 0 0 +2138 0 1 0.0000000000000000e+00 8.8520021295420065e+01 6.5483888223883069e+00 5.6340657246196422e+00 0 0 0 +2139 0 1 0.0000000000000000e+00 9.0803193134637311e+01 4.8220897602765094e+00 3.7638143802616608e+00 0 0 0 +2140 0 1 0.0000000000000000e+00 9.3208823926722289e+01 6.4495372452284023e+00 6.4989218632824546e+00 0 0 0 +2141 0 1 0.0000000000000000e+00 9.5278586439135196e+01 4.7444745170089364e+00 4.2036996148431207e+00 0 0 0 +2142 0 1 0.0000000000000000e+00 9.6752587158431822e+01 7.2457425386580487e+00 6.1566902410895974e+00 0 0 0 +2143 0 1 0.0000000000000000e+00 1.0115050642594822e+02 2.2768398175479643e+00 2.1469142515453501e+00 0 0 0 +2144 0 1 0.0000000000000000e+00 1.0134073009346081e+02 6.6258590549251144e+00 7.3650723125809474e+00 0 0 0 +3847 0 1 0.0000000000000000e+00 1.0125900897343075e+02 5.8386112644139496e+00 3.2099182398825278e+01 0 1 0 +2150 0 1 0.0000000000000000e+00 7.9538732016397660e+01 1.1275758957940200e+01 5.9616977902262125e+00 0 0 0 +2151 0 1 0.0000000000000000e+00 8.1758850905334853e+01 9.1213248428466578e+00 4.2393586222598696e+00 0 0 0 +2152 0 1 0.0000000000000000e+00 8.4228689787805806e+01 1.0726002278379097e+01 6.2477171953607860e+00 0 0 0 +2153 0 1 0.0000000000000000e+00 8.6106123608594373e+01 8.7614232345722556e+00 4.2368387164823265e+00 0 0 0 +2154 0 1 0.0000000000000000e+00 8.8597575027801184e+01 1.0715545171877524e+01 6.3614499876609019e+00 0 0 0 +2155 0 1 0.0000000000000000e+00 9.0321048812698976e+01 8.7099129870229302e+00 3.9422055588459344e+00 0 0 0 +2156 0 1 0.0000000000000000e+00 9.3168750854333965e+01 1.0247256769367167e+01 5.7388158967562202e+00 0 0 0 +2157 0 1 0.0000000000000000e+00 9.4599446369104754e+01 8.3113193163653332e+00 3.5281775529428807e+00 0 0 0 +2158 0 1 0.0000000000000000e+00 1.0108029070355711e+02 1.5310167918984455e+01 1.0207661253761547e+01 0 0 0 +2159 0 1 0.0000000000000000e+00 9.7299162206258927e+01 1.1005199589575122e+01 6.0194065848122094e+00 0 0 0 +2160 0 1 0.0000000000000000e+00 9.9251415800598622e+01 1.3104407204039148e+01 8.4909883970951494e+00 0 0 0 +2567 0 1 0.0000000000000000e+00 8.1606027392413793e+01 1.7571669938285254e+01 3.4278625867581432e+01 0 0 -1 +2165 0 1 0.0000000000000000e+00 7.7208749566168237e+01 1.2724481247302185e+01 3.4651572766138732e+00 0 0 0 +2166 0 1 0.0000000000000000e+00 7.9455791907622697e+01 1.4904462858519237e+01 5.9583088169555039e+00 0 0 0 +2167 0 1 0.0000000000000000e+00 8.1648204382311960e+01 1.3024686409170311e+01 3.6724559752198371e+00 0 0 0 +2168 0 1 0.0000000000000000e+00 8.4160592275894757e+01 1.4832087386276331e+01 5.9879690335787918e+00 0 0 0 +2169 0 1 0.0000000000000000e+00 8.6309822338249106e+01 1.2824470781865493e+01 3.7702500837246022e+00 0 0 0 +2170 0 1 0.0000000000000000e+00 8.8377082490719317e+01 1.5372243448482747e+01 6.3418801484846137e+00 0 0 0 +2171 0 1 0.0000000000000000e+00 9.0465179029793518e+01 1.2714826236174664e+01 3.9945797711348829e+00 0 0 0 +2172 0 1 0.0000000000000000e+00 9.2343632148924371e+01 1.5494415965977540e+01 6.2535998953481560e+00 0 0 0 +2173 0 1 0.0000000000000000e+00 9.4350735290266911e+01 1.3080499716216318e+01 3.9429800056199364e+00 0 0 0 +2174 0 1 0.0000000000000000e+00 9.6702123896831509e+01 1.5063146300621533e+01 6.3709779542351468e+00 0 0 0 +2175 0 1 0.0000000000000000e+00 1.0104273264243878e+02 1.4524734100653236e+01 5.7785057402631876e+00 0 0 0 +2464 0 1 0.0000000000000000e+00 1.0307191089111508e+02 8.6062741105830565e+00 2.9788469500382131e+01 0 0 0 +2296 0 1 0.0000000000000000e+00 8.4621251884823906e+01 1.5377172766852528e+01 1.4972991203193223e+01 0 0 0 +2281 0 1 0.0000000000000000e+00 8.6853699617029434e+01 8.7171423301218542e+00 1.2281747805830177e+01 0 0 0 +2295 0 1 0.0000000000000000e+00 8.2078610411277964e+01 1.2813521366566222e+01 1.2865644902662188e+01 0 0 0 +2182 0 1 0.0000000000000000e+00 7.9653029419548005e+01 1.6347417893234732e+00 1.0637544503340012e+01 0 0 0 +2280 0 1 0.0000000000000000e+00 8.4404142508173891e+01 1.0860314221733113e+01 1.4852594725961877e+01 0 0 0 +2184 0 1 0.0000000000000000e+00 8.4135597977405823e+01 1.9255690101673266e+00 1.0594465712590633e+01 0 0 0 +2294 0 1 0.0000000000000000e+00 7.9766730889913788e+01 1.5126952031217247e+01 1.4442992503169835e+01 0 0 0 +2186 0 1 0.0000000000000000e+00 8.8378255663334613e+01 2.3612364725905555e+00 1.0194278487605700e+01 0 0 0 +2188 0 1 0.0000000000000000e+00 9.2363690158271652e+01 2.4978281285659585e+00 1.0518812522262852e+01 0 0 0 +2190 0 1 0.0000000000000000e+00 9.7230462226245606e+01 2.1106656321571968e+00 1.0660184158126595e+01 0 0 0 +2279 0 1 0.0000000000000000e+00 8.1620752799856916e+01 9.0993472979342691e+00 1.1996861140315517e+01 0 0 0 +2192 0 1 0.0000000000000000e+00 1.0137779148808178e+02 2.4932545052939390e+00 1.4706882977714761e+01 0 0 0 +2198 0 1 0.0000000000000000e+00 7.9745984237221620e+01 6.5175121961784876e+00 1.0446216564753341e+01 0 0 0 +2199 0 1 0.0000000000000000e+00 8.1817576504885523e+01 4.0721490886605229e+00 8.2909351423724615e+00 0 0 0 +2200 0 1 0.0000000000000000e+00 8.3819962354931789e+01 6.7975903049497539e+00 1.0066760982232186e+01 0 0 0 +2201 0 1 0.0000000000000000e+00 8.6013118997846718e+01 4.3730860852649842e+00 8.1899121888340449e+00 0 0 0 +2202 0 1 0.0000000000000000e+00 8.8681809807484086e+01 5.5934095677723450e+00 1.0283346197330907e+01 0 0 0 +2203 0 1 0.0000000000000000e+00 9.0505875839047206e+01 4.8837645560160770e+00 7.8990153940982344e+00 0 0 0 +2204 0 1 0.0000000000000000e+00 9.2816137816252947e+01 6.7562512647227164e+00 1.0587247322256601e+01 0 0 0 +2205 0 1 0.0000000000000000e+00 9.4937389412449278e+01 4.7625006896953748e+00 8.6518569853879761e+00 0 0 0 +2206 0 1 0.0000000000000000e+00 9.8855979787892039e+01 8.8384199845379889e+00 8.2303669750937978e+00 0 0 0 +2207 0 1 0.0000000000000000e+00 9.8425251886616081e+01 4.7457890118104320e+00 8.1763387255143574e+00 0 0 0 +2704 0 1 0.0000000000000000e+00 9.9529064198542301e+01 1.7517874654318653e+01 8.1162850866424083e+00 0 0 0 +2214 0 1 0.0000000000000000e+00 7.9535995846125886e+01 1.1170426627534136e+01 9.8980441665380337e+00 0 0 0 +2215 0 1 0.0000000000000000e+00 8.1476481416247282e+01 8.6463583784140337e+00 8.0999457786936340e+00 0 0 0 +2216 0 1 0.0000000000000000e+00 8.4613996231566560e+01 1.0810327444381093e+01 1.0781002217885341e+01 0 0 0 +2217 0 1 0.0000000000000000e+00 8.6657108321080557e+01 8.4835188580376339e+00 8.1205718420304098e+00 0 0 0 +2218 0 1 0.0000000000000000e+00 8.8735532385132018e+01 1.1488241733032831e+01 1.0396992870943244e+01 0 0 0 +2219 0 1 0.0000000000000000e+00 9.0041308267308168e+01 8.5074274699569941e+00 8.7616562582362505e+00 0 0 0 +2220 0 1 0.0000000000000000e+00 9.2651743549582093e+01 1.0700099903417822e+01 1.0643261224635321e+01 0 0 0 +2221 0 1 0.0000000000000000e+00 9.4928536341245902e+01 9.0653586452070183e+00 8.8063236219843581e+00 0 0 0 +2222 0 1 0.0000000000000000e+00 9.7406435466267240e+01 1.1402511908458850e+01 1.0604511774959109e+01 0 0 0 +2223 0 1 0.0000000000000000e+00 1.0146610080005820e+02 1.0973897951844474e+01 6.3916553118153852e+00 0 0 0 +2224 0 1 0.0000000000000000e+00 9.9046740308271495e+01 8.7187410485851125e+00 1.3363870221105666e+01 0 0 0 +2230 0 1 0.0000000000000000e+00 7.9407126911756649e+01 1.4649115099942055e+01 1.0355375320898458e+01 0 0 0 +2231 0 1 0.0000000000000000e+00 8.2004926081357823e+01 1.2565528661326102e+01 7.7687614360234303e+00 0 0 0 +2232 0 1 0.0000000000000000e+00 8.3564697385829163e+01 1.4410641298526661e+01 9.8683517004282848e+00 0 0 0 +2233 0 1 0.0000000000000000e+00 8.6577556696518471e+01 1.3211199112494496e+01 8.2579545127539831e+00 0 0 0 +2234 0 1 0.0000000000000000e+00 8.9070631445489354e+01 1.5599203874876302e+01 9.9487565647849916e+00 0 0 0 +2235 0 1 0.0000000000000000e+00 9.1235528863988463e+01 1.2835273358352643e+01 8.0216849758171271e+00 0 0 0 +2236 0 1 0.0000000000000000e+00 9.2718649635426090e+01 1.5013349408538708e+01 1.0889888145695997e+01 0 0 0 +2237 0 1 0.0000000000000000e+00 9.4840033682540408e+01 1.2923078872586444e+01 8.4559779439399119e+00 0 0 0 +2238 0 1 0.0000000000000000e+00 9.7058355472644564e+01 1.5350231702826992e+01 1.0143557294677660e+01 0 0 0 +2176 0 1 0.0000000000000000e+00 1.0299216257967497e+02 1.6973617630445418e+01 7.4809818483697388e+00 0 0 0 +3928 0 1 0.0000000000000000e+00 1.0167469498952275e+02 3.2879566650165806e+01 2.7875861355839348e+01 0 0 0 +2246 0 1 0.0000000000000000e+00 8.0245083347072452e+01 2.3331699398623642e+00 1.4879386552631242e+01 0 0 0 +2248 0 1 0.0000000000000000e+00 8.3896645803364734e+01 2.4189743068915170e+00 1.4910679844911142e+01 0 0 0 +2536 0 1 0.0000000000000000e+00 8.4152898559183100e+01 1.0637548101293691e+01 3.1946956746749585e+01 0 0 0 +2250 0 1 0.0000000000000000e+00 8.8483754036823598e+01 2.2372423603658951e+00 1.4798692589725361e+01 0 0 0 +2252 0 1 0.0000000000000000e+00 9.2690526321425153e+01 1.9422466589599232e+00 1.4666742355806649e+01 0 0 0 +2278 0 1 0.0000000000000000e+00 7.9611231383257376e+01 1.1152734260985433e+01 1.4521616952407150e+01 0 0 0 +2254 0 1 0.0000000000000000e+00 9.6636015040435709e+01 1.8885033543439103e+00 1.4715262468779015e+01 0 0 0 +2287 0 1 0.0000000000000000e+00 1.0198154093530806e+02 1.4969567364400639e+01 1.4543438071801043e+01 0 0 0 +3563 0 1 0.0000000000000000e+00 1.0133115090164216e+02 3.2530654056024794e+01 2.0166562381634381e+00 0 0 1 +2262 0 1 0.0000000000000000e+00 7.9954863979072741e+01 6.4175166723894765e+00 1.4281621724505840e+01 0 0 0 +2263 0 1 0.0000000000000000e+00 8.1824253016978631e+01 4.2708007801930288e+00 1.2089602387860191e+01 0 0 0 +2264 0 1 0.0000000000000000e+00 8.3746247941815781e+01 6.6431006440410769e+00 1.3922388498119600e+01 0 0 0 +2265 0 1 0.0000000000000000e+00 8.6336646172581851e+01 4.2870541802234250e+00 1.2333450011269132e+01 0 0 0 +2266 0 1 0.0000000000000000e+00 8.8446805096150726e+01 6.0902987691139847e+00 1.4656568378804529e+01 0 0 0 +2267 0 1 0.0000000000000000e+00 9.0643182811464740e+01 4.1008767842399880e+00 1.2373321102896421e+01 0 0 0 +2268 0 1 0.0000000000000000e+00 9.2389194077051130e+01 6.1210793056506514e+00 1.4662893906432062e+01 0 0 0 +2269 0 1 0.0000000000000000e+00 9.4938941387540055e+01 4.4921021009475375e+00 1.2570224059851958e+01 0 0 0 +2270 0 1 0.0000000000000000e+00 9.6791665715351186e+01 6.6582435118452539e+00 1.4833339298925820e+01 0 0 0 +2271 0 1 0.0000000000000000e+00 9.8832773546579119e+01 4.6907898327672584e+00 1.2904557239066717e+01 0 0 0 +3486 0 1 0.0000000000000000e+00 9.9601793728440100e+01 8.6300321784244005e+00 4.1307609694301588e+00 0 0 0 +2107 0 1 0.0000000000000000e+00 9.0214055545034313e+01 1.3069233621556664e+01 3.4179235083627226e+01 0 0 -1 +2189 0 1 0.0000000000000000e+00 9.7229199028022975e+01 1.8556430389501584e+00 6.7282980658929903e+00 0 0 0 +2695 0 1 0.0000000000000000e+00 8.1944589319437441e+01 1.7036415325344109e+01 7.8726624899910371e+00 0 0 0 +2365 0 1 0.0000000000000000e+00 9.4856703233131171e+01 1.2995841116453033e+01 1.7272249809035959e+01 0 0 0 +2569 0 1 0.0000000000000000e+00 8.5856483374167695e+01 1.7514036943763713e+01 3.4173833895365540e+01 0 0 -1 +2315 0 1 0.0000000000000000e+00 9.0974886995113138e+01 2.0803307257339640e-01 1.7380837491301843e+01 0 0 0 +2363 0 1 0.0000000000000000e+00 9.1011920380123158e+01 1.3141638702329047e+01 1.6911310169041037e+01 0 0 0 +2111 0 1 0.0000000000000000e+00 1.0132164580700663e+02 1.5400230250526267e+01 3.1953376408994433e+01 0 0 -1 +2559 0 1 0.0000000000000000e+00 9.7326216584193588e+01 1.0336791032999120e+01 3.1693927990819120e+01 0 0 0 +2345 0 1 0.0000000000000000e+00 8.6085715624862701e+01 8.4154979191378700e+00 1.6973300066876323e+01 0 0 0 +2247 0 1 0.0000000000000000e+00 8.1809148356939346e+01 1.3350863991687265e-01 1.2577006704880201e+01 0 0 0 +2333 0 1 0.0000000000000000e+00 9.4624634599695682e+01 4.2085705139757588e+00 1.6815162696026391e+01 0 0 0 +2317 0 1 0.0000000000000000e+00 9.4813489442093683e+01 3.4552334761629346e+01 1.7645889109941088e+01 0 -1 0 +2351 0 1 0.0000000000000000e+00 9.7017742871787732e+01 1.1093116471812751e+01 1.5358508664434515e+01 0 0 0 +2093 0 1 0.0000000000000000e+00 9.2122194243186527e+01 1.0565716246751014e+01 3.2086076270286433e+01 0 0 -1 +2077 0 1 0.0000000000000000e+00 9.4754331076682647e+01 4.5750368711681650e+00 3.3490869666439224e+01 0 0 -1 +2091 0 1 0.0000000000000000e+00 8.9763389138083184e+01 8.4294595059460828e+00 3.4264917908937576e+01 0 0 -1 +2701 0 1 0.0000000000000000e+00 9.5126955820188229e+01 1.7864202411823353e+01 8.4411719015637097e+00 0 0 0 +2125 0 1 0.0000000000000000e+00 9.4370660064462683e+01 3.5429397248491967e-01 4.5559714531889002e+00 0 0 0 +2327 0 1 0.0000000000000000e+00 8.2061472200963507e+01 4.8991827909126551e+00 1.7056728431373699e+01 0 0 0 +2253 0 1 0.0000000000000000e+00 9.4556549469107637e+01 1.0306971362658869e-01 1.2576840220036219e+01 0 0 0 +2109 0 1 0.0000000000000000e+00 9.4307580101958592e+01 1.2635903941482725e+01 3.4269376429045955e+01 0 0 -1 +2359 0 1 0.0000000000000000e+00 8.1508479417963983e+01 1.3469559528962856e+01 1.6655114314861784e+01 0 0 0 +2703 0 1 0.0000000000000000e+00 9.7238884509712648e+01 2.0669534725226377e+01 1.0402605348542069e+01 0 0 0 +2049 0 1 0.0000000000000000e+00 1.0119912261262989e+02 3.2802317994748940e+01 3.1898741301414930e+01 -1 -1 -1 +2069 0 1 0.0000000000000000e+00 7.7977601165198010e+01 4.5825399978561849e+00 3.4561825432152766e+01 0 0 -1 +2063 0 1 0.0000000000000000e+00 9.9229399917655144e+01 3.2497293360472973e-01 3.4172176525399180e+01 0 0 -1 +2437 0 1 0.0000000000000000e+00 7.7767019837875921e+01 2.6328663745116065e-01 2.5258347607494944e+01 0 0 0 +2507 0 1 0.0000000000000000e+00 9.0181677015444137e+01 6.0804728116670079e-02 2.9649098486917648e+01 0 0 0 +3449 0 1 0.0000000000000000e+00 1.0334190335599065e+02 3.0375521113323376e+01 8.7692443244934832e+00 0 -1 0 +2310 0 1 0.0000000000000000e+00 8.0065150530251813e+01 2.5291538022769413e+00 1.8960990321145861e+01 0 0 0 +2955 0 1 0.0000000000000000e+00 8.9975506182207866e+01 1.7144907009988373e+01 2.5614372438367745e+01 0 0 0 +2312 0 1 0.0000000000000000e+00 8.4225279994480687e+01 2.2371000992115508e+00 1.9054933877742112e+01 0 0 0 +2375 0 1 0.0000000000000000e+00 8.2048939207232351e+01 3.4532533068487226e+01 2.0856611750823671e+01 0 -1 0 +2314 0 1 0.0000000000000000e+00 8.8352307861880604e+01 2.1621266752062640e+00 1.8860132512189562e+01 0 0 0 +2316 0 1 0.0000000000000000e+00 9.2805581489805803e+01 2.8170745456146276e+00 1.9399346098060661e+01 0 0 0 +2075 0 1 0.0000000000000000e+00 9.0530948915281982e+01 4.4781000741488945e+00 3.3805547949840665e+01 0 0 -1 +2318 0 1 0.0000000000000000e+00 9.8648918307011897e+01 4.5588281060819567e+00 1.6678008467200367e+01 0 0 0 +2439 0 1 0.0000000000000000e+00 8.1848771382313643e+01 2.4888581222337960e-01 2.5302950084618281e+01 0 0 0 +2366 0 1 0.0000000000000000e+00 9.7295142836426621e+01 1.5431699249537758e+01 1.8672587907518839e+01 0 0 0 +2309 0 1 0.0000000000000000e+00 7.7547390279117295e+01 3.4427298187749571e+01 1.5961474774869474e+01 0 -1 0 +2073 0 1 0.0000000000000000e+00 8.6763096066514663e+01 5.0339511998445454e+00 3.4506450934705768e+01 0 0 -1 +2509 0 1 0.0000000000000000e+00 9.3869399336211657e+01 3.3733209979955554e+01 2.9324975692331154e+01 0 -1 0 +2326 0 1 0.0000000000000000e+00 8.0034004038932011e+01 6.5427215809473731e+00 1.9021519652619549e+01 0 0 0 +2328 0 1 0.0000000000000000e+00 8.4703298513682171e+01 6.1647640345045271e+00 1.9030701543882476e+01 0 0 0 +2503 0 1 0.0000000000000000e+00 8.1605360631213955e+01 4.6696596103608344e-02 2.9758516915449842e+01 0 0 0 +2330 0 1 0.0000000000000000e+00 8.8591965177893542e+01 6.4869330209430229e+00 1.9221190795549781e+01 0 0 0 +2511 0 1 0.0000000000000000e+00 9.7001867881872002e+01 3.2768402263996492e+01 2.7755171699129196e+01 0 -1 0 +2332 0 1 0.0000000000000000e+00 9.2168328094839509e+01 6.2406422723971673e+00 1.9014789943061700e+01 0 0 0 +2095 0 1 0.0000000000000000e+00 9.9843636369732266e+01 8.3032297766831604e+00 2.9709247919477912e-02 0 0 0 +2334 0 1 0.0000000000000000e+00 9.6238859009048738e+01 6.7357673594895555e+00 1.9265954864895598e+01 0 0 0 +2992 0 1 0.0000000000000000e+00 9.9440373735183513e+01 3.0126219385269852e+01 2.5892734974430237e+01 0 0 0 +2071 0 1 0.0000000000000000e+00 8.1566623712663699e+01 4.6667097744362316e+00 3.3885858183628443e+01 0 0 -1 +2959 0 1 0.0000000000000000e+00 1.0140865837804576e+02 1.9769525771071820e+01 2.3799885905009031e+01 0 0 0 +2373 0 1 0.0000000000000000e+00 7.7560511865225507e+01 5.6334572894796986e-01 2.1066257962585777e+01 0 0 0 +2342 0 1 0.0000000000000000e+00 7.9755125351319421e+01 1.1101512206570860e+01 1.8719843799179333e+01 0 0 0 +2079 0 1 0.0000000000000000e+00 9.6715409949645576e+01 2.2935043052874273e+00 2.0214527513181735e+00 0 0 0 +2344 0 1 0.0000000000000000e+00 8.3787967479299155e+01 1.1379361060080210e+01 1.9019597150736033e+01 0 0 0 +2347 0 1 0.0000000000000000e+00 8.9723078664434567e+01 8.7731370827950776e+00 1.6875427221944989e+01 0 0 0 +2346 0 1 0.0000000000000000e+00 8.8623060405391712e+01 1.1199372932007275e+01 1.9592459509968297e+01 0 0 0 +2889 0 1 0.0000000000000000e+00 8.5563363237026692e+01 1.7131285672136144e+01 2.0977030882472697e+01 0 0 0 +2348 0 1 0.0000000000000000e+00 9.2551663043882414e+01 1.0439833234286336e+01 1.8968970695806021e+01 0 0 0 +2538 0 1 0.0000000000000000e+00 8.8638340277386547e+01 1.1322639720615724e+01 3.1658615566976696e+01 0 0 0 +2350 0 1 0.0000000000000000e+00 9.6666755427310150e+01 1.0895030138335436e+01 1.9773918035878033e+01 0 0 0 +2352 0 1 0.0000000000000000e+00 9.9174759691194467e+01 8.5025537793847068e+00 2.0941344823486837e+01 0 0 0 +2381 0 1 0.0000000000000000e+00 9.5255041613511821e+01 3.4472047430011230e+01 2.1186606978451874e+01 0 -1 0 +3778 0 1 0.0000000000000000e+00 1.0370582148010890e+02 8.1139180554442341e+00 2.7889424049011124e-01 0 0 0 +2087 0 1 0.0000000000000000e+00 8.1502590297131405e+01 9.2310906966386437e+00 3.3932426553069632e+01 0 0 -1 +2358 0 1 0.0000000000000000e+00 7.9719541017751979e+01 1.5176447692191786e+01 1.9030223193918577e+01 0 0 0 +2537 0 1 0.0000000000000000e+00 8.6617912279710907e+01 9.0528599260461444e+00 2.9725562636322838e+01 0 0 0 +2360 0 1 0.0000000000000000e+00 8.3406887278618768e+01 1.4287248571668361e+01 1.9735645437839739e+01 0 0 0 +2543 0 1 0.0000000000000000e+00 9.9442197919683863e+01 8.3225816832747057e+00 2.9774761444733159e+01 0 0 0 +2362 0 1 0.0000000000000000e+00 8.9111832212340673e+01 1.4625945172441966e+01 1.9275629229013845e+01 0 0 0 +2335 0 1 0.0000000000000000e+00 1.0116150250636795e+02 2.8735893419023966e+00 1.9178014105941600e+01 0 0 0 +2364 0 1 0.0000000000000000e+00 9.2898703238728601e+01 1.5652761194761625e+01 1.9245581479204098e+01 0 0 0 +2542 0 1 0.0000000000000000e+00 9.5165949151747000e+01 8.6801496179239130e+00 3.4211442740121257e+01 0 0 0 +3056 0 1 0.0000000000000000e+00 1.0345216491667856e+02 3.0600380850764772e+01 3.3966584068458907e+01 0 0 0 +3363 0 1 0.0000000000000000e+00 1.0149923194406655e+02 2.2262987535861645e+00 2.4539041118933348e+01 1 0 0 +2497 0 1 0.0000000000000000e+00 6.9724777848219588e+01 3.3651182717254251e+01 3.0230793620793477e+01 0 -1 0 +2785 0 1 0.0000000000000000e+00 1.0143721838166674e+02 2.7719612375498457e+01 1.0795263527273489e+01 -1 0 0 +3465 0 1 0.0000000000000000e+00 1.0365928895396441e+02 3.0513209421082149e+01 4.0479514523446420e+00 0 -1 1 +3008 0 1 0.0000000000000000e+00 1.0187828378877172e+02 2.8566445338192551e+01 2.7929094166835316e+01 0 0 0 +2961 0 1 0.0000000000000000e+00 1.0210865241837286e+02 2.4113108273545063e+01 2.7677416085809352e+01 -1 0 0 +2577 0 1 0.0000000000000000e+00 1.0301000627631187e+02 2.1417065689441632e+01 3.4178769078090745e+01 -1 0 -1 +2849 0 1 0.0000000000000000e+00 6.9221633682603283e+01 2.6297572403988379e+01 1.6501343442718827e+01 0 0 0 +2641 0 1 0.0000000000000000e+00 1.0313813955976447e+02 2.1877335270850431e+01 3.8150595661992068e+00 -1 0 0 +3384 0 1 0.0000000000000000e+00 1.0314917367905149e+02 8.3042052561334430e+00 2.5501367574071317e+01 0 1 1 +2062 0 1 0.0000000000000000e+00 1.0372226989351300e+02 4.6277307725258252e+00 4.6384714579563902e+00 0 0 0 +3782 0 1 0.0000000000000000e+00 1.0345509791616415e+02 1.2674469909271153e+01 9.3150521537307842e+00 1 0 0 +2208 0 1 0.0000000000000000e+00 1.0308634736799777e+02 1.2794485962048794e+01 3.7242833344509840e+00 0 0 0 +3025 0 1 0.0000000000000000e+00 1.0358694243548639e+02 1.7690456039942170e+01 3.0096582946647164e+01 -1 0 0 +2145 0 1 0.0000000000000000e+00 1.0308181735054838e+02 8.3925892636784614e+00 4.1948724575198213e+00 -1 0 0 +3104 0 1 0.0000000000000000e+00 1.0315131012061934e+02 4.7260977501488828e+00 1.2309509732869182e+01 1 0 0 +1857 0 1 0.0000000000000000e+00 6.9432289953500344e+01 1.7480557949113422e+01 2.0653811480634833e+01 -1 0 0 +2944 0 1 0.0000000000000000e+00 1.0280263469864276e+02 2.3272205981450350e-01 2.1756812194151372e+01 0 1 0 +3926 0 1 0.0000000000000000e+00 1.0374139563722332e+02 4.2868565333473097e+00 1.7581527831508954e+01 0 1 0 +3602 0 1 0.0000000000000000e+00 1.0362649848434489e+02 2.1414868094559470e+01 2.5520448052475388e+01 0 1 -1 +2512 0 1 0.0000000000000000e+00 1.0376268796117770e+02 4.5685763825102121e+00 2.9727809790023851e+01 0 0 0 +3481 0 1 0.0000000000000000e+00 1.0364378205177552e+02 1.2398810573265017e+01 1.6889592840931101e+01 0 0 0 +2304 0 1 0.0000000000000000e+00 1.0377681932826920e+02 1.7939844758694068e+01 1.6320243920628258e+01 0 0 0 +2816 0 1 0.0000000000000000e+00 1.0355196012393908e+02 3.4498088237526332e+01 1.2626936467742041e+01 0 0 0 +2400 0 1 0.0000000000000000e+00 1.0330105182070879e+02 4.3082730426478051e+00 2.5867755204479472e+01 0 0 0 +2273 0 1 0.0000000000000000e+00 6.9298255805178627e+01 8.2916476020845025e+00 1.2847711218061129e+01 0 0 0 +2737 0 1 0.0000000000000000e+00 6.9220490054429774e+01 3.0244839268047976e+01 8.4397075266447441e+00 0 0 0 +2817 0 1 0.0000000000000000e+00 6.9259819370146360e+01 1.7640118305910015e+01 1.6677074104625941e+01 0 0 0 +1809 0 1 0.0000000000000000e+00 6.9305706932660470e+01 2.1469414338814349e+01 1.6257308231450903e+01 -1 0 0 +1217 0 1 0.0000000000000000e+00 6.9314828973038829e+01 4.7655916130200460e-01 1.2651648158269275e+01 -1 0 0 +2705 0 1 0.0000000000000000e+00 6.9311889892973539e+01 2.1219714050820890e+01 7.7743259238508813e+00 0 0 0 +3009 0 1 0.0000000000000000e+00 6.9958139960626539e+01 1.7562995677704421e+01 2.9614299858217830e+01 0 0 0 +1921 0 1 0.0000000000000000e+00 6.9266696818865853e+01 1.7343184400914900e+01 2.5118006518138433e+01 -1 0 0 +2369 0 1 0.0000000000000000e+00 6.9456731228871433e+01 4.3641148319834441e-02 2.1193872857166262e+01 0 0 0 +2065 0 1 0.0000000000000000e+00 6.9351109386099495e+01 4.3674138943778846e+00 3.3881486065256098e+01 0 0 -1 +3667 0 1 0.0000000000000000e+00 1.2990133170673636e+02 2.9108970272145800e+01 6.6789296626232675e+00 0 0 0 +4055 0 1 0.0000000000000000e+00 1.1552175278476150e+02 2.2563553633057072e+01 2.1132311432351036e+00 0 0 1 +3508 0 1 0.0000000000000000e+00 1.1098478518066074e+02 1.2732967446086230e+01 2.5245738489529234e+01 1 0 0 +3840 0 1 0.0000000000000000e+00 1.1461162548682256e+02 3.8713142957376663e+00 1.8379124026415884e+01 0 1 0 +3213 0 1 0.0000000000000000e+00 1.2023862198057016e+02 1.1480595795645517e+01 2.6087855645736294e+01 0 0 0 +3900 0 1 0.0000000000000000e+00 1.1424909840638868e+02 2.8780894098000552e+01 3.3001876886903887e+01 1 0 -1 +3473 0 1 0.0000000000000000e+00 1.1293315553623157e+02 3.0896306527033332e+01 2.5711287396162717e+01 0 -1 0 +3315 0 1 0.0000000000000000e+00 1.1853713508210868e+02 2.4827421936826632e+01 3.9648420163772231e+00 0 0 1 +3118 0 1 0.0000000000000000e+00 1.0749460270802665e+02 1.6771288270232116e+01 2.7951932161242371e-01 0 0 1 +3763 0 1 0.0000000000000000e+00 1.2528036182626678e+02 1.2761341905553618e+01 1.9961813324490450e+01 0 0 0 +3910 0 1 0.0000000000000000e+00 1.1844440097587758e+02 2.6229468670611933e+01 1.9138055784201107e+01 0 0 0 +3162 0 1 0.0000000000000000e+00 1.3428924621395518e+02 2.6941548691282758e+01 2.6945182182733451e+01 0 -1 0 +4068 0 1 0.0000000000000000e+00 1.0821424947132940e+02 3.0665331385210585e+01 2.1303440004000851e+01 1 0 0 +3863 0 1 0.0000000000000000e+00 1.3207256574493599e+02 1.0908469626462276e+00 2.9042761674577246e+01 -1 0 0 +3851 0 1 0.0000000000000000e+00 1.2864345921874636e+02 2.5865644074954606e+01 2.6452079286955733e+01 -1 0 0 +3259 0 1 0.0000000000000000e+00 1.2341685288169525e+02 2.7108063823147873e+01 2.7657800087227741e+01 0 -1 -1 +3418 0 1 0.0000000000000000e+00 1.2308345335467546e+02 2.3732481438284687e+01 2.2368318821124987e+01 0 -1 0 +3325 0 1 0.0000000000000000e+00 1.2633229159025387e+02 1.7199146116117078e+01 2.5433141407701793e+01 1 -1 0 +3688 0 1 0.0000000000000000e+00 1.0960605218778315e+02 2.9691001562012225e+01 2.7639081971695234e+01 0 0 -1 +3689 0 1 0.0000000000000000e+00 1.0492585389146114e+02 1.6123368308166832e+01 1.9170608592179882e+01 1 1 1 +3206 0 1 0.0000000000000000e+00 1.1192813978317504e+02 5.3211221301498028e+00 1.8326041711846560e+01 0 0 0 +3687 0 1 0.0000000000000000e+00 1.0788776810307785e+02 2.5501901626978082e+01 3.4488155655185253e+01 0 0 -1 +3454 0 1 0.0000000000000000e+00 1.1369396367422054e+02 1.5636468117260478e+01 2.5288913113432688e+01 1 -1 0 +3443 0 1 0.0000000000000000e+00 1.2954124443403128e+02 3.0972456027459053e+01 2.5591854925302744e+01 0 -1 0 +3406 0 1 0.0000000000000000e+00 1.2213033993149182e+02 3.1544209318926210e+01 1.8974733198058516e+01 0 -1 0 +3580 0 1 0.0000000000000000e+00 1.2533182413584935e+02 1.7351161280015642e+01 3.2364645398899476e+01 0 0 -1 +3846 0 1 0.0000000000000000e+00 1.2247077738198620e+02 2.0274148990266465e+01 2.0563501044514179e+01 0 0 0 +4081 0 1 0.0000000000000000e+00 1.1772162791492659e+02 2.3951136334096415e+01 3.4443105726933730e+01 0 0 0 +3595 0 1 0.0000000000000000e+00 1.2157836076609844e+02 1.4974749436852637e+01 2.0347760925345192e+01 0 0 0 +3988 0 1 0.0000000000000000e+00 1.2772043129539402e+02 3.1182524257578503e+01 3.0395256348153080e+01 -1 -1 0 +3181 0 1 0.0000000000000000e+00 1.2951893313456071e+02 2.0535643853709296e+01 2.0796111427342733e+01 0 0 0 +3307 0 1 0.0000000000000000e+00 1.0784834032319318e+02 4.8867078714729475e+00 2.6548549245759478e+01 1 0 0 +3871 0 1 0.0000000000000000e+00 1.0575508102148926e+02 1.9280439036660560e+01 2.1542449697186079e+00 0 0 1 +3644 0 1 0.0000000000000000e+00 1.2640968910172082e+02 2.0606601949886421e+01 3.4511325533368186e+01 0 -1 0 +3447 0 1 0.0000000000000000e+00 1.2383100234541871e+02 2.7169135580029298e+01 2.3767628461219257e+01 -1 -1 0 +3409 0 1 0.0000000000000000e+00 1.2060277846993549e+02 2.7541054470453787e+01 3.3009885426324360e+01 0 -1 -1 +3675 0 1 0.0000000000000000e+00 1.2246846737038194e+02 2.0364500782121560e+01 3.7460701937882274e-01 0 0 1 +3621 0 1 0.0000000000000000e+00 1.3515148134835147e+02 2.6070517624489387e+01 1.9869822744979480e+01 0 1 0 +4095 0 1 0.0000000000000000e+00 1.2497366461996256e+02 2.0457122088446813e+01 2.5022868923317464e+01 0 0 0 +3111 0 1 0.0000000000000000e+00 1.2633546990529548e+02 1.0634428944418829e+01 2.4186520463525490e+01 -1 -1 0 +3853 0 1 0.0000000000000000e+00 1.2804430767615082e+02 2.0790856448766810e+01 2.4638214419175025e+01 0 0 0 +3282 0 1 0.0000000000000000e+00 1.1747310584903950e+02 3.0333120406198258e+01 3.0487064972985770e+01 0 -1 0 +3941 0 1 0.0000000000000000e+00 1.0764316339444531e+02 2.1424458209022490e+01 2.9710533589549314e+01 0 1 0 +2161 0 1 0.0000000000000000e+00 1.0576547732675290e+02 1.0821573833504258e+01 2.4779036335011964e+00 -1 0 0 +4014 0 1 0.0000000000000000e+00 1.0621520721371597e+02 2.4470358695176607e+01 2.8039022317529181e+01 1 0 0 +3652 0 1 0.0000000000000000e+00 1.1488893148371284e+02 2.6340280474476575e+01 4.9068131533140824e-01 0 0 0 +3990 0 1 0.0000000000000000e+00 1.0600937197990481e+02 3.3307272539817170e+01 1.9065537326551315e+01 0 0 0 +3582 0 1 0.0000000000000000e+00 1.1987714024476617e+02 2.5320913781218586e+01 2.3098445492968057e+01 0 0 -1 +3330 0 1 0.0000000000000000e+00 1.3114074748984098e+02 2.6723133795037402e+01 2.4652106937596582e+01 0 -1 -1 +3246 0 1 0.0000000000000000e+00 1.2568541404998126e+02 2.4286661792935515e+01 2.5262627678031770e+01 0 0 0 +3123 0 1 0.0000000000000000e+00 1.3431017056833105e+02 3.3503798379724074e+01 3.2254544595393099e+01 -1 0 -1 +3086 0 1 0.0000000000000000e+00 1.1147217950017644e+02 2.5234420808145657e+01 9.7107155875100604e-02 1 -1 0 +4006 0 1 0.0000000000000000e+00 1.3313701369349289e+02 2.1134458487973681e+01 2.8562542897627878e+01 -1 0 0 +3175 0 1 0.0000000000000000e+00 1.0542670318033950e+02 6.5833611156232053e+00 3.1924600864786626e+01 0 0 -1 +3529 0 1 0.0000000000000000e+00 1.0749348336715857e+02 4.1554499240188669e-01 2.5593682285710212e+01 1 0 0 +3089 0 1 0.0000000000000000e+00 1.1223152413232282e+02 4.3391762717669895e+00 1.2602792441252708e+01 0 0 -1 +3944 0 1 0.0000000000000000e+00 1.2135687458819569e+02 1.7789210192571847e+01 1.8016819980783644e+01 0 1 0 +4096 0 1 0.0000000000000000e+00 1.1563630909152920e+02 3.2178678884840558e+01 2.2479290261530355e+01 0 0 0 +3700 0 1 0.0000000000000000e+00 1.3159672615752683e+02 3.1757150064876718e+01 2.9725494523165739e+01 0 0 0 +3446 0 1 0.0000000000000000e+00 1.2711142203167213e+02 3.0074003816042588e+01 4.5805355737463964e+00 0 -1 1 +3410 0 1 0.0000000000000000e+00 1.3429482659115845e+02 2.6579463320841661e+01 2.8652123236871176e+00 0 0 1 +4010 0 1 0.0000000000000000e+00 1.1182354548395371e+02 2.2205568942885325e+01 2.5758018107636314e+01 0 0 0 +3440 0 1 0.0000000000000000e+00 1.2596609113555623e+02 1.7667287989225137e+01 2.9229639158883131e+01 0 0 0 +2897 0 1 0.0000000000000000e+00 1.0621768570032870e+02 2.4481632284845546e+01 1.9867554990748623e+01 -1 0 0 +3138 0 1 0.0000000000000000e+00 1.0873512848442827e+02 2.6142606898409269e+01 3.0840569782459191e+01 1 0 -1 +3261 0 1 0.0000000000000000e+00 1.0606024941958964e+02 2.3774481319773045e+01 3.1868431830304125e+01 0 0 -1 +3654 0 1 0.0000000000000000e+00 1.3080383539402277e+02 2.1908800237794157e+01 3.0821760881731677e+01 0 0 0 +3882 0 1 0.0000000000000000e+00 1.3711447590275822e+02 2.2490930774936150e+01 3.4425006532298411e+01 -1 0 0 +3932 0 1 0.0000000000000000e+00 1.0743690237215158e+02 3.0457636169034814e+01 1.7506362413110935e+01 0 0 0 +3193 0 1 0.0000000000000000e+00 1.0389873255929106e+02 4.5229885088267903e+00 8.5163994085284234e+00 1 0 0 +2241 0 1 0.0000000000000000e+00 1.0638232718919339e+02 3.2578810813844825e+01 1.0246389869866499e+01 -1 -1 0 +3502 0 1 0.0000000000000000e+00 1.1728057062227802e+02 2.4585246581035733e+01 2.5608666220597144e+01 0 -1 0 +3859 0 1 0.0000000000000000e+00 1.1930378992867819e+02 3.0443052732569814e+01 2.7075851962476094e+01 0 0 1 +3717 0 1 0.0000000000000000e+00 1.2800685232331628e+02 2.1772081697025282e+01 2.8082842215962465e+01 1 0 0 +3816 0 1 0.0000000000000000e+00 1.2706333501356089e+02 2.4060760570380388e+01 3.1408358200513913e+01 0 0 0 +3705 0 1 0.0000000000000000e+00 1.2354237745478970e+02 3.3169983799104834e+01 2.1834501454038328e+01 0 0 0 +3424 0 1 0.0000000000000000e+00 1.1039308689297329e+02 1.9073738876791641e+01 1.9452846091571889e+01 1 -1 0 +4013 0 1 0.0000000000000000e+00 1.0751083696555075e+02 2.1017504996055735e+01 8.0957907996284657e+00 1 0 0 +3721 0 1 0.0000000000000000e+00 1.1343284422050490e+02 1.9343499193556063e+01 2.4632626739168302e+01 1 1 0 +3157 0 1 0.0000000000000000e+00 1.3168197642791938e+02 2.8477303343714162e+01 3.1215439640969993e+01 -1 0 -1 +4069 0 1 0.0000000000000000e+00 1.2596465610799919e+02 2.2037623707749493e+01 2.2070660623597302e+01 0 0 -1 +3140 0 1 0.0000000000000000e+00 1.3725916728985683e+02 1.8794062158479861e+01 2.8026897705126963e+01 0 -1 0 +4094 0 1 0.0000000000000000e+00 1.3284247582808570e+02 1.9202031543200413e+01 3.2137929070125303e+01 0 0 0 +3371 0 1 0.0000000000000000e+00 1.0713360883605775e+02 2.9873521720941834e+01 2.5001649827129100e+01 1 0 -1 +4032 0 1 0.0000000000000000e+00 1.2128304330689444e+02 2.8619713443384146e+01 1.8010054316543936e+01 0 0 0 +4035 0 1 0.0000000000000000e+00 1.2553798359682041e+02 2.6905782238596899e+01 1.6694895072929050e+01 1 0 0 +4033 0 1 0.0000000000000000e+00 1.3745540808019362e+02 2.2339906026305261e+01 2.8695304802445921e+01 0 0 0 +3342 0 1 0.0000000000000000e+00 1.2578024869875100e+02 1.4765462022680589e+01 8.4017843251930568e-02 0 0 1 +3632 0 1 0.0000000000000000e+00 1.2632905525893858e+02 2.5392265884025722e+01 2.2112288517884448e+01 0 1 0 +3684 0 1 0.0000000000000000e+00 1.0785919380117289e+02 3.0771205925770904e+01 4.8178439157967040e-01 0 0 0 +3226 0 1 0.0000000000000000e+00 1.0575490958853034e+02 2.3383565481195063e+01 1.5592771465489748e+00 1 0 0 +4084 0 1 0.0000000000000000e+00 1.2158804234124507e+02 2.9254397761212186e+01 3.0071351111836517e+01 0 0 0 +3872 0 1 0.0000000000000000e+00 1.0983090627716697e+02 3.2411565905238092e+01 2.4645251908726816e+01 0 0 0 +3878 0 1 0.0000000000000000e+00 1.3375844571100293e+02 3.2004927670430867e+01 1.0926984945088165e+00 -1 -1 1 +3254 0 1 0.0000000000000000e+00 1.0808588594404756e+02 2.1589641822300091e+01 2.1225766338019287e+01 0 -1 0 +3530 0 1 0.0000000000000000e+00 1.1201152689354501e+02 2.6054014593906891e+00 1.6280833249754043e+01 0 0 0 +3462 0 1 0.0000000000000000e+00 1.2268127975893938e+02 3.4202411111165624e+01 2.8263796746918469e+01 -1 -1 0 +3225 0 1 0.0000000000000000e+00 1.0964234827767702e+02 1.1153345758250747e+01 2.2564775650696539e+01 0 0 0 +3609 0 1 0.0000000000000000e+00 1.1248724701902705e+02 6.6571956157052123e-02 2.1559477580839385e+01 0 1 -1 +3976 0 1 0.0000000000000000e+00 1.0403784188255364e+02 2.6229541982736222e+01 3.0158931641522781e+01 1 0 0 +3263 0 1 0.0000000000000000e+00 1.2410368066499217e+02 3.1070384211208594e+01 2.8466574828724568e+01 0 -1 0 +3746 0 1 0.0000000000000000e+00 1.2121794740189682e+02 2.1466483773173728e+01 2.9659852219781005e+01 0 0 0 +3488 0 1 0.0000000000000000e+00 1.2988675147573787e+02 1.9050194298651483e+01 2.6240340678935411e+01 0 0 -1 +4021 0 1 0.0000000000000000e+00 1.1440331085145931e+02 1.8826808848402734e+01 2.7923374238349925e+01 0 0 0 +2625 0 1 0.0000000000000000e+00 1.0519924386365361e+02 1.4011293415229355e+01 6.0832707247682105e+00 -1 0 0 +3953 0 1 0.0000000000000000e+00 1.2377196308864018e+02 1.3742405239855251e+00 1.8977531876832749e+01 0 1 0 +3167 0 1 0.0000000000000000e+00 1.3625385776764074e+02 2.1929658793384117e+01 2.1876936903891732e+01 -1 -1 -1 +3428 0 1 0.0000000000000000e+00 1.3395320012288113e+02 2.5880628527057169e+01 3.3821120040848093e+01 0 -1 0 +3311 0 1 0.0000000000000000e+00 1.2613871053679659e+02 2.1039285095322374e+01 1.8641843236036209e+01 1 -1 -1 +3156 0 1 0.0000000000000000e+00 1.1569637857406802e+02 2.1924908364463700e+01 2.7095629128165122e+01 0 0 -1 +3239 0 1 0.0000000000000000e+00 1.0448078012965398e+02 1.5002901134386464e+01 1.5616966734424720e+00 1 -1 0 +3135 0 1 0.0000000000000000e+00 1.0631642849733977e+02 1.9402192989057959e+01 3.2434005892965260e+01 1 0 -1 +3396 0 1 0.0000000000000000e+00 1.1653587948715636e+02 2.4908745391449713e+01 3.0714758148389663e+01 0 -1 0 +3349 0 1 0.0000000000000000e+00 1.1914741485106033e+02 2.8778213122066333e+01 1.3454315888425525e+01 0 -1 0 +3995 0 1 0.0000000000000000e+00 1.0828758005384817e+02 2.6265424303649631e+01 1.2683682640798668e+01 0 0 0 +2753 0 1 0.0000000000000000e+00 1.0564290157598772e+02 1.4824168291750244e+01 1.5069585045890291e+01 -1 0 0 +3469 0 1 0.0000000000000000e+00 1.2659978666701043e+02 2.5630431036625765e+01 3.4536921679938672e+01 0 -1 0 +3452 0 1 0.0000000000000000e+00 1.3120650533131209e+02 2.6153234606604720e+01 2.0704772373490492e+01 0 -1 0 +3196 0 1 0.0000000000000000e+00 1.2761438744755888e+02 3.2844302817824165e+01 2.2776469488405095e+01 0 0 0 +4049 0 1 0.0000000000000000e+00 1.1078923712326082e+02 2.8635730238671460e+01 2.3883407257654294e+01 0 1 1 +3991 0 1 0.0000000000000000e+00 1.2205631334694452e+02 2.4150767644187475e+01 2.5752880022065828e+01 0 0 1 +3769 0 1 0.0000000000000000e+00 1.3294343507588920e+02 3.0160847349004683e+01 2.5124364882264892e+01 0 0 0 +3423 0 1 0.0000000000000000e+00 1.2650452372634824e+02 2.9969626702141934e+01 1.1531513611163653e+00 0 -1 1 +3777 0 1 0.0000000000000000e+00 1.0543127245312731e+02 1.9073230436749324e+01 2.7622242219809635e+01 1 0 0 +3383 0 1 0.0000000000000000e+00 1.0786063751457209e+02 2.6555613020215308e+01 2.2173409613415746e+01 0 0 0 +3273 0 1 0.0000000000000000e+00 1.1932616364927122e+02 1.8282345097845525e+01 2.1827672451929757e+01 1 -1 0 +3608 0 1 0.0000000000000000e+00 1.2388753652943626e+02 3.0527098204502355e+01 5.0713601766177590e+00 0 0 0 +3754 0 1 0.0000000000000000e+00 1.2931395489120519e+02 2.2838899721892851e+01 3.4323074051124642e+01 0 0 0 +3934 0 1 0.0000000000000000e+00 1.1171916164426398e+02 1.7096130892796459e+01 3.0283274622454559e+01 0 0 0 +3222 0 1 0.0000000000000000e+00 1.1381925873705983e+02 2.5255023845184965e+01 2.5022393555432235e+01 0 0 -2 +3693 0 1 0.0000000000000000e+00 1.0821339096816908e+02 2.6349798959223644e+01 1.6671346347484921e+01 0 0 0 +3279 0 1 0.0000000000000000e+00 1.3481485329834439e+02 2.9767576455472536e+01 3.3000067912242095e+01 0 -1 0 +3720 0 1 0.0000000000000000e+00 1.1806637875461432e+02 2.9827267497307982e+01 2.0300070976174847e+01 1 0 0 +3270 0 1 0.0000000000000000e+00 1.1060039833842718e+02 2.3194782606384479e+01 3.1912809076663482e+01 1 0 -1 +3913 0 1 0.0000000000000000e+00 1.3175212580063882e+02 2.6198271066310199e+00 3.1792480422120317e+01 -1 1 0 +2432 0 1 0.0000000000000000e+00 1.0514952399776524e+02 1.5227833161087551e+01 2.3484256245248101e+01 0 0 0 +3977 0 1 0.0000000000000000e+00 1.1729634877987525e+02 2.7642307538671012e+01 3.2540539601014807e+01 0 0 0 +4028 0 1 0.0000000000000000e+00 1.2887422653119674e+02 2.7170068958238431e+01 2.0767868541955976e+00 0 0 1 +3710 0 1 0.0000000000000000e+00 1.0518225609231668e+02 1.0883847594147838e+01 1.9570813981879631e+01 0 0 0 +3996 0 1 0.0000000000000000e+00 1.1947221118508639e+02 2.2357499023221841e+01 2.7090301113156116e+01 0 0 -1 +3694 0 1 0.0000000000000000e+00 1.2339106826800702e+02 2.6724320636958911e+01 2.0112169531090576e+01 0 0 0 +3485 0 1 0.0000000000000000e+00 1.3088175582105686e+02 2.5138081017934031e+01 3.2045183380852386e+01 -1 -1 0 +3576 0 1 0.0000000000000000e+00 1.2705246180846775e+02 2.9128561663304016e+01 2.7790265902772123e+01 0 -1 0 +3757 0 1 0.0000000000000000e+00 1.1464719689279809e+02 2.9049552386350992e+01 2.3465134044805644e+01 0 0 -1 +3074 0 1 0.0000000000000000e+00 1.0434858419410916e+02 8.9303507149927572e+00 9.1643865693547291e+00 0 0 0 +3403 0 1 0.0000000000000000e+00 1.1022411429458211e+02 2.4086084754233756e+01 2.3636415445878391e+01 0 0 0 +3999 0 1 0.0000000000000000e+00 1.0672138419831661e+02 1.3046272710864603e+01 3.4307918969702015e+01 1 0 -1 +3860 0 1 0.0000000000000000e+00 1.2539290270794717e+02 2.9517620345410922e+01 3.2061287512613660e+01 -1 0 0 +2833 0 1 0.0000000000000000e+00 1.1122547791538713e+02 1.8142961901640366e+01 1.2130463082595034e+01 -1 0 0 +3739 0 1 0.0000000000000000e+00 1.2751097040344206e+02 2.7787741372353132e+01 1.9459125493647150e+01 0 0 0 +3223 0 1 0.0000000000000000e+00 1.2955852263369323e+02 2.3532714087876112e+01 2.2824884791180889e+01 0 0 0 +3267 0 1 0.0000000000000000e+00 1.0537513523019167e+02 5.8425387551988210e+00 1.4920510713582480e+01 0 0 0 +3756 0 1 0.0000000000000000e+00 1.0789919032979721e+02 2.1647745874021446e+01 2.5637959791044590e+01 1 0 -1 +3558 0 1 0.0000000000000000e+00 1.2375258897529561e+02 2.6203730844013780e+01 3.1698654783031930e+01 0 0 0 +3729 0 1 0.0000000000000000e+00 1.2395796160146550e+02 2.2511968943394024e+01 3.2301485244241839e+01 0 0 0 +4091 0 1 0.0000000000000000e+00 1.2791475417090653e+02 2.7155050310834159e+01 3.0296050931038295e+01 0 0 0 +3785 0 1 0.0000000000000000e+00 1.1768512189022091e+02 2.2389514317508663e+01 2.0988487683898914e+01 1 0 0 +4052 0 1 0.0000000000000000e+00 1.1672100512295147e+02 2.7948845894270647e+01 2.6337956358503710e+01 0 0 0 +3738 0 1 0.0000000000000000e+00 1.1186827075322479e+02 2.6104355900091655e+01 2.1785168737450626e+01 0 0 -1 +4047 0 1 0.0000000000000000e+00 1.2627055329880075e+02 1.4406331488643495e+01 2.3667948752459491e+01 0 0 0 +4074 0 1 0.0000000000000000e+00 1.3415040026848936e+02 2.7447307697938406e+01 2.3027491364119594e+01 0 0 0 +3201 0 1 0.0000000000000000e+00 1.1221660777617392e+02 2.7890652041894835e+01 2.7425712824502199e+01 0 -1 0 +3873 0 1 0.0000000000000000e+00 1.1200488984367198e+02 2.6483087231568994e+01 3.1170847164912647e+01 0 1 0 +3512 0 1 0.0000000000000000e+00 1.2243656341054806e+02 2.8459645152688996e+01 6.6990969595869376e-01 1 -1 1 +3523 0 1 0.0000000000000000e+00 1.2089998699569669e+02 2.1667178227253626e+01 2.3691062646653805e+01 0 -1 0 +4088 0 1 0.0000000000000000e+00 1.1495281649671854e+02 1.5769616015685251e+01 3.3375715374903038e+01 0 0 0 +3538 0 1 0.0000000000000000e+00 1.2618046508208468e+02 3.3161664159856400e+01 3.4039136972149535e+00 -1 -1 1 +3427 0 1 0.0000000000000000e+00 1.0595067382411351e+02 2.8426513005609365e+01 3.3018759176883485e+01 0 0 0 +4001 0 1 0.0000000000000000e+00 1.3433781824966653e+02 2.9727452005538563e+01 2.8870214534396517e+01 0 0 0 +2320 0 1 0.0000000000000000e+00 1.0572739996438018e+02 2.5631641372552671e+00 1.9975186347802726e+01 0 0 0 +3837 0 1 0.0000000000000000e+00 1.0783359554499899e+02 1.7610519625311365e+01 2.9400067834643028e+01 0 0 -1 +3800 0 1 0.0000000000000000e+00 1.3025257867325990e+02 1.3261412106105663e+01 3.1011485822371849e+01 0 1 -1 +3442 0 1 0.0000000000000000e+00 1.3807082435906702e+02 2.6071556891945040e+01 2.8090574538471994e+01 -1 0 0 +3256 0 1 0.0000000000000000e+00 1.1855956267740993e+02 2.6956944453981965e+01 2.8920436873435989e+01 0 -1 0 +3221 0 1 0.0000000000000000e+00 1.0645108977875230e+02 3.2602644246155201e+01 3.2164960162581863e+01 -1 -1 -1 +4023 0 1 0.0000000000000000e+00 1.3411744343055764e+02 1.7517178352822459e+01 2.8601312035730412e+01 0 0 0 +3456 0 1 0.0000000000000000e+00 1.3053641531801424e+02 1.8189142991990678e+01 2.9456273375812327e+01 0 0 0 +2433 0 1 0.0000000000000000e+00 1.0636791780625001e+02 3.2175372893877800e+01 2.7868647977353856e+01 -1 -1 0 +3356 0 1 0.0000000000000000e+00 1.2227483245064879e+02 2.1100431886532455e+01 1.7117030031886028e+01 0 0 0 +3584 0 1 0.0000000000000000e+00 1.1508323164190287e+02 3.1524537641810571e+01 1.8896600720608753e+01 0 -1 -1 +3613 0 1 0.0000000000000000e+00 1.1450936728127967e+02 2.3212939493553357e+01 3.2901376188597041e+01 0 0 -1 +3875 0 1 0.0000000000000000e+00 1.1656935300818390e+02 1.7380052893038826e+01 3.0554833612226115e+01 0 0 -1 +3499 0 1 0.0000000000000000e+00 1.1484255362182809e+02 2.2503727983784106e+01 2.3212993198723897e+01 0 0 0 +3382 0 1 0.0000000000000000e+00 1.3463921559903244e+02 2.3880593906732752e+01 2.7105806961225110e+01 0 0 0 +3593 0 1 0.0000000000000000e+00 1.1088003863815814e+02 1.8574824836422749e+01 2.7362009794438361e+01 0 0 0 +3461 0 1 0.0000000000000000e+00 1.1084483078561448e+02 2.4595608161826167e+01 2.7722980989801151e+01 0 0 0 +3989 0 1 0.0000000000000000e+00 1.1042258431557053e+02 2.4298090815378725e+01 1.9563965099670398e+01 0 0 0 +3735 0 1 0.0000000000000000e+00 1.3253988975077866e+02 2.2887320990517740e+01 2.0085584236999157e+01 0 0 0 +3827 0 1 0.0000000000000000e+00 1.1892817671973488e+02 1.5610052591317649e+01 2.7294928316993044e+01 0 0 0 +3109 0 1 0.0000000000000000e+00 1.1400114748066773e+02 3.3226765391989048e+01 6.5863065718347675e+00 0 0 0 +3144 0 1 0.0000000000000000e+00 1.0383274271305179e+02 2.6199543549326172e+01 3.4781812180231237e+00 0 0 0 +3834 0 1 0.0000000000000000e+00 1.1732364643252353e+02 1.9994337498244132e+01 2.4455269095517718e+01 0 0 0 +3541 0 1 0.0000000000000000e+00 1.1043388127826762e+02 1.9086651867309172e+01 2.3233403137049315e+01 1 -1 0 +3174 0 1 0.0000000000000000e+00 1.2103312419461560e+02 2.4818314621661248e+01 7.9101019880059942e-01 0 -1 0 +3648 0 1 0.0000000000000000e+00 1.1651556846242673e+02 3.3729608961481375e+01 2.8443319153773349e+01 0 0 0 +3880 0 1 0.0000000000000000e+00 1.1697145442070634e+02 2.0842310021290309e+01 3.0844078303909985e+01 0 0 0 +3590 0 1 0.0000000000000000e+00 1.2015695659900813e+02 3.4331852697592367e+01 1.2767205586083794e+00 0 0 0 +3096 0 1 0.0000000000000000e+00 1.1939725435515672e+02 1.4095876139154386e+01 2.3394540946978900e+01 0 0 -1 +3300 0 1 0.0000000000000000e+00 1.2146706693516209e+02 2.0659336322162432e+01 4.4800539999418802e+00 1 0 1 +3972 0 1 0.0000000000000000e+00 1.2296197096296841e+02 3.2219843865033802e+01 3.2034607844933582e+01 0 1 0 +3126 0 1 0.0000000000000000e+00 1.0852416409866670e+02 2.1467040904336269e+01 3.3896427523254729e+01 1 0 -1 +890 0 1 0.0000000000000000e+00 1.3775057778658925e+02 3.1550199033314257e+01 3.1823089772387902e+01 -1 0 0 +3577 0 1 0.0000000000000000e+00 1.1205960008911345e+02 2.1726984358653588e+01 2.1492582192904344e+01 0 -1 0 +3227 0 1 0.0000000000000000e+00 1.2130350649677406e+02 2.4776364021991487e+01 2.9179376982728442e+01 0 -1 -1 +3319 0 1 0.0000000000000000e+00 1.3142913233203507e+02 2.5097817544788253e+01 1.4622421597893862e+00 -1 0 1 +4038 0 1 0.0000000000000000e+00 1.3444424317429213e+02 5.3711828890533369e+00 1.6795760893568190e+01 0 0 1 +3334 0 1 0.0000000000000000e+00 1.1154893475578699e+02 3.0447883511851789e+01 3.0247635778758031e+01 1 -1 0 +3945 0 1 0.0000000000000000e+00 1.3083118506712358e+02 2.8386104112988292e+01 2.7645838763055512e+01 0 0 0 +3079 0 1 0.0000000000000000e+00 1.3221008551932667e+02 1.7391012549461891e+01 2.0431223713622998e+01 0 0 0 +3855 0 1 0.0000000000000000e+00 1.1530592002778019e+02 1.8682622686686550e+01 2.1591339220851616e+01 0 0 0 +3933 0 1 0.0000000000000000e+00 1.0632323813297658e+02 2.8538114579578384e+01 1.4923311774893188e+01 1 0 0 +3724 0 1 0.0000000000000000e+00 1.2794239642525504e+02 1.9770394911428934e+01 3.1902823646435179e+00 0 0 1 +3390 0 1 0.0000000000000000e+00 1.3285923431577140e+02 1.7016192986978716e+01 2.5112993147213420e+01 0 0 0 +3641 0 1 0.0000000000000000e+00 1.1653136585564748e+02 1.5408373675231152e+01 2.0670031392302640e+01 1 0 0 +3472 0 1 0.0000000000000000e+00 1.3164038832896196e+02 2.2655926563990626e+01 2.6194612301293741e+01 -1 0 0 +3631 0 1 0.0000000000000000e+00 1.2542378143920520e+02 2.4964678852870964e+01 2.8859691950718325e+01 -1 0 0 +3987 0 1 0.0000000000000000e+00 1.0780169041370065e+02 3.0043706532772276e+01 3.0881835176691872e+01 0 -1 0 +4086 0 1 0.0000000000000000e+00 1.2889969535196880e+02 3.0675572504757291e+01 1.9046375869104892e+01 -1 0 0 +3100 0 1 0.0000000000000000e+00 1.1839501485671899e+02 1.0312514848334692e+01 4.0346742696924718e+00 1 -1 0 +3292 0 1 0.0000000000000000e+00 1.0642031865853333e+02 6.3815069366333983e+00 2.3411620048297429e+01 1 0 0 +3420 0 1 0.0000000000000000e+00 1.2597171274896822e+02 3.0321861544777121e+01 2.4742641800428810e+01 0 0 0 +4073 0 1 0.0000000000000000e+00 1.2209219822374496e+02 3.0545324451939393e+01 2.4724626157898555e+01 0 -1 0 +3450 0 1 0.0000000000000000e+00 1.3536541871789416e+02 3.0424754094288982e+01 2.2184367478460207e+01 -1 -1 0 +3884 0 1 0.0000000000000000e+00 1.1229502984086359e+02 2.1655654394445808e+01 5.2157669479007873e-01 0 -1 0 +3666 0 1 0.0000000000000000e+00 1.1616740681059758e+02 2.6228840932824738e+01 2.2551020046361465e+01 0 0 -1 +3818 0 1 0.0000000000000000e+00 1.2445142379376377e+02 2.1317506104854971e+01 2.8376261357831659e+01 0 0 -1 +3082 0 1 0.0000000000000000e+00 1.2312054897700337e+02 1.7056340559573300e+01 2.3153846276565123e+01 -1 -1 0 +3537 0 1 0.0000000000000000e+00 1.3041642575338091e+02 3.1775959369037114e+01 3.2805665606110502e+01 0 -1 0 +3116 0 1 0.0000000000000000e+00 1.3524342153977673e+02 1.8135205345574779e+01 2.2922828527666738e+01 0 -1 -1 +3617 0 1 0.0000000000000000e+00 1.1813636264352769e+02 2.9125255558261543e+01 2.3543189842332254e+01 0 0 0 +3567 0 1 0.0000000000000000e+00 1.0634499090308456e+02 2.4024183115668070e+01 9.8400331765199915e+00 0 -1 0 +3127 0 1 0.0000000000000000e+00 1.2955357578674801e+02 3.2555180646312557e+01 5.7813855607228666e+00 0 -1 1 +3578 0 1 0.0000000000000000e+00 1.2033339318423444e+02 3.1542950389651747e+01 1.5638180217613439e+01 -1 0 0 +3257 0 1 0.0000000000000000e+00 1.2089468512256791e+02 2.8579670092235094e+01 2.1509120760842837e+01 0 -1 -1 +2945 0 1 0.0000000000000000e+00 1.0573418762451622e+02 2.0081453523318654e+01 2.3299965190260366e+01 -1 0 0 +3980 0 1 0.0000000000000000e+00 1.2440620787934175e+02 2.2509249574671159e+01 2.4550264094337377e+00 0 0 1 +3179 0 1 0.0000000000000000e+00 1.0549738323025245e+02 2.8454335825569544e+01 2.7906430362213243e+01 0 -1 0 +3828 0 1 0.0000000000000000e+00 1.2837556480582350e+02 2.7867885852958359e+01 2.2920621149902086e+01 0 0 0 +3856 0 1 0.0000000000000000e+00 1.2502498622510380e+02 3.0420641907044494e+01 1.7077973613051757e+01 0 0 0 +3155 0 1 0.0000000000000000e+00 1.1985363335666995e+02 1.0907227454458614e+01 3.1466480782179296e+01 0 0 -1 +2881 0 1 0.0000000000000000e+00 1.0580378111158896e+02 1.9617844139329549e+01 1.9693382703092510e+01 -1 0 0 +3441 0 1 0.0000000000000000e+00 1.0394481910271003e+02 8.6562839486151475e+00 1.2976019357059034e+01 0 0 0 +3706 0 1 0.0000000000000000e+00 1.0984705271719922e+02 2.6146062477199861e+00 1.9301647335818345e+01 0 1 0 +3902 0 1 0.0000000000000000e+00 1.0780182658132711e+02 1.7258214445931578e+01 2.4825580082098828e+01 0 0 0 +3438 0 1 0.0000000000000000e+00 1.3197392572141467e+02 2.5052517063530601e+01 2.8978816061020492e+01 -1 0 0 +3758 0 1 0.0000000000000000e+00 1.3565298860520801e+02 1.5323506889980282e+01 1.9832812391143655e+01 0 0 0 +3378 0 1 0.0000000000000000e+00 1.3532402511682412e+02 2.0690405428008159e+01 2.5634005527369453e+01 0 -1 0 +3618 0 1 0.0000000000000000e+00 1.0556284721409777e+02 2.8570904595388626e+01 2.2660491256267616e+01 1 0 -1 +3476 0 1 0.0000000000000000e+00 1.1500868483190092e+02 2.7685588998034344e+01 2.9095569072373156e+01 0 0 0 +3399 0 1 0.0000000000000000e+00 1.2905534557186846e+02 2.8494155210305841e+01 3.3465466699192504e+01 0 0 1 +3381 0 1 0.0000000000000000e+00 1.0994952896018303e+02 1.9201923813179338e+01 3.1956735637235830e+01 0 0 0 +3659 0 1 0.0000000000000000e+00 1.0787979138471826e+02 1.7531549170996730e+01 4.8890878952347521e+00 1 1 0 +3434 0 1 0.0000000000000000e+00 1.3550981379933276e+02 3.0278017019232884e+01 1.8775512901975819e+01 0 0 1 +3416 0 1 0.0000000000000000e+00 1.2492595382307341e+02 2.9641223701401501e+01 2.1112804994044872e+01 -1 0 0 +3304 0 1 0.0000000000000000e+00 1.1151250736648115e+02 3.1154642020827165e+01 1.7382397218432114e+01 0 -1 0 +4029 0 1 0.0000000000000000e+00 1.2456711469858685e+02 2.4234307919198557e+01 5.5708168391006767e+00 0 0 0 +2640 0 1 0.0000000000000000e+00 1.0396812885175395e+02 1.7448170135567786e+01 1.2692650697536225e+01 0 0 0 +4044 0 1 0.0000000000000000e+00 1.1388161736404079e+02 2.2095137199873824e+00 6.1527179495956883e+00 0 1 1 +3404 0 1 0.0000000000000000e+00 1.3334630747074885e+02 3.0603973416239413e+01 1.1044489249176600e+01 -1 0 0 +3773 0 1 0.0000000000000000e+00 1.1787973474617638e+02 8.6950305502668468e-02 1.1072908826349483e+01 1 1 0 +3543 0 1 0.0000000000000000e+00 1.2150126520139384e+02 1.8566209354740632e+01 1.4391331709565785e+01 0 0 1 +3553 0 1 0.0000000000000000e+00 1.1530058634349579e+02 1.4935068267575620e+00 1.4137731462748311e+01 0 0 1 +3845 0 1 0.0000000000000000e+00 1.0992571669051995e+02 3.3295515444558824e+01 2.0623347165935275e+00 0 0 0 +3919 0 1 0.0000000000000000e+00 1.0743640338763430e+02 4.8124024550742067e-01 3.0010056043558714e-01 1 0 0 +3901 0 1 0.0000000000000000e+00 1.0792709219173805e+02 1.2602815487158083e+00 1.6552988188090058e+01 0 1 0 +3112 0 1 0.0000000000000000e+00 1.2499682908143106e+02 2.0332174687917860e+01 5.0748290615855263e+00 -1 0 0 +3289 0 1 0.0000000000000000e+00 1.1432039427864933e+02 1.7615826946869703e+01 9.5851712001100875e+00 1 0 -1 +3559 0 1 0.0000000000000000e+00 1.2455674984316362e+02 1.8351157637005841e+01 1.6361891339218278e+01 0 0 0 +3517 0 1 0.0000000000000000e+00 1.2122240663351837e+02 3.2638154803437168e+01 5.5761969372721758e+00 0 -1 0 +3277 0 1 0.0000000000000000e+00 1.0832617642850178e+02 1.0827517534100036e+01 5.7039506292932334e+00 0 0 0 +3212 0 1 0.0000000000000000e+00 1.3102605238901089e+02 2.0620918456120908e+01 6.4358123018453162e+00 0 0 0 +3137 0 1 0.0000000000000000e+00 1.1684067109034514e+02 1.6586112396833162e+01 2.5976621604996488e+00 0 0 0 +3369 0 1 0.0000000000000000e+00 1.2977398091317474e+02 2.4889536373508562e+01 6.3432729453559515e+00 0 -1 0 +3087 0 1 0.0000000000000000e+00 1.0884796548837268e+02 2.5155268306225758e-02 2.2153119522296251e+01 0 0 -1 +3824 0 1 0.0000000000000000e+00 1.1383816482544700e+02 2.0195850657541174e+00 9.6183526602212837e+00 0 1 0 +3545 0 1 0.0000000000000000e+00 1.2054239255722425e+02 2.8821435317261898e+01 3.9355463358953764e+00 0 0 1 +3245 0 1 0.0000000000000000e+00 1.2963624050329432e+02 2.6935158459905857e+01 1.6938903284530280e+01 0 0 0 +3531 0 1 0.0000000000000000e+00 1.3408921182301088e+02 2.6978973737873183e+01 1.1632553278421687e+01 0 0 0 +4009 0 1 0.0000000000000000e+00 1.1150710091640724e+02 1.2357931807569817e+00 2.4688126822440260e+01 0 1 0 +3445 0 1 0.0000000000000000e+00 1.0777227114987360e+02 2.6393003468033918e+01 7.6560909384858205e+00 1 0 0 +3734 0 1 0.0000000000000000e+00 1.1900659277727812e+02 2.5861228239993590e+01 1.5442659536511474e+01 0 0 0 +3920 0 1 0.0000000000000000e+00 1.0776204738196988e+02 4.9042014144885542e+00 3.0225302348020506e+01 1 0 0 +3136 0 1 0.0000000000000000e+00 1.0785418422259308e+02 2.2030161640334576e+01 1.7501128315145213e+01 0 -1 0 +3498 0 1 0.0000000000000000e+00 1.0976694301863128e+02 3.3379645765341159e+01 1.9062118381587595e+01 1 0 1 +3857 0 1 0.0000000000000000e+00 1.1676455531427013e+02 2.0001792291576383e+01 1.5621542350332914e+01 -1 0 0 +3266 0 1 0.0000000000000000e+00 1.2967813487340092e+02 3.0181744283195744e+01 1.0386635658824623e+01 0 -1 1 +3895 0 1 0.0000000000000000e+00 1.2627535231723972e+02 2.2674423920607435e+01 1.1680478680134753e+01 -1 0 1 +3269 0 1 0.0000000000000000e+00 1.3552620366265771e+02 2.4401313196971039e+01 1.4810391028578804e+01 -1 -1 0 +3839 0 1 0.0000000000000000e+00 1.1700467992455023e+02 1.5897017345189376e+01 7.2475360171689767e+00 0 0 0 +3892 0 1 0.0000000000000000e+00 1.1201857985859424e+02 2.6687974689293469e+01 1.6947463923082868e+01 0 0 0 +3215 0 1 0.0000000000000000e+00 1.0802066552203637e+02 1.6099233351279707e+00 8.1959627184303567e+00 0 0 0 +4039 0 1 0.0000000000000000e+00 1.3420536438128369e+02 1.9912567371998666e+01 4.9546217692559171e+00 -1 0 0 +3493 0 1 0.0000000000000000e+00 1.1881008559834056e+02 3.4423268597258698e+01 1.4533874809665955e+01 1 -1 1 +3550 0 1 0.0000000000000000e+00 1.0576913598936467e+02 2.8138756450092874e+01 1.6532997261766298e+00 1 -1 1 +3373 0 1 0.0000000000000000e+00 1.1220797960794877e+02 2.9970004521580254e+01 1.2589910469400044e+01 0 0 1 +3646 0 1 0.0000000000000000e+00 1.0642345426050977e+02 6.7994599293234854e+00 1.1119411559925396e+01 1 0 0 +3514 0 1 0.0000000000000000e+00 1.1891434432339734e+02 1.8311017032345642e+01 5.5726469621731312e+00 0 -1 1 +3664 0 1 0.0000000000000000e+00 1.3054806342499316e+02 1.8931744430306011e+01 1.0006102125936042e+01 0 0 0 +3527 0 1 0.0000000000000000e+00 1.2104764288172063e+02 1.6147675017570720e+01 4.5640734432548209e+00 1 0 1 +3114 0 1 0.0000000000000000e+00 1.3214016022352178e+02 2.4489216387770611e+01 1.3434427632837561e+01 0 -1 0 +3898 0 1 0.0000000000000000e+00 1.0987031230557820e+02 1.5100254624186631e+01 3.2666814751145722e+01 0 0 -1 +4016 0 1 0.0000000000000000e+00 1.3193557896389078e+02 2.3407880545423165e+01 1.0037962725716699e+01 0 0 1 +3865 0 1 0.0000000000000000e+00 1.1189973430652233e+02 6.6853364415379468e-01 1.2857171111630981e+01 1 0 0 +3203 0 1 0.0000000000000000e+00 1.3341957571283493e+02 2.7321851256181606e+01 1.4782029242923835e+01 0 0 0 +912 0 1 0.0000000000000000e+00 1.3617119788296219e+02 1.7197066517500378e+01 1.6480305952308225e+01 -1 0 0 +3143 0 1 0.0000000000000000e+00 1.0500941049487658e+02 2.2768183762904619e+00 2.1143339810578832e+00 1 0 0 +3870 0 1 0.0000000000000000e+00 1.3261451619052826e+02 3.0911272497113909e+01 7.9407084439167805e+00 -1 -1 0 +3877 0 1 0.0000000000000000e+00 1.1219664765400734e+02 2.1526411665879511e+01 1.3229827349784538e+01 1 0 0 +4061 0 1 0.0000000000000000e+00 1.2151849514032335e+02 2.2339515106967905e+01 1.1239277365251946e+01 0 0 1 +3808 0 1 0.0000000000000000e+00 1.1672849707878723e+02 2.8930284872551482e+01 3.4349410309133113e+00 0 0 1 +3794 0 1 0.0000000000000000e+00 1.3025554792149862e+02 2.6293000445896617e+01 9.6436447649906167e+00 0 0 0 +3810 0 1 0.0000000000000000e+00 1.0767736632734390e+02 2.9831126107838095e+01 8.6488346439237809e+00 0 0 0 +561 0 1 0.0000000000000000e+00 1.3670028245701340e+02 4.3087049457697182e+00 1.0694333911991507e+01 0 1 -1 +3148 0 1 0.0000000000000000e+00 1.3497780187003454e+02 2.8205833246621168e+01 5.6010020523825013e+00 0 -1 0 +3494 0 1 0.0000000000000000e+00 1.1102784935463356e+02 2.3586238497148457e+01 1.0729617114212413e+01 0 0 0 +3297 0 1 0.0000000000000000e+00 1.2008591615128923e+02 3.3114533118577327e+01 8.6234112566359631e+00 0 0 0 +3299 0 1 0.0000000000000000e+00 1.3705021494561089e+02 2.6481911471183011e+01 1.2495013456995430e+01 0 0 -1 +3362 0 1 0.0000000000000000e+00 1.1287650439169219e+02 3.4369883647748388e+01 1.8297426877612217e+01 0 -1 0 +4011 0 1 0.0000000000000000e+00 1.1336986896482546e+02 2.2341555133772740e+01 4.2841589936075621e+00 0 0 1 +3551 0 1 0.0000000000000000e+00 1.1431240437746744e+02 2.9299711218255922e+01 1.5455607495121704e+01 1 -1 0 +3468 0 1 0.0000000000000000e+00 1.1174449057165982e+02 2.1286438585743589e+01 2.9183809659991525e+01 0 -1 0 +3622 0 1 0.0000000000000000e+00 1.2063038216818917e+02 2.1319046266021509e+01 7.9566986537454873e+00 1 0 0 +4041 0 1 0.0000000000000000e+00 1.2025865050507949e+02 2.3686353240618679e+01 3.2278564222764679e+01 -1 0 0 +995 0 1 0.0000000000000000e+00 1.3673515754260703e+02 2.0926944622146443e+01 1.5568615456867660e+01 -1 0 0 +2447 0 1 0.0000000000000000e+00 1.0415938452446940e+02 3.4425102015554295e+01 2.6022660636653907e+01 0 -1 0 +3931 0 1 0.0000000000000000e+00 1.1011240572906119e+02 2.8175670644403269e+01 1.5018524613233971e+01 0 1 1 +3131 0 1 0.0000000000000000e+00 1.2522008824608689e+02 3.3639119733544554e+01 6.8748281643356730e+00 0 -1 0 +3733 0 1 0.0000000000000000e+00 1.1909065087918704e+02 1.9708124347768162e+01 1.1445496517488515e+01 0 0 1 +4050 0 1 0.0000000000000000e+00 1.0728754172114493e+02 2.1728084546634857e+01 4.6180110913072463e+00 0 1 1 +4020 0 1 0.0000000000000000e+00 1.1443872209476061e+02 2.3169508768869878e+01 1.5520441514985999e+01 0 0 0 +4054 0 1 0.0000000000000000e+00 1.2346634082300059e+02 2.2471090062593216e+01 1.4464525451643221e+01 0 0 1 +859 0 1 0.0000000000000000e+00 1.3718504449230977e+02 2.2281040126581736e+01 1.2488991900603054e+01 -1 1 1 +716 0 1 0.0000000000000000e+00 1.3705729015900502e+02 2.1682816773277771e+01 6.6563248624173355e+00 -1 0 0 +2800 0 1 0.0000000000000000e+00 1.0391938156212903e+02 2.6136114771835764e+01 1.6419442063985585e+01 0 0 0 +495 0 1 0.0000000000000000e+00 1.3462184635350701e+02 2.3066806104542948e+01 2.2963615481538704e+00 -1 -1 0 +3677 0 1 0.0000000000000000e+00 1.0807506101236447e+02 8.3433563382829981e+00 1.3860564020695227e+01 1 0 0 +3525 0 1 0.0000000000000000e+00 1.2861317156720295e+02 2.5099182588728929e+01 1.2274728905066999e+01 0 -1 1 +497 0 1 0.0000000000000000e+00 1.3692723463693548e+02 1.2312285214423492e+01 1.1031087782494366e+01 -1 -1 1 +3171 0 1 0.0000000000000000e+00 1.2352738265359375e+02 3.1774155910584415e+01 9.0604604171515675e+00 0 -1 0 +3711 0 1 0.0000000000000000e+00 1.1325583193151719e+02 3.3074026499853126e+01 1.4984512251209919e+01 1 0 0 +3401 0 1 0.0000000000000000e+00 1.3387220395091737e+02 2.1352619960254842e+01 1.2098311333354673e+01 0 -1 0 +3764 0 1 0.0000000000000000e+00 1.2157090667330004e+02 2.5455833371815331e+01 4.2855575069131149e+00 1 0 0 +3305 0 1 0.0000000000000000e+00 1.0915773536189984e+02 1.6264907658280769e+01 1.5459932649390462e+01 1 0 0 +3716 0 1 0.0000000000000000e+00 1.2672100606578890e+02 2.4014500043252433e+01 1.5359720563210319e+01 0 0 0 +3313 0 1 0.0000000000000000e+00 1.1255848963093881e+02 2.5067038254169482e+01 6.9423424587706233e+00 1 0 0 +3205 0 1 0.0000000000000000e+00 1.3753252955577778e+02 1.0678019497067329e+01 2.3036686911152557e+01 0 0 -1 +3670 0 1 0.0000000000000000e+00 1.2761597772585837e+02 1.4724941959918935e+01 1.2558620694474948e+01 0 0 0 +3604 0 1 0.0000000000000000e+00 1.3390756410767841e+02 3.4294936642710638e+01 6.4599160705914818e+00 -1 0 0 +3699 0 1 0.0000000000000000e+00 1.2526414084763667e+02 1.6102599747081978e+01 9.3635299079363641e+00 0 0 0 +3674 0 1 0.0000000000000000e+00 1.2573107046143835e+02 3.2880557674210522e+01 1.9657613298430743e+01 0 0 -1 +3177 0 1 0.0000000000000000e+00 1.1676681092851481e+02 1.1501641838725853e+01 1.3371341554395256e+01 1 0 0 +3309 0 1 0.0000000000000000e+00 1.2240387879710741e+02 2.5181699678459854e+01 1.6741335440498268e+01 0 -1 0 +3107 0 1 0.0000000000000000e+00 1.3236165201930382e+02 2.8666846774042636e+01 6.0247432430706149e-01 0 -1 0 +3795 0 1 0.0000000000000000e+00 1.1763484213325927e+02 1.9179788399793146e+01 2.7680056015694777e+01 0 0 -1 +377 0 1 0.0000000000000000e+00 1.3801730622288909e+02 3.4533581939626671e+01 6.0801972677117382e+00 -1 -1 0 +4070 0 1 0.0000000000000000e+00 1.3399354415674219e+02 2.0218816928812579e+01 8.8249900876151290e+00 -1 0 0 +4027 0 1 0.0000000000000000e+00 1.2085179522382261e+02 3.1986514485293643e+01 1.2208831731368932e+01 0 -1 0 +3723 0 1 0.0000000000000000e+00 1.1426256663994775e+02 2.3445875314169978e+01 1.0451144000368089e+01 0 0 0 +3676 0 1 0.0000000000000000e+00 1.1155375065785941e+02 2.5839225532204892e+01 3.5823319780449925e+00 0 0 0 +3736 0 1 0.0000000000000000e+00 1.2203439109915803e+02 1.6367605348209281e+01 3.3583047051641991e+01 0 0 0 +860 0 1 0.0000000000000000e+00 1.3675838360710443e+02 2.6968338322688822e+01 1.7079908953499654e+01 -1 0 0 +3350 0 1 0.0000000000000000e+00 1.0737312765175818e+02 3.0814566544957739e+01 4.2816965144637740e+00 1 -1 0 +3290 0 1 0.0000000000000000e+00 1.1111144079419594e+02 2.2125295953869660e+01 1.7552678864742987e+01 0 0 0 +3125 0 1 0.0000000000000000e+00 1.2534518664783835e+02 1.2757103776282522e+01 1.4174423819822485e+01 0 0 0 +3232 0 1 0.0000000000000000e+00 1.2877905154946382e+02 2.3795950663432098e+01 1.9098157905916722e+01 -1 0 0 +3120 0 1 0.0000000000000000e+00 1.0575678346495856e+02 2.6373770254238345e+00 1.0837924154140925e+01 0 0 0 +3211 0 1 0.0000000000000000e+00 1.1791756155776194e+02 2.3050158326647573e+01 1.7620657153194870e+01 0 0 0 +3471 0 1 0.0000000000000000e+00 1.3397128460503993e+02 3.3598934860141618e+01 1.0086432041154790e+01 -1 -1 0 +3624 0 1 0.0000000000000000e+00 1.1794208850287737e+02 2.1703144412417171e+01 5.6087866050117601e+00 0 0 0 +3923 0 1 0.0000000000000000e+00 1.2853429823946772e+02 1.5954353594267722e+01 9.1251334102981509e+00 0 0 1 +3623 0 1 0.0000000000000000e+00 1.3573450049238483e+02 2.9972962777743877e+01 1.3948876820772275e+01 0 0 0 +3202 0 1 0.0000000000000000e+00 1.2094234901726443e+02 2.3683257559240129e+01 1.9506634289443475e+01 1 -1 0 +3522 0 1 0.0000000000000000e+00 1.1187669683227610e+02 2.0049727318941887e+01 9.2503638775936974e+00 0 0 1 +3153 0 1 0.0000000000000000e+00 1.2805993701090011e+02 1.8197694811708811e+01 1.8503599370640909e+01 0 -1 -1 +3848 0 1 0.0000000000000000e+00 1.1001131576138920e+02 2.2905610118544100e+01 2.7899512568321159e+00 0 0 0 +3335 0 1 0.0000000000000000e+00 1.1839427672282061e+02 1.6586822740293382e+01 3.4067613133040041e+01 1 0 0 +3718 0 1 0.0000000000000000e+00 1.0575740599935160e+02 2.8381833615757536e+01 5.9134842360270605e+00 0 0 0 +3625 0 1 0.0000000000000000e+00 1.2144214869959096e+02 1.0875387009509993e+01 2.0794728160564908e+01 0 0 0 +4005 0 1 0.0000000000000000e+00 1.1205908336203743e+02 3.1258297756474992e+01 2.1171354653074772e+01 1 0 1 +3505 0 1 0.0000000000000000e+00 1.2036873007030159e+02 1.2841365921424577e+01 2.5700181698929891e+00 0 -1 0 +3489 0 1 0.0000000000000000e+00 1.2064606313621803e+02 2.5571848235211654e+01 1.2130419424313741e+01 0 0 1 +3974 0 1 0.0000000000000000e+00 1.3048087263917617e+02 1.2633358138956947e+01 1.0206973972408388e+01 -1 0 0 +3765 0 1 0.0000000000000000e+00 1.2227551353219407e+02 2.8279936153088158e+01 1.4718488680231111e+01 0 0 1 +3466 0 1 0.0000000000000000e+00 1.3317887296435603e+02 1.4411020284502595e+01 1.4955378231462308e+01 -1 0 0 +3918 0 1 0.0000000000000000e+00 1.2441062799101300e+02 2.6159459456595645e+01 1.3388030668351290e+01 -1 0 1 +3173 0 1 0.0000000000000000e+00 1.1981842725193222e+02 1.7191845651501591e+01 8.0875669589968986e+00 -1 0 0 +3630 0 1 0.0000000000000000e+00 1.3015150237344531e+02 1.2924030132385894e+01 1.6365401289199770e+01 0 0 0 +3407 0 1 0.0000000000000000e+00 1.2025277684603863e+02 2.6934653734526343e+01 2.5945086991561034e+01 1 -1 0 +3955 0 1 0.0000000000000000e+00 1.0516186894411943e+02 1.9494418115023262e+01 9.7042371399170886e+00 0 0 0 +3653 0 1 0.0000000000000000e+00 1.2752237303133104e+02 1.8173503534971023e+00 1.0759632539463272e+01 0 1 1 +996 0 1 0.0000000000000000e+00 1.3778019222311130e+02 2.8046117473890952e+01 2.1528977914842429e+01 0 0 0 +3658 0 1 0.0000000000000000e+00 1.0802520827592302e+02 2.1502487326045333e+01 1.1970851643598664e+01 0 0 0 +3295 0 1 0.0000000000000000e+00 1.3678081018980689e+02 2.5943020773734681e+01 7.1580675566470013e+00 0 -1 0 +4043 0 1 0.0000000000000000e+00 1.1511146746705718e+02 2.9286854493111804e+01 1.1983196896586328e+01 0 0 1 +3645 0 1 0.0000000000000000e+00 1.0936851786113819e+02 1.7855329611471163e+01 8.6293118206000479e+00 0 0 0 +3316 0 1 0.0000000000000000e+00 1.3317362412862292e+02 3.0510620302105622e+01 4.0470443656296444e+00 0 -1 0 +3849 0 1 0.0000000000000000e+00 1.2082595116945147e+02 9.3759562059378254e+00 2.8471121137415977e+01 0 1 0 +3075 0 1 0.0000000000000000e+00 1.3539701173451786e+02 7.9436156487603942e+00 2.1912506511671197e+01 -1 0 -1 +3943 0 1 0.0000000000000000e+00 1.1999215356673628e+02 1.3693004002361972e+01 3.3960353516418095e+01 0 1 0 +3957 0 1 0.0000000000000000e+00 1.0757888033043835e+02 1.4280554745278254e+01 3.3961178131908518e+00 1 0 1 +3491 0 1 0.0000000000000000e+00 1.1852884039819446e+02 3.2824609254626672e+01 1.8955755983538957e+01 0 0 0 +3586 0 1 0.0000000000000000e+00 1.2678517531460221e+02 2.9987102888887744e+01 7.7728649738153672e+00 0 0 0 +3642 0 1 0.0000000000000000e+00 1.1010378408039924e+02 2.4145687722533832e+01 1.4437661563339896e+01 0 0 -1 +3951 0 1 0.0000000000000000e+00 1.3242139524439079e+02 2.9003412592759471e+01 1.9261237987039387e+01 0 0 -1 +3619 0 1 0.0000000000000000e+00 1.1722111720520499e+02 2.2851189379528602e+01 1.3284224729703551e+01 0 0 0 +3164 0 1 0.0000000000000000e+00 1.2348817553468662e+02 2.7959172156791734e+01 6.8048296310722964e+00 0 0 0 +3425 0 1 0.0000000000000000e+00 1.1694312373533447e+02 2.6335260360815418e+01 1.2183548558659750e+01 0 -1 0 +164 0 1 0.0000000000000000e+00 1.3655216179592136e+02 2.7247859059342430e+00 2.2434251920470686e+01 -1 0 0 +3392 0 1 0.0000000000000000e+00 1.3313131148359079e+02 2.5029722176587221e+01 1.7045578486483919e+01 0 -1 0 +3825 0 1 0.0000000000000000e+00 1.3142574431387769e+02 2.1454403003956397e+00 5.7447005500321904e+00 -1 1 0 +414 0 1 0.0000000000000000e+00 1.3462761860007643e+02 6.0457453318432641e+00 2.2777448127318004e-01 -1 0 0 +3959 0 1 0.0000000000000000e+00 1.1730495786755587e+02 1.9305619377454864e+01 8.3983554241186216e+00 0 0 0 +3612 0 1 0.0000000000000000e+00 1.3711725200086272e+02 1.8840944422234596e+01 1.9553910517928955e+01 -1 0 -1 +3389 0 1 0.0000000000000000e+00 1.3329789130948919e+02 2.7260809573367652e+01 7.9058319120681579e+00 0 -1 1 +3570 0 1 0.0000000000000000e+00 1.0916956399670890e+02 1.9732882980478593e+01 1.5149354159751351e+01 0 -1 0 +3938 0 1 0.0000000000000000e+00 1.1004915423090833e+02 2.8730240312470915e+01 6.0591076951468761e+00 0 0 0 +3113 0 1 0.0000000000000000e+00 1.0639257161007453e+02 1.6729080751038630e+01 8.0813037324663028e+00 0 0 -1 +3095 0 1 0.0000000000000000e+00 1.1828811213705733e+02 3.0874904149919121e+01 1.0383196035111622e+01 0 -1 0 +3218 0 1 0.0000000000000000e+00 1.1714629582837847e+02 3.1495288295906395e+01 1.4559574096073963e+01 1 -1 -1 +3076 0 1 0.0000000000000000e+00 1.3104177123019946e+02 2.3681493428569311e+00 1.2057006003201806e+01 0 0 0 +3429 0 1 0.0000000000000000e+00 1.3709905933128175e+02 7.6477656507923868e+00 2.4511911509659621e+00 0 0 1 +3327 0 1 0.0000000000000000e+00 1.3265786790206803e+02 2.1423100990521593e+01 3.4534199355576163e+01 0 -1 -1 +3750 0 1 0.0000000000000000e+00 1.1740102635068857e+02 2.6977647579717210e+01 6.9317670286470499e+00 0 0 0 +3176 0 1 0.0000000000000000e+00 1.2403857350960466e+02 2.1809966844781322e+01 9.0630765558213362e+00 -1 0 0 +3097 0 1 0.0000000000000000e+00 1.0484557882302551e+02 1.9546731524687232e+01 6.0544932998464889e+00 1 0 0 +3195 0 1 0.0000000000000000e+00 1.2739679255211480e+02 2.7956590773423208e+01 1.4286121357537997e+01 0 -1 0 +3293 0 1 0.0000000000000000e+00 1.1361939133617925e+02 2.8580018866521513e+01 6.5405003856991364e+00 0 -1 0 +3854 0 1 0.0000000000000000e+00 1.2268164910653448e+02 9.9309528209468265e+00 2.4690231349196775e+01 0 0 0 +3760 0 1 0.0000000000000000e+00 1.3709973985599055e+02 7.3205097414906981e-02 3.3886592238700487e+01 0 1 0 +3992 0 1 0.0000000000000000e+00 1.1441375877002001e+02 2.4443974617842414e+01 1.9273730965283910e+01 1 0 0 +3231 0 1 0.0000000000000000e+00 1.2994686261220355e+02 2.3583084073538352e+01 1.5533777675030139e+01 0 0 0 +3668 0 1 0.0000000000000000e+00 1.3169233203660642e+02 2.7004827340242386e+01 4.6236006141508543e+00 1 0 1 +3121 0 1 0.0000000000000000e+00 1.3308210177419778e+02 2.1640758135594094e+01 1.5453348245812943e+01 0 -1 0 +3564 0 1 0.0000000000000000e+00 1.3751144977355423e+02 4.3163793764061271e+00 3.4062596524315772e+01 0 0 0 +3964 0 1 0.0000000000000000e+00 1.1108867815268263e+02 3.2335773289623368e+01 5.0826673558848210e+00 0 0 1 +3971 0 1 0.0000000000000000e+00 1.3428288752965324e+02 2.5851160760303307e+00 3.4442497489885831e+01 -1 0 -1 +3374 0 1 0.0000000000000000e+00 1.1788086878946751e+02 2.9005346882870107e+01 1.6816992323746742e+01 1 -1 0 +4079 0 1 0.0000000000000000e+00 1.2024690859351502e+02 2.1489338700075919e+01 1.4752055471787145e+01 0 0 0 +4031 0 1 0.0000000000000000e+00 1.0488954228729230e+02 3.2597337801372049e+01 6.2023014309337992e+00 1 0 1 +3914 0 1 0.0000000000000000e+00 1.3341042136249550e+02 1.9739385942606109e+01 1.8649691259520282e+01 0 0 1 +4066 0 1 0.0000000000000000e+00 1.1554685601950327e+02 2.0186111148584374e+01 1.1886670710887115e+01 0 0 0 +3146 0 1 0.0000000000000000e+00 1.1454609715675758e+02 1.9311976933828340e+01 6.6450473795194078e+00 0 0 0 +3230 0 1 0.0000000000000000e+00 1.2883830862356618e+02 2.2223695987308265e+01 9.1016680226202080e+00 0 -1 0 +3696 0 1 0.0000000000000000e+00 1.3806902160449783e+02 2.9621610541529893e+01 2.9123026066616418e+01 -1 0 -1 +373 0 1 0.0000000000000000e+00 1.3666465507943755e+02 1.7885646813523827e+01 8.7973509211131766e+00 0 0 0 +3770 0 1 0.0000000000000000e+00 1.2311839529100071e+02 1.9088486088386052e+01 3.1204238122056640e+01 0 0 -1 +3547 0 1 0.0000000000000000e+00 1.3078545910910549e+02 3.3654793578942581e+01 1.1827961329143005e+01 0 -1 0 +3589 0 1 0.0000000000000000e+00 1.1926691761763502e+02 2.1546805796412755e+01 1.8058404769663334e+00 0 0 0 +3927 0 1 0.0000000000000000e+00 1.2473169394873582e+02 1.6471562178225234e+01 1.9512657702246951e+01 0 0 0 +3240 0 1 0.0000000000000000e+00 1.1091770088959466e+02 2.7340969639425527e+01 1.0058763100779579e+01 0 -1 0 +3546 0 1 0.0000000000000000e+00 1.3485944478019127e+02 3.3538402772604250e+01 2.8656378731339760e+01 -1 -1 0 +3801 0 1 0.0000000000000000e+00 1.2357276822230477e+02 1.5363446015313869e+01 1.5988223999028072e+01 1 0 0 +4080 0 1 0.0000000000000000e+00 1.3352755159974734e+02 2.4137834377496493e+01 2.3210562391865722e+01 0 0 0 +3192 0 1 0.0000000000000000e+00 1.2412342305580903e+02 1.8327372702250837e+01 1.9751337539439182e+00 0 1 0 +3732 0 1 0.0000000000000000e+00 1.1026940565386680e+02 1.3048776965632337e+01 1.1973952641985974e+00 0 0 0 +3748 0 1 0.0000000000000000e+00 1.0939960331366429e+02 3.2312552310594427e+01 1.4822979832263387e+01 1 0 0 +3909 0 1 0.0000000000000000e+00 1.0929772948093732e+02 1.9309485824064200e+01 2.2028653058315792e+00 1 0 0 +3821 0 1 0.0000000000000000e+00 1.0966606654685189e+02 2.3577236163418650e+01 7.2159819345181511e+00 0 0 0 +3588 0 1 0.0000000000000000e+00 1.2723009021557775e+02 2.6916084398221304e+01 5.5501488278135449e+00 -1 0 0 +3253 0 1 0.0000000000000000e+00 1.2084011731100037e+02 2.5144677218001544e+01 7.3734155769687426e+00 0 -1 0 +3712 0 1 0.0000000000000000e+00 1.1805896154150713e+02 2.3374145346206181e+01 9.4590181528767179e+00 0 0 0 +3352 0 1 0.0000000000000000e+00 1.1620243139757588e+02 1.9910030696371738e+01 4.1618373363945645e-02 0 0 1 +3656 0 1 0.0000000000000000e+00 1.2733874053301599e+02 1.6494318779648719e+01 1.6011218735859156e+01 0 0 0 +3271 0 1 0.0000000000000000e+00 1.1627597160058700e+02 3.0422446699429646e+01 7.3763057637454219e+00 0 -1 -1 +3727 0 1 0.0000000000000000e+00 1.2979387369567775e+02 2.1109630885205032e+01 1.2840788389189756e+01 0 0 0 +3090 0 1 0.0000000000000000e+00 1.3322582425823242e+02 2.3919953319018362e+01 6.1533128078824637e+00 0 0 1 +3906 0 1 0.0000000000000000e+00 1.2646575418067863e+02 2.8319570828707384e+01 1.0571008821816871e+01 0 0 0 +854 0 1 0.0000000000000000e+00 1.3702700160494703e+02 4.4823083492584201e+00 1.9100260009563279e+01 -1 1 0 +3864 0 1 0.0000000000000000e+00 1.0562499623383204e+02 2.8036361769720290e+01 1.0802911406933699e+01 0 0 0 +3963 0 1 0.0000000000000000e+00 1.3078505692153468e+02 2.8427192908978778e+01 1.3275855215368891e+01 0 0 0 +3678 0 1 0.0000000000000000e+00 1.3544863037659948e+02 2.2971476642228140e+01 1.8364851857860614e+01 0 0 0 +3190 0 1 0.0000000000000000e+00 1.2450594400380733e+02 2.7126547501498461e+01 3.0274554260705426e+00 0 -1 0 +3690 0 1 0.0000000000000000e+00 1.0807582103050642e+02 2.5951636343465612e+01 3.7317629246689656e+00 1 0 0 +3343 0 1 0.0000000000000000e+00 1.1279670681504686e+02 2.6043193215234279e+01 1.3442740981565017e+01 0 -1 0 +3832 0 1 0.0000000000000000e+00 1.2691390081834697e+02 3.3290735215974316e+01 3.3436765936400967e+01 -1 1 0 +3260 0 1 0.0000000000000000e+00 1.2698075476618020e+02 2.0578702925299112e+01 1.5036524037487393e+01 0 0 0 +3915 0 1 0.0000000000000000e+00 1.0965674443776979e+02 1.4632328765186779e+01 6.5882425300025336e+00 0 0 1 +4024 0 1 0.0000000000000000e+00 1.0535738236365947e+02 2.2954162700160845e+00 1.4559134486574534e+01 0 0 0 +3451 0 1 0.0000000000000000e+00 1.0793794735712257e+02 2.7716231903617894e-01 1.2339973760074878e+01 1 0 0 +3812 0 1 0.0000000000000000e+00 1.3323684804774359e+02 1.8511445850841984e+01 1.3822468364657029e+01 0 0 -1 +3813 0 1 0.0000000000000000e+00 1.1462534289594819e+02 2.8454863097280420e+01 1.9496985259884013e+01 0 0 0 +3283 0 1 0.0000000000000000e+00 1.3532544573476727e+02 1.7889440605457235e-01 2.9500095686874288e+00 0 0 1 +3129 0 1 0.0000000000000000e+00 1.2533410251444374e+02 3.3660286905402323e+01 1.1653157935624225e+01 0 -1 0 +3286 0 1 0.0000000000000000e+00 1.3784107751540475e+02 3.6467535155465602e-01 3.0324793799462558e+01 0 0 -1 +3843 0 1 0.0000000000000000e+00 1.2678931595105345e+02 2.5492064238955003e+01 8.6535153831952130e+00 0 0 0 +72 0 1 0.0000000000000000e+00 1.3691802539567379e+02 1.9007372948644029e+01 1.2256318936747833e+01 -1 0 0 +3235 0 1 0.0000000000000000e+00 1.2975255602262780e+02 1.7980566118331037e+01 1.4677575992180067e+01 -1 0 0 +3994 0 1 0.0000000000000000e+00 1.3663699905868413e+02 2.5176152278499803e+01 2.4711726212336185e+01 -1 0 0 +3753 0 1 0.0000000000000000e+00 1.0832197346916855e+02 3.0000776151288417e+01 1.2397838728670200e+01 0 0 0 +3811 0 1 0.0000000000000000e+00 1.2894978783186903e+02 1.4879171409773072e+01 1.9209307997301700e+01 -1 0 0 +4064 0 1 0.0000000000000000e+00 1.3002514721018085e+02 2.0681542921972980e+01 1.7157075980156620e+01 0 0 0 +3536 0 1 0.0000000000000000e+00 1.2309487663269768e+02 1.7662136080023053e+01 6.7060236489773413e+00 0 0 1 +4090 0 1 0.0000000000000000e+00 1.3605354946822615e+02 3.1631916889419863e+01 7.3995868883553113e+00 0 0 1 +3250 0 1 0.0000000000000000e+00 1.1929243800422898e+02 2.7681885311174216e+01 9.8798161781438996e+00 1 -1 0 +3940 0 1 0.0000000000000000e+00 1.2216294720353395e+02 2.8702960156112674e+01 1.0993179396350275e+01 0 0 1 +3802 0 1 0.0000000000000000e+00 1.1015289569518932e+02 2.0377258628958312e+01 5.8270205817886627e+00 0 0 0 +4002 0 1 0.0000000000000000e+00 1.1549334673297798e+02 2.6332606388405242e+01 9.1140450569791600e+00 0 0 1 +3142 0 1 0.0000000000000000e+00 1.1508698545121972e+02 2.3252644848462602e+01 7.0884697494486888e+00 1 -1 0 +3397 0 1 0.0000000000000000e+00 1.2031376047291914e+02 1.8472831943966309e+01 1.8976479285482113e+00 0 0 1 +3358 0 1 0.0000000000000000e+00 1.2896591045123449e+02 3.1285281833698495e+01 1.5276534208063348e+01 0 0 1 +4008 0 1 0.0000000000000000e+00 1.0545519553432618e+02 2.4194353794806471e+01 6.2116550590713144e+00 1 0 1 +20 0 1 0.0000000000000000e+00 1.3177706075786460e+02 1.5970933281614002e+01 3.2246986909325280e+01 -1 0 -1 +3507 0 1 0.0000000000000000e+00 1.2522599862940184e+02 2.4307061703116986e+01 1.8766767314027700e+01 0 -1 0 +574 0 1 0.0000000000000000e+00 1.3599000182514388e+02 1.4682123029407638e+01 8.4686125892973738e+00 0 0 0 +3099 0 1 0.0000000000000000e+00 1.2798666998536831e+02 2.4141436927806943e+01 2.8870599821397942e+00 -1 -1 0 +3360 0 1 0.0000000000000000e+00 1.2376219234095032e+02 2.5546071965713697e+01 1.0012472611052447e+01 0 -1 1 +3204 0 1 0.0000000000000000e+00 1.0958150054935871e+02 2.8859199041454126e+01 2.6278227743494984e+00 0 0 0 +3887 0 1 0.0000000000000000e+00 1.2640153168435560e+02 1.8986383489018763e+01 2.1693881491328888e+01 0 0 -1 +4071 0 1 0.0000000000000000e+00 1.3114655920982133e+02 3.4119428588866896e+01 1.5962782865934599e+01 0 0 1 +3357 0 1 0.0000000000000000e+00 1.1637212422624835e+02 1.9963692293165231e+01 3.6096495163667193e+00 0 -1 1 +3600 0 1 0.0000000000000000e+00 1.1875447028278829e+02 2.7329604350902130e+01 1.4149850398934147e+00 0 -1 0 +63 0 1 0.0000000000000000e+00 1.3483714601933855e+02 2.6522197943158289e+01 3.0174171028208587e+01 0 0 -1 +4067 0 1 0.0000000000000000e+00 1.1013897769770170e+02 2.8379782120400527e+01 1.9605746731752692e+01 0 0 0 +3073 0 1 0.0000000000000000e+00 1.3017572288764003e+02 2.0091199225500467e-01 8.5957440339264490e+00 0 1 0 +3767 0 1 0.0000000000000000e+00 1.0584852886618729e+02 2.3600333179468784e+01 2.3551558238645526e+01 0 0 -1 +3080 0 1 0.0000000000000000e+00 1.3367076149052664e+02 1.7240108964965884e+01 2.7072163469342447e-01 0 0 0 +3354 0 1 0.0000000000000000e+00 1.2499517073020043e+02 1.8989232030433227e+00 1.3740676036990260e+01 0 0 0 +3132 0 1 0.0000000000000000e+00 1.1039702976143194e+02 2.8917721608125692e+01 3.3078761861362686e+01 1 -1 -1 +3303 0 1 0.0000000000000000e+00 1.1156702116371113e+02 3.3170501238630635e+01 2.7751581259465222e+01 1 -1 0 +3182 0 1 0.0000000000000000e+00 1.2329653177349107e+02 1.7967070816271953e+01 2.6905265774100911e+01 0 0 -1 +3421 0 1 0.0000000000000000e+00 1.1870780058229889e+02 1.0287938002983838e+01 3.2476292848037408e-02 0 0 1 +3534 0 1 0.0000000000000000e+00 1.3289941743670653e+02 4.7308701147751053e+00 2.9157099974567217e+01 0 0 0 +3154 0 1 0.0000000000000000e+00 1.1966655803802159e+02 2.0385326507572348e+01 3.2508689685979029e+01 0 0 0 +3966 0 1 0.0000000000000000e+00 1.1570686673124590e+02 5.6644209993825383e+00 2.6996482312221534e+01 0 0 0 +3185 0 1 0.0000000000000000e+00 1.2729543551720444e+02 1.2711426723426364e+00 2.4372393118275021e+01 0 0 0 +3336 0 1 0.0000000000000000e+00 1.2410050277209426e+02 1.4441284987961723e+01 3.4407589541347821e+00 0 0 1 +3301 0 1 0.0000000000000000e+00 1.1914660587880864e+02 3.6447451157544415e+00 3.1304624185580774e+01 0 0 -1 +3251 0 1 0.0000000000000000e+00 1.2181807027423631e+02 1.2522095540496620e+01 2.8855638416512054e+01 0 0 0 +3930 0 1 0.0000000000000000e+00 1.2565545833562831e+02 3.4399863017765462e+01 3.0521199928334834e+01 0 -1 0 +3826 0 1 0.0000000000000000e+00 1.3666006081989960e+02 3.4015313343582427e+01 2.0941015701894120e+01 0 0 -1 +4082 0 1 0.0000000000000000e+00 1.2156292691807639e+02 3.0219815014065490e+00 2.6297159206701139e+01 0 1 1 +3879 0 1 0.0000000000000000e+00 1.1465017476883750e+02 9.4291979056613382e+00 2.2524751877686896e+01 0 1 0 +3858 0 1 0.0000000000000000e+00 1.2115386490952523e+02 4.9252948613221585e+00 1.9054729572159310e+01 0 1 0 +3437 0 1 0.0000000000000000e+00 1.3262359313008722e+02 3.0610996893226023e+01 1.6094464368515720e+01 0 -1 0 +3809 0 1 0.0000000000000000e+00 1.2588340149775428e+02 3.3236709193646341e+01 2.6444387743249610e+01 0 0 0 +3209 0 1 0.0000000000000000e+00 1.1222992407787680e+02 1.9323422993990544e-01 1.1971718850301584e-01 1 1 0 +3532 0 1 0.0000000000000000e+00 1.2268878588639298e+02 1.5376427613019919e+01 3.0178439757346688e+01 -1 0 0 +3562 0 1 0.0000000000000000e+00 1.1793696290797243e+02 1.1618668144861173e+01 1.9255059289045086e+01 1 0 0 +2784 0 1 0.0000000000000000e+00 1.0394020890741334e+02 2.2009670493297161e+01 1.6533339599480460e+01 0 0 0 +3467 0 1 0.0000000000000000e+00 1.1926411091071451e+02 1.3904984021317195e+00 2.8150563174732984e+01 1 0 0 +3925 0 1 0.0000000000000000e+00 1.1680306577415719e+02 7.6591245937941554e+00 1.6685491205622740e+00 1 1 1 +3310 0 1 0.0000000000000000e+00 1.1401748039415988e+02 1.4456604103494106e+00 2.7561521634614671e+01 0 0 0 +3528 0 1 0.0000000000000000e+00 1.2653978363016213e+02 5.3308761169144301e+00 4.0774793445604258e+00 -1 0 1 +3521 0 1 0.0000000000000000e+00 1.3449691184751902e+02 1.3636170215157128e+01 3.0215053394277184e+01 -1 0 0 +3979 0 1 0.0000000000000000e+00 1.3144863075017929e+02 1.4772615473172225e+01 2.8085255323228161e+01 -1 0 0 +3549 0 1 0.0000000000000000e+00 1.1690937514882391e+02 5.9638657425373820e+00 3.3205791708892960e+01 0 0 0 +3904 0 1 0.0000000000000000e+00 1.1644185690467705e+02 1.2845080257631210e+01 2.5597679591523729e+01 0 0 0 +3092 0 1 0.0000000000000000e+00 1.0578579618484966e+02 1.4797342333724652e+01 2.8305227810036332e+01 0 0 -1 +3194 0 1 0.0000000000000000e+00 1.0540299074892724e+02 6.8310832540527588e+00 1.9591743631276991e+01 1 1 0 +3650 0 1 0.0000000000000000e+00 1.2604653970080902e+02 5.1063323035031702e+00 3.4225029318965007e+01 0 1 -1 +4030 0 1 0.0000000000000000e+00 1.0577037474372338e+02 2.0950641659838274e+00 3.2011301430803101e+01 0 1 0 +3844 0 1 0.0000000000000000e+00 1.2616879009426010e+02 1.3028243259593863e+01 3.1169142569694191e+01 -1 1 1 +4026 0 1 0.0000000000000000e+00 1.3176634619267443e+02 3.3782878773818403e+01 3.4189737862896066e+00 -1 -1 1 +369 0 1 0.0000000000000000e+00 1.3481969856729555e+02 6.3262648075436871e+00 4.0905232165121186e+00 -1 0 0 +3897 0 1 0.0000000000000000e+00 1.0604628776984289e+02 2.5521978895402522e+00 2.3623685043073809e+01 1 1 0 +3513 0 1 0.0000000000000000e+00 1.1630791682795486e+02 2.4006350327127572e+00 2.9720976776949467e+01 1 0 0 +3761 0 1 0.0000000000000000e+00 1.1445588430302881e+02 2.5166357550006677e+00 3.2883950465935371e+01 0 1 -1 +3470 0 1 0.0000000000000000e+00 1.2537147462488250e+02 7.0700775906107030e+00 2.5276972617194399e+01 0 0 0 +3265 0 1 0.0000000000000000e+00 1.0717423147521390e+02 1.3657840670851481e+01 2.1686548902294973e+01 1 -1 0 +4092 0 1 0.0000000000000000e+00 1.1388399492766528e+02 6.2485658114466425e+00 2.1968284536030392e+01 0 0 0 +3616 0 1 0.0000000000000000e+00 1.1433740574315479e+02 6.2712444109051662e+00 3.0971218695574848e+01 1 0 -1 +3341 0 1 0.0000000000000000e+00 1.3258641985921290e+02 1.2871833201234301e+01 3.3542620621702383e+01 -1 0 -1 +3191 0 1 0.0000000000000000e+00 1.2663465969665357e+02 1.6896031411117182e+01 5.4914490924245243e+00 0 -1 1 +3147 0 1 0.0000000000000000e+00 1.2300919337150941e+02 2.7513900598056531e+00 2.9257032624519084e+01 0 0 0 +3685 0 1 0.0000000000000000e+00 1.1996821481414571e+02 1.4480587677681216e+01 1.7669444740446380e+01 1 0 0 +3308 0 1 0.0000000000000000e+00 1.2857209232579353e+02 8.3349795308804726e+00 2.1859351666442173e+01 -1 0 0 +3321 0 1 0.0000000000000000e+00 1.2672114530550604e+02 1.8521843488285221e+00 2.8080903530143271e+01 0 0 0 +3361 0 1 0.0000000000000000e+00 1.2048110301892214e+02 1.5339336552684788e+01 1.3755839791650372e+01 0 0 1 +4059 0 1 0.0000000000000000e+00 1.2998427319273608e+02 4.0118159499485637e+00 2.2425857376886654e+01 0 1 0 +3395 0 1 0.0000000000000000e+00 1.3214231585217325e+02 3.3067753725416715e+01 2.6643198079732983e+01 0 -1 0 +3982 0 1 0.0000000000000000e+00 1.1599357814333032e+02 7.7951336383228642e-01 2.0461952376332864e+01 0 1 0 +4040 0 1 0.0000000000000000e+00 1.1011987129558726e+02 1.5429988448312496e+01 2.3141036112619187e+01 0 0 0 +3524 0 1 0.0000000000000000e+00 1.1275581057519103e+02 8.8246268371980694e+00 2.4943807128874411e+01 0 0 0 +3503 0 1 0.0000000000000000e+00 1.3707301007892769e+02 9.7531161602244936e+00 2.9893799414364079e+01 -1 0 0 +3704 0 1 0.0000000000000000e+00 1.2038790703256524e+02 1.8191295699374439e+01 2.5041208659372096e+01 -1 1 0 +3161 0 1 0.0000000000000000e+00 1.2271972103923939e+02 1.1992666401361426e+01 1.7459233289397467e+01 0 0 0 +3258 0 1 0.0000000000000000e+00 1.1234022644825114e+02 3.3481571228141460e+00 2.1504818097108480e+01 1 0 -1 +3544 0 1 0.0000000000000000e+00 1.1250065379346250e+02 1.6787869505711946e+01 2.1630762910547951e+01 0 0 0 +730 0 1 0.0000000000000000e+00 1.3749241914992311e+02 1.1926743450438567e+01 7.3020883504179128e+00 -1 0 0 +3152 0 1 0.0000000000000000e+00 1.3482018813114121e+02 9.6042354876920726e+00 3.4068388099684462e+01 -1 0 0 +3686 0 1 0.0000000000000000e+00 1.1575515960981113e+02 3.3792492931531307e+01 1.1506763361813608e+00 0 0 1 +3627 0 1 0.0000000000000000e+00 1.3129547050942523e+02 4.6281552121464414e-01 3.4277254725716823e+01 0 0 -1 +3317 0 1 0.0000000000000000e+00 1.1995334182883171e+02 3.2465966680530499e+01 3.0098199147616000e+01 0 0 0 +3134 0 1 0.0000000000000000e+00 1.0785051311788312e+02 1.7279186162576622e+01 2.1471916323796382e+01 0 0 0 +3719 0 1 0.0000000000000000e+00 1.1045831354645081e+02 2.1667385194584683e+00 2.7713712811435908e+01 0 1 -1 +3415 0 1 0.0000000000000000e+00 1.1280406184978119e+02 4.7207499275452198e+00 2.5509465362018961e+01 0 0 0 +3348 0 1 0.0000000000000000e+00 1.1747743332146418e+02 2.6043443370645356e+00 2.5977412341782781e+01 0 0 0 +3519 0 1 0.0000000000000000e+00 1.3608987400210981e+02 1.6288803186580711e+01 3.1987905014178086e+01 0 -1 0 +3967 0 1 0.0000000000000000e+00 1.1538474342507533e+02 2.6222147984386548e+00 2.3495402177537095e+01 0 1 0 +3141 0 1 0.0000000000000000e+00 1.2905320473715389e+02 3.3962106398308087e+01 2.7724575703406369e+01 1 -1 0 +3881 0 1 0.0000000000000000e+00 1.1636949783169270e+02 3.4526503831150187e+01 1.6885335819246677e+01 0 0 0 +3291 0 1 0.0000000000000000e+00 1.3106093140969912e+02 3.0386801013125790e+01 2.2364432249219963e+01 0 -1 0 +3170 0 1 0.0000000000000000e+00 1.2910725779818742e+02 1.7102556341596063e+01 2.2442885656087526e+01 0 0 0 +3660 0 1 0.0000000000000000e+00 1.1935441978071734e+02 1.5069542617349319e+01 3.0759810232272553e+01 1 0 0 +3917 0 1 0.0000000000000000e+00 1.2284861280565639e+02 6.1850643912870904e+00 2.2663682831385515e+01 -1 0 0 +3695 0 1 0.0000000000000000e+00 1.2263681104404344e+02 3.5958626636134849e+00 3.2931125911153302e+01 -1 1 0 +3278 0 1 0.0000000000000000e+00 1.3430335401187909e+02 9.5676053157721643e+00 2.5398844548964998e+01 -1 0 0 +3366 0 1 0.0000000000000000e+00 1.1869005185012108e+02 1.0921904828770478e-01 2.3813838514552280e+01 0 0 0 +3780 0 1 0.0000000000000000e+00 1.2389237073152755e+02 9.1201153727066391e+00 3.1293787031969281e+01 0 0 -1 +3119 0 1 0.0000000000000000e+00 1.3516765397052308e+02 2.2851681068802465e+00 3.0867919856924583e+01 -1 0 -1 +3822 0 1 0.0000000000000000e+00 1.1293579117488584e+02 1.8986584762344954e+01 1.5820679135105813e+01 0 1 0 +3234 0 1 0.0000000000000000e+00 1.2036833807871294e+02 7.6245107163523560e+00 3.2487685473686362e+01 0 0 0 +3861 0 1 0.0000000000000000e+00 1.3072137502194948e+02 8.4628684114504527e+00 1.5402929428482704e+01 0 0 0 +3431 0 1 0.0000000000000000e+00 1.2721651897854754e+02 2.0351189687949681e+01 3.1263252377476736e+01 0 0 0 +3318 0 1 0.0000000000000000e+00 1.0885106765347098e+02 5.8837234643771632e+00 2.0882326904232158e+01 0 0 0 +3669 0 1 0.0000000000000000e+00 1.1860504453006865e+02 3.1410864890017500e+01 2.1392522412807664e+00 1 0 0 +3948 0 1 0.0000000000000000e+00 1.3797453844910154e+02 1.4217695607800367e+01 2.9866470387010917e+01 0 0 0 +4022 0 1 0.0000000000000000e+00 1.0957003341078962e+02 1.1358302236939796e+01 1.8916497374741773e+01 0 1 0 +3237 0 1 0.0000000000000000e+00 1.2014355343424256e+02 7.4841101130239185e+00 2.1063045805374571e+01 0 1 -1 +3540 0 1 0.0000000000000000e+00 1.3163337018018601e+02 6.6114275074241853e+00 2.6336156123648475e+01 0 0 0 +3894 0 1 0.0000000000000000e+00 1.1401001792473639e+02 7.5360545978635400e+00 1.8471360101753852e+01 1 1 0 +2832 0 1 0.0000000000000000e+00 1.0746109334233422e+02 1.8074468726202170e+01 1.1965620965023364e+01 0 0 0 +4063 0 1 0.0000000000000000e+00 1.3571344266431956e+02 1.1320016034752495e+01 1.9903426963458976e+01 -1 1 0 +3207 0 1 0.0000000000000000e+00 1.1196662652267898e+02 1.3206053489972362e+01 2.1034547844253428e+01 1 0 -1 +3969 0 1 0.0000000000000000e+00 1.2805220015211478e+02 3.1840441083796406e-01 1.4230493830072554e+01 0 1 0 +3504 0 1 0.0000000000000000e+00 1.3627291461684911e+02 1.2304159721499438e+01 2.7092774128095879e+01 0 0 0 +4004 0 1 0.0000000000000000e+00 1.2980833001080046e+02 7.9628194083395716e+00 2.9834362179290721e+01 0 1 0 +3566 0 1 0.0000000000000000e+00 1.1050839006407108e+02 6.8528197844629668e+00 2.4336126628986701e+01 0 0 0 +3983 0 1 0.0000000000000000e+00 1.2683710118109215e+02 5.7428089853085913e+00 2.2744006567746158e+01 0 0 0 +3743 0 1 0.0000000000000000e+00 1.0846316365015925e+02 2.6581646477780104e+01 2.6192866593582181e+01 0 0 -1 +3379 0 1 0.0000000000000000e+00 1.2834733574742245e+02 9.0780680147512864e+00 2.6533015714756864e+01 0 0 0 +3792 0 1 0.0000000000000000e+00 1.3386791286805038e+02 8.2041561390176607e+00 2.8283489288019382e+01 0 1 -1 +3796 0 1 0.0000000000000000e+00 1.3097932139345997e+02 1.0416744821163210e+01 2.4491254107346737e+01 0 0 -1 +3747 0 1 0.0000000000000000e+00 1.1856155923799680e+02 1.0350594691264275e+01 2.3121796272480953e+01 0 0 0 +3346 0 1 0.0000000000000000e+00 1.2673687579548752e+02 9.8960446527336234e+00 1.8658194845421047e+01 0 0 0 +3426 0 1 0.0000000000000000e+00 1.1739538955615434e+02 4.2478788000216507e+00 2.0869501829875432e+01 1 0 0 +3806 0 1 0.0000000000000000e+00 1.1315027858573238e+02 2.8524073960893400e+01 1.7268983050882885e+00 1 0 0 +3591 0 1 0.0000000000000000e+00 1.0731707423295020e+02 1.2712896023016388e+01 2.5552835201652677e+01 1 1 0 +3385 0 1 0.0000000000000000e+00 1.3332369853678603e+02 1.3033057366969969e+01 2.5725023351141857e+01 0 0 0 +3701 0 1 0.0000000000000000e+00 1.0792343864568981e+02 1.2580249782135677e+01 2.9577568266725457e+01 1 0 -1 +3477 0 1 0.0000000000000000e+00 1.0557869210025947e+02 7.1601675203437400e+00 2.8008077649136489e+01 0 0 0 +3394 0 1 0.0000000000000000e+00 1.1186954161214797e+02 9.7918810584394134e+00 1.6811891638811112e+01 0 0 0 +3805 0 1 0.0000000000000000e+00 1.0928689491172723e+02 2.2999080500722728e+00 3.1514680030878900e+01 1 1 -1 +3444 0 1 0.0000000000000000e+00 1.1638447685888596e+02 9.1568093090737097e+00 2.6375714021479794e+01 0 0 0 +3284 0 1 0.0000000000000000e+00 1.3273048124664726e+02 1.4164125714091170e+01 1.8915946463061026e+01 0 0 -1 +3475 0 1 0.0000000000000000e+00 1.2992419212520818e+02 1.0997818911652960e+01 1.8911087395753515e+01 0 0 0 +3479 0 1 0.0000000000000000e+00 1.0788516245535786e+02 9.0126082403674364e+00 2.5489114303713336e+01 1 0 0 +3682 0 1 0.0000000000000000e+00 1.1440355628705602e+02 3.4090476535224298e+01 2.4907112795038412e+01 0 1 -1 +3151 0 1 0.0000000000000000e+00 1.1144143250145459e+02 1.2337859964940479e+01 4.6292156278126235e+00 0 0 0 +3180 0 1 0.0000000000000000e+00 1.1428967085094925e+02 3.1405589362969973e+01 2.8701658900885672e+01 -1 -1 -1 +3391 0 1 0.0000000000000000e+00 1.2841318351014405e+02 1.2367945884184392e+01 2.7242136104833804e+01 0 0 0 +3831 0 1 0.0000000000000000e+00 1.1991398686109605e+02 1.4056607367397489e+00 2.0624742790403293e+01 0 1 0 +3275 0 1 0.0000000000000000e+00 1.2185680983203781e+02 1.5159410010723084e+01 2.6422046475265450e+01 0 0 -1 +3516 0 1 0.0000000000000000e+00 1.1081258448094424e+02 6.4539003430444684e+00 3.2038532797514591e+01 0 0 0 +3762 0 1 0.0000000000000000e+00 1.2343494644582248e+02 3.9120703906816048e+00 1.5023671813724395e+00 0 0 0 +3214 0 1 0.0000000000000000e+00 1.2310863510834264e+02 5.9691193067056059e-01 3.9814988915420155e+00 -1 0 1 +3751 0 1 0.0000000000000000e+00 1.3355761864595891e+02 5.2357780202785484e+00 2.0855484102739283e+01 -1 1 1 +3952 0 1 0.0000000000000000e+00 1.2964659011873132e+02 3.9633841535172145e+00 2.8831306642948768e+01 0 0 0 +312 0 1 0.0000000000000000e+00 1.3523867110631187e+02 6.3718705169413079e+00 2.5098845350030768e+01 -1 1 1 +3908 0 1 0.0000000000000000e+00 1.1327851969917417e+02 4.8855524569116069e+00 4.1966295959914488e+00 0 1 1 +3965 0 1 0.0000000000000000e+00 1.1655078747460362e+02 3.1504185115241658e+01 2.5616147231154386e+01 0 0 0 +3172 0 1 0.0000000000000000e+00 1.1125254277698258e+02 1.3192182301013329e+01 2.9202879691933688e+01 0 0 0 +3400 0 1 0.0000000000000000e+00 1.2852211739375622e+02 1.1109888748142465e+01 1.4533228786286905e+01 -1 1 1 +3745 0 1 0.0000000000000000e+00 1.3067672173108676e+02 6.6197320341178614e+00 1.2190443352702347e+01 0 0 0 +3296 0 1 0.0000000000000000e+00 1.1699403547251265e+02 6.2539888467482898e+00 2.3669703022652399e+01 -1 0 -1 +2240 0 1 0.0000000000000000e+00 1.0601721390572138e+02 1.9877224125358602e+01 1.4446135186620603e+01 0 0 0 +3681 0 1 0.0000000000000000e+00 1.1244439996409676e+02 2.5306071259173106e-02 3.0615558117041111e+01 0 1 -1 +3975 0 1 0.0000000000000000e+00 1.1577163703638317e+02 7.4990601948059963e+00 1.1866206263046616e+01 0 1 0 +3492 0 1 0.0000000000000000e+00 1.3086788982865914e+02 1.5046866656371227e+01 1.0738377271254325e+00 1 0 1 +3124 0 1 0.0000000000000000e+00 1.1731050970892633e+02 8.4747135751991163e+00 3.0542176496716785e+01 0 0 0 +3210 0 1 0.0000000000000000e+00 1.3628505281419160e+02 2.8223468939258105e+01 9.7231846076411728e+00 0 -1 -1 +3417 0 1 0.0000000000000000e+00 1.2831689880450125e+02 1.2149349639670804e+01 3.3692549945977667e+01 0 0 0 +775 0 1 0.0000000000000000e+00 1.3463181466197423e+02 2.1727613704763504e+00 1.9146250094251201e+01 -1 1 0 +3823 0 1 0.0000000000000000e+00 1.0606541977690539e+02 2.1992948354986619e+00 2.8037954454451413e+01 0 1 0 +3793 0 1 0.0000000000000000e+00 1.2888979800731641e+02 5.8806336373706340e+00 3.2555090056092737e+01 0 0 -1 +3702 0 1 0.0000000000000000e+00 1.3080524462882286e+02 5.0979419850331755e+00 1.5947961223237906e+01 0 0 0 +3755 0 1 0.0000000000000000e+00 1.3349007946902418e+02 1.1011210495689790e+01 1.6861076335988308e+01 -1 0 0 +3583 0 1 0.0000000000000000e+00 1.1826600423687987e+02 2.1945045008937898e+00 3.4321025988048497e+01 0 1 -1 +3386 0 1 0.0000000000000000e+00 1.1317863181547905e+02 9.0741720593170960e-01 3.2692309362131278e+00 1 0 1 +3929 0 1 0.0000000000000000e+00 1.1503099371572240e+02 9.5640108530850529e+00 3.3564999368194748e+01 0 1 0 +3387 0 1 0.0000000000000000e+00 1.1528221506605274e+02 1.2641145683221355e+01 2.2489516545818070e+01 0 0 0 +3561 0 1 0.0000000000000000e+00 1.3827450739612513e+02 4.1482348718714528e+00 2.5285749670054241e+01 0 0 0 +3950 0 1 0.0000000000000000e+00 1.2987468032142539e+02 3.0482785704365618e+01 3.0279718726612201e+00 0 0 1 +3852 0 1 0.0000000000000000e+00 1.2749016724826652e+02 1.0529632916904914e+01 3.0123656895292360e+01 0 1 0 +3328 0 1 0.0000000000000000e+00 1.1176749461415473e+02 3.8038456377772096e+00 3.0080731107599330e+01 0 0 -1 +143 0 1 0.0000000000000000e+00 1.3699797737262207e+02 3.1665752375569298e+01 1.0843320902349992e+01 -1 -1 0 +4017 0 1 0.0000000000000000e+00 1.2891347223795358e+02 1.0809544679329679e+01 2.6148783101103512e+00 0 0 1 +3526 0 1 0.0000000000000000e+00 1.0783162754698994e+02 8.6466940210513723e+00 3.3914597716314383e+01 0 0 -1 +3594 0 1 0.0000000000000000e+00 1.2267969237845651e+02 1.2924718974358356e+01 3.3249365704578871e+01 0 0 0 +3422 0 1 0.0000000000000000e+00 1.1618551887237140e+02 1.2722380763045818e+01 3.1875065381448138e+01 1 1 0 +3874 0 1 0.0000000000000000e+00 1.1954929257916396e+02 3.9288020602622242e+00 2.3448117780954462e+01 -1 0 0 +3430 0 1 0.0000000000000000e+00 1.2240261468424630e+02 5.9290842894489035e+00 3.0503520864684447e+01 1 0 0 +3867 0 1 0.0000000000000000e+00 1.1201130512239871e+02 3.1283815547326967e+01 5.3992467631122776e-01 0 0 1 +3345 0 1 0.0000000000000000e+00 1.2585388177427062e+02 6.3864546743828665e+00 2.9478056639822061e+01 -1 0 0 +3248 0 1 0.0000000000000000e+00 1.2646461978277098e+02 2.4350812135219773e+00 2.1047644447470624e+01 0 0 0 +3981 0 1 0.0000000000000000e+00 1.1476517197566926e+02 1.4959806006209591e+01 2.8759133585331860e+01 0 0 0 +3949 0 1 0.0000000000000000e+00 1.3442767681868585e+02 3.4321836696431447e+01 2.4018437246107762e+01 0 0 1 +3869 0 1 0.0000000000000000e+00 1.1018458161849136e+02 6.6632269787044036e+00 2.7922544674332212e+01 0 1 0 +3464 0 1 0.0000000000000000e+00 1.2068782261682388e+02 8.9933282147489424e-01 3.1779310036832065e+01 0 0 0 +3364 0 1 0.0000000000000000e+00 1.1656773099205050e+02 3.0724046591138006e+01 3.3933233059006348e+01 0 0 0 +3244 0 1 0.0000000000000000e+00 1.3021611116442497e+02 1.4391253170553789e+01 2.4611713229803495e+01 0 0 -1 +3197 0 1 0.0000000000000000e+00 1.0507511870477371e+02 1.0614247879208357e+01 2.3680699858226664e+01 1 0 0 +3199 0 1 0.0000000000000000e+00 1.1874033621952728e+02 5.5784133860944323e+00 2.7900106049411590e+01 0 0 -1 +3402 0 1 0.0000000000000000e+00 1.1355614700537204e+02 1.6703714412739345e+01 1.8810215662704955e+01 0 0 0 +3520 0 1 0.0000000000000000e+00 1.1794496276978678e+02 1.1445373129034616e+01 2.8797812204517690e+01 0 0 0 +195 0 1 0.0000000000000000e+00 1.3715732776678237e+02 2.2697080194129837e+00 1.6129567738680013e+01 -1 0 0 +3640 0 1 0.0000000000000000e+00 1.1378440766469534e+02 3.2414715651504643e+01 3.2445924009128717e+01 0 0 -1 +3798 0 1 0.0000000000000000e+00 1.3095213606225704e+02 2.3413656073643376e+00 2.5862876080334345e+01 0 1 -1 +3163 0 1 0.0000000000000000e+00 1.0985945465000901e+02 1.5465234554273980e+01 1.9318835259082842e+01 1 0 0 +3098 0 1 0.0000000000000000e+00 1.0864997998671511e+02 3.3627042887800251e+01 2.9343612553883148e+01 0 0 -1 +250 0 1 0.0000000000000000e+00 1.3505273279133655e+02 1.0174696338259016e+01 4.0833719228910139e+00 -1 0 0 +3200 0 1 0.0000000000000000e+00 1.1641917403253871e+02 1.7342063937188541e+01 1.7471102547849167e+01 0 0 0 +3094 0 1 0.0000000000000000e+00 1.3283092090833281e+02 1.0544919914421421e+01 2.1784499510158195e+01 0 0 -1 +3683 0 1 0.0000000000000000e+00 1.3100832178765523e+02 3.3741457838087541e+01 2.3735077185135989e+01 0 0 -1 +3665 0 1 0.0000000000000000e+00 1.1975647800913303e+02 7.7434004494379520e+00 2.4996547112176035e+01 0 1 -1 +3885 0 1 0.0000000000000000e+00 1.0744564194276401e+02 9.2280334064849896e+00 2.1445512336358330e+01 0 1 0 +4093 0 1 0.0000000000000000e+00 1.1699866133725490e+02 8.3388762282257787e+00 2.0140343093878549e+01 0 0 0 +3946 0 1 0.0000000000000000e+00 1.1183700073418579e+02 9.5345769361846244e+00 3.4214758848988865e+01 0 1 0 +4018 0 1 0.0000000000000000e+00 1.1179402839332404e+02 1.3933138232547423e+01 1.6777600498722130e+01 0 0 0 +3288 0 1 0.0000000000000000e+00 1.1672247719178166e+02 1.6706695298400422e+01 2.4057056415858291e+01 0 0 0 +3439 0 1 0.0000000000000000e+00 1.1660945655197696e+02 3.4085325077056360e+01 3.2066678700577164e+01 0 -2 0 +3347 0 1 0.0000000000000000e+00 1.1768393365755597e+02 6.5391111383370921e+00 1.7211031579091873e+01 0 0 0 +3998 0 1 0.0000000000000000e+00 1.0850763935083475e+02 4.8418908810858250e+00 1.7010649534568913e+01 0 1 0 +4003 0 1 0.0000000000000000e+00 1.2564707600273550e+02 3.3639810961166077e+01 1.5902907053058833e+01 0 0 1 +154 0 1 0.0000000000000000e+00 1.3620507772677348e+02 2.9047254118296966e+01 1.8108046229583130e+00 0 0 0 +4062 0 1 0.0000000000000000e+00 1.3400163858245949e+02 3.3399424116594815e+01 1.3778395989579233e+01 -1 0 0 +3571 0 1 0.0000000000000000e+00 1.2505661450979360e+02 3.3678647472256960e+00 2.5646754681568616e+01 0 0 0 +3715 0 1 0.0000000000000000e+00 1.2344479099608127e+02 7.2903058898279960e-01 2.4141816298808696e+01 0 0 0 +3264 0 1 0.0000000000000000e+00 1.0947079845766302e+02 1.1373559651627142e+01 3.2051998187033220e+01 1 0 -1 +3539 0 1 0.0000000000000000e+00 1.3193291590466640e+02 8.2394639066536293e+00 1.8504155662802010e+01 0 0 0 +3830 0 1 0.0000000000000000e+00 1.2061659296631733e+02 3.3019521459111147e+01 2.6179262006790019e+01 0 -1 0 +3671 0 1 0.0000000000000000e+00 1.3378451482428974e+02 1.0103472865096821e+01 3.0963038383050154e+01 0 0 0 +3905 0 1 0.0000000000000000e+00 1.2890336893774281e+02 6.8293838024627007e-01 3.1242861910617822e+01 0 1 0 +3110 0 1 0.0000000000000000e+00 1.1381029399562220e+02 2.0092624944457036e+01 3.1525407157532456e+01 0 0 -1 +4034 0 1 0.0000000000000000e+00 1.3490182053437536e+02 2.3049454715238635e+01 3.0958474384995462e+01 0 0 0 +4087 0 1 0.0000000000000000e+00 1.2848089329796420e+02 5.3469368804991371e+00 2.5638391456757958e+01 -1 1 0 +3453 0 1 0.0000000000000000e+00 1.2204482551341768e+02 9.9394628114972612e+00 2.7213572692095178e-01 0 0 1 +3568 0 1 0.0000000000000000e+00 1.3746614126318278e+02 2.4334776233597751e+01 4.0838484060354032e+00 0 -1 1 +3672 0 1 0.0000000000000000e+00 1.0966197424735169e+02 1.0256801922301257e+01 2.7746045405400100e+01 0 0 0 +3329 0 1 0.0000000000000000e+00 1.2016232766116487e+02 3.0970381294187664e+01 3.3500879551472259e+01 -1 -1 -1 +4078 0 1 0.0000000000000000e+00 1.0511536250879719e+02 1.0431436603191500e+01 2.7645746778762934e+01 0 0 0 +3268 0 1 0.0000000000000000e+00 1.1328025954980991e+02 7.4687931421238032e+00 2.7968618405596526e+01 0 0 0 +3836 0 1 0.0000000000000000e+00 1.3729593024438387e+02 6.6459332779696103e+00 2.8209230788662580e+01 0 1 -1 +4037 0 1 0.0000000000000000e+00 1.2623753122590453e+02 3.5117305573082711e+00 3.1384804271186216e+01 0 1 0 +3312 0 1 0.0000000000000000e+00 1.3187624102571240e+02 2.0444776773755237e+01 2.3281063681068794e+01 -1 0 0 +3509 0 1 0.0000000000000000e+00 1.3141228808144848e+02 1.8987516240071802e+01 2.6411665813793208e+00 0 0 1 +3501 0 1 0.0000000000000000e+00 1.2228698684575038e+02 6.5801854915156088e+00 2.7229854102609362e+01 0 0 0 +73 0 1 0.0000000000000000e+00 1.3626351644748942e+02 1.5535738158810496e+01 2.6035843757931765e+01 -1 0 -1 +3691 0 1 0.0000000000000000e+00 1.3161026477416783e+02 1.0993831882272859e+01 2.8268786567069807e+01 0 0 -1 +3817 0 1 0.0000000000000000e+00 1.2492315007388005e+02 1.3595942015190715e+01 2.7222379303248889e+01 0 1 0 +3606 0 1 0.0000000000000000e+00 1.2394978947400671e+02 4.3180618119226279e+00 1.6549068104060527e+01 0 0 0 +3368 0 1 0.0000000000000000e+00 1.2860787113284880e+02 1.2240492049489266e+01 2.1564475858573516e+01 0 -1 0 +3555 0 1 0.0000000000000000e+00 1.0729209101214076e+02 8.6387127264747381e+00 3.0221775873181052e+01 0 0 -1 +3490 0 1 0.0000000000000000e+00 1.3320687217028831e+02 4.0046783311174288e+00 2.4214834607198704e+01 0 0 0 +3968 0 1 0.0000000000000000e+00 1.2850060740126986e+02 1.6423284241330244e+01 3.1932694411864961e+01 0 0 0 +3435 0 1 0.0000000000000000e+00 1.0909086616362457e+02 3.7970360639060949e+00 2.3466381144599950e+01 0 1 0 +3626 0 1 0.0000000000000000e+00 1.1395352457586228e+02 1.1057722529048482e+01 2.7975455698936074e+01 0 0 -1 +3740 0 1 0.0000000000000000e+00 1.2532801749465868e+02 1.1550321364902615e+01 1.0921992350123106e+00 -1 1 0 +3208 0 1 0.0000000000000000e+00 1.3238972946986991e+02 6.3916131118385042e+00 3.2645169798864167e+01 0 0 -1 +4085 0 1 0.0000000000000000e+00 1.0957798620482419e+02 1.5546830243065903e+01 2.7190958422760723e+01 1 0 0 +3973 0 1 0.0000000000000000e+00 1.3628441564799499e+02 6.7688606090151788e+00 3.1525409440806293e+01 0 1 0 +3936 0 1 0.0000000000000000e+00 1.2776014808111648e+02 2.2026271369871968e+00 3.4530290111277459e+01 0 1 0 +571 0 1 0.0000000000000000e+00 1.3714021655480758e+02 1.1444008875545132e+01 1.0903878666269480e+00 0 0 0 +3866 0 1 0.0000000000000000e+00 1.2297990813742737e+02 1.3354955166701284e+01 2.3483096154713440e+01 0 1 1 +3314 0 1 0.0000000000000000e+00 1.2926873459426454e+02 3.9833107340766061e-01 2.0841636079990089e+01 0 0 0 +3833 0 1 0.0000000000000000e+00 1.2101926878891210e+02 1.4697608040269762e+01 9.6886154636915354e+00 0 0 0 +637 0 1 0.0000000000000000e+00 1.3377568274477159e+02 9.6341137620655743e+00 1.0865704868106224e+01 -1 0 0 +3229 0 1 0.0000000000000000e+00 1.2124307941048409e+02 2.5358150921222307e+00 1.4717863695199664e+01 0 0 0 +3405 0 1 0.0000000000000000e+00 1.2365280222229420e+02 3.7088952804439539e+00 1.1395946163141838e+01 0 0 1 +3776 0 1 0.0000000000000000e+00 1.2041826803276039e+02 6.2555813538956215e+00 1.5688580476221365e+01 -1 1 0 +4015 0 1 0.0000000000000000e+00 1.0834125056312747e+02 4.8268359597062034e+00 1.3011984223782751e+01 0 1 0 +3634 0 1 0.0000000000000000e+00 1.1749863696050561e+02 9.4409103531782730e+00 7.5677978978741995e+00 1 0 0 +3842 0 1 0.0000000000000000e+00 1.1668857896512144e+02 4.1804517357078756e+00 2.3818144434625759e+00 0 0 1 +3083 0 1 0.0000000000000000e+00 1.3621626322292110e+02 1.3969480946435183e+01 1.6745919240647936e+01 0 0 -1 +4045 0 1 0.0000000000000000e+00 1.1817136608503131e+02 6.8587654503377449e+00 9.6529817148736239e+00 0 0 1 +3169 0 1 0.0000000000000000e+00 1.1960263582518175e+02 3.8582003010860859e+00 1.1606413656623454e+01 0 0 0 +3487 0 1 0.0000000000000000e+00 1.2630981454767402e+02 1.8935159547652773e+00 2.9403262817504370e+00 0 0 1 +3398 0 1 0.0000000000000000e+00 1.2406787055139814e+02 3.6693945553925816e-01 3.4481454224423551e+01 0 0 0 +170 0 1 0.0000000000000000e+00 1.3599145839220270e+02 3.1640923349217214e+01 2.5591746375068976e+01 -1 0 -1 +3637 0 1 0.0000000000000000e+00 1.0560038579002327e+02 3.2453848079413284e+01 2.2884871616640563e+01 1 0 -1 +4046 0 1 0.0000000000000000e+00 1.1700713852369572e+02 1.3558694932993188e+01 1.2186856048081944e+00 0 1 1 +3243 0 1 0.0000000000000000e+00 1.2294549645990375e+02 6.7541712824789810e+00 3.4254320298041002e+01 0 0 -1 +3703 0 1 0.0000000000000000e+00 1.0749096374653388e+02 1.3151435778312999e+01 1.7755072131989056e+01 1 0 0 +3610 0 1 0.0000000000000000e+00 1.3343311868209096e+02 1.1966713547920609e+01 8.1511298296101256e+00 0 0 0 +3791 0 1 0.0000000000000000e+00 1.2824770030028884e+02 4.1320915379766392e+00 1.4158627092615770e+01 0 0 0 +3574 0 1 0.0000000000000000e+00 1.2169349150501736e+02 9.6322265790327517e+00 1.4399692827725763e+01 0 0 1 +135 0 1 0.0000000000000000e+00 1.3546191717724025e+02 1.3952272952305423e+01 2.2836969532425478e+01 0 0 -1 +3122 0 1 0.0000000000000000e+00 1.1079528086600564e+02 1.5973585670935257e+01 3.5205886770276100e+00 0 0 0 +3298 0 1 0.0000000000000000e+00 1.2693721648841910e+02 1.3242438336109517e+01 1.7214597964237146e+01 0 0 0 +3935 0 1 0.0000000000000000e+00 1.2820885087159758e+02 1.1044341399809712e+00 5.4792112571661473e+00 0 1 1 +3165 0 1 0.0000000000000000e+00 1.0946334644787322e+02 1.0330008407624149e+01 2.3068511231462061e+00 0 0 0 +3419 0 1 0.0000000000000000e+00 1.2666744940850099e+02 1.2230172639443307e+01 1.0669975789274902e+01 -1 0 0 +3771 0 1 0.0000000000000000e+00 1.3059775871088169e+02 9.6549715189653291e+00 3.3224132665986865e+01 -1 1 -1 +4076 0 1 0.0000000000000000e+00 1.1916385244683769e+02 1.0304753340351947e+01 1.0685149836311576e+01 0 0 0 +3978 0 1 0.0000000000000000e+00 1.2441828173436907e+02 8.0835622234030655e+00 5.5282756715437378e+00 0 0 0 +3460 0 1 0.0000000000000000e+00 1.1298233645557642e+02 5.9217119753699823e+00 9.7356231441328447e+00 0 0 0 +3789 0 1 0.0000000000000000e+00 1.1763814704399984e+02 1.6767071136956343e+01 1.0632862069312997e+01 0 0 0 +3742 0 1 0.0000000000000000e+00 1.1468198519879363e+02 1.3746886237162432e+01 1.1657810597341488e+01 0 0 0 +14 0 1 0.0000000000000000e+00 1.3717854918787057e+02 2.5567891210989490e+01 4.9525438499686369e-01 0 -1 0 +3186 0 1 0.0000000000000000e+00 1.2915813608538329e+02 3.3041430993386747e+01 1.3466654084648011e+00 -1 -1 0 +3890 0 1 0.0000000000000000e+00 1.2392114217318715e+02 1.5580034189406296e+01 1.2394982446162951e+01 -1 0 1 +3730 0 1 0.0000000000000000e+00 1.1620604620408987e+02 1.3944078332577909e+01 1.6146887619298969e+01 0 0 0 +3673 0 1 0.0000000000000000e+00 1.3714271399325096e+02 1.6074433813244809e+01 2.7647115119000900e+00 0 1 0 +4051 0 1 0.0000000000000000e+00 1.1523695628284518e+02 5.5108545921427501e+00 1.5192329777700477e+01 0 0 0 +3178 0 1 0.0000000000000000e+00 1.1343169030574806e+02 6.3296437917121402e+00 1.3480999071877678e-01 0 0 0 +4048 0 1 0.0000000000000000e+00 1.1114786017343273e+02 4.1548777858526353e+00 6.9967511861060316e+00 0 1 0 +3078 0 1 0.0000000000000000e+00 1.3754424459886792e+02 9.1569305825544145e+00 1.3964184822452900e+01 -1 0 -1 +3108 0 1 0.0000000000000000e+00 1.1286890493833826e+02 3.0876988670945561e+01 8.9267246820312813e+00 0 -1 0 +3106 0 1 0.0000000000000000e+00 1.3121382622461562e+02 4.4324661048806391e+00 7.5443376297634113e-01 0 0 0 +3775 0 1 0.0000000000000000e+00 1.2648719968005089e+02 1.0062634629534324e+01 7.7570852186625316e+00 0 1 0 +3102 0 1 0.0000000000000000e+00 1.1230068525607007e+02 8.4748130176349559e+00 3.7046647821945058e+00 1 0 0 +3657 0 1 0.0000000000000000e+00 1.1153141903557903e+02 3.4569391850976452e+01 8.6498410981641509e+00 0 0 0 +480 0 1 0.0000000000000000e+00 1.3358144801729688e+02 1.3769557559918251e+01 1.1180142761346445e+01 0 0 1 +3252 0 1 0.0000000000000000e+00 1.2739420949729285e+02 3.2744549843017523e+01 9.4441558180709588e+00 0 -1 0 +3896 0 1 0.0000000000000000e+00 1.1187481678024224e+02 1.7135601972810811e+01 6.8099869773911967e+00 0 0 1 +3457 0 1 0.0000000000000000e+00 1.2318653472602021e+02 3.0420860742256162e+00 2.1957256660376483e+01 0 0 1 +3815 0 1 0.0000000000000000e+00 1.3704492161809335e+02 8.0520953941937048e+00 1.7821547284763664e+01 -1 0 0 +4042 0 1 0.0000000000000000e+00 1.1933132861129185e+02 1.2441924385672761e+01 1.5294565019140087e+01 0 1 0 +3139 0 1 0.0000000000000000e+00 1.2793729444642466e+02 7.4117327920260410e+00 8.2076946438201848e+00 0 0 0 +3320 0 1 0.0000000000000000e+00 1.2095530976083927e+02 2.2044830928609421e-01 1.7206032820794263e+01 1 1 0 +3285 0 1 0.0000000000000000e+00 1.2701038425743245e+02 1.9221655352774111e+01 8.0645584931384047e+00 0 0 0 +3924 0 1 0.0000000000000000e+00 1.1349708686015903e+02 1.4776819367209642e+01 1.5822352055739524e+00 1 0 0 +3888 0 1 0.0000000000000000e+00 1.3566296756696366e+02 1.5512744989800320e+01 1.3238349279478625e+01 0 0 0 +3302 0 1 0.0000000000000000e+00 1.1035992563991849e+02 3.2727003725373095e+01 1.1156771238775645e+01 1 -1 0 +3907 0 1 0.0000000000000000e+00 1.1883064244856733e+02 2.0107927852611425e+01 1.8905921141526065e+01 0 0 0 +3280 0 1 0.0000000000000000e+00 1.3086770498095495e+02 9.5514484737007113e+00 8.5478907914636366e+00 -1 0 0 +3614 0 1 0.0000000000000000e+00 1.2880943833629121e+02 9.3846828159340010e+00 1.1203493383665201e+01 -1 0 0 +3077 0 1 0.0000000000000000e+00 1.3418297412663193e+02 5.7324903790071966e+00 1.2064530640429711e+01 0 0 0 +3916 0 1 0.0000000000000000e+00 1.2035860108470690e+02 2.3003322163028734e+00 3.7246072104164334e+00 0 0 1 +3611 0 1 0.0000000000000000e+00 1.0540238041412717e+02 2.7528811941188721e+01 1.9221326266151127e+01 0 0 0 +3331 0 1 0.0000000000000000e+00 1.2532039151144868e+02 9.4476994982068199e+00 1.1796088745894819e+01 0 0 0 +3636 0 1 0.0000000000000000e+00 1.2185951927537859e+02 1.8283073226862896e+01 1.0356431126770628e+01 0 0 0 +3370 0 1 0.0000000000000000e+00 1.0990755880281016e+02 6.4630336805904163e+00 1.8768052736363581e+00 0 0 0 +3393 0 1 0.0000000000000000e+00 1.2942445439375626e+02 2.9665110689776713e+00 2.5529393546998285e+00 0 0 1 +3598 0 1 0.0000000000000000e+00 1.0841127504214195e+02 9.0786185451806638e+00 8.7294226223286824e+00 1 0 0 +3294 0 1 0.0000000000000000e+00 1.0751325670019155e+02 4.4009973758362264e+00 2.3455582326369620e-01 1 0 0 +3731 0 1 0.0000000000000000e+00 1.1009329027392222e+02 1.5232913134731081e+01 1.0289978675223914e+01 0 0 0 +3103 0 1 0.0000000000000000e+00 1.0804623265969620e+02 5.4890388356920443e+00 8.6528750198766264e+00 0 0 0 +3774 0 1 0.0000000000000000e+00 1.2748566530439858e+02 3.1791153082948888e+01 1.2715415534747697e+01 0 0 1 +3412 0 1 0.0000000000000000e+00 1.0595231646044500e+02 1.1431466474399521e+01 1.4563041178607941e+01 0 0 1 +3338 0 1 0.0000000000000000e+00 1.1834818260864671e+02 1.3846801710083936e+01 1.1478584584366674e+01 1 0 0 +3707 0 1 0.0000000000000000e+00 1.1590882686951939e+02 1.0146129579176550e+01 1.6571715890447770e+01 1 0 0 +4083 0 1 0.0000000000000000e+00 1.1440287191415338e+02 1.1381519886480323e+01 2.0542445677207875e+00 0 0 0 +3344 0 1 0.0000000000000000e+00 1.1209511813830599e+02 9.2161356211617473e+00 3.0447603366521484e+01 1 0 0 +3596 0 1 0.0000000000000000e+00 1.3785060231765013e+02 2.8559888630381970e+01 2.5340071644398336e+01 -1 0 0 +4056 0 1 0.0000000000000000e+00 1.3749170884395849e+02 5.8293492530748878e+00 1.4919736373262381e+01 -1 1 0 +355 0 1 0.0000000000000000e+00 1.3688867377175595e+02 3.1666234165174746e+01 4.2443144488909068e+00 -1 0 1 +3886 0 1 0.0000000000000000e+00 1.0944616153015147e+02 7.9543456314600434e+00 1.7939362294586690e+01 1 1 0 +3249 0 1 0.0000000000000000e+00 1.1610647110187719e+02 3.6161134802469204e+00 1.1498778028211879e+01 0 1 0 +3216 0 1 0.0000000000000000e+00 1.1834968735322367e+02 2.7137820668233914e+00 1.7753594224255842e+01 0 0 -1 +3217 0 1 0.0000000000000000e+00 1.1010882686012933e+02 1.2534350514263355e+00 5.4331422154651943e+00 0 -1 0 +3639 0 1 0.0000000000000000e+00 1.0980902396064867e+02 3.3168779004963852e+01 3.2956759569011432e+01 0 -1 -1 +3814 0 1 0.0000000000000000e+00 1.3301566899108613e+02 3.3807040005632345e+00 3.3176357289616596e+00 0 1 0 +3459 0 1 0.0000000000000000e+00 1.0600940751877565e+02 6.8682907842212426e+00 2.5157075204065671e+00 0 0 0 +3552 0 1 0.0000000000000000e+00 1.0548749358525393e+02 7.2402043925242703e+00 6.6552687684979661e+00 1 0 1 +3565 0 1 0.0000000000000000e+00 1.2098944403910242e+02 8.1144565294702637e+00 6.5062390609628187e+00 0 0 1 +3961 0 1 0.0000000000000000e+00 1.1287897947604704e+02 1.8997686522916183e+01 3.5544893345006852e+00 0 0 0 +3772 0 1 0.0000000000000000e+00 1.0879037121858039e+02 7.3733391240949340e+00 5.4612678363404124e+00 0 1 0 +3117 0 1 0.0000000000000000e+00 1.2257026867110555e+02 1.0451520360459050e+01 8.6081649815841779e+00 0 0 0 +3497 0 1 0.0000000000000000e+00 1.3225262047156909e+02 1.1156287018205528e+01 2.1296754562339357e+00 -1 0 0 +3891 0 1 0.0000000000000000e+00 1.1636728865659816e+02 1.2445761935130857e+01 9.1161171141752195e+00 1 0 0 +2769 0 1 0.0000000000000000e+00 1.0614859716685893e+02 2.3819540013695892e+01 1.4430398165589255e+01 -1 0 0 +3820 0 1 0.0000000000000000e+00 1.2630160498067808e+02 1.1155815593725620e+01 4.3063874327493510e+00 0 1 0 +3355 0 1 0.0000000000000000e+00 1.3020067514003964e+02 5.2169883173001459e+00 9.4176818312249875e+00 -1 0 1 +3323 0 1 0.0000000000000000e+00 1.1111701775461552e+02 6.7298684803845505e+00 1.4996864986175751e+01 1 0 0 +3287 0 1 0.0000000000000000e+00 1.1229009357212158e+02 1.7887496660090651e+01 2.0823885998072408e-01 0 0 0 +3149 0 1 0.0000000000000000e+00 1.3150354744018316e+02 1.6787710209639737e+01 1.6904119957191750e+01 1 -1 0 +705 0 1 0.0000000000000000e+00 1.3584982610817667e+02 1.9643884353775999e+01 1.7022210254008461e+00 0 0 1 +3714 0 1 0.0000000000000000e+00 1.3330001202483390e+02 2.9668480461158326e+00 9.3849161771635945e+00 0 1 0 +3752 0 1 0.0000000000000000e+00 1.3105732806967936e+02 2.2118336753607295e+01 2.8999475668186152e+00 -1 1 0 +4025 0 1 0.0000000000000000e+00 1.1010406983613247e+02 3.0427569254457327e+00 1.0106771208373678e+01 0 0 1 +3893 0 1 0.0000000000000000e+00 1.2874499480011451e+02 3.3590071882028610e+01 1.7921326871960055e+01 0 -1 0 +3432 0 1 0.0000000000000000e+00 1.3099542614937249e+02 1.2843559081988472e+01 5.1100651649758904e+00 -1 0 1 +3797 0 1 0.0000000000000000e+00 1.3480935845228242e+02 8.7359773772920057e+00 6.9293996220563949e+00 -1 1 0 +422 0 1 0.0000000000000000e+00 1.3382156759985631e+02 1.7066927611012790e+01 1.0306656046918000e+01 -1 0 0 +4019 0 1 0.0000000000000000e+00 1.1349826829801668e+02 9.2311726371387088e+00 1.3462307285153289e+01 0 1 0 +3803 0 1 0.0000000000000000e+00 1.2787768747580169e+02 1.7288021246548386e+01 1.3124777128047789e+00 0 1 0 +3101 0 1 0.0000000000000000e+00 1.1357006577047163e+02 1.2239822049850702e+01 1.4943929820530364e+01 1 0 0 +3587 0 1 0.0000000000000000e+00 1.3693435647774916e+02 7.3383908683950683e-01 9.3870704597320582e+00 -1 1 0 +3911 0 1 0.0000000000000000e+00 1.1967245786373516e+02 9.5098720723409329e+00 1.7743989287534401e+01 0 1 0 +4058 0 1 0.0000000000000000e+00 1.2824078307539170e+02 8.5160809054515276e+00 4.7740280774220523e+00 0 1 0 +3883 0 1 0.0000000000000000e+00 1.2042250283783798e+02 1.3921050746494734e+00 7.2173051520197768e+00 0 0 0 +3698 0 1 0.0000000000000000e+00 1.2478404233099801e+02 5.1070720127929121e+00 1.9744377138132691e+01 0 1 0 +3937 0 1 0.0000000000000000e+00 1.2762438889452667e+02 1.3418639013563316e+01 6.9005040428875182e+00 0 1 1 +3413 0 1 0.0000000000000000e+00 1.1444732082190316e+02 2.0803495748503384e+01 1.8434062094574745e+01 0 0 0 +3380 0 1 0.0000000000000000e+00 1.3557931096459708e+02 2.1606908470250032e+00 2.6847620078065784e+01 0 0 0 +3661 0 1 0.0000000000000000e+00 1.2845843597450516e+02 1.5937142402727359e+01 2.7899325324130082e+01 0 0 0 +3638 0 1 0.0000000000000000e+00 1.3542347245180974e+02 2.4007084580794771e+01 9.8621944953796135e+00 -1 0 0 +4000 0 1 0.0000000000000000e+00 1.2995482403505221e+02 1.6602773138039158e+01 5.2458748447176777e+00 0 0 1 +3515 0 1 0.0000000000000000e+00 1.3524158349693894e+02 2.8985761877663716e+00 6.4062044412302699e+00 0 0 1 +4053 0 1 0.0000000000000000e+00 1.1836117921982336e+02 7.7814484396779733e+00 1.3656093677922305e+01 0 0 1 +3166 0 1 0.0000000000000000e+00 1.2014984326639301e+02 5.1049126442132584e+00 4.7010203181149857e-01 0 0 0 +3783 0 1 0.0000000000000000e+00 1.1174691724791003e+02 1.1224886391578700e+01 8.1492383729872078e+00 1 1 0 +3224 0 1 0.0000000000000000e+00 1.3524253336730712e+02 1.1925721963800115e+01 1.4048732501883459e+01 -1 0 0 +3947 0 1 0.0000000000000000e+00 1.2740552595108603e+02 2.9744374613758930e+00 1.7335643770723088e+01 0 1 1 +3455 0 1 0.0000000000000000e+00 1.3220669012421371e+02 1.4978581632579015e+01 7.2736665499799447e+00 0 0 1 +3414 0 1 0.0000000000000000e+00 1.3679023951697511e+02 1.2213335733052485e+01 3.2539459476282211e+01 -1 0 0 +3956 0 1 0.0000000000000000e+00 1.1475951046261054e+02 3.2851912562436240e+01 1.1191649426767031e+01 0 -1 0 +3241 0 1 0.0000000000000000e+00 1.2012432668396627e+02 1.2629999349704558e+01 6.7056187069511477e+00 1 0 0 +3726 0 1 0.0000000000000000e+00 1.2910516339507294e+02 6.1108688970250808e+00 1.9125301800471789e+01 0 1 0 +3484 0 1 0.0000000000000000e+00 1.3493146739160588e+02 1.3259845539371980e+01 5.0114773419611360e+00 0 -1 1 +605 0 1 0.0000000000000000e+00 1.3504418862095301e+02 3.3029278634596537e+01 1.7209084507680299e+01 0 -1 0 +3436 0 1 0.0000000000000000e+00 1.1127526900144234e+02 8.3672119530305782e+00 2.0636666237281840e+01 -1 0 0 +3411 0 1 0.0000000000000000e+00 1.3291119763710361e+02 6.2218690663957723e+00 7.7765731890549192e+00 0 0 0 +3326 0 1 0.0000000000000000e+00 1.2413326427559696e+02 1.3548763912521638e+01 6.8159744314802477e+00 1 -1 1 +4075 0 1 0.0000000000000000e+00 1.3187660952815463e+02 8.9824343576858574e+00 5.2754809231511919e+00 0 1 1 +3168 0 1 0.0000000000000000e+00 1.3748828360268163e+02 6.2871897258978322e+00 8.1178279517288647e+00 0 0 0 +3189 0 1 0.0000000000000000e+00 1.2105426881228590e+02 4.6628625007380746e+00 8.4212740090326310e+00 0 0 0 +3556 0 1 0.0000000000000000e+00 1.1479069553342678e+02 5.6089275452873073e+00 7.4649891268614574e+00 0 1 1 +3376 0 1 0.0000000000000000e+00 1.2456125376437475e+02 3.0465467709312023e+01 1.2717657567845524e+01 0 -1 0 +3663 0 1 0.0000000000000000e+00 1.0755745916352460e+02 1.2714930635945093e+01 9.1029355907688281e+00 0 1 0 +3958 0 1 0.0000000000000000e+00 1.3492938552716214e+02 1.3758236382269358e+01 1.6226999157795994e+00 0 1 1 +3835 0 1 0.0000000000000000e+00 1.2975467788420028e+02 1.8996886595557289e+01 3.3919998275816965e+01 0 1 -1 +3970 0 1 0.0000000000000000e+00 1.1527583714513896e+02 2.6131386572091976e+01 4.1530739575509781e+00 0 0 0 +3088 0 1 0.0000000000000000e+00 1.1437215473282660e+02 1.5094204181812044e+01 4.9600513743689438e+00 0 0 0 +316 0 1 0.0000000000000000e+00 1.3563136139236039e+02 1.7007982088721967e+01 5.9315188311828999e+00 -1 0 1 +3433 0 1 0.0000000000000000e+00 1.2204807350552716e+02 1.2435917739540384e+01 1.2618621000809352e+01 0 0 0 +3340 0 1 0.0000000000000000e+00 1.2486409364937563e+02 9.6744270355018624e+00 2.7707874771773316e+01 -1 1 0 +3353 0 1 0.0000000000000000e+00 1.1322056941759165e+02 1.4121584297775254e+01 8.3544151665286872e+00 0 0 1 +3722 0 1 0.0000000000000000e+00 1.3207902746287050e+02 7.6063616679779624e+00 2.3085157524991597e+00 -1 1 0 +3496 0 1 0.0000000000000000e+00 1.2385012790896425e+02 7.1015861571560404e+00 9.1315750817121817e+00 -1 0 1 +3603 0 1 0.0000000000000000e+00 1.2206076061056220e+02 6.1343586680528894e-01 1.1445669123129457e+01 0 0 0 +4036 0 1 0.0000000000000000e+00 1.1669016020032193e+02 3.4378004995335949e+01 8.2501584359008895e+00 0 -1 0 +3510 0 1 0.0000000000000000e+00 1.1752488015304105e+02 3.1986021283387909e+00 8.5814306871883410e+00 1 0 0 +3862 0 1 0.0000000000000000e+00 1.2030909575104334e+02 8.1613591669830132e+00 2.6435415631219641e+00 0 1 1 +3768 0 1 0.0000000000000000e+00 1.3091482427690099e+02 3.0524205893981242e+00 1.9158518678650150e+01 -1 0 0 +3372 0 1 0.0000000000000000e+00 1.3289338714088498e+02 1.2206163618146002e+00 2.1709966634043479e+01 -1 0 0 +3569 0 1 0.0000000000000000e+00 1.0524423600358486e+02 1.5095978980364345e+01 1.0840054509325920e+01 0 -1 1 +2673 0 1 0.0000000000000000e+00 1.0417102472492576e+02 3.0433481526306757e+01 1.2645446266459590e+01 -1 0 0 +3262 0 1 0.0000000000000000e+00 1.1032945442612485e+02 7.9417015010529521e+00 1.1158294557076767e+01 1 1 0 +653 0 1 0.0000000000000000e+00 1.3536647676240869e+02 1.7853774351335616e+00 1.2655636809811742e+01 -1 1 -1 +3115 0 1 0.0000000000000000e+00 1.2781074938803717e+02 1.8204833646521625e+01 1.1604555668574811e+01 0 -1 0 +3784 0 1 0.0000000000000000e+00 1.1450477962375145e+02 1.6714652932488040e+01 1.3961535968121050e+01 1 0 0 +3333 0 1 0.0000000000000000e+00 1.2765419976485228e+02 1.4393779123959748e+01 2.6692469683680553e+00 1 0 1 +4065 0 1 0.0000000000000000e+00 1.1452975274522711e+02 1.1479052780297797e+01 6.2543665269202560e+00 0 0 0 +3351 0 1 0.0000000000000000e+00 1.3402055184087459e+02 8.3991349086340357e+00 1.4789885955707181e+01 0 0 0 +3647 0 1 0.0000000000000000e+00 1.3264677950789681e+02 2.3585459547687253e+00 1.5094690685535147e+01 0 1 0 +4077 0 1 0.0000000000000000e+00 1.3194558823313574e+02 1.3879234713390407e+01 2.2113389540438103e+01 0 1 0 +3581 0 1 0.0000000000000000e+00 1.1778088957253446e+02 1.7191465548272582e+01 1.3932836588062164e+01 0 0 -1 +3592 0 1 0.0000000000000000e+00 1.0786608810866932e+02 3.3130708384866161e+01 7.2221421299501749e+00 0 0 0 +3601 0 1 0.0000000000000000e+00 1.2751381187558242e+02 3.7414750919542015e+00 7.2860449713601056e+00 0 1 0 +3233 0 1 0.0000000000000000e+00 1.2494464070452099e+02 8.2734581926623783e+00 2.2630145076872550e+00 0 0 0 +3841 0 1 0.0000000000000000e+00 1.1275745256431895e+02 1.3065588092085882e+01 3.3122077887882156e+01 0 0 0 +3899 0 1 0.0000000000000000e+00 1.0732763503981963e+02 1.8003755628266696e+01 1.7544077542857366e+01 0 1 0 +3737 0 1 0.0000000000000000e+00 1.1725485904541382e+02 1.3276376975195971e+01 5.1388352040628149e+00 0 0 0 +3629 0 1 0.0000000000000000e+00 1.1433863707328015e+02 9.4314851643283770e+00 9.9277710904507614e+00 0 0 0 +3804 0 1 0.0000000000000000e+00 1.2837896448434333e+02 7.1226548439658606e+00 1.5420139180324703e+00 0 0 0 +3557 0 1 0.0000000000000000e+00 1.0982802017888164e+02 2.5823591087478546e+00 2.5712173155248124e+00 0 0 0 +3554 0 1 0.0000000000000000e+00 1.2648676130125328e+02 6.5079234015364475e+00 1.6448477914319884e+01 0 0 1 +3713 0 1 0.0000000000000000e+00 1.2112640184390438e+02 7.1834633907795755e+00 1.0993282315189562e+01 0 0 0 +3184 0 1 0.0000000000000000e+00 1.1519561430053599e+02 8.1887549907777100e+00 4.8166213231759754e+00 0 0 0 +3474 0 1 0.0000000000000000e+00 1.3683180514484388e+02 8.7243079326983750e+00 1.0532853740991955e+01 0 0 0 +3649 0 1 0.0000000000000000e+00 1.0676218052113737e+02 8.9420849295068674e+00 1.6775432796071193e+01 0 0 0 +3607 0 1 0.0000000000000000e+00 1.1063029667397387e+02 1.1727195509014013e+01 1.1816924507799609e+01 0 1 0 +3188 0 1 0.0000000000000000e+00 1.2441392928047087e+02 8.7010465630435867e+00 2.0985788505659997e+01 0 0 0 +3889 0 1 0.0000000000000000e+00 1.1455885023371968e+02 3.1726921480059026e+01 3.5057170428673903e+00 0 0 1 +3838 0 1 0.0000000000000000e+00 1.2471244441805320e+02 1.8307959444497219e+00 8.5861173335713943e+00 0 1 0 +3093 0 1 0.0000000000000000e+00 1.1135640838840315e+02 3.3939311758426753e+00 3.3999505873558192e+01 0 1 -1 +3482 0 1 0.0000000000000000e+00 1.1192583289381302e+02 7.9906387876262839e+00 7.0194423337708480e+00 -1 0 1 +3091 0 1 0.0000000000000000e+00 1.0663244118343212e+02 1.0467608279840917e+01 1.1075196744388730e+01 0 0 0 +3483 0 1 0.0000000000000000e+00 1.2409368916800945e+02 1.9551649559755244e+01 1.2472934478308220e+01 0 0 1 +3081 0 1 0.0000000000000000e+00 1.0581896254796813e+02 1.5479825879111372e+01 3.1854418941861628e+01 1 0 -1 +3187 0 1 0.0000000000000000e+00 1.2685389114816135e+02 5.3480843175570723e+00 1.1309261841227599e+01 0 0 0 +3799 0 1 0.0000000000000000e+00 1.2199184761308319e+02 5.3824910066371743e+00 4.3176911390027959e+00 -1 1 0 +3322 0 1 0.0000000000000000e+00 1.0810596820340905e+02 1.4078212362404930e+01 1.2654274934332994e+01 0 0 0 +3655 0 1 0.0000000000000000e+00 1.0586858324758023e+02 3.2933002388506395e+01 1.4942777055942088e+01 1 0 0 +3662 0 1 0.0000000000000000e+00 1.3236277866060666e+02 3.2857082680796616e+01 1.9583462671495173e+01 0 0 1 +3986 0 1 0.0000000000000000e+00 1.1386653236194775e+02 2.4112894047118072e+01 2.8899336355224122e+01 1 -1 0 +3819 0 1 0.0000000000000000e+00 1.2365200273387394e+02 6.5818288895095893e+00 1.3261839666977574e+01 0 1 0 +3997 0 1 0.0000000000000000e+00 1.2690884823974810e+02 9.1831048950405290e+00 3.3186362272142681e+01 0 0 0 +3183 0 1 0.0000000000000000e+00 1.0490184944920604e+02 1.6809201071269142e+00 6.9005392227576694e+00 0 0 0 +3306 0 1 0.0000000000000000e+00 1.1821467702169988e+02 3.8828741974072982e+00 1.4445955519832873e+01 0 0 -1 +3560 0 1 0.0000000000000000e+00 1.3719487519284522e+02 2.8943675560963134e+00 2.9923366623681247e+00 -1 0 1 +3085 0 1 0.0000000000000000e+00 1.0952704561721279e+02 1.1575779269066697e+01 1.4981031097336897e+01 0 0 0 +3635 0 1 0.0000000000000000e+00 1.1703068467187292e+02 1.8584484674792587e+00 4.3388748290794448e+00 0 0 0 +3697 0 1 0.0000000000000000e+00 1.3022909463086927e+02 5.3016663551875940e+00 4.9622132186359682e+00 0 1 0 +3850 0 1 0.0000000000000000e+00 1.3297936057813678e+02 1.5976171321771238e+01 3.9023574736663647e+00 -1 0 0 +3572 0 1 0.0000000000000000e+00 1.2259178581115893e+02 7.8019604307029287e+00 1.8069193144780023e+01 0 0 0 +2624 0 1 0.0000000000000000e+00 1.0547574864378424e+02 3.2770702679939603e+01 2.1164793994988909e+00 0 0 0 +3807 0 1 0.0000000000000000e+00 1.3077524224696177e+02 1.5729547982815921e+01 1.2396444552358743e+01 0 0 0 +4057 0 1 0.0000000000000000e+00 1.2252505277996477e+02 1.1055728288565451e+01 4.2103143175663016e+00 0 1 1 +3575 0 1 0.0000000000000000e+00 1.1859942360664817e+02 5.3555643368466406e+00 5.3496635989214623e+00 0 0 0 +3533 0 1 0.0000000000000000e+00 1.0495968516592862e+02 1.0723921154565584e+01 6.1272794623110363e+00 1 0 0 +3749 0 1 0.0000000000000000e+00 1.0740377220218255e+02 4.1559621542089928e+00 5.4781924360769318e+00 0 0 0 +3628 0 1 0.0000000000000000e+00 1.1997153523336814e+02 2.9807836298310431e+01 7.5340645811604299e+00 0 0 0 +3463 0 1 0.0000000000000000e+00 1.3181509874981396e+02 1.1067958375734934e+01 1.3297997155344438e+01 -1 0 0 +3339 0 1 0.0000000000000000e+00 1.2289255855707040e+02 3.1701349726354426e+01 1.5974411247003684e+00 1 -1 1 +3605 0 1 0.0000000000000000e+00 1.2026472860773131e+02 1.8382076405708450e+01 2.9429151555696095e+01 0 0 -1 +3643 0 1 0.0000000000000000e+00 1.0523155645857591e+02 1.0757400991302738e+01 3.2170296176465044e+01 1 0 -1 +3679 0 1 0.0000000000000000e+00 1.1760707421002897e+02 3.2448668310759388e+01 5.1162523657174797e+00 0 0 0 +3324 0 1 0.0000000000000000e+00 1.2747781131479168e+02 7.4604977598151807e+00 1.3687503646604100e+01 -1 0 0 +3274 0 1 0.0000000000000000e+00 1.1430787108853971e+02 1.1741457126777265e+01 1.8714659641680942e+01 0 0 0 +3779 0 1 0.0000000000000000e+00 1.0701636572234233e+02 9.2588097881006748e-01 4.5953347931480968e+00 0 1 0 +621 0 1 0.0000000000000000e+00 1.3629931973045697e+02 1.9588586386748293e+01 3.1920580774993823e+01 -1 0 0 +3759 0 1 0.0000000000000000e+00 1.1162191115976967e+02 1.4500103189912346e+01 1.3341420030698409e+01 0 0 0 +3903 0 1 0.0000000000000000e+00 1.2765047912846083e+02 2.2116377975649733e+01 5.9874155744615729e+00 -1 0 1 +3247 0 1 0.0000000000000000e+00 1.2272232062132366e+02 3.3794343238029462e+01 1.4515320918115330e+01 0 -2 0 +3620 0 1 0.0000000000000000e+00 1.1989694683413974e+02 3.1883050432583644e+01 2.2300454220996677e+01 0 0 0 +3984 0 1 0.0000000000000000e+00 1.1583866518772393e+02 2.6045615043171914e+01 1.6402871200373049e+01 0 0 0 +3359 0 1 0.0000000000000000e+00 1.3219971517388174e+02 7.3437215501709048e+00 2.3268860971643790e+01 0 0 0 +3728 0 1 0.0000000000000000e+00 1.2516128623028762e+02 9.8658367950944346e+00 1.5705321725197978e+01 0 1 0 +3105 0 1 0.0000000000000000e+00 1.2402311017896716e+02 3.4438395949937184e+00 5.8796662264255106e+00 0 -1 0 +2913 0 1 0.0000000000000000e+00 1.0387366288867213e+02 2.6707377639612783e+01 2.5452656175337715e+01 -1 0 0 +105 0 1 0.0000000000000000e+00 1.3753582255798210e+02 3.3581008607414354e+01 1.4017643839471882e+01 0 -1 0 +3786 0 1 0.0000000000000000e+00 1.3786074994299105e+02 2.0928756569230380e+01 9.5975118065669811e+00 0 0 0 +4072 0 1 0.0000000000000000e+00 1.0409432932531222e+02 3.4289625201256058e+01 3.0018671262621144e+01 0 0 0 +3160 0 1 0.0000000000000000e+00 1.3797129813306921e+02 2.7709819143694094e+01 3.2478592536731753e+01 -1 -1 -1 +167 0 1 0.0000000000000000e+00 1.3804359501399435e+02 2.1395928338509826e+01 3.3439210572648803e+00 0 -1 0 +193 0 1 0.0000000000000000e+00 1.3839314698028275e+02 1.6444829669542624e+01 2.1950302921676986e+01 0 -1 0 +848 0 1 0.0000000000000000e+00 1.3837269942841363e+02 3.7456576536608606e+00 3.0535823421805617e+01 0 0 0 +3993 0 1 0.0000000000000000e+00 1.3831100397901662e+02 2.7812231768366175e+01 3.8672677662418380e+00 -1 0 1 +3781 0 1 0.0000000000000000e+00 1.3822723586972845e+02 2.1833916348157842e+01 2.4944341407415223e+01 1 -1 0 +9 0 1 0.0000000000000000e+00 1.3803379383586926e+02 9.5015907340665517e+00 2.6581676108593935e+01 0 0 -1 +3599 0 1 0.0000000000000000e+00 1.0400497207492002e+02 3.0280598147796155e+01 3.0272698374744198e+01 1 0 -1 +3518 0 1 0.0000000000000000e+00 1.0409064170997802e+02 2.5951379592610103e+01 1.2910922695714591e+01 0 0 0 +4089 0 1 0.0000000000000000e+00 1.0445637283706738e+02 2.2043888231437762e+01 1.2373979882099404e+01 0 0 0 +2593 0 1 0.0000000000000000e+00 1.0392891712146405e+02 2.6159472032884022e+01 3.4089431227073220e+01 -1 0 -1 + +Velocities + +761 -2.8944901599020105e+00 2.0770852142378526e+00 2.5175914782832147e+00 +972 3.5390223726031156e+00 8.8670336358750934e-01 -1.1105601770755977e+00 +157 -4.2907861760605437e+00 4.9622513489581321e-01 4.4402127077014752e-01 +333 -1.2755492513801712e+00 1.4048627118185066e+00 -3.1683081176603332e+00 +704 -4.1281339952590496e-01 1.8020962460817638e+00 5.1384694680476377e+00 +943 4.0660413199779564e+00 -4.0701225391822025e+00 -2.4718316899658838e-01 +562 -1.9144973849811393e+00 -1.8984410722278344e+00 -1.4293038084196776e+00 +770 -1.2456914744933572e+00 -1.4697343097644955e+00 1.3239903568484488e+00 +701 7.8753431497755111e-01 -4.0103006135830750e+00 1.7947896252277622e+00 +973 -2.9651535678427754e+00 -3.2441107420509674e-01 2.6903086676986288e+00 +97 4.5161358851421065e+00 -2.9978850550360154e+00 5.1614292708509542e+00 +471 -4.7193553059262445e+00 2.5066288027446930e+00 1.5654092740026195e+00 +326 1.6092124220849671e+00 3.8394580373861897e+00 -1.4997295856501480e+00 +409 -5.8405520329172012e+00 -2.5942449974331303e-03 -6.0013721890612526e-01 +481 -3.3930101728509228e+00 2.5946559470551653e+00 -4.0776053809029831e+00 +974 -3.3457733402992456e+00 -1.3900859925263318e+00 1.1262069424898660e+00 +171 -2.6830268691651389e+00 7.2327808812498862e-01 -5.2116643022294873e-01 +631 3.9057163613266406e+00 2.9545225822432788e+00 -1.2828637274143071e+00 +620 2.2047429195309065e+00 4.3213246365025682e-01 3.3294966473364691e+00 +719 4.4655579720379707e-01 -1.1632029265251013e-01 -2.3970037575683603e+00 +502 -2.8901192334767769e+00 4.5120673200075236e+00 -2.9949877253703319e+00 +773 -1.3502370407031496e+00 3.1647279672483122e+00 7.9363470395698252e+00 +50 3.8792926416886636e-01 2.0883831870040912e+00 4.5235131479825084e+00 +226 -5.8859395884877301e+00 3.6645460319640319e+00 -4.9361215920943708e+00 +863 -2.9864581001991422e+00 8.4323044667811251e-02 -4.4010050147590416e+00 +3228 -3.4422065910805997e+00 -3.1179999482827667e+00 -6.7070939584793097e+00 +347 -3.2955694172168037e+00 7.5845715820208799e+00 -2.9570357255643054e+00 +847 9.7140495831837423e+00 5.4978514752127712e+00 -7.8094882701521373e-01 +1004 -6.5781835416373957e-01 -4.6813822848545694e+00 -5.0920538593462581e+00 +829 -1.0954124901842783e+00 -5.9013278898129489e+00 -2.8055839281856474e+00 +388 -1.0863653676341008e-02 4.2573051483721147e-01 -2.5879275744672907e+00 +717 -7.1597591584295124e+00 3.1168585290061817e+00 -9.4998764789333823e-01 +670 -9.3934097364909963e-01 6.1164053541415508e-01 -3.3021494527511974e+00 +103 -5.2347843199488127e+00 2.6946268473704116e-01 -3.2530027241168029e+00 +114 2.5762180714815264e+00 -1.5766210426060121e+00 -4.4594749020585303e+00 +818 4.1426258553954645e+00 -8.6639276226995232e+00 -5.3769426085435623e-01 +658 -8.2898060453300761e+00 -5.4082728014537622e+00 2.9201590726791338e+00 +217 3.5495298358415628e+00 -3.5576235220823369e+00 -4.6622683425792024e+00 +979 -2.7872992562167864e+00 4.0192980887252627e+00 -2.5532928287412662e+00 +106 -1.2501460925272696e+00 6.1902176043591195e-01 3.4824564538016225e+00 +976 -4.4078270190557056e+00 2.4503623099747389e+00 2.4798201457980018e-01 +487 9.7985208494659499e+00 4.0152713432433389e+00 -1.0787674093031250e+00 +36 5.4014163657021736e+00 1.0977360940595666e+00 -2.6039230272839262e+00 +445 8.8247661243945563e-02 -1.7843172863415899e+00 3.2048875166248196e+00 +703 -4.7730442647112076e-01 7.6087787869192725e-01 3.0193952775722286e+00 +30 8.8605169995192834e-01 -5.9387501959361408e+00 -2.1065471203464288e+00 +585 3.2516576342866212e+00 1.6246610904124610e+00 1.8173337657630948e+00 +205 -4.2405772996560476e+00 4.1298058334282155e+00 -2.5890023270862876e+00 +180 -5.2980372699853611e+00 1.6675299815614691e-01 4.3961906778351373e-01 +824 5.2970808964969676e+00 -4.0156479014981876e+00 -3.8652227894825906e+00 +65 3.1939251004501814e-03 3.6620745936852281e+00 -1.4055805145200884e+00 +3367 -1.4355703024849223e-01 -4.2074828202083037e+00 5.9727694475614843e+00 +970 -1.5175126430690640e+00 4.6300072554221332e+00 -5.0787511270476031e+00 +752 -5.9352487117921227e+00 -6.2914282561211303e+00 -1.6549813026710318e+00 +248 -3.4645813285825136e+00 -3.4785285116003974e+00 -2.1904300617510211e-01 +3255 -3.1620977172364118e+00 -8.9819439227852904e-01 1.5821442097152507e+00 +852 -1.0645744044916421e+00 -2.3878164244539564e+00 3.4737043287215643e+00 +473 5.3787609912924583e-01 -2.4173915814233102e-01 9.2620526845943001e+00 +173 1.9459965931959713e+00 -3.6504229662086857e-02 4.7218113493258009e+00 +835 -4.7043640171991994e+00 2.1538230953468220e+00 1.3785019493329951e+00 +888 3.1142508047920852e+00 -3.5400139309733984e+00 2.4449162656839669e+00 +3272 3.8755679535324146e+00 -3.6901623723947656e+00 3.8240175043393285e+00 +662 -1.0446894970282214e+01 3.3189335209176845e+00 -5.1216245181706110e-01 +844 -3.3324500987747538e+00 4.4834463542249194e+00 3.0038118364419502e+00 +3921 2.8590323418613345e-01 -4.7010078950805738e+00 -1.2188787958891081e+00 +64 -4.6689306118401959e+00 2.6006493905220407e+00 -2.8426480248542449e+00 +564 -2.2857752986224571e+00 3.2635146518138702e+00 -1.8205679572192126e+00 +379 -5.6384909796926337e+00 3.7036153549640192e+00 5.5963529606728013e+00 +426 1.5826000732000431e+00 4.3709970918174381e+00 5.6342355089059293e+00 +526 2.8978904637361631e+00 4.4246680512201495e+00 -3.7979851057723200e+00 +687 -5.1529165533239469e+00 3.6661912902138853e+00 -3.7580772214645601e+00 +659 -2.8864229365738034e+00 1.7555251961911400e+00 1.6382050057358810e+00 +31 5.7238348996909949e-01 2.8873855692384138e+00 -5.1228096192292787e+00 +3128 6.8047770706917801e+00 -4.7477690361846836e+00 6.2610654664304128e+00 +340 -3.8344191366444497e-01 -2.3922426638055589e+00 -1.7836598604674312e+00 +266 -4.0009790810624875e+00 -1.6670375975642576e-01 -2.0317503773107792e+00 +635 -5.6810541909093326e-01 -4.3394009679348144e+00 -1.8349166097708849e+00 +1011 -7.9620266836989251e-02 7.8556808624020951e+00 2.0526982012304629e+00 +272 -4.6036847638374692e+00 6.1249506614039806e+00 1.5492697537616056e+00 +2 3.3665521517191195e+00 3.5896892760544369e-01 1.2568860111644207e+00 +785 3.2703579122305988e+00 1.1178569654803139e+00 -3.5834147627475352e+00 +194 -2.8575354040700072e+00 -1.1200163872597176e-01 -2.3842330829068454e+00 +814 -4.5548241612528955e+00 3.1124296342913880e+00 1.4266994023687345e+00 +177 1.6266591947368633e-01 -3.0024877863040729e+00 2.2098035197417678e+00 +144 1.3425233965788601e+00 -3.6516097322451229e+00 -8.0367824893336026e-01 +145 1.3217644388549227e-01 2.3977079554311556e+00 4.3261119044333141e+00 +567 9.9120971119358625e-01 4.8910127516388817e+00 5.8081242858817470e+00 +823 -3.4677563959520139e+00 -2.5870953518854587e+00 -1.7592886791047062e+00 +387 2.7713538920933263e+00 -5.2064170105982122e-01 -2.4142468861341784e-01 +3579 -1.8814609691183577e+00 -1.4804829531521957e+00 -3.6143385916504531e+00 +767 -1.4490476085753030e+00 -9.8121902437290176e-01 6.4577247980517543e+00 +889 4.9157224063341127e+00 9.1790661283894792e-01 8.6370111834694594e+00 +700 -1.8181407090127033e+00 1.1463479679814121e+00 -2.2891921347908557e+00 +45 1.4394783754461971e+00 8.7396599462072455e-01 1.7624742287811064e+00 +820 2.0484051665255323e+00 4.1322970428325192e+00 1.4536848411184635e+00 +819 1.4035184842158661e+00 5.1906643024401455e-01 -1.2722718879896950e+00 +408 -9.7314579172167648e-01 1.2921452116182812e+00 -4.1982457798242558e+00 +856 -3.1550778013216413e-01 1.4768770376551501e+00 3.7387635314840728e+00 +421 -6.2742666474582496e+00 1.3401991493480838e+00 2.7279780871703654e+00 +251 2.3623356001299514e+00 9.4195143503018963e-01 3.7244981889111117e+00 +215 -2.3466857579799649e+00 -2.8551719723597917e+00 1.2719069192487964e+00 +77 -2.5708835153913405e+00 -3.9062789784464513e+00 -3.0432490387983879e+00 +478 1.6386132591701652e+00 -8.0999372789107209e+00 1.4276736343226375e+00 +642 2.9657932065515240e+00 -1.1275954381702038e+00 -3.9970708701110669e-01 +301 9.5189798010600279e-01 -1.2265766512865277e+00 2.7128882575486672e+00 +953 3.1260286470792100e+00 1.3989225093010198e+00 2.5584188639911267e+00 +821 2.6739026962738421e+00 -4.5900008063660475e-01 4.4176034781360896e+00 +442 1.2273072358159522e+00 2.4631781207328136e+00 4.5534316372525643e+00 +710 -5.9792883830121435e-01 1.0041646074760591e+00 2.2826199364644282e+00 +706 -5.9669806715010953e-01 4.3297204570382308e-01 -1.4284559587917691e+00 +947 1.9543939607591252e+00 1.4922485363569695e+00 3.0115014283770591e+00 +731 -7.9922126765065187e+00 -2.1085272429776998e+00 3.5759883346050749e+00 +29 -1.2865595864799559e+00 -1.8403110598760668e+00 1.7995770356400600e+00 +455 -6.9436799096644783e+00 4.5521215100474182e+00 -3.1924870550978599e+00 +839 3.6501798726759365e+00 2.5991822973793516e-01 1.9066274829160721e+00 +71 4.7786304493572995e+00 2.6492525258415416e+00 3.4469346137328966e-02 +811 -1.6959877388693103e+00 4.8376977743418657e+00 -5.0764808080009063e+00 +626 -5.4498972724599053e+00 -4.3209269379079283e+00 -3.2691935090449995e+00 +865 8.8333875646818494e-01 2.3679602407105977e+00 1.0402725960014603e+00 +341 6.4504839001930465e+00 8.2480919199456237e-01 -4.3841837074625756e-01 +826 -1.5918124981382862e+00 -1.2278171965264728e-01 -2.6245335356711363e+00 +793 5.3252644915741587e-01 -3.3046736147414819e+00 2.8287506857053728e+00 +638 3.2080269586977557e+00 8.2132514195624395e+00 8.4104123153045141e-01 +3680 -5.2565383617881734e-01 3.9979307643342845e+00 -1.3861797300590792e-01 +805 4.6340658965191066e+00 8.7202871705336760e-01 -6.3206835996291018e+00 +981 2.1244525206044145e+00 8.0019080318495472e-01 -1.8548198277779495e+00 +94 9.5620524383314953e-01 -3.5717278731782987e+00 -2.9147295960908259e+00 +711 2.5380854963169899e+00 -2.6576780790784773e+00 -4.1885830868671897e-01 +989 -5.4765816450110218e+00 -4.2961768429405396e+00 2.3012086918192085e+00 +875 3.3881710907819829e-01 9.7592023637463898e-01 -2.5431688497123166e+00 +383 1.4015893180475558e+00 6.1622534354511496e+00 -2.1625317910626851e+00 +736 1.6241489619897738e+00 -8.9658506057366172e-01 -1.4832487364637683e+00 +884 -2.2441754347394847e+00 2.1667592033183345e+00 3.5435701694392017e+00 +169 3.9625843970119998e+00 -5.4363911396352682e-01 5.4303646198242888e+00 +738 -4.6484224078073488e+00 5.7384113176479012e-01 4.1751712726942802e+00 +25 -1.5705270118703107e+00 -1.0868732553278433e+00 5.1956187065779975e+00 +583 9.9967795500872947e-01 7.6833415760354562e-01 1.2549325424366415e+00 +364 -1.9267403219662196e-01 1.8982940758817193e+00 -4.9687324992621951e-01 +3912 1.5524205453880320e+00 -5.6242654034436390e-01 3.6162509258299314e+00 +254 -2.2147852299144137e+00 6.3772860083986291e+00 -4.7705584353473167e+00 +225 2.6804016957393149e+00 6.8381591947304079e+00 -2.8867834269787016e+00 +290 -2.3680063821592934e+00 1.0287654943653073e+00 1.3390642009970459e+00 +117 1.6224537594985766e+00 3.8069268289381664e+00 3.9078515892192223e-01 +484 5.3139639370765721e+00 -2.8181336156180898e+00 4.1838330756365947e+00 +304 -3.5436263705310047e+00 1.1295169870661776e+00 -2.7392790512370285e-01 +591 -3.5811365956510275e+00 -2.4521326595385426e+00 -2.2815944483801726e-01 +939 5.8127824792329175e-01 1.1280363815328847e+01 1.9992311698107834e+00 +3238 -2.9122158371205273e+00 2.5531223845096562e+00 -1.2348019227195040e+00 +898 3.5836817143097326e+00 -3.0469670340514061e+00 9.3988317041571434e-01 +16 -1.3483103629620632e+00 8.5200495339214513e+00 -5.1186265510074094e+00 +3744 4.1964509689221616e+00 3.3292248522200285e-03 -3.1642139949878580e+00 +361 3.5014879544442219e+00 -2.3324557740964238e+00 5.2623384144960488e+00 +3939 -2.6346393385465299e+00 -1.7626026430650044e+00 -4.9437600923438457e-01 +281 -1.6146121887998206e+00 6.9042716047996491e+00 1.9187047224510667e+00 +479 1.3069989416982384e+00 -2.9002433634647122e+00 -5.8103311180281345e+00 +424 3.1299234888893662e-01 -7.4512042159281822e-01 3.3339118007062662e+00 +531 -3.6703134581556746e-02 3.7840088108018048e+00 -2.3377491106751025e+00 +964 4.3909059935543713e+00 -5.9057608116937421e-01 2.8267991162368045e+00 +438 -2.6597830521503294e+00 -3.1702411338672460e+00 -3.1827950642866036e+00 +790 -1.2718314476083030e+00 -1.4487319282921880e+00 -1.8402109364720716e+00 +696 -3.3102593214513734e+00 7.0567697272641206e-01 1.6526870403255850e-01 +3375 -4.5727207955160445e+00 8.8957415883120283e-01 9.0087934323236540e-01 +513 4.1673812646730610e+00 1.9171957176683292e+00 -3.9487192619287668e+00 +121 -5.1751081504399732e-01 -5.9360673095265568e+00 -1.0928114385518186e+00 +190 2.5757288322017184e+00 5.3844062473504231e+00 1.1034406380918655e+00 +396 -2.8595378417877639e+00 1.1049446937395258e+00 5.0507935782770264e-01 +43 2.2269976881488263e-01 -4.4241977264234826e+00 -3.1169185541476518e+00 +712 3.1970567947541895e-01 -6.3040000153042119e-01 1.1600575891095783e+00 +261 -1.6104285390044510e+00 -4.4292242036097068e-01 -2.2144591235927282e+00 +993 -6.0782942580991790e+00 -1.1475611356659057e+00 2.8253793068040545e+00 +550 3.0284566073713313e+00 -6.3555842853158140e-01 3.8029300497019131e-01 +969 -1.7720402542873234e-01 1.0025037837726687e+01 -1.2436309229514140e+00 +457 -8.1451313544577242e-01 1.3236877987497697e+00 -3.6428683047923189e+00 +509 -6.0907586898033053e+00 -2.9130444844585477e+00 1.2391788632584011e+00 +520 -7.3583792010152260e-01 3.6707142418772354e+00 -8.5735857643821578e-01 +529 -6.4934573018975623e+00 2.0059107620964181e+00 8.9291194690700393e-01 +161 3.5895106240597743e+00 -5.3632954505161825e+00 -2.0410404583313713e+00 +769 -3.2628898616852681e-01 -3.0399873942721451e+00 -7.0395749588343115e+00 +827 1.8508787250137837e+00 -2.8471989673978189e+00 2.6877797943098223e+00 +665 3.7803565444134164e+00 -8.2002418008712652e-01 -6.0753185528201934e+00 +557 1.9818699744736183e+00 -5.6426220453313447e-01 -5.2983450801230800e+00 +732 -4.2078810763884196e+00 3.6302956692208359e+00 -3.1369233565414083e+00 +485 -3.2404242850054796e+00 -3.3414206082169442e+00 -5.3960588513474486e+00 +482 2.7197773608406135e+00 -2.8245233526465561e+00 -4.2863842585806617e+00 +641 6.5327544459929738e+00 -4.7022609208391281e-01 7.2820968313076557e+00 +112 -5.1324281675976580e-01 -9.7042550928311844e-01 7.7458644007825983e+00 +402 -2.8155450649230569e+00 2.0628410839978142e+00 -6.0943970865982611e-01 +577 8.3701828907815401e-01 -6.7856661150686548e-01 -6.2325038630509466e-01 +535 5.0899605630785860e+00 -3.7364802574773459e+00 -2.4128029911161621e+00 +116 -4.9401365746605261e+00 -7.1427742216718548e-02 -7.3099547465778081e-01 +817 1.4086475783188266e+00 -3.4887897082845707e+00 -1.6938171284229171e+00 +766 4.9876325332817659e+00 -2.0987385687573208e+00 -2.5049845432636231e-01 +21 -2.4219570814394795e-01 5.8468985623127328e+00 -3.1550202336054651e+00 +410 4.6866906795073771e+00 -2.9671036209837149e+00 -4.5577503105875152e+00 +19 7.7936951264662979e-01 3.3151221693887694e+00 7.4266568031348412e-01 +411 4.2659913286738167e+00 1.5554666785007456e+00 3.5025104922562234e+00 +702 -4.7031717726281097e-01 -8.7799553638970407e-01 -5.6058052671094911e+00 +944 -2.0778749158992511e+00 -3.0737307682749262e+00 -3.1138128124646434e+00 +727 -3.0433354896664904e+00 -6.0315199617089066e-01 -2.5480389575696121e+00 +3158 -7.8081433267991649e+00 -7.2344255633175223e+00 1.2543960547003326e+00 +1378 -9.0305396635937218e-01 3.4999090840494014e+00 -3.0375421807851430e+00 +59 1.5176255508793848e+00 -6.9153140580836805e+00 -6.9307736246537148e+00 +661 -6.6197718426746137e+00 -3.0797645729641205e+00 -3.5655909916561495e+00 +747 3.1499596851791274e-02 -5.2100117251270479e+00 -4.5774959774210178e+00 +925 3.5456878685767297e+00 -4.1029710171556832e+00 -2.3860325321064613e+00 +111 2.5729634953211078e+00 5.3879228795520380e+00 2.9637352364859542e+00 +234 -4.8778237666987817e-01 -8.3973335260383120e-01 5.2758623542906102e+00 +978 -1.6815426937865361e+00 4.8097389140760587e+00 -1.8403584280042045e+00 +13 2.2718766660852889e+00 -2.4037729652528865e+00 -3.5731318881545695e+00 +563 3.7159765558356423e+00 -1.6135315397467105e+00 -8.9616942024369206e-01 +948 4.9106659216306943e+00 -2.7722291893624709e+00 -1.1760721905533118e+00 +778 -1.9335066157939464e+00 -6.0601898448985079e+00 -5.2632171874809428e+00 +500 3.0409990451252971e+00 -3.9781186233687733e+00 3.1776938637431051e+00 +982 -4.3920290533324398e+00 -7.2751275671254314e+00 -3.9921174066456371e+00 +3365 -1.2879987038220821e+00 1.8513627939347135e+00 2.6185784102661920e+00 +985 1.8159493000399485e+00 -8.8692420607175071e-01 2.2650943185131522e+00 +503 1.7487865526986839e+00 -6.5151504759445233e-01 4.2719038592475629e+00 +461 3.9044313031460884e+00 1.1435865027258778e+00 2.9856407533615226e+00 +677 -2.2775860165281009e-01 6.0578913649945179e+00 5.6665957076707130e-01 +556 -3.1894158785083611e+00 -6.2369764259261273e-01 6.7391359873471908e+00 +3458 -2.2967229698634490e+00 3.5874630235694777e-01 -1.2159711775125092e-03 +267 -4.5196856698721284e+00 -5.7460832130847295e-01 3.8781614548903551e+00 +533 -3.2242595616646224e+00 9.0174337181593858e-02 1.9481118435360036e+00 +469 3.6380465820762624e+00 4.9802522742491506e+00 1.2482105170423619e+00 +607 -3.3867499316156917e+00 4.3827618195850242e+00 1.3951611560458062e+00 +252 -1.5812720622796825e+00 1.0041681535821374e-01 7.1359077137916471e-01 +202 1.2643348739158311e+00 6.1629327912263587e+00 -2.2925541316082092e+00 +707 -2.8036487876349994e+00 1.0097355559203431e+00 -4.7462292138135598e-01 +48 -3.8824066488915454e-01 -1.7213876119503706e+00 2.0331927364082549e+00 +393 1.9144509945985326e+00 -1.0659748096591901e+00 7.5034202077249224e-01 +99 7.6897371426072425e+00 3.8202724653498579e+00 -7.6493363008356505e-02 +175 7.8641167149380997e-01 -3.2241779441195715e+00 -3.0852032157025815e+00 +548 7.1497766731276099e-02 -3.5346628153887889e+00 -2.1527959098720040e-01 +32 7.9008070619586396e-02 -1.0858846376783756e+01 4.6484792654045987e-01 +639 -5.9718281554920036e+00 -6.3064276051843748e-01 -6.8324936781074941e+00 +656 2.5737774039527515e+00 -5.2568816384118691e+00 1.5618517437027335e+00 +33 2.0400759757538043e+00 -2.1534517971597378e+00 -4.6120598929935728e+00 +260 -6.4990690450383797e+00 -7.9377919128038529e-03 6.3507573880271160e+00 +142 -3.0110981927095430e+00 5.5330146281281423e-01 -1.3812794677775508e+00 +3337 8.0121079569130382e-01 -6.3645905013200144e-01 5.3382915978976220e+00 +12 -1.9176750993951788e+00 -3.3843668676436356e+00 2.4154529801092184e+00 +4012 -1.6958583470827928e+00 8.1987058623380815e-01 -2.0878018621980563e+00 +314 2.1673450599603759e+00 2.7292668995699945e+00 -4.6437270856509700e+00 +233 3.1801486908566141e+00 -1.2832510737381209e+00 2.0056575870402210e-01 +644 3.2863140758712368e+00 -2.9947381918287905e+00 -7.7731050370085805e-02 +1026 1.2023428311437914e+00 -9.8738561065104342e+00 -1.0541305217313697e+00 +241 3.6373250684179683e+00 -1.9874685616703045e+00 5.0425443102897622e+00 +627 5.4040066192082916e+00 -2.4509620365432166e-01 1.9098450059962262e+00 +539 2.5521865451521153e+00 -1.9428089950715470e+00 2.6469368822081329e+00 +690 1.2677729719078725e+01 7.0224479111632130e+00 8.6439134005227702e-01 +289 -3.3751645531600283e+00 2.3431320473387740e+00 2.5915713551419955e-01 +230 1.1947027996035435e+00 -4.4855182844906478e+00 2.0716521937783305e+00 +1 -8.5627194055492026e+00 1.2947176194675116e+00 3.6762637943374150e+00 +849 2.6818198140533251e+00 5.2651109356564629e-01 -6.6998826167957626e+00 +602 3.6839616596653019e-01 1.0123335199069457e+01 -3.2962873450392247e+00 +528 -2.8558854397895062e-01 3.2710323117774935e+00 2.1920273981903113e+00 +285 -2.2492279478300863e+00 2.6210850567237252e+00 1.7108918628579133e+00 +634 -4.2298368213460469e+00 -3.2478510609743411e-01 -5.9095078808555730e+00 +815 -8.3998758099637651e+00 5.2751551101231851e+00 -3.1578630078425740e+00 +132 -2.0578794477153686e+00 3.0900990709346847e+00 -6.8745235140361360e-01 +288 3.2612885561177940e+00 1.9049023651665065e+00 -1.0731095483379893e+00 +237 4.6535425492729026e+00 1.8840940697708839e+00 -2.1709901350384295e-01 +723 8.6210687361241656e-01 2.3485966030784051e+00 4.8576095161415358e+00 +435 -1.5355493879324424e+00 1.5844658481807667e+00 4.2946132828484247e+00 +3500 8.5871494341233490e-01 3.2176193029086857e+00 4.0184954812666209e+00 +936 -1.2762206124193989e+00 1.1385925745818295e+00 -5.2911218804119775e-01 +325 3.9841878727740236e+00 3.5867375474374081e+00 2.9302096648744982e+00 +70 -1.7251379428790448e-02 3.8376466191858611e+00 -3.1410285454118712e+00 +930 5.0696693140779407e+00 -8.9213985688812697e-02 -3.6907441824301751e-01 +1265 1.7399183020516749e+00 6.2285919485539276e-01 -3.8258843755597751e+00 +868 1.4387179111269552e+00 2.9928588373728489e+00 2.7731493618100580e+00 +178 -2.9950992146201677e-01 -1.7709959320692278e-01 3.5383440183243935e+00 +1018 -1.7016273491395812e+00 -1.9845297396857975e+00 -1.1932045803067840e+01 +464 1.9572742466321251e+00 1.8354055046554303e+00 3.0775226226777290e+00 +992 -9.8319813371952253e-02 7.1445130933162648e+00 -3.0606469630948121e+00 +739 -2.1505693046076693e+00 8.3972865100608940e-01 1.3789265860838003e+00 +681 -3.6002986970978021e+00 8.1138082140384054e+00 -5.3203566651004781e+00 +3573 -3.3847422380161110e+00 1.0425876808424750e+01 2.5941803705777278e+00 +496 4.4106874496404309e+00 1.7919066299659503e+00 5.8548780782088699e+00 +955 -1.9331720237756951e+00 5.6983634703412356e-01 -2.8225169157246484e+00 +771 -1.2183516078384229e+00 1.2863470576826430e+00 -2.9381473743164677e-01 +804 1.3073590050174211e+00 2.4852044019777773e+00 2.9529392778199579e+00 +57 -4.2584856880303281e+00 1.5547891866744308e+00 5.1581502873305576e+00 +651 1.4880826013284145e+00 2.5975748008163531e+00 -1.6187971076196868e+00 +741 -5.1907937491738476e+00 -1.1871112260200358e+00 3.3840638154159042e-01 +604 -9.4305918365589458e-01 4.8357656517233760e+00 -1.5852117286016545e-01 +883 -7.2729848685928422e-01 1.4674523912719033e+00 -5.0286613066838060e+00 +952 -6.7733210976963116e+00 -8.6776392792614387e-01 -2.6894110738452159e+00 +843 1.4281960508548355e+00 -6.1936275131097887e+00 6.1296059251973123e+00 +188 -4.3306752046667757e-01 -2.7822705839987738e-01 1.6360520389217881e-01 +760 4.5153133071404250e+00 -3.4974871912839139e-01 -1.0675565464554899e+00 +941 -2.2180138035109076e+00 -1.6810051753369535e+00 -1.1331399239878761e+00 +618 -3.7330738571515596e+00 1.1081265339222002e+01 -3.1390846789798905e+00 +118 -9.4209907084738944e+00 4.6344051805001270e+00 1.6588704020059470e+00 +664 -5.6637041810804645e+00 -7.7891380090527831e-02 -9.3912614423494911e-01 +278 3.2516828547546814e+00 -3.1500142689945376e-01 6.2809586790440985e-01 +218 5.0822964669616528e+00 -8.3432555483885520e-02 -4.5091436972270166e-01 +406 1.5609062112201513e+00 3.5667647702493350e+00 -3.6980450114690333e+00 +834 6.0285984611674328e+00 4.5644701623061108e+00 -6.5146864871273935e-01 +222 -1.9421526101297759e+00 -6.7693962380791186e+00 6.4906323534969514e+00 +139 1.9860332446227340e+00 -2.3184766906775880e+00 4.7791165888673843e+00 +199 -2.1626303391886399e+00 4.3552950503886638e+00 7.9489406579997091e-01 +584 -2.9329320614106837e+00 5.4906226154413351e-01 5.8925208145023218e+00 +280 -8.6841311481571228e+00 -1.2833197883390490e+00 3.5334377173030669e+00 +640 2.7936192949143246e+00 4.2623037311645158e+00 6.2699166421128139e+00 +181 -1.7803275419578983e+00 -2.1189523302957327e+00 4.3577478398280025e+00 +552 -9.5235598363602403e-02 -4.5401393449709504e+00 -5.6569104403184651e+00 +749 3.9407015112188351e+00 -5.4832597347003933e+00 -2.3402500348461419e-02 +837 3.6645552223369320e+00 3.0028732987429012e+00 4.4913963006199067e+00 +676 -2.1410803995596647e-01 2.8674388285343730e+00 -1.5545235609951258e+00 +1682 -7.0631113845978177e-01 -1.3545717417243255e+00 -9.6894413859040351e-01 +851 -1.1393720594299308e+00 -2.6983969922494222e-01 7.4925378668957587e-01 +130 4.0617252882945643e+00 7.7184605279547167e-02 -4.5819918170455054e+00 +729 5.0936550625832009e+00 -2.5579249815945131e+00 -4.3227323668482692e-01 +861 -8.7712172393833594e+00 -5.3415107581211607e-01 -5.2849389419363595e+00 +168 -5.9594967311303948e-01 -8.8066228232473733e+00 3.1150190632845129e+00 +855 -3.7229883585321955e+00 -5.3315333185951079e+00 2.4674227845631433e+00 +517 3.0508202845344607e+00 2.7438058512032764e+00 -1.1337317690301565e+00 +450 2.4528277926701225e+00 -4.5164313388041384e+00 -2.0110129900238825e+00 +698 2.3064760924314553e+00 -1.2917081721429697e+00 2.1709487658821227e+00 +81 4.1357309240488256e+00 -2.0328064110590556e+00 3.6228147971423491e-01 +927 -2.4927675988002624e+00 7.3527831532670733e+00 2.0494568006255154e+00 +776 -2.1978881048736825e+00 -2.6173084856527655e+00 4.1606211494776091e-01 +74 -3.4779374087497922e-01 -5.7590232545172793e-01 3.1469908343942787e-01 +994 -2.4980702090545561e+00 9.1728723427791925e-01 2.3634621380624479e+00 +263 6.0060753902348862e+00 -4.2810858869127311e-01 -3.8525473132923577e-01 +959 3.4172067293082180e+00 9.8390463012400686e-01 1.8488305114310395e+00 +1007 -6.4552480349291474e-01 -5.4645120979580297e-01 -3.0427369580605226e+00 +302 2.3267358033431065e+00 1.2615919564542770e+00 -1.3913529594411893e+00 +646 -2.7606207298248364e+00 -1.2347797270755625e+00 3.8377313685543074e-01 +892 -5.0074033085527381e-01 2.6499829376821911e+00 -9.7218790395324639e-01 +553 -5.0066756763842220e+00 6.2442222075755693e-01 -8.9932899817995604e-01 +933 -3.3105402092647420e+00 -7.9116018105023589e-01 -3.5254411526265219e+00 +596 8.1265665675143584e-01 -4.2254745016760014e+00 3.3183193501172242e-01 +159 -2.3116888813082626e+00 -5.7369162613726958e+00 1.4444551770194454e+00 +920 -3.4986550465178357e+00 -6.8378231622618535e-01 -6.1622002455911751e-01 +433 4.4002700331477023e+00 5.4556160496066655e+00 -3.5977046453340318e+00 +1490 -9.7189684818277700e-01 2.5070879879566816e+00 5.1778515586761147e+00 +221 -8.1006243339955641e-01 -1.1836549143353807e+00 4.0521830996001507e-01 +417 -1.9328403628603028e+00 3.8037062381242728e+00 -7.5820368250341486e-01 +133 -4.0136887855280969e+00 -1.0376969436695005e+00 -9.2652326135973162e-01 +693 -4.8466981788753101e+00 3.3513338167975846e+00 1.6530905682328331e-01 +678 3.7060512971000783e+00 5.8320607833132216e+00 -3.2478441769094006e+00 +394 2.7288519099730211e+00 -3.1428499760707290e-01 2.8432352234376554e+00 +917 5.3137461766871859e+00 5.4152473905740734e+00 1.9320563064572354e+00 +846 -4.1364548189491019e+00 2.8284242459775171e+00 2.2253562291679847e+00 +146 -8.4423846340801383e+00 5.6698830177403821e+00 -6.3155266144152273e+00 +23 4.1497019362923711e+00 -1.6434915918538318e+00 2.7945835714906736e-01 +41 2.1216587994932190e-01 1.6117707283568699e+00 7.2636870781902418e+00 +866 5.5011742850291547e+00 -2.0855094250010020e+00 -4.1116090260837197e+00 +498 -1.8499917719965446e+00 2.7856586968218666e+00 1.9548904990822329e+00 +101 3.1152893827452437e+00 -2.6585380952133475e+00 -1.1282644980383483e+00 +540 6.3493810526793286e+00 4.0332547983514768e+00 -6.8290273259148149e-01 +887 -4.8987417211604800e+00 3.3480980747062663e+00 1.9465994585834590e+00 +792 5.9558506656797205e-01 1.0748890206071200e+00 -2.1186019460036478e+00 +753 4.1895577683376013e+00 4.2273430530588918e+00 -4.3971097988099093e+00 +320 -1.8220634173372338e-01 -3.7673279739798384e+00 -1.9364085009782097e+00 +530 6.5256582539077068e-02 -4.3450633380077193e+00 4.9868829945838939e+00 +353 -1.4944559606273764e+00 6.1332359757474286e-01 2.3528048712676775e+00 +92 -1.7424219317393776e+00 3.9936321529334551e+00 1.4940921194524481e+00 +547 3.9751043704911089e+00 -2.5048035409945546e-01 -1.3981087558413556e+00 +335 9.3029004001638849e-01 2.9372888227796903e+00 5.0355534359901111e-01 +570 -5.6670132170623724e+00 3.1857180118164936e+00 -3.8751591877552265e+00 +3542 -2.5287867061057967e+00 -2.9325410782610346e+00 4.5139225230425275e+00 +419 4.4459926531778482e+00 1.7382064833195437e-01 4.2177717663836427e+00 +93 -2.3359495442609339e+00 5.7620598502641212e+00 -2.0417999060845511e+00 +871 -2.0776443389990864e+00 -1.7880192396077359e+00 2.8398742162069492e+00 +581 -3.0098116747201537e-01 4.9087370050044099e-01 3.5671899648872527e+00 +149 -3.2690267951359253e+00 9.8912017232513871e-01 -6.2832683029893799e-01 +586 3.8988618462844093e+00 2.9204183597381301e+00 -1.2657851824543442e+00 +573 -3.7001130995161531e+00 1.4122117599762118e+00 -6.0069393997834704e+00 +971 -3.5918433233504992e+00 1.7534553130630892e+00 -8.4259268677296415e+00 +777 2.2969514139547300e+00 1.5596839689242474e+00 3.3323250149786525e+00 +937 -3.0912539523598155e+00 -1.8544596171128103e+00 -4.2142520545739268e+00 +983 -5.8100302563798136e+00 5.8999348418211772e+00 3.1708474888379206e+00 +491 -1.2804965713620680e+00 -6.1730185947300154e-01 -1.7416238991432145e+00 +768 8.6047877919020521e-01 2.8438215807208800e+00 4.0607374751163894e+00 +141 2.4419846483410579e+00 1.0997972943114325e+00 -3.9223396935577544e+00 +828 8.2796320436604951e+00 -3.0146048479779455e+00 1.4217823061428985e+00 +401 1.2158579553258095e-01 4.4877489050299264e+00 3.2753079030228394e+00 +243 2.3355271728148930e+00 3.8239985311832991e+00 -3.8714443609317539e-01 +46 2.8039037072707966e+00 1.9878651984044478e+00 1.7423353026177275e+00 +691 -1.0323118559810718e+00 2.2529647957097403e+00 -2.0119747877948110e-01 +838 9.1616432927675961e-01 -1.0942639014629947e+00 3.2622536988473070e+00 +914 -1.7839060281925114e+00 -3.0683048773556931e-01 -1.3059042422572198e+00 +3954 -2.7304870826104350e+00 -2.6310404927285194e+00 5.6970806578308011e+00 +220 4.7278732986600378e+00 -1.3031974731611280e+00 3.9027553500195167e-01 +779 -3.8472168378736065e+00 -3.6022034878074551e+00 -1.9009225158161385e+00 +187 -7.8990344937937618e-01 3.9999810321772373e+00 -6.6286295158403794e+00 +346 8.4425664835834513e-01 3.6713140948672489e+00 1.6826764965499270e+00 +253 1.6832108131189922e+00 1.7165618665873934e+00 3.3414711109256912e+00 +616 -3.9627818476414047e+00 1.1069376457017350e+01 2.0752461559594404e+00 +579 7.9031631133964906e+00 -8.5040475440101559e-01 -9.9631913489444635e-01 +134 4.7954785312698816e+00 3.3451963120460544e+00 -2.9024849709159817e-01 +1395 4.2825491273415256e-01 7.5349872525113482e-01 7.8989344340961534e+00 +382 -2.2599064610713623e-01 -7.3968421366695056e-02 5.1755581525123073e+00 +371 -1.8597680077948975e+00 2.1810468278893040e+00 5.6530551823497097e+00 +334 1.8385963662189442e+00 -5.4544456763921279e+00 -1.2347270416292551e+00 +508 4.7301335398949558e+00 -7.0388993555108677e+00 6.6433320634735482e+00 +774 4.3035599082165463e+00 -6.9165706294808518e-02 3.3938464234924998e-01 +1009 3.4722133816493499e+00 4.4271838708872782e+00 3.2403350374656275e+00 +523 3.3919290394890118e+00 -1.9035433949756664e+00 -4.7864805517142468e+00 +782 8.3957549781861029e-01 1.6986415215201449e+00 3.2075012250682988e+00 +153 4.0840851227747993e-01 -3.1445179990150782e+00 4.4144909416464406e+00 +366 2.0177042532137628e-03 -3.2336546963404191e+00 -2.8593922566101421e-01 +799 1.2829208524617093e+00 2.8492920307227143e+00 -2.7735852437440727e+00 +572 7.4666294413345078e+00 3.9146374278327225e+00 -7.6206641790895402e-01 +375 -1.3322565462945759e+00 -5.4679630054548745e-01 4.0819706537064153e+00 +337 8.3200805258492228e-01 4.7035085403941972e+00 -1.5973932332731342e+00 +603 -2.6910375174271159e+00 -1.2423100952396160e+00 -7.3359707376797456e-01 +274 5.1400396446714368e-02 -1.7172850224612830e+00 2.7240446664575069e-01 +1023 -6.8725156785957231e-01 2.8688632159439504e+00 5.2413138124695298e+00 +39 -3.8954164750390983e+00 4.4839675242143668e+00 -8.2974668931377380e+00 +781 -4.5286945195059669e+00 -1.4777154517836993e-01 -8.3959558230172959e+00 +210 -1.2425321017438207e+00 -3.3503053445575565e-01 -4.4698544435710552e+00 +869 -4.4727735603791414e+00 5.1417932648223523e+00 2.5343164642977933e-01 +589 7.8090403012856102e-01 3.8686907848217528e-01 -3.7318920766034430e-01 +942 2.1442655264685087e+00 -5.6117617845036465e+00 -3.2875100457219375e+00 +580 -2.2121940018517781e+00 -4.5015267792247654e-01 2.9623673592225903e+00 +918 -1.5796452550401441e+00 1.2831307843661275e+00 -1.8506586169113196e-01 +510 -4.4609176589328738e+00 -3.6198955017525813e+00 3.2463173626542554e+00 +242 3.8475751751563758e-01 -2.9085168074205736e+00 -2.7169804899618963e+00 +174 2.3403423207868399e+00 -5.9201548713807099e+00 -6.2576537682696260e+00 +794 -5.1277643508637798e+00 4.2978142579120715e-01 3.9094195907378175e+00 +297 -2.0226768539669195e+00 1.4493112755383459e+00 -8.9355852924620454e+00 +1013 -5.5556567279031750e+00 -2.6999337711568892e+00 -3.4805285103005148e+00 +668 -1.4656756141340471e-01 -9.4594571227570334e-01 -6.9869883928893186e+00 +615 -1.9793835136107949e+00 -5.5368646147320479e+00 1.8603067351047242e+00 +17 3.9605887549541992e+00 4.7231822689571210e+00 5.9898376510457965e+00 +872 -1.8450226517380972e+00 -5.4569425174219246e+00 -5.3480845467444715e-01 +1024 5.6695840123897039e+00 2.4323387812761785e+00 -8.5958319567174468e-01 +1218 3.8404555244948591e+00 1.3663131225394263e+00 -1.7401146930832507e+00 +363 -2.8107649628950084e+00 1.0415523153182520e+00 -2.5360844447368422e+00 +896 2.1648050512183779e+00 -3.5618603687209287e+00 -7.5107250360863176e-01 +938 3.2189752853732214e+00 -4.6695082550465461e+00 -1.4864708076046565e-01 +368 7.4227073100093910e-01 -2.7632517800452044e-01 3.7443571214077531e+00 +565 -2.3900307345927074e+00 -1.1694903280485920e+00 5.8972891981519404e-01 +66 4.5223786063917029e+00 4.8384279139932875e+00 -4.4467116232191399e+00 +189 -5.9547230105754978e-01 3.0776217355164559e+00 -4.5119007493820220e+00 +483 1.2176627557164086e+00 -1.2301854478825808e-01 -8.8891927229708845e-01 +296 1.2244757131350665e+00 4.1157796909631256e-01 -8.5589609969153602e-01 +271 -3.1562224640809156e+00 -2.9010532755729206e+00 -2.3197155854787939e+00 +534 2.1478252898794903e+00 1.7207499738984078e+00 -6.4554584356819813e+00 +745 6.8933837718347819e+00 -2.0920585127436295e+00 1.0918582270477446e+00 +430 8.0562993279058237e-01 -7.1806159679490165e+00 -4.1186574961085363e+00 +787 1.9323027738469636e+00 5.4506684364262989e+00 2.3626446400058150e+00 +645 2.8924765563794391e-01 -1.4504582263734780e+00 1.8451921124451494e+00 +744 1.9591294730603559e-01 3.8866505911852047e+00 -7.6766591132496407e+00 +633 3.3243798760363097e-02 -2.7366557956569872e+00 1.3095130638392747e+00 +352 3.5309458858772667e+00 1.4540073107537590e+00 -5.9441179198126699e+00 +904 5.6976436742021450e+00 5.2460203484241035e+00 3.2445636037672645e+00 +649 6.8225093753265120e-01 -6.2884629974851025e+00 6.0221400158065448e+00 +619 5.2959020065504232e+00 -5.8914279372299490e+00 -2.0630179662623456e+00 +997 6.1259135813633270e+00 -4.5766209231429607e-02 2.3286626295060437e+00 +429 -2.3572578147272867e+00 6.3061455841885466e-02 -3.0419313133817090e+00 +965 2.7321255057281406e+00 2.5756979043866477e+00 3.1293044225608537e+00 +299 3.1165733639538327e+00 4.3584510464196109e+00 -3.8566625078004368e+00 +960 2.8842742142108615e+00 1.7880165101876142e+00 5.0734992575811502e+00 +963 8.3169679780016228e+00 4.3941216374118435e+00 2.7682630670698036e+00 +196 1.0936885242400756e+00 -2.4268359239651107e+00 1.7088856778242372e+00 +270 2.3790163299101854e+00 -1.2343851472456198e+00 -3.9259053669077804e-01 +560 -1.2254387615991016e+00 -4.7520836447013792e+00 -2.5323370629507309e+00 +612 -1.9784446816043415e+00 2.8028945256173041e+00 -9.9249089985437300e-01 +1006 1.4557468116910390e+00 5.3899968897662012e+00 2.4032023654712860e+00 +1012 4.4307588744223754e+00 1.3979529496384435e+00 -3.2269412159314220e-01 +800 -3.0941558591698017e+00 2.7967991059234459e-01 -6.4133087308364933e-01 +257 5.5086802135093560e+00 -1.5746558037422884e-01 -6.7948035747241420e-01 +182 -1.0587077068020145e+00 -1.8519487660642681e-01 2.0048556868907204e+00 +458 -1.6931304273649019e+00 -3.5742508173631622e+00 -1.7101703042396652e+00 +390 -3.2191203815370004e+00 8.2655786987720603e+00 2.0226455492798783e+00 +551 -1.8900343714094834e+00 2.1817599741335298e+00 -4.5646742806255052e+00 +537 8.0879615864804215e+00 7.8361544107589032e-01 1.9309451336086358e+00 +600 -1.7200564148854167e+00 -4.2714887805626329e+00 -8.7973515238182802e+00 +191 -4.1011508327847350e+00 6.9980102706076908e+00 -2.8829599897193892e+00 +674 -3.6429102768046109e+00 5.2980168433644108e+00 7.1836288650215447e+00 +416 3.1702658759752329e+00 -4.5322262591396205e+00 -6.0069183411380977e-01 +949 3.7673221421593284e+00 2.6618858959116443e+00 -1.3668424764800020e+00 +336 1.6451325851715588e+00 -3.7164883658471082e-01 8.7545399973928795e-02 +881 3.9926259700706512e+00 -6.8119628165142299e-01 -3.5635549635621406e+00 +95 -2.3056016339901042e+00 5.8186050418011961e+00 -2.1111279116626385e+00 +381 9.1210300481828810e+00 -2.9504330872496061e+00 -2.0224312867802450e+00 +239 -2.6007646953502439e+00 2.1166260139271378e-01 -1.8339625485977444e+00 +84 -6.3725931695379572e+00 -2.1762079630628479e+00 -7.3797933048110371e+00 +813 1.2473618807585083e+00 1.3608277350374653e+00 6.2999871481419101e-01 +305 -3.0510208619796160e+00 -3.1099756074408440e-02 -1.5217684192766521e+00 +324 -6.4587207128665831e+00 6.3753045382699431e+00 -3.7333821611920452e+00 +277 1.4164025415105728e+00 -7.4385760997968911e+00 -3.5346200379758269e-01 +1000 -3.5822856895072896e+00 3.0535921022100303e+00 6.8542523799483668e-01 +259 -3.8062997857572817e-01 -3.7247283652193236e-01 -1.9700413238163148e+00 +38 -2.0921318821346353e+00 1.6192624582719608e+00 -2.4057081925098838e+00 +380 -4.3573177248841510e+00 -3.2841880068854565e+00 -6.9755409682604546e+00 +124 7.7185242987876856e-03 -4.3361896080074027e+00 -7.0616108058013927e+00 +977 -2.4226420193032605e+00 3.2935596333699735e+00 -2.7946503943565091e+00 +919 2.9010755282474932e-01 1.6910327149515647e-01 -9.5085092061006560e-01 +758 1.2063642414608136e+00 -2.6824440492151358e+00 5.5850703187634982e+00 +351 -4.3329351452675873e+00 -4.7789808132400813e+00 3.1056188510439440e+00 +467 -3.2749991188671412e+00 -1.2591675407469296e+00 -2.7134834883909988e+00 +311 2.9101018748000027e+00 -1.2323831970292176e+00 -2.0211960969623584e+00 +201 1.4183781608041128e+00 7.2775065447362675e-02 -1.5191882469940778e+00 +536 -9.7591174635337929e-01 4.7961515266297710e+00 2.2269964615659466e+00 +682 -4.7200177871681886e-01 -2.2107328716570365e+00 3.2781810190047707e+00 +862 -3.7456747920301914e+00 5.4007553862858213e+00 3.2428727742220906e+00 +150 -1.6930507288804852e+00 -2.4341260172674488e+00 -2.7574502521308828e+00 +436 -1.1472559242952092e+00 -4.2285070321149432e+00 -5.8880917554399419e+00 +192 -5.5198808130947762e-02 -3.0002491200288723e+00 4.8431416092913177e-01 +648 1.1097921348521242e+00 -3.0172214908428314e+00 3.9771480557082257e+00 +198 -5.6372196042470568e-02 3.8868813387339909e+00 2.3930876426470471e+00 +841 1.7921804859931092e+00 -1.6669717061633310e-01 -2.7947417399467653e+00 +470 -1.0752636264866474e+01 2.1246989788429964e+00 3.2450109143659769e+00 +905 -1.6854643383787486e+00 3.4144742799534726e+00 -2.6578327691568665e-01 +956 -6.9774729100214983e-01 -8.4415224310806138e+00 2.0587982842960812e+00 +15 3.0232053159631493e+00 -3.0733070115234318e+00 -4.6179516654644992e+00 +924 -3.6400242052808864e+00 2.6555088717314179e+00 -5.0968798061086620e+00 +622 -4.1212822617707205e+00 -1.9331467070803932e-01 1.2124073421941655e+00 +413 -7.1488005935724708e+00 -1.2348479641146983e+00 -1.7783268549553402e+00 +504 1.0603602098763996e+00 -2.4919825202438837e+00 8.1618580167531052e-01 +685 7.7275802630148069e+00 -6.0707897984679260e+00 -3.5074542545331493e+00 +643 -2.1142208920469838e+00 -1.4188569075530311e-01 4.7173001434580975e-01 +331 9.2996875901661511e+00 -1.2844021912357564e-01 2.7065417677165802e+00 +1002 -5.8396947824453314e+00 3.2374790139187990e+00 -4.7847106121783662e+00 +788 -9.8360543797048783e-01 -7.1083192964428532e+00 -4.6809968029413378e+00 +499 -4.5541379315672520e-01 -1.2179984074469625e+00 -3.3585034114839041e+00 +667 1.8203567237075600e+00 4.8733062272499463e+00 -4.8191802408878965e+00 +303 5.7541001723625360e+00 3.1019979971740881e+00 -3.2455852596230192e+00 +931 -1.1886482900234405e+00 4.0126947932591568e+00 4.2729287018067925e+00 +684 9.6666972274298057e+00 -3.4457343658827879e+00 5.3199418108961227e+00 +486 1.0952309256837269e+00 -5.8030375484695074e-01 3.9173947664766695e+00 +657 7.1173408418848705e-01 7.6095307605709239e-01 -4.5471169330371053e+00 +1019 -1.6121541134308974e+00 4.6080769851625520e+00 5.2000105563584631e+00 +713 -2.3217100898584064e+00 3.7975023094314522e+00 -2.1179447328847161e+00 +980 -1.3040264359073093e+00 -8.0546938257733007e+00 -4.0882326350904030e+00 +666 1.8290931203752341e+00 -4.1042877740990122e-02 -6.7056461855680567e+00 +975 1.7094288660587136e+00 -1.7566709249705745e-01 -4.0241237898332667e+00 +34 -1.5466637892065211e+00 -2.7844539792612383e-01 -7.4165027852892340e-01 +129 6.9872867658619009e-01 -2.9055966444666650e+00 -4.3793424027951930e+00 +801 1.8012915638107692e+00 -1.9552662124538061e+00 1.9717443949231162e+00 +440 -6.3414145351266633e+00 2.6910434024661631e+00 -2.4795421734732912e+00 +451 2.0854239578439415e+00 1.7221145729482610e+00 -2.7117339352826098e+00 +1016 -4.2729933316680073e+00 2.2955174077237706e+00 6.5546727625677026e-01 +466 -6.8487820412373812e-01 2.7994145783216178e+00 1.9610264308067060e+00 +1267 3.2797196428209219e-01 -3.2738628978091473e+00 -3.0561228067637272e+00 +275 4.5191421551757198e-02 -2.2697185132741988e+00 4.6879197790720841e+00 +990 3.3477597593476668e-02 -2.8066437018963706e+00 1.7447103869303626e+00 +765 3.9195388520557102e+00 2.8667495327450756e+00 7.1230704443133890e+00 +367 1.1659351366267439e+00 -8.3012283790404956e-02 -1.7914067876502919e+00 +216 7.9416366303509847e+00 -2.3862530658265491e+00 2.1396367164199628e+00 +184 4.1972161204165044e+00 2.0707990767667508e+00 1.5287195997260536e+00 +695 4.6189921634534308e+00 7.8030868332294920e+00 -3.0978942222351544e+00 +946 4.9486571694963395e+00 -7.8410169571504873e-01 -9.8224197314486783e-01 +874 1.7466132669938736e+00 -4.6202569911728020e+00 -7.7539619910043136e+00 +527 -7.9214393107169079e-01 1.7879748049396393e+00 2.1323495231161447e+00 +284 2.1163557794895853e+00 -5.1341896684660415e-01 -2.3369133560727349e+00 +512 -1.0863657850552739e+00 -4.7484438805806706e+00 3.7092687771855135e+00 +541 8.5246339563854896e+00 -6.1709793712474292e+00 -8.1200870765958175e+00 +803 -1.6316981198973073e+00 2.9947644689694757e+00 4.2187889859619379e+00 +427 4.2193346539388559e+00 -3.7815361285885540e-01 -2.2628690905467863e+00 +1021 -1.8568055655805435e+00 -1.7269602740145369e+00 -4.7078048626978211e+00 +521 -1.9962829167306226e+00 -3.0705124458494732e+00 3.7189514697476369e+00 +389 3.6134293248962881e+00 5.3132742027231554e+00 4.8022297802779450e+00 +1428 1.7402605495589751e+00 5.2645531473807967e+00 -1.1645295389591857e+00 +663 1.7785166415833913e+00 -2.3366058002583903e+00 6.1054210764084029e+00 +755 1.2947244472804333e+00 -1.5765093979606688e+00 -6.3970786220160845e+00 +37 -2.1173256005721428e+00 3.7472618052056448e+00 3.0999335627498641e+00 +899 2.2030550330890133e-01 -1.2324597938565721e-02 3.6251564586060985e+00 +762 5.8333607735000559e+00 -4.6160138138361866e+00 -3.8890711063555958e+00 +138 -1.0969651089447874e+00 5.4113367061255779e-01 -2.4404301767141282e-01 +102 8.3393918005643955e-02 -9.8957660018885285e-01 9.6739199156084074e-02 +576 -1.6799062175600030e+00 -4.2706526545450290e+00 -3.3332485208324623e+00 +808 1.4149426545036496e+00 2.8349281931010544e+00 1.9684695332070388e+00 +518 3.8535621705436394e+00 1.6260979207142445e+00 7.1601593370177774e-01 +24 1.9049728561203820e+00 8.6541802324992789e-01 3.6678116529585467e+00 +3130 -1.7432013486043936e+00 -3.0658359106967339e+00 -2.8071596918261993e-01 +900 2.5288220049434544e+00 -1.2744195833995140e+00 2.3688511613428904e+00 +54 4.1726659595916287e+00 -4.6436995253306916e+00 2.8609763600447855e+00 +593 -4.3601974679442351e-01 -7.5891197818225580e+00 -1.6106040946723583e+00 +505 2.2913615028423160e+00 1.3481539197404997e+00 9.5582133625412369e-01 +155 1.5943881856876292e+00 -5.0119561373376449e+00 -1.9275318738198793e-01 +611 3.7597601631293407e+00 -5.3238205023194087e+00 -3.5057600193538119e+00 +128 -7.1996466245808965e-01 -4.6533674063837932e-01 1.0775350344107641e+00 +262 -4.7158873206481040e+00 -3.2774382958456454e+00 -3.4314049252932937e+00 +163 1.2564170848268690e+00 3.1907947878583158e+00 -6.3273045984737031e-01 +26 1.3715850050491867e+00 -7.0202256114470715e-02 -5.8522539753203011e+00 +783 -1.6482269102103975e+00 -6.3570766424137259e+00 -2.9277098788701408e+00 +923 7.8211365856123594e-01 5.1658101255679236e+00 1.1288495715414150e-01 +652 -3.0558854050802836e-01 2.8938601711548428e+00 -5.4694125632014199e+00 +91 -7.7336326292633673e-01 4.1359325043485944e+00 5.1123545614475638e+00 +569 -4.7036395784458618e-01 1.0483352024829564e+00 -3.9263800946113783e+00 +568 2.4974346964453904e+00 5.8341675592668496e+00 3.4418460519139686e+00 +448 -1.0742315446976840e+00 4.2902591568680712e+00 -2.9722492864667629e+00 +915 -5.1096079080757368e+00 -1.8154619112767647e+00 2.6298867975857781e-01 +1014 2.4050674496593087e+00 2.0165086650380375e+00 -6.9235648626574307e+00 +28 -4.3838301719380874e+00 -2.9017381747477722e+00 5.7432558998088812e+00 +718 -2.7686432277396329e+00 7.2002620343380661e+00 -4.5417535961668456e+00 +348 4.7604721853877949e+00 -1.0285741901083176e+01 -7.3394745225599030e+00 +1001 -9.6096255846312051e-01 1.8025960342129566e+00 -2.5883925199380942e-01 +330 -3.1672033923289518e+00 -4.3949994015174694e+00 -1.0105175858846643e+01 +812 -4.5914737050258907e+00 -3.4785989546687963e+00 2.3480000830664247e+00 +594 5.4293986378965844e+00 2.3597223692070646e+00 -3.3030185383907948e+00 +746 -6.7117126080948164e-01 -1.6952696809600041e+00 -2.7347581847427271e-01 +10 7.9611959044710812e-01 2.3586738360186141e-01 2.3554473123479998e+00 +127 -1.9368207712977510e+00 -4.2105063980028721e+00 4.1007506474229150e-01 +1491 -6.0145453947015213e+00 -1.8665301740897307e+00 -5.8373709943491736e+00 +545 5.2247030646693082e-01 4.2665632711917700e+00 1.3998362509948890e+00 +292 -4.0100647013546560e+00 5.5432078282366968e+00 2.7346552406222049e+00 +55 -5.0331755496940866e-01 -5.1474479997796809e+00 2.2840534818463696e+00 +506 -5.0878198172812432e+00 -4.7439472857676357e+00 2.5576916458015071e+00 +185 2.0061587083246031e+00 6.2832161267561277e+00 3.1202676439606316e+00 +392 -3.3730725343634682e+00 9.5308651948620438e-01 -1.6155721123915558e+00 +908 -4.2134722296771123e+00 -4.2309373932872774e+00 -1.5859874475395306e-02 +107 -2.3022095285110082e+00 1.4988145835968358e+00 -4.0114296992373166e-01 +756 -4.8590692491013743e-01 6.6059442704321669e-01 6.5942157943446400e+00 +784 -1.5203877167362685e+00 5.4245727910037178e-01 -4.3511800060796735e-01 +83 7.1765056063207155e-01 6.6391193571455731e-01 -5.0006201687407801e+00 +797 2.3749421201267453e+00 1.2291488011682137e+00 5.1943794891674759e+00 +909 4.5040762483701400e+00 2.1502304004670973e+00 1.0252202104148389e+00 +3787 -1.8008080999472098e+00 -2.3848480128447944e+00 -3.6694257800425689e-01 +830 -2.9761785095129873e+00 -8.1063744746951294e-01 1.1191689758471219e+00 +176 4.3886373357548498e+00 5.8928420058947184e+00 -1.2738667508461754e+00 +273 -1.7720657824357537e+00 2.0140074957663949e+00 4.0687819522994495e+00 +795 -2.3129156074529651e+00 -3.9729141741923848e+00 3.5461271562619773e-01 +546 -9.0810024137811762e+00 2.0539211092743432e+00 -8.4861531921369393e-01 +404 1.1607335740774860e+00 1.5482015707280925e+00 6.7056510393656863e+00 +327 8.9334164177275799e-01 1.6115506370120953e+00 5.4657215557321210e+00 +309 7.5086537666277060e+00 -1.7509341793599900e+00 -2.2570526357365956e+00 +587 5.6373266082939255e-01 -8.1224803452058958e-01 -2.8154679753556999e-01 +362 -4.3553683856468552e+00 1.0601216910593369e+01 2.2611832990075009e-01 +344 1.0690793758016139e+00 5.7623820635021961e+00 3.3162308442090986e+00 +232 -5.9701050105248239e-02 3.0768930609163818e+00 -5.8710762259173954e+00 +160 -2.9597831938389252e-01 -4.4960862843463030e+00 -5.4104090058094974e+00 +286 -2.3848210424854184e+00 -6.9004353039074218e+00 2.3276632591900857e+00 +3585 -5.6992646772088209e+00 -4.8206437416682553e+00 1.5579614151452652e+00 +385 -1.5902542213831139e+00 -2.4152447075527914e+00 -7.2997716835118158e+00 +358 -3.1014764829277336e-01 1.6772603901741298e-01 7.0074365077121543e+00 +802 1.1429989946502050e+00 -7.4388951204879661e-01 -4.5753167416826308e+00 +350 2.7083138134900436e-01 5.0030578783866444e+00 -4.9288572193271172e+00 +522 6.7544534980101956e+00 -4.7315460667039755e-01 -8.9893543168941414e-01 +454 -2.7276795647669734e+00 -2.2423988499800993e+00 1.9348873695343844e+00 +945 -2.2074959996750345e+00 -4.0937740126009503e+00 -4.4741259672394076e+00 +282 6.2018029365540361e-01 2.7764297118516326e+00 -1.3059547186852010e+00 +60 3.6493020545018200e+00 -2.5113205790013757e+00 -6.9650903924761010e-01 +231 -2.6579861034901491e+00 5.5052786208261395e+00 2.7281194073427186e+00 +110 -3.6604690247944141e+00 -2.5922989590009005e+00 -2.5260761844601598e+00 +349 7.3969174943923033e+00 -6.5650625263948881e-01 -5.7695515397934010e+00 +256 -3.3273368284644604e+00 5.4269367728841367e-01 -7.0608022151548777e-01 +82 1.2646216643424610e+00 8.2740352176550902e-01 -2.8537370462128431e-01 +894 4.2541907345612531e+00 6.0658181563422542e-01 6.9440281248954228e-01 +113 -1.8270359308604336e-01 1.3367155879041495e+00 3.2195888814731815e+00 +264 1.2505812882856082e+00 1.2111342213654031e+00 -7.0084215701080854e+00 +229 1.9042003496640952e-01 -1.3849042839983581e+00 7.8733274111346603e+00 +179 1.6838580326998349e+00 1.5504561763356390e+00 5.0052724321257918e+00 +858 6.5884500062987428e-01 1.0947436815620311e+00 -2.3159676054835017e+00 +780 9.0666668879802004e-01 -4.2909470768300233e+00 -5.1689880573262970e-01 +1010 -1.4921680988562822e+00 -1.0610491071231023e+00 -3.5520263512493604e+00 +807 -3.6527731615526111e+00 1.8550884636751364e+00 -3.3476781236025861e+00 +786 7.0698800722737182e-02 1.3530900160805086e+00 4.3894799877757634e-01 +315 -9.2994869658105184e-01 1.5698671243968094e+00 -4.6137401500402930e+00 +737 5.7292717108258684e-01 -8.8780213461618268e-02 -4.2643369384800911e+00 +137 1.5340678778712538e+00 3.9011624763575679e+00 -5.4570544854454095e+00 +460 -4.1818639002036999e+00 5.2864419392382800e+00 9.8840802156479268e-01 +490 -4.8101551585177829e+00 2.6371953064949905e+00 3.3489422009535987e+00 +1970 4.7260910007878720e-01 -4.4057774559176199e-01 1.9957198638522360e+00 +395 -2.0597812630454047e+00 5.8149597593121802e+00 6.8579643215995958e+00 +853 -5.3071459170728108e+00 -5.4201832371331840e+00 3.6290166690633203e+00 +238 -2.1969957065989365e+00 2.7140672490460624e+00 -3.2617083920626913e+00 +456 9.4606152228142026e-01 2.0837895306022008e-01 3.3870971576441011e+00 +857 1.2414338231304962e-01 1.8848978361830691e+00 2.9925365318133994e+00 +907 -2.5682911430118978e+00 5.6204017481952144e+00 1.3509232960471309e+00 +477 -7.8358013304125205e+00 2.3795366143617565e+00 4.3143376197303818e+00 +832 -2.0413728785686902e+00 -4.0441290571358302e+00 -2.8491813432105597e+00 +511 2.4501153530873068e+00 -3.3675643986449622e+00 -4.6628311389152897e+00 +122 2.1964745943735999e+00 7.4702365221781775e-01 -6.3494154664797153e-01 +1017 -1.3301808047886557e-01 3.3800138589400190e+00 -3.3064943086817871e+00 +958 2.8501511591267525e+00 -6.3606114801777265e+00 -6.2280166555726577e+00 +235 -1.0105537486766745e+00 1.6681874653552362e+00 -5.0678472279307014e+00 +721 2.4842909250697187e+00 -7.2695779766555626e+00 2.7020296181630794e+00 +891 -1.6307798584380573e-01 -1.6853395853690731e+00 -3.4469425259314881e+00 +825 -4.6178444777424117e+00 2.0912301562316720e+00 5.4468470375685234e+00 +441 2.3178406232515454e+00 -6.9689419720677730e+00 -1.3122743963350203e+00 +689 3.6974941928024871e+00 2.6017947423279439e+00 -2.2585379884577996e+00 +398 3.3156711155338026e+00 -5.1061515955741230e+00 7.9344475370686307e-01 +1185 -7.9027876127300656e-01 6.8360916956261997e-01 -9.6607593501635003e-01 +1020 3.5587063426158814e+00 3.7220504754527162e+00 -6.6987307559080200e+00 +544 9.4265267837337174e-01 -5.1882407611002996e+00 -3.9344686600952112e+00 +345 5.4563902588946611e-01 1.9811172817491847e+00 1.3332532500875969e+00 +52 -3.4834670284892035e+00 5.9620046380807903e+00 -2.8711025630373848e+00 +75 4.8465487307203610e+00 -1.4254536672512235e+00 1.6375849478661244e+00 +613 3.1341334624231156e+00 3.5196307285661872e+00 1.3464580964407327e+00 +420 5.5761544841345669e+00 -1.0453246209421152e+00 4.8387776591249727e+00 +249 7.2861347687396849e-01 -3.1486451219647273e+00 -3.0201307580530856e+00 +35 -3.1363663845183796e+00 2.5804789034716653e+00 1.8048579994362592e+00 +903 2.1101076478973102e+00 -2.8566054291376788e+00 -6.9841567392414623e+00 +609 -1.0987923417249383e+00 -4.6251295284357976e+00 9.1779680570393452e-01 +910 -1.2000905360006966e+00 1.1279203351592550e+00 6.1233600567012036e+00 +968 2.2698975912904973e+00 -1.0854118533316470e+00 -3.7940122874818089e-01 +452 -4.7325945781504446e+00 3.9948026673325283e+00 -5.9021506615407606e+00 +988 5.7150060513752809e-01 -1.3117878048919689e+00 -1.9645619160144336e+00 +632 -2.6732243671997096e+00 5.2898619066316419e+00 4.1046177380506972e+00 +89 -3.2936333009584602e+00 -4.4392344991068660e+00 2.3895772066960728e+00 +186 -3.7325499806607565e-01 4.3970237298064969e+00 -3.4335626403760133e-01 +472 -2.0741774399369759e+00 1.4874904331849836e+00 9.2153690214853223e-01 +224 3.2666203941898697e+00 7.8984690805444391e+00 1.6461064197559632e+00 +328 -2.4211440351057405e+00 -3.1397949029778176e+00 -4.9408435543917122e+00 +614 2.1656990615784051e+00 -5.5297883049649721e-01 6.7006078588575102e-01 +100 -3.8504070496025773e+00 2.3757509274034545e+00 -3.9000182371566612e+00 +245 2.1161444313165903e-01 -1.2312733985936295e+00 -2.4139861248371846e+00 +62 -5.7094557504236608e-02 1.7009345618482827e+00 -1.3586196523313283e+00 +647 1.7328789233539388e-01 -1.0135793864786147e-01 -3.1665633001948612e-01 +343 1.7148367830476903e+00 -1.9259385126025139e+00 -1.1605668005473229e+00 +276 -3.7376888287139165e+00 5.6221669099145863e+00 -5.5408548537782583e+00 +893 -3.9837016433532919e+00 -6.0591429550609055e+00 -2.2047010058939511e+00 +895 3.6051987205745948e+00 3.8947622870377998e+00 -2.9257678777470431e+00 +69 6.7863888143126339e-01 -7.3244344806287787e+00 -4.0275872195024105e+00 +809 1.5127615527121430e+00 2.3899773065762409e+00 -1.2041013638839329e+00 +836 -1.5521372872103121e+00 -1.9937221200493802e+00 -5.1993206757461810e+00 +98 6.9165258024886498e+00 4.7752055619200577e+00 2.9149722013938879e+00 +588 2.0482697048414926e+00 4.5999329746461788e+00 -5.0644751594723370e-01 +845 -2.7790058062644278e+00 -2.2313208362657631e+00 -6.0027430383223965e+00 +623 4.5062025883659445e+00 -1.8086508012361344e-01 6.1280313425633519e+00 +3511 -2.9072753839577525e+00 3.9366969837703092e+00 4.4206172477232197e+00 +294 -1.7645604913020028e+00 2.3629754736067317e+00 -5.9884846534562231e+00 +880 4.5885897262538577e+00 -4.8466242620523978e+00 2.6348686730047133e+00 +1008 1.5517488582976937e+00 2.8560759734710972e+00 -1.5615586975426439e+00 +750 2.5092570347419230e+00 3.5357137615515506e+00 7.7441643022822326e+00 +162 1.6932638389523913e+00 3.7723493251542126e+00 -3.6693179570315322e+00 +4007 2.7951797024112754e+00 -8.4703835187594689e-01 2.8815153458749804e-01 +359 5.1585144571667714e+00 2.5441119632444809e-01 2.4857756629342909e+00 +246 6.9502963175377075e-01 6.9695246066608441e+00 -2.9567094695410314e+00 +597 6.4785342129955892e-01 -4.6814115824553584e+00 7.2079191097451711e-01 +444 1.9924524775898209e+00 2.1260491479236596e+00 2.1912353968744469e+00 +950 1.8952118822780745e-01 3.2578041375162359e+00 -1.1670953825523873e+00 +165 3.8613026955948730e+00 -1.9103488154262993e+00 5.1537598885027718e+00 +203 -8.0824458571753297e+00 -2.4288375916928606e+00 2.4228826137984555e-01 +822 -3.4169448674352556e+00 -5.6970342521730155e-01 -3.5434259892713653e+00 +759 -3.4423890553587397e+00 2.5145842954839048e-01 1.0930199535909955e+00 +108 1.4804256542499301e+00 -1.6943556974484899e+00 -4.7000942040164118e+00 +726 -6.0087048169843964e+00 1.8607073508511123e+00 -2.1717230036404866e+00 +897 -6.4728079940438972e-03 -4.8734894310600021e+00 2.2610142364121413e+00 +79 -4.3038237553380352e+00 -6.7101024177004776e-01 -2.8105143093058094e+00 +610 8.5639359446978192e-01 -6.8174835155761082e-01 4.8981469842318885e+00 +494 1.4347242355378746e+00 -2.0476189548878185e+00 3.1926103663972740e+00 +407 -2.3601995934036157e+00 -2.0034656073813299e+00 1.2091175312116895e+00 +671 -3.2914918615937522e-01 -6.6647855111478027e-01 -3.0378297282294926e+00 +307 1.4706448056829486e+00 -2.6881659298924316e+00 1.1848283211487964e+00 +403 -3.2395119936282413e+00 -1.1181076855324095e+00 -1.0245144420086230e+00 +212 -3.4245868025556119e+00 -6.9103877639104603e+00 3.7269439719131774e+00 +675 2.4317722721002908e+00 1.6514811550351098e+00 -1.4620731048377851e+00 +372 4.4120418077732104e+00 -2.1764601806798054e+00 -2.5496324567997766e+00 +354 -3.9973019675699177e+00 6.3894211020494067e+00 2.7370361940318784e+00 +734 -3.3347148326639808e+00 1.9594009812865696e+00 3.9376184379918383e-01 +519 6.0036217288132789e+00 1.2953036997775957e+00 -3.4844542816279325e+00 +120 5.6051554476854548e+00 -1.3867309833682697e+00 6.1553981073058162e-01 +629 -3.3771308365592958e+00 3.8896935585933075e+00 1.0162012941087255e-01 +405 -1.2816027435766937e+00 6.5608772333124266e-01 2.3018952343324957e+00 +322 2.1113864361558718e+00 -1.3670904924792597e+00 -1.1131899464733299e+00 +733 -7.1333353332236982e-01 -8.2188624631139440e-01 -2.1209678451355476e+00 +595 1.0662735248740198e+00 4.9308363067763022e-01 -1.1877863826413655e+00 +501 1.1503607535033242e+00 -4.8463491863897379e-01 -3.3859714008536979e+00 +3495 -3.3814239969156832e+00 4.0655168894615645e+00 -3.6379931570649942e+00 +90 -2.7621148106483888e+00 -4.6227275413366327e+00 8.8799851228506832e-01 +791 -4.1905557430702578e-01 5.9017132855587224e+00 -2.3942587348241582e+00 +763 1.5481858001743995e-01 -2.0296273375270015e+00 -4.1741101730758663e+00 +313 1.2227940903187844e+00 1.6174477234227018e+00 1.9801152998098519e+00 +606 -2.1728711013045601e+00 3.9638173803701515e+00 -7.2731642823770732e+00 +916 -2.4472753568950272e+00 1.0187268205674658e+00 -6.8949775339512023e+00 +109 -3.0717933369503956e+00 3.2915487620436495e-01 5.1776290214529350e+00 +516 -3.2006768073205563e+00 -4.4529145710895701e+00 4.6625117512469538e+00 +268 1.0084684783498343e+00 -3.9001073028977604e+00 3.0695671035119743e+00 +308 2.6795550620753201e+00 2.7760137587044658e+00 3.1825905912839634e+00 +655 2.4039555939642856e+00 2.1190251182262605e+00 -4.3351179856337927e+00 +549 -4.7757755358838244e-01 5.0577929107835304e+00 -3.8015020599878011e+00 +725 3.5530109977385229e+00 -1.4878390930319614e+00 -2.4036913796226544e+00 +258 -3.2303389092990700e+00 1.8204267496007733e+00 -3.1800313257763063e-01 +3942 4.9161417156378091e+00 -1.7060576414420250e+00 1.5341707725377496e+00 +934 2.2493606746901156e+00 7.1141003704101902e-01 -1.4736740120288458e+00 +757 -5.4348143381812521e+00 2.8091895894903169e+00 -8.0573752698226482e+00 +864 -5.5090763750192684e-01 -1.8427622016922522e+00 -1.2011755616040531e+00 +901 -1.2306493318402880e+00 -3.0218685126143665e+00 7.9457902298005834e-01 +715 5.1773608147814487e+00 -1.8259372004935415e+00 3.7710163585181431e+00 +136 -8.5874864322826605e-01 -1.3227381007363641e+00 -3.9524379011970817e-01 +628 -1.8803791993704588e-02 -2.9683444954191001e+00 -1.2287145746174593e+00 +374 -1.9296294085865948e+00 -1.1213178922620215e+00 -1.1925118842259281e+00 +660 -5.0714354598828688e+00 -1.2842335566361456e+00 1.9347499162636512e+00 +582 -2.3639124087524750e+00 -3.1960481900060724e+00 4.4764903052226118e-01 +418 1.9121899135008218e-02 -1.6380804930703889e+00 8.6395567568342848e+00 +810 4.1847784716763927e+00 6.5398994795486356e+00 -4.8472079254885720e+00 +624 1.8861858481055760e+00 4.4132416641389138e+00 -3.0701035225658212e-02 +867 5.8349864256380437e+00 -2.0001139876459346e+00 3.0234414142444415e+00 +85 7.6522629492857777e-02 -5.1260759200830410e+00 3.6443043045495958e+00 +439 -2.0736170935683407e+00 -1.9314419292395804e+00 -2.3688010568377416e+00 +147 6.2201836941375586e+00 -6.7676772645132557e+00 1.9853541273530200e+00 +1022 -2.2989881934328080e+00 -1.1886238759917600e+00 3.1126428471516476e+00 +437 -5.1883009628696319e+00 -3.6740491921251919e+00 5.3491879960655160e+00 +240 5.2706900949534905e+00 5.0875239390549503e+00 -2.3060154420384280e+00 +1489 -1.1334188030703929e+00 2.6748060054115008e+00 -9.9865061273765021e-01 +764 -1.2992498933866747e+00 -2.3386497806045838e+00 -2.4550478755584568e+00 +3548 1.6594915208091920e+00 -2.5347848032561893e+00 5.2918689352909780e+00 +806 4.5319020609270888e+00 -4.3851771628553715e+00 3.4394301348373251e+00 +796 -2.3120550823532864e+00 1.1151330580071532e+00 -5.0084703376938462e+00 +3985 -6.3045656546249464e+00 -4.8605353094418258e-01 5.4050021879201404e+00 +356 3.2787847876764036e+00 2.9698635321165625e+00 -8.8525025169203508e-01 +1810 -2.3442834154278547e+00 3.3571617782471308e+00 -7.5715186510315062e+00 +1015 9.2987056281593428e-01 -5.7059886498332499e+00 -4.5220228448846944e-01 +397 1.3559876028336140e+00 5.5134188002912303e+00 -2.3368710821473777e+00 +697 1.1438391641670755e+00 7.0365594215588603e+00 -8.9382979943726115e-01 +833 2.3118563845618532e+00 -2.8825011721151523e+00 2.9825384912008648e+00 +599 -2.2567017281040407e+00 -6.6721127048866231e+00 -2.7308990682196352e+00 +87 -1.9656948972690547e-01 4.4665156780122306e+00 -7.0145164650778924e-01 +207 -6.5201231927401118e+00 3.8423120409600577e+00 -1.4028614675644429e+00 +428 8.1091811650604873e-01 -3.1754509317847166e+00 -2.0582101211197728e+00 +1778 -4.5742529517727402e+00 4.6472487050607603e+00 -2.7275614940100543e+00 +376 1.6969895021788777e+00 -5.0094473624761697e+00 4.4850890482567891e+00 +126 -5.7957040121536263e+00 3.4282379777028473e+00 -1.9787125466672377e+00 +200 -1.4229179925227382e+00 1.5717914160432092e+00 4.0857387802339478e+00 +532 3.6492687438557465e+00 -4.2147789599443639e+00 2.1641814705580709e+00 +209 1.1250304069078982e+00 3.8341015621643217e+00 3.3451791382180018e+00 +842 -2.7702765296992093e+00 1.3557519319508238e+00 1.3227958968784033e+00 +370 -6.1249473290277621e+00 1.6333377867863368e+00 4.3337558749048091e+00 +951 -2.6822412392584485e+00 1.2651114935401040e+00 -2.5429125950076377e+00 +384 4.8419105343232891e+00 3.6224889079731010e-01 2.7746414240263557e+00 +158 8.6756181004381694e-01 -4.2311550251362817e-01 -7.9826212573205180e-01 +228 1.0549336432837984e-01 8.3797759851616949e+00 1.2485576457978953e+00 +3150 -5.2867457773323761e+00 -1.1425109837004053e+00 -3.5174950086572139e+00 +1329 -1.1897986854990628e+00 1.5242295525013508e-01 6.3965785068400356e+00 +870 4.4781538797156815e+00 -7.9039212944480912e+00 7.1642253678998069e-01 +22 1.3220024316501144e+00 6.6014126743434014e+00 -4.4119297983825954e+00 +873 3.4016285095151431e+00 -6.4823089309379318e+00 2.0757404650729860e-01 +7 1.8522674862631321e+00 -1.5818985006802988e+00 -1.9242206545111322e+00 +318 -3.6742363694447877e+00 2.7120211532544367e+00 1.2621304808064249e+00 +400 2.5185590087388671e-01 8.0602376831860134e+00 8.2078668713554350e+00 +3597 1.3614281089445472e+00 3.2137927822949015e+00 -1.6457239564188735e+00 +559 -1.4043781607598569e+00 1.7579390549837162e+00 1.4604597329515956e-01 +465 3.9150137476116660e+00 -3.6458844538822435e+00 2.0333860431272797e+00 +378 2.1460303477424278e+00 3.8367304244401810e+00 2.8680931057108308e+00 +3 4.0438959979516795e+00 -3.6482732378488154e+00 7.7805931887421869e+00 +1170 2.7452082308254848e+00 7.3368479848731094e-01 8.8737024184931190e+00 +3535 -2.1955544998732393e-01 -9.5988992783566596e-01 6.2483942798870251e-01 +172 1.1342262585668055e+00 8.5982867095212268e-01 9.0257513477062901e-01 +524 -2.8008259928166129e-01 -7.6394953560400456e+00 3.7781636527560503e+00 +1251 -3.1207515863505830e+00 5.7172545542570863e-01 2.6903065834316791e+00 +204 5.4057944574707406e+00 1.6617686571546542e+00 9.8791873519604417e-02 +877 2.5727450372190939e+00 -4.3687244410295901e-02 4.1266936940870896e-01 +1313 -6.2954413266107236e+00 -6.4304870827405018e+00 -1.2842877713338043e+00 +686 5.0131721224574486e+00 -8.8079108178676613e-01 -1.9785149434978573e+00 +306 1.2570450576253431e+00 -3.2995354246759074e+00 -4.5060408423812017e+00 +432 -3.4899727932070372e+00 -4.0992214629881412e+00 -2.2530254856922496e+00 +423 1.7948677232320267e+00 -1.5660516485856149e+00 -2.3446441200376129e+00 +1003 2.1175667077662494e-01 -1.6751712674507830e+00 6.0165088033065341e+00 +3159 4.4759610726830656e+00 9.3241491740416116e-01 -4.0534181968222764e+00 +966 -1.2901804323591544e+00 4.0742218333966544e+00 -4.8960182227932787e+00 +88 -3.2566183951775147e+00 4.4309315124066808e+00 1.6043274584386136e+00 +1154 -1.9403198236640227e+00 2.4079814731074740e+00 -4.0875086567840970e+00 +462 -3.1984021083447396e+00 4.2802717101282877e+00 -3.2012194890312680e+00 +630 1.3000603212168387e+00 5.6019465597520188e+00 5.9545881902330464e+00 +754 1.4038805713718716e+00 2.6484241643040352e+00 4.5210496005104650e+00 +51 1.8965260887351687e+00 -7.9730947421093235e-01 2.4455565591332940e-02 +878 2.7832704584024531e-01 8.0020875274781904e+00 2.9223933345751814e+00 +1762 1.5438726548566741e+00 -2.1881699441038585e+00 -2.6707325263843779e-01 +566 1.7151467188760505e-01 -2.5304666840773598e+00 4.6619213891945552e+00 +449 2.5995404881946271e+00 1.6435312989230824e+00 1.7176721752572817e+00 +4 -3.9319945662894420e+00 1.7330108106030545e-01 5.4509825287255449e+00 +850 -7.1334468942519473e+00 -5.4656608781658793e+00 2.3996586415835428e+00 +772 -9.3316232298782831e-02 1.3722813407899805e+00 6.0507397561210741e-01 +683 -4.6846800886921119e-01 -2.0700672613075413e+00 -1.6724025218848264e+00 +954 -2.3452315993379433e-01 4.4544173206631410e-01 4.0709029238159521e-02 +489 -8.0815340259422612e+00 3.5560689113580528e+00 1.0366252274030775e-01 +269 -1.6129582207448121e+00 2.9233612161800417e+00 -1.1081406830712239e+00 +902 1.3510041960963721e+00 1.9374751072220344e+00 1.5390135009894930e+00 +475 -2.5013710072780229e+00 3.5383317974642288e+00 4.6040457347385990e+00 +300 -3.8441322728496639e+00 2.8656770883469990e-01 2.5920777025174035e+00 +236 -5.0324596190835322e+00 -1.0217228135095064e+00 -1.6059124871154040e+00 +987 -4.5900281829860052e+00 -4.0334852349698949e+00 3.6768182285865629e+00 +323 -3.7693138226856546e+00 2.3464005370915073e+00 -9.4155543577855560e-01 +293 -3.7722911832528743e+00 1.6287087476940647e+00 3.3600769850124355e+00 +940 1.9802353665930994e+00 4.2311763412648185e-01 -1.8920368509162224e+00 +291 -1.6804587193668816e+00 6.9149704005099133e-01 1.8332106577856069e+00 +673 4.5139516516570516e-01 -3.4071356819199865e+00 3.2214877170238965e+00 +104 3.6264151477846189e+00 4.3578351804604996e+00 1.0160527750225299e+01 +447 -5.6781795819975773e+00 5.1446641238539961e+00 5.7141202811071530e+00 +219 1.2877245581791652e+01 -4.5910077201682506e+00 -8.7614742755139396e-01 +206 4.6604296912760725e+00 -1.7313236413025215e+00 -1.2216481364786742e+00 +708 -5.2664132176855460e+00 -2.6000831837127421e+00 -8.1054559914584745e-01 +3615 1.7203039612928264e+00 -7.7233469901602958e-01 -3.6532362593565511e+00 +789 2.3670828388889666e+00 -3.7515090425620290e-01 -5.7114561142342657e+00 +3220 -3.4255580392590672e+00 4.3113564861888243e+00 1.8008712136196003e+00 +295 2.1162845115813478e+00 -3.8541145006660562e+00 -1.4854066768253595e+00 +740 -5.2183930971577464e-01 3.5728085218196148e-01 -2.9252217430231813e+00 +672 2.6699423586793651e+00 1.5196910431788218e+00 7.4403028313504649e+00 +991 1.4537714561718384e+00 1.4404618170603731e+00 2.3410276969281814e+00 +319 -5.1353666981351234e+00 -8.5146024063944878e+00 -6.0587179853108852e-01 +962 2.1070280824331835e+00 6.3562964334557055e+00 -7.5070548359011937e+00 +932 1.9892537600813944e+00 9.6289918271615349e-01 -1.0419124883372743e+00 +911 -5.2726067155914551e+00 6.7310092434271684e-01 1.9866732253916022e+00 +3829 -3.1845809347309162e-01 1.3772881404815460e+00 -2.4531440717453439e+00 +724 8.5127491671315503e-01 3.3329581807633781e+00 2.5971801013498168e+00 +558 -3.3205191515468269e-01 -1.4094148037790826e+00 4.9323603505296107e+00 +688 -9.7498380935881335e-01 -4.2120139911219212e+00 -2.1546692166327022e-01 +743 -3.7186051061487158e-01 3.4317510044041661e+00 1.2088406023432055e-01 +957 -2.0307954925065781e+00 -1.0433201418771768e+01 4.1179371571831300e+00 +514 1.2036565522033331e+00 6.0282167449962420e-01 1.0484940307487214e+00 +11 1.2096871447266972e+00 6.6794523079723769e+00 3.2340680200454480e-01 +332 5.6779886194836999e+00 -2.6935994327519226e+00 1.7566754988035091e-01 +415 2.9737369581203783e+00 -5.6135305935172619e+00 2.5737247475181757e+00 +68 -3.7769055191163963e+00 -7.6765572729688855e-02 -4.6017289973642681e+00 +879 -5.1931425777587208e+00 4.8754385376028795e+00 -4.0541659065289597e+00 +699 -2.7401147389332570e+00 2.5083672506841146e+00 -4.1508751225647655e+00 +906 -1.2751166584691631e+00 -2.5453321764910060e+00 -1.7796491418818183e+00 +1713 -4.5010798601122932e+00 4.5151319708492663e-02 -2.8507393668679692e-01 +3198 4.0438850123090795e+00 -4.1309851832060041e+00 -3.6653738908089091e+00 +1283 3.0763463315509734e+00 -1.5702024690371443e+00 -4.7348689131766825e-01 +1746 -2.4840282577528350e+00 5.0429896505137730e+00 -3.8794412527414632e+00 +183 3.4301042645816433e+00 -8.1033927375547501e-02 -5.7590241964888849e+00 +555 5.8405845433344012e+00 -5.6832203714287592e+00 -2.5844712903713054e+00 +140 -3.1951379222698244e+00 -4.2372545853078805e+00 5.5998678503402184e+00 +3133 -7.1076952458331788e-01 -3.0738092116266373e+00 -1.5353216650795924e+00 +748 -8.0234900691055611e-01 6.3464520989385313e+00 5.4440961680681710e-01 +459 -1.3184395145072036e+00 -1.2564634028148698e+00 -1.2634226200351941e+00 +816 5.1764699245403660e+00 1.1379660417569097e+00 -4.2884276823444623e-01 +679 -1.1241201720082505e+00 3.7237970888370890e+00 -6.5566599412092041e-01 +208 -2.2871972681871950e+00 -7.6320484507949193e-01 -5.4381283062778287e+00 +1250 -1.8590627216614515e+00 1.7634174219139243e+00 1.1860179764780605e+00 +542 2.5009638385132869e+00 2.9518363144499178e+00 -1.9572635839740939e+00 +5 7.5507036136705163e-01 1.3775507611600144e+00 1.0438857253279761e+00 +986 -2.9641915544623822e+00 -7.6424535863150733e-01 9.2092887172835458e-01 +1266 -6.6159154843733674e+00 5.0268749515205382e+00 -3.4924683068208000e-02 +321 -2.1661821738609133e+00 7.0396939265494325e+00 -1.1645060274197514e+00 +984 -6.5450908820906122e+00 1.5511061732721965e+00 2.7553037075054188e+00 +1361 -4.9345480421177275e+00 1.3597405546110528e+00 7.0059649929954713e+00 +27 -2.7896735422775953e+00 -1.0944599085551743e-01 2.0073048135317699e+00 +493 1.9105623277058710e+00 5.1610677072991376e+00 4.7945347448731006e+00 +197 2.0859362797860601e-01 -6.8309055526413165e-01 -2.7230470354184080e+00 +425 -2.4520393838129246e+00 -2.1684719020157486e+00 -2.7887978949346945e+00 +840 3.4630094851170141e+00 -4.9928074947419659e-01 4.7893041318889127e+00 +283 -6.1687531076586644e-01 2.4968488923788166e+00 -6.2109417753330365e-01 +967 -5.6859531054049395e+00 -5.7929631511040993e+00 -3.7813332960621460e-01 +882 3.9595598472557079e+00 5.8301121966143743e-01 -1.8520568565813227e+00 +56 6.7584910519248238e+00 2.7932293476169159e+00 -2.9278861129638725e+00 +360 8.5386386805715375e+00 1.7308317788748646e+00 2.5051074262506234e+00 +3219 6.0232719198149076e-01 -1.2591628064120834e+00 -1.2738670647347838e-01 +515 8.0321669728702645e+00 8.7381966866961545e+00 5.3957246615896859e-01 +1362 -2.4898502951807777e+00 -3.0833980382693840e+00 -2.7374397464388434e+00 +317 -1.0014588038102983e+00 -4.4128365629885531e+00 -7.9277226252094311e+00 +42 2.0504871464449868e+00 2.8644409089273433e+00 9.1077504081417204e-01 +578 -1.8449477899867242e+00 -4.5426762405222404e-01 4.3249196542908033e+00 +928 8.7124711620015685e+00 3.0508076928573171e+00 2.6268508485021207e+00 +131 -3.1916791399842048e+00 9.2719511913024499e-01 -5.5057020441086291e+00 +3084 -4.1569515350661606e+00 -4.2969744207279907e+00 6.3890623506665939e-02 +798 -5.5519062558869887e+00 -2.1929719946075479e+00 1.2151038875495648e-01 +152 -1.9208045394818746e-01 6.0910874394324277e-01 -2.6577780055226463e+00 +342 2.4876834246409780e+00 -3.3932176733307537e+00 -4.9232183850686848e+00 +654 6.6304620580261462e+00 1.7958758888452020e+00 4.8606800422558329e+00 +722 -1.1504893902826203e+00 -1.5717004219351567e+00 -2.4346588035372316e+00 +1249 -8.7385668515257180e+00 1.2935054697077863e+00 -2.0165968407403170e-02 +617 -5.0507799914925078e-01 -1.1171557086793840e+00 2.5901801526584700e-01 +76 6.2580882589649152e+00 -8.5071033305233978e-01 -3.0096781387158267e-01 +694 4.7530652424511177e-01 -1.2084614724991150e+00 4.8083866128166157e+00 +96 -2.9846985569193167e+00 8.2312828049823006e-01 -2.0170918653626329e+00 +227 -1.4666989309565803e-01 5.4713383067717354e+00 -6.7925820127779808e+00 +329 9.2824377744808562e+00 -3.1795335047758684e+00 4.6486926813113694e-01 +1186 1.8040114476084681e+00 3.5459232652207642e+00 6.6231208890203623e+00 +476 3.2199615269467605e+00 6.8925852432826993e+00 -9.6037665710581610e+00 +279 -1.9384504426860114e+00 1.6663207021554174e+00 8.4825541591879432e+00 +575 -1.8012552513922975e+00 2.4639126113444787e+00 1.7478058590460779e-01 +1005 -6.5029016347271975e+00 4.4850875608029490e+00 -1.7741372934713475e+00 +115 2.1523150200313576e-01 2.8508224990672537e+00 -6.6067168088036379e+00 +709 2.6414934340129337e+00 -3.1519817893155794e-01 4.1940700831510709e+00 +590 -1.9414561613652792e+00 -4.6432604256571590e+00 -5.4413113775012047e-02 +1426 1.9044689310802287e+00 -2.9383770944160483e+00 -4.2619399795534800e+00 +488 -8.3907744783235438e-01 -3.7558130619546071e+00 -3.2475935359373431e+00 +625 2.1416413028022787e+00 -5.1042787845954578e+00 -4.4494576677452944e+00 +213 2.4410576817472465e+00 1.8030567403648781e+00 -1.8674464096933563e+00 +735 3.7915988578658899e+00 1.0414192294469016e-01 -4.3817940555896326e+00 +265 -4.7810338173990452e+00 -1.8524772879002624e+00 1.7050129191374910e+00 +391 4.5286249954339235e+00 6.9839964040196734e-01 -3.3062009685133003e+00 +999 -2.8933454887842975e+00 -3.7465398982906661e+00 -1.2560405359327904e+00 +598 1.7987748173502857e-01 7.9414412253967914e-01 -2.8781418046458445e+00 +453 -4.7255104422703056e+00 5.0942212906118611e-02 4.3691350551940076e+00 +287 4.0845007648110245e+00 1.9869797768422564e+00 -2.5806001298015722e+00 +119 -6.6179710732126446e-02 -2.6704083054674355e+00 2.6670475123254413e+00 +538 -1.8322398241217808e+00 5.1923317316741646e-01 3.0874241070009352e+00 +554 1.4080700563744639e+00 -4.3425013081696626e+00 2.7590695730258710e+00 +1427 -5.9812220040257857e+00 5.3416410520574749e+00 3.0629940213417508e+00 +4060 -1.2972150927009380e+00 -5.7906253982650124e+00 -1.6614252903096776e+00 +636 -2.5029315150360548e-01 4.3587413541036568e+00 6.6395760808086779e+00 +714 1.9089589732111947e+00 -5.4720196647148480e+00 -4.6602825440690254e-01 +1377 -7.5605857103717722e-01 -4.5710314817861049e+00 9.9500526864184611e+00 +125 2.5195760824914442e+00 1.1594897188524573e+00 -3.4834225515388639e+00 +431 3.3506520459991993e+00 -4.9436424848690080e-01 2.6342786463722687e+00 +40 4.4637966448059130e+00 -7.1423679562285924e-01 -2.0449009107051972e+00 +885 8.3156212789790163e-01 -2.9517939418919679e+00 -2.8730195320911839e-01 +669 4.2906997698899090e-03 6.2636425957151554e+00 -4.0248796294958069e+00 +468 -4.5946442152573752e+00 6.9896477074419405e-01 3.4069904032378777e+00 +47 -1.1161799297024508e+00 -3.5273348070625441e+00 -3.8733246289597472e+00 +650 -3.3632774509713532e-02 2.4358282402688900e+00 3.2469960623335301e+00 +211 -6.3959876769277735e-01 -1.9200866876587792e+00 -7.5613769460813076e+00 +1986 1.1049021045823360e+00 5.8659411134218837e+00 8.2732736652995076e+00 +386 -1.0495276103052642e+00 -1.5298425975871568e+00 -2.5615745429088865e+00 +728 4.7949875242669080e+00 -7.8109089338469040e-01 3.2699614993790277e-01 +1458 1.1278693166283584e+00 -6.7055625210967540e-01 1.8125601231434307e+00 +412 1.9521777582595274e+00 2.2339924273704361e+00 2.7034280263653159e+00 +751 1.2742113483298279e+00 5.5906691084606850e+00 -5.0240564230732341e+00 +1714 2.1303713706489078e+00 3.3515147249919290e+00 1.9687067126884168e+00 +166 -1.7249752875852509e+00 -2.6589898257890647e+00 8.6292330694235186e-01 +67 2.1026624049325313e-01 3.5410353197315110e+00 2.2054818711863762e+00 +692 1.4494635619839018e+00 5.8351202217390190e+00 3.1484038546568827e+00 +151 -3.6895693842451233e-01 -2.0989344815481030e+00 3.5342142807885297e+00 +1124 -1.1633954830501425e+00 -3.0985463893854388e+00 -8.2886270313667831e-01 +1315 6.3551689905960274e+00 -2.1767829743379825e+00 2.4786405604840138e+00 +935 3.8904389929005072e+00 -4.7812753318448458e+00 -1.1141838167910330e+00 +1105 -1.2628198967007052e+00 -5.8367742106123917e+00 1.8900032684855002e+00 +446 1.1089185918889397e+00 -4.5786885772310804e-01 -2.9459553127085279e-02 +3868 -8.4291172738223674e-01 -7.5536336272299627e+00 6.9556130667878435e-01 +3276 -9.5434677980870031e-01 8.2304054243246949e-01 -4.1300828207439094e-01 +434 -2.2095318537796658e+00 6.2793442477860788e+00 7.6182146509894566e-01 +1443 3.8600343507395509e+00 4.3170223792917097e+00 -1.4724913673194044e+00 +3922 3.9000373414071987e+00 9.3774954962893222e+00 3.3376066558564763e+00 +926 2.5427947681750784e+00 7.4445567881964603e-02 -2.5270461676502451e+00 +298 5.3766873180158803e-01 -1.3666948393317446e+00 3.6627328248101931e+00 +3448 3.5777150504598985e+00 1.8825265272073545e-02 5.8839922595174698e+00 +1043 -3.5471702087757118e+00 1.1827554327499450e+00 5.1639220076204717e+00 +1033 6.1738281918879965e+00 1.5290765801194513e-03 -1.7139848215081290e+00 +1927 9.4939901520939063e-01 -1.7781810346658364e+00 -2.5093193865509678e-01 +1799 -7.3760254538031234e+00 -1.1371348175107938e+00 5.8177478577152753e-01 +1029 6.4235009901801448e+00 5.9667514182468917e-01 2.0819522895177522e+00 +1511 4.2033802184721152e+00 -3.3199938987801674e+00 -5.0869587496631548e+00 +1510 -3.6568050541481578e+00 2.8451027015855213e-01 -4.7188634613626048e+00 +1509 -6.4650838290409665e+00 2.6465553497631840e+00 -1.4335786488183114e-01 +1508 -6.8203835278708151e+00 6.7299129632996824e-01 3.4632224709750110e+00 +1507 1.3117934523283798e+00 -2.7043507210068696e+00 8.7086203692911301e-01 +1506 -2.3066256311616793e+00 2.8576557463252130e+00 3.8958651957052419e+00 +1496 -1.9186377288171244e-01 -2.2074328724192336e+00 -3.8447985855073905e+00 +1495 1.4694215665407029e+00 3.5499688928606608e+00 -2.9395430905750879e+00 +1494 2.0810694880294047e+00 -6.6336806338030359e+00 -4.8974717488137476e-01 +1493 6.4416887352930630e+00 2.4849766849427368e+00 -1.3297782026479077e-01 +1492 -2.6065041754409540e-01 3.8467001679989119e+00 1.6944188390736565e+00 +1923 -3.7367535618033259e+00 2.1725435634949477e+00 -2.3205256761702833e+00 +1425 -6.5750377219201841e+00 -5.8723742365496907e+00 -7.4429754343098842e-01 +1842 1.6371629998001467e+00 1.5315280635951050e+00 4.2261245866259953e+00 +1522 3.7481868988614160e+00 8.2818888488624798e-01 5.8765588096014475e-02 +148 1.1782107749796269e+00 -4.9961605968870559e+00 -1.2760861815887630e+00 +1797 -2.6231625503686056e+00 1.9124852177269704e+00 -1.7303402310422603e-01 +1480 1.4019317263149222e+00 2.8731617134683951e+00 -4.3766404781617387e+00 +1524 -3.3469610406942043e+00 1.8974901823900092e-01 2.3458388972635227e+00 +1478 -3.3555550476419156e+00 -7.5469456433788407e-01 2.3140473174375336e+00 +1525 1.3133093392432766e+00 -1.8968345916530691e+00 7.9406512343631945e+00 +1476 -1.2324793859262000e+00 -1.4610433267996223e+00 -2.7739824560768223e+00 +929 2.2918549328753990e+00 -6.3074789006036958e-01 3.9199515167391823e+00 +1465 -2.2510577066302706e+00 -5.0712499773953768e-01 2.3493189675201509e+00 +1464 -2.1737719837577578e+00 2.8339366492770939e+00 8.9252072584060393e-01 +1463 -3.3382787358021639e+00 -4.0846612705246016e-01 -4.5886722392847581e+00 +1462 -1.8507312211316991e+00 -4.2128007765027116e+00 -7.0861615298025660e-01 +1461 1.5680227461714529e+00 6.3289412434090597e-01 -2.7409552139307949e+00 +1460 -2.1176227258402855e+00 -2.9325434597389419e+00 4.0368198566888683e-02 +1459 1.7059762883393044e+00 5.7527767210175940e+00 3.0074532808605137e-01 +49 2.7352148851277289e+00 2.1362095981142573e+00 8.5198243960862485e-01 +1449 -5.9360694557047502e+00 4.1662337730391448e+00 2.9613599420603718e+00 +1448 2.9090216353920590e+00 3.6646184193845626e+00 -1.2180660167921809e+01 +1447 -4.7331267546674463e+00 -1.1529616773505535e+00 8.8375315608263261e+00 +1446 -3.8383305932045908e+00 -4.6089006033939475e+00 -2.7713246949689001e+00 +1445 -7.7946676717483387e-01 6.4114270231189279e+00 -1.3118790794358239e+00 +1444 3.8361888775669488e+00 2.1440991507919116e+00 2.2677113076756532e+00 +244 1.1702153534974953e+00 5.6833221224114283e-01 -1.6272549448543852e+00 +6 -2.1844364934353395e+00 4.6636944889553584e+00 9.8978947997502136e+00 +1433 2.2500877217631552e+00 1.4074510019747961e+00 1.6224655414100853e+00 +1432 4.9305873922608807e+00 -7.0025196614259921e-01 -1.7292539127189317e+00 +1431 -2.5367992542966249e+00 2.0230879637088584e+00 8.8633479974867102e-01 +1430 -4.3375789630230921e+00 2.5346339510070131e+00 -3.1295280130467273e+00 +1429 -1.4648760337115296e+00 1.3557047973795515e+00 4.3622758807819499e+00 +338 -9.4675301550835371e+00 2.7010483728330686e-01 -4.2909012567678977e-02 +1650 9.7505142280303192e-01 -1.1469355810583723e+00 -2.6178387101009939e+00 +1394 2.6032529882634856e+00 1.3548464291853457e+00 -5.8832080198826231e-01 +255 -4.0669685982845092e+00 2.5016885459382179e+00 8.1676649834385699e+00 +1526 3.2361787741779029e+00 -2.9785775625643081e+00 3.4599232013437903e-01 +1527 -7.3766849870514595e-01 2.3805491328881492e+00 -3.6415754675589884e+00 +1528 -1.5470125271170845e+00 3.5583939023349104e-01 -9.1855032601350972e-01 +1416 2.0766078731932880e+00 3.0330566068105389e+00 -2.8048758933479703e+00 +1414 1.3994649976795719e+00 -3.2145860960852430e+00 -2.8829498157287099e+00 +1412 -6.2411674450042243e-01 -3.8990337164918882e+00 1.6195642154111980e+00 +1505 1.7425954057717112e+00 2.5412862149292912e+00 -1.7103739391785335e+00 +80 3.1605865453343482e+00 -1.6277138108549329e+00 -1.3059148142387709e+00 +1401 4.1284670577305871e+00 -3.0540045404338687e+00 7.3299350023322962e-01 +1400 1.4706672801012313e+00 3.9816840017153421e+00 -1.6971881977841012e+00 +1399 4.5837608129745009e+00 -6.6382753333032216e+00 3.8119182427485274e+00 +1398 6.2138646838331280e+00 3.7513528015682436e+00 -1.3729716564826184e+00 +1397 1.2589300631919928e-03 2.4368851929612634e-01 -6.1761150036136856e+00 +1396 -4.5554452283841605e-03 -9.1006334603296435e-01 -2.4349149513344477e+00 +680 2.0239287114799254e+00 -5.8047222097885931e-01 7.1147212937147657e+00 +1667 4.2984966425627782e+00 1.7120415747683573e+00 3.2827784421684530e-01 +1385 5.6828782230065400e+00 -1.5183471986410182e+00 1.1291520959067849e+00 +1384 -2.8593667100592723e+00 2.0551501612812126e+00 1.1633647464406578e+00 +1383 -5.7352430437792341e+00 3.4744107830616229e+00 2.8217077421772587e+00 +1382 -7.3195052408797645e+00 3.5597653875279742e+00 -8.7449447786801715e-01 +1381 -3.0344548421751165e+00 1.5905390638854688e+00 -3.1477968471869628e+00 +1380 -6.9619965401111716e-01 -1.4559037450324688e+00 1.2498318641909432e+00 +1379 -4.4540862754439834e+00 -1.4816970232277158e+00 -2.4738851999426215e-01 +1345 5.6770706612720048e+00 1.6656412455991139e+00 -2.8646559698738141e+00 +2018 7.1728477061839486e+00 -6.6979190882841575e+00 -1.6384718770564588e+00 +1369 3.4701493697397465e+00 -5.6735382735711559e-01 -5.5738199393245607e+00 +1368 4.6852265161200570e+00 1.6560011338438929e+00 -1.5171707135331012e+00 +1367 -1.3625195600251612e+00 -5.6237536679347073e+00 -6.3884436188705509e+00 +1366 7.1366548261156719e+00 -2.5820301065024349e+00 -4.1372563484575089e+00 +1365 5.7470957644724618e-01 -1.0515922943043921e+00 6.3704154460267945e+00 +1122 -7.5446319165086413e+00 -7.5635189566406646e-01 -4.0666038392129145e-01 +1363 -1.1455378295380299e+00 2.1872930530049142e+00 -2.5639948509578594e+00 +1346 -1.2202208309266703e-01 -1.4543533719285560e+00 4.6148868070518549e+00 +1352 -3.3263133033516112e+00 -9.8612970292899571e-01 -1.8589092211914804e+00 +1350 -4.3275041554992768e+00 -4.4410718386859049e-01 -1.2798239688420106e+00 +1512 -9.9279753146710958e-01 1.0076799145673179e+00 -9.0013169799301962e-01 +1348 -4.3624967811485176e+00 -5.5864231873158925e+00 1.0104266697179591e+00 +1153 -3.6949189428628952e+00 6.3848374020191756e-01 3.2371764671595713e+00 +1543 -7.8686258110349891e+00 -1.6927658778535914e-01 -7.1040953245940630e-01 +1336 -4.2460104626682860e+00 -1.5522571407987646e+00 7.8823913269129839e+00 +1513 -6.6667367593736362e+00 -1.6519036920521033e+00 -5.4942357068611738e+00 +1334 -1.0416296428027505e+00 -2.0964577178706456e+00 1.0169249907546201e+00 +1063 3.4538256836363512e-01 2.2317782195473321e+00 -5.2217187227629323e+00 +1332 -1.1282826030452836e-01 -1.1344762143126315e+00 -6.0575633873069301e-01 +1330 4.1164888801072657e+00 -1.6533291371369160e-01 -1.2051287867004223e+00 +1320 -3.9169216012529060e+00 7.7281773126442754e+00 4.9488731746434294e+00 +1318 -1.9144034776001209e+00 -6.9117202119568546e+00 -2.3598853884862558e+00 +1349 -4.3166472205630821e+00 4.3378415970057986e+00 4.4961414536938040e+00 +1316 -4.6084037970710119e+00 7.3580949447287782e+00 1.0297279792803475e-01 +1314 -5.0393821738539808e+00 1.1044649295699098e+00 -2.3755307361278302e+00 +1047 3.8904379436047241e+00 1.3733383867770712e+00 1.8409119372711487e+00 +1987 9.7415633247075528e-01 3.8718625321341369e+00 6.1073727376515494e+00 +1479 7.6784740624678841e-02 -2.1016761930451140e+00 -5.2354213188064476e+00 +1304 2.0816126078749266e+00 -2.8233903931624780e+00 -2.1208518294368544e+00 +1989 -1.6386247764842413e-01 -4.4521883301257903e+00 4.5044728548974913e+00 +1302 -3.8225864834496419e+00 -1.4482745736407905e+00 2.5036568488722408e+00 +1300 1.0726238109659012e+00 -1.0398545801119272e+00 8.0949093278694473e-01 +1049 -1.3274427130265511e+00 3.7527862506670786e+00 2.1333569922676352e+00 +998 1.0736225751539523e+00 7.1941855027427950e+00 5.7421685548399175e+00 +1285 4.8327200602795528e-01 -8.1399321201753203e+00 -3.7564867852016661e+00 +1415 -1.2494906283889826e+00 2.3198923931733741e+00 3.2303099783817442e+00 +1351 6.1843616345322838e-01 -2.4563783840173912e+00 -3.2648882521145756e-01 +1288 1.5898305495150156e+00 -7.1790794907747013e-01 1.1944328886515676e+00 +1286 -5.5872731952606025e-01 2.0170765863028706e+00 3.0919203371120396e+00 +1284 -2.2377700175832600e+00 -2.0507999398229253e+00 3.2558223163278095e+00 +1233 1.5884555246779846e+00 -9.2164860809861959e-01 9.5110724362035992e-01 +1413 -1.6248607727746314e+00 -7.9695322604512009e-01 -5.3459551600803117e+00 +1925 2.7770470876070092e+00 -3.6164030441135711e+00 7.0274981728570718e-01 +1027 -2.3051123192485372e+00 -4.1543202024438353e+00 -6.1951553201982579e-01 +463 -3.9187735694153840e+00 -2.7815337049209345e+00 1.5136371266884012e+00 +1411 5.1878503301379739e+00 8.2434663140401390e-02 2.2231020190018196e+00 +1477 3.7161478803780024e+00 -1.1797248582294977e+00 -7.9228695216744898e+00 +1555 -2.2570176032073173e+00 9.0098490340682777e-02 -9.5301289572864256e+00 +1794 2.5199909816931281e+00 -2.2541498997354781e+00 -3.3150805312850244e+00 +1796 9.7798385689279832e-01 -1.7878961715893364e+00 2.8716466469658664e+00 +1798 5.1109484369454998e+00 1.5858908384218160e+00 2.7035109885331718e+00 +1800 9.0186463494494240e-01 -4.9577121699467313e+00 2.4059699313083689e+00 +58 -1.5942149367645599e+00 1.3114343781316826e+00 2.7868371477650431e+00 +1863 4.8012580699534935e+00 -4.7583809788188587e+00 -8.9849139561826306e+00 +961 -2.5778553369247423e+00 -6.8960061676632414e+00 2.2247455341491693e+00 +1587 1.0565051851684619e-01 9.1190747605447586e-01 3.3895716970016481e+00 +1814 -8.7201756260989960e+00 1.1042248856960131e+00 -1.0998305115689095e-02 +1816 3.8117533917456679e+00 3.6710082467258611e+00 -1.5835833265425263e+00 +1813 6.1037527336737493e-02 4.6758073564766702e+00 6.8504343737626936e+00 +1777 -2.2968405795056777e+00 -4.9341680772982288e+00 5.0128896720590124e+00 +1826 -6.7166350087467186e-01 7.7344071632935822e+00 -5.9089059202096095e-01 +1828 1.5986340468711540e+00 5.2417652157105123e-02 7.4825192267169036e-02 +1993 -2.4512962595628678e+00 4.6541262990262056e-01 3.5963505176711591e-01 +1830 -3.2374447985962989e+00 -1.3724279066845244e+00 6.9750314474900255e-01 +1832 -1.4516986273155157e+00 -8.0384904411734937e-01 -3.9071267059108798e+00 +1845 -6.7708325136244936e+00 5.0287844239530086e+00 -7.6607480420269647e-01 +78 -1.8665744722627273e+00 3.5364254104546511e+00 3.8863693446622087e+00 +1844 6.4974272456098470e-01 -4.8557230705474366e+00 3.3511566483706994e+00 +1846 -1.1125929542825812e+00 9.4392479262450468e-01 -1.0670938991104677e+00 +1848 4.5049137084655699e+00 -3.6657200110364361e+00 3.5423022679462774e+00 +61 -5.6195690344615501e-01 1.3992812596721622e+00 1.0614542636257878e+00 +1858 9.5036934450289845e-01 -5.9779457779706247e-01 -2.7232356696789113e+00 +1860 5.3052049837201167e+00 2.5524306756741457e+00 -4.6496535852022784e+00 +1862 -5.2255689406253660e+00 -1.0634524475454037e+00 5.7688971938137499e+00 +1864 2.1203930356940863e+00 -8.5226610693563021e-01 6.1956984648078643e+00 +2041 -1.4585225843445855e+00 2.7308241733472123e+00 -4.2247153436140232e+00 +156 1.9102442359917986e+00 -3.8032248406767226e+00 4.2922874691119270e+00 +2040 -5.3068882049073709e+00 -4.3342572818377828e-01 -7.5630805661614486e-01 +1874 -3.6002586513245394e-01 2.8024757806897713e+00 -4.5323624264486355e+00 +1875 4.8401067871149177e+00 4.1876839676013358e+00 -2.1877973548657459e+00 +1876 1.8836706214000662e-01 1.6038227812606909e+00 1.8080649162290543e+00 +1877 -2.1183654157116985e-01 4.1347786074271307e+00 -3.3352965880133763e+00 +1878 -5.4555278345205926e-01 -3.7475970216232235e+00 7.1005324857791425e+00 +1879 4.9528450217290260e-01 -2.0722796657723870e+00 6.7691388720255983e+00 +1880 -4.5702788095228293e+00 1.0205177202721540e+00 7.0063923566350637e+00 +1881 1.5819804409467724e+00 -7.2524420907615184e-01 5.8109555739690288e-01 +1890 -3.0048017516757271e+00 1.9021274969882094e+00 -7.3746480462927244e-01 +1891 7.4385732746140645e-02 3.4148063489134878e-01 4.0950236400425108e+00 +1892 3.0162684072002994e+00 7.5868626252461322e+00 2.3490231856408417e+00 +1893 3.0090367961783500e+00 2.8910421434522995e+00 -4.2619100640375933e+00 +1894 -2.7098314978950384e+00 -6.1293901481454443e+00 -6.6109588990335393e+00 +1895 7.7467885750132304e+00 2.7386477575333759e+00 3.2258057865538681e+00 +1896 1.5099644006882116e+00 3.0424677338597141e+00 2.2001333871571442e+00 +1897 1.5220885997184490e+00 3.3163034067083901e+00 -6.8917771111338881e+00 +1906 1.2835722234562692e+00 1.8622100050362873e+00 -4.2438665317506669e-01 +1907 -4.0962130984633847e+00 3.6685541510396026e-02 -1.0142741006946250e+00 +1908 -5.4293737335836489e+00 -6.3584486102179669e+00 -4.1388568725126884e+00 +1909 -4.4159031922026752e+00 1.4727124177585591e+00 3.7479183371334983e+00 +1910 5.3666487569531398e+00 -1.5910026699369273e+00 8.1339680857962537e-01 +1911 2.0541463701924195e-01 -4.3656851715651168e+00 -5.9289660424877777e-01 +1912 -9.5142622659489327e+00 2.7416504411100706e+00 2.8969930534520509e+00 +1913 -8.1370454142763082e-01 -7.6875690604111204e+00 -2.4580672899327243e+00 +2025 -2.4326759045409454e+00 -2.4416771020776542e+00 2.4214250235097183e+00 +1812 -8.7391778029126244e-01 -2.8817616745543617e+00 7.4206755271447982e+00 +1924 -4.0737492062676750e-01 -6.1999400230383328e+00 1.1173313283157511e+00 +2024 9.4397293448502573e-01 2.6694497753166759e+00 3.9783195736432204e+00 +1926 -7.5052673820611995e-02 5.8547303915712501e+00 1.6001768317213164e-01 +2039 -8.1047149413917430e-01 -8.7327629272002465e+00 2.6096293247060722e+00 +1928 -5.2181191404923473e+00 -1.4958266352772143e+00 3.7463893589179533e+00 +1475 5.2740391887370315e+00 -6.9696049616585869e+00 -5.3613727917956995e+00 +2023 -1.0221510183513254e+00 -1.6178328204005838e+00 1.8129540808208029e+00 +2038 -1.4199058302125614e-01 2.6000427827693371e+00 1.8705643367994012e+00 +1169 1.1498505729487469e+00 9.9751985353824668e-01 1.8592201599624409e+00 +1939 -4.1758590538702309e+00 7.2067351142216218e-01 4.5996257855342746e+00 +1940 -2.8421105307512418e-01 -4.2304742039451559e+00 3.2871428543864174e+00 +1941 5.3875192148902764e+00 -6.2557680335861066e-01 6.8435780350055833e+00 +1942 -2.0407113714546066e-01 -4.0257893256274446e+00 -1.8212883398053248e+00 +1943 -1.2436873165658875e+00 3.7371293775108367e+00 -3.2755280945236169e+00 +1944 4.9869003184489022e+00 -2.0130151997182337e+00 -2.3992031044023876e+00 +1945 4.5571173879955520e+00 -7.1513428899260250e+00 -2.3583421131493236e+00 +1954 5.2127342246498403e+00 2.0934944997730414e+00 -3.4951814525116656e+00 +1955 3.9084672810641865e+00 -3.4628673163062587e+00 -1.1625911176880290e+00 +1956 -1.4043083550311746e+00 9.1082432487188513e-03 -2.6958707998968108e+00 +1957 9.4687939223752871e+00 -9.6211218110976171e-01 7.6542662475084651e+00 +1958 -2.2047069095538063e+00 -1.1176304653654471e+01 -3.0250637443144651e-01 +1959 5.4588100413439156e+00 -2.9734280890089249e+00 -2.4915614902759127e+00 +1960 8.6105484233100049e-01 -2.1291668598985578e+00 1.5207417735564932e+00 +1473 -2.4981751325425847e+00 -2.8498716372084849e+00 -6.0206068313127172e+00 +1971 -1.8343372198785854e+00 -6.2647601866841063e+00 3.8545227418840624e+00 +1972 -6.6067990655008346e-01 -1.2965071990721722e+00 4.5432825183914138e-01 +1973 3.0557015190214742e+00 -5.4460946998739397e+00 1.6394342102678119e+00 +1974 3.2787076457675415e+00 -1.8484123157485560e-01 1.0074967684803624e+00 +1975 -2.4979392435620928e+00 -5.9706460816390932e+00 3.6816200929719889e+00 +1976 -1.9212989459339291e-01 -7.9791587617204185e-01 -1.2254135380234847e+00 +1977 -5.9403317646001721e+00 3.9474319584274711e+00 -4.0571778831698362e+00 +2037 3.8945946816347625e+00 6.8368909970257814e+00 5.2109284846573134e+00 +214 1.1237458991567693e+00 -6.7800205192475538e+00 9.0455167767983424e-01 +2022 1.4999899542890689e+00 -3.5611524168791240e+00 1.5683511949659574e+00 +1988 2.1689848724954501e+00 -2.7572670971592235e+00 -3.6670581073390682e+00 +2036 -9.6350950316243933e-01 4.2761201947166221e+00 -5.6417221235965007e+00 +1990 -3.8655132141273469e+00 4.0023471915386288e+00 -5.7047212827114482e+00 +1992 -3.0762193690923652e+00 1.7895213912773358e-01 -6.6595051318482035e-01 +1618 3.5372149262516950e+00 -3.9176129239054349e+00 -3.0975422214715667e+00 +1698 -5.8637730647050006e+00 1.3438415298495934e+00 2.5057745421369333e+00 +1859 -3.7626368150457572e+00 3.0308140029353852e+00 4.1636764028485533e+00 +2002 2.5858568620910067e+00 -6.3271976167358912e-01 -6.9026509377809075e-01 +2003 5.2761765716218143e+00 -6.0588792008803072e-01 7.2793692562225665e-01 +2004 -2.0193741320286978e+00 3.9933125801130469e+00 2.1502847743241569e+00 +2005 3.5990447138057506e+00 2.2002016659495123e+00 6.9541303992012100e+00 +2006 -5.0521266720725801e+00 -6.8007771953165985e+00 4.2727220692232173e+00 +2007 -2.4640577036615219e+00 -3.2065678766474903e-01 -1.8087884805985954e+00 +2008 -1.6445748678961307e+00 1.2276883253985134e+00 -4.1698324396633826e+00 +123 7.0640127204183649e+00 -9.1654227350631101e-01 -4.0851167294691511e+00 +2019 -1.0183854050786543e+00 1.7384474314205873e+00 -2.2564438001439804e+00 +2020 -3.0717372579688433e+00 -4.5488805717834406e+00 -6.2534214135747233e+00 +2021 4.2142836765554206e+00 3.8700034085473978e+00 8.5152658044263285e-01 +1353 1.9527185622585943e+00 1.9494930814818008e+00 1.7451703582650273e+00 +1589 -1.5481606978439393e+00 1.1743701568955294e+00 -1.3441650301836023e+00 +1559 -1.4226750946660025e+00 -9.2813098559713758e-01 -3.3235220480130601e-01 +1815 1.6481134822304309e+00 -5.7114295607830899e-02 5.4447597325718278e-01 +1575 1.1747015660416993e+00 -2.7151172361541547e+00 -2.8691325530659468e+00 +1829 -1.2086298099363189e+00 1.2865119744723619e+00 5.5920834846341680e+00 +1539 6.1208329463979156e+00 1.5712696591525727e-01 -1.0464981565037050e+01 +1861 -3.7297137748959965e+00 -2.1001605058902291e+00 1.3274530024355682e-01 +1991 -2.2939345111532927e+00 6.0191043418721533e+00 -2.0729957847907654e+00 +1795 -2.5889647444740587e+00 2.0217991072638601e+00 4.9109072119303283e+00 +1538 1.3654350855762245e+00 -8.6192226255283277e-01 -4.7332919447469965e+00 +1811 4.5664826583075513e+00 -2.9022654405411865e+00 -3.1090090359812610e+00 +1540 2.4768415523158152e+00 5.2336945085916642e-01 5.7680747460915160e-01 +247 -4.9983001653988905e+00 2.8151805065895288e+00 2.2793934132536588e-02 +1542 6.6076220973585320e-01 9.0623624053396112e-01 -7.6293976741225737e+00 +1305 2.4414340247734878e+00 -9.6603129993746806e-01 -2.3675837992818622e+00 +1544 6.0069472045050698e-01 -1.6216365777481440e-01 -2.1175166118319391e+00 +1045 -2.4979656892974549e+00 -1.1578887370023963e+00 2.2829391688360525e+00 +1301 2.9486707714778110e-01 -2.9363837770636145e+00 -1.0340606532824994e+01 +1335 1.3992718471039525e-01 1.2281585875341852e+00 9.1579082648791921e-01 +1303 -4.8643179708271073e-01 -1.9139322894516642e+00 6.4736520352430393e-01 +1057 -2.9140471094767824e+00 -7.7887491444725176e-01 9.2978626004037324e-01 +1223 1.1037495178101093e+00 5.2761235758567038e-01 5.9378040067672211e-01 +1321 2.9647363264085782e+00 -6.3033221949875342e+00 -5.5207560635257469e+00 +1059 -2.5711297299847273e+00 1.5689792769148672e+00 1.5441559536779720e-01 +1545 7.3520964152499024e-01 -2.2871500590765494e+00 5.4852449348896366e+00 +1671 1.0287336583486766e+00 9.8688600026548101e-01 -2.0386438932818951e+00 +1252 1.8190575413618002e+00 3.3679504128300923e+00 -3.5252810999867885e-02 +1985 2.6018523382560215e+00 -4.6460302728300804e-02 8.6420636440612375e-01 +357 5.1355905124375634e-01 6.8954600270407189e+00 -1.6547320653900208e+00 +1938 -6.0467614551920290e-01 -4.1007672845114884e+00 8.1281441118080693e+00 +1241 -2.9964945533680947e+00 3.6862364396015090e-01 2.8892323788078347e+00 +1240 1.7592267323156203e+00 -5.9926048522566866e+00 -3.0163811393207483e+00 +1239 -6.5351823828990305e+00 -8.3370931473724197e-01 -5.8226253765951128e+00 +1238 1.3662953065238477e+00 -2.8043260580826361e+00 1.3450909087705605e+00 +2033 4.5947034651600056e+00 -5.0212466168648664e+00 7.0595168284191550e+00 +1817 5.5507948975034438e+00 3.7094457093871580e+00 -2.7228224059641111e+00 +1410 -4.7116156233956374e+00 -2.7392678496372431e+00 -5.5122319864109837e-01 +1541 -5.1998532250540599e+00 -9.6343911239224074e+00 -3.0635751387795565e+00 +1593 -1.4547274898908531e+00 1.9670480115350302e+00 -1.6464742735155089e+00 +1609 -5.3512361396632464e+00 1.7433147079552103e+00 4.0012035835067811e-01 +1097 3.4100890920660918e+00 -1.2684715190942912e+00 1.9773000335988238e+00 +1161 6.1147964998759263e-01 1.5194347475625756e+00 2.4940226640584640e+00 +1571 2.6571790814602640e+00 -4.1404494791819761e+00 1.9209512188938147e+00 +1225 -4.2774878064480104e+00 4.8258151896402159e+00 -1.1132389271862444e+00 +1095 6.9679421628402887e+00 -8.8631155147910035e-01 6.0059111658737996e-01 +1733 6.8629861984652971e-02 2.6858696276117380e+00 -1.4464923874040090e+00 +1557 3.3447190892836148e-01 1.2066301942576943e-01 8.6759153313076398e-01 +921 -2.7774964114166152e+00 -2.8871904361750405e+00 -9.2023051089819807e-01 +223 -2.2460784808267700e-01 2.5017779513524901e-01 5.3546895371853251e+00 +1157 2.7582080479018583e+00 -8.0881080701849744e+00 1.2736149348733172e+00 +1847 2.1820218125391557e+00 -2.2066042015770790e+00 3.0983714811256693e+00 +1737 1.7134739449297276e+00 -4.7423360807632413e+00 -2.3892737747078403e+00 +1766 -3.1145079941319493e+00 -1.0374974078567232e+00 -2.0106436433594284e+00 +1765 -6.8178851440035029e+00 5.5883145887248773e+00 5.0159808672730355e+00 +1764 -2.1554582316703352e-01 -1.5061915894614302e+00 4.2154530092984226e+00 +1763 -3.6265863259591309e+00 1.7272332756747408e+00 -3.5919932271915238e+00 +525 -3.3457030052313641e+00 2.7209891173254923e+00 1.5474107904029395e+00 +1753 -1.1837293684149164e+00 1.4699386886996368e-01 5.8426177225137961e+00 +1752 -5.9996560139584618e+00 2.4145381340759342e+00 3.1914897921236951e-01 +1751 3.2029578964247265e+00 3.0711244888346410e+00 1.1546999875704620e+00 +1750 4.3929203676832218e+00 2.8028378789035999e+00 -3.7049713227993757e+00 +1749 1.1459302515306027e+00 -2.4385433808618213e+00 1.3184595172274829e+00 +1748 -1.3789912429291887e-01 -1.3339964596793332e+00 3.8010163841187850e-01 +1747 -2.0249477654130996e+00 -1.6804001094388091e-01 3.7422285493546958e-01 +474 -4.7907553370384628e+00 -7.9960813850329053e+00 -1.0689426166965637e+00 +1736 2.7134634280925547e+00 -4.9289170853630973e+00 -4.4403152580023414e-01 +1734 1.5280793227997875e+00 3.9946021504036022e-01 2.5265076918407772e+00 +1768 7.8109329613371488e+00 -1.5325567424221473e+00 -4.8652559265480386e+00 +1732 2.9126864648029511e+00 1.2959307163454012e+00 7.7028434609433436e+00 +592 -3.7807856516197647e+00 4.8315345564449927e+00 3.6051161912973537e+00 +1730 -5.8738542489986756e+00 -1.1097107356456102e+00 -2.9390673838599883e+00 +1769 -7.3832689685593345e-01 -2.4513812264287820e+00 2.5283098991286240e-01 +1721 -3.3542155871569768e+00 -1.7324588185271006e+00 -2.5282898347716459e-01 +1720 -9.4682454435211227e-01 3.6893685532712767e-01 1.1038144896754584e-01 +1719 -3.8572028544385737e+00 -4.2670731969504549e+00 2.4866025769215856e+00 +1718 2.0953197536496715e+00 -3.0402436516416653e+00 -2.8744547332357895e+00 +1717 3.4146817324936611e+00 -1.3064225584060540e+00 -1.7171702791437145e+00 +1716 5.8608369147672166e+00 1.3070461700098599e+00 3.7091441931979414e+00 +1715 -1.4729501829075278e+00 -9.5763976031274889e-01 -1.6585528630998405e+00 +1665 1.8809029364673384e+00 1.1976744684928513e+00 2.3590855669654189e+00 +608 -5.9627569198458286e+00 -4.4879635321478304e+00 3.5180821085949057e+00 +1705 -3.2929611904657818e+00 -1.2321308023906563e+00 -1.1196011736417590e+00 +1704 -5.9429061834742436e-01 -6.3899640542316618e+00 -1.2646639789722824e+00 +1703 3.9588132451575060e+00 2.5309177724994630e-01 -2.7303405018789593e+00 +1702 -1.2528571483511228e+00 -1.7842492911997740e+00 5.5938179982182556e-01 +1701 2.5510806472411400e+00 -3.2559819918133437e+00 3.3470806651477218e+00 +1700 3.9969909348944195e+00 -2.2240030830462056e+00 3.0006328833994194e+00 +1699 7.1422721151458797e+00 5.4284742314078454e+00 8.9091228246363352e-01 +1521 -5.8375334255045130e+00 -3.1451824309268046e+00 -4.2839341418911339e+00 +1689 2.9678941741723031e+00 -1.7768308958527146e+00 1.2356715529031785e+00 +1688 1.6081569020415898e+00 -8.1014708256883561e-01 -2.7049097413136765e+00 +1687 -6.5990857752518597e+00 -5.4244359189921152e+00 8.9942259888801566e+00 +1686 -4.1910976618108844e+00 -4.2437518080799732e+00 -2.0494583193852572e-01 +1685 2.9186553659912744e+00 -1.1076457119907765e-01 4.2492628113868680e-01 +1684 2.1469241600653666e+00 -3.6304401001164704e-01 6.0935048380191521e+00 +1683 -7.2023285261361689e+00 -3.7466686231832687e+00 -1.1401361270583998e+00 +2545 -3.3309373072334840e+00 6.4771301331235176e-01 -4.1666437214132648e+00 +1237 -1.3830901579445334e+00 -4.4924799533214266e+00 2.6362716653647804e+00 +2385 9.9447828657745352e-01 2.5018248100754357e+00 -5.6324188470922625e+00 +1779 -1.1856267949686397e+00 -2.4549535670833413e+00 4.7448296609503435e+00 +1780 -5.4454798209088597e+00 -1.1383427251860354e+00 5.7842765604596638e+00 +1781 -9.4373084569156163e-02 2.3642834871129925e+00 1.5772139633672984e+00 +1672 -1.1116700795396988e+00 2.0726003630657139e+00 2.0154358553256948e+00 +1782 -4.7869847406168171e+00 -3.6469671647905506e+00 1.0098694948148335e+00 +1670 5.1502160327442814e-01 2.1886548833634292e+00 -1.3722070277412752e+00 +1783 -1.8420814820928177e+00 7.9740338708887060e-01 -1.2260834523511586e+00 +1668 -2.8356113187381768e+00 1.2773680022274987e+00 2.1646420480326864e+00 +1784 9.7581882571313217e-01 -8.9462821011426275e-01 -1.2311879061785933e+00 +1666 4.9154700509374925e+00 -6.7819135156517063e-01 1.3129895690642779e+00 +1656 -6.0436950735461137e-01 -1.7750740037449459e+00 8.3141768951132877e-01 +1655 -4.1959155231151062e+00 1.5757989791869400e+00 1.1875195759705426e+00 +1654 5.1745780856806816e+00 -8.3452096004386855e-01 -9.4330930915887101e-01 +1653 -3.2384496059880612e+00 -1.3712296934088020e+00 -2.5865261161861683e+00 +1652 -1.1587336500745158e+00 2.6665298806274791e+00 -9.6716423371143456e+00 +1651 1.3829677653893799e+00 -1.4122778915857432e+00 -3.8881700974644301e-01 +876 -1.8175624604014904e+00 3.8629231323839733e-02 -1.7424208934656258e+00 +1641 -1.8318588207829531e+00 -2.8290799062191491e-01 2.1798439551814197e+00 +1640 2.7779708550412687e+00 3.8974163223348319e+00 6.9761941855568601e+00 +1639 6.4788349871707389e+00 3.0096694805711999e+00 -5.8532106530273742e+00 +1638 3.6843956707892032e+00 -2.0364679069685035e-01 -9.9676054456318877e+00 +1637 2.2204345677587085e+00 -1.7329989001735566e+00 4.8970741347273597e-02 +1636 4.4239244527197230e-01 -6.4339250953920208e+00 4.1895215162972876e+00 +1635 -8.8489090816285609e-01 1.6481980824144389e+00 5.7895509719431608e+00 +831 4.8831510141726833e+00 -1.5651449447691135e+00 -1.4398846252788253e+00 +1625 3.4347580617251156e-01 5.3788704154772174e-02 -8.7021245591142105e-02 +1236 -8.7727762268107252e+00 -1.5375350996162157e-01 1.2955025405441256e+00 +1624 -1.0215763312340620e+00 7.2345926631226543e-01 -3.3798103271910023e+00 +1623 5.8491589358713156e+00 2.7229014831828859e+00 1.4717117639610171e+00 +1622 1.5039753313363060e+00 3.9478146601511437e+00 3.9499003522354896e+00 +1621 -2.2647872606539017e+00 -3.3953967024990157e+00 3.5489075719381709e+00 +1620 -9.9989773283617944e-01 7.4925695920931430e+00 -3.3610282350982672e+00 +1235 1.2198667792932778e+00 2.1485065436802304e+00 -1.6590050981732132e+00 +1619 3.4804057548708709e+00 6.0701584285198225e+00 -9.6875614626393169e-01 +2017 -2.7608932584643942e+00 5.0944876163417261e+00 -7.1684745621133461e-01 +1608 2.3210421174171647e+00 4.6382614130349120e+00 2.6482014999873282e+00 +1767 -2.3259451405670903e+00 -3.9206220816221689e+00 -2.3363706339381589e+00 +1606 2.5256587105518769e+00 -1.4291149634085654e+00 2.9703122354577141e+00 +1604 -2.5176188872106833e+00 -1.8511961732818840e+00 5.1805064938085579e+00 +1602 3.3207553016625062e+00 3.9097333363320392e+00 9.5008542678525668e-02 +1093 1.0429456795003592e+01 -2.7152771228262256e+00 5.8053968393675008e+00 +310 -1.8153755571838187e-01 -3.2521625598507122e+00 -5.5750985193605640e+00 +1234 3.2059805515704585e+00 3.6451596222005440e+00 -7.9854244198096114e-02 +1219 1.0771063399573844e+00 3.1497795133150597e-01 -2.2766854806542094e+00 +1592 -2.7441945275271560e+00 -2.8096185169724797e-01 2.2282042320643991e-01 +742 6.8032554290538094e-01 1.9884385859398404e+00 -1.9909809773063836e-01 +1669 -2.4745208786549471e+00 -1.7575156217084698e+00 2.8075431012303693e+00 +1590 1.2885874914899778e+00 -7.9740476428396745e-01 4.7660807925926925e+00 +1221 7.8172445681146152e-01 9.0062164743761153e-01 1.8805401429711566e+00 +1588 -2.4357366925781754e-01 4.3157937608697923e+00 5.5417141891609720e+00 +1831 1.4382442288324111e+00 2.8646207856157231e+00 -9.0089942719304072e-01 +1843 7.6159365555054865e+00 -5.2102854535649168e-01 2.1746559196381976e+00 +1091 -3.6905960516146661e+00 1.9728142102436685e+00 -3.1195255915418685e-01 +1603 -5.6635191015353736e-01 -2.9583538057943439e+00 7.7497697517969766e-01 +1576 1.1954009567185664e+00 2.9014893673990962e+00 -5.8542172971164392e+00 +1605 -9.6361130212537416e-01 -1.2486041284732776e+00 -1.5781324802333332e-01 +1574 -2.6103660491523581e+00 4.2363982278448731e+00 -5.0968623428581505e-01 +1572 1.6591196267151520e+00 3.8827348889126232e+00 -4.0555532670361165e+00 +1591 -7.7134539302788774e-01 5.6804268730364251e+00 -5.0364060649869069e+00 +1570 6.6998052632606200e+00 4.4928516565696675e-01 5.7111381554490892e-01 +1254 -5.1847223332638528e+00 -4.5911390389929757e-01 3.7700553651243864e+00 +1560 -1.5394448353623775e+00 -1.0984228649002259e+00 1.3026748752550212e+00 +1558 -5.5973854943729000e+00 3.1342389690153887e+00 -7.5591873571528556e-01 +1607 -3.6874700016012469e+00 4.3449156652109616e-01 5.4199254490221016e-01 +1556 -1.9991290720156003e+00 1.5870318069925191e+00 -2.9632646601564363e+00 +1554 -2.9199059925403774e+00 3.3477530299049070e+00 -4.3983984301760888e+00 +1731 -6.3847358759936919e+00 -6.5387007052055168e-01 -6.9132212264465198e-01 +1573 3.1764290464497602e+00 1.7367928530111634e+00 -2.7481175358930412e+00 +1673 5.5650558068542875e+00 -4.7280006904422986e+00 -4.1024413065519916e+00 +2529 5.1768090848636605e-01 1.9774109359239802e+00 1.2522608329420775e+00 +1075 -2.0204286858940939e+00 2.8549545340493858e+00 -4.7064605411021576e+00 +1028 -7.1083111452450376e-01 2.6699979890443890e+00 -9.6895797308810039e-01 +1030 -4.8938849854296809e+00 -4.7376446716554614e+00 -9.7762215499907708e+00 +1032 -4.5837336178149197e+00 -4.2765906833260310e+00 -3.3517377535361659e-01 +1061 1.1452238847621872e+00 9.4366750619172246e-01 6.2800433575775072e+00 +1801 -2.3035437022617562e+00 5.1659516993252268e+00 5.3425077932857068e+00 +1331 -4.8074185054761589e+00 -1.0881227711201822e+01 -1.8080228559419029e-01 +1031 1.5677682695084728e-02 -3.8879879491008094e+00 -5.5894150451507043e+00 +1042 3.9473527803797750e+00 -1.7410364581851017e+00 2.5824860198358540e-01 +1044 3.4647177479822022e+00 3.2732964269993490e+00 -4.0283698467557230e+00 +1077 -1.4657985614745723e+00 9.1579529612059907e-01 4.3831332317488565e+00 +1046 -4.6648902970849946e+00 -1.7857343928462412e+00 6.5356566940429737e+00 +1299 -1.3935158415366540e+00 2.3785105219939520e+00 1.4877528312005308e+00 +1048 -1.3673607152812020e+00 2.8161015818425530e+00 -2.9991296556141506e-01 +1333 -2.7015308496513417e+00 5.7024126981018837e+00 -1.7189311979417277e-01 +1337 -3.7085369631576994e+00 -2.9672254486414427e+00 3.6950261043703194e+00 +1319 -1.0536328381882398e+00 -6.1255863664693848e+00 3.3868424931326420e+00 +1937 3.7347152273643838e+00 3.7424719562312618e+00 1.2106504877112896e+00 +1735 -8.0424425522889251e+00 -3.5909335835882072e+00 -9.4050028364527849e-01 +1060 6.9028600880263360e+00 -7.4344578256564808e-01 2.4567247933383176e+00 +1289 -8.0565117036714928e-01 4.5689628428103912e+00 3.5843839922942000e-01 +1062 3.6571226461085915e-01 -1.3275726904601517e+00 1.8789899794859168e+00 +365 3.5981349374008329e+00 2.2333731845007962e+00 1.1454131379244588e+00 +1064 -3.7476363698838107e+00 7.1704965971590751e+00 -2.3789189198647160e+00 +1317 5.0924281678425407e+00 5.8860100681976302e-01 2.7264466506435445e+00 +922 3.0329703268235814e-01 4.3876776838322789e+00 4.9069952181359682e+00 +1287 5.1496148287112762e+00 -3.8516142598135694e+00 -6.4312542612641650e+00 +1074 1.7242545837365839e+00 1.8469362380957788e+00 -3.9965806837147539e+00 +1076 8.3075555774755772e-01 -4.7845228108673137e+00 9.1429806860214455e+00 +1078 -3.0387412775015714e+00 -1.1539410240600354e+00 -6.9539358228984116e-01 +1080 -3.3117555830773160e-01 -6.1428824395459936e+00 2.2925644163129562e+00 +601 4.0819749746651208e+00 -1.3660083657874347e+00 4.3237205737359075e+00 +1079 4.1248057494840449e+00 -4.1266264686565218e-01 -6.7840168983249107e+00 +1092 1.8318169642716302e+00 1.2887435677998613e+00 3.4035460704853504e-01 +1094 1.5880859092539437e+00 1.3836050017131964e+00 4.0096896368231585e+00 +1096 2.7137581910834165e+00 2.4955147538451392e+00 -4.6410448989891631e+00 +1159 5.8217872688183618e+00 -4.5519539513086968e+00 2.3639221227732787e+00 +1253 5.0522227679253744e+00 -1.0425136773190868e+01 -6.4899212342990573e+00 +1273 7.7536847520362153e+00 -8.1480519089013481e-01 -4.2327785390090655e-01 +44 -6.9945652583056261e-01 -8.2460466083956108e-01 3.3722750085613269e+00 +1106 2.6377206636799535e+00 7.0018423492812509e-01 2.4408397574191509e+00 +1107 -2.0043083998092756e-01 -5.8531616537149145e-01 -3.0528868901224100e+00 +1108 2.0023107945909259e-02 -2.3464308638982323e+00 -8.3937243573099951e-01 +1109 -5.7003454418128832e-02 2.7231824739501054e+00 4.0615319170758939e+00 +1110 2.4479107119361654e+00 5.6821450986320903e+00 1.5942734162509906e-01 +1111 2.7396287413766243e+00 -7.5982332128394658e-01 -8.2478925668557643e+00 +1112 9.4344198932532419e-01 1.9252641753217652e+00 -2.4380104183815181e+00 +1113 3.8957962754816644e+00 -2.9292295979029217e+00 -1.0017639260471829e+00 +1922 -1.1598832792787286e+01 -9.1173817152720182e-01 1.1136683661988842e+00 +1123 1.6331566089703775e+00 -3.7721831194777131e+00 2.0671193482032235e+00 +1617 2.0230604163276773e+00 5.3551601779055709e+00 -2.1602038705262601e+00 +1125 -8.3265914950779074e-01 -1.0913310989465377e+00 1.0561665518819983e-01 +1126 -9.2972034135641679e-01 4.9700225817525281e+00 4.3675158362610098e+00 +1127 2.2428992861804393e+00 7.0595304518528392e+00 -2.3874096937794698e+00 +1128 -1.1377612607650209e+00 1.6818111533368985e+00 2.8406866488813698e+00 +1129 -1.4437299049702073e+00 -4.8283692338953905e+00 8.5566768987423902e+00 +1138 -5.9606795352821091e+00 3.4392462080869119e+00 -3.3408162937181407e-01 +443 2.1932639789217663e+00 3.0343951363410854e-01 4.4406793298031486e+00 +1140 7.7936553083757749e+00 -1.4198148463699489e+00 -1.0342773008281860e+00 +1141 -7.7613927739558686e-01 4.8035688233360503e+00 -1.6754989271180931e+00 +1142 -2.8175187961963100e+00 3.2428351943280456e+00 2.3023214737660904e+00 +1143 -6.0869227518888436e-01 1.3749790438731087e+00 -6.9909335640904380e-01 +1144 4.1195333537662060e-01 6.2648011314330487e-01 3.6093327484062572e+00 +1145 -2.8475272022552982e+00 -1.9599352718070495e+00 3.1512433594879790e+00 +1272 -4.4673795758558494e+00 -7.1274991116871322e-01 -5.2199884949297093e-01 +1681 -4.1108946955039434e+00 1.8131611552437474e+00 -2.4843701795798099e+00 +1257 -2.9092553037444285e-01 1.7369534554891564e+00 5.8723254413015082e+00 +1156 6.1252482623419757e-01 2.5167288497450717e+00 1.8596575873806958e+00 +1271 3.5544388525370652e+00 2.0275209578643234e+00 -6.0161179933768008e+00 +1158 3.2804919864994342e+00 -1.4145291548350094e+00 4.0113393383383373e+00 +1256 -2.4997195186853145e+00 -1.6665890222597162e+00 -7.0117627995087650e+00 +1160 -1.2341335513749283e+00 -4.6097254985153979e+00 -2.7066593731296922e+00 +1270 -3.5924480553805096e+00 -3.9471738103889260e+00 4.9399656175828826e+00 +1089 1.8206597874404105e+00 -1.0172952108811353e-01 2.3305675203914373e+00 +1269 4.4655525845014132e+00 1.6190886025716695e+00 4.6919802967253146e+00 +1255 6.2304231949476714e+00 -2.1538203099645279e+00 -2.9829356171719286e+00 +1537 7.5525735609154254e-01 3.1530697254134963e+00 4.1644806993816736e+00 +1171 1.9650443389012187e+00 4.6989462463282194e+00 -5.1527578739499891e+00 +1172 2.7149485096316011e+00 1.0807705850235043e-01 -4.3007187832572935e+00 +1173 -1.5770100871965991e+00 -1.1305882031396421e+00 -1.8649579392584690e-02 +1174 -6.3325292972593961e-01 4.0679891738284377e+00 7.6237916863157951e-01 +1175 -4.8051292278490125e+00 2.4679879139907763e+00 1.7718456064623627e+00 +1176 4.4164064706087769e-01 2.0708862748430774e+00 -3.7954425876892878e-01 +1177 5.9456328785262818e+00 2.0988494586989153e+00 -5.0657725146732488e+00 +2034 -2.3516478053804830e+00 6.8476214517529832e-02 1.8386467011842986e+00 +1523 1.9670043678279772e+00 -3.4938498212120388e+00 4.1862921197592149e+00 +1187 -5.7908568246017573e+00 -7.0359279345789494e-01 1.3877803641662907e+00 +1188 -1.0054246647125973e+00 7.6858898045035628e-01 -2.8064896139218405e+00 +1189 1.0477770988664168e+00 -7.8267970653435039e+00 -7.4201741236157952e+00 +1190 2.4642045091596443e+00 1.6078538403049203e-01 1.6575954779227389e+00 +1191 -6.5834419296923370e+00 4.2874615070930409e+00 2.6417927503553695e+00 +1192 -4.9488916975262525e+00 1.5604532058702514e+00 -1.8428624809316341e+00 +1193 -1.1490883823193470e+00 3.2532509731708292e+00 -2.5870918736692677e-01 +1553 2.2961395687085355e+00 5.3312012942393816e-01 -1.4739086018427219e+00 +1347 -3.1888823881264163e+00 -7.4387512181177284e-01 4.0513378580386394e+00 +1203 -4.2096020643694931e+00 -8.2595745892603674e+00 7.5188120247375179e-01 +1204 -2.0680411111861128e+00 4.0743350647678831e+00 4.1167211973869788e+00 +1205 1.1945624542443378e+00 -6.1936869679879263e-02 -5.5528373050047817e+00 +1206 4.8169508245698794e-01 5.0213137215420311e-01 2.3776721489221275e-01 +1207 -7.0715318137017462e+00 -1.3789740413443538e-01 -5.4334600391625598e-01 +1208 2.1003896810220350e+00 -1.6981145520231060e+00 -9.2302076411428635e-01 +1209 3.3175539113092114e+00 5.5047357363591125e+00 -7.3391987958793976e+00 +1268 2.3173531320949139e+00 3.1166353335778330e+00 -3.3559929666614279e+00 +86 2.6047310153967191e+00 -1.2064201247359152e+00 -3.6783959948246783e+00 +1827 -2.6804373944848829e+00 -2.0803363885901507e+00 1.3571760491452234e+00 +1220 -5.3577980197259594e+00 1.0408000088640235e+00 2.8880319656590325e+00 +1364 3.1216671616006195e+00 -5.2857180450047876e+00 -1.0800347050497527e+00 +1222 -4.4980804997936036e-01 -3.6176221090558487e+00 4.2879914890294701e+00 +1201 -1.2663460373903164e+00 -7.4081200904245259e-01 1.5495628927165850e+00 +1224 5.7181218513559475e+00 -5.7893260682419838e-02 4.8418466326434277e+00 +1155 1.3601890853301621e+00 1.8622083284387017e+00 1.2636119238061347e-01 +1805 -2.9200030484042960e-01 -2.8887157859851742e+00 5.0366659061249939e+00 +1081 5.3117381119712825e-01 2.6515627356311948e+00 1.9211703912559350e+00 +1933 -6.6044186908978664e-01 -4.8720456294865047e+00 -3.0264320107982310e+00 +8 4.1527371683428314e+00 1.4519629272897838e+00 3.1291045871283805e+00 +1867 2.4389419967923813e+00 8.8763175892160966e+00 2.8168761093574965e+00 +1997 1.2023880252582391e+00 -1.8628165046373448e+00 6.3497792060965921e+00 +1065 -2.2315059333363401e+00 4.8752970872120871e-01 2.6106537934755203e-02 +1504 3.7393276879922568e+00 -1.3855876847545376e+00 -6.3422074140992573e+00 +1503 2.2211224824138771e+00 -1.9116850982222788e+00 -1.2988701487800205e+00 +1502 4.6261843000862344e+00 1.9457612722723574e+00 -1.2822828731927542e+00 +1501 2.4063255245023156e+00 2.0729797921181328e-01 7.0848859318742443e+00 +1500 6.8564674198417199e+00 8.0542781033465660e-01 -1.0241552801856967e+01 +1499 4.9641802995143989e+00 -4.2964099439439556e+00 4.2615278647412378e+00 +1498 -3.2649302043852320e+00 -1.2141039728005321e+00 4.6110969793121299e+00 +1497 3.3753666266260203e-02 -7.6541185029603631e-01 -4.2579485668457666e+00 +1488 -1.9421581622850810e+00 9.3217097479401601e-01 -1.2387386783524315e+00 +1486 5.0279765408179937e+00 1.6144206801351828e+00 -5.3611141674372731e-01 +1484 2.7969178734662772e+00 3.0323275857574616e+00 -3.6615430341895960e+00 +1515 2.9708186007573141e+00 3.3281332331437072e+00 7.5942475619690064e-01 +1482 -4.9924962720287308e-01 -3.3556385337561760e+00 -1.4038400594550731e+00 +1871 5.6385700848809950e-01 1.3442840378107062e+00 -4.4703536013163792e+00 +1472 -2.8060536328719321e+00 6.9594005174239379e+00 6.0938859080751211e+00 +1471 -6.0599041671771960e+00 -1.2793395585848426e+00 1.8912306811396697e+00 +1470 -5.2387564337802637e+00 4.2669946120915125e-01 3.4450989781837205e+00 +1469 -7.0314549891305156e-01 -4.1410602366530185e+00 -4.0621948797146770e+00 +1468 -5.7002974094513128e+00 -1.9239788616999010e-01 -1.6626805969014918e-01 +1467 -8.8625411282435218e-01 -5.5168182439911631e+00 -2.0758200307717583e+00 +1466 -9.8116543003089718e-01 2.1377979981810076e+00 -2.2896270485434664e+00 +53 -5.6877537358873820e+00 6.7275796476395202e+00 3.1263524664646893e+00 +1456 -1.8185321514849142e+00 6.5376700415768596e+00 4.2284319687481258e+00 +1455 -9.4105265813206582e+00 2.3676471443408937e+00 -8.6465419129259580e+00 +1454 -5.9233594587220502e+00 3.7365689821708079e+00 3.8182634638811432e+00 +1453 -1.7961743375116968e+00 5.4384061734814280e+00 -3.6344285502847073e-01 +1452 7.3649151005769200e+00 3.5541479944557710e+00 -1.3177115655086038e+00 +1451 7.3934525477827284e-01 -5.1996047463139812e+00 2.3025512185366837e+00 +1450 3.8354327419387810e+00 -8.2342058383504835e-01 -2.8183686488380402e+00 +1052 2.0349691072700882e+00 -1.2031296483249629e+00 4.4654378956974089e-01 +1440 -1.7618946258574093e+00 2.6765605107755439e+00 -5.7520738060556171e+00 +1439 -5.1131628632506789e+00 2.6657262587534993e+00 2.3213244195508520e+00 +1438 4.8652249278271604e+00 -2.4355030639788597e+00 -5.0460541985377025e+00 +1437 -3.6098015691840235e-01 -4.8790073387114106e+00 -3.3502557920941411e+00 +1436 8.6162322733827046e-01 -2.9038680997985411e+00 -3.4569179756425932e+00 +1435 1.7447023525783105e+00 -2.7712097646447367e+00 -2.1392153416787387e+00 +1434 3.0048409837008072e+00 -2.7372780227154729e+00 5.6938393004882704e-01 +1424 5.5340954206343995e-01 -1.0238153028393353e+00 -3.4124302952342027e-02 +1422 -1.6147314888629507e+00 2.3235064973230712e+00 3.4560838174589046e+00 +1420 -4.9678865823281876e-01 -4.0297243893722046e+00 -3.8302171713959154e+00 +1418 -7.0627100526211972e-01 3.2080877197046220e+00 9.8358579909967481e-01 +1529 -8.0798039843796798e-01 -2.0092569463084802e+00 -4.0351001071475103e+00 +1530 1.8010965318858108e+00 1.0090158967702998e+00 1.7522942347182129e+00 +1531 8.4722411032710330e+00 -9.9931773216076247e-01 -1.0751808811396224e+00 +1532 5.5605638549864835e+00 -3.2718816708083570e-01 1.8261451609687760e+00 +1408 6.0282845068195083e+00 -1.2257663885006018e+00 5.2690664714355009e+00 +1407 1.1083995898509442e+00 5.0506577260231884e+00 1.5117878444475819e+00 +1406 4.0290413877748046e+00 2.2038014519491163e+00 3.5724017636571492e+00 +1405 8.8541807735999700e-01 -1.2958350256109428e+00 2.1493868101842657e+00 +1404 -6.9868752587101501e-01 2.3086626274387552e+00 3.8007224708151983e+00 +1403 -6.8389674425410627e+00 -2.8912515218479995e+00 -1.5145166857602932e+00 +1402 8.5504129316935877e+00 -5.4619928031128828e-01 -3.1456040175826918e+00 +1054 -1.3685959553758138e+00 -2.4520450128282212e+00 4.2758925837670825e+00 +1392 -1.7326000905299432e+00 1.5472086671784837e+00 -1.0010376038751436e+00 +1391 -2.9137977847821561e-01 3.6685207736387748e+00 -1.8346973881168932e-01 +1390 1.3568332703457204e+00 8.7646071255652613e-01 2.6852762867958457e+00 +1389 -3.4962696510099978e+00 9.1624086136764171e-01 3.2169179515521837e+00 +1388 2.5484523416611626e+00 3.6630088012101680e+00 -4.9331005949788720e+00 +1387 -1.7287362505988102e+00 3.3364452764690449e+00 -2.1551965785330349e-01 +1386 -6.7924297941531355e+00 -8.2127604406007415e-01 2.6496359288377880e+00 +1376 1.3064120153631114e+00 5.1160900233439852e+00 1.7507223827278962e+00 +1375 7.4472954463371916e+00 3.3568529988655305e-01 7.0995365801206634e-01 +1374 1.6212283861501491e+00 -1.7372855279550203e+00 4.1438798016568521e+00 +1373 -8.5792753828156931e-01 4.4631738354036871e-01 8.9075939626761458e-01 +1372 3.2790983574974764e+00 3.9844998660919195e+00 2.9663155788282602e+00 +1371 2.1780193073561582e+00 -5.6497836947149138e-01 -6.5766486461467655e-01 +1370 4.4700102948014511e+00 7.1223901889191643e-01 1.4337138227780719e+00 +1360 1.7123118807760440e+00 2.8258981969965267e+00 -5.7236425990686124e-01 +1533 7.5920780723934089e-01 6.1735226657476561e-01 4.1027235691626327e+00 +1358 8.4862708567919179e-02 -1.0148955692822330e+01 3.6330607880441508e+00 +1516 4.8523831377104871e+00 -2.8878120061039962e+00 2.3781160915082271e+00 +1356 -3.4237918370512405e-01 1.5122190289145170e+00 6.0225179861591700e+00 +1534 -4.4836284413904686e+00 9.9201670986209534e-01 7.0835910662682497e+00 +1354 -5.6076115432479421e+00 1.9167163485267911e+00 3.2163505038827962e+00 +1535 1.0139577929201295e+01 -2.2797253965469340e+00 -6.5900588428904783e+00 +1536 -9.3269363585379468e-03 5.7122571980568582e+00 -2.9163437377394485e+00 +1344 -3.3691185326446353e+00 -1.8718620010219096e+00 -2.0758563046830116e+00 +1517 -3.2194335059054358e+00 1.2850653395124727e+00 -6.2463297981157027e+00 +1342 5.2680880839863864e-01 3.8441416031188114e+00 -2.8070029651704416e+00 +1518 -4.9005132391558268e+00 2.8806779275772838e+00 -2.5509779152006087e+00 +1340 -2.1158018689505518e+00 3.6474231536185306e+00 -3.4321460004060000e+00 +1311 9.2782882243894726e-01 -5.2992229794873627e+00 1.8178903401812592e+00 +1338 -8.5316595767510162e-01 -2.1330325958875157e-01 2.2530421393525821e+00 +1519 3.0314376512977721e+00 -4.5286112262647787e-01 5.5944652362313638e+00 +1520 1.4617488253356565e+00 -2.1879387207648233e+00 1.0533040565704062e+00 +1357 -1.0985732646080675e+00 5.4738565174294394e+00 6.8590111503320355e+00 +1328 -3.1613070511367720e+00 4.6680203768383892e+00 1.4707875963314798e+00 +1326 -2.1324498843984094e+00 -1.0392160639670944e+00 -1.0521785544726145e+00 +1514 -2.6867089721127027e+00 -2.3646576991961796e-01 9.8354748841139283e-01 +1324 -5.7939302613706314e+00 -3.4036419195398593e+00 1.7652179916374591e+00 +1865 4.3117721759337585e-01 -2.9858432640559922e+00 -3.2797181432060309e+00 +1322 -2.1151772783256623e-01 -7.2465837780805247e+00 -1.7436413763062577e+00 +1323 -2.2664891331673674e-02 1.1019055985170657e-01 -3.7795302724329840e+00 +1055 -3.0582436892114075e+00 -3.1418153108213880e+00 -5.2625890591453162e-01 +1935 -1.1038757142583264e+00 -4.9639308321190256e+00 -8.1511628365823097e-01 +1312 1.2037988841576743e+00 -2.9529487872298277e+00 2.7776431234949452e+00 +1310 6.5523154883120780e+00 4.7976010651692063e+00 -9.8350894767697348e-03 +1071 -5.2189659311445338e+00 -1.7986123152891937e+00 -2.1589428650237190e+00 +1308 -2.9114150955720901e+00 5.4628648704378835e-01 -2.7390932978996028e+00 +1487 1.5806247358363201e+00 -2.9619767158149402e+00 4.5654354692788832e+00 +1306 -6.4942526306619603e+00 1.8236702129520308e+00 6.8090777095424260e+00 +1485 3.3269363424651051e+00 -8.6111648961288478e-01 2.7557285319695413e+00 +1296 4.8985221314171074e-01 6.1721385882894009e-01 -2.4670952399438666e+00 +1294 -7.4749915928075303e+00 1.2209319800555531e+00 -2.3736872185571269e+00 +1051 3.3530908529053511e+00 -1.5748296541596838e+00 2.5901653971129432e+00 +1292 4.3297426466084360e-01 6.1129085745442184e+00 -1.3757092310971155e+00 +1290 -2.1199901394325322e+00 -3.9636166379548330e+00 3.6770216936132383e+00 +1931 2.4256678501286850e+00 -1.7496213005279226e+00 -4.1866719133355685e+00 +1807 1.9084088225133142e+00 -4.2343045626389392e-01 -4.7954216931703781e+00 +1483 4.5906253322883259e+00 5.8831688166670686e+00 -4.0822932050422853e+00 +1547 -3.4305605105034243e+00 1.3155888498810459e-01 2.3898132192575292e+00 +1037 2.4030594464164192e+00 1.7015961464794067e+00 5.6371054512065237e+00 +2048 2.9517519786836338e-01 2.7954685730876450e+00 2.1923852546861027e+00 +2047 5.2178909707074679e+00 -1.1071194385729172e-01 1.5340592215269619e+00 +1802 3.7011904105298896e+00 -5.7629720705315535e+00 1.7992611868068682e+00 +2046 -2.6003164082695993e+00 -2.4987969977353446e+00 -5.0215378737227550e+00 +1804 2.1857266882790807e+00 5.5653745304188575e+00 2.1005152943117578e+00 +2045 3.1724148048210510e+00 -5.2762395986602251e-01 -6.3802163312248243e+00 +1806 4.8791340959800733e+00 4.3106014619518420e-04 -8.8961019737822522e-01 +1359 -3.3821506361612310e+00 1.0746812695162757e+00 4.1211241223555897e+00 +1808 1.7798002387120488e+00 1.8163805873699519e+00 -2.0174317758271694e+00 +1417 -4.7258773318583658e-01 -3.0953549351761351e+00 1.2902943608879447e+00 +1818 1.4725609920633884e+00 -4.2442907119182482e+00 1.9096584534497145e+00 +1820 -2.2455017890024406e-01 -2.1376619812049409e+00 -2.8286078569363244e+00 +1822 2.3983520120854021e+00 -2.9152284754813973e+00 -1.5167783289769556e+00 +1824 2.3284900148431285e+00 -1.4911825822088554e-01 1.0810459207123757e+00 +1995 -6.5832395948275213e+00 -2.9899268595063186e+00 7.3443268896482805e-01 +1839 -3.2815990469785730e+00 -1.4811154658367165e+00 -4.4979831904657747e-01 +1999 2.5165072388827325e-01 6.1197347601218706e+00 -4.4265781656401879e+00 +2031 -3.4483355840241421e+00 2.3984905701768948e+00 8.4757691696296461e-02 +1834 -3.7247436132946934e+00 2.0568360253527724e+00 3.8025197358939777e-02 +1836 -1.2705994038410744e+00 1.3791266448830091e+00 -1.7179396080154155e+00 +1563 1.3155404416959811e+00 1.4431608410221894e+00 -1.2640725350550019e+00 +1838 9.5378597809661236e-01 4.0897224026330354e+00 2.9880810484499039e+00 +1840 -4.1961158589408791e+00 -2.3899126306148482e+00 -1.7454682713453380e+00 +1579 7.2539811793231401e-01 -2.8534106464930469e+00 -2.1749761386379363e+00 +2029 1.4592845987586307e+00 -4.3828342768037604e-01 -1.8185313084765216e+00 +2028 2.4776797488155164e+00 -1.8352598516882523e+00 9.9521953442225619e-01 +2027 -2.8051198570089046e+00 -4.3808176576665954e+00 2.2178993109904224e+00 +2026 -2.4699547417775629e+00 1.4213590909514184e+00 3.1906773077502608e+00 +1850 -4.0506591592217195e-01 -4.1477910893851649e-01 -2.7097021456677797e+00 +1561 4.2036740988253168e-01 4.7121910205517308e+00 -3.3524933176843663e-01 +1852 -2.6782958084338784e+00 4.2160881177900302e+00 -9.0294665007221664e-01 +1854 3.0252693992835136e+00 -4.0881346944652641e+00 2.3099805333639991e+00 +2032 1.8663779821452833e+00 -3.0039448330613516e-01 2.7141223380255339e+00 +1856 9.5055306922711349e+00 -3.2677717614020940e+00 -1.0905795152179000e-01 +2044 -3.5078355827588839e+00 3.1735794611949713e+00 -1.3347399365328561e+00 +2043 2.0873608637291836e+00 -7.1569491116601588e-02 -2.5526236375767575e-01 +1423 -2.2813011962589131e+00 -2.5139022729400753e+00 -1.4231634407121230e+00 +2042 7.3766641005437217e+00 -4.8540216839290427e+00 -1.2365832105068197e+00 +1823 -3.9271990258521066e+00 -3.3747039270952145e-01 6.4458474037631124e+00 +1866 7.6921714973137645e-01 -8.2920155449780442e+00 5.2116019431840295e+00 +1868 2.3720398730821026e+00 -1.6886898426878291e-02 9.0312374276779583e-01 +1870 5.7094808788442171e+00 2.7286845337111161e+00 2.2404808494019801e+00 +1872 -4.5607514987659620e-01 -3.8438499431109832e+00 1.7557307002302065e+00 +1231 -2.9160781976501355e+00 -1.6566443476979159e-01 -2.0925809711303467e+00 +1882 7.6007155004843563e+00 1.8271485499199036e+00 1.7491197615940031e+00 +1883 -9.3393543437655602e+00 -6.0551358020846102e-01 4.6244883002788423e-01 +1884 3.0330329836748282e-01 6.0048408427723992e+00 -1.0946646485251397e+00 +1885 3.8342627133272802e+00 5.5002091482534041e+00 -2.0527431666579479e-01 +1886 4.0239657726639040e+00 1.5395084854523611e+00 -1.0283532683572967e+00 +1887 -3.8709353203611494e+00 -1.1896362022343290e+00 -8.6526370077307924e-01 +1888 4.3391698643338028e+00 -2.5914532843073022e+00 1.3275010242203551e+00 +1034 3.2902311073178905e+00 -7.0537492212851161e-01 -5.5655713152507880e-01 +1898 7.1789024794432530e+00 -1.5950740566345445e-01 -1.0090396339009240e+00 +1899 4.4873818038633635e+00 7.1730154379364008e-01 1.3141841035395851e+00 +1900 -1.8453475113617783e+00 1.7484365274473763e+00 -1.3131383912691632e+00 +1901 -4.7917840886383125e+00 1.1051934146199789e+00 5.5122252740618762e+00 +1902 -5.1066659055501544e+00 -1.0944309515455990e+00 1.9542239581151106e+00 +1903 -2.3887896120737073e+00 -4.9622303060915591e+00 -8.2609414008581474e+00 +1904 -6.5166063155962295e+00 -3.2695541864509794e+00 -8.0466167284049095e-01 +339 -6.4659937842719115e+00 -6.0675729484388059e+00 -4.1440285141664797e+00 +1914 5.7922019773578208e+00 5.1608300925506621e+00 4.2261785698127383e+00 +1915 1.2787380268153184e-01 -4.1177413003679577e+00 -8.2659230846237064e-01 +1916 -2.6500658400270916e-01 -3.1687389348185895e+00 3.7024678268936415e+00 +1917 3.3113191691240251e-01 -5.3719590393734062e+00 7.8178199958477268e-01 +1918 -1.2817639534222567e+00 5.9435301428498990e+00 -2.6337384255664196e+00 +1919 -5.9891026793893767e+00 -9.1268460481256730e-01 2.8267684770098302e+00 +1920 -1.7543681225780621e+00 -4.4364359962446226e-01 -2.3200388621143957e+00 +1548 -4.0470820575892237e+00 -1.5258123996917001e+00 -3.9564540176527454e+00 +1930 4.2912698848594744e+00 -4.6663270553959357e-03 -1.7458075276237799e+00 +1932 -3.1181557026168338e+00 -4.7171165279663327e+00 2.8102017207945879e-01 +1934 9.8213441557123538e-01 -2.0749442264246323e+00 1.3184648101038747e+00 +1036 -3.6623885072252071e-01 1.1630489241124005e-01 -2.2411062235444961e+00 +1936 -1.8807386133953656e+00 6.2089360563987983e-01 5.8816109965868675e+00 +1050 2.5454109038301659e-01 1.6351572938311292e+00 6.7873085476187434e-01 +1946 5.0722236448017233e+00 1.5770513175036138e+00 8.1707787906245812e+00 +1947 -3.0152584755391127e+00 9.2016075026203359e-01 1.1486890326619951e+01 +1948 2.8189157883908980e+00 -2.6954397648997972e+00 -3.4249182591351586e+00 +1949 -1.8608301118303758e+00 -4.3162011488231009e+00 5.5435645918220267e-01 +1950 5.0760602853640613e+00 4.9536817419035584e-01 -8.5271849095581209e-01 +1951 -1.4068868864286184e+00 3.4104319212781373e+00 1.2368694370578686e+00 +1952 4.4850993452906396e+00 6.5170734126894514e-01 4.0080889849707528e+00 +1041 -5.3261636005352582e+00 -2.5189280571852302e+00 -2.1167597478427322e-02 +1961 1.3399334262801486e+00 -3.1539023445210796e+00 4.5569180479537730e+00 +1962 -3.6571997206261528e+00 1.8889482961819892e+00 4.0983305214904560e+00 +1963 -1.2701458874039582e+00 -5.3120810774821630e+00 6.7741701895497397e-01 +1964 -4.0931077907026436e+00 -5.6750577716361956e+00 4.0167923217014501e+00 +1965 2.7887713943259875e+00 4.4313415988865295e+00 4.2293838665024630e+00 +1966 3.1844294417334140e+00 -1.1052721185543223e+01 4.1653587394902321e+00 +1967 -2.6091042733595904e+00 1.1169339022365306e-01 -3.6460425825631262e+00 +1968 -6.6907787643064509e+00 -4.2556701326133224e+00 2.2722732430484283e+00 +886 2.0019903229740413e-01 -5.3040247956471354e-01 6.3405363889766531e-01 +1978 6.2202384747762984e+00 -7.0520260254718292e-01 3.8498201806746115e+00 +1979 -2.4899092371687979e+00 6.8427682090107673e+00 3.1100370471227321e+00 +1980 2.9786102306443021e+00 3.5498754593579545e+00 -8.6914846171964140e+00 +1981 1.8556011541876791e+00 1.2389758928749304e+00 -2.5402103906822306e+00 +1982 8.6549975572770543e-01 -5.0602773803531909e-01 -8.0344699661484924e+00 +1983 -3.9521815612288229e+00 3.8738460306125666e+00 2.0099948623871375e+00 +1984 7.2541439401623533e+00 2.2497615296598892e+00 -4.4861311141392166e+00 +2030 -4.6005710062321743e+00 -9.5823261253501180e-01 -2.4926719473397460e-01 +1994 2.0578994676556148e-01 -1.6051638934513934e+00 -3.5550446682339998e+00 +1996 9.3076920930414673e+00 2.0737385890070708e+00 -2.2774238050051556e+00 +1929 7.3015168733751183e+00 -1.0466692859507001e+00 -4.5116619416175032e+00 +1998 4.2896442939976085e+00 2.9901207920386158e-01 4.8910896235238832e+00 +2000 3.3457529804559392e+00 3.1963306426596967e+00 -1.5917103609698724e+00 +1634 -1.8950842174916769e+00 -1.6758228537937259e+00 4.8579925130775345e+00 +2009 1.0580416006265728e-01 -1.4156175691716355e+00 5.5701979489849753e+00 +2010 -6.4867774262334859e+00 6.9907858592016510e+00 2.0877005335287171e+00 +2011 -1.6819326635519636e+00 -3.6853367392352534e+00 -2.2761301966388667e+00 +2012 -2.7891380993612840e+00 1.3129021403655472e+00 1.8022604621208831e+00 +2013 -4.6591574829324376e+00 -3.9877463746969184e+00 -3.2458281363851621e-01 +2014 4.0941038038831499e+00 2.8532967124262393e-01 -7.6186718094458650e-01 +2015 -2.8367922786282054e+00 2.4404374277601285e-01 -3.6946976106760867e+00 +2016 6.4840449383673349e+00 -4.0349420915466023e+00 -3.7987914858781030e-01 +492 -8.2645420557332336e+00 -4.3877524598270723e+00 -4.2665000998670131e+00 +1851 8.3973345323948123e-01 -2.2941653568085836e+00 -6.1553250052965536e-01 +1421 4.4384267576874787e+00 8.4505182012835913e+00 4.1386931987677498e+00 +1577 1.0234847469535409e+00 2.3193042332678688e+00 4.6744009345950968e+00 +1855 1.4484993410932625e+00 3.1369941782236679e+00 1.7018898576498600e+00 +18 3.5672920019619875e-01 1.3379215086035456e+00 3.4176776089493317e+00 +1869 -3.4465305772504160e+00 3.2538096573729147e+00 3.3327260858214451e+00 +1419 5.8954080941214260e+00 -1.5671515048887215e+00 -6.7374529123254367e+00 +1595 1.7688371214488803e+00 -4.3696353133237391e+00 -8.7029072788076878e+00 +1295 -7.6384767089769001e-01 2.2001900794561799e+00 5.2275473152942817e+00 +1481 -8.5879577841602810e+00 -1.1775230683084353e-01 -2.9649219620872063e+00 +1355 -3.8115439710486307e+00 -2.1605215610825934e+00 6.8793077402959932e+00 +1597 8.0571713057791272e-01 -1.4479464575973444e+00 1.3226177684089573e+00 +1565 2.8676609874827969e-01 -8.4177781170594859e+00 7.5456573222866408e-01 +1307 -2.2836282667243126e+00 -5.1801492757193521e-02 -8.6467142965293622e+00 +1278 -2.8703885962853817e+00 2.7656674126376370e+00 6.3186917031579748e+00 +1611 -2.7120106336447893e+00 -1.6604851207575047e+00 8.8874797934078198e-01 +1039 -6.6252357236299819e-01 -1.7775670247531812e+00 3.8735769267473854e+00 +1792 2.1578071861259738e+00 6.5098221245689434e+00 3.5554956053105911e+00 +1038 1.5240953264080497e+00 2.6123467992922773e+00 -7.2942337450520456e-01 +1679 4.7163234700368575e+00 -5.4388420816786431e-01 -5.0247684214858201e-02 +1849 -2.0466696755448588e+00 -1.1265547495700514e+00 -5.4011017782211095e+00 +1853 3.2101067585234908e+00 1.0447505967277138e+00 6.7698863548554531e+00 +1085 -1.5765116576126468e+00 -3.2577667617475696e+00 -1.2592818565203181e+00 +1229 -5.3761054935942854e-01 2.3643690927653847e+00 -1.4907843877769016e+00 +1567 4.2446727031700382e+00 5.6110794035492200e+00 -1.2551094628550410e-01 +1101 6.2565166935862004e+00 4.4285053738697551e+00 1.1591576666327990e+00 +1677 -8.6130405633083829e-01 -6.9092141845132913e+00 3.0576054669337633e+00 +1067 5.5445277939024979e+00 1.6403728026589053e+00 -5.8430684106694537e+00 +1040 6.7235632760765607e-01 -4.3581373918820798e+00 1.5344671200742410e+00 +1053 -2.3673862696329553e+00 1.6390329727325228e+00 5.4749006953440320e+00 +1069 3.0582745855137583e+00 -2.1109550346275161e+00 -4.4441719830076405e+00 +1327 -1.3572505295149020e-02 5.0438553312222805e+00 -4.8345163962202864e-01 +1293 3.1984963360624303e+00 2.7734771487307597e-01 6.6274412109785474e-01 +1309 3.5880993389658409e+00 -4.6668974515897927e+00 -8.3202150003795232e+00 +1837 -1.4404904982204343e+00 -3.4239925110964911e+00 -2.3886966563128800e+00 +1833 -5.4653998398784165e-01 6.0926393654621469e+00 -3.2779023971333161e+00 +1905 -5.0151470218632808e+00 -3.0504155043675345e+00 -3.8966470573322103e+00 +1087 -9.2625365469167231e-01 -3.9525592696529741e+00 5.7203569215584480e+00 +1058 2.0569771451562371e+00 4.2154181640480362e+00 -1.0237380488312938e+01 +1339 4.4050720724971351e+00 -1.4256169932176210e+00 2.3649281313239037e+00 +1291 -4.9424439258958994e+00 -1.2736122596733914e+00 -1.8342387176263425e-01 +1615 -1.6472177131469073e-02 1.2993987909528397e+00 -1.4190575665899792e+00 +1341 2.1428861993464419e+00 3.0661350558859124e+00 -2.6807453137873325e+00 +1549 5.2100262627106826e+00 -9.2833310623143728e-01 -2.8792374251167514e+00 +1165 -1.2432257272879179e+00 -1.1530555314026645e+00 2.7792182389540803e+00 +1083 -3.7899803803436820e-02 -2.8068272542677675e+00 -3.3986233550003377e+00 +1103 -3.7241778350316923e+00 5.8645035982935878e-01 2.3888432522827188e+00 +1741 7.0152398361373249e+00 5.5718432769635866e+00 2.3163938039860330e+00 +1035 2.1018906722566104e+00 6.0194554512624510e-02 -2.3342232050120475e+00 +1821 4.4518281325712845e+00 -2.5252957975586541e+00 2.5747318845917461e-01 +1248 5.4866418973910340e+00 -1.5700937210132815e+00 -5.4379766893513515e-01 +1247 3.7487519516107568e+00 8.8288801781756507e-02 -7.2806691693583314e+00 +1246 6.5334067642623879e+00 -4.0485661705501998e+00 -8.8340355181006025e+00 +1245 -2.3475084143462099e-01 3.5647571920748709e+00 6.8781679573213177e+00 +1244 -2.9513790008056366e+00 -7.1700353391744953e-01 -3.9272818242951000e+00 +1243 6.2570325608533155e+00 5.6152016202016286e+00 2.3490505324018511e+00 +1242 6.7943302367007075e-01 7.3157644431990789e+00 1.3504853586211790e-01 +1583 5.1617161182392381e+00 -2.6422737643374736e+00 -6.0572138813851018e+00 +1819 3.2621202135437288e-01 -1.0564294648439534e+00 -4.2800918906237282e+00 +1163 1.9811742980286360e+00 -3.1138944471556678e+00 4.5672147558553045e+00 +1167 2.4740786011834395e+00 -9.3030270601116249e-01 -4.1805848098228271e+00 +1562 -3.9863941103903899e+00 -2.2855808180520265e+00 4.2436830352575061e+00 +1760 9.8999305178334218e-01 -3.7850118593522022e+00 -9.2585134815803838e-01 +1759 -8.9293547543528906e-01 1.2202277319060952e+00 5.0297124707671479e+00 +1758 -1.4923319277030169e+00 -2.1981908172149818e+00 9.6120205263627745e-01 +1757 -4.5242021710213509e-01 1.2424813204613001e+00 3.4375545276950832e+00 +1232 1.6086449341153115e+00 3.0523127439633591e+00 -7.6970617109843786e+00 +1263 4.2525215843171589e+00 1.6415303208797862e+00 -3.3471418350072288e+00 +1230 -5.7625101623888741e-01 -9.4934049681721622e-01 -2.4344026652645159e+00 +1756 -2.8969311410836824e+00 1.0994885676929469e+00 2.2182775450814671e+00 +1228 4.2944409291637733e+00 -4.8375642905754619e+00 -3.3405243584034454e+00 +1755 3.8919368142585977e+00 -4.0175487399028365e+00 -1.9132705082248178e+00 +1226 -2.9461543271394190e+00 -3.5679881663950410e+00 -6.1070975988656642e+00 +1264 -1.3752867465991265e+00 -2.6793557824351617e+00 3.5025056974116358e+00 +1754 1.3390773805275107e+00 -1.3135677627359374e+00 -7.2527424889045795e+00 +1099 -4.7438632722991674e+00 6.9885317898121029e+00 -9.8473059838505184e-01 +1744 1.0928895005658344e+01 -1.5824871513959109e+00 -4.2597564097101803e-01 +1776 1.8583438766796525e+00 2.3676993802810187e+00 -2.1237131485248456e-01 +1742 -6.3231969418623155e+00 6.8007642606857266e-02 2.7452870760229380e+00 +1773 -3.7600360804220743e+00 -7.6968021563178191e-01 3.4640607096513545e+00 +1740 -2.3840847954598456e+00 2.2054663995388983e+00 5.1811270674131640e+00 +1739 1.9253914741553639e+00 -3.3500378361842031e+00 5.3107574776408377e+00 +1216 4.9763678616253121e-01 -4.3714657796850824e+00 4.5726963480810984e-01 +1215 -6.1799967920044285e-01 8.1592481053011134e+00 3.8006728369427827e+00 +1214 -2.2686771909463368e+00 -9.3946547775085965e-01 8.0673219066708962e-02 +1213 -4.6219982627187388e+00 5.7736078005928981e-01 -1.9150180702192128e+00 +1212 8.9182925499160548e-01 -2.6241348592377911e-01 -5.4354315551715464e+00 +1211 5.7602548991309162e+00 -1.8788160360849249e+00 -5.1247755957573311e+00 +1210 -1.6553007201540482e-01 7.8517791549765847e-01 6.9289268136968540e-01 +1738 -2.0240705405598458e+00 -2.0991545521900363e+00 2.3896595862135874e+00 +1774 -2.0555692639916741e+00 -5.3790399662652364e+00 -1.8654879473748451e+00 +1581 1.1752910725051859e+00 -4.3018010921979627e-01 -1.3531480836294201e+00 +1772 -7.9742567215354132e-01 -4.0858820748699971e+00 -1.2312763025737482e+01 +1728 2.3804250406229057e+00 -1.6472166399394645e+00 3.3049683000697891e+00 +1727 1.0069187946925429e+00 2.7935375159270004e+00 -1.8546135676101678e+00 +1726 1.7584931222512097e+00 -4.1931736392333152e-01 -3.8812556542891388e+00 +1725 -2.3922118551046028e+00 -2.8638186418308718e+00 -4.2222106919937845e+00 +1724 -7.8555525496278307e+00 4.4404159925669395e+00 -4.7509519053867395e+00 +1200 -4.7459406453339872e+00 -5.0433729755587242e-01 5.2537907968921918e+00 +1199 -9.8104799137983378e-01 9.1492065658886068e-02 -2.4929165366597030e+00 +1198 9.0350880694603342e-01 -2.4895345654184795e+00 -2.7501071738417195e+00 +1197 -8.8027093708710265e+00 1.8238795624382429e+00 6.5429019496390772e+00 +1196 9.4627007194387247e-01 4.8465455313987018e+00 1.0446029761718267e+00 +1195 1.5441727358530037e+00 2.6887868053392077e+00 -4.1746883938529891e+00 +1194 -4.2322067938365521e-01 -2.9544969135323802e+00 2.2265219928930464e+00 +1723 1.7330174888608113e-01 5.5091676620574022e-02 1.7713031600178557e+00 +1722 1.1738315219239348e+00 -1.3218090559136428e+00 -5.0655225628928449e+00 +1712 1.4368250645295888e+00 -1.4057412328784880e-01 -4.1660415633475960e+00 +1711 -4.0171704165040873e+00 -1.7300312316250908e+00 -3.8259700667203194e+00 +1710 6.9769086161606805e-02 2.2579833980366240e+00 4.3985236492126512e-01 +1709 6.5432232106015649e+00 2.4995130619169119e+00 8.2724612212298221e-01 +1708 -4.6270144124483679e+00 3.8637074789681223e+00 -8.3943653849310337e-02 +1707 -5.1455384000776725e+00 5.4808171846936133e+00 -8.4012989587511111e+00 +1706 2.5018805817150502e+00 -7.8125733561452702e+00 -1.4292158772582358e-01 +1184 -4.6919942683562708e+00 6.2743240867694672e+00 3.5030067865077852e+00 +1183 1.7983258562151923e+00 2.5417109765306098e+00 3.1718757806586839e+00 +1182 -2.9177751560397782e+00 5.0560842984592302e-01 -6.7645638849909790e+00 +1181 5.1623042825774623e-01 -4.0208865811704540e-02 -7.2006396706481901e+00 +1180 7.4893500985546535e-01 -2.2538247831585112e+00 5.5608594380666343e-01 +1179 3.8420796508953070e-01 2.5857943030727712e+00 3.7561758479215723e+00 +1178 1.2710890014291221e+00 -1.2864436031271878e+00 4.8604492234925084e-01 +1325 2.6641913116083864e+00 2.4881049725928861e+00 -1.0494710652720838e+00 +1696 2.2017281847730632e+00 -3.7748427976430858e+00 1.2119806704254945e-02 +1695 -2.6393016261546789e+00 -1.3540935435549302e+00 1.5920002285836521e+00 +1694 -2.3619825587040282e+00 1.9232144713594246e+00 5.8493238022958129e+00 +1693 -2.0341760844859884e+00 8.1845560465448948e+00 2.1052614565675447e+00 +1692 -1.3223954369278497e+00 1.6938311027214719e+00 -1.4533272490735680e+00 +1691 9.5504148513901810e-01 -3.7545789265529739e-01 -3.7704341423899841e+00 +1690 -9.6320182525949649e-01 5.3859143865691028e-01 -8.7805643781005127e-01 +1168 -7.6149504736781737e-01 6.1259097997273138e-01 1.1587203990804449e+00 +1790 1.9864297869304142e+00 -5.6162016153997989e+00 -2.6046407257180509e-01 +1166 -9.1634926280530298e+00 -3.7185310556679352e+00 -8.1756374436261350e+00 +1550 -1.8798825823951466e+00 -5.0951378740192781e-02 1.9522663600185783e+00 +1164 1.5895116291239170e-01 2.2171484894012865e+00 5.8963538208268140e-01 +1680 -3.6334794871288878e+00 8.2030880021623247e+00 -1.6887845112237674e+00 +1162 3.3718077600898919e+00 -4.2476955355443788e+00 2.2803073232887341e+00 +1678 2.2548504339583526e+00 3.9346599130450766e-01 -5.8245968931736387e+00 +1676 2.8308139895451041e+00 3.0235519341069348e+00 6.5624420638133807e-01 +1674 -1.3359047789135685e+00 4.0887860952745267e+00 -5.0740879249672588e-01 +1785 -2.0979664514167591e+00 -4.2275599379926012e+00 3.4152302655158917e+00 +1664 -2.4375817916604969e+00 4.8904285527371147e+00 -6.7005958067630100e-01 +1663 -2.0351823368949460e+00 -7.5020747528726295e+00 8.9065240486915176e+00 +1662 -2.6939096232314359e+00 4.1696219595446593e-01 -7.4152381078019758e-01 +1661 1.7841165299213120e+00 3.9158053716669223e+00 -1.9706553843951837e+00 +1660 -4.3866733504139903e+00 1.3822540329320570e+00 -2.1545671372028665e+00 +1152 -1.1304578267170928e+00 -6.4799950317925319e+00 3.7348075039644507e-01 +1151 2.1159978866288789e+00 -4.0358578046765403e-01 1.8186776670885390e+00 +1150 3.8060715135993135e-02 -3.9007239600007027e+00 -2.4868901784316839e+00 +1149 -4.3024106516512917e-01 -6.7255414305276702e+00 1.6558277022211589e+00 +1148 5.0165527106297922e+00 4.2657776876315125e+00 -3.6423852230602232e+00 +1147 1.0407482638332878e+01 -1.3515356288231646e+00 -5.7459254057019047e+00 +1146 -4.6972433599307619e+00 1.5489580621784377e-01 -1.5630913629575640e+00 +1564 4.2458522693899816e+00 -9.5160505098657089e-01 -3.5211096645433928e+00 +1659 -5.6839895872252963e+00 -1.9965176454890371e-01 5.4193959634242406e+00 +1658 2.3169900935872403e+00 -2.4632355169259110e+00 -1.4746380393385790e+00 +1657 4.0547980763443698e+00 3.7543905443333951e+00 -2.5367143915465067e+00 +1697 3.6943945605623050e+00 -1.5971900888005739e+00 -1.8981568003192615e+00 +1648 -1.2063172023400766e+00 -5.5417152262063930e-02 -1.8732666501251292e+00 +1647 2.0819708618701362e+00 1.7779745224383625e+00 1.4495292510742757e+00 +1791 -1.2711709623989342e-01 4.6236955907607751e+00 -6.3275139027835980e-01 +1599 -1.3395420112828407e+00 4.0877806490139585e+00 3.0361562565803113e+00 +1136 5.0353654844197706e+00 -7.1182217350924648e-01 8.4845547568013857e-01 +1135 5.4282907941208070e-01 3.2765745286073500e+00 8.9802741275011022e-01 +1134 1.2949312751219353e+00 -4.9332219215965845e+00 3.9373953078668071e+00 +1133 -4.3918983998084862e+00 2.9104412839894303e+00 1.5624355484064676e+00 +1132 3.5410831038313115e+00 -3.8045602771456881e+00 3.5510587169653607e+00 +1131 -5.6041039393332852e+00 1.7128464672636259e+00 6.3386955471602155e-02 +1130 -1.2569159187934014e+00 5.3348386659528648e+00 2.9086214048107646e+00 +1646 1.8818823228980412e+00 1.0652779651723256e+00 2.8668001970391623e+00 +1645 1.3201162932662052e+00 -6.8574963190364562e+00 5.4595597363065029e-01 +1644 -2.1994213725542440e+00 2.9385995338670217e+00 -2.4662694579830071e+00 +1643 -5.3230609085419489e-01 7.3407961057442306e-01 -3.0740786726634850e+00 +1546 1.4638616539794663e-01 -3.4398775908511454e+00 1.7727044456241530e+00 +1642 -9.2688000645891766e-01 -1.8302745711074975e+00 -4.8941371766765895e+00 +1613 -4.8331034222273086e+00 -3.3029004530063468e+00 2.7562973111607350e+00 +1632 -6.3414868617046083e-01 -5.1405660152302044e+00 2.6342538786784182e+00 +1566 -9.9717356042835173e-02 -2.5517126172819773e+00 1.0334979086220695e+00 +1120 -9.2251362984829999e-01 1.0559634793090011e+00 -2.4188100154748873e+00 +1119 -3.7457510048584535e+00 -2.5669255587518611e+00 -4.9327962435193523e-01 +1118 -4.2956489755377003e+00 1.2877972894451650e+00 -9.7097170745424821e-01 +1117 -1.7791614889209746e+00 3.1246248751073562e+00 3.0701731195907995e+00 +1116 -9.9818396679835941e-01 -2.0546724594031405e+00 6.0848091591196263e-01 +1115 -6.5997878243627870e+00 -2.0945016191788381e+00 -5.6571384792046659e+00 +1114 3.5765984995120506e+00 -8.9760828569340534e-01 3.8373335487882521e-02 +1631 -1.0338988275821553e+01 -6.4187973120799882e+00 -1.7982092964976175e+00 +1630 3.3413184849245288e+00 3.9901482517415836e+00 -2.7812617269193729e+00 +1629 3.6391490641565456e+00 -2.0613889480883185e+00 -1.5621089391153260e+00 +1628 -1.1116533602244727e+00 -2.5004930250037578e+00 -6.2884778436136413e-01 +1627 3.3395234425566627e+00 -2.3699855486878878e+00 -3.1510392974993691e+00 +1626 2.2679730214023142e+00 4.7563294630045343e+00 2.1115566424554570e+00 +1793 -2.0733252067079535e+00 -2.6320935656419970e+00 -7.5664672376958979e+00 +1552 2.9924087313916994e+00 -1.5761243863148777e+00 3.1887854904364510e-01 +1835 -1.8631997676489078e+00 -6.6262114396413798e+00 1.8870846006045883e+00 +1104 1.6463172078653632e-01 3.5829558767324290e+00 -1.2752189592025358e+00 +1616 -8.0656156437730653e-01 7.8998062520268952e-01 -3.4124551142823951e+00 +1102 2.7307793701464034e+00 1.7227163566724046e-02 -2.6706448996568808e+00 +1274 -2.4447654225888016e-02 8.9605833713243239e+00 -2.5718968572978418e+00 +1100 4.1914045877411388e+00 -1.8319208218113032e+00 4.6199840704513822e+00 +1775 1.7436173747904702e+00 -6.1139991236952564e+00 3.8781373791190021e+00 +1098 7.9571460637557099e+00 4.7884222562934848e+00 -1.4265701123578167e+00 +1614 1.9566853480505320e+00 -1.2184353261179233e-01 -3.0869339611311877e+00 +1786 2.7622249584881939e+00 1.1510108441888502e+00 -4.2179051312424685e+00 +1275 -1.8339740427891535e+00 -7.0754158699581158e+00 5.1159420143980308e+00 +1612 -3.1083302265860469e-01 -8.1212521164080655e+00 -2.9867888021860796e+00 +1276 2.5487628257541117e+00 5.7603985035552030e-01 2.3624836335813004e-01 +1787 5.2589968869800598e+00 -9.2297302697116612e-02 -2.5703654184777904e+00 +1610 7.0154201144951589e+00 -1.8963142617278810e+00 -7.4693438224629460e-01 +1788 9.3762428031619671e-01 -2.7387051153089450e+00 5.7262318397059548e+00 +1277 -3.9257952120618561e-01 -5.6555974294181210e-01 3.5128233613411153e+00 +1088 2.9131167702256872e-01 -1.0793362390861592e+01 1.3215208391511677e+00 +1259 -9.1634681306567831e+00 -2.2539243414166830e+00 1.2698534052765693e+00 +1086 -9.5795290003304501e-01 -7.0876274997673585e+00 1.9841400951181833e+00 +1258 9.3326162589192418e-01 2.0966446197566078e+00 3.9022914325765838e+00 +1084 3.8197953292635517e-01 4.0191357837945176e+00 -1.0736014525732221e+01 +1260 -6.1129085681959561e-01 4.2723871503738966e+00 4.1239202216866131e+00 +1082 4.8542360589129139e+00 5.2984876770867331e+00 -2.1045039444775000e+00 +1261 -3.2969815385644924e-01 3.1850383598205383e+00 -4.0488248012389523e+00 +1568 3.6448980714320949e+00 9.6130784415979829e+00 -2.0265375505676912e+00 +1262 -4.9488312235953709e+00 -2.6524541417282288e+00 -3.0076430585148239e+00 +1789 -3.8074561615920910e+00 1.0451683384413636e+01 -2.1800422404941080e+00 +1675 -9.6675574295079580e-01 -3.0691633768506615e-01 4.8681581967426251e+00 +1600 -3.1897800950599171e+00 9.3159077802727863e-01 -4.5212678239609622e-01 +1279 1.9799145396787530e+00 -1.0167929447558579e+00 8.5103670671855736e-01 +1770 -2.5646253516335271e+00 -3.1840502451514785e-01 -1.7701064704099041e+00 +1598 -5.1390536424968192e-01 -2.2819234389305452e+00 4.0286699139799769e+00 +1072 1.1575552924505188e+00 -3.5215361428122320e+00 2.0732859977418134e+00 +1343 6.4986400036871528e+00 3.7825028312267248e+00 1.1038558485613872e+00 +1070 -5.4746534073328901e+00 -1.5265178090696425e+00 1.7318071972611806e+00 +1743 2.8112647970668898e+00 2.8358802310641744e+00 -2.5867452226725214e+00 +1068 4.5018557700205325e-01 -3.5332720452411244e+00 -5.7710759240020506e+00 +1771 -1.5066028564621445e+00 1.6848546912719682e+00 -1.3328058366382745e+00 +1066 -4.5900999590071816e+00 2.5056222197089149e+00 1.2110495249778817e+00 +1596 -4.4857578440444534e+00 -1.2690405472870401e+00 1.2838874601123387e+00 +1594 -4.5512983312895887e+00 1.0790223806289350e+00 -1.3418657091430633e-01 +1584 -5.5580401516321247e+00 -1.3678283245984053e+00 2.3006959883565488e+00 +1803 2.2770170377418677e+00 2.6362467557515030e+00 2.8341647807538322e+00 +1582 -4.6882715329947828e+00 -3.2272859329357656e-01 2.6312427925169426e+00 +1580 4.8327936707337900e+00 2.8344084406592512e-01 -5.2574667166955331e+00 +1227 -2.9249454539282507e+00 2.1371933994425860e+00 3.4368894988200358e+00 +1578 -4.2881311998958846e+00 9.5375198439329079e-01 1.1382587678265517e+00 +1280 -1.8232914096909285e+00 -2.3219613971880251e+00 4.6513328845603121e+00 +1056 -6.7409216067124822e+00 -3.7918650396766478e+00 -7.1477057026405577e-01 +1551 -3.5487271254399921e+00 -4.2368087740475358e-01 4.7653426471208399e-01 +1090 -2.8046564915868410e+00 5.7109204478509259e+00 3.1889787282380788e-01 +1442 -6.3428541162948457e+00 -2.1751507305601043e+00 1.1162478316147006e+00 +1761 -6.4707095630241183e+00 3.0781324748613503e+00 -2.1619804321054472e+00 +2035 1.2710512103504321e+00 1.8226340096406493e+00 -4.7001586892203233e-02 +1953 1.1389982033654551e+00 -2.7800967834023544e+00 -5.9843514403264675e-01 +543 -1.5188678123011383e+00 6.3819693928367305e-01 -5.6975588135682695e+00 +2129 -1.0699005193050122e-01 2.4800097349936387e+00 -1.4526413447259059e+00 +1585 -4.6564104110297002e+00 -4.6720745877594605e-01 -4.1419257694166891e+00 +1601 2.0147047271101628e+00 3.7475129687263702e+00 -5.1734788185238285e+00 +507 -5.0036931125087347e-01 9.3852613668466223e+00 -4.1365052010625334e+00 +2401 7.4395640884336558e+00 4.7207667004324438e+00 -7.8611183971896137e-01 +2225 -5.0517897916398868e-01 2.3776766751419616e+00 9.1086031287115499e-01 +1137 -6.4336155918048394e+00 -3.4203448215759202e+00 -4.4047853017073022e+00 +2353 1.4815204498127399e+00 -9.9598943362813213e+00 -3.1689768155399056e-01 +1202 1.5959499756455426e+00 4.0300262347127118e+00 1.5800314925501557e+00 +1729 2.9559463433650470e+00 -8.6987028714725045e-01 -3.8091692624450544e+00 +720 -2.6810849185024703e+00 -1.1902782924069524e+00 3.5798219801515683e+00 +1569 2.1213292971832951e+00 -5.9015753735028498e-01 -2.0013098163463683e+00 +2721 4.5907701223227768e+00 -7.6507255931604679e+00 2.7311554547967226e-01 +913 7.7349469685400631e+00 2.0549924934859911e+00 1.5279924786892443e+00 +1586 -9.2745614663805953e-01 -6.5868652793345497e+00 5.3189885101909002e+00 +1745 2.5141004309705499e+00 5.2921356665013759e+00 -1.8624080594975276e+00 +2177 1.8440036244899980e+00 -3.3513412318539088e-01 -2.8213786347189398e+00 +1825 -4.1601106488389696e+00 -5.8420126250252249e+00 1.3090914526604995e+00 +1281 1.1148322708664171e+00 3.7197106435939173e+00 -1.6839168968729614e+00 +2513 1.3592914978452373e+00 6.5022626641102466e-01 -2.5143448392729139e-04 +1121 2.6204381582473886e+00 -4.4409675749348603e+00 -2.1277516635800673e+00 +1441 -3.1296479831101873e+00 -3.9703795160998125e+00 -1.4393166698239821e+00 +2337 -6.0953465552842054e+00 2.4241170541681285e+00 9.2614801250335166e+00 +2801 4.0471734507138200e+00 4.9860927361982715e-01 -6.4238245968404306e-01 +2561 -3.5873403409131077e+00 2.8342438283166169e+00 1.1786321277429583e+00 +2193 -8.2787938896478386e-01 -2.8730409384118716e-01 -4.1405218036400830e+00 +1073 1.0250184194369527e+00 1.5461452285408639e+00 4.0085025329055259e+00 +1633 3.3678401081501317e+00 -4.4418237378584884e+00 1.7796150726218869e+00 +1649 -3.7865237941769339e+00 -7.4726539424260863e-01 -5.0984746362633180e+00 +1841 4.6031138136565195e+00 -4.9749754628231084e+00 6.3426746419831597e+00 +1393 -4.0828428157287261e-01 6.2151411174257101e+00 -1.0018378083523134e+00 +2257 -1.5845182204880837e+00 3.4060884482247973e+00 2.6453392749796727e+00 +1297 6.5640148463258603e+00 3.0449231906379151e+00 2.7116142560175466e-01 +2289 -3.5377779010980142e+00 8.1179621799484281e-01 9.8197970649651745e-02 +1889 -5.1588021660433094e+00 -4.5472211030818759e+00 -1.8621178101817846e+00 +2209 -2.4950017300483767e+00 1.5578729765435364e+00 2.3668886095854100e-01 +2609 7.4837497164731936e-01 -6.9235476635793505e-02 2.7859777817040996e+00 +2113 3.3320905275122543e+00 -4.5514368967235290e+00 2.4910519873095209e+00 +1969 5.2496883092552578e+00 4.8507953387757023e+00 4.9555364690483659e+00 +3057 2.1195579495368688e-01 -1.8854469618397665e-01 7.4525830236706341e+00 +1457 -6.1441321744061312e+00 2.6584304564586940e+00 2.4183710047926845e+00 +2081 -6.1137166455563658e+00 1.7636274372373169e+00 -4.4333349755611540e+00 +2001 -4.1292677739288992e+00 6.6541129517399278e-01 -6.1062763848092827e-01 +1873 -3.6523091590214012e+00 2.4931054183275885e+00 -1.6453418037503495e-01 +1474 1.5960128283082016e+00 2.9180843027073915e+00 -8.5102825585797859e-01 +1298 -6.7321407992749382e-01 1.3949727848165541e+00 3.6041675902818715e-01 +1139 6.6242258491829871e+00 2.7530513792796167e+00 3.5264710178463661e+00 +1282 3.7615209558537819e+00 4.8885295177503076e+00 7.4445222608622319e-01 +399 8.9784691433968700e+00 -7.4541054219332574e+00 -9.0472047187603666e-01 +2050 -8.3372286716912458e-01 1.5140536456657159e+00 6.6632030514028084e+00 +2307 -7.5025880605292645e+00 -1.8992530877504779e+00 6.8007770632398024e-01 +2563 5.7478705941144959e-01 -3.7694950115683051e-02 3.7431891018243419e+00 +2099 3.3326469782846990e+00 7.2072307189255485e+00 -3.8738492583191553e-01 +2853 -3.7625931002113049e+00 -4.7683481806731898e+00 -4.5752277005036062e+00 +2052 7.5592703353482604e-01 1.4128431654667908e+00 7.5689838950119510e+00 +2085 -3.7089208190170471e+00 3.1954100647370098e+00 -1.1506523068400500e+00 +2355 -3.3088955924651473e+00 -3.8374320322619684e-02 1.3125081932291938e+00 +2066 2.0342037406101805e+00 7.7216487578190049e+00 -2.4660669001546296e+00 +2613 3.4235538745791936e+00 1.5710029136397752e-01 -2.6072403834081331e-01 +2068 -3.1504476283566376e+00 -3.7342732374417436e+00 -5.3590805026771760e+00 +2323 -1.1904809551890296e+00 1.8517808857759772e+00 9.6024188719311154e-01 +2357 2.8140110013522110e+00 7.7839453943005568e+00 -3.2078759595529514e+00 +3044 -5.4811855903254649e+00 -1.0587367964728274e+00 2.7867878286139325e+00 +2082 5.2994004912191361e-01 1.0529044659262130e+00 -3.6435897952588050e+00 +2084 4.9065332381619386e+00 2.5638845810494066e+00 -7.6445853689360419e+00 +3043 -2.3867113417525192e+00 -9.4763852307245455e-01 -3.6268937750606391e+00 +3633 1.6648477545249563e-01 5.6852080832290977e+00 1.7473553491080014e+00 +2341 3.0604129798623272e+00 -4.6183771701141435e-02 6.4588310404149440e-01 +2557 6.3897637981582118e+00 -1.3394682011517864e+00 1.5254226625198191e+00 +2098 3.8829799319000093e+00 5.8246710854023143e-01 -2.2856932351661867e+00 +3042 3.4669662712631061e-01 -4.9955308098614983e+00 2.0534738114639834e+00 +3028 1.3112310101432414e+00 3.1716460467249319e+00 4.2856934837628451e+00 +3027 -5.8128246511016919e-03 -5.0940985930420646e-01 4.2225468098651655e+00 +3026 3.8714301804628506e+00 6.3968433738399766e-01 6.0913891541481400e+00 +2883 -1.5757521140914015e+00 -2.3705367629141949e+00 4.0062700011683043e+00 +3058 -7.4000317582726738e-01 8.0596914175526528e+00 -9.9179612507234693e-01 +2100 -5.0963703753169287e-01 -5.3953962190928673e-01 5.2712657371317011e+00 +3059 -1.4974959026887409e+00 2.9134763467594502e+00 -2.6558621443525197e+00 +3060 -7.3385713850799428e-01 2.3933955841471937e+00 -6.2036385842973840e-01 +2114 3.7995808530906019e+00 -1.7741308940053964e+00 -5.1689727338755551e+00 +2116 -1.1731195814065853e+00 1.3657581791309026e+00 2.4464847553118889e+00 +3012 5.1611374793369027e+00 -1.0905268955501417e+00 -7.6052946371053820e-01 +3010 -1.2884477298129202e+00 -5.1776522328963823e+00 -5.8306983228464153e+00 +2997 -9.7149563751339763e-01 -4.1975796381267569e+00 1.3453966750626061e+00 +2996 -7.6991558695194207e-01 -6.5891256790888910e+00 1.9623929016799615e+00 +2995 3.4348653315866535e+00 3.4122855955786702e+00 -4.7726494237727088e+00 +2994 -3.6906563697746968e+00 -4.6816562695977275e+00 -8.3843560794178151e-01 +2981 -1.3178912470642967e+00 9.1094675517473824e+00 -2.1728372768788433e+00 +2980 1.4100083233748453e+00 1.8613788164367913e+00 1.3231402172351621e+00 +2277 -4.5219483273649308e+00 -8.1481122738162115e-01 -5.1698147404981731e-01 +3692 3.7366727607988053e+00 -1.9396725441256757e+00 2.9462185173669360e+00 +2130 2.2553207761955932e-01 1.8669274875326158e+00 7.6148318501374765e+00 +2131 -2.6666729358048071e+00 5.4374636642253602e+00 -2.7571199778364868e+00 +2132 2.2275895992305017e+00 2.4981437666016695e+00 -6.8971122653487393e+00 +2146 4.2880126790047806e+00 -2.9242270395650345e+00 8.8631499330693897e-01 +2147 1.9292416358794877e+00 6.0605310822222036e-01 3.6265510473286793e+00 +2148 -1.7581583500441778e+00 5.8254879772844061e+00 -5.8647854309036607e+00 +2979 -5.8041874078685263e+00 3.1877190350458986e+00 -2.4986268732260071e-02 +2978 3.9371220058521188e+00 -1.5502597463580183e-02 -2.8500161415054898e-01 +2965 4.3659367314975084e+00 1.5406030950634930e+00 1.0499266266784104e+00 +2964 -1.8282948310152562e+00 -3.9745806308970399e+00 3.9301238831091858e+00 +2963 3.0385675778058796e+00 8.3571377470928698e-01 5.3902760293226999e+00 +2962 2.6798031121822050e+00 -2.7366695236635965e+00 4.6305327223894377e+00 +2499 -2.5636026923423065e+00 7.4183299668952349e+00 1.7771638712840478e+00 +2948 -4.6230049985243538e+00 -2.8141763712271062e+00 -8.2189408292911589e-02 +2149 5.2548812838853465e+00 2.9570701105813493e+00 4.1678699319757815e+00 +2162 -1.0382588159931472e+00 4.1904578499786549e+00 2.2440064614862170e+00 +2163 2.2575500689916383e+00 -6.6570229362682261e+00 2.5714940421781263e+00 +2164 -2.5495443797185056e+00 -2.3329109872582441e+00 -4.2670870236321310e+00 +2178 -2.2551261847708961e+00 -1.1566366159441925e+00 -1.9710377631770963e+00 +2180 -5.9285646015815471e-02 3.1769451482937132e+00 4.2247839246024155e+00 +2382 6.4758580227654017e+00 -7.8879258054721890e-01 -5.5772945512011540e-01 +2293 -2.8374868869134612e-01 -3.8079670473615286e+00 1.9899472151284887e+00 +2194 -2.4071983707058893e+00 2.2362638956712551e+00 -1.2154228114501011e+00 +2946 -2.8968621109235424e+00 -1.7771544173011073e+00 -3.1848916159805447e+00 +2195 -4.6887069731988040e+00 1.9532343648620774e+00 -3.5740571641520691e+00 +2933 4.7492948063615508e+00 2.6621183660990324e+00 8.7655847661180997e-01 +2932 -2.6322241097689836e+00 -2.3755544394288722e-01 2.1564843318121558e+00 +2931 -1.3710805956727588e+00 -4.2062003017503899e+00 -9.0234527244029139e-01 +2930 1.7042585439534199e+00 1.5185821678893550e+00 -5.0595240496922544e-01 +2917 4.2620276109580244e+00 1.3561650421703588e+00 -4.4526153288948320e+00 +2916 -1.5610093675384482e+00 2.5112684276325035e+00 -5.1288876666204288e+00 +2196 -6.2797974751355587e+00 3.7127428039380178e-01 3.0363970920259580e+00 +2197 6.4224956271227862e-01 -4.9999108789829263e+00 -1.1555011446507832e+00 +2540 -3.9644612174691205e+00 1.4545036120855942e-01 8.9561308024631769e-01 +2210 -7.6221057933003378e+00 1.5333895555152668e+00 -2.2438992494933587e+00 +2211 -6.6365940846231353e-01 7.1725312449351331e-01 -3.3789835836448491e-02 +2212 4.0212532914324708e+00 -4.0856303274224315e+00 2.1387871305718645e-01 +2213 6.0174495664426049e+00 -5.9123930041659847e+00 1.1415365454982844e+00 +2915 -3.8996869195771984e+00 9.5888210234982407e-01 4.3431956939614311e+00 +2914 3.9795152149922766e+00 2.3674211841342143e+00 -1.2240645174833324e+00 +2901 7.1320280872267305e-01 -5.1321130515135704e-01 -9.1151382377422296e-01 +2900 1.6983359276466916e+00 -3.3517850049574271e-01 -5.4097314854381651e+00 +2899 -2.8799673230289198e+00 2.8212645557973746e+00 -1.1798814090262559e+00 +2898 -4.7179792579498194e+00 -2.8656128133679344e+00 7.8175258987723018e-01 +2947 2.2893441718076333e+00 4.9921796795194604e+00 6.3995628889615279e+00 +2884 6.3215320390485701e+00 7.2911207526877997e-01 3.1688293477991860e+00 +2882 -3.2364449800732684e+00 2.3777935631826814e+00 -2.8501395221290697e+00 +2380 3.0591403462203064e+00 2.8969133110159468e+00 3.9694616227595039e+00 +2226 1.5822532323946854e+00 1.1156283558235911e+00 -1.6238934441695694e+00 +2227 -1.3139630161071005e+00 8.0785064758346148e-01 3.5348066322147815e+00 +2228 -4.3467149584486062e+00 -7.9416675391810021e-01 8.9764522126548696e-01 +2229 -3.0630412139075234e+00 -1.0297010144958859e+01 -3.3817348647705390e+00 +2292 1.1837713783274892e+00 6.0254188865187590e+00 3.3969551209274040e-01 +2242 -2.9776209006243053e+00 1.0833590775401638e+00 7.2012899352832864e+00 +2558 1.7959683831346751e+00 1.2676018628011948e-01 -4.9548357855581990e+00 +2868 -1.5449615110755384e+00 -1.1417521285089776e+00 -3.9811375065309766e+00 +2866 -9.8348441475163306e-01 -8.4432407239259516e-02 -3.9925203285622537e+00 +2291 4.7603058319673872e+00 3.7291428522837786e+00 -5.7541873245833957e+00 +2869 5.5988156885214071e+00 4.9372770621596338e+00 3.0008710765178939e+00 +2852 6.9017854678075503e+00 -1.8944271446615006e+00 4.5200434897285485e-01 +2850 7.5289330339480198e+00 -4.0015876157061214e+00 3.8131350039789520e-02 +2867 -2.1958759100571248e-01 -3.2665336696154803e+00 -1.8807824679476230e+00 +2244 -3.9894648172266969e+00 9.2776044495802679e-01 1.5855178768833953e+00 +2290 7.0127853761004664e+00 1.1723959706886187e+00 -8.9592119428697747e-01 +2689 -2.8495135664741529e+00 6.2740876065455864e-02 5.9534679652301934e+00 +2179 -4.1470072480791442e+00 1.7683587300758772e+00 9.6360953679080485e-01 +2378 -2.7010928195969153e+00 -7.1179181287241429e+00 -5.2865480875792175e+00 +2258 8.0850179799498778e-01 -1.4619278629325856e+00 -7.4398258636866661e+00 +2259 5.7279369260125428e+00 -1.0175493419319931e+01 3.1302769984097600e+00 +2851 3.2140568654726742e+00 6.7500019892514311e+00 -1.4610250958149307e+00 +2837 1.9191325474158518e+00 -5.7438998923005906e+00 -9.5192267963951874e-02 +2260 1.2946932033484946e+00 2.3736577561476522e+00 -5.4862157896967298e+00 +2611 2.1354018257878029e+00 -1.7463736097115359e+00 3.6871186704919814e+00 +2836 3.0261525066134620e+00 -1.1840537213822848e+00 -5.2518016264055687e+00 +2834 -6.1830954911035567e+00 4.0562253138937496e+00 -1.8425663930668725e+00 +2261 -4.7730088709651399e+00 -1.0975289601484552e+00 7.7332600608319266e+00 +2820 -5.0080225656755166e+00 -3.4413043139394222e+00 -7.2842723714085333e-01 +2818 3.0417917157139516e+00 1.9839065943010419e+00 1.8677745141858233e+00 +2329 3.5762650394378181e-01 -1.3254287086158090e+00 -3.5611435188142293e+00 +2579 -1.5880559211212510e+00 -1.2440234775764827e+00 2.9134292671788851e+00 +2274 3.6472833482296368e-01 1.9475662274614149e+00 -2.8839674282419190e+00 +2565 -3.8342060653250307e+00 -1.0565975532405131e-01 -2.2794558313691642e+00 +2275 2.6375643352524079e+00 -1.1722872853293585e-01 -1.3545723046521601e+00 +2595 9.8660931669551455e-01 5.6163701704065938e-01 2.7745855867935315e-01 +2276 -3.1672835910653077e+00 -1.9280892622586028e+00 -2.6996500792182826e-01 +2757 2.3085197825570719e-01 7.7549618323544278e-01 -1.3336068046115217e+01 +2581 -4.1079008015340310e+00 2.5198459567365052e+00 5.5609539438991384e-01 +2394 5.2964798413418164e+00 1.6979182198697548e-01 1.2647782218498513e+00 +2393 -1.5782591883615116e-01 -1.6615066057121981e+00 -1.5928337063576439e+00 +2181 -1.5670496751649670e+00 2.1107010263734658e+00 1.8761783818454802e+00 +2789 -4.3953287801090868e-01 1.4889925148467309e-01 -2.6106114238139573e+00 +2788 8.2161992580632930e+00 3.0203228047699486e+00 -1.6518272941265575e+00 +2787 -1.1274536723553844e+01 -2.0527528318938587e-01 5.9408300745133804e+00 +2083 1.2532244484707713e+00 -8.5741084539099983e+00 1.7163766691175035e+00 +2449 -6.3110718952367617e-01 2.4005202872728524e+00 9.3502885621412157e-01 +2325 3.0674046761292217e+00 5.7345029271804693e-01 4.7797046705111157e+00 +2306 3.6254885222973060e-01 6.3227924078253306e+00 -8.3900209645293042e+00 +2308 -9.4381098742842315e+00 -5.2231948247728637e+00 7.2481042303951515e+00 +2322 -3.2264854807792736e+00 -9.6454412543174539e-01 2.9630825771813525e+00 +2324 -8.4377135999575632e+00 1.1738018200788551e+00 -2.2921088628961637e+00 +3013 -2.4344764066488898e+00 -6.8500797863323282e+00 -1.8873807141682668e+00 +3011 3.8922240656649243e+00 1.3519933025947133e+00 -2.5072012876926830e-01 +2786 3.3699069405366178e+00 2.4450955796453981e+00 1.2303598423435318e+00 +2773 -5.1524563937794776e-01 -1.2144700877995462e+00 1.1536875225538157e+00 +2772 -1.2620631361930414e+00 2.6135689684245662e+00 5.3477037594585823e+00 +2771 -6.7838978183732461e+00 -1.3872886917692582e+00 -1.1379490878356506e+00 +2770 4.7831628356888070e+00 4.1647511917689020e+00 7.5402727054302554e+00 +2756 -1.4055054340748201e+00 2.3826180242672979e+00 1.1414410643673849e+00 +2392 1.0312085505955746e+00 6.6795445052284341e-01 5.4032493249062759e+00 +2338 6.3198983924076817e+00 -3.8149917555206079e+00 -9.4615820152588936e-01 +2340 3.1065302594334354e+00 8.9914998663233303e-01 4.6197914806126414e+00 +2354 1.2782912501244827e+00 -2.3792110395186090e+00 -1.1998306621577879e+00 +2356 -5.5820821674453942e+00 -5.9278292583482850e-01 1.2849025663124194e+00 +2370 -3.2933105003599246e+00 -1.1650566788893011e+00 8.2901930934889290e+00 +2372 -1.1842546129050433e+00 5.0074861312660768e-01 2.9759729946567561e+00 +2386 2.7466330807228134e+00 -3.1914189090552632e+00 9.6983414255078282e-01 +2387 -5.9385032063720216e+00 -1.9419052533315413e+00 9.1544833603829501e-01 +2754 3.1071560616823746e-01 3.9028852940654808e+00 -2.7654243562714238e+00 +2741 2.8193455147842184e-01 1.1759297911407058e+00 -4.3417817755784158e+00 +2740 5.2291571873258320e+00 -1.0295118375756089e+00 -4.2222342229735883e+00 +2739 2.0549569143817057e+00 -5.7841727451058156e-01 -7.0461890840926397e-02 +2738 -4.6274903529849531e-02 -3.6292628435362646e+00 1.9281589055284372e+00 +2384 -6.3122482754584686e-01 -5.9102028185109790e+00 1.7498784948087617e-01 +2724 -1.4267898259902445e+00 1.9475488930716882e+00 1.3530078354365332e-01 +2723 3.9627727625538651e+00 4.8574627845919851e+00 2.8351292164290698e-01 +2388 -6.1975669436431042e+00 -5.2105774323022294e+00 2.3317037959193900e+00 +2389 -3.4109361087506533e+00 2.2925852520047800e+00 -2.3203127617355728e+00 +2391 3.8931360969786879e+00 -1.3238565054494367e+00 -2.7664588740618221e+00 +2402 -5.1967591544638259e+00 1.9638545673366905e+00 3.7132905670378742e+00 +2403 2.2955243374418602e-01 5.3613990031134162e-01 -1.3939084942979412e+00 +2404 2.4361265002679011e+00 -1.8266050658468567e+00 -2.1073159519476081e+00 +2405 1.6100884268222124e+00 4.5646749256782826e+00 -1.3241603515731850e+00 +2418 -5.9418762428265302e+00 -4.7067423286388532e+00 1.7226915540801970e+00 +2722 1.2458670479201697e+00 -5.2919553389622409e-01 1.0687187056703791e+00 +2419 -3.8638975243827103e+00 4.0318654725471177e+00 1.7182679597640134e+00 +2709 9.3792096531261993e-01 -2.9095202092338575e+00 -1.7414081016269318e+00 +2708 1.7067221089488209e+00 3.9196499187265132e+00 6.4702526662132931e-01 +2707 -4.4654445742880604e+00 3.9677488360701165e+00 -2.7509932850073446e+00 +2706 -8.2725440524795757e-01 -1.6018550920307961e-01 -4.0424925648711536e+00 +2420 3.2324730697168431e+00 1.1927581685657751e+00 -1.6946445074589886e+00 +2802 -5.1240229352880986e+00 -2.0236047677529614e+00 -4.9184376919315751e+00 +2803 -6.1976738000351235e+00 -5.7243156459662903e-01 -4.7914880341167070e+00 +2804 -6.2670829172429565e-01 -1.4757467373327809e-02 -1.2816067728663580e-01 +2421 3.2136785232821543e+00 5.9772832896014547e+00 -2.2793316848393044e+00 +1025 2.3644065863319108e+00 -5.0749089669534015e+00 -2.9525972187289478e+00 +2434 9.7190151758035626e-01 -7.0366602469659751e+00 -2.2176930608288767e+00 +2436 -2.1396316390090795e+00 4.0190628434589586e+00 6.3406028074664613e+00 +2390 4.7360411245364364e+00 3.7196236760911799e-01 1.7759659307935727e+00 +2450 2.7844438769928903e+00 -2.3404360186149988e+00 3.3351329924236066e+00 +2451 3.4764792229361724e-01 -1.1868508773180595e+00 4.8073675898512724e-01 +2452 -2.9492262934507609e+00 -1.4485376146644118e+00 -4.6972884073965968e+00 +2453 -2.6238674160789639e+00 -1.4954841722181131e+00 5.4608271698929221e+00 +2805 1.6065940897552384e+00 1.8425909989151519e+00 -2.1456859528144663e+00 +2692 -3.6371625071024640e+00 1.8354168479816295e+00 -4.5097630029486535e-01 +2690 -2.8183678826894969e+00 3.2153736319789084e-01 -3.9748423986327663e-01 +2466 -6.1203840998100540e+00 -1.1944677823949330e+00 -3.0280856806702277e+00 +2677 -2.2138743347102463e+00 1.6417898136356825e+00 3.2226578465896694e+00 +2467 -2.9111603875924241e-01 3.6448785419518175e+00 6.7474083545272636e+00 +2676 1.7811786664479834e+00 3.0433032996940019e+00 1.9864308934570470e-03 +2675 3.8268917174370527e+00 -1.6240776926642040e+00 -4.5460492401740122e+00 +2468 -3.9057974787876217e+00 -1.3185311526101962e+00 5.1848741425992850e-01 +2469 -2.3301349287048723e+00 3.7384369981455752e+00 6.3648702598973583e-01 +2482 -1.2976240275246753e+00 1.7453900486424312e+00 2.0460849779120478e+00 +2483 4.1265353450135862e+00 1.9799098795959960e+00 -8.8955834165900438e-01 +2484 3.3277412008253342e+00 -2.7091637650379652e+00 4.2573539041035966e+00 +2674 -2.7911408869990653e+00 -1.4485399976674185e+00 -1.0110724430478020e-01 +2661 1.3690554914698325e+00 1.9460930546658470e+00 -1.9840343491964574e+00 +2485 -2.6480590761180971e+00 7.5595811244001876e-01 6.2015838824690324e+00 +2660 1.7079559333861716e+00 3.0034934431537880e-01 -7.9501296906732986e+00 +2659 -5.9085971649040991e-01 1.2784819033078958e+00 1.2201917609736459e+00 +2658 2.1275054027628624e+00 6.2853905694682473e+00 1.6983389111800498e+00 +2644 -1.9608987424870987e+00 -2.3010782796927884e+00 -5.1692009774343655e+00 +2643 8.6955575806118657e-01 1.4604207228807280e+00 -1.1855085983128457e+00 +2642 -3.3127094097150329e+00 2.8124977699500011e+00 -3.5310307118755513e+00 +2628 2.8344524146927510e+00 -6.3854316677021350e+00 1.9411278417181106e+00 +2626 -5.5441501102498647e-01 7.3885944655714493e+00 -7.7694937482295821e+00 +2691 5.1920158436740793e-01 1.9942943161974680e+00 -1.5917347784475637e+00 +2243 3.6980680827166048e+00 5.9198455639769687e+00 -4.2791324234060761e+00 +2498 -2.1907528166647459e+00 9.6331958777902016e-01 7.0530786822578362e+00 +2339 -1.0151591615680640e+00 1.1799901787000531e+00 -3.7354390182874742e+00 +2500 -4.4613129194704149e-01 3.6158627392368031e-01 -1.5787076320881080e-01 +2693 3.5449685427794448e+00 1.9442773045019273e+00 1.7800781455325942e+00 +2549 -6.5161188163190635e+00 3.4133322823911714e+00 2.4881587335032740e-01 +2548 1.0043452989995434e+00 -2.6959056174017024e+00 1.0694393265549660e+00 +2547 3.8953948453818996e+00 -1.6516746334172516e+00 1.5120311594063301e-01 +2546 -9.8844484821357759e-01 -2.0835892161939524e+00 1.0861652612658401e-01 +2245 -3.8025597968704208e+00 -9.7038187547602006e-01 -4.3052733409431870e-01 +2612 -5.2579437498493045e-02 6.7720370188013099e+00 1.8665153951445288e+00 +2610 -8.2475320589608458e-01 2.1387150828178483e-01 -1.6385731452153758e+00 +2376 1.9980623866315763e+00 5.9259582999007432e-01 -7.7193992911906872e-01 +2115 -6.8255954641230646e-02 -2.3279903141439560e+00 5.7909690440157542e+00 +2627 2.1053884750495730e+00 2.3337723953366210e+00 6.5527312061490619e+00 +2629 -1.7063654494872469e+00 6.6279571567276845e+00 8.1166374863014412e-01 +2514 2.4575602731485580e+00 -2.0604439517078985e+00 -6.3551364707170571e-02 +2515 -3.3359724983734025e+00 -2.6179916179543112e+00 -5.2194299955700245e+00 +2596 3.8405345670057511e-01 2.8778746462040150e+00 -3.2952788015755954e+00 +2516 5.5680457806998609e+00 -1.1634891899867071e+01 -3.7803105902706752e-01 +2530 -1.4471834478997105e+00 6.8903103663993681e+00 4.9211993117535293e+00 +2531 3.7725195212601599e+00 2.2983290933682201e+00 2.0766589015871700e-01 +2532 -1.8392752979520710e+00 -3.9746436896629431e+00 3.6696860848529065e+00 +2533 2.5778919814117591e+00 -2.4730791782699781e+00 3.8767726406088849e+00 +2067 -3.1723134696991786e+00 1.0975793191272087e+00 4.0642065239210046e-01 +2594 -8.2067992211845642e-01 1.7607541019904389e+00 4.5775897055901664e+00 +2949 2.9336261209061592e+00 -7.1806200284538699e-02 -4.2666006911648848e+00 +2051 4.9374275380520694e-01 1.2307500617428645e-01 -6.3822015142856525e+00 +2580 3.0131656188343334e-02 -2.0746468386913657e+00 1.1882096542163343e+00 +2578 -1.0495344182996913e+00 -3.2213036954719942e-02 -5.6234398179503808e-01 +2371 -1.6934535410800991e-01 2.0686997834838756e+00 -3.2731902733685514e+00 +2755 -3.6719241736105364e+00 1.0215490964172742e+00 -1.8709771177990284e-01 +2435 4.7581633992531156e+00 3.9875491288834461e+00 1.9770140096058779e+00 +2819 7.8601672193886163e-01 1.1866421194349737e+00 -4.2792339040447711e+00 +2564 -5.9949885061585935e+00 5.5072862981326995e+00 4.5473039190834692e+00 +2562 -1.0652363246884267e+00 -9.0562525182069942e-01 9.1015892610670723e-01 +2835 2.5000009856401744e+00 -3.9293367381511923e+00 -5.0716049274576882e+00 +2829 6.2974298626041030e+00 -3.0346041533763488e+00 1.8445337930261951e+00 +2589 -4.3403449186481369e-01 3.2337707680130556e+00 3.5602152810727521e+00 +3015 3.1400159700001371e+00 3.4081414435205302e+00 3.5318617075860086e+00 +2885 -5.0358000164443881e+00 -5.1613686778326091e+00 3.4962302497795075e+00 +2621 -1.1188379992145314e+00 4.0030636812195102e+00 5.4930154142386529e+00 +2841 1.3037965769223763e+00 -1.7114491377295739e-02 -1.3160537076580243e+00 +2379 1.7062030422774492e+00 -3.6808525593780441e+00 1.6942481422972860e-01 +2505 -2.9527083837281638e+00 4.9378787135113207e+00 3.3625676595720160e+00 +2873 -1.3895874516067352e+00 2.2906547085557474e+00 3.4584886959015599e+00 +2319 -3.0326557006081911e+00 -1.7833766233312007e+00 1.3521766464387261e+00 +2619 -4.2113823878587660e+00 2.5442656819849452e-01 -7.0535794524645716e+00 +2599 -5.7872136288698597e+00 4.4677671447443155e+00 6.7689609942109596e+00 +2443 2.8427317527693408e+00 -4.9425860045540615e+00 -2.3972703717627244e+00 +2893 2.3112988965983539e-01 -5.6048151860599944e+00 -1.2589335255331568e+00 +2831 9.2186810765029525e-01 -1.2292550610543358e+00 -1.0937775245379449e+00 +2839 2.4883594133377636e+00 9.7077128989514372e-02 -3.3801746227750251e+00 +2879 -9.0411979851764031e+00 -2.8328730923625876e+00 -5.1816264935638428e+00 +2601 -4.5452089755796593e-01 -2.2575491547595470e+00 5.6080401819835561e+00 +2583 -3.0457785288361068e+00 -8.2340601406694880e+00 -2.9463745303052722e+00 +2445 -3.7153322387084047e+00 2.8422289969470316e+00 -3.1441845763115983e-01 +2377 4.1448592060469123e+00 2.3758630661368758e+00 -1.3832013257623017e+00 +2875 5.6509797588954997e+00 -8.3509492885896019e-01 1.7235622836092918e-01 +3045 -1.2037012188561185e+00 -2.9602617527375714e+00 -6.4809099895240783e+00 +3041 8.1401993673180240e-01 5.2888289914105346e+00 -5.1368690069334528e+00 +3040 7.3337625642376314e-01 1.0292556731894724e-01 -6.0275535511098814e+00 +3039 6.0603603309738014e+00 -5.0006567301275329e+00 -1.5284541638275548e+00 +3038 -6.1979641482097253e-02 1.0606936158350400e+00 2.3432053961912542e+00 +3037 2.6518309384424201e+00 -3.6860765647912199e+00 2.4399936389178594e+00 +3036 -2.1419263508926010e+00 5.8266977447432327e+00 3.8098102398125042e+00 +3035 3.2945874323477238e+00 1.5810361329652525e+00 7.5177322270754132e-01 +3034 -3.7100008397741489e+00 -5.9083004880880150e+00 -2.7313732837831348e+00 +3033 -9.5796799980106928e-01 -1.9743032874944735e+00 -6.0708857155174956e+00 +3032 -4.6824888228471888e+00 -1.6953882448285449e+00 -2.2613938632793924e+00 +3031 -6.7497870632237089e-01 -1.1024980523174150e+00 3.4680356496312681e-02 +3030 -2.0027959249446492e-01 -1.7284466211538494e+00 2.7010728416235903e+00 +3029 4.5776931282954916e+00 -3.6137436718961853e+00 1.7093878411375414e+00 +2657 2.8143380258690689e+00 -2.2092613823290255e+00 1.2936417438645043e+01 +2417 1.0922863444177537e+00 -1.9766033039965063e+00 6.4815892085848004e-01 +3022 5.2698852219119052e+00 -4.9522162751877721e+00 -5.2340636616045009e+00 +2953 5.5500335569965109e-01 -5.7579550388728251e-01 1.5952650211021163e-01 +3020 -3.0269472245046432e+00 3.7548225925270038e+00 -4.2805722850982182e+00 +3018 1.8707646910790887e+00 6.0659667330708378e-01 2.5081567765411657e-02 +3016 1.4744358969085363e+00 -6.3157058589445869e+00 -5.5471738615390667e+00 +3054 -7.3396215652137791e+00 3.1088962268456459e+00 -3.5184094047339536e+00 +3014 3.6632158976031087e-01 2.7984563103761944e+00 1.0196417173824168e+00 +3046 4.3596296602208815e+00 2.4351031956457803e+00 -1.7279224683388374e+00 +3061 -4.5948197392640191e+00 -7.0882665460064018e+00 6.7444654110038260e-01 +2080 5.1032372812886466e+00 1.2249718705763135e+00 3.1009646166850269e-01 +3007 -2.8157840924824512e-01 3.2630204346756719e+00 2.1104224962657195e-01 +3006 2.9397429085383378e+00 -1.8388798809912457e+00 -1.7583258361609295e+00 +3005 -2.8779185457250840e+00 2.5721264396402481e+00 1.2342498754523901e+00 +3004 -1.7235672440306768e+00 -5.6858109969246851e+00 -2.8579003386867146e+00 +3003 -2.3722300510934997e+00 2.1323192927560246e+00 2.4234692072438833e+00 +3002 1.0526791689280852e+00 1.4049511390562647e-01 1.8663553440585401e+00 +3001 4.1931533139541521e+00 -3.6012685007950651e+00 5.2710562189473087e-01 +3000 2.7896156114471360e+00 4.4466178487633989e+00 2.0377793111779026e+00 +2999 5.1547386361351073e+00 -6.6888640779436956e+00 3.8485596970194007e+00 +2998 -1.9324196964001741e+00 -5.8994282555957289e+00 -2.5259580417368852e+00 +2993 4.9264268391103183e+00 -4.6845329765735855e+00 3.7913660153368576e+00 +2272 2.1335513520193143e+00 1.2138521128778299e+00 -1.9061129383326896e+00 +2991 -1.6166173012612965e+00 -1.3892590314000717e+00 -6.9756745463404868e-01 +2990 6.1066260048816021e+00 -1.2176675508567341e+00 5.8881700355025390e-01 +2989 1.2018008898690449e+00 2.2611491880769594e+00 -8.6573183663142519e+00 +2988 -4.3935428476094307e+00 9.3020496003539743e-01 3.7930347550988563e+00 +2987 -2.0368634074818925e+00 -2.5265085628076709e+00 -4.0181997417327482e+00 +2986 8.0143415340382274e-02 3.8594275946549961e+00 1.3193611981003028e+00 +2985 1.1232596933542063e-01 1.2025237862974663e+01 2.0587506096441808e+00 +2984 5.9173354932564299e+00 3.1126177367618766e+00 4.4971547428485783e+00 +2983 4.7275953598562515e+00 3.2400994175715176e+00 -2.5092767040169434e-01 +2982 -3.0941145048756691e+00 -2.2603075116816087e+00 5.6783180882271402e+00 +2977 -5.9622756273954725e-01 6.0221726476407191e+00 -6.7197451663119985e+00 +2976 1.6322737406702008e+00 9.4149512041295367e+00 3.2045379100084932e+00 +2975 3.4421986425450823e-01 2.2443849964513967e+00 -3.0071092766789027e+00 +2974 -9.4559333175237437e-01 1.6489259236136855e+00 -7.8395241796651971e-01 +2973 4.2603014470906384e+00 -5.5042713638939045e-01 4.0055905265898613e+00 +2972 -2.4626066351682718e+00 2.7193249170028744e+00 3.4902863276118392e+00 +2971 6.7371195791660465e+00 2.2721761195242243e+00 2.7546102339803280e+00 +2970 6.7146637952971100e-01 5.7579265073637815e+00 -1.2426296366492495e+00 +2969 -3.8394946434814670e+00 -3.0130998936553794e+00 -1.8983819679417684e+00 +2968 -1.4249323714517854e+00 -1.4386787110292170e+00 6.4295153191163692e+00 +2967 -4.3145095384996548e+00 3.6882113730489102e-01 -7.4742901588043476e-01 +2966 5.0315082020901851e+00 -3.8456977324382913e+00 -1.2161460118947094e+00 +3741 -2.1310623497838708e+00 5.0142796880372700e+00 8.1259727428995443e-01 +2960 2.5020043165557313e+00 8.1190203234671854e-02 -6.9259170091575104e-02 +1409 -1.0592960565852430e+00 -7.1047704783954408e+00 -5.8180042946507955e+00 +2958 -5.6569348114732252e+00 -6.2677347713100460e+00 2.4162025069428710e+00 +3062 -1.9260874795283969e+00 2.0048305218348905e+00 2.4024513048044316e+00 +2956 4.4048890258063054e+00 3.2637771121594814e+00 -7.2718461650096442e+00 +3047 -6.0403516438020621e-01 2.0004287064043522e+00 -3.0219969668532305e+00 +2954 3.9393837923990742e+00 -8.7780379064992187e-01 -8.6738636960466167e+00 +2952 4.2096905956837336e+00 -2.4296277628805156e+00 1.5342044230890974e+00 +3063 -1.8033445488017257e+00 3.4547976308287169e+00 3.4675186662958963e+00 +2950 2.3767744324267568e+00 2.7957521872502888e+00 4.5771566937782096e+00 +3048 8.6904721232033282e+00 -3.5727504424280627e+00 1.6698592354866121e-02 +2912 -1.1353049549227953e-01 -3.7357948906904554e+00 -6.2017641069984890e+00 +3049 3.5241058924005015e+00 1.5111188486208178e+00 -3.1902401567953986e-01 +2688 1.4883199618838590e+00 3.4518706341193717e-01 -4.2388867159375705e+00 +2943 -5.4931146671090858e-01 -1.6248879311089528e+00 -2.3923845927092815e+00 +2942 -4.3336888801910964e+00 -4.3955403472659560e-01 4.2770776201104184e+00 +2941 4.3136884760723335e+00 8.5850169461158488e-01 -1.7554224972586047e-01 +2940 -2.9249313189657844e+00 1.6687289311059647e-01 -9.8240524631297510e-01 +2939 6.7255377034165420e-01 5.6091358806942209e+00 -1.5632666873839187e+00 +2938 -3.0592352606964393e+00 2.0114534840926117e+00 6.2716693656617917e+00 +2937 -6.8254601970979341e+00 -4.2273556995548676e+00 2.3003126990986793e+00 +2936 7.7670229540220035e+00 -4.9128241990401929e+00 -4.3744423889688084e+00 +2935 1.6405585701850238e-02 -1.3871282899043740e+00 -5.2219252228796504e+00 +2934 1.3911156994433869e+00 2.0341763510018200e+00 -3.8291405663235495e-01 +2097 2.7817518579482310e+00 2.8251342590654218e+00 -2.4148879925863045e+00 +2928 3.7900832243056000e+00 3.6052636515360881e+00 -9.7050437306701589e+00 +2927 1.2102118846365655e+00 -3.9964036052395158e+00 1.3031733929936420e+00 +2926 6.1938556572379344e+00 1.5550981346929318e+00 -2.4897741772537727e+00 +2925 -1.2763487517336716e+00 -1.6248755262786709e+00 4.2316591244414665e+00 +2924 -1.4241140851738461e+00 2.4890835146055275e+00 3.4272713955436300e+00 +2923 5.1960904885974890e-01 3.0357139849885217e+00 2.6004586616788754e+00 +2922 1.4259565121320705e+00 1.3420976491738892e+00 3.1773628063509953e+00 +2921 -7.7666846564068259e-01 9.5630494632102891e-01 4.6404548527827902e+00 +2920 4.2775141891202315e+00 -4.8666387370413915e+00 5.0383110501211812e+00 +2919 3.3254423114878824e+00 5.0181501114899518e+00 -4.9727772248917574e+00 +2918 -1.8316978744587462e+00 2.9617136006890359e+00 2.0141164762244439e+00 +2374 -1.9410356448760302e-01 5.8788381633004527e-01 1.8282541199520055e+00 +3145 -5.6571566420082036e+00 2.6276073894673040e+00 -1.7777583732939741e+00 +2911 2.2435527362699239e+00 -3.0175439494094820e+00 -3.2303260120779660e+00 +2910 -7.4841714492671461e+00 4.1217189997544814e+00 -2.5804367495058722e+00 +2909 -4.4628191721338322e+00 9.5570682436757470e-01 -6.7561312277803376e+00 +2908 1.0254810554261775e+00 -5.2865957410200337e-01 -7.8234161684471959e-01 +2907 4.4383243002018062e+00 3.5770354807098319e+00 -2.1899161791223891e+00 +2906 -4.3562426204653546e+00 -8.3145108574219702e+00 -4.3658996642359051e+00 +2905 8.6875950099349541e-01 3.2938191459212351e+00 2.4143389869183780e+00 +2904 3.2151877034687198e-01 3.5748006434714625e+00 1.7013578191136298e+00 +2903 -4.8094543537667578e+00 -1.6997416534672845e+00 3.8676663397452122e+00 +2902 3.2344574572877489e+00 5.1966792356979363e-01 3.6315675578836109e+00 +2321 -5.4246174951686470e+00 5.7851364676216466e-01 -1.0832882499592917e+00 +3478 -1.4772840232059381e+00 -2.3680582109191000e+00 7.5746643458991225e-01 +3064 4.0464787594738310e+00 3.8241915031452728e-01 -3.1354870615375687e+00 +2894 -2.6307799254895099e+00 -2.8994434766460433e+00 4.0554273032311949e-01 +2892 -2.7080685743128536e+00 1.7324812754015366e+00 4.1360968572298906e-01 +3065 -2.0092192923528795e+00 -7.8904024951728924e-01 5.6227854423931500e+00 +2890 4.9687893864977131e+00 2.9516625249383375e+00 1.1131520703918385e+00 +2847 -2.6140049963169326e-01 -2.6300476497423558e-01 2.5804664751571456e+00 +2888 -4.9832573433897700e+00 -2.1043732242864035e+00 -1.5314503000147626e+00 +3066 7.5523358892355441e+00 5.1064790655040042e+00 -3.8128572716087743e+00 +2886 1.4241711167892495e+00 -6.4375118162635650e-02 1.6058878437294783e+00 +3242 2.2253153688122480e+00 6.1020746260010768e+00 -6.7440743952807769e-01 +3067 2.2312161703556797e+00 -3.0901688830209477e+00 -2.4071585097155985e+00 +3068 -2.5555502995222295e+00 2.5798173513866951e-01 6.0138638021708299e+00 +2880 5.4182549046599071e+00 -2.8918403543412463e-01 -4.3377097068483161e+00 +2639 -2.1975611227503746e+00 -5.1157134114441971e-01 -6.1369954394685955e+00 +2878 8.9268750741376679e-01 -5.5263186116512264e+00 -2.6803809951285102e+00 +2876 3.0250478279163862e-01 -6.1682471896915125e-01 -5.6494440343751853e+00 +2288 -3.0777557192805571e+00 1.8004015529803998e+00 9.7112823515583901e+00 +2874 1.3817795557593893e+00 3.1218495307507932e-01 -1.7771767612283068e-01 +3050 -2.8796274212448847e-01 2.2388594055104831e+00 -1.2799710045318262e+00 +2872 1.2833896135324132e+00 -1.9895117269663325e+00 -2.4678884888633483e+00 +3051 -1.6141950136377194e+00 -2.2106018416130238e+00 4.5947756874606664e+00 +2870 2.3681786914909568e+00 1.7102645761576046e-01 -1.2544258303850846e+00 +3052 -7.2299161704949393e+00 -1.8388465127470035e+00 7.6496773074114255e-01 +3053 -1.9650935787556347e+00 7.3025938374917360e-02 3.7279283849779152e+00 +2603 -5.5622517361023371e+00 -4.8997290316970297e+00 -6.7419731390812609e-01 +2864 2.9167733710580075e+00 4.6644815968565174e+00 -4.5536890444253837e+00 +2862 -3.2055351780883878e+00 3.5199332019366514e+00 -2.7514060176534016e+00 +2587 -4.0316244994934465e+00 -6.0060555575593657e+00 -4.7208605161552883e+00 +2860 -3.7532300543347770e+00 -3.0154105797147301e+00 1.8528252881279685e+00 +2858 5.5113501890560377e+00 -1.7721518672888690e+00 -2.0281485768409180e+00 +3055 -6.8689942176718723e+00 -3.2099380898750223e+00 -1.1148690854690015e+00 +2856 -3.4276323153243893e-01 -5.4742559511349125e+00 3.1823095284622110e-01 +3023 2.6666126407815609e+00 -7.5031737554963798e-02 -1.2933853713716850e+00 +2854 8.0015176336091476e-01 6.7040209042912560e+00 4.0803413443002512e+00 +3017 -2.0881869769364081e+00 4.8635217152296990e+00 2.5425241639874563e+00 +2863 -3.8517822563643325e+00 -4.6946687826143391e-01 -1.2564653237675809e+00 +3019 -2.1334207065083315e+00 5.2766413335224682e-01 2.6824455612784135e+00 +2848 5.6486288787302597e+00 -1.9482124644911847e+00 2.9296911907655092e+00 +2846 -5.0436592693370912e+00 1.1238736471293717e-01 4.4608066287511985e+00 +2844 -2.6039359189807341e+00 -3.1324757654019635e+00 -1.6666194832251808e+00 +2842 -7.3002235952637946e+00 -2.6806257783647642e+00 -1.0865090226208978e+00 +2840 2.1579345750579466e+00 6.5588321641833158e-01 -5.9406350684637141e+00 +2441 3.0783659992560222e+00 7.2519066291722067e-01 -6.4170928566647358e+00 +2838 -1.9147907642148410e+00 1.0830505318734882e+00 3.4380767829626215e+00 +2887 1.5787843286781431e+00 1.7402429250477975e+00 -1.7517180072033940e+00 +2929 3.9194864650068091e+00 -3.2398049604894021e+00 -1.3108539515510560e+00 +2383 1.5726002972317787e+00 1.5390252221831207e+00 3.7757938584235067e+00 +2830 -1.6719314174901498e+00 5.8146698287109420e+00 -1.6712090937356394e+00 +3069 3.2459081048523490e+00 8.5624452119091252e+00 5.5663301478770855e+00 +2828 1.6945737985332643e+00 -9.1610629014572424e+00 -3.0385985374574704e+00 +3070 4.7090033446567228e+00 -8.4770615439869346e+00 1.2661612802091515e+00 +2826 2.3802007826557738e+00 -3.2388040821018853e+00 2.9970656567370750e+00 +3071 6.4702905371767350e-01 -5.0663371726776312e+00 -2.7835935150170632e-01 +2824 -1.7746053410072775e+00 -7.7265056340991105e+00 -5.5353176990934054e+00 +3072 8.9792889875082471e-01 4.5501796745909644e+00 3.8746352008335028e+00 +2822 -3.1795119831746965e+00 -2.0035777578406062e+00 1.1328155972805709e+00 +2061 -1.7486891768553690e+00 8.1931123021973062e-01 -6.9184533995523605e+00 +2877 6.2687775608230858e+00 2.4415686238775150e-01 -2.4667174963680241e+00 +2591 -1.2358697890324855e+00 -3.6040921572134565e+00 -7.1060718109330239e+00 +2861 -3.3246865306504123e+00 6.9439137925070249e-01 -2.8801628120511658e+00 +2617 4.1844001162572155e+00 4.6855066203986580e+00 2.1409164616608409e+00 +2857 -4.8337156098534634e-01 9.5309847009070015e-01 3.1777037665725172e+00 +2865 4.3808834083264649e+00 1.5788987017100489e+00 -2.2467824942441053e+00 +2256 -9.2372641386734100e-01 -4.9326718908580389e+00 -1.3751010567137203e+00 +2633 3.4265620996859512e+00 -1.8938820570395507e+00 1.7545247214564013e+00 +2573 3.8791507721531826e-01 -6.2902681150538049e+00 -6.6755551329172009e+00 +2127 6.3876381152545632e+00 2.6437000645680144e+00 -3.6120098868032802e+00 +2121 -3.6615569848761251e+00 1.0109450969315299e+00 2.5814639250317408e+00 +2765 -4.0219899889543393e+00 1.8215863168855524e+00 2.5791604050505219e+00 +2059 -3.5995431249455150e+00 2.5831843961748815e+00 3.3917283421497735e-01 +2845 -1.5428033036587632e+00 -4.4854829915781878e+00 1.1062584573381007e+00 +2607 -3.7034350782941372e+00 5.2994729083795340e+00 -6.0090247507806516e-01 +2185 -3.0277605550748317e+00 1.6545890892131282e-01 2.1489921739100821e+00 +2249 9.3991356949147580e+00 3.7238168602868713e+00 -1.8142655793846447e+00 +2119 -8.9348441109724397e-01 -1.1543945226204935e+00 -3.5316000500781093e+00 +2843 9.3627232802049338e+00 6.5380636876346969e+00 -4.9199009385427441e+00 +2187 -3.9263144441246145e-01 4.6491604875608772e+00 1.8770210538969634e+00 +2191 -8.0700404273017483e+00 -2.5110790414464828e+00 4.3339900083723135e+00 +2871 -2.5250601373629333e+00 -8.1666969492581931e-01 3.7857429932970779e+00 +2761 2.1014525072340615e-01 1.8184582936173521e+00 -2.4961535559378802e+00 +2790 6.8378048017702104e-03 3.6991389998883375e+00 -5.7322350954998100e+00 +3480 3.4749335364058740e+00 4.5450816575968860e+00 -1.8623340150569949e+00 +3281 -1.4078278240317288e+00 -1.0249468707439480e+00 -5.0881926988805137e+00 +2783 4.1139638303758659e+00 2.3649494586956208e+00 1.5944139486475033e+00 +2782 -3.4288476879114840e+00 1.5021721125882430e+00 -4.4098317905970391e-01 +2781 6.6783447594023677e+00 -2.0143464566539593e+00 -5.1695225923589510e+00 +2780 3.7183993662258947e+00 3.0355799797759606e+00 5.7526739901207540e+00 +2779 -2.6934364865048721e+00 4.4584091683918707e+00 -9.8810239355222329e-01 +2778 4.1676689830298308e+00 -5.9089195888214405e+00 -4.6346127202120160e+00 +2777 4.9286447068074484e+00 -1.6322439060671061e+00 4.4438631889410800e+00 +2776 3.2210170809812735e+00 -8.6140218906704611e+00 1.5226458440945678e+00 +2775 1.8592337250350899e+00 2.6767835257055523e+00 -4.5988460928958057e+00 +2774 2.9316230840300658e-02 -5.7186834876115855e-01 -5.7416535138495317e-01 +3377 3.3313441355045716e+00 2.9375892564682418e+00 1.2962692353323910e+00 +2768 1.1730453736865022e-01 -8.2800504818913954e+00 3.9206490898428559e+00 +3024 6.5034813016484510e+00 -1.9599679122402420e+00 -3.4031438787386470e-01 +2766 -3.2363336012410695e+00 -3.0759196044892598e+00 -9.5074979010909788e-01 +2797 8.3373416478400628e+00 -2.6168545845010236e+00 -3.4779329241657009e-01 +2764 3.2585716088235799e+00 1.8986442267098824e+00 -3.2923458325001325e+00 +2763 -2.0275359318376343e-01 -7.1805803356589870e-02 -2.4721279514152568e+00 +2762 -9.6134133468369032e-01 1.3199422286174691e+00 7.4538015151933579e-01 +2798 -2.4007860325540911e+00 -3.7795302303195930e+00 2.4267765466695843e-01 +2760 -1.0639350798914442e+00 -4.3121179417931748e+00 8.0769538282015896e-01 +2796 -2.6310263255124124e+00 -4.1550978384857888e+00 -3.5550396662017372e+00 +2758 -9.7497339945927974e-01 3.3427877123161256e+00 1.7022971065488202e-01 +2792 3.0222215224561051e+00 -9.7338059230098917e-01 4.3844463209375579e+00 +2793 -1.9828546598963770e+00 4.4662428703514223e+00 1.2863214707764967e+00 +2752 -2.5578106229259834e-01 3.7711419119651524e-01 5.1147713641428485e+00 +2751 -1.7849501464813953e+00 -5.1879630062569575e+00 -4.3603237672634609e+00 +2750 -2.7413530953352736e+00 5.0883320708580309e+00 3.3452088389200534e+00 +2749 -7.2413638479530871e+00 -6.7152455075088324e-02 8.7883343069973492e+00 +2748 2.1788756572622545e+00 -2.2408575269525075e+00 -2.0466260757754942e+00 +2747 -3.7716328595944648e+00 1.4819236111281302e+00 -4.9912849718861629e-01 +2746 1.9883573827856431e+00 -2.4457512718348191e+00 -8.3503054824651439e+00 +2745 5.6599085441914658e+00 4.9202265831688363e+00 -1.7071919203903547e+00 +2744 -5.9870053474353533e+00 1.0059901692116915e+00 -3.0639989936705869e+00 +2743 -6.5320293355869152e-01 2.1517673573009843e+00 1.8718823889398176e-01 +2742 3.9936622378841422e+00 -4.0573220819138225e+00 -3.6309857808250268e+00 +2736 1.8195254077349174e+00 2.4873955721953131e-01 5.3433064835617463e+00 +2735 3.2358525349874040e-01 -4.5551127101407216e+00 3.6272658836637324e+00 +2734 3.2638356695875337e-01 7.3407754255935309e+00 1.0584299537822012e-01 +2733 5.6413043279510520e+00 5.6904499996979174e-01 1.0689151821914775e+01 +2732 -1.5779364512515037e+00 -2.7291166412771555e-02 2.4977026001174929e+00 +2731 6.1094045876770355e+00 2.0931917518090423e-02 5.4871863021720158e+00 +2730 4.6234203816873016e+00 5.6651271751191787e+00 2.2955464078526813e+00 +2729 -3.2996614562361710e+00 -4.6813297030732253e+00 -4.9995531396439610e+00 +2728 3.6121787848042723e+00 3.6756370795970335e+00 2.4575420156867906e+00 +2727 6.5499197795961912e+00 -5.3749020709804931e+00 -2.2141541103290510e+00 +2726 -1.5309784421761148e+00 -4.4614431514276603e-01 1.0658919404820162e+00 +2725 3.1898400370488895e+00 -2.9007840137416347e+00 -1.4388286164045903e+00 +2720 3.0358739434293733e+00 3.1626273894554879e+00 1.9269652442160663e+00 +2719 -3.4020488859268067e-01 1.4222574593864759e-01 -3.9308427659285061e+00 +2718 9.8083478105669641e-01 -4.7843105559162149e+00 -7.8225943255846824e+00 +2717 -2.6577700360558123e+00 -2.9436610956152526e-01 -1.7709828414083340e+00 +2716 5.9525338776273229e-01 1.6092818655935187e-01 6.1625114353749018e+00 +2715 1.4680902877810309e+00 -4.1712293758184753e+00 -6.9160821539192670e+00 +2714 -3.5115354303310085e+00 5.7853757377920676e+00 4.5284123144749282e+00 +2713 -1.4080522756149982e+00 -1.7682305331363686e+00 3.1193242233217573e+00 +2712 -9.1390598250343547e-01 4.3825212512510694e+00 4.2441995884635952e+00 +2711 -5.3903785450522823e-01 1.3628243715414445e+00 -1.2742399061224583e+00 +2710 -6.2374420402047663e+00 2.8445862121353436e+00 1.2190021723517692e+00 +2560 -2.1653274683665433e-01 -5.5148072519002485e+00 -2.1435378137126824e+00 +2702 -5.3910819164007044e+00 1.0230332946702885e+00 -7.9378590935070714e-01 +2700 3.0365460567464004e+00 2.7127513708666089e+00 -6.3503568155242052e+00 +2698 4.3845616366456390e+00 -2.2006177110557177e+00 -1.5382989291710114e-01 +2696 -9.2478123251883861e+00 2.9608695745210398e+00 -2.9480536112698625e+00 +2806 4.0878862316042603e+00 3.1701553843891657e+00 -2.3859036960039894e+00 +2694 1.9730445297904833e+00 -4.0507527348335177e+00 6.8000772732526327e-01 +2807 2.8892656752480654e+00 -2.2259779564449294e+00 5.8393450624892287e+00 +2808 1.3743301641859522e+00 -3.9322340890738974e+00 1.3573553213981169e+00 +2809 3.1430657792405974e+00 -1.4711357525140876e+00 -2.4375062667469480e+00 +3651 -3.8060179967648096e+00 -1.1320673737511517e+00 5.9058903773156812e+00 +2687 2.3357147847793853e+00 -1.5905167054299210e+00 1.6776075488604139e+00 +2686 -7.0375520472622188e+00 -4.0231767777762206e+00 -6.0553336624346885e+00 +2685 4.5253976880032054e+00 -2.2880418371400806e+00 5.4991640219029636e-01 +2684 -6.6542627182159275e-01 -8.6559548512340783e+00 -6.3628062702706076e+00 +2683 -1.6375760089692590e+00 -9.5908136886867112e-01 -7.5292698056399576e-01 +2682 -1.0449245312510245e+00 2.3690139534961037e+00 -3.1680659555059636e+00 +2681 -2.9032361355702634e-02 -9.5202243122204433e-01 2.1500946441501667e+00 +2680 1.2074942605578118e+00 -4.4188571817093081e+00 1.2151282448459038e+00 +2679 -1.8233884080972302e+00 -8.0904860597002537e-01 2.4034648853834502e+00 +2678 5.1293227631908076e+00 -1.4495265988866586e+00 2.2330441361189970e+00 +3790 4.7177081867816524e+00 -1.0072181579953001e+00 -3.6941907695680447e+00 +2672 -4.9884335781821418e+00 5.5354004139110424e+00 3.3517387951343176e+00 +2671 -1.2963608314005455e+00 4.8203645713060611e-01 -3.6192148966645732e+00 +2670 -8.7116663104560654e-01 5.4622992745312327e-01 -6.4723700390602135e+00 +2669 -7.3678583095129868e-01 1.6977879508537781e+00 -2.7015360719018444e+00 +2668 4.2990378614811364e+00 2.0334938751354468e+00 2.0373894232965113e+00 +2667 2.8203058825729133e+00 3.5104251168264278e+00 2.0133024325863267e+00 +2666 3.5619861539195230e+00 6.7913208932968239e-01 1.0436753400151538e+01 +2665 3.0269190053400958e+00 -2.4865372871869558e+00 -4.4481156610515766e+00 +2664 -2.0315572899229792e+00 -3.1992131228382163e+00 1.1776454808015189e+00 +2663 -4.0278487639720009e+00 1.6481747208553206e+00 1.7605822173029999e+00 +2662 -1.2204752725951328e-02 4.5712467258678524e+00 2.4028873463326259e+00 +3725 -5.6572655879793805e+00 1.1807177966448297e+00 -3.1102055318187305e+00 +2656 3.2311327581599719e-01 -1.5889052559076600e+00 -2.0683154898305793e+00 +2655 -2.1968730143506945e+00 6.5934697275766485e+00 -4.3633692413336176e+00 +2654 1.6530204241164517e+00 2.9239397728174525e+00 -7.3272808782756798e+00 +2653 -7.1375442041421948e+00 1.4024849916723561e+00 4.6599449907200405e+00 +2652 1.7512864009612059e+00 -5.4102562727436405e+00 -3.6512276875359484e-01 +2651 9.1137429581435681e-01 1.1335528065147094e+00 -5.5703492832167534e+00 +2650 -5.4300906692069670e+00 7.2595007450427662e-01 3.5631861288136779e+00 +2649 -5.5868190972257601e+00 2.0252294360041754e+00 1.2738272118729745e+00 +2648 -4.2976207940310323e+00 9.5066101942568448e-01 1.0672218616338554e+00 +2647 -6.4483007613458705e+00 1.6249945072517955e+00 -1.7796722440279028e-01 +2646 -8.1926401393904086e-02 -2.4309636289906360e-03 -3.9261687601419664e+00 +2645 1.0585852577588832e+00 1.6414219772483327e+00 -3.7936734946473591e+00 +3709 -4.1940689622838381e+00 -7.8473509377993078e-02 3.1788845261470526e+00 +3766 -1.2809542856292411e+00 4.3211943136849804e+00 1.9738281936273923e+00 +2799 5.2685324734628178e+00 -2.1356566651686721e+00 -3.4768153575584408e+00 +2638 2.9562297083077822e+00 -2.1143733154215543e+00 2.1056058408733422e+00 +2810 6.8144837453504916e+00 -4.6398634168941992e+00 -1.4025937582658152e+00 +2636 -4.4973653077934870e+00 -8.4662493737240585e-01 2.4266304502776126e-01 +2811 -2.3866001981179359e+00 -5.0239483946567294e+00 3.5085137416410919e+00 +2634 -2.5293012886956951e+00 3.1952984642369060e+00 2.2071312742700921e-01 +2812 -3.3061461790394486e+00 -7.0053402939963485e+00 1.4748120846990069e+00 +2632 -2.2859407996790879e+00 -4.6923919847670419e+00 -4.5724648836210751e+00 +2791 -3.4393006532414421e+00 -3.7960189051948068e-01 6.1758372856750716e+00 +2630 1.6486027810837227e+00 -1.8280232606259068e+00 -3.3564849550157301e+00 +2239 5.8992989343256497e-01 3.9851221037144415e+00 1.7156379594606628e+00 +2813 5.5694472312485273e+00 6.1675094854284636e+00 2.9926182685404940e-01 +2117 -8.9253528735078955e+00 4.4738932862623164e+00 4.3750189926622829e+00 +3506 6.3542053844592044e+00 1.3900868327566278e+00 -7.0692213736273626e+00 +2794 -2.4483959371328293e-01 4.1644577852660101e+00 -7.7149226491644762e-01 +2622 1.0060190341842945e+00 -5.1534985025111988e+00 -1.2876986637614642e+00 +2795 -1.0250256001335736e+00 -3.7557867451808136e+00 -1.4299559102611203e+00 +2620 5.7033246971181475e+00 1.0120635056560050e+00 2.9134376717462653e+00 +2618 -2.4749092608372854e+00 -6.1130111663895070e-01 -1.1127077169595583e+00 +2616 2.8444222851450998e+00 8.0926898298723371e-01 -2.5970047709622022e+00 +2614 -1.8441068422855922e+00 2.4491068419335664e+00 -1.7326032633200326e+00 +2855 2.2985589593734286e+00 -1.3171064865810693e+00 -2.9693742458430972e+00 +2608 -2.2329741734612591e+00 2.5150653803106935e+00 -4.9956625543125813e-02 +2827 8.0944898230316287e-01 2.3007165697361276e+00 -2.1150999492750211e+00 +2606 3.5763033954497967e+00 4.3424046204965965e+00 1.6330025829559534e+00 +2604 1.6373893652931859e+00 -9.8481598826146166e-01 -4.7993176241645124e+00 +2251 1.7846335258842914e+00 1.5322282306854457e-01 -1.4496134895998081e+00 +2602 -1.4061311282357540e+00 5.0427673023993425e+00 4.3559600345365306e+00 +2585 -2.6092128010086761e+00 -3.8725816716421688e+00 1.6840088194576321e+00 +2600 -1.6620024148668504e+00 2.1634211229104765e+00 -5.5428974512424434e+00 +2598 1.7348788224656251e+00 -2.5961059804991384e+00 9.1603857592682869e-01 +2605 5.1852879855281344e+00 -1.4421206984766508e+00 -1.1024620023420533e+00 +2615 -3.4677138003051158e+00 7.0409093774942710e-01 1.4901526350317000e+00 +2255 1.7492117885130825e+00 7.9188685745275422e-01 3.1588012961134462e+00 +2592 -2.2312801941299805e+00 -3.0277353510016907e+00 -2.5499118725362973e+00 +2590 3.0819476863743840e+00 -1.9670101038681402e+00 4.5251602283170609e+00 +2368 -5.3738363761449204e+00 2.6932238506470974e-01 4.9888450671574169e+00 +2588 -6.6520072185461157e+00 4.3854034257772003e+00 -5.6551259636045892e-01 +2123 -1.9164717299177625e-01 -2.7352084151974703e+00 -2.7929643580983896e+00 +2586 4.8171012532527051e+00 4.0911482723397447e-01 2.8870984822860297e+00 +3388 6.8480050532812511e+00 -4.5498571502870799e+00 -3.4488328591602118e+00 +2584 -2.8787565789274612e+00 2.1700707747505552e+00 4.1421596829056728e-01 +2623 3.2936463917195125e-01 2.5575247340365190e+00 7.0053113209813456e-01 +2582 1.0751937370284723e+00 -3.4722639369579927e-01 1.1204385296143788e+00 +2631 1.1050338214322528e+00 -4.7879496157627521e+00 2.1908984894254400e+00 +2637 5.5074060601543886e+00 -3.0966153598827306e+00 -4.2744253673357990e+00 +2859 2.0693635545655290e-01 -3.7876511197073226e+00 -4.3103432736614273e+00 +2576 1.2514585477686682e+00 5.7894990680487108e+00 -1.4669111691582462e+00 +2574 7.1432781804273038e-01 -2.6758398292232140e+00 -4.1714514445433446e+00 +2814 -4.4649285114369421e+00 1.2786733849201433e+00 7.4586696452797807e-01 +2572 -1.5454385663353016e+00 2.8051431346671073e-03 -7.0991316973877678e+00 +2815 2.7370377474716956e+00 -4.1312883014873716e+00 -4.8545965518058587e+00 +2570 3.1522145199261224e+00 5.8263659038423055e-01 -2.2639063024305646e+00 +2597 8.0951589293163440e-01 4.2691253029765397e+00 1.0987630943451272e+00 +2568 2.1197820735909336e-02 3.2501748467312823e+00 1.6258375646675445e+00 +3708 -2.8060881144788170e+00 -7.9885227223349764e+00 4.4421273258796017e+00 +2566 5.9439729270038455e-01 6.9727231163270120e-01 5.5522021598702818e+00 +2635 7.6022923586799818e-01 -3.7580076494789507e+00 1.4182556606035628e+00 +2305 -4.2736508505096511e+00 5.9523107028838993e+00 -1.5924998719601535e+00 +2571 -1.6679091226564882e+00 1.0711752342026575e+00 -2.0993688778342398e-01 +2501 1.0568578004338316e+00 2.0084415134479094e+00 -3.1702854263744258e+00 +2105 5.6203859587158256e+00 -1.6405765829543069e+00 -8.3957284572330171e-01 +2057 -2.8085049759713629e+00 3.4975721940971858e+00 -1.2539320269361416e+00 +2957 6.5855730568125148e-01 7.9111033553704004e+00 1.5470494404719726e+00 +2951 8.8388198486136715e-01 -1.2953829004310693e+00 6.6110946574329512e+00 +2823 1.2124841585605111e+00 4.0025909332385572e+00 -3.2966230197420865e-01 +3960 -1.7322987461282449e+00 9.4409232944020582e-01 3.1448465601669993e-02 +2053 -1.7517339064973043e+00 -1.2986997281095298e+00 1.2408744772847933e+00 +2891 -1.6764930965315945e+00 -4.3388450680602437e+00 1.8976929786358179e+00 +2331 -1.0233774520892351e+00 3.7708701697674896e-01 -2.3538688463941448e+00 +3021 -3.4140029111262642e+00 -1.1235921393540262e+00 8.4746558477880853e+00 +2089 -3.1325647888932044e+00 -1.5985070696415429e+00 4.9423951249243627e+00 +2535 3.2843890152861022e+00 5.7798516954557155e-01 -2.7317958240273406e+00 +2534 3.8777997667408894e+00 4.2392263232943908e+00 -2.1814440537837037e+00 +2528 3.0422331553829007e+00 -7.5223706666659740e-01 -3.7263260919648857e+00 +2527 6.3684312956494193e-01 -3.7657398635040260e+00 -7.4217739371161251e+00 +2526 8.7969692176395087e-01 -3.9940006057172601e+00 1.1601919597549497e+00 +2525 3.2292068030829307e-01 3.0996930641720995e-02 -6.9413041281755534e+00 +2524 3.8901472156148702e+00 -1.9262897724397423e+00 5.5705775489260485e-02 +2523 3.3268141166346155e+00 -6.7080789842174060e-01 1.8291691313124241e+00 +2522 -3.1459094544722350e+00 3.2398029653908114e+00 2.6347278270985028e+00 +2521 1.1400160177460255e+00 2.0424796568413113e+00 8.2670703414504381e+00 +2520 1.0805574801141835e+00 -8.9308178452023834e-01 8.3666251995080154e-01 +2519 -6.1318599760273484e-01 2.9664628179824954e+00 -1.6022644275147506e+00 +2518 2.5997390970727570e+00 3.5592032654738537e+00 -5.8865273388456281e+00 +2517 -3.5876930111322336e+00 -1.7136814211428191e+00 -3.2715988595403371e+00 +3876 6.9328603348344875e-01 2.1981509258280973e+00 -6.1104668971591558e-01 +2510 -1.9457904722601931e+00 -2.3583071833388631e+00 1.9857704845416244e+00 +2508 9.9303883907057440e+00 2.9439284398383792e+00 -6.0972359631764554e+00 +2539 -7.3373925054966968e-02 1.5088887543474503e+00 -9.7266428969951113e-01 +2506 -1.7043314544209612e-01 2.4231527326389872e+00 9.1879781672986893e-01 +2821 2.3325440166580540e+00 -1.1742148162415569e+00 -2.6662897542559882e+00 +2504 -9.3547854586738821e-01 4.6149728694805461e+00 1.3540452753258334e+00 +2502 -1.9082046386285076e+00 -2.7567863274388995e+00 -1.6674671904253009e+00 +2895 3.3724835771421753e+00 -2.8116695380165777e+00 -4.9213269199949199e+00 +2496 -4.3848486826968275e-01 -1.6861624813421363e+00 -6.4491066856162194e+00 +2495 -3.8078718438209904e+00 -5.4045296120000410e+00 1.4670905141795065e+00 +2494 -1.2086060075168263e+00 -6.3213192981995077e+00 7.8879918171296595e+00 +2493 -3.5225083856828245e+00 2.5164988168632801e-01 -2.6337758821355167e-01 +2492 -3.4461485596236936e+00 -1.8093773060111655e+00 -1.4163152163591972e+00 +2491 -4.1742772682952145e+00 -8.1211608291406934e-01 1.9288706997236018e+00 +2490 6.4464192810230370e-01 5.4074457059957037e+00 -3.7123042683550773e+00 +2489 5.5016739264002448e+00 -4.2647800701303664e+00 -1.3459086312666124e+00 +2488 4.7495341751653297e-01 2.1061468114481174e-01 2.0663441456196887e+00 +2487 -3.8105686992359336e+00 1.6316308827571984e+00 -1.2768249070775327e-02 +2486 5.6274525067657315e+00 -3.6511027633919149e+00 -1.2732526957619472e+00 +2481 -1.1124642003473006e+00 2.5871259549120720e+00 -1.1444607798081203e+00 +2480 -8.6896044518691873e-01 5.1052961754797881e+00 -5.1651107479481917e+00 +2479 1.3340412560609345e+00 -7.8487779380166804e+00 5.9287020324014783e+00 +2478 -1.6641381371972481e+00 4.7752054545194058e+00 1.8731635988814574e+00 +2477 6.4054863217571967e+00 -8.6049577547810230e-01 4.6221203593972531e+00 +2476 4.5375737829380958e+00 -3.7534512789568743e-02 3.3229463990121961e+00 +2475 1.2172401126398473e+00 4.6606555265629055e+00 -1.1846312844262876e+00 +2474 9.1067965019629071e-01 -1.1106250011824681e+00 -9.4309179115055786e-01 +2473 -4.0093862806031231e+00 -6.9235525290669537e+00 4.0370786349725813e+00 +2472 -1.7113695127114839e+00 -1.6242897882746234e+00 -1.4042047282314518e+00 +2471 -1.9232944771850495e+00 -4.4432831098867953e-01 -4.1079858892321628e+00 +2470 -5.9345010080890881e-01 -1.3470628345226050e+00 -2.8456484472677706e+00 +2465 -1.1588612091513795e+00 1.6645998388018846e+00 -6.0123319542129741e+00 +3788 1.8982791507603920e+00 -3.4430166083589908e+00 -3.5955644552756878e+00 +2463 3.1188583927587818e-02 -2.0139759257556133e+00 -9.7185193309051920e-01 +2462 -2.3719561035636789e+00 3.9362265666466878e+00 5.0789516881513652e-01 +2461 -1.8631779280051624e+00 -1.8469967677056796e+00 -4.8971880722015487e-01 +2460 -4.6011134259820902e-01 -1.1412980412096987e+00 3.6030417950533935e+00 +2459 -3.5804227286640500e-01 -2.3126105514914266e+00 -4.3310512729295105e+00 +2458 1.6703389682504730e+00 -1.7065636183967083e+00 5.9925292710412998e+00 +2457 -3.3833058415369632e+00 4.6411085107942593e+00 -6.3136796232784977e+00 +2456 -7.8807578736985686e+00 -2.0648393236068312e+00 -5.1957555003216367e+00 +2455 -2.0170153913874822e+00 2.6565658815765554e+00 6.7804861374448189e+00 +2454 -6.1124165489733908e+00 -9.3050081499315762e-01 3.8684354475939120e+00 +2448 8.8085221813079295e-01 -7.4798435340531233e+00 1.1899563337564023e+00 +2550 1.7759079358422907e+00 -3.0992421422065064e+00 4.0606066260673490e+00 +2446 -1.0120163059757719e+00 -6.1009985907848288e+00 -5.0649655078128009e-01 +2551 1.6014198573821956e+00 -3.9493346644415532e+00 -1.3228000568190064e+00 +2444 -1.7029836471225288e+00 -3.8577012381196232e+00 4.2707937260718243e+00 +2552 4.8636422057158493e+00 -2.6467016356983764e+00 2.8027973658555951e+00 +2442 -2.7962028744090079e+00 -3.0707053005914529e+00 -4.5122951644050779e+00 +2553 6.7094653172417180e+00 1.7713727980730010e+00 2.2908561902070770e+00 +2440 4.1488574164001157e-01 -1.8450669463103200e+00 5.7397538870377456e-02 +2554 -1.4865852718703385e+00 2.7057561958485099e+00 -2.7076541005314589e+00 +2438 -4.1524774206431719e-01 3.4018843778719181e+00 1.2799950749632307e+00 +2555 -2.9419538196625966e-01 3.6308415650661834e+00 1.1094820975853545e+00 +2556 -3.1840144036572529e+00 2.3346966340367450e-01 -6.8560744444158699e+00 +2544 9.6512268717712335e-01 -3.6782183229380278e-01 -4.0226941403842051e+00 +2431 -2.4200710653146302e+00 -3.2831314586403635e+00 3.1869147021346822e+00 +2430 -1.2831275818953718e+00 -4.8010715305149345e+00 -4.7444395310228380e+00 +2429 -2.9253640927060367e+00 1.0408545723686506e+00 6.8852807901254023e+00 +2428 -2.7064345306689490e+00 -4.3674917081386662e+00 1.7540411195242858e+00 +2427 6.0107303988408782e+00 5.3356169417766841e-01 -3.3551241472290658e+00 +2426 3.8845852255054765e+00 -5.9047304044972453e+00 -1.6790944653487383e+00 +2425 7.2513451435932842e-03 -3.4110225122524901e-01 4.4438388614370167e-01 +2424 5.8558021239148514e+00 1.1731808300363877e+00 -5.9818916949217438e-01 +2423 2.1571116638071266e+00 -2.6250119701868608e+00 2.8085236464006496e+00 +2422 -7.0880523388035233e+00 -5.3183695469128853e+00 5.4385145330337332e+00 +2541 3.0557044064889780e+00 -1.9664746210056332e+00 1.7575436192392313e-01 +2416 -2.3081003384655588e-02 2.0064571900654209e+00 3.3071910029607126e+00 +2415 1.3990882213534344e+00 -6.2110966010521218e-01 -2.0355818926551499e+00 +2414 6.9223358147956082e+00 3.1451561525685334e+00 8.1111849817922987e+00 +2413 -3.7016047704128892e+00 -3.4572433142081371e-01 8.1151051495759374e-01 +2412 1.3618171605420210e-01 -1.5499430616987839e+00 2.7341023421779322e+00 +2411 1.1235662605447709e+00 -3.4776891965518071e+00 3.6569913186186134e+00 +2410 4.6607338427055306e-02 -6.3052137675594340e+00 6.4829050374954011e-01 +2409 3.8032400732345213e+00 -2.2309951789584073e+00 -3.7975613514246356e+00 +2408 -1.3877392558940136e+00 5.0364542420354210e+00 5.1578890855065609e+00 +2407 4.2187860476677628e+00 4.5861695181497550e+00 8.7000479365664045e+00 +2406 1.7916796203081750e-01 -2.1880173655491229e+00 -1.0671494045395231e+00 +2896 -1.9215215976278317e+00 -5.2276268293017858e-01 2.1046175384363250e+00 +2399 -3.2198973632820707e+00 2.6139851715695954e+00 1.9974736170889789e+00 +2398 2.7077462408739819e+00 -3.3081400086748110e+00 5.9831567454620291e+00 +2397 1.0557476508112659e-01 -1.5228605959675072e+00 2.0928298644344738e+00 +2396 3.2701685968105592e+00 -1.6215582528755703e+00 -4.3746793949582843e+00 +2395 -8.4258208330198148e+00 -5.2888593982562533e+00 -3.2601641891899114e+00 +2697 1.2736467137359944e+00 -3.8187239314624817e+00 -2.3944862387726853e+00 +3332 1.1820197489332859e-01 4.0387620930049568e+00 -6.3234030976386100e+00 +2054 1.8354662210540487e+00 3.5441618594963226e-01 -2.2130491244792494e+00 +2303 4.4102490776894907e+00 4.7580263598338863e+00 1.0339728212438870e+00 +2056 1.9272744327550457e+00 3.6893105509583375e+00 1.6598816388408306e+00 +2058 -3.3963097431210252e+00 4.4430967009011297e+00 9.6208324230767559e+00 +2825 1.3517993200220058e+00 1.4407624502107770e+00 2.6764497084425076e+00 +2060 -1.3141041921573324e+00 -2.8190979164681038e-02 -8.4588929965436543e-01 +2302 4.1993474598760070e+00 -5.9660551285121493e+00 -6.7428484469458905e+00 +3236 -5.2547856361015777e-01 -2.4216737529819108e+00 2.7341385883426952e+00 +2064 -4.8901691863770136e+00 4.3617989432590942e+00 5.6938696357280449e-01 +2055 -3.2204173526391391e+00 -8.4740327316537090e-01 -3.2027666468048543e-01 +2349 -5.0203081546992792e+00 -4.7576377908223488e+00 -1.8977318755801462e+00 +2101 -5.3322591163506505e-01 -7.6587974390440572e-02 1.2115149396808391e+00 +2070 -3.6161955037842901e+00 -2.8374193883875658e+00 -6.5968472221192376e-01 +2072 2.8452569201189566e+00 3.5101046726873135e+00 3.6393288856720609e+00 +2074 -3.9714738278477024e+00 1.3041871834768937e+00 7.3362038321208312e-01 +2361 -3.1270722350857355e-01 -3.1976886441752619e+00 3.1716334389907268e+00 +2076 -3.3026074886114412e+00 -3.1916033538266309e+00 -1.2940155186439375e+00 +2343 -3.5456154162156532e+00 2.1282858531725521e+00 -2.2755798138613716e+00 +2078 -1.6727976817277326e-01 2.8512614907132798e+00 -3.6821123154379394e+00 +2575 -3.6202104687687884e+00 -1.2781719045236026e+00 -5.7828008604916215e-01 +2336 1.5076084969735151e+00 -3.9680998637217488e+00 1.8890308432187608e+00 +3962 -4.5339314471421011e+00 -3.9298246157155483e+00 -4.7935042016289646e+00 +2759 6.5488168220167427e-03 -3.3773400465897003e+00 4.5048526343020541e+00 +2313 -1.1859666691790021e+00 -3.2894483225078517e+00 -3.5324595682381141e+00 +2086 2.3201018961167219e+00 3.6438743454985869e+00 -9.9299180666368925e-01 +2088 1.8373913189133857e+00 -7.5791332897087532e-02 -2.4367639026198069e+00 +2090 -1.0045615576503066e+00 -4.6555796797536448e+00 -1.4042937166284930e+00 +2092 -4.5093138093990000e+00 -2.4270014035873544e+00 2.1625190058370820e+00 +2767 2.2136151247405023e+00 1.3796713639412290e+00 -3.4753707582038973e-01 +2094 -4.0433620345366350e+00 -2.3010735426685622e+00 -4.3580927064754018e+00 +2367 5.1313958417436716e+00 9.8712750964575458e-01 -2.2058572260539209e+00 +2096 1.2682004977071968e+00 3.1809377907126395e+00 4.9855208938235416e+00 +2311 -8.4194908855361081e+00 -2.6288013205705316e+00 -5.4198353840964952e-01 +3408 3.0008214627376368e+00 -4.6398640624126299e+00 -3.2919785459160216e+00 +2699 1.9750010753937284e+00 -7.8256394854670051e+00 -6.4431692602527351e+00 +2102 -2.5967638824294248e+00 -3.6548189945425245e+00 -1.6237388755353279e+00 +2286 1.2592983279724759e+00 -2.8697846150751833e+00 -4.7598367748942731e+00 +2104 -4.3568763183357859e+00 -9.7539956147287725e+00 7.2222236315049892e-01 +2285 -3.1057327281707875e-01 -5.0135655614029662e-01 1.1157025543699138e+01 +2106 -1.6552988379785012e+00 2.9824574238508539e-01 3.7654423696268174e-01 +2284 8.6822760526386116e+00 -1.9918572812533114e-01 2.8189480939136113e+00 +2108 -3.9012066604536044e+00 -2.3853989046457271e+00 5.9327416095186853e+00 +2282 -3.9192021208626251e+00 3.7678164737180095e+00 1.8849436623821163e+00 +2110 2.4153725528297798e-01 4.6740411207188215e+00 -8.1772100249667146e-01 +2283 -3.7688060208800583e-01 1.7345390869700357e+00 6.7157699236412913e+00 +2112 -5.3832346231756945e-01 -1.5022899463140065e+00 -1.1133097481487937e+00 +2301 4.6502532361047555e+00 2.7298795785973984e+00 -2.6674123186747121e+00 +2103 4.6166565218455080e+00 -2.4549121786085717e+00 -5.2229418765724347e+00 +2300 -6.7430911261174575e+00 1.0552258995748969e+00 1.1971290579987190e+00 +2118 2.9392199952641738e+00 -4.1453283000290231e+00 9.7637245069273892e-01 +2299 3.3078025928034136e+00 1.4394909429246763e+00 -1.5214014706049774e+00 +2120 -3.0129002329421430e+00 -4.9933909215272747e+00 6.3770953088392512e-01 +2183 -1.1679741520855769e+00 -2.0816757037826590e+00 -2.2574324338147727e+00 +2122 3.5062559491597072e+00 -4.0293751635993962e+00 -2.7528580294262222e+00 +2124 7.2757024862995126e+00 -3.1959174704724718e+00 -1.2508054530964402e-01 +2298 -3.2728700368272836e+00 -1.1659558574677428e+01 6.7592924225235675e+00 +2126 3.7156563024719080e+00 1.3067202352308938e+00 3.0699763672909377e+00 +2297 -2.9769813404010592e+00 -2.2374608254882662e+00 2.3241546368231183e+00 +2128 -2.3947122804474794e-01 -1.4106280904129140e-01 1.1486178466471535e+00 +2133 2.7715984136490643e+00 4.4744704137835916e+00 -2.9974174281730197e+00 +2134 -4.0039842233705665e+00 4.3867181574165510e+00 1.2614448943479164e+00 +2135 -9.0839931859496292e-01 -2.4197098108430368e+00 -6.5878129052276491e-01 +2136 2.2873318198649555e+00 2.4363619974603190e+00 1.2952999061266759e-01 +2137 2.8549935662179187e+00 -2.2365336281103536e+00 5.3030507910228653e-01 +2138 -1.2158996874565364e+00 5.3228048748061259e+00 1.5533047636866397e+00 +2139 -1.3346200575632367e-01 2.7750216950530699e+00 -2.8183056874081664e+00 +2140 2.3064990260064997e+00 5.2855679227641650e-01 -2.9516836036872791e-02 +2141 -3.5458988056896006e+00 -3.0521868945539774e+00 -3.9206547279309611e-01 +2142 -5.7658203314544654e+00 -3.6358263775842818e+00 7.9934346557155245e-01 +2143 4.5774293206201666e-01 -1.1252676432669819e+00 -9.3037276039145089e-01 +2144 -2.4223550660064501e+00 1.8620618913629166e+00 -3.1340576761735262e-01 +3847 6.5513017189204614e+00 -9.9571382905222217e-01 -4.8639552014362675e+00 +2150 -5.0519215111645215e+00 -8.1012892018650557e+00 -9.1877053096324979e-01 +2151 4.5902825079298282e+00 1.4614049115693784e+00 1.6448971072475511e+00 +2152 1.6092933189531100e-01 1.2576850582331391e+00 4.5693296418652873e-01 +2153 1.9982289262686406e+00 7.0647951682833743e-01 -1.6929551445662927e+00 +2154 -4.0085268290392966e+00 2.8264360037316720e+00 1.2298473951666522e+00 +2155 2.3001876308855040e+00 -4.2060427478790271e-03 -4.5958678110582030e+00 +2156 -3.7304320799277773e+00 2.5790527089314019e+00 2.5450107644999655e+00 +2157 -1.3825316292609708e+00 -2.7317145957385556e+00 2.3264863328241900e+00 +2158 5.0248197256487321e+00 3.8688973541253908e+00 1.3207765770646294e+00 +2159 -3.4688753088931850e+00 2.4044239558039342e+00 3.4506714358022612e+00 +2160 3.1730845338220792e-01 8.2959877803900939e-01 -1.8745354882415330e+00 +2567 -1.7116624067322050e+00 -4.6272568168231010e-01 -1.0208977454201720e+00 +2165 -9.3186970728520091e+00 4.1690947095111452e+00 -2.0916480409233467e+00 +2166 3.1746766856523636e+00 9.9229340009495761e+00 1.8048248169207513e+00 +2167 -7.7677133436895236e+00 2.1973211412949252e+00 1.1803716873004695e+00 +2168 1.2175685355232002e+00 5.3114145455963051e+00 2.0058765363137430e+00 +2169 1.5987651885816183e+00 4.3689389294149894e-01 2.4451831016611423e+00 +2170 -4.4178559819690308e+00 5.4997969353614842e+00 4.6603972431135121e+00 +2171 -1.9054886166742930e+00 -7.0857246980610107e+00 2.5764080849470523e+00 +2172 5.7407771543320463e+00 7.6799682440792538e-01 2.3284345907060136e+00 +2173 -2.1604618593733855e+00 -4.9862287997932500e+00 3.1705023128380723e+00 +2174 7.7475238831801385e-01 6.3174798070773095e+00 2.0723680412083354e+00 +2175 1.9790452146721216e+00 -1.5995654820017222e+00 -4.5667397863102782e-01 +2464 -2.9924003789623996e+00 -3.2005544259023542e+00 3.6420167218111343e-01 +2296 4.4271970385674558e-01 8.5301059354826858e-01 -3.4329220807007141e+00 +2281 4.6543547186327858e+00 -3.7326465906327844e+00 4.6716408440277259e+00 +2295 -9.3071930354070513e+00 5.1959036574768165e+00 -4.6308572178460325e+00 +2182 -3.6223974239910572e+00 -9.7109835858225868e-01 1.3531279308309878e+00 +2280 8.0995326969643222e-01 6.1918661609836843e+00 2.8798937454390021e+00 +2184 -6.7567980949441022e+00 -4.4614681540074264e+00 -1.6156900328623134e+00 +2294 1.1026598136238299e+00 -3.0188585482576409e+00 -4.2497844224329713e+00 +2186 1.0119888513241944e-01 -1.2693144561280412e+00 -9.8639981833285428e-01 +2188 2.0967501821566472e+00 1.9143912862285146e+00 4.7513383925354724e-01 +2190 2.1784300365038201e+00 -2.1721749943050690e+00 -9.0059797246091755e-01 +2279 3.8530261115530653e+00 5.0988947626246039e+00 1.1115440181223808e+00 +2192 -4.6647394249812875e+00 -4.9967974056442195e+00 2.2460164121811230e+00 +2198 3.9515232630200088e+00 2.1394383220990409e+00 -2.5616069515027324e+00 +2199 -3.7051982348604167e+00 -1.4884099738442171e+00 4.1203514500191476e+00 +2200 -2.6096636197163301e+00 2.1413594099808932e+00 1.9591470340867203e+00 +2201 -2.3253418703971875e+00 -4.0751247381145754e+00 6.7206860153480568e+00 +2202 2.3896439436270778e+00 9.7628939500055445e-01 1.9549141089499831e+00 +2203 -2.5929425710144693e+00 -1.8624238807167617e+00 -8.1302767466174775e+00 +2204 -3.0629306463077013e+00 5.9279921919226917e+00 -5.7023875214204738e+00 +2205 -9.6469724760543301e+00 -1.2325154449353100e+00 -2.6029499808241270e+00 +2206 -3.4981850996399961e+00 1.8465397771386962e+00 5.9269556326654727e-01 +2207 -2.3364849262841245e+00 3.2194965405951295e+00 1.2700237269495875e-02 +2704 3.0026163557580063e+00 9.3364101364955776e-01 -6.5569996261013044e+00 +2214 1.3016664341892239e+00 3.5787512228167104e+00 -4.3299121291531328e+00 +2215 1.9252617172782513e+00 -1.9657263848602835e+00 -4.3934739152683679e+00 +2216 -9.3530698403336530e+00 -3.5495989650509077e+00 1.8394680474897536e+00 +2217 2.4568299182588205e+00 -4.0631199488651433e+00 4.8227043614169496e+00 +2218 2.4468773087577729e+00 9.7834722974498278e-01 -3.5123208295443735e+00 +2219 -4.4758294770892935e+00 1.0624629235633570e+01 -3.9617058834595181e-01 +2220 1.7369447005303615e-01 1.9115903225524189e+00 3.7082038629335340e-01 +2221 -5.7495089289700312e+00 -1.4597494882413158e+00 -2.7811369295492154e+00 +2222 -2.1683003666205769e+00 -1.0056625036637246e+00 -3.8074026327620976e+00 +2223 -3.1628921339325218e+00 -5.2840328419108999e+00 -1.0911411815489178e+00 +2224 5.1332224575375527e+00 -5.7824448067287078e+00 3.9419178756366589e+00 +2230 -4.7234811087970376e+00 4.2802234861719661e+00 -6.2527007877783980e+00 +2231 8.3758346631706587e-02 1.1349176949992898e+00 1.5232833675859372e+00 +2232 -2.4691078373497231e+00 -4.1450367019349148e+00 6.6879634395198124e+00 +2233 -1.2775653251866701e+00 -3.1773628272952337e+00 -8.5199314215398623e+00 +2234 -3.4553626162095625e+00 -1.7251247787393205e+00 2.2635272091523646e+00 +2235 5.3969083813749572e+00 -2.5286917911002633e+00 2.0426055048381859e+00 +2236 3.2789048091202844e-01 3.8460434778054449e+00 -2.3217575777056316e+00 +2237 -5.4611483054400516e+00 4.0887842764293625e+00 -5.1032238378403170e+00 +2238 1.0729498144729126e+00 1.5251361681762848e-01 -1.9938814973265062e+00 +2176 -2.5108766165915486e+00 2.1843173011298864e+00 -3.2307191039945287e+00 +3928 6.5826113972783409e+00 -1.2353290699991477e+00 6.5703214390586000e+00 +2246 4.6077331362164348e-01 -3.7420413226251905e+00 -7.2834804747191728e-01 +2248 -4.0887015049363301e-01 9.3246210412842323e-01 1.1329465560749079e+00 +2536 -4.9067907073270307e+00 -7.3646672803243640e-01 -5.0681918171048865e+00 +2250 -3.2535765877746381e-01 -3.3301869864315021e+00 -9.6093197179347845e-01 +2252 -5.9743316058254348e-01 2.5038299079442532e+00 3.4222076315529386e+00 +2278 -6.9211255109456031e+00 3.6146272257839822e+00 -1.4185237616141566e-01 +2254 1.7314114511773506e+00 -2.2580027827850202e+00 5.0978962034800643e+00 +2287 -3.0295148888659513e+00 5.9557832453447830e+00 1.9598903065659465e-01 +3563 -9.4199222300719088e-01 -6.9486313856785449e+00 6.1851262029030440e-01 +2262 -5.6887385474696472e+00 4.6411822309996928e+00 2.2511692972016846e+00 +2263 -4.1758285140146647e+00 -8.9421611486149566e-01 4.9310364051230753e+00 +2264 -6.0573017532316191e+00 -4.4857159652661975e+00 3.5512175589412638e+00 +2265 4.3547997745778400e+00 4.8920448683997755e+00 2.1863239702823427e+00 +2266 -3.8902694889049614e+00 3.6511113914780648e+00 1.9746708575727980e+00 +2267 4.9841932535593676e+00 7.1661663871122672e-01 -4.2157159287823269e+00 +2268 -3.2732054811656702e-01 1.2222613778941029e+00 2.6244616939524628e+00 +2269 -2.7444712846829944e+00 -4.6250555389768727e-01 4.5353159841231143e+00 +2270 1.1069915491232127e+00 2.7702391161501549e-01 -3.8101206025461050e+00 +2271 2.0757670276448072e+00 6.4827706663870757e+00 -5.7430176344095540e-01 +3486 5.2660483804188081e+00 -5.4165990338812549e+00 -2.4451399472223527e+00 +2107 -2.7517515802423267e+00 2.5538052643807378e+00 -1.7327907509550069e+00 +2189 3.6436094939970276e-01 -2.9427108968580207e+00 -4.8924384310868652e-02 +2695 -2.5957609231060270e+00 -1.6145279668498929e+00 -2.0277057322344847e+00 +2365 -1.7460637677548543e+00 -7.3817786594378410e-01 -6.1538899090462096e-01 +2569 2.2855489741614430e+00 -7.4884163478386126e-02 3.1187547373901219e+00 +2315 1.0722483095201303e+00 -8.6470790611136342e-02 6.1379370335274830e-01 +2363 3.5579125529572608e+00 3.3846993635616163e+00 2.4425633790044969e+00 +2111 2.2131543782138454e+00 -1.7822846706752893e+00 1.7454409034010659e-01 +2559 2.9279278765960384e+00 -7.9726389152595720e+00 -4.0396543255971568e-01 +2345 -1.6493899193054329e+00 6.6982663291967457e+00 4.0266183918855143e+00 +2247 3.7079589675815452e+00 3.7117536297247183e-01 1.9161735987203232e+00 +2333 -2.4734142721892188e-01 2.8455730552763786e-01 -2.6269036030057551e+00 +2317 -1.4523910749737834e+00 -1.4896894035056868e-01 4.8988695374914455e+00 +2351 -5.6018475652409752e+00 -8.4561650988840598e-01 3.9875276456247613e+00 +2093 7.3381779707465378e-01 -1.4724848913994664e+00 4.0760173523880532e+00 +2077 -7.3230270192831948e-01 7.8269668766105518e+00 -7.2502989017994790e-01 +2091 8.1777110436641176e-01 2.4189166311579839e+00 1.4148301634725600e+00 +2701 2.6636324458590244e-01 -1.5926989112103445e+00 9.9937336419725098e-01 +2125 -8.7127819894063607e-01 9.3943535533180911e-01 -4.3962375091429129e+00 +2327 -3.9094106242122539e-01 -5.5199981059303660e+00 -2.1604581401520262e+00 +2253 2.5524860159738654e+00 -1.8763331029305612e+00 -5.9570003752146476e+00 +2109 3.8584561604095717e+00 -1.8485297378667300e+00 6.2523272826947469e+00 +2359 8.2990438116719245e-01 -3.2968910203129291e+00 1.3803288586323996e+00 +2703 3.5054493352251574e+00 6.3237597995989425e+00 -1.0120404276076421e+01 +2049 -5.4405993588326895e+00 1.0689144784768116e+00 3.4084323922516000e+00 +2069 7.9204647140252415e-01 2.9120676697615608e+00 -8.6534497870837912e-01 +2063 -2.9594164467237634e+00 -2.4828073978507659e+00 -2.4251284145081095e-01 +2437 -2.5627487953959402e+00 7.5036148983830175e+00 1.1782987038931765e+00 +2507 3.2301292951852458e+00 -2.7240880667319294e+00 2.3252060042905085e+00 +3449 3.6342711639743142e+00 4.7951866310098969e+00 3.1653116850710754e+00 +2310 -3.4363360193467583e+00 -5.0407508939792822e-01 -6.9545521573233051e+00 +2955 -8.5381261676082598e+00 -4.4598973547820087e-01 -5.5733705673919252e+00 +2312 8.4748565369609419e-01 3.3474986539991645e+00 7.0415107389024048e+00 +2375 -5.8507739802514589e+00 -1.3392196542406973e+00 -2.2900322623465930e+00 +2314 3.3327009666198841e+00 -1.2709999044183731e+00 -1.0280697658235274e+00 +2316 3.8508495116623207e+00 -4.9573541293515957e+00 -2.1353645030880908e+00 +2075 1.9395559640396232e+00 -1.4511551822070529e-01 -1.9118604081545820e+00 +2318 -7.2040494716828158e+00 4.2527340653421435e+00 -1.1980915829623033e+00 +2439 2.8905726137259624e-01 1.6817934748328742e+00 2.1166191020443712e+00 +2366 -1.8786770113215079e+00 7.9788184441059662e-01 -2.1329470763804999e+00 +2309 -4.0081615460312916e+00 1.5172046286284642e+00 6.6348909394491731e+00 +2073 2.5381781001396737e+00 -3.7171617166340953e-01 -3.6099786624612800e+00 +2509 -7.9268624485322876e+00 2.6039289719723451e+00 -1.1995629880059021e-01 +2326 -2.5103770576954982e+00 2.2461040811160982e+00 5.2649940625863296e+00 +2328 1.8988916546454131e+00 3.5206640709526797e+00 2.8858066362201638e+00 +2503 3.6127018338426775e+00 5.6393130670803904e-01 -3.6522211691798314e+00 +2330 4.6369277809613427e+00 -5.6024685268291750e+00 2.1926947259669207e+00 +2511 -2.2585358010840952e+00 7.7717008557837156e-02 -1.9931769616780364e+00 +2332 3.6477625305854473e+00 -1.4390934150506940e+00 -3.9748531666301917e-01 +2095 -9.7892724854379956e-02 3.3540632225603045e-01 -2.5997276289568458e+00 +2334 -8.0041443603008744e-01 5.1886169133550764e-01 -2.7989043401102012e+00 +2992 -1.2592615086044112e+00 1.5963015987408944e+00 -1.9466171128609764e+00 +2071 -2.4928689641967225e+00 5.6338381383132141e-01 3.2780055485995585e+00 +2959 -4.8038703473602604e+00 1.4636146040177516e+00 -1.8910490485095648e+00 +2373 -9.3020797161726387e-01 -4.1668768556188347e+00 1.5748875824020350e+00 +2342 -2.1936175657210870e+00 4.1886377168512201e+00 1.6186194796353410e+00 +2079 -6.7779653605696355e+00 6.4385371710080275e+00 5.7511584395649118e+00 +2344 -2.7166646342682155e+00 9.1253478403721271e+00 -9.3920113526511440e+00 +2347 2.1614677424818982e+00 5.6037701435743745e+00 6.5147104581394553e+00 +2346 -1.7308258519929343e+00 1.9603972241511101e+00 -1.8322263619124104e+00 +2889 7.6069546506284942e+00 3.8587100834816783e+00 -2.9272732854630473e-01 +2348 -3.3520492340854382e+00 4.5870467758934268e+00 -9.3237379553814237e-01 +2538 -1.9757245821526030e+00 -2.3662728158866209e+00 -2.1350062588278447e+00 +2350 3.0075475832905978e+00 3.2172559043575588e-01 -2.3076739097600676e+00 +2352 2.3257699752674990e+00 6.2134913111177612e+00 4.4504246044185711e+00 +2381 -1.1655491773136784e+00 -1.5098597212987763e+00 2.2254516439670677e+00 +3778 -2.4019189187208414e-03 -2.5021346265591948e-01 7.2588475025252897e-01 +2087 2.0958502140471449e+00 -9.3560006102258679e+00 -1.0817602446529694e-02 +2358 9.2481937801447889e-01 -2.0217997040587550e+00 -9.0184991558072125e-01 +2537 1.9398275168126486e+00 -3.6242690057461306e+00 1.9300743258754069e+00 +2360 5.5072926518559628e-01 3.7829277736536642e+00 5.0133303959180688e+00 +2543 2.7270632158319423e+00 -6.3487118028757861e+00 3.9989611693365825e+00 +2362 -3.3898600997200801e-01 -1.5907863647577578e+00 1.2579187192646462e+00 +2335 -1.4747474659115378e+00 4.6350951825519262e+00 1.9017434791858832e+00 +2364 9.8708207545151050e-01 1.7762251982471335e+00 9.3817174343964349e-01 +2542 -3.7866446440951198e+00 6.6119422972451203e-01 1.0437296831988667e-01 +3056 1.2651995845792847e+00 -6.9124638084515215e+00 4.5172756662357250e+00 +3363 -1.9151484189600110e-01 2.3120984196314454e+00 1.0451658462680005e+00 +2497 -6.9682334255343861e+00 -1.4503591252931167e+00 7.3933082435074358e+00 +2785 2.3183622497443488e+00 3.8188792509177234e+00 -1.0272427947439586e+00 +3465 -5.6134912603684040e+00 4.1329561387693498e-01 -3.7509321276991638e+00 +3008 3.8851520040455925e+00 4.2888749850135230e+00 -1.6983246164677315e+00 +2961 -5.9034722947197649e-01 2.1065277060759651e+00 -2.1115692874212342e+00 +2577 1.3149967907748477e+00 -1.2004480768657699e+00 6.2584221257015296e+00 +2849 -4.5758716145313461e-01 -1.7039065808738585e+00 -2.6894238700703164e+00 +2641 4.7068163190097678e+00 -2.4065440163948133e+00 -1.0241876812919864e+01 +3384 2.9761203955481039e+00 1.8608134844444244e+00 6.3459739857313124e-01 +2062 9.2403730433427067e-01 1.3826657358283971e+00 1.1028984936717359e+00 +3782 5.7024915334442194e-01 -1.2282099773762747e+00 -2.3147993361002634e+00 +2208 -1.9803801355997075e+00 3.9128476988807805e+00 -8.7228986943414544e-01 +3025 7.6585995798876830e-02 6.2448486299073902e-01 8.4208294706090463e+00 +2145 8.7469873473517001e-01 3.6332611083290258e+00 4.3286448878365213e+00 +3104 -9.0043243799154893e-01 4.6017032283237951e+00 2.1730141454384522e+00 +1857 -2.6517260177591364e+00 4.9836185588340243e+00 -1.4745337430526828e+00 +2944 -5.1527912205564306e+00 -1.5617523125927770e+00 7.2606719753428139e+00 +3926 3.4783366859289351e-02 4.5779037735835164e+00 -7.0167058181494060e+00 +3602 2.0046838312532631e+00 -5.6916720148841833e+00 -7.7008917146665457e-01 +2512 -1.9289180415978882e+00 1.7233377620581480e-01 1.9593451921054574e+00 +3481 -8.6989765971467286e+00 4.2292288732654661e+00 -2.1903499200733143e+00 +2304 6.9774711378951515e-01 -1.1187257846833139e+00 -3.1699868732075345e+00 +2816 -1.0230904244200943e+01 -2.1951497548664167e+00 -5.5407858183565006e-01 +2400 -2.7497135492041447e+00 -2.7643790183257688e+00 -2.5059409225877760e-01 +2273 -1.2789000283512990e+00 -2.4024538520669347e+00 -4.7491459610908604e-01 +2737 9.1663423953695533e-01 1.5716679567278720e+00 2.6180262847113500e+00 +2817 4.1114022480749037e+00 4.2447944628412051e+00 4.0942914491346405e-01 +1809 4.8464802358637060e+00 4.3894937021569780e-01 -2.8266875961898164e+00 +1217 1.9441098831251162e-02 8.8129042305932137e-01 1.4665450994481741e-01 +2705 8.6413500447854830e-01 1.1530679871898046e+00 -2.4513086856882986e+00 +3009 7.9247426283942088e+00 2.4523608200636131e+00 -4.7492072680953505e+00 +1921 1.6219789877899462e+00 -2.3767538312666092e+00 -3.0728408592154350e+00 +2369 -6.0718163316056439e-01 3.9602111414238705e+00 -2.7908179327924425e+00 +2065 -2.5719400298190846e+00 8.2530516231013866e+00 1.1649723521927313e+00 +3667 -2.6318198990376385e-01 8.1319811994952640e-01 -8.4440601996710341e-01 +4055 1.2833295812773384e+00 1.9595076400371617e-01 5.2180870069767584e+00 +3508 1.2828815314970465e+00 -1.5043276096171412e+00 4.9561538076796818e+00 +3840 -7.7536589851700706e+00 9.2853604603936502e-01 2.6863799807886752e+00 +3213 2.6631048666325374e+00 1.8582013988217905e+00 -1.2771096021691464e-01 +3900 6.5499803157685585e+00 -2.8915403835133602e+00 3.9269904020238573e+00 +3473 5.4185412038446747e+00 1.0643552397026436e-01 8.1099090621417442e+00 +3315 -2.7147687361479269e+00 -5.4976215585034431e+00 5.4800669617541145e+00 +3118 -7.7619773310543239e-01 3.5525156323934683e+00 2.4290294857861676e+00 +3763 1.3281159236000362e+00 4.0199722373055948e+00 -1.1102607779101451e+01 +3910 -6.7047977151848115e-01 -6.3380771278427881e+00 -4.7863082210058844e-01 +3162 2.5566598026180576e+00 -1.0064849526560773e+00 2.0375069506913897e+00 +4068 -7.0727388990363049e-01 -3.5439393539970268e+00 9.7782221693219651e-01 +3863 -1.6991586078133918e+00 -1.6916142751754550e+00 -3.7742072023029971e+00 +3851 3.1495529521106591e+00 -5.3809890980077535e+00 1.1033489790143223e+00 +3259 -6.5299253200753222e+00 1.4759669837060390e+00 -2.7767164253753536e+00 +3418 2.8018906898132743e+00 2.6399074155387137e+00 5.3094806227179445e+00 +3325 7.2079976368319831e-01 -2.5051590430825392e+00 5.1543230702656508e+00 +3688 3.7605039209521989e+00 1.0768296093449778e+00 -8.5307957359854072e+00 +3689 -2.2056062073871936e+00 7.5414450559007271e+00 1.2813609437899143e+00 +3206 4.3414480380663338e+00 2.5261301584390194e+00 -1.5957169604739618e+00 +3687 -8.1472385972074512e-01 -6.5308260380317957e+00 -6.8857692914926050e-01 +3454 3.1963478797864302e+00 3.7185890258630674e+00 1.8318346305614754e+00 +3443 -2.2137350138176242e+00 9.3496895566187632e+00 -3.4547921300017634e+00 +3406 1.5941555049482210e+00 5.4880747465787145e+00 3.6235776091888265e+00 +3580 1.4147616772905678e+00 -9.7240558588081871e-01 7.6437313464927277e+00 +3846 -4.3964641648914711e+00 2.7577407614288463e+00 -2.0821096559688983e+00 +4081 -4.8008394240555735e-01 5.9711075544178165e+00 3.8269987538677062e+00 +3595 -3.7667853354135956e+00 -5.2137916933666046e+00 -1.1167187990836585e+00 +3988 -1.8750573261405903e+00 7.1960928922411882e-01 -3.8322131949395204e+00 +3181 -1.1255943970482332e+00 -8.5086995423458134e-01 -5.6816541904105895e+00 +3307 -2.3037270878078520e+00 2.4595859705976264e+00 -4.7268437330629860e+00 +3871 1.8276475522746052e+00 1.1433748163193518e+00 1.2567747164162355e+01 +3644 6.5439311593314375e+00 -5.9508813373712286e+00 -1.8107802289532224e+00 +3447 4.2919003654754313e+00 2.5062954878440413e+00 -6.8584661470940511e-01 +3409 8.0074232962904529e-02 -3.0307504727513264e+00 1.8121585631322110e+00 +3675 -2.0605014918736462e+00 1.6888531550424466e+00 -5.3777828730045982e+00 +3621 2.3710655829523581e+00 2.8532800577108506e+00 -2.9875343882631173e+00 +4095 -3.0867465367977722e+00 5.1360131045682245e+00 -6.2657570769867696e+00 +3111 -6.0269491165359925e+00 -1.9942835210536336e+00 2.8597309124962940e+00 +3853 -3.3693689015964194e+00 -1.7133099389165047e+00 -3.4854716309932460e-01 +3282 3.7423993120292942e-01 2.6197720149123711e+00 4.4358527310356594e-01 +3941 -7.4991779981188671e+00 -2.7805519351449087e-01 -6.4888555944560988e-01 +2161 1.2624902288522333e+00 8.1504566097588871e-01 -1.5076504198361025e+00 +4014 4.9387315363877669e+00 -5.9404285432461468e-01 -1.2654358811167599e+00 +3652 1.8453093900374002e+00 -4.1284785051579469e+00 3.6957476136758367e+00 +3990 1.3545783030132599e+00 1.0644928749575528e+00 8.4035513279193168e+00 +3582 3.1171193757234663e+00 -4.4786545130475763e-01 -4.5156201680061375e-01 +3330 6.5170833248480053e-01 1.6379313094061538e+00 -6.1343634443650412e+00 +3246 1.9961496708997806e+00 2.4074445942387492e+00 4.9313721666698296e-01 +3123 -9.1175459735220310e-01 5.0628843787924520e+00 4.2645302961553329e+00 +3086 3.1563701256014123e+00 1.4764034509677846e+00 -2.6880861826349617e-01 +4006 -2.4082187204227304e-01 -7.9088669238201381e-01 9.1988292193554706e+00 +3175 -4.4898996952981527e+00 -1.9508916845063042e+00 -2.9389404466366771e+00 +3529 -2.1797997127218456e+00 -2.7575608594528309e+00 -1.1663963584335642e+00 +3089 -3.5133386877937411e+00 3.1953297516906614e+00 4.5884924048448825e+00 +3944 2.5652855668026224e+00 1.2261762709261550e+00 6.1132392151595552e+00 +4096 6.7448974708447951e+00 6.0000484586080360e-01 -4.2502525061972323e+00 +3700 3.9703735216847851e+00 -2.3705745932140059e+00 2.1681978417831784e+00 +3446 -9.1737672586027275e-01 -3.7953935105345771e+00 -3.5809736099894934e-01 +3410 7.0120146578943388e-01 -4.5184053722331061e+00 4.6241930472817550e-01 +4010 1.3302396703097630e+00 -2.9786770555038871e+00 -1.8134688637648980e-01 +3440 2.2637635846496793e+00 -2.1996340792748922e-01 -1.7955511936705724e+00 +2897 -1.8824367551908627e+00 7.9310857793612710e-01 4.3167753084890634e+00 +3138 3.8386616643547447e+00 4.5871939290197981e+00 2.1747870140918355e+00 +3261 -2.9860779157548962e+00 7.4865526602793766e+00 2.1894648770920946e+00 +3654 1.0035162352296345e+00 4.1006560903164573e+00 2.5426876874667759e+00 +3882 -5.4748609574685867e+00 -4.5171587120432122e+00 -1.5047476426247706e+00 +3932 -3.3058952050722934e+00 -2.9961723667023783e+00 -2.6203997895824971e+00 +3193 -1.1165569897452134e+00 -6.9139419191416862e-01 -2.8371377431985669e+00 +2241 -4.4995595161848245e-01 9.9956414282292250e-01 -6.4291666735187114e-01 +3502 9.5659809467193158e-01 -1.9537405065156686e+00 -4.8890207370757359e+00 +3859 4.4142582963953020e-01 2.4745142185382445e+00 -1.2618205675825571e+00 +3717 3.2953543024686218e+00 3.0753129390546503e+00 3.5571910729415751e-01 +3816 -4.9335526187788897e-01 8.4794700774545664e+00 -4.8784193177421704e+00 +3705 -3.3322811965498880e+00 -2.0095388893016612e+00 4.7558207580957701e+00 +3424 -1.1987208062026222e-01 1.9489066838603311e+00 -3.2151245608014500e+00 +4013 -1.4823586990204281e+00 -5.1463839754448806e+00 3.9158309092999590e+00 +3721 3.7191321207305235e+00 5.5768034545371323e+00 -2.6470070231033644e+00 +3157 -6.3269298931073052e+00 -9.5808892759179110e-01 -1.8944244547924898e+00 +4069 5.3816000001419901e+00 -2.7757931897726245e+00 7.3576257899279587e-02 +3140 -1.4029314555073322e+00 5.3779277382239341e+00 -1.5137417649518099e+00 +4094 -7.6639682246694341e-01 6.5570715078742294e+00 1.3407926271840704e+00 +3371 -8.6212498621013245e-01 -2.1552672552505729e+00 -5.9084746058414748e+00 +4032 2.0966777693284882e+00 -2.8743458588771982e+00 6.2717268834581752e+00 +4035 -4.6655670892686079e+00 2.1408279467167513e-01 2.5039063088520801e+00 +4033 -1.6233899941116936e+00 3.9197967108438703e+00 2.0717294006991080e+00 +3342 -4.2713781364438281e+00 -3.1931757501281912e+00 -1.1105732519082072e+00 +3632 1.6313828189474837e+00 4.3452297654048655e+00 6.3695661841889519e+00 +3684 7.4333402420749994e-01 -4.4839543914444180e+00 -2.0517170118592896e+00 +3226 -2.4062197421050147e-01 6.0236374798037655e+00 -2.9368500373844530e+00 +4084 1.4919033894272749e+00 1.8487697788775830e+00 1.8971901853998085e+00 +3872 -4.5132909072576771e-01 -6.4748340908268673e+00 3.6082510591272512e+00 +3878 2.6590697243151040e+00 -4.4530305892928927e+00 -2.3520237109338042e+00 +3254 2.3911233337454636e+00 2.3203479319554741e+00 1.9477675966881343e+00 +3530 1.0807118811573568e+00 -8.7915142477856045e-01 -1.3835589819897420e+00 +3462 -1.9244148632221498e+00 4.9041852357938005e+00 9.3149723954317096e+00 +3225 4.8793768913478619e+00 4.9538014933043577e+00 -4.2122910302108423e+00 +3609 -2.2237519913658961e+00 -6.1313364469848750e+00 5.6206199678002706e+00 +3976 -1.4891598786057405e+00 -3.2305671116465717e+00 3.4271807948741300e+00 +3263 -7.8067480656455512e-01 3.7337462224518809e+00 2.0362967274741681e+00 +3746 -3.6258335852095058e+00 -3.8662147883794584e+00 -1.9202402099965332e-01 +3488 3.0614869260746045e+00 9.1682703492928030e-01 5.7743798750585889e+00 +4021 6.0170859007880684e-01 -6.9191014392343524e+00 -1.5911913104671838e+00 +2625 -2.3941839110131662e+00 5.7822624738856163e+00 -4.4232076296508698e+00 +3953 2.3448058286354878e-01 5.6075638109647556e+00 4.4897258991599829e+00 +3167 4.5218925054197967e-01 1.9765115634999437e+00 -1.2024223213386716e+00 +3428 -1.3848591873602067e+00 4.8314411315391039e+00 -4.3239930828947765e-01 +3311 -3.5574926161042408e+00 -1.1339297137437316e+00 -4.0492337881942655e+00 +3156 -2.9627371435558009e-02 3.5276103574522013e+00 2.2735223226486942e+00 +3239 -1.2727964352072165e+00 -4.1507256144542870e+00 -6.0733006883822760e-01 +3135 2.9305921185121577e+00 1.9670556977818341e+00 -1.1457916825359993e+00 +3396 -4.1317233736288106e+00 1.9416270401731219e+00 -3.6340518088473708e+00 +3349 1.8572505910527597e+00 1.5795411413953905e-01 -4.5962913598095776e+00 +3995 1.3832636802953837e+00 2.5080596851622348e+00 -6.4704584679288164e+00 +2753 9.2234345806156123e-02 1.9061489486293395e-01 -1.0850630582850045e-01 +3469 5.8371741927947971e+00 6.0540625907740075e+00 5.2316509578596113e+00 +3452 7.5089639104026995e-01 4.3416648239584843e-01 1.6293094318233152e+00 +3196 1.1971736410249159e+00 -6.8542049341486235e+00 -3.7807997387385002e+00 +4049 3.4419946671435668e+00 -2.2586550254232032e+00 -2.0650376332004621e+00 +3991 -7.3871063832524309e-01 -3.3467530058219612e+00 -4.9031464148470638e+00 +3769 4.9556138753032819e+00 5.1310187303931132e+00 -1.1469374684563598e+00 +3423 -5.1657112048936646e+00 2.4287322694388354e+00 1.3312934146113073e+00 +3777 -1.0601963375853840e+00 1.6563891792706562e+00 -5.1512204762111011e+00 +3383 -6.4851897958328033e+00 -2.5985936233576470e+00 5.5602379401132405e+00 +3273 5.2550067267973928e+00 -7.7255578605197712e+00 -1.4460058587426203e+00 +3608 7.6530348715023078e-01 3.0786078961848675e+00 2.2779495130517491e+00 +3754 2.0853337720802672e+00 2.4732284527334221e+00 5.8707594996096868e-01 +3934 9.8567627762770738e-01 -2.2655666062554811e+00 6.9135089007896666e-01 +3222 2.5570828715152669e+00 -1.5060006177402983e+00 -2.1725091738689200e+00 +3693 -7.0056491604103099e+00 4.4077599481105775e-02 2.2091441967141390e+00 +3279 5.3331799780650373e+00 -9.7198804600226152e-01 1.9757551568689331e+00 +3720 -7.3865546643003341e+00 4.0201119385103867e+00 4.2395139302664936e-01 +3270 -1.1096371643212251e+00 -2.0857685882470727e+00 3.7237767434091178e+00 +3913 -2.2862241380984183e+00 9.3678542396995323e-01 -3.2217175025733371e+00 +2432 1.9313586244962794e-01 5.1556505073463814e+00 3.0548015486822448e+00 +3977 3.1713531628669425e+00 -5.2282185177991600e+00 3.6410246693668091e-01 +4028 -4.6490652398416739e+00 -6.8963643866919355e-01 1.9192456957035948e+00 +3710 -6.0261282265402185e+00 2.5745089973481488e+00 1.1412608680524499e+00 +3996 -1.9997806811033876e+00 3.7997892272441658e+00 -2.5218151146375138e+00 +3694 -1.3576975898247854e+00 -6.8457058730113907e-01 -1.0716869175341468e+00 +3485 -7.8858006235362970e+00 2.6238008854248474e+00 -2.6928933239785939e+00 +3576 3.0551283568085146e+00 -1.2564681076186988e+00 2.6016098577952143e+00 +3757 -3.3193368331656488e-02 5.3806825535246077e+00 -4.1768789539641968e+00 +3074 6.1396868196865095e-01 2.4588935666185174e-01 2.4292988940084235e+00 +3403 -7.7601779264335535e-01 -4.1351762659408946e+00 3.9984456934668522e+00 +3999 5.2669052813447417e+00 2.2118320934948250e+00 4.3136065389691343e+00 +3860 3.6203040680632994e+00 3.4106917860693509e+00 3.6193453349354185e+00 +2833 1.3559285124791798e+00 -1.5326070872818238e+00 1.5054769294606956e+00 +3739 -5.3718542359289803e+00 -4.2037899957644942e-01 2.0744514139653947e+00 +3223 8.8033428978281467e+00 -3.5553833842289855e+00 8.5619573416422163e+00 +3267 -1.0661166441278300e+00 3.3467208243720572e+00 -1.6902070570861119e+00 +3756 -3.6853560897179021e+00 -1.4934524626749396e-01 2.1263669403374696e+00 +3558 9.1566159303430272e-01 4.3043053122405182e+00 2.7570180818154317e+00 +3729 -1.0097889211912294e+00 -6.9381824010294713e-01 -3.1814479905067392e+00 +4091 -3.1031791283185663e+00 -1.2111107699105337e+00 1.5174625301167564e+00 +3785 2.3991288147133925e+00 5.5502013613885799e+00 4.3674663589579810e+00 +4052 -3.8094327874508820e+00 -6.3601113603806505e+00 4.6173377452455764e+00 +3738 -3.7729577190826489e+00 7.2154645162759024e-01 -1.0582212409370206e+00 +4047 1.7607216668042565e+00 -2.3767551945366963e+00 2.7105870716339249e+00 +4074 3.5272568074839246e+00 9.1625001878506451e-01 3.9787920423358045e+00 +3201 4.3601618195053007e+00 -2.1243136000564333e-01 7.8365028002050376e+00 +3873 -1.2275621427556842e+00 5.5047438777280344e-01 -3.2133346619367127e+00 +3512 1.4889062887984335e+00 -5.0323891797434817e+00 -1.2490240913470116e+00 +3523 1.7883684051058062e+00 -1.9419692823533723e+00 1.1278129042833489e+00 +4088 2.4179321996608523e+00 5.1806412566804578e+00 4.0968661240882422e+00 +3538 -8.2350252605174976e+00 -2.2376789597824236e+00 4.4276478339925127e+00 +3427 2.7960133297093659e+00 -5.6443500630205512e-01 2.6959020093611139e+00 +4001 2.2754763173654959e+00 8.1757854130566532e+00 3.2963081669959053e+00 +2320 -5.8763421499000801e-01 6.7310493178071640e-01 9.5567232121304233e-02 +3837 -1.8298663425538551e+00 -1.7126514497508589e+00 -8.9743163482090846e+00 +3800 -1.5675000028706348e-01 -5.9206019671173254e-02 -1.1534741824630812e+00 +3442 3.5299608180347626e+00 -1.6247335547102997e+00 -2.3360525164059469e+00 +3256 5.7888508828626284e+00 2.5268776257643633e+00 5.3334375888622914e+00 +3221 4.3647671748342693e+00 5.6281049369089882e+00 -4.1197574420051044e+00 +4023 1.9697607371771901e+00 -4.5132603297978608e+00 -5.1820821122405851e+00 +3456 3.2306269258120252e-01 4.3081752408305842e+00 -4.4580171913020035e+00 +2433 3.5678017903218202e+00 4.4958041553346293e+00 -6.0214300741101088e+00 +3356 2.4363634470688083e+00 1.2301390873336333e+00 4.0752710424416518e+00 +3584 -5.0866329591324062e+00 5.3871005202259568e+00 1.8295077142545018e+00 +3613 -1.2260929256227611e+00 3.6221973039528788e+00 4.1568206324662738e+00 +3875 -3.0852180568926144e+00 -7.0382731111249686e-01 -3.3683688236536518e+00 +3499 2.8568861574625930e+00 -1.6343807349565427e+00 -4.8762290322981734e+00 +3382 1.2271727674594194e+01 5.4383996183958319e+00 2.1637823096982875e-01 +3593 9.5330557496856383e-01 4.0071546961310413e-02 3.0946699203507375e+00 +3461 -9.7661826614713532e-01 -2.7124886343004619e+00 -3.8130372722956922e+00 +3989 -3.1808726490986658e+00 4.6593542568581698e+00 -2.4105346327693136e-01 +3735 -4.4714979991938639e+00 3.1387745805963876e+00 -5.3285029924001712e+00 +3827 -1.5826249141874901e-01 -1.7237424791871536e+00 -7.1507160820065190e+00 +3109 1.4822918365982498e+00 1.5504084193821210e+00 3.3347770547879705e+00 +3144 -7.5214742560962078e+00 -1.4337771633655960e-01 -3.6237650852479160e+00 +3834 -7.3814508179226639e+00 -2.4432960314286492e+00 5.5041127389535625e+00 +3541 -9.3983969302672998e-01 2.6829575282594154e+00 -8.0943789292732193e-01 +3174 -1.1953543376906155e+00 3.0459960819271328e+00 2.4474559419350226e+00 +3648 2.8426679511801196e+00 1.6806159426589504e+00 3.0793579398509188e+00 +3880 6.8026081892472823e-01 -1.2131338385213368e+00 5.5674044527425093e-01 +3590 1.5936217459618616e+00 -5.0528313683491586e+00 5.9302572431169622e+00 +3096 -2.6515475901792844e+00 -5.2773845865563285e+00 3.0130821787832969e+00 +3300 1.7523847560508625e+00 -3.7489180852407227e+00 1.2138374233293737e-01 +3972 1.2187745448747547e+00 -6.0915021883059373e-01 -1.7480879408859356e+00 +3126 7.1026755639955104e+00 -1.8088150640778328e-01 7.9662641220055552e-01 +890 1.0570273117260887e+00 -6.8085779493747793e+00 2.0616459239261089e+00 +3577 -9.5324453684815758e-01 -4.5893204522628377e+00 4.4827823335094266e+00 +3227 8.5999410959276068e-01 3.0688581680633975e+00 1.4042832380898416e+00 +3319 -1.2448833546425500e+00 3.7686112772447411e-01 -9.7420241162952348e-01 +4038 1.7901861660164435e+00 4.3631412862710556e-01 9.4387867851547036e-01 +3334 6.9033070105586418e+00 -5.6027432851980563e-01 5.9949605113930753e+00 +3945 -1.0236971540235840e+00 -2.8097603758972256e+00 -2.0596824219093999e+00 +3079 -5.8174003178092928e+00 -6.0293493211942661e-01 2.9787567018382832e+00 +3855 7.8192107900366876e+00 -2.3909678805919596e+00 1.0252893985677585e+00 +3933 -5.9928980654918673e+00 -4.0940254528490199e+00 -1.4067124226345923e-01 +3724 -9.5621026913448974e-03 2.8347347641239633e+00 -5.3144737249724894e-01 +3390 -1.5589454551166733e-02 -3.4012123155763048e+00 -3.2861669733946726e+00 +3641 4.4951533922405601e-01 4.4843993735688610e+00 1.2687501997898953e+00 +3472 2.6203243799747611e+00 4.6196024021498792e+00 5.5347795590535576e-01 +3631 -4.8750285034269698e+00 -2.8462284245116803e-01 -1.2276804270439592e+00 +3987 -3.7989801487869355e+00 4.1717604682209419e+00 -8.9396104125473086e-01 +4086 2.6989424240838283e-01 -1.7024309525906696e+00 1.8698985308858878e+00 +3100 2.6286953121201089e+00 4.2502780196458954e+00 4.5938011400750600e+00 +3292 -1.5924954228540695e+00 -2.7918603468845755e+00 1.6579813989132441e+00 +3420 1.6542688319715544e+00 -2.0772735137442604e+00 -3.9314516289153527e+00 +4073 9.7262147919426678e-01 -9.9819026459618432e-01 -2.0593762641041859e+00 +3450 1.4778084541650007e+00 -6.9216942986379301e-02 3.6354589926886671e-01 +3884 6.5687781078372280e+00 2.7651123155320407e+00 3.3732016665927983e-01 +3666 -2.4150185532926289e+00 5.1755863727845082e-02 -6.7423768271883433e-01 +3818 5.5515902277896583e+00 -3.3918903157545741e+00 5.2950409016029107e+00 +3082 7.1150464919795215e+00 -7.3176391020704887e+00 -1.6407134373759533e+00 +3537 -3.0995351539578420e+00 3.8441100915661178e-02 -1.6059996896077449e+00 +3116 3.7997023589211745e+00 -3.4840073805301128e+00 3.1473440646108140e+00 +3617 1.1734239856733850e+00 -1.5110749627259938e+00 -5.9375971227768494e+00 +3567 2.9287394908252056e+00 1.1006052132442410e+00 -4.0275079194425016e+00 +3127 4.7943372581206078e-01 2.7927834951465966e+00 2.4845894810673938e-01 +3578 1.4011133015463562e-01 -3.3543725369351622e+00 -1.0160876458916761e+01 +3257 -2.0368298850927675e+00 1.8278268459914173e+00 7.1621135938366975e-01 +2945 3.5796307951993374e+00 -1.6034854436593866e+00 -4.1038273141083357e+00 +3980 -6.3308454937050556e+00 -5.6352492044193359e-01 5.5151225357455198e+00 +3179 1.9695750355613553e+00 -4.2311055575114915e+00 2.1163952761085860e+00 +3828 -3.0147034859030208e+00 -6.0451528229342988e-01 7.1759972119457709e+00 +3856 -7.8320508021653590e-01 4.9243793534593951e+00 2.3555831403232870e+00 +3155 2.4139725375102428e+00 -2.4895370874621037e+00 -3.3900918865708096e-01 +2881 -1.1824898247206146e+00 -1.7106341573595414e+00 4.3152360154361824e-01 +3441 -8.0417996023280522e-02 -3.7270199164809235e+00 4.9220283513377678e+00 +3706 -6.7375476822079783e-01 4.4635892770063856e+00 7.4642816257614664e+00 +3902 1.5798017015434702e+00 -6.6304762627458347e+00 -1.2411724541001361e+00 +3438 -3.2453616467809376e+00 -4.4301121723472399e+00 -1.2133245592077357e+00 +3758 -2.0729522504431341e+00 -2.6545132816228985e+00 7.8727487210504057e-03 +3378 -5.6954566349393403e+00 -1.1807470830948199e+00 -2.5077877623420535e+00 +3618 4.6133073072296691e+00 -9.4533369383450616e-01 -6.7300951871495029e-01 +3476 -5.4587215659976218e-01 -9.5256084464794255e-01 3.1383884682107981e+00 +3399 1.0709830162357172e+00 -2.1799180999804291e+00 2.0838870252648531e+00 +3381 1.3201582843183022e+00 -3.8176001999232922e-01 1.8060283610672154e-01 +3659 3.5411994604393038e+00 5.3942745784425492e+00 2.3013865409235064e+00 +3434 3.9722340653628754e+00 3.0140753332506431e+00 2.3211739977524961e+00 +3416 -3.3362321202307830e+00 8.5799115862847206e-02 -6.7694501413354424e-01 +3304 -3.4570797455587656e+00 -1.4830555744770688e+00 1.2098135145673277e+00 +4029 -1.9322512121785060e+00 -3.2215301332603747e+00 9.5987082621859121e-01 +2640 -3.2933675408907379e+00 -6.8752278422315838e+00 -2.2629507728461231e+00 +4044 4.1419282161316323e-01 -1.6414145872584981e-02 -1.4035884120025517e+00 +3404 2.0320536051164684e+00 3.2344137177982830e+00 7.4103367236773030e+00 +3773 1.1435577753862136e+00 -1.0367668220633226e+00 1.6508617820017328e+00 +3543 4.5947325241528203e+00 3.2578364348807787e+00 -2.9030906667348653e+00 +3553 3.5530011285020460e+00 1.2149373667796870e+00 3.5048882349536270e-01 +3845 3.3849125705008274e+00 -2.1158258643894725e+00 -1.6136049863654651e+00 +3919 -3.0345285739335046e+00 2.6319478626983628e+00 -1.4178671038226252e+00 +3901 -1.2807335521378620e+00 2.8781313910523281e+00 2.1431484650907051e+00 +3112 -8.8316322627498922e-01 3.3669040362033180e+00 -2.5583920998027803e+00 +3289 9.6088033031247833e-01 -1.0663298437105941e+00 -2.2403657703684332e+00 +3559 1.1567325830612645e+00 -9.0800588251799308e+00 1.7467097315822531e+00 +3517 -6.8376913277460440e+00 4.8688252793609538e-01 -2.5761692964168361e+00 +3277 -4.7777042600528070e-02 -9.5290722145207916e+00 3.6689298311056068e-01 +3212 -7.0254786006575498e-01 2.7680003256606439e-01 1.6431817385604550e-01 +3137 -2.5161868989745195e+00 -1.3311972669955754e+00 1.7648051399627172e+00 +3369 -2.7741688674474392e+00 -4.6877049206349390e+00 1.2903280986643262e+00 +3087 -8.3978253736929687e-01 -2.8804138959796357e+00 2.7163142951462729e+00 +3824 -7.4425966947648858e-01 1.5616321114911230e-01 2.8589972992528163e+00 +3545 5.4448346173328419e+00 7.4220360501396847e+00 -8.8459204528875968e-01 +3245 1.2792094212295697e+00 4.2888890852996493e+00 5.8458492422229424e+00 +3531 4.2196392264314770e+00 1.6274099853117514e+00 1.7165919499546864e+00 +4009 -6.7902066062305035e+00 4.4512428386821581e+00 9.9854180041841822e-01 +3445 1.0212603620910039e+00 -1.1545061448952241e+00 -2.0485376776902768e+00 +3734 4.6965011681112676e+00 -2.5436318377168297e+00 3.1517559890615097e+00 +3920 -5.3490448906750983e+00 -3.0985404372620234e-01 -3.8839771429787500e+00 +3136 2.7799209861399747e+00 4.3637708545155167e+00 2.7443582787564003e+00 +3498 -3.5556214017049359e+00 3.9077872653676424e+00 -9.0529069453271145e+00 +3857 -1.5666435939858230e+00 4.3619809655326387e+00 4.9826449046957144e+00 +3266 2.0069008895380742e+00 2.2763590015112496e+00 -1.0082998807338184e+00 +3895 5.5026326749782974e+00 -2.1679787947196347e+00 -1.2328497711257944e+00 +3269 -4.1127870710651465e-01 -1.9610775527215618e+00 -5.7184945998630905e+00 +3839 3.7553893543643752e-01 -4.5868587248007398e+00 2.1182737205320912e+00 +3892 1.2756409112720137e+00 -1.0087340112806293e+00 -5.8109160610103521e+00 +3215 -4.9808420423573612e+00 9.3683485984010706e-01 -4.3860548871257956e+00 +4039 -5.9116607666576106e+00 -2.3788371308697589e+00 2.3114018366690305e+00 +3493 2.3624529916654797e+00 3.0880972554770265e+00 -2.6069794423079444e+00 +3550 5.1449652309588034e-01 -1.6134797927030287e+00 -6.2810250889855812e+00 +3373 4.3488346658623245e+00 3.1744671626940733e+00 -5.9121242432402346e+00 +3646 6.1648821846807564e+00 3.5528331283342003e+00 3.6257812027359826e+00 +3514 9.9497848501062303e-01 -1.0997128117132404e+00 6.5846400002153235e-02 +3664 -2.5210326003289119e+00 1.3653598038087689e+00 -4.4307326543875174e+00 +3527 -5.4641327724325635e+00 -4.5509582922382155e+00 6.7450279700207831e+00 +3114 -5.7888708540089464e+00 6.4960057055983205e+00 2.1339465957210418e-01 +3898 4.1346481856931714e+00 2.4259544268186524e+00 -7.4567283035129437e+00 +4016 -8.7267005800262043e-01 5.5774156745943930e+00 7.8390256749965559e+00 +3865 -6.9099421006910444e-01 -1.3243150486504986e+00 1.3215446956734298e+00 +3203 1.7796461843537446e+00 5.3458459414488244e+00 -3.5757694271206413e+00 +912 -9.5478612283900706e+00 -1.5212844311520271e+00 3.1325647579618943e-01 +3143 6.3048584818985942e+00 -2.9115222391647442e+00 -3.9536944320534722e+00 +3870 -5.8808548958779374e+00 2.9933516422544177e+00 -5.5875205683294240e+00 +3877 -3.9335003789020413e+00 9.5362001475838365e-01 -5.9720543907022732e+00 +4061 6.2731433792898965e+00 -7.6847719837083406e-01 8.8600548877937211e+00 +3808 1.8796275301577992e+00 -3.9141982859728905e+00 -4.7231050327157913e+00 +3794 -4.3271591285093978e+00 1.6976165056902539e+00 5.5132712489139646e+00 +3810 -1.2468653987660987e+00 1.9187682392571914e+00 -3.4980034895625161e+00 +561 -1.8798765002118492e+00 -2.6469199019196541e+00 -2.7206994715488757e+00 +3148 3.8468009671984782e+00 -5.3370759699341508e-01 5.8359207331143743e+00 +3494 3.3783638746043581e+00 1.2038155777553585e+00 3.5646670911320277e+00 +3297 -2.7198336601358453e-01 -4.5066991324125644e-01 -4.0041601012884263e+00 +3299 -2.5857286692716692e+00 -2.8500074087635374e+00 3.6954172470742913e-01 +3362 -9.3316960959872275e-01 -3.8143903570130364e+00 -4.0566658483112104e+00 +4011 1.9014753233362898e+00 3.6975691611674577e-02 6.6645263998813387e-01 +3551 -3.3856774777809591e+00 -2.3559004445109628e+00 -1.1571458341645227e+00 +3468 -1.0679396737559792e+00 1.6332536665786947e-03 -3.6385422631527811e+00 +3622 5.1993669663470177e-01 -1.3934294737485924e+00 -1.1017575563627651e+00 +4041 -6.3740581182205682e+00 4.3692304406877760e+00 -1.4379773228427170e-01 +995 -1.3104877043902539e+00 2.3367351629782904e+00 -5.6073760224997242e+00 +2447 -3.7101734065530936e+00 1.1903962276247815e+00 -3.5694942138031367e+00 +3931 1.6990171353089130e+00 -1.6890550574400671e+00 6.7292792377384081e-01 +3131 -1.8403775303960530e+00 -3.4977927814907348e+00 3.8848559619261769e+00 +3733 1.7163672823319585e+00 -6.8200358219125725e+00 -8.7474220378443199e+00 +4050 9.3409934891656343e-01 -2.9382305199007432e+00 -1.6795619346125796e+00 +4020 -6.2235132098176837e-01 -5.0683068220206682e+00 8.5883299876914676e-01 +4054 -5.9590271743965406e+00 3.6364770740721850e+00 -8.2590589917209769e+00 +859 -4.1559992740429857e-01 2.2455897588318257e+00 -2.3463177244074360e-01 +716 3.9662142630330726e+00 1.7996391714130795e+00 7.3261138288118612e+00 +2800 -1.6010143471278915e-01 3.3971241728241307e-02 -3.4893368758952232e+00 +495 -3.0071160990781736e+00 4.7491081361560967e+00 -5.2636979084252298e+00 +3677 3.2899789648995115e-01 7.3590432721962751e+00 2.4969921384741940e+00 +3525 -3.8433717144510027e+00 -2.4673027620007830e+00 4.2031984632274000e+00 +497 2.8423884393189551e+00 -1.0338403566272389e+01 1.4075293234270398e+00 +3171 -1.8120961078318398e+00 -3.8341905791200577e+00 -9.1368545281061059e-02 +3711 3.3573411342694826e+00 1.3850802516715237e+00 2.5159862093658241e+00 +3401 3.3290707776389663e+00 2.1789991772389024e+00 3.5414345878928204e+00 +3764 1.3409208579083534e+00 -2.6334228176806387e+00 1.8009532193840652e+00 +3305 1.6110404939982816e+00 -2.2842943257813500e-01 -2.1192285289161088e+00 +3716 -4.0678214229651726e+00 -1.7977207195309073e+00 -6.7407227310017204e+00 +3313 -3.9816566619272984e+00 -4.4135228554267336e-01 -4.6620819693771338e+00 +3205 1.2214961228885248e+00 -4.7522601018285497e+00 2.2848681644016304e+00 +3670 2.9631536883471141e+00 5.7656313480189771e+00 -7.3660879919192412e-01 +3604 1.2794238270524287e+00 5.2309062312932140e+00 5.6081179499741793e+00 +3699 -4.9205072955154954e+00 -4.8110620738147816e+00 2.7119253129244454e+00 +3674 2.7120862136730657e+00 2.4903463536658707e-01 -2.1037809729943522e+00 +3177 -1.6337758573419023e+00 2.3453284662576740e-01 1.6286346696397449e+00 +3309 -3.2711830544322815e+00 -5.5316268163860671e-01 -4.5736921262847012e+00 +3107 6.4588848337765539e+00 6.4969538633284571e-02 -2.6479995668580196e+00 +3795 -3.6741054751578872e+00 -5.5412320568226658e-01 3.8166952308037788e-01 +377 2.3720424806774889e+00 5.4332012512418517e+00 -4.8444050784447690e+00 +4070 2.5814760575513485e+00 -2.3168228521126539e+00 3.3101488242582806e+00 +4027 -4.1989858179293309e+00 1.2605779853188990e+00 3.8096972203785269e+00 +3723 1.6777186251066687e+00 -2.7671713079832037e+00 2.6315637883122345e-01 +3676 1.5493116037432892e+00 -3.6703567383491289e+00 2.6232114672041460e+00 +3736 1.3720731505486741e+00 1.3253207618503033e+00 3.6732146489803617e+00 +860 -1.8584291815204457e+00 -7.3241629054627531e+00 4.3463878605378470e-01 +3350 7.0227938723218508e-01 4.1936007382427204e-01 -1.2946905815136500e+00 +3290 -1.2766223544017907e+00 -5.5551186690379604e+00 -5.0123107954586710e-01 +3125 -4.0720149546661633e+00 4.5268704430794040e+00 6.8763259045063951e-01 +3232 -2.4733761913757895e+00 -1.8380273616005414e+00 -2.0976834281188936e+00 +3120 -2.3227119618150214e+00 3.0236730653236914e+00 3.9414578083961778e+00 +3211 6.1970716684774887e+00 -4.2955218581099315e+00 5.5585983963057704e+00 +3471 2.2420510758137890e+00 -3.9823911392756943e+00 -2.2581128531634392e-02 +3624 1.7128797436921972e+00 -1.5792343223324914e+00 4.0407564855593687e+00 +3923 -3.8909515867045879e+00 8.2498737571401204e-01 -1.7825928732882419e+00 +3623 3.0533612407633326e+00 6.9613927509651710e+00 -3.3330153862730572e+00 +3202 -5.6560515206098527e+00 -4.2466917673920834e+00 -2.5336454634392536e+00 +3522 -1.9135616015222172e-02 -1.3953793218878419e+00 2.3992904473863397e+00 +3153 -2.3387413084399120e+00 -2.0388048234669598e+00 -4.3150532164627720e+00 +3848 -7.2820217315973268e-01 2.7419957167762854e-01 -2.7595922608180752e+00 +3335 5.1008803060382473e+00 -1.6440769168192035e+00 2.6120870217578074e+00 +3718 -7.4426644231544192e-01 3.2193622648094675e+00 2.7722493158853374e+00 +3625 -2.3945972860263818e+00 -3.8601788115295115e+00 -3.3710692280246706e+00 +4005 -6.0202782475552290e+00 3.4016123443731161e-01 -4.3054015386688121e-01 +3505 -6.7450072871507754e+00 2.9740545644607566e+00 4.1081596439762933e+00 +3489 -2.1229450179584251e+00 -6.2221770785659136e-01 2.5055904514507166e+00 +3974 -6.3244849080480012e+00 -2.4358922561994101e+00 2.9554251304918955e+00 +3765 3.8225509273298570e+00 8.6610954017902202e+00 3.2593633689524197e+00 +3466 -3.1757022424211194e+00 -4.1244663147254901e+00 -6.0148368932153788e+00 +3918 -4.5023639359418594e-01 3.2087037638843867e+00 -1.5301757198624220e+00 +3173 1.0359671857600434e+00 -6.5380199542486750e+00 1.1359615236266533e-01 +3630 -1.1359815300759946e+00 -4.0108763804970717e+00 -6.1996002037702906e+00 +3407 -4.6132210927810702e-01 -4.7526146696231546e+00 9.2397993503755538e-01 +3955 -2.5749990741982711e+00 3.2713026162169290e+00 -1.5536932879198266e+00 +3653 1.1697510955609316e+00 7.5771768830077129e+00 -4.6049988679881126e+00 +996 3.3196774370809274e+00 -9.0065879218562817e-01 4.7452743339025565e+00 +3658 3.7323618554508098e+00 6.3411243503619668e+00 -8.4348475892193675e-01 +3295 1.4766096343535751e+00 -3.7658153365866105e+00 2.8848238979992518e+00 +4043 -1.6107823614990091e+00 -8.3233638694182543e-01 -9.7475427829806538e-01 +3645 -3.4396776639485314e+00 -5.2209450754053819e+00 7.6285737267468012e-01 +3316 -6.1325488072910916e-01 5.1644092270235187e-01 -1.8346473906388705e+00 +3849 1.0432953569240278e+00 -4.6161630707892837e-02 3.7732345426852487e+00 +3075 1.2010237923121745e+00 -5.8581658288783833e+00 2.8038260010261689e+00 +3943 -3.9586540363930678e+00 -6.1443318530484374e+00 1.0352425748522569e+01 +3957 -4.1689061601169386e-01 5.6179877035582253e+00 -1.0437249554298147e+00 +3491 -2.0843294897712550e+00 1.3456849191874296e+00 8.9694075950019503e-01 +3586 4.6975304366649157e-01 1.6478885320769605e+00 -5.7803344117199174e-02 +3642 4.2080243918317937e+00 3.1910947468486222e+00 -3.1803563195387854e+00 +3951 -1.5802365956662405e+00 -1.4809806081368160e+00 6.7124603557201334e-01 +3619 6.7502878690176162e+00 1.2390084284477945e+00 5.2316001163284975e-01 +3164 -3.0384551674209255e+00 1.5274680939579226e+00 3.8423698394578856e+00 +3425 1.1593384552687273e-01 8.2735682969528028e+00 2.8658599621907759e+00 +164 -6.1475109972763189e+00 -1.9717780300530467e+00 -1.0764639923158936e+00 +3392 1.7467224487203097e+00 -6.4638234430970822e+00 2.9286402374927913e+00 +3825 -4.4847775726415238e+00 -2.0551805109425141e+00 3.4231411767429509e-01 +414 -9.3314803399527557e-01 -2.7132811250760440e+00 -6.6081065748012353e+00 +3959 1.8792807733073091e+00 -4.1682952635197710e+00 -6.8711467810774343e+00 +3612 1.0874772064674572e+00 -9.6360052759600667e-01 -1.3665504636520605e+00 +3389 -1.9121036985555186e+00 -2.5805594539497374e+00 9.6119714388810909e-02 +3570 2.3187621350853913e+00 4.2627862414406668e+00 -3.3973818959244495e+00 +3938 -4.7110982035479548e-01 -1.1168900112174991e+00 -5.1136335332236431e+00 +3113 -5.5392341316738991e-01 3.1493353086053673e+00 -2.0020517242218245e+00 +3095 -6.7168739666240747e+00 1.3666377518131029e-01 -2.0503507750638996e+00 +3218 -1.5186480022618118e+00 2.9273172011431314e-01 -5.2853234792636627e-01 +3076 4.5147106545513627e-01 -1.1858909956683332e+00 -7.2295394358021996e+00 +3429 4.0798976889341310e+00 -2.2221768697215141e+00 4.1065167973851553e+00 +3327 5.9769440647297030e+00 -4.9175556140101424e+00 -1.5118258022950581e+00 +3750 -3.3545999562646323e+00 4.6115318681132891e+00 2.9156695735031399e+00 +3176 9.5329553616566027e+00 1.2607798849113041e+00 -5.8593548269125506e+00 +3097 -3.3367393004582886e+00 -2.1865840370686648e-01 -3.1008495187452647e+00 +3195 -4.4561532294005364e+00 -3.6745330257748413e-02 5.9772065524288260e+00 +3293 -1.4598731688675288e+00 -2.6817258061000078e+00 5.1926072229530877e+00 +3854 -5.2688532287271519e+00 2.0985129433816496e+00 -2.3605995463729172e+00 +3760 6.2951560578324832e+00 1.4057237407440475e+00 2.3061656448590613e+00 +3992 2.9370290456628476e+00 -1.3656967943325127e-01 6.3107892618166685e+00 +3231 6.3979466897179025e+00 8.6801897955352547e-01 -1.1057826979639986e+00 +3668 2.7582926829097980e+00 -9.6193148819588217e+00 3.6980892726517132e+00 +3121 -1.6029391062429428e+00 1.6898553986588377e-01 1.7171907315539561e+00 +3564 -3.5552769604728867e+00 2.4353506951588679e+00 2.3342638056159046e+00 +3964 5.5893128728042534e+00 2.5768413188622552e+00 4.1976871446606401e+00 +3971 1.0892427607612509e+00 -9.9127979883782857e-01 1.2170212776050575e+00 +3374 -4.2732060101398694e+00 -7.7159235378015867e-01 2.6621036842996606e+00 +4079 -1.9231342435334953e+00 2.8824741141242209e+00 6.9775177725739090e-01 +4031 3.2293942875275667e+00 -5.9246804913420581e+00 -6.1207416965470096e-01 +3914 -1.1389148374531370e+00 -8.3939679681508057e+00 -9.9657233632702780e-01 +4066 -1.7436591287570031e+00 6.4965010564154548e-03 3.2563350323564739e+00 +3146 2.2686845715316601e+00 -1.5308414401198172e+00 5.8087131360864461e+00 +3230 8.2716544228073268e+00 -6.8778445754264217e+00 -7.6042122818180879e-01 +3696 -2.2152588185805482e+00 5.7373245139411222e-01 -3.0520355527722294e+00 +373 1.8911115859070753e+00 4.3749134840108752e+00 -1.9620889500861431e+00 +3770 -2.8822340669310714e-01 -1.5902234703693563e+00 8.5166128019564802e-02 +3547 1.5087773464412699e+00 -2.2721213818383770e-01 -2.1991695667967268e+00 +3589 -1.6661958112810653e+00 -4.3898699727949566e+00 1.7062936896280863e+00 +3927 4.7283131828917355e+00 -2.6001609602242186e+00 -5.1272509615943935e+00 +3240 1.0402315070782830e+00 -2.9225407884820034e+00 3.4479406738341996e+00 +3546 -1.6072793228229416e+00 5.3453765503404904e+00 -3.1138330024924742e-02 +3801 3.9378494667715341e-01 -2.6580114463304625e+00 2.9257124354495817e-01 +4080 4.9471604810377290e+00 -2.1792808410801361e+00 -8.9330435560950345e+00 +3192 6.3796816943064352e+00 -1.4080799888808624e+00 -6.0324539253702749e+00 +3732 -1.2082244041154564e+00 -2.1688053424859004e+00 -3.4449532264714025e+00 +3748 -1.3885868577564524e+00 -6.9596077650112542e-01 8.9160123236261890e-01 +3909 4.6912794812717324e+00 -7.9515636216227725e-01 4.2949026672710495e+00 +3821 -1.2421306208200689e+00 -4.2393969439399060e+00 -1.8938468229633312e+00 +3588 6.9630513573751518e-01 -5.0295582930812035e+00 1.7259567792669253e+00 +3253 1.3632192537127761e+00 -3.0799245575523682e-01 6.8378687546854238e+00 +3712 -4.1898392164645575e+00 -1.0272466454162683e+00 -1.2334040454582447e+00 +3352 1.9694417969396345e+00 -1.1960379898320021e-01 5.9076778234501015e-01 +3656 1.0158240590265530e+00 1.0977299008147703e+00 4.3778452801703571e-01 +3271 -2.2432805420555861e+00 4.3062213306535702e-01 5.5280545267251178e+00 +3727 -2.9339666747553768e+00 5.1704548851790921e-01 2.2346839941961290e+00 +3090 -5.6041625090412150e+00 -2.0098367467576108e+00 -5.7391692445648657e+00 +3906 3.2295377703664445e+00 -2.2211886208346967e+00 6.0345797550330915e-01 +854 1.0999368780761154e+00 2.8190088937789568e+00 -4.5427932325620253e+00 +3864 -1.9209907590507207e+00 2.4828469405048872e+00 -7.0468772776063365e-02 +3963 3.8090853668710332e+00 -7.1475940154665007e+00 4.4578904729587698e+00 +3678 -1.0075218580411656e+00 -1.1723810414475693e+00 -3.6566037918292715e+00 +3190 5.3535971192027165e-01 -6.4557124978354015e+00 -2.7408804664015607e+00 +3690 -4.4146086051404937e-01 -4.6076138378286453e+00 -5.6825659088186455e+00 +3343 3.8383076371816855e+00 -6.3883955466794429e-01 2.2581329205865392e+00 +3832 -2.7550747744751076e+00 4.7257627293294373e+00 4.8438289904304606e+00 +3260 1.3252162896516819e+00 7.4021489683298358e-01 2.3093243513691930e+00 +3915 3.5322421114796032e-01 -3.0658679259645805e+00 -3.3219524330838768e+00 +4024 8.6799316600531129e-01 6.1990608231731246e+00 -4.0266284890920501e+00 +3451 1.2115658779452734e+00 5.7006424780647906e+00 -3.7887258971959215e-01 +3812 5.2951255345969699e+00 -1.6663113486000503e+00 -3.1884345482579934e-01 +3813 -5.4569350985405132e+00 -3.6309977646303797e+00 -4.2686999664588970e-01 +3283 2.2434290517890185e-01 2.7266111940163751e+00 2.2238743487793151e+00 +3129 5.4130228564002101e+00 -1.5851035925542500e+00 -6.3321486662631354e+00 +3286 2.2745782140066089e+00 2.8698133099580792e-01 -1.6340599905939155e+00 +3843 -2.3475633211991805e-02 -7.7232746164644372e-01 9.0028511161212208e+00 +72 -2.1201512476317799e+00 2.0557528356025392e+00 -9.3382090387468797e-01 +3235 -5.0207659309721997e+00 -1.4581146848459337e+00 -1.1462912775313893e-02 +3994 9.2782100392450828e-01 -3.8475570409374198e+00 -4.2212114149589670e+00 +3753 -1.6432059741028664e+00 -3.0846097387383740e+00 3.6501540410490172e+00 +3811 1.0918191621733833e-01 4.3865195459130177e+00 6.9689846022466746e+00 +4064 1.3690584423669061e+00 -5.9103111572269967e-03 1.2929035950722403e+00 +3536 -6.1973224734979429e+00 4.8007189526796026e+00 -8.8123916761798116e-01 +4090 -2.3351844974610110e+00 3.2101764208638914e+00 -8.9860009755544357e-01 +3250 1.0953443696430292e+00 1.7459964774048737e+00 9.5429733574548814e-01 +3940 -4.5315272209046267e+00 -1.4772016587220755e+00 -3.6489207738192486e+00 +3802 4.3150062515144043e+00 8.9364663295213731e-01 9.6363624938032122e-01 +4002 1.3362141870267268e+00 -9.9766691469427993e-01 -4.2105201264980607e+00 +3142 1.3205735460888506e+00 -3.3764295101013944e+00 -3.1239383577208901e+00 +3397 -1.5473539437561894e+00 -3.8421177168337106e+00 -9.6574384699893712e-01 +3358 -7.8551415746203601e-01 7.0616326378441574e+00 5.9245177151972754e+00 +4008 -9.2328063579180775e-01 6.5449439429809004e+00 -1.4683612831566397e+00 +20 -3.9698497974992666e+00 -1.3107654587709152e+00 1.4748991851623536e+00 +3507 -6.0587276178676053e+00 -2.4654875511503231e+00 -1.0379302268602890e+01 +574 -1.7736515312505932e+00 4.5502703246677214e+00 3.7383975776969551e-02 +3099 -3.5069367598372209e-01 4.7140798704403917e+00 4.1435157386053341e+00 +3360 3.2443596862033015e+00 2.6076046207792478e+00 -2.8705365774226692e+00 +3204 2.4403877703331406e-01 2.4263376231829656e-01 2.3267870422497618e+00 +3887 1.4571262860734531e+00 -4.6974797716295686e+00 -3.5446599844682223e+00 +4071 -3.6536849002150582e+00 7.6219544050129437e+00 -1.3409664568738306e+00 +3357 -1.7453029623068212e+00 1.7632224189620198e+00 -3.5474616382125963e+00 +3600 2.8370607037220175e-01 1.5425173180806497e+00 -8.4582013712562309e-01 +63 -4.7030008312068912e+00 -1.1346827149844294e+00 -6.4675422537742033e+00 +4067 -3.5619669925769326e+00 5.3994524696826192e+00 3.5749980732237394e+00 +3073 2.0573637749934952e+00 4.5248007471433151e+00 3.7523609266738023e-01 +3767 7.3076485678852632e-01 -5.7191104566492355e+00 3.1535683602378177e+00 +3080 1.9664072286901935e+00 4.4996573911775499e+00 2.5762199939340896e-01 +3354 7.5313359123727057e+00 -3.1384353505399747e+00 1.9443788214612885e+00 +3132 6.1983860563008788e+00 -8.1872623845671573e+00 -4.5886790437140297e+00 +3303 1.4134807467488282e+00 -6.5538048629369996e+00 -5.6735053417999259e-01 +3182 3.9093180488134820e+00 2.0342814646913014e+00 -1.1016909803831649e+00 +3421 3.2201172012638046e-01 8.1155303022287650e-01 -2.8986513778744656e+00 +3534 1.1601209361296742e-01 2.0174190794511939e+00 8.0605578038906900e-01 +3154 -3.1273520075068486e+00 -2.1220502802687253e+00 -1.6824182522906999e+00 +3966 1.7344401512048586e+00 -4.2385282650296763e-01 -9.1399469161282756e+00 +3185 -3.2497899345453072e+00 1.3615921820137544e+00 -7.6785084504649359e-01 +3336 -3.1960530616321248e+00 8.1481092268460387e-01 2.0312430148572047e+00 +3301 -1.9392093796352199e+00 -1.1037130485275763e+00 6.7391982226325178e+00 +3251 2.7714045803127192e+00 1.5552165538230018e+00 -2.6925933221469505e+00 +3930 -3.2945690503687510e+00 2.9085796631381755e-01 2.2590304636906784e+00 +3826 -8.9352019380571457e-01 -2.1726760634476645e+00 1.8468605175329549e+00 +4082 -1.0328078542208154e+00 -2.8128170283918612e+00 -3.6519389056103826e+00 +3879 -3.1816066604452460e+00 -4.5701818087161934e+00 -5.2723105555464391e+00 +3858 1.6814423056006729e+00 -3.8111403821032002e+00 -9.0102117570623930e-01 +3437 5.0862068439730939e+00 -8.0866320787141941e+00 -1.6910177843729786e+00 +3809 -3.3942775893159527e+00 2.1389279539951356e+00 1.7791285507199472e+00 +3209 2.8819189781605927e+00 -6.0743413552409162e+00 -7.1852124278932206e-01 +3532 -1.3673398834592658e+00 1.3037924594361514e+00 -2.1061457341583734e+00 +3562 -9.8997677895628591e-02 5.3221472729846910e+00 -2.3176874668514889e+00 +2784 4.5566053047381923e+00 -4.3760554594187706e+00 -5.3753459277836697e+00 +3467 -4.0975061215403630e-01 2.8642827197728762e+00 -3.2307110322389838e+00 +3925 9.0655005423086674e+00 -2.9737113084167333e+00 3.4880291320644852e-01 +3310 2.3433736602909397e-01 4.7711978800604964e+00 -6.1451186348194220e-01 +3528 2.0521368921084369e+00 -3.1992139385958601e-01 -4.7840596536362695e-01 +3521 -1.6049095655718646e+00 -5.1918230124308460e+00 -4.2162764948585414e+00 +3979 -5.9371992669132876e+00 -2.8228877340889023e+00 -4.0076884956815997e+00 +3549 -6.4899272304535893e-01 -1.8323565154780483e+00 -3.1228623588922835e+00 +3904 2.6513913510154463e+00 -6.2634169677327298e+00 6.4350469571908819e-01 +3092 4.4210633672437161e-01 3.8247330726194737e+00 -2.0959656420999164e+00 +3194 -1.4470370772218093e+00 3.4657071134973638e-01 5.0720337430406639e+00 +3650 3.6907348443703190e+00 1.3092709825673063e-01 2.9350329275280242e+00 +4030 5.3901334159642360e+00 -3.3469177080022701e+00 5.3765244841349773e+00 +3844 -1.9522838404489475e+00 -6.7024468585004193e+00 -3.7712246180617739e+00 +4026 -2.5599917813736410e+00 -3.6827545664653677e-01 -3.6724084088347650e+00 +369 1.8431369018662047e+00 -1.8284173474951015e+00 -2.7737590002352484e+00 +3897 1.3338271440260969e+00 2.0990855243130024e+00 -3.6205098584110544e+00 +3513 -2.9962151418492984e+00 -6.3057698977122401e-01 2.9106260252159104e+00 +3761 1.3992899707397546e+00 -1.7674692920434132e+00 1.9464681478667518e+00 +3470 4.3063676084917315e+00 1.1936830806996859e+00 -1.2671831499108357e+00 +3265 1.1249308763000725e+00 -2.2454942017674910e+00 -1.6842024016112405e+00 +4092 -1.4693022545979455e+00 -3.7248666567191586e+00 2.6666325551059571e+00 +3616 -1.8952585034101299e+00 1.6146690625598916e+00 3.0716115368050206e-01 +3341 2.1963440144502930e-01 -5.7127896816856649e-01 -4.3748152039303367e-01 +3191 -1.7536765661350113e+00 -2.0068205267069605e+00 -8.4260994159215985e-01 +3147 9.3691391770132060e-01 7.3325456320847957e-02 3.0403608130330060e+00 +3685 8.8699387525771362e-02 -3.8588393525156306e+00 -3.8485169328335047e+00 +3308 7.9163533316682988e-01 1.6463776956945344e+00 3.1372706854218779e+00 +3321 -2.0262677026975089e+00 -5.9775151996427542e+00 1.6837771809741475e+00 +3361 -4.0751658074744590e+00 -6.4465940667804817e+00 6.8719973544511725e-01 +4059 -2.1300946599608728e+00 8.5217901048056688e-01 1.0359288627892180e+00 +3395 -7.2963105082374247e+00 4.4331097548069387e+00 -2.1173979614060463e+00 +3982 -5.1530055249226880e-01 -4.9631701808732602e+00 -3.3709171621728634e-01 +4040 1.5244314758300046e+00 8.2688096984607018e-01 3.7978034315939532e-02 +3524 -3.2014035821574365e+00 -3.9538427738851958e+00 -3.4415996068655974e+00 +3503 8.5538117890477039e-01 -4.1499911931868716e-01 4.9624374058770151e+00 +3704 3.4025134334162441e+00 1.7116639071312980e+00 1.2130891922693083e+00 +3161 6.2549496214557401e+00 3.6925831505430944e+00 3.2404439250189996e+00 +3258 -1.2809236627313274e+00 -8.2206766792530611e-02 -1.6755046988157758e+00 +3544 2.9411574317224938e+00 6.3784659680932059e+00 -3.2773875615755427e-02 +730 6.3760446883680464e+00 -1.0168677935463477e+00 1.9006495549818334e-01 +3152 4.1736653708893741e+00 -1.3294601467468071e+01 4.5717367849948518e+00 +3686 5.8812604412755995e-03 1.5709584063101747e+00 2.8564636820262574e+00 +3627 -1.6918521594246250e+00 -3.8347575885334648e+00 5.5969472680736034e+00 +3317 6.0822177326655229e+00 7.6143086713403267e+00 4.3950785981116880e-01 +3134 -1.6458803273123286e+00 -3.8916097230458262e+00 -4.9926592273983195e+00 +3719 -4.5149427670033209e+00 -3.3968859502071256e+00 6.6087318246309215e+00 +3415 6.0332187775773187e+00 -5.2632563007983526e+00 -1.1520022746842129e+00 +3348 -5.1120383899241455e+00 2.0421692744309019e+00 2.5595962549002049e-01 +3519 8.9119841442316861e-01 -3.6242355931310786e+00 2.9645258963277863e+00 +3967 -4.5292297771911789e+00 -2.8023386218346578e+00 -3.2213409588719659e+00 +3141 -8.4379217315172439e-01 -4.6474276833862738e-03 -6.0323243682498227e+00 +3881 6.2764846447108100e+00 1.5974108755031011e+00 9.2557255553946813e+00 +3291 -3.2172469129438883e+00 -2.6980302040553874e+00 2.3523417495145797e+00 +3170 1.5442586012919157e+00 -5.0012004461801016e+00 -3.2216803121590201e+00 +3660 2.0643520085360292e+00 -8.3453765759512744e-01 1.1031724058274206e+00 +3917 -6.9583716081753053e+00 -2.1415605847172836e+00 -2.0995878211314976e+00 +3695 -5.9994439790596110e-01 -2.4702879349340883e+00 -4.7175049178414315e-02 +3278 4.4331415371335320e-01 1.3336618404377998e+00 -2.7086095347119454e+00 +3366 8.6024798757104137e-01 -8.1425291864573457e-01 -4.3610558160420476e+00 +3780 3.3994990068611597e+00 -2.5332927368264593e+00 -9.4323980737073113e-02 +3119 3.3404256737326725e+00 -8.2518918077372163e+00 -1.0553593873214238e+00 +3822 4.8856925584865269e+00 5.0168895493288490e+00 -1.6839347614639882e-01 +3234 5.8076192570647898e+00 4.4202300172183602e+00 -5.4821704543093686e-01 +3861 7.0733100684336880e-01 -2.7048544322438617e+00 -4.7677946880069350e-01 +3431 1.8572791830398563e+00 1.1167465593035502e+00 8.7283682719002069e+00 +3318 3.9396415649912724e+00 3.3971666298098091e+00 2.8101093879911474e+00 +3669 -4.1147977029324473e-01 3.9439115374200373e+00 1.9921382762000981e+00 +3948 6.5689169391056379e-01 -7.3693872157788012e-02 -1.4729756652208916e+00 +4022 3.5864909516570740e+00 2.4518692995778166e+00 6.0366645573919611e+00 +3237 -2.4847911447730522e+00 -4.4121525930083125e+00 4.8065264714391986e+00 +3540 -7.3360558435178302e-01 -4.7565059726276573e+00 -1.8617698161612806e+00 +3894 -2.3294311985268740e-01 1.9643194168786369e+00 6.6166978308908062e+00 +2832 -2.0204459136530364e+00 -4.5860339464148376e+00 2.2226490384197692e+00 +4063 6.3787640267867260e+00 1.4732524469846378e+00 1.6654351762364791e-01 +3207 -2.1611029921473670e+00 4.2719101635206851e+00 -1.8558891742969454e+00 +3969 -1.8456656823470623e+00 -4.6797355983108782e+00 2.8878354276022136e+00 +3504 6.6562828810845405e+00 1.8311775863286064e+00 4.2545006861737882e+00 +4004 5.5409641741612150e+00 -8.8094912944055870e-01 -4.3386928188369627e+00 +3566 -3.8187857329691149e-01 7.4337978422015816e-01 -3.4523865836844987e+00 +3983 3.5275189523030983e+00 3.5101588557958756e+00 1.8897194475784320e+00 +3743 2.8856359420638968e+00 -4.4754952360509490e+00 2.2547081076338822e+00 +3379 1.4586431311317466e-01 3.8208457287120643e+00 6.8267330984398917e+00 +3792 -9.9144681360249343e-01 6.8790496884150265e-01 2.4766053584817862e+00 +3796 2.6029739111652406e+00 4.9519330877712303e-01 -1.5279992501510302e+00 +3747 -1.2050306956359638e+00 6.0605618670498884e-01 4.0106823350254102e+00 +3346 -4.6458687770145870e+00 -2.5706863147456693e+00 1.3184288940331896e+00 +3426 2.4374600036584723e-01 -2.1768096364147757e-01 -6.1968533830926809e-01 +3806 3.0656241035387866e-01 3.7006446331386162e+00 -1.1492500890477186e+00 +3591 5.0947718321625805e-02 -1.2522462204349638e+00 -1.5100882802375606e+00 +3385 7.7792307462793167e+00 -6.7761315904372454e-02 3.2305075232862408e+00 +3701 2.3638899655866408e+00 1.9218536611356802e+00 -5.2561762576984385e+00 +3477 3.9720698897905660e+00 -7.0255113209359266e+00 -6.7123239083637343e-01 +3394 -2.0961803815934483e+00 3.8754554120348041e+00 -1.3253156563274726e+00 +3805 -5.9321055329993602e+00 -2.1294876513334158e+00 2.7185462398149891e+00 +3444 -9.9472483956727942e-01 -2.1833946812313179e+00 6.0216254075768996e+00 +3284 3.1186637698414077e+00 -2.1361056714872637e+00 -1.4658206689393862e+00 +3475 5.6116473360400165e-01 3.3061978344029835e-01 3.7327886413488143e+00 +3479 1.4303114068590304e+00 -5.7967474956973373e+00 2.9225609104871979e+00 +3682 3.7776687961881289e-01 -5.7078986625156958e+00 -2.5153678094117810e-01 +3151 2.2496333926930911e+00 5.6028989571200389e+00 3.6861282119493417e+00 +3180 2.5791285412489531e+00 5.6980667074399918e+00 7.0536409649899232e+00 +3391 -3.4518765349073215e+00 -3.4550776966286003e+00 -6.3010127231663382e-01 +3831 -1.7325121786088753e+00 -1.5640344033509994e+00 -1.3097418483273779e+00 +3275 -3.6449198295979235e+00 -1.9421268049778133e+00 6.4207856675583752e+00 +3516 -2.7061458934959166e+00 5.9251540382528267e-01 1.0431430288800760e+00 +3762 4.0841913279954900e+00 -3.6862634470485034e+00 2.8122917240575975e+00 +3214 9.3544441582904234e+00 -1.7357887941031152e+00 -1.1930310626090774e+00 +3751 9.9611127642284885e+00 4.0302641710839602e+00 -5.3577231180508900e+00 +3952 -2.9451035894122266e+00 5.1365955400331007e+00 5.7381020560370262e+00 +312 -1.7477213851733875e-01 2.2455455919134906e+00 -1.0723283397300287e+01 +3908 -8.1954717413326966e-02 3.0738648765555237e+00 5.3915862628551459e+00 +3965 -5.5156446240895942e+00 -5.2326545047680408e+00 1.4312214194031929e+00 +3172 1.7805193616895754e-01 2.3241943721251022e+00 8.4266631138732551e-01 +3400 3.8962128449471258e+00 4.9470612924256080e-01 1.1436814849313166e+00 +3745 -1.2278625043518974e+00 3.6301038988986938e+00 -1.4203506144719218e+00 +3296 3.1383759228606758e+00 -4.4195656572534050e+00 3.0670358976220385e-01 +2240 -9.9050973554099336e-02 1.3188451963823105e+00 3.8212389703736105e+00 +3681 2.0279310553249497e+00 -6.6141357837429138e-02 -1.8535791601562723e+00 +3975 -3.3952092281257515e+00 -3.9427656012960148e+00 -1.5278496033137856e+00 +3492 4.6718039528667115e+00 6.4415463006681897e-02 -2.3193123894081871e+00 +3124 6.0893847411651825e+00 1.9219287652445454e+00 4.1551043797969793e+00 +3210 5.3980763167444117e+00 -1.2380654572513259e+00 6.9650968643400288e+00 +3417 -9.6326452649265273e-02 -6.7056011919303316e-01 -1.8553498710896255e-01 +775 -1.9877576697696808e+00 1.2307276855294651e-01 -2.1749975173464335e+00 +3823 2.3662757758130848e+00 -1.0535628463008553e+00 -6.7169429402198233e-01 +3793 5.5498498288111051e+00 6.7431805597429832e+00 3.9186573543244285e-01 +3702 -1.2886840455001376e+00 2.7221034670460882e+00 -2.0073309751063728e-01 +3755 -8.6668900021241457e-01 -5.6866344659376207e+00 1.7644489659935898e+00 +3583 -4.4803949803043902e-01 3.2487757672539797e-01 -2.3258392977783267e+00 +3386 3.3435747606835409e+00 -1.7645821821782517e+00 -3.0839377405224533e+00 +3929 -8.3168691386960281e-01 -3.5306756404562658e+00 9.0392837489240598e+00 +3387 -1.6168814759887522e+00 3.2544030241992643e+00 -1.1707604211129932e+00 +3561 -2.5626769740209663e+00 -3.4827073216029234e+00 -4.1885586713327910e-01 +3950 8.5678435401950614e-01 -1.9630902052826167e+00 -2.2956887301854394e+00 +3852 6.3319670628748508e+00 -1.3263263409439525e+00 3.5798323528016784e-01 +3328 5.4421693858736857e+00 3.0892092690470077e+00 3.4587158327620959e-01 +143 3.6936463234010266e+00 2.3115665584610747e+00 -6.4919875384694450e+00 +4017 4.6509731273830415e+00 -3.4776589514517044e+00 2.7810872584796060e+00 +3526 -2.6209324397506539e+00 -1.1370206045261147e+01 3.3047083076696269e+00 +3594 1.9531645898011678e+00 -3.2113730464639203e+00 -4.5354401179357797e+00 +3422 -1.3198079515203904e+00 7.2466423390114798e-01 -4.2965872194524719e+00 +3874 -1.1998013486101193e+00 3.3587945067486347e+00 -5.3396406346844110e+00 +3430 -2.7867569105367003e+00 -7.3149394478428418e+00 3.8470621290750839e-01 +3867 5.7870476976600154e+00 2.6875214343250007e+00 -2.1138945257509740e+00 +3345 -6.0775824001970822e+00 -6.9140688065869327e-01 3.4141869111640162e+00 +3248 -6.2419211082937043e-01 -1.3916013738509347e+00 3.9429952465795228e+00 +3981 8.3987924710552153e-01 2.0409035643734694e+00 6.5671276083626280e+00 +3949 6.7663053229895871e+00 2.7399901304733580e+00 2.8517917256596865e+00 +3869 3.4149124905302330e+00 3.0802981524889259e+00 3.0745317913023249e+00 +3464 2.2294043889747797e+00 1.0222013837170798e+00 3.1785238289009450e+00 +3364 -1.2338678837631005e+00 -2.0976687514864403e+00 -3.0817245721316828e+00 +3244 -6.0209370668555340e-01 3.6144169099915664e+00 -4.4813185542373724e+00 +3197 -5.1257872995961478e+00 -9.1057984447990012e+00 1.9038767081438714e+00 +3199 -1.8055924616206958e+00 -5.2958859517349008e+00 -3.1206093875366410e+00 +3402 -5.5900390844494225e+00 -3.1883494550259206e+00 -2.2057034558235626e+00 +3520 5.8250778292341652e+00 1.5382683955324783e+00 2.1495858657473081e+00 +195 -7.1478263371936368e+00 9.6548229347501746e-01 3.0510449416652095e+00 +3640 -5.3808525579752535e+00 -4.2049849963826853e+00 7.6769968799424531e+00 +3798 -3.9861939598852727e+00 -2.9228329362287764e+00 3.1474666695721023e+00 +3163 9.4157627030613045e-01 -2.3297951439992381e+00 1.8347000462549934e+00 +3098 1.7046030951283653e-02 1.9197794910693164e+00 -8.5925032674175661e+00 +250 1.4361058025000064e+00 3.8196229416476029e+00 -4.4168345658678015e-01 +3200 -3.0994283669084202e+00 -9.3886248547429652e-01 -2.7231085245390946e-01 +3094 -6.0360960119672258e-01 -4.6169382805211328e+00 1.6410142791825204e+00 +3683 -8.5405671025496854e-01 -3.2333008487319725e+00 2.6474284667589170e+00 +3665 -2.1628662106811487e+00 2.3113184303554610e+00 3.2920052967632709e+00 +3885 2.7176955383527335e+00 -3.4569994447594907e+00 -2.5165256796812030e+00 +4093 -1.4993340545132705e+00 4.2437086352140980e+00 3.9990327246716375e+00 +3946 -1.8838437286499232e+00 -1.7102060664615530e+00 2.2204399069624534e+00 +4018 -1.2678323857068563e+00 -1.1508619830272375e+00 -1.0559819024406278e+00 +3288 -1.4054394667367047e-02 6.8469342338584283e-01 -3.2072032778078938e+00 +3439 2.8542439499167758e+00 3.8980865147718742e+00 7.6215202733354165e-02 +3347 7.5692970958081210e-02 -3.9767748947504934e-02 -2.7926573489656472e+00 +3998 1.0027894662970440e+00 -6.1730920106493654e+00 1.5001560922443462e+00 +4003 -1.1460637474593133e-01 -3.9396571834069523e+00 2.5443106409430012e+00 +154 1.3254761609532870e+00 3.5284028158009297e+00 -5.7244936587705553e+00 +4062 9.3374266574373987e-01 -8.6326532441389892e-01 -1.7953717377384810e+00 +3571 1.9808367137369998e+00 1.1289511154428304e+00 -3.1989879930226004e+00 +3715 8.8661193115424708e-01 -1.3691947666920518e-01 4.2781229839888901e+00 +3264 2.2367131899824781e+00 8.4868666138145932e-01 -2.2618077932741811e+00 +3539 1.0449186556725523e+00 -5.3290828137949049e+00 -6.8617926789850356e+00 +3830 -7.9485155984820750e+00 2.1590349907242978e+00 7.5508610548858568e-01 +3671 1.5819296607783919e+00 4.2876057986513683e+00 -5.1848303428704003e+00 +3905 -7.3865629207162957e+00 3.2320465926209065e+00 1.4294421890377234e+00 +3110 1.7580905443459505e+00 3.5585183967220972e+00 -2.6245282381707686e+00 +4034 -3.6833364694567488e+00 1.6528645432352718e-01 -7.7101294986155722e+00 +4087 3.5870023249552720e+00 4.0530715372575177e+00 8.0571390362769657e-01 +3453 1.1833041833052718e+00 -5.6564330224189352e-01 3.9979031799511655e+00 +3568 -3.3432283794382971e+00 -2.1638715225981624e+00 4.1532231927730312e-01 +3672 -6.9368066423498407e+00 -4.8962030583777993e+00 6.4869420282103398e+00 +3329 5.5534609195996276e-01 -4.1294705532163052e+00 3.1185932545997006e+00 +4078 -8.5145411083439237e-01 1.9937764712704400e+00 -3.5201253607843968e+00 +3268 3.2935955171064346e-01 -2.5117068579429209e+00 1.5431070974419997e-01 +3836 1.6210579116282327e+00 -6.6343693440830953e-01 2.7183449240412365e+00 +4037 -6.2994182003951227e-01 -8.4995838686866076e-01 3.4077799971579732e+00 +3312 1.9193622401060842e-01 -1.8069938582016791e+00 3.2877665493033481e+00 +3509 -3.7500678048583498e+00 6.5675174574373187e+00 5.0893366529963568e+00 +3501 5.0256983715474079e-01 2.2469281277997335e+00 -3.2846636234090658e+00 +73 -7.4969937634452322e-01 1.8781432805944791e+00 3.6029790345887767e+00 +3691 -3.6418824798916285e+00 -6.8666302460052471e+00 -1.5894453301949241e+00 +3817 6.3791307046397394e+00 -3.3495288287093619e+00 -4.8956000562059980e+00 +3606 -2.8913725270089685e-01 1.2045128808411669e+00 2.3987129032715648e+00 +3368 -2.9342047107263047e+00 2.1471049458332638e+00 -7.2283307633322051e+00 +3555 2.3869378409587458e+00 -7.4752273352153376e+00 2.8854424521810249e+00 +3490 -5.1500797203539532e+00 -2.1993580120147967e-02 5.5138371073860002e+00 +3968 4.9621867854584014e+00 2.5763854846055483e+00 5.2751772066222493e+00 +3435 -2.7080378098697153e+00 -5.2406789240719860e+00 1.7075031741888194e+00 +3626 9.5077185329851066e-01 -2.1478943985991339e-01 -9.1113087467708487e-01 +3740 8.9567785580306425e-01 5.3634965460819251e+00 4.1579275852164246e+00 +3208 -3.5058624347995460e-01 -2.3500933923230116e+00 -4.4445524277993504e+00 +4085 -2.8909321713142426e+00 3.4203881074729714e+00 1.1872744329890696e-01 +3973 1.3736328916691818e+00 3.3177713089125564e+00 1.5489913696293898e+00 +3936 7.7242922462205488e-01 -2.5794615661747771e+00 4.8833581061760842e+00 +571 8.4705521297667985e-01 -2.2690882733742308e+00 3.7662497212276462e+00 +3866 3.0016018885508489e+00 6.0892250273721356e+00 1.8550915803648846e+00 +3314 3.9992735432759932e+00 -3.2736532622329473e-01 -4.5642726358447181e+00 +3833 5.4216598030432657e+00 -1.2433864202051708e+00 1.9419468299201346e+00 +637 -7.3317367445003399e+00 -2.1127472650787849e+00 -2.8336921387366023e+00 +3229 1.6723591331331686e+00 3.9595099096291446e+00 -2.0029494320538905e+00 +3405 4.4584293466599414e+00 2.2621560454877265e+00 -7.7325267542766412e+00 +3776 2.5870848754180151e-02 -2.0490563364447354e+00 3.6151293169849126e+00 +4015 3.3119422296985062e+00 1.1375751475562141e+00 2.0660186081793266e+00 +3634 1.5395250368719013e+00 2.0401279435943951e+00 3.4491362699320103e+00 +3842 4.4284016764114291e+00 -3.2769467040305944e+00 -4.1947754328984361e+00 +3083 -6.8840243176838412e+00 4.5868348012524072e+00 -1.7290956396959885e+00 +4045 -3.9744723119629342e+00 4.3720199838902243e+00 -3.2174955383982389e+00 +3169 2.0690587499851656e+00 2.0862906837187922e+00 3.2487032043258184e+00 +3487 8.9998406551172072e-01 4.0379764166209773e+00 -5.3567646568907890e+00 +3398 -3.1715444321937682e+00 -6.1666161218676772e+00 9.4317268379351715e-01 +170 1.7011407370774894e+00 -3.0311439247860450e-01 1.5440834173686409e+00 +3637 -9.1734553840163411e+00 6.2405725664950958e-02 -1.1688778051505866e+00 +4046 1.9390495013073494e+00 -2.4778204560918065e+00 -1.1398076054619357e+00 +3243 5.0832362716989223e+00 -2.1805418091155677e+00 -1.9402203684999966e+00 +3703 5.6192898250997614e-01 -4.5917013279301404e+00 5.2852414108751855e+00 +3610 2.5203250782807585e+00 1.4302131698697071e+00 -4.4152277304460708e-01 +3791 3.9365426251280100e+00 8.9650094224003976e+00 -6.9617094256293111e-01 +3574 6.5342445022869535e+00 -2.7167018707998221e+00 1.5443611812065681e+00 +135 -5.4754687312369272e+00 -1.6882979954097586e+00 1.4256396424119413e+00 +3122 2.0224255871709667e+00 1.9534479997012493e+00 4.8331563586703513e-01 +3298 4.5804864836513204e+00 -1.3807321026039832e+00 8.3127570211472390e-01 +3935 -1.8991686762281843e+00 1.1977696848031811e+00 -5.0236894361347693e+00 +3165 -4.3335734562046380e+00 4.1803086210535412e+00 1.8276939838765491e+00 +3419 2.5357248822986365e+00 -4.5182798603247774e+00 8.3865530139124012e+00 +3771 2.1989264288246746e+00 9.3728595075805359e+00 -1.4640526092369870e+00 +4076 -6.0521713867796825e+00 5.2163848808214732e+00 2.8393799286348380e+00 +3978 -3.6407106801615785e+00 -1.5048403132543964e+00 -2.7905743949803687e+00 +3460 -9.0816785389076005e-01 2.4290224952871537e+00 -3.9719955605301065e+00 +3789 -7.6931801599271210e-01 5.0711208851206351e+00 3.4357274786717835e+00 +3742 -2.6614787527233257e+00 2.2435171574944579e-01 -1.6476132749380364e-02 +14 -9.3324125526899226e-01 2.4885171328442723e+00 7.9957475936625311e-01 +3186 -2.5407078393147282e+00 -2.5001541259937712e+00 1.0167914524737172e+00 +3890 -2.5917851461044537e+00 -7.3964305188303880e-01 -1.0584526975206123e+00 +3730 2.1482647149612148e+00 -8.6771810193728116e-01 7.5578097301925782e+00 +3673 7.6197709110089429e+00 1.7282191406029894e+00 1.3497557268892493e-01 +4051 1.9020673529980357e-02 3.0027889546741795e+00 -2.8172357521819824e-01 +3178 -4.1490245671513790e+00 -4.8035456012874471e+00 1.9136036843978219e+00 +4048 6.4890370223772731e+00 -4.8983648919801990e+00 6.8192343089026917e+00 +3078 -5.7211730517418466e+00 -2.8834667762235182e+00 -9.0447081170753201e+00 +3108 2.4731032791390399e+00 -1.6528878829554930e-01 3.0602639661100013e+00 +3106 2.1027974351155150e+00 3.4545484296992681e+00 6.1336482785376212e-01 +3775 9.7451755946583327e-02 2.6385918754368825e+00 3.3938257098934788e+00 +3102 -2.7141309666090225e+00 -3.0924255964467107e+00 -5.6110705648202259e+00 +3657 3.7399378518557911e+00 -2.1179296563936081e+00 -6.0404217717451987e+00 +480 -3.4524498107407577e+00 -8.6324073117984845e-01 -1.5407513448206718e+00 +3252 -2.4081140427975617e-01 5.1960567984957917e+00 -5.3533708208922803e+00 +3896 -1.0053427591203865e+00 3.9539265621427320e+00 -1.8727316664528597e+00 +3457 -3.9876209412581112e+00 3.1940368344112229e+00 -5.1040615932828794e+00 +3815 4.8798118490262690e+00 -7.9653034453033875e+00 -1.6307210589509986e+00 +4042 2.4322245736727059e+00 -6.7302578632120609e+00 -9.5207394290036573e-01 +3139 -1.0057714230486430e+00 3.4345338566316705e+00 -4.8386763338529057e+00 +3320 -3.5141911265545582e+00 -2.1395982085384069e+00 1.6761257243602001e+00 +3285 -1.1153046611949937e+00 2.9539058626977810e+00 -2.4783972969415049e+00 +3924 -1.6834418701341074e+00 -4.0520958495129289e+00 -2.4581849724564991e-01 +3888 6.1743927471959710e+00 6.3340249490412537e-01 2.8456431496914520e+00 +3302 -3.5859104080495130e-01 4.4476368146939054e+00 7.5313444253980580e-02 +3907 -4.4203630644291598e+00 -9.9806558031243697e-01 -3.3133825978935827e-01 +3280 -2.9580269583504171e-01 -2.2402466266885721e+00 4.8847802354135457e+00 +3614 -2.6728990269222366e+00 -2.6231378063893613e+00 2.1784388600037610e+00 +3077 -9.3543307658570356e+00 4.0545191958869511e+00 2.5923796545380910e+00 +3916 2.8561231918597532e+00 -1.9262117550170181e+00 1.8563060542880339e+00 +3611 1.6297742024306283e+00 -2.9755787839432664e+00 -4.6698216508089265e+00 +3331 1.0612799827037762e+00 4.5247968976030348e+00 -3.4747117716024190e-01 +3636 4.0896781137203337e+00 1.9976437799904110e+00 -4.0370412107349187e+00 +3370 -1.2746145353434063e-01 -1.0595310155745929e+00 2.3872568767971134e+00 +3393 -9.8727201735286166e-02 -4.5511955339098629e+00 1.5652513641238355e+00 +3598 -3.0069969666269558e+00 1.7355214688604661e+00 5.1857235394503508e-02 +3294 1.0623663466604951e+00 2.0160725736235485e+00 8.1945976622245880e+00 +3731 4.3468880034515793e+00 1.1390723014937398e+00 1.5464168143476567e+00 +3103 -3.7792230838035938e+00 6.3350072539278557e-01 -7.2961332796798581e-03 +3774 6.8531948637318711e+00 2.7545442749572280e-01 -9.0120772980336419e+00 +3412 -4.0491353521561848e+00 8.1584128108723009e-01 -5.0016544987296623e+00 +3338 8.7515487531887848e-01 -1.5797099861077668e+00 -6.5016242584015869e+00 +3707 -6.1387955154428440e+00 1.5911136427445474e+00 4.3313246959472531e+00 +4083 -3.8891467440593268e+00 -2.6837431596257741e+00 -5.2858797141740055e-01 +3344 2.1548899332831351e-01 2.6707172403314478e-01 -8.6486221902148697e-01 +3596 4.5870700377929001e+00 -2.5294625312950205e+00 -9.9114330118628502e-01 +4056 -7.1516054078688622e+00 -2.5419645714157886e+00 -2.9223148205567342e+00 +355 -2.8469691981866783e+00 1.4097577916739414e+00 2.2845916787491838e+00 +3886 6.7106575501045755e+00 -2.8823134252134310e+00 4.2668619674523214e+00 +3249 1.1873668843907907e+00 4.6378512987048595e+00 3.1145511800411652e+00 +3216 -2.2109820479296514e+00 1.3656629630957864e+00 4.1021558813843297e+00 +3217 3.4160452983843523e+00 2.4159917252520464e+00 1.5858111667126915e-01 +3639 7.4915512491840515e+00 2.2792874386126503e+00 1.8939133168311932e+00 +3814 -1.9281542564065774e+00 8.8545857000991601e-01 -4.3674933884359115e+00 +3459 1.3631412326707562e+00 -2.7767349396127603e+00 4.8644968854159947e+00 +3552 2.6906338573301675e-01 -5.3745510489245607e+00 -1.1523085369785302e+00 +3565 6.1668432097293415e+00 6.5574099360886908e+00 -5.8229278304875560e+00 +3961 3.4458347805866509e+00 5.1225250718163329e-01 -9.3398980260306652e-01 +3772 -2.1934226752659187e+00 -5.3726668860309497e+00 -4.7399729753068148e-01 +3117 -5.7864090373432564e-01 -5.8697963493275616e+00 1.5311148631245677e+00 +3497 -4.3230078230233039e-02 5.7485893207953573e+00 -7.4010297520507551e-01 +3891 2.2260340220623021e+00 -2.7298897891026086e-01 3.4326079705610488e+00 +2769 1.7600817453593784e+00 -5.1495628841309751e+00 -2.1808241934874942e-01 +3820 8.4670922937547370e+00 -2.3233420183741030e-01 4.4851357928229936e+00 +3355 -2.5304070055980792e+00 6.2780923696925894e-01 -2.1971306177887286e+00 +3323 8.4824903723548040e-01 3.9875217510571801e+00 -3.7868115888606093e+00 +3287 -1.3916685503909867e+00 -3.8837579392349273e+00 1.6306336196326103e+00 +3149 -3.1048266453813822e+00 3.4050121067627814e-01 -1.5708336318607443e+00 +705 4.2281224759887648e+00 8.7265392282486573e-02 -1.4507449726352297e+00 +3714 1.1419866353799570e+00 -6.5493374801352209e+00 1.0616448686454223e+00 +3752 -9.7394491903306157e-01 -1.8122471806332663e+00 -8.0423128871115512e-01 +4025 -1.3258755228056489e+00 3.9684845641051063e+00 -3.7462833709569128e+00 +3893 -2.2998535831721871e+00 -8.9569339771414480e-01 -2.2072928398246381e+00 +3432 2.3222050173312399e+00 7.6973535261387003e+00 8.1593532821222663e+00 +3797 -1.7423782070559284e+00 8.1878809074064485e+00 1.0555909181409036e+00 +422 -3.0530622738845139e+00 5.8243182979020391e-01 -5.4512698076113530e-01 +4019 -4.2990721202928626e+00 -3.1583942020870501e+00 5.7551670137697784e+00 +3803 -8.6017927238073355e-01 2.5083523091559146e+00 1.6981250491015718e+00 +3101 -9.4983376152174681e-01 2.1550096432294317e+00 3.0232923918297132e+00 +3587 7.0460179491837771e-01 -4.9677079658929273e+00 2.6906879787936786e+00 +3911 3.2120557103396155e+00 -1.3532505040138559e-01 5.8339734752235444e+00 +4058 1.5593750806896436e+00 -3.3572369987019930e+00 -1.0748344782651993e+00 +3883 -2.1905637071675073e+00 -6.0970182744598480e+00 -9.7913750792926990e+00 +3698 -1.0243090442286573e+00 -1.8303958350570534e-01 -2.2158669784859577e+00 +3937 4.3172719699954953e-01 4.1175541786671693e-01 3.3462255733171395e+00 +3413 4.6964540954608731e+00 -2.4969404506602064e+00 -3.4118095669888469e+00 +3380 2.9548903839244205e+00 -5.6180893702945536e+00 3.3971801079149144e+00 +3661 9.0223627832074249e-01 -9.4377080697513505e-01 1.4694059177803236e+00 +3638 8.4512912391567436e+00 -1.2429253804415814e+00 4.9235907960970655e+00 +4000 2.1438034603049512e+00 1.0130570805092907e-01 -9.1774491894928867e-01 +3515 -3.7624511610653864e+00 -4.9427975918789180e+00 -1.0137674042968736e-01 +4053 -5.6742550575478043e+00 -3.0114575182940739e+00 1.5088479745225067e+00 +3166 -5.0535010477325901e+00 -9.9599946558922914e-01 -6.5383387801142110e+00 +3783 -1.7955406905523250e+00 -5.6147516833001463e+00 2.6594421586338739e+00 +3224 -2.4611633609889254e+00 1.0782899051274432e-01 -3.9406918126181329e+00 +3947 8.0223237070898765e+00 1.1386221762159254e+00 -6.3325633134577757e+00 +3455 -3.6326991771122119e-01 3.0040392729008296e+00 1.5832768526528418e+00 +3414 -3.5439506165423946e+00 3.0947626059770634e+00 4.5003830639932980e+00 +3956 3.7395384538877791e-01 2.8839753734604723e+00 2.6373490969983977e+00 +3241 -2.0272151780111600e+00 -2.8444960698329256e+00 -3.3629321105506111e+00 +3726 -2.0007262673256792e+00 -1.0320818046993157e+01 2.0192960177651007e+00 +3484 1.2108192648199392e+00 3.5829015601230157e-01 -2.2393224896851893e+00 +605 -2.3435582722025154e+00 -4.3239296919317480e+00 -4.6172620458973741e+00 +3436 1.8398143976668786e+00 7.0100703412890510e+00 4.6712121378314148e-01 +3411 -6.4454558913852482e+00 5.1168435739189482e+00 4.6225091938229967e+00 +3326 2.4348223215100062e+00 1.4887447620690926e+00 2.7694109916470993e+00 +4075 -5.2629104504993274e+00 2.8341604632917456e+00 -1.0299318128276245e+00 +3168 -6.4523828374157088e-01 -2.0152456062250863e+00 3.7318963361635951e+00 +3189 4.2639924035438428e+00 3.1130822638894107e+00 5.1872408360264677e+00 +3556 -9.4987859025652721e-01 -4.0805284659170624e+00 5.1982493026540917e+00 +3376 -6.2720968562751844e-01 2.5465741161696478e+00 -1.2232161874065053e+00 +3663 3.3754625223410235e+00 1.1411717229171268e+00 -6.2724626638299972e+00 +3958 1.9521299138339316e+00 2.3034561641664575e+00 -3.0990744175346872e+00 +3835 -2.3006139352859996e+00 -3.5734370318746560e+00 -4.6625984111316833e-02 +3970 2.0170546392143702e+00 3.6823773112342608e+00 1.0068067500855460e+00 +3088 1.3359735704753783e+00 5.2639618273799185e+00 -7.7139655892801384e-01 +316 -1.9629073625085676e+00 -5.6185178601843777e+00 -7.1232717120485534e-01 +3433 -4.9859087090104537e-01 -2.4251781981529303e+00 7.1518267817598444e-02 +3340 -1.7351958122396161e+00 -2.3942402360765422e+00 -3.7370964231297132e+00 +3353 -7.9345513654384536e+00 3.3045979430807932e+00 2.2000973063556302e+00 +3722 -4.1740597229954561e+00 3.9672687247409111e+00 1.6016810190708586e+00 +3496 -2.8878073289431248e+00 7.9655578708927699e+00 1.0277502587201739e+00 +3603 1.0355156082751540e+00 3.5905389319220742e+00 -1.5712758173671720e-01 +4036 -3.6450821732379604e+00 6.0533675696503053e-01 -1.2129579684095031e+00 +3510 4.0260311128104913e+00 -3.7835514000744288e+00 -1.4616040194900262e+00 +3862 -1.2630882458166917e+00 -9.5545264601342039e-01 -1.2657618388493523e+00 +3768 4.2800843613798687e+00 -1.8496007744067633e+00 -1.1537982768531934e+00 +3372 -2.7225848965995336e+00 -2.6576063176097238e+00 -2.0637783390386937e+00 +3569 -2.7167190167387529e+00 5.2494085827822090e+00 4.6148999031920879e-02 +2673 1.0710913737433463e-01 -8.9650578725467100e-01 -1.4936361382416357e+00 +3262 4.3263344950374352e+00 -1.1178816640044056e+00 -3.0277528778282266e+00 +653 4.8309267515549390e+00 4.0659229262023420e+00 -2.6073063739588971e+00 +3115 2.2868125309293208e+00 -1.6685372200510009e+00 1.1454884322998671e+01 +3784 -7.0984645297452753e-01 1.5515493655885240e+00 2.6089682642774368e+00 +3333 4.9328845279704172e+00 -3.6247912157402027e+00 -4.4561335705374827e-01 +4065 2.8545709007994984e+00 3.3244652461275308e+00 6.9190782866104494e-01 +3351 -2.3684160286652141e+00 3.4986750849039588e-01 -9.1654897949963114e+00 +3647 1.8354800857462497e+00 1.0680485755075889e+01 -2.7825961151712089e+00 +4077 1.9345940296570694e+00 -1.0411047226224852e+01 4.9127961130159553e-01 +3581 -9.0262807177432750e-02 2.1987688737751991e+00 3.7787881137319630e+00 +3592 1.8205842795408897e+00 5.9569530703255600e+00 -2.3017128190723271e+00 +3601 -2.8551101474380354e+00 -4.8468060986233841e+00 -6.9097799374833579e+00 +3233 1.0700363590911921e+00 -1.3654938680862165e+00 4.8555152444037510e+00 +3841 -1.3944356850670456e+00 2.8035027926629246e+00 2.5109738148018956e+00 +3899 -3.8160443572331739e+00 4.3627652141263544e+00 4.0125028901393378e+00 +3737 3.1899312581896742e+00 2.3459898490042237e+00 1.2674097026651194e+00 +3629 2.6459048297192020e+00 3.3141290949742270e+00 4.4435610197434547e+00 +3804 -2.8566672888947240e+00 -1.5987406913925089e+00 3.0378774178536205e+00 +3557 -5.1664984195297610e+00 -4.1445466243516220e+00 -4.0107401971359540e+00 +3554 5.7869401039070754e+00 -1.9325045377571550e+00 9.7728689612789787e-01 +3713 1.6219386536943836e+00 -1.9771723574510611e+00 -3.8990787277863692e-01 +3184 1.1117002230508337e+00 -2.1270692774643387e+00 2.7816125718857672e+00 +3474 3.5030693691038626e+00 4.7253377107750056e+00 -1.1771335642522145e+00 +3649 4.3465287183389636e+00 -1.6515999264414276e+00 -3.8659127664530688e+00 +3607 -4.7533831232832915e+00 5.0074309241449146e+00 -6.2614843403543918e-01 +3188 9.8823153941486352e-01 2.0714939763876119e+00 2.4607661174375690e+00 +3889 2.2802436466148324e+00 -2.1294339291417441e+00 2.3746487157817486e+00 +3838 4.2318427896147579e+00 8.3125785978149906e+00 -3.2223889334475584e+00 +3093 -4.6810936124217948e+00 -1.4413696280873887e+00 -5.0196483976695561e+00 +3482 -4.4292438742873036e-01 -1.2922118195339320e+00 -1.5232279489341152e+00 +3091 -6.7646772834922944e+00 1.9814011167364554e+00 -1.7720940702742258e+00 +3483 -3.3996264275249342e+00 3.1570571487123420e+00 2.1477892579448614e+00 +3081 -6.6181305662608239e+00 1.7776125060201635e+00 7.5299563535862313e-02 +3187 1.4313534999711621e+00 -1.3550079019014896e+00 6.9344037122960955e+00 +3799 -1.0112500783956135e+00 7.1430096594364247e+00 -1.0273130504046941e+00 +3322 4.3983406168240373e+00 2.6117278229177674e+00 -4.8837238181571557e-01 +3655 -1.4705364002030252e+00 -1.4743956299855889e+00 1.2843343560802332e+00 +3662 -4.3579884516807077e+00 7.5876827817077537e+00 1.4417640263076295e+00 +3986 4.5344232896777168e+00 3.9505706330790678e+00 2.6063800645554109e+00 +3819 -1.1692175330411716e+00 -1.3016275480940902e+00 -9.2434678348972998e-01 +3997 -2.6286326961059321e+00 2.3850960139747208e+00 -1.5142389118871300e+00 +3183 2.9296851106627814e-01 -3.2442803991395510e+00 9.7366510653245675e-01 +3306 3.5818270919389352e+00 -3.5750612112734284e+00 1.4443826121511154e+00 +3560 4.3738909954356853e+00 -4.8125052127138943e+00 -2.5211912623104720e+00 +3085 5.3475882301508628e+00 -4.2408022628023092e+00 2.8635136565717958e+00 +3635 4.4614680716667365e+00 6.2902271235152298e+00 -5.0718257577217107e-01 +3697 -2.3133908750710659e+00 4.8943513150812494e+00 1.9433222354694877e+00 +3850 -2.3520082780840483e+00 -4.1382139646522829e+00 -4.2313549631213059e+00 +3572 5.2887124760018267e+00 -4.3056356137804634e+00 6.9026361811244985e-01 +2624 1.7265686526178390e+00 -1.5412180689889587e+00 -3.0934661542201152e+00 +3807 -5.4848006405032041e+00 2.8242358170289159e+00 4.0218318776038071e+00 +4057 -1.9436173231502683e+00 -6.4379617617013585e-01 2.9422585763085856e+00 +3575 4.8405797034935167e+00 1.8151525525656706e-01 -1.7336806690066728e+00 +3533 6.2985102473952148e+00 -3.8737828734077979e+00 5.9554831944004860e-01 +3749 -2.3060762715548426e+00 -1.5566670264415590e+00 7.6409930776677175e+00 +3628 1.1047697174211357e+00 4.5872009773756268e+00 -4.3312248695892714e+00 +3463 -4.0202543908176064e-01 1.0543123597897606e+00 -4.5095953260218593e+00 +3339 4.4461045576277334e+00 2.7023074862421219e+00 6.5761907532557173e-01 +3605 -1.9130986635970524e+00 3.9668547188660113e+00 -6.3242395502805584e+00 +3643 4.2561654139359133e+00 2.7079886942829829e+00 2.7399717274611493e+00 +3679 -2.1411701998224424e+00 -1.6132315381071032e+00 7.2516729511827427e-01 +3324 -8.2027537927136707e-01 -2.7694148205687066e+00 2.4736641085737388e+00 +3274 -4.4417852313637960e+00 -3.1061873476270003e+00 -4.2202494315305700e-01 +3779 -6.8867094633379926e+00 8.9727449535086627e+00 2.8636972542619379e+00 +621 3.0864972952518466e+00 -7.7377722234997837e-01 1.2106492653280587e-01 +3759 4.2946340382075698e+00 -2.7309518923249305e+00 -7.9384037173415658e+00 +3903 5.6188342028914784e+00 -2.7814248255132510e+00 -7.5133775402016285e+00 +3247 -1.6193326128196186e+00 -1.7233073750291210e+00 1.2558642428529292e+00 +3620 3.1413258846560623e+00 4.1189507481056093e+00 -6.3921202343711521e+00 +3984 1.3917530918758356e+00 -2.3497816055013883e+00 -1.4662677833340403e+00 +3359 -9.7958489915505709e-01 -7.9530975508665236e-01 3.6113761736403754e-01 +3728 4.3499495062909288e+00 -3.0962919910136191e+00 2.5291553497464387e+00 +3105 -2.1324777268885367e+00 4.6999502576160301e+00 -1.1831903765756278e+00 +2913 9.6792227860968549e-01 -8.2454190909792562e+00 -3.4600835572456634e+00 +105 1.1598974321010078e+00 6.6642846330522749e+00 -3.1397454859758240e+00 +3786 2.4337460674831185e-01 1.7007163465914101e+00 2.5520406588866820e+00 +4072 -4.0958048708482792e-01 1.1106824876365642e+00 3.0788300199054586e+00 +3160 -5.4524347356962517e+00 4.3156482789948143e+00 -1.3707562648323310e+00 +167 -3.7846180163481380e+00 6.0688805089413700e+00 -9.3209569588631103e-01 +193 -2.2590274085362330e+00 -3.0825410238075674e+00 2.7055352419861740e+00 +848 7.0018093775573365e-01 2.8058409327943159e+00 -2.8664598081555570e+00 +3993 -2.1133573700213573e+00 -3.5509555580404868e+00 1.6428703567042029e+00 +3781 -9.8115460551194134e-01 -3.3293080663104027e+00 -4.8282826681026414e+00 +9 -5.7488885085826680e-01 -3.8370861619809009e+00 -7.2892619744045950e+00 +3599 5.2833107352107955e+00 -8.2925617792090145e-01 -2.5358574431762029e+00 +3518 4.0580253230452010e+00 -3.0945361122357586e+00 -8.8323796705297763e-01 +4089 7.2248060554373073e+00 9.0480655644191388e-01 -9.6284911590930766e-01 +2593 3.2503133857492319e+00 -4.1972151630470256e+00 -1.7952974231313504e-01 diff --git a/examples/USER/misc/entropy/in.entropy b/examples/USER/misc/entropy/in.entropy new file mode 100644 index 0000000000000000000000000000000000000000..2c25dac3205d885b2b84aa4c3aff7df5420bce74 --- /dev/null +++ b/examples/USER/misc/entropy/in.entropy @@ -0,0 +1,34 @@ +echo both + +units metal +atom_style full + +read_data data.interface +mass 1 22.98977 + +neigh_modify delay 10 every 1 +pair_style eam/fs +pair_coeff * * Na_MendelevM_2014.eam.fs Na +timestep 0.002 +thermo 500 + +neighbor 4. bin + +# Define computes +# Global density, no average +compute 1 all entropy/atom 0.25 7.75 +# Local density, no average +compute 2 all entropy/atom 0.25 7.75 local yes +# Global density, average over neighbors +compute 3 all entropy/atom 0.25 7.75 avg yes 5. +# Local density, average over neighbors +compute 4 all entropy/atom 0.25 7.75 avg yes 5. local yes + +dump myDump all custom 500 dump.interface id type x y z c_1 c_2 c_3 c_4 + + +fix 1 all nph x 1. 1. 10. +fix 2 all temp/csvr 350. 350. 0.1 64582 + +run 1000 + diff --git a/examples/USER/misc/entropy/log.entropy b/examples/USER/misc/entropy/log.entropy new file mode 100644 index 0000000000000000000000000000000000000000..c380c62a731b77c6c83d3a36fc822b52843f8c17 --- /dev/null +++ b/examples/USER/misc/entropy/log.entropy @@ -0,0 +1,124 @@ +LAMMPS (30 Mar 2018) + +units metal +atom_style full + +read_data data.interface +Reading data file ... + triclinic box = (0 0 0) to (138.4 34.57 34.57) with tilt (0 0 0) + 4 by 1 by 1 MPI processor grid + reading atoms ... + 4096 atoms + reading velocities ... + 4096 velocities +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0 + special bond factors coul: 0 0 0 + 0 = max # of 1-2 neighbors + 0 = max # of 1-3 neighbors + 0 = max # of 1-4 neighbors + 1 = max # of special neighbors +mass 1 22.98977 + +neigh_modify delay 10 every 1 +pair_style eam/fs +pair_coeff * * Na_MendelevM_2014.eam.fs Na +timestep 0.002 +thermo 500 + +neighbor 4. bin + +# Define computes +# Global density, no average +compute 1 all entropy/atom 0.25 7.75 +# Local density, no average +compute 2 all entropy/atom 0.25 7.75 local yes +# Global density, average over neighbors +compute 3 all entropy/atom 0.25 7.75 avg yes 5. +# Local density, average over neighbors +compute 4 all entropy/atom 0.25 7.75 avg yes 5. local yes + +dump myDump all custom 500 dump.interface id type x y z c_1 c_2 c_3 c_4 + + +fix 1 all nph x 1. 1. 10. +fix 2 all temp/csvr 350. 350. 0.1 64582 + +run 1000 +WARNING: More than one compute entropy/atom (../compute_entropy_atom.cpp:138) +WARNING: More than one compute entropy/atom (../compute_entropy_atom.cpp:138) +WARNING: More than one compute entropy/atom (../compute_entropy_atom.cpp:138) +WARNING: More than one compute entropy/atom (../compute_entropy_atom.cpp:138) +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 13.2 + ghost atom cutoff = 13.2 + binsize = 6.6, bins = 21 6 6 + 5 neighbor lists, perpetual/occasional/extra = 5 0 0 + (1) pair eam/fs, perpetual + attributes: half, newton on + pair build: half/bin/newton/tri + stencil: half/bin/3d/newton/tri + bin: standard + (2) compute entropy/atom, perpetual + attributes: full, newton on, ghost + pair build: full/bin/ghost + stencil: full/ghost/bin/3d + bin: standard + (3) compute entropy/atom, perpetual, copy from (2) + attributes: full, newton on, ghost + pair build: copy + stencil: none + bin: none + (4) compute entropy/atom, perpetual, copy from (2) + attributes: full, newton on, ghost + pair build: copy + stencil: none + bin: none + (5) compute entropy/atom, perpetual, copy from (2) + attributes: full, newton on, ghost + pair build: copy + stencil: none + bin: none +Setting up Verlet run ... + Unit style : metal + Current step : 0 + Time step : 0.002 +Per MPI rank memory allocation (min/avg/max) = 25.68 | 25.69 | 25.69 Mbytes +Step Temp E_pair E_mol TotEng Press Volume + 0 346.29871 -4285.222 0 -4101.9191 594.65353 165399.75 + 500 359.33758 -4285.247 0 -4095.0423 471.98587 165847.18 + 1000 348.99659 -4276.2274 0 -4091.4964 149.27188 166966.18 +Loop time of 5.3437 on 4 procs for 1000 steps with 4096 atoms + +Performance: 32.337 ns/day, 0.742 hours/ns, 187.136 timesteps/s +99.8% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 4.2832 | 4.3257 | 4.3839 | 1.8 | 80.95 +Bond | 0.00018309 | 0.00019825 | 0.00021418 | 0.0 | 0.00 +Neigh | 0.42195 | 0.42512 | 0.42739 | 0.3 | 7.96 +Comm | 0.051679 | 0.1101 | 0.14916 | 10.8 | 2.06 +Output | 0.40909 | 0.4091 | 0.40911 | 0.0 | 7.66 +Modify | 0.060869 | 0.061921 | 0.06327 | 0.4 | 1.16 +Other | | 0.01161 | | | 0.22 + +Nlocal: 1024 ave 1040 max 1001 min +Histogram: 1 0 0 0 0 0 2 0 0 1 +Nghost: 4614.25 ave 4700 max 4540 min +Histogram: 1 1 0 0 0 0 0 1 0 1 +Neighs: 121747 ave 126398 max 116931 min +Histogram: 1 0 0 1 0 0 1 0 0 1 +FullNghs: 243494 ave 252523 max 233842 min +Histogram: 1 0 0 1 0 0 1 0 0 1 + +Total # of neighbors = 973974 +Ave neighs/atom = 237.787 +Ave special neighs/atom = 0 +Neighbor list builds = 13 +Dangerous builds = 0 + +Total wall time: 0:00:05 diff --git a/examples/body/data.cubes b/examples/body/data.cubes new file mode 100644 index 0000000000000000000000000000000000000000..c1323ca3503bb10745df9a9bc176ce531850a4eb --- /dev/null +++ b/examples/body/data.cubes @@ -0,0 +1,76 @@ +LAMMPS data file for polygons: cubes, moment of inertia I = m edge^2/ 6 +2 atoms +2 bodies +1 atom types +0 6 xlo xhi +0 6 ylo yhi +0 6 zlo zhi + +Atoms + +1 1 1 1 1.5 1.5 1.5 +2 1 1 1 4.0 4.0 4.0 + +Bodies + +1 3 79 +8 12 6 +0.667 0.667 0.667 0 0 0 +1 1 1 +1 -1 1 +-1 -1 1 +-1 1 1 +1 1 -1 +1 -1 -1 +-1 -1 -1 +-1 1 -1 +0 1 +1 2 +2 3 +3 0 +4 5 +5 6 +6 7 +7 4 +0 4 +1 5 +2 6 +3 7 +0 1 2 3 +4 5 6 7 +0 1 5 4 +1 2 6 5 +2 3 7 6 +3 0 4 7 +0.5 +2 3 79 +8 12 6 +0.667 0.667 0.667 0 0 0 +1 1 1 +1 -1 1 +-1 -1 1 +-1 1 1 +1 1 -1 +1 -1 -1 +-1 -1 -1 +-1 1 -1 +0 1 +1 2 +2 3 +3 0 +4 5 +5 6 +6 7 +7 4 +0 4 +1 5 +2 6 +3 7 +0 1 2 3 +4 5 6 7 +0 1 5 4 +1 2 6 5 +2 3 7 6 +3 0 4 7 +0.5 + diff --git a/examples/body/data.squares b/examples/body/data.squares new file mode 100755 index 0000000000000000000000000000000000000000..6b198fd422dc0e5d8f736d70bcd9906ca133898e --- /dev/null +++ b/examples/body/data.squares @@ -0,0 +1,32 @@ +LAMMPS data file for polygons: squares of edge length L: Izz = 1/6mL^2 +2 atoms +2 bodies +1 atom types +0 12 xlo xhi +0 12 ylo yhi +-0.5 0.5 zlo zhi + +Atoms + +1 1 1 1 4 5 0 +2 1 1 1 9 6 0 + +Bodies + +1 1 19 +4 +1 1 2.67 0 0 0 +-2 -2 0 +-2 2 0 +2 2 0 +2 -2 0 +0.5 +2 1 19 +4 +1 1 2.67 0 0 0 +-2 -2 0 +-2 2 0 +2 2 0 +2 -2 0 +0.5 + diff --git a/examples/body/in.body b/examples/body/in.body index 5879ed5e45bc8810e82df81fdac0928306ae9e23..815b8531545a4348fb54dd1553abcfb642f44bf5 100644 --- a/examples/body/in.body +++ b/examples/body/in.body @@ -8,7 +8,7 @@ read_data data.body velocity all create 1.44 87287 loop geom -pair_style body 5.0 +pair_style body/nparticle 5.0 pair_coeff * * 1.0 1.0 neighbor 0.5 bin diff --git a/examples/body/in.cubes b/examples/body/in.cubes new file mode 100644 index 0000000000000000000000000000000000000000..a22599fe9607873aab7bc2214f59b8268415814d --- /dev/null +++ b/examples/body/in.cubes @@ -0,0 +1,53 @@ +# 3d rounded cubes + +variable r index 3 +variable steps index 10000 + +units lj +dimension 3 + +atom_style body rounded/polyhedron 1 10 + +read_data data.cubes + +replicate $r $r $r + +velocity all create 1.2 187287 dist gaussian mom yes rot yes + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 1 +variable c_n equal 20 +variable c_t equal 5 +variable mu equal 0 +variable A_ua equal 1 + +pair_style body/rounded/polyhedron ${c_n} ${c_t} ${mu} ${A_ua} ${cut_inner} +pair_coeff * * ${k_n} ${k_na} + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +fix 1 all nvt/body temp 1.2 1.2 0.1 +#fix 1 all npt/body temp 1.2 1.2 0.1 iso 0.002 0.02 1.0 + +compute p2 all pressure 1_temp + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 1000 dump.* index c_1[1] c_1[2] c_1[3] c_1[4] + +#dump 2 all image 1000 image.*.jpg type type & +# zoom 1.5 adiam 1.5 body type 0 0 view 60 15 +#dump_modify 2 pad 6 + +thermo_style custom step ke pe etotal c_p2 c_1_temp + +thermo 1000 + +run ${steps} + diff --git a/examples/body/in.pour3d b/examples/body/in.pour3d new file mode 100644 index 0000000000000000000000000000000000000000..bcba950e593606065837cdbaeb85a4376fd0c4c4 --- /dev/null +++ b/examples/body/in.pour3d @@ -0,0 +1,57 @@ +# pouring 3d rounded polyhedron bodies + +variable steps index 6000 + +units lj +boundary p p fm +comm_modify vel yes + +atom_style body rounded/polyhedron 1 8 +atom_modify map array + +region reg block 0 50 0 50 0 50 units box +create_box 4 reg + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 5 +variable c_n equal 20 +variable c_t equal 5 +variable mu equal 0 +variable A_ua equal 1 + +pair_style body/rounded/polyhedron ${c_n} ${c_t} ${mu} ${A_ua} ${cut_inner} +pair_coeff * * ${k_n} ${k_na} + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +fix 1 all nve/body +fix 2 all gravity 1.0 spherical 0.0 -180.0 + +molecule object molecule.cube molecule.tetra toff 1 & + molecule.rod3d toff 2 molecule.point3d toff 3 + +region slab block 5 45 5 45 25 35 units box +fix ins all pour 500 0 4767548 vol 0.4 10 region slab mol object & + molfrac 0.25 0.25 0.25 0.25 + +fix 4 all wall/body/polyhedron 2000 50 50 zplane 0.0 NULL + +#compute 1 all body/local type 1 2 3 +#dump 1 all local 1000 dump.polyhedron index c_1[1] c_1[2] c_1[3] c_1[4] +#dump 10 all custom 1000 tmp.dump id type x y z radius + +thermo_style custom step atoms ke pe etotal press + +thermo 1000 + +#dump 2 all image 500 image.*.jpg type type & +# zoom 1.5 adiam 1.5 body type 0 0 view 75 15 +#dump_modify 2 pad 6 + +run ${steps} + + diff --git a/examples/body/in.squares b/examples/body/in.squares new file mode 100755 index 0000000000000000000000000000000000000000..3b05b5cead88cd6265b17ce2772873b97c475383 --- /dev/null +++ b/examples/body/in.squares @@ -0,0 +1,55 @@ +# 2d rounded polygon bodies + +variable r index 4 +variable steps index 100000 +variable T index 0.5 +variable P index 0.1 +variable seed index 980411 + +units lj +dimension 2 + +atom_style body rounded/polygon 1 6 +atom_modify map array +read_data data.squares + +replicate $r $r 1 + +velocity all create $T ${seed} dist gaussian mom yes rot yes + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 2 +variable c_n equal 1 +variable c_t equal 1 +variable mu equal 0.1 +variable delta_ua equal 0.5 + +pair_style body/rounded/polygon ${c_n} ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_coeff * * ${k_n} ${k_na} + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +#fix 1 all nvt/body temp $T $T 1.0 +fix 1 all npt/body temp $T $T 1.0 x 0.001 $P 1.0 & + y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 + +fix 2 all enforce2d + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 100000 dump.polygon.* index c_1[1] c_1[2] c_1[3] c_1[4] + +thermo_style custom step ke pe etotal press +thermo 1000 + +#dump 2 all image 10000 image.*.jpg type type zoom 2.0 & +# adiam 1.5 body type 0 0 +#dump_modify 2 pad 6 + +run ${steps} diff --git a/examples/body/in.wall2d b/examples/body/in.wall2d new file mode 100755 index 0000000000000000000000000000000000000000..04e7f31cb6810151570f164353f683ac6b675afa --- /dev/null +++ b/examples/body/in.wall2d @@ -0,0 +1,57 @@ +# 2d rounded polygon bodies + +variable r index 4 +variable steps index 100000 +variable T index 0.5 +variable P index 0.1 +variable seed index 980411 + +units lj +dimension 2 + +atom_style body rounded/polygon 1 6 +atom_modify map array +read_data data.squares + +replicate $r $r 1 + +velocity all create $T ${seed} dist gaussian mom yes rot yes + +change_box all boundary p f p + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 2 +variable c_n equal 0.1 +variable c_t equal 0.1 +variable mu equal 0.1 +variable delta_ua equal 0.5 + +pair_style body/rounded/polygon ${c_n} ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_coeff * * ${k_n} ${k_na} + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +#fix 1 all nvt/body temp $T $T 1.0 +fix 1 all npt/body temp $T $T 1.0 x 0.001 $P 1.0 fixedpoint 0 0 0 + +fix 2 all enforce2d +fix 3 all wall/body/polygon 2000 50 50 yplane 0.0 48.0 + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 100000 dump.polygon.* index c_1[1] c_1[2] c_1[3] c_1[4] + +thermo_style custom step ke pe etotal press +thermo 1000 + +#dump 2 all image 10000 image.*.jpg type type zoom 2.0 & +# adiam 1.5 body type 0 0 +#dump_modify 2 pad 6 + +run ${steps} diff --git a/examples/body/log.9Jul18.body.cubes.g++.1 b/examples/body/log.9Jul18.body.cubes.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..c9a799c0b51192a5420fb75fb8aeaa32a0b1a3df --- /dev/null +++ b/examples/body/log.9Jul18.body.cubes.g++.1 @@ -0,0 +1,125 @@ +LAMMPS (29 Jun 2018) +# 3d rounded cubes + +variable r index 3 +variable steps index 10000 + +units lj +dimension 3 + +atom_style body rounded/polyhedron 1 10 + +read_data data.cubes + orthogonal box = (0 0 0) to (6 6 6) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 2 atoms + 2 bodies + +replicate $r $r $r +replicate 3 $r $r +replicate 3 3 $r +replicate 3 3 3 + orthogonal box = (0 0 0) to (18 18 18) + 1 by 1 by 1 MPI processor grid + 54 atoms + Time spent = 0.000217915 secs + +velocity all create 1.2 187287 dist gaussian mom yes rot yes + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 1 +variable c_n equal 20 +variable c_t equal 5 +variable mu equal 0 +variable A_ua equal 1 + +pair_style body/rounded/polyhedron ${c_n} ${c_t} ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 ${c_t} ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 1 ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 1 0.5 +pair_coeff * * ${k_n} ${k_na} +pair_coeff * * 100 ${k_na} +pair_coeff * * 100 1 + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +fix 1 all nvt/body temp 1.2 1.2 0.1 +#fix 1 all npt/body temp 1.2 1.2 0.1 iso 0.002 0.02 1.0 + +compute p2 all pressure 1_temp + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 1000 dump.* index c_1[1] c_1[2] c_1[3] c_1[4] + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 adiam 1.5 body type 0 0 view 60 15 +#dump_modify 2 pad 6 + +thermo_style custom step ke pe etotal c_p2 c_1_temp + +thermo 1000 + +run ${steps} +run 10000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 3.9641 + ghost atom cutoff = 3.9641 + binsize = 1.98205, bins = 10 10 10 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair body/rounded/polyhedron, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.952 | 4.952 | 4.952 Mbytes +Step KinEng PotEng TotEng c_p2 c_1_temp + 0 1.7666667 0 1.7666667 0.01090535 0.59439252 + 1000 3.1462962 0.17392649 3.3202227 0.02361912 1.1654694 + 2000 2.9311648 0.13836102 3.0695258 0.021748224 1.1950624 + 3000 3.090491 0.16511199 3.255603 0.018691142 1.23672 + 4000 2.7401565 0.17792155 2.9180781 0.015093853 1.1180839 + 5000 3.0880849 0.17587085 3.2639557 0.030563042 1.2831154 + 6000 3.2180776 0.19732251 3.4154001 0.028338151 1.258839 + 7000 2.9514882 0.25088882 3.202377 0.025296925 1.1746326 + 8000 3.0101226 0.28825968 3.2983823 0.027273454 1.2138056 + 9000 3.0164253 0.1901733 3.2065986 0.033228915 1.3095914 + 10000 2.3780401 0.34082434 2.7188644 0.031838531 1.0208679 +Loop time of 38.5686 on 1 procs for 10000 steps with 54 atoms + +Performance: 22401.653 tau/day, 259.278 timesteps/s +100.0% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 38.426 | 38.426 | 38.426 | 0.0 | 99.63 +Neigh | 0.0043154 | 0.0043154 | 0.0043154 | 0.0 | 0.01 +Comm | 0.047616 | 0.047616 | 0.047616 | 0.0 | 0.12 +Output | 0.00017595 | 0.00017595 | 0.00017595 | 0.0 | 0.00 +Modify | 0.082948 | 0.082948 | 0.082948 | 0.0 | 0.22 +Other | | 0.007761 | | | 0.02 + +Nlocal: 54 ave 54 max 54 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 96 ave 96 max 96 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 100 ave 100 max 100 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 100 +Ave neighs/atom = 1.85185 +Neighbor list builds = 268 +Dangerous builds = 0 + +Total wall time: 0:00:38 diff --git a/examples/body/log.9Jul18.body.cubes.g++.4 b/examples/body/log.9Jul18.body.cubes.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..e2407e972532938d39ba0e62964d74dc9c69740f --- /dev/null +++ b/examples/body/log.9Jul18.body.cubes.g++.4 @@ -0,0 +1,125 @@ +LAMMPS (29 Jun 2018) +# 3d rounded cubes + +variable r index 3 +variable steps index 10000 + +units lj +dimension 3 + +atom_style body rounded/polyhedron 1 10 + +read_data data.cubes + orthogonal box = (0 0 0) to (6 6 6) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 2 atoms + 2 bodies + +replicate $r $r $r +replicate 3 $r $r +replicate 3 3 $r +replicate 3 3 3 + orthogonal box = (0 0 0) to (18 18 18) + 1 by 2 by 2 MPI processor grid + 54 atoms + Time spent = 0.00103807 secs + +velocity all create 1.2 187287 dist gaussian mom yes rot yes + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 1 +variable c_n equal 20 +variable c_t equal 5 +variable mu equal 0 +variable A_ua equal 1 + +pair_style body/rounded/polyhedron ${c_n} ${c_t} ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 ${c_t} ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 1 ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 1 0.5 +pair_coeff * * ${k_n} ${k_na} +pair_coeff * * 100 ${k_na} +pair_coeff * * 100 1 + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +fix 1 all nvt/body temp 1.2 1.2 0.1 +#fix 1 all npt/body temp 1.2 1.2 0.1 iso 0.002 0.02 1.0 + +compute p2 all pressure 1_temp + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 1000 dump.* index c_1[1] c_1[2] c_1[3] c_1[4] + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 adiam 1.5 body type 0 0 view 60 15 +#dump_modify 2 pad 6 + +thermo_style custom step ke pe etotal c_p2 c_1_temp + +thermo 1000 + +run ${steps} +run 10000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 3.9641 + ghost atom cutoff = 3.9641 + binsize = 1.98205, bins = 10 10 10 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair body/rounded/polyhedron, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.879 | 5.068 | 5.256 Mbytes +Step KinEng PotEng TotEng c_p2 c_1_temp + 0 1.7666667 0 1.7666667 0.01090535 0.59439252 + 1000 3.1462962 0.17392649 3.3202227 0.02361912 1.1654694 + 2000 2.9311648 0.13836102 3.0695258 0.021748224 1.1950624 + 3000 3.090491 0.16511199 3.255603 0.018691142 1.23672 + 4000 2.7401565 0.17792155 2.9180781 0.015093853 1.1180839 + 5000 3.0880849 0.17587085 3.2639557 0.030563042 1.2831154 + 6000 3.2180776 0.19732251 3.4154001 0.028338151 1.258839 + 7000 2.9514882 0.25088882 3.202377 0.025296925 1.1746326 + 8000 3.0101226 0.28825968 3.2983823 0.027273454 1.2138056 + 9000 3.0164253 0.1901733 3.2065986 0.033228915 1.3095914 + 10000 2.3780401 0.34082434 2.7188644 0.031838531 1.0208679 +Loop time of 20.5306 on 4 procs for 10000 steps with 54 atoms + +Performance: 42083.509 tau/day, 487.078 timesteps/s +100.0% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 7.5288 | 10.878 | 19.952 | 159.0 | 52.98 +Neigh | 0.0014424 | 0.0016552 | 0.0021195 | 0.7 | 0.01 +Comm | 0.50623 | 9.5805 | 12.93 | 169.4 | 46.66 +Output | 0.00011921 | 0.00014341 | 0.00021386 | 0.0 | 0.00 +Modify | 0.044663 | 0.047684 | 0.05382 | 1.6 | 0.23 +Other | | 0.023 | | | 0.11 + +Nlocal: 13.5 ave 17 max 9 min +Histogram: 1 0 0 1 0 0 0 0 1 1 +Nghost: 63.5 ave 68 max 58 min +Histogram: 1 0 0 1 0 0 0 0 0 2 +Neighs: 25 ave 38 max 6 min +Histogram: 1 0 0 0 0 1 0 0 1 1 + +Total # of neighbors = 100 +Ave neighs/atom = 1.85185 +Neighbor list builds = 268 +Dangerous builds = 0 + +Total wall time: 0:00:20 diff --git a/examples/body/log.9Jul18.body.pour3d.g++.1 b/examples/body/log.9Jul18.body.pour3d.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..213dd2e18fa9959a87ca922760e53508cace973d --- /dev/null +++ b/examples/body/log.9Jul18.body.pour3d.g++.1 @@ -0,0 +1,138 @@ +LAMMPS (29 Jun 2018) +# pouring 3d rounded polyhedron bodies + +variable steps index 6000 + +units lj +boundary p p fm +comm_modify vel yes + +atom_style body rounded/polyhedron 1 8 +atom_modify map array + +region reg block 0 50 0 50 0 50 units box +create_box 4 reg +Created orthogonal box = (0 0 0) to (50 50 50) + 1 by 1 by 1 MPI processor grid + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 5 +variable c_n equal 20 +variable c_t equal 5 +variable mu equal 0 +variable A_ua equal 1 + +pair_style body/rounded/polyhedron ${c_n} ${c_t} ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 ${c_t} ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 ${mu} ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 ${A_ua} ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 1 ${cut_inner} +pair_style body/rounded/polyhedron 20 5 0 1 0.5 +pair_coeff * * ${k_n} ${k_na} +pair_coeff * * 100 ${k_na} +pair_coeff * * 100 5 + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +fix 1 all nve/body +fix 2 all gravity 1.0 spherical 0.0 -180.0 + +molecule object molecule.cube molecule.tetra toff 1 molecule.rod3d toff 2 molecule.point3d toff 3 +Read molecule object: + 1 atoms with max type 1 + 0 bonds with max type 0 + 0 angles with max type 0 + 0 dihedrals with max type 0 + 0 impropers with max type 0 +Read molecule object: + 1 atoms with max type 2 + 0 bonds with max type 0 + 0 angles with max type 0 + 0 dihedrals with max type 0 + 0 impropers with max type 0 +Read molecule object: + 1 atoms with max type 3 + 0 bonds with max type 0 + 0 angles with max type 0 + 0 dihedrals with max type 0 + 0 impropers with max type 0 +Read molecule object: + 1 atoms with max type 4 + 0 bonds with max type 0 + 0 angles with max type 0 + 0 dihedrals with max type 0 + 0 impropers with max type 0 + +region slab block 5 45 5 45 25 35 units box +fix ins all pour 500 0 4767548 vol 0.4 10 region slab mol object molfrac 0.25 0.25 0.25 0.25 +Particle insertion: 134 every 4472 steps, 500 by step 13417 + +fix 4 all wall/body/polyhedron 2000 50 50 zplane 0.0 NULL + +#compute 1 all body/local type 1 2 3 +#dump 1 all local 1000 dump.polyhedron index c_1[1] c_1[2] c_1[3] c_1[4] +#dump 10 all custom 1000 tmp.dump id type x y z radius + +thermo_style custom step atoms ke pe etotal press + +thermo 1000 + +#dump 2 all image 500 image.*.jpg type type # zoom 1.5 adiam 1.5 body type 0 0 view 75 15 +#dump_modify 2 pad 6 + +run ${steps} +run 6000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5 + ghost atom cutoff = 5 + binsize = 2.5, bins = 20 20 20 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair body/rounded/polyhedron, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 0.5065 | 0.5065 | 0.5065 Mbytes +Step Atoms KinEng PotEng TotEng Press + 0 0 -0 0 0 0 + 1000 134 -0 0.00083010524 0.00083010524 -2.1515152e-06 + 2000 134 -0 -0.00069962476 -0.00069962476 -1.4170663e-08 + 3000 134 -0 -0.00069962687 -0.00069962687 -4.1478181e-11 + 4000 134 -0 -0.00069962687 -0.00069962687 -1.2141026e-13 + 5000 268 -0 0.014969705 0.014969705 3.0797164e-05 + 6000 268 -0 0.042467887 0.042467887 0.00056148005 +Loop time of 0.634737 on 1 procs for 6000 steps with 268 atoms + +Performance: 816716.196 tau/day, 9452.734 timesteps/s +100.0% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.41391 | 0.41391 | 0.41391 | 0.0 | 65.21 +Neigh | 0.010547 | 0.010547 | 0.010547 | 0.0 | 1.66 +Comm | 0.0030921 | 0.0030921 | 0.0030921 | 0.0 | 0.49 +Output | 0.00011492 | 0.00011492 | 0.00011492 | 0.0 | 0.02 +Modify | 0.19736 | 0.19736 | 0.19736 | 0.0 | 31.09 +Other | | 0.009719 | | | 1.53 + +Nlocal: 268 ave 268 max 268 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 3 ave 3 max 3 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 68 ave 68 max 68 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 68 +Ave neighs/atom = 0.253731 +Neighbor list builds = 168 +Dangerous builds = 0 + + +Total wall time: 0:00:00 diff --git a/examples/body/log.9Jul18.body.squares.g++.1 b/examples/body/log.9Jul18.body.squares.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..7b539797bd6d399ade37eeb28d580447c8721d9e --- /dev/null +++ b/examples/body/log.9Jul18.body.squares.g++.1 @@ -0,0 +1,221 @@ +LAMMPS (29 Jun 2018) +# 2d rounded polygon bodies + +variable r index 4 +variable steps index 100000 +variable T index 0.5 +variable P index 0.1 +variable seed index 980411 + +units lj +dimension 2 + +atom_style body rounded/polygon 1 6 +atom_modify map array +read_data data.squares + orthogonal box = (0 0 -0.5) to (12 12 0.5) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 2 atoms + 2 bodies + +replicate $r $r 1 +replicate 4 $r 1 +replicate 4 4 1 + orthogonal box = (0 0 -0.5) to (48 48 0.5) + 1 by 1 by 1 MPI processor grid + 32 atoms + Time spent = 0.00020504 secs + +velocity all create $T ${seed} dist gaussian mom yes rot yes +velocity all create 0.5 ${seed} dist gaussian mom yes rot yes +velocity all create 0.5 980411 dist gaussian mom yes rot yes + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 2 +variable c_n equal 1 +variable c_t equal 1 +variable mu equal 0.1 +variable delta_ua equal 0.5 + +pair_style body/rounded/polygon ${c_n} ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 1 ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 1 1 ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 1 1 0.1 ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 1 1 0.1 0.5 ${cut_inner} +pair_style body/rounded/polygon 1 1 0.1 0.5 0.5 +pair_coeff * * ${k_n} ${k_na} +pair_coeff * * 100 ${k_na} +pair_coeff * * 100 2 + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +#fix 1 all nvt/body temp $T $T 1.0 +fix 1 all npt/body temp $T $T 1.0 x 0.001 $P 1.0 y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 $T 1.0 x 0.001 $P 1.0 y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 $P 1.0 y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 0.1 1.0 y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 0.1 1.0 y 0.001 0.1 1.0 couple xy fixedpoint 0 0 0 + +fix 2 all enforce2d + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 100000 dump.polygon.* index c_1[1] c_1[2] c_1[3] c_1[4] + +thermo_style custom step ke pe etotal press +thermo 1000 + +#dump 2 all image 10000 image.*.jpg type type zoom 2.0 # adiam 1.5 body type 0 0 +#dump_modify 2 pad 6 + +run ${steps} +run 100000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.15685 + ghost atom cutoff = 6.15685 + binsize = 3.07843, bins = 16 16 1 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair body/rounded/polygon, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/2d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.781 | 4.781 | 4.781 Mbytes +Step KinEng PotEng TotEng Press + 0 0.484375 0.25 0.734375 0.0067274306 + 1000 0.39423376 0.0017918048 0.39602557 0.0021941612 + 2000 0.42284177 0.01346585 0.43630762 0.0029377883 + 3000 0.58154405 0.011321689 0.59286574 0.003667871 + 4000 0.73518304 0.034603175 0.76978621 0.0018689207 + 5000 0.84367476 0.025292163 0.86896692 0.0089161373 + 6000 0.70803236 0.0085631016 0.71659546 0.0045552895 + 7000 0.56206452 0.10453031 0.66659483 0.010255161 + 8000 0.64538994 0.088817673 0.73420761 0.0037633655 + 9000 0.90540819 0.063696004 0.96910419 0.0077673359 + 10000 0.68632042 0.093265016 0.77958544 0.0057864838 + 11000 0.59118074 0.025654748 0.61683549 0.012518759 + 12000 0.67522767 0.038176401 0.71340407 0.01741153 + 13000 0.7644843 0.10429844 0.86878274 0.013161339 + 14000 0.56152694 0.067836655 0.62936359 0.016852121 + 15000 0.41895506 0.019513348 0.43846841 0.015225695 + 16000 0.55799421 0.1564559 0.71445011 0.011703561 + 17000 0.59391964 0.034450221 0.62836986 0.026215002 + 18000 0.75911858 0.030885726 0.7900043 0.018396366 + 19000 0.64417995 0.12110912 0.76528907 0.010247952 + 20000 0.57751435 0.16965651 0.74717086 0.023392323 + 21000 0.7613368 0.13405354 0.89539034 0.021498982 + 22000 0.57676692 0.18011879 0.75688571 0.024469161 + 23000 0.54043723 0.11842026 0.65885749 0.019799067 + 24000 0.62276061 0.038967924 0.66172853 0.019080086 + 25000 0.53157536 0.11651937 0.64809473 0.017019298 + 26000 0.72213293 0.039012448 0.76114538 0.015434904 + 27000 0.62157832 0.13697494 0.75855326 0.028711011 + 28000 0.41323738 0.16301101 0.57624839 0.041792632 + 29000 0.45774328 0.17569066 0.63343394 0.019975231 + 30000 0.78901796 0.099791386 0.88880934 0.024116947 + 31000 0.85205397 0.11977547 0.97182945 0.026667489 + 32000 0.37137095 0.1232622 0.49463315 0.00087637364 + 33000 0.26860871 0.26056381 0.52917252 0.036110517 + 34000 0.3018636 0.21336905 0.51523265 0.040315549 + 35000 0.39915129 0.28245957 0.68161085 0.034876856 + 36000 0.25761236 0.2352705 0.49288286 0.022772767 + 37000 0.1071233 0.31692858 0.42405188 0.017994666 + 38000 0.083729577 0.28473145 0.36846103 -0.0045370431 + 39000 0.070355565 0.26682083 0.33717639 0.017921556 + 40000 0.075894079 0.20077896 0.27667304 0.014873186 + 41000 0.05891028 0.15989064 0.21880092 0.025547873 + 42000 0.1225107 0.16583605 0.28834675 0.038842785 + 43000 0.17049189 0.14323991 0.3137318 0.029550161 + 44000 0.26823939 0.15208257 0.42032196 0.028113612 + 45000 0.10172203 0.1729706 0.27469264 -0.013769913 + 46000 0.14841355 0.19085074 0.33926429 -0.00073741985 + 47000 0.27654927 0.19097937 0.46752864 0.04021431 + 48000 0.53432331 0.080769923 0.61509323 0.029932845 + 49000 0.69111634 0.13064951 0.82176585 0.028985406 + 50000 0.24520806 0.18317453 0.42838258 0.05179746 + 51000 0.23541368 0.14281364 0.37822732 0.071884238 + 52000 0.25464996 0.095730242 0.3503802 0.034488204 + 53000 0.53677633 0.1058745 0.64265084 0.059932498 + 54000 0.32970921 0.27979128 0.60950049 0.062869716 + 55000 0.49094054 0.096735015 0.58767556 0.04728005 + 56000 0.54398249 0.2216472 0.76562969 0.056712022 + 57000 0.60869068 0.2338422 0.84253288 0.077143302 + 58000 0.72175509 0.18687368 0.90862877 0.019357656 + 59000 0.79442757 0.092502981 0.88693055 0.066882632 + 60000 0.6810555 0.077699385 0.75875488 0.095975173 + 61000 0.63178834 0.05071143 0.68249977 0.043586668 + 62000 0.76589344 0.044615704 0.81050914 0.085718411 + 63000 0.84815889 0.030527848 0.87868674 0.053072795 + 64000 0.7309043 0.051938637 0.78284294 0.058887766 + 65000 0.62498816 0.034474465 0.65946262 0.068446407 + 66000 0.69817494 0.068546004 0.76672094 0.062634433 + 67000 0.86444275 0.010184259 0.87462701 0.073635055 + 68000 0.77820319 0.0079319524 0.78613515 0.090330925 + 69000 0.56938919 0.0092629332 0.57865213 0.061838729 + 70000 0.61870712 0.010047381 0.6287545 0.066501338 + 71000 0.71651803 0.0088366199 0.72535465 0.079136316 + 72000 0.76278925 0.008828151 0.77161741 0.063672771 + 73000 0.75447428 0.0083985526 0.76287283 0.078256913 + 74000 0.66185251 0.0091910052 0.67104351 0.069840511 + 75000 0.58458829 0.0097671568 0.59435544 0.076123422 + 76000 0.7487564 0.0100022 0.7587586 0.076171741 + 77000 0.89505465 0.009250681 0.90430533 0.074921699 + 78000 0.73738164 0.0092029279 0.74658457 0.078835344 + 79000 0.65735281 0.010099528 0.66745233 0.077940627 + 80000 0.70247542 0.010306464 0.71278189 0.079560093 + 81000 0.74839505 0.010199092 0.75859415 0.080835104 + 82000 0.75193767 0.010274058 0.76221173 0.081086684 + 83000 0.71392598 0.010495573 0.72442156 0.082746145 + 84000 0.58498928 0.011027388 0.59601667 0.08356465 + 85000 0.59022869 0.011729474 0.60195817 0.084519397 + 86000 0.81753578 0.011208964 0.82874475 0.085490261 + 87000 0.83480682 0.010542579 0.8453494 0.086268527 + 88000 0.67322538 0.011170734 0.68439611 0.08751623 + 89000 0.62637389 0.012033316 0.6384072 0.088548094 + 90000 0.92828557 0.011750388 0.94003596 0.089199823 + 91000 0.96072564 0.010324509 0.97105015 0.090204803 + 92000 0.72105071 0.011484152 0.73253486 0.09140819 + 93000 0.65762527 0.012558219 0.67018349 0.092453474 + 94000 0.73991591 0.01261909 0.752535 0.093373477 + 95000 0.91791653 0.011980455 0.92989699 0.094182136 + 96000 0.76562561 0.011807085 0.7774327 0.095323684 + 97000 0.57292104 0.013610205 0.58653124 0.096505977 + 98000 0.68141076 0.013863204 0.69527396 0.097380069 + 99000 0.82390969 0.013002341 0.83691203 0.098235926 + 100000 0.77639728 0.012989342 0.78938662 0.099274147 +Loop time of 3.88899 on 1 procs for 100000 steps with 32 atoms + +Performance: 2221655.884 tau/day, 25713.610 timesteps/s +99.9% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 3.056 | 3.056 | 3.056 | 0.0 | 78.58 +Neigh | 0.0051048 | 0.0051048 | 0.0051048 | 0.0 | 0.13 +Comm | 0.091444 | 0.091444 | 0.091444 | 0.0 | 2.35 +Output | 0.0011995 | 0.0011995 | 0.0011995 | 0.0 | 0.03 +Modify | 0.69909 | 0.69909 | 0.69909 | 0.0 | 17.98 +Other | | 0.03616 | | | 0.93 + +Nlocal: 32 ave 32 max 32 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 21 ave 21 max 21 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 57 ave 57 max 57 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 57 +Ave neighs/atom = 1.78125 +Neighbor list builds = 1445 +Dangerous builds = 0 +Total wall time: 0:00:03 diff --git a/examples/body/log.9Jul18.body.squares.g++.4 b/examples/body/log.9Jul18.body.squares.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..56d7734b7ba2a1919c1581799bb2eb83660aa4c9 --- /dev/null +++ b/examples/body/log.9Jul18.body.squares.g++.4 @@ -0,0 +1,221 @@ +LAMMPS (29 Jun 2018) +# 2d rounded polygon bodies + +variable r index 4 +variable steps index 100000 +variable T index 0.5 +variable P index 0.1 +variable seed index 980411 + +units lj +dimension 2 + +atom_style body rounded/polygon 1 6 +atom_modify map array +read_data data.squares + orthogonal box = (0 0 -0.5) to (12 12 0.5) + 2 by 2 by 1 MPI processor grid + reading atoms ... + 2 atoms + 2 bodies + +replicate $r $r 1 +replicate 4 $r 1 +replicate 4 4 1 + orthogonal box = (0 0 -0.5) to (48 48 0.5) + 2 by 2 by 1 MPI processor grid + 32 atoms + Time spent = 0.000324011 secs + +velocity all create $T ${seed} dist gaussian mom yes rot yes +velocity all create 0.5 ${seed} dist gaussian mom yes rot yes +velocity all create 0.5 980411 dist gaussian mom yes rot yes + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 2 +variable c_n equal 1 +variable c_t equal 1 +variable mu equal 0.1 +variable delta_ua equal 0.5 + +pair_style body/rounded/polygon ${c_n} ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 1 ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 1 1 ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 1 1 0.1 ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 1 1 0.1 0.5 ${cut_inner} +pair_style body/rounded/polygon 1 1 0.1 0.5 0.5 +pair_coeff * * ${k_n} ${k_na} +pair_coeff * * 100 ${k_na} +pair_coeff * * 100 2 + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +#fix 1 all nvt/body temp $T $T 1.0 +fix 1 all npt/body temp $T $T 1.0 x 0.001 $P 1.0 y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 $T 1.0 x 0.001 $P 1.0 y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 $P 1.0 y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 0.1 1.0 y 0.001 $P 1.0 couple xy fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 0.1 1.0 y 0.001 0.1 1.0 couple xy fixedpoint 0 0 0 + +fix 2 all enforce2d + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 100000 dump.polygon.* index c_1[1] c_1[2] c_1[3] c_1[4] + +thermo_style custom step ke pe etotal press +thermo 1000 + +#dump 2 all image 10000 image.*.jpg type type zoom 2.0 # adiam 1.5 body type 0 0 +#dump_modify 2 pad 6 + +run ${steps} +run 100000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.15685 + ghost atom cutoff = 6.15685 + binsize = 3.07843, bins = 16 16 1 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair body/rounded/polygon, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/2d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.774 | 4.774 | 4.774 Mbytes +Step KinEng PotEng TotEng Press + 0 0.484375 0.25 0.734375 0.0067274306 + 1000 0.39423376 0.0017918048 0.39602557 0.0021941612 + 2000 0.42284177 0.01346585 0.43630762 0.0029377883 + 3000 0.58154405 0.011321689 0.59286574 0.003667871 + 4000 0.73518304 0.034603175 0.76978621 0.0018689207 + 5000 0.84367476 0.025292163 0.86896692 0.0089161373 + 6000 0.70803236 0.0085631016 0.71659546 0.0045552895 + 7000 0.56206452 0.10453031 0.66659483 0.010255161 + 8000 0.64538994 0.088817673 0.73420761 0.0037633655 + 9000 0.90540819 0.063696004 0.96910419 0.0077673359 + 10000 0.68632042 0.093265016 0.77958544 0.0057864837 + 11000 0.59118074 0.025654748 0.61683549 0.012518759 + 12000 0.67522767 0.038176401 0.71340407 0.01741153 + 13000 0.7644843 0.10429844 0.86878274 0.013161339 + 14000 0.56152694 0.067836656 0.6293636 0.016852113 + 15000 0.41895505 0.019513353 0.43846841 0.015225696 + 16000 0.55799443 0.15645637 0.7144508 0.011703646 + 17000 0.59385248 0.03451986 0.62837234 0.025482966 + 18000 0.75902169 0.031103586 0.79012527 0.018263354 + 19000 0.64266826 0.12535314 0.76802141 0.014884119 + 20000 0.57836261 0.16581188 0.74417449 0.024667165 + 21000 0.78281936 0.11877527 0.90159464 -0.0090089213 + 22000 0.5312006 0.13300874 0.66420934 0.025797278 + 23000 0.56458861 0.084369128 0.64895774 0.024630917 + 24000 0.65126875 0.06122992 0.71249867 0.034377198 + 25000 0.55173441 0.15694886 0.70868327 0.021634086 + 26000 0.59121615 0.17071182 0.76192797 0.024758366 + 27000 0.6394843 0.17442949 0.81391378 0.034919937 + 28000 0.31144221 0.41243036 0.72387256 0.074115225 + 29000 0.13516917 0.3075419 0.44271107 0.023861298 + 30000 0.14094934 0.24407203 0.38502137 0.037030438 + 31000 0.26313749 0.087395422 0.35053291 0.042347005 + 32000 0.51602457 0.063012079 0.57903664 0.018550299 + 33000 0.55628829 0.200213 0.75650129 0.026507686 + 34000 0.97399408 0.082504517 1.0564986 0.037889878 + 35000 0.64710533 0.17662002 0.82372535 0.058295508 + 36000 0.45769083 0.08241194 0.54010277 0.014957415 + 37000 0.72850105 0.053874061 0.78237512 0.037194593 + 38000 0.44177995 0.28939498 0.73117493 0.045194029 + 39000 0.46828451 0.077630686 0.54591519 0.089849009 + 40000 0.46786451 0.092828423 0.56069294 0.028042052 + 41000 0.71861856 0.097085715 0.81570427 0.036473296 + 42000 0.74121021 0.10553127 0.84674148 0.054058843 + 43000 0.62945489 0.12770673 0.75716161 0.047267994 + 44000 0.49900638 0.085150056 0.58415644 0.054798793 + 45000 0.70199572 0.063415877 0.7654116 0.038363546 + 46000 0.49513142 0.10649384 0.60162526 0.059392561 + 47000 0.3858898 0.079458749 0.46534855 0.051825764 + 48000 0.62585854 0.028585902 0.65444444 0.054074424 + 49000 0.65934482 0.51865062 1.1779954 -0.035272836 + 50000 0.5420438 0.082056756 0.62410056 0.031187494 + 51000 0.36685223 0.14224019 0.50909241 0.073790397 + 52000 0.19044627 0.15368389 0.34413016 0.059034266 + 53000 0.26847678 0.075693324 0.3441701 0.032276915 + 54000 0.3593711 0.19034549 0.54971659 0.070827883 + 55000 0.21659198 0.1929074 0.40949939 0.035916364 + 56000 0.28242715 0.12313241 0.40555956 0.062083926 + 57000 0.34067475 0.14711992 0.48779467 0.059321458 + 58000 0.4842796 0.16143425 0.64571385 0.059048247 + 59000 0.84438871 0.076546849 0.92093556 0.048046901 + 60000 0.92794849 0.054331626 0.98228012 0.058392272 + 61000 0.6916736 0.076168342 0.76784194 0.058654987 + 62000 0.63317965 0.094506389 0.72768604 0.061044719 + 63000 0.63317266 0.038785593 0.67195825 0.097236147 + 64000 0.81696668 0.121811 0.93877769 0.064935373 + 65000 0.82644758 0.25188344 1.078331 0.093352359 + 66000 0.64975019 0.17930857 0.82905876 0.058805254 + 67000 0.63487678 0.16877059 0.80364737 0.070254696 + 68000 0.79140717 0.11631004 0.9077172 0.064646394 + 69000 0.85687272 0.057835331 0.91470805 0.071057291 + 70000 0.67785976 0.040686768 0.71854653 0.074687222 + 71000 0.60594577 0.032193155 0.63813893 0.069349268 + 72000 0.77586745 0.024068533 0.79993598 0.083394193 + 73000 0.88877625 0.025746326 0.91452258 0.081511105 + 74000 0.73507888 0.036574786 0.77165367 0.075360233 + 75000 0.68787782 0.042098622 0.72997644 0.068651098 + 76000 0.72515745 0.04360868 0.76876613 0.069594624 + 77000 0.77580944 0.041826702 0.81763614 0.071937144 + 78000 0.76640394 0.039285046 0.80568899 0.074274921 + 79000 0.62504309 0.039593585 0.66463667 0.076443295 + 80000 0.60001642 0.043468215 0.64348464 0.094547719 + 81000 0.82175037 0.045608873 0.86735924 0.080186295 + 82000 0.85783276 0.042692576 0.90052534 0.081576548 + 83000 0.71367707 0.042172193 0.75584926 0.08256625 + 84000 0.68532406 0.044724759 0.73004882 0.083672013 + 85000 0.72576789 0.046982462 0.77275035 0.084789331 + 86000 0.75597701 0.04765086 0.80362787 0.085758056 + 87000 0.74190598 0.047629096 0.78953507 0.086679976 + 88000 0.60967704 0.049906172 0.65958321 0.085526191 + 89000 0.54490288 0.054768238 0.59967112 0.090604027 + 90000 0.75398341 0.057153453 0.81113686 0.091900858 + 91000 0.84577472 0.052753512 0.89852823 0.091913909 + 92000 0.7176235 0.050677427 0.76830093 0.092032507 + 93000 0.61699446 0.054097013 0.67109147 0.092071275 + 94000 0.76330752 0.057398618 0.82070614 0.092435043 + 95000 0.98754458 0.053801311 1.0413459 0.093526707 + 96000 0.7405897 0.052135628 0.79272533 0.095011929 + 97000 0.65587599 0.057011962 0.71288795 0.096692123 + 98000 0.72345634 0.060700171 0.78415651 0.097510345 + 99000 0.88283624 0.061795247 0.94463149 0.09799633 + 100000 0.86303812 0.058912988 0.92195111 0.09892993 +Loop time of 2.80074 on 4 procs for 100000 steps with 32 atoms + +Performance: 3084895.573 tau/day, 35704.810 timesteps/s +99.9% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.81169 | 0.89466 | 0.97669 | 8.4 | 31.94 +Neigh | 0.0017524 | 0.0018129 | 0.0018773 | 0.1 | 0.06 +Comm | 0.91307 | 0.99193 | 1.0691 | 7.3 | 35.42 +Output | 0.00076914 | 0.00093722 | 0.0013936 | 0.0 | 0.03 +Modify | 0.75335 | 0.75779 | 0.76346 | 0.4 | 27.06 +Other | | 0.1536 | | | 5.48 + +Nlocal: 8 ave 10 max 4 min +Histogram: 1 0 0 0 0 0 1 0 0 2 +Nghost: 17.25 ave 19 max 15 min +Histogram: 1 0 1 0 0 0 0 0 0 2 +Neighs: 13.5 ave 21 max 5 min +Histogram: 1 0 0 0 1 0 1 0 0 1 + +Total # of neighbors = 54 +Ave neighs/atom = 1.6875 +Neighbor list builds = 1443 +Dangerous builds = 0 +Total wall time: 0:00:02 diff --git a/examples/body/log.9Jul18.body.wall2d.g++.1 b/examples/body/log.9Jul18.body.wall2d.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..f22c3663802a487158fffc74c13931f9d83a9416 --- /dev/null +++ b/examples/body/log.9Jul18.body.wall2d.g++.1 @@ -0,0 +1,223 @@ +LAMMPS (29 Jun 2018) +# 2d rounded polygon bodies + +variable r index 4 +variable steps index 100000 +variable T index 0.5 +variable P index 0.1 +variable seed index 980411 + +units lj +dimension 2 + +atom_style body rounded/polygon 1 6 +atom_modify map array +read_data data.squares + orthogonal box = (0 0 -0.5) to (12 12 0.5) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 2 atoms + 2 bodies + +replicate $r $r 1 +replicate 4 $r 1 +replicate 4 4 1 + orthogonal box = (0 0 -0.5) to (48 48 0.5) + 1 by 1 by 1 MPI processor grid + 32 atoms + Time spent = 0.00029707 secs + +velocity all create $T ${seed} dist gaussian mom yes rot yes +velocity all create 0.5 ${seed} dist gaussian mom yes rot yes +velocity all create 0.5 980411 dist gaussian mom yes rot yes + +change_box all boundary p f p + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 2 +variable c_n equal 0.1 +variable c_t equal 0.1 +variable mu equal 0.1 +variable delta_ua equal 0.5 + +pair_style body/rounded/polygon ${c_n} ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 0.1 ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 0.1 0.1 ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 0.1 0.1 0.1 ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 0.1 0.1 0.1 0.5 ${cut_inner} +pair_style body/rounded/polygon 0.1 0.1 0.1 0.5 0.5 +pair_coeff * * ${k_n} ${k_na} +pair_coeff * * 100 ${k_na} +pair_coeff * * 100 2 + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +#fix 1 all nvt/body temp $T $T 1.0 +fix 1 all npt/body temp $T $T 1.0 x 0.001 $P 1.0 fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 $T 1.0 x 0.001 $P 1.0 fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 $P 1.0 fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 0.1 1.0 fixedpoint 0 0 0 + +fix 2 all enforce2d +fix 3 all wall/body/polygon 2000 50 50 yplane 0.0 48.0 + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 100000 dump.polygon.* index c_1[1] c_1[2] c_1[3] c_1[4] + +thermo_style custom step ke pe etotal press +thermo 1000 + +#dump 2 all image 10000 image.*.jpg type type zoom 2.0 # adiam 1.5 body type 0 0 +#dump_modify 2 pad 6 + +run ${steps} +run 100000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.15685 + ghost atom cutoff = 6.15685 + binsize = 3.07843, bins = 16 16 1 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair body/rounded/polygon, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/2d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.771 | 4.771 | 4.771 Mbytes +Step KinEng PotEng TotEng Press + 0 0.484375 0.25 0.734375 0.0067274306 + 1000 0.49241101 0.0031318767 0.49554289 0.017768281 + 2000 0.56118632 0.0026068888 0.56379321 0.003410416 + 3000 0.75565115 0.025578366 0.78122951 0.0071862988 + 4000 0.72298647 0.093150646 0.81613712 0.003190158 + 5000 0.51684166 0.049164868 0.56600653 0.0096960168 + 6000 0.56627905 0.048132853 0.6144119 0.020733586 + 7000 0.58122129 0.018223718 0.59944501 0.0038160759 + 8000 0.64297977 0.025934821 0.66891459 0.0041091784 + 9000 0.41748404 0.0077890042 0.42527305 0.0039270065 + 10000 0.35738377 0.078487805 0.43587158 3.9079782e-05 + 11000 0.41529308 0.13619284 0.55148592 -0.0067482285 + 12000 0.43274718 0.071315497 0.50406268 0.007006378 + 13000 0.4748331 0.069904647 0.54473775 0.0010384372 + 14000 0.6287791 0.12721033 0.75598943 0.0047792448 + 15000 0.4692413 0.12344005 0.59268136 0.018033616 + 16000 0.43157074 0.14306789 0.57463862 0.042356676 + 17000 0.53085999 0.22126296 0.75212294 0.027509646 + 18000 0.52688968 0.13225282 0.6591425 0.0021558013 + 19000 0.55032328 0.12513047 0.67545375 0.025036251 + 20000 0.48465097 0.1431055 0.62775647 0.017193781 + 21000 0.53166734 0.21928574 0.75095307 0.011564317 + 22000 0.62177353 0.09296159 0.71473512 0.017660922 + 23000 0.6972939 0.12434123 0.82163514 0.024432327 + 24000 0.42767372 0.22152311 0.64919684 -0.013712449 + 25000 0.4816037 0.19272865 0.67433236 0.052386055 + 26000 0.72642579 0.19697046 0.92339625 0.020407694 + 27000 0.39649144 0.15058326 0.5470747 0.023705766 + 28000 0.44896324 0.18500106 0.6339643 -0.0089410286 + 29000 0.5565759 0.11085772 0.66743362 0.048437166 + 30000 0.58173584 0.21773281 0.79946865 0.0057357773 + 31000 0.49199415 0.23601982 0.72801397 0.046744152 + 32000 0.55665496 0.20542161 0.76207658 -0.0038756805 + 33000 0.62730739 0.24460524 0.87191263 0.045330682 + 34000 0.58107044 0.16395278 0.74502322 -0.0049496051 + 35000 0.56838849 0.21842922 0.78681771 0.0062086036 + 36000 0.45910273 0.28464172 0.74374445 -0.011700747 + 37000 0.37092037 0.27646862 0.647389 0.022305679 + 38000 0.7278047 0.30674438 1.0345491 0.07698342 + 39000 0.5132923 0.27395066 0.78724295 0.026898634 + 40000 0.62348649 0.24424644 0.86773293 0.039403899 + 41000 0.3658401 0.15512326 0.52096337 0.022559003 + 42000 0.4912253 0.35712978 0.84835508 -0.010336341 + 43000 0.70225957 0.36314638 1.0654059 0.004148866 + 44000 0.56958157 0.25488927 0.82447084 0.067537066 + 45000 0.45854352 0.30149439 0.76003791 -0.017002401 + 46000 0.62787247 0.34567995 0.97355242 0.11894801 + 47000 0.61348914 0.29378625 0.90727539 0.067873976 + 48000 0.71301829 0.34135284 1.0543711 0.021077736 + 49000 0.53520804 0.30593196 0.84113999 0.0059257647 + 50000 0.44966403 0.35370793 0.80337195 0.0020395669 + 51000 0.5236113 0.32296924 0.84658054 -0.051011506 + 52000 0.53905573 0.351771 0.89082672 0.013720106 + 53000 0.55978158 0.41293947 0.97272106 0.068558589 + 54000 0.52170459 0.2718066 0.7935112 0.0093138985 + 55000 0.61078876 0.43353897 1.0443277 0.045377392 + 56000 0.51300655 0.33182278 0.84482933 -0.018418487 + 57000 0.54882822 0.38380093 0.93262915 0.10249946 + 58000 0.72106212 0.45361279 1.1746749 0.030313481 + 59000 0.55871447 0.63823029 1.1969448 0.019079703 + 60000 0.49395192 0.58283102 1.0767829 0.0179349 + 61000 0.45991079 0.62540573 1.0853165 0.074398804 + 62000 0.4655788 0.60862262 1.0742014 0.11472976 + 63000 0.55634524 0.63069255 1.1870378 -0.0025676135 + 64000 0.57688903 0.45435264 1.0312417 0.0083813852 + 65000 0.57168922 0.42217005 0.99385927 0.044931269 + 66000 0.6206044 0.46727538 1.0878798 0.019686229 + 67000 0.61037155 0.41840109 1.0287726 0.0195109 + 68000 0.63848598 0.41305347 1.0515395 0.072940144 + 69000 0.49244916 0.3834095 0.87585866 0.07963677 + 70000 0.41847062 0.51907975 0.93755037 0.18447904 + 71000 0.45198986 0.52973709 0.98172695 0.078419371 + 72000 0.47064262 0.37808165 0.84872427 -0.00046308054 + 73000 0.6690143 0.37549359 1.0445079 0.061208432 + 74000 0.60444955 0.33779636 0.94224592 -0.068840321 + 75000 0.61762382 0.3916421 1.0092659 0.16253292 + 76000 0.63657961 0.50277989 1.1393595 0.013857508 + 77000 0.52524028 0.43597896 0.96121924 -0.03296482 + 78000 0.43803533 0.33172284 0.76975817 0.078763029 + 79000 0.67156089 0.55272177 1.2242827 0.080822223 + 80000 0.68678238 0.46061627 1.1473987 0.0027036992 + 81000 0.64956678 0.44959229 1.0991591 0.11201483 + 82000 0.51060477 0.43508342 0.9456882 0.028000608 + 83000 0.59550548 0.69026083 1.2857663 -0.0015809004 + 84000 0.64222145 0.38768816 1.0299096 0.014153173 + 85000 0.7661229 0.43445261 1.2005755 0.048034534 + 86000 0.60025257 0.53027929 1.1305319 0.0056865157 + 87000 0.46220939 0.47470035 0.93690974 0.075311946 + 88000 0.54123847 0.62899839 1.1702369 0.13260162 + 89000 0.61212272 0.6114241 1.2235468 0.033284822 + 90000 0.63924773 0.6916249 1.3308726 0.045088296 + 91000 0.49316865 0.51037033 1.003539 0.023203598 + 92000 0.57572123 0.43496319 1.0106844 0.297092 + 93000 0.65187559 0.56815972 1.2200353 0.1538215 + 94000 0.64107331 0.58948521 1.2305585 0.031117778 + 95000 0.64584158 0.6364688 1.2823104 0.096154676 + 96000 0.60509093 0.601487 1.2065779 0.03457172 + 97000 0.68837218 0.77974186 1.468114 0.17801164 + 98000 0.62725266 0.64137144 1.2686241 0.17449001 + 99000 0.46861221 0.67000291 1.1386151 0.2429588 + 100000 0.5879119 0.7140612 1.3019731 0.064634257 +Loop time of 2.50594 on 1 procs for 100000 steps with 32 atoms + +Performance: 3447804.126 tau/day, 39905.140 timesteps/s +100.0% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 1.5639 | 1.5639 | 1.5639 | 0.0 | 62.41 +Neigh | 0.0086911 | 0.0086911 | 0.0086911 | 0.0 | 0.35 +Comm | 0.058926 | 0.058926 | 0.058926 | 0.0 | 2.35 +Output | 0.0012379 | 0.0012379 | 0.0012379 | 0.0 | 0.05 +Modify | 0.83537 | 0.83537 | 0.83537 | 0.0 | 33.34 +Other | | 0.03781 | | | 1.51 + +Nlocal: 32 ave 32 max 32 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 20 ave 20 max 20 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 57 ave 57 max 57 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 57 +Ave neighs/atom = 1.78125 +Neighbor list builds = 2705 +Dangerous builds = 0 +Total wall time: 0:00:02 diff --git a/examples/body/log.9Jul18.body.wall2d.g++.4 b/examples/body/log.9Jul18.body.wall2d.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..7239fd4dcd4fc6a55886d0bfd11a401ab3e97f23 --- /dev/null +++ b/examples/body/log.9Jul18.body.wall2d.g++.4 @@ -0,0 +1,223 @@ +LAMMPS (29 Jun 2018) +# 2d rounded polygon bodies + +variable r index 4 +variable steps index 100000 +variable T index 0.5 +variable P index 0.1 +variable seed index 980411 + +units lj +dimension 2 + +atom_style body rounded/polygon 1 6 +atom_modify map array +read_data data.squares + orthogonal box = (0 0 -0.5) to (12 12 0.5) + 2 by 2 by 1 MPI processor grid + reading atoms ... + 2 atoms + 2 bodies + +replicate $r $r 1 +replicate 4 $r 1 +replicate 4 4 1 + orthogonal box = (0 0 -0.5) to (48 48 0.5) + 2 by 2 by 1 MPI processor grid + 32 atoms + Time spent = 0.000386 secs + +velocity all create $T ${seed} dist gaussian mom yes rot yes +velocity all create 0.5 ${seed} dist gaussian mom yes rot yes +velocity all create 0.5 980411 dist gaussian mom yes rot yes + +change_box all boundary p f p + +variable cut_inner equal 0.5 +variable k_n equal 100 +variable k_na equal 2 +variable c_n equal 0.1 +variable c_t equal 0.1 +variable mu equal 0.1 +variable delta_ua equal 0.5 + +pair_style body/rounded/polygon ${c_n} ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 0.1 ${c_t} ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 0.1 0.1 ${mu} ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 0.1 0.1 0.1 ${delta_ua} ${cut_inner} +pair_style body/rounded/polygon 0.1 0.1 0.1 0.5 ${cut_inner} +pair_style body/rounded/polygon 0.1 0.1 0.1 0.5 0.5 +pair_coeff * * ${k_n} ${k_na} +pair_coeff * * 100 ${k_na} +pair_coeff * * 100 2 + +comm_modify vel yes + +neighbor 0.5 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.001 + +#fix 1 all nve/body +#fix 1 all nvt/body temp $T $T 1.0 +fix 1 all npt/body temp $T $T 1.0 x 0.001 $P 1.0 fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 $T 1.0 x 0.001 $P 1.0 fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 $P 1.0 fixedpoint 0 0 0 +fix 1 all npt/body temp 0.5 0.5 1.0 x 0.001 0.1 1.0 fixedpoint 0 0 0 + +fix 2 all enforce2d +fix 3 all wall/body/polygon 2000 50 50 yplane 0.0 48.0 + +#compute 1 all body/local id 1 2 3 +#dump 1 all local 100000 dump.polygon.* index c_1[1] c_1[2] c_1[3] c_1[4] + +thermo_style custom step ke pe etotal press +thermo 1000 + +#dump 2 all image 10000 image.*.jpg type type zoom 2.0 # adiam 1.5 body type 0 0 +#dump_modify 2 pad 6 + +run ${steps} +run 100000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 6.15685 + ghost atom cutoff = 6.15685 + binsize = 3.07843, bins = 16 16 1 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair body/rounded/polygon, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/2d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.773 | 4.773 | 4.773 Mbytes +Step KinEng PotEng TotEng Press + 0 0.484375 0.25 0.734375 0.0067274306 + 1000 0.49241101 0.0031318767 0.49554289 0.017768281 + 2000 0.56118632 0.0026068888 0.56379321 0.003410416 + 3000 0.75565115 0.025578366 0.78122951 0.0071862988 + 4000 0.72298647 0.093150646 0.81613712 0.003190158 + 5000 0.51684166 0.049164868 0.56600653 0.0096960168 + 6000 0.56627905 0.048132853 0.6144119 0.020733586 + 7000 0.58122129 0.018223718 0.59944501 0.0038160759 + 8000 0.64297977 0.025934821 0.66891459 0.0041091784 + 9000 0.41748404 0.0077890042 0.42527305 0.0039270065 + 10000 0.35738377 0.078487805 0.43587158 3.9079865e-05 + 11000 0.41529307 0.13619284 0.55148591 -0.0067482285 + 12000 0.43274718 0.071315527 0.50406271 0.007006369 + 13000 0.4748324 0.069905666 0.54473807 0.0010385254 + 14000 0.62603727 0.098905625 0.7249429 0.0048876764 + 15000 0.44512086 0.10415235 0.54927321 0.01902062 + 16000 0.47460177 0.18053316 0.65513493 0.045013976 + 17000 0.52742676 0.10110706 0.62853382 0.013615471 + 18000 0.46111734 0.096118795 0.55723613 0.0073676834 + 19000 0.59668439 0.13652292 0.73320731 0.029403553 + 20000 0.46840192 0.11611719 0.58451911 -0.00034412499 + 21000 0.53550533 0.096457461 0.6319628 0.0019785732 + 22000 0.46599715 0.13206373 0.59806087 0.031970672 + 23000 0.49280776 0.20404726 0.69685501 0.03657433 + 24000 0.60901688 0.18255214 0.79156902 0.044955017 + 25000 0.47345185 0.13671357 0.61016542 0.020313539 + 26000 0.47653832 0.12448225 0.60102057 0.01878099 + 27000 0.50008212 0.24740634 0.74748845 0.021862639 + 28000 0.41627204 0.2519463 0.66821834 0.054683701 + 29000 0.55608273 0.23100212 0.78708485 -0.0043318497 + 30000 0.53884537 0.3001584 0.83900377 -0.012838186 + 31000 0.53036238 0.2300328 0.76039518 -0.0061688449 + 32000 0.42666792 0.20536256 0.63203048 0.045305282 + 33000 0.62908185 0.1652033 0.79428515 0.0072777588 + 34000 0.47028154 0.388736 0.85901754 0.04332288 + 35000 0.54602322 0.2775624 0.82358562 0.02898206 + 36000 0.59860544 0.21824655 0.81685199 0.0025936194 + 37000 0.62467827 0.11983499 0.74451326 0.050052743 + 38000 0.72594229 0.36584781 1.0917901 0.04280621 + 39000 0.51129656 0.23859043 0.74988699 0.050817447 + 40000 0.53263836 0.24212889 0.77476725 0.036245922 + 41000 0.50288088 0.36668283 0.86956371 0.018381415 + 42000 0.46653688 0.21974887 0.68628574 0.012661062 + 43000 0.61738785 0.32131037 0.93869821 0.012709433 + 44000 0.56603903 0.26515554 0.83119457 0.03315102 + 45000 0.56231638 0.32111693 0.88343331 0.06079756 + 46000 0.7096208 0.2570131 0.96663391 0.048770468 + 47000 0.588755 0.1880748 0.7768298 0.035962604 + 48000 0.56296339 0.25783519 0.82079858 0.053019928 + 49000 0.419885 0.42328618 0.84317118 0.038105269 + 50000 0.63073351 0.41426285 1.0449964 0.0015271048 + 51000 0.59357935 0.184222 0.77780136 0.015996218 + 52000 0.60608471 0.36247533 0.96856003 0.10984665 + 53000 0.5227842 0.27686739 0.79965159 0.02761699 + 54000 0.39435923 0.34197355 0.73633278 0.061183263 + 55000 0.46748455 0.34230903 0.80979358 0.077441382 + 56000 0.59819827 0.29212061 0.89031889 0.043772353 + 57000 0.61682559 0.32788566 0.94471124 0.03992069 + 58000 0.52702478 0.24891506 0.77593984 0.058480883 + 59000 0.66925719 0.4109031 1.0801603 0.072434423 + 60000 0.66807714 0.39233068 1.0604078 0.082370324 + 61000 0.5724275 0.43308567 1.0055132 0.0072945426 + 62000 0.49433556 0.38453743 0.87887299 0.0036097443 + 63000 0.57575143 0.54067119 1.1164226 0.073339638 + 64000 0.68045383 0.38246533 1.0629192 0.025314593 + 65000 0.59843527 0.42928622 1.0277215 -0.030096445 + 66000 0.60274797 0.50186417 1.1046121 0.069797184 + 67000 0.47450407 0.52689807 1.0014021 0.008758012 + 68000 0.5514135 0.64113187 1.1925454 0.093863314 + 69000 0.52008074 0.45749565 0.97757639 -0.066061381 + 70000 0.69042662 0.50416006 1.1945867 0.014128617 + 71000 0.63925854 0.35153425 0.9907928 -0.01134957 + 72000 0.52088835 0.47626986 0.99715821 0.10198133 + 73000 0.46333852 0.5515537 1.0148922 0.00060582772 + 74000 0.53481418 0.50409531 1.0389095 0.00919451 + 75000 0.67182749 0.50380162 1.1756291 0.043301985 + 76000 0.70492289 0.4112122 1.1161351 0.14880484 + 77000 0.59781817 0.50197661 1.0997948 -0.057111711 + 78000 0.51677429 0.4348232 0.95159749 -0.0074619446 + 79000 0.50663297 0.55000424 1.0566372 0.0052071216 + 80000 0.59392006 0.48394003 1.0778601 -0.018990234 + 81000 0.66323593 0.40358336 1.0668193 -0.02961345 + 82000 0.61596979 0.49177944 1.1077492 0.1314853 + 83000 0.63917554 0.61656584 1.2557414 0.11908351 + 84000 0.49305291 0.46161646 0.95466937 0.033558488 + 85000 0.52552044 0.54250555 1.068026 0.13015174 + 86000 0.55140914 0.38924725 0.94065638 0.047412499 + 87000 0.60952504 0.52603688 1.1355619 0.039230066 + 88000 0.50119735 0.547539 1.0487364 0.019659933 + 89000 0.40331401 0.50331134 0.90662535 -0.056906034 + 90000 0.47067839 0.51306911 0.9837475 0.11918166 + 91000 0.45564995 0.38693455 0.8425845 0.12040045 + 92000 0.64163032 0.34232532 0.98395564 0.0057051641 + 93000 0.70375593 0.53646186 1.2402178 0.16044241 + 94000 0.53378112 0.51971406 1.0534952 0.11389004 + 95000 0.47055342 0.50396004 0.97451346 0.079424215 + 96000 0.59543473 0.40204536 0.99748009 0.096813093 + 97000 0.64821917 0.50051728 1.1487365 0.054071312 + 98000 0.55723937 0.4945909 1.0518303 0.047316424 + 99000 0.56044424 0.50773312 1.0681774 0.0149959 + 100000 0.68254229 0.32704484 1.0095871 0.0069212661 +Loop time of 2.20043 on 4 procs for 100000 steps with 32 atoms + +Performance: 3926501.701 tau/day, 45445.622 timesteps/s +100.0% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.41008 | 0.41366 | 0.41719 | 0.4 | 18.80 +Neigh | 0.0027823 | 0.0030481 | 0.0034747 | 0.5 | 0.14 +Comm | 0.74581 | 0.7675 | 0.78684 | 2.0 | 34.88 +Output | 0.00082111 | 0.0010884 | 0.0016899 | 1.1 | 0.05 +Modify | 0.83828 | 0.85329 | 0.86656 | 1.4 | 38.78 +Other | | 0.1618 | | | 7.36 + +Nlocal: 8 ave 9 max 7 min +Histogram: 1 0 0 0 0 2 0 0 0 1 +Nghost: 12.75 ave 14 max 12 min +Histogram: 2 0 0 0 0 1 0 0 0 1 +Neighs: 11 ave 19 max 5 min +Histogram: 1 0 0 2 0 0 0 0 0 1 + +Total # of neighbors = 44 +Ave neighs/atom = 1.375 +Neighbor list builds = 2663 +Dangerous builds = 0 +Total wall time: 0:00:02 diff --git a/examples/body/molecule.cube b/examples/body/molecule.cube new file mode 100644 index 0000000000000000000000000000000000000000..2a8a7bca5023155889095b303b22d3aef201d2cc --- /dev/null +++ b/examples/body/molecule.cube @@ -0,0 +1,52 @@ +# 3d polygon body: cubes, moment of inertia I = m edge^2/ 6 + +1 atoms +3 79 body + +Coords + +1 0 0 0 + +Types + +1 1 + +Masses + +1 1.0 + +Body Integers + +8 12 6 + +Body Doubles + +0.667 0.667 0.667 0 0 0 +1 1 1 +1 -1 1 +-1 -1 1 +-1 1 1 +1 1 -1 +1 -1 -1 +-1 -1 -1 +-1 1 -1 +0 1 +1 2 +2 3 +3 0 +4 5 +5 6 +6 7 +7 4 +0 4 +1 5 +2 6 +3 7 +0 1 2 3 +4 5 6 7 +0 1 5 4 +1 2 6 5 +2 3 7 6 +3 0 4 7 +0.5 + diff --git a/examples/body/molecule.point3d b/examples/body/molecule.point3d new file mode 100644 index 0000000000000000000000000000000000000000..d22bfbe6fa9d58e0df10b2cba22dd1b402185e9a --- /dev/null +++ b/examples/body/molecule.point3d @@ -0,0 +1,26 @@ +# 2d polygon body: disks Izz = 1/2 m radius^2 + +1 atoms +3 10 body + +Coords + +1 0 0 0 + +Types + +1 1 + +Masses + +1 1.0 + +Body Integers + +1 0 0 + +Body Doubles + +1 1 1.125 0 0 0 +0 0 0 +3.0 diff --git a/examples/body/molecule.rod3d b/examples/body/molecule.rod3d new file mode 100644 index 0000000000000000000000000000000000000000..1c8a0a8cd3eecfa325d2a1c99a38edca26d0a789 --- /dev/null +++ b/examples/body/molecule.rod3d @@ -0,0 +1,27 @@ +# 2d polygon body: rods Izz = 1/12 m length^2 + +1 atoms +3 13 body + +Coords + +1 0 0 0 + +Types + +1 1 + +Masses + +1 1.0 + +Body Integers + +2 1 0 + +Body Doubles + +1 1 1.333 0 0 0 +-2 0 0 +2 0 0 +0.5 diff --git a/examples/body/molecule.tetra b/examples/body/molecule.tetra new file mode 100644 index 0000000000000000000000000000000000000000..d67ec906c64868521eaae59f8284697e18ff7d72 --- /dev/null +++ b/examples/body/molecule.tetra @@ -0,0 +1,39 @@ +# 3d polygon body: regular tetrahedra, moment of inertia I = m edge^2/ 20 + +1 atoms +3 47 body + +Coords + +1 0 0 0 + +Types + +1 1 + +Masses + +1 1.0 + +Body Integers + +4 6 4 + +Body Doubles + +0.4 0.4 0.4 0 0 0 +1 1 1 +1 -1 -1 +-1 1 -1 +-1 -1 1 +0 1 +0 2 +0 3 +1 2 +2 3 +3 1 +0 1 2 -1 +0 1 3 -1 +0 2 3 -1 +1 2 3 -1 +0.5 diff --git a/examples/gcmc/in.gcmc.co2 b/examples/gcmc/in.gcmc.co2 index bb6916fc4847df10707f2712c10955d921878601..b5e11d212dafb99f71acfc0a6870163dc9705723 100644 --- a/examples/gcmc/in.gcmc.co2 +++ b/examples/gcmc/in.gcmc.co2 @@ -59,7 +59,9 @@ timestep 1.0 # rigid constraints with thermostat fix myrigidnvt co2 rigid/nvt/small molecule temp ${temp} ${temp} 100 mol co2mol -fix_modify myrigidnvt dynamic/dof no + +# dynamically update fix rigid/nvt/small temperature ndof +fix_modify myrigidnvt dynamic/dof yes # gcmc @@ -82,7 +84,10 @@ variable tacc equal f_mygcmc[2]/(f_mygcmc[1]+0.1) variable iacc equal f_mygcmc[4]/(f_mygcmc[3]+0.1) variable dacc equal f_mygcmc[6]/(f_mygcmc[5]+0.1) variable racc equal f_mygcmc[8]/(f_mygcmc[7]+0.1) + +# dynamically update default temperature ndof compute_modify thermo_temp dynamic/dof yes + thermo_style custom step temp press pe ke density atoms v_iacc v_dacc v_tacc v_racc v_nC v_nO thermo 1000 diff --git a/examples/gcmc/in.gcmc.h2o b/examples/gcmc/in.gcmc.h2o index 2c03b1ab78cc9dad8626ef76241e2dae1ab37955..f689711c2147a621e3937948df7d7bb494135587 100644 --- a/examples/gcmc/in.gcmc.h2o +++ b/examples/gcmc/in.gcmc.h2o @@ -30,8 +30,6 @@ create_box 2 box & extra/angle/per/atom 1 & extra/special/per/atom 2 -# we can load multiple molecule templates, but don't have to use them all -molecule co2mol CO2.txt molecule h2omol H2O.txt create_atoms 0 box mol h2omol 464563 units box @@ -58,18 +56,24 @@ timestep 1.0 minimize 0.0 0.0 100 1000 reset_timestep 0 + # rigid constraints with thermostat -fix mynvt all nvt temp ${temp} ${temp} 100 -fix wshake all shake 0.0001 50 0 b 1 a 1 mol h2omol -# gcmc +fix mynvt h2o nvt temp ${temp} ${temp} 100 +fix wshake h2o shake 0.0001 50 0 b 1 a 1 mol h2omol +# important to make temperature dofs dynamic +compute_modify thermo_temp dynamic/dof yes +compute_modify mynvt_temp dynamic/dof yes run 1000 +reset_timestep 0 + +# gcmc variable tfac equal 5.0/3.0 # (3 trans + 2 rot)/(3 trans) -fix mygcmc all gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol & +fix mygcmc h2o gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol & h2omol tfac_insert ${tfac} group h2o shake wshake # atom counts @@ -87,7 +91,6 @@ variable tacc equal f_mygcmc[2]/(f_mygcmc[1]+0.1) variable iacc equal f_mygcmc[4]/(f_mygcmc[3]+0.1) variable dacc equal f_mygcmc[6]/(f_mygcmc[5]+0.1) variable racc equal f_mygcmc[8]/(f_mygcmc[7]+0.1) -compute_modify thermo_temp dynamic/dof yes thermo_style custom step temp press pe ke density atoms v_iacc v_dacc v_tacc v_racc v_nO v_nH thermo 1000 diff --git a/examples/gcmc/log.23Oct17.gcmc.co2.g++.4 b/examples/gcmc/log.23Oct17.gcmc.co2.g++.4 deleted file mode 100644 index b344c7b0685eb0e19deb26e363e9cc43cd292f24..0000000000000000000000000000000000000000 --- a/examples/gcmc/log.23Oct17.gcmc.co2.g++.4 +++ /dev/null @@ -1,192 +0,0 @@ -LAMMPS (23 Oct 2017) - using 1 OpenMP thread(s) per MPI task -# GCMC for CO2 molecular fluid, rigid/small/nvt dynamics -# Rigid CO2 TraPPE model -# [Potoff and J.I. Siepmann, Vapor-liquid equilibria of -# mixtures containing alkanes, carbon dioxide and -# nitrogen AIChE J., 47,1676-1682 (2001)]. - -# variables available on command line - -variable mu index -8.1 -variable disp index 0.5 -variable temp index 338.0 -variable lbox index 10.0 -variable spacing index 5.0 - -# global model settings - -units real -atom_style full -boundary p p p -pair_style lj/cut/coul/long 14 -pair_modify mix arithmetic tail yes -kspace_style ewald 0.0001 -bond_style harmonic -angle_style harmonic - -# box, start molecules on simple cubic lattice - -lattice sc ${spacing} -lattice sc 5.0 -Lattice spacing in x,y,z = 5 5 5 -region box block 0 ${lbox} 0 ${lbox} 0 ${lbox} units box -region box block 0 10.0 0 ${lbox} 0 ${lbox} units box -region box block 0 10.0 0 10.0 0 ${lbox} units box -region box block 0 10.0 0 10.0 0 10.0 units box -create_box 2 box bond/types 1 angle/types 1 extra/bond/per/atom 2 extra/angle/per/atom 1 extra/special/per/atom 2 -Created orthogonal box = (0 0 0) to (10 10 10) - 1 by 2 by 2 MPI processor grid -molecule co2mol CO2.txt -Read molecule co2mol: - 3 atoms with 2 types - 2 bonds with 1 types - 1 angles with 1 types - 0 dihedrals with 0 types - 0 impropers with 0 types -create_atoms 0 box mol co2mol 464563 units box -Created 24 atoms - Time spent = 0.00261331 secs - -# rigid CO2 TraPPE model - -pair_coeff 1 1 0.053649 2.8 -pair_coeff 2 2 0.156973 3.05 -bond_coeff 1 0 1.16 -angle_coeff 1 0 180 - -# masses - -mass 1 12.0107 -mass 2 15.9994 - -# MD settings - -group co2 type 1 2 -24 atoms in group co2 -neighbor 2.0 bin -neigh_modify every 1 delay 10 check yes -velocity all create ${temp} 54654 -velocity all create 338.0 54654 -timestep 1.0 - -# rigid constraints with thermostat - -fix myrigidnvt all rigid/nvt/small molecule temp ${temp} ${temp} 100 mol co2mol -fix myrigidnvt all rigid/nvt/small molecule temp 338.0 ${temp} 100 mol co2mol -fix myrigidnvt all rigid/nvt/small molecule temp 338.0 338.0 100 mol co2mol -8 rigid bodies with 24 atoms - 1.16 = max distance from body owner to body atom -fix_modify myrigidnvt dynamic/dof no - -# gcmc - -variable tfac equal 5.0/3.0 # (3 trans + 2 rot)/(3 trans) -fix mygcmc all gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt -fix mygcmc all gcmc 100 100 0 0 54341 338.0 ${mu} ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol co2mol tfac_insert 1.66666666666667 group co2 rigid myrigidnvt - -# atom counts - -variable carbon atom "type==1" -variable oxygen atom "type==2" -group carbon dynamic all var carbon -dynamic group carbon defined -group oxygen dynamic all var oxygen -dynamic group oxygen defined -variable nC equal count(carbon) -variable nO equal count(oxygen) - -# output - -variable tacc equal f_mygcmc[2]/(f_mygcmc[1]+0.1) -variable iacc equal f_mygcmc[4]/(f_mygcmc[3]+0.1) -variable dacc equal f_mygcmc[6]/(f_mygcmc[5]+0.1) -variable racc equal f_mygcmc[8]/(f_mygcmc[7]+0.1) -compute_modify thermo_temp dynamic/dof yes -thermo_style custom step temp press pe ke density atoms v_iacc v_dacc v_tacc v_racc v_nC v_nO -thermo 1000 - -# run - -run 20000 -Ewald initialization ... -WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) - G vector (1/distance) = 0.164636 - estimated absolute RMS force accuracy = 0.0332064 - estimated relative force accuracy = 0.0001 - KSpace vectors: actual max1d max3d = 16 2 62 - kxmax kymax kzmax = 2 2 2 -WARNING: Fix gcmc using full_energy option (../fix_gcmc.cpp:445) -0 atoms in group FixGCMC:gcmc_exclusion_group:mygcmc -0 atoms in group FixGCMC:rotation_gas_atoms:mygcmc -WARNING: Neighbor exclusions used with KSpace solver may give inconsistent Coulombic energies (../neighbor.cpp:472) -Neighbor list info ... - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 16 - ghost atom cutoff = 16 - binsize = 8, bins = 2 2 2 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/cut/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -Per MPI rank memory allocation (min/avg/max) = 15.41 | 15.41 | 15.41 Mbytes -Step Temp Press PotEng KinEng Density Atoms v_iacc v_dacc v_tacc v_racc v_nC v_nO - 0 386.52184 23582.465 -3.2433417 14.209828 0.5846359 24 0 0 0 0 8 16 -WARNING: Using kspace solver on system with no charge (../kspace.cpp:289) - 1000 335.66829 -3.7743052 -4.6268612 7.3374649 0.36539744 15 0.20601899 0.20787963 0 0 5 10 - 2000 459.73529 238.91592 -0.42937831 5.4815343 0.21923846 9 0.30392058 0.30105616 0 0 3 6 - 3000 255.47773 -479.67802 -36.850434 15.738299 0.95003334 39 0.22220744 0.2197582 0 0 13 26 - 4000 182.70803 -1059.2262 -43.044833 12.163134 1.0231128 42 0.16781689 0.16716177 0 0 14 28 - 5000 234.00907 -1821.0444 -46.04795 15.578317 1.0231128 42 0.13498091 0.13704201 0 0 14 28 - 6000 163.42759 -774.67294 -49.686261 11.691518 1.0961923 45 0.11401677 0.11296973 0 0 15 30 - 7000 171.64616 -355.23516 -49.323434 12.27947 1.0961923 45 0.098302308 0.098552065 0 0 15 30 - 8000 251.29791 -905.47863 -37.841209 15.480807 0.95003334 39 0.086856972 0.08638658 0 0 13 26 - 9000 143.69498 -849.95393 -49.073188 10.279858 1.0961923 45 0.078261061 0.077955243 0 0 15 30 - 10000 239.35727 -1158.1879 -43.562047 15.934355 1.0231128 42 0.070789792 0.070807529 0 0 14 28 - 11000 169.51213 -1574.7885 -51.125228 12.126803 1.0961923 45 0.065008734 0.06498871 0 0 15 30 - 12000 181.39739 160.11631 -46.850937 12.977068 1.0961923 45 0.059648717 0.059514803 0 0 15 30 - 13000 164.14601 -1107.7629 -50.726722 11.742914 1.0961923 45 0.055207333 0.055097701 0 0 15 30 - 14000 287.26285 418.51463 -41.664766 19.123497 1.0231128 42 0.051346789 0.051222285 0 0 14 28 - 15000 256.94593 -532.36615 -41.651618 17.105257 1.0231128 42 0.047870301 0.047861685 0 0 14 28 - 16000 166.92132 151.15933 -39.957018 11.11219 1.0231128 42 0.045205599 0.045042211 0 0 14 28 - 17000 163.22452 -1299.8119 -42.677558 10.866089 1.0231128 42 0.043122086 0.042993687 0 0 14 28 - 18000 158.01154 475.77329 -48.803162 11.304057 1.0961923 45 0.041016683 0.040647229 0 0 15 30 - 19000 138.49297 -1585.1508 -47.517099 9.9077098 1.0961923 45 0.038929287 0.038436764 0 0 15 30 - 20000 173.84439 -1362.6301 -53.002743 12.436731 1.0961923 45 0.036973919 0.036523816 0 0 15 30 -Loop time of 32.4481 on 4 procs for 20000 steps with 45 atoms - -Performance: 53.254 ns/day, 0.451 hours/ns, 616.369 timesteps/s -98.4% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 1.1687 | 1.6702 | 2.1864 | 30.8 | 5.15 -Bond | 0.018828 | 0.020035 | 0.020975 | 0.6 | 0.06 -Kspace | 0.57506 | 1.0931 | 1.5898 | 37.7 | 3.37 -Neigh | 0.068863 | 0.069524 | 0.070128 | 0.2 | 0.21 -Comm | 2.0735 | 2.0865 | 2.0979 | 0.7 | 6.43 -Output | 0.0025017 | 0.0025966 | 0.0027781 | 0.2 | 0.01 -Modify | 27.335 | 27.344 | 27.363 | 0.2 | 84.27 -Other | | 0.1621 | | | 0.50 - -Nlocal: 11.25 ave 14 max 8 min -Histogram: 1 0 0 0 0 1 1 0 0 1 -Nghost: 2639.75 ave 2656 max 2617 min -Histogram: 1 0 0 0 0 0 2 0 0 1 -Neighs: 4320 ave 5824 max 2201 min -Histogram: 1 0 0 0 0 0 1 1 0 1 - -Total # of neighbors = 17280 -Ave neighs/atom = 384 -Ave special neighs/atom = 2 -Neighbor list builds = 20394 -Dangerous builds = 0 - -Total wall time: 0:00:32 diff --git a/examples/gcmc/log.23Oct17.gcmc.h2o.g++.4 b/examples/gcmc/log.23Oct17.gcmc.h2o.g++.4 deleted file mode 100644 index 4eeab969ddc8c578baf028394c39064f2b57aace..0000000000000000000000000000000000000000 --- a/examples/gcmc/log.23Oct17.gcmc.h2o.g++.4 +++ /dev/null @@ -1,293 +0,0 @@ -LAMMPS (23 Oct 2017) - using 1 OpenMP thread(s) per MPI task -# fix gcmc example with fix shake - -# variables available on command line - -variable mu index -8.1 -variable disp index 0.5 -variable temp index 338.0 -variable lbox index 10.0 -variable spacing index 5.0 - -# global model settings - -units real -atom_style full -boundary p p p -pair_style lj/cut/coul/long 14 -pair_modify mix arithmetic tail yes -kspace_style ewald 0.0001 -bond_style harmonic -angle_style harmonic - -# box, start molecules on simple cubic lattice - -lattice sc ${spacing} -lattice sc 5.0 -Lattice spacing in x,y,z = 5 5 5 -region box block 0 ${lbox} 0 ${lbox} 0 ${lbox} units box -region box block 0 10.0 0 ${lbox} 0 ${lbox} units box -region box block 0 10.0 0 10.0 0 ${lbox} units box -region box block 0 10.0 0 10.0 0 10.0 units box -create_box 2 box bond/types 1 angle/types 1 extra/bond/per/atom 2 extra/angle/per/atom 1 extra/special/per/atom 2 -Created orthogonal box = (0 0 0) to (10 10 10) - 1 by 2 by 2 MPI processor grid - -# we can load multiple molecule templates, but don't have to use them all -molecule co2mol CO2.txt -Read molecule co2mol: - 3 atoms with 2 types - 2 bonds with 1 types - 1 angles with 1 types - 0 dihedrals with 0 types - 0 impropers with 0 types -molecule h2omol H2O.txt -Read molecule h2omol: - 3 atoms with 2 types - 2 bonds with 1 types - 1 angles with 1 types - 0 dihedrals with 0 types - 0 impropers with 0 types -create_atoms 0 box mol h2omol 464563 units box -Created 24 atoms - Time spent = 0.00174451 secs - -# rigid SPC/E water model - -pair_coeff 1 1 0.15535 3.166 -pair_coeff * 2 0.0000 0.0000 - -bond_coeff 1 1000 1.0 -angle_coeff 1 100 109.47 - -# masses - -mass 1 15.9994 -mass 2 1.0 - -# MD settings - -group h2o type 1 2 -24 atoms in group h2o -neighbor 2.0 bin -neigh_modify every 1 delay 1 check yes -velocity all create ${temp} 54654 -velocity all create 338.0 54654 -timestep 1.0 - -minimize 0.0 0.0 100 1000 -WARNING: Using 'neigh_modify every 1 delay 0 check yes' setting during minimization (../min.cpp:168) -Ewald initialization ... -WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) - G vector (1/distance) = 0.170448 - estimated absolute RMS force accuracy = 0.0332064 - estimated relative force accuracy = 0.0001 - KSpace vectors: actual max1d max3d = 16 2 62 - kxmax kymax kzmax = 2 2 2 -Neighbor list info ... - update every 1 steps, delay 0 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 16 - ghost atom cutoff = 16 - binsize = 8, bins = 2 2 2 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair lj/cut/coul/long, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -Per MPI rank memory allocation (min/avg/max) = 11.85 | 11.85 | 11.85 Mbytes -Step Temp E_pair E_mol TotEng Press - 0 338 -4.9610706 9.2628112e-06 18.211756 730.90791 - 100 338 -15.742442 0.14954269 7.579918 -637.49568 -Loop time of 0.0566185 on 4 procs for 100 steps with 24 atoms - -98.8% CPU use with 4 MPI tasks x 1 OpenMP threads - -Minimization stats: - Stopping criterion = max iterations - Energy initial, next-to-last, final = - -4.96106135393 -15.5388622715 -15.592899346 - Force two-norm initial, final = 15.474 18.1478 - Force max component initial, final = 5.80042 7.56514 - Final line search alpha, max atom move = 0.00151131 0.0114333 - Iterations, force evaluations = 100 328 - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.0085177 | 0.016083 | 0.026787 | 5.3 | 28.41 -Bond | 0.00022459 | 0.00031394 | 0.00037575 | 0.0 | 0.55 -Kspace | 0.0049062 | 0.014122 | 0.02044 | 5.0 | 24.94 -Neigh | 0 | 0 | 0 | 0.0 | 0.00 -Comm | 0.018515 | 0.02086 | 0.023246 | 1.2 | 36.84 -Output | 2.4796e-05 | 2.6047e-05 | 2.9802e-05 | 0.0 | 0.05 -Modify | 0 | 0 | 0 | 0.0 | 0.00 -Other | | 0.005213 | | | 9.21 - -Nlocal: 6 ave 8 max 3 min -Histogram: 1 0 0 0 1 0 0 0 0 2 -Nghost: 1722 ave 1725 max 1720 min -Histogram: 2 0 0 0 0 0 1 0 0 1 -Neighs: 1256.75 ave 2101 max 667 min -Histogram: 1 0 1 0 1 0 0 0 0 1 - -Total # of neighbors = 5027 -Ave neighs/atom = 209.458 -Ave special neighs/atom = 2 -Neighbor list builds = 0 -Dangerous builds = 0 -reset_timestep 0 -# rigid constraints with thermostat - -fix mynvt all nvt temp ${temp} ${temp} 100 -fix mynvt all nvt temp 338.0 ${temp} 100 -fix mynvt all nvt temp 338.0 338.0 100 -fix wshake all shake 0.0001 50 0 b 1 a 1 mol h2omol - 0 = # of size 2 clusters - 0 = # of size 3 clusters - 0 = # of size 4 clusters - 8 = # of frozen angles -# gcmc - - - -run 1000 -Ewald initialization ... -WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) - G vector (1/distance) = 0.170448 - estimated absolute RMS force accuracy = 0.0332064 - estimated relative force accuracy = 0.0001 - KSpace vectors: actual max1d max3d = 16 2 62 - kxmax kymax kzmax = 2 2 2 -Per MPI rank memory allocation (min/avg/max) = 11.6 | 11.6 | 11.6 Mbytes -Step Temp E_pair E_mol TotEng Press - 0 518.26667 -15.742442 0 7.4303753 -613.0781 - 1000 369.81793 -54.202686 0 -37.667331 294.98823 -Loop time of 0.154891 on 4 procs for 1000 steps with 24 atoms - -Performance: 557.810 ns/day, 0.043 hours/ns, 6456.135 timesteps/s -98.3% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.0154 | 0.028993 | 0.040525 | 5.5 | 18.72 -Bond | 0.00016999 | 0.0001902 | 0.00023293 | 0.0 | 0.12 -Kspace | 0.019093 | 0.028112 | 0.038976 | 4.3 | 18.15 -Neigh | 0.0020263 | 0.0022184 | 0.002408 | 0.4 | 1.43 -Comm | 0.04947 | 0.053627 | 0.058009 | 1.4 | 34.62 -Output | 2.5749e-05 | 2.7537e-05 | 3.2187e-05 | 0.0 | 0.02 -Modify | 0.035275 | 0.036815 | 0.038425 | 0.7 | 23.77 -Other | | 0.004909 | | | 3.17 - -Nlocal: 6 ave 8 max 3 min -Histogram: 1 0 0 0 0 0 1 0 1 1 -Nghost: 1331.5 ave 1369 max 1290 min -Histogram: 1 0 0 0 0 2 0 0 0 1 -Neighs: 1259.75 ave 1642 max 428 min -Histogram: 1 0 0 0 0 0 0 1 0 2 - -Total # of neighbors = 5039 -Ave neighs/atom = 209.958 -Ave special neighs/atom = 2 -Neighbor list builds = 27 -Dangerous builds = 0 - -variable tfac equal 5.0/3.0 # (3 trans + 2 rot)/(3 trans) -fix mygcmc all gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake -fix mygcmc all gcmc 100 100 0 0 54341 338.0 ${mu} ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol h2omol tfac_insert ${tfac} group h2o shake wshake -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol h2omol tfac_insert 1.66666666666667 group h2o shake wshake - -# atom counts - -variable oxygen atom "type==1" -variable hydrogen atom "type==2" -group oxygen dynamic all var oxygen -dynamic group oxygen defined -group hydrogen dynamic all var hydrogen -dynamic group hydrogen defined -variable nO equal count(oxygen) -variable nH equal count(hydrogen) - -# output - -variable tacc equal f_mygcmc[2]/(f_mygcmc[1]+0.1) -variable iacc equal f_mygcmc[4]/(f_mygcmc[3]+0.1) -variable dacc equal f_mygcmc[6]/(f_mygcmc[5]+0.1) -variable racc equal f_mygcmc[8]/(f_mygcmc[7]+0.1) -compute_modify thermo_temp dynamic/dof yes -thermo_style custom step temp press pe ke density atoms v_iacc v_dacc v_tacc v_racc v_nO v_nH -thermo 1000 - -# run - -run 20000 -Ewald initialization ... -WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) - G vector (1/distance) = 0.170448 - estimated absolute RMS force accuracy = 0.0332064 - estimated relative force accuracy = 0.0001 - KSpace vectors: actual max1d max3d = 16 2 62 - kxmax kymax kzmax = 2 2 2 -WARNING: Fix gcmc using full_energy option (../fix_gcmc.cpp:445) -0 atoms in group FixGCMC:gcmc_exclusion_group:mygcmc -0 atoms in group FixGCMC:rotation_gas_atoms:mygcmc -WARNING: Neighbor exclusions used with KSpace solver may give inconsistent Coulombic energies (../neighbor.cpp:472) -Per MPI rank memory allocation (min/avg/max) = 11.6 | 11.6 | 11.6 Mbytes -Step Temp Press PotEng KinEng Density Atoms v_iacc v_dacc v_tacc v_racc v_nO v_nH - 1000 369.81793 295.32434 -54.202686 16.535355 0.23910963 24 0 0 0 0 8 16 - 2000 84.544466 -2810.9047 -344.81664 14.364627 0.86677242 87 0.052198354 0.0099581757 0 0 29 58 - 3000 75.188527 -3688.256 -425.02228 14.567977 0.98632724 99 0.030546787 0.0049111089 0 0 33 66 - 4000 75.019396 -5669.3063 -427.69454 14.535207 0.98632724 99 0.019972039 0.0033375609 0 0 33 66 - 5000 90.415371 -2141.7596 -434.65925 17.518218 0.98632724 99 0.014909796 0.002514964 0 0 33 66 - 6000 78.212628 -943.75125 -428.80584 15.153904 0.98632724 99 0.01181521 0.0020316119 0 0 33 66 - 7000 71.754139 -2028.5122 -435.2139 13.902555 0.98632724 99 0.0099466198 0.0016755471 0 0 33 66 - 8000 84.446231 -1969.1657 -428.27313 16.361681 0.98632724 99 0.0084791272 0.0014442102 0 0 33 66 - 9000 70.952348 -2476.9812 -446.33824 14.170197 1.0162159 102 0.0077150892 0.0012556189 0 0 34 68 - 10000 71.418543 -1875.7083 -443.7214 14.263302 1.0162159 102 0.0068355714 0.0011197957 0 0 34 68 - 11000 86.094994 -4508.7581 -444.82687 17.194399 1.0162159 102 0.0061494515 0.0010082475 0 0 34 68 - 12000 81.906091 -1547.8105 -442.36719 16.357815 1.0162159 102 0.0055834729 0.00091775114 0 0 34 68 - 13000 57.221548 -4607.6222 -448.30939 11.42796 1.0162159 102 0.0051230355 0.00084046326 0 0 34 68 - 14000 61.288344 -2518.1779 -445.70636 12.240157 1.0162159 102 0.0047276997 0.00077602396 0 0 34 68 - 15000 85.787669 -2407.7111 -443.3834 17.133022 1.0162159 102 0.0043983485 0.00071920715 0 0 34 68 - 16000 74.845939 -3288.3403 -445.8247 14.947802 1.0162159 102 0.0042321884 0.00080654918 0 0 34 68 - 17000 73.835431 -1926.9566 -445.67476 14.745989 1.0162159 102 0.0039751059 0.00075470749 0 0 34 68 - 18000 72.634985 -3997.552 -447.2351 14.506243 1.0162159 102 0.0037395847 0.00071063946 0 0 34 68 - 19000 96.776472 -714.44132 -453.65552 19.904587 1.0461046 105 0.0036487876 0.00066993446 0 0 35 70 - 20000 75.470786 183.16972 -464.04688 15.522521 1.0461046 105 0.0034630763 0.00063350614 0 0 35 70 - 21000 65.658309 -773.41266 -466.27068 13.504331 1.0461046 105 0.003289113 0.00060198052 0 0 35 70 -Loop time of 84.4085 on 4 procs for 20000 steps with 105 atoms - -Performance: 20.472 ns/day, 1.172 hours/ns, 236.943 timesteps/s -98.8% CPU use with 4 MPI tasks x 1 OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 6.3571 | 9.7574 | 13.984 | 90.7 | 11.56 -Bond | 0.026374 | 0.031321 | 0.035482 | 2.1 | 0.04 -Kspace | 0.57402 | 4.7894 | 8.1754 | 129.0 | 5.67 -Neigh | 0.34952 | 0.34987 | 0.35021 | 0.1 | 0.41 -Comm | 2.4028 | 2.4228 | 2.4372 | 0.9 | 2.87 -Output | 0.0012269 | 0.0012826 | 0.0014355 | 0.2 | 0.00 -Modify | 66.819 | 66.828 | 66.837 | 0.1 | 79.17 -Other | | 0.2281 | | | 0.27 - -Nlocal: 26.25 ave 31 max 22 min -Histogram: 1 0 1 0 0 0 1 0 0 1 -Nghost: 6049.25 ave 6133 max 5962 min -Histogram: 1 0 0 0 1 0 1 0 0 1 -Neighs: 23613 ave 35083 max 14025 min -Histogram: 1 0 0 1 1 0 0 0 0 1 - -Total # of neighbors = 94452 -Ave neighs/atom = 899.543 -Ave special neighs/atom = 2 -Neighbor list builds = 20428 -Dangerous builds = 0 - -Total wall time: 0:01:24 diff --git a/examples/gcmc/log.23Oct17.gcmc.co2.g++.1 b/examples/gcmc/log.30Mar18.gcmc.co2.g++.1 similarity index 52% rename from examples/gcmc/log.23Oct17.gcmc.co2.g++.1 rename to examples/gcmc/log.30Mar18.gcmc.co2.g++.1 index e7b7c6afda0f28e4bb4b7c7dd5aaa5b86635d39d..46afe5ea2ae15af56f9fed995edd9462182f235e 100644 --- a/examples/gcmc/log.23Oct17.gcmc.co2.g++.1 +++ b/examples/gcmc/log.30Mar18.gcmc.co2.g++.1 @@ -1,4 +1,4 @@ -LAMMPS (23 Oct 2017) +LAMMPS (30 Mar 2018) using 1 OpenMP thread(s) per MPI task # GCMC for CO2 molecular fluid, rigid/small/nvt dynamics # Rigid CO2 TraPPE model @@ -39,14 +39,14 @@ Created orthogonal box = (0 0 0) to (10 10 10) 1 by 1 by 1 MPI processor grid molecule co2mol CO2.txt Read molecule co2mol: - 3 atoms with 2 types - 2 bonds with 1 types - 1 angles with 1 types - 0 dihedrals with 0 types - 0 impropers with 0 types + 3 atoms with max type 2 + 2 bonds with max type 1 + 1 angles with max type 1 + 0 dihedrals with max type 0 + 0 impropers with max type 0 create_atoms 0 box mol co2mol 464563 units box Created 24 atoms - Time spent = 0.00196958 secs + Time spent = 0.00241756 secs # rigid CO2 TraPPE model @@ -72,29 +72,31 @@ timestep 1.0 # rigid constraints with thermostat -fix myrigidnvt all rigid/nvt/small molecule temp ${temp} ${temp} 100 mol co2mol -fix myrigidnvt all rigid/nvt/small molecule temp 338.0 ${temp} 100 mol co2mol -fix myrigidnvt all rigid/nvt/small molecule temp 338.0 338.0 100 mol co2mol +fix myrigidnvt co2 rigid/nvt/small molecule temp ${temp} ${temp} 100 mol co2mol +fix myrigidnvt co2 rigid/nvt/small molecule temp 338.0 ${temp} 100 mol co2mol +fix myrigidnvt co2 rigid/nvt/small molecule temp 338.0 338.0 100 mol co2mol 8 rigid bodies with 24 atoms 1.16 = max distance from body owner to body atom -fix_modify myrigidnvt dynamic/dof no + +# dynamically update fix rigid/nvt/small temperature ndof +fix_modify myrigidnvt dynamic/dof yes # gcmc variable tfac equal 5.0/3.0 # (3 trans + 2 rot)/(3 trans) -fix mygcmc all gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt -fix mygcmc all gcmc 100 100 0 0 54341 338.0 ${mu} ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol co2mol tfac_insert 1.66666666666667 group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 338.0 ${mu} ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 338.0 -8.1 ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol co2mol tfac_insert 1.66666666666667 group co2 rigid myrigidnvt # atom counts variable carbon atom "type==1" variable oxygen atom "type==2" -group carbon dynamic all var carbon +group carbon dynamic co2 var carbon dynamic group carbon defined -group oxygen dynamic all var oxygen +group oxygen dynamic co2 var oxygen dynamic group oxygen defined variable nC equal count(carbon) variable nO equal count(oxygen) @@ -105,7 +107,10 @@ variable tacc equal f_mygcmc[2]/(f_mygcmc[1]+0.1) variable iacc equal f_mygcmc[4]/(f_mygcmc[3]+0.1) variable dacc equal f_mygcmc[6]/(f_mygcmc[5]+0.1) variable racc equal f_mygcmc[8]/(f_mygcmc[7]+0.1) + +# dynamically update default temperature ndof compute_modify thermo_temp dynamic/dof yes + thermo_style custom step temp press pe ke density atoms v_iacc v_dacc v_tacc v_racc v_nC v_nO thermo 1000 @@ -113,13 +118,13 @@ thermo 1000 run 20000 Ewald initialization ... -WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) + using 12-bit tables for long-range coulomb (../kspace.cpp:321) G vector (1/distance) = 0.164636 estimated absolute RMS force accuracy = 0.0332064 estimated relative force accuracy = 0.0001 KSpace vectors: actual max1d max3d = 16 2 62 kxmax kymax kzmax = 2 2 2 -WARNING: Fix gcmc using full_energy option (../fix_gcmc.cpp:445) +WARNING: Fix gcmc using full_energy option (../fix_gcmc.cpp:485) 0 atoms in group FixGCMC:gcmc_exclusion_group:mygcmc 0 atoms in group FixGCMC:rotation_gas_atoms:mygcmc WARNING: Neighbor exclusions used with KSpace solver may give inconsistent Coulombic energies (../neighbor.cpp:472) @@ -138,55 +143,54 @@ Neighbor list info ... Per MPI rank memory allocation (min/avg/max) = 15.62 | 15.62 | 15.62 Mbytes Step Temp Press PotEng KinEng Density Atoms v_iacc v_dacc v_tacc v_racc v_nC v_nO 0 364.27579 4238.8631 -9.6809388 13.391989 0.5846359 24 0 0 0 0 8 16 -WARNING: Using kspace solver on system with no charge (../kspace.cpp:289) - 1000 420.43475 1722.4052 -9.6956123 15.456579 0.5846359 24 0.20879341 0.20713005 0 0 8 16 - 2000 302.29516 -547.83641 -22.017674 14.11699 0.73079488 30 0.1742478 0.1678018 0 0 10 20 - 3000 316.6934 -1080.2672 -8.2218891 10.069364 0.51155641 21 0.13544917 0.13720634 0 0 7 14 - 4000 246.81618 -679.83642 -14.577244 10.29997 0.65771539 27 0.1568939 0.15860229 0 0 9 18 - 5000 260.22849 -896.29914 -16.097593 10.859684 0.65771539 27 0.13138744 0.13547049 0 0 9 18 - 6000 291.70796 -1521.99 -22.303136 13.622574 0.73079488 30 0.12615476 0.12717694 0 0 10 20 - 7000 236.02638 -599.92186 -27.580831 13.367447 0.87695385 36 0.119703 0.12145398 0 0 12 24 - 8000 321.45341 688.10577 -10.09204 11.817696 0.5846359 24 0.10917411 0.11032646 0 0 8 16 - 9000 502.85382 -302.31056 -0.22330142 0.99927447 0.073079488 3 0.1254105 0.12905828 0 0 1 2 - 10000 249.98239 -510.0091 -32.815145 15.399767 0.95003334 39 0.1274504 0.12875623 0 0 13 26 - 11000 247.59424 -1129.0274 -25.320205 12.792544 0.80387436 33 0.11739076 0.11916784 0 0 11 22 - 12000 0 -20.39554 -0.14872889 -0 0 0 0.1254933 0.12920375 0 0 0 0 - 13000 1272.2738 -474.79484 -0.29450485 8.8489483 0.14615898 6 0.13767133 0.14112496 0 0 2 4 - 14000 516.54246 -36.296516 -5.0012009 11.291243 0.36539744 15 0.15632744 0.15955377 0 0 5 10 - 15000 307.09233 1951.9301 -14.820362 12.815375 0.65771539 27 0.15393544 0.15716192 0 0 9 18 - 16000 198.31989 -559.48443 -30.459487 11.231925 0.87695385 36 0.1482565 0.15025652 0 0 12 24 - 17000 246.99311 657.85683 -18.579206 11.53442 0.73079488 30 0.14143958 0.14375423 0 0 10 20 - 18000 467.13468 167.03738 -1.0945268 5.569759 0.21923846 9 0.13847359 0.14098533 0 0 3 6 - 19000 359.54027 -1413.5407 -12.156233 13.217895 0.5846359 24 0.15169146 0.15294205 0 0 8 16 - 20000 227.79597 -1204.5652 -23.24144 10.637925 0.73079488 30 0.14917199 0.15022946 0 0 10 20 -Loop time of 20.6928 on 1 procs for 20000 steps with 30 atoms - -Performance: 83.507 ns/day, 0.287 hours/ns, 966.519 timesteps/s -99.2% CPU use with 1 MPI tasks x 1 OpenMP threads + 1000 330.05964 -376.0111 -13.936335 13.773831 0.65771539 27 0.21142067 0.21453147 0 0 9 18 + 2000 293.79769 -321.3209 -19.049256 13.720163 0.73079488 30 0.25170944 0.25426294 0 0 10 20 + 3000 348.9085 259.04079 -0.23347965 2.4267366 0.14615898 6 0.22016906 0.23200597 0 0 2 4 + 4000 360.54577 -329.12072 -16.584234 15.046059 0.65771539 27 0.19173099 0.19785362 0 0 9 18 + 5000 275.58628 -58.283006 -12.520856 11.500585 0.65771539 27 0.16490585 0.17329884 0 0 9 18 + 6000 338.59574 364.93514 -19.866569 17.494353 0.80387436 33 0.17971759 0.18331589 0 0 11 22 + 7000 286.11586 -1252.5069 -19.588667 13.361427 0.73079488 30 0.15729895 0.16220459 0 0 10 20 + 8000 454.86786 -642.89382 -20.818357 21.242037 0.73079488 30 0.15500235 0.15802382 0 0 10 20 + 9000 326.36695 -364.71382 -31.376162 18.48392 0.87695385 36 0.14203985 0.14510714 0 0 12 24 + 10000 348.46961 -387.75245 -21.068466 18.00451 0.80387436 33 0.14000907 0.14343389 0 0 11 22 + 11000 409.74257 -15.843895 -20.648252 21.170323 0.80387436 33 0.14689306 0.15117074 0 0 11 22 + 12000 523.93502 1003.0729 -6.0563102 14.055757 0.43847693 18 0.15337575 0.1580166 0 0 6 12 + 13000 278.14441 -717.1097 -2.3488496 4.6982087 0.29231795 12 0.15952356 0.16422306 0 0 4 8 + 14000 367.89375 1239.0841 -11.203323 13.524997 0.5846359 24 0.17002439 0.17460294 0 0 8 16 + 15000 197.05319 -471.14343 -9.3890758 6.2653668 0.51155641 21 0.17702612 0.18155802 0 0 7 14 + 16000 138.17147 -935.93437 -2.3846783 2.3338898 0.29231795 12 0.17884346 0.18268758 0 0 4 8 + 17000 245.61833 -166.1694 -5.0970057 5.3690384 0.36539744 15 0.18909252 0.19317817 0 0 5 10 + 18000 232.0142 -175.732 -14.320198 9.6822635 0.65771539 27 0.18977089 0.19280537 0 0 9 18 + 19000 362.01189 864.87258 -6.4515321 9.7117982 0.43847693 18 0.19207244 0.19488984 0 0 6 12 + 20000 441.19548 186.19779 -18.147268 20.603546 0.73079488 30 0.19713351 0.199073 0 0 10 20 +Loop time of 16.4949 on 1 procs for 20000 steps with 30 atoms + +Performance: 104.760 ns/day, 0.229 hours/ns, 1212.498 timesteps/s +99.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 2.5462 | 2.5462 | 2.5462 | 0.0 | 12.30 -Bond | 0.029783 | 0.029783 | 0.029783 | 0.0 | 0.14 -Kspace | 0.26167 | 0.26167 | 0.26167 | 0.0 | 1.26 -Neigh | 0.10705 | 0.10705 | 0.10705 | 0.0 | 0.52 -Comm | 0.23409 | 0.23409 | 0.23409 | 0.0 | 1.13 -Output | 0.0013416 | 0.0013416 | 0.0013416 | 0.0 | 0.01 -Modify | 17.458 | 17.458 | 17.458 | 0.0 | 84.37 -Other | | 0.05433 | | | 0.26 +Pair | 1.8955 | 1.8955 | 1.8955 | 0.0 | 11.49 +Bond | 0.026564 | 0.026564 | 0.026564 | 0.0 | 0.16 +Kspace | 0.21215 | 0.21215 | 0.21215 | 0.0 | 1.29 +Neigh | 0.088336 | 0.088336 | 0.088336 | 0.0 | 0.54 +Comm | 0.19828 | 0.19828 | 0.19828 | 0.0 | 1.20 +Output | 0.001025 | 0.001025 | 0.001025 | 0.0 | 0.01 +Modify | 14.024 | 14.024 | 14.024 | 0.0 | 85.02 +Other | | 0.0491 | | | 0.30 Nlocal: 30 ave 30 max 30 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 2310 ave 2310 max 2310 min +Nghost: 2094 ave 2094 max 2094 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 7736 ave 7736 max 7736 min +Neighs: 7664 ave 7664 max 7664 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Total # of neighbors = 7736 -Ave neighs/atom = 257.867 +Total # of neighbors = 7664 +Ave neighs/atom = 255.467 Ave special neighs/atom = 2 -Neighbor list builds = 20349 +Neighbor list builds = 20076 Dangerous builds = 0 -Total wall time: 0:00:20 +Total wall time: 0:00:16 diff --git a/examples/gcmc/log.30Mar18.gcmc.co2.g++.4 b/examples/gcmc/log.30Mar18.gcmc.co2.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..a824945cbfc79b18c8d023c8d9d766ae3abd439a --- /dev/null +++ b/examples/gcmc/log.30Mar18.gcmc.co2.g++.4 @@ -0,0 +1,131 @@ +LAMMPS (30 Mar 2018) + using 1 OpenMP thread(s) per MPI task +# GCMC for CO2 molecular fluid, rigid/small/nvt dynamics +# Rigid CO2 TraPPE model +# [Potoff and J.I. Siepmann, Vapor-liquid equilibria of +# mixtures containing alkanes, carbon dioxide and +# nitrogen AIChE J., 47,1676-1682 (2001)]. + +# variables available on command line + +variable mu index -8.1 +variable disp index 0.5 +variable temp index 338.0 +variable lbox index 10.0 +variable spacing index 5.0 + +# global model settings + +units real +atom_style full +boundary p p p +pair_style lj/cut/coul/long 14 +pair_modify mix arithmetic tail yes +kspace_style ewald 0.0001 +bond_style harmonic +angle_style harmonic + +# box, start molecules on simple cubic lattice + +lattice sc ${spacing} +lattice sc 5.0 +Lattice spacing in x,y,z = 5 5 5 +region box block 0 ${lbox} 0 ${lbox} 0 ${lbox} units box +region box block 0 10.0 0 ${lbox} 0 ${lbox} units box +region box block 0 10.0 0 10.0 0 ${lbox} units box +region box block 0 10.0 0 10.0 0 10.0 units box +create_box 2 box bond/types 1 angle/types 1 extra/bond/per/atom 2 extra/angle/per/atom 1 extra/special/per/atom 2 +Created orthogonal box = (0 0 0) to (10 10 10) + 1 by 2 by 2 MPI processor grid +molecule co2mol CO2.txt +Read molecule co2mol: + 3 atoms with max type 2 + 2 bonds with max type 1 + 1 angles with max type 1 + 0 dihedrals with max type 0 + 0 impropers with max type 0 +create_atoms 0 box mol co2mol 464563 units box +Created 24 atoms + Time spent = 0.00257635 secs + +# rigid CO2 TraPPE model + +pair_coeff 1 1 0.053649 2.8 +pair_coeff 2 2 0.156973 3.05 +bond_coeff 1 0 1.16 +angle_coeff 1 0 180 + +# masses + +mass 1 12.0107 +mass 2 15.9994 + +# MD settings + +group co2 type 1 2 +24 atoms in group co2 +neighbor 2.0 bin +neigh_modify every 1 delay 10 check yes +velocity all create ${temp} 54654 +velocity all create 338.0 54654 +timestep 1.0 + +# rigid constraints with thermostat + +fix myrigidnvt co2 rigid/nvt/small molecule temp ${temp} ${temp} 100 mol co2mol +fix myrigidnvt co2 rigid/nvt/small molecule temp 338.0 ${temp} 100 mol co2mol +fix myrigidnvt co2 rigid/nvt/small molecule temp 338.0 338.0 100 mol co2mol +8 rigid bodies with 24 atoms + 1.16 = max distance from body owner to body atom + +# dynamically update fix rigid/nvt/small temperature ndof +fix_modify myrigidnvt dynamic/dof yes + +# gcmc + +variable tfac equal 5.0/3.0 # (3 trans + 2 rot)/(3 trans) +fix mygcmc co2 gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 338.0 ${mu} ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 338.0 -8.1 ${disp} mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol co2mol tfac_insert ${tfac} group co2 rigid myrigidnvt +fix mygcmc co2 gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol co2mol tfac_insert 1.66666666666667 group co2 rigid myrigidnvt + +# atom counts + +variable carbon atom "type==1" +variable oxygen atom "type==2" +group carbon dynamic co2 var carbon +dynamic group carbon defined +group oxygen dynamic co2 var oxygen +dynamic group oxygen defined +variable nC equal count(carbon) +variable nO equal count(oxygen) + +# output + +variable tacc equal f_mygcmc[2]/(f_mygcmc[1]+0.1) +variable iacc equal f_mygcmc[4]/(f_mygcmc[3]+0.1) +variable dacc equal f_mygcmc[6]/(f_mygcmc[5]+0.1) +variable racc equal f_mygcmc[8]/(f_mygcmc[7]+0.1) + +# dynamically update default temperature ndof +compute_modify thermo_temp dynamic/dof yes + +thermo_style custom step temp press pe ke density atoms v_iacc v_dacc v_tacc v_racc v_nC v_nO +thermo 1000 + +# run + +run 20000 +Ewald initialization ... + using 12-bit tables for long-range coulomb (../kspace.cpp:321) + G vector (1/distance) = 0.164636 + estimated absolute RMS force accuracy = 0.0332064 + estimated relative force accuracy = 0.0001 + KSpace vectors: actual max1d max3d = 16 2 62 + kxmax kymax kzmax = 2 2 2 +WARNING: Fix gcmc using full_energy option (../fix_gcmc.cpp:485) +0 atoms in group FixGCMC:gcmc_exclusion_group:mygcmc +0 atoms in group FixGCMC:rotation_gas_atoms:mygcmc +ERROR: fix gcmc does currently not support full_energy option with molecules on more than 1 MPI process. (../fix_gcmc.cpp:721) +Last command: run 20000 diff --git a/examples/gcmc/log.23Oct17.gcmc.h2o.g++.1 b/examples/gcmc/log.30Mar18.gcmc.h2o.g++.1 similarity index 54% rename from examples/gcmc/log.23Oct17.gcmc.h2o.g++.1 rename to examples/gcmc/log.30Mar18.gcmc.h2o.g++.1 index bc7c3af4541e58dea45b6d917d2645a2fb64683c..2f11cb116e0df82c40d7fa8797bf3c559df1265e 100644 --- a/examples/gcmc/log.23Oct17.gcmc.h2o.g++.1 +++ b/examples/gcmc/log.30Mar18.gcmc.h2o.g++.1 @@ -1,4 +1,4 @@ -LAMMPS (23 Oct 2017) +LAMMPS (30 Mar 2018) using 1 OpenMP thread(s) per MPI task # fix gcmc example with fix shake @@ -34,24 +34,16 @@ create_box 2 box bond/types 1 Created orthogonal box = (0 0 0) to (10 10 10) 1 by 1 by 1 MPI processor grid -# we can load multiple molecule templates, but don't have to use them all -molecule co2mol CO2.txt -Read molecule co2mol: - 3 atoms with 2 types - 2 bonds with 1 types - 1 angles with 1 types - 0 dihedrals with 0 types - 0 impropers with 0 types molecule h2omol H2O.txt Read molecule h2omol: - 3 atoms with 2 types - 2 bonds with 1 types - 1 angles with 1 types - 0 dihedrals with 0 types - 0 impropers with 0 types + 3 atoms with max type 2 + 2 bonds with max type 1 + 1 angles with max type 1 + 0 dihedrals with max type 0 + 0 impropers with max type 0 create_atoms 0 box mol h2omol 464563 units box Created 24 atoms - Time spent = 0.00201297 secs + Time spent = 0.00204968 secs # rigid SPC/E water model @@ -79,7 +71,7 @@ timestep 1.0 minimize 0.0 0.0 100 1000 WARNING: Using 'neigh_modify every 1 delay 0 check yes' setting during minimization (../min.cpp:168) Ewald initialization ... -WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) + using 12-bit tables for long-range coulomb (../kspace.cpp:321) G vector (1/distance) = 0.170448 estimated absolute RMS force accuracy = 0.0332064 estimated relative force accuracy = 0.0001 @@ -101,9 +93,9 @@ Per MPI rank memory allocation (min/avg/max) = 11.88 | 11.88 | 11.88 Mbytes Step Temp E_pair E_mol TotEng Press 0 338 -4.1890564 9.2628112e-06 18.98377 739.06991 100 338 -30.182886 0.85607237 -6.1539961 -2535.3207 -Loop time of 0.0507543 on 1 procs for 100 steps with 24 atoms +Loop time of 0.0512006 on 1 procs for 100 steps with 24 atoms -99.6% CPU use with 1 MPI tasks x 1 OpenMP threads +99.5% CPU use with 1 MPI tasks x 1 OpenMP threads Minimization stats: Stopping criterion = max iterations @@ -117,14 +109,14 @@ Minimization stats: MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 0.042597 | 0.042597 | 0.042597 | 0.0 | 83.93 -Bond | 0.00047708 | 0.00047708 | 0.00047708 | 0.0 | 0.94 -Kspace | 0.0031135 | 0.0031135 | 0.0031135 | 0.0 | 6.13 +Pair | 0.04303 | 0.04303 | 0.04303 | 0.0 | 84.04 +Bond | 0.00047088 | 0.00047088 | 0.00047088 | 0.0 | 0.92 +Kspace | 0.0029728 | 0.0029728 | 0.0029728 | 0.0 | 5.81 Neigh | 0.00045919 | 0.00045919 | 0.00045919 | 0.0 | 0.90 -Comm | 0.0032997 | 0.0032997 | 0.0032997 | 0.0 | 6.50 -Output | 1.359e-05 | 1.359e-05 | 1.359e-05 | 0.0 | 0.03 +Comm | 0.003406 | 0.003406 | 0.003406 | 0.0 | 6.65 +Output | 2.265e-05 | 2.265e-05 | 2.265e-05 | 0.0 | 0.04 Modify | 0 | 0 | 0 | 0.0 | 0.00 -Other | | 0.0007946 | | | 1.57 +Other | | 0.0008392 | | | 1.64 Nlocal: 24 ave 24 max 24 min Histogram: 1 0 0 0 0 0 0 0 0 0 @@ -139,23 +131,26 @@ Ave special neighs/atom = 2 Neighbor list builds = 2 Dangerous builds = 0 reset_timestep 0 + # rigid constraints with thermostat -fix mynvt all nvt temp ${temp} ${temp} 100 -fix mynvt all nvt temp 338.0 ${temp} 100 -fix mynvt all nvt temp 338.0 338.0 100 -fix wshake all shake 0.0001 50 0 b 1 a 1 mol h2omol +fix mynvt h2o nvt temp ${temp} ${temp} 100 +fix mynvt h2o nvt temp 338.0 ${temp} 100 +fix mynvt h2o nvt temp 338.0 338.0 100 +fix wshake h2o shake 0.0001 50 0 b 1 a 1 mol h2omol 0 = # of size 2 clusters 0 = # of size 3 clusters 0 = # of size 4 clusters 8 = # of frozen angles -# gcmc +# important to make temperature dofs dynamic +compute_modify thermo_temp dynamic/dof yes +compute_modify mynvt_temp dynamic/dof yes run 1000 Ewald initialization ... -WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) + using 12-bit tables for long-range coulomb (../kspace.cpp:321) G vector (1/distance) = 0.170448 estimated absolute RMS force accuracy = 0.0332064 estimated relative force accuracy = 0.0001 @@ -164,23 +159,23 @@ WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) Per MPI rank memory allocation (min/avg/max) = 11.63 | 11.63 | 11.63 Mbytes Step Temp E_pair E_mol TotEng Press 0 518.26667 -30.182886 0 -7.0100684 993.1985 - 1000 326.9865 -62.258445 0 -47.638175 -5.3440813 -Loop time of 0.141449 on 1 procs for 1000 steps with 24 atoms + 1000 326.9865 -62.258443 0 -47.638173 -5.3439918 +Loop time of 0.139436 on 1 procs for 1000 steps with 24 atoms -Performance: 610.819 ns/day, 0.039 hours/ns, 7069.663 timesteps/s -99.7% CPU use with 1 MPI tasks x 1 OpenMP threads +Performance: 619.641 ns/day, 0.039 hours/ns, 7171.773 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 0.10788 | 0.10788 | 0.10788 | 0.0 | 76.27 -Bond | 0.00018954 | 0.00018954 | 0.00018954 | 0.0 | 0.13 -Kspace | 0.011867 | 0.011867 | 0.011867 | 0.0 | 8.39 -Neigh | 0.0045254 | 0.0045254 | 0.0045254 | 0.0 | 3.20 -Comm | 0.011277 | 0.011277 | 0.011277 | 0.0 | 7.97 -Output | 1.5497e-05 | 1.5497e-05 | 1.5497e-05 | 0.0 | 0.01 -Modify | 0.00383 | 0.00383 | 0.00383 | 0.0 | 2.71 -Other | | 0.001868 | | | 1.32 +Pair | 0.10588 | 0.10588 | 0.10588 | 0.0 | 75.94 +Bond | 0.00015759 | 0.00015759 | 0.00015759 | 0.0 | 0.11 +Kspace | 0.011144 | 0.011144 | 0.011144 | 0.0 | 7.99 +Neigh | 0.00459 | 0.00459 | 0.00459 | 0.0 | 3.29 +Comm | 0.011396 | 0.011396 | 0.011396 | 0.0 | 8.17 +Output | 1.7166e-05 | 1.7166e-05 | 1.7166e-05 | 0.0 | 0.01 +Modify | 0.0043328 | 0.0043328 | 0.0043328 | 0.0 | 3.11 +Other | | 0.001914 | | | 1.37 Nlocal: 24 ave 24 max 24 min Histogram: 1 0 0 0 0 0 0 0 0 0 @@ -194,13 +189,16 @@ Ave neighs/atom = 213 Ave special neighs/atom = 2 Neighbor list builds = 25 Dangerous builds = 0 +reset_timestep 0 + +# gcmc variable tfac equal 5.0/3.0 # (3 trans + 2 rot)/(3 trans) -fix mygcmc all gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake -fix mygcmc all gcmc 100 100 0 0 54341 338.0 ${mu} ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol h2omol tfac_insert ${tfac} group h2o shake wshake -fix mygcmc all gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol h2omol tfac_insert 1.66666666666667 group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 338.0 ${mu} ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 338.0 -8.1 ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol h2omol tfac_insert ${tfac} group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol h2omol tfac_insert 1.66666666666667 group h2o shake wshake # atom counts @@ -219,7 +217,6 @@ variable tacc equal f_mygcmc[2]/(f_mygcmc[1]+0.1) variable iacc equal f_mygcmc[4]/(f_mygcmc[3]+0.1) variable dacc equal f_mygcmc[6]/(f_mygcmc[5]+0.1) variable racc equal f_mygcmc[8]/(f_mygcmc[7]+0.1) -compute_modify thermo_temp dynamic/dof yes thermo_style custom step temp press pe ke density atoms v_iacc v_dacc v_tacc v_racc v_nO v_nH thermo 1000 @@ -227,67 +224,67 @@ thermo 1000 run 20000 Ewald initialization ... -WARNING: Using 12-bit tables for long-range coulomb (../kspace.cpp:321) + using 12-bit tables for long-range coulomb (../kspace.cpp:321) G vector (1/distance) = 0.170448 estimated absolute RMS force accuracy = 0.0332064 estimated relative force accuracy = 0.0001 KSpace vectors: actual max1d max3d = 16 2 62 kxmax kymax kzmax = 2 2 2 -WARNING: Fix gcmc using full_energy option (../fix_gcmc.cpp:445) +WARNING: Fix gcmc using full_energy option (../fix_gcmc.cpp:485) 0 atoms in group FixGCMC:gcmc_exclusion_group:mygcmc 0 atoms in group FixGCMC:rotation_gas_atoms:mygcmc WARNING: Neighbor exclusions used with KSpace solver may give inconsistent Coulombic energies (../neighbor.cpp:472) Per MPI rank memory allocation (min/avg/max) = 11.63 | 11.63 | 11.63 Mbytes Step Temp Press PotEng KinEng Density Atoms v_iacc v_dacc v_tacc v_racc v_nO v_nH - 1000 326.9865 -4.3509713 -62.258445 14.62027 0.23910963 24 0 0 0 0 8 16 - 2000 116.99793 -5344.1527 -286.61595 17.088682 0.74721761 75 0.048183096 0.013941446 0 0 25 50 - 3000 106.86746 -3920.4926 -361.60598 18.794545 0.89666113 90 0.035637919 0.012768883 0 0 30 60 - 4000 75.002668 540.46846 -414.8511 14.531966 0.98632724 99 0.025963651 0.0093451705 0 0 33 66 - 5000 79.924788 -2131.1173 -437.21216 15.962121 1.0162159 102 0.019879728 0.0070418993 0 0 34 68 - 6000 95.552773 -3647.0233 -438.24276 19.083253 1.0162159 102 0.015753613 0.0056885133 0 0 34 68 - 7000 79.501736 -2071.5369 -440.77351 15.877631 1.0162159 102 0.01326216 0.0046915318 0 0 34 68 - 8000 62.567091 -3102.9616 -442.21884 12.495541 1.0162159 102 0.011305503 0.0040437885 0 0 34 68 - 9000 68.324047 -3812.7866 -440.46835 13.645287 1.0162159 102 0.0099549538 0.0035157329 0 0 34 68 - 10000 83.857631 -2158.2659 -444.8183 16.747566 1.0162159 102 0.0088200922 0.0031354281 0 0 34 68 - 11000 68.350984 -2084.0789 -440.14081 13.650667 1.0162159 102 0.0081331455 0.0030247424 0 0 34 68 - 12000 76.867315 -1585.6723 -443.36199 15.3515 1.0162159 102 0.0073845932 0.0027532534 0 0 34 68 - 13000 59.74266 -2211.0211 -446.07791 11.931462 1.0162159 102 0.0067756276 0.0025213898 0 0 34 68 - 14000 81.154979 -907.0176 -441.53368 16.207808 1.0162159 102 0.0062527642 0.0023280719 0 0 34 68 - 15000 66.814346 -2804.5134 -455.80704 13.7421 1.0461046 105 0.0059590528 0.0021576214 0 0 35 70 - 16000 71.42983 -3930.4004 -458.43218 14.691394 1.0461046 105 0.0055547473 0.0020163729 0 0 35 70 - 17000 89.624855 -3569.8136 -455.18164 18.433672 1.0461046 105 0.0052173265 0.0018867687 0 0 35 70 - 18000 63.519962 -1882.8157 -456.58939 13.064525 1.0461046 105 0.0049082049 0.0017765986 0 0 35 70 - 19000 71.872698 -2243.5046 -454.93359 14.782481 1.0461046 105 0.0046439115 0.0016748361 0 0 35 70 - 20000 73.660765 -2285.3173 -476.35473 15.589381 1.0759934 108 0.0045124933 0.0015837653 0 0 36 72 - 21000 95.675868 987.92089 -475.46736 20.248603 1.0759934 108 0.004285814 0.0015049513 0 0 36 72 -Loop time of 220.662 on 1 procs for 20000 steps with 108 atoms - -Performance: 7.831 ns/day, 3.065 hours/ns, 90.637 timesteps/s -99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + 0 326.9865 -4.3508819 -62.258443 14.62027 0.23910963 24 0 0 0 0 8 16 + 1000 354.423 -3760.1354 -235.34169 51.766914 0.74721761 75 0.046175467 0.011949811 0 0 25 50 + 2000 335.19661 -3018.659 -270.44089 52.955344 0.80699501 81 0.026473882 0.0068755525 0 0 27 54 + 3000 333.47175 2657.2052 -336.48359 64.611037 0.98632724 99 0.022634978 0.0060076096 0 0 33 66 + 4000 321.48504 2055.4786 -345.06113 62.288579 0.98632724 99 0.016897769 0.0045269353 0 0 33 66 + 5000 333.45735 1918.5375 -368.5463 66.596193 1.0162159 102 0.013784412 0.0036569014 0 0 34 68 + 6000 301.90666 -698.74074 -371.32122 60.295069 1.0162159 102 0.01160439 0.0030159847 0 0 34 68 + 7000 336.42505 1537.9483 -378.51731 69.194524 1.0461046 105 0.010174953 0.0025995783 0 0 35 70 + 8000 338.95331 -1032.1084 -390.7067 69.714524 1.0461046 105 0.0089594585 0.002260114 0 0 35 70 + 9000 311.44605 -1494.7788 -383.9272 64.056945 1.0461046 105 0.007938083 0.0020156323 0 0 35 70 + 10000 330.70877 2082.4597 -366.57249 68.018822 1.0461046 105 0.0071412985 0.0018148454 0 0 35 70 + 11000 286.34718 2238.3752 -370.91119 60.601806 1.0759934 108 0.0066641451 0.0016519521 0 0 36 72 + 12000 371.02522 3048.7157 -398.51333 78.522854 1.0759934 108 0.0061145907 0.0015128339 0 0 36 72 + 13000 392.87611 4486.1134 -387.07077 83.147323 1.0759934 108 0.0056427384 0.0013968431 0 0 36 72 + 14000 332.80747 3586.2698 -406.12151 70.434545 1.0759934 108 0.0052496417 0.0012945729 0 0 36 72 + 15000 325.61844 4198.3864 -387.5733 68.913077 1.0759934 108 0.0048934679 0.0012098238 0 0 36 72 + 16000 254.10285 1560.976 -409.98615 55.292559 1.1058821 111 0.0047204383 0.0011320612 0 0 37 74 + 17000 367.46414 2750.8283 -412.22037 79.959878 1.1058821 111 0.0044407568 0.0010659592 0 0 37 74 + 18000 407.74215 2308.5027 -408.73046 88.724338 1.1058821 111 0.0042016342 0.0010049017 0 0 37 74 + 19000 341.53799 5777.9814 -407.00637 74.31837 1.1058821 111 0.0039877848 0.00095025921 0 0 37 74 + 20000 395.75303 3159.4677 -403.82798 86.115516 1.1058821 111 0.0037874635 0.00090297077 0 0 37 74 +Loop time of 231.351 on 1 procs for 20000 steps with 111 atoms + +Performance: 7.469 ns/day, 3.213 hours/ns, 86.449 timesteps/s +99.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 37.459 | 37.459 | 37.459 | 0.0 | 16.98 -Bond | 0.087067 | 0.087067 | 0.087067 | 0.0 | 0.04 -Kspace | 0.90234 | 0.90234 | 0.90234 | 0.0 | 0.41 -Neigh | 1.2299 | 1.2299 | 1.2299 | 0.0 | 0.56 -Comm | 0.95437 | 0.95437 | 0.95437 | 0.0 | 0.43 -Output | 0.0010636 | 0.0010636 | 0.0010636 | 0.0 | 0.00 -Modify | 179.85 | 179.85 | 179.85 | 0.0 | 81.51 -Other | | 0.1754 | | | 0.08 - -Nlocal: 108 ave 108 max 108 min +Pair | 39.09 | 39.09 | 39.09 | 0.0 | 16.90 +Bond | 0.092728 | 0.092728 | 0.092728 | 0.0 | 0.04 +Kspace | 0.87751 | 0.87751 | 0.87751 | 0.0 | 0.38 +Neigh | 3.9658 | 3.9658 | 3.9658 | 0.0 | 1.71 +Comm | 1.0608 | 1.0608 | 1.0608 | 0.0 | 0.46 +Output | 0.00096035 | 0.00096035 | 0.00096035 | 0.0 | 0.00 +Modify | 186.07 | 186.07 | 186.07 | 0.0 | 80.43 +Other | | 0.1892 | | | 0.08 + +Nlocal: 111 ave 111 max 111 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 7850 ave 7850 max 7850 min +Nghost: 8070 ave 8070 max 8070 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 99828 ave 99828 max 99828 min +Neighs: 105469 ave 105469 max 105469 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Total # of neighbors = 99828 -Ave neighs/atom = 924.333 +Total # of neighbors = 105469 +Ave neighs/atom = 950.171 Ave special neighs/atom = 2 -Neighbor list builds = 20439 +Neighbor list builds = 20910 Dangerous builds = 0 -Total wall time: 0:03:40 +Total wall time: 0:03:51 diff --git a/examples/gcmc/log.30Mar18.gcmc.h2o.g++.4 b/examples/gcmc/log.30Mar18.gcmc.h2o.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..c5caf57113594ce82deedc9f24df1e5b94b2fcd6 --- /dev/null +++ b/examples/gcmc/log.30Mar18.gcmc.h2o.g++.4 @@ -0,0 +1,237 @@ +LAMMPS (30 Mar 2018) + using 1 OpenMP thread(s) per MPI task +# fix gcmc example with fix shake + +# variables available on command line + +variable mu index -8.1 +variable disp index 0.5 +variable temp index 338.0 +variable lbox index 10.0 +variable spacing index 5.0 + +# global model settings + +units real +atom_style full +boundary p p p +pair_style lj/cut/coul/long 14 +pair_modify mix arithmetic tail yes +kspace_style ewald 0.0001 +bond_style harmonic +angle_style harmonic + +# box, start molecules on simple cubic lattice + +lattice sc ${spacing} +lattice sc 5.0 +Lattice spacing in x,y,z = 5 5 5 +region box block 0 ${lbox} 0 ${lbox} 0 ${lbox} units box +region box block 0 10.0 0 ${lbox} 0 ${lbox} units box +region box block 0 10.0 0 10.0 0 ${lbox} units box +region box block 0 10.0 0 10.0 0 10.0 units box +create_box 2 box bond/types 1 angle/types 1 extra/bond/per/atom 2 extra/angle/per/atom 1 extra/special/per/atom 2 +Created orthogonal box = (0 0 0) to (10 10 10) + 1 by 2 by 2 MPI processor grid + +molecule h2omol H2O.txt +Read molecule h2omol: + 3 atoms with max type 2 + 2 bonds with max type 1 + 1 angles with max type 1 + 0 dihedrals with max type 0 + 0 impropers with max type 0 +create_atoms 0 box mol h2omol 464563 units box +Created 24 atoms + Time spent = 0.00285625 secs + +# rigid SPC/E water model + +pair_coeff 1 1 0.15535 3.166 +pair_coeff * 2 0.0000 0.0000 + +bond_coeff 1 1000 1.0 +angle_coeff 1 100 109.47 + +# masses + +mass 1 15.9994 +mass 2 1.0 + +# MD settings + +group h2o type 1 2 +24 atoms in group h2o +neighbor 2.0 bin +neigh_modify every 1 delay 1 check yes +velocity all create ${temp} 54654 +velocity all create 338.0 54654 +timestep 1.0 + +minimize 0.0 0.0 100 1000 +WARNING: Using 'neigh_modify every 1 delay 0 check yes' setting during minimization (../min.cpp:168) +Ewald initialization ... + using 12-bit tables for long-range coulomb (../kspace.cpp:321) + G vector (1/distance) = 0.170448 + estimated absolute RMS force accuracy = 0.0332064 + estimated relative force accuracy = 0.0001 + KSpace vectors: actual max1d max3d = 16 2 62 + kxmax kymax kzmax = 2 2 2 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 16 + ghost atom cutoff = 16 + binsize = 8, bins = 2 2 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 11.85 | 11.85 | 11.85 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 338 -4.9610706 9.2628112e-06 18.211756 730.90791 + 100 338 -15.742442 0.14954269 7.579918 -637.49568 +Loop time of 0.0695416 on 4 procs for 100 steps with 24 atoms + +94.4% CPU use with 4 MPI tasks x 1 OpenMP threads + +Minimization stats: + Stopping criterion = max iterations + Energy initial, next-to-last, final = + -4.96106135393 -15.5388622715 -15.592899346 + Force two-norm initial, final = 15.474 18.1478 + Force max component initial, final = 5.80042 7.56514 + Final line search alpha, max atom move = 0.00151131 0.0114333 + Iterations, force evaluations = 100 328 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0093951 | 0.017625 | 0.028943 | 5.3 | 25.34 +Bond | 0.00035357 | 0.00042325 | 0.00055075 | 0.0 | 0.61 +Kspace | 0.00664 | 0.019695 | 0.029924 | 6.1 | 28.32 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.022505 | 0.02509 | 0.027851 | 1.3 | 36.08 +Output | 3.3855e-05 | 3.5942e-05 | 4.1485e-05 | 0.0 | 0.05 +Modify | 0 | 0 | 0 | 0.0 | 0.00 +Other | | 0.006672 | | | 9.59 + +Nlocal: 6 ave 8 max 3 min +Histogram: 1 0 0 0 1 0 0 0 0 2 +Nghost: 1722 ave 1725 max 1720 min +Histogram: 2 0 0 0 0 0 1 0 0 1 +Neighs: 1256.75 ave 2101 max 667 min +Histogram: 1 0 1 0 1 0 0 0 0 1 + +Total # of neighbors = 5027 +Ave neighs/atom = 209.458 +Ave special neighs/atom = 2 +Neighbor list builds = 0 +Dangerous builds = 0 +reset_timestep 0 + +# rigid constraints with thermostat + +fix mynvt h2o nvt temp ${temp} ${temp} 100 +fix mynvt h2o nvt temp 338.0 ${temp} 100 +fix mynvt h2o nvt temp 338.0 338.0 100 +fix wshake h2o shake 0.0001 50 0 b 1 a 1 mol h2omol + 0 = # of size 2 clusters + 0 = # of size 3 clusters + 0 = # of size 4 clusters + 8 = # of frozen angles + +# important to make temperature dofs dynamic + +compute_modify thermo_temp dynamic/dof yes +compute_modify mynvt_temp dynamic/dof yes + +run 1000 +Ewald initialization ... + using 12-bit tables for long-range coulomb (../kspace.cpp:321) + G vector (1/distance) = 0.170448 + estimated absolute RMS force accuracy = 0.0332064 + estimated relative force accuracy = 0.0001 + KSpace vectors: actual max1d max3d = 16 2 62 + kxmax kymax kzmax = 2 2 2 +Per MPI rank memory allocation (min/avg/max) = 11.6 | 11.6 | 11.6 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 518.26667 -15.742442 0 7.4303753 -613.0781 + 1000 369.81793 -54.202682 0 -37.667327 294.98832 +Loop time of 0.191619 on 4 procs for 1000 steps with 24 atoms + +Performance: 450.894 ns/day, 0.053 hours/ns, 5218.680 timesteps/s +96.4% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.015873 | 0.028989 | 0.040172 | 5.3 | 15.13 +Bond | 0.00024271 | 0.00027657 | 0.00034404 | 0.0 | 0.14 +Kspace | 0.022896 | 0.034492 | 0.047924 | 5.1 | 18.00 +Neigh | 0.0025764 | 0.0025961 | 0.0026152 | 0.0 | 1.35 +Comm | 0.068467 | 0.070095 | 0.071535 | 0.4 | 36.58 +Output | 4.8161e-05 | 5.0783e-05 | 5.7936e-05 | 0.0 | 0.03 +Modify | 0.049141 | 0.049894 | 0.05072 | 0.3 | 26.04 +Other | | 0.005226 | | | 2.73 + +Nlocal: 6 ave 8 max 3 min +Histogram: 1 0 0 0 0 0 1 0 1 1 +Nghost: 1331.5 ave 1369 max 1290 min +Histogram: 1 0 0 0 0 2 0 0 0 1 +Neighs: 1259.75 ave 1642 max 428 min +Histogram: 1 0 0 0 0 0 0 1 0 2 + +Total # of neighbors = 5039 +Ave neighs/atom = 209.958 +Ave special neighs/atom = 2 +Neighbor list builds = 27 +Dangerous builds = 0 +reset_timestep 0 + +# gcmc + +variable tfac equal 5.0/3.0 # (3 trans + 2 rot)/(3 trans) +fix mygcmc h2o gcmc 100 100 0 0 54341 ${temp} ${mu} ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 338.0 ${mu} ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 338.0 -8.1 ${disp} mol h2omol tfac_insert ${tfac} group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol h2omol tfac_insert ${tfac} group h2o shake wshake +fix mygcmc h2o gcmc 100 100 0 0 54341 338.0 -8.1 0.5 mol h2omol tfac_insert 1.66666666666667 group h2o shake wshake + +# atom counts + +variable oxygen atom "type==1" +variable hydrogen atom "type==2" +group oxygen dynamic all var oxygen +dynamic group oxygen defined +group hydrogen dynamic all var hydrogen +dynamic group hydrogen defined +variable nO equal count(oxygen) +variable nH equal count(hydrogen) + +# output + +variable tacc equal f_mygcmc[2]/(f_mygcmc[1]+0.1) +variable iacc equal f_mygcmc[4]/(f_mygcmc[3]+0.1) +variable dacc equal f_mygcmc[6]/(f_mygcmc[5]+0.1) +variable racc equal f_mygcmc[8]/(f_mygcmc[7]+0.1) +thermo_style custom step temp press pe ke density atoms v_iacc v_dacc v_tacc v_racc v_nO v_nH +thermo 1000 + +# run + +run 20000 +Ewald initialization ... + using 12-bit tables for long-range coulomb (../kspace.cpp:321) + G vector (1/distance) = 0.170448 + estimated absolute RMS force accuracy = 0.0332064 + estimated relative force accuracy = 0.0001 + KSpace vectors: actual max1d max3d = 16 2 62 + kxmax kymax kzmax = 2 2 2 +WARNING: Fix gcmc using full_energy option (../fix_gcmc.cpp:485) +0 atoms in group FixGCMC:gcmc_exclusion_group:mygcmc +0 atoms in group FixGCMC:rotation_gas_atoms:mygcmc +ERROR: fix gcmc does currently not support full_energy option with molecules on more than 1 MPI process. (../fix_gcmc.cpp:721) +Last command: run 20000 diff --git a/examples/gcmc/log.23Oct17.gcmc.lj.g++.1 b/examples/gcmc/log.30Mar18.gcmc.lj.g++.1 similarity index 52% rename from examples/gcmc/log.23Oct17.gcmc.lj.g++.1 rename to examples/gcmc/log.30Mar18.gcmc.lj.g++.1 index a38dfeee77897b740bfecfaedd046676a6ad56b3..20a25c0f954627cd3445b1fbb6406f5610fb8cd0 100644 --- a/examples/gcmc/log.23Oct17.gcmc.lj.g++.1 +++ b/examples/gcmc/log.30Mar18.gcmc.lj.g++.1 @@ -1,4 +1,4 @@ -LAMMPS (23 Oct 2017) +LAMMPS (30 Mar 2018) using 1 OpenMP thread(s) per MPI task # GCMC for LJ simple fluid, no dynamics # T = 2.0 @@ -36,17 +36,22 @@ Created orthogonal box = (0 0 0) to (5 5 5) pair_coeff * * 1.0 1.0 mass * 1.0 +# we recommend setting up a dedicated group for gcmc + +group gcmcgroup type 1 +0 atoms in group gcmcgroup + # gcmc -fix mygcmc all gcmc 1 100 100 1 29494 ${temp} ${mu} ${disp} -fix mygcmc all gcmc 1 100 100 1 29494 2.0 ${mu} ${disp} -fix mygcmc all gcmc 1 100 100 1 29494 2.0 -1.25 ${disp} -fix mygcmc all gcmc 1 100 100 1 29494 2.0 -1.25 1.0 +fix mygcmc gcmcgroup gcmc 1 100 100 1 29494 ${temp} ${mu} ${disp} +fix mygcmc gcmcgroup gcmc 1 100 100 1 29494 2.0 ${mu} ${disp} +fix mygcmc gcmcgroup gcmc 1 100 100 1 29494 2.0 -1.25 ${disp} +fix mygcmc gcmcgroup gcmc 1 100 100 1 29494 2.0 -1.25 1.0 # atom count variable type1 atom "type==1" -group type1 dynamic all var type1 +group type1 dynamic gcmcgroup var type1 dynamic group type1 defined variable n1 equal count(type1) @@ -97,40 +102,40 @@ Neighbor list info ... Per MPI rank memory allocation (min/avg/max) = 0.433 | 0.433 | 0.433 Mbytes Step Temp Press PotEng KinEng Density Atoms v_iacc v_dacc v_tacc v_rhoav v_pav v_muexav v_n1av 0 0 0 0 -0 0 0 0 0 0 0 0 0 0 - 1000 2.4038954 2.1735585 -2.7041368 3.5476844 0.496 62 0.064790036 0.06313096 0.1081294 0.54304 1.4513524 -0.025479219 64.98 - 2000 2.0461168 1.1913842 -2.9880181 3.0212194 0.512 64 0.067416408 0.066335853 0.11306166 0.52736 1.3274665 0.034690004 62.97 - 3000 1.7930436 1.3788681 -3.2212667 2.6505861 0.552 69 0.067733191 0.066877836 0.1133516 0.5344 1.3834744 0.0070582537 63.5 - 4000 1.981449 1.2541054 -2.8222868 2.9217977 0.472 59 0.068546991 0.067856412 0.11442807 0.52504 1.3815629 0.043309657 62.17 - 5000 2.0946818 1.0701629 -3.5213291 3.0977688 0.568 71 0.06813743 0.067567891 0.11342906 0.53824 1.4049567 -0.0054539777 64.15 - 6000 1.9793484 0.68224187 -3.410211 2.9247088 0.536 67 0.067797628 0.067420108 0.11295333 0.5384 1.401683 -0.0066894359 64.37 - 7000 2.1885798 1.6745012 -3.185499 3.2345922 0.544 68 0.068630201 0.068261832 0.11403705 0.5244 1.449239 0.045987399 62.33 - 8000 2.2175324 1.5897263 -3.078898 3.2759002 0.528 66 0.068180395 0.067899629 0.11332691 0.53928 1.5488388 -0.01075766 64.29 - 9000 1.8610779 1.0396231 -2.923262 2.7465908 0.496 62 0.068346453 0.068028117 0.1134132 0.52912 1.4352871 0.027082544 62.87 - 10000 2.1079271 1.1746643 -2.9112062 3.1091925 0.48 60 0.068352878 0.068054948 0.11335434 0.5316 1.4462327 0.018503094 63.2 -Loop time of 20.4081 on 1 procs for 10000 steps with 60 atoms - -Performance: 211680.375 tau/day, 490.001 timesteps/s -98.9% CPU use with 1 MPI tasks x 1 OpenMP threads + 1000 2.0603874 2.9024736 -3.2576986 3.0482443 0.584 73 0.069266074 0.066959582 0.11158434 0.53624 1.3978532 0.0014407586 64.19 + 2000 2.1586837 1.5581387 -2.8420766 3.1857993 0.496 62 0.068487803 0.067570935 0.1126652 0.53128 1.3713694 0.020274019 63.41 + 3000 2.4664064 0.65471138 -3.3428236 3.6435549 0.528 66 0.068182273 0.067547792 0.11226502 0.53472 1.3892234 0.0070204504 63.68 + 4000 1.8880496 1.4802782 -2.7846019 2.785647 0.488 61 0.068250075 0.067843541 0.11299989 0.52744 1.299496 0.033918563 63.1 + 5000 2.0578649 1.3204331 -3.5571862 3.0433213 0.568 71 0.067858571 0.067732262 0.11271981 0.5364 1.4237505 0.00065741209 64 + 6000 2.3627973 0.97064566 -3.1107668 3.4879388 0.504 63 0.067846204 0.06757018 0.11272207 0.5332 1.3945131 0.014216594 63.7 + 7000 1.6629817 0.98138972 -2.7780297 2.4514644 0.464 58 0.067451389 0.067269791 0.11263692 0.53688 1.4207486 -0.0012887793 63.82 + 8000 2.2135488 2.0878792 -3.0471089 3.2707661 0.536 67 0.067926473 0.067738312 0.1135594 0.52736 1.4348314 0.034380623 62.43 + 9000 1.8904287 0.52639383 -3.3548657 2.7920177 0.52 65 0.06818197 0.068003094 0.11356319 0.53072 1.4528143 0.021683615 63.23 + 10000 2.2353281 0.73275312 -3.2197702 3.3006016 0.512 64 0.068465059 0.068208485 0.11414748 0.52712 1.4143492 0.03497858 62.44 +Loop time of 21.2409 on 1 procs for 10000 steps with 64 atoms + +Performance: 203381.368 tau/day, 470.790 timesteps/s +99.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 0.46484 | 0.46484 | 0.46484 | 0.0 | 2.28 -Neigh | 1.1447 | 1.1447 | 1.1447 | 0.0 | 5.61 -Comm | 0.1696 | 0.1696 | 0.1696 | 0.0 | 0.83 -Output | 0.000319 | 0.000319 | 0.000319 | 0.0 | 0.00 -Modify | 18.607 | 18.607 | 18.607 | 0.0 | 91.17 -Other | | 0.02194 | | | 0.11 - -Nlocal: 60 ave 60 max 60 min +Pair | 0.45931 | 0.45931 | 0.45931 | 0.0 | 2.16 +Neigh | 1.1637 | 1.1637 | 1.1637 | 0.0 | 5.48 +Comm | 0.17294 | 0.17294 | 0.17294 | 0.0 | 0.81 +Output | 0.00027394 | 0.00027394 | 0.00027394 | 0.0 | 0.00 +Modify | 19.416 | 19.416 | 19.416 | 0.0 | 91.41 +Other | | 0.02919 | | | 0.14 + +Nlocal: 64 ave 64 max 64 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 663 ave 663 max 663 min +Nghost: 714 ave 714 max 714 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 2133 ave 2133 max 2133 min +Neighs: 2423 ave 2423 max 2423 min Histogram: 1 0 0 0 0 0 0 0 0 0 -Total # of neighbors = 2133 -Ave neighs/atom = 35.55 +Total # of neighbors = 2423 +Ave neighs/atom = 37.8594 Neighbor list builds = 10000 Dangerous builds = 0 -Total wall time: 0:00:20 +Total wall time: 0:00:21 diff --git a/examples/gcmc/log.23Oct17.gcmc.lj.g++.4 b/examples/gcmc/log.30Mar18.gcmc.lj.g++.4 similarity index 50% rename from examples/gcmc/log.23Oct17.gcmc.lj.g++.4 rename to examples/gcmc/log.30Mar18.gcmc.lj.g++.4 index ea7dc8116febce3c356ca8782599656cf6250986..819d0ed0869038a7b0bd61a2a7fab6038eff996c 100644 --- a/examples/gcmc/log.23Oct17.gcmc.lj.g++.4 +++ b/examples/gcmc/log.30Mar18.gcmc.lj.g++.4 @@ -1,4 +1,4 @@ -LAMMPS (23 Oct 2017) +LAMMPS (30 Mar 2018) using 1 OpenMP thread(s) per MPI task # GCMC for LJ simple fluid, no dynamics # T = 2.0 @@ -36,17 +36,22 @@ Created orthogonal box = (0 0 0) to (5 5 5) pair_coeff * * 1.0 1.0 mass * 1.0 +# we recommend setting up a dedicated group for gcmc + +group gcmcgroup type 1 +0 atoms in group gcmcgroup + # gcmc -fix mygcmc all gcmc 1 100 100 1 29494 ${temp} ${mu} ${disp} -fix mygcmc all gcmc 1 100 100 1 29494 2.0 ${mu} ${disp} -fix mygcmc all gcmc 1 100 100 1 29494 2.0 -1.25 ${disp} -fix mygcmc all gcmc 1 100 100 1 29494 2.0 -1.25 1.0 +fix mygcmc gcmcgroup gcmc 1 100 100 1 29494 ${temp} ${mu} ${disp} +fix mygcmc gcmcgroup gcmc 1 100 100 1 29494 2.0 ${mu} ${disp} +fix mygcmc gcmcgroup gcmc 1 100 100 1 29494 2.0 -1.25 ${disp} +fix mygcmc gcmcgroup gcmc 1 100 100 1 29494 2.0 -1.25 1.0 # atom count variable type1 atom "type==1" -group type1 dynamic all var type1 +group type1 dynamic gcmcgroup var type1 dynamic group type1 defined variable n1 equal count(type1) @@ -97,40 +102,40 @@ Neighbor list info ... Per MPI rank memory allocation (min/avg/max) = 0.4477 | 0.4477 | 0.4477 Mbytes Step Temp Press PotEng KinEng Density Atoms v_iacc v_dacc v_tacc v_rhoav v_pav v_muexav v_n1av 0 0 0 0 -0 0 0 0 0 0 0 0 0 0 - 1000 1.956397 1.7699101 -2.7889468 2.8864874 0.488 61 0.068894746 0.067229075 0.1141726 0.53288 1.3832798 0.013392866 63.44 - 2000 2.040943 0.56060899 -2.8001647 3.0077055 0.456 57 0.069858594 0.068831934 0.11629114 0.5232 1.3587174 0.049995794 62.19 - 3000 2.0004866 1.5736515 -3.3098044 2.9572411 0.552 69 0.069594029 0.068727791 0.11592543 0.53096 1.4129434 0.020022578 63.23 - 4000 2.1127942 2.642809 -2.8865084 3.1211733 0.528 66 0.070268697 0.069533235 0.11693806 0.52424 1.3444615 0.046884078 62.57 - 5000 2.3663648 1.354269 -3.1917346 3.4957662 0.528 66 0.070519633 0.069960064 0.11710321 0.52688 1.3595814 0.036270867 62.56 - 6000 1.9224136 0.82756699 -3.1965 2.839257 0.52 65 0.06985018 0.069474645 0.11628632 0.536 1.47062 0.00141549 63.76 - 7000 2.0266192 1.5593811 -2.9972341 2.9931606 0.52 65 0.070244693 0.069880791 0.11666541 0.52528 1.3246332 0.040754793 62.2 - 8000 1.7790467 1.8680568 -2.8028819 2.6275151 0.52 65 0.070454494 0.070172368 0.11736806 0.524 1.4213649 0.047985191 62.03 - 9000 1.7968847 1.3195587 -3.261001 2.6550983 0.536 67 0.069952011 0.069618327 0.11650087 0.53904 1.4624201 -0.01069837 64.36 - 10000 2.1566109 1.1015729 -3.4999837 3.1880335 0.552 69 0.069603309 0.069284134 0.11625548 0.53128 1.3587249 0.02075238 63.24 -Loop time of 23.8213 on 4 procs for 10000 steps with 69 atoms - -Performance: 181350.388 tau/day, 419.793 timesteps/s -97.6% CPU use with 4 MPI tasks x 1 OpenMP threads + 1000 2.4378552 1.9014939 -3.23439 3.6030066 0.544 68 0.073050445 0.070796636 0.11934255 0.52552 1.3006333 0.04152087 62.56 + 2000 1.9339159 1.0360287 -3.5001391 2.8594327 0.56 70 0.069588893 0.068587488 0.11319584 0.542 1.4012888 -0.020696665 64.56 + 3000 1.8891807 2.2857708 -3.3755633 2.7954769 0.592 74 0.068329031 0.067640916 0.11187803 0.53536 1.3380926 0.0062359288 64.21 + 4000 2.0436517 1.7600211 -3.4067452 3.0229014 0.576 72 0.067464211 0.067003868 0.11060324 0.54144 1.4484907 -0.016246603 64.75 + 5000 2.1512268 1.0811095 -3.2418366 3.1786785 0.536 67 0.066830654 0.066717982 0.1094094 0.54368 1.4962073 -0.025791643 65.04 + 6000 2.128931 1.5444487 -3.1904474 3.1450116 0.528 66 0.067479197 0.067193531 0.1104464 0.53112 1.4247377 0.019908014 63.01 + 7000 1.8194311 0.72981963 -3.6601329 2.6912418 0.576 72 0.068131849 0.067910074 0.11182024 0.51968 1.4517098 0.063444774 61.72 + 8000 1.947817 0.74570466 -3.0935809 2.8753489 0.504 63 0.068034071 0.067855883 0.11217045 0.53304 1.4924302 0.012298733 63.45 + 9000 1.8942389 1.3367401 -2.8925016 2.7962574 0.504 63 0.068117479 0.067943081 0.11236152 0.536 1.4091106 0.0011494886 63.73 + 10000 2.2092799 0.95517153 -2.9117781 3.2586879 0.48 60 0.068264792 0.068016591 0.11310789 0.52272 1.4774174 0.051284873 62.04 +Loop time of 29.2417 on 4 procs for 10000 steps with 60 atoms + +Performance: 147733.999 tau/day, 341.977 timesteps/s +96.3% CPU use with 4 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 0.10935 | 0.11844 | 0.12741 | 2.1 | 0.50 -Neigh | 0.33 | 0.33945 | 0.35091 | 1.6 | 1.42 -Comm | 0.49249 | 0.51745 | 0.53856 | 2.7 | 2.17 -Output | 0.00053334 | 0.0007208 | 0.0007906 | 0.0 | 0.00 -Modify | 22.82 | 22.822 | 22.825 | 0.0 | 95.81 -Other | | 0.02289 | | | 0.10 - -Nlocal: 17.25 ave 23 max 10 min -Histogram: 1 0 0 0 0 0 2 0 0 1 -Nghost: 506.5 ave 519 max 490 min -Histogram: 1 0 1 0 0 0 0 0 0 2 -Neighs: 705.75 ave 998 max 369 min -Histogram: 1 0 0 0 0 1 1 0 0 1 - -Total # of neighbors = 2823 -Ave neighs/atom = 40.913 +Pair | 0.11648 | 0.1221 | 0.13001 | 1.5 | 0.42 +Neigh | 0.34452 | 0.35618 | 0.36328 | 1.2 | 1.22 +Comm | 0.63561 | 0.65617 | 0.67542 | 1.8 | 2.24 +Output | 0.00056601 | 0.00069755 | 0.00074744 | 0.0 | 0.00 +Modify | 28.069 | 28.076 | 28.082 | 0.1 | 96.01 +Other | | 0.03094 | | | 0.11 + +Nlocal: 15 ave 16 max 14 min +Histogram: 2 0 0 0 0 0 0 0 0 2 +Nghost: 437 ave 446 max 431 min +Histogram: 2 0 0 0 0 0 1 0 0 1 +Neighs: 529 ave 595 max 437 min +Histogram: 1 0 0 0 1 0 0 0 0 2 + +Total # of neighbors = 2116 +Ave neighs/atom = 35.2667 Neighbor list builds = 10000 Dangerous builds = 0 -Total wall time: 0:00:23 +Total wall time: 0:00:29 diff --git a/examples/latte/data.ch4 b/examples/latte/data.ch4 new file mode 100644 index 0000000000000000000000000000000000000000..fc8d48d244305c0b4f64c523bb7021418ea4c439 --- /dev/null +++ b/examples/latte/data.ch4 @@ -0,0 +1,23 @@ + LAMMPS Description + + 5 atoms + + 2 atom types + + 0.0000000000000000 19.523000000000000 xlo xhi + 0.0000000000000000 12.757999999999999 ylo yhi + 0.0000000000000000 11.692000000000000 zlo zhi + 0.0000000000000000 0.0000000000000000 0.0000000000000000 xy xz yz + + Masses + + 1 12.010000000000000 + 2 1.0078250169754028 + + Atoms + + 1 1 1 0.0 -9.16600 2.05200 0.00000 + 2 1 2 0.0 -8.09600 2.05200 0.00000 + 3 1 2 0.0 -9.52300 2.75800 -0.72000 + 4 1 2 0.0 -9.52300 2.32200 0.97200 + 5 1 2 0.0 -9.52300 1.07500 -0.25200 diff --git a/examples/latte/data.graphene b/examples/latte/data.graphene new file mode 100644 index 0000000000000000000000000000000000000000..5455a2eeb6cc1756e6c5ad5af01069aa5f01d866 --- /dev/null +++ b/examples/latte/data.graphene @@ -0,0 +1,49 @@ + LAMMPS Description + + 32 atoms + + 1 atom types + + 0.0000000000000000 10.000000000000000 xlo xhi + 0.0000000000000000 8.0000000000000000 ylo yhi + 0.0000000000000000 20.000000000000000 zlo zhi + 4.8985871965894128E-016 1.2246467991473533E-015 1.2246467991473533E-015 xy xz yz + + Masses + + 1 12.010000000000000 + + Atoms + + 1 1 1 0.0 4.93100 4.25000 0.00500 + 2 1 1 0.0 8.62100 2.12100 0.14000 + 3 1 1 0.0 3.70700 2.12600 0.14700 + 4 1 1 0.0 7.38200 4.25400 0.07800 + 5 1 1 0.0 2.47900 4.25400 0.08000 + 6 1 1 0.0 6.15800 6.37400 -0.01000 + 7 1 1 0.0 1.23700 6.38300 0.06600 + 8 1 1 0.0 1.24000 2.12100 0.14600 + 9 1 1 0.0 6.15500 2.12600 0.12900 + 10 1 1 0.0 0.00700 4.25200 0.12200 + 11 1 1 0.0 8.62100 6.38500 0.04100 + 12 1 1 0.0 3.70000 6.37400 -0.01000 + 13 1 1 0.0 0.00600 1.41600 0.13000 + 14 1 1 0.0 4.93000 1.40800 0.14700 + 15 1 1 0.0 8.61800 3.54600 0.11500 + 16 1 1 0.0 3.70800 3.55300 0.08400 + 17 1 1 0.0 7.39400 5.68000 0.03500 + 18 1 1 0.0 2.46500 5.68000 0.03500 + 19 1 1 0.0 6.16000 7.80500 0.02700 + 20 1 1 0.0 1.23800 7.81100 0.06000 + 21 1 1 0.0 2.47300 1.41800 0.16100 + 22 1 1 0.0 7.38900 1.41700 0.14800 + 23 1 1 0.0 1.24200 3.54700 0.12600 + 24 1 1 0.0 6.15300 3.55300 0.07400 + 25 1 1 0.0 0.00700 5.67800 0.09700 + 26 1 1 0.0 4.93100 5.66800 -0.03100 + 27 1 1 0.0 8.62000 7.81300 0.03900 + 28 1 1 0.0 3.70100 7.80200 0.03700 + 29 1 1 0.0 0.00700 -0.01000 0.08900 + 30 1 1 0.0 4.93100 -0.01500 0.16100 + 31 1 1 0.0 2.47300 -0.01200 0.14400 + 32 1 1 0.0 7.38900 -0.01300 0.14800 diff --git a/examples/latte/in.graphene.boxrel b/examples/latte/in.graphene.boxrel new file mode 100644 index 0000000000000000000000000000000000000000..721b7f014f0981bdc8672e2d1bdc2f7bb9f6932d --- /dev/null +++ b/examples/latte/in.graphene.boxrel @@ -0,0 +1,44 @@ +# Simple water model with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.graphene + +# replicate system if requested + +variable x index 1 +variable y index 1 +variable z index 1 + +variable nrep equal v_x*v_y*v_z +if "${nrep} > 1" then "replicate $x $y $z" + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all box/relax iso 0.0 vmax 0.001 + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom etotal + +# minimization + +thermo 1 +fix 3 all print 1 "Total Energy =" +min_style cg +min_modify dmax 0.1 +min_modify line quadratic +minimize 1.0e-4 1.0e-4 10000 10000 diff --git a/examples/latte/in.latte.multiple b/examples/latte/in.latte.multiple new file mode 100644 index 0000000000000000000000000000000000000000..4888d14ebc6fe862b8d98e2520879cdd11488f01 --- /dev/null +++ b/examples/latte/in.latte.multiple @@ -0,0 +1,65 @@ +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.water + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# dynamics + +thermo 10 +run 10 + +# Clear up previus calculation + +clear + +# simple CH4 molecule with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.ch4 + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# dynamics + +thermo 10 +run 10 + diff --git a/examples/latte/in.latte.sucrose.md b/examples/latte/in.latte.sucrose.md new file mode 100644 index 0000000000000000000000000000000000000000..a10dae5c5ea9451d7733de60d695d559cd340b78 --- /dev/null +++ b/examples/latte/in.latte.sucrose.md @@ -0,0 +1,40 @@ +# simple sucrose model with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.sucrose + +# replicate system if requested + +variable x index 1 +variable y index 1 +variable z index 1 + +variable nrep equal v_x*v_y*v_z +if "${nrep} > 1" then "replicate $x $y $z" + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# dynamics + +thermo 10 +run 100 diff --git a/examples/latte/in.latte.water.md b/examples/latte/in.latte.water.md new file mode 100644 index 0000000000000000000000000000000000000000..e1185602b43ec5990e27f904cb97cfc2f725a3df --- /dev/null +++ b/examples/latte/in.latte.water.md @@ -0,0 +1,40 @@ +# simple water model with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.water + +# replicate system if requested + +variable x index 1 +variable y index 1 +variable z index 1 + +variable nrep equal v_x*v_y*v_z +if "${nrep} > 1" then "replicate $x $y $z" + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# dynamics + +thermo 10 +run 100 diff --git a/examples/latte/in.latte.water.min b/examples/latte/in.latte.water.min index 503e45a300b25802bde6ae646d317c15774dd355..173afee96a8b8d5987a7bd92ebda8ddb24996408 100644 --- a/examples/latte/in.latte.water.min +++ b/examples/latte/in.latte.water.min @@ -37,5 +37,6 @@ thermo_style custom step temp pe etotal press # minimization thermo 10 -min_style fire -minimize 1.0e-9 1.0e-9 500 500 + +min_style fire +minimize 1.0e-4 1.0e-4 500 500 diff --git a/examples/latte/latte.in b/examples/latte/latte.in index b8b214b78b4847ee4a58c0a03e6f8a94adc78e4b..f927313457cafdf39b762db9b73ec10dd77a82ab 100644 --- a/examples/latte/latte.in +++ b/examples/latte/latte.in @@ -9,9 +9,8 @@ LATTE INPUT FILE #General controls CONTROL{ - xControl= 1 + XCONTROL= 1 BASISTYPE= NONORTHO - COORDSFILE= "./coords.dat" PARAMPATH= "./TBparam" KBT= 0.0 ENTROPYKIND= 1 @@ -22,9 +21,8 @@ CONTROL{ BREAKTOL= 1.0E-6 MINSP2ITER= 22 SP2CONV= REL FULLQCONV= 1 QITER= 3 QMIX= 0.25 SPINMIX= 0.25 MDMIX= 0.25 - SPARSEON= 1 THRESHOLDON= 1 NUMTHRESH= 1.0e-6 FILLINSTOP= 100 BLKSZ= 4 + SPARSEON= 0 THRESHOLDON= 1 NUMTHRESH= 1.0e-6 FILLINSTOP= 100 BLKSZ= 4 MSPARSE= 1500 - RELAX= 0 RELAXTYPE= SD MAXITER= 100000 RLXFTOL= 0.0000001 SKIN= 1.0 CHARGE= 0 XBO= 1 @@ -32,9 +30,3 @@ CONTROL{ XBODISORDER= 5 KON= 0 } - -#Controls for QMD (if using lammps MAXITER must be set to -1) -MDCONTROL{ - MAXITER= -1 -} - diff --git a/examples/latte/log.19Sep17.latte.sucrose.g++.1 b/examples/latte/log.19Sep17.latte.sucrose.md.g++.1 similarity index 100% rename from examples/latte/log.19Sep17.latte.sucrose.g++.1 rename to examples/latte/log.19Sep17.latte.sucrose.md.g++.1 diff --git a/examples/latte/log.19Sep17.latte.water.g++.1 b/examples/latte/log.19Sep17.latte.water.md.g++.1 similarity index 100% rename from examples/latte/log.19Sep17.latte.water.g++.1 rename to examples/latte/log.19Sep17.latte.water.md.g++.1 diff --git a/examples/latte/log.19Sep17.latte.water.min.g++.1 b/examples/latte/log.19Sep17.latte.water.min.g++.1 deleted file mode 100644 index 4b96bd26682bcb3162250bc48ecd8cd3eb60387d..0000000000000000000000000000000000000000 --- a/examples/latte/log.19Sep17.latte.water.min.g++.1 +++ /dev/null @@ -1,152 +0,0 @@ -LAMMPS (1 Sep 2017) -# simple water model with LATTE - -units metal -atom_style full -atom_modify sort 0 0.0 # turn off sorting of the coordinates - -read_data data.water - orthogonal box = (0 0 0) to (6.267 6.267 6.267) - 1 by 1 by 1 MPI processor grid - reading atoms ... - 24 atoms - 0 = max # of 1-2 neighbors - 0 = max # of 1-3 neighbors - 0 = max # of 1-4 neighbors - 1 = max # of special neighbors - -# replicate system if requested - -variable x index 1 -variable y index 1 -variable z index 1 - -variable nrep equal v_x*v_y*v_z -if "${nrep} > 1" then "replicate $x $y $z" - -# initialize system - -velocity all create 0.0 87287 loop geom - -pair_style zero 1.0 -pair_coeff * * - -neighbor 1.0 bin -neigh_modify every 1 delay 0 check yes - -timestep 0.00025 - -fix 1 all nve - -fix 2 all latte NULL -fix_modify 2 energy yes - -thermo_style custom step temp pe etotal press - -# minimization - -thermo 10 -min_style fire -minimize 1.0e-9 1.0e-9 500 500 -Neighbor list info ... - update every 1 steps, delay 0 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 2 - ghost atom cutoff = 2 - binsize = 1, bins = 7 7 7 - 1 neighbor lists, perpetual/occasional/extra = 1 0 0 - (1) pair zero, perpetual - attributes: half, newton on - pair build: half/bin/newton - stencil: half/bin/3d/newton - bin: standard -Per MPI rank memory allocation (min/avg/max) = 5.629 | 5.629 | 5.629 Mbytes -Step Temp PotEng TotEng Press - 0 0 -104.95614 -104.95614 48229.712 - 10 349.44219 -105.50971 -104.47083 62149.591 - 20 1253.6752 -107.00898 -103.28182 116444.44 - 30 134.63588 -107.56184 -107.16157 59854.143 - 40 2.4043703 -108.15301 -108.14586 32685.77 - 50 162.13426 -108.40551 -107.92349 62104.273 - 60 134.03149 -108.70118 -108.30271 49400.525 - 70 64.159014 -108.78034 -108.5896 37243.303 - 80 240.49926 -109.10766 -108.39266 42158.884 - 90 0.60467192 -109.61818 -109.61639 14107.515 - 100 1.4691163 -109.65556 -109.65119 21596.775 - 110 30.500628 -109.69267 -109.602 16104.639 - 120 120.62379 -109.83749 -109.47888 9474.971 - 130 8.4742975 -109.99986 -109.97467 10104.102 - 140 3.4732679 -110.01209 -110.00176 11990.442 - 150 24.749482 -110.04313 -109.96955 10851.569 - 160 4.1106505 -110.13288 -110.12066 8257.3969 - 170 0.0065628716 -110.18061 -110.18059 7876.8748 - 180 2.0542078 -110.1837 -110.17759 7996.0533 - 190 20.134782 -110.21071 -110.15085 7556.1811 - 200 2.3397267 -110.3244 -110.31745 3767.062 - 210 4.3544709 -110.34438 -110.33143 4889.145 - 220 1.1872367 -110.37457 -110.37104 4162.6543 - 230 2.2798399 -110.38081 -110.37403 4321.0943 - 240 11.835907 -110.39611 -110.36092 4187.5757 - 250 0.13741849 -110.41453 -110.41412 3720.7527 - 260 4.2283185 -110.42036 -110.40779 3743.3494 - 270 0.47243724 -110.44349 -110.44208 3172.1866 - 280 0.06090137 -110.45428 -110.4541 3065.9348 - 290 5.3413962 -110.46285 -110.44697 3121.2924 - 300 8.2032986 -110.48519 -110.4608 2705.5001 - 310 2.0783529 -110.48807 -110.48189 2740.7989 - 320 16.629185 -110.51002 -110.46058 2581.7434 - 330 0.19723065 -110.53444 -110.53385 1942.0228 - 340 6.2758334 -110.54361 -110.52495 1924.0965 - 350 1.4539052 -110.59108 -110.58676 -449.41056 - 360 0.0514233 -110.60143 -110.60128 1284.8259 - 370 1.7240145 -110.60394 -110.59881 1468.0004 - 380 13.28516 -110.62337 -110.58387 1573.4714 - 390 1.2247432 -110.63525 -110.63161 1113.4557 - 400 0.3946985 -110.63694 -110.63576 1083.0801 - 410 2.9831433 -110.641 -110.63213 1112.419 - 420 0.068550589 -110.66029 -110.66009 897.09211 - 430 0.83976182 -110.66259 -110.66009 918.69832 - 440 4.4760907 -110.66844 -110.65513 915.24435 - 450 1.2841241 -110.67482 -110.671 953.30422 - 460 2.5707455 -110.68509 -110.67745 775.21273 - 470 0.99721544 -110.68646 -110.6835 812.74984 - 480 6.8379261 -110.69468 -110.67435 787.9705 - 490 0.18134438 -110.69628 -110.69574 675.52792 - 500 2.0946523 -110.69918 -110.69295 696.82065 -Loop time of 31.775 on 1 procs for 500 steps with 24 atoms - -884.8% CPU use with 1 MPI tasks x no OpenMP threads - -Minimization stats: - Stopping criterion = max iterations - Energy initial, next-to-last, final = - -104.95614332 -110.698546127 -110.699182193 - Force two-norm initial, final = 19.119 0.234621 - Force max component initial, final = 11.7759 0.0903198 - Final line search alpha, max atom move = 0 0 - Iterations, force evaluations = 500 500 - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.00016952 | 0.00016952 | 0.00016952 | 0.0 | 0.00 -Bond | 2.8372e-05 | 2.8372e-05 | 2.8372e-05 | 0.0 | 0.00 -Neigh | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 -Comm | 0.00060034 | 0.00060034 | 0.00060034 | 0.0 | 0.00 -Output | 0.00057817 | 0.00057817 | 0.00057817 | 0.0 | 0.00 -Modify | 31.771 | 31.771 | 31.771 | 0.0 | 99.99 -Other | | 0.002469 | | | 0.01 - -Nlocal: 24 ave 24 max 24 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 71 ave 71 max 71 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 27 ave 27 max 27 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 27 -Ave neighs/atom = 1.125 -Ave special neighs/atom = 0 -Neighbor list builds = 2 -Dangerous builds = 0 -Total wall time: 0:00:31 diff --git a/examples/latte/log.21Jun18.latte.graphene.boxrelax.g++.1 b/examples/latte/log.21Jun18.latte.graphene.boxrelax.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..3a37136fd36595826ab3e5d51b5ef31bca1f3b96 --- /dev/null +++ b/examples/latte/log.21Jun18.latte.graphene.boxrelax.g++.1 @@ -0,0 +1,170 @@ +LAMMPS (11 May 2018) +# Simple water model with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.graphene.boxrel + triclinic box = (0 0 0) to (10 8 20) with tilt (4.89859e-16 1.22465e-15 1.22465e-15) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 32 atoms + 0 = max # of 1-2 neighbors + 0 = max # of 1-3 neighbors + 0 = max # of 1-4 neighbors + 1 = max # of special neighbors + +# replicate system if requested + +variable x index 1 +variable y index 1 +variable z index 1 + +variable nrep equal v_x*v_y*v_z +if "${nrep} > 1" then "replicate $x $y $z" + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all box/relax iso 0.0 vmax 0.001 + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom etotal + +# minimization + +thermo 1 +fix 3 all print 1 "Total Energy =" +min_style cg +min_modify dmax 0.1 +min_modify line quadratic +minimize 1.0e-4 1.0e-4 10000 10000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2 + ghost atom cutoff = 2 + binsize = 1, bins = 11 9 20 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair zero, perpetual + attributes: half, newton on + pair build: half/bin/newton/tri + stencil: half/bin/3d/newton/tri + bin: standard +Per MPI rank memory allocation (min/avg/max) = 6.779 | 6.779 | 6.779 Mbytes +TotEng + -247.46002 + -247.67224 + -247.87937 + -248.08148 + -248.27865 + -248.47096 + -248.65851 + -248.84137 + -249.01964 + -249.19342 + -249.36281 + -249.52791 + -249.68883 + -249.8457 + -249.99865 + -250.1478 + -250.29332 + -250.43535 + -250.57409 + -250.70972 + -250.84247 + -250.97258 + -251.10035 + -251.2261 + -251.35021 + -251.47314 + -251.59543 + -251.71776 + -251.84096 + -251.9661 + -252.09459 + -252.22833 + -252.37003 + -252.52371 + -252.69578 + -252.89752 + -253.15197 + -253.52044 + -254.31418 + -255.6175 + -256.8162 + -258.1227 + -259.38401 + -260.74831 + -262.03991 + -263.5463 + -264.70486 + -267.69144 + -267.88682 + -269.03519 + -270.60187 + -270.65382 + -270.74279 + -271.55883 + -271.81248 + -271.87529 + -273.01494 + -273.23948 + -273.28719 + -273.35272 + -273.41591 + -273.46274 + -273.54755 + -273.58318 + -273.73111 + -273.75754 +Loop time of 39.4155 on 1 procs for 65 steps with 32 atoms + +1582.4% CPU use with 1 MPI tasks x no OpenMP threads + +Minimization stats: + Stopping criterion = energy tolerance + Energy initial, next-to-last, final = + -247.460020579 -273.731112592 -273.757543461 + Force two-norm initial, final = 201.608 9.43485 + Force max component initial, final = 188.924 2.41297 + Final line search alpha, max atom move = 0.000223273 0.00053875 + Iterations, force evaluations = 65 65 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.00012159 | 0.00012159 | 0.00012159 | 0.0 | 0.00 +Bond | 5.1975e-05 | 5.1975e-05 | 5.1975e-05 | 0.0 | 0.00 +Neigh | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 +Comm | 0.00026107 | 0.00026107 | 0.00026107 | 0.0 | 0.00 +Output | 0.0013342 | 0.0013342 | 0.0013342 | 0.0 | 0.00 +Modify | 39.412 | 39.412 | 39.412 | 0.0 | 99.99 +Other | | 0.00127 | | | 0.00 + +Nlocal: 32 ave 32 max 32 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 100 ave 100 max 100 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 48 ave 48 max 48 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 48 +Ave neighs/atom = 1.5 +Ave special neighs/atom = 0 +Neighbor list builds = 1 +Dangerous builds = 0 +Total wall time: 0:00:40 diff --git a/examples/latte/log.21Jun18.latte.multiple.g++.1 b/examples/latte/log.21Jun18.latte.multiple.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..2c624e4371277f587328241857e38a7e354e719a --- /dev/null +++ b/examples/latte/log.21Jun18.latte.multiple.g++.1 @@ -0,0 +1,171 @@ +LAMMPS (22 Jun 2018) +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.water + orthogonal box = (0 0 0) to (6.267 6.267 6.267) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 24 atoms + 0 = max # of 1-2 neighbors + 0 = max # of 1-3 neighbors + 0 = max # of 1-4 neighbors + 1 = max # of special neighbors + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# dynamics + +thermo 10 +run 10 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2 + ghost atom cutoff = 2 + binsize = 1, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair zero, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.629 | 5.629 | 5.629 Mbytes +Step Temp PotEng TotEng Press + 0 0 -104.95596 -104.95596 48235.442 + 10 336.53107 -105.96027 -104.95977 97996.851 +Loop time of 0.912921 on 1 procs for 10 steps with 24 atoms + +Performance: 0.237 ns/day, 101.436 hours/ns, 10.954 timesteps/s +6614.5% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 4.3392e-05 | 4.3392e-05 | 4.3392e-05 | 0.0 | 0.00 +Bond | 3.8862e-05 | 3.8862e-05 | 3.8862e-05 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.00036955 | 0.00036955 | 0.00036955 | 0.0 | 0.04 +Output | 9.799e-05 | 9.799e-05 | 9.799e-05 | 0.0 | 0.01 +Modify | 0.91199 | 0.91199 | 0.91199 | 0.0 | 99.90 +Other | | 0.0003812 | | | 0.04 + +Nlocal: 24 ave 24 max 24 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 71 ave 71 max 71 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 37 ave 37 max 37 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 37 +Ave neighs/atom = 1.54167 +Ave special neighs/atom = 0 +Neighbor list builds = 0 +Dangerous builds = 0 + +# Clear up previus calculation + +clear + +# simple CH4 molecule with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.ch4 + triclinic box = (0 0 0) to (19.523 12.758 11.692) with tilt (0 0 0) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 5 atoms + 0 = max # of 1-2 neighbors + 0 = max # of 1-3 neighbors + 0 = max # of 1-4 neighbors + 1 = max # of special neighbors + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# dynamics + +thermo 10 +run 10 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2 + ghost atom cutoff = 2 + binsize = 1, bins = 20 13 12 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair zero, perpetual + attributes: half, newton on + pair build: half/bin/newton/tri + stencil: half/bin/3d/newton/tri + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.651 | 5.651 | 5.651 Mbytes +Step Temp PotEng TotEng Press + 0 0 -23.980353 -23.980353 348.02716 + 10 19.123149 -23.990297 -23.98041 18.774332 +Loop time of 0.0415399 on 1 procs for 10 steps with 5 atoms + +Performance: 5.200 ns/day, 4.616 hours/ns, 240.732 timesteps/s +6674.9% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 5.722e-06 | 5.722e-06 | 5.722e-06 | 0.0 | 0.01 +Bond | 7.6294e-06 | 7.6294e-06 | 7.6294e-06 | 0.0 | 0.02 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 1.8358e-05 | 1.8358e-05 | 1.8358e-05 | 0.0 | 0.04 +Output | 2.0981e-05 | 2.0981e-05 | 2.0981e-05 | 0.0 | 0.05 +Modify | 0.041394 | 0.041394 | 0.041394 | 0.0 | 99.65 +Other | | 9.322e-05 | | | 0.22 + +Nlocal: 5 ave 5 max 5 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 7 ave 7 max 7 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 10 ave 10 max 10 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 10 +Ave neighs/atom = 2 +Ave special neighs/atom = 0 +Neighbor list builds = 0 +Dangerous builds = 0 + +Total wall time: 0:00:01 diff --git a/examples/latte/log.21Jun18.latte.sucrose.g++.1 b/examples/latte/log.21Jun18.latte.sucrose.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..cb4526587cccc40da331b1dceed633550e87158f --- /dev/null +++ b/examples/latte/log.21Jun18.latte.sucrose.g++.1 @@ -0,0 +1,103 @@ +LAMMPS (11 May 2018) +# simple sucrose model with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.sucrose + orthogonal box = (0 0 0) to (17.203 18.009 21.643) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 45 atoms + 0 = max # of 1-2 neighbors + 0 = max # of 1-3 neighbors + 0 = max # of 1-4 neighbors + 1 = max # of special neighbors + +# replicate system if requested + +variable x index 1 +variable y index 1 +variable z index 1 + +variable nrep equal v_x*v_y*v_z +if "${nrep} > 1" then "replicate $x $y $z" + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# dynamics + +thermo 10 +run 100 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2 + ghost atom cutoff = 2 + binsize = 1, bins = 18 19 22 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair zero, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 0.5064 | 0.5064 | 0.5064 Mbytes +Step Temp PotEng TotEng Press + 0 0 -251.26617 -251.26617 16.617234 + 10 0.025263709 -251.26631 -251.26617 8.0576708 + 20 0.034232467 -251.26636 -251.26617 1.6673442 + 30 0.059079556 -251.2665 -251.26617 11.058458 + 40 0.055499766 -251.26648 -251.26617 14.837775 + 50 0.058499509 -251.2665 -251.26617 6.7183113 + 60 0.071094535 -251.26657 -251.26617 6.6133687 + 70 0.084309439 -251.26665 -251.26617 12.372721 + 80 0.1089929 -251.26679 -251.26617 8.8355516 + 90 0.11378257 -251.26681 -251.26617 5.1177922 + 100 0.13003966 -251.26691 -251.26617 8.2431185 +Loop time of 27.8386 on 1 procs for 100 steps with 45 atoms + +Performance: 0.078 ns/day, 309.318 hours/ns, 3.592 timesteps/s +1799.6% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 8.3685e-05 | 8.3685e-05 | 8.3685e-05 | 0.0 | 0.00 +Bond | 7.4148e-05 | 7.4148e-05 | 7.4148e-05 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.00016689 | 0.00016689 | 0.00016689 | 0.0 | 0.00 +Output | 0.00032401 | 0.00032401 | 0.00032401 | 0.0 | 0.00 +Modify | 27.837 | 27.837 | 27.837 | 0.0 |100.00 +Other | | 0.0005403 | | | 0.00 + +Nlocal: 45 ave 45 max 45 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 59 ave 59 max 59 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 59 +Ave neighs/atom = 1.31111 +Ave special neighs/atom = 0 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:28 diff --git a/examples/latte/log.21Jun18.latte.water.g++.1 b/examples/latte/log.21Jun18.latte.water.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..0decce1f985aa32cd18220ae15f9ca07373748ef --- /dev/null +++ b/examples/latte/log.21Jun18.latte.water.g++.1 @@ -0,0 +1,103 @@ +LAMMPS (11 May 2018) +# simple water model with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.water + orthogonal box = (0 0 0) to (6.267 6.267 6.267) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 24 atoms + 0 = max # of 1-2 neighbors + 0 = max # of 1-3 neighbors + 0 = max # of 1-4 neighbors + 1 = max # of special neighbors + +# replicate system if requested + +variable x index 1 +variable y index 1 +variable z index 1 + +variable nrep equal v_x*v_y*v_z +if "${nrep} > 1" then "replicate $x $y $z" + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# dynamics + +thermo 10 +run 100 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2 + ghost atom cutoff = 2 + binsize = 1, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair zero, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.629 | 5.629 | 5.629 Mbytes +Step Temp PotEng TotEng Press + 0 0 -104.95594 -104.95594 48236.006 + 10 336.5303 -105.96026 -104.95976 97997.303 + 20 529.06385 -106.53021 -104.95731 131520.49 + 30 753.62616 -107.1995 -104.95898 49297.371 + 40 716.6565 -107.08802 -104.95741 28307.272 + 50 824.04417 -107.40822 -104.95835 102167.48 + 60 933.56056 -107.73478 -104.95932 92508.792 + 70 851.18518 -107.48766 -104.95711 13993.28 + 80 999.80265 -107.93146 -104.95906 36700.417 + 90 998.77707 -107.92569 -104.95634 107233.7 + 100 1281.4446 -108.76961 -104.95989 49703.193 +Loop time of 10.6388 on 1 procs for 100 steps with 24 atoms + +Performance: 0.203 ns/day, 118.209 hours/ns, 9.400 timesteps/s +6459.7% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 7.6771e-05 | 7.6771e-05 | 7.6771e-05 | 0.0 | 0.00 +Bond | 7.5817e-05 | 7.5817e-05 | 7.5817e-05 | 0.0 | 0.00 +Neigh | 4.6015e-05 | 4.6015e-05 | 4.6015e-05 | 0.0 | 0.00 +Comm | 0.00031829 | 0.00031829 | 0.00031829 | 0.0 | 0.00 +Output | 0.00032401 | 0.00032401 | 0.00032401 | 0.0 | 0.00 +Modify | 10.637 | 10.637 | 10.637 | 0.0 | 99.99 +Other | | 0.00052 | | | 0.00 + +Nlocal: 24 ave 24 max 24 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 77 ave 77 max 77 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 31 ave 31 max 31 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 31 +Ave neighs/atom = 1.29167 +Ave special neighs/atom = 0 +Neighbor list builds = 2 +Dangerous builds = 0 +Total wall time: 0:00:10 diff --git a/examples/latte/log.21Jun18.latte.water.min.g++.1 b/examples/latte/log.21Jun18.latte.water.min.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..1c8921fd60cdb482ffb3650e14bb3250ee83e011 --- /dev/null +++ b/examples/latte/log.21Jun18.latte.water.min.g++.1 @@ -0,0 +1,108 @@ +LAMMPS (11 May 2018) +# simple water model with LATTE + +units metal +atom_style full +atom_modify sort 0 0.0 # turn off sorting of the coordinates + +read_data data.water + orthogonal box = (0 0 0) to (6.267 6.267 6.267) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 24 atoms + 0 = max # of 1-2 neighbors + 0 = max # of 1-3 neighbors + 0 = max # of 1-4 neighbors + 1 = max # of special neighbors + +# replicate system if requested + +variable x index 1 +variable y index 1 +variable z index 1 + +variable nrep equal v_x*v_y*v_z +if "${nrep} > 1" then "replicate $x $y $z" + +# initialize system + +velocity all create 0.0 87287 loop geom + +pair_style zero 1.0 +pair_coeff * * + +neighbor 1.0 bin +neigh_modify every 1 delay 0 check yes + +timestep 0.00025 + +fix 1 all nve + +fix 2 all latte NULL +fix_modify 2 energy yes + +thermo_style custom step temp pe etotal press + +# minimization + +thermo 10 + +min_style fire +minimize 1.0e-4 1.0e-4 500 500 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2 + ghost atom cutoff = 2 + binsize = 1, bins = 7 7 7 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair zero, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.629 | 5.629 | 5.629 Mbytes +Step Temp PotEng TotEng Press + 0 0 -104.95594 -104.95594 48236.006 + 10 349.4534 -105.50948 -104.47056 62157.729 + 20 1253.6636 -107.00863 -103.28151 116456.71 + 30 134.64051 -107.56155 -107.16127 59864.196 + 40 2.4044989 -108.1527 -108.14556 32695.648 + 47 137.26885 -108.30413 -107.89603 60177.442 +Loop time of 6.42677 on 1 procs for 47 steps with 24 atoms + +6481.9% CPU use with 1 MPI tasks x no OpenMP threads + +Minimization stats: + Stopping criterion = energy tolerance + Energy initial, next-to-last, final = + -104.955944301 -108.302982895 -108.304126127 + Force two-norm initial, final = 19.119 3.44609 + Force max component initial, final = 11.7758 1.3408 + Final line search alpha, max atom move = 0 0 + Iterations, force evaluations = 47 47 + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 4.6253e-05 | 4.6253e-05 | 4.6253e-05 | 0.0 | 0.00 +Bond | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.00014353 | 0.00014353 | 0.00014353 | 0.0 | 0.00 +Output | 0.00012302 | 0.00012302 | 0.00012302 | 0.0 | 0.00 +Modify | 6.426 | 6.426 | 6.426 | 0.0 | 99.99 +Other | | 0.0004699 | | | 0.01 + +Nlocal: 24 ave 24 max 24 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 71 ave 71 max 71 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 37 ave 37 max 37 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 37 +Ave neighs/atom = 1.54167 +Ave special neighs/atom = 0 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:06 diff --git a/examples/rigid/in.rigid-atomfile b/examples/rigid/in.rigid.atomfile similarity index 100% rename from examples/rigid/in.rigid-atomfile rename to examples/rigid/in.rigid.atomfile diff --git a/examples/rigid/in.rigid-atomvar b/examples/rigid/in.rigid.atomvar similarity index 100% rename from examples/rigid/in.rigid-atomvar rename to examples/rigid/in.rigid.atomvar diff --git a/examples/rigid/in.rigid.early b/examples/rigid/in.rigid.early new file mode 100644 index 0000000000000000000000000000000000000000..6f04ba40f4fb3ca879f9955c964cdc7716014656 --- /dev/null +++ b/examples/rigid/in.rigid.early @@ -0,0 +1,83 @@ +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +group clump2 id <> 10 18 +group clump3 id <> 19 27 +group clump4 id <> 28 36 +group clump5 id <> 37 45 +group clump6 id <> 46 54 +group clump7 id <> 55 63 +group clump8 id <> 64 72 +group clump9 id <> 73 81 + +fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 & + clump6 clump7 clump8 clump9 + +fix_modify 1 bodyforces early + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 & +# clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type & +# axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type & +# axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 diff --git a/examples/rigid/in.rigid.nve b/examples/rigid/in.rigid.nve new file mode 100644 index 0000000000000000000000000000000000000000..d61cdecfe8ac021110939746c5d908fe741d7523 --- /dev/null +++ b/examples/rigid/in.rigid.nve @@ -0,0 +1,81 @@ +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +group clump2 id <> 10 18 +group clump3 id <> 19 27 +group clump4 id <> 28 36 +group clump5 id <> 37 45 +group clump6 id <> 46 54 +group clump7 id <> 55 63 +group clump8 id <> 64 72 +group clump9 id <> 73 81 + +fix 1 all rigid/nve group 9 clump1 clump2 clump3 clump4 clump5 & + clump6 clump7 clump8 clump9 + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 & +# clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type & +# axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type & +# axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 diff --git a/examples/rigid/in.rigid.nve.early b/examples/rigid/in.rigid.nve.early new file mode 100644 index 0000000000000000000000000000000000000000..86e970ee75151de0d51f253585b80b9dc2a081f0 --- /dev/null +++ b/examples/rigid/in.rigid.nve.early @@ -0,0 +1,83 @@ +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +group clump2 id <> 10 18 +group clump3 id <> 19 27 +group clump4 id <> 28 36 +group clump5 id <> 37 45 +group clump6 id <> 46 54 +group clump7 id <> 55 63 +group clump8 id <> 64 72 +group clump9 id <> 73 81 + +fix 1 all rigid/nve group 9 clump1 clump2 clump3 clump4 clump5 & + clump6 clump7 clump8 clump9 + +fix_modify 1 bodyforces early + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 & +# clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type & +# axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type & +# axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 diff --git a/examples/rigid/in.rigid-property b/examples/rigid/in.rigid.property similarity index 100% rename from examples/rigid/in.rigid-property rename to examples/rigid/in.rigid.property diff --git a/examples/rigid/log.20Apr18.rigid.atomfile.g++.1 b/examples/rigid/log.20Apr18.rigid.atomfile.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..c66711c41c26e15490051359a8990e3c6fbd402b --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.atomfile.g++.1 @@ -0,0 +1,338 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic +atom_modify map array + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +variable bodies atomfile bodies.txt +fix 1 all rigid custom v_bodies +9 rigid bodies with 81 atoms + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.109 | 4.109 | 4.109 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.685 571.71558 0 5265.82 32.006171 + 100 16298.442 136.66184 0 5267.653 16.444229 + 150 16682.606 17.490511 0 5269.4219 14.900344 + 200 16733.929 1.372872 0 5269.4617 14.569267 + 250 16738.853 -0.15252816 0 5269.4864 14.496404 + 300 16738.588 -0.055171335 0 5269.5002 14.496025 + 350 16738.492 -0.017444677 0 5269.5077 14.496446 + 400 16738.464 -0.0060102023 0 5269.5104 14.496618 + 450 16738.455 -0.0012713351 0 5269.5124 14.496701 + 500 16738.455 -0.00081068621 0 5269.5128 14.496709 + 550 16738.455 -0.00083203497 0 5269.5129 14.496707 + 600 16738.455 -0.00058355356 0 5269.5131 14.496709 + 650 16738.455 -0.00047226704 0 5269.5131 14.496708 + 700 16738.455 0 0 5269.5136 14.496713 + 750 16738.455 0 0 5269.5136 14.49671 + 800 16738.455 0 0 5269.5137 14.496709 + 850 16738.455 0 0 5269.5137 14.49671 + 900 16738.456 0 0 5269.5138 14.496713 + 950 16738.462 -0.0035323872 0 5269.5122 14.496671 + 1000 16738.586 -0.051135144 0 5269.5036 14.496229 + 1050 16737.358 0.32995057 0 5269.4981 14.525763 + 1100 16737.892 0.16210246 0 5269.4984 14.531983 + 1150 16738.703 -0.089235095 0 5269.5025 14.509899 + 1200 16738.466 -0.0075446243 0 5269.5096 14.510615 + 1250 16738.456 0 0 5269.514 14.510704 + 1300 16738.457 0 0 5269.5141 14.510701 + 1350 16738.457 0 0 5269.5141 14.510699 + 1400 16738.457 -0.00044736511 0 5269.5138 14.510693 + 1450 16738.458 -0.0010971179 0 5269.5134 14.510687 + 1500 16738.458 -0.00057885428 0 5269.5139 14.510698 + 1550 16738.457 0 0 5269.5143 14.51071 + 1600 16738.457 0 0 5269.5144 14.510712 + 1650 16738.457 0 0 5269.5144 14.510712 + 1700 16738.458 0 0 5269.5144 14.51071 + 1750 16738.458 0 0 5269.5145 14.510708 + 1800 16738.458 0 0 5269.5145 14.510706 + 1850 16738.458 0 0 5269.5146 14.510705 + 1900 16738.458 0 0 5269.5146 14.510706 + 1950 16738.465 -0.0031733615 0 5269.5134 14.510659 + 2000 16738.491 -0.013255268 0 5269.5117 14.510532 + 2050 16738.556 -0.0365811 0 5269.5087 14.51029 + 2100 16738.633 -0.063209659 0 5269.5065 14.510219 + 2150 16738.607 -0.05601761 0 5269.5055 14.510231 + 2200 16738.557 -0.038423032 0 5269.5072 14.510404 + 2250 16738.515 -0.023709918 0 5269.5088 14.510539 + 2300 16738.489 -0.013249035 0 5269.5111 14.510621 + 2350 16738.468 -0.0045563719 0 5269.5131 14.510714 + 2400 16738.46 -0.00052194273 0 5269.5146 14.510771 + 2450 16738.464 -0.0023259756 0 5269.514 14.510746 + 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 + 2550 16738.581 -0.044940117 0 5269.5085 14.510315 + 2600 16738.427 -7.9722839e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 + 2700 16738.761 -0.10614946 0 5269.5038 14.499584 + 2750 16733.973 1.4038179 0 5269.5064 14.598107 + 2800 16738.585 -0.046813448 0 5269.5076 14.511073 + 2850 16738.487 -0.012558719 0 5269.5111 14.510111 + 2900 16738.465 -0.0026252725 0 5269.514 14.510277 + 2950 16738.476 -0.0082220764 0 5269.512 14.510223 + 3000 16738.66 -0.071284779 0 5269.507 14.509758 + 3050 16715.332 7.2419351 0 5269.476 14.870305 + 3100 16653.226 26.818761 0 5269.5009 14.496764 + 3150 16739.351 -0.30690375 0 5269.4886 13.643904 + 3200 16733.238 1.6025328 0 5269.4737 12.016934 + 3250 16734.374 1.2554429 0 5269.4841 11.963561 + 3300 16732.156 1.9585967 0 5269.4893 12.234024 + 3350 16738.655 -0.079693236 0 5269.497 12.092757 + 3400 16738.543 -0.042215005 0 5269.4991 12.092809 + 3450 16738.591 -0.059327511 0 5269.4972 12.092536 + 3500 16738.759 -0.11761245 0 5269.4918 12.09203 + 3550 16713.405 7.846062 0 5269.4737 12.389816 + 3600 16734.939 1.0821936 0 5269.4891 12.173591 + 3650 16738.808 -0.13663194 0 5269.4882 12.027009 + 3700 16738.602 -0.070934367 0 5269.4889 12.025288 + 3750 16737.731 0.20706557 0 5269.4927 12.061948 + 3800 16738.578 -0.05582043 0 5269.4965 12.035665 + 3850 16738.471 -0.016307928 0 5269.5024 12.035302 + 3900 16738.449 -0.0058182199 0 5269.5059 12.035401 + 3950 16738.439 -0.0012027325 0 5269.5074 12.035461 + 4000 16738.436 -0.00020698452 0 5269.5075 12.035469 + 4050 16738.437 0 0 5269.5078 12.035454 + 4100 16738.437 0 0 5269.508 12.035435 + 4150 16738.438 0 0 5269.5081 12.035426 + 4200 16738.438 0 0 5269.5083 12.035432 + 4250 16738.439 0 0 5269.5085 12.035447 + 4300 16738.439 0 0 5269.5086 12.035463 + 4350 16738.44 0 0 5269.5087 12.035474 + 4400 16738.44 0 0 5269.5088 12.035478 + 4450 16738.44 0 0 5269.5089 12.035474 + 4500 16738.44 0 0 5269.509 12.035462 + 4550 16738.441 0 0 5269.5092 12.035449 + 4600 16738.441 0 0 5269.5093 12.035445 + 4650 16738.442 0 0 5269.5095 12.035451 + 4700 16738.442 0 0 5269.5096 12.03546 + 4750 16738.443 0 0 5269.5097 12.035465 + 4800 16738.443 0 0 5269.5098 12.035466 + 4850 16738.443 0 0 5269.51 12.035463 + 4900 16738.444 0 0 5269.5101 12.035456 + 4950 16738.444 0 0 5269.5102 12.035447 + 5000 16738.445 0 0 5269.5104 12.03544 + 5050 16738.445 0 0 5269.5105 12.035442 + 5100 16738.446 0 0 5269.5107 12.035455 + 5150 16738.446 0 0 5269.5108 12.03547 + 5200 16738.446 0 0 5269.5109 12.035479 + 5250 16738.447 0 0 5269.511 12.035479 + 5300 16738.447 0 0 5269.5111 12.03547 + 5350 16738.447 0 0 5269.5112 12.035454 + 5400 16738.448 0 0 5269.5113 12.035434 + 5450 16738.448 0 0 5269.5115 12.03542 + 5500 16738.449 0 0 5269.5117 12.035422 + 5550 16738.457 -0.0030919234 0 5269.5111 12.035383 + 5600 16738.51 -0.021618357 0 5269.5092 12.035106 + 5650 16738.622 -0.059214788 0 5269.507 12.035694 + 5700 16395.28 108.06942 0 5269.5463 24.369038 + 5750 16738.544 -0.033973429 0 5269.5077 12.011261 + 5800 16738.456 -0.0037013529 0 5269.5102 12.011675 + 5850 16738.451 0 0 5269.5123 12.011709 + 5900 16738.451 -0.00022115871 0 5269.5122 12.011687 + 5950 16738.452 -0.00024253349 0 5269.5124 12.011678 + 6000 16738.452 0 0 5269.5128 12.011688 + 6050 16738.453 0 0 5269.513 12.011702 + 6100 16738.453 0 0 5269.5131 12.011716 + 6150 16738.454 0 0 5269.5132 12.011725 + 6200 16738.454 0 0 5269.5133 12.011728 + 6250 16738.454 0 0 5269.5134 12.011723 + 6300 16738.455 0 0 5269.5135 12.011712 + 6350 16738.455 0 0 5269.5137 12.0117 + 6400 16738.456 0 0 5269.5138 12.011697 + 6450 16738.456 0 0 5269.514 12.011704 + 6500 16738.456 0 0 5269.5141 12.011714 + 6550 16738.457 0 0 5269.5142 12.011719 + 6600 16738.457 0 0 5269.5143 12.011718 + 6650 16738.458 0 0 5269.5144 12.011713 + 6700 16738.458 0 0 5269.5146 12.011705 + 6750 16738.459 0 0 5269.5147 12.011696 + 6800 16738.459 0 0 5269.5149 12.01169 + 6850 16738.46 0 0 5269.515 12.011695 + 6900 16738.46 0 0 5269.5152 12.01171 + 6950 16738.46 0 0 5269.5153 12.011726 + 7000 16738.461 0 0 5269.5154 12.011736 + 7050 16738.461 0 0 5269.5155 12.011737 + 7100 16738.461 0 0 5269.5155 12.011728 + 7150 16738.461 0 0 5269.5156 12.011712 + 7200 16738.462 0 0 5269.5158 12.011691 + 7250 16738.463 0 0 5269.516 12.011676 + 7300 16738.463 0 0 5269.5162 12.011677 + 7350 16738.464 0 0 5269.5164 12.011693 + 7400 16738.464 0 0 5269.5165 12.011713 + 7450 16738.465 0 0 5269.5166 12.011729 + 7500 16738.465 0 0 5269.5167 12.011736 + 7550 16738.465 0 0 5269.5168 12.011734 + 7600 16738.465 0 0 5269.5168 12.011722 + 7650 16738.466 0 0 5269.517 12.011704 + 7700 16738.466 0 0 5269.5171 12.011687 + 7750 16738.467 0 0 5269.5173 12.011681 + 7800 16738.467 0 0 5269.5175 12.011687 + 7850 16738.468 0 0 5269.5176 12.0117 + 7900 16738.468 0 0 5269.5178 12.011712 + 7950 16738.469 0 0 5269.5179 12.011721 + 8000 16738.469 0 0 5269.518 12.011724 + 8050 16738.469 0 0 5269.5181 12.01172 + 8100 16738.47 0 0 5269.5182 12.011709 + 8150 16738.47 0 0 5269.5183 12.0117 + 8200 16738.47 0 0 5269.5185 12.0117 + 8250 16738.471 0 0 5269.5186 12.011709 + 8300 16738.471 0 0 5269.5187 12.011719 + 8350 16738.472 0 0 5269.5189 12.011723 + 8400 16738.472 0 0 5269.519 12.01172 + 8450 16738.473 -0.00039690663 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646802 0 5269.5182 12.011643 + 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 + 8600 16738.474 -0.00076532813 0 5269.5189 12.011681 + 8650 16738.474 0 0 5269.5197 12.011699 + 8700 16738.475 0 0 5269.5199 12.011715 + 8750 16738.475 0 0 5269.52 12.011732 + 8800 16738.475 0 0 5269.52 12.011743 + 8850 16738.476 0 0 5269.5201 12.011744 + 8900 16738.476 0 0 5269.5202 12.011735 + 8950 16738.476 0 0 5269.5203 12.011719 + 9000 16738.477 0 0 5269.5205 12.011698 + 9050 16738.477 0 0 5269.5206 12.011683 + 9100 16738.478 0 0 5269.5208 12.011684 + 9150 16738.479 0 0 5269.521 12.011701 + 9200 16738.479 0 0 5269.5212 12.011722 + 9250 16738.479 0 0 5269.5213 12.011738 + 9300 16738.48 0 0 5269.5214 12.011746 + 9350 16738.48 0 0 5269.5214 12.011744 + 9400 16738.48 0 0 5269.5215 12.011732 + 9450 16738.48 0 0 5269.5216 12.011715 + 9500 16738.481 -0.00037652438 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156162 0 5269.5203 12.011611 + 9600 16738.549 -0.026814371 0 5269.5163 12.011415 + 9650 16738.765 -0.10191523 0 5269.5092 12.011013 + 9700 16735.041 1.0589893 0 5269.4979 12.062708 + 9750 16738.013 0.13550102 0 5269.5101 11.407246 + 9800 16738.512 -0.011620328 0 5269.5201 11.394974 + 9850 16738.489 -0.00067270521 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984561 0 5269.5242 11.395085 + 9950 16738.49 0 0 5269.5245 11.395076 + 10000 16738.49 0 0 5269.5246 11.395075 +Loop time of 0.140447 on 1 procs for 10000 steps with 81 atoms + +Performance: 615179.112 tau/day, 71201.286 timesteps/s +98.2% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.010351 | 0.010351 | 0.010351 | 0.0 | 7.37 +Neigh | 0.036597 | 0.036597 | 0.036597 | 0.0 | 26.06 +Comm | 0.0092356 | 0.0092356 | 0.0092356 | 0.0 | 6.58 +Output | 0.0023856 | 0.0023856 | 0.0023856 | 0.0 | 1.70 +Modify | 0.07586 | 0.07586 | 0.07586 | 0.0 | 54.01 +Other | | 0.006017 | | | 4.28 + +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 84 ave 84 max 84 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.atomfile.g++.4 b/examples/rigid/log.20Apr18.rigid.atomfile.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..70f86f32bbee23abe600df2cf540dd2624d5292e --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.atomfile.g++.4 @@ -0,0 +1,338 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic +atom_modify map array + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +variable bodies atomfile bodies.txt +fix 1 all rigid custom v_bodies +9 rigid bodies with 81 atoms + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.08 | 4.174 | 4.455 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.685 571.71558 0 5265.82 32.006171 + 100 16298.442 136.66184 0 5267.653 16.444229 + 150 16682.606 17.490511 0 5269.4219 14.900344 + 200 16733.929 1.372872 0 5269.4617 14.569267 + 250 16738.853 -0.15252816 0 5269.4864 14.496404 + 300 16738.588 -0.055171335 0 5269.5002 14.496025 + 350 16738.492 -0.017444677 0 5269.5077 14.496446 + 400 16738.464 -0.0060102023 0 5269.5104 14.496618 + 450 16738.455 -0.0012713351 0 5269.5124 14.496701 + 500 16738.455 -0.00081068621 0 5269.5128 14.496709 + 550 16738.455 -0.00083203497 0 5269.5129 14.496707 + 600 16738.455 -0.00058355356 0 5269.5131 14.496709 + 650 16738.455 -0.00047226704 0 5269.5131 14.496708 + 700 16738.455 0 0 5269.5136 14.496713 + 750 16738.455 0 0 5269.5136 14.49671 + 800 16738.455 0 0 5269.5137 14.496709 + 850 16738.455 0 0 5269.5137 14.49671 + 900 16738.456 0 0 5269.5138 14.496713 + 950 16738.462 -0.0035323872 0 5269.5122 14.496671 + 1000 16738.586 -0.051135144 0 5269.5036 14.496229 + 1050 16737.358 0.32995057 0 5269.4981 14.525763 + 1100 16737.892 0.16210246 0 5269.4984 14.531983 + 1150 16738.703 -0.089235095 0 5269.5025 14.509899 + 1200 16738.466 -0.0075446243 0 5269.5096 14.510615 + 1250 16738.456 0 0 5269.514 14.510704 + 1300 16738.457 0 0 5269.5141 14.510701 + 1350 16738.457 0 0 5269.5141 14.510699 + 1400 16738.457 -0.00044736511 0 5269.5138 14.510693 + 1450 16738.458 -0.0010971179 0 5269.5134 14.510687 + 1500 16738.458 -0.00057885428 0 5269.5139 14.510698 + 1550 16738.457 0 0 5269.5143 14.51071 + 1600 16738.457 0 0 5269.5144 14.510712 + 1650 16738.457 0 0 5269.5144 14.510712 + 1700 16738.458 0 0 5269.5144 14.51071 + 1750 16738.458 0 0 5269.5145 14.510708 + 1800 16738.458 0 0 5269.5145 14.510706 + 1850 16738.458 0 0 5269.5146 14.510705 + 1900 16738.458 0 0 5269.5146 14.510706 + 1950 16738.465 -0.0031733615 0 5269.5134 14.510659 + 2000 16738.491 -0.013255268 0 5269.5117 14.510532 + 2050 16738.556 -0.0365811 0 5269.5087 14.51029 + 2100 16738.633 -0.063209659 0 5269.5065 14.510219 + 2150 16738.607 -0.05601761 0 5269.5055 14.510231 + 2200 16738.557 -0.038423032 0 5269.5072 14.510404 + 2250 16738.515 -0.023709918 0 5269.5088 14.510539 + 2300 16738.489 -0.013249035 0 5269.5111 14.510621 + 2350 16738.468 -0.0045563719 0 5269.5131 14.510714 + 2400 16738.46 -0.00052194273 0 5269.5146 14.510771 + 2450 16738.464 -0.0023259756 0 5269.514 14.510746 + 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 + 2550 16738.581 -0.044940117 0 5269.5085 14.510315 + 2600 16738.427 -7.9722854e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 + 2700 16738.761 -0.10614946 0 5269.5038 14.499584 + 2750 16733.973 1.4038179 0 5269.5064 14.598107 + 2800 16738.585 -0.046813448 0 5269.5076 14.511073 + 2850 16738.487 -0.012558719 0 5269.5111 14.510111 + 2900 16738.465 -0.0026252725 0 5269.514 14.510277 + 2950 16738.476 -0.0082220764 0 5269.512 14.510223 + 3000 16738.66 -0.071284779 0 5269.507 14.509758 + 3050 16715.332 7.2419351 0 5269.476 14.870305 + 3100 16653.226 26.818761 0 5269.5009 14.496764 + 3150 16739.351 -0.30690375 0 5269.4886 13.643904 + 3200 16733.238 1.6025328 0 5269.4737 12.016934 + 3250 16734.374 1.2554429 0 5269.4841 11.963561 + 3300 16732.156 1.9585967 0 5269.4893 12.234024 + 3350 16738.655 -0.079693236 0 5269.497 12.092757 + 3400 16738.543 -0.042215005 0 5269.4991 12.092809 + 3450 16738.591 -0.059327511 0 5269.4972 12.092536 + 3500 16738.759 -0.11761245 0 5269.4918 12.09203 + 3550 16713.405 7.846062 0 5269.4737 12.389816 + 3600 16734.939 1.0821936 0 5269.4891 12.173591 + 3650 16738.808 -0.13663194 0 5269.4882 12.027009 + 3700 16738.602 -0.070934368 0 5269.4889 12.025288 + 3750 16737.731 0.20706558 0 5269.4927 12.061948 + 3800 16738.578 -0.05582043 0 5269.4965 12.035665 + 3850 16738.471 -0.016307928 0 5269.5024 12.035302 + 3900 16738.449 -0.0058182199 0 5269.5059 12.035401 + 3950 16738.439 -0.0012027325 0 5269.5074 12.035461 + 4000 16738.436 -0.00020698452 0 5269.5075 12.035469 + 4050 16738.437 0 0 5269.5078 12.035454 + 4100 16738.437 0 0 5269.508 12.035435 + 4150 16738.438 0 0 5269.5081 12.035426 + 4200 16738.438 0 0 5269.5083 12.035432 + 4250 16738.439 0 0 5269.5085 12.035447 + 4300 16738.439 0 0 5269.5086 12.035463 + 4350 16738.44 0 0 5269.5087 12.035474 + 4400 16738.44 0 0 5269.5088 12.035478 + 4450 16738.44 0 0 5269.5089 12.035474 + 4500 16738.44 0 0 5269.509 12.035462 + 4550 16738.441 0 0 5269.5092 12.035449 + 4600 16738.441 0 0 5269.5093 12.035445 + 4650 16738.442 0 0 5269.5095 12.035451 + 4700 16738.442 0 0 5269.5096 12.03546 + 4750 16738.443 0 0 5269.5097 12.035465 + 4800 16738.443 0 0 5269.5098 12.035466 + 4850 16738.443 0 0 5269.51 12.035463 + 4900 16738.444 0 0 5269.5101 12.035456 + 4950 16738.444 0 0 5269.5102 12.035447 + 5000 16738.445 0 0 5269.5104 12.03544 + 5050 16738.445 0 0 5269.5105 12.035442 + 5100 16738.446 0 0 5269.5107 12.035455 + 5150 16738.446 0 0 5269.5108 12.03547 + 5200 16738.446 0 0 5269.5109 12.035479 + 5250 16738.447 0 0 5269.511 12.035479 + 5300 16738.447 0 0 5269.5111 12.03547 + 5350 16738.447 0 0 5269.5112 12.035454 + 5400 16738.448 0 0 5269.5113 12.035434 + 5450 16738.448 0 0 5269.5115 12.03542 + 5500 16738.449 0 0 5269.5117 12.035422 + 5550 16738.457 -0.0030919234 0 5269.5111 12.035383 + 5600 16738.51 -0.021618357 0 5269.5092 12.035106 + 5650 16738.622 -0.059214788 0 5269.507 12.035694 + 5700 16395.28 108.06942 0 5269.5463 24.369038 + 5750 16738.544 -0.033973429 0 5269.5077 12.011261 + 5800 16738.456 -0.0037013529 0 5269.5102 12.011675 + 5850 16738.451 0 0 5269.5123 12.011709 + 5900 16738.451 -0.0002211587 0 5269.5122 12.011687 + 5950 16738.452 -0.00024253349 0 5269.5124 12.011678 + 6000 16738.452 0 0 5269.5128 12.011688 + 6050 16738.453 0 0 5269.513 12.011702 + 6100 16738.453 0 0 5269.5131 12.011716 + 6150 16738.454 0 0 5269.5132 12.011725 + 6200 16738.454 0 0 5269.5133 12.011728 + 6250 16738.454 0 0 5269.5134 12.011723 + 6300 16738.455 0 0 5269.5135 12.011712 + 6350 16738.455 0 0 5269.5137 12.0117 + 6400 16738.456 0 0 5269.5138 12.011697 + 6450 16738.456 0 0 5269.514 12.011704 + 6500 16738.456 0 0 5269.5141 12.011714 + 6550 16738.457 0 0 5269.5142 12.011719 + 6600 16738.457 0 0 5269.5143 12.011718 + 6650 16738.458 0 0 5269.5144 12.011713 + 6700 16738.458 0 0 5269.5146 12.011705 + 6750 16738.459 0 0 5269.5147 12.011696 + 6800 16738.459 0 0 5269.5149 12.01169 + 6850 16738.46 0 0 5269.515 12.011695 + 6900 16738.46 0 0 5269.5152 12.01171 + 6950 16738.46 0 0 5269.5153 12.011726 + 7000 16738.461 0 0 5269.5154 12.011736 + 7050 16738.461 0 0 5269.5155 12.011737 + 7100 16738.461 0 0 5269.5155 12.011728 + 7150 16738.461 0 0 5269.5156 12.011712 + 7200 16738.462 0 0 5269.5158 12.011691 + 7250 16738.463 0 0 5269.516 12.011676 + 7300 16738.463 0 0 5269.5162 12.011677 + 7350 16738.464 0 0 5269.5164 12.011693 + 7400 16738.464 0 0 5269.5165 12.011713 + 7450 16738.465 0 0 5269.5166 12.011729 + 7500 16738.465 0 0 5269.5167 12.011736 + 7550 16738.465 0 0 5269.5168 12.011734 + 7600 16738.465 0 0 5269.5168 12.011722 + 7650 16738.466 0 0 5269.517 12.011704 + 7700 16738.466 0 0 5269.5171 12.011687 + 7750 16738.467 0 0 5269.5173 12.011681 + 7800 16738.467 0 0 5269.5175 12.011687 + 7850 16738.468 0 0 5269.5176 12.0117 + 7900 16738.468 0 0 5269.5178 12.011712 + 7950 16738.469 0 0 5269.5179 12.011721 + 8000 16738.469 0 0 5269.518 12.011724 + 8050 16738.469 0 0 5269.5181 12.01172 + 8100 16738.47 0 0 5269.5182 12.011709 + 8150 16738.47 0 0 5269.5183 12.0117 + 8200 16738.47 0 0 5269.5185 12.0117 + 8250 16738.471 0 0 5269.5186 12.011709 + 8300 16738.471 0 0 5269.5187 12.011719 + 8350 16738.472 0 0 5269.5189 12.011723 + 8400 16738.472 0 0 5269.519 12.01172 + 8450 16738.473 -0.00039690664 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646803 0 5269.5182 12.011643 + 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 + 8600 16738.474 -0.00076532811 0 5269.5189 12.011681 + 8650 16738.474 0 0 5269.5197 12.011699 + 8700 16738.475 0 0 5269.5199 12.011715 + 8750 16738.475 0 0 5269.52 12.011732 + 8800 16738.475 0 0 5269.52 12.011743 + 8850 16738.476 0 0 5269.5201 12.011744 + 8900 16738.476 0 0 5269.5202 12.011735 + 8950 16738.476 0 0 5269.5203 12.011719 + 9000 16738.477 0 0 5269.5205 12.011698 + 9050 16738.477 0 0 5269.5206 12.011683 + 9100 16738.478 0 0 5269.5208 12.011684 + 9150 16738.479 0 0 5269.521 12.011701 + 9200 16738.479 0 0 5269.5212 12.011722 + 9250 16738.479 0 0 5269.5213 12.011738 + 9300 16738.48 0 0 5269.5214 12.011746 + 9350 16738.48 0 0 5269.5214 12.011744 + 9400 16738.48 0 0 5269.5215 12.011732 + 9450 16738.48 0 0 5269.5216 12.011715 + 9500 16738.481 -0.00037652437 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156159 0 5269.5203 12.011611 + 9600 16738.549 -0.026814369 0 5269.5163 12.011415 + 9650 16738.765 -0.10191523 0 5269.5092 12.011013 + 9700 16735.041 1.0589887 0 5269.4979 12.062708 + 9750 16738.013 0.135501 0 5269.5101 11.407245 + 9800 16738.512 -0.011620329 0 5269.5201 11.394973 + 9850 16738.489 -0.00067270548 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984569 0 5269.5242 11.395084 + 9950 16738.49 0 0 5269.5245 11.395076 + 10000 16738.49 0 0 5269.5246 11.395075 +Loop time of 0.191483 on 4 procs for 10000 steps with 81 atoms + +Performance: 451214.099 tau/day, 52223.854 timesteps/s +96.3% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0024264 | 0.0036595 | 0.0042815 | 1.2 | 1.91 +Neigh | 0.011347 | 0.012011 | 0.013367 | 0.7 | 6.27 +Comm | 0.081701 | 0.083476 | 0.087947 | 0.9 | 43.59 +Output | 0.0042565 | 0.0045614 | 0.0053556 | 0.7 | 2.38 +Modify | 0.075719 | 0.078165 | 0.080737 | 0.7 | 40.82 +Other | | 0.009611 | | | 5.02 + +Nlocal: 20.25 ave 38 max 3 min +Histogram: 1 0 1 0 0 0 1 0 0 1 +Nghost: 27.25 ave 48 max 13 min +Histogram: 1 0 1 1 0 0 0 0 0 1 +Neighs: 0 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.atomvar.g++.1 b/examples/rigid/log.20Apr18.rigid.atomvar.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..99098d04d21db9221011b9f511c469eb180e213f --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.atomvar.g++.1 @@ -0,0 +1,338 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic +atom_modify map array + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +variable bodies atom 1.0*gmask(clump1)+2.0*gmask(clump2)+3.0*gmask(clump3)+4.0*gmask(clump4)+5.0*gmask(clump5)+6.0*gmask(clump6)+7.0*gmask(clump7)+8.0*gmask(clump8)+9.0*gmask(clump9) +fix 1 all rigid custom v_bodies +9 rigid bodies with 81 atoms + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.984 | 3.984 | 3.984 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.685 571.71558 0 5265.82 32.006171 + 100 16298.442 136.66184 0 5267.653 16.444229 + 150 16682.606 17.490511 0 5269.4219 14.900344 + 200 16733.929 1.372872 0 5269.4617 14.569267 + 250 16738.853 -0.15252816 0 5269.4864 14.496404 + 300 16738.588 -0.055171335 0 5269.5002 14.496025 + 350 16738.492 -0.017444677 0 5269.5077 14.496446 + 400 16738.464 -0.0060102023 0 5269.5104 14.496618 + 450 16738.455 -0.0012713351 0 5269.5124 14.496701 + 500 16738.455 -0.00081068621 0 5269.5128 14.496709 + 550 16738.455 -0.00083203497 0 5269.5129 14.496707 + 600 16738.455 -0.00058355356 0 5269.5131 14.496709 + 650 16738.455 -0.00047226704 0 5269.5131 14.496708 + 700 16738.455 0 0 5269.5136 14.496713 + 750 16738.455 0 0 5269.5136 14.49671 + 800 16738.455 0 0 5269.5137 14.496709 + 850 16738.455 0 0 5269.5137 14.49671 + 900 16738.456 0 0 5269.5138 14.496713 + 950 16738.462 -0.0035323872 0 5269.5122 14.496671 + 1000 16738.586 -0.051135144 0 5269.5036 14.496229 + 1050 16737.358 0.32995057 0 5269.4981 14.525763 + 1100 16737.892 0.16210246 0 5269.4984 14.531983 + 1150 16738.703 -0.089235095 0 5269.5025 14.509899 + 1200 16738.466 -0.0075446243 0 5269.5096 14.510615 + 1250 16738.456 0 0 5269.514 14.510704 + 1300 16738.457 0 0 5269.5141 14.510701 + 1350 16738.457 0 0 5269.5141 14.510699 + 1400 16738.457 -0.00044736511 0 5269.5138 14.510693 + 1450 16738.458 -0.0010971179 0 5269.5134 14.510687 + 1500 16738.458 -0.00057885428 0 5269.5139 14.510698 + 1550 16738.457 0 0 5269.5143 14.51071 + 1600 16738.457 0 0 5269.5144 14.510712 + 1650 16738.457 0 0 5269.5144 14.510712 + 1700 16738.458 0 0 5269.5144 14.51071 + 1750 16738.458 0 0 5269.5145 14.510708 + 1800 16738.458 0 0 5269.5145 14.510706 + 1850 16738.458 0 0 5269.5146 14.510705 + 1900 16738.458 0 0 5269.5146 14.510706 + 1950 16738.465 -0.0031733615 0 5269.5134 14.510659 + 2000 16738.491 -0.013255268 0 5269.5117 14.510532 + 2050 16738.556 -0.0365811 0 5269.5087 14.51029 + 2100 16738.633 -0.063209659 0 5269.5065 14.510219 + 2150 16738.607 -0.05601761 0 5269.5055 14.510231 + 2200 16738.557 -0.038423032 0 5269.5072 14.510404 + 2250 16738.515 -0.023709918 0 5269.5088 14.510539 + 2300 16738.489 -0.013249035 0 5269.5111 14.510621 + 2350 16738.468 -0.0045563719 0 5269.5131 14.510714 + 2400 16738.46 -0.00052194273 0 5269.5146 14.510771 + 2450 16738.464 -0.0023259756 0 5269.514 14.510746 + 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 + 2550 16738.581 -0.044940117 0 5269.5085 14.510315 + 2600 16738.427 -7.9722839e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 + 2700 16738.761 -0.10614946 0 5269.5038 14.499584 + 2750 16733.973 1.4038179 0 5269.5064 14.598107 + 2800 16738.585 -0.046813448 0 5269.5076 14.511073 + 2850 16738.487 -0.012558719 0 5269.5111 14.510111 + 2900 16738.465 -0.0026252725 0 5269.514 14.510277 + 2950 16738.476 -0.0082220764 0 5269.512 14.510223 + 3000 16738.66 -0.071284779 0 5269.507 14.509758 + 3050 16715.332 7.2419351 0 5269.476 14.870305 + 3100 16653.226 26.818761 0 5269.5009 14.496764 + 3150 16739.351 -0.30690375 0 5269.4886 13.643904 + 3200 16733.238 1.6025328 0 5269.4737 12.016934 + 3250 16734.374 1.2554429 0 5269.4841 11.963561 + 3300 16732.156 1.9585967 0 5269.4893 12.234024 + 3350 16738.655 -0.079693236 0 5269.497 12.092757 + 3400 16738.543 -0.042215005 0 5269.4991 12.092809 + 3450 16738.591 -0.059327511 0 5269.4972 12.092536 + 3500 16738.759 -0.11761245 0 5269.4918 12.09203 + 3550 16713.405 7.846062 0 5269.4737 12.389816 + 3600 16734.939 1.0821936 0 5269.4891 12.173591 + 3650 16738.808 -0.13663194 0 5269.4882 12.027009 + 3700 16738.602 -0.070934367 0 5269.4889 12.025288 + 3750 16737.731 0.20706557 0 5269.4927 12.061948 + 3800 16738.578 -0.05582043 0 5269.4965 12.035665 + 3850 16738.471 -0.016307928 0 5269.5024 12.035302 + 3900 16738.449 -0.0058182199 0 5269.5059 12.035401 + 3950 16738.439 -0.0012027325 0 5269.5074 12.035461 + 4000 16738.436 -0.00020698452 0 5269.5075 12.035469 + 4050 16738.437 0 0 5269.5078 12.035454 + 4100 16738.437 0 0 5269.508 12.035435 + 4150 16738.438 0 0 5269.5081 12.035426 + 4200 16738.438 0 0 5269.5083 12.035432 + 4250 16738.439 0 0 5269.5085 12.035447 + 4300 16738.439 0 0 5269.5086 12.035463 + 4350 16738.44 0 0 5269.5087 12.035474 + 4400 16738.44 0 0 5269.5088 12.035478 + 4450 16738.44 0 0 5269.5089 12.035474 + 4500 16738.44 0 0 5269.509 12.035462 + 4550 16738.441 0 0 5269.5092 12.035449 + 4600 16738.441 0 0 5269.5093 12.035445 + 4650 16738.442 0 0 5269.5095 12.035451 + 4700 16738.442 0 0 5269.5096 12.03546 + 4750 16738.443 0 0 5269.5097 12.035465 + 4800 16738.443 0 0 5269.5098 12.035466 + 4850 16738.443 0 0 5269.51 12.035463 + 4900 16738.444 0 0 5269.5101 12.035456 + 4950 16738.444 0 0 5269.5102 12.035447 + 5000 16738.445 0 0 5269.5104 12.03544 + 5050 16738.445 0 0 5269.5105 12.035442 + 5100 16738.446 0 0 5269.5107 12.035455 + 5150 16738.446 0 0 5269.5108 12.03547 + 5200 16738.446 0 0 5269.5109 12.035479 + 5250 16738.447 0 0 5269.511 12.035479 + 5300 16738.447 0 0 5269.5111 12.03547 + 5350 16738.447 0 0 5269.5112 12.035454 + 5400 16738.448 0 0 5269.5113 12.035434 + 5450 16738.448 0 0 5269.5115 12.03542 + 5500 16738.449 0 0 5269.5117 12.035422 + 5550 16738.457 -0.0030919234 0 5269.5111 12.035383 + 5600 16738.51 -0.021618357 0 5269.5092 12.035106 + 5650 16738.622 -0.059214788 0 5269.507 12.035694 + 5700 16395.28 108.06942 0 5269.5463 24.369038 + 5750 16738.544 -0.033973429 0 5269.5077 12.011261 + 5800 16738.456 -0.0037013529 0 5269.5102 12.011675 + 5850 16738.451 0 0 5269.5123 12.011709 + 5900 16738.451 -0.00022115871 0 5269.5122 12.011687 + 5950 16738.452 -0.00024253349 0 5269.5124 12.011678 + 6000 16738.452 0 0 5269.5128 12.011688 + 6050 16738.453 0 0 5269.513 12.011702 + 6100 16738.453 0 0 5269.5131 12.011716 + 6150 16738.454 0 0 5269.5132 12.011725 + 6200 16738.454 0 0 5269.5133 12.011728 + 6250 16738.454 0 0 5269.5134 12.011723 + 6300 16738.455 0 0 5269.5135 12.011712 + 6350 16738.455 0 0 5269.5137 12.0117 + 6400 16738.456 0 0 5269.5138 12.011697 + 6450 16738.456 0 0 5269.514 12.011704 + 6500 16738.456 0 0 5269.5141 12.011714 + 6550 16738.457 0 0 5269.5142 12.011719 + 6600 16738.457 0 0 5269.5143 12.011718 + 6650 16738.458 0 0 5269.5144 12.011713 + 6700 16738.458 0 0 5269.5146 12.011705 + 6750 16738.459 0 0 5269.5147 12.011696 + 6800 16738.459 0 0 5269.5149 12.01169 + 6850 16738.46 0 0 5269.515 12.011695 + 6900 16738.46 0 0 5269.5152 12.01171 + 6950 16738.46 0 0 5269.5153 12.011726 + 7000 16738.461 0 0 5269.5154 12.011736 + 7050 16738.461 0 0 5269.5155 12.011737 + 7100 16738.461 0 0 5269.5155 12.011728 + 7150 16738.461 0 0 5269.5156 12.011712 + 7200 16738.462 0 0 5269.5158 12.011691 + 7250 16738.463 0 0 5269.516 12.011676 + 7300 16738.463 0 0 5269.5162 12.011677 + 7350 16738.464 0 0 5269.5164 12.011693 + 7400 16738.464 0 0 5269.5165 12.011713 + 7450 16738.465 0 0 5269.5166 12.011729 + 7500 16738.465 0 0 5269.5167 12.011736 + 7550 16738.465 0 0 5269.5168 12.011734 + 7600 16738.465 0 0 5269.5168 12.011722 + 7650 16738.466 0 0 5269.517 12.011704 + 7700 16738.466 0 0 5269.5171 12.011687 + 7750 16738.467 0 0 5269.5173 12.011681 + 7800 16738.467 0 0 5269.5175 12.011687 + 7850 16738.468 0 0 5269.5176 12.0117 + 7900 16738.468 0 0 5269.5178 12.011712 + 7950 16738.469 0 0 5269.5179 12.011721 + 8000 16738.469 0 0 5269.518 12.011724 + 8050 16738.469 0 0 5269.5181 12.01172 + 8100 16738.47 0 0 5269.5182 12.011709 + 8150 16738.47 0 0 5269.5183 12.0117 + 8200 16738.47 0 0 5269.5185 12.0117 + 8250 16738.471 0 0 5269.5186 12.011709 + 8300 16738.471 0 0 5269.5187 12.011719 + 8350 16738.472 0 0 5269.5189 12.011723 + 8400 16738.472 0 0 5269.519 12.01172 + 8450 16738.473 -0.00039690663 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646802 0 5269.5182 12.011643 + 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 + 8600 16738.474 -0.00076532813 0 5269.5189 12.011681 + 8650 16738.474 0 0 5269.5197 12.011699 + 8700 16738.475 0 0 5269.5199 12.011715 + 8750 16738.475 0 0 5269.52 12.011732 + 8800 16738.475 0 0 5269.52 12.011743 + 8850 16738.476 0 0 5269.5201 12.011744 + 8900 16738.476 0 0 5269.5202 12.011735 + 8950 16738.476 0 0 5269.5203 12.011719 + 9000 16738.477 0 0 5269.5205 12.011698 + 9050 16738.477 0 0 5269.5206 12.011683 + 9100 16738.478 0 0 5269.5208 12.011684 + 9150 16738.479 0 0 5269.521 12.011701 + 9200 16738.479 0 0 5269.5212 12.011722 + 9250 16738.479 0 0 5269.5213 12.011738 + 9300 16738.48 0 0 5269.5214 12.011746 + 9350 16738.48 0 0 5269.5214 12.011744 + 9400 16738.48 0 0 5269.5215 12.011732 + 9450 16738.48 0 0 5269.5216 12.011715 + 9500 16738.481 -0.00037652438 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156162 0 5269.5203 12.011611 + 9600 16738.549 -0.026814371 0 5269.5163 12.011415 + 9650 16738.765 -0.10191523 0 5269.5092 12.011013 + 9700 16735.041 1.0589893 0 5269.4979 12.062708 + 9750 16738.013 0.13550102 0 5269.5101 11.407246 + 9800 16738.512 -0.011620328 0 5269.5201 11.394974 + 9850 16738.489 -0.00067270521 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984561 0 5269.5242 11.395085 + 9950 16738.49 0 0 5269.5245 11.395076 + 10000 16738.49 0 0 5269.5246 11.395075 +Loop time of 0.139024 on 1 procs for 10000 steps with 81 atoms + +Performance: 621477.474 tau/day, 71930.263 timesteps/s +99.0% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.010292 | 0.010292 | 0.010292 | 0.0 | 7.40 +Neigh | 0.036968 | 0.036968 | 0.036968 | 0.0 | 26.59 +Comm | 0.0091348 | 0.0091348 | 0.0091348 | 0.0 | 6.57 +Output | 0.0024047 | 0.0024047 | 0.0024047 | 0.0 | 1.73 +Modify | 0.074017 | 0.074017 | 0.074017 | 0.0 | 53.24 +Other | | 0.006207 | | | 4.46 + +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 84 ave 84 max 84 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.atomvar.g++.4 b/examples/rigid/log.20Apr18.rigid.atomvar.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..76344d09952c3346a80847688e6398edebf5d765 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.atomvar.g++.4 @@ -0,0 +1,338 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic +atom_modify map array + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +variable bodies atom 1.0*gmask(clump1)+2.0*gmask(clump2)+3.0*gmask(clump3)+4.0*gmask(clump4)+5.0*gmask(clump5)+6.0*gmask(clump6)+7.0*gmask(clump7)+8.0*gmask(clump8)+9.0*gmask(clump9) +fix 1 all rigid custom v_bodies +9 rigid bodies with 81 atoms + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.955 | 4.049 | 4.33 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.685 571.71558 0 5265.82 32.006171 + 100 16298.442 136.66184 0 5267.653 16.444229 + 150 16682.606 17.490511 0 5269.4219 14.900344 + 200 16733.929 1.372872 0 5269.4617 14.569267 + 250 16738.853 -0.15252816 0 5269.4864 14.496404 + 300 16738.588 -0.055171335 0 5269.5002 14.496025 + 350 16738.492 -0.017444677 0 5269.5077 14.496446 + 400 16738.464 -0.0060102023 0 5269.5104 14.496618 + 450 16738.455 -0.0012713351 0 5269.5124 14.496701 + 500 16738.455 -0.00081068621 0 5269.5128 14.496709 + 550 16738.455 -0.00083203497 0 5269.5129 14.496707 + 600 16738.455 -0.00058355356 0 5269.5131 14.496709 + 650 16738.455 -0.00047226704 0 5269.5131 14.496708 + 700 16738.455 0 0 5269.5136 14.496713 + 750 16738.455 0 0 5269.5136 14.49671 + 800 16738.455 0 0 5269.5137 14.496709 + 850 16738.455 0 0 5269.5137 14.49671 + 900 16738.456 0 0 5269.5138 14.496713 + 950 16738.462 -0.0035323872 0 5269.5122 14.496671 + 1000 16738.586 -0.051135144 0 5269.5036 14.496229 + 1050 16737.358 0.32995057 0 5269.4981 14.525763 + 1100 16737.892 0.16210246 0 5269.4984 14.531983 + 1150 16738.703 -0.089235095 0 5269.5025 14.509899 + 1200 16738.466 -0.0075446243 0 5269.5096 14.510615 + 1250 16738.456 0 0 5269.514 14.510704 + 1300 16738.457 0 0 5269.5141 14.510701 + 1350 16738.457 0 0 5269.5141 14.510699 + 1400 16738.457 -0.00044736511 0 5269.5138 14.510693 + 1450 16738.458 -0.0010971179 0 5269.5134 14.510687 + 1500 16738.458 -0.00057885428 0 5269.5139 14.510698 + 1550 16738.457 0 0 5269.5143 14.51071 + 1600 16738.457 0 0 5269.5144 14.510712 + 1650 16738.457 0 0 5269.5144 14.510712 + 1700 16738.458 0 0 5269.5144 14.51071 + 1750 16738.458 0 0 5269.5145 14.510708 + 1800 16738.458 0 0 5269.5145 14.510706 + 1850 16738.458 0 0 5269.5146 14.510705 + 1900 16738.458 0 0 5269.5146 14.510706 + 1950 16738.465 -0.0031733615 0 5269.5134 14.510659 + 2000 16738.491 -0.013255268 0 5269.5117 14.510532 + 2050 16738.556 -0.0365811 0 5269.5087 14.51029 + 2100 16738.633 -0.063209659 0 5269.5065 14.510219 + 2150 16738.607 -0.05601761 0 5269.5055 14.510231 + 2200 16738.557 -0.038423032 0 5269.5072 14.510404 + 2250 16738.515 -0.023709918 0 5269.5088 14.510539 + 2300 16738.489 -0.013249035 0 5269.5111 14.510621 + 2350 16738.468 -0.0045563719 0 5269.5131 14.510714 + 2400 16738.46 -0.00052194273 0 5269.5146 14.510771 + 2450 16738.464 -0.0023259756 0 5269.514 14.510746 + 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 + 2550 16738.581 -0.044940117 0 5269.5085 14.510315 + 2600 16738.427 -7.9722854e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 + 2700 16738.761 -0.10614946 0 5269.5038 14.499584 + 2750 16733.973 1.4038179 0 5269.5064 14.598107 + 2800 16738.585 -0.046813448 0 5269.5076 14.511073 + 2850 16738.487 -0.012558719 0 5269.5111 14.510111 + 2900 16738.465 -0.0026252725 0 5269.514 14.510277 + 2950 16738.476 -0.0082220764 0 5269.512 14.510223 + 3000 16738.66 -0.071284779 0 5269.507 14.509758 + 3050 16715.332 7.2419351 0 5269.476 14.870305 + 3100 16653.226 26.818761 0 5269.5009 14.496764 + 3150 16739.351 -0.30690375 0 5269.4886 13.643904 + 3200 16733.238 1.6025328 0 5269.4737 12.016934 + 3250 16734.374 1.2554429 0 5269.4841 11.963561 + 3300 16732.156 1.9585967 0 5269.4893 12.234024 + 3350 16738.655 -0.079693236 0 5269.497 12.092757 + 3400 16738.543 -0.042215005 0 5269.4991 12.092809 + 3450 16738.591 -0.059327511 0 5269.4972 12.092536 + 3500 16738.759 -0.11761245 0 5269.4918 12.09203 + 3550 16713.405 7.846062 0 5269.4737 12.389816 + 3600 16734.939 1.0821936 0 5269.4891 12.173591 + 3650 16738.808 -0.13663194 0 5269.4882 12.027009 + 3700 16738.602 -0.070934368 0 5269.4889 12.025288 + 3750 16737.731 0.20706558 0 5269.4927 12.061948 + 3800 16738.578 -0.05582043 0 5269.4965 12.035665 + 3850 16738.471 -0.016307928 0 5269.5024 12.035302 + 3900 16738.449 -0.0058182199 0 5269.5059 12.035401 + 3950 16738.439 -0.0012027325 0 5269.5074 12.035461 + 4000 16738.436 -0.00020698452 0 5269.5075 12.035469 + 4050 16738.437 0 0 5269.5078 12.035454 + 4100 16738.437 0 0 5269.508 12.035435 + 4150 16738.438 0 0 5269.5081 12.035426 + 4200 16738.438 0 0 5269.5083 12.035432 + 4250 16738.439 0 0 5269.5085 12.035447 + 4300 16738.439 0 0 5269.5086 12.035463 + 4350 16738.44 0 0 5269.5087 12.035474 + 4400 16738.44 0 0 5269.5088 12.035478 + 4450 16738.44 0 0 5269.5089 12.035474 + 4500 16738.44 0 0 5269.509 12.035462 + 4550 16738.441 0 0 5269.5092 12.035449 + 4600 16738.441 0 0 5269.5093 12.035445 + 4650 16738.442 0 0 5269.5095 12.035451 + 4700 16738.442 0 0 5269.5096 12.03546 + 4750 16738.443 0 0 5269.5097 12.035465 + 4800 16738.443 0 0 5269.5098 12.035466 + 4850 16738.443 0 0 5269.51 12.035463 + 4900 16738.444 0 0 5269.5101 12.035456 + 4950 16738.444 0 0 5269.5102 12.035447 + 5000 16738.445 0 0 5269.5104 12.03544 + 5050 16738.445 0 0 5269.5105 12.035442 + 5100 16738.446 0 0 5269.5107 12.035455 + 5150 16738.446 0 0 5269.5108 12.03547 + 5200 16738.446 0 0 5269.5109 12.035479 + 5250 16738.447 0 0 5269.511 12.035479 + 5300 16738.447 0 0 5269.5111 12.03547 + 5350 16738.447 0 0 5269.5112 12.035454 + 5400 16738.448 0 0 5269.5113 12.035434 + 5450 16738.448 0 0 5269.5115 12.03542 + 5500 16738.449 0 0 5269.5117 12.035422 + 5550 16738.457 -0.0030919234 0 5269.5111 12.035383 + 5600 16738.51 -0.021618357 0 5269.5092 12.035106 + 5650 16738.622 -0.059214788 0 5269.507 12.035694 + 5700 16395.28 108.06942 0 5269.5463 24.369038 + 5750 16738.544 -0.033973429 0 5269.5077 12.011261 + 5800 16738.456 -0.0037013529 0 5269.5102 12.011675 + 5850 16738.451 0 0 5269.5123 12.011709 + 5900 16738.451 -0.0002211587 0 5269.5122 12.011687 + 5950 16738.452 -0.00024253349 0 5269.5124 12.011678 + 6000 16738.452 0 0 5269.5128 12.011688 + 6050 16738.453 0 0 5269.513 12.011702 + 6100 16738.453 0 0 5269.5131 12.011716 + 6150 16738.454 0 0 5269.5132 12.011725 + 6200 16738.454 0 0 5269.5133 12.011728 + 6250 16738.454 0 0 5269.5134 12.011723 + 6300 16738.455 0 0 5269.5135 12.011712 + 6350 16738.455 0 0 5269.5137 12.0117 + 6400 16738.456 0 0 5269.5138 12.011697 + 6450 16738.456 0 0 5269.514 12.011704 + 6500 16738.456 0 0 5269.5141 12.011714 + 6550 16738.457 0 0 5269.5142 12.011719 + 6600 16738.457 0 0 5269.5143 12.011718 + 6650 16738.458 0 0 5269.5144 12.011713 + 6700 16738.458 0 0 5269.5146 12.011705 + 6750 16738.459 0 0 5269.5147 12.011696 + 6800 16738.459 0 0 5269.5149 12.01169 + 6850 16738.46 0 0 5269.515 12.011695 + 6900 16738.46 0 0 5269.5152 12.01171 + 6950 16738.46 0 0 5269.5153 12.011726 + 7000 16738.461 0 0 5269.5154 12.011736 + 7050 16738.461 0 0 5269.5155 12.011737 + 7100 16738.461 0 0 5269.5155 12.011728 + 7150 16738.461 0 0 5269.5156 12.011712 + 7200 16738.462 0 0 5269.5158 12.011691 + 7250 16738.463 0 0 5269.516 12.011676 + 7300 16738.463 0 0 5269.5162 12.011677 + 7350 16738.464 0 0 5269.5164 12.011693 + 7400 16738.464 0 0 5269.5165 12.011713 + 7450 16738.465 0 0 5269.5166 12.011729 + 7500 16738.465 0 0 5269.5167 12.011736 + 7550 16738.465 0 0 5269.5168 12.011734 + 7600 16738.465 0 0 5269.5168 12.011722 + 7650 16738.466 0 0 5269.517 12.011704 + 7700 16738.466 0 0 5269.5171 12.011687 + 7750 16738.467 0 0 5269.5173 12.011681 + 7800 16738.467 0 0 5269.5175 12.011687 + 7850 16738.468 0 0 5269.5176 12.0117 + 7900 16738.468 0 0 5269.5178 12.011712 + 7950 16738.469 0 0 5269.5179 12.011721 + 8000 16738.469 0 0 5269.518 12.011724 + 8050 16738.469 0 0 5269.5181 12.01172 + 8100 16738.47 0 0 5269.5182 12.011709 + 8150 16738.47 0 0 5269.5183 12.0117 + 8200 16738.47 0 0 5269.5185 12.0117 + 8250 16738.471 0 0 5269.5186 12.011709 + 8300 16738.471 0 0 5269.5187 12.011719 + 8350 16738.472 0 0 5269.5189 12.011723 + 8400 16738.472 0 0 5269.519 12.01172 + 8450 16738.473 -0.00039690664 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646803 0 5269.5182 12.011643 + 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 + 8600 16738.474 -0.00076532811 0 5269.5189 12.011681 + 8650 16738.474 0 0 5269.5197 12.011699 + 8700 16738.475 0 0 5269.5199 12.011715 + 8750 16738.475 0 0 5269.52 12.011732 + 8800 16738.475 0 0 5269.52 12.011743 + 8850 16738.476 0 0 5269.5201 12.011744 + 8900 16738.476 0 0 5269.5202 12.011735 + 8950 16738.476 0 0 5269.5203 12.011719 + 9000 16738.477 0 0 5269.5205 12.011698 + 9050 16738.477 0 0 5269.5206 12.011683 + 9100 16738.478 0 0 5269.5208 12.011684 + 9150 16738.479 0 0 5269.521 12.011701 + 9200 16738.479 0 0 5269.5212 12.011722 + 9250 16738.479 0 0 5269.5213 12.011738 + 9300 16738.48 0 0 5269.5214 12.011746 + 9350 16738.48 0 0 5269.5214 12.011744 + 9400 16738.48 0 0 5269.5215 12.011732 + 9450 16738.48 0 0 5269.5216 12.011715 + 9500 16738.481 -0.00037652437 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156159 0 5269.5203 12.011611 + 9600 16738.549 -0.026814369 0 5269.5163 12.011415 + 9650 16738.765 -0.10191523 0 5269.5092 12.011013 + 9700 16735.041 1.0589887 0 5269.4979 12.062708 + 9750 16738.013 0.135501 0 5269.5101 11.407245 + 9800 16738.512 -0.011620329 0 5269.5201 11.394973 + 9850 16738.489 -0.00067270548 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984569 0 5269.5242 11.395084 + 9950 16738.49 0 0 5269.5245 11.395076 + 10000 16738.49 0 0 5269.5246 11.395075 +Loop time of 0.202733 on 4 procs for 10000 steps with 81 atoms + +Performance: 426175.966 tau/day, 49325.922 timesteps/s +96.3% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0025222 | 0.0037088 | 0.0044038 | 1.2 | 1.83 +Neigh | 0.01135 | 0.012003 | 0.013654 | 0.9 | 5.92 +Comm | 0.088217 | 0.089948 | 0.091659 | 0.4 | 44.37 +Output | 0.0044014 | 0.0047023 | 0.0055132 | 0.7 | 2.32 +Modify | 0.080218 | 0.082638 | 0.084872 | 0.6 | 40.76 +Other | | 0.009733 | | | 4.80 + +Nlocal: 20.25 ave 38 max 3 min +Histogram: 1 0 1 0 0 0 1 0 0 1 +Nghost: 27.25 ave 48 max 13 min +Histogram: 1 0 1 1 0 0 0 0 0 1 +Neighs: 0 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.early.g++.1 b/examples/rigid/log.20Apr18.rigid.early.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..5402647b9814753bbcfd831d54d12823586a59f1 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.early.g++.1 @@ -0,0 +1,337 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 +9 rigid bodies with 81 atoms + +fix_modify 1 bodyforces early + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.979 | 3.979 | 3.979 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.685 571.71558 0 5265.82 32.006171 + 100 16298.442 136.66184 0 5267.653 16.444229 + 150 16682.606 17.490511 0 5269.4219 14.900344 + 200 16733.929 1.372872 0 5269.4617 14.569267 + 250 16738.853 -0.15252816 0 5269.4864 14.496404 + 300 16738.588 -0.055171335 0 5269.5002 14.496025 + 350 16738.492 -0.017444677 0 5269.5077 14.496446 + 400 16738.464 -0.0060102023 0 5269.5104 14.496618 + 450 16738.455 -0.0012713351 0 5269.5124 14.496701 + 500 16738.455 -0.00081068621 0 5269.5128 14.496709 + 550 16738.455 -0.00083203497 0 5269.5129 14.496707 + 600 16738.455 -0.00058355356 0 5269.5131 14.496709 + 650 16738.455 -0.00047226704 0 5269.5131 14.496708 + 700 16738.455 0 0 5269.5136 14.496713 + 750 16738.455 0 0 5269.5136 14.49671 + 800 16738.455 0 0 5269.5137 14.496709 + 850 16738.455 0 0 5269.5137 14.49671 + 900 16738.456 0 0 5269.5138 14.496713 + 950 16738.462 -0.0035323872 0 5269.5122 14.496671 + 1000 16738.586 -0.051135144 0 5269.5036 14.496229 + 1050 16737.358 0.32995057 0 5269.4981 14.525763 + 1100 16737.892 0.16210246 0 5269.4984 14.531983 + 1150 16738.703 -0.089235095 0 5269.5025 14.509899 + 1200 16738.466 -0.0075446243 0 5269.5096 14.510615 + 1250 16738.456 0 0 5269.514 14.510704 + 1300 16738.457 0 0 5269.5141 14.510701 + 1350 16738.457 0 0 5269.5141 14.510699 + 1400 16738.457 -0.00044736511 0 5269.5138 14.510693 + 1450 16738.458 -0.0010971179 0 5269.5134 14.510687 + 1500 16738.458 -0.00057885428 0 5269.5139 14.510698 + 1550 16738.457 0 0 5269.5143 14.51071 + 1600 16738.457 0 0 5269.5144 14.510712 + 1650 16738.457 0 0 5269.5144 14.510712 + 1700 16738.458 0 0 5269.5144 14.51071 + 1750 16738.458 0 0 5269.5145 14.510708 + 1800 16738.458 0 0 5269.5145 14.510706 + 1850 16738.458 0 0 5269.5146 14.510705 + 1900 16738.458 0 0 5269.5146 14.510706 + 1950 16738.465 -0.0031733615 0 5269.5134 14.510659 + 2000 16738.491 -0.013255268 0 5269.5117 14.510532 + 2050 16738.556 -0.0365811 0 5269.5087 14.51029 + 2100 16738.633 -0.063209659 0 5269.5065 14.510219 + 2150 16738.607 -0.05601761 0 5269.5055 14.510231 + 2200 16738.557 -0.038423032 0 5269.5072 14.510404 + 2250 16738.515 -0.023709918 0 5269.5088 14.510539 + 2300 16738.489 -0.013249035 0 5269.5111 14.510621 + 2350 16738.468 -0.0045563719 0 5269.5131 14.510714 + 2400 16738.46 -0.00052194273 0 5269.5146 14.510771 + 2450 16738.464 -0.0023259756 0 5269.514 14.510746 + 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 + 2550 16738.581 -0.044940117 0 5269.5085 14.510315 + 2600 16738.427 -7.9722839e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 + 2700 16738.761 -0.10614946 0 5269.5038 14.499584 + 2750 16733.973 1.4038179 0 5269.5064 14.598107 + 2800 16738.585 -0.046813448 0 5269.5076 14.511073 + 2850 16738.487 -0.012558719 0 5269.5111 14.510111 + 2900 16738.465 -0.0026252725 0 5269.514 14.510277 + 2950 16738.476 -0.0082220764 0 5269.512 14.510223 + 3000 16738.66 -0.071284779 0 5269.507 14.509758 + 3050 16715.332 7.2419351 0 5269.476 14.870305 + 3100 16653.226 26.818761 0 5269.5009 14.496764 + 3150 16739.351 -0.30690375 0 5269.4886 13.643904 + 3200 16733.238 1.6025328 0 5269.4737 12.016934 + 3250 16734.374 1.2554429 0 5269.4841 11.963561 + 3300 16732.156 1.9585967 0 5269.4893 12.234024 + 3350 16738.655 -0.079693236 0 5269.497 12.092757 + 3400 16738.543 -0.042215005 0 5269.4991 12.092809 + 3450 16738.591 -0.059327511 0 5269.4972 12.092536 + 3500 16738.759 -0.11761245 0 5269.4918 12.09203 + 3550 16713.405 7.846062 0 5269.4737 12.389816 + 3600 16734.939 1.0821936 0 5269.4891 12.173591 + 3650 16738.808 -0.13663194 0 5269.4882 12.027009 + 3700 16738.602 -0.070934367 0 5269.4889 12.025288 + 3750 16737.731 0.20706557 0 5269.4927 12.061948 + 3800 16738.578 -0.05582043 0 5269.4965 12.035665 + 3850 16738.471 -0.016307928 0 5269.5024 12.035302 + 3900 16738.449 -0.0058182199 0 5269.5059 12.035401 + 3950 16738.439 -0.0012027325 0 5269.5074 12.035461 + 4000 16738.436 -0.00020698452 0 5269.5075 12.035469 + 4050 16738.437 0 0 5269.5078 12.035454 + 4100 16738.437 0 0 5269.508 12.035435 + 4150 16738.438 0 0 5269.5081 12.035426 + 4200 16738.438 0 0 5269.5083 12.035432 + 4250 16738.439 0 0 5269.5085 12.035447 + 4300 16738.439 0 0 5269.5086 12.035463 + 4350 16738.44 0 0 5269.5087 12.035474 + 4400 16738.44 0 0 5269.5088 12.035478 + 4450 16738.44 0 0 5269.5089 12.035474 + 4500 16738.44 0 0 5269.509 12.035462 + 4550 16738.441 0 0 5269.5092 12.035449 + 4600 16738.441 0 0 5269.5093 12.035445 + 4650 16738.442 0 0 5269.5095 12.035451 + 4700 16738.442 0 0 5269.5096 12.03546 + 4750 16738.443 0 0 5269.5097 12.035465 + 4800 16738.443 0 0 5269.5098 12.035466 + 4850 16738.443 0 0 5269.51 12.035463 + 4900 16738.444 0 0 5269.5101 12.035456 + 4950 16738.444 0 0 5269.5102 12.035447 + 5000 16738.445 0 0 5269.5104 12.03544 + 5050 16738.445 0 0 5269.5105 12.035442 + 5100 16738.446 0 0 5269.5107 12.035455 + 5150 16738.446 0 0 5269.5108 12.03547 + 5200 16738.446 0 0 5269.5109 12.035479 + 5250 16738.447 0 0 5269.511 12.035479 + 5300 16738.447 0 0 5269.5111 12.03547 + 5350 16738.447 0 0 5269.5112 12.035454 + 5400 16738.448 0 0 5269.5113 12.035434 + 5450 16738.448 0 0 5269.5115 12.03542 + 5500 16738.449 0 0 5269.5117 12.035422 + 5550 16738.457 -0.0030919234 0 5269.5111 12.035383 + 5600 16738.51 -0.021618357 0 5269.5092 12.035106 + 5650 16738.622 -0.059214788 0 5269.507 12.035694 + 5700 16395.28 108.06942 0 5269.5463 24.369038 + 5750 16738.544 -0.033973429 0 5269.5077 12.011261 + 5800 16738.456 -0.0037013529 0 5269.5102 12.011675 + 5850 16738.451 0 0 5269.5123 12.011709 + 5900 16738.451 -0.00022115871 0 5269.5122 12.011687 + 5950 16738.452 -0.00024253349 0 5269.5124 12.011678 + 6000 16738.452 0 0 5269.5128 12.011688 + 6050 16738.453 0 0 5269.513 12.011702 + 6100 16738.453 0 0 5269.5131 12.011716 + 6150 16738.454 0 0 5269.5132 12.011725 + 6200 16738.454 0 0 5269.5133 12.011728 + 6250 16738.454 0 0 5269.5134 12.011723 + 6300 16738.455 0 0 5269.5135 12.011712 + 6350 16738.455 0 0 5269.5137 12.0117 + 6400 16738.456 0 0 5269.5138 12.011697 + 6450 16738.456 0 0 5269.514 12.011704 + 6500 16738.456 0 0 5269.5141 12.011714 + 6550 16738.457 0 0 5269.5142 12.011719 + 6600 16738.457 0 0 5269.5143 12.011718 + 6650 16738.458 0 0 5269.5144 12.011713 + 6700 16738.458 0 0 5269.5146 12.011705 + 6750 16738.459 0 0 5269.5147 12.011696 + 6800 16738.459 0 0 5269.5149 12.01169 + 6850 16738.46 0 0 5269.515 12.011695 + 6900 16738.46 0 0 5269.5152 12.01171 + 6950 16738.46 0 0 5269.5153 12.011726 + 7000 16738.461 0 0 5269.5154 12.011736 + 7050 16738.461 0 0 5269.5155 12.011737 + 7100 16738.461 0 0 5269.5155 12.011728 + 7150 16738.461 0 0 5269.5156 12.011712 + 7200 16738.462 0 0 5269.5158 12.011691 + 7250 16738.463 0 0 5269.516 12.011676 + 7300 16738.463 0 0 5269.5162 12.011677 + 7350 16738.464 0 0 5269.5164 12.011693 + 7400 16738.464 0 0 5269.5165 12.011713 + 7450 16738.465 0 0 5269.5166 12.011729 + 7500 16738.465 0 0 5269.5167 12.011736 + 7550 16738.465 0 0 5269.5168 12.011734 + 7600 16738.465 0 0 5269.5168 12.011722 + 7650 16738.466 0 0 5269.517 12.011704 + 7700 16738.466 0 0 5269.5171 12.011687 + 7750 16738.467 0 0 5269.5173 12.011681 + 7800 16738.467 0 0 5269.5175 12.011687 + 7850 16738.468 0 0 5269.5176 12.0117 + 7900 16738.468 0 0 5269.5178 12.011712 + 7950 16738.469 0 0 5269.5179 12.011721 + 8000 16738.469 0 0 5269.518 12.011724 + 8050 16738.469 0 0 5269.5181 12.01172 + 8100 16738.47 0 0 5269.5182 12.011709 + 8150 16738.47 0 0 5269.5183 12.0117 + 8200 16738.47 0 0 5269.5185 12.0117 + 8250 16738.471 0 0 5269.5186 12.011709 + 8300 16738.471 0 0 5269.5187 12.011719 + 8350 16738.472 0 0 5269.5189 12.011723 + 8400 16738.472 0 0 5269.519 12.01172 + 8450 16738.473 -0.00039690663 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646802 0 5269.5182 12.011643 + 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 + 8600 16738.474 -0.00076532813 0 5269.5189 12.011681 + 8650 16738.474 0 0 5269.5197 12.011699 + 8700 16738.475 0 0 5269.5199 12.011715 + 8750 16738.475 0 0 5269.52 12.011732 + 8800 16738.475 0 0 5269.52 12.011743 + 8850 16738.476 0 0 5269.5201 12.011744 + 8900 16738.476 0 0 5269.5202 12.011735 + 8950 16738.476 0 0 5269.5203 12.011719 + 9000 16738.477 0 0 5269.5205 12.011698 + 9050 16738.477 0 0 5269.5206 12.011683 + 9100 16738.478 0 0 5269.5208 12.011684 + 9150 16738.479 0 0 5269.521 12.011701 + 9200 16738.479 0 0 5269.5212 12.011722 + 9250 16738.479 0 0 5269.5213 12.011738 + 9300 16738.48 0 0 5269.5214 12.011746 + 9350 16738.48 0 0 5269.5214 12.011744 + 9400 16738.48 0 0 5269.5215 12.011732 + 9450 16738.48 0 0 5269.5216 12.011715 + 9500 16738.481 -0.00037652438 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156162 0 5269.5203 12.011611 + 9600 16738.549 -0.026814371 0 5269.5163 12.011415 + 9650 16738.765 -0.10191523 0 5269.5092 12.011013 + 9700 16735.041 1.0589893 0 5269.4979 12.062708 + 9750 16738.013 0.13550102 0 5269.5101 11.407246 + 9800 16738.512 -0.011620328 0 5269.5201 11.394974 + 9850 16738.489 -0.00067270521 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984561 0 5269.5242 11.395085 + 9950 16738.49 0 0 5269.5245 11.395076 + 10000 16738.49 0 0 5269.5246 11.395075 +Loop time of 0.142284 on 1 procs for 10000 steps with 81 atoms + +Performance: 607236.588 tau/day, 70282.013 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.010693 | 0.010693 | 0.010693 | 0.0 | 7.52 +Neigh | 0.037908 | 0.037908 | 0.037908 | 0.0 | 26.64 +Comm | 0.0087049 | 0.0087049 | 0.0087049 | 0.0 | 6.12 +Output | 0.0025849 | 0.0025849 | 0.0025849 | 0.0 | 1.82 +Modify | 0.076329 | 0.076329 | 0.076329 | 0.0 | 53.65 +Other | | 0.006064 | | | 4.26 + +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 84 ave 84 max 84 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.early.g++.4 b/examples/rigid/log.20Apr18.rigid.early.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..c9513a211e9fbc42cfb70bea162e3791cbd98abc --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.early.g++.4 @@ -0,0 +1,337 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 +9 rigid bodies with 81 atoms + +fix_modify 1 bodyforces early + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.95 | 4.044 | 4.326 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.685 571.71558 0 5265.82 32.006171 + 100 16298.442 136.66184 0 5267.653 16.444229 + 150 16682.606 17.490511 0 5269.4219 14.900344 + 200 16733.929 1.372872 0 5269.4617 14.569267 + 250 16738.853 -0.15252816 0 5269.4864 14.496404 + 300 16738.588 -0.055171335 0 5269.5002 14.496025 + 350 16738.492 -0.017444677 0 5269.5077 14.496446 + 400 16738.464 -0.0060102023 0 5269.5104 14.496618 + 450 16738.455 -0.0012713351 0 5269.5124 14.496701 + 500 16738.455 -0.00081068621 0 5269.5128 14.496709 + 550 16738.455 -0.00083203497 0 5269.5129 14.496707 + 600 16738.455 -0.00058355356 0 5269.5131 14.496709 + 650 16738.455 -0.00047226704 0 5269.5131 14.496708 + 700 16738.455 0 0 5269.5136 14.496713 + 750 16738.455 0 0 5269.5136 14.49671 + 800 16738.455 0 0 5269.5137 14.496709 + 850 16738.455 0 0 5269.5137 14.49671 + 900 16738.456 0 0 5269.5138 14.496713 + 950 16738.462 -0.0035323872 0 5269.5122 14.496671 + 1000 16738.586 -0.051135144 0 5269.5036 14.496229 + 1050 16737.358 0.32995057 0 5269.4981 14.525763 + 1100 16737.892 0.16210246 0 5269.4984 14.531983 + 1150 16738.703 -0.089235095 0 5269.5025 14.509899 + 1200 16738.466 -0.0075446243 0 5269.5096 14.510615 + 1250 16738.456 0 0 5269.514 14.510704 + 1300 16738.457 0 0 5269.5141 14.510701 + 1350 16738.457 0 0 5269.5141 14.510699 + 1400 16738.457 -0.00044736511 0 5269.5138 14.510693 + 1450 16738.458 -0.0010971179 0 5269.5134 14.510687 + 1500 16738.458 -0.00057885428 0 5269.5139 14.510698 + 1550 16738.457 0 0 5269.5143 14.51071 + 1600 16738.457 0 0 5269.5144 14.510712 + 1650 16738.457 0 0 5269.5144 14.510712 + 1700 16738.458 0 0 5269.5144 14.51071 + 1750 16738.458 0 0 5269.5145 14.510708 + 1800 16738.458 0 0 5269.5145 14.510706 + 1850 16738.458 0 0 5269.5146 14.510705 + 1900 16738.458 0 0 5269.5146 14.510706 + 1950 16738.465 -0.0031733615 0 5269.5134 14.510659 + 2000 16738.491 -0.013255268 0 5269.5117 14.510532 + 2050 16738.556 -0.0365811 0 5269.5087 14.51029 + 2100 16738.633 -0.063209659 0 5269.5065 14.510219 + 2150 16738.607 -0.05601761 0 5269.5055 14.510231 + 2200 16738.557 -0.038423032 0 5269.5072 14.510404 + 2250 16738.515 -0.023709918 0 5269.5088 14.510539 + 2300 16738.489 -0.013249035 0 5269.5111 14.510621 + 2350 16738.468 -0.0045563719 0 5269.5131 14.510714 + 2400 16738.46 -0.00052194273 0 5269.5146 14.510771 + 2450 16738.464 -0.0023259756 0 5269.514 14.510746 + 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 + 2550 16738.581 -0.044940117 0 5269.5085 14.510315 + 2600 16738.427 -7.9722854e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 + 2700 16738.761 -0.10614946 0 5269.5038 14.499584 + 2750 16733.973 1.4038179 0 5269.5064 14.598107 + 2800 16738.585 -0.046813448 0 5269.5076 14.511073 + 2850 16738.487 -0.012558719 0 5269.5111 14.510111 + 2900 16738.465 -0.0026252725 0 5269.514 14.510277 + 2950 16738.476 -0.0082220764 0 5269.512 14.510223 + 3000 16738.66 -0.071284779 0 5269.507 14.509758 + 3050 16715.332 7.2419351 0 5269.476 14.870305 + 3100 16653.226 26.818761 0 5269.5009 14.496764 + 3150 16739.351 -0.30690375 0 5269.4886 13.643904 + 3200 16733.238 1.6025328 0 5269.4737 12.016934 + 3250 16734.374 1.2554429 0 5269.4841 11.963561 + 3300 16732.156 1.9585967 0 5269.4893 12.234024 + 3350 16738.655 -0.079693236 0 5269.497 12.092757 + 3400 16738.543 -0.042215005 0 5269.4991 12.092809 + 3450 16738.591 -0.059327511 0 5269.4972 12.092536 + 3500 16738.759 -0.11761245 0 5269.4918 12.09203 + 3550 16713.405 7.846062 0 5269.4737 12.389816 + 3600 16734.939 1.0821936 0 5269.4891 12.173591 + 3650 16738.808 -0.13663194 0 5269.4882 12.027009 + 3700 16738.602 -0.070934368 0 5269.4889 12.025288 + 3750 16737.731 0.20706558 0 5269.4927 12.061948 + 3800 16738.578 -0.05582043 0 5269.4965 12.035665 + 3850 16738.471 -0.016307928 0 5269.5024 12.035302 + 3900 16738.449 -0.0058182199 0 5269.5059 12.035401 + 3950 16738.439 -0.0012027325 0 5269.5074 12.035461 + 4000 16738.436 -0.00020698452 0 5269.5075 12.035469 + 4050 16738.437 0 0 5269.5078 12.035454 + 4100 16738.437 0 0 5269.508 12.035435 + 4150 16738.438 0 0 5269.5081 12.035426 + 4200 16738.438 0 0 5269.5083 12.035432 + 4250 16738.439 0 0 5269.5085 12.035447 + 4300 16738.439 0 0 5269.5086 12.035463 + 4350 16738.44 0 0 5269.5087 12.035474 + 4400 16738.44 0 0 5269.5088 12.035478 + 4450 16738.44 0 0 5269.5089 12.035474 + 4500 16738.44 0 0 5269.509 12.035462 + 4550 16738.441 0 0 5269.5092 12.035449 + 4600 16738.441 0 0 5269.5093 12.035445 + 4650 16738.442 0 0 5269.5095 12.035451 + 4700 16738.442 0 0 5269.5096 12.03546 + 4750 16738.443 0 0 5269.5097 12.035465 + 4800 16738.443 0 0 5269.5098 12.035466 + 4850 16738.443 0 0 5269.51 12.035463 + 4900 16738.444 0 0 5269.5101 12.035456 + 4950 16738.444 0 0 5269.5102 12.035447 + 5000 16738.445 0 0 5269.5104 12.03544 + 5050 16738.445 0 0 5269.5105 12.035442 + 5100 16738.446 0 0 5269.5107 12.035455 + 5150 16738.446 0 0 5269.5108 12.03547 + 5200 16738.446 0 0 5269.5109 12.035479 + 5250 16738.447 0 0 5269.511 12.035479 + 5300 16738.447 0 0 5269.5111 12.03547 + 5350 16738.447 0 0 5269.5112 12.035454 + 5400 16738.448 0 0 5269.5113 12.035434 + 5450 16738.448 0 0 5269.5115 12.03542 + 5500 16738.449 0 0 5269.5117 12.035422 + 5550 16738.457 -0.0030919234 0 5269.5111 12.035383 + 5600 16738.51 -0.021618357 0 5269.5092 12.035106 + 5650 16738.622 -0.059214788 0 5269.507 12.035694 + 5700 16395.28 108.06942 0 5269.5463 24.369038 + 5750 16738.544 -0.033973429 0 5269.5077 12.011261 + 5800 16738.456 -0.0037013529 0 5269.5102 12.011675 + 5850 16738.451 0 0 5269.5123 12.011709 + 5900 16738.451 -0.0002211587 0 5269.5122 12.011687 + 5950 16738.452 -0.00024253349 0 5269.5124 12.011678 + 6000 16738.452 0 0 5269.5128 12.011688 + 6050 16738.453 0 0 5269.513 12.011702 + 6100 16738.453 0 0 5269.5131 12.011716 + 6150 16738.454 0 0 5269.5132 12.011725 + 6200 16738.454 0 0 5269.5133 12.011728 + 6250 16738.454 0 0 5269.5134 12.011723 + 6300 16738.455 0 0 5269.5135 12.011712 + 6350 16738.455 0 0 5269.5137 12.0117 + 6400 16738.456 0 0 5269.5138 12.011697 + 6450 16738.456 0 0 5269.514 12.011704 + 6500 16738.456 0 0 5269.5141 12.011714 + 6550 16738.457 0 0 5269.5142 12.011719 + 6600 16738.457 0 0 5269.5143 12.011718 + 6650 16738.458 0 0 5269.5144 12.011713 + 6700 16738.458 0 0 5269.5146 12.011705 + 6750 16738.459 0 0 5269.5147 12.011696 + 6800 16738.459 0 0 5269.5149 12.01169 + 6850 16738.46 0 0 5269.515 12.011695 + 6900 16738.46 0 0 5269.5152 12.01171 + 6950 16738.46 0 0 5269.5153 12.011726 + 7000 16738.461 0 0 5269.5154 12.011736 + 7050 16738.461 0 0 5269.5155 12.011737 + 7100 16738.461 0 0 5269.5155 12.011728 + 7150 16738.461 0 0 5269.5156 12.011712 + 7200 16738.462 0 0 5269.5158 12.011691 + 7250 16738.463 0 0 5269.516 12.011676 + 7300 16738.463 0 0 5269.5162 12.011677 + 7350 16738.464 0 0 5269.5164 12.011693 + 7400 16738.464 0 0 5269.5165 12.011713 + 7450 16738.465 0 0 5269.5166 12.011729 + 7500 16738.465 0 0 5269.5167 12.011736 + 7550 16738.465 0 0 5269.5168 12.011734 + 7600 16738.465 0 0 5269.5168 12.011722 + 7650 16738.466 0 0 5269.517 12.011704 + 7700 16738.466 0 0 5269.5171 12.011687 + 7750 16738.467 0 0 5269.5173 12.011681 + 7800 16738.467 0 0 5269.5175 12.011687 + 7850 16738.468 0 0 5269.5176 12.0117 + 7900 16738.468 0 0 5269.5178 12.011712 + 7950 16738.469 0 0 5269.5179 12.011721 + 8000 16738.469 0 0 5269.518 12.011724 + 8050 16738.469 0 0 5269.5181 12.01172 + 8100 16738.47 0 0 5269.5182 12.011709 + 8150 16738.47 0 0 5269.5183 12.0117 + 8200 16738.47 0 0 5269.5185 12.0117 + 8250 16738.471 0 0 5269.5186 12.011709 + 8300 16738.471 0 0 5269.5187 12.011719 + 8350 16738.472 0 0 5269.5189 12.011723 + 8400 16738.472 0 0 5269.519 12.01172 + 8450 16738.473 -0.00039690664 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646803 0 5269.5182 12.011643 + 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 + 8600 16738.474 -0.00076532811 0 5269.5189 12.011681 + 8650 16738.474 0 0 5269.5197 12.011699 + 8700 16738.475 0 0 5269.5199 12.011715 + 8750 16738.475 0 0 5269.52 12.011732 + 8800 16738.475 0 0 5269.52 12.011743 + 8850 16738.476 0 0 5269.5201 12.011744 + 8900 16738.476 0 0 5269.5202 12.011735 + 8950 16738.476 0 0 5269.5203 12.011719 + 9000 16738.477 0 0 5269.5205 12.011698 + 9050 16738.477 0 0 5269.5206 12.011683 + 9100 16738.478 0 0 5269.5208 12.011684 + 9150 16738.479 0 0 5269.521 12.011701 + 9200 16738.479 0 0 5269.5212 12.011722 + 9250 16738.479 0 0 5269.5213 12.011738 + 9300 16738.48 0 0 5269.5214 12.011746 + 9350 16738.48 0 0 5269.5214 12.011744 + 9400 16738.48 0 0 5269.5215 12.011732 + 9450 16738.48 0 0 5269.5216 12.011715 + 9500 16738.481 -0.00037652437 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156159 0 5269.5203 12.011611 + 9600 16738.549 -0.026814369 0 5269.5163 12.011415 + 9650 16738.765 -0.10191523 0 5269.5092 12.011013 + 9700 16735.041 1.0589887 0 5269.4979 12.062708 + 9750 16738.013 0.135501 0 5269.5101 11.407245 + 9800 16738.512 -0.011620329 0 5269.5201 11.394973 + 9850 16738.489 -0.00067270548 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984569 0 5269.5242 11.395084 + 9950 16738.49 0 0 5269.5245 11.395076 + 10000 16738.49 0 0 5269.5246 11.395075 +Loop time of 0.170899 on 4 procs for 10000 steps with 81 atoms + +Performance: 505560.431 tau/day, 58513.939 timesteps/s +96.4% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0024047 | 0.0038016 | 0.0044513 | 1.3 | 2.22 +Neigh | 0.011313 | 0.012043 | 0.013355 | 0.7 | 7.05 +Comm | 0.066761 | 0.069035 | 0.071617 | 0.7 | 40.40 +Output | 0.0038884 | 0.0041398 | 0.0048923 | 0.7 | 2.42 +Modify | 0.071143 | 0.072567 | 0.074478 | 0.4 | 42.46 +Other | | 0.009313 | | | 5.45 + +Nlocal: 20.25 ave 38 max 3 min +Histogram: 1 0 1 0 0 0 1 0 0 1 +Nghost: 27.25 ave 48 max 13 min +Histogram: 1 0 1 1 0 0 0 0 0 1 +Neighs: 0 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.5Oct16.rigid.g++.4 b/examples/rigid/log.20Apr18.rigid.g++.1 similarity index 91% rename from examples/rigid/log.5Oct16.rigid.g++.4 rename to examples/rigid/log.20Apr18.rigid.g++.1 index 968f3a2d99bab33a911e22007e3ebc8548aba0ab..ca76376e320f83b2172b8d71b901e500c6b9314f 100644 --- a/examples/rigid/log.5Oct16.rigid.g++.4 +++ b/examples/rigid/log.20Apr18.rigid.g++.1 @@ -1,4 +1,5 @@ -LAMMPS (5 Oct 2016) +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task # Simple rigid body system units lj @@ -8,7 +9,7 @@ pair_style lj/cut 2.5 read_data data.rigid orthogonal box = (-12 -12 -12) to (12 12 12) - 1 by 2 by 2 MPI processor grid + 1 by 1 by 1 MPI processor grid reading atoms ... 81 atoms @@ -91,13 +92,18 @@ timestep 0.0001 thermo 50 run 10000 Neighbor list info ... - 1 neighbor list requests update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 2.8 ghost atom cutoff = 2.8 - binsize = 1.4 -> bins = 18 18 18 -Memory usage per processor = 3.62803 Mbytes + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.979 | 3.979 | 3.979 Mbytes Step Temp E_pair E_mol TotEng Press 0 115.29439 5235.9179 0 5272.2142 -2.7403788 50 14910.685 571.71558 0 5265.82 32.006171 @@ -151,7 +157,7 @@ Step Temp E_pair E_mol TotEng Press 2450 16738.464 -0.0023259756 0 5269.514 14.510746 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 2550 16738.581 -0.044940117 0 5269.5085 14.510315 - 2600 16738.427 -7.9722832e-05 0 5269.5046 14.510657 + 2600 16738.427 -7.9722839e-05 0 5269.5046 14.510657 2650 16733.017 1.705148 0 5269.5067 14.596295 2700 16738.761 -0.10614946 0 5269.5038 14.499584 2750 16733.973 1.4038179 0 5269.5064 14.598107 @@ -173,7 +179,7 @@ Step Temp E_pair E_mol TotEng Press 3550 16713.405 7.846062 0 5269.4737 12.389816 3600 16734.939 1.0821936 0 5269.4891 12.173591 3650 16738.808 -0.13663194 0 5269.4882 12.027009 - 3700 16738.602 -0.070934368 0 5269.4889 12.025288 + 3700 16738.602 -0.070934367 0 5269.4889 12.025288 3750 16737.731 0.20706557 0 5269.4927 12.061948 3800 16738.578 -0.05582043 0 5269.4965 12.035665 3850 16738.471 -0.016307928 0 5269.5024 12.035302 @@ -269,7 +275,7 @@ Step Temp E_pair E_mol TotEng Press 8350 16738.472 0 0 5269.5189 12.011723 8400 16738.472 0 0 5269.519 12.01172 8450 16738.473 -0.00039690663 0 5269.5189 12.011706 - 8500 16738.481 -0.0034646803 0 5269.5182 12.011643 + 8500 16738.481 -0.0034646802 0 5269.5182 12.011643 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 8600 16738.474 -0.00076532813 0 5269.5189 12.011681 8650 16738.474 0 0 5269.5197 12.011699 @@ -290,37 +296,37 @@ Step Temp E_pair E_mol TotEng Press 9400 16738.48 0 0 5269.5215 12.011732 9450 16738.48 0 0 5269.5216 12.011715 9500 16738.481 -0.00037652438 0 5269.5216 12.011692 - 9550 16738.493 -0.0053156163 0 5269.5203 12.011611 + 9550 16738.493 -0.0053156162 0 5269.5203 12.011611 9600 16738.549 -0.026814371 0 5269.5163 12.011415 9650 16738.765 -0.10191523 0 5269.5092 12.011013 - 9700 16735.041 1.0589894 0 5269.4979 12.062708 - 9750 16738.013 0.13550109 0 5269.5101 11.407246 - 9800 16738.512 -0.011620327 0 5269.5201 11.394974 - 9850 16738.489 -0.00067270507 0 5269.5237 11.395098 - 9900 16738.489 -0.00024984555 0 5269.5242 11.395085 + 9700 16735.041 1.0589893 0 5269.4979 12.062708 + 9750 16738.013 0.13550102 0 5269.5101 11.407246 + 9800 16738.512 -0.011620328 0 5269.5201 11.394974 + 9850 16738.489 -0.00067270521 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984561 0 5269.5242 11.395085 9950 16738.49 0 0 5269.5245 11.395076 10000 16738.49 0 0 5269.5246 11.395075 -Loop time of 0.169479 on 4 procs for 10000 steps with 81 atoms +Loop time of 0.155936 on 1 procs for 10000 steps with 81 atoms -Performance: 509796.561 tau/day, 59004.232 timesteps/s -98.1% CPU use with 4 MPI tasks x no OpenMP threads +Performance: 554075.151 tau/day, 64129.068 timesteps/s +98.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 0.0024633 | 0.0031875 | 0.0039403 | 0.9 | 1.88 -Neigh | 0.010975 | 0.011817 | 0.013459 | 0.9 | 6.97 -Comm | 0.072126 | 0.074024 | 0.076456 | 0.7 | 43.68 -Output | 0.0034711 | 0.0036327 | 0.0040615 | 0.4 | 2.14 -Modify | 0.069286 | 0.070574 | 0.073233 | 0.6 | 41.64 -Other | | 0.006244 | | | 3.68 +Pair | 0.013007 | 0.013007 | 0.013007 | 0.0 | 8.34 +Neigh | 0.041885 | 0.041885 | 0.041885 | 0.0 | 26.86 +Comm | 0.0094752 | 0.0094752 | 0.0094752 | 0.0 | 6.08 +Output | 0.002636 | 0.002636 | 0.002636 | 0.0 | 1.69 +Modify | 0.082249 | 0.082249 | 0.082249 | 0.0 | 52.75 +Other | | 0.006683 | | | 4.29 -Nlocal: 20.25 ave 38 max 3 min -Histogram: 1 0 1 0 0 0 1 0 0 1 -Nghost: 27.25 ave 48 max 13 min -Histogram: 1 0 1 1 0 0 0 0 0 1 +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 84 ave 84 max 84 min +Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min -Histogram: 4 0 0 0 0 0 0 0 0 0 +Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 0 Ave neighs/atom = 0 diff --git a/examples/rigid/log.5Oct16.rigid.g++.1 b/examples/rigid/log.20Apr18.rigid.g++.4 similarity index 89% rename from examples/rigid/log.5Oct16.rigid.g++.1 rename to examples/rigid/log.20Apr18.rigid.g++.4 index 9b84f89c95e3182a0875dedd6ef0d13aa131af08..ff72c213edb53af7c1d29d67f70410453e144ca6 100644 --- a/examples/rigid/log.5Oct16.rigid.g++.1 +++ b/examples/rigid/log.20Apr18.rigid.g++.4 @@ -1,4 +1,5 @@ -LAMMPS (5 Oct 2016) +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task # Simple rigid body system units lj @@ -8,7 +9,7 @@ pair_style lj/cut 2.5 read_data data.rigid orthogonal box = (-12 -12 -12) to (12 12 12) - 1 by 1 by 1 MPI processor grid + 1 by 2 by 2 MPI processor grid reading atoms ... 81 atoms @@ -91,13 +92,18 @@ timestep 0.0001 thermo 50 run 10000 Neighbor list info ... - 1 neighbor list requests update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 2.8 ghost atom cutoff = 2.8 - binsize = 1.4 -> bins = 18 18 18 -Memory usage per processor = 3.65531 Mbytes + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.95 | 4.044 | 4.326 Mbytes Step Temp E_pair E_mol TotEng Press 0 115.29439 5235.9179 0 5272.2142 -2.7403788 50 14910.685 571.71558 0 5265.82 32.006171 @@ -151,8 +157,8 @@ Step Temp E_pair E_mol TotEng Press 2450 16738.464 -0.0023259756 0 5269.514 14.510746 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 2550 16738.581 -0.044940117 0 5269.5085 14.510315 - 2600 16738.427 -7.972284e-05 0 5269.5046 14.510657 - 2650 16733.017 1.7051479 0 5269.5067 14.596295 + 2600 16738.427 -7.9722854e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 2700 16738.761 -0.10614946 0 5269.5038 14.499584 2750 16733.973 1.4038179 0 5269.5064 14.598107 2800 16738.585 -0.046813448 0 5269.5076 14.511073 @@ -160,7 +166,7 @@ Step Temp E_pair E_mol TotEng Press 2900 16738.465 -0.0026252725 0 5269.514 14.510277 2950 16738.476 -0.0082220764 0 5269.512 14.510223 3000 16738.66 -0.071284779 0 5269.507 14.509758 - 3050 16715.332 7.2419352 0 5269.476 14.870305 + 3050 16715.332 7.2419351 0 5269.476 14.870305 3100 16653.226 26.818761 0 5269.5009 14.496764 3150 16739.351 -0.30690375 0 5269.4886 13.643904 3200 16733.238 1.6025328 0 5269.4737 12.016934 @@ -170,7 +176,7 @@ Step Temp E_pair E_mol TotEng Press 3400 16738.543 -0.042215005 0 5269.4991 12.092809 3450 16738.591 -0.059327511 0 5269.4972 12.092536 3500 16738.759 -0.11761245 0 5269.4918 12.09203 - 3550 16713.405 7.8460621 0 5269.4737 12.389816 + 3550 16713.405 7.846062 0 5269.4737 12.389816 3600 16734.939 1.0821936 0 5269.4891 12.173591 3650 16738.808 -0.13663194 0 5269.4882 12.027009 3700 16738.602 -0.070934368 0 5269.4889 12.025288 @@ -268,8 +274,8 @@ Step Temp E_pair E_mol TotEng Press 8300 16738.471 0 0 5269.5187 12.011719 8350 16738.472 0 0 5269.5189 12.011723 8400 16738.472 0 0 5269.519 12.01172 - 8450 16738.473 -0.00039690666 0 5269.5189 12.011706 - 8500 16738.481 -0.0034646804 0 5269.5182 12.011643 + 8450 16738.473 -0.00039690664 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646803 0 5269.5182 12.011643 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 8600 16738.474 -0.00076532811 0 5269.5189 12.011681 8650 16738.474 0 0 5269.5197 12.011699 @@ -289,38 +295,38 @@ Step Temp E_pair E_mol TotEng Press 9350 16738.48 0 0 5269.5214 12.011744 9400 16738.48 0 0 5269.5215 12.011732 9450 16738.48 0 0 5269.5216 12.011715 - 9500 16738.481 -0.00037652434 0 5269.5216 12.011692 - 9550 16738.493 -0.005315616 0 5269.5203 12.011611 - 9600 16738.549 -0.026814368 0 5269.5163 12.011415 + 9500 16738.481 -0.00037652437 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156159 0 5269.5203 12.011611 + 9600 16738.549 -0.026814369 0 5269.5163 12.011415 9650 16738.765 -0.10191523 0 5269.5092 12.011013 - 9700 16735.041 1.0589885 0 5269.4979 12.062708 - 9750 16738.013 0.13550123 0 5269.5101 11.407245 - 9800 16738.512 -0.011620328 0 5269.5201 11.394974 - 9850 16738.489 -0.00067270523 0 5269.5237 11.395098 - 9900 16738.489 -0.00024984554 0 5269.5242 11.395085 + 9700 16735.041 1.0589887 0 5269.4979 12.062708 + 9750 16738.013 0.135501 0 5269.5101 11.407245 + 9800 16738.512 -0.011620329 0 5269.5201 11.394973 + 9850 16738.489 -0.00067270548 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984569 0 5269.5242 11.395084 9950 16738.49 0 0 5269.5245 11.395076 10000 16738.49 0 0 5269.5246 11.395075 -Loop time of 0.125672 on 1 procs for 10000 steps with 81 atoms +Loop time of 0.194532 on 4 procs for 10000 steps with 81 atoms -Performance: 687503.421 tau/day, 79572.155 timesteps/s -100.2% CPU use with 1 MPI tasks x no OpenMP threads +Performance: 444142.918 tau/day, 51405.430 timesteps/s +96.3% CPU use with 4 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 0.0097554 | 0.0097554 | 0.0097554 | 0.0 | 7.76 -Neigh | 0.038657 | 0.038657 | 0.038657 | 0.0 | 30.76 -Comm | 0.0074 | 0.0074 | 0.0074 | 0.0 | 5.89 -Output | 0.0010791 | 0.0010791 | 0.0010791 | 0.0 | 0.86 -Modify | 0.064604 | 0.064604 | 0.064604 | 0.0 | 51.41 -Other | | 0.004176 | | | 3.32 +Pair | 0.0025368 | 0.003831 | 0.0045376 | 1.2 | 1.97 +Neigh | 0.011299 | 0.012014 | 0.013005 | 0.6 | 6.18 +Comm | 0.081939 | 0.084112 | 0.087817 | 0.8 | 43.24 +Output | 0.0044608 | 0.0047221 | 0.0053811 | 0.6 | 2.43 +Modify | 0.078212 | 0.080219 | 0.082467 | 0.7 | 41.24 +Other | | 0.009634 | | | 4.95 -Nlocal: 81 ave 81 max 81 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 84 ave 84 max 84 min -Histogram: 1 0 0 0 0 0 0 0 0 0 +Nlocal: 20.25 ave 38 max 3 min +Histogram: 1 0 1 0 0 0 1 0 0 1 +Nghost: 27.25 ave 48 max 13 min +Histogram: 1 0 1 1 0 0 0 0 0 1 Neighs: 0 ave 0 max 0 min -Histogram: 1 0 0 0 0 0 0 0 0 0 +Histogram: 4 0 0 0 0 0 0 0 0 0 Total # of neighbors = 0 Ave neighs/atom = 0 diff --git a/examples/rigid/log.20Apr18.rigid.nve.early.g++.1 b/examples/rigid/log.20Apr18.rigid.nve.early.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..7e92b4e6ef4efd96d7d3e1077f54cfc42e36a93c --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.nve.early.g++.1 @@ -0,0 +1,337 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +fix 1 all rigid/nve group 9 clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 +9 rigid bodies with 81 atoms + +fix_modify 1 bodyforces early + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.979 | 3.979 | 3.979 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.69 571.70921 0 5265.8153 32.005816 + 100 16298.128 136.75661 0 5267.6488 16.449029 + 150 16682.532 17.504156 0 5269.4124 14.901186 + 200 16733.906 1.3755079 0 5269.4571 14.571305 + 250 16738.861 -0.15272039 0 5269.4886 14.498342 + 300 16738.608 -0.055216883 0 5269.5066 14.498 + 350 16738.5 -0.017457072 0 5269.5104 14.498392 + 400 16738.451 -0.0060161309 0 5269.5063 14.49851 + 450 16738.435 -0.001271965 0 5269.5059 14.498571 + 500 16738.443 -0.00081074175 0 5269.509 14.498598 + 550 16738.452 -0.00083208965 0 5269.5118 14.498618 + 600 16738.45 -0.00058358431 0 5269.5116 14.498617 + 650 16738.443 -0.00047228525 0 5269.5093 14.4986 + 700 16738.444 0 0 5269.5102 14.498612 + 750 16738.461 0 0 5269.5157 14.498654 + 800 16738.479 0 0 5269.521 14.498697 + 850 16738.473 0 0 5269.5192 14.498683 + 900 16738.449 0 0 5269.5116 14.498624 + 950 16738.438 -0.0035324203 0 5269.5046 14.498537 + 1000 16738.562 -0.051134242 0 5269.4963 14.498093 + 1050 16737.343 0.32970192 0 5269.4934 14.527634 + 1100 16737.878 0.16213235 0 5269.4941 14.533864 + 1150 16738.682 -0.089236256 0 5269.4959 14.511765 + 1200 16738.444 -0.0075446558 0 5269.5025 14.512479 + 1250 16738.45 0 0 5269.5119 14.512611 + 1300 16738.475 0 0 5269.5199 14.512673 + 1350 16738.484 0 0 5269.5228 14.512696 + 1400 16738.469 -0.00044683992 0 5269.5175 14.512651 + 1450 16738.45 -0.0010933363 0 5269.511 14.512595 + 1500 16738.445 -0.00057484239 0 5269.51 14.512591 + 1550 16738.451 0 0 5269.5123 14.512615 + 1600 16738.452 0 0 5269.5127 14.512618 + 1650 16738.443 0 0 5269.5099 14.512596 + 1700 16738.433 0 0 5269.5068 14.512572 + 1750 16738.438 0 0 5269.5084 14.512584 + 1800 16738.459 0 0 5269.5149 14.512635 + 1850 16738.473 0 0 5269.5193 14.51267 + 1900 16738.462 0 0 5269.5159 14.512644 + 1950 16738.446 -0.0032069962 0 5269.5076 14.512539 + 2000 16738.463 -0.013425408 0 5269.5027 14.512382 + 2050 16738.535 -0.036964311 0 5269.5017 14.512152 + 2100 16738.621 -0.063490509 0 5269.5023 14.512108 + 2150 16738.594 -0.056143934 0 5269.5012 14.512117 + 2200 16738.536 -0.038486645 0 5269.5007 14.512277 + 2250 16738.496 -0.023712406 0 5269.503 14.51242 + 2300 16738.488 -0.013209094 0 5269.5109 14.51255 + 2350 16738.486 -0.0045244524 0 5269.519 14.512693 + 2400 16738.475 -0.00051678325 0 5269.5194 14.512743 + 2450 16738.456 -0.0023209272 0 5269.5115 14.512659 + 2500 16738.442 -0.0052101787 0 5269.5042 14.512594 + 2550 16738.552 -0.04420046 0 5269.4998 14.512177 + 2600 16738.42 -0.004347531 0 5269.4982 14.512783 + 2650 16734.241 1.3131302 0 5269.5 14.577195 + 2700 16738.737 -0.10612056 0 5269.4961 14.503874 + 2750 16732.705 1.7939719 0 5269.4974 14.629294 + 2800 16738.558 -0.042867033 0 5269.5032 14.519893 + 2850 16738.499 -0.01271227 0 5269.5146 14.518524 + 2900 16738.486 -0.0032778045 0 5269.52 14.518712 + 2950 16738.482 -0.0089544631 0 5269.5133 14.518629 + 3000 16738.647 -0.070862542 0 5269.5031 14.51803 + 3050 16678.313 18.829038 0 5269.409 15.533426 + 3100 16632.312 33.399217 0 5269.4975 14.588597 + 3150 16739.318 -0.31388148 0 5269.4715 13.520782 + 3200 16727.951 3.26736 0 5269.4741 12.288358 + 3250 16686.364 16.353793 0 5269.4682 14.152517 + 3300 16738.532 -0.031574462 0 5269.5064 13.310615 + 3350 16738.454 -0.0062292918 0 5269.5071 13.308187 + 3400 16738.445 -0.0049349125 0 5269.5055 13.308178 + 3450 16738.489 -0.021623738 0 5269.5026 13.308001 + 3500 16737.78 0.19719043 0 5269.4983 13.325999 + 3550 16658.578 25.116206 0 5269.4834 13.778249 + 3600 16738.51 -0.032864725 0 5269.4981 12.392389 + 3650 16738.899 -0.15952703 0 5269.4938 12.383503 + 3700 16738.879 -0.16025994 0 5269.487 12.382575 + 3750 16738.878 -0.16608251 0 5269.4806 12.382765 + 3800 16738.591 -0.078679341 0 5269.4776 12.383227 + 3850 16738.429 -0.024729409 0 5269.4807 12.382942 + 3900 16738.399 -0.0062729967 0 5269.4897 12.383192 + 3950 16738.428 -0.002521266 0 5269.5027 12.383324 + 4000 16738.467 -0.0002068506 0 5269.5173 12.383474 + 4050 16738.488 0 0 5269.5241 12.383531 + 4100 16738.468 0 0 5269.5178 12.383482 + 4150 16738.422 0 0 5269.5033 12.383369 + 4200 16738.387 0 0 5269.4921 12.383281 + 4250 16738.383 0 0 5269.4908 12.38327 + 4300 16738.4 0 0 5269.4964 12.383314 + 4350 16738.423 0 0 5269.5036 12.38337 + 4400 16738.441 0 0 5269.5092 12.383414 + 4450 16738.45 0 0 5269.5121 12.383437 + 4500 16738.45 0 0 5269.5122 12.383438 + 4550 16738.442 0 0 5269.5095 12.383417 + 4600 16738.425 0 0 5269.5042 12.383376 + 4650 16738.404 -0.0014438316 0 5269.4961 12.383299 + 4700 16738.444 -0.024020551 0 5269.4862 12.382975 + 4750 16738.49 -0.048521421 0 5269.4761 12.385777 + 4800 16735.057 1.0347219 0 5269.4786 12.43543 + 4850 16735.441 0.92650928 0 5269.4913 12.418653 + 4900 16723.839 4.5908971 0 5269.5033 13.410103 + 4950 16738.531 -0.021537669 0 5269.5159 13.089982 + 5000 16738.45 -0.0042589693 0 5269.5077 13.090062 + 5050 16738.409 -0.00024692474 0 5269.4987 13.090038 + 5100 16738.404 0 0 5269.4976 13.090032 + 5150 16738.421 0 0 5269.5029 13.090073 + 5200 16738.44 0 0 5269.5087 13.090119 + 5250 16738.448 -0.0012793921 0 5269.5102 13.090114 + 5300 16738.456 -0.0064376397 0 5269.5075 13.090026 + 5350 16738.479 -0.020383842 0 5269.5007 13.089898 + 5400 16735.845 0.79889481 0 5269.4909 13.136244 + 5450 16735.558 0.87619898 0 5269.4778 12.324482 + 5500 16711.494 8.47243 0 5269.4984 12.65658 + 5550 16454.525 89.074845 0 5269.2031 16.996503 + 5600 16713.084 7.9801091 0 5269.5065 13.774971 + 5650 16738.676 -0.079987812 0 5269.5033 13.168292 + 5700 16446.281 91.866085 0 5269.399 23.764658 + 5750 16738.549 -0.039869082 0 5269.5034 13.378117 + 5800 16738.487 -0.014994464 0 5269.5086 13.378394 + 5850 16738.466 -0.0051267378 0 5269.512 13.378555 + 5900 16738.462 -0.0043689966 0 5269.5113 13.378568 + 5950 16738.528 -0.032727396 0 5269.5039 13.378192 + 6000 16702.774 10.969422 0 5269.2502 13.788847 + 6050 16682.271 17.483217 0 5269.3092 13.353098 + 6100 16738.508 -0.028838289 0 5269.5016 12.521077 + 6150 16738.425 -0.0067595568 0 5269.4974 12.521216 + 6200 16738.401 -0.0011499904 0 5269.4955 12.521247 + 6250 16738.455 0 0 5269.5136 12.521403 + 6300 16738.523 0 0 5269.5352 12.521573 + 6350 16738.503 0 0 5269.5287 12.521525 + 6400 16738.427 0 0 5269.5047 12.521337 + 6450 16738.399 0 0 5269.496 12.521268 + 6500 16738.425 0 0 5269.5042 12.521331 + 6550 16738.441 0 0 5269.5093 12.521372 + 6600 16738.42 0 0 5269.5025 12.521319 + 6650 16738.398 0 0 5269.4957 12.521266 + 6700 16738.435 0 0 5269.5074 12.521355 + 6750 16738.505 0 0 5269.5293 12.521527 + 6800 16738.508 0 0 5269.5303 12.521536 + 6850 16738.446 0 0 5269.5108 12.521384 + 6900 16738.414 0 0 5269.5009 12.521306 + 6950 16738.432 0 0 5269.5063 12.521348 + 7000 16738.444 0 0 5269.5102 12.521378 + 7050 16738.421 0 0 5269.5029 12.521322 + 7100 16738.393 0 0 5269.4941 12.521253 + 7150 16738.419 0 0 5269.5022 12.521315 + 7200 16738.489 0 0 5269.5244 12.521489 + 7250 16738.505 0 0 5269.5293 12.521528 + 7300 16738.443 0 0 5269.5098 12.521376 + 7350 16738.404 0 0 5269.4976 12.521281 + 7400 16738.43 0 0 5269.5058 12.521343 + 7450 16738.461 0 0 5269.5156 12.521421 + 7500 16738.447 0 0 5269.5109 12.521385 + 7550 16738.407 0 0 5269.4986 12.521288 + 7600 16738.412 0 0 5269.5002 12.5213 + 7650 16738.478 0 0 5269.5208 12.52146 + 7700 16738.51 0 0 5269.5309 12.521541 + 7750 16738.454 0 0 5269.5135 12.521405 + 7800 16738.398 0 0 5269.4958 12.521267 + 7850 16738.407 -0.0002118068 0 5269.4982 12.521283 + 7900 16738.441 -0.00021679441 0 5269.509 12.521366 + 7950 16738.446 -0.00023847865 0 5269.5107 12.52138 + 8000 16738.423 0 0 5269.5035 12.521326 + 8050 16738.423 0 0 5269.5034 12.521325 + 8100 16738.478 -0.00069624411 0 5269.52 12.521447 + 8150 16738.523 -0.0040058094 0 5269.531 12.521494 + 8200 16738.486 -0.0092298399 0 5269.5142 12.521327 + 8250 16738.458 -0.023189572 0 5269.4914 12.521008 + 8300 16738.513 -0.045847775 0 5269.4861 12.520773 + 8350 16723.734 4.5722877 0 5269.4516 12.849562 + 8400 16738.466 -0.020202622 0 5269.497 12.835807 + 8450 16738.437 -0.012822209 0 5269.4952 12.829975 + 8500 16738.408 -0.001683355 0 5269.4972 12.8301 + 8550 16738.464 -0.00097382251 0 5269.5155 12.830254 + 8600 16738.669 -0.050581166 0 5269.5304 12.829973 + 8650 15918.256 250.07455 0 5261.3774 24.539208 + 8700 16738.446 0.00084613367 0 5269.5116 10.591358 + 8750 16738.472 -0.010145611 0 5269.5089 10.590277 + 8800 16738.468 0 0 5269.5176 10.590497 + 8850 16738.508 0 0 5269.5303 10.590596 + 8900 16738.509 0 0 5269.5306 10.590599 + 8950 16738.496 0 0 5269.5266 10.590568 + 9000 16738.477 0 0 5269.5204 10.59052 + 9050 16738.455 0 0 5269.5135 10.590465 + 9100 16738.477 0 0 5269.5205 10.590519 + 9150 16738.512 0 0 5269.5315 10.590606 + 9200 16738.502 0 0 5269.5285 10.590583 + 9250 16738.493 0 0 5269.5254 10.590559 + 9300 16738.482 0 0 5269.522 10.590532 + 9350 16738.46 0 0 5269.5151 10.590478 + 9400 16738.48 0 0 5269.5216 10.590528 + 9450 16738.509 0 0 5269.5306 10.590599 + 9500 16738.49 0 0 5269.5247 10.590554 + 9550 16738.484 0 0 5269.5226 10.590536 + 9600 16738.483 0 0 5269.5223 10.590534 + 9650 16738.464 0 0 5269.5165 10.590489 + 9700 16738.484 0 0 5269.5228 10.590537 + 9750 16738.507 0 0 5269.53 10.590595 + 9800 16738.482 0 0 5269.522 10.590532 + 9850 16738.478 0 0 5269.5207 10.590521 + 9900 16738.487 -0.00030979882 0 5269.5233 10.590538 + 9950 16738.476 -0.00095967357 0 5269.5193 10.590496 + 10000 16738.494 -0.00062714625 0 5269.5253 10.590548 +Loop time of 0.166298 on 1 procs for 10000 steps with 81 atoms + +Performance: 519549.516 tau/day, 60133.046 timesteps/s +99.4% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.011685 | 0.011685 | 0.011685 | 0.0 | 7.03 +Neigh | 0.038539 | 0.038539 | 0.038539 | 0.0 | 23.17 +Comm | 0.0086315 | 0.0086315 | 0.0086315 | 0.0 | 5.19 +Output | 0.0026531 | 0.0026531 | 0.0026531 | 0.0 | 1.60 +Modify | 0.098759 | 0.098759 | 0.098759 | 0.0 | 59.39 +Other | | 0.00603 | | | 3.63 + +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 49 ave 49 max 49 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 3 ave 3 max 3 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 3 +Ave neighs/atom = 0.037037 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.nve.early.g++.4 b/examples/rigid/log.20Apr18.rigid.nve.early.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..1c3592990bbae7b9871d3557490358b33bd2dcb9 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.nve.early.g++.4 @@ -0,0 +1,337 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +fix 1 all rigid/nve group 9 clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 +9 rigid bodies with 81 atoms + +fix_modify 1 bodyforces early + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.95 | 4.044 | 4.326 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.69 571.70921 0 5265.8153 32.005816 + 100 16298.128 136.75661 0 5267.6488 16.449029 + 150 16682.532 17.504156 0 5269.4124 14.901186 + 200 16733.906 1.3755079 0 5269.4571 14.571305 + 250 16738.861 -0.15272039 0 5269.4886 14.498342 + 300 16738.608 -0.055216883 0 5269.5066 14.498 + 350 16738.5 -0.017457072 0 5269.5104 14.498392 + 400 16738.451 -0.0060161309 0 5269.5063 14.49851 + 450 16738.435 -0.001271965 0 5269.5059 14.498571 + 500 16738.443 -0.00081074175 0 5269.509 14.498598 + 550 16738.452 -0.00083208965 0 5269.5118 14.498618 + 600 16738.45 -0.00058358431 0 5269.5116 14.498617 + 650 16738.443 -0.00047228525 0 5269.5093 14.4986 + 700 16738.444 0 0 5269.5102 14.498612 + 750 16738.461 0 0 5269.5157 14.498654 + 800 16738.479 0 0 5269.521 14.498697 + 850 16738.473 0 0 5269.5192 14.498683 + 900 16738.449 0 0 5269.5116 14.498624 + 950 16738.438 -0.0035324203 0 5269.5046 14.498537 + 1000 16738.562 -0.051134242 0 5269.4963 14.498093 + 1050 16737.343 0.32970192 0 5269.4934 14.527634 + 1100 16737.878 0.16213235 0 5269.4941 14.533864 + 1150 16738.682 -0.089236256 0 5269.4959 14.511765 + 1200 16738.444 -0.0075446558 0 5269.5025 14.512479 + 1250 16738.45 0 0 5269.5119 14.512611 + 1300 16738.475 0 0 5269.5199 14.512673 + 1350 16738.484 0 0 5269.5228 14.512696 + 1400 16738.469 -0.00044683992 0 5269.5175 14.512651 + 1450 16738.45 -0.0010933363 0 5269.511 14.512595 + 1500 16738.445 -0.00057484239 0 5269.51 14.512591 + 1550 16738.451 0 0 5269.5123 14.512615 + 1600 16738.452 0 0 5269.5127 14.512618 + 1650 16738.443 0 0 5269.5099 14.512596 + 1700 16738.433 0 0 5269.5068 14.512572 + 1750 16738.438 0 0 5269.5084 14.512584 + 1800 16738.459 0 0 5269.5149 14.512635 + 1850 16738.473 0 0 5269.5193 14.51267 + 1900 16738.462 0 0 5269.5159 14.512644 + 1950 16738.446 -0.0032069962 0 5269.5076 14.512539 + 2000 16738.463 -0.013425408 0 5269.5027 14.512382 + 2050 16738.535 -0.036964311 0 5269.5017 14.512152 + 2100 16738.621 -0.063490509 0 5269.5023 14.512108 + 2150 16738.594 -0.056143934 0 5269.5012 14.512117 + 2200 16738.536 -0.038486645 0 5269.5007 14.512277 + 2250 16738.496 -0.023712406 0 5269.503 14.51242 + 2300 16738.488 -0.013209094 0 5269.5109 14.51255 + 2350 16738.486 -0.0045244524 0 5269.519 14.512693 + 2400 16738.475 -0.00051678325 0 5269.5194 14.512743 + 2450 16738.456 -0.0023209272 0 5269.5115 14.512659 + 2500 16738.442 -0.0052101787 0 5269.5042 14.512594 + 2550 16738.552 -0.04420046 0 5269.4998 14.512177 + 2600 16738.42 -0.004347531 0 5269.4982 14.512783 + 2650 16734.241 1.3131302 0 5269.5 14.577195 + 2700 16738.737 -0.10612056 0 5269.4961 14.503874 + 2750 16732.705 1.7939719 0 5269.4974 14.629294 + 2800 16738.558 -0.042867033 0 5269.5032 14.519893 + 2850 16738.499 -0.01271227 0 5269.5146 14.518524 + 2900 16738.486 -0.0032778045 0 5269.52 14.518712 + 2950 16738.482 -0.0089544631 0 5269.5133 14.518629 + 3000 16738.647 -0.070862542 0 5269.5031 14.51803 + 3050 16678.313 18.829038 0 5269.409 15.533426 + 3100 16632.312 33.399217 0 5269.4975 14.588597 + 3150 16739.318 -0.31388148 0 5269.4715 13.520782 + 3200 16727.951 3.26736 0 5269.4741 12.288358 + 3250 16686.364 16.353793 0 5269.4682 14.152517 + 3300 16738.532 -0.031574462 0 5269.5064 13.310615 + 3350 16738.454 -0.0062292918 0 5269.5071 13.308187 + 3400 16738.445 -0.0049349125 0 5269.5055 13.308178 + 3450 16738.489 -0.021623738 0 5269.5026 13.308001 + 3500 16737.78 0.19719043 0 5269.4983 13.325999 + 3550 16658.578 25.116206 0 5269.4834 13.778249 + 3600 16738.51 -0.032864725 0 5269.4981 12.392389 + 3650 16738.899 -0.15952703 0 5269.4938 12.383503 + 3700 16738.879 -0.16025994 0 5269.487 12.382575 + 3750 16738.878 -0.16608251 0 5269.4806 12.382765 + 3800 16738.591 -0.078679341 0 5269.4776 12.383227 + 3850 16738.429 -0.024729409 0 5269.4807 12.382942 + 3900 16738.399 -0.0062729967 0 5269.4897 12.383192 + 3950 16738.428 -0.002521266 0 5269.5027 12.383324 + 4000 16738.467 -0.0002068506 0 5269.5173 12.383474 + 4050 16738.488 0 0 5269.5241 12.383531 + 4100 16738.468 0 0 5269.5178 12.383482 + 4150 16738.422 0 0 5269.5033 12.383369 + 4200 16738.387 0 0 5269.4921 12.383281 + 4250 16738.383 0 0 5269.4908 12.38327 + 4300 16738.4 0 0 5269.4964 12.383314 + 4350 16738.423 0 0 5269.5036 12.38337 + 4400 16738.441 0 0 5269.5092 12.383414 + 4450 16738.45 0 0 5269.5121 12.383437 + 4500 16738.45 0 0 5269.5122 12.383438 + 4550 16738.442 0 0 5269.5095 12.383417 + 4600 16738.425 0 0 5269.5042 12.383376 + 4650 16738.404 -0.0014438316 0 5269.4961 12.383299 + 4700 16738.444 -0.024020551 0 5269.4862 12.382975 + 4750 16738.49 -0.048521424 0 5269.4761 12.385777 + 4800 16735.057 1.0347218 0 5269.4786 12.43543 + 4850 16735.441 0.92650925 0 5269.4913 12.418653 + 4900 16723.839 4.5908973 0 5269.5033 13.410103 + 4950 16738.531 -0.021537669 0 5269.5159 13.089982 + 5000 16738.45 -0.0042589693 0 5269.5077 13.090062 + 5050 16738.409 -0.00024692474 0 5269.4987 13.090038 + 5100 16738.404 0 0 5269.4976 13.090032 + 5150 16738.421 0 0 5269.5029 13.090073 + 5200 16738.44 0 0 5269.5087 13.090119 + 5250 16738.448 -0.0012793921 0 5269.5102 13.090114 + 5300 16738.456 -0.0064376396 0 5269.5075 13.090026 + 5350 16738.479 -0.020383843 0 5269.5007 13.089898 + 5400 16735.845 0.79889489 0 5269.4909 13.136244 + 5450 16735.558 0.87619907 0 5269.4778 12.324482 + 5500 16711.494 8.4724273 0 5269.4984 12.656579 + 5550 16454.525 89.074821 0 5269.2031 16.996502 + 5600 16713.084 7.9801107 0 5269.5065 13.774972 + 5650 16738.676 -0.079987805 0 5269.5033 13.168292 + 5700 16446.281 91.866085 0 5269.399 23.764659 + 5750 16738.549 -0.039869082 0 5269.5034 13.378118 + 5800 16738.487 -0.014994465 0 5269.5086 13.378394 + 5850 16738.466 -0.0051267396 0 5269.512 13.378555 + 5900 16738.462 -0.004368998 0 5269.5113 13.378568 + 5950 16738.528 -0.032727397 0 5269.5039 13.378192 + 6000 16702.774 10.969422 0 5269.2502 13.788847 + 6050 16682.271 17.483223 0 5269.3092 13.353098 + 6100 16738.508 -0.028838294 0 5269.5016 12.521077 + 6150 16738.425 -0.0067595586 0 5269.4974 12.521216 + 6200 16738.401 -0.0011499906 0 5269.4955 12.521248 + 6250 16738.455 0 0 5269.5136 12.521404 + 6300 16738.523 0 0 5269.5352 12.521573 + 6350 16738.503 0 0 5269.5287 12.521525 + 6400 16738.427 0 0 5269.5047 12.521337 + 6450 16738.399 0 0 5269.496 12.521268 + 6500 16738.425 0 0 5269.5042 12.521331 + 6550 16738.441 0 0 5269.5093 12.521372 + 6600 16738.42 0 0 5269.5025 12.521319 + 6650 16738.398 0 0 5269.4957 12.521266 + 6700 16738.435 0 0 5269.5074 12.521355 + 6750 16738.505 0 0 5269.5293 12.521527 + 6800 16738.508 0 0 5269.5303 12.521536 + 6850 16738.446 0 0 5269.5108 12.521384 + 6900 16738.414 0 0 5269.5009 12.521306 + 6950 16738.432 0 0 5269.5063 12.521348 + 7000 16738.444 0 0 5269.5102 12.521379 + 7050 16738.421 0 0 5269.5029 12.521322 + 7100 16738.393 0 0 5269.4941 12.521253 + 7150 16738.419 0 0 5269.5022 12.521315 + 7200 16738.489 0 0 5269.5244 12.521489 + 7250 16738.505 0 0 5269.5293 12.521528 + 7300 16738.443 0 0 5269.5098 12.521377 + 7350 16738.404 0 0 5269.4976 12.521281 + 7400 16738.43 0 0 5269.5058 12.521344 + 7450 16738.461 0 0 5269.5156 12.521421 + 7500 16738.447 0 0 5269.5109 12.521385 + 7550 16738.407 0 0 5269.4986 12.521288 + 7600 16738.412 0 0 5269.5002 12.5213 + 7650 16738.478 0 0 5269.5208 12.521461 + 7700 16738.51 0 0 5269.5309 12.521541 + 7750 16738.454 0 0 5269.5135 12.521406 + 7800 16738.398 0 0 5269.4958 12.521267 + 7850 16738.407 -0.00021180715 0 5269.4982 12.521283 + 7900 16738.441 -0.0002167946 0 5269.509 12.521367 + 7950 16738.446 -0.0002384787 0 5269.5107 12.52138 + 8000 16738.423 0 0 5269.5035 12.521327 + 8050 16738.423 0 0 5269.5034 12.521325 + 8100 16738.478 -0.00069624484 0 5269.52 12.521448 + 8150 16738.523 -0.0040058183 0 5269.531 12.521494 + 8200 16738.486 -0.0092298512 0 5269.5142 12.521328 + 8250 16738.458 -0.023189661 0 5269.4914 12.521008 + 8300 16738.513 -0.045847765 0 5269.4861 12.520773 + 8350 16723.735 4.5720344 0 5269.4516 12.849543 + 8400 16738.466 -0.02019859 0 5269.497 12.835812 + 8450 16738.437 -0.012822198 0 5269.4952 12.829979 + 8500 16738.408 -0.0016833646 0 5269.4972 12.830104 + 8550 16738.464 -0.00097382606 0 5269.5155 12.830258 + 8600 16738.669 -0.050581176 0 5269.5304 12.829977 + 8650 15918.073 250.131 0 5261.3761 24.542327 + 8700 16738.446 0.00085039409 0 5269.5116 10.59114 + 8750 16738.472 -0.010146632 0 5269.5089 10.590059 + 8800 16738.468 0 0 5269.5176 10.590278 + 8850 16738.508 0 0 5269.5303 10.590378 + 8900 16738.509 0 0 5269.5306 10.590381 + 8950 16738.496 0 0 5269.5266 10.590349 + 9000 16738.477 0 0 5269.5204 10.590302 + 9050 16738.455 0 0 5269.5135 10.590247 + 9100 16738.477 0 0 5269.5205 10.590301 + 9150 16738.512 0 0 5269.5315 10.590388 + 9200 16738.502 0 0 5269.5285 10.590364 + 9250 16738.493 0 0 5269.5254 10.59034 + 9300 16738.482 0 0 5269.522 10.590314 + 9350 16738.46 0 0 5269.5151 10.59026 + 9400 16738.48 0 0 5269.5216 10.59031 + 9450 16738.509 0 0 5269.5306 10.590381 + 9500 16738.49 0 0 5269.5247 10.590335 + 9550 16738.484 0 0 5269.5226 10.590318 + 9600 16738.483 0 0 5269.5223 10.590316 + 9650 16738.464 0 0 5269.5165 10.590271 + 9700 16738.484 0 0 5269.5228 10.590319 + 9750 16738.507 0 0 5269.53 10.590376 + 9800 16738.482 0 0 5269.522 10.590314 + 9850 16738.478 0 0 5269.5207 10.590303 + 9900 16738.487 -0.00030979874 0 5269.5233 10.59032 + 9950 16738.476 -0.00095967134 0 5269.5192 10.590278 + 10000 16738.494 -0.00062714318 0 5269.5253 10.590329 +Loop time of 0.224811 on 4 procs for 10000 steps with 81 atoms + +Performance: 384323.005 tau/day, 44481.829 timesteps/s +95.9% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0032673 | 0.0039269 | 0.0048387 | 1.1 | 1.75 +Neigh | 0.010401 | 0.012159 | 0.015022 | 1.6 | 5.41 +Comm | 0.087584 | 0.08909 | 0.090645 | 0.4 | 39.63 +Output | 0.0042956 | 0.0045624 | 0.0052695 | 0.6 | 2.03 +Modify | 0.10208 | 0.10506 | 0.10697 | 0.6 | 46.73 +Other | | 0.01001 | | | 4.45 + +Nlocal: 20.25 ave 34 max 9 min +Histogram: 2 0 0 0 0 0 0 1 0 1 +Nghost: 38.5 ave 43 max 26 min +Histogram: 1 0 0 0 0 0 0 0 0 3 +Neighs: 0.75 ave 2 max 0 min +Histogram: 2 0 0 0 0 1 0 0 0 1 + +Total # of neighbors = 3 +Ave neighs/atom = 0.037037 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.nve.g++.1 b/examples/rigid/log.20Apr18.rigid.nve.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..26fa4e7f680fb2a016cb0ea0c4ec195855ca4224 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.nve.g++.1 @@ -0,0 +1,335 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +fix 1 all rigid/nve group 9 clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 +9 rigid bodies with 81 atoms + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.979 | 3.979 | 3.979 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.69 571.70921 0 5265.8153 32.005816 + 100 16298.128 136.75661 0 5267.6488 16.449029 + 150 16682.532 17.504156 0 5269.4124 14.901186 + 200 16733.906 1.3755079 0 5269.4571 14.571305 + 250 16738.861 -0.15272039 0 5269.4886 14.498342 + 300 16738.608 -0.055216883 0 5269.5066 14.498 + 350 16738.5 -0.017457072 0 5269.5104 14.498392 + 400 16738.451 -0.0060161309 0 5269.5063 14.49851 + 450 16738.435 -0.001271965 0 5269.5059 14.498571 + 500 16738.443 -0.00081074175 0 5269.509 14.498598 + 550 16738.452 -0.00083208965 0 5269.5118 14.498618 + 600 16738.45 -0.00058358431 0 5269.5116 14.498617 + 650 16738.443 -0.00047228525 0 5269.5093 14.4986 + 700 16738.444 0 0 5269.5102 14.498612 + 750 16738.461 0 0 5269.5157 14.498654 + 800 16738.479 0 0 5269.521 14.498697 + 850 16738.473 0 0 5269.5192 14.498683 + 900 16738.449 0 0 5269.5116 14.498624 + 950 16738.438 -0.0035324203 0 5269.5046 14.498537 + 1000 16738.562 -0.051134242 0 5269.4963 14.498093 + 1050 16737.343 0.32970192 0 5269.4934 14.527634 + 1100 16737.878 0.16213235 0 5269.4941 14.533864 + 1150 16738.682 -0.089236256 0 5269.4959 14.511765 + 1200 16738.444 -0.0075446558 0 5269.5025 14.512479 + 1250 16738.45 0 0 5269.5119 14.512611 + 1300 16738.475 0 0 5269.5199 14.512673 + 1350 16738.484 0 0 5269.5228 14.512696 + 1400 16738.469 -0.00044683992 0 5269.5175 14.512651 + 1450 16738.45 -0.0010933363 0 5269.511 14.512595 + 1500 16738.445 -0.00057484239 0 5269.51 14.512591 + 1550 16738.451 0 0 5269.5123 14.512615 + 1600 16738.452 0 0 5269.5127 14.512618 + 1650 16738.443 0 0 5269.5099 14.512596 + 1700 16738.433 0 0 5269.5068 14.512572 + 1750 16738.438 0 0 5269.5084 14.512584 + 1800 16738.459 0 0 5269.5149 14.512635 + 1850 16738.473 0 0 5269.5193 14.51267 + 1900 16738.462 0 0 5269.5159 14.512644 + 1950 16738.446 -0.0032069962 0 5269.5076 14.512539 + 2000 16738.463 -0.013425408 0 5269.5027 14.512382 + 2050 16738.535 -0.036964311 0 5269.5017 14.512152 + 2100 16738.621 -0.063490509 0 5269.5023 14.512108 + 2150 16738.594 -0.056143934 0 5269.5012 14.512117 + 2200 16738.536 -0.038486645 0 5269.5007 14.512277 + 2250 16738.496 -0.023712406 0 5269.503 14.51242 + 2300 16738.488 -0.013209094 0 5269.5109 14.51255 + 2350 16738.486 -0.0045244524 0 5269.519 14.512693 + 2400 16738.475 -0.00051678325 0 5269.5194 14.512743 + 2450 16738.456 -0.0023209272 0 5269.5115 14.512659 + 2500 16738.442 -0.0052101787 0 5269.5042 14.512594 + 2550 16738.552 -0.04420046 0 5269.4998 14.512177 + 2600 16738.42 -0.004347531 0 5269.4982 14.512783 + 2650 16734.241 1.3131302 0 5269.5 14.577195 + 2700 16738.737 -0.10612056 0 5269.4961 14.503874 + 2750 16732.705 1.7939719 0 5269.4974 14.629294 + 2800 16738.558 -0.042867033 0 5269.5032 14.519893 + 2850 16738.499 -0.01271227 0 5269.5146 14.518524 + 2900 16738.486 -0.0032778045 0 5269.52 14.518712 + 2950 16738.482 -0.0089544631 0 5269.5133 14.518629 + 3000 16738.647 -0.070862542 0 5269.5031 14.51803 + 3050 16678.313 18.829038 0 5269.409 15.533426 + 3100 16632.312 33.399217 0 5269.4975 14.588597 + 3150 16739.318 -0.31388148 0 5269.4715 13.520782 + 3200 16727.951 3.26736 0 5269.4741 12.288358 + 3250 16686.364 16.353793 0 5269.4682 14.152517 + 3300 16738.532 -0.031574462 0 5269.5064 13.310615 + 3350 16738.454 -0.0062292918 0 5269.5071 13.308187 + 3400 16738.445 -0.0049349125 0 5269.5055 13.308178 + 3450 16738.489 -0.021623738 0 5269.5026 13.308001 + 3500 16737.78 0.19719043 0 5269.4983 13.325999 + 3550 16658.578 25.116206 0 5269.4834 13.778249 + 3600 16738.51 -0.032864725 0 5269.4981 12.392389 + 3650 16738.899 -0.15952703 0 5269.4938 12.383503 + 3700 16738.879 -0.16025994 0 5269.487 12.382575 + 3750 16738.878 -0.16608251 0 5269.4806 12.382765 + 3800 16738.591 -0.078679341 0 5269.4776 12.383227 + 3850 16738.429 -0.024729409 0 5269.4807 12.382942 + 3900 16738.399 -0.0062729967 0 5269.4897 12.383192 + 3950 16738.428 -0.002521266 0 5269.5027 12.383324 + 4000 16738.467 -0.0002068506 0 5269.5173 12.383474 + 4050 16738.488 0 0 5269.5241 12.383531 + 4100 16738.468 0 0 5269.5178 12.383482 + 4150 16738.422 0 0 5269.5033 12.383369 + 4200 16738.387 0 0 5269.4921 12.383281 + 4250 16738.383 0 0 5269.4908 12.38327 + 4300 16738.4 0 0 5269.4964 12.383314 + 4350 16738.423 0 0 5269.5036 12.38337 + 4400 16738.441 0 0 5269.5092 12.383414 + 4450 16738.45 0 0 5269.5121 12.383437 + 4500 16738.45 0 0 5269.5122 12.383438 + 4550 16738.442 0 0 5269.5095 12.383417 + 4600 16738.425 0 0 5269.5042 12.383376 + 4650 16738.404 -0.0014438316 0 5269.4961 12.383299 + 4700 16738.444 -0.024020551 0 5269.4862 12.382975 + 4750 16738.49 -0.048521421 0 5269.4761 12.385777 + 4800 16735.057 1.0347219 0 5269.4786 12.43543 + 4850 16735.441 0.92650928 0 5269.4913 12.418653 + 4900 16723.839 4.5908971 0 5269.5033 13.410103 + 4950 16738.531 -0.021537669 0 5269.5159 13.089982 + 5000 16738.45 -0.0042589693 0 5269.5077 13.090062 + 5050 16738.409 -0.00024692474 0 5269.4987 13.090038 + 5100 16738.404 0 0 5269.4976 13.090032 + 5150 16738.421 0 0 5269.5029 13.090073 + 5200 16738.44 0 0 5269.5087 13.090119 + 5250 16738.448 -0.0012793921 0 5269.5102 13.090114 + 5300 16738.456 -0.0064376397 0 5269.5075 13.090026 + 5350 16738.479 -0.020383842 0 5269.5007 13.089898 + 5400 16735.845 0.79889481 0 5269.4909 13.136244 + 5450 16735.558 0.87619898 0 5269.4778 12.324482 + 5500 16711.494 8.47243 0 5269.4984 12.65658 + 5550 16454.525 89.074845 0 5269.2031 16.996503 + 5600 16713.084 7.9801091 0 5269.5065 13.774971 + 5650 16738.676 -0.079987812 0 5269.5033 13.168292 + 5700 16446.281 91.866085 0 5269.399 23.764658 + 5750 16738.549 -0.039869082 0 5269.5034 13.378117 + 5800 16738.487 -0.014994464 0 5269.5086 13.378394 + 5850 16738.466 -0.0051267378 0 5269.512 13.378555 + 5900 16738.462 -0.0043689966 0 5269.5113 13.378568 + 5950 16738.528 -0.032727396 0 5269.5039 13.378192 + 6000 16702.774 10.969422 0 5269.2502 13.788847 + 6050 16682.271 17.483217 0 5269.3092 13.353098 + 6100 16738.508 -0.028838289 0 5269.5016 12.521077 + 6150 16738.425 -0.0067595568 0 5269.4974 12.521216 + 6200 16738.401 -0.0011499904 0 5269.4955 12.521247 + 6250 16738.455 0 0 5269.5136 12.521403 + 6300 16738.523 0 0 5269.5352 12.521573 + 6350 16738.503 0 0 5269.5287 12.521525 + 6400 16738.427 0 0 5269.5047 12.521337 + 6450 16738.399 0 0 5269.496 12.521268 + 6500 16738.425 0 0 5269.5042 12.521331 + 6550 16738.441 0 0 5269.5093 12.521372 + 6600 16738.42 0 0 5269.5025 12.521319 + 6650 16738.398 0 0 5269.4957 12.521266 + 6700 16738.435 0 0 5269.5074 12.521355 + 6750 16738.505 0 0 5269.5293 12.521527 + 6800 16738.508 0 0 5269.5303 12.521536 + 6850 16738.446 0 0 5269.5108 12.521384 + 6900 16738.414 0 0 5269.5009 12.521306 + 6950 16738.432 0 0 5269.5063 12.521348 + 7000 16738.444 0 0 5269.5102 12.521378 + 7050 16738.421 0 0 5269.5029 12.521322 + 7100 16738.393 0 0 5269.4941 12.521253 + 7150 16738.419 0 0 5269.5022 12.521315 + 7200 16738.489 0 0 5269.5244 12.521489 + 7250 16738.505 0 0 5269.5293 12.521528 + 7300 16738.443 0 0 5269.5098 12.521376 + 7350 16738.404 0 0 5269.4976 12.521281 + 7400 16738.43 0 0 5269.5058 12.521343 + 7450 16738.461 0 0 5269.5156 12.521421 + 7500 16738.447 0 0 5269.5109 12.521385 + 7550 16738.407 0 0 5269.4986 12.521288 + 7600 16738.412 0 0 5269.5002 12.5213 + 7650 16738.478 0 0 5269.5208 12.52146 + 7700 16738.51 0 0 5269.5309 12.521541 + 7750 16738.454 0 0 5269.5135 12.521405 + 7800 16738.398 0 0 5269.4958 12.521267 + 7850 16738.407 -0.0002118068 0 5269.4982 12.521283 + 7900 16738.441 -0.00021679441 0 5269.509 12.521366 + 7950 16738.446 -0.00023847865 0 5269.5107 12.52138 + 8000 16738.423 0 0 5269.5035 12.521326 + 8050 16738.423 0 0 5269.5034 12.521325 + 8100 16738.478 -0.00069624411 0 5269.52 12.521447 + 8150 16738.523 -0.0040058094 0 5269.531 12.521494 + 8200 16738.486 -0.0092298399 0 5269.5142 12.521327 + 8250 16738.458 -0.023189572 0 5269.4914 12.521008 + 8300 16738.513 -0.045847775 0 5269.4861 12.520773 + 8350 16723.734 4.5722877 0 5269.4516 12.849562 + 8400 16738.466 -0.020202622 0 5269.497 12.835807 + 8450 16738.437 -0.012822209 0 5269.4952 12.829975 + 8500 16738.408 -0.001683355 0 5269.4972 12.8301 + 8550 16738.464 -0.00097382251 0 5269.5155 12.830254 + 8600 16738.669 -0.050581166 0 5269.5304 12.829973 + 8650 15918.256 250.07455 0 5261.3774 24.539208 + 8700 16738.446 0.00084613367 0 5269.5116 10.591358 + 8750 16738.472 -0.010145611 0 5269.5089 10.590277 + 8800 16738.468 0 0 5269.5176 10.590497 + 8850 16738.508 0 0 5269.5303 10.590596 + 8900 16738.509 0 0 5269.5306 10.590599 + 8950 16738.496 0 0 5269.5266 10.590568 + 9000 16738.477 0 0 5269.5204 10.59052 + 9050 16738.455 0 0 5269.5135 10.590465 + 9100 16738.477 0 0 5269.5205 10.590519 + 9150 16738.512 0 0 5269.5315 10.590606 + 9200 16738.502 0 0 5269.5285 10.590583 + 9250 16738.493 0 0 5269.5254 10.590559 + 9300 16738.482 0 0 5269.522 10.590532 + 9350 16738.46 0 0 5269.5151 10.590478 + 9400 16738.48 0 0 5269.5216 10.590528 + 9450 16738.509 0 0 5269.5306 10.590599 + 9500 16738.49 0 0 5269.5247 10.590554 + 9550 16738.484 0 0 5269.5226 10.590536 + 9600 16738.483 0 0 5269.5223 10.590534 + 9650 16738.464 0 0 5269.5165 10.590489 + 9700 16738.484 0 0 5269.5228 10.590537 + 9750 16738.507 0 0 5269.53 10.590595 + 9800 16738.482 0 0 5269.522 10.590532 + 9850 16738.478 0 0 5269.5207 10.590521 + 9900 16738.487 -0.00030979882 0 5269.5233 10.590538 + 9950 16738.476 -0.00095967357 0 5269.5193 10.590496 + 10000 16738.494 -0.00062714625 0 5269.5253 10.590548 +Loop time of 0.166547 on 1 procs for 10000 steps with 81 atoms + +Performance: 518773.777 tau/day, 60043.261 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.011439 | 0.011439 | 0.011439 | 0.0 | 6.87 +Neigh | 0.038572 | 0.038572 | 0.038572 | 0.0 | 23.16 +Comm | 0.0085464 | 0.0085464 | 0.0085464 | 0.0 | 5.13 +Output | 0.0025046 | 0.0025046 | 0.0025046 | 0.0 | 1.50 +Modify | 0.099479 | 0.099479 | 0.099479 | 0.0 | 59.73 +Other | | 0.006005 | | | 3.61 + +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 49 ave 49 max 49 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 3 ave 3 max 3 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 3 +Ave neighs/atom = 0.037037 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.nve.g++.4 b/examples/rigid/log.20Apr18.rigid.nve.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..782457b42795a959c6a2dfbfcd003226e40bba24 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.nve.g++.4 @@ -0,0 +1,335 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +fix 1 all rigid/nve group 9 clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 +9 rigid bodies with 81 atoms + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.95 | 4.044 | 4.326 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.69 571.70921 0 5265.8153 32.005816 + 100 16298.128 136.75661 0 5267.6488 16.449029 + 150 16682.532 17.504156 0 5269.4124 14.901186 + 200 16733.906 1.3755079 0 5269.4571 14.571305 + 250 16738.861 -0.15272039 0 5269.4886 14.498342 + 300 16738.608 -0.055216883 0 5269.5066 14.498 + 350 16738.5 -0.017457072 0 5269.5104 14.498392 + 400 16738.451 -0.0060161309 0 5269.5063 14.49851 + 450 16738.435 -0.001271965 0 5269.5059 14.498571 + 500 16738.443 -0.00081074175 0 5269.509 14.498598 + 550 16738.452 -0.00083208965 0 5269.5118 14.498618 + 600 16738.45 -0.00058358431 0 5269.5116 14.498617 + 650 16738.443 -0.00047228525 0 5269.5093 14.4986 + 700 16738.444 0 0 5269.5102 14.498612 + 750 16738.461 0 0 5269.5157 14.498654 + 800 16738.479 0 0 5269.521 14.498697 + 850 16738.473 0 0 5269.5192 14.498683 + 900 16738.449 0 0 5269.5116 14.498624 + 950 16738.438 -0.0035324203 0 5269.5046 14.498537 + 1000 16738.562 -0.051134242 0 5269.4963 14.498093 + 1050 16737.343 0.32970192 0 5269.4934 14.527634 + 1100 16737.878 0.16213235 0 5269.4941 14.533864 + 1150 16738.682 -0.089236256 0 5269.4959 14.511765 + 1200 16738.444 -0.0075446558 0 5269.5025 14.512479 + 1250 16738.45 0 0 5269.5119 14.512611 + 1300 16738.475 0 0 5269.5199 14.512673 + 1350 16738.484 0 0 5269.5228 14.512696 + 1400 16738.469 -0.00044683992 0 5269.5175 14.512651 + 1450 16738.45 -0.0010933363 0 5269.511 14.512595 + 1500 16738.445 -0.00057484239 0 5269.51 14.512591 + 1550 16738.451 0 0 5269.5123 14.512615 + 1600 16738.452 0 0 5269.5127 14.512618 + 1650 16738.443 0 0 5269.5099 14.512596 + 1700 16738.433 0 0 5269.5068 14.512572 + 1750 16738.438 0 0 5269.5084 14.512584 + 1800 16738.459 0 0 5269.5149 14.512635 + 1850 16738.473 0 0 5269.5193 14.51267 + 1900 16738.462 0 0 5269.5159 14.512644 + 1950 16738.446 -0.0032069962 0 5269.5076 14.512539 + 2000 16738.463 -0.013425408 0 5269.5027 14.512382 + 2050 16738.535 -0.036964311 0 5269.5017 14.512152 + 2100 16738.621 -0.063490509 0 5269.5023 14.512108 + 2150 16738.594 -0.056143934 0 5269.5012 14.512117 + 2200 16738.536 -0.038486645 0 5269.5007 14.512277 + 2250 16738.496 -0.023712406 0 5269.503 14.51242 + 2300 16738.488 -0.013209094 0 5269.5109 14.51255 + 2350 16738.486 -0.0045244524 0 5269.519 14.512693 + 2400 16738.475 -0.00051678325 0 5269.5194 14.512743 + 2450 16738.456 -0.0023209272 0 5269.5115 14.512659 + 2500 16738.442 -0.0052101787 0 5269.5042 14.512594 + 2550 16738.552 -0.04420046 0 5269.4998 14.512177 + 2600 16738.42 -0.004347531 0 5269.4982 14.512783 + 2650 16734.241 1.3131302 0 5269.5 14.577195 + 2700 16738.737 -0.10612056 0 5269.4961 14.503874 + 2750 16732.705 1.7939719 0 5269.4974 14.629294 + 2800 16738.558 -0.042867033 0 5269.5032 14.519893 + 2850 16738.499 -0.01271227 0 5269.5146 14.518524 + 2900 16738.486 -0.0032778045 0 5269.52 14.518712 + 2950 16738.482 -0.0089544631 0 5269.5133 14.518629 + 3000 16738.647 -0.070862542 0 5269.5031 14.51803 + 3050 16678.313 18.829038 0 5269.409 15.533426 + 3100 16632.312 33.399217 0 5269.4975 14.588597 + 3150 16739.318 -0.31388148 0 5269.4715 13.520782 + 3200 16727.951 3.26736 0 5269.4741 12.288358 + 3250 16686.364 16.353793 0 5269.4682 14.152517 + 3300 16738.532 -0.031574462 0 5269.5064 13.310615 + 3350 16738.454 -0.0062292918 0 5269.5071 13.308187 + 3400 16738.445 -0.0049349125 0 5269.5055 13.308178 + 3450 16738.489 -0.021623738 0 5269.5026 13.308001 + 3500 16737.78 0.19719043 0 5269.4983 13.325999 + 3550 16658.578 25.116206 0 5269.4834 13.778249 + 3600 16738.51 -0.032864725 0 5269.4981 12.392389 + 3650 16738.899 -0.15952703 0 5269.4938 12.383503 + 3700 16738.879 -0.16025994 0 5269.487 12.382575 + 3750 16738.878 -0.16608251 0 5269.4806 12.382765 + 3800 16738.591 -0.078679341 0 5269.4776 12.383227 + 3850 16738.429 -0.024729409 0 5269.4807 12.382942 + 3900 16738.399 -0.0062729967 0 5269.4897 12.383192 + 3950 16738.428 -0.002521266 0 5269.5027 12.383324 + 4000 16738.467 -0.0002068506 0 5269.5173 12.383474 + 4050 16738.488 0 0 5269.5241 12.383531 + 4100 16738.468 0 0 5269.5178 12.383482 + 4150 16738.422 0 0 5269.5033 12.383369 + 4200 16738.387 0 0 5269.4921 12.383281 + 4250 16738.383 0 0 5269.4908 12.38327 + 4300 16738.4 0 0 5269.4964 12.383314 + 4350 16738.423 0 0 5269.5036 12.38337 + 4400 16738.441 0 0 5269.5092 12.383414 + 4450 16738.45 0 0 5269.5121 12.383437 + 4500 16738.45 0 0 5269.5122 12.383438 + 4550 16738.442 0 0 5269.5095 12.383417 + 4600 16738.425 0 0 5269.5042 12.383376 + 4650 16738.404 -0.0014438316 0 5269.4961 12.383299 + 4700 16738.444 -0.024020551 0 5269.4862 12.382975 + 4750 16738.49 -0.048521424 0 5269.4761 12.385777 + 4800 16735.057 1.0347218 0 5269.4786 12.43543 + 4850 16735.441 0.92650925 0 5269.4913 12.418653 + 4900 16723.839 4.5908973 0 5269.5033 13.410103 + 4950 16738.531 -0.021537669 0 5269.5159 13.089982 + 5000 16738.45 -0.0042589693 0 5269.5077 13.090062 + 5050 16738.409 -0.00024692474 0 5269.4987 13.090038 + 5100 16738.404 0 0 5269.4976 13.090032 + 5150 16738.421 0 0 5269.5029 13.090073 + 5200 16738.44 0 0 5269.5087 13.090119 + 5250 16738.448 -0.0012793921 0 5269.5102 13.090114 + 5300 16738.456 -0.0064376396 0 5269.5075 13.090026 + 5350 16738.479 -0.020383843 0 5269.5007 13.089898 + 5400 16735.845 0.79889489 0 5269.4909 13.136244 + 5450 16735.558 0.87619907 0 5269.4778 12.324482 + 5500 16711.494 8.4724273 0 5269.4984 12.656579 + 5550 16454.525 89.074821 0 5269.2031 16.996502 + 5600 16713.084 7.9801107 0 5269.5065 13.774972 + 5650 16738.676 -0.079987805 0 5269.5033 13.168292 + 5700 16446.281 91.866085 0 5269.399 23.764659 + 5750 16738.549 -0.039869082 0 5269.5034 13.378118 + 5800 16738.487 -0.014994465 0 5269.5086 13.378394 + 5850 16738.466 -0.0051267396 0 5269.512 13.378555 + 5900 16738.462 -0.004368998 0 5269.5113 13.378568 + 5950 16738.528 -0.032727397 0 5269.5039 13.378192 + 6000 16702.774 10.969422 0 5269.2502 13.788847 + 6050 16682.271 17.483223 0 5269.3092 13.353098 + 6100 16738.508 -0.028838294 0 5269.5016 12.521077 + 6150 16738.425 -0.0067595586 0 5269.4974 12.521216 + 6200 16738.401 -0.0011499906 0 5269.4955 12.521248 + 6250 16738.455 0 0 5269.5136 12.521404 + 6300 16738.523 0 0 5269.5352 12.521573 + 6350 16738.503 0 0 5269.5287 12.521525 + 6400 16738.427 0 0 5269.5047 12.521337 + 6450 16738.399 0 0 5269.496 12.521268 + 6500 16738.425 0 0 5269.5042 12.521331 + 6550 16738.441 0 0 5269.5093 12.521372 + 6600 16738.42 0 0 5269.5025 12.521319 + 6650 16738.398 0 0 5269.4957 12.521266 + 6700 16738.435 0 0 5269.5074 12.521355 + 6750 16738.505 0 0 5269.5293 12.521527 + 6800 16738.508 0 0 5269.5303 12.521536 + 6850 16738.446 0 0 5269.5108 12.521384 + 6900 16738.414 0 0 5269.5009 12.521306 + 6950 16738.432 0 0 5269.5063 12.521348 + 7000 16738.444 0 0 5269.5102 12.521379 + 7050 16738.421 0 0 5269.5029 12.521322 + 7100 16738.393 0 0 5269.4941 12.521253 + 7150 16738.419 0 0 5269.5022 12.521315 + 7200 16738.489 0 0 5269.5244 12.521489 + 7250 16738.505 0 0 5269.5293 12.521528 + 7300 16738.443 0 0 5269.5098 12.521377 + 7350 16738.404 0 0 5269.4976 12.521281 + 7400 16738.43 0 0 5269.5058 12.521344 + 7450 16738.461 0 0 5269.5156 12.521421 + 7500 16738.447 0 0 5269.5109 12.521385 + 7550 16738.407 0 0 5269.4986 12.521288 + 7600 16738.412 0 0 5269.5002 12.5213 + 7650 16738.478 0 0 5269.5208 12.521461 + 7700 16738.51 0 0 5269.5309 12.521541 + 7750 16738.454 0 0 5269.5135 12.521406 + 7800 16738.398 0 0 5269.4958 12.521267 + 7850 16738.407 -0.00021180715 0 5269.4982 12.521283 + 7900 16738.441 -0.0002167946 0 5269.509 12.521367 + 7950 16738.446 -0.0002384787 0 5269.5107 12.52138 + 8000 16738.423 0 0 5269.5035 12.521327 + 8050 16738.423 0 0 5269.5034 12.521325 + 8100 16738.478 -0.00069624484 0 5269.52 12.521448 + 8150 16738.523 -0.0040058183 0 5269.531 12.521494 + 8200 16738.486 -0.0092298512 0 5269.5142 12.521328 + 8250 16738.458 -0.023189661 0 5269.4914 12.521008 + 8300 16738.513 -0.045847765 0 5269.4861 12.520773 + 8350 16723.735 4.5720344 0 5269.4516 12.849543 + 8400 16738.466 -0.02019859 0 5269.497 12.835812 + 8450 16738.437 -0.012822198 0 5269.4952 12.829979 + 8500 16738.408 -0.0016833646 0 5269.4972 12.830104 + 8550 16738.464 -0.00097382606 0 5269.5155 12.830258 + 8600 16738.669 -0.050581176 0 5269.5304 12.829977 + 8650 15918.073 250.131 0 5261.3761 24.542327 + 8700 16738.446 0.00085039409 0 5269.5116 10.59114 + 8750 16738.472 -0.010146632 0 5269.5089 10.590059 + 8800 16738.468 0 0 5269.5176 10.590278 + 8850 16738.508 0 0 5269.5303 10.590378 + 8900 16738.509 0 0 5269.5306 10.590381 + 8950 16738.496 0 0 5269.5266 10.590349 + 9000 16738.477 0 0 5269.5204 10.590302 + 9050 16738.455 0 0 5269.5135 10.590247 + 9100 16738.477 0 0 5269.5205 10.590301 + 9150 16738.512 0 0 5269.5315 10.590388 + 9200 16738.502 0 0 5269.5285 10.590364 + 9250 16738.493 0 0 5269.5254 10.59034 + 9300 16738.482 0 0 5269.522 10.590314 + 9350 16738.46 0 0 5269.5151 10.59026 + 9400 16738.48 0 0 5269.5216 10.59031 + 9450 16738.509 0 0 5269.5306 10.590381 + 9500 16738.49 0 0 5269.5247 10.590335 + 9550 16738.484 0 0 5269.5226 10.590318 + 9600 16738.483 0 0 5269.5223 10.590316 + 9650 16738.464 0 0 5269.5165 10.590271 + 9700 16738.484 0 0 5269.5228 10.590319 + 9750 16738.507 0 0 5269.53 10.590376 + 9800 16738.482 0 0 5269.522 10.590314 + 9850 16738.478 0 0 5269.5207 10.590303 + 9900 16738.487 -0.00030979874 0 5269.5233 10.59032 + 9950 16738.476 -0.00095967134 0 5269.5192 10.590278 + 10000 16738.494 -0.00062714318 0 5269.5253 10.590329 +Loop time of 0.22441 on 4 procs for 10000 steps with 81 atoms + +Performance: 385008.767 tau/day, 44561.200 timesteps/s +97.6% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0032785 | 0.0039999 | 0.0052714 | 1.3 | 1.78 +Neigh | 0.010548 | 0.012524 | 0.016082 | 1.9 | 5.58 +Comm | 0.082771 | 0.087847 | 0.091037 | 1.1 | 39.15 +Output | 0.0042846 | 0.0045864 | 0.0054133 | 0.7 | 2.04 +Modify | 0.10401 | 0.10533 | 0.10736 | 0.4 | 46.94 +Other | | 0.01013 | | | 4.51 + +Nlocal: 20.25 ave 34 max 9 min +Histogram: 2 0 0 0 0 0 0 1 0 1 +Nghost: 38.5 ave 43 max 26 min +Histogram: 1 0 0 0 0 0 0 0 0 3 +Neighs: 0.75 ave 2 max 0 min +Histogram: 2 0 0 0 0 1 0 0 0 1 + +Total # of neighbors = 3 +Ave neighs/atom = 0.037037 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.poems.g++.1 b/examples/rigid/log.20Apr18.rigid.poems.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..0cba72a2dd681d8b47f54984e93b6e8b280bbcd3 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.poems.g++.1 @@ -0,0 +1,338 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 10 18 +#group clump3 id <> 19 27 +#group clump4 id <> 28 36 +#group clump5 id <> 37 45 +#group clump6 id <> 46 54 +#group clump7 id <> 55 63 +#group clump8 id <> 64 72 +#group clump9 id <> 73 81 + +#fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 1 chain of connected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 9 18 +10 atoms in group clump2 +group clump3 id <> 18 27 +10 atoms in group clump3 +group clump4 id <> 27 36 +10 atoms in group clump4 +group clump5 id <> 36 45 +10 atoms in group clump5 +group clump6 id <> 45 54 +10 atoms in group clump6 +group clump7 id <> 54 63 +10 atoms in group clump7 +group clump8 id <> 63 72 +10 atoms in group clump8 +group clump9 id <> 72 81 +10 atoms in group clump9 + +fix 1 all poems group clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 +1 clusters, 9 bodies, 8 joints, 81 atoms + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid.poems + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.292 | 3.292 | 3.292 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 217.7783 3430.3907 0 3466.6871 -2.7403788 + 50 13679.637 1404.2468 0 3684.1863 12.446066 + 100 16777.225 888.87665 0 3685.0808 -31.828677 + 150 19595.365 418.45042 0 3684.3446 40.709078 + 200 18524.188 596.47273 0 3683.8375 -0.8159371 + 250 21015.789 180.96521 0 3683.5967 -10.042469 + 300 20785.513 219.25314 0 3683.5053 2.6452719 + 350 21072.46 171.2554 0 3683.3321 7.0609024 + 400 19956.414 356.36381 0 3682.4328 19.320259 + 450 20724.42 227.73284 0 3681.8028 8.1259249 + 500 20152.578 322.71466 0 3681.4777 5.4929878 + 550 20017.022 345.29701 0 3681.4673 5.4661666 + 600 17897.743 698.72196 0 3681.6791 3.2854742 + 650 17297.758 796.60256 0 3679.5623 15.191113 + 700 18581.934 584.29715 0 3681.2861 5.1588289 + 750 21774.158 52.821062 0 3681.8474 -10.775664 + 800 21604.055 81.188546 0 3681.8644 -3.2045743 + 850 17821.483 711.53827 0 3681.7854 7.4384277 + 900 21033.292 175.98127 0 3681.5299 -16.345167 + 950 20968.166 186.59847 0 3681.2929 -2.330456 + 1000 20490.66 266.19375 0 3681.3037 11.787983 + 1050 20222.396 310.94072 0 3681.34 -8.3459539 + 1100 21321.687 127.61533 0 3681.2299 -1.2184717 + 1150 20849.582 206.01695 0 3680.9472 -0.86699146 + 1200 21815.003 45.317414 0 3681.1512 1.5988314 + 1250 18655.437 572.41453 0 3681.654 10.064078 + 1300 20780.781 217.36506 0 3680.8286 6.0538615 + 1350 20558.971 254.36482 0 3680.8601 -3.6773954 + 1400 21485.029 99.812918 0 3680.6511 -16.185473 + 1450 21771.107 52.159607 0 3680.6775 -2.4756675 + 1500 21520.948 93.503927 0 3680.3286 2.1023577 + 1550 21351.418 121.68138 0 3680.2511 5.515995 + 1600 20778.805 216.92177 0 3680.0559 15.089187 + 1650 21477.638 100.21836 0 3679.8247 -1.1045739 + 1700 18501.339 596.47922 0 3680.0357 -15.679682 + 1750 18563.642 587.3479 0 3681.2882 33.532211 + 1800 19110.186 494.82336 0 3679.8543 18.024046 + 1850 21364.191 119.23543 0 3679.9339 2.5291075 + 1900 20146.627 322.14849 0 3679.9197 5.7313175 + 1950 20692.671 231.25345 0 3680.0319 4.297772 + 2000 20943.905 189.11218 0 3679.7629 -22.64509 + 2050 19668.055 401.83025 0 3679.8394 3.6251438 + 2100 20280.434 299.76289 0 3679.8353 7.4807805 + 2150 19181.835 483.52621 0 3680.4987 22.62081 + 2200 21300.18 130.7021 0 3680.7322 4.710193 + 2250 20486.914 266.64414 0 3681.1299 -8.6458025 + 2300 18653.082 572.25481 0 3681.1017 -5.2636982 + 2350 21513.563 95.608298 0 3681.2021 -9.3624751 + 2400 21466.205 103.57569 0 3681.2765 -29.559707 + 2450 20100.204 332.25468 0 3682.2886 35.739592 + 2500 20764.513 221.64794 0 3682.4001 -12.46688 + 2550 20436.771 276.13128 0 3682.2598 -22.419404 + 2600 21466.252 104.57185 0 3682.2806 -10.080362 + 2650 20817.269 212.81674 0 3682.3615 5.1374497 + 2700 18565.157 588.46125 0 3682.6541 22.283866 + 2750 20780.743 218.76366 0 3682.2208 -8.0046411 + 2800 21032.22 176.82368 0 3682.1936 -7.078895 + 2850 16817.729 879.49153 0 3682.4464 33.140849 + 2900 19309.511 463.89319 0 3682.145 7.9225025 + 2950 20544.978 257.86831 0 3682.0314 2.0523059 + 3000 20616.438 246.0975 0 3682.1706 -0.2824889 + 3050 18648.596 574.37266 0 3682.4721 -5.8677065 + 3100 19147.135 490.76826 0 3681.9574 -1.9922835 + 3150 18568.022 587.36965 0 3682.0399 14.694505 + 3200 19720.841 395.38315 0 3682.1899 5.9162402 + 3250 19008.557 514.50687 0 3682.5998 -3.4702895 + 3300 21708.937 64.231264 0 3682.3874 -5.4808611 + 3350 20548.477 257.62974 0 3682.3759 9.7818301 + 3400 20508.84 264.0153 0 3682.1553 -12.578182 + 3450 18736.579 559.11222 0 3681.8754 21.920437 + 3500 21444.82 107.82706 0 3681.9638 0.093050651 + 3550 20439.241 275.31015 0 3681.8503 -3.0785302 + 3600 21547.1 90.778361 0 3681.9617 -5.9189729 + 3650 15623.305 1079.996 0 3683.8802 36.064752 + 3700 19912.452 363.09483 0 3681.8368 5.4802367 + 3750 21289.7 133.2258 0 3681.5091 -10.884642 + 3800 20214.875 312.09245 0 3681.2382 8.6419893 + 3850 19853.031 372.13835 0 3680.9769 2.6229234 + 3900 17863.409 703.8716 0 3681.1064 -1.4250404 + 3950 19926.351 359.87227 0 3680.9307 -14.60997 + 4000 17595.665 747.85423 0 3680.4651 24.228859 + 4050 18408.194 611.80934 0 3679.8416 4.4236034 + 4100 17506.503 762.1286 0 3679.8792 5.0526379 + 4150 18479.134 600.76034 0 3680.6159 -6.6523095 + 4200 18475.322 601.95797 0 3681.1783 1.3292995 + 4250 18301.378 630.34119 0 3680.5709 2.5387332 + 4300 19384.541 449.98455 0 3680.7414 5.8750989 + 4350 18717.888 561.31715 0 3680.9651 3.7948584 + 4400 18893.773 532.20993 0 3681.172 10.963539 + 4450 20269.613 302.15984 0 3680.4286 -10.145642 + 4500 19151.762 489.32407 0 3681.2845 21.695364 + 4550 19914.708 361.54065 0 3680.6587 -4.2298372 + 4600 21153.44 154.99598 0 3680.5693 2.3172078 + 4650 21021.611 176.81454 0 3680.4164 1.9128023 + 4700 21707.966 62.767734 0 3680.762 -5.2080189 + 4750 16517.674 927.53839 0 3680.484 17.329608 + 4800 21654.604 71.574174 0 3680.6749 -6.0650166 + 4850 18135.978 657.28622 0 3679.9493 5.4803307 + 4900 20389.048 282.49215 0 3680.6668 -2.8570431 + 4950 17159.074 820.81472 0 3680.6604 31.273877 + 5000 20788.159 215.88415 0 3680.5773 4.6345196 + 5050 21366.767 119.68693 0 3680.8148 -9.9482889 + 5100 20668.21 236.17655 0 3680.8782 3.8118334 + 5150 20468.573 269.83696 0 3681.2657 -26.625943 + 5200 19493.142 432.49135 0 3681.3483 -7.6677112 + 5250 19626.594 410.09767 0 3681.1967 7.3622341 + 5300 20771.914 219.12484 0 3681.1105 -7.0871793 + 5350 21152.459 155.26401 0 3680.6738 5.9030557 + 5400 21376.189 117.91075 0 3680.6088 -1.2004513 + 5450 21455.06 105.15166 0 3680.995 -9.1675471 + 5500 21227.896 143.35739 0 3681.3401 -6.646305 + 5550 21149.831 156.61404 0 3681.5858 -12.953136 + 5600 21364.198 120.94695 0 3681.6466 1.0372254 + 5650 20219.777 311.34588 0 3681.3088 6.5026316 + 5700 21163.024 154.3001 0 3681.4708 -0.47587262 + 5750 19583.077 418.40745 0 3682.2535 24.609517 + 5800 18801.324 548.79742 0 3682.3515 -12.082631 + 5850 20875.4 203.07604 0 3682.3093 -8.1191161 + 5900 20737.053 226.2734 0 3682.4489 -7.6845943 + 5950 21260.028 139.21888 0 3682.5568 -2.2977046 + 6000 19823.84 378.71803 0 3682.6914 -1.1163373 + 6050 20487.214 268.03474 0 3682.5704 4.313979 + 6100 17853.211 707.10918 0 3682.6443 16.762322 + 6150 21322.705 129.06 0 3682.8441 2.7500936 + 6200 21609.008 81.580972 0 3683.0823 0.37062555 + 6250 20364.115 289.30707 0 3683.3262 13.176034 + 6300 20201.9 316.16558 0 3683.149 -1.6318339 + 6350 21151.879 157.75018 0 3683.0634 -23.337621 + 6400 21453.129 107.45563 0 3682.9772 -0.60776225 + 6450 21105.382 165.1926 0 3682.7562 4.244932 + 6500 20746.748 224.6945 0 3682.4859 0.2929158 + 6550 20913.725 197.29847 0 3682.9194 -15.792862 + 6600 17956.374 690.52623 0 3683.2552 15.445255 + 6650 20270.609 303.60078 0 3682.0357 -0.26503277 + 6700 21442.931 109.08904 0 3682.9109 -2.8409166 + 6750 20907.994 198.30695 0 3682.9726 0.91664072 + 6800 20431.208 277.98326 0 3683.1845 -1.8537161 + 6850 20312.052 297.88656 0 3683.2285 3.1028547 + 6900 19458.401 439.97157 0 3683.0385 -4.1856293 + 6950 20507.759 264.99217 0 3682.952 -1.4597973 + 7000 20782.356 219.47456 0 3683.2006 -7.1967021 + 7050 20560.324 256.07109 0 3682.7917 -10.720013 + 7100 21652.145 74.086415 0 3682.7772 -0.61455054 + 7150 20134.823 326.40272 0 3682.2065 11.689827 + 7200 20778.071 219.16459 0 3682.1765 -1.796567 + 7250 20153.065 323.13721 0 3681.9814 -0.1215538 + 7300 19524.938 427.99711 0 3682.1534 -3.1139903 + 7350 20554.595 256.63855 0 3682.4044 10.023083 + 7400 18778.53 552.29852 0 3682.0534 -1.7145222 + 7450 18972.509 520.15393 0 3682.2388 1.4489874 + 7500 17680.668 736.20139 0 3682.9794 15.096954 + 7550 19070.785 504.65403 0 3683.1182 2.2707533 + 7600 20805.541 214.54957 0 3682.1398 -3.4306308 + 7650 18473.262 604.25322 0 3683.1301 2.2083367 + 7700 19294.016 466.99211 0 3682.6615 2.2666382 + 7750 20995.664 183.47108 0 3682.7484 -13.935938 + 7800 21042.433 175.06619 0 3682.1384 0.49855811 + 7850 19343.054 459.21955 0 3683.0618 7.9049312 + 7900 18382.898 619.01969 0 3682.8361 1.7996366 + 7950 16092.435 1000.6563 0 3682.7287 29.993154 + 8000 17551.635 757.47719 0 3682.7498 8.1753011 + 8050 20309.875 298.25877 0 3683.2379 -1.9545317 + 8100 21746.174 59.002125 0 3683.3645 -2.6980678 + 8150 21478.427 103.44202 0 3683.1799 -10.930392 + 8200 20986.729 185.46995 0 3683.2581 -14.298403 + 8250 20744.064 225.47546 0 3682.8194 -6.4982356 + 8300 19887.982 368.35069 0 3683.0143 1.5899179 + 8350 21871.414 37.899202 0 3683.1348 -2.0554107 + 8400 20002.858 348.98887 0 3682.7985 8.2963084 + 8450 21553.861 90.985193 0 3683.2953 2.8575186 + 8500 21605.143 82.347635 0 3683.2048 -4.711565 + 8550 20151.76 324.4703 0 3683.097 -8.5109459 + 8600 20564.158 255.77814 0 3683.1378 -1.3815408 + 8650 19316.602 463.61706 0 3683.0507 -2.6895635 + 8700 18157.859 656.69518 0 3683.0051 19.428927 + 8750 18752.43 557.67555 0 3683.0805 1.9765973 + 8800 20903.812 199.07408 0 3683.0428 1.9011523 + 8850 20132.963 327.56826 0 3683.0621 3.0389961 + 8900 21667.171 71.80023 0 3682.9954 -2.0042246 + 8950 20346.973 292.00907 0 3683.1712 7.5582361 + 9000 17889.448 695.59406 0 3677.1688 7.5315391 + 9050 19446.144 441.90609 0 3682.9302 5.9819228 + 9100 20384.34 285.05862 0 3682.4486 9.8610378 + 9150 20023.515 344.98587 0 3682.2384 -0.40175043 + 9200 17786.795 718.76166 0 3683.2275 10.984317 + 9250 20843.023 208.42263 0 3682.2597 -7.4709344 + 9300 21670.622 70.503925 0 3682.2742 -6.2303366 + 9350 20642.313 241.21277 0 3681.5983 4.7423898 + 9400 19228.566 476.44753 0 3681.2085 10.836639 + 9450 21215.705 146.40003 0 3682.3509 -9.091421 + 9500 21543.685 91.725901 0 3682.3401 -1.0608492 + 9550 20143.22 324.98532 0 3682.1887 -5.995164 + 9600 21234.294 142.96512 0 3682.0142 0.004838125 + 9650 21025.207 177.8801 0 3682.0813 -5.4857701 + 9700 20638.235 242.46577 0 3682.1716 -1.6014085 + 9750 18374.191 620.54322 0 3682.9084 13.864712 + 9800 19730.262 393.89083 0 3682.2679 5.7601754 + 9850 21547.855 91.283379 0 3682.5926 2.1989329 + 9900 20959.935 189.28821 0 3682.6108 2.1174676 + 9950 21191.026 150.79441 0 3682.6321 8.3829825 + 10000 20776.574 220.03769 0 3682.8 -1.8404787 +Loop time of 3.0852 on 1 procs for 10000 steps with 81 atoms + +Performance: 28004.636 tau/day, 3241.277 timesteps/s +99.5% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.17336 | 0.17336 | 0.17336 | 0.0 | 5.62 +Neigh | 0.1094 | 0.1094 | 0.1094 | 0.0 | 3.55 +Comm | 0.010163 | 0.010163 | 0.010163 | 0.0 | 0.33 +Output | 0.0030687 | 0.0030687 | 0.0030687 | 0.0 | 0.10 +Modify | 2.7782 | 2.7782 | 2.7782 | 0.0 | 90.05 +Other | | 0.01105 | | | 0.36 + +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 82 ave 82 max 82 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 887 ave 887 max 887 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 887 +Ave neighs/atom = 10.9506 +Neighbor list builds = 992 +Dangerous builds = 939 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:03 diff --git a/examples/rigid/log.20Apr18.rigid.poems.g++.4 b/examples/rigid/log.20Apr18.rigid.poems.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..e2fb6b65b6602bd72ac74b5d0719836f459cd25d --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.poems.g++.4 @@ -0,0 +1,338 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 10 18 +#group clump3 id <> 19 27 +#group clump4 id <> 28 36 +#group clump5 id <> 37 45 +#group clump6 id <> 46 54 +#group clump7 id <> 55 63 +#group clump8 id <> 64 72 +#group clump9 id <> 73 81 + +#fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 1 chain of connected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 9 18 +10 atoms in group clump2 +group clump3 id <> 18 27 +10 atoms in group clump3 +group clump4 id <> 27 36 +10 atoms in group clump4 +group clump5 id <> 36 45 +10 atoms in group clump5 +group clump6 id <> 45 54 +10 atoms in group clump6 +group clump7 id <> 54 63 +10 atoms in group clump7 +group clump8 id <> 63 72 +10 atoms in group clump8 +group clump9 id <> 72 81 +10 atoms in group clump9 + +fix 1 all poems group clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 +1 clusters, 9 bodies, 8 joints, 81 atoms + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid.poems + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.263 | 3.357 | 3.638 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 217.7783 3430.3907 0 3466.6871 -2.7403788 + 50 13679.637 1404.2468 0 3684.1863 12.446066 + 100 16777.225 888.87665 0 3685.0808 -31.828677 + 150 19595.365 418.45042 0 3684.3446 40.709078 + 200 18524.188 596.47273 0 3683.8375 -0.8159371 + 250 21015.789 180.96521 0 3683.5967 -10.042469 + 300 20785.513 219.25314 0 3683.5053 2.6452719 + 350 21072.46 171.2554 0 3683.3321 7.0609024 + 400 19956.414 356.36381 0 3682.4328 19.320259 + 450 20724.42 227.73284 0 3681.8028 8.1259249 + 500 20152.578 322.71466 0 3681.4777 5.4929878 + 550 20017.022 345.29701 0 3681.4673 5.4661666 + 600 17897.743 698.72196 0 3681.6791 3.2854742 + 650 17297.758 796.60256 0 3679.5623 15.191113 + 700 18581.934 584.29715 0 3681.2861 5.1588289 + 750 21774.158 52.821062 0 3681.8474 -10.775664 + 800 21604.055 81.188546 0 3681.8644 -3.2045743 + 850 17821.483 711.53827 0 3681.7854 7.4384277 + 900 21033.292 175.98127 0 3681.5299 -16.345167 + 950 20968.166 186.59847 0 3681.2929 -2.330456 + 1000 20490.66 266.19375 0 3681.3037 11.787983 + 1050 20222.396 310.94072 0 3681.34 -8.3459539 + 1100 21321.687 127.61533 0 3681.2299 -1.2184717 + 1150 20849.582 206.01695 0 3680.9472 -0.86699147 + 1200 21815.003 45.317414 0 3681.1512 1.5988314 + 1250 18655.437 572.41453 0 3681.654 10.064078 + 1300 20780.781 217.36506 0 3680.8286 6.0538614 + 1350 20558.971 254.36483 0 3680.8601 -3.6773951 + 1400 21485.029 99.812917 0 3680.6511 -16.185473 + 1450 21771.107 52.15961 0 3680.6775 -2.4756673 + 1500 21520.948 93.503926 0 3680.3286 2.1023576 + 1550 21351.418 121.68137 0 3680.2511 5.5159947 + 1600 20778.805 216.92177 0 3680.0559 15.089188 + 1650 21477.638 100.21836 0 3679.8247 -1.1045741 + 1700 18501.339 596.4792 0 3680.0357 -15.679682 + 1750 18563.642 587.34785 0 3681.2882 33.53221 + 1800 19110.185 494.82342 0 3679.8543 18.024046 + 1850 21364.191 119.23548 0 3679.9339 2.5291079 + 1900 20146.626 322.14873 0 3679.9197 5.7313282 + 1950 20692.672 231.2533 0 3680.0319 4.2977759 + 2000 20943.904 189.11231 0 3679.7629 -22.645089 + 2050 19668.052 401.83077 0 3679.8394 3.6251598 + 2100 20280.434 299.76292 0 3679.8353 7.4807838 + 2150 19181.841 483.52513 0 3680.4987 22.620829 + 2200 21300.185 130.70136 0 3680.7321 4.7101928 + 2250 20486.897 266.64698 0 3681.1299 -8.6459184 + 2300 18653.018 572.26538 0 3681.1017 -5.2635489 + 2350 21513.576 95.606125 0 3681.202 -9.3627078 + 2400 21466.185 103.579 0 3681.2764 -29.55912 + 2450 20100.274 332.24291 0 3682.2886 35.736349 + 2500 20764.562 221.63964 0 3682.4 -12.465656 + 2550 20437.187 276.06174 0 3682.2596 -22.421308 + 2600 21466.269 104.56898 0 3682.2805 -10.080867 + 2650 20819.865 212.38395 0 3682.3615 5.1305357 + 2700 18565.57 588.39438 0 3682.656 22.28768 + 2750 20789.153 217.36229 0 3682.2211 -8.051962 + 2800 21045.639 174.58656 0 3682.193 -7.0803377 + 2850 16845.227 874.90505 0 3682.4429 32.992098 + 2900 19319.232 462.27119 0 3682.1432 7.9276373 + 2950 20558.495 255.61185 0 3682.0277 1.9151653 + 3000 20615.868 246.18886 0 3682.1668 -0.016805532 + 3050 18695.136 566.5914 0 3682.4474 -7.3528355 + 3100 19381.554 451.57712 0 3681.8361 -2.0887636 + 3150 19080.633 502.00742 0 3682.1129 5.2518182 + 3200 20969.083 187.13559 0 3681.9828 12.156446 + 3250 20474.81 269.6876 0 3682.156 1.4067779 + 3300 18836.313 542.79266 0 3682.1781 -9.1497216 + 3350 21397.694 116.27473 0 3682.557 -6.4412585 + 3400 20886.812 201.52507 0 3682.6604 6.3038335 + 3450 21604.639 81.93055 0 3682.7038 2.3769444 + 3500 20847.621 207.85705 0 3682.4605 -2.758021 + 3550 20627.979 244.69999 0 3682.6964 -0.33497747 + 3600 19265.519 471.27582 0 3682.1956 2.3506222 + 3650 20351.848 290.65727 0 3682.6319 3.5445062 + 3700 18507.473 597.72931 0 3682.3082 -21.283074 + 3750 20344.017 291.60622 0 3682.2757 6.5366987 + 3800 20672.372 237.18966 0 3682.585 6.7310703 + 3850 21366.943 122.07461 0 3683.2318 -3.5870721 + 3900 20890.294 201.69901 0 3683.4147 -9.5644117 + 3950 20684.181 235.91733 0 3683.2809 -4.8913079 + 4000 21499.086 100.67563 0 3683.8566 1.1969651 + 4050 18549.152 590.04529 0 3681.5707 -9.1914883 + 4100 18436.457 604.2601 0 3677.003 3.6486137 + 4150 19332.655 462.03124 0 3684.1404 -11.280758 + 4200 21199.837 150.66602 0 3683.9722 0.14505208 + 4250 19088.228 501.77395 0 3683.1453 1.6869973 + 4300 16617.942 913.86736 0 3683.5244 9.1792322 + 4350 19765.761 388.52744 0 3682.821 -4.1982973 + 4400 20181.964 320.06096 0 3683.7216 5.3685715 + 4450 20132.04 328.29106 0 3683.631 6.3340995 + 4500 21026.359 179.13858 0 3683.5317 -15.365253 + 4550 19273.765 471.36221 0 3683.6564 -0.71397595 + 4600 20064.71 339.29348 0 3683.4117 -4.8121056 + 4650 19821.01 380.27685 0 3683.7784 11.857115 + 4700 18724.367 563.42963 0 3684.1575 13.250333 + 4750 20467.467 273.2046 0 3684.449 -1.8076823 + 4800 19630.315 412.48507 0 3684.2042 -9.0412254 + 4850 19483.424 437.0206 0 3684.258 11.22465 + 4900 18504.179 600.28485 0 3684.3146 -5.2345686 + 4950 21436.13 111.62139 0 3684.3098 -5.8197915 + 5000 18022.817 680.57727 0 3684.38 19.238942 + 5050 20750.212 226.15635 0 3684.525 -0.73974419 + 5100 20569.533 255.21358 0 3683.4691 -18.332775 + 5150 21447.046 109.3048 0 3683.8124 -2.5745966 + 5200 18985.753 519.77191 0 3684.0641 9.7821968 + 5250 21334.568 128.16597 0 3683.9273 -0.61310451 + 5300 18836.476 544.54018 0 3683.9528 -17.979429 + 5350 18574.391 587.20088 0 3682.9327 40.990206 + 5400 21003.047 183.40176 0 3683.9096 6.1115776 + 5450 20693.875 234.62783 0 3683.607 5.4472209 + 5500 17673.479 738.99306 0 3684.5729 -28.621738 + 5550 19265.837 472.34663 0 3683.3195 -6.609151 + 5600 20800.947 217.12409 0 3683.9486 2.6477049 + 5650 21746.371 59.453265 0 3683.8485 1.5272163 + 5700 20448.97 275.57425 0 3683.736 -7.9864104 + 5750 19776.152 387.64417 0 3683.6695 -16.604848 + 5800 15779.293 1055.4995 0 3685.3817 20.365883 + 5850 21008.009 182.52093 0 3683.8557 -6.6727217 + 5900 21566.123 89.588216 0 3683.9421 -7.8944316 + 5950 21591.695 85.284975 0 3683.9009 -2.4895203 + 6000 17737.17 726.79112 0 3682.9861 1.5643841 + 6050 16648.524 907.73295 0 3682.487 3.0853478 + 6100 19917.439 363.6324 0 3683.2056 4.358303 + 6150 21767.004 56.152017 0 3683.986 -8.8722559 + 6200 17654.098 742.15421 0 3684.5039 9.7673482 + 6250 20125.754 329.65218 0 3683.9445 5.5050658 + 6300 20160.047 323.44453 0 3683.4524 4.852504 + 6350 20509.459 264.29515 0 3682.5383 2.5335834 + 6400 17199.686 817.09171 0 3683.7061 8.3428304 + 6450 18748.366 558.82243 0 3683.5501 0.23782614 + 6500 19133.519 494.28383 0 3683.2037 8.1586096 + 6550 20311.228 297.30741 0 3682.5122 -1.7015056 + 6600 18879.49 536.62652 0 3683.2082 5.0874769 + 6650 18189.35 651.42447 0 3682.9828 -15.223564 + 6700 19925.861 361.90598 0 3682.8828 0.26811015 + 6750 19420.312 445.30915 0 3682.0278 5.5725626 + 6800 19925.024 361.87412 0 3682.7114 -3.9763013 + 6850 16196.938 985.7242 0 3685.2138 2.8265047 + 6900 19779.752 386.51634 0 3683.1416 16.798629 + 6950 21043.144 176.83133 0 3684.0221 -4.193188 + 7000 18555.362 589.47043 0 3682.0307 14.516315 + 7050 21225.883 147.54974 0 3685.1969 -13.466586 + 7100 21234.667 145.92615 0 3685.0373 -5.1951121 + 7150 21483.472 104.62556 0 3685.2042 -5.6904048 + 7200 21014.278 182.97687 0 3685.3566 1.044649 + 7250 18588.789 587.96259 0 3686.094 22.707132 + 7300 20202.932 318.14401 0 3685.2994 -10.795766 + 7350 18304.22 634.7344 0 3685.4377 -1.6801482 + 7400 20967.579 190.67822 0 3685.2747 -0.94800692 + 7450 20991.588 186.07163 0 3684.6696 -1.411476 + 7500 19056.583 507.18197 0 3683.2791 3.2026014 + 7550 18542.455 594.92944 0 3685.3386 -27.908724 + 7600 19895.73 367.08589 0 3683.0409 4.1334366 + 7650 20384.942 285.88041 0 3683.3707 -7.515362 + 7700 20683.189 235.46294 0 3682.6611 10.876437 + 7750 20729.325 228.204 0 3683.0915 3.8844308 + 7800 21667.475 71.752748 0 3682.9985 -15.457992 + 7850 19043.652 508.96807 0 3682.9101 -5.8335792 + 7900 21079.827 169.61123 0 3682.9158 -1.3216223 + 7950 20713.266 230.43917 0 3682.6502 -0.20026535 + 8000 20606.41 248.06357 0 3682.4652 4.2844844 + 8050 20284.503 302.0469 0 3682.7973 6.3402329 + 8100 21859.537 39.514865 0 3682.7711 -13.302141 + 8150 18495.181 600.26329 0 3682.7934 9.9318242 + 8200 21458.549 105.63828 0 3682.0631 -7.7419285 + 8250 18704.511 564.30958 0 3681.728 14.680489 + 8300 20689.366 233.57049 0 3681.7982 2.3067527 + 8350 20692.974 232.67005 0 3681.499 4.2743386 + 8400 20240.086 307.5395 0 3680.8872 1.9694217 + 8450 19075.969 501.34689 0 3680.6751 11.056078 + 8500 21456.727 103.36067 0 3679.4818 -3.4512371 + 8550 20393.16 279.84781 0 3678.7078 6.3282998 + 8600 20898.88 195.43751 0 3678.5842 -14.393947 + 8650 20297.482 295.3169 0 3678.2306 -0.96829147 + 8700 21079.56 164.72934 0 3677.9893 -8.339122 + 8750 21142.519 154.18527 0 3677.9384 -4.6169442 + 8800 20143.871 320.23161 0 3677.5435 6.5710426 + 8850 21030.065 172.88831 0 3677.8992 1.3973883 + 8900 19814.648 375.22097 0 3677.6624 2.6996208 + 8950 17392.382 778.87517 0 3677.6055 11.963975 + 9000 19209.163 476.44659 0 3677.9738 8.7050034 + 9050 20143.824 320.17051 0 3677.4745 -5.8044332 + 9100 21400.78 110.99404 0 3677.7908 -3.0027429 + 9150 21834.471 38.970732 0 3678.0493 -2.5838117 + 9200 21344.715 120.55831 0 3678.0108 4.8187829 + 9250 20998.277 178.31959 0 3678.0324 -1.2009012 + 9300 21141.788 154.4658 0 3678.0971 -21.693564 + 9350 21439.398 105.00432 0 3678.2374 -16.113694 + 9400 21296.282 128.83877 0 3678.2191 -2.9990284 + 9450 19050.623 503.10319 0 3678.207 15.622525 + 9500 20845.847 203.77117 0 3678.079 -1.7504827 + 9550 18808.956 543.38757 0 3678.2135 -2.6611868 + 9600 20612.559 242.57373 0 3678.0002 -0.1650541 + 9650 20522.637 257.28926 0 3677.7288 6.8876074 + 9700 20970.074 182.75754 0 3677.7699 -4.5350279 + 9750 18297.505 625.06808 0 3674.6522 32.429153 + 9800 21042.472 170.78969 0 3677.8684 5.4901963 + 9850 20444.092 270.84839 0 3678.197 6.9444494 + 9900 21597.787 78.901871 0 3678.533 2.3445932 + 9950 18376.854 616.35469 0 3679.1636 -8.55063 + 10000 21490.054 97.234379 0 3678.9101 -0.36115606 +Loop time of 3.38095 on 4 procs for 10000 steps with 81 atoms + +Performance: 25554.943 tau/day, 2957.748 timesteps/s +98.7% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.015775 | 0.043664 | 0.1024 | 16.8 | 1.29 +Neigh | 0.012822 | 0.029038 | 0.061576 | 11.5 | 0.86 +Comm | 0.18256 | 0.2516 | 0.30898 | 10.5 | 7.44 +Output | 0.0063725 | 0.0069898 | 0.0081069 | 0.8 | 0.21 +Modify | 2.9608 | 3.0171 | 3.0947 | 2.8 | 89.24 +Other | | 0.03255 | | | 0.96 + +Nlocal: 20.25 ave 81 max 0 min +Histogram: 3 0 0 0 0 0 0 0 0 1 +Nghost: 45.5 ave 82 max 12 min +Histogram: 2 0 0 0 0 0 0 0 1 1 +Neighs: 218.75 ave 875 max 0 min +Histogram: 3 0 0 0 0 0 0 0 0 1 + +Total # of neighbors = 875 +Ave neighs/atom = 10.8025 +Neighbor list builds = 993 +Dangerous builds = 945 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:03 diff --git a/examples/rigid/log.20Apr18.rigid.poems2.g++.1 b/examples/rigid/log.20Apr18.rigid.poems2.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..9062b78def3407178b062603c2a74207cac6e611 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.poems2.g++.1 @@ -0,0 +1,342 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 10 18 +#group clump3 id <> 19 27 +#group clump4 id <> 28 36 +#group clump5 id <> 37 45 +#group clump6 id <> 46 54 +#group clump7 id <> 55 63 +#group clump8 id <> 64 72 +#group clump9 id <> 73 81 + +#fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 9 18 +10 atoms in group clump2 +group clump3 id <> 18 27 +10 atoms in group clump3 +group clump4 id <> 27 36 +10 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 45 54 +10 atoms in group clump6 +group clump7 id <> 54 63 +10 atoms in group clump7 +group clump8 id <> 63 72 +10 atoms in group clump8 +group clump9 id <> 72 81 +10 atoms in group clump9 + +fix 1 all poems group clump1 clump2 clump3 clump4 +1 clusters, 4 bodies, 3 joints, 36 atoms +fix 2 all poems group clump5 clump6 clump7 clump8 clump9 +1 clusters, 5 bodies, 4 joints, 45 atoms + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid.poems2 + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +WARNING: More than one fix poems (../fix_poems.cpp:363) +WARNING: More than one fix poems (../fix_poems.cpp:363) +WARNING: One or more atoms are time integrated more than once (../modify.cpp:279) +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.854 | 3.854 | 3.854 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 196.00047 3632.2347 0 3668.5311 -2.7403788 + 50 12167.633 1505.5478 0 3758.8133 35.125973 + 100 17556.978 512.66277 0 3763.9549 11.137534 + 150 19579.586 138.04942 0 3763.8987 -29.953971 + 200 19757.51 105.30542 0 3764.1036 -0.030645317 + 250 18218.374 390.10747 0 3763.8804 13.711001 + 300 19383.039 174.40688 0 3763.8586 5.7240693 + 350 20125.986 36.972611 0 3764.0071 1.9559205 + 400 18888.816 266.10975 0 3764.0386 9.6362168 + 450 19307.656 188.2511 0 3763.743 1.9326206 + 500 16331.197 738.56392 0 3762.8597 9.1715579 + 550 19318.722 186.16172 0 3763.7027 3.0115336 + 600 19455.268 161.20621 0 3764.0336 0.55208034 + 650 18487.011 340.03216 0 3763.5528 -8.0359122 + 700 17321.201 556.32471 0 3763.9545 -13.631751 + 750 18979.187 249.04389 0 3763.7082 -2.6072455 + 800 19342.456 181.85552 0 3763.7918 8.1918726 + 850 19070.641 232.19342 0 3763.7936 7.3148472 + 900 19478.873 156.65987 0 3763.8586 2.4284987 + 950 19912.415 76.437437 0 3763.9216 -1.4667227 + 1000 16003.749 802.39753 0 3766.0548 46.642188 + 1050 19859.583 86.64176 0 3764.3424 -2.1961943 + 1100 19229.575 203.61488 0 3764.6473 -10.632365 + 1150 18821.6 279.15861 0 3764.64 -0.89495035 + 1200 19392.695 173.59744 0 3764.8373 1.8508753 + 1250 16459.624 717.32104 0 3765.3995 33.478127 + 1300 19343.863 182.59043 0 3764.7874 0.75890736 + 1350 20019.643 57.503573 0 3764.8448 0.31444671 + 1400 18549.582 329.31436 0 3764.4221 10.738303 + 1450 15163.926 957.47585 0 3765.6103 -17.92346 + 1500 19223.688 204.15177 0 3764.0939 -1.6134528 + 1550 18147.996 404.12677 0 3764.8668 8.4194783 + 1600 18615.043 317.42469 0 3764.6548 -2.3288917 + 1650 20120.654 38.887903 0 3764.935 -8.7620301 + 1700 19450.907 162.98262 0 3765.0025 2.3254748 + 1750 19374.631 177.37975 0 3765.2744 8.9328771 + 1800 19424.404 167.93963 0 3765.0514 0.081227378 + 1850 17936.203 442.85082 0 3764.3699 6.6011902 + 1900 19982.595 64.406292 0 3764.8868 -2.95296 + 1950 16215.781 761.92636 0 3764.8487 13.995056 + 2000 18584.444 322.1163 0 3763.6801 7.1653369 + 2050 20107.965 41.025841 0 3764.723 -0.31088772 + 2100 20002.324 60.594786 0 3764.7288 -6.7919989 + 2150 16949.875 626.57523 0 3765.4409 3.50855 + 2200 20010.954 58.808121 0 3764.5403 -10.862112 + 2250 18982.734 247.00818 0 3762.3293 -0.53817452 + 2300 18401.254 354.88774 0 3762.5274 1.0921595 + 2350 19390.545 172.93755 0 3763.7793 -3.3523777 + 2400 16080.137 786.51156 0 3764.3147 -16.202632 + 2450 18870.17 268.79443 0 3763.2704 11.201845 + 2500 19688.736 117.49945 0 3763.5616 4.3786781 + 2550 18869.811 268.97474 0 3763.3842 -5.6659314 + 2600 17021.088 611.38597 0 3763.4393 6.3051835 + 2650 18743.998 292.7827 0 3763.8934 2.4233167 + 2700 19745.629 106.63088 0 3763.2289 -0.34816161 + 2750 19527.584 147.21131 0 3763.4306 -1.6219417 + 2800 18195.354 392.99533 0 3762.5053 24.376674 + 2850 18550.094 327.77867 0 3762.9812 4.2654596 + 2900 20174.105 27.269108 0 3763.2144 1.7109311 + 2950 17744.679 476.70478 0 3762.7564 0.46336417 + 3000 19161.715 214.56545 0 3763.0311 2.3774967 + 3050 18357.87 363.54089 0 3763.1465 7.5885138 + 3100 18851.02 272.19735 0 3763.1269 8.0560784 + 3150 19586.208 136.32381 0 3763.3995 -10.118566 + 3200 19300.444 189.2076 0 3763.3639 -12.590066 + 3250 18680.955 303.88073 0 3763.3168 -1.0138975 + 3300 18444.612 347.49752 0 3763.1664 8.9271155 + 3350 19006.554 243.54359 0 3763.2757 4.7398999 + 3400 17842.797 459.11352 0 3763.3351 28.63048 + 3450 19801.317 96.103613 0 3763.0141 4.0933253 + 3500 18599.338 318.61343 0 3762.9353 6.3657111 + 3550 19737.266 107.84071 0 3762.89 1.3861757 + 3600 19002.648 244.0525 0 3763.0613 8.7615304 + 3650 19154.418 215.94396 0 3763.0584 -2.6243193 + 3700 19036.117 237.84014 0 3763.047 -5.6841944 + 3750 20045.863 50.759281 0 3762.9562 -2.1930939 + 3800 19331.877 182.69303 0 3762.6703 0.57474959 + 3850 18193.947 393.70074 0 3762.9502 -4.1144639 + 3900 19675.638 119.2295 0 3762.8663 0.46172332 + 3950 19506.743 150.36614 0 3762.7259 5.8020668 + 4000 17985.008 431.80897 0 3762.366 10.755615 + 4050 19947.208 68.962683 0 3762.8902 -2.0041629 + 4100 19936.06 70.997196 0 3762.8602 -6.6295574 + 4150 19011.006 242.10402 0 3762.6608 -12.682711 + 4200 18108.183 409.44214 0 3762.8094 -0.42654932 + 4250 18734.162 293.70086 0 3762.9901 8.8549986 + 4300 16619.218 686.30953 0 3763.9426 43.405681 + 4350 18818.184 277.95188 0 3762.8007 20.953883 + 4400 18649.616 307.93211 0 3761.5647 -3.6011031 + 4450 18626.995 313.23564 0 3762.6792 -2.5430627 + 4500 18133.284 405.27778 0 3763.2934 3.057056 + 4550 19985.929 61.792735 0 3762.8908 1.9540846 + 4600 18664.305 306.02805 0 3762.3809 1.2395242 + 4650 19822.408 92.030223 0 3762.8466 -1.0496216 + 4700 19218.014 203.93895 0 3762.8305 0.74203538 + 4750 19425.781 165.36374 0 3762.7306 4.0113982 + 4800 18604.891 317.55244 0 3762.9026 16.671366 + 4850 19648.156 124.29963 0 3762.8471 4.1073 + 4900 18928.508 257.76023 0 3763.0394 -4.3547566 + 4950 19795.841 97.135231 0 3763.0317 -10.401888 + 5000 20150.671 31.452661 0 3763.0584 -3.352706 + 5050 18694.789 300.8954 0 3762.8933 11.690808 + 5100 16936.745 627.00902 0 3763.4434 -0.56880353 + 5150 18446.99 346.49004 0 3762.5992 8.409244 + 5200 18532.691 330.61677 0 3762.5966 10.358529 + 5250 18342.743 366.3264 0 3763.1306 -9.5622676 + 5300 20038.203 52.234825 0 3763.0131 -3.6974868 + 5350 19337.092 182.06755 0 3763.0106 -0.045248915 + 5400 19561.005 140.5518 0 3762.9602 1.3850963 + 5450 19415.557 167.29181 0 3762.7654 2.6966013 + 5500 18646.823 309.81657 0 3762.9319 7.4858844 + 5550 19165.312 214.07271 0 3763.2046 1.4335924 + 5600 18879.507 266.90953 0 3763.1146 7.8746695 + 5650 19824.482 91.786842 0 3762.9872 -2.4395467 + 5700 19699.85 114.8239 0 3762.9442 4.2779932 + 5750 19535.697 145.24886 0 3762.9706 5.9452722 + 5800 18275.446 378.66191 0 3763.0038 11.965062 + 5850 19931.992 71.873259 0 3762.9828 -2.3097575 + 5900 18528.705 331.64793 0 3762.8897 -18.312104 + 5950 16535.446 701.02536 0 3763.1451 -14.797902 + 6000 18678.807 303.76763 0 3762.806 -3.2732626 + 6050 16661.525 677.73561 0 3763.2031 17.862761 + 6100 18100.317 410.39139 0 3762.3019 -4.9765779 + 6150 16487.861 707.08907 0 3760.3967 32.53899 + 6200 16823.279 647.56578 0 3762.9878 -9.8237219 + 6250 18418.096 351.89624 0 3762.6548 -2.0149855 + 6300 18822.067 277.01314 0 3762.5811 5.3782716 + 6350 19300.198 188.57243 0 3762.6832 -1.9316023 + 6400 18425.789 350.70367 0 3762.8868 2.6884393 + 6450 18708.506 297.50643 0 3762.0447 -13.808707 + 6500 19528.099 146.10805 0 3762.4226 -1.5991505 + 6550 19701.841 114.01327 0 3762.5023 4.4322487 + 6600 18892.934 262.83827 0 3761.5297 10.689265 + 6650 19041.669 235.52692 0 3761.7619 -1.1425512 + 6700 19352.162 178.40501 0 3762.1388 -0.55130997 + 6750 16177.653 765.61942 0 3761.481 4.6526477 + 6800 19007.323 242.63753 0 3762.5122 3.6202242 + 6850 14255.206 1125.4974 0 3765.3503 -31.10433 + 6900 18481.408 340.4703 0 3762.9532 0.53246054 + 6950 19227.569 202.33363 0 3762.9946 -0.94126626 + 7000 18771.85 286.70279 0 3762.9714 3.151759 + 7050 18689.51 301.95602 0 3762.9765 8.0511724 + 7100 18599.258 318.83229 0 3763.1394 -0.86222116 + 7150 17739.189 478.35458 0 3763.3896 11.976827 + 7200 19492.829 153.62536 0 3763.4084 -8.6815909 + 7250 18797.718 282.17319 0 3763.232 -19.897633 + 7300 18353.871 364.09362 0 3762.9585 5.4538454 + 7350 19040.053 237.34144 0 3763.2772 6.5600248 + 7400 19452.586 160.98629 0 3763.317 -9.0542585 + 7450 19033.845 238.45033 0 3763.2365 3.2654681 + 7500 18137.358 404.80969 0 3763.5796 -7.2639486 + 7550 16863.391 642.47654 0 3765.3267 31.248679 + 7600 16374.538 731.74039 0 3764.0622 29.566291 + 7650 19837.917 89.823014 0 3763.5114 -2.6605403 + 7700 15593.154 876.08807 0 3763.7093 -9.7668717 + 7750 16609.929 687.32679 0 3763.2396 1.0775966 + 7800 17513.384 519.87756 0 3763.0968 3.4979836 + 7850 20022.015 56.036771 0 3763.8173 -4.316185 + 7900 17681.324 489.71547 0 3764.0347 5.1978443 + 7950 18320.382 371.17872 0 3763.8421 6.1860655 + 8000 20014.059 57.688322 0 3763.9956 -9.0623854 + 8050 16203.013 762.61545 0 3763.1735 31.662714 + 8100 18749.745 291.57889 0 3763.7538 -14.015057 + 8150 19411.326 169.05845 0 3763.7485 -4.3392799 + 8200 17994.991 431.56932 0 3763.9751 6.8158642 + 8250 19325.923 185.1137 0 3763.9883 9.4923883 + 8300 17354.302 550.33316 0 3764.0927 6.1636399 + 8350 19900.895 78.431831 0 3763.7828 -4.5224196 + 8400 17775.757 471.62915 0 3763.4361 12.949899 + 8450 19909.324 76.935162 0 3763.8471 -2.950115 + 8500 18601.933 318.79405 0 3763.5965 6.0173542 + 8550 18685.758 303.59497 0 3763.9205 2.7277487 + 8600 19297.521 190.12606 0 3763.741 4.8998933 + 8650 17396.37 542.14326 0 3763.6932 39.937715 + 8700 17134.714 590.99465 0 3764.0898 10.37328 + 8750 14348.104 1106.7544 0 3763.8106 -3.8604659 + 8800 19830.924 90.929138 0 3763.3225 0.26603444 + 8850 18551.537 326.53747 0 3762.0072 -1.5369982 + 8900 20040.322 52.066026 0 3763.2367 -12.667979 + 8950 19314.585 186.54793 0 3763.3228 -0.64755555 + 9000 19117.66 222.84553 0 3763.153 5.2990011 + 9050 19072.016 231.26038 0 3763.1152 -1.6513695 + 9100 19284.933 191.73976 0 3763.0237 -3.932358 + 9150 17356.576 548.61808 0 3762.7988 1.3659056 + 9200 18939.549 255.43703 0 3762.761 3.3037106 + 9250 19621.961 129.5012 0 3763.1976 1.667 + 9300 16898.033 633.79921 0 3763.0647 7.5941845 + 9350 19662.75 122.10836 0 3763.3584 -3.3144828 + 9400 16118.338 778.70243 0 3763.5799 9.8684537 + 9450 17362.374 548.18847 0 3763.443 6.8117548 + 9500 17873.057 453.37389 0 3763.1993 9.5651746 + 9550 19282.305 192.593 0 3763.3901 -4.987757 + 9600 18236.48 386.36263 0 3763.4886 8.8658343 + 9650 17695.571 486.6517 0 3763.6093 12.471421 + 9700 19044.003 237.04652 0 3763.7138 0.84430497 + 9750 17937.299 442.4372 0 3764.1592 3.981475 + 9800 18179.761 396.86987 0 3763.4923 -11.397273 + 9850 19157.292 215.8937 0 3763.5404 -7.7648682 + 9900 19719.066 111.98124 0 3763.6602 5.5378968 + 9950 18103.235 410.65473 0 3763.1056 28.201374 + 10000 18479.903 341.32548 0 3763.5297 -5.0581298 +Loop time of 3.14341 on 1 procs for 10000 steps with 81 atoms + +Performance: 27486.104 tau/day, 3181.262 timesteps/s +99.3% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.12201 | 0.12201 | 0.12201 | 0.0 | 3.88 +Neigh | 0.077269 | 0.077269 | 0.077269 | 0.0 | 2.46 +Comm | 0.012246 | 0.012246 | 0.012246 | 0.0 | 0.39 +Output | 0.0032048 | 0.0032048 | 0.0032048 | 0.0 | 0.10 +Modify | 2.9172 | 2.9172 | 2.9172 | 0.0 | 92.80 +Other | | 0.01151 | | | 0.37 + +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 67 ave 67 max 67 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 599 ave 599 max 599 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 599 +Ave neighs/atom = 7.39506 +Neighbor list builds = 993 +Dangerous builds = 945 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:03 diff --git a/examples/rigid/log.20Apr18.rigid.poems2.g++.4 b/examples/rigid/log.20Apr18.rigid.poems2.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..812b101841c6a9260eb4fad1a39b26a07c2dd64a --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.poems2.g++.4 @@ -0,0 +1,342 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic + +pair_style lj/cut 2.5 + +read_data data.rigid + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + +# unconnected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 10 18 +#group clump3 id <> 19 27 +#group clump4 id <> 28 36 +#group clump5 id <> 37 45 +#group clump6 id <> 46 54 +#group clump7 id <> 55 63 +#group clump8 id <> 64 72 +#group clump9 id <> 73 81 + +#fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 9 18 +10 atoms in group clump2 +group clump3 id <> 18 27 +10 atoms in group clump3 +group clump4 id <> 27 36 +10 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 45 54 +10 atoms in group clump6 +group clump7 id <> 54 63 +10 atoms in group clump7 +group clump8 id <> 63 72 +10 atoms in group clump8 +group clump9 id <> 72 81 +10 atoms in group clump9 + +fix 1 all poems group clump1 clump2 clump3 clump4 +1 clusters, 4 bodies, 3 joints, 36 atoms +fix 2 all poems group clump5 clump6 clump7 clump8 clump9 +1 clusters, 5 bodies, 4 joints, 45 atoms + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid.poems2 + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +WARNING: More than one fix poems (../fix_poems.cpp:363) +WARNING: More than one fix poems (../fix_poems.cpp:363) +WARNING: One or more atoms are time integrated more than once (../modify.cpp:279) +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.825 | 3.919 | 4.201 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 196.00047 3632.2347 0 3668.5311 -2.7403788 + 50 12167.633 1505.5478 0 3758.8133 35.125973 + 100 17556.978 512.66277 0 3763.9549 11.137534 + 150 19579.586 138.04942 0 3763.8987 -29.953971 + 200 19757.51 105.30542 0 3764.1036 -0.030645317 + 250 18218.374 390.10747 0 3763.8804 13.711001 + 300 19383.039 174.40688 0 3763.8586 5.7240693 + 350 20125.986 36.972611 0 3764.0071 1.9559205 + 400 18888.816 266.10975 0 3764.0386 9.6362168 + 450 19307.656 188.2511 0 3763.743 1.9326206 + 500 16331.197 738.56392 0 3762.8597 9.1715579 + 550 19318.722 186.16172 0 3763.7027 3.0115336 + 600 19455.268 161.20621 0 3764.0336 0.55208034 + 650 18487.011 340.03216 0 3763.5528 -8.0359122 + 700 17321.201 556.32471 0 3763.9545 -13.631751 + 750 18979.187 249.04389 0 3763.7082 -2.6072455 + 800 19342.456 181.85552 0 3763.7918 8.1918726 + 850 19070.641 232.19342 0 3763.7936 7.3148472 + 900 19478.873 156.65987 0 3763.8586 2.4284987 + 950 19912.415 76.437437 0 3763.9216 -1.4667227 + 1000 16003.749 802.39753 0 3766.0548 46.642188 + 1050 19859.583 86.64176 0 3764.3424 -2.1961943 + 1100 19229.575 203.61488 0 3764.6473 -10.632365 + 1150 18821.6 279.15861 0 3764.64 -0.89495035 + 1200 19392.695 173.59744 0 3764.8373 1.8508753 + 1250 16459.624 717.32104 0 3765.3995 33.478127 + 1300 19343.863 182.59043 0 3764.7874 0.75890736 + 1350 20019.643 57.503573 0 3764.8448 0.31444671 + 1400 18549.582 329.31436 0 3764.4221 10.738303 + 1450 15163.926 957.47584 0 3765.6103 -17.923459 + 1500 19223.688 204.15172 0 3764.0939 -1.6134536 + 1550 18147.996 404.12676 0 3764.8668 8.4194774 + 1600 18615.043 317.42466 0 3764.6548 -2.3288957 + 1650 20120.654 38.887927 0 3764.935 -8.7620244 + 1700 19450.906 162.98284 0 3765.0025 2.3254707 + 1750 19374.632 177.37954 0 3765.2744 8.9328778 + 1800 19424.403 167.93971 0 3765.0514 0.081234023 + 1850 17936.311 442.83087 0 3764.3699 6.600894 + 1900 19982.596 64.40607 0 3764.8868 -2.9530102 + 1950 16215.95 761.89459 0 3764.8482 13.994238 + 2000 18584.39 322.12621 0 3763.68 7.1654863 + 2050 20107.966 41.025634 0 3764.723 -0.31093298 + 2100 20002.346 60.590652 0 3764.7288 -6.7919499 + 2150 16949.612 626.62391 0 3765.441 3.5094585 + 2200 20010.952 58.808492 0 3764.5403 -10.862255 + 2250 18982.727 247.00941 0 3762.3292 -0.53796622 + 2300 18401.351 354.86992 0 3762.5275 1.0919209 + 2350 19390.5 172.94589 0 3763.7793 -3.3526281 + 2400 16081.648 786.23133 0 3764.3143 -16.197875 + 2450 18870.722 268.69249 0 3763.2707 11.192419 + 2500 19687.71 117.6898 0 3763.562 4.387789 + 2550 18872.129 268.54506 0 3763.3838 -5.6577428 + 2600 17017.179 612.11028 0 3763.4397 6.3187623 + 2650 18766.343 288.63699 0 3763.8856 2.3968008 + 2700 19737.998 108.02069 0 3763.2054 -0.30752024 + 2750 19508.797 150.69812 0 3763.4384 -1.6171126 + 2800 18394.822 355.73011 0 3762.1787 21.193311 + 2850 18561.108 325.76417 0 3763.0065 3.9331499 + 2900 20124.042 36.554163 0 3763.2286 0.54133121 + 2950 15727.607 849.90471 0 3762.4245 13.885323 + 3000 17991.206 431.32693 0 3763.0317 9.9953567 + 3050 18834.86 275.34241 0 3763.2795 9.1519305 + 3100 18986.272 247.38123 0 3763.3575 -1.8754521 + 3150 19979.145 63.575968 0 3763.4177 -11.800026 + 3200 19953.846 68.376593 0 3763.5332 -6.7719573 + 3250 15646.02 867.19502 0 3764.6062 16.433911 + 3300 16946.252 625.14854 0 3763.3433 4.3975456 + 3350 19006.567 243.97026 0 3763.7048 5.3392405 + 3400 18082.133 414.87059 0 3763.4138 15.143954 + 3450 18273.719 379.36162 0 3763.3836 5.4465204 + 3500 19783.17 100.06678 0 3763.6167 1.9588505 + 3550 19794.99 97.904519 0 3763.6435 -3.0349395 + 3600 18357.708 363.98291 0 3763.5585 -2.1229788 + 3650 19647.179 125.48949 0 3763.8559 1.2967845 + 3700 18806.632 281.78709 0 3764.4967 5.125718 + 3750 18982.747 248.97053 0 3764.294 -0.72036085 + 3800 19597.926 135.04805 0 3764.2935 -3.2129291 + 3850 18914.042 261.7133 0 3764.3136 -12.163282 + 3900 18646.326 311.16482 0 3764.1881 5.1808943 + 3950 18589.554 321.36256 0 3763.8726 4.9554103 + 4000 17877.615 453.02456 0 3763.694 9.8457113 + 4050 19440.059 164.15739 0 3764.1684 -5.4054486 + 4100 18505.545 337.36023 0 3764.313 4.8468985 + 4150 19220.307 204.85944 0 3764.1755 -6.5040818 + 4200 19058.915 234.79578 0 3764.2245 3.1852011 + 4250 19867.025 85.136186 0 3764.2149 5.6156236 + 4300 16989.857 616.86564 0 3763.1355 -3.4041875 + 4350 19782.09 100.85847 0 3764.2085 3.2531098 + 4400 19879.56 82.559198 0 3763.9593 1.6340828 + 4450 19409.95 169.46676 0 3763.9019 -1.824265 + 4500 19742.977 107.72786 0 3763.8347 -0.72711698 + 4550 17166.529 585.04113 0 3764.028 -0.38806102 + 4600 19604.596 133.61426 0 3764.0949 -5.2712214 + 4650 18865.608 270.23956 0 3763.8707 1.5751363 + 4700 20190.139 25.270932 0 3764.1855 -10.159924 + 4750 20043.487 52.56327 0 3764.3201 -4.713579 + 4800 19361.931 178.70311 0 3764.246 4.2460799 + 4850 19460.365 160.29083 0 3764.0621 3.5079181 + 4900 18252.89 384.16194 0 3764.3268 4.1870604 + 4950 19516.947 150.07365 0 3764.3231 4.0238527 + 5000 19041.145 238.27335 0 3764.4113 8.2280019 + 5050 19519.408 149.66793 0 3764.3731 -0.088904966 + 5100 18087.848 415.34004 0 3764.9416 8.9482852 + 5150 19392.463 173.43121 0 3764.628 -6.6722716 + 5200 19683.968 119.46663 0 3764.6458 -2.0330852 + 5250 19675.404 121.09497 0 3764.6884 3.0627309 + 5300 18627.53 314.96107 0 3764.5038 5.2692141 + 5350 20022.616 56.725346 0 3764.6172 -7.7034469 + 5400 19353.4 180.6482 0 3764.6112 -2.3897589 + 5450 16966.649 622.29693 0 3764.2689 6.3601638 + 5500 17584.292 508.42495 0 3764.7753 5.949219 + 5550 19169.69 214.76864 0 3764.7113 3.3778997 + 5600 19491.814 155.19149 0 3764.7866 -0.20031164 + 5650 19079.585 231.70394 0 3764.9605 7.3017226 + 5700 19686.564 119.34 0 3765 0.98980357 + 5750 19639.909 127.89886 0 3764.919 2.3982612 + 5800 19474.109 158.55418 0 3764.8706 3.4940447 + 5850 16957.663 624.72623 0 3765.0342 10.739819 + 5900 19950.579 70.027987 0 3764.5796 4.6925057 + 5950 19759.601 105.38621 0 3764.5716 3.0958319 + 6000 19129.749 221.96406 0 3764.5102 -1.0612997 + 6050 16087.951 785.36134 0 3764.6115 -15.255986 + 6100 18851.976 272.98306 0 3764.0896 4.9341766 + 6150 19532.23 147.4113 0 3764.4909 1.3206073 + 6200 18051.604 421.79367 0 3764.6833 2.587863 + 6250 18922.77 259.81211 0 3764.0287 10.363589 + 6300 18402.504 356.81518 0 3764.6864 8.3589218 + 6350 19315.369 187.64457 0 3764.5647 1.0716382 + 6400 19700.59 116.50438 0 3764.7618 2.165408 + 6450 19596.362 135.79675 0 3764.7527 1.6466783 + 6500 20217.677 20.884953 0 3764.8993 -3.5893732 + 6550 18278.991 379.95981 0 3764.9582 7.0433091 + 6600 20142.999 34.761283 0 3764.9462 1.7083655 + 6650 20185.488 26.899017 0 3764.9524 -0.65741058 + 6700 17942.962 441.72909 0 3764.4999 -3.691039 + 6750 16435.681 720.9581 0 3764.6028 -9.4583249 + 6800 17825.95 463.58979 0 3764.6916 6.1557503 + 6850 19440.75 164.52796 0 3764.6669 -11.921703 + 6900 18824.905 278.4897 0 3764.5832 -1.4668322 + 6950 19069.14 233.25502 0 3764.5772 6.8149838 + 7000 18983.209 249.29193 0 3764.701 15.140158 + 7050 15623.103 872.33684 0 3765.5041 7.3268767 + 7100 20090.283 44.006184 0 3764.429 2.6959947 + 7150 15535.27 888.39683 0 3765.2987 -4.1285644 + 7200 19425.575 167.19079 0 3764.5195 4.9190857 + 7250 18684.497 304.24754 0 3764.3396 7.3927682 + 7300 17632.518 498.82765 0 3764.1087 5.1101854 + 7350 18969.793 251.66375 0 3764.5884 -3.7865508 + 7400 17700.626 486.89931 0 3764.7931 -8.8531288 + 7450 17897.361 450.31562 0 3764.6417 -3.6095062 + 7500 18795.228 284.03842 0 3764.6361 8.3567203 + 7550 18658.285 309.34015 0 3764.5781 0.4306691 + 7600 19230.039 203.5385 0 3764.6567 0.80253549 + 7650 19513.551 150.86999 0 3764.4906 0.32848159 + 7700 19494.849 154.28788 0 3764.4452 -4.2498631 + 7750 20011.058 58.832118 0 3764.5835 0.54896615 + 7800 19241.055 201.57548 0 3764.7338 -0.26200786 + 7850 19512.742 151.11436 0 3764.5851 2.7308876 + 7900 19688.007 118.68023 0 3764.6075 0.80454178 + 7950 16891.645 636.56823 0 3764.6507 -25.839253 + 8000 19425.572 167.33746 0 3764.6657 -2.8744687 + 8050 19444.916 163.57779 0 3764.4882 8.5388183 + 8100 19540.338 145.77731 0 3764.3585 5.5606379 + 8150 17997.991 429.85951 0 3762.8208 20.179487 + 8200 19463.886 159.50302 0 3763.9264 0.19577123 + 8250 19517.733 149.53457 0 3763.9295 2.3294314 + 8300 19236.221 201.66041 0 3763.9236 5.8204747 + 8350 18662.608 308.25544 0 3764.2939 5.4422482 + 8400 19030.046 239.38211 0 3763.4647 3.7940188 + 8450 18058.148 419.70672 0 3763.8081 4.4010713 + 8500 16866.001 641.00564 0 3764.3392 -19.894815 + 8550 19484.364 155.35821 0 3763.5737 4.2635496 + 8600 18562.912 326.16323 0 3763.7395 11.288271 + 8650 19256.188 197.67578 0 3763.6365 -4.1872666 + 8700 19653.945 124.27148 0 3763.8909 -7.4888761 + 8750 19590.834 136.12748 0 3764.0596 1.0605539 + 8800 19065.424 233.46882 0 3764.1029 1.8432113 + 8850 18961.297 252.69734 0 3764.0486 6.7414134 + 8900 19879.711 82.777822 0 3764.2058 0.12631864 + 8950 18689.712 302.80546 0 3763.8632 5.1584036 + 9000 19114.403 224.23511 0 3763.9393 -4.5856366 + 9050 17626.3 500.49518 0 3764.6248 -3.9436947 + 9100 18552.501 328.86032 0 3764.5087 -0.32810034 + 9150 15039.846 979.12961 0 3764.2862 16.571104 + 9200 19146.923 218.64681 0 3764.3733 -4.6264398 + 9250 17606.161 503.14852 0 3763.5487 13.13675 + 9300 18002.328 430.47362 0 3764.2381 4.9326117 + 9350 19980.452 64.168644 0 3764.2524 -5.6111349 + 9400 18953.798 254.44926 0 3764.4118 2.3662302 + 9450 17151.075 588.59472 0 3764.7197 4.3116983 + 9500 19128.858 221.38199 0 3763.763 3.6641306 + 9550 18217.322 390.53199 0 3764.1101 1.8537154 + 9600 19094.478 227.98925 0 3764.0038 3.972665 + 9650 19577.649 138.55507 0 3764.0456 4.0408247 + 9700 19331.361 184.31942 0 3764.2011 -4.7996733 + 9750 18999.798 245.87295 0 3764.3541 -0.26741334 + 9800 18987.181 248.37105 0 3764.5157 6.1717595 + 9850 20094.73 43.013036 0 3764.2593 -8.9770288 + 9900 18988.815 247.63984 0 3764.087 -6.3990966 + 9950 18290.808 377.34967 0 3764.5363 7.7453525 + 10000 19558.326 142.47047 0 3764.3828 3.4110829 +Loop time of 3.53831 on 4 procs for 10000 steps with 81 atoms + +Performance: 24418.438 tau/day, 2826.208 timesteps/s +98.7% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0096724 | 0.035349 | 0.063574 | 10.3 | 1.00 +Neigh | 0.0091243 | 0.022333 | 0.037608 | 6.9 | 0.63 +Comm | 0.18063 | 0.2494 | 0.33202 | 12.6 | 7.05 +Output | 0.0060797 | 0.0065744 | 0.0074706 | 0.7 | 0.19 +Modify | 3.0943 | 3.1895 | 3.2828 | 4.0 | 90.14 +Other | | 0.0352 | | | 0.99 + +Nlocal: 20.25 ave 36 max 0 min +Histogram: 1 0 1 0 0 0 0 0 0 2 +Nghost: 17.5 ave 37 max 1 min +Histogram: 2 0 0 0 0 0 0 0 1 1 +Neighs: 154.25 ave 393 max 0 min +Histogram: 2 0 0 0 0 1 0 0 0 1 + +Total # of neighbors = 617 +Ave neighs/atom = 7.61728 +Neighbor list builds = 993 +Dangerous builds = 948 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:03 diff --git a/examples/rigid/log.20Apr18.rigid.property.g++.1 b/examples/rigid/log.20Apr18.rigid.property.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..76ef36825b00775073409ad7d4c97c9e9261e4c3 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.property.g++.1 @@ -0,0 +1,340 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic +atom_modify map array + +pair_style lj/cut 2.5 + +fix 0 all property/atom i_bodies + +read_data data.rigid-property fix 0 NULL Bodies + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +# assemble bodies from per-atom custom integer property bodies +fix 1 all rigid custom i_bodies +9 rigid bodies with 81 atoms + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.046 | 4.046 | 4.046 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.685 571.71558 0 5265.82 32.006171 + 100 16298.442 136.66184 0 5267.653 16.444229 + 150 16682.606 17.490511 0 5269.4219 14.900344 + 200 16733.929 1.372872 0 5269.4617 14.569267 + 250 16738.853 -0.15252816 0 5269.4864 14.496404 + 300 16738.588 -0.055171335 0 5269.5002 14.496025 + 350 16738.492 -0.017444677 0 5269.5077 14.496446 + 400 16738.464 -0.0060102023 0 5269.5104 14.496618 + 450 16738.455 -0.0012713351 0 5269.5124 14.496701 + 500 16738.455 -0.00081068621 0 5269.5128 14.496709 + 550 16738.455 -0.00083203497 0 5269.5129 14.496707 + 600 16738.455 -0.00058355356 0 5269.5131 14.496709 + 650 16738.455 -0.00047226704 0 5269.5131 14.496708 + 700 16738.455 0 0 5269.5136 14.496713 + 750 16738.455 0 0 5269.5136 14.49671 + 800 16738.455 0 0 5269.5137 14.496709 + 850 16738.455 0 0 5269.5137 14.49671 + 900 16738.456 0 0 5269.5138 14.496713 + 950 16738.462 -0.0035323872 0 5269.5122 14.496671 + 1000 16738.586 -0.051135144 0 5269.5036 14.496229 + 1050 16737.358 0.32995057 0 5269.4981 14.525763 + 1100 16737.892 0.16210246 0 5269.4984 14.531983 + 1150 16738.703 -0.089235095 0 5269.5025 14.509899 + 1200 16738.466 -0.0075446243 0 5269.5096 14.510615 + 1250 16738.456 0 0 5269.514 14.510704 + 1300 16738.457 0 0 5269.5141 14.510701 + 1350 16738.457 0 0 5269.5141 14.510699 + 1400 16738.457 -0.00044736511 0 5269.5138 14.510693 + 1450 16738.458 -0.0010971179 0 5269.5134 14.510687 + 1500 16738.458 -0.00057885428 0 5269.5139 14.510698 + 1550 16738.457 0 0 5269.5143 14.51071 + 1600 16738.457 0 0 5269.5144 14.510712 + 1650 16738.457 0 0 5269.5144 14.510712 + 1700 16738.458 0 0 5269.5144 14.51071 + 1750 16738.458 0 0 5269.5145 14.510708 + 1800 16738.458 0 0 5269.5145 14.510706 + 1850 16738.458 0 0 5269.5146 14.510705 + 1900 16738.458 0 0 5269.5146 14.510706 + 1950 16738.465 -0.0031733615 0 5269.5134 14.510659 + 2000 16738.491 -0.013255268 0 5269.5117 14.510532 + 2050 16738.556 -0.0365811 0 5269.5087 14.51029 + 2100 16738.633 -0.063209659 0 5269.5065 14.510219 + 2150 16738.607 -0.05601761 0 5269.5055 14.510231 + 2200 16738.557 -0.038423032 0 5269.5072 14.510404 + 2250 16738.515 -0.023709918 0 5269.5088 14.510539 + 2300 16738.489 -0.013249035 0 5269.5111 14.510621 + 2350 16738.468 -0.0045563719 0 5269.5131 14.510714 + 2400 16738.46 -0.00052194273 0 5269.5146 14.510771 + 2450 16738.464 -0.0023259756 0 5269.514 14.510746 + 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 + 2550 16738.581 -0.044940117 0 5269.5085 14.510315 + 2600 16738.427 -7.9722839e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 + 2700 16738.761 -0.10614946 0 5269.5038 14.499584 + 2750 16733.973 1.4038179 0 5269.5064 14.598107 + 2800 16738.585 -0.046813448 0 5269.5076 14.511073 + 2850 16738.487 -0.012558719 0 5269.5111 14.510111 + 2900 16738.465 -0.0026252725 0 5269.514 14.510277 + 2950 16738.476 -0.0082220764 0 5269.512 14.510223 + 3000 16738.66 -0.071284779 0 5269.507 14.509758 + 3050 16715.332 7.2419351 0 5269.476 14.870305 + 3100 16653.226 26.818761 0 5269.5009 14.496764 + 3150 16739.351 -0.30690375 0 5269.4886 13.643904 + 3200 16733.238 1.6025328 0 5269.4737 12.016934 + 3250 16734.374 1.2554429 0 5269.4841 11.963561 + 3300 16732.156 1.9585967 0 5269.4893 12.234024 + 3350 16738.655 -0.079693236 0 5269.497 12.092757 + 3400 16738.543 -0.042215005 0 5269.4991 12.092809 + 3450 16738.591 -0.059327511 0 5269.4972 12.092536 + 3500 16738.759 -0.11761245 0 5269.4918 12.09203 + 3550 16713.405 7.846062 0 5269.4737 12.389816 + 3600 16734.939 1.0821936 0 5269.4891 12.173591 + 3650 16738.808 -0.13663194 0 5269.4882 12.027009 + 3700 16738.602 -0.070934367 0 5269.4889 12.025288 + 3750 16737.731 0.20706557 0 5269.4927 12.061948 + 3800 16738.578 -0.05582043 0 5269.4965 12.035665 + 3850 16738.471 -0.016307928 0 5269.5024 12.035302 + 3900 16738.449 -0.0058182199 0 5269.5059 12.035401 + 3950 16738.439 -0.0012027325 0 5269.5074 12.035461 + 4000 16738.436 -0.00020698452 0 5269.5075 12.035469 + 4050 16738.437 0 0 5269.5078 12.035454 + 4100 16738.437 0 0 5269.508 12.035435 + 4150 16738.438 0 0 5269.5081 12.035426 + 4200 16738.438 0 0 5269.5083 12.035432 + 4250 16738.439 0 0 5269.5085 12.035447 + 4300 16738.439 0 0 5269.5086 12.035463 + 4350 16738.44 0 0 5269.5087 12.035474 + 4400 16738.44 0 0 5269.5088 12.035478 + 4450 16738.44 0 0 5269.5089 12.035474 + 4500 16738.44 0 0 5269.509 12.035462 + 4550 16738.441 0 0 5269.5092 12.035449 + 4600 16738.441 0 0 5269.5093 12.035445 + 4650 16738.442 0 0 5269.5095 12.035451 + 4700 16738.442 0 0 5269.5096 12.03546 + 4750 16738.443 0 0 5269.5097 12.035465 + 4800 16738.443 0 0 5269.5098 12.035466 + 4850 16738.443 0 0 5269.51 12.035463 + 4900 16738.444 0 0 5269.5101 12.035456 + 4950 16738.444 0 0 5269.5102 12.035447 + 5000 16738.445 0 0 5269.5104 12.03544 + 5050 16738.445 0 0 5269.5105 12.035442 + 5100 16738.446 0 0 5269.5107 12.035455 + 5150 16738.446 0 0 5269.5108 12.03547 + 5200 16738.446 0 0 5269.5109 12.035479 + 5250 16738.447 0 0 5269.511 12.035479 + 5300 16738.447 0 0 5269.5111 12.03547 + 5350 16738.447 0 0 5269.5112 12.035454 + 5400 16738.448 0 0 5269.5113 12.035434 + 5450 16738.448 0 0 5269.5115 12.03542 + 5500 16738.449 0 0 5269.5117 12.035422 + 5550 16738.457 -0.0030919234 0 5269.5111 12.035383 + 5600 16738.51 -0.021618357 0 5269.5092 12.035106 + 5650 16738.622 -0.059214788 0 5269.507 12.035694 + 5700 16395.28 108.06942 0 5269.5463 24.369038 + 5750 16738.544 -0.033973429 0 5269.5077 12.011261 + 5800 16738.456 -0.0037013529 0 5269.5102 12.011675 + 5850 16738.451 0 0 5269.5123 12.011709 + 5900 16738.451 -0.00022115871 0 5269.5122 12.011687 + 5950 16738.452 -0.00024253349 0 5269.5124 12.011678 + 6000 16738.452 0 0 5269.5128 12.011688 + 6050 16738.453 0 0 5269.513 12.011702 + 6100 16738.453 0 0 5269.5131 12.011716 + 6150 16738.454 0 0 5269.5132 12.011725 + 6200 16738.454 0 0 5269.5133 12.011728 + 6250 16738.454 0 0 5269.5134 12.011723 + 6300 16738.455 0 0 5269.5135 12.011712 + 6350 16738.455 0 0 5269.5137 12.0117 + 6400 16738.456 0 0 5269.5138 12.011697 + 6450 16738.456 0 0 5269.514 12.011704 + 6500 16738.456 0 0 5269.5141 12.011714 + 6550 16738.457 0 0 5269.5142 12.011719 + 6600 16738.457 0 0 5269.5143 12.011718 + 6650 16738.458 0 0 5269.5144 12.011713 + 6700 16738.458 0 0 5269.5146 12.011705 + 6750 16738.459 0 0 5269.5147 12.011696 + 6800 16738.459 0 0 5269.5149 12.01169 + 6850 16738.46 0 0 5269.515 12.011695 + 6900 16738.46 0 0 5269.5152 12.01171 + 6950 16738.46 0 0 5269.5153 12.011726 + 7000 16738.461 0 0 5269.5154 12.011736 + 7050 16738.461 0 0 5269.5155 12.011737 + 7100 16738.461 0 0 5269.5155 12.011728 + 7150 16738.461 0 0 5269.5156 12.011712 + 7200 16738.462 0 0 5269.5158 12.011691 + 7250 16738.463 0 0 5269.516 12.011676 + 7300 16738.463 0 0 5269.5162 12.011677 + 7350 16738.464 0 0 5269.5164 12.011693 + 7400 16738.464 0 0 5269.5165 12.011713 + 7450 16738.465 0 0 5269.5166 12.011729 + 7500 16738.465 0 0 5269.5167 12.011736 + 7550 16738.465 0 0 5269.5168 12.011734 + 7600 16738.465 0 0 5269.5168 12.011722 + 7650 16738.466 0 0 5269.517 12.011704 + 7700 16738.466 0 0 5269.5171 12.011687 + 7750 16738.467 0 0 5269.5173 12.011681 + 7800 16738.467 0 0 5269.5175 12.011687 + 7850 16738.468 0 0 5269.5176 12.0117 + 7900 16738.468 0 0 5269.5178 12.011712 + 7950 16738.469 0 0 5269.5179 12.011721 + 8000 16738.469 0 0 5269.518 12.011724 + 8050 16738.469 0 0 5269.5181 12.01172 + 8100 16738.47 0 0 5269.5182 12.011709 + 8150 16738.47 0 0 5269.5183 12.0117 + 8200 16738.47 0 0 5269.5185 12.0117 + 8250 16738.471 0 0 5269.5186 12.011709 + 8300 16738.471 0 0 5269.5187 12.011719 + 8350 16738.472 0 0 5269.5189 12.011723 + 8400 16738.472 0 0 5269.519 12.01172 + 8450 16738.473 -0.00039690663 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646802 0 5269.5182 12.011643 + 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 + 8600 16738.474 -0.00076532813 0 5269.5189 12.011681 + 8650 16738.474 0 0 5269.5197 12.011699 + 8700 16738.475 0 0 5269.5199 12.011715 + 8750 16738.475 0 0 5269.52 12.011732 + 8800 16738.475 0 0 5269.52 12.011743 + 8850 16738.476 0 0 5269.5201 12.011744 + 8900 16738.476 0 0 5269.5202 12.011735 + 8950 16738.476 0 0 5269.5203 12.011719 + 9000 16738.477 0 0 5269.5205 12.011698 + 9050 16738.477 0 0 5269.5206 12.011683 + 9100 16738.478 0 0 5269.5208 12.011684 + 9150 16738.479 0 0 5269.521 12.011701 + 9200 16738.479 0 0 5269.5212 12.011722 + 9250 16738.479 0 0 5269.5213 12.011738 + 9300 16738.48 0 0 5269.5214 12.011746 + 9350 16738.48 0 0 5269.5214 12.011744 + 9400 16738.48 0 0 5269.5215 12.011732 + 9450 16738.48 0 0 5269.5216 12.011715 + 9500 16738.481 -0.00037652438 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156162 0 5269.5203 12.011611 + 9600 16738.549 -0.026814371 0 5269.5163 12.011415 + 9650 16738.765 -0.10191523 0 5269.5092 12.011013 + 9700 16735.041 1.0589893 0 5269.4979 12.062708 + 9750 16738.013 0.13550102 0 5269.5101 11.407246 + 9800 16738.512 -0.011620328 0 5269.5201 11.394974 + 9850 16738.489 -0.00067270521 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984561 0 5269.5242 11.395085 + 9950 16738.49 0 0 5269.5245 11.395076 + 10000 16738.49 0 0 5269.5246 11.395075 +Loop time of 0.140719 on 1 procs for 10000 steps with 81 atoms + +Performance: 613990.898 tau/day, 71063.761 timesteps/s +97.1% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.010882 | 0.010882 | 0.010882 | 0.0 | 7.73 +Neigh | 0.037245 | 0.037245 | 0.037245 | 0.0 | 26.47 +Comm | 0.0092154 | 0.0092154 | 0.0092154 | 0.0 | 6.55 +Output | 0.0024879 | 0.0024879 | 0.0024879 | 0.0 | 1.77 +Modify | 0.074702 | 0.074702 | 0.074702 | 0.0 | 53.09 +Other | | 0.006187 | | | 4.40 + +Nlocal: 81 ave 81 max 81 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 84 ave 84 max 84 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.property.g++.4 b/examples/rigid/log.20Apr18.rigid.property.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..c34324b19c8d5928fd0bee8e128ff88555f65d92 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.property.g++.4 @@ -0,0 +1,340 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Simple rigid body system + +units lj +atom_style atomic +atom_modify map array + +pair_style lj/cut 2.5 + +fix 0 all property/atom i_bodies + +read_data data.rigid-property fix 0 NULL Bodies + orthogonal box = (-12 -12 -12) to (12 12 12) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 81 atoms + +velocity all create 100.0 4928459 + + +# unconnected bodies + +group clump1 id <> 1 9 +9 atoms in group clump1 +group clump2 id <> 10 18 +9 atoms in group clump2 +group clump3 id <> 19 27 +9 atoms in group clump3 +group clump4 id <> 28 36 +9 atoms in group clump4 +group clump5 id <> 37 45 +9 atoms in group clump5 +group clump6 id <> 46 54 +9 atoms in group clump6 +group clump7 id <> 55 63 +9 atoms in group clump7 +group clump8 id <> 64 72 +9 atoms in group clump8 +group clump9 id <> 73 81 +9 atoms in group clump9 + +# assemble bodies from per-atom custom integer property bodies +fix 1 all rigid custom i_bodies +9 rigid bodies with 81 atoms + +# 1 chain of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 36 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 + +# 2 chains of connected bodies + +#group clump1 id <> 1 9 +#group clump2 id <> 9 18 +#group clump3 id <> 18 27 +#group clump4 id <> 27 36 +#group clump5 id <> 37 45 +#group clump6 id <> 45 54 +#group clump7 id <> 54 63 +#group clump8 id <> 63 72 +#group clump9 id <> 72 81 + +#fix 1 all poems group clump1 clump2 clump3 clump4 +#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 + +neigh_modify exclude group clump1 clump1 +neigh_modify exclude group clump2 clump2 +neigh_modify exclude group clump3 clump3 +neigh_modify exclude group clump4 clump4 +neigh_modify exclude group clump5 clump5 +neigh_modify exclude group clump6 clump6 +neigh_modify exclude group clump7 clump7 +neigh_modify exclude group clump8 clump8 +neigh_modify exclude group clump9 clump9 + +thermo 100 + +#dump 1 all atom 50 dump.rigid + +#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 2 pad 5 + +#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 +#dump_modify 3 pad 5 + +timestep 0.0001 +thermo 50 +run 10000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 18 18 18 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.017 | 4.111 | 4.392 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 115.29439 5235.9179 0 5272.2142 -2.7403788 + 50 14910.685 571.71558 0 5265.82 32.006171 + 100 16298.442 136.66184 0 5267.653 16.444229 + 150 16682.606 17.490511 0 5269.4219 14.900344 + 200 16733.929 1.372872 0 5269.4617 14.569267 + 250 16738.853 -0.15252816 0 5269.4864 14.496404 + 300 16738.588 -0.055171335 0 5269.5002 14.496025 + 350 16738.492 -0.017444677 0 5269.5077 14.496446 + 400 16738.464 -0.0060102023 0 5269.5104 14.496618 + 450 16738.455 -0.0012713351 0 5269.5124 14.496701 + 500 16738.455 -0.00081068621 0 5269.5128 14.496709 + 550 16738.455 -0.00083203497 0 5269.5129 14.496707 + 600 16738.455 -0.00058355356 0 5269.5131 14.496709 + 650 16738.455 -0.00047226704 0 5269.5131 14.496708 + 700 16738.455 0 0 5269.5136 14.496713 + 750 16738.455 0 0 5269.5136 14.49671 + 800 16738.455 0 0 5269.5137 14.496709 + 850 16738.455 0 0 5269.5137 14.49671 + 900 16738.456 0 0 5269.5138 14.496713 + 950 16738.462 -0.0035323872 0 5269.5122 14.496671 + 1000 16738.586 -0.051135144 0 5269.5036 14.496229 + 1050 16737.358 0.32995057 0 5269.4981 14.525763 + 1100 16737.892 0.16210246 0 5269.4984 14.531983 + 1150 16738.703 -0.089235095 0 5269.5025 14.509899 + 1200 16738.466 -0.0075446243 0 5269.5096 14.510615 + 1250 16738.456 0 0 5269.514 14.510704 + 1300 16738.457 0 0 5269.5141 14.510701 + 1350 16738.457 0 0 5269.5141 14.510699 + 1400 16738.457 -0.00044736511 0 5269.5138 14.510693 + 1450 16738.458 -0.0010971179 0 5269.5134 14.510687 + 1500 16738.458 -0.00057885428 0 5269.5139 14.510698 + 1550 16738.457 0 0 5269.5143 14.51071 + 1600 16738.457 0 0 5269.5144 14.510712 + 1650 16738.457 0 0 5269.5144 14.510712 + 1700 16738.458 0 0 5269.5144 14.51071 + 1750 16738.458 0 0 5269.5145 14.510708 + 1800 16738.458 0 0 5269.5145 14.510706 + 1850 16738.458 0 0 5269.5146 14.510705 + 1900 16738.458 0 0 5269.5146 14.510706 + 1950 16738.465 -0.0031733615 0 5269.5134 14.510659 + 2000 16738.491 -0.013255268 0 5269.5117 14.510532 + 2050 16738.556 -0.0365811 0 5269.5087 14.51029 + 2100 16738.633 -0.063209659 0 5269.5065 14.510219 + 2150 16738.607 -0.05601761 0 5269.5055 14.510231 + 2200 16738.557 -0.038423032 0 5269.5072 14.510404 + 2250 16738.515 -0.023709918 0 5269.5088 14.510539 + 2300 16738.489 -0.013249035 0 5269.5111 14.510621 + 2350 16738.468 -0.0045563719 0 5269.5131 14.510714 + 2400 16738.46 -0.00052194273 0 5269.5146 14.510771 + 2450 16738.464 -0.0023259756 0 5269.514 14.510746 + 2500 16738.468 -0.0051929186 0 5269.5127 14.510731 + 2550 16738.581 -0.044940117 0 5269.5085 14.510315 + 2600 16738.427 -7.9722854e-05 0 5269.5046 14.510657 + 2650 16733.017 1.705148 0 5269.5067 14.596295 + 2700 16738.761 -0.10614946 0 5269.5038 14.499584 + 2750 16733.973 1.4038179 0 5269.5064 14.598107 + 2800 16738.585 -0.046813448 0 5269.5076 14.511073 + 2850 16738.487 -0.012558719 0 5269.5111 14.510111 + 2900 16738.465 -0.0026252725 0 5269.514 14.510277 + 2950 16738.476 -0.0082220764 0 5269.512 14.510223 + 3000 16738.66 -0.071284779 0 5269.507 14.509758 + 3050 16715.332 7.2419351 0 5269.476 14.870305 + 3100 16653.226 26.818761 0 5269.5009 14.496764 + 3150 16739.351 -0.30690375 0 5269.4886 13.643904 + 3200 16733.238 1.6025328 0 5269.4737 12.016934 + 3250 16734.374 1.2554429 0 5269.4841 11.963561 + 3300 16732.156 1.9585967 0 5269.4893 12.234024 + 3350 16738.655 -0.079693236 0 5269.497 12.092757 + 3400 16738.543 -0.042215005 0 5269.4991 12.092809 + 3450 16738.591 -0.059327511 0 5269.4972 12.092536 + 3500 16738.759 -0.11761245 0 5269.4918 12.09203 + 3550 16713.405 7.846062 0 5269.4737 12.389816 + 3600 16734.939 1.0821936 0 5269.4891 12.173591 + 3650 16738.808 -0.13663194 0 5269.4882 12.027009 + 3700 16738.602 -0.070934368 0 5269.4889 12.025288 + 3750 16737.731 0.20706558 0 5269.4927 12.061948 + 3800 16738.578 -0.05582043 0 5269.4965 12.035665 + 3850 16738.471 -0.016307928 0 5269.5024 12.035302 + 3900 16738.449 -0.0058182199 0 5269.5059 12.035401 + 3950 16738.439 -0.0012027325 0 5269.5074 12.035461 + 4000 16738.436 -0.00020698452 0 5269.5075 12.035469 + 4050 16738.437 0 0 5269.5078 12.035454 + 4100 16738.437 0 0 5269.508 12.035435 + 4150 16738.438 0 0 5269.5081 12.035426 + 4200 16738.438 0 0 5269.5083 12.035432 + 4250 16738.439 0 0 5269.5085 12.035447 + 4300 16738.439 0 0 5269.5086 12.035463 + 4350 16738.44 0 0 5269.5087 12.035474 + 4400 16738.44 0 0 5269.5088 12.035478 + 4450 16738.44 0 0 5269.5089 12.035474 + 4500 16738.44 0 0 5269.509 12.035462 + 4550 16738.441 0 0 5269.5092 12.035449 + 4600 16738.441 0 0 5269.5093 12.035445 + 4650 16738.442 0 0 5269.5095 12.035451 + 4700 16738.442 0 0 5269.5096 12.03546 + 4750 16738.443 0 0 5269.5097 12.035465 + 4800 16738.443 0 0 5269.5098 12.035466 + 4850 16738.443 0 0 5269.51 12.035463 + 4900 16738.444 0 0 5269.5101 12.035456 + 4950 16738.444 0 0 5269.5102 12.035447 + 5000 16738.445 0 0 5269.5104 12.03544 + 5050 16738.445 0 0 5269.5105 12.035442 + 5100 16738.446 0 0 5269.5107 12.035455 + 5150 16738.446 0 0 5269.5108 12.03547 + 5200 16738.446 0 0 5269.5109 12.035479 + 5250 16738.447 0 0 5269.511 12.035479 + 5300 16738.447 0 0 5269.5111 12.03547 + 5350 16738.447 0 0 5269.5112 12.035454 + 5400 16738.448 0 0 5269.5113 12.035434 + 5450 16738.448 0 0 5269.5115 12.03542 + 5500 16738.449 0 0 5269.5117 12.035422 + 5550 16738.457 -0.0030919234 0 5269.5111 12.035383 + 5600 16738.51 -0.021618357 0 5269.5092 12.035106 + 5650 16738.622 -0.059214788 0 5269.507 12.035694 + 5700 16395.28 108.06942 0 5269.5463 24.369038 + 5750 16738.544 -0.033973429 0 5269.5077 12.011261 + 5800 16738.456 -0.0037013529 0 5269.5102 12.011675 + 5850 16738.451 0 0 5269.5123 12.011709 + 5900 16738.451 -0.0002211587 0 5269.5122 12.011687 + 5950 16738.452 -0.00024253349 0 5269.5124 12.011678 + 6000 16738.452 0 0 5269.5128 12.011688 + 6050 16738.453 0 0 5269.513 12.011702 + 6100 16738.453 0 0 5269.5131 12.011716 + 6150 16738.454 0 0 5269.5132 12.011725 + 6200 16738.454 0 0 5269.5133 12.011728 + 6250 16738.454 0 0 5269.5134 12.011723 + 6300 16738.455 0 0 5269.5135 12.011712 + 6350 16738.455 0 0 5269.5137 12.0117 + 6400 16738.456 0 0 5269.5138 12.011697 + 6450 16738.456 0 0 5269.514 12.011704 + 6500 16738.456 0 0 5269.5141 12.011714 + 6550 16738.457 0 0 5269.5142 12.011719 + 6600 16738.457 0 0 5269.5143 12.011718 + 6650 16738.458 0 0 5269.5144 12.011713 + 6700 16738.458 0 0 5269.5146 12.011705 + 6750 16738.459 0 0 5269.5147 12.011696 + 6800 16738.459 0 0 5269.5149 12.01169 + 6850 16738.46 0 0 5269.515 12.011695 + 6900 16738.46 0 0 5269.5152 12.01171 + 6950 16738.46 0 0 5269.5153 12.011726 + 7000 16738.461 0 0 5269.5154 12.011736 + 7050 16738.461 0 0 5269.5155 12.011737 + 7100 16738.461 0 0 5269.5155 12.011728 + 7150 16738.461 0 0 5269.5156 12.011712 + 7200 16738.462 0 0 5269.5158 12.011691 + 7250 16738.463 0 0 5269.516 12.011676 + 7300 16738.463 0 0 5269.5162 12.011677 + 7350 16738.464 0 0 5269.5164 12.011693 + 7400 16738.464 0 0 5269.5165 12.011713 + 7450 16738.465 0 0 5269.5166 12.011729 + 7500 16738.465 0 0 5269.5167 12.011736 + 7550 16738.465 0 0 5269.5168 12.011734 + 7600 16738.465 0 0 5269.5168 12.011722 + 7650 16738.466 0 0 5269.517 12.011704 + 7700 16738.466 0 0 5269.5171 12.011687 + 7750 16738.467 0 0 5269.5173 12.011681 + 7800 16738.467 0 0 5269.5175 12.011687 + 7850 16738.468 0 0 5269.5176 12.0117 + 7900 16738.468 0 0 5269.5178 12.011712 + 7950 16738.469 0 0 5269.5179 12.011721 + 8000 16738.469 0 0 5269.518 12.011724 + 8050 16738.469 0 0 5269.5181 12.01172 + 8100 16738.47 0 0 5269.5182 12.011709 + 8150 16738.47 0 0 5269.5183 12.0117 + 8200 16738.47 0 0 5269.5185 12.0117 + 8250 16738.471 0 0 5269.5186 12.011709 + 8300 16738.471 0 0 5269.5187 12.011719 + 8350 16738.472 0 0 5269.5189 12.011723 + 8400 16738.472 0 0 5269.519 12.01172 + 8450 16738.473 -0.00039690664 0 5269.5189 12.011706 + 8500 16738.481 -0.0034646803 0 5269.5182 12.011643 + 8550 16738.483 -0.0045307409 0 5269.5178 12.011621 + 8600 16738.474 -0.00076532811 0 5269.5189 12.011681 + 8650 16738.474 0 0 5269.5197 12.011699 + 8700 16738.475 0 0 5269.5199 12.011715 + 8750 16738.475 0 0 5269.52 12.011732 + 8800 16738.475 0 0 5269.52 12.011743 + 8850 16738.476 0 0 5269.5201 12.011744 + 8900 16738.476 0 0 5269.5202 12.011735 + 8950 16738.476 0 0 5269.5203 12.011719 + 9000 16738.477 0 0 5269.5205 12.011698 + 9050 16738.477 0 0 5269.5206 12.011683 + 9100 16738.478 0 0 5269.5208 12.011684 + 9150 16738.479 0 0 5269.521 12.011701 + 9200 16738.479 0 0 5269.5212 12.011722 + 9250 16738.479 0 0 5269.5213 12.011738 + 9300 16738.48 0 0 5269.5214 12.011746 + 9350 16738.48 0 0 5269.5214 12.011744 + 9400 16738.48 0 0 5269.5215 12.011732 + 9450 16738.48 0 0 5269.5216 12.011715 + 9500 16738.481 -0.00037652437 0 5269.5216 12.011692 + 9550 16738.493 -0.0053156159 0 5269.5203 12.011611 + 9600 16738.549 -0.026814369 0 5269.5163 12.011415 + 9650 16738.765 -0.10191523 0 5269.5092 12.011013 + 9700 16735.041 1.0589887 0 5269.4979 12.062708 + 9750 16738.013 0.135501 0 5269.5101 11.407245 + 9800 16738.512 -0.011620329 0 5269.5201 11.394973 + 9850 16738.489 -0.00067270548 0 5269.5237 11.395098 + 9900 16738.489 -0.00024984569 0 5269.5242 11.395084 + 9950 16738.49 0 0 5269.5245 11.395076 + 10000 16738.49 0 0 5269.5246 11.395075 +Loop time of 0.206235 on 4 procs for 10000 steps with 81 atoms + +Performance: 418940.303 tau/day, 48488.461 timesteps/s +97.1% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.0026572 | 0.004187 | 0.0050838 | 1.5 | 2.03 +Neigh | 0.012115 | 0.012789 | 0.013634 | 0.5 | 6.20 +Comm | 0.084275 | 0.089969 | 0.095318 | 1.5 | 43.62 +Output | 0.0048559 | 0.0051559 | 0.0059836 | 0.7 | 2.50 +Modify | 0.077074 | 0.083586 | 0.088022 | 1.5 | 40.53 +Other | | 0.01055 | | | 5.11 + +Nlocal: 20.25 ave 38 max 3 min +Histogram: 1 0 1 0 0 0 1 0 0 1 +Nghost: 27.25 ave 48 max 13 min +Histogram: 1 0 1 1 0 0 0 0 0 1 +Neighs: 0 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0 +Neighbor list builds = 998 +Dangerous builds = 997 +Total wall time: 0:00:00 diff --git a/examples/rigid/log.20Apr18.rigid.tnr.g++.1 b/examples/rigid/log.20Apr18.rigid.tnr.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..097fd132aa7c352d4ceac0735d1f9b455ec8e002 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.tnr.g++.1 @@ -0,0 +1,458 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Tethered nanorods + +atom_style molecular + +read_data data.rigid.tnr + orthogonal box = (-31.122 -31.122 -31.122) to (31.122 31.122 31.122) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 5600 atoms + scanning bonds ... + 1 = max bonds/atom + reading bonds ... + 1600 bonds + 2 = max # of 1-2 neighbors + 1 = max # of 1-3 neighbors + 1 = max # of 1-4 neighbors + 2 = max # of special neighbors + +# Specify bond parameters + +bond_style fene +bond_coeff 1 30.0 1.5 1.0 1.0 + +special_bonds fene + 2 = max # of 1-2 neighbors + 2 = max # of special neighbors + +# Specify initial velocities + +velocity all create 1.4 109345 + +# Specify rigid components + +group rods type 2 +4000 atoms in group rods +group tethers subtract all rods +1600 atoms in group tethers + +neigh_modify exclude molecule/intra rods delay 0 every 1 + +# Specify the pair potentials + +pair_style lj/cut 2.5 +pair_modify shift yes +pair_coeff * * 1.0 1.0 1.122 +pair_coeff 2 2 1.0 1.0 2.5 + +# Specify output + +thermo 100 +thermo_style custom step temp pe etotal press enthalpy lx ly lz pxx pyy pzz +thermo_modify flush yes lost warn + +timestep 0.005 + +fix 1 rods rigid molecule +800 rigid bodies with 4000 atoms +fix 2 tethers nve +fix 3 all langevin 1.4 1.4 1.0 437624 + +run 5000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 45 45 45 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.769 | 7.769 | 7.769 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 0 1.3963219 5.9478449 7.0445809 0.048565317 9.13595 62.244 62.244 62.244 0.0091983659 0.11850113 0.017996458 + 100 1.3418512 5.9671777 7.0211299 0.025020362 8.0985822 62.244 62.244 62.244 0.02036076 0.038265078 0.016435248 + 200 1.3730638 5.9750802 7.0535483 0.0053287535 7.2830205 62.244 62.244 62.244 -0.00054924195 0.0092396988 0.0072958036 + 300 1.376262 5.9821642 7.0631443 0.0055536521 7.3023013 62.244 62.244 62.244 0.0033577704 0.0069111861 0.0063919998 + 400 1.3782954 5.9983628 7.08094 0.0020507385 7.169251 62.244 62.244 62.244 -0.0060862717 0.0098998072 0.0023386801 + 500 1.386863 6.0053312 7.0946377 -0.0009847031 7.0522334 62.244 62.244 62.244 -0.0038708372 0.0005697804 0.00034694745 + 600 1.4069849 6.0035719 7.1086832 0.0047883912 7.3148858 62.244 62.244 62.244 0.001069365 0.0078059505 0.0054898581 + 700 1.4423187 5.9982171 7.1310812 0.012141001 7.6539093 62.244 62.244 62.244 0.0094765272 0.011007593 0.015938883 + 800 1.4303878 5.9968168 7.1203098 -0.00081349095 7.0852784 62.244 62.244 62.244 0.0011153812 0.00041597298 -0.0039718271 + 900 1.4140538 5.9838168 7.0944803 0.00207609 7.183883 62.244 62.244 62.244 0.00043409671 0.0022778944 0.0035162788 + 1000 1.3906567 5.988119 7.0804053 0.0022005856 7.1751692 62.244 62.244 62.244 0.0077268425 -0.0022042977 0.0010792119 + 1100 1.3921992 5.9892203 7.0827181 0.0035041977 7.2336194 62.244 62.244 62.244 -0.0037576823 0.0040827951 0.01018748 + 1200 1.3968803 5.9795846 7.0767592 -0.0031072146 6.9429532 62.244 62.244 62.244 -0.0077387449 0.0033056124 -0.0048885115 + 1300 1.3755848 5.9739757 7.0544239 0.0092247106 7.4516677 62.244 62.244 62.244 0.0092788748 0.010737194 0.0076580625 + 1400 1.3847985 5.9703631 7.0580481 0.0071703598 7.3668254 62.244 62.244 62.244 0.0080485848 0.012260474 0.001202021 + 1500 1.4190051 5.956946 7.0714985 0.0035992903 7.2264948 62.244 62.244 62.244 -0.0055125437 0.01038369 0.0059267242 + 1600 1.3980036 5.9671666 7.0652236 0.0061819851 7.3314385 62.244 62.244 62.244 0.0062429141 0.0035120077 0.0087910334 + 1700 1.4276062 5.9610381 7.0823462 0.007832375 7.4196319 62.244 62.244 62.244 0.0083316819 0.0058394292 0.009326014 + 1800 1.4112769 5.9630595 7.0715419 0.0068032101 7.3645087 62.244 62.244 62.244 0.0065502252 0.0062317255 0.0076276797 + 1900 1.4276973 5.9489341 7.0703139 0.008397746 7.4319462 62.244 62.244 62.244 0.0148941 0.0032963108 0.0070028268 + 2000 1.4056158 5.9564624 7.0604983 0.0090470732 7.4500926 62.244 62.244 62.244 0.011871718 0.0086681344 0.0066013673 + 2100 1.3924778 5.9483611 7.0420778 0.0088893819 7.4248814 62.244 62.244 62.244 0.010247454 0.0097830093 0.0066376825 + 2200 1.3760401 5.9435877 7.0243935 -0.0042972782 6.8393397 62.244 62.244 62.244 -0.0050064436 -0.0046216998 -0.0032636911 + 2300 1.4191937 5.9334036 7.0481042 0.0047000032 7.2505006 62.244 62.244 62.244 0.0057709635 0.0044949165 0.0038341296 + 2400 1.4213285 5.9472214 7.0635988 0.010197674 7.5027414 62.244 62.244 62.244 0.0083738261 0.0090537939 0.013165402 + 2500 1.4153808 5.9421661 7.0538718 0.00015906308 7.0607216 62.244 62.244 62.244 0.0023516211 -0.0019814987 0.00010706678 + 2600 1.4014223 5.9431386 7.0438807 0.0070733749 7.3484816 62.244 62.244 62.244 0.0054143871 0.010055843 0.0057498948 + 2700 1.4138077 5.9369067 7.047377 0.0024268843 7.1518859 62.244 62.244 62.244 0.0052918436 0.0014960354 0.00049277379 + 2800 1.432192 5.9347676 7.0596777 0.0077670448 7.3941501 62.244 62.244 62.244 0.012668421 0.0059113032 0.0047214106 + 2900 1.3938659 5.921023 7.01583 0.0053751201 7.2472989 62.244 62.244 62.244 0.0020490372 0.0076566097 0.0064197134 + 3000 1.390221 5.9205014 7.0124455 -0.0010750973 6.9661486 62.244 62.244 62.244 0.0019519817 -0.0041878875 -0.0009893861 + 3100 1.4205722 5.9178284 7.0336117 0.0098735467 7.4587964 62.244 62.244 62.244 0.0040973349 0.012167268 0.013356037 + 3200 1.398418 5.9150349 7.0134173 0.0061541837 7.278435 62.244 62.244 62.244 0.0067621825 0.011952562 -0.00025219321 + 3300 1.4269859 5.9148727 7.0356937 0.006062387 7.2967584 62.244 62.244 62.244 0.012956233 -2.480748e-05 0.005255736 + 3400 1.434286 5.9356705 7.0622253 0.0002731615 7.0739885 62.244 62.244 62.244 -0.00054959543 0.0052526331 -0.0038835532 + 3500 1.4416808 5.9228153 7.0551783 0.0083383068 7.414251 62.244 62.244 62.244 0.0073994017 0.0030328023 0.014582716 + 3600 1.4136063 5.9039442 7.0142562 0.0019711852 7.0991414 62.244 62.244 62.244 -0.00032317688 0.0035029725 0.0027337599 + 3700 1.433382 5.91201 7.0378548 0.0071286927 7.3448378 62.244 62.244 62.244 0.0064768108 0.0046765006 0.010232767 + 3800 1.3659481 5.9032872 6.9761663 -0.0054034056 6.7434793 62.244 62.244 62.244 -0.007394357 -0.0082833116 -0.00053254832 + 3900 1.396322 5.9043001 7.0010362 0.005331024 7.2306062 62.244 62.244 62.244 0.0081855301 0.0048806234 0.0029269184 + 4000 1.412548 5.906066 7.0155468 0.0028450132 7.1380616 62.244 62.244 62.244 0.0052588387 0.00072412871 0.0025520721 + 4100 1.3943949 5.9040868 6.9993093 0.0058053193 7.2493039 62.244 62.244 62.244 0.0060583148 0.0024781972 0.0088794459 + 4200 1.4249768 5.8906369 7.0098798 0.0030209006 7.1399689 62.244 62.244 62.244 0.0061742017 -0.0020795681 0.0049680681 + 4300 1.3899827 5.8966327 6.9883897 0.0057278096 7.2350464 62.244 62.244 62.244 0.0049035059 0.0021868561 0.010093067 + 4400 1.4414361 5.8986386 7.0308094 0.0050941357 7.2501783 62.244 62.244 62.244 0.0057971901 0.0037941986 0.0056910185 + 4500 1.4093099 5.8922729 6.9992103 0.0012182325 7.0516711 62.244 62.244 62.244 0.0042896986 0.0014287789 -0.00206378 + 4600 1.3779677 5.892894 6.9752138 0.002057623 7.0638213 62.244 62.244 62.244 0.0029271755 -0.0031752166 0.0064209102 + 4700 1.4086418 5.9096898 7.0161024 -0.00052853259 6.9933422 62.244 62.244 62.244 -0.001862386 -0.0018129293 0.0020897176 + 4800 1.4394 5.9146102 7.0451818 0.015326441 7.7051846 62.244 62.244 62.244 0.014754936 0.017967956 0.013256431 + 4900 1.4496219 5.9074613 7.0460616 0.0075297868 7.370317 62.244 62.244 62.244 0.0092907193 0.0079794674 0.0053191736 + 5000 1.4280291 5.9106136 7.032254 -0.0013249587 6.9751972 62.244 62.244 62.244 -0.0044875103 0.0020723667 -0.0015597324 +Loop time of 6.73744 on 1 procs for 5000 steps with 5600 atoms + +Performance: 320596.735 tau/day, 742.122 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.52635 | 0.52635 | 0.52635 | 0.0 | 7.81 +Bond | 0.26628 | 0.26628 | 0.26628 | 0.0 | 3.95 +Neigh | 1.5927 | 1.5927 | 1.5927 | 0.0 | 23.64 +Comm | 0.16011 | 0.16011 | 0.16011 | 0.0 | 2.38 +Output | 0.0040634 | 0.0040634 | 0.0040634 | 0.0 | 0.06 +Modify | 4.0145 | 4.0145 | 4.0145 | 0.0 | 59.58 +Other | | 0.1735 | | | 2.57 + +Nlocal: 5600 ave 5600 max 5600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 1352 ave 1352 max 1352 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 5257 ave 5257 max 5257 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 5257 +Ave neighs/atom = 0.93875 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 766 +Dangerous builds = 0 + +# Replace fix rigid and fix langevin with new ones + +unfix 1 +unfix 3 + +fix 3 tethers langevin 1.4 1.4 1.0 198450 + +# Test different integrators for rods + +fix 1 rods rigid/nve molecule +800 rigid bodies with 4000 atoms +print "rigid/nve" +rigid/nve +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.77 | 7.77 | 7.77 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 5000 1.4280291 5.9106136 7.032254 0.02814128 8.2441024 62.244 62.244 62.244 0.019873502 0.039656784 0.024893554 + 5100 1.4435659 5.8998386 7.0336823 0.0063929319 7.3089813 62.244 62.244 62.244 0.0089837757 0.0052773116 0.0049177085 + 5200 1.3970069 5.9117164 7.0089904 0.0065245686 7.289958 62.244 62.244 62.244 0.008502047 0.0043872479 0.0066844108 + 5300 1.433167 5.8796669 7.0053428 0.0076478538 7.3346825 62.244 62.244 62.244 0.0061384889 0.0070193789 0.0097856935 + 5400 1.4191626 5.8830864 6.9977626 0.0026371359 7.1113257 62.244 62.244 62.244 0.0024097043 -0.00082200506 0.0063237084 + 5500 1.409376 5.8753367 6.982326 0.010180815 7.4207427 62.244 62.244 62.244 0.010429709 0.0081711083 0.011941628 + 5600 1.4005678 5.882485 6.9825559 0.00036705268 6.9983623 62.244 62.244 62.244 -0.0034485466 0.0031079204 0.0014417843 + 5700 1.4116833 5.8842566 6.9930582 0.00053413233 7.0160595 62.244 62.244 62.244 0.0016669624 -0.0030741941 0.0030096286 + 5800 1.409035 5.894902 7.0016235 4.7080816e-05 7.003651 62.244 62.244 62.244 0.0018596854 -5.3937508e-05 -0.0016645054 + 5900 1.4150353 5.8928576 7.004292 0.0063467985 7.2776043 62.244 62.244 62.244 0.0055755751 0.0090839847 0.0043808358 + 6000 1.4374163 5.8778036 7.0068171 0.0031890481 7.1441472 62.244 62.244 62.244 0.0067647375 0.0015458579 0.0012565488 +Loop time of 1.41082 on 1 procs for 1000 steps with 5600 atoms + +Performance: 306205.780 tau/day, 708.810 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.149 | 0.149 | 0.149 | 0.0 | 10.56 +Bond | 0.053873 | 0.053873 | 0.053873 | 0.0 | 3.82 +Neigh | 0.35532 | 0.35532 | 0.35532 | 0.0 | 25.19 +Comm | 0.032433 | 0.032433 | 0.032433 | 0.0 | 2.30 +Output | 0.00080752 | 0.00080752 | 0.00080752 | 0.0 | 0.06 +Modify | 0.78447 | 0.78447 | 0.78447 | 0.0 | 55.60 +Other | | 0.03491 | | | 2.47 + +Nlocal: 5600 ave 5600 max 5600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 1347 ave 1347 max 1347 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 5592 ave 5592 max 5592 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 5592 +Ave neighs/atom = 0.998571 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 153 +Dangerous builds = 0 +unfix 1 + +fix 1 rods rigid/nvt molecule temp 1.4 1.4 1.0 +800 rigid bodies with 4000 atoms +print "rigid/nvt" +rigid/nvt +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.77 | 7.77 | 7.77 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 6000 1.4374163 5.8778036 7.0068171 -0.0020672233 6.9177963 62.244 62.244 62.244 0.034504923 -0.030001164 -0.010705429 + 6100 1.4393824 5.8852696 7.0158274 0.0055792227 7.2560855 62.244 62.244 62.244 0.0072602759 0.0074870643 0.0019903278 + 6200 1.4265711 5.8853532 7.0058484 0.0019366613 7.0892468 62.244 62.244 62.244 -0.0035411799 0.0047319741 0.0046191897 + 6300 1.4030198 5.8824874 6.9844843 0.0055760353 7.2246052 62.244 62.244 62.244 0.0031273033 0.0080002386 0.005600564 + 6400 1.3592064 5.8924876 6.9600714 0.0051450348 7.1816321 62.244 62.244 62.244 0.0042848197 0.0044005693 0.0067497155 + 6500 1.3946028 5.8798014 6.9751872 0.0051168754 7.1955353 62.244 62.244 62.244 0.0020473208 0.0038175566 0.0094857487 + 6600 1.3652122 5.8985637 6.9708648 0.0065480579 7.2528439 62.244 62.244 62.244 0.0056940621 0.0062242398 0.0077258719 + 6700 1.3808929 5.9047739 6.9893913 0.0074053719 7.308289 62.244 62.244 62.244 0.0049554161 0.012378296 0.0048824031 + 6800 1.4140879 5.891133 7.0018233 0.001592636 7.070407 62.244 62.244 62.244 -9.4421917e-05 -0.00029455229 0.0051668821 + 6900 1.4364121 5.8904988 7.0187235 0.00647853 7.2977086 62.244 62.244 62.244 0.0024458531 0.0073279625 0.0096617742 + 7000 1.4370567 5.8900758 7.0188069 0.00098705898 7.0613127 62.244 62.244 62.244 0.0024436343 -0.0011032284 0.001620771 +Loop time of 1.44111 on 1 procs for 1000 steps with 5600 atoms + +Performance: 299769.942 tau/day, 693.912 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.14928 | 0.14928 | 0.14928 | 0.0 | 10.36 +Bond | 0.053511 | 0.053511 | 0.053511 | 0.0 | 3.71 +Neigh | 0.35946 | 0.35946 | 0.35946 | 0.0 | 24.94 +Comm | 0.033026 | 0.033026 | 0.033026 | 0.0 | 2.29 +Output | 0.00081658 | 0.00081658 | 0.00081658 | 0.0 | 0.06 +Modify | 0.80995 | 0.80995 | 0.80995 | 0.0 | 56.20 +Other | | 0.03506 | | | 2.43 + +Nlocal: 5600 ave 5600 max 5600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 1351 ave 1351 max 1351 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 5541 ave 5541 max 5541 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 5541 +Ave neighs/atom = 0.989464 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 153 +Dangerous builds = 0 +unfix 1 + +compute myTemp all temp + +fix 1 rods rigid/npt molecule temp 1.4 1.4 1.0 iso 0.05 0.05 1.0 dilate all +800 rigid bodies with 4000 atoms +print "rigid/npt iso" +rigid/npt iso +fix_modify 1 temp myTemp + +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.77 | 7.77 | 7.77 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 7000 1.4370567 5.8900758 7.0188069 -0.0033603557 6.8740999 62.244 62.244 62.244 -0.094745193 0.10894465 -0.024280521 + 7100 1.485379 5.864626 7.0313116 0.018625962 7.6475425 57.008236 57.008236 57.008236 0.023222208 0.015549704 0.017105973 + 7200 1.5367991 5.8157585 7.0228319 0.019179143 7.4580039 50.273593 50.273593 50.273593 0.019479917 0.008906575 0.029150938 + 7300 1.5692285 5.785208 7.0177529 0.026450106 7.4560147 45.27218 45.27218 45.27218 0.029705272 0.019989987 0.029655059 + 7400 1.5961415 5.7633541 7.0170377 0.049085262 7.6510208 41.665015 41.665015 41.665015 0.045248259 0.047932005 0.054075524 + 7500 1.5805951 5.7223115 6.9637843 0.022024393 7.1962354 38.952791 38.952791 38.952791 0.017398546 0.0097043058 0.038970326 + 7600 1.5679583 5.6928914 6.9244386 0.05023237 7.3717858 36.808633 36.808633 36.808633 0.029561593 0.080716323 0.040419195 + 7700 1.5214637 5.661404 6.8564322 0.038992847 7.1614257 35.25044 35.25044 35.25044 0.013961981 0.064676103 0.038340457 + 7800 1.5313649 5.6185256 6.8213307 0.053950562 7.1990319 33.971403 33.971403 33.971403 0.036690654 0.066107903 0.059053129 + 7900 1.5272701 5.5732963 6.7728851 0.067896988 7.2131774 33.115109 33.115109 33.115109 0.046486851 0.073976177 0.083227936 + 8000 1.4754162 5.5525858 6.7114461 0.036458901 6.9347086 32.48878 32.48878 32.48878 0.066065978 0.031260775 0.01204995 +Loop time of 3.09124 on 1 procs for 1000 steps with 5600 atoms + +Performance: 139749.554 tau/day, 323.494 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.38334 | 0.38334 | 0.38334 | 0.0 | 12.40 +Bond | 0.079063 | 0.079063 | 0.079063 | 0.0 | 2.56 +Neigh | 1.3711 | 1.3711 | 1.3711 | 0.0 | 44.35 +Comm | 0.07249 | 0.07249 | 0.07249 | 0.0 | 2.35 +Output | 0.00079656 | 0.00079656 | 0.00079656 | 0.0 | 0.03 +Modify | 1.1412 | 1.1412 | 1.1412 | 0.0 | 36.92 +Other | | 0.04324 | | | 1.40 + +Nlocal: 5600 ave 5600 max 5600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 2922 ave 2922 max 2922 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 24639 ave 24639 max 24639 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 24639 +Ave neighs/atom = 4.39982 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 335 +Dangerous builds = 0 +unfix 1 + +fix 1 rods rigid/npt molecule temp 1.4 1.4 1.0 x 0.05 0.05 1.0 dilate all +800 rigid bodies with 4000 atoms +print "rigid/npt x" +rigid/npt x +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.784 | 7.784 | 7.784 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 8000 1.4754162 5.5525858 6.7114461 -0.036273091 6.4893215 32.48878 32.48878 32.48878 -0.12886524 -0.13731772 0.15736368 + 8100 1.4842494 5.5359706 6.701769 0.040754696 6.9494736 32.246136 32.48878 32.48878 0.0098547221 0.069850343 0.042559024 + 8200 1.4385513 5.5252007 6.6551057 -0.0053954052 6.6228379 31.729684 32.48878 32.48878 0.029251386 -0.023427626 -0.022009975 + 8300 1.4426011 5.5073818 6.6404676 0.034683453 6.8437384 31.093797 32.48878 32.48878 0.028287259 0.027455229 0.048307871 + 8400 1.4194517 5.5015592 6.6164624 0.015869651 6.7074209 30.408624 32.48878 32.48878 0.020129982 0.00586219 0.021616782 + 8500 1.4584335 5.4424151 6.5879365 0.025786252 6.7324275 29.728548 32.48878 32.48878 0.051564744 0.0046756434 0.021118368 + 8600 1.4578973 5.4266016 6.5717019 0.061244725 6.9097759 29.286286 32.48878 32.48878 0.08652905 0.052448352 0.044756773 + 8700 1.4158345 5.4199695 6.5320317 0.076133238 6.9466617 28.894001 32.48878 32.48878 0.078560655 0.077921379 0.071917679 + 8800 1.4360707 5.3986549 6.5266116 0.05106059 6.7993343 28.337182 32.48878 32.48878 0.030158729 0.080651224 0.042371819 + 8900 1.424778 5.386975 6.5060619 0.0023828771 6.5185272 27.75397 32.48878 32.48878 -0.026562751 0.0076340254 0.026077357 + 9000 1.4273004 5.369067 6.490135 0.077698761 6.8879525 27.163833 32.48878 32.48878 0.056923916 0.050917329 0.12525504 +Loop time of 3.05599 on 1 procs for 1000 steps with 5600 atoms + +Performance: 141361.930 tau/day, 327.227 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.60397 | 0.60397 | 0.60397 | 0.0 | 19.76 +Bond | 0.080384 | 0.080384 | 0.080384 | 0.0 | 2.63 +Neigh | 1.1078 | 1.1078 | 1.1078 | 0.0 | 36.25 +Comm | 0.057267 | 0.057267 | 0.057267 | 0.0 | 1.87 +Output | 0.0007937 | 0.0007937 | 0.0007937 | 0.0 | 0.03 +Modify | 1.1674 | 1.1674 | 1.1674 | 0.0 | 38.20 +Other | | 0.03837 | | | 1.26 + +Nlocal: 5600 ave 5600 max 5600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 3326 ave 3326 max 3326 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 31301 ave 31301 max 31301 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 31301 +Ave neighs/atom = 5.58946 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 168 +Dangerous builds = 0 +unfix 1 + +fix 1 rods rigid/nph molecule iso 0.05 0.05 1.0 dilate all +800 rigid bodies with 4000 atoms +print "rigid/nph iso" +rigid/nph iso +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.787 | 7.787 | 7.787 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 9000 1.4273004 5.369067 6.490135 0.075024718 6.8742614 27.163833 32.48878 32.48878 0.020257355 0.083191009 0.12162579 + 9100 1.425834 5.3711961 6.4911123 0.045582762 6.7236289 27.13015 32.448495 32.448495 0.047970965 0.045448278 0.043329042 + 9200 1.4609827 5.3288319 6.4763555 0.072880923 6.8414166 26.96611 32.252298 32.252298 0.053774659 0.093193782 0.071674329 + 9300 1.448717 5.3331013 6.4709909 0.048446002 6.7095138 26.811748 32.067676 32.067676 0.053340258 0.056657855 0.035339893 + 9400 1.441683 5.326611 6.4589758 0.014571871 6.5288665 26.578822 31.789089 31.789089 0.043939432 -0.038654064 0.038430244 + 9500 1.4651641 5.2943716 6.4451796 0.079668782 6.8205296 26.421077 31.600422 31.600422 0.10411792 0.075090335 0.059798087 + 9600 1.4617024 5.2886327 6.4367216 0.01137432 6.4894218 26.274239 31.424799 31.424799 0.023318055 0.015516795 -0.0047118896 + 9700 1.4381296 5.2798198 6.4093935 0.030371415 6.5484925 26.173039 31.303761 31.303761 0.05231569 0.025227191 0.013571362 + 9800 1.4412744 5.2674085 6.3994523 0.076731911 6.7476559 26.092768 31.207754 31.207754 0.05712947 0.077029719 0.096036545 + 9900 1.4427959 5.2666411 6.39988 0.034570225 6.5551479 26.003248 31.100686 31.100686 0.020955217 0.019879252 0.062876207 + 10000 1.4337411 5.258442 6.3845688 0.011619021 6.4367617 26.004486 31.102166 31.102166 0.018666906 0.01076669 0.005423467 +Loop time of 3.23963 on 1 procs for 1000 steps with 5600 atoms + +Performance: 133348.758 tau/day, 308.678 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.71266 | 0.71266 | 0.71266 | 0.0 | 22.00 +Bond | 0.0805 | 0.0805 | 0.0805 | 0.0 | 2.48 +Neigh | 1.2019 | 1.2019 | 1.2019 | 0.0 | 37.10 +Comm | 0.061646 | 0.061646 | 0.061646 | 0.0 | 1.90 +Output | 0.00080585 | 0.00080585 | 0.00080585 | 0.0 | 0.02 +Modify | 1.1436 | 1.1436 | 1.1436 | 0.0 | 35.30 +Other | | 0.03849 | | | 1.19 + +Nlocal: 5600 ave 5600 max 5600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 3617 ave 3617 max 3617 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 35834 ave 35834 max 35834 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 35834 +Ave neighs/atom = 6.39893 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 162 +Dangerous builds = 0 +unfix 1 + +fix 1 rods rigid/nph molecule x 0.05 0.05 1.0 y 0.05 0.05 1.0 couple xy dilate all +800 rigid bodies with 4000 atoms +print "rigid/nph xy couple" +rigid/nph xy couple +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.793 | 7.793 | 7.793 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 10000 1.4337411 5.258442 6.3845688 0.26156311 7.559515 26.004486 31.102166 31.102166 0.31569183 0.56043401 -0.091436513 + 10100 1.4450694 5.2429626 6.3779872 0.026397674 6.4966895 26.018016 31.118349 31.102166 0.012890725 0.035887426 0.030414871 + 10200 1.4603735 5.2471262 6.3941713 0.041496848 6.5804213 25.993694 31.089259 31.102166 0.043043384 0.031851909 0.04959525 + 10300 1.4434562 5.2268279 6.3605855 0.073867581 6.6874051 25.808018 30.867184 31.102166 0.049265569 0.084151743 0.08818543 + 10400 1.4391471 5.209772 6.3401449 0.010656841 6.3865593 25.605881 30.625422 31.102166 -0.012411333 -0.014743822 0.059125677 + 10500 1.4239127 5.2146206 6.3330277 0.08346505 6.689122 25.342982 30.310987 31.102166 0.15420896 0.040839126 0.055347067 + 10600 1.4524651 5.1794989 6.3203324 -0.025909515 6.2120807 25.079294 29.995608 31.102166 -0.014573849 -0.056558124 -0.0065965719 + 10700 1.4455577 5.1721256 6.3075337 0.084888991 6.6555495 24.842844 29.712806 31.102166 0.10063515 0.067972312 0.08605951 + 10800 1.4598996 5.15251 6.2991829 0.11430526 6.7624231 24.700034 29.542001 31.102166 0.12408423 0.12316195 0.095669606 + 10900 1.4149128 5.1641212 6.2754594 0.045495923 6.4584246 24.605124 29.428485 31.102166 0.10001213 0.053235051 -0.016759411 + 11000 1.3909637 5.1566933 6.2492208 0.046382806 6.433354 24.446408 29.238657 31.102166 0.091440494 0.0046064525 0.043101472 +Loop time of 3.41971 on 1 procs for 1000 steps with 5600 atoms + +Performance: 126326.531 tau/day, 292.423 timesteps/s +99.6% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.78521 | 0.78521 | 0.78521 | 0.0 | 22.96 +Bond | 0.080655 | 0.080655 | 0.080655 | 0.0 | 2.36 +Neigh | 1.2846 | 1.2846 | 1.2846 | 0.0 | 37.57 +Comm | 0.064334 | 0.064334 | 0.064334 | 0.0 | 1.88 +Output | 0.00080228 | 0.00080228 | 0.00080228 | 0.0 | 0.02 +Modify | 1.1651 | 1.1651 | 1.1651 | 0.0 | 34.07 +Other | | 0.03903 | | | 1.14 + +Nlocal: 5600 ave 5600 max 5600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 3805 ave 3805 max 3805 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 40038 ave 40038 max 40038 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 40038 +Ave neighs/atom = 7.14964 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 162 +Dangerous builds = 0 + +Total wall time: 0:00:22 diff --git a/examples/rigid/log.20Apr18.rigid.tnr.g++.4 b/examples/rigid/log.20Apr18.rigid.tnr.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..28457f51ee4fef7fbc8db5d263e0abfa27bf8e61 --- /dev/null +++ b/examples/rigid/log.20Apr18.rigid.tnr.g++.4 @@ -0,0 +1,458 @@ +LAMMPS (20 Apr 2018) + using 1 OpenMP thread(s) per MPI task +# Tethered nanorods + +atom_style molecular + +read_data data.rigid.tnr + orthogonal box = (-31.122 -31.122 -31.122) to (31.122 31.122 31.122) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 5600 atoms + scanning bonds ... + 1 = max bonds/atom + reading bonds ... + 1600 bonds + 2 = max # of 1-2 neighbors + 1 = max # of 1-3 neighbors + 1 = max # of 1-4 neighbors + 2 = max # of special neighbors + +# Specify bond parameters + +bond_style fene +bond_coeff 1 30.0 1.5 1.0 1.0 + +special_bonds fene + 2 = max # of 1-2 neighbors + 2 = max # of special neighbors + +# Specify initial velocities + +velocity all create 1.4 109345 + +# Specify rigid components + +group rods type 2 +4000 atoms in group rods +group tethers subtract all rods +1600 atoms in group tethers + +neigh_modify exclude molecule/intra rods delay 0 every 1 + +# Specify the pair potentials + +pair_style lj/cut 2.5 +pair_modify shift yes +pair_coeff * * 1.0 1.0 1.122 +pair_coeff 2 2 1.0 1.0 2.5 + +# Specify output + +thermo 100 +thermo_style custom step temp pe etotal press enthalpy lx ly lz pxx pyy pzz +thermo_modify flush yes lost warn + +timestep 0.005 + +fix 1 rods rigid molecule +800 rigid bodies with 4000 atoms +fix 2 tethers nve +fix 3 all langevin 1.4 1.4 1.0 437624 + +run 5000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.8 + ghost atom cutoff = 2.8 + binsize = 1.4, bins = 45 45 45 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 7.216 | 7.384 | 7.552 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 0 1.3963219 5.9478449 7.0445809 0.048565317 9.13595 62.244 62.244 62.244 0.0091983659 0.11850113 0.017996458 + 100 1.3999025 5.9707695 7.0703179 0.027293074 8.24564 62.244 62.244 62.244 0.017246307 0.04732529 0.017307624 + 200 1.4245544 5.9878446 7.1067558 0.0072016369 7.41688 62.244 62.244 62.244 0.0071370801 0.0084066589 0.0060611719 + 300 1.4212057 5.9942604 7.1105414 0.0023296933 7.210865 62.244 62.244 62.244 -0.0059197015 0.0040269953 0.008881786 + 400 1.4030116 5.9953214 7.0973119 0.0055751834 7.3373961 62.244 62.244 62.244 -0.0026920847 0.013323321 0.0060943141 + 500 1.4201338 5.9984777 7.1139168 -0.0018229523 7.035415 62.244 62.244 62.244 -0.0082217102 -0.00047319975 0.0032260529 + 600 1.425173 5.9902537 7.1096508 0.013367744 7.6853062 62.244 62.244 62.244 0.012971415 0.016298595 0.010833222 + 700 1.4181225 5.9840752 7.0979345 0.0014999758 7.1625279 62.244 62.244 62.244 -0.0015835387 0.0045967753 0.0014866907 + 800 1.4084205 5.9778462 7.084085 0.0063728488 7.3585191 62.244 62.244 62.244 0.0036202744 0.005593586 0.0099046859 + 900 1.3958301 5.9891019 7.0854517 0.0028974454 7.2102244 62.244 62.244 62.244 0.0087724642 0.0014508428 -0.001530971 + 1000 1.3937374 5.9794855 7.0741916 0.0087158481 7.4495223 62.244 62.244 62.244 0.014424783 0.0034958881 0.0082268735 + 1100 1.3729162 5.9916252 7.0699773 0.0030451966 7.2011127 62.244 62.244 62.244 0.00084635444 -0.00064448421 0.0089337195 + 1200 1.4427374 5.9713589 7.1045519 0.0042680608 7.2883474 62.244 62.244 62.244 0.0030884628 0.0031576538 0.0065580658 + 1300 1.3971469 5.9728674 7.0702514 0.0022809251 7.168475 62.244 62.244 62.244 0.00060902513 -0.00020572386 0.006439474 + 1400 1.4194118 5.9672631 7.082135 0.012945844 7.6396221 62.244 62.244 62.244 0.0082418827 0.016256336 0.014339314 + 1500 1.3866472 5.9728382 7.0619753 0.0010642438 7.1078049 62.244 62.244 62.244 0.0020316123 0.0020439035 -0.00088278431 + 1600 1.4184955 5.9539591 7.0681113 0.0077605409 7.4023036 62.244 62.244 62.244 0.0033721722 0.0057827512 0.014126699 + 1700 1.3612202 5.9676733 7.0368389 0.0001686213 7.0441002 62.244 62.244 62.244 0.0052525345 0.0007705269 -0.0055171975 + 1800 1.3641041 5.9521837 7.0236144 0.0057884587 7.2728829 62.244 62.244 62.244 0.0038061044 0.0044032908 0.009155981 + 1900 1.3594477 5.9646024 7.0323757 0.0044261926 7.2229809 62.244 62.244 62.244 0.0019417448 0.006871542 0.004465291 + 2000 1.3776971 5.9431816 7.0252888 -0.0012460593 6.9716298 62.244 62.244 62.244 -0.0010913822 0.00098119435 -0.0036279901 + 2100 1.3986245 5.9509735 7.0495181 0.007520633 7.3733792 62.244 62.244 62.244 0.008359824 0.0075919773 0.0066100978 + 2200 1.4033594 5.9548158 7.0570794 0.0016804284 7.1294438 62.244 62.244 62.244 -0.001842641 0.0032876741 0.0035962521 + 2300 1.4048926 5.9444129 7.0478808 0.0062444035 7.3167836 62.244 62.244 62.244 0.004383569 0.0065720464 0.007777595 + 2400 1.4044043 5.9370822 7.0401666 0.0034562836 7.1890046 62.244 62.244 62.244 0.0068959298 0.0041111713 -0.00063825028 + 2500 1.4200762 5.9359254 7.0513193 0.002831965 7.1732722 62.244 62.244 62.244 -0.00030414188 0.0039571831 0.0048428539 + 2600 1.3876469 5.9249124 7.0148347 -0.0017777223 6.9382806 62.244 62.244 62.244 -0.00047616388 -0.0025484917 -0.0023085112 + 2700 1.4099941 5.916763 7.0242378 0.0070716262 7.3287634 62.244 62.244 62.244 0.012628756 0.0053812867 0.0032048357 + 2800 1.4444643 5.9283432 7.0628925 0.0019400019 7.1464348 62.244 62.244 62.244 0.0014895075 0.0046367395 -0.0003062412 + 2900 1.3902832 5.9152516 7.0072446 -0.0021662211 6.9139606 62.244 62.244 62.244 -0.0012374413 -0.00056403267 -0.0046971892 + 3000 1.3711706 5.922146 6.999127 0.011101505 7.4771914 62.244 62.244 62.244 0.011063833 0.012093025 0.010147658 + 3100 1.3569137 5.9171753 6.9829583 -0.0028266781 6.861233 62.244 62.244 62.244 -0.0069507246 0.001008439 -0.0025377485 + 3200 1.4004275 5.905939 7.0058998 0.005439464 7.2401395 62.244 62.244 62.244 0.010352181 0.0057594129 0.00020679783 + 3300 1.3641217 5.9145275 6.985972 -0.0027212797 6.8687855 62.244 62.244 62.244 -0.00065933477 -0.0057712994 -0.0017332048 + 3400 1.3868722 5.9059546 6.9952684 0.0092591181 7.3939939 62.244 62.244 62.244 0.010690872 0.01075251 0.0063339724 + 3500 1.3939168 5.8992292 6.9940762 0.0074340103 7.3142071 62.244 62.244 62.244 0.010137319 0.0044252681 0.0077394433 + 3600 1.3982507 5.921946 7.020197 0.0056794467 7.2647712 62.244 62.244 62.244 0.0023367139 0.0080592038 0.0066424225 + 3700 1.4019908 5.9059954 7.007184 0.0065915246 7.291035 62.244 62.244 62.244 0.0049554227 0.010827006 0.0039921455 + 3800 1.3960735 5.9020788 6.9986197 0.0027763543 7.1181779 62.244 62.244 62.244 -0.0015907599 0.0025861989 0.007333624 + 3900 1.4352827 5.8986213 7.025959 0.0034983366 7.1766079 62.244 62.244 62.244 0.0030418079 0.002773833 0.0046793689 + 4000 1.4121839 5.9079032 7.017098 0.0050464926 7.2344152 62.244 62.244 62.244 0.0045546986 0.0064116168 0.0041731626 + 4100 1.3989613 5.9082377 7.0070468 0.00042898744 7.0255203 62.244 62.244 62.244 0.0025736361 0.0025182434 -0.0038049172 + 4200 1.3998851 5.8998106 6.9993454 0.0042770066 7.1835262 62.244 62.244 62.244 0.0013728904 0.0064694548 0.0049886746 + 4300 1.4076016 5.9044534 7.0100491 0.0066777871 7.2976147 62.244 62.244 62.244 0.0073579039 0.0048129651 0.0078624924 + 4400 1.3948857 5.9101851 7.0057931 0.0013429373 7.063624 62.244 62.244 62.244 -0.00084288143 0.0061856571 -0.0013139638 + 4500 1.4356157 5.8855608 7.01316 -0.0013707942 6.9541295 62.244 62.244 62.244 -0.0018523205 -0.0050195956 0.0027595334 + 4600 1.4148397 5.8957564 7.0070372 0.0072212968 7.318008 62.244 62.244 62.244 0.011376867 0.0074399971 0.0028470263 + 4700 1.3695106 5.8936708 6.969348 0.0017509017 7.0447471 62.244 62.244 62.244 -0.0061975951 0.0044076775 0.0070426225 + 4800 1.4142735 5.8887578 6.9995939 0.0081923232 7.35238 62.244 62.244 62.244 0.013343877 0.0054560473 0.0057770449 + 4900 1.4300042 5.8867398 7.0099315 0.0070875112 7.3151411 62.244 62.244 62.244 0.0080416381 0.0042409901 0.0089799056 + 5000 1.4286039 5.8964609 7.0185527 -0.003158533 6.8825368 62.244 62.244 62.244 0.0024975808 -0.0097503027 -0.0022228771 +Loop time of 3.4608 on 4 procs for 5000 steps with 5600 atoms + +Performance: 624133.913 tau/day, 1444.754 timesteps/s +98.0% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.083226 | 0.13336 | 0.18611 | 13.0 | 3.85 +Bond | 0.045169 | 0.066142 | 0.087486 | 7.8 | 1.91 +Neigh | 0.57772 | 0.57997 | 0.58211 | 0.3 | 16.76 +Comm | 0.19402 | 0.26217 | 0.32776 | 12.2 | 7.58 +Output | 0.0027087 | 0.0035715 | 0.0041978 | 0.9 | 0.10 +Modify | 2.1223 | 2.2156 | 2.2842 | 4.2 | 64.02 +Other | | 0.2 | | | 5.78 + +Nlocal: 1400 ave 1844 max 907 min +Histogram: 1 1 0 0 0 0 0 0 0 2 +Nghost: 642 ave 714 max 581 min +Histogram: 1 1 0 0 0 0 1 0 0 1 +Neighs: 1307.25 ave 1883 max 682 min +Histogram: 2 0 0 0 0 0 0 0 0 2 + +Total # of neighbors = 5229 +Ave neighs/atom = 0.93375 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 762 +Dangerous builds = 0 + +# Replace fix rigid and fix langevin with new ones + +unfix 1 +unfix 3 + +fix 3 tethers langevin 1.4 1.4 1.0 198450 + +# Test different integrators for rods + +fix 1 rods rigid/nve molecule +800 rigid bodies with 4000 atoms +print "rigid/nve" +rigid/nve +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.217 | 7.395 | 7.573 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 5000 1.4286039 5.8964609 7.0185527 -0.017900244 6.2477142 62.244 62.244 62.244 -0.017934885 -0.027283526 -0.0084823215 + 5100 1.4251274 5.887521 7.0068821 0.0066290394 7.2923486 62.244 62.244 62.244 0.0033173534 0.0056467845 0.01092298 + 5200 1.4246222 5.8928547 7.0118192 -0.00025763331 7.0007247 62.244 62.244 62.244 -0.001891953 -0.0031121381 0.0042311911 + 5300 1.3905023 5.9024119 6.994577 0.0026824588 7.1100918 62.244 62.244 62.244 0.003106008 0.0040692376 0.00087213068 + 5400 1.4139617 5.8906493 7.0012405 0.003175173 7.137973 62.244 62.244 62.244 0.0034546577 0.003858524 0.0022123373 + 5500 1.4160473 5.8891813 7.0014106 0.0032907848 7.1431217 62.244 62.244 62.244 0.0014909385 0.0067546452 0.0016267707 + 5600 1.4185962 5.8932473 7.0074786 0.013015823 7.5679792 62.244 62.244 62.244 0.011297248 0.011426835 0.016323387 + 5700 1.4115847 5.892193 7.0009171 0.0080660065 7.3482637 62.244 62.244 62.244 0.0096534077 0.004127271 0.010417341 + 5800 1.3920238 5.8874957 6.9808558 0.0087013878 7.3555639 62.244 62.244 62.244 0.0070865796 0.0093328615 0.0096847223 + 5900 1.389416 5.8996657 6.9909775 0.0053218583 7.2201528 62.244 62.244 62.244 0.0050547275 0.0054113274 0.0054995198 + 6000 1.4079053 5.8795437 6.9853779 0.0066005053 7.2696156 62.244 62.244 62.244 0.0087434104 0.0013589366 0.0096991689 +Loop time of 0.793224 on 4 procs for 1000 steps with 5600 atoms + +Performance: 544612.641 tau/day, 1260.677 timesteps/s +98.6% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.018101 | 0.036068 | 0.051689 | 7.6 | 4.55 +Bond | 0.0083735 | 0.013206 | 0.017318 | 3.6 | 1.66 +Neigh | 0.12864 | 0.1293 | 0.13002 | 0.1 | 16.30 +Comm | 0.037184 | 0.056407 | 0.077999 | 7.4 | 7.11 +Output | 0.00048971 | 0.00072509 | 0.00083923 | 0.0 | 0.09 +Modify | 0.49526 | 0.51293 | 0.52997 | 2.2 | 64.66 +Other | | 0.04459 | | | 5.62 + +Nlocal: 1400 ave 1844 max 884 min +Histogram: 1 1 0 0 0 0 0 0 0 2 +Nghost: 713.5 ave 818 max 656 min +Histogram: 1 1 1 0 0 0 0 0 0 1 +Neighs: 1315 ave 1956 max 573 min +Histogram: 1 0 1 0 0 0 0 0 0 2 + +Total # of neighbors = 5260 +Ave neighs/atom = 0.939286 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 156 +Dangerous builds = 0 +unfix 1 + +fix 1 rods rigid/nvt molecule temp 1.4 1.4 1.0 +800 rigid bodies with 4000 atoms +print "rigid/nvt" +rigid/nvt +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.217 | 7.395 | 7.573 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 6000 1.4079053 5.8795437 6.9853779 0.010184208 7.4239406 62.244 62.244 62.244 0.0015995549 0.064769849 -0.035816779 + 6100 1.4031886 5.8721732 6.9743027 0.0039601 7.1448365 62.244 62.244 62.244 0.0019177243 0.0048575488 0.005105027 + 6200 1.4078378 5.8813987 6.9871798 -0.0019043091 6.9051745 62.244 62.244 62.244 -0.0012543967 -0.0035545317 -0.00090399881 + 6300 1.3898748 5.8818577 6.97353 0.0050781011 7.1922083 62.244 62.244 62.244 0.0037642013 0.0035169519 0.0079531499 + 6400 1.3901345 5.8620878 6.953964 -0.0013161864 6.897285 62.244 62.244 62.244 0.0024166375 -0.0023907165 -0.0039744801 + 6500 1.3990792 5.8647534 6.9636551 0.0025190902 7.0721348 62.244 62.244 62.244 0.003080505 -0.00072200043 0.0051987659 + 6600 1.3802747 5.8639204 6.9480523 0.0030906745 7.0811461 62.244 62.244 62.244 0.0041979458 0.0059358092 -0.00086173155 + 6700 1.392968 5.8692368 6.9633385 0.00060394401 6.9893462 62.244 62.244 62.244 0.0037955666 0.00058857296 -0.0025723075 + 6800 1.4139599 5.8777321 6.9883218 0.0064457022 7.2658932 62.244 62.244 62.244 0.0066202313 0.0077537688 0.0049631066 + 6900 1.3913822 5.8914016 6.9842578 0.0012411779 7.0377066 62.244 62.244 62.244 -0.0029791199 0.0027656154 0.0039370381 + 7000 1.4203244 5.8676225 6.9832112 0.0053040447 7.2116194 62.244 62.244 62.244 0.0024159021 0.0053958945 0.0081003375 +Loop time of 0.812983 on 4 procs for 1000 steps with 5600 atoms + +Performance: 531376.713 tau/day, 1230.039 timesteps/s +98.2% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.020489 | 0.038507 | 0.054352 | 7.9 | 4.74 +Bond | 0.0086164 | 0.013153 | 0.017908 | 3.5 | 1.62 +Neigh | 0.13205 | 0.13275 | 0.13353 | 0.1 | 16.33 +Comm | 0.039251 | 0.05774 | 0.079146 | 7.7 | 7.10 +Output | 0.00057149 | 0.00076026 | 0.00087905 | 0.0 | 0.09 +Modify | 0.51332 | 0.52873 | 0.54512 | 2.1 | 65.04 +Other | | 0.04134 | | | 5.09 + +Nlocal: 1400 ave 1861 max 953 min +Histogram: 2 0 0 0 0 0 0 0 1 1 +Nghost: 732.5 ave 799 max 634 min +Histogram: 1 0 0 0 0 1 0 0 1 1 +Neighs: 1478.5 ave 2087 max 852 min +Histogram: 1 1 0 0 0 0 0 0 0 2 + +Total # of neighbors = 5914 +Ave neighs/atom = 1.05607 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 154 +Dangerous builds = 0 +unfix 1 + +compute myTemp all temp + +fix 1 rods rigid/npt molecule temp 1.4 1.4 1.0 iso 0.05 0.05 1.0 dilate all +800 rigid bodies with 4000 atoms +print "rigid/npt iso" +rigid/npt iso +fix_modify 1 temp myTemp + +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.217 | 7.395 | 7.573 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 7000 1.4203244 5.8676225 6.9832112 -0.040722281 5.2295869 62.244 62.244 62.244 -0.12474488 0.041369653 -0.038791619 + 7100 1.4820526 5.8454198 7.0094927 0.013935005 7.4687465 56.934813 56.934813 56.934813 0.011753675 0.011015866 0.019035475 + 7200 1.5504398 5.8024995 7.0202869 0.023075447 7.5454178 50.323226 50.323226 50.323226 0.02128889 0.024383628 0.023553823 + 7300 1.5422614 5.7803177 6.9916814 0.022398755 7.3670099 45.442117 45.442117 45.442117 0.011815608 0.027421849 0.027958808 + 7400 1.5762224 5.7500188 6.988057 0.044637382 7.5673845 41.732187 41.732187 41.732187 0.045858714 0.035776277 0.052277154 + 7500 1.5734284 5.7222605 6.9581042 0.029862564 7.2743396 38.996336 38.996336 38.996336 0.024440229 0.034455527 0.030691934 + 7600 1.5572312 5.6929606 6.9160823 0.050216724 7.366563 36.898208 36.898208 36.898208 0.059366814 0.056376093 0.034907266 + 7700 1.5225653 5.659289 6.8551824 0.042054552 7.1814902 35.15611 35.15611 35.15611 0.043735305 0.039349247 0.043079104 + 7800 1.5081978 5.629903 6.8145116 0.057013188 7.2106251 33.885255 33.885255 33.885255 0.055017894 0.053733429 0.062288242 + 7900 1.4721367 5.5821237 6.7384082 0.067262555 7.1645957 32.860322 32.860322 32.860322 0.097134972 0.066643481 0.03800921 + 8000 1.4710105 5.5302806 6.6856805 0.054118027 7.0029681 32.020862 32.020862 32.020862 0.039052412 0.059044234 0.064257435 +Loop time of 1.47728 on 4 procs for 1000 steps with 5600 atoms + +Performance: 292430.022 tau/day, 676.921 timesteps/s +98.1% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.064968 | 0.10073 | 0.1395 | 10.5 | 6.82 +Bond | 0.014031 | 0.019927 | 0.02572 | 3.7 | 1.35 +Neigh | 0.52043 | 0.52145 | 0.52214 | 0.1 | 35.30 +Comm | 0.069327 | 0.11344 | 0.15499 | 11.3 | 7.68 +Output | 0.00045276 | 0.00050163 | 0.00058174 | 0.0 | 0.03 +Modify | 0.65598 | 0.67559 | 0.69898 | 2.4 | 45.73 +Other | | 0.04563 | | | 3.09 + +Nlocal: 1400 ave 1711 max 1074 min +Histogram: 2 0 0 0 0 0 0 0 0 2 +Nghost: 1617 ave 1748 max 1514 min +Histogram: 1 0 0 2 0 0 0 0 0 1 +Neighs: 6221.75 ave 8875 max 3829 min +Histogram: 2 0 0 0 0 0 0 0 1 1 + +Total # of neighbors = 24887 +Ave neighs/atom = 4.44411 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 340 +Dangerous builds = 0 +unfix 1 + +fix 1 rods rigid/npt molecule temp 1.4 1.4 1.0 x 0.05 0.05 1.0 dilate all +800 rigid bodies with 4000 atoms +print "rigid/npt x" +rigid/npt x +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.227 | 7.408 | 7.596 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 8000 1.4710105 5.5302806 6.6856805 0.19181859 7.81029 32.020862 32.020862 32.020862 0.26866704 0.14123342 0.16555531 + 8100 1.47531 5.5300767 6.6888537 0.072844262 7.1138998 31.868578 32.020862 32.020862 0.090224787 0.062332105 0.065975895 + 8200 1.448408 5.51143 6.6490768 0.069870568 7.0519422 31.491082 32.020862 32.020862 0.087940256 0.058037199 0.063634249 + 8300 1.4057002 5.4923673 6.5964694 0.065508742 6.9688194 31.043742 32.020862 32.020862 0.079268242 0.048811269 0.068446714 + 8400 1.3991297 5.4626242 6.5615657 -0.017027709 6.4660067 30.650474 32.020862 32.020862 0.0088006578 -0.001632039 -0.058251747 + 8500 1.4126457 5.4676374 6.5771949 0.012615987 6.6471389 30.279686 32.020862 32.020862 0.010145607 0.017449486 0.010252867 + 8600 1.4250925 5.4367644 6.5560982 0.057260287 6.8682646 29.775194 32.020862 32.020862 0.05660339 0.10551068 0.0096667873 + 8700 1.4259617 5.431439 6.5514555 0.060058224 6.8743509 29.36374 32.020862 32.020862 0.059243843 0.040552126 0.080378702 + 8800 1.4336545 5.3949149 6.5209738 0.052324111 6.7965365 28.763424 32.020862 32.020862 0.02607362 0.067534725 0.063363987 + 8900 1.4228767 5.3718196 6.489413 0.04039784 6.6975045 28.133143 32.020862 32.020862 0.038493401 0.059136317 0.023563801 + 9000 1.3840335 5.3851579 6.4722421 0.055356171 6.7513156 27.534332 32.020862 32.020862 0.067391117 0.061540537 0.03713686 +Loop time of 1.41644 on 4 procs for 1000 steps with 5600 atoms + +Performance: 304989.819 tau/day, 705.995 timesteps/s +98.1% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.111 | 0.15928 | 0.20768 | 11.1 | 11.25 +Bond | 0.014816 | 0.020169 | 0.024592 | 3.1 | 1.42 +Neigh | 0.40146 | 0.40175 | 0.40221 | 0.0 | 28.36 +Comm | 0.063586 | 0.11635 | 0.16698 | 14.1 | 8.21 +Output | 0.00045538 | 0.00050312 | 0.00063586 | 0.0 | 0.04 +Modify | 0.66405 | 0.67875 | 0.69575 | 1.6 | 47.92 +Other | | 0.03963 | | | 2.80 + +Nlocal: 1400 ave 1641 max 1120 min +Histogram: 1 0 1 0 0 0 0 0 0 2 +Nghost: 1593.5 ave 1674 max 1480 min +Histogram: 1 0 0 1 0 0 0 0 0 2 +Neighs: 7766.25 ave 10004 max 5618 min +Histogram: 2 0 0 0 0 0 0 0 0 2 + +Total # of neighbors = 31065 +Ave neighs/atom = 5.54732 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 168 +Dangerous builds = 0 +unfix 1 + +fix 1 rods rigid/nph molecule iso 0.05 0.05 1.0 dilate all +800 rigid bodies with 4000 atoms +print "rigid/nph iso" +rigid/nph iso +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.228 | 7.409 | 7.596 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 9000 1.3840335 5.3851579 6.4722421 0.16503405 7.3042475 27.534332 32.020862 32.020862 0.18505216 0.10781406 0.20223595 + 9100 1.3884253 5.3614209 6.4519546 -0.00091586458 6.4474179 27.373411 31.83372 31.83372 0.022761165 -0.0041100422 -0.021398716 + 9200 1.420492 5.3303864 6.4461068 0.059143817 6.7274082 27.005021 31.405303 31.405303 0.083033013 0.062389471 0.032008967 + 9300 1.4715513 5.2993502 6.4551749 -0.0012173753 6.4496031 26.66115 31.005402 31.005402 3.6757409e-05 -0.035942133 0.03225325 + 9400 1.446323 5.2997487 6.4357579 0.089723486 6.8324557 26.355721 30.650205 30.650205 0.074549411 0.091827859 0.10279319 + 9500 1.4429552 5.2778071 6.4111711 0.074185245 6.7328342 26.184941 30.451597 30.451597 0.081909739 0.072238574 0.068407422 + 9600 1.4570864 5.2601352 6.4045984 0.0580315 6.6544318 26.122769 30.379295 30.379295 0.060115487 0.027228888 0.086750125 + 9700 1.4421488 5.2741205 6.4068511 0.044711738 6.5981759 26.069954 30.317874 30.317874 0.093367845 0.025219144 0.015548226 + 9800 1.4305027 5.2831767 6.4067599 0.064007051 6.6787519 26.009567 30.247648 30.247648 0.1207317 0.021857174 0.049432283 + 9900 1.4457473 5.2513943 6.3869514 0.016264617 6.4551575 25.895064 30.114487 30.114487 0.055652525 0.015908352 -0.022767026 + 10000 1.4739193 5.2108898 6.3685744 0.066079547 6.6416503 25.768894 29.967759 29.967759 0.059174033 0.048716715 0.090347892 +Loop time of 1.47405 on 4 procs for 1000 steps with 5600 atoms + +Performance: 293069.938 tau/day, 678.403 timesteps/s +98.3% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.14109 | 0.19261 | 0.2429 | 10.7 | 13.07 +Bond | 0.015511 | 0.020164 | 0.023957 | 2.5 | 1.37 +Neigh | 0.43698 | 0.43723 | 0.43759 | 0.0 | 29.66 +Comm | 0.064379 | 0.1184 | 0.17429 | 14.5 | 8.03 +Output | 0.00053048 | 0.00056964 | 0.00067139 | 0.0 | 0.04 +Modify | 0.65413 | 0.66598 | 0.68039 | 1.3 | 45.18 +Other | | 0.0391 | | | 2.65 + +Nlocal: 1400 ave 1629 max 1159 min +Histogram: 1 1 0 0 0 0 0 0 0 2 +Nghost: 1760.25 ave 1871 max 1635 min +Histogram: 1 0 0 1 0 0 0 1 0 1 +Neighs: 9467.75 ave 11967 max 6712 min +Histogram: 1 1 0 0 0 0 0 0 0 2 + +Total # of neighbors = 37871 +Ave neighs/atom = 6.76268 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 163 +Dangerous builds = 0 +unfix 1 + +fix 1 rods rigid/nph molecule x 0.05 0.05 1.0 y 0.05 0.05 1.0 couple xy dilate all +800 rigid bodies with 4000 atoms +print "rigid/nph xy couple" +rigid/nph xy couple +run 1000 +Per MPI rank memory allocation (min/avg/max) = 7.229 | 7.413 | 7.597 Mbytes +Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz + 10000 1.4739193 5.2108898 6.3685744 0.15675952 7.0163882 25.768894 29.967759 29.967759 0.15485552 -0.045372029 0.36079506 + 10100 1.450711 5.2108741 6.3503298 0.0083383764 6.3849239 25.819477 30.026584 29.967759 0.0025039775 -0.0028716599 0.025382812 + 10200 1.4627819 5.2187046 6.3676414 0.031215755 6.4961258 25.717327 29.907789 29.967759 0.04657158 0.0023172248 0.044758461 + 10300 1.4689915 5.2231223 6.3769364 0.094530779 6.7645053 25.667024 29.84929 29.967759 0.10402187 0.089461211 0.090109255 + 10400 1.465366 5.211321 6.3622875 0.057765151 6.5976168 25.585426 29.754396 29.967759 0.025724468 0.03148259 0.1160884 + 10500 1.4206144 5.2096595 6.325476 0.029618225 6.4439115 25.348314 29.478648 29.967759 0.016757876 -0.021974627 0.094071428 + 10600 1.4490516 5.1686358 6.3067882 0.10186675 6.705618 25.082174 29.169143 29.967759 0.13985672 0.13649813 0.029245401 + 10700 1.42637 5.1516578 6.271995 0.12577606 6.7554051 24.851151 28.900476 29.967759 0.099699897 0.11678127 0.16084703 + 10800 1.4675204 5.1334029 6.2860615 0.054610838 6.494291 24.752517 28.78577 29.967759 0.018006539 0.090588468 0.055237507 + 10900 1.4312627 5.1332052 6.2573854 -0.0020120377 6.2496947 24.782913 28.821119 29.967759 -0.0035770106 0.047436898 -0.049896 + 11000 1.3986074 5.1272068 6.225738 0.045641244 6.3993661 24.72401 28.752618 29.967759 0.052336235 0.073561738 0.011025759 +Loop time of 1.50406 on 4 procs for 1000 steps with 5600 atoms + +Performance: 287222.965 tau/day, 664.868 timesteps/s +98.3% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.16856 | 0.21287 | 0.26569 | 9.4 | 14.15 +Bond | 0.016815 | 0.020397 | 0.023304 | 1.9 | 1.36 +Neigh | 0.44152 | 0.44161 | 0.44172 | 0.0 | 29.36 +Comm | 0.067729 | 0.1232 | 0.16886 | 13.0 | 8.19 +Output | 0.00045419 | 0.00048572 | 0.0005734 | 0.0 | 0.03 +Modify | 0.6568 | 0.66799 | 0.6841 | 1.3 | 44.41 +Other | | 0.0375 | | | 2.49 + +Nlocal: 1400 ave 1605 max 1229 min +Histogram: 1 1 0 0 0 0 0 1 0 1 +Nghost: 1859 ave 1964 max 1718 min +Histogram: 1 0 0 0 0 1 0 1 0 1 +Neighs: 10208.2 ave 13091 max 7670 min +Histogram: 1 1 0 0 0 0 1 0 0 1 + +Total # of neighbors = 40833 +Ave neighs/atom = 7.29161 +Ave special neighs/atom = 0.571429 +Neighbor list builds = 160 +Dangerous builds = 0 + +Total wall time: 0:00:10 diff --git a/examples/rigid/log.5Oct16.rigid.poems.g++.1 b/examples/rigid/log.5Oct16.rigid.poems.g++.1 deleted file mode 100644 index 8b5e47c00a078b92f4a66c0fb0a4cf30229c1949..0000000000000000000000000000000000000000 --- a/examples/rigid/log.5Oct16.rigid.poems.g++.1 +++ /dev/null @@ -1,332 +0,0 @@ -LAMMPS (5 Oct 2016) -# Simple rigid body system - -units lj -atom_style atomic - -pair_style lj/cut 2.5 - -read_data data.rigid - orthogonal box = (-12 -12 -12) to (12 12 12) - 1 by 1 by 1 MPI processor grid - reading atoms ... - 81 atoms - -velocity all create 100.0 4928459 - -# unconnected bodies - -#group clump1 id <> 1 9 -#group clump2 id <> 10 18 -#group clump3 id <> 19 27 -#group clump4 id <> 28 36 -#group clump5 id <> 37 45 -#group clump6 id <> 46 54 -#group clump7 id <> 55 63 -#group clump8 id <> 64 72 -#group clump9 id <> 73 81 - -#fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 - -# 1 chain of connected bodies - -group clump1 id <> 1 9 -9 atoms in group clump1 -group clump2 id <> 9 18 -10 atoms in group clump2 -group clump3 id <> 18 27 -10 atoms in group clump3 -group clump4 id <> 27 36 -10 atoms in group clump4 -group clump5 id <> 36 45 -10 atoms in group clump5 -group clump6 id <> 45 54 -10 atoms in group clump6 -group clump7 id <> 54 63 -10 atoms in group clump7 -group clump8 id <> 63 72 -10 atoms in group clump8 -group clump9 id <> 72 81 -10 atoms in group clump9 - -fix 1 all poems group clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 -1 clusters, 9 bodies, 8 joints, 81 atoms - -# 2 chains of connected bodies - -#group clump1 id <> 1 9 -#group clump2 id <> 9 18 -#group clump3 id <> 18 27 -#group clump4 id <> 27 36 -#group clump5 id <> 37 45 -#group clump6 id <> 45 54 -#group clump7 id <> 54 63 -#group clump8 id <> 63 72 -#group clump9 id <> 72 81 - -#fix 1 all poems group clump1 clump2 clump3 clump4 -#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 - -neigh_modify exclude group clump1 clump1 -neigh_modify exclude group clump2 clump2 -neigh_modify exclude group clump3 clump3 -neigh_modify exclude group clump4 clump4 -neigh_modify exclude group clump5 clump5 -neigh_modify exclude group clump6 clump6 -neigh_modify exclude group clump7 clump7 -neigh_modify exclude group clump8 clump8 -neigh_modify exclude group clump9 clump9 - -thermo 100 - -#dump 1 all atom 50 dump.rigid.poems - -#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 -#dump_modify 2 pad 5 - -#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 -#dump_modify 3 pad 5 - -timestep 0.0001 -thermo 50 -run 10000 -Neighbor list info ... - 1 neighbor list requests - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 2.8 - ghost atom cutoff = 2.8 - binsize = 1.4 -> bins = 18 18 18 -Memory usage per processor = 2.96781 Mbytes -Step Temp E_pair E_mol TotEng Press - 0 217.7783 3430.3907 0 3466.6871 -2.7403788 - 50 13679.637 1404.2468 0 3684.1863 12.446066 - 100 16777.225 888.87665 0 3685.0808 -31.828677 - 150 19595.365 418.45042 0 3684.3446 40.709078 - 200 18524.188 596.47273 0 3683.8375 -0.8159371 - 250 21015.789 180.96521 0 3683.5967 -10.042469 - 300 20785.513 219.25314 0 3683.5053 2.6452719 - 350 21072.46 171.2554 0 3683.3321 7.0609024 - 400 19956.414 356.36381 0 3682.4328 19.320259 - 450 20724.42 227.73284 0 3681.8028 8.1259249 - 500 20152.578 322.71466 0 3681.4777 5.4929878 - 550 20017.022 345.29701 0 3681.4673 5.4661666 - 600 17897.743 698.72196 0 3681.6791 3.2854742 - 650 17297.758 796.60256 0 3679.5623 15.191113 - 700 18581.934 584.29715 0 3681.2861 5.1588289 - 750 21774.158 52.821062 0 3681.8474 -10.775664 - 800 21604.055 81.188546 0 3681.8644 -3.2045743 - 850 17821.483 711.53827 0 3681.7854 7.4384277 - 900 21033.292 175.98127 0 3681.5299 -16.345167 - 950 20968.166 186.59847 0 3681.2929 -2.330456 - 1000 20490.66 266.19375 0 3681.3037 11.787983 - 1050 20222.396 310.94072 0 3681.34 -8.3459539 - 1100 21321.687 127.61533 0 3681.2299 -1.2184717 - 1150 20849.582 206.01695 0 3680.9472 -0.86699149 - 1200 21815.003 45.317414 0 3681.1512 1.5988314 - 1250 18655.437 572.41453 0 3681.654 10.064078 - 1300 20780.781 217.36506 0 3680.8286 6.0538616 - 1350 20558.971 254.36482 0 3680.8601 -3.6773952 - 1400 21485.029 99.812921 0 3680.6511 -16.185473 - 1450 21771.107 52.15961 0 3680.6775 -2.4756673 - 1500 21520.948 93.503927 0 3680.3286 2.1023576 - 1550 21351.418 121.68137 0 3680.2511 5.5159947 - 1600 20778.805 216.92177 0 3680.0559 15.089188 - 1650 21477.638 100.21836 0 3679.8247 -1.1045746 - 1700 18501.339 596.47914 0 3680.0357 -15.679679 - 1750 18563.642 587.34785 0 3681.2882 33.532209 - 1800 19110.185 494.8234 0 3679.8543 18.024046 - 1850 21364.191 119.23545 0 3679.9339 2.5291103 - 1900 20146.626 322.14867 0 3679.9197 5.7313218 - 1950 20692.672 231.25325 0 3680.0319 4.2977763 - 2000 20943.904 189.11235 0 3679.7629 -22.645121 - 2050 19668.057 401.82994 0 3679.8394 3.6251916 - 2100 20280.442 299.76155 0 3679.8353 7.4807949 - 2150 19181.86 483.522 0 3680.4987 22.620507 - 2200 21300.161 130.70534 0 3680.7322 4.7102665 - 2250 20486.943 266.63931 0 3681.1299 -8.6456512 - 2300 18653.122 572.24819 0 3681.1018 -5.2637122 - 2350 21513.523 95.614901 0 3681.2021 -9.3621767 - 2400 21466.272 103.56446 0 3681.2765 -29.561368 - 2450 20100.105 332.27123 0 3682.2887 35.744287 - 2500 20764.395 221.6677 0 3682.4001 -12.468906 - 2550 20435.699 276.31055 0 3682.2603 -22.413697 - 2600 21466.467 104.53618 0 3682.2807 -10.078508 - 2650 20814.737 213.23892 0 3682.3617 5.1390411 - 2700 18565.761 588.3578 0 3682.6513 22.27664 - 2750 20772.36 220.1607 0 3682.2206 -7.9448198 - 2800 21018.563 179.10058 0 3682.1945 -7.0717829 - 2850 16789.412 884.21472 0 3682.4501 33.279015 - 2900 19304.363 464.75282 0 3682.1466 7.947554 - 2950 20513.758 263.07578 0 3682.0355 2.2361434 - 3000 20617.309 245.95251 0 3682.1706 -0.75213689 - 3050 18567.52 587.90473 0 3682.4914 -4.0112006 - 3100 18696.577 566.20617 0 3682.3023 -1.4814167 - 3150 19864.606 371.56078 0 3682.3284 8.9362836 - 3200 18902.643 532.04614 0 3682.4867 0.76630303 - 3250 21110.454 163.86212 0 3682.271 -1.6253894 - 3300 19369.939 454.05833 0 3682.3816 4.9066544 - 3350 19082.603 501.69905 0 3682.133 3.5982292 - 3400 19527.779 426.918 0 3681.5478 6.9612143 - 3450 19892.953 366.19989 0 3681.6921 3.0050426 - 3500 19708.981 396.84552 0 3681.6756 7.0757635 - 3550 20256.096 306.23937 0 3682.2554 -1.752138 - 3600 21289.889 133.93823 0 3682.253 -3.7462615 - 3650 18333.877 627.18028 0 3682.8264 -15.276791 - 3700 19829.133 377.33753 0 3682.1931 -6.269648 - 3750 20771.635 220.07171 0 3682.0109 -28.479036 - 3800 18373.813 619.79253 0 3682.0947 29.594781 - 3850 19320.99 461.92786 0 3682.0928 -5.3212101 - 3900 16119.825 995.68064 0 3682.3182 -8.4683118 - 3950 15556.948 1091.3655 0 3684.1902 20.98273 - 4000 20000.464 348.24891 0 3681.6596 7.1589745 - 4050 18870.219 536.59924 0 3681.6358 -3.7997025 - 4100 19889.518 367.49253 0 3682.4122 -14.091266 - 4150 15789.623 1051.3399 0 3682.9438 -4.4152389 - 4200 20548.889 256.83493 0 3681.6498 0.92234153 - 4250 20681.925 235.46113 0 3682.4487 -11.515773 - 4300 19330.404 460.80975 0 3682.5437 -22.351775 - 4350 19369.443 453.35405 0 3681.5945 29.418242 - 4400 20762.165 222.24133 0 3682.6021 2.6627047 - 4450 19984.657 350.71294 0 3681.4891 28.88731 - 4500 21167.58 154.25344 0 3682.1834 -3.0784322 - 4550 18133.576 660.73671 0 3682.9995 2.5305835 - 4600 19935.069 360.36826 0 3682.8798 2.4575034 - 4650 21413.76 113.86464 0 3682.8246 -5.1271547 - 4700 21716.333 63.609419 0 3682.9982 -2.4708049 - 4750 21352.947 124.36961 0 3683.1941 -0.29026265 - 4800 19043.788 508.8617 0 3682.8264 14.797006 - 4850 20516.121 263.78758 0 3683.1411 7.1348281 - 4900 20624.5 245.81827 0 3683.235 0.34708051 - 4950 20317.197 296.68937 0 3682.8889 -0.55065946 - 5000 18346.865 625.37246 0 3683.1832 7.3371413 - 5050 18867.53 538.49153 0 3683.0799 1.9249866 - 5100 18790.276 551.17224 0 3682.885 2.2333017 - 5150 20241.365 311.84683 0 3685.4076 -3.998004 - 5200 17685.058 739.76418 0 3687.2739 3.2835025 - 5250 18496.626 604.58166 0 3687.3526 -10.185776 - 5300 18420.042 617.82026 0 3687.8273 -16.392458 - 5350 18767.338 559.0349 0 3686.9246 4.5320767 - 5400 20423.245 284.90517 0 3688.7794 -8.6356656 - 5450 21080.398 176.18494 0 3689.5846 -16.450038 - 5500 16684.424 909.12643 0 3689.8637 49.94555 - 5550 20132.31 335.03663 0 3690.4216 -16.018038 - 5600 20430.923 285.17562 0 3690.3295 -5.0773675 - 5650 20479.943 276.55962 0 3689.8834 5.4334564 - 5700 20061.532 345.95553 0 3689.5441 -16.230658 - 5750 20523.759 268.92217 0 3689.5487 -4.4128812 - 5800 18900.356 537.65462 0 3687.7139 13.605549 - 5850 20280.502 310.27193 0 3690.3556 -4.7884959 - 5900 19050.26 515.66087 0 3690.7042 7.8864722 - 5950 19566.917 430.2997 0 3691.4525 31.715268 - 6000 18878.118 544.75449 0 3691.1076 -4.2415329 - 6050 19308.682 471.70734 0 3689.821 -10.561614 - 6100 18776.194 560.04764 0 3689.4133 -7.7286747 - 6150 21475.064 110.1508 0 3689.3281 -3.6506391 - 6200 19975 360.82675 0 3689.9934 10.282021 - 6250 21396.341 123.5341 0 3689.5909 -5.7215163 - 6300 18533.423 600.87422 0 3689.778 15.408027 - 6350 20653.152 247.19253 0 3689.3846 8.5607784 - 6400 19716.537 403.41487 0 3689.5044 13.165575 - 6450 21120.66 168.79838 0 3688.9084 -0.50382728 - 6500 19700.345 404.7155 0 3688.1064 13.941375 - 6550 10818.393 1892.037 0 3695.1025 38.423155 - 6600 18684.478 574.84755 0 3688.9273 5.9176985 - 6650 19219.732 486.04269 0 3689.3314 18.287659 - 6700 20058.587 344.88255 0 3687.9804 6.5372086 - 6750 21279.318 142.77333 0 3689.3264 2.498188 - 6800 20671.545 244.25024 0 3689.5078 -4.1356416 - 6850 21203.598 155.82001 0 3689.753 -0.0083061182 - 6900 21699.344 73.301497 0 3689.8588 -8.0309898 - 6950 20951.212 197.19403 0 3689.0627 0.76668303 - 7000 20166.275 329.02869 0 3690.0746 2.0083318 - 7050 21554.944 97.465792 0 3689.9564 -3.2420086 - 7100 20817.494 220.25476 0 3689.8372 0.17206182 - 7150 21481.11 109.84029 0 3690.0253 -3.6814741 - 7200 21266.824 145.53099 0 3690.0016 -2.060543 - 7250 19434.684 450.81331 0 3689.9273 9.4822765 - 7300 21246.525 148.96573 0 3690.0532 3.3208839 - 7350 19749.269 398.60049 0 3690.1454 1.0929662 - 7400 20354.792 297.70261 0 3690.168 1.547159 - 7450 19996.859 357.16723 0 3689.977 -0.68412025 - 7500 20179.628 326.53243 0 3689.8038 -2.4805507 - 7550 18765.184 561.65039 0 3689.1811 -1.7976428 - 7600 19457.496 447.04428 0 3689.9603 -1.9055522 - 7650 18206.823 655.57276 0 3690.0433 1.2797964 - 7700 19152.344 497.77422 0 3689.8315 18.145069 - 7750 21387.484 125.48654 0 3690.0673 -2.9915772 - 7800 18127.052 668.61425 0 3689.7896 9.044869 - 7850 21419.557 120.08889 0 3690.015 6.2651717 - 7900 21817.182 53.739819 0 3689.9368 -4.2387416 - 7950 18215.195 654.15494 0 3690.0208 -54.628049 - 8000 21523.503 102.58018 0 3689.8307 -4.84236 - 8050 20720.799 236.28689 0 3689.7535 -9.3725225 - 8100 21196.483 157.3232 0 3690.0704 -7.7222497 - 8150 20869.667 211.65308 0 3689.9309 -6.8438295 - 8200 17790.052 725.72497 0 3690.7336 -25.697688 - 8250 19634.94 417.71929 0 3690.2094 8.861604 - 8300 19135.784 500.92443 0 3690.2218 -3.1245167 - 8350 20191.718 324.93312 0 3690.2195 6.5736107 - 8400 20695.239 241.02378 0 3690.2302 -14.592221 - 8450 21793.857 57.609525 0 3689.9191 -11.509747 - 8500 21271.088 144.43102 0 3689.6124 -0.091587085 - 8550 20064.337 345.21754 0 3689.2737 9.5058471 - 8600 20282.86 308.2307 0 3688.7074 2.265529 - 8650 21223.055 151.24306 0 3688.419 1.7296834 - 8700 18875.342 542.42055 0 3688.3108 6.367148 - 8750 20922.65 201.55122 0 3688.6595 3.4208578 - 8800 21406.54 120.8539 0 3688.6106 1.8253729 - 8850 19868.524 377.05623 0 3688.477 16.327796 - 8900 20025.322 348.94892 0 3686.5025 17.063406 - 8950 21224.374 151.3567 0 3688.7524 -0.11028753 - 9000 21318.309 135.862 0 3688.9135 -0.50826819 - 9050 17538.618 768.00136 0 3691.1043 37.978645 - 9100 21247.861 147.84641 0 3689.1566 -6.7773259 - 9150 18455.677 613.08767 0 3689.0339 -3.4844751 - 9200 19486.859 441.03829 0 3688.8482 -18.602827 - 9250 21774.926 59.710446 0 3688.8648 -13.379919 - 9300 17628.877 750.72321 0 3688.8694 27.797974 - 9350 19827.334 383.85708 0 3688.4128 6.5459021 - 9400 20020.126 351.61742 0 3688.3051 -14.332562 - 9450 21596.338 88.904175 0 3688.2939 1.5779716 - 9500 18981.418 524.60141 0 3688.1711 5.4352409 - 9550 18652.616 579.05144 0 3687.8208 25.600729 - 9600 21198.037 155.23097 0 3688.2371 -3.3586596 - 9650 19958.317 361.32544 0 3687.7115 4.2910178 - 9700 19129.101 499.5993 0 3687.7828 13.267102 - 9750 21913.967 35.689587 0 3688.0174 -7.3222905 - 9800 21314.694 135.43794 0 3687.8869 -9.5613518 - 9850 20899.743 204.82802 0 3688.1185 -2.6321428 - 9900 20288.244 306.5013 0 3687.8753 3.6196618 - 9950 19271.015 475.88527 0 3687.7211 -1.8196764 - 10000 21122.24 167.82714 0 3688.2005 -3.8464842 -Loop time of 3.6648 on 1 procs for 10000 steps with 81 atoms - -Performance: 23575.670 tau/day, 2728.665 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.15599 | 0.15599 | 0.15599 | 0.0 | 4.26 -Neigh | 0.099093 | 0.099093 | 0.099093 | 0.0 | 2.70 -Comm | 0.0088665 | 0.0088665 | 0.0088665 | 0.0 | 0.24 -Output | 0.0016377 | 0.0016377 | 0.0016377 | 0.0 | 0.04 -Modify | 3.392 | 3.392 | 3.392 | 0.0 | 92.56 -Other | | 0.007194 | | | 0.20 - -Nlocal: 81 ave 81 max 81 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 95 ave 95 max 95 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 744 ave 744 max 744 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 744 -Ave neighs/atom = 9.18519 -Neighbor list builds = 992 -Dangerous builds = 941 - -Please see the log.cite file for references relevant to this simulation - -Total wall time: 0:00:03 diff --git a/examples/rigid/log.5Oct16.rigid.poems.g++.4 b/examples/rigid/log.5Oct16.rigid.poems.g++.4 deleted file mode 100644 index 06610ea5c8e9ece3f154dc4c9d1730e592c7bc69..0000000000000000000000000000000000000000 --- a/examples/rigid/log.5Oct16.rigid.poems.g++.4 +++ /dev/null @@ -1,332 +0,0 @@ -LAMMPS (5 Oct 2016) -# Simple rigid body system - -units lj -atom_style atomic - -pair_style lj/cut 2.5 - -read_data data.rigid - orthogonal box = (-12 -12 -12) to (12 12 12) - 1 by 2 by 2 MPI processor grid - reading atoms ... - 81 atoms - -velocity all create 100.0 4928459 - -# unconnected bodies - -#group clump1 id <> 1 9 -#group clump2 id <> 10 18 -#group clump3 id <> 19 27 -#group clump4 id <> 28 36 -#group clump5 id <> 37 45 -#group clump6 id <> 46 54 -#group clump7 id <> 55 63 -#group clump8 id <> 64 72 -#group clump9 id <> 73 81 - -#fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 - -# 1 chain of connected bodies - -group clump1 id <> 1 9 -9 atoms in group clump1 -group clump2 id <> 9 18 -10 atoms in group clump2 -group clump3 id <> 18 27 -10 atoms in group clump3 -group clump4 id <> 27 36 -10 atoms in group clump4 -group clump5 id <> 36 45 -10 atoms in group clump5 -group clump6 id <> 45 54 -10 atoms in group clump6 -group clump7 id <> 54 63 -10 atoms in group clump7 -group clump8 id <> 63 72 -10 atoms in group clump8 -group clump9 id <> 72 81 -10 atoms in group clump9 - -fix 1 all poems group clump1 clump2 clump3 clump4 clump5 clump6 clump7 clump8 clump9 -1 clusters, 9 bodies, 8 joints, 81 atoms - -# 2 chains of connected bodies - -#group clump1 id <> 1 9 -#group clump2 id <> 9 18 -#group clump3 id <> 18 27 -#group clump4 id <> 27 36 -#group clump5 id <> 37 45 -#group clump6 id <> 45 54 -#group clump7 id <> 54 63 -#group clump8 id <> 63 72 -#group clump9 id <> 72 81 - -#fix 1 all poems group clump1 clump2 clump3 clump4 -#fix 2 all poems group clump5 clump6 clump7 clump8 clump9 - -neigh_modify exclude group clump1 clump1 -neigh_modify exclude group clump2 clump2 -neigh_modify exclude group clump3 clump3 -neigh_modify exclude group clump4 clump4 -neigh_modify exclude group clump5 clump5 -neigh_modify exclude group clump6 clump6 -neigh_modify exclude group clump7 clump7 -neigh_modify exclude group clump8 clump8 -neigh_modify exclude group clump9 clump9 - -thermo 100 - -#dump 1 all atom 50 dump.rigid.poems - -#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 -#dump_modify 2 pad 5 - -#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 -#dump_modify 3 pad 5 - -timestep 0.0001 -thermo 50 -run 10000 -Neighbor list info ... - 1 neighbor list requests - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 2.8 - ghost atom cutoff = 2.8 - binsize = 1.4 -> bins = 18 18 18 -Memory usage per processor = 2.94053 Mbytes -Step Temp E_pair E_mol TotEng Press - 0 217.7783 3430.3907 0 3466.6871 -2.7403788 - 50 13679.637 1404.2468 0 3684.1863 12.446066 - 100 16777.225 888.87665 0 3685.0808 -31.828677 - 150 19595.365 418.45042 0 3684.3446 40.709078 - 200 18524.188 596.47273 0 3683.8375 -0.8159371 - 250 21015.789 180.96521 0 3683.5967 -10.042469 - 300 20785.513 219.25314 0 3683.5053 2.6452719 - 350 21072.46 171.2554 0 3683.3321 7.0609024 - 400 19956.414 356.36381 0 3682.4328 19.320259 - 450 20724.42 227.73284 0 3681.8028 8.1259249 - 500 20152.578 322.71466 0 3681.4777 5.4929878 - 550 20017.022 345.29701 0 3681.4673 5.4661666 - 600 17897.743 698.72196 0 3681.6791 3.2854742 - 650 17297.758 796.60256 0 3679.5623 15.191113 - 700 18581.934 584.29715 0 3681.2861 5.1588289 - 750 21774.158 52.821062 0 3681.8474 -10.775664 - 800 21604.055 81.188546 0 3681.8644 -3.2045743 - 850 17821.483 711.53827 0 3681.7854 7.4384276 - 900 21033.292 175.98127 0 3681.5299 -16.345167 - 950 20968.166 186.59847 0 3681.2929 -2.330456 - 1000 20490.66 266.19375 0 3681.3037 11.787983 - 1050 20222.396 310.94072 0 3681.34 -8.3459539 - 1100 21321.687 127.61533 0 3681.2299 -1.2184718 - 1150 20849.582 206.01695 0 3680.9472 -0.8669916 - 1200 21815.003 45.317417 0 3681.1512 1.5988314 - 1250 18655.437 572.41453 0 3681.654 10.064076 - 1300 20780.781 217.36504 0 3680.8286 6.0538619 - 1350 20558.972 254.3648 0 3680.8601 -3.6773987 - 1400 21485.029 99.812949 0 3680.6511 -16.185471 - 1450 21771.108 52.15959 0 3680.6775 -2.4756681 - 1500 21520.948 93.503949 0 3680.3286 2.1023578 - 1550 21351.418 121.6814 0 3680.2511 5.5159978 - 1600 20778.805 216.92171 0 3680.0559 15.089182 - 1650 21477.639 100.2182 0 3679.8247 -1.1045944 - 1700 18501.343 596.47853 0 3680.0357 -15.67963 - 1750 18563.643 587.34767 0 3681.2882 33.532167 - 1800 19110.19 494.82264 0 3679.8543 18.024034 - 1850 21364.196 119.23454 0 3679.9339 2.5291491 - 1900 20146.643 322.14595 0 3679.9197 5.731152 - 1950 20692.67 231.25357 0 3680.0319 4.2977641 - 2000 20943.904 189.11223 0 3679.763 -22.645645 - 2050 19668.152 401.81407 0 3679.8394 3.6255896 - 2100 20280.572 299.73976 0 3679.8351 7.4809355 - 2150 19182.121 483.47905 0 3680.4992 22.615309 - 2200 21299.76 130.77281 0 3680.7327 4.7114154 - 2250 20487.784 266.4995 0 3681.1302 -8.6406776 - 2300 18655.125 571.91487 0 3681.1023 -5.2671669 - 2350 21512.614 95.766913 0 3681.2025 -9.3523428 - 2400 21467.773 103.31519 0 3681.2773 -29.600307 - 2450 20096.937 332.80159 0 3682.2911 35.890912 - 2500 20761.446 222.16118 0 3682.4022 -12.528127 - 2550 20409.6 280.67234 0 3682.2723 -22.277373 - 2600 21469.964 103.95529 0 3682.2826 -10.038267 - 2650 20708.138 231.00516 0 3682.3615 5.3659502 - 2700 18584.743 585.07862 0 3682.5357 21.785261 - 2750 20503.019 264.91491 0 3682.0847 -4.5583917 - 2800 20584.075 251.44664 0 3682.1258 -6.5084595 - 2850 17277.076 802.33356 0 3681.8462 15.519513 - 2900 19392.956 449.92915 0 3682.0885 -4.3829957 - 2950 18371.786 620.29835 0 3682.2626 7.2117592 - 3000 20412.015 280.25302 0 3682.2555 0.32492606 - 3050 20858.248 205.65269 0 3682.0273 4.5055715 - 3100 21561.094 88.438447 0 3681.9541 -3.7523733 - 3150 15471.278 1103.4497 0 3681.9961 -14.576367 - 3200 15386.973 1117.8815 0 3682.377 15.051163 - 3250 19741.037 392.04755 0 3682.2204 -2.6610995 - 3300 20870.191 203.58229 0 3681.9475 -4.7795545 - 3350 16648.228 907.66571 0 3682.3704 -8.9242511 - 3400 20104.016 331.58603 0 3682.2554 6.4783858 - 3450 21421.316 112.28228 0 3682.5015 -8.3484987 - 3500 19284.533 467.80739 0 3681.8962 -12.835452 - 3550 20160.125 322.4476 0 3682.4684 1.6574827 - 3600 16682.415 902.73752 0 3683.14 22.383296 - 3650 16762.19 890.14636 0 3683.8446 16.119412 - 3700 17858.568 707.37212 0 3683.8 -1.6582504 - 3750 20029.881 345.15986 0 3683.4733 -3.1415889 - 3800 20734 227.99158 0 3683.6582 -7.9580418 - 3850 20741.089 226.39408 0 3683.2423 8.3055765 - 3900 18671.251 571.42296 0 3683.2981 -3.7468858 - 3950 19547.209 423.14256 0 3681.0108 5.8312279 - 4000 19739.799 393.58799 0 3683.5544 18.604884 - 4050 20014.121 347.8176 0 3683.5044 9.93387 - 4100 20503.654 266.08691 0 3683.3626 8.1304118 - 4150 18309.702 632.29807 0 3683.9151 -0.0021480359 - 4200 20509.423 265.60353 0 3683.8408 -2.1658857 - 4250 21805.541 50.325935 0 3684.5828 1.082842 - 4300 21420.551 114.90431 0 3684.9962 -1.7985998 - 4350 20256.928 308.74187 0 3684.8966 -11.669472 - 4400 21633.488 79.629274 0 3685.2106 -0.96131785 - 4450 20793.327 219.66955 0 3685.2241 1.3752349 - 4500 18719.484 564.86754 0 3684.7816 2.6308699 - 4550 20966.335 190.68308 0 3685.0722 -18.587627 - 4600 19428.962 446.59618 0 3684.7565 -4.4051672 - 4650 18408.956 616.85009 0 3685.0095 2.777272 - 4700 19215.779 482.57562 0 3685.2054 19.441016 - 4750 20155.927 326.13401 0 3685.4553 6.1734993 - 4800 20918.085 199.31832 0 3685.6659 3.4407437 - 4850 20236.958 312.07276 0 3684.899 3.2612893 - 4900 21419.89 115.36879 0 3685.3505 -4.675951 - 4950 19707.901 401.14828 0 3685.7985 -10.730734 - 5000 19407.201 450.64394 0 3685.1775 17.518981 - 5050 21527.598 97.655186 0 3685.5882 -9.2294707 - 5100 21581.933 88.595517 0 3685.5843 -20.669485 - 5150 21161.214 158.48503 0 3685.3541 -2.7587502 - 5200 21166.679 157.24762 0 3685.0275 -18.180044 - 5250 20909.576 200.23507 0 3685.1644 -16.617303 - 5300 21911.746 33.236563 0 3685.1942 -5.8313967 - 5350 20857.303 208.87453 0 3685.0916 12.176312 - 5400 20958.96 191.96694 0 3685.1269 3.6116429 - 5450 20433.179 279.61178 0 3685.1415 13.324529 - 5500 19604.675 416.88499 0 3684.3308 21.536484 - 5550 18171.145 655.92915 0 3684.4534 -9.2269804 - 5600 19799.907 385.12116 0 3685.1056 22.202165 - 5650 19711.882 399.30581 0 3684.6194 15.93063 - 5700 17908.833 699.52405 0 3684.3295 0.35530356 - 5750 18606.518 583.538 0 3684.6243 -4.4540843 - 5800 21814.053 48.974627 0 3684.6501 -1.5206358 - 5850 18029.107 679.9357 0 3684.7868 12.137677 - 5900 21090.739 169.64502 0 3684.7682 -1.5051545 - 5950 21086.26 170.29075 0 3684.6674 -2.8164474 - 6000 21285.771 136.95608 0 3684.5846 -26.582739 - 6050 21203.994 150.87822 0 3684.8772 -2.6617226 - 6100 21481.553 104.57796 0 3684.8368 -16.524974 - 6150 20354.4 292.57675 0 3684.9767 2.7960207 - 6200 21326.591 130.75243 0 3685.1843 -1.5929194 - 6250 21505.087 101.07817 0 3685.2593 -3.7821931 - 6300 21296.273 135.6593 0 3685.0382 -0.55635908 - 6350 21295.389 135.86485 0 3685.0964 5.6614093 - 6400 16552.242 926.02655 0 3684.7336 14.177218 - 6450 20148.951 327.1151 0 3685.2736 7.4561085 - 6500 20962.151 191.79415 0 3685.486 -4.5436711 - 6550 21710.328 67.433972 0 3685.8219 -5.7678572 - 6600 20698.571 234.79099 0 3684.5528 -2.1984068 - 6650 17892.287 704.05484 0 3686.1026 11.525836 - 6700 21272.999 141.26589 0 3686.7657 0.44088069 - 6750 19558.993 426.46448 0 3686.2966 -16.907401 - 6800 20350.247 295.23951 0 3686.9474 1.1284348 - 6850 18665.05 573.5326 0 3684.3742 17.088712 - 6900 19769.199 392.1551 0 3687.0216 6.7562425 - 6950 19439.159 446.99138 0 3686.8512 -6.0105763 - 7000 19379.907 456.53471 0 3686.5192 -9.0505095 - 7050 19983.754 356.02523 0 3686.651 -5.6274314 - 7100 19867.737 375.47627 0 3686.7658 17.315482 - 7150 19258.794 477.47344 0 3687.2724 14.316676 - 7200 21282.428 139.96051 0 3687.0318 -0.77043459 - 7250 19828.603 381.98919 0 3686.7564 6.5142869 - 7300 20574.582 257.8245 0 3686.9215 -3.6547118 - 7350 21613.467 84.771568 0 3687.0161 -7.5188826 - 7400 21817.009 50.844944 0 3687.0131 -14.888864 - 7450 14937.538 1197.4257 0 3687.0154 1.7540499 - 7500 18326.914 632.40374 0 3686.8894 8.3397357 - 7550 13611.007 1418.4727 0 3686.9739 -19.379482 - 7600 19173.985 491.9482 0 3687.6123 17.229001 - 7650 16911.504 867.33649 0 3685.9204 -21.042834 - 7700 21752.116 61.143705 0 3686.4963 -10.344487 - 7750 20208.337 318.26355 0 3686.3197 13.385814 - 7800 21649.909 77.950987 0 3686.2692 -1.7911084 - 7850 20139.64 329.50319 0 3686.1098 -5.5805093 - 7900 21355.026 126.7642 0 3685.9352 -7.7062172 - 7950 21336.178 129.88925 0 3685.9188 -2.059298 - 8000 21047.596 177.71546 0 3685.6482 0.37963466 - 8050 19217.351 482.62331 0 3685.5152 6.5582595 - 8100 20499.057 268.7173 0 3685.2268 -1.1959737 - 8150 21494.301 102.83829 0 3685.2219 -1.6427647 - 8200 20074.928 339.19817 0 3685.0195 6.285123 - 8250 17335.157 793.47566 0 3682.6685 22.877381 - 8300 17340.544 794.62619 0 3684.7168 3.9147755 - 8350 20529.345 262.51162 0 3684.0691 4.031768 - 8400 18884.747 537.47827 0 3684.9361 22.853404 - 8450 20341.86 293.10484 0 3683.4148 0.33856656 - 8500 19300.282 467.58127 0 3684.2949 12.35507 - 8550 21631.936 78.254534 0 3683.5772 -10.992959 - 8600 20204.913 316.83233 0 3684.3178 20.74228 - 8650 21018.189 181.32054 0 3684.352 1.8412068 - 8700 20161.304 323.97907 0 3684.1964 -2.646629 - 8750 19081.79 504.00155 0 3684.2998 -10.088053 - 8800 20834.489 211.76247 0 3684.1773 14.896336 - 8850 20929.355 196.18335 0 3684.4092 -1.2602398 - 8900 21491.074 102.47788 0 3684.3235 -1.4696758 - 8950 20474.735 271.69461 0 3684.1504 -6.9489258 - 9000 21128.641 162.40732 0 3683.8474 -7.7928168 - 9050 18421.801 614.46442 0 3684.7646 24.40313 - 9100 19301.292 466.98873 0 3683.8707 4.4687046 - 9150 21575.705 88.213763 0 3684.1646 -0.94696984 - 9200 20004.776 350.05448 0 3684.1838 -7.3466605 - 9250 21384.079 120.14472 0 3684.1578 -8.3773844 - 9300 21980.599 20.702393 0 3684.1356 -12.666293 - 9350 21686.606 69.517984 0 3683.9524 -8.8366533 - 9400 20732.704 228.46247 0 3683.9131 -6.4080307 - 9450 19798.859 384.34696 0 3684.1568 7.6198484 - 9500 20270.695 305.22664 0 3683.6758 1.5862486 - 9550 16496.156 935.28481 0 3684.6441 15.001468 - 9600 20642.429 241.08853 0 3681.4934 -9.2159382 - 9650 21292.587 135.4474 0 3684.2119 -0.54770976 - 9700 18888.158 536.60518 0 3684.6315 5.3236926 - 9750 18750.018 559.35922 0 3684.3623 -9.9424949 - 9800 20544.772 259.71076 0 3683.8394 8.732202 - 9850 16698.125 901.90076 0 3684.9216 9.9553329 - 9900 21450.963 109.58687 0 3684.7474 -4.8001999 - 9950 20664.461 240.66995 0 3684.7468 -3.4840781 - 10000 18951.367 526.45428 0 3685.0155 21.512727 -Loop time of 3.89095 on 4 procs for 10000 steps with 81 atoms - -Performance: 22205.346 tau/day, 2570.063 timesteps/s -99.6% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.012426 | 0.039516 | 0.089301 | 15.3 | 1.02 -Neigh | 0.012618 | 0.027118 | 0.055113 | 10.4 | 0.70 -Comm | 0.16629 | 0.21469 | 0.26329 | 8.2 | 5.52 -Output | 0.0051188 | 0.0053029 | 0.0055087 | 0.2 | 0.14 -Modify | 3.5241 | 3.5783 | 3.6729 | 3.0 | 91.96 -Other | | 0.02605 | | | 0.67 - -Nlocal: 20.25 ave 81 max 0 min -Histogram: 3 0 0 0 0 0 0 0 0 1 -Nghost: 46.25 ave 95 max 14 min -Histogram: 2 0 0 0 0 1 0 0 0 1 -Neighs: 249.25 ave 997 max 0 min -Histogram: 3 0 0 0 0 0 0 0 0 1 - -Total # of neighbors = 997 -Ave neighs/atom = 12.3086 -Neighbor list builds = 993 -Dangerous builds = 943 - -Please see the log.cite file for references relevant to this simulation - -Total wall time: 0:00:03 diff --git a/examples/rigid/log.5Oct16.rigid.poems2.g++.1 b/examples/rigid/log.5Oct16.rigid.poems2.g++.1 deleted file mode 100644 index edbef2d5b691d05bff1f665704301a72079aadc0..0000000000000000000000000000000000000000 --- a/examples/rigid/log.5Oct16.rigid.poems2.g++.1 +++ /dev/null @@ -1,336 +0,0 @@ -LAMMPS (5 Oct 2016) -# Simple rigid body system - -units lj -atom_style atomic - -pair_style lj/cut 2.5 - -read_data data.rigid - orthogonal box = (-12 -12 -12) to (12 12 12) - 1 by 1 by 1 MPI processor grid - reading atoms ... - 81 atoms - -velocity all create 100.0 4928459 - -# unconnected bodies - -#group clump1 id <> 1 9 -#group clump2 id <> 10 18 -#group clump3 id <> 19 27 -#group clump4 id <> 28 36 -#group clump5 id <> 37 45 -#group clump6 id <> 46 54 -#group clump7 id <> 55 63 -#group clump8 id <> 64 72 -#group clump9 id <> 73 81 - -#fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 - -# 1 chain of connected bodies - -#group clump1 id <> 1 9 -#group clump2 id <> 9 18 -#group clump3 id <> 18 27 -#group clump4 id <> 27 36 -#group clump5 id <> 36 45 -#group clump6 id <> 45 54 -#group clump7 id <> 54 63 -#group clump8 id <> 63 72 -#group clump9 id <> 72 81 - -#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 - -# 2 chains of connected bodies - -group clump1 id <> 1 9 -9 atoms in group clump1 -group clump2 id <> 9 18 -10 atoms in group clump2 -group clump3 id <> 18 27 -10 atoms in group clump3 -group clump4 id <> 27 36 -10 atoms in group clump4 -group clump5 id <> 37 45 -9 atoms in group clump5 -group clump6 id <> 45 54 -10 atoms in group clump6 -group clump7 id <> 54 63 -10 atoms in group clump7 -group clump8 id <> 63 72 -10 atoms in group clump8 -group clump9 id <> 72 81 -10 atoms in group clump9 - -fix 1 all poems group clump1 clump2 clump3 clump4 -1 clusters, 4 bodies, 3 joints, 36 atoms -fix 2 all poems group clump5 clump6 clump7 clump8 clump9 -1 clusters, 5 bodies, 4 joints, 45 atoms - -neigh_modify exclude group clump1 clump1 -neigh_modify exclude group clump2 clump2 -neigh_modify exclude group clump3 clump3 -neigh_modify exclude group clump4 clump4 -neigh_modify exclude group clump5 clump5 -neigh_modify exclude group clump6 clump6 -neigh_modify exclude group clump7 clump7 -neigh_modify exclude group clump8 clump8 -neigh_modify exclude group clump9 clump9 - -thermo 100 - -#dump 1 all atom 50 dump.rigid.poems2 - -#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 -#dump_modify 2 pad 5 - -#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 -#dump_modify 3 pad 5 - -timestep 0.0001 -thermo 50 -run 10000 -WARNING: More than one fix poems (../fix_poems.cpp:352) -WARNING: More than one fix poems (../fix_poems.cpp:352) -WARNING: One or more atoms are time integrated more than once (../modify.cpp:269) -Neighbor list info ... - 1 neighbor list requests - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 2.8 - ghost atom cutoff = 2.8 - binsize = 1.4 -> bins = 18 18 18 -Memory usage per processor = 3.53031 Mbytes -Step Temp E_pair E_mol TotEng Press - 0 196.00047 3632.2347 0 3668.5311 -2.7403788 - 50 12167.633 1505.5478 0 3758.8133 35.125973 - 100 17556.978 512.66277 0 3763.9549 11.137534 - 150 19579.586 138.04942 0 3763.8987 -29.953971 - 200 19757.51 105.30542 0 3764.1036 -0.030645317 - 250 18218.374 390.10747 0 3763.8804 13.711001 - 300 19383.039 174.40688 0 3763.8586 5.7240693 - 350 20125.986 36.972611 0 3764.0071 1.9559205 - 400 18888.816 266.10975 0 3764.0386 9.6362168 - 450 19307.656 188.2511 0 3763.743 1.9326206 - 500 16331.197 738.56392 0 3762.8597 9.1715579 - 550 19318.722 186.16172 0 3763.7027 3.0115336 - 600 19455.268 161.20621 0 3764.0336 0.55208034 - 650 18487.011 340.03216 0 3763.5528 -8.0359122 - 700 17321.201 556.32471 0 3763.9545 -13.631751 - 750 18979.187 249.04389 0 3763.7082 -2.6072455 - 800 19342.456 181.85552 0 3763.7918 8.1918726 - 850 19070.641 232.19342 0 3763.7936 7.3148472 - 900 19478.873 156.65987 0 3763.8586 2.4284987 - 950 19912.415 76.437437 0 3763.9216 -1.4667227 - 1000 16003.749 802.39753 0 3766.0548 46.642188 - 1050 19859.583 86.64176 0 3764.3424 -2.1961943 - 1100 19229.575 203.61488 0 3764.6473 -10.632365 - 1150 18821.6 279.15861 0 3764.64 -0.89495035 - 1200 19392.695 173.59744 0 3764.8373 1.8508753 - 1250 16459.624 717.32104 0 3765.3995 33.478127 - 1300 19343.863 182.59043 0 3764.7874 0.75890736 - 1350 20019.643 57.503573 0 3764.8448 0.31444671 - 1400 18549.582 329.31436 0 3764.4221 10.738303 - 1450 15163.926 957.47585 0 3765.6103 -17.923459 - 1500 19223.688 204.15175 0 3764.0939 -1.6134531 - 1550 18147.996 404.12677 0 3764.8668 8.4194779 - 1600 18615.043 317.42467 0 3764.6548 -2.3288934 - 1650 20120.654 38.887913 0 3764.935 -8.7620277 - 1700 19450.907 162.98272 0 3765.0025 2.3254731 - 1750 19374.632 177.37966 0 3765.2744 8.9328774 - 1800 19424.404 167.93966 0 3765.0514 0.081230261 - 1850 17936.249 442.84231 0 3764.3699 6.6010636 - 1900 19982.595 64.406198 0 3764.8868 -2.9529813 - 1950 16215.852 761.91287 0 3764.8485 13.994708 - 2000 18584.422 322.12049 0 3763.68 7.1654003 - 2050 20107.965 41.025754 0 3764.723 -0.3109069 - 2100 20002.333 60.593017 0 3764.7288 -6.7919784 - 2150 16949.762 626.59623 0 3765.441 3.508941 - 2200 20010.953 58.808279 0 3764.5403 -10.862172 - 2250 18982.73 247.00892 0 3762.3292 -0.53807815 - 2300 18401.298 354.87973 0 3762.5274 1.0920554 - 2350 19390.524 172.9415 0 3763.7793 -3.3524932 - 2400 16080.801 786.38838 0 3764.3146 -16.200514 - 2450 18870.412 268.74976 0 3763.2705 11.197736 - 2500 19688.29 117.58223 0 3763.5618 4.382644 - 2550 18870.825 268.78678 0 3763.384 -5.6623656 - 2600 17019.35 611.70808 0 3763.4395 6.3109641 - 2650 18753.285 291.0596 0 3763.8902 2.4120296 - 2700 19742.456 107.20901 0 3763.2193 -0.33061303 - 2750 19522.438 148.16759 0 3763.4339 -1.6254851 - 2800 18304.801 372.55152 0 3762.3295 22.6368 - 2850 18465.36 343.48495 0 3762.9961 4.4169272 - 2900 20151.999 31.372926 0 3763.2245 1.2013699 - 2950 15498.143 892.80071 0 3762.8272 13.263724 - 3000 18728.301 294.65113 0 3762.855 8.1897838 - 3050 18538.466 330.25223 0 3763.3015 8.5865739 - 3100 19081.409 229.5907 0 3763.1849 -4.8573813 - 3150 18498.802 337.11548 0 3762.8195 1.0555321 - 3200 19925.897 73.358029 0 3763.339 -7.7325108 - 3250 19780.108 100.23785 0 3763.2209 -5.5974972 - 3300 19221.043 203.82387 0 3763.2763 4.2703251 - 3350 19025.292 240.11329 0 3763.3156 5.7708328 - 3400 18153.696 401.52086 0 3763.3164 21.076943 - 3450 18611.375 316.50396 0 3763.0548 -3.5484945 - 3500 19931.319 71.969274 0 3762.9543 1.8764978 - 3550 19747.562 106.05439 0 3763.0103 -2.5506186 - 3600 18491.39 338.4134 0 3762.7449 -4.0527808 - 3650 19757.998 104.19207 0 3763.0806 1.4865598 - 3700 20108.003 39.345514 0 3763.0498 0.062827129 - 3750 19222.505 203.28065 0 3763.0039 0.33719277 - 3800 19286.383 191.08831 0 3762.6406 -0.1826802 - 3850 19450.083 161.09138 0 3762.9587 -0.2708263 - 3900 18002.304 429.25655 0 3763.0166 -4.6832439 - 3950 17186.829 582.26502 0 3765.0111 55.816834 - 4000 16826.434 645.84974 0 3761.856 19.675962 - 4050 19227.526 202.18151 0 3762.8344 -0.2596098 - 4100 19908.792 76.084531 0 3762.8978 -2.796813 - 4150 17821.329 462.63065 0 3762.8768 13.069155 - 4200 19917.133 74.574998 0 3762.9329 -6.4181155 - 4250 19012.618 241.96787 0 3762.823 4.0847974 - 4300 19077.34 229.98133 0 3762.8221 4.324323 - 4350 19361.128 177.47406 0 3762.8681 -7.377974 - 4400 18565.044 324.95107 0 3762.9223 2.5229032 - 4450 19352.406 178.98756 0 3762.7665 0.10862717 - 4500 18482.218 340.15496 0 3762.788 12.518301 - 4550 18359.732 362.83749 0 3762.7879 3.7500902 - 4600 19623.618 128.71624 0 3762.7196 -1.1328521 - 4650 17565.707 509.99904 0 3762.9078 1.7135935 - 4700 19876.052 81.892814 0 3762.6431 0.32476108 - 4750 19022.676 239.92262 0 3762.6403 -0.24613022 - 4800 18862.685 269.24248 0 3762.3324 6.2733979 - 4850 19899.174 77.426145 0 3762.4584 0.42535238 - 4900 18250.865 382.72867 0 3762.5185 23.308462 - 4950 18895.847 263.22651 0 3762.4575 8.0634675 - 5000 19096.705 225.69358 0 3762.1204 3.6816481 - 5050 16546.294 698.91312 0 3763.0416 17.453618 - 5100 19501.208 151.20999 0 3762.5449 -1.1231291 - 5150 19479.879 155.00669 0 3762.3917 -3.983378 - 5200 17397.818 541.23039 0 3763.0485 6.1109992 - 5250 18564.869 324.10557 0 3762.0442 9.2244762 - 5300 16271.663 747.52374 0 3760.7947 -6.5256602 - 5350 19831.418 89.851887 0 3762.3367 -2.3453958 - 5400 18723.697 294.67435 0 3762.0256 4.6822081 - 5450 19547.28 142.21934 0 3762.086 -5.5243408 - 5500 19415.447 166.68729 0 3762.1404 -9.5658991 - 5550 18492.721 337.54773 0 3762.1256 6.5184903 - 5600 19391.389 171.14375 0 3762.1416 -0.53835361 - 5650 18503.465 334.62751 0 3761.1951 4.6580363 - 5700 18153.344 399.91064 0 3761.6409 12.851587 - 5750 18342.297 365.14769 0 3761.8694 2.7148176 - 5800 19583.241 135.64969 0 3762.1758 -1.089608 - 5850 15967.283 804.18382 0 3761.088 11.278762 - 5900 19040.271 235.35509 0 3761.3312 5.1352158 - 5950 17920.962 443.17951 0 3761.8762 4.9621366 - 6000 19100.92 224.3946 0 3761.602 -9.537589 - 6050 17982.119 432.3251 0 3762.3472 -2.851617 - 6100 16233.096 755.46191 0 3761.5908 25.113316 - 6150 18316.543 370.01118 0 3761.9635 -1.7445703 - 6200 18483.464 339.13282 0 3761.9966 -2.0857447 - 6250 18609.406 315.56032 0 3761.7467 -12.289208 - 6300 17167.919 582.68212 0 3761.9264 -3.8263397 - 6350 17870.329 452.58116 0 3761.9013 -3.3843134 - 6400 19309.717 186.11786 0 3761.9913 -4.9462739 - 6450 17964.073 435.39924 0 3762.0794 12.272972 - 6500 18772.847 285.61959 0 3762.0727 6.7928648 - 6550 18915.116 259.41365 0 3762.213 -4.1449761 - 6600 19446.628 161.18763 0 3762.415 -2.1906581 - 6650 16348.787 734.99282 0 3762.546 -9.9624546 - 6700 19066.684 231.43863 0 3762.3061 -5.362833 - 6750 14890.323 1004.547 0 3762.0143 37.373013 - 6800 18235.19 385.253 0 3762.1401 0.21012662 - 6850 16447.997 716.11276 0 3762.0382 -9.2095411 - 6900 18343.362 364.81902 0 3761.7379 10.417932 - 6950 16014.084 797.13348 0 3762.7046 6.7906777 - 7000 19120.393 221.29236 0 3762.1059 -1.3461375 - 7050 18055.409 418.30136 0 3761.8957 1.5772317 - 7100 18407.231 353.41868 0 3762.1652 0.61071769 - 7150 18728.136 293.64021 0 3761.8136 5.1649654 - 7200 17706.628 483.07628 0 3762.0815 18.000708 - 7250 19349.505 178.89673 0 3762.1385 2.540201 - 7300 20016.293 55.389159 0 3762.1101 -1.5793163 - 7350 19398.573 169.86661 0 3762.1949 -5.060123 - 7400 19466.526 157.37407 0 3762.2862 1.7158273 - 7450 18440.348 347.09196 0 3761.9712 12.781963 - 7500 19989.907 60.555934 0 3762.3906 -1.5033319 - 7550 19667.28 120.27403 0 3762.363 -3.3502366 - 7600 18497.707 336.15863 0 3761.66 1.7887539 - 7650 17901.957 447.17282 0 3762.3501 0.016725252 - 7700 19758.725 103.3129 0 3762.3361 -23.534448 - 7750 19443.957 161.6532 0 3762.386 -10.323924 - 7800 19776.178 100.1773 0 3762.4324 6.0854422 - 7850 19242.512 198.86705 0 3762.2952 5.2823659 - 7900 19499.929 151.30366 0 3762.4017 12.299911 - 7950 19630.317 127.19541 0 3762.4393 8.0799632 - 8000 19872.384 82.421129 0 3762.4923 2.2126691 - 8050 17747.038 476.27982 0 3762.7683 -7.7042786 - 8100 18832.654 274.78106 0 3762.3095 13.882157 - 8150 19949.814 68.09711 0 3762.5072 -0.54410896 - 8200 17555.866 511.02517 0 3762.1115 6.2471175 - 8250 17800.1 465.9992 0 3762.314 13.583485 - 8300 19755.224 103.89732 0 3762.2721 -1.487243 - 8350 17583.61 506.17539 0 3762.3995 -9.7819128 - 8400 18529.003 330.75623 0 3762.0532 14.731228 - 8450 20155.902 29.797078 0 3762.3716 -8.5711085 - 8500 18047.548 420.54645 0 3762.685 7.3875118 - 8550 19790.794 97.493375 0 3762.4553 -3.3427911 - 8600 19997.902 59.172074 0 3762.4874 3.3479688 - 8650 19987.319 61.148363 0 3762.5037 -1.889232 - 8700 19363.91 176.41833 0 3762.3276 -9.4291288 - 8750 18712.689 296.3979 0 3761.7107 5.9221369 - 8800 19783.17 98.860518 0 3762.4105 -3.5262066 - 8850 18796.049 281.60057 0 3762.3504 -8.2913002 - 8900 16738.277 662.62261 0 3762.3035 8.5838631 - 8950 17869.613 452.25006 0 3761.4377 11.561101 - 9000 18682.512 302.27997 0 3762.0043 3.8878724 - 9050 17513.759 518.50265 0 3761.7914 23.05778 - 9100 17500.686 521.57944 0 3762.4473 -2.8435751 - 9150 19645.683 124.43597 0 3762.5254 -3.0193092 - 9200 18898.897 262.76552 0 3762.5612 3.5891701 - 9250 20114.279 37.614866 0 3762.4813 -0.58120871 - 9300 19562.613 139.54073 0 3762.2468 -3.2630158 - 9350 19679.811 118.05865 0 3762.468 -3.4644363 - 9400 19297.384 188.84527 0 3762.4349 0.40498037 - 9450 18267.029 379.52581 0 3762.309 -0.13762867 - 9500 19951.072 67.63844 0 3762.2814 -7.575539 - 9550 19134.562 218.46835 0 3761.9057 -1.9626244 - 9600 19089.093 227.29178 0 3762.3089 -1.94158 - 9650 16964.603 620.71289 0 3762.3061 16.987042 - 9700 18846.881 271.3129 0 3761.4761 3.4458802 - 9750 19309.225 186.0142 0 3761.7966 9.4048627 - 9800 16359.704 733.51007 0 3763.0849 15.870164 - 9850 19958.532 66.203725 0 3762.2282 6.0043645 - 9900 19864.564 83.502384 0 3762.1253 -0.65360617 - 9950 18996.789 244.25101 0 3762.1749 -2.4961826 - 10000 17933.494 441.33587 0 3762.3532 -6.0731708 -Loop time of 3.80061 on 1 procs for 10000 steps with 81 atoms - -Performance: 22733.175 tau/day, 2631.155 timesteps/s -100.0% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.11276 | 0.11276 | 0.11276 | 0.0 | 2.97 -Neigh | 0.075881 | 0.075881 | 0.075881 | 0.0 | 2.00 -Comm | 0.011113 | 0.011113 | 0.011113 | 0.0 | 0.29 -Output | 0.0016332 | 0.0016332 | 0.0016332 | 0.0 | 0.04 -Modify | 3.5918 | 3.5918 | 3.5918 | 0.0 | 94.51 -Other | | 0.007383 | | | 0.19 - -Nlocal: 81 ave 81 max 81 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 71 ave 71 max 71 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 612 ave 612 max 612 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 612 -Ave neighs/atom = 7.55556 -Neighbor list builds = 989 -Dangerous builds = 906 - -Please see the log.cite file for references relevant to this simulation - -Total wall time: 0:00:03 diff --git a/examples/rigid/log.5Oct16.rigid.poems2.g++.4 b/examples/rigid/log.5Oct16.rigid.poems2.g++.4 deleted file mode 100644 index b408fb6f098ec6b74d06d4b9f44cf19efdbf47fc..0000000000000000000000000000000000000000 --- a/examples/rigid/log.5Oct16.rigid.poems2.g++.4 +++ /dev/null @@ -1,336 +0,0 @@ -LAMMPS (5 Oct 2016) -# Simple rigid body system - -units lj -atom_style atomic - -pair_style lj/cut 2.5 - -read_data data.rigid - orthogonal box = (-12 -12 -12) to (12 12 12) - 1 by 2 by 2 MPI processor grid - reading atoms ... - 81 atoms - -velocity all create 100.0 4928459 - -# unconnected bodies - -#group clump1 id <> 1 9 -#group clump2 id <> 10 18 -#group clump3 id <> 19 27 -#group clump4 id <> 28 36 -#group clump5 id <> 37 45 -#group clump6 id <> 46 54 -#group clump7 id <> 55 63 -#group clump8 id <> 64 72 -#group clump9 id <> 73 81 - -#fix 1 all rigid group 9 clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 - -# 1 chain of connected bodies - -#group clump1 id <> 1 9 -#group clump2 id <> 9 18 -#group clump3 id <> 18 27 -#group clump4 id <> 27 36 -#group clump5 id <> 36 45 -#group clump6 id <> 45 54 -#group clump7 id <> 54 63 -#group clump8 id <> 63 72 -#group clump9 id <> 72 81 - -#fix 1 all poems group clump1 clump2 clump3 clump4 clump5 # clump6 clump7 clump8 clump9 - -# 2 chains of connected bodies - -group clump1 id <> 1 9 -9 atoms in group clump1 -group clump2 id <> 9 18 -10 atoms in group clump2 -group clump3 id <> 18 27 -10 atoms in group clump3 -group clump4 id <> 27 36 -10 atoms in group clump4 -group clump5 id <> 37 45 -9 atoms in group clump5 -group clump6 id <> 45 54 -10 atoms in group clump6 -group clump7 id <> 54 63 -10 atoms in group clump7 -group clump8 id <> 63 72 -10 atoms in group clump8 -group clump9 id <> 72 81 -10 atoms in group clump9 - -fix 1 all poems group clump1 clump2 clump3 clump4 -1 clusters, 4 bodies, 3 joints, 36 atoms -fix 2 all poems group clump5 clump6 clump7 clump8 clump9 -1 clusters, 5 bodies, 4 joints, 45 atoms - -neigh_modify exclude group clump1 clump1 -neigh_modify exclude group clump2 clump2 -neigh_modify exclude group clump3 clump3 -neigh_modify exclude group clump4 clump4 -neigh_modify exclude group clump5 clump5 -neigh_modify exclude group clump6 clump6 -neigh_modify exclude group clump7 clump7 -neigh_modify exclude group clump8 clump8 -neigh_modify exclude group clump9 clump9 - -thermo 100 - -#dump 1 all atom 50 dump.rigid.poems2 - -#dump 2 all image 100 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 -#dump_modify 2 pad 5 - -#dump 3 all movie 100 movie.mpg type type # axes yes 0.8 0.02 view 60 -30 -#dump_modify 3 pad 5 - -timestep 0.0001 -thermo 50 -run 10000 -WARNING: More than one fix poems (../fix_poems.cpp:352) -WARNING: More than one fix poems (../fix_poems.cpp:352) -WARNING: One or more atoms are time integrated more than once (../modify.cpp:269) -Neighbor list info ... - 1 neighbor list requests - update every 1 steps, delay 10 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 2.8 - ghost atom cutoff = 2.8 - binsize = 1.4 -> bins = 18 18 18 -Memory usage per processor = 3.50303 Mbytes -Step Temp E_pair E_mol TotEng Press - 0 196.00047 3632.2347 0 3668.5311 -2.7403788 - 50 12167.633 1505.5478 0 3758.8133 35.125973 - 100 17556.978 512.66277 0 3763.9549 11.137534 - 150 19579.586 138.04942 0 3763.8987 -29.953971 - 200 19757.51 105.30542 0 3764.1036 -0.030645317 - 250 18218.374 390.10747 0 3763.8804 13.711001 - 300 19383.039 174.40688 0 3763.8586 5.7240693 - 350 20125.986 36.972611 0 3764.0071 1.9559205 - 400 18888.816 266.10975 0 3764.0386 9.6362168 - 450 19307.656 188.2511 0 3763.743 1.9326206 - 500 16331.197 738.56392 0 3762.8597 9.1715579 - 550 19318.722 186.16172 0 3763.7027 3.0115336 - 600 19455.268 161.20621 0 3764.0336 0.55208034 - 650 18487.011 340.03216 0 3763.5528 -8.0359122 - 700 17321.201 556.32471 0 3763.9545 -13.631751 - 750 18979.187 249.04389 0 3763.7082 -2.6072455 - 800 19342.456 181.85552 0 3763.7918 8.1918726 - 850 19070.641 232.19342 0 3763.7936 7.3148472 - 900 19478.873 156.65987 0 3763.8586 2.4284987 - 950 19912.415 76.437437 0 3763.9216 -1.4667227 - 1000 16003.749 802.39753 0 3766.0548 46.642188 - 1050 19859.583 86.64176 0 3764.3424 -2.1961943 - 1100 19229.575 203.61488 0 3764.6473 -10.632365 - 1150 18821.6 279.15861 0 3764.64 -0.89495035 - 1200 19392.695 173.59744 0 3764.8373 1.8508753 - 1250 16459.624 717.32104 0 3765.3995 33.478127 - 1300 19343.863 182.59043 0 3764.7874 0.75890736 - 1350 20019.643 57.503573 0 3764.8448 0.31444671 - 1400 18549.582 329.31436 0 3764.4221 10.738303 - 1450 15163.926 957.47585 0 3765.6103 -17.923459 - 1500 19223.688 204.15176 0 3764.0939 -1.6134529 - 1550 18147.996 404.12677 0 3764.8668 8.4194781 - 1600 18615.043 317.42468 0 3764.6548 -2.3288926 - 1650 20120.654 38.887908 0 3764.935 -8.7620288 - 1700 19450.907 162.98267 0 3765.0025 2.3254739 - 1750 19374.631 177.3797 0 3765.2744 8.9328773 - 1800 19424.404 167.93965 0 3765.0514 0.081228843 - 1850 17936.227 442.84645 0 3764.3699 6.6011251 - 1900 19982.595 64.406244 0 3764.8868 -2.952971 - 1950 16215.818 761.91942 0 3764.8486 13.994877 - 2000 18584.433 322.11846 0 3763.6801 7.1653695 - 2050 20107.965 41.025796 0 3764.723 -0.31089763 - 2100 20002.329 60.593879 0 3764.7288 -6.7919882 - 2150 16949.817 626.58598 0 3765.4409 3.5087505 - 2200 20010.954 58.8082 0 3764.5403 -10.862143 - 2250 18982.732 247.00854 0 3762.3293 -0.53812607 - 2300 18401.276 354.88369 0 3762.5274 1.0921058 - 2350 19390.535 172.93951 0 3763.7793 -3.3524354 - 2400 16080.475 786.44896 0 3764.3146 -16.201558 - 2450 18870.293 268.77171 0 3763.2704 11.199749 - 2500 19688.508 117.54164 0 3763.5617 4.3806994 - 2550 18870.328 268.87896 0 3763.3841 -5.6641099 - 2600 17020.211 611.54841 0 3763.4394 6.3081434 - 2650 18748.838 291.88478 0 3763.8917 2.4175163 - 2700 19743.991 106.92945 0 3763.224 -0.33916964 - 2750 19525.446 147.60906 0 3763.4324 -1.6251174 - 2800 18257.411 381.40184 0 3762.4038 23.39495 - 2850 18496.796 337.65425 0 3762.9868 4.3657735 - 2900 20163.418 29.253902 0 3763.2203 1.4431917 - 2950 16823.317 646.69817 0 3762.1273 4.9041552 - 3000 19223.007 203.2529 0 3763.069 4.0414458 - 3050 17391.02 542.93746 0 3763.4968 15.139863 - 3100 19205.6 206.57791 0 3763.1705 4.8519241 - 3150 19835.659 90.247763 0 3763.5179 -14.900053 - 3200 18962.776 251.5838 0 3763.2089 -13.706561 - 3250 19418.837 167.29058 0 3763.3716 -2.0866468 - 3300 18628.291 313.69067 0 3763.3742 5.9919715 - 3350 17465.974 529.14439 0 3763.5841 14.122593 - 3400 18488.661 339.6186 0 3763.4448 21.526798 - 3450 19163.152 214.26098 0 3762.9928 4.1888096 - 3500 18000.27 429.81789 0 3763.2011 5.4734485 - 3550 19582.423 136.71887 0 3763.0935 -2.5335675 - 3600 19634.325 127.2219 0 3763.208 -1.9728322 - 3650 19428.114 165.40707 0 3763.2059 -2.3318779 - 3700 19861.116 85.356944 0 3763.3414 -3.9097609 - 3750 19337.239 182.43992 0 3763.4102 -3.3559651 - 3800 19493.146 153.40349 0 3763.2453 -0.71089657 - 3850 18607.616 317.74889 0 3763.6037 3.475832 - 3900 19719.59 111.5553 0 3763.3313 0.58876668 - 3950 19756.661 104.5522 0 3763.1931 3.7526698 - 4000 17904.708 447.1673 0 3762.854 12.270654 - 4050 19588.087 135.80435 0 3763.2279 0.94578945 - 4100 19065.901 232.38235 0 3763.1048 -2.7495195 - 4150 18775.075 286.2257 0 3763.0915 -3.7039858 - 4200 18800.725 281.46601 0 3763.0817 0.15619543 - 4250 19732.687 108.90618 0 3763.1075 3.0865861 - 4300 18278.151 377.63653 0 3762.4794 1.5768601 - 4350 17915.757 445.4804 0 3763.2133 -3.7040484 - 4400 15987.794 802.41575 0 3763.1183 22.252078 - 4450 19302.37 188.69495 0 3763.2079 0.91081327 - 4500 20039.32 52.304099 0 3763.2893 -2.0828905 - 4550 19535.953 145.4374 0 3763.2064 -3.3804255 - 4600 19700.723 114.79823 0 3763.0803 -1.1761163 - 4650 17804.641 465.85788 0 3763.0136 7.5947192 - 4700 19913.881 75.240289 0 3762.996 -2.1100557 - 4750 19982.484 62.535995 0 3762.996 -4.5821237 - 4800 17400.76 540.21707 0 3762.58 -5.8418778 - 4850 19199.88 206.90989 0 3762.4433 3.4536341 - 4900 19173.92 212.11327 0 3762.8392 5.0387071 - 4950 19236.635 200.57537 0 3762.9152 -1.4932783 - 5000 19077.616 230.04967 0 3762.9415 4.3742655 - 5050 19893.763 78.909747 0 3762.94 -1.5796711 - 5100 18884.746 265.68301 0 3762.8583 2.2767949 - 5150 17417.096 537.54036 0 3762.9286 -2.8632555 - 5200 18247.844 383.60092 0 3762.8312 10.384179 - 5250 19494.107 152.60532 0 3762.6251 -4.7617287 - 5300 18739.781 292.46206 0 3762.7919 23.210048 - 5350 19310.938 186.62363 0 3762.7232 14.895327 - 5400 19540.39 144.14287 0 3762.7336 6.094624 - 5450 20074.459 45.247888 0 3762.7403 -2.0871835 - 5500 19986.377 61.668045 0 3762.849 -2.4551918 - 5550 19038.904 237.07578 0 3762.7987 5.4250813 - 5600 19439.124 163.1438 0 3762.9816 4.1291468 - 5650 19480.321 155.58325 0 3763.0501 -3.5308058 - 5700 19869.291 83.651379 0 3763.1497 -7.8661592 - 5750 19991.447 61.068554 0 3763.1884 -6.8473586 - 5800 19454.072 160.36805 0 3762.9739 1.527662 - 5850 17994.409 430.95597 0 3763.2539 -5.6078082 - 5900 19209.794 205.74997 0 3763.1193 8.4113055 - 5950 19046.427 236.06321 0 3763.1793 10.463356 - 6000 19409.899 168.95271 0 3763.3785 2.542067 - 6050 18068.174 417.35443 0 3763.3125 10.498199 - 6100 19549.253 143.21885 0 3763.4509 2.3075797 - 6150 18464.719 344.0303 0 3763.4228 0.46469762 - 6200 19811.205 94.62725 0 3763.3689 1.2382763 - 6250 18715.36 297.26445 0 3763.0718 -3.4541762 - 6300 17115.664 594.09913 0 3763.6666 4.2065564 - 6350 18155.927 400.71764 0 3762.9264 1.1521258 - 6400 19873.093 83.169067 0 3763.3716 0.16383592 - 6450 19991.88 61.13218 0 3763.3321 -1.3008128 - 6500 19434.416 164.40698 0 3763.3728 -13.593422 - 6550 19855.253 86.645329 0 3763.544 -0.85704037 - 6600 19251.141 198.41152 0 3763.4376 4.3027745 - 6650 19741.815 107.69047 0 3763.582 4.994835 - 6700 19633.466 127.69333 0 3763.5203 6.3677145 - 6750 16231.353 757.83705 0 3763.6431 -1.5978692 - 6800 18863.396 270.1114 0 3763.3329 -11.915909 - 6850 19644.779 125.29421 0 3763.2163 -1.151217 - 6900 18883.642 266.06889 0 3763.0397 -4.3950749 - 6950 19042.364 236.54144 0 3762.9052 5.5718878 - 7000 18351.868 364.38028 0 3762.8743 7.8958273 - 7050 19981.031 62.840667 0 3763.0316 -5.8572298 - 7100 19796.372 97.073665 0 3763.0685 -3.5178361 - 7150 19805.385 95.235221 0 3762.899 -2.5481726 - 7200 18722.055 295.86113 0 3762.9084 13.826356 - 7250 19537.304 144.54234 0 3762.5616 1.2288666 - 7300 18787.328 283.49504 0 3762.6299 9.0044469 - 7350 18886.005 265.52121 0 3762.9295 6.6791881 - 7400 19891.864 79.239278 0 3762.9178 -2.3882842 - 7450 18164.752 399.07065 0 3762.9137 3.9400481 - 7500 18702.612 299.582 0 3763.0286 4.7987316 - 7550 19884.986 80.231665 0 3762.6365 -0.75016515 - 7600 19549.059 142.16243 0 3762.3586 -2.1035756 - 7650 18223.668 387.9047 0 3762.658 -17.064339 - 7700 19428.4 164.79531 0 3762.6473 -2.8342541 - 7750 19239.584 199.93029 0 3762.8163 3.1746033 - 7800 19458.005 159.46176 0 3762.7961 1.714515 - 7850 18320.308 369.77051 0 3762.4202 2.1422976 - 7900 18817.415 278.04812 0 3762.7546 0.94492621 - 7950 19892.761 79.115928 0 3762.9606 1.4948501 - 8000 19592.344 134.7639 0 3762.9758 -1.8520224 - 8050 19316.109 185.70579 0 3762.7631 -4.8061205 - 8100 19867.017 83.850395 0 3762.9277 -3.496391 - 8150 19129.936 220.29802 0 3762.8789 -2.8357376 - 8200 18449.554 346.30415 0 3762.8883 1.4417837 - 8250 18405.197 354.49049 0 3762.8602 6.7020283 - 8300 18310.437 372.25376 0 3763.0755 3.9043508 - 8350 18842.702 273.55075 0 3762.94 -10.987272 - 8400 18574.308 323.33378 0 3763.0204 12.008785 - 8450 15368.628 918.21692 0 3764.2591 34.80292 - 8500 18432.887 349.54013 0 3763.0378 0.00064258465 - 8550 15777.73 841.79263 0 3763.5945 15.473699 - 8600 17205.381 576.4515 0 3762.6331 2.3985544 - 8650 19773.742 101.48276 0 3763.2869 2.3978892 - 8700 19059.824 232.99716 0 3762.5941 5.2611349 - 8750 19006.086 243.41125 0 3763.0568 4.7880403 - 8800 19492.691 153.0188 0 3762.7763 1.9118755 - 8850 19625.883 128.44474 0 3762.8675 3.4157389 - 8900 19916.97 74.635094 0 3762.9629 -10.157254 - 8950 16012.956 798.16801 0 3763.5302 16.904998 - 9000 19364.051 177.00354 0 3762.9389 -13.373346 - 9050 19133.929 219.61882 0 3762.9389 -7.3824392 - 9100 18657.168 307.85939 0 3762.8905 9.3071421 - 9150 17975.904 434.21548 0 3763.0867 6.9609506 - 9200 19075.282 230.41699 0 3762.8767 7.0961232 - 9250 20115.276 37.578674 0 3762.6298 1.8678552 - 9300 18195.486 393.20682 0 3762.7413 13.272552 - 9350 19617.155 129.85893 0 3762.6653 -2.0849447 - 9400 19276.325 193.03425 0 3762.724 -2.8963555 - 9450 18642.803 310.4759 0 3762.8467 3.407984 - 9500 19175.951 211.72785 0 3762.8298 -0.39025564 - 9550 17669.191 490.85942 0 3762.9319 5.3867954 - 9600 18481.199 340.29485 0 3762.7391 8.9004886 - 9650 20091.442 42.504743 0 3763.1422 -1.3206133 - 9700 19651.405 124.04835 0 3763.1975 1.4000525 - 9750 19138.245 219.03637 0 3763.1558 5.8352794 - 9800 19189.146 209.67958 0 3763.2251 6.214691 - 9850 19899.376 78.096337 0 3763.166 -0.75102404 - 9900 19447.247 161.27279 0 3762.6149 -6.4166376 - 9950 19807.083 95.152663 0 3763.1309 -0.88933698 - 10000 18972.157 249.56342 0 3762.9258 1.9189241 -Loop time of 3.99472 on 4 procs for 10000 steps with 81 atoms - -Performance: 21628.565 tau/day, 2503.306 timesteps/s -99.7% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.0090363 | 0.029554 | 0.05092 | 8.8 | 0.74 -Neigh | 0.0090437 | 0.021045 | 0.034359 | 6.3 | 0.53 -Comm | 0.1326 | 0.17829 | 0.2132 | 7.3 | 4.46 -Output | 0.0044832 | 0.0048217 | 0.0053875 | 0.5 | 0.12 -Modify | 3.6632 | 3.7381 | 3.8211 | 2.9 | 93.58 -Other | | 0.02291 | | | 0.57 - -Nlocal: 20.25 ave 37 max 0 min -Histogram: 1 0 1 0 0 0 0 0 0 2 -Nghost: 17.75 ave 33 max 4 min -Histogram: 2 0 0 0 0 0 0 0 1 1 -Neighs: 144.75 ave 356 max 0 min -Histogram: 2 0 0 0 0 0 1 0 0 1 - -Total # of neighbors = 579 -Ave neighs/atom = 7.14815 -Neighbor list builds = 994 -Dangerous builds = 958 - -Please see the log.cite file for references relevant to this simulation - -Total wall time: 0:00:03 diff --git a/examples/rigid/log.5Oct16.rigid.tnr.g++.1 b/examples/rigid/log.5Oct16.rigid.tnr.g++.1 deleted file mode 100644 index 935b7eaf073db00214c230a128fc1e43153dad2e..0000000000000000000000000000000000000000 --- a/examples/rigid/log.5Oct16.rigid.tnr.g++.1 +++ /dev/null @@ -1,452 +0,0 @@ -LAMMPS (5 Oct 2016) -# Tethered nanorods - -atom_style molecular - -read_data data.rigid.tnr - orthogonal box = (-31.122 -31.122 -31.122) to (31.122 31.122 31.122) - 1 by 1 by 1 MPI processor grid - reading atoms ... - 5600 atoms - scanning bonds ... - 1 = max bonds/atom - reading bonds ... - 1600 bonds - 2 = max # of 1-2 neighbors - 1 = max # of 1-3 neighbors - 1 = max # of 1-4 neighbors - 2 = max # of special neighbors - -# Specify bond parameters - -bond_style fene -bond_coeff 1 30.0 1.5 1.0 1.0 - -special_bonds fene - 2 = max # of 1-2 neighbors - 2 = max # of special neighbors - -# Specify initial velocities - -velocity all create 1.4 109345 - -# Specify rigid components - -group rods type 2 -4000 atoms in group rods -group tethers subtract all rods -1600 atoms in group tethers - -neigh_modify exclude molecule rods delay 0 every 1 - -# Specify the pair potentials - -pair_style lj/cut 2.5 -pair_modify shift yes -pair_coeff * * 1.0 1.0 1.122 -pair_coeff 2 2 1.0 1.0 2.5 - -# Specify output - -thermo 100 -thermo_style custom step temp pe etotal press enthalpy lx ly lz pxx pyy pzz -thermo_modify flush yes lost warn - -timestep 0.005 - -fix 1 rods rigid molecule -800 rigid bodies with 4000 atoms -fix 2 tethers nve -fix 3 all langevin 1.4 1.4 1.0 437624 - -run 5000 -Neighbor list info ... - 1 neighbor list requests - update every 1 steps, delay 0 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 2.8 - ghost atom cutoff = 2.8 - binsize = 1.4 -> bins = 45 45 45 -Memory usage per processor = 7.32042 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 0 1.3963219 5.9478449 7.0445809 0.048565317 9.13595 62.244 62.244 62.244 0.0091983659 0.11850113 0.017996458 - 100 1.3418512 5.9671777 7.0211299 0.025020362 8.0985822 62.244 62.244 62.244 0.02036076 0.038265078 0.016435248 - 200 1.3730638 5.9750802 7.0535483 0.0053287535 7.2830205 62.244 62.244 62.244 -0.00054924195 0.0092396988 0.0072958036 - 300 1.376262 5.9821642 7.0631443 0.0055536521 7.3023013 62.244 62.244 62.244 0.0033577704 0.0069111861 0.0063919998 - 400 1.3782954 5.9983628 7.08094 0.0020507385 7.169251 62.244 62.244 62.244 -0.0060862717 0.0098998072 0.0023386801 - 500 1.386863 6.0053312 7.0946377 -0.0009847031 7.0522334 62.244 62.244 62.244 -0.0038708372 0.0005697804 0.00034694745 - 600 1.4069849 6.0035719 7.1086832 0.0047883912 7.3148858 62.244 62.244 62.244 0.001069365 0.0078059505 0.0054898581 - 700 1.4423187 5.9982171 7.1310812 0.012141001 7.6539093 62.244 62.244 62.244 0.0094765272 0.011007593 0.015938883 - 800 1.4303878 5.9968168 7.1203098 -0.00081349095 7.0852784 62.244 62.244 62.244 0.0011153812 0.00041597298 -0.0039718271 - 900 1.4140538 5.9838168 7.0944803 0.00207609 7.183883 62.244 62.244 62.244 0.00043409671 0.0022778944 0.0035162788 - 1000 1.3906567 5.988119 7.0804053 0.0022005856 7.1751692 62.244 62.244 62.244 0.0077268425 -0.0022042977 0.0010792119 - 1100 1.3921992 5.9892203 7.0827181 0.0035041977 7.2336194 62.244 62.244 62.244 -0.0037576823 0.0040827951 0.01018748 - 1200 1.3968803 5.9795846 7.0767592 -0.0031072146 6.9429532 62.244 62.244 62.244 -0.0077387449 0.0033056124 -0.0048885115 - 1300 1.3755848 5.9739757 7.0544239 0.0092247106 7.4516677 62.244 62.244 62.244 0.0092788748 0.010737194 0.0076580625 - 1400 1.3847985 5.9703631 7.0580481 0.0071703598 7.3668254 62.244 62.244 62.244 0.0080485848 0.012260474 0.001202021 - 1500 1.4190051 5.956946 7.0714985 0.0035992903 7.2264948 62.244 62.244 62.244 -0.0055125437 0.01038369 0.0059267242 - 1600 1.3980036 5.9671666 7.0652236 0.0061819851 7.3314385 62.244 62.244 62.244 0.0062429141 0.0035120077 0.0087910334 - 1700 1.4276062 5.9610381 7.0823462 0.007832375 7.4196319 62.244 62.244 62.244 0.0083316819 0.0058394292 0.009326014 - 1800 1.4112769 5.9630595 7.0715419 0.0068032101 7.3645087 62.244 62.244 62.244 0.0065502252 0.0062317255 0.0076276797 - 1900 1.4276973 5.9489341 7.0703139 0.008397746 7.4319462 62.244 62.244 62.244 0.0148941 0.0032963108 0.0070028268 - 2000 1.4056158 5.9564624 7.0604983 0.0090470732 7.4500926 62.244 62.244 62.244 0.011871718 0.0086681344 0.0066013673 - 2100 1.3924778 5.9483611 7.0420778 0.0088893819 7.4248814 62.244 62.244 62.244 0.010247454 0.0097830093 0.0066376825 - 2200 1.3760401 5.9435877 7.0243935 -0.0042972782 6.8393397 62.244 62.244 62.244 -0.0050064436 -0.0046216999 -0.0032636911 - 2300 1.4191937 5.9334036 7.0481042 0.0047000032 7.2505006 62.244 62.244 62.244 0.0057709635 0.0044949165 0.0038341296 - 2400 1.4213285 5.9472214 7.0635988 0.010197674 7.5027414 62.244 62.244 62.244 0.008373826 0.0090537939 0.013165402 - 2500 1.4153808 5.9421661 7.0538718 0.00015906306 7.0607216 62.244 62.244 62.244 0.002351621 -0.0019814986 0.00010706677 - 2600 1.4014223 5.9431386 7.0438807 0.0070733749 7.3484816 62.244 62.244 62.244 0.0054143871 0.010055843 0.0057498948 - 2700 1.4138077 5.9369067 7.047377 0.0024268842 7.1518859 62.244 62.244 62.244 0.0052918436 0.0014960353 0.00049277371 - 2800 1.432192 5.9347676 7.0596777 0.0077670448 7.3941501 62.244 62.244 62.244 0.012668421 0.0059113033 0.0047214106 - 2900 1.3938659 5.921023 7.01583 0.0053751198 7.2472989 62.244 62.244 62.244 0.0020490372 0.0076566093 0.006419713 - 3000 1.390221 5.9205014 7.0124455 -0.0010750977 6.9661485 62.244 62.244 62.244 0.0019519817 -0.0041878885 -0.00098938611 - 3100 1.4205722 5.9178284 7.0336117 0.0098735475 7.4587965 62.244 62.244 62.244 0.0040973361 0.012167268 0.013356039 - 3200 1.398418 5.9150349 7.0134173 0.0061541841 7.2784351 62.244 62.244 62.244 0.0067621815 0.011952563 -0.00025219251 - 3300 1.4269859 5.9148727 7.0356937 0.0060623879 7.2967584 62.244 62.244 62.244 0.012956234 -2.4806661e-05 0.0052557362 - 3400 1.434286 5.9356705 7.0622253 0.00027315892 7.0739884 62.244 62.244 62.244 -0.00054959866 0.0052526278 -0.0038835524 - 3500 1.4416809 5.9228153 7.0551783 0.0083382977 7.4142506 62.244 62.244 62.244 0.007399393 0.0030328007 0.014582699 - 3600 1.4136063 5.9039442 7.0142562 0.0019712004 7.0991421 62.244 62.244 62.244 -0.00032316149 0.0035029874 0.0027337752 - 3700 1.4333819 5.9120101 7.0378548 0.0071287182 7.3448389 62.244 62.244 62.244 0.0064768218 0.0046765361 0.010232797 - 3800 1.3659481 5.9032873 6.9761663 -0.0054033416 6.7434821 62.244 62.244 62.244 -0.0073943479 -0.0082831992 -0.00053247772 - 3900 1.3963222 5.9042998 7.0010361 0.0053310264 7.2306062 62.244 62.244 62.244 0.0081855739 0.0048806019 0.0029269034 - 4000 1.4125482 5.9060665 7.0155474 0.0028450296 7.138063 62.244 62.244 62.244 0.0052588294 0.00072395285 0.0025523065 - 4100 1.3943951 5.9040875 6.9993102 0.0058050223 7.2492919 62.244 62.244 62.244 0.0060579697 0.0024782584 0.0088788387 - 4200 1.4249768 5.8906371 7.0098801 0.0030210669 7.1399763 62.244 62.244 62.244 0.006174431 -0.002079586 0.0049683557 - 4300 1.3899801 5.8966397 6.9883947 0.0057285402 7.2350829 62.244 62.244 62.244 0.0049048136 0.0021882328 0.010092574 - 4400 1.4414352 5.898628 7.0307981 0.0050932552 7.2501291 62.244 62.244 62.244 0.0057941393 0.0037951842 0.0056904421 - 4500 1.4092913 5.8922803 6.9992031 0.0012238869 7.0519073 62.244 62.244 62.244 0.0042907674 0.0014412643 -0.0020603711 - 4600 1.3779868 5.8928757 6.9752105 0.0020701322 7.0643566 62.244 62.244 62.244 0.0029283254 -0.0031683908 0.006450462 - 4700 1.4084635 5.9098782 7.0161508 -0.00052129502 6.9937023 62.244 62.244 62.244 -0.0018460523 -0.0018286314 0.0021107986 - 4800 1.4393258 5.9148464 7.0453597 0.015311954 7.7047386 62.244 62.244 62.244 0.014718813 0.01801777 0.013199278 - 4900 1.4500008 5.9076899 7.0465879 0.0075111779 7.3700419 62.244 62.244 62.244 0.0091865271 0.0080981174 0.0052488891 - 5000 1.4279632 5.9111567 7.0327453 -0.0014189553 6.9716408 62.244 62.244 62.244 -0.0046013754 0.0019937576 -0.001649248 -Loop time of 6.51777 on 1 procs for 5000 steps with 5600 atoms - -Performance: 331401.531 tau/day, 767.133 timesteps/s -99.8% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.51894 | 0.51894 | 0.51894 | 0.0 | 7.96 -Bond | 0.24096 | 0.24096 | 0.24096 | 0.0 | 3.70 -Neigh | 1.8769 | 1.8769 | 1.8769 | 0.0 | 28.80 -Comm | 0.16548 | 0.16548 | 0.16548 | 0.0 | 2.54 -Output | 0.0032616 | 0.0032616 | 0.0032616 | 0.0 | 0.05 -Modify | 3.5349 | 3.5349 | 3.5349 | 0.0 | 54.23 -Other | | 0.1774 | | | 2.72 - -Nlocal: 5600 ave 5600 max 5600 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 1351 ave 1351 max 1351 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 5254 ave 5254 max 5254 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 5254 -Ave neighs/atom = 0.938214 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 766 -Dangerous builds = 0 - -# Replace fix rigid and fix langevin with new ones - -unfix 1 -unfix 3 - -fix 3 tethers langevin 1.4 1.4 1.0 198450 - -# Test different integrators for rods - -fix 1 rods rigid/nve molecule -800 rigid bodies with 4000 atoms -print "rigid/nve" -rigid/nve -run 1000 -Memory usage per processor = 7.32042 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 5000 1.4279632 5.9111567 7.0327453 0.027874409 8.2331015 62.244 62.244 62.244 0.018992956 0.039655696 0.024974575 - 5100 1.439608 5.9052128 7.0359478 0.0060989863 7.2985885 62.244 62.244 62.244 0.0087364157 0.004022839 0.0055377041 - 5200 1.4120672 5.9102569 7.01936 0.0064301432 7.2962614 62.244 62.244 62.244 0.0082738077 0.0038925667 0.0071240551 - 5300 1.4452434 5.8842166 7.0193778 0.008172419 7.3713068 62.244 62.244 62.244 0.0077715647 0.0068924406 0.0098532518 - 5400 1.4170243 5.887522 7.0005186 0.0008656658 7.0377968 62.244 62.244 62.244 -9.1800583e-05 -0.0020237513 0.0047125493 - 5500 1.4209082 5.8758921 6.9919394 0.0093634084 7.395156 62.244 62.244 62.244 0.0088769348 0.0087092521 0.010504038 - 5600 1.4132978 5.8798939 6.9899636 0.0014877766 7.0540317 62.244 62.244 62.244 -0.0023427923 0.004559371 0.002246751 - 5700 1.4065053 5.887541 6.9922756 0.0028083452 7.1132114 62.244 62.244 62.244 0.0025188632 0.000510969 0.0053952035 - 5800 1.4079051 5.8940739 6.999908 0.0015946158 7.0685769 62.244 62.244 62.244 0.0037830287 0.00021751956 0.00078329927 - 5900 1.4076047 5.8941577 6.9997558 0.005189853 7.2232465 62.244 62.244 62.244 -0.00093244616 0.0096403542 0.0068616509 - 6000 1.4322772 5.8903539 7.0153309 0.00029752476 7.0281432 62.244 62.244 62.244 0.001913333 -0.00073790796 -0.00028285075 -Loop time of 1.37139 on 1 procs for 1000 steps with 5600 atoms - -Performance: 315008.398 tau/day, 729.186 timesteps/s -100.0% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.1443 | 0.1443 | 0.1443 | 0.0 | 10.52 -Bond | 0.049211 | 0.049211 | 0.049211 | 0.0 | 3.59 -Neigh | 0.40564 | 0.40564 | 0.40564 | 0.0 | 29.58 -Comm | 0.033721 | 0.033721 | 0.033721 | 0.0 | 2.46 -Output | 0.00065017 | 0.00065017 | 0.00065017 | 0.0 | 0.05 -Modify | 0.70225 | 0.70225 | 0.70225 | 0.0 | 51.21 -Other | | 0.03562 | | | 2.60 - -Nlocal: 5600 ave 5600 max 5600 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 1347 ave 1347 max 1347 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 5399 ave 5399 max 5399 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 5399 -Ave neighs/atom = 0.964107 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 153 -Dangerous builds = 0 -unfix 1 - -fix 1 rods rigid/nvt molecule temp 1.4 1.4 1.0 -800 rigid bodies with 4000 atoms -print "rigid/nvt" -rigid/nvt -run 1000 -Memory usage per processor = 7.32042 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 6000 1.4322772 5.8903539 7.0153309 0.012980585 7.574314 62.244 62.244 62.244 0.058317363 0.0073619377 -0.026737547 - 6100 1.4199699 5.8764035 6.9917138 0.0054065567 7.2245364 62.244 62.244 62.244 0.0092276454 0.0019623806 0.005029644 - 6200 1.3976825 5.8924426 6.9902474 0.0004390082 7.0091524 62.244 62.244 62.244 -0.0023073118 -0.00049925474 0.0041235912 - 6300 1.4077283 5.8847362 6.9904313 0.0066398301 7.2763625 62.244 62.244 62.244 0.0058018933 0.0091933882 0.0049242089 - 6400 1.3749203 5.8817073 6.9616336 0.0074967166 7.2844648 62.244 62.244 62.244 0.012281889 0.0039781604 0.0062301007 - 6500 1.3467096 5.8881263 6.9458946 -0.00011926206 6.9407588 62.244 62.244 62.244 0.0030721983 -0.0013265855 -0.002103399 - 6600 1.3646558 5.8739857 6.9458497 0.0056064173 7.1872789 62.244 62.244 62.244 0.0059660118 0.0057680329 0.0050852071 - 6700 1.392725 5.8836119 6.9775228 0.0025583772 7.0876942 62.244 62.244 62.244 0.0030974509 0.0018499704 0.0027277104 - 6800 1.4017002 5.9015884 7.0025488 0.0039067256 7.1707842 62.244 62.244 62.244 0.0068315449 0.0020054024 0.0028832295 - 6900 1.4136756 5.8914708 7.0018372 0.005175385 7.2247049 62.244 62.244 62.244 0.0028462217 0.009405517 0.0032744161 - 7000 1.4286618 5.8935692 7.0157065 0.0062967875 7.2868652 62.244 62.244 62.244 0.0047257503 0.0093417536 0.0048228587 -Loop time of 1.38662 on 1 procs for 1000 steps with 5600 atoms - -Performance: 311550.061 tau/day, 721.181 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.14525 | 0.14525 | 0.14525 | 0.0 | 10.48 -Bond | 0.048966 | 0.048966 | 0.048966 | 0.0 | 3.53 -Neigh | 0.40266 | 0.40266 | 0.40266 | 0.0 | 29.04 -Comm | 0.033521 | 0.033521 | 0.033521 | 0.0 | 2.42 -Output | 0.00064969 | 0.00064969 | 0.00064969 | 0.0 | 0.05 -Modify | 0.71998 | 0.71998 | 0.71998 | 0.0 | 51.92 -Other | | 0.03559 | | | 2.57 - -Nlocal: 5600 ave 5600 max 5600 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 1284 ave 1284 max 1284 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 5677 ave 5677 max 5677 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 5677 -Ave neighs/atom = 1.01375 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 151 -Dangerous builds = 0 -unfix 1 - -compute myTemp all temp - -fix 1 rods rigid/npt molecule temp 1.4 1.4 1.0 iso 0.05 0.05 1.0 dilate all -800 rigid bodies with 4000 atoms -print "rigid/npt iso" -rigid/npt iso -fix_modify 1 temp myTemp - -run 1000 -Memory usage per processor = 7.32042 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 7000 1.4286618 5.8935692 7.0157065 0.032107544 8.3983542 62.244 62.244 62.244 0.0040119822 0.040455544 0.051855105 - 7100 1.4709107 5.8870981 7.0424197 0.019698532 7.6954221 57.045709 57.045709 57.045709 0.012930036 0.020495433 0.025670125 - 7200 1.5163014 5.8421234 7.0330969 0.018918793 7.4624535 50.277182 50.277182 50.277182 0.017832308 0.02668088 0.012243191 - 7300 1.5675512 5.7752788 7.0065063 0.02287049 7.3825189 45.15491 45.15491 45.15491 0.019317818 0.024266569 0.025027083 - 7400 1.5432894 5.7512252 6.9633963 0.024351591 7.2723284 41.416611 41.416611 41.416611 0.032039305 0.022247464 0.018768005 - 7500 1.5510339 5.7073864 6.9256404 0.030706866 7.2413185 38.612893 38.612893 38.612893 0.04157713 0.012507079 0.038036388 - 7600 1.5435609 5.6657445 6.8781288 0.03187398 7.1535577 36.440727 36.440727 36.440727 0.036502896 0.022097075 0.037021969 - 7700 1.5862733 5.6141666 6.8600993 0.053474714 7.2612259 34.762178 34.762178 34.762178 0.035691782 0.06016314 0.064569222 - 7800 1.5106894 5.6005849 6.7871505 0.028896219 6.982719 33.59041 33.59041 33.59041 0.031167851 0.013090267 0.042430539 - 7900 1.472566 5.5634394 6.7200611 0.092340877 7.2955261 32.679168 32.679168 32.679168 0.060527481 0.10093222 0.11556293 - 8000 1.4805391 5.5132684 6.6761526 0.040035619 6.9105042 32.003919 32.003919 32.003919 0.04381615 0.023706176 0.052584532 -Loop time of 3.05773 on 1 procs for 1000 steps with 5600 atoms - -Performance: 141281.224 tau/day, 327.040 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.37231 | 0.37231 | 0.37231 | 0.0 | 12.18 -Bond | 0.07144 | 0.07144 | 0.07144 | 0.0 | 2.34 -Neigh | 1.3968 | 1.3968 | 1.3968 | 0.0 | 45.68 -Comm | 0.071773 | 0.071773 | 0.071773 | 0.0 | 2.35 -Output | 0.00065684 | 0.00065684 | 0.00065684 | 0.0 | 0.02 -Modify | 1.0951 | 1.0951 | 1.0951 | 0.0 | 35.82 -Other | | 0.04962 | | | 1.62 - -Nlocal: 5600 ave 5600 max 5600 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 2963 ave 2963 max 2963 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 25797 ave 25797 max 25797 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 25797 -Ave neighs/atom = 4.60661 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 334 -Dangerous builds = 0 -unfix 1 - -fix 1 rods rigid/npt molecule temp 1.4 1.4 1.0 x 0.05 0.05 1.0 dilate all -800 rigid bodies with 4000 atoms -print "rigid/npt x" -rigid/npt x -run 1000 -Memory usage per processor = 7.32428 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 8000 1.4805391 5.5132684 6.6761526 0.10591497 7.2961342 32.003919 32.003919 32.003919 -0.0085253101 0.12196602 0.20430422 - 8100 1.4629588 5.5087415 6.6578173 0.080159269 7.1245058 31.831354 32.003919 32.003919 0.078046473 0.088201582 0.074229751 - 8200 1.4061729 5.5008938 6.6053673 0.038080967 6.8240633 31.398913 32.003919 32.003919 0.041554276 0.038085252 0.034603372 - 8300 1.4225542 5.4730766 6.5904167 0.071241779 6.992772 30.878537 32.003919 32.003919 0.068190354 0.076631686 0.068903297 - 8400 1.4344356 5.4772885 6.6039608 0.044141975 6.8495696 30.421029 32.003919 32.003919 0.031058774 0.039890974 0.061476178 - 8500 1.4377845 5.4485066 6.5778092 0.04242205 6.8099428 29.91769 32.003919 32.003919 0.053013546 0.050003453 0.02424915 - 8600 1.4339418 5.4280263 6.5543108 0.0048261176 6.58031 29.453954 32.003919 32.003919 -0.0020411927 0.005967365 0.010552181 - 8700 1.4284879 5.4273043 6.549305 0.058717611 6.8609844 29.021604 32.003919 32.003919 0.09927212 0.02309782 0.053782894 - 8800 1.3993066 5.4243917 6.5234721 0.030638337 6.683965 28.639961 32.003919 32.003919 0.08972583 0.0089328704 -0.0067436909 - 8900 1.4429241 5.3850352 6.5183748 0.0053167016 6.5458205 28.223699 32.003919 32.003919 0.052590681 -0.031563606 -0.0050769701 - 9000 1.41963 5.3772308 6.4922741 0.040105311 6.6961497 27.793622 32.003919 32.003919 0.070575176 0.0044551641 0.045285594 -Loop time of 2.94424 on 1 procs for 1000 steps with 5600 atoms - -Performance: 146727.069 tau/day, 339.646 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.57781 | 0.57781 | 0.57781 | 0.0 | 19.63 -Bond | 0.072705 | 0.072705 | 0.072705 | 0.0 | 2.47 -Neigh | 1.0768 | 1.0768 | 1.0768 | 0.0 | 36.57 -Comm | 0.052799 | 0.052799 | 0.052799 | 0.0 | 1.79 -Output | 0.00064921 | 0.00064921 | 0.00064921 | 0.0 | 0.02 -Modify | 1.1247 | 1.1247 | 1.1247 | 0.0 | 38.20 -Other | | 0.03878 | | | 1.32 - -Nlocal: 5600 ave 5600 max 5600 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 3244 ave 3244 max 3244 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 30929 ave 30929 max 30929 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 30929 -Ave neighs/atom = 5.52304 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 165 -Dangerous builds = 0 -unfix 1 - -fix 1 rods rigid/nph molecule iso 0.05 0.05 1.0 dilate all -800 rigid bodies with 4000 atoms -print "rigid/nph iso" -rigid/nph iso -run 1000 -Memory usage per processor = 7.32428 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 9000 1.41963 5.3772308 6.4922741 0.054032922 6.7669508 27.793622 32.003919 32.003919 0.36183473 -0.1011685 -0.098567468 - 9100 1.468276 5.3693533 6.5226054 0.062009135 6.8364521 27.753087 31.957243 31.957243 0.072952506 0.067965393 0.045109506 - 9200 1.4790176 5.3498933 6.5115824 0.068306349 6.8531758 27.642255 31.829623 31.829623 0.057719204 0.083928825 0.063271019 - 9300 1.4685339 5.3439444 6.4973991 0.012381058 6.5578428 27.421331 31.575232 31.575232 0.018937907 0.0065076203 0.011697646 - 9400 1.4675871 5.3321417 6.4848528 0.056515448 6.7525582 27.146928 31.259261 31.259261 0.035834387 0.047161137 0.086550819 - 9500 1.4464119 5.3137665 6.4498455 0.043906827 6.6517871 26.881604 30.953745 30.953745 0.031891513 0.065507153 0.034321816 - 9600 1.4541889 5.284445 6.4266325 0.046471589 6.6332098 26.578003 30.604153 30.604153 0.0041035598 0.071274602 0.064036606 - 9700 1.4577034 5.2493866 6.3943346 0.045073503 6.5909605 26.41175 30.412715 30.412715 0.018293408 0.069031147 0.047895953 - 9800 1.4701089 5.2202499 6.3749417 0.055758411 6.6108197 26.142656 30.102857 30.102857 0.045171706 0.039488766 0.082614761 - 9900 1.4518855 5.2148116 6.3551898 0.011510897 6.4028899 25.963345 29.896384 29.896384 0.0060934464 0.010841773 0.017597473 - 10000 1.4445828 5.2098073 6.3444498 0.075197507 6.654918 25.931556 29.859779 29.859779 0.08350416 0.066240185 0.075848177 -Loop time of 3.13351 on 1 procs for 1000 steps with 5600 atoms - -Performance: 137864.384 tau/day, 319.131 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.68 | 0.68 | 0.68 | 0.0 | 21.70 -Bond | 0.073233 | 0.073233 | 0.073233 | 0.0 | 2.34 -Neigh | 1.1775 | 1.1775 | 1.1775 | 0.0 | 37.58 -Comm | 0.057102 | 0.057102 | 0.057102 | 0.0 | 1.82 -Output | 0.00068927 | 0.00068927 | 0.00068927 | 0.0 | 0.02 -Modify | 1.1058 | 1.1058 | 1.1058 | 0.0 | 35.29 -Other | | 0.03924 | | | 1.25 - -Nlocal: 5600 ave 5600 max 5600 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 3635 ave 3635 max 3635 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 38235 ave 38235 max 38235 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 38235 -Ave neighs/atom = 6.82768 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 165 -Dangerous builds = 0 -unfix 1 - -fix 1 rods rigid/nph molecule x 0.05 0.05 1.0 y 0.05 0.05 1.0 couple xy dilate all -800 rigid bodies with 4000 atoms -print "rigid/nph xy couple" -rigid/nph xy couple -run 1000 -Memory usage per processor = 7.32811 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 10000 1.4445828 5.2098073 6.3444498 0.001962567 6.3525526 25.931556 29.859779 29.859779 0.18484796 -0.22902272 0.050062455 - 10100 1.4368894 5.2096239 6.3382235 0.10403552 6.7662753 25.886842 29.808292 29.859779 0.12565247 0.094955776 0.091498324 - 10200 1.4231669 5.2080497 6.3258711 0.086173671 6.682435 25.959905 29.892423 29.859779 0.11480457 0.12471881 0.018997629 - 10300 1.4334516 5.1992954 6.3251949 -0.0076414301 6.2932457 26.095439 30.048488 29.859779 0.00870511 -0.0049134764 -0.026715924 - 10400 1.4408912 5.1980613 6.3298041 0.070774329 6.6314048 26.345108 30.335978 29.859779 0.061559356 0.075929557 0.074834076 - 10500 1.4299517 5.1990298 6.3221802 0.077553868 6.6569567 26.515356 30.532016 29.859779 0.11568876 0.063812738 0.053160106 - 10600 1.439113 5.1937953 6.3241415 0.024333431 6.4286629 26.449816 30.456548 29.859779 0.035925567 0.023132021 0.013942706 - 10700 1.4379108 5.1704548 6.2998567 0.06126476 6.5597578 26.285754 30.267632 29.859779 0.074214186 0.040233796 0.069346299 - 10800 1.4358912 5.1798018 6.3076174 0.10549358 6.747456 26.058856 30.006363 29.859779 0.1992503 0.046346044 0.070884395 - 10900 1.4470038 5.1528383 6.2893823 0.045720444 6.4780533 25.92502 29.852253 29.859779 0.041394051 0.026837211 0.068930071 - 11000 1.437397 5.1841678 6.3131661 0.070020768 6.6023557 25.935798 29.864664 29.859779 0.11790932 0.072745235 0.019407746 -Loop time of 3.22377 on 1 procs for 1000 steps with 5600 atoms - -Performance: 134004.591 tau/day, 310.196 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.74959 | 0.74959 | 0.74959 | 0.0 | 23.25 -Bond | 0.073572 | 0.073572 | 0.073572 | 0.0 | 2.28 -Neigh | 1.1793 | 1.1793 | 1.1793 | 0.0 | 36.58 -Comm | 0.057446 | 0.057446 | 0.057446 | 0.0 | 1.78 -Output | 0.00065088 | 0.00065088 | 0.00065088 | 0.0 | 0.02 -Modify | 1.1241 | 1.1241 | 1.1241 | 0.0 | 34.87 -Other | | 0.03903 | | | 1.21 - -Nlocal: 5600 ave 5600 max 5600 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Nghost: 3799 ave 3799 max 3799 min -Histogram: 1 0 0 0 0 0 0 0 0 0 -Neighs: 39646 ave 39646 max 39646 min -Histogram: 1 0 0 0 0 0 0 0 0 0 - -Total # of neighbors = 39646 -Ave neighs/atom = 7.07964 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 158 -Dangerous builds = 0 - -Total wall time: 0:00:21 diff --git a/examples/rigid/log.5Oct16.rigid.tnr.g++.4 b/examples/rigid/log.5Oct16.rigid.tnr.g++.4 deleted file mode 100644 index 2a27702446e57a6adc0b139c69592a1b3594b6ed..0000000000000000000000000000000000000000 --- a/examples/rigid/log.5Oct16.rigid.tnr.g++.4 +++ /dev/null @@ -1,452 +0,0 @@ -LAMMPS (5 Oct 2016) -# Tethered nanorods - -atom_style molecular - -read_data data.rigid.tnr - orthogonal box = (-31.122 -31.122 -31.122) to (31.122 31.122 31.122) - 1 by 2 by 2 MPI processor grid - reading atoms ... - 5600 atoms - scanning bonds ... - 1 = max bonds/atom - reading bonds ... - 1600 bonds - 2 = max # of 1-2 neighbors - 1 = max # of 1-3 neighbors - 1 = max # of 1-4 neighbors - 2 = max # of special neighbors - -# Specify bond parameters - -bond_style fene -bond_coeff 1 30.0 1.5 1.0 1.0 - -special_bonds fene - 2 = max # of 1-2 neighbors - 2 = max # of special neighbors - -# Specify initial velocities - -velocity all create 1.4 109345 - -# Specify rigid components - -group rods type 2 -4000 atoms in group rods -group tethers subtract all rods -1600 atoms in group tethers - -neigh_modify exclude molecule rods delay 0 every 1 - -# Specify the pair potentials - -pair_style lj/cut 2.5 -pair_modify shift yes -pair_coeff * * 1.0 1.0 1.122 -pair_coeff 2 2 1.0 1.0 2.5 - -# Specify output - -thermo 100 -thermo_style custom step temp pe etotal press enthalpy lx ly lz pxx pyy pzz -thermo_modify flush yes lost warn - -timestep 0.005 - -fix 1 rods rigid molecule -800 rigid bodies with 4000 atoms -fix 2 tethers nve -fix 3 all langevin 1.4 1.4 1.0 437624 - -run 5000 -Neighbor list info ... - 1 neighbor list requests - update every 1 steps, delay 0 steps, check yes - max neighbors/atom: 2000, page size: 100000 - master list distance cutoff = 2.8 - ghost atom cutoff = 2.8 - binsize = 1.4 -> bins = 45 45 45 -Memory usage per processor = 6.96454 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 0 1.3963219 5.9478449 7.0445809 0.048565317 9.13595 62.244 62.244 62.244 0.0091983659 0.11850113 0.017996458 - 100 1.3999025 5.9707695 7.0703179 0.027293074 8.24564 62.244 62.244 62.244 0.017246307 0.04732529 0.017307624 - 200 1.4245544 5.9878446 7.1067558 0.0072016369 7.41688 62.244 62.244 62.244 0.0071370801 0.0084066589 0.0060611719 - 300 1.4212057 5.9942604 7.1105414 0.0023296933 7.210865 62.244 62.244 62.244 -0.0059197015 0.0040269953 0.008881786 - 400 1.4030116 5.9953214 7.0973119 0.0055751834 7.3373961 62.244 62.244 62.244 -0.0026920847 0.013323321 0.0060943141 - 500 1.4201338 5.9984777 7.1139168 -0.0018229523 7.035415 62.244 62.244 62.244 -0.0082217102 -0.00047319975 0.0032260529 - 600 1.425173 5.9902537 7.1096508 0.013367744 7.6853062 62.244 62.244 62.244 0.012971415 0.016298595 0.010833222 - 700 1.4181225 5.9840752 7.0979345 0.0014999758 7.1625279 62.244 62.244 62.244 -0.0015835387 0.0045967753 0.0014866907 - 800 1.4084205 5.9778462 7.084085 0.0063728488 7.3585191 62.244 62.244 62.244 0.0036202744 0.005593586 0.0099046859 - 900 1.3958301 5.9891019 7.0854517 0.0028974454 7.2102244 62.244 62.244 62.244 0.0087724642 0.0014508428 -0.001530971 - 1000 1.3937374 5.9794855 7.0741916 0.0087158481 7.4495223 62.244 62.244 62.244 0.014424783 0.0034958881 0.0082268735 - 1100 1.3729162 5.9916252 7.0699773 0.0030451966 7.2011127 62.244 62.244 62.244 0.00084635444 -0.00064448421 0.0089337195 - 1200 1.4427374 5.9713589 7.1045519 0.0042680608 7.2883474 62.244 62.244 62.244 0.0030884628 0.0031576538 0.0065580658 - 1300 1.3971469 5.9728674 7.0702514 0.0022809251 7.168475 62.244 62.244 62.244 0.00060902513 -0.00020572386 0.006439474 - 1400 1.4194118 5.9672631 7.082135 0.012945844 7.6396221 62.244 62.244 62.244 0.0082418827 0.016256336 0.014339314 - 1500 1.3866472 5.9728382 7.0619753 0.0010642438 7.1078049 62.244 62.244 62.244 0.0020316123 0.0020439035 -0.00088278432 - 1600 1.4184955 5.9539591 7.0681113 0.0077605409 7.4023036 62.244 62.244 62.244 0.0033721722 0.0057827512 0.014126699 - 1700 1.3612202 5.9676733 7.0368389 0.00016862131 7.0441002 62.244 62.244 62.244 0.0052525345 0.0007705269 -0.0055171975 - 1800 1.3641041 5.9521837 7.0236144 0.0057884587 7.2728829 62.244 62.244 62.244 0.0038061044 0.0044032908 0.009155981 - 1900 1.3594477 5.9646024 7.0323757 0.0044261926 7.2229809 62.244 62.244 62.244 0.0019417448 0.006871542 0.004465291 - 2000 1.3776971 5.9431816 7.0252888 -0.0012460593 6.9716298 62.244 62.244 62.244 -0.0010913822 0.00098119436 -0.0036279901 - 2100 1.3986245 5.9509735 7.0495181 0.007520633 7.3733792 62.244 62.244 62.244 0.008359824 0.0075919773 0.0066100978 - 2200 1.4033594 5.9548158 7.0570794 0.0016804284 7.1294438 62.244 62.244 62.244 -0.001842641 0.0032876741 0.0035962521 - 2300 1.4048926 5.9444129 7.0478808 0.0062444034 7.3167836 62.244 62.244 62.244 0.004383569 0.0065720464 0.007777595 - 2400 1.4044043 5.9370822 7.0401666 0.0034562836 7.1890046 62.244 62.244 62.244 0.0068959298 0.0041111713 -0.00063825026 - 2500 1.4200762 5.9359254 7.0513193 0.0028319649 7.1732722 62.244 62.244 62.244 -0.00030414203 0.0039571831 0.0048428538 - 2600 1.3876469 5.9249124 7.0148347 -0.0017777224 6.9382806 62.244 62.244 62.244 -0.00047616392 -0.0025484917 -0.0023085116 - 2700 1.4099941 5.916763 7.0242378 0.0070716263 7.3287634 62.244 62.244 62.244 0.012628756 0.0053812867 0.0032048359 - 2800 1.4444643 5.9283432 7.0628925 0.0019400024 7.1464349 62.244 62.244 62.244 0.0014895079 0.0046367397 -0.00030624055 - 2900 1.3902832 5.9152516 7.0072446 -0.002166221 6.9139606 62.244 62.244 62.244 -0.0012374412 -0.00056403267 -0.004697189 - 3000 1.3711706 5.922146 6.9991271 0.011101505 7.4771914 62.244 62.244 62.244 0.011063833 0.012093026 0.010147657 - 3100 1.3569137 5.9171753 6.9829583 -0.002826677 6.8612331 62.244 62.244 62.244 -0.0069507252 0.0010084399 -0.0025377458 - 3200 1.4004275 5.905939 7.0058998 0.005439467 7.2401397 62.244 62.244 62.244 0.010352184 0.0057594148 0.00020680265 - 3300 1.3641217 5.9145275 6.985972 -0.0027212811 6.8687855 62.244 62.244 62.244 -0.00065933677 -0.0057713008 -0.0017332057 - 3400 1.3868722 5.9059546 6.9952684 0.0092591256 7.3939943 62.244 62.244 62.244 0.010690877 0.010752519 0.006333981 - 3500 1.3939169 5.8992292 6.9940762 0.0074340028 7.3142068 62.244 62.244 62.244 0.010137307 0.0044252569 0.0077394447 - 3600 1.3982507 5.9219461 7.0201971 0.005679459 7.2647718 62.244 62.244 62.244 0.0023367243 0.008059221 0.0066424317 - 3700 1.4019908 5.9059957 7.0071843 0.0065915477 7.2910363 62.244 62.244 62.244 0.0049554109 0.010827005 0.0039922268 - 3800 1.3960736 5.902079 6.99862 0.0027763588 7.1181784 62.244 62.244 62.244 -0.0015907217 0.0025862003 0.0073335977 - 3900 1.4352825 5.8986215 7.025959 0.003498268 7.176605 62.244 62.244 62.244 0.0030416681 0.0027739509 0.0046791851 - 4000 1.4121845 5.907903 7.0170983 0.005046232 7.2344043 62.244 62.244 62.244 0.0045542682 0.0064113499 0.0041730779 - 4100 1.3989578 5.9082397 7.0070461 0.00042880001 7.0255115 62.244 62.244 62.244 0.0025735184 0.0025181486 -0.003805267 - 4200 1.3998829 5.8998147 6.9993477 0.0042777376 7.18356 62.244 62.244 62.244 0.0013744091 0.00646996 0.0049888436 - 4300 1.4076022 5.9044509 7.010047 0.0066789366 7.2976622 62.244 62.244 62.244 0.0073610616 0.0048139129 0.0078618353 - 4400 1.4161075 5.9064331 7.0187096 -0.0011844267 6.9677046 62.244 62.244 62.244 -0.0019088313 -0.0037556503 0.0021112015 - 4500 1.4292243 5.8980093 7.0205884 0.0018500416 7.1002567 62.244 62.244 62.244 0.0041144085 0.0010160497 0.00041966655 - 4600 1.3958775 5.8943133 6.9907003 0.0041485723 7.1693504 62.244 62.244 62.244 0.0033999287 0.0041620406 0.0048837475 - 4700 1.3856614 5.8886847 6.9770475 0.0013150314 7.0336767 62.244 62.244 62.244 -0.00051753674 0.0030875481 0.0013750828 - 4800 1.401683 5.9023505 7.0032974 0.002504877 7.1111649 62.244 62.244 62.244 0.0016543718 -0.0001813413 0.0060416007 - 4900 1.446628 5.9050553 7.0413042 -0.0026645902 6.9265589 62.244 62.244 62.244 -0.00069368076 -0.0073984763 9.8386402e-05 - 5000 1.4387091 5.9077604 7.0377893 0.0049468048 7.2508137 62.244 62.244 62.244 0.0042902506 0.0046715523 0.0058786114 -Loop time of 3.14543 on 4 procs for 5000 steps with 5600 atoms - -Performance: 686709.553 tau/day, 1589.605 timesteps/s -99.2% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.081628 | 0.12747 | 0.17984 | 12.8 | 4.05 -Bond | 0.037502 | 0.057149 | 0.076595 | 7.6 | 1.82 -Neigh | 0.65705 | 0.6588 | 0.66084 | 0.2 | 20.94 -Comm | 0.1653 | 0.23616 | 0.29975 | 12.9 | 7.51 -Output | 0.0021076 | 0.0028133 | 0.003227 | 0.9 | 0.09 -Modify | 1.8231 | 1.8972 | 1.9713 | 5.2 | 60.32 -Other | | 0.1658 | | | 5.27 - -Nlocal: 1400 ave 1868 max 905 min -Histogram: 1 1 0 0 0 0 0 0 0 2 -Nghost: 648.25 ave 688 max 598 min -Histogram: 1 0 0 1 0 0 0 0 1 1 -Neighs: 1202.5 ave 1821 max 698 min -Histogram: 2 0 0 0 0 0 0 1 0 1 - -Total # of neighbors = 4810 -Ave neighs/atom = 0.858929 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 759 -Dangerous builds = 0 - -# Replace fix rigid and fix langevin with new ones - -unfix 1 -unfix 3 - -fix 3 tethers langevin 1.4 1.4 1.0 198450 - -# Test different integrators for rods - -fix 1 rods rigid/nve molecule -800 rigid bodies with 4000 atoms -print "rigid/nve" -rigid/nve -run 1000 -Memory usage per processor = 6.98553 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 5000 1.4387091 5.9077604 7.0377893 0.0035977871 7.1927209 62.244 62.244 62.244 0.025518192 -0.016769871 0.0020450407 - 5100 1.4449405 5.8876257 7.022549 0.0023104502 7.122044 62.244 62.244 62.244 0.0045960664 0.0036845954 -0.0013493113 - 5200 1.4271652 5.9160022 7.036964 0.0020238904 7.1241189 62.244 62.244 62.244 -0.0022546188 0.00392213 0.0044041599 - 5300 1.4143299 5.9052666 7.016147 0.0064054214 7.2919838 62.244 62.244 62.244 0.0090997079 0.0026363579 0.0074801984 - 5400 1.4426441 5.9087558 7.0418754 0.0020465683 7.1300068 62.244 62.244 62.244 0.0043188307 3.0314417e-06 0.0018178427 - 5500 1.4281065 5.9038871 7.0255883 0.00058665945 7.0508516 62.244 62.244 62.244 0.005898925 0.00066013177 -0.0047990784 - 5600 1.4315628 5.902373 7.0267888 0.0096475978 7.4422435 62.244 62.244 62.244 0.0054175405 0.011780025 0.011745228 - 5700 1.4075482 5.9075587 7.0131124 0.0052150708 7.2376891 62.244 62.244 62.244 0.0030069124 0.0036690785 0.0089692215 - 5800 1.4215681 5.9048555 7.0214211 0.0015070444 7.086319 62.244 62.244 62.244 -5.6858344e-05 0.0023644208 0.0022135708 - 5900 1.3992461 5.8949367 6.9939696 0.0062425817 7.262794 62.244 62.244 62.244 0.0056972212 0.0095293238 0.0035012003 - 6000 1.385289 5.8972105 6.9852808 0.0043255163 7.1715506 62.244 62.244 62.244 0.0040215567 0.0026330714 0.0063219208 -Loop time of 0.74555 on 4 procs for 1000 steps with 5600 atoms - -Performance: 579437.739 tau/day, 1341.291 timesteps/s -99.6% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.020915 | 0.033416 | 0.047822 | 6.7 | 4.48 -Bond | 0.0076883 | 0.011506 | 0.015239 | 3.3 | 1.54 -Neigh | 0.14225 | 0.14262 | 0.14297 | 0.1 | 19.13 -Comm | 0.030192 | 0.0485 | 0.064376 | 7.2 | 6.51 -Output | 0.00039148 | 0.0005275 | 0.00062299 | 0.4 | 0.07 -Modify | 0.46557 | 0.47773 | 0.49051 | 1.7 | 64.08 -Other | | 0.03125 | | | 4.19 - -Nlocal: 1400 ave 1868 max 935 min -Histogram: 2 0 0 0 0 0 0 0 0 2 -Nghost: 633.75 ave 695 max 541 min -Histogram: 1 0 0 0 1 0 0 0 0 2 -Neighs: 1263 ave 1799 max 710 min -Histogram: 1 1 0 0 0 0 0 0 0 2 - -Total # of neighbors = 5052 -Ave neighs/atom = 0.902143 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 153 -Dangerous builds = 0 -unfix 1 - -fix 1 rods rigid/nvt molecule temp 1.4 1.4 1.0 -800 rigid bodies with 4000 atoms -print "rigid/nvt" -rigid/nvt -run 1000 -Memory usage per processor = 6.98553 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 6000 1.385289 5.8972105 6.9852808 0.0029190017 7.1109818 62.244 62.244 62.244 0.026575922 -0.075631452 0.057812535 - 6100 1.3829575 5.9055308 6.9917699 0.0022904847 7.0904051 62.244 62.244 62.244 -0.00045870152 0.004055647 0.0032745086 - 6200 1.3942692 5.90506 7.0001838 0.0046406767 7.2000253 62.244 62.244 62.244 0.0042263478 0.0051632788 0.0045324035 - 6300 1.4009885 5.902399 7.0028005 0.0077682485 7.3373247 62.244 62.244 62.244 0.0071636925 0.0098268465 0.0063142066 - 6400 1.3627532 5.9075587 6.9779284 0.0093180812 7.3791931 62.244 62.244 62.244 0.0062401482 0.013022619 0.0086914761 - 6500 1.3341203 5.9012967 6.9491767 0.010108056 7.3844601 62.244 62.244 62.244 0.0031876333 0.011099549 0.016036984 - 6600 1.3572847 5.8915298 6.9576041 -0.00034416741 6.9427833 62.244 62.244 62.244 0.0025578983 -0.0011308804 -0.0024595201 - 6700 1.3663741 5.8985276 6.9717412 0.002947281 7.09866 62.244 62.244 62.244 0.0022469396 -0.00042872124 0.0070236245 - 6800 1.3816731 5.8909305 6.9761607 -9.1110394e-05 6.9722372 62.244 62.244 62.244 -0.0048195881 -0.00080983527 0.0053560922 - 6900 1.4011479 5.8881921 6.9887187 0.0010084642 7.0321462 62.244 62.244 62.244 0.0012132523 -0.0025918018 0.0044039422 - 7000 1.3973667 5.8867951 6.9843517 0.0070023833 7.2858955 62.244 62.244 62.244 0.0058928565 0.0076813429 0.0074329504 -Loop time of 0.761012 on 4 procs for 1000 steps with 5600 atoms - -Performance: 567665.504 tau/day, 1314.041 timesteps/s -99.6% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.022122 | 0.034862 | 0.048912 | 6.6 | 4.58 -Bond | 0.0078702 | 0.011574 | 0.015191 | 3.2 | 1.52 -Neigh | 0.1398 | 0.14013 | 0.14044 | 0.1 | 18.41 -Comm | 0.029736 | 0.047586 | 0.064077 | 7.3 | 6.25 -Output | 0.00039291 | 0.00053465 | 0.00063396 | 0.4 | 0.07 -Modify | 0.48838 | 0.49907 | 0.50959 | 1.4 | 65.58 -Other | | 0.02726 | | | 3.58 - -Nlocal: 1400 ave 1832 max 970 min -Histogram: 2 0 0 0 0 0 0 0 0 2 -Nghost: 652.5 ave 749 max 561 min -Histogram: 1 0 0 1 0 0 1 0 0 1 -Neighs: 1407.5 ave 2071 max 748 min -Histogram: 1 1 0 0 0 0 0 0 1 1 - -Total # of neighbors = 5630 -Ave neighs/atom = 1.00536 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 149 -Dangerous builds = 0 -unfix 1 - -compute myTemp all temp - -fix 1 rods rigid/npt molecule temp 1.4 1.4 1.0 iso 0.05 0.05 1.0 dilate all -800 rigid bodies with 4000 atoms -print "rigid/npt iso" -rigid/npt iso -fix_modify 1 temp myTemp - -run 1000 -Memory usage per processor = 6.98553 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 7000 1.3973667 5.8867951 6.9843517 0.0026559416 7.0987246 62.244 62.244 62.244 0.033713637 -0.0068647989 -0.018881013 - 7100 1.4639139 5.8611823 7.0110083 0.011521251 7.3924625 57.022152 57.022152 57.022152 0.010787531 0.0093708984 0.014405322 - 7200 1.4950463 5.8177011 6.9919798 0.023101297 7.5163969 50.281647 50.281647 50.281647 0.023242216 0.018105116 0.02795656 - 7300 1.5103331 5.7757714 6.9620571 0.022650056 7.3366292 45.243 45.243 45.243 0.023573421 0.022300241 0.022076507 - 7400 1.5582095 5.7578511 6.9817412 0.028508467 7.3477691 41.582392 41.582392 41.582392 0.02740467 0.030003113 0.028117619 - 7500 1.5992723 5.6927269 6.9488696 0.046538335 7.4419099 39.001967 39.001967 39.001967 0.057728057 0.030859627 0.05102732 - 7600 1.5572154 5.6717168 6.894826 0.032055597 7.184009 36.967405 36.967405 36.967405 0.034785798 0.033408508 0.027972486 - 7700 1.541013 5.6302838 6.840667 0.046629681 7.2052858 35.246953 35.246953 35.246953 0.051145184 0.022437926 0.066305932 - 7800 1.4922447 5.6135845 6.7856627 0.066398531 7.2467615 33.879827 33.879827 33.879827 0.05766722 0.07643975 0.065088623 - 7900 1.5126099 5.5498409 6.7379149 0.060758513 7.1190044 32.749346 32.749346 32.749346 0.045401188 0.069519167 0.067355184 - 8000 1.498932 5.5307653 6.708096 0.0068958389 6.7481394 31.918601 31.918601 31.918601 0.004934357 -0.0067897493 0.022542909 -Loop time of 1.40621 on 4 procs for 1000 steps with 5600 atoms - -Performance: 307209.818 tau/day, 711.134 timesteps/s -99.5% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.057011 | 0.094542 | 0.13471 | 11.0 | 6.72 -Bond | 0.012043 | 0.017356 | 0.022935 | 3.8 | 1.23 -Neigh | 0.50655 | 0.50716 | 0.50781 | 0.1 | 36.07 -Comm | 0.060325 | 0.10627 | 0.14985 | 12.0 | 7.56 -Output | 0.0003705 | 0.00040978 | 0.00051475 | 0.3 | 0.03 -Modify | 0.60798 | 0.63453 | 0.65863 | 2.9 | 45.12 -Other | | 0.04594 | | | 3.27 - -Nlocal: 1400 ave 1820 max 1010 min -Histogram: 1 1 0 0 0 0 0 0 1 1 -Nghost: 1576 ave 1694 max 1470 min -Histogram: 1 1 0 0 0 0 0 1 0 1 -Neighs: 6543 ave 9989 max 3497 min -Histogram: 1 1 0 0 0 0 0 1 0 1 - -Total # of neighbors = 26172 -Ave neighs/atom = 4.67357 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 337 -Dangerous builds = 0 -unfix 1 - -fix 1 rods rigid/npt molecule temp 1.4 1.4 1.0 x 0.05 0.05 1.0 dilate all -800 rigid bodies with 4000 atoms -print "rigid/npt x" -rigid/npt x -run 1000 -Memory usage per processor = 7.00192 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 8000 1.498932 5.5307653 6.708096 0.044418732 6.9660307 31.918601 31.918601 31.918601 0.033240642 0.090981355 0.0090341992 - 8100 1.4932748 5.5104122 6.6832996 0.078824127 7.1379335 31.703188 31.918601 31.918601 0.046668046 0.090499077 0.099305258 - 8200 1.4783774 5.4958482 6.6570345 0.024180825 6.7956092 31.500184 31.918601 31.918601 -0.01991799 0.022036912 0.070423554 - 8300 1.4699766 5.468569 6.6231569 0.050331767 6.9062762 30.919162 31.918601 31.918601 0.030889484 0.091318073 0.028787743 - 8400 1.4423945 5.4591749 6.5920985 0.034769472 6.7835475 30.266023 31.918601 31.918601 0.031838545 0.067297532 0.0051723374 - 8500 1.4478469 5.4405027 6.5777089 0.061608005 6.9111775 29.752136 31.918601 31.918601 0.056987338 0.064105062 0.063731616 - 8600 1.4216004 5.443144 6.5597349 0.031739807 6.7291722 29.343028 31.918601 31.918601 0.047008356 0.040197385 0.0080136813 - 8700 1.3993468 5.4199487 6.5190607 0.055753353 6.8130189 28.981104 31.918601 31.918601 0.038071725 0.050746074 0.078442261 - 8800 1.4272224 5.3956531 6.5166598 0.051937078 6.7855855 28.46133 31.918601 31.918601 0.038718856 0.054121272 0.062971108 - 8900 1.430201 5.3881483 6.5114945 0.042705385 6.728515 27.933053 31.918601 31.918601 0.053090216 0.033892798 0.04113314 - 9000 1.4147254 5.3571794 6.4683705 0.015474623 6.5454193 27.368213 31.918601 31.918601 0.018517547 0.023668345 0.0042379783 -Loop time of 1.3981 on 4 procs for 1000 steps with 5600 atoms - -Performance: 308990.110 tau/day, 715.255 timesteps/s -99.4% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.090644 | 0.15054 | 0.22186 | 13.5 | 10.77 -Bond | 0.013196 | 0.017756 | 0.022439 | 2.9 | 1.27 -Neigh | 0.40253 | 0.40269 | 0.40288 | 0.0 | 28.80 -Comm | 0.057128 | 0.13282 | 0.1979 | 15.4 | 9.50 -Output | 0.00036597 | 0.00040632 | 0.0004673 | 0.2 | 0.03 -Modify | 0.62613 | 0.65125 | 0.67228 | 2.1 | 46.58 -Other | | 0.04265 | | | 3.05 - -Nlocal: 1400 ave 1770 max 1095 min -Histogram: 1 1 0 0 0 0 1 0 0 1 -Nghost: 1578.5 ave 1693 max 1493 min -Histogram: 2 0 0 0 0 0 0 1 0 1 -Neighs: 7868 ave 12041 max 4579 min -Histogram: 1 1 0 0 0 0 1 0 0 1 - -Total # of neighbors = 31472 -Ave neighs/atom = 5.62 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 167 -Dangerous builds = 0 -unfix 1 - -fix 1 rods rigid/nph molecule iso 0.05 0.05 1.0 dilate all -800 rigid bodies with 4000 atoms -print "rigid/nph iso" -rigid/nph iso -run 1000 -Memory usage per processor = 7.00192 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 9000 1.4147254 5.3571794 6.4683705 0.026540417 6.6005164 27.368213 31.918601 31.918601 -0.25291277 0.19881452 0.1337195 - 9100 1.4143578 5.3349724 6.4458747 0.032533861 6.6070914 27.324726 31.867884 31.867884 0.031965858 0.023737907 0.041897818 - 9200 1.4489265 5.3126352 6.4506893 0.020125553 6.5486389 27.161226 31.6772 31.6772 0.024138053 0.045983015 -0.0097444101 - 9300 1.4434983 5.3100314 6.4438219 0.071722015 6.7864703 26.993744 31.481872 31.481872 0.081599435 0.059208723 0.074357889 - 9400 1.4179009 5.3170886 6.4307738 0.020348306 6.5262516 26.832169 31.293432 31.293432 0.070733237 -0.0042808269 -0.0054074919 - 9500 1.455947 5.2941589 6.4377273 0.0066330065 6.4680826 26.60963 31.033892 31.033892 -0.026145193 -0.017478757 0.06352297 - 9600 1.4322198 5.2747171 6.399649 0.079157317 6.755508 26.452091 30.85016 30.85016 0.09770091 0.095143096 0.044627945 - 9700 1.4366074 5.2650795 6.3934576 0.052444405 6.6264505 26.347873 30.728614 30.728614 0.043301655 0.043720535 0.070311026 - 9800 1.4311568 5.268838 6.392935 0.056161789 6.637248 26.163729 30.513853 30.513853 0.071096045 0.048086199 0.049303122 - 9900 1.4437347 5.2369801 6.3709564 0.11335968 6.8497267 25.907207 30.214681 30.214681 0.1259046 0.10149135 0.11268308 - 10000 1.4627878 5.2272205 6.376162 0.082077049 6.7164073 25.746677 30.02746 30.02746 0.060839015 0.13885619 0.046535946 -Loop time of 1.38185 on 4 procs for 1000 steps with 5600 atoms - -Performance: 312625.215 tau/day, 723.669 timesteps/s -99.4% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.11291 | 0.17289 | 0.23942 | 12.0 | 12.51 -Bond | 0.013814 | 0.017709 | 0.022031 | 2.5 | 1.28 -Neigh | 0.40444 | 0.4048 | 0.40511 | 0.0 | 29.29 -Comm | 0.055045 | 0.12527 | 0.18875 | 14.9 | 9.07 -Output | 0.0003531 | 0.00038058 | 0.00045681 | 0.2 | 0.03 -Modify | 0.60769 | 0.62523 | 0.64283 | 1.7 | 45.25 -Other | | 0.03557 | | | 2.57 - -Nlocal: 1400 ave 1669 max 1139 min -Histogram: 1 0 1 0 0 0 0 1 0 1 -Nghost: 1761.5 ave 1898 max 1632 min -Histogram: 2 0 0 0 0 0 0 0 1 1 -Neighs: 9311.75 ave 12525 max 5959 min -Histogram: 1 0 1 0 0 0 0 1 0 1 - -Total # of neighbors = 37247 -Ave neighs/atom = 6.65125 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 165 -Dangerous builds = 0 -unfix 1 - -fix 1 rods rigid/nph molecule x 0.05 0.05 1.0 y 0.05 0.05 1.0 couple xy dilate all -800 rigid bodies with 4000 atoms -print "rigid/nph xy couple" -rigid/nph xy couple -run 1000 -Memory usage per processor = 7.00192 Mbytes -Step Temp PotEng TotEng Press Enthalpy Lx Ly Lz Pxx Pyy Pzz - 10000 1.4627878 5.2272205 6.376162 0.087181735 6.7375684 25.746677 30.02746 30.02746 0.01077504 0.047196696 0.20357347 - 10100 1.461932 5.2277217 6.3759909 0.045218386 6.5623932 25.674625 29.943429 30.02746 0.029664553 0.034940919 0.071049687 - 10200 1.4394425 5.2183968 6.3490017 0.064139003 6.6129181 25.651225 29.916138 30.02746 0.063541799 0.099454655 0.029420554 - 10300 1.445679 5.2124787 6.3479821 0.073611235 6.6513251 25.670301 29.938385 30.02746 0.09678342 0.1092442 0.01480609 - 10400 1.4289478 5.2082727 6.3306346 -0.00091064043 6.3268902 25.642317 29.905748 30.02746 -0.021792005 0.043173882 -0.024113799 - 10500 1.4138512 5.191318 6.3018224 0.051274311 6.5114152 25.566672 29.817526 30.02746 0.087657762 0.022098862 0.04406631 - 10600 1.4101298 5.2048433 6.3124247 0.032021085 6.442127 25.450236 29.681731 30.02746 0.032483644 0.022737859 0.040841754 - 10700 1.4527253 5.1827275 6.3237654 0.045295082 6.5054661 25.327296 29.53835 30.02746 0.082847312 0.0364514 0.016586533 - 10800 1.4661732 5.1586918 6.3102923 0.084525247 6.6478976 25.272455 29.474391 30.02746 0.10699807 0.070825674 0.075751992 - 10900 1.4301511 5.1743273 6.2976344 0.014007746 6.3539547 25.356203 29.572064 30.02746 -0.015258276 -0.0047253148 0.06200683 - 11000 1.4346828 5.1625047 6.2893712 0.034027405 6.4273459 25.463687 29.697419 30.02746 0.041309225 0.014001823 0.046771165 -Loop time of 1.36647 on 4 procs for 1000 steps with 5600 atoms - -Performance: 316143.197 tau/day, 731.813 timesteps/s -99.4% CPU use with 4 MPI tasks x no OpenMP threads - -MPI task timing breakdown: -Section | min time | avg time | max time |%varavg| %total ---------------------------------------------------------------- -Pair | 0.13847 | 0.19365 | 0.24916 | 9.9 | 14.17 -Bond | 0.014236 | 0.017841 | 0.02132 | 2.2 | 1.31 -Neigh | 0.37634 | 0.37662 | 0.37685 | 0.0 | 27.56 -Comm | 0.057297 | 0.11588 | 0.17429 | 13.5 | 8.48 -Output | 0.00035167 | 0.00037664 | 0.00044203 | 0.2 | 0.03 -Modify | 0.61282 | 0.62929 | 0.64128 | 1.4 | 46.05 -Other | | 0.03282 | | | 2.40 - -Nlocal: 1400 ave 1607 max 1199 min -Histogram: 1 0 1 0 0 0 0 1 0 1 -Nghost: 1819.25 ave 1940 max 1712 min -Histogram: 1 1 0 0 0 0 0 1 0 1 -Neighs: 9882 ave 12628 max 7201 min -Histogram: 1 0 1 0 0 0 0 1 0 1 - -Total # of neighbors = 39528 -Ave neighs/atom = 7.05857 -Ave special neighs/atom = 0.571429 -Neighbor list builds = 156 -Dangerous builds = 0 - -Total wall time: 0:00:10 diff --git a/examples/snap/log.20Apr18.snap.Mo_Chen.g++.1 b/examples/snap/log.20Apr18.snap.Mo_Chen.g++.1 new file mode 100644 index 0000000000000000000000000000000000000000..c5e0f6abab7b7eb657e529096265fa9d3a9bfcff --- /dev/null +++ b/examples/snap/log.20Apr18.snap.Mo_Chen.g++.1 @@ -0,0 +1,127 @@ +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task +# Demonstrate SNAP Ta potential + +# Initialize simulation + +variable nsteps index 100 +variable nrep equal 4 +variable a equal 3.160 +units metal + +# generate the box and atom positions using a BCC lattice + +variable nx equal ${nrep} +variable nx equal 4 +variable ny equal ${nrep} +variable ny equal 4 +variable nz equal ${nrep} +variable nz equal 4 + +boundary p p p + +lattice bcc $a +lattice bcc 3.16 +Lattice spacing in x,y,z = 3.16 3.16 3.16 +region box block 0 ${nx} 0 ${ny} 0 ${nz} +region box block 0 4 0 ${ny} 0 ${nz} +region box block 0 4 0 4 0 ${nz} +region box block 0 4 0 4 0 4 +create_box 1 box +Created orthogonal box = (0 0 0) to (12.64 12.64 12.64) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 128 atoms + Time spent = 0.000223637 secs + +mass 1 183.84 + +# choose potential + +include Mo_Chen_PRM2017.snap + +# DATE: 2017-09-18 CONTRIBUTOR: Chi Chen CITATION: C. Chen, Z. Deng, R. Tran, H. Tang, I.-H. Chu, S. P. Ong, "Accurate force field for molybdenum by machine learning large materials data" Physical Review Materials 1, 04 3603 (2017) +# Generated by Materials Virtual Lab +# Definition of SNAP potential. +pair_style snap +pair_coeff * * Mo_Chen_PRM2017.snapcoeff Mo Mo_Chen_PRM2017.snapparam Mo +Reading potential file Mo_Chen_PRM2017.snapcoeff with DATE: 2017-09-18 +SNAP Element = Mo, Radius 0.5, Weight 1 +Reading potential file Mo_Chen_PRM2017.snapparam with DATE: 2017-09-18 +SNAP keyword rcutfac 4.615858 +SNAP keyword twojmax 6 + + +# Setup output + +thermo 10 +thermo_modify norm yes + +# Set up NVE run + +timestep 0.5e-3 +neighbor 1.0 bin +neigh_modify once no every 1 delay 0 check yes + +# Run MD + +velocity all create 300.0 4928459 +fix 1 all nve +run ${nsteps} +run 100 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5.61586 + ghost atom cutoff = 5.61586 + binsize = 2.80793, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair snap, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.507 | 3.507 | 3.507 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 300 -22.405975 0 -22.3675 2575.7657 + 10 294.77555 -22.405305 0 -22.3675 2756.6894 + 20 279.53011 -22.40335 0 -22.3675 3285.8272 + 30 255.52174 -22.40027 0 -22.3675 4122.8933 + 40 224.7299 -22.396321 0 -22.367499 5204.3499 + 50 189.67529 -22.391825 0 -22.367499 6449.1308 + 60 153.18862 -22.387145 0 -22.367499 7765.911 + 70 118.14998 -22.382652 0 -22.367499 9061.1616 + 80 87.224916 -22.378685 0 -22.367499 10247.68 + 90 62.623892 -22.37553 0 -22.367498 11250.067 + 100 45.9103 -22.373386 0 -22.367498 12011.726 +Loop time of 3.3917 on 1 procs for 100 steps with 128 atoms + +Performance: 1.274 ns/day, 18.843 hours/ns, 29.484 timesteps/s +99.7% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 3.3906 | 3.3906 | 3.3906 | 0.0 | 99.97 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.00039721 | 0.00039721 | 0.00039721 | 0.0 | 0.01 +Output | 0.00023007 | 0.00023007 | 0.00023007 | 0.0 | 0.01 +Modify | 0.00021887 | 0.00021887 | 0.00021887 | 0.0 | 0.01 +Other | | 0.0002868 | | | 0.01 + +Nlocal: 128 ave 128 max 128 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 727 ave 727 max 727 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +FullNghs: 7424 ave 7424 max 7424 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 7424 +Ave neighs/atom = 58 +Neighbor list builds = 0 +Dangerous builds = 0 + +Total wall time: 0:00:03 diff --git a/examples/snap/log.20Apr18.snap.Mo_Chen.g++.4 b/examples/snap/log.20Apr18.snap.Mo_Chen.g++.4 new file mode 100644 index 0000000000000000000000000000000000000000..c25f1f5530856ab7dc5492526aa168c9dafd6fad --- /dev/null +++ b/examples/snap/log.20Apr18.snap.Mo_Chen.g++.4 @@ -0,0 +1,127 @@ +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task +# Demonstrate SNAP Ta potential + +# Initialize simulation + +variable nsteps index 100 +variable nrep equal 4 +variable a equal 3.160 +units metal + +# generate the box and atom positions using a BCC lattice + +variable nx equal ${nrep} +variable nx equal 4 +variable ny equal ${nrep} +variable ny equal 4 +variable nz equal ${nrep} +variable nz equal 4 + +boundary p p p + +lattice bcc $a +lattice bcc 3.16 +Lattice spacing in x,y,z = 3.16 3.16 3.16 +region box block 0 ${nx} 0 ${ny} 0 ${nz} +region box block 0 4 0 ${ny} 0 ${nz} +region box block 0 4 0 4 0 ${nz} +region box block 0 4 0 4 0 4 +create_box 1 box +Created orthogonal box = (0 0 0) to (12.64 12.64 12.64) + 1 by 2 by 2 MPI processor grid +create_atoms 1 box +Created 128 atoms + Time spent = 0.000277281 secs + +mass 1 183.84 + +# choose potential + +include Mo_Chen_PRM2017.snap + +# DATE: 2017-09-18 CONTRIBUTOR: Chi Chen CITATION: C. Chen, Z. Deng, R. Tran, H. Tang, I.-H. Chu, S. P. Ong, "Accurate force field for molybdenum by machine learning large materials data" Physical Review Materials 1, 04 3603 (2017) +# Generated by Materials Virtual Lab +# Definition of SNAP potential. +pair_style snap +pair_coeff * * Mo_Chen_PRM2017.snapcoeff Mo Mo_Chen_PRM2017.snapparam Mo +Reading potential file Mo_Chen_PRM2017.snapcoeff with DATE: 2017-09-18 +SNAP Element = Mo, Radius 0.5, Weight 1 +Reading potential file Mo_Chen_PRM2017.snapparam with DATE: 2017-09-18 +SNAP keyword rcutfac 4.615858 +SNAP keyword twojmax 6 + + +# Setup output + +thermo 10 +thermo_modify norm yes + +# Set up NVE run + +timestep 0.5e-3 +neighbor 1.0 bin +neigh_modify once no every 1 delay 0 check yes + +# Run MD + +velocity all create 300.0 4928459 +fix 1 all nve +run ${nsteps} +run 100 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 5.61586 + ghost atom cutoff = 5.61586 + binsize = 2.80793, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair snap, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.486 | 3.486 | 3.486 Mbytes +Step Temp E_pair E_mol TotEng Press + 0 300 -22.405975 0 -22.3675 2575.7657 + 10 294.63153 -22.405286 0 -22.3675 2753.4662 + 20 278.98535 -22.40328 0 -22.3675 3272.416 + 30 254.38916 -22.400125 0 -22.3675 4091.8933 + 40 222.91191 -22.396088 0 -22.367499 5148.5505 + 50 187.16984 -22.391504 0 -22.367499 6362.2454 + 60 150.08253 -22.386747 0 -22.367499 7643.2732 + 70 114.60307 -22.382197 0 -22.367499 8900.2448 + 80 83.449257 -22.378201 0 -22.367499 10047.619 + 90 58.862643 -22.375048 0 -22.367498 11012.233 + 100 42.41931 -22.372939 0 -22.367498 11740.641 +Loop time of 1.91636 on 4 procs for 100 steps with 128 atoms + +Performance: 2.254 ns/day, 10.646 hours/ns, 52.182 timesteps/s +97.9% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 1.8147 | 1.8411 | 1.8875 | 2.1 | 96.07 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.022276 | 0.069629 | 0.095057 | 10.7 | 3.63 +Output | 0.00032496 | 0.00065821 | 0.0016179 | 0.0 | 0.03 +Modify | 0.00019503 | 0.00020915 | 0.00023341 | 0.0 | 0.01 +Other | | 0.00481 | | | 0.25 + +Nlocal: 32 ave 32 max 32 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 431 ave 431 max 431 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +FullNghs: 1856 ave 1856 max 1856 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 7424 +Ave neighs/atom = 58 +Neighbor list builds = 0 +Dangerous builds = 0 + +Total wall time: 0:00:01 diff --git a/examples/snap/log.5Oct16.snap.Ta06A.g++.1 b/examples/snap/log.20Apr18.snap.Ta06A.g++.1 similarity index 71% rename from examples/snap/log.5Oct16.snap.Ta06A.g++.1 rename to examples/snap/log.20Apr18.snap.Ta06A.g++.1 index 647ffac8b4326efa8ce7f6fca6b4ee9e577d32f5..d2296852a051bc6d12c58924a802357574a47d6e 100644 --- a/examples/snap/log.5Oct16.snap.Ta06A.g++.1 +++ b/examples/snap/log.20Apr18.snap.Ta06A.g++.1 @@ -1,4 +1,6 @@ -LAMMPS (5 Oct 2016) +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task # Demonstrate SNAP Ta potential # Initialize simulation @@ -31,12 +33,13 @@ Created orthogonal box = (0 0 0) to (13.264 13.264 13.264) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 128 atoms + Time spent = 0.000328064 secs mass 1 180.88 # choose potential -include Ta06A_pot.snap +include Ta06A.snap # DATE: 2014-09-05 CONTRIBUTOR: Aidan Thompson athomps@sandia.gov CITATION: Thompson, Swiler, Trott, Foiles and Tucker, arxiv.org, 1409.3880 (2014) # Definition of SNAP potential Ta_Cand06A @@ -48,10 +51,9 @@ variable zblz equal 73 # Specify hybrid with SNAP, ZBL -pair_style hybrid/overlay snap zbl ${zblcutinner} ${zblcutouter} -pair_style hybrid/overlay snap zbl 4 ${zblcutouter} -pair_style hybrid/overlay snap zbl 4 4.8 - +pair_style hybrid/overlay zbl ${zblcutinner} ${zblcutouter} snap +pair_style hybrid/overlay zbl 4 ${zblcutouter} snap +pair_style hybrid/overlay zbl 4 4.8 snap pair_coeff 1 1 zbl ${zblz} ${zblz} pair_coeff 1 1 zbl 73 ${zblz} pair_coeff 1 1 zbl 73 73 @@ -61,10 +63,11 @@ SNAP Element = Ta, Radius 0.5, Weight 1 Reading potential file Ta06A.snapparam with DATE: 2014-09-05 SNAP keyword rcutfac 4.67637 SNAP keyword twojmax 6 -SNAP keyword gamma 1 SNAP keyword rfac0 0.99363 SNAP keyword rmin0 0 SNAP keyword diagonalstyle 3 +SNAP keyword bzeroflag 0 +SNAP keyword quadraticflag 0 # Setup output @@ -85,13 +88,23 @@ fix 1 all nve run ${nsteps} run 100 Neighbor list info ... - 2 neighbor list requests update every 1 steps, delay 0 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 5.8 ghost atom cutoff = 5.8 - binsize = 2.9 -> bins = 5 5 5 -Memory usage per processor = 2.92823 Mbytes + binsize = 2.9, bins = 5 5 5 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair zbl, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair snap, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.138 | 4.138 | 4.138 Mbytes Step Temp E_pair E_mol TotEng Press 0 300 -11.85157 0 -11.813095 2717.1661 10 295.96579 -11.851053 0 -11.813095 2696.1559 @@ -104,20 +117,20 @@ Step Temp E_pair E_mol TotEng Press 80 124.04276 -11.829003 0 -11.813094 1537.703 90 97.37622 -11.825582 0 -11.813094 1734.9662 100 75.007873 -11.822714 0 -11.813094 1930.8005 -Loop time of 3.43062 on 1 procs for 100 steps with 128 atoms +Loop time of 2.53266 on 1 procs for 100 steps with 128 atoms -Performance: 1.259 ns/day, 19.059 hours/ns, 29.149 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads +Performance: 1.706 ns/day, 14.070 hours/ns, 39.484 timesteps/s +99.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 3.4295 | 3.4295 | 3.4295 | 0.0 | 99.97 +Pair | 2.5313 | 2.5313 | 2.5313 | 0.0 | 99.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 -Comm | 0.00043988 | 0.00043988 | 0.00043988 | 0.0 | 0.01 -Output | 0.00010014 | 0.00010014 | 0.00010014 | 0.0 | 0.00 -Modify | 0.00024533 | 0.00024533 | 0.00024533 | 0.0 | 0.01 -Other | | 0.0002978 | | | 0.01 +Comm | 0.00051379 | 0.00051379 | 0.00051379 | 0.0 | 0.02 +Output | 0.00023317 | 0.00023317 | 0.00023317 | 0.0 | 0.01 +Modify | 0.00023675 | 0.00023675 | 0.00023675 | 0.0 | 0.01 +Other | | 0.0003583 | | | 0.01 Nlocal: 128 ave 128 max 128 min Histogram: 1 0 0 0 0 0 0 0 0 0 @@ -133,4 +146,4 @@ Ave neighs/atom = 58 Neighbor list builds = 0 Dangerous builds = 0 -Total wall time: 0:00:03 +Total wall time: 0:00:02 diff --git a/examples/snap/log.5Oct16.snap.Ta06A.g++.4 b/examples/snap/log.20Apr18.snap.Ta06A.g++.4 similarity index 71% rename from examples/snap/log.5Oct16.snap.Ta06A.g++.4 rename to examples/snap/log.20Apr18.snap.Ta06A.g++.4 index 19d64c557c33538c702da0ddfb4fa1b30c336f8e..4d26481d5de2ccb00bbc364d70af786f458ec2e2 100644 --- a/examples/snap/log.5Oct16.snap.Ta06A.g++.4 +++ b/examples/snap/log.20Apr18.snap.Ta06A.g++.4 @@ -1,4 +1,6 @@ -LAMMPS (5 Oct 2016) +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task # Demonstrate SNAP Ta potential # Initialize simulation @@ -31,12 +33,13 @@ Created orthogonal box = (0 0 0) to (13.264 13.264 13.264) 1 by 2 by 2 MPI processor grid create_atoms 1 box Created 128 atoms + Time spent = 0.000288486 secs mass 1 180.88 # choose potential -include Ta06A_pot.snap +include Ta06A.snap # DATE: 2014-09-05 CONTRIBUTOR: Aidan Thompson athomps@sandia.gov CITATION: Thompson, Swiler, Trott, Foiles and Tucker, arxiv.org, 1409.3880 (2014) # Definition of SNAP potential Ta_Cand06A @@ -48,10 +51,9 @@ variable zblz equal 73 # Specify hybrid with SNAP, ZBL -pair_style hybrid/overlay snap zbl ${zblcutinner} ${zblcutouter} -pair_style hybrid/overlay snap zbl 4 ${zblcutouter} -pair_style hybrid/overlay snap zbl 4 4.8 - +pair_style hybrid/overlay zbl ${zblcutinner} ${zblcutouter} snap +pair_style hybrid/overlay zbl 4 ${zblcutouter} snap +pair_style hybrid/overlay zbl 4 4.8 snap pair_coeff 1 1 zbl ${zblz} ${zblz} pair_coeff 1 1 zbl 73 ${zblz} pair_coeff 1 1 zbl 73 73 @@ -61,10 +63,11 @@ SNAP Element = Ta, Radius 0.5, Weight 1 Reading potential file Ta06A.snapparam with DATE: 2014-09-05 SNAP keyword rcutfac 4.67637 SNAP keyword twojmax 6 -SNAP keyword gamma 1 SNAP keyword rfac0 0.99363 SNAP keyword rmin0 0 SNAP keyword diagonalstyle 3 +SNAP keyword bzeroflag 0 +SNAP keyword quadraticflag 0 # Setup output @@ -85,13 +88,23 @@ fix 1 all nve run ${nsteps} run 100 Neighbor list info ... - 2 neighbor list requests update every 1 steps, delay 0 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 5.8 ghost atom cutoff = 5.8 - binsize = 2.9 -> bins = 5 5 5 -Memory usage per processor = 2.91109 Mbytes + binsize = 2.9, bins = 5 5 5 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair zbl, perpetual, half/full from (2) + attributes: half, newton on + pair build: halffull/newton + stencil: none + bin: none + (2) pair snap, perpetual + attributes: full, newton on + pair build: full/bin/atomonly + stencil: full/bin/3d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.118 | 4.118 | 4.118 Mbytes Step Temp E_pair E_mol TotEng Press 0 300 -11.85157 0 -11.813095 2717.1661 10 295.8664 -11.85104 0 -11.813095 2702.935 @@ -104,20 +117,20 @@ Step Temp E_pair E_mol TotEng Press 80 121.80051 -11.828715 0 -11.813094 1627.6911 90 95.262635 -11.825311 0 -11.813094 1812.9327 100 73.194645 -11.822481 0 -11.813094 1995.2199 -Loop time of 0.89193 on 4 procs for 100 steps with 128 atoms +Loop time of 1.3621 on 4 procs for 100 steps with 128 atoms -Performance: 4.843 ns/day, 4.955 hours/ns, 112.116 timesteps/s -99.9% CPU use with 4 MPI tasks x no OpenMP threads +Performance: 3.172 ns/day, 7.567 hours/ns, 73.416 timesteps/s +98.7% CPU use with 4 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 0.84444 | 0.86772 | 0.88108 | 1.6 | 97.29 +Pair | 1.2867 | 1.309 | 1.35 | 2.1 | 96.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 -Comm | 0.009577 | 0.023049 | 0.046417 | 9.8 | 2.58 -Output | 0.00024009 | 0.00026137 | 0.00027895 | 0.1 | 0.03 -Modify | 8.2493e-05 | 9.352e-05 | 0.00010061 | 0.1 | 0.01 -Other | | 0.0008071 | | | 0.09 +Comm | 0.0096083 | 0.050652 | 0.072999 | 10.9 | 3.72 +Output | 0.00031447 | 0.00060236 | 0.0014303 | 0.0 | 0.04 +Modify | 0.00014234 | 0.00016212 | 0.00018811 | 0.0 | 0.01 +Other | | 0.001728 | | | 0.13 Nlocal: 32 ave 32 max 32 min Histogram: 4 0 0 0 0 0 0 0 0 0 @@ -133,4 +146,4 @@ Ave neighs/atom = 58 Neighbor list builds = 0 Dangerous builds = 0 -Total wall time: 0:00:00 +Total wall time: 0:00:01 diff --git a/examples/snap/log.21Feb17.snap.W.2940.g++.1 b/examples/snap/log.20Apr18.snap.W.2940.g++.1 similarity index 79% rename from examples/snap/log.21Feb17.snap.W.2940.g++.1 rename to examples/snap/log.20Apr18.snap.W.2940.g++.1 index 8c74380b8b7246dad9bf1079f17ad1ef8e56f7b8..19b2bfb40d88b1fd6dd62ab892dba1f463a48b03 100644 --- a/examples/snap/log.21Feb17.snap.W.2940.g++.1 +++ b/examples/snap/log.20Apr18.snap.W.2940.g++.1 @@ -1,4 +1,6 @@ -LAMMPS (13 Feb 2017) +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task # Demonstrate SNAP Ta potential # Initialize simulation @@ -31,20 +33,21 @@ Created orthogonal box = (0 0 0) to (12.7212 12.7212 12.7212) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 128 atoms + Time spent = 0.000190258 secs mass 1 183.84 # choose potential -include W_2940_2017_2.pot.snap -# DATE: 2017-02-20 CONTRIBUTOR: Mitchell Wood mitwood@sandia.gov CITATION: Wood, M. A. and Thompson, A. P. to appear in arxiv Feb2017 +include W_2940_2017_2.snap +# DATE: 2017-02-20 CONTRIBUTOR: Mitchell Wood mitwood@sandia.gov CITATION: Wood, M. A. and Thompson, A. P. "Quantum-Accurate Molecular Dynamics Potential for Tungsten" arXiv:1702.07042 [physics.comp-ph] # # Definition of SNAP+ZBL potential. variable zblcutinner equal 4 variable zblcutouter equal 4.8 variable zblz equal 74 -# Specify hybrid with SNAP, ZBL, and long-range Coulomb +# Specify hybrid with SNAP and ZBL pair_style hybrid/overlay zbl ${zblcutinner} ${zblcutouter} snap pair_style hybrid/overlay zbl 4 ${zblcutouter} snap @@ -58,10 +61,11 @@ SNAP Element = W, Radius 0.5, Weight 1 Reading potential file W_2940_2017_2.snapparam with DATE: 2017-02-20 SNAP keyword rcutfac 4.73442 SNAP keyword twojmax 8 -SNAP keyword gamma 1 SNAP keyword rfac0 0.99363 SNAP keyword rmin0 0 SNAP keyword diagonalstyle 3 +SNAP keyword bzeroflag 0 +SNAP keyword quadraticflag 0 #Nomenclature on the snap files are Element_DakotaID_Year_Month @@ -99,7 +103,7 @@ Neighbor list info ... pair build: full/bin/atomonly stencil: full/bin/3d bin: standard -Memory usage per processor = 5.14696 Mbytes +Per MPI rank memory allocation (min/avg/max) = 5.15 | 5.15 | 5.15 Mbytes Step Temp E_pair E_mol TotEng Press 0 300 -11.028325 0 -10.98985 3010.497 10 293.40666 -11.027479 0 -10.989849 3246.0559 @@ -112,20 +116,20 @@ Step Temp E_pair E_mol TotEng Press 80 58.605244 -10.997364 0 -10.989848 11289.914 90 39.754503 -10.994946 0 -10.989848 11824.945 100 32.524085 -10.994019 0 -10.989848 11932.118 -Loop time of 11.8271 on 1 procs for 100 steps with 128 atoms +Loop time of 9.69738 on 1 procs for 100 steps with 128 atoms -Performance: 0.365 ns/day, 65.706 hours/ns, 8.455 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads +Performance: 0.445 ns/day, 53.874 hours/ns, 10.312 timesteps/s +99.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 11.826 | 11.826 | 11.826 | 0.0 | 99.99 +Pair | 9.6961 | 9.6961 | 9.6961 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 -Comm | 0.00044084 | 0.00044084 | 0.00044084 | 0.0 | 0.00 -Output | 0.00013232 | 0.00013232 | 0.00013232 | 0.0 | 0.00 -Modify | 0.00021887 | 0.00021887 | 0.00021887 | 0.0 | 0.00 -Other | | 0.0002718 | | | 0.00 +Comm | 0.00044036 | 0.00044036 | 0.00044036 | 0.0 | 0.00 +Output | 0.00024843 | 0.00024843 | 0.00024843 | 0.0 | 0.00 +Modify | 0.00023937 | 0.00023937 | 0.00023937 | 0.0 | 0.00 +Other | | 0.0003347 | | | 0.00 Nlocal: 128 ave 128 max 128 min Histogram: 1 0 0 0 0 0 0 0 0 0 @@ -141,4 +145,4 @@ Ave neighs/atom = 58 Neighbor list builds = 0 Dangerous builds = 0 -Total wall time: 0:00:11 +Total wall time: 0:00:09 diff --git a/examples/snap/log.21Feb17.snap.W.2940.g++.4 b/examples/snap/log.20Apr18.snap.W.2940.g++.4 similarity index 79% rename from examples/snap/log.21Feb17.snap.W.2940.g++.4 rename to examples/snap/log.20Apr18.snap.W.2940.g++.4 index 97ed5cc8d12728a0e1d9fb2bc79729188ad7c569..dfa63fc6ea208d4552b8533a1a32fd73bc88d4fe 100644 --- a/examples/snap/log.21Feb17.snap.W.2940.g++.4 +++ b/examples/snap/log.20Apr18.snap.W.2940.g++.4 @@ -1,4 +1,6 @@ -LAMMPS (13 Feb 2017) +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task # Demonstrate SNAP Ta potential # Initialize simulation @@ -31,20 +33,21 @@ Created orthogonal box = (0 0 0) to (12.7212 12.7212 12.7212) 1 by 2 by 2 MPI processor grid create_atoms 1 box Created 128 atoms + Time spent = 0.000309944 secs mass 1 183.84 # choose potential -include W_2940_2017_2.pot.snap -# DATE: 2017-02-20 CONTRIBUTOR: Mitchell Wood mitwood@sandia.gov CITATION: Wood, M. A. and Thompson, A. P. to appear in arxiv Feb2017 +include W_2940_2017_2.snap +# DATE: 2017-02-20 CONTRIBUTOR: Mitchell Wood mitwood@sandia.gov CITATION: Wood, M. A. and Thompson, A. P. "Quantum-Accurate Molecular Dynamics Potential for Tungsten" arXiv:1702.07042 [physics.comp-ph] # # Definition of SNAP+ZBL potential. variable zblcutinner equal 4 variable zblcutouter equal 4.8 variable zblz equal 74 -# Specify hybrid with SNAP, ZBL, and long-range Coulomb +# Specify hybrid with SNAP and ZBL pair_style hybrid/overlay zbl ${zblcutinner} ${zblcutouter} snap pair_style hybrid/overlay zbl 4 ${zblcutouter} snap @@ -58,10 +61,11 @@ SNAP Element = W, Radius 0.5, Weight 1 Reading potential file W_2940_2017_2.snapparam with DATE: 2017-02-20 SNAP keyword rcutfac 4.73442 SNAP keyword twojmax 8 -SNAP keyword gamma 1 SNAP keyword rfac0 0.99363 SNAP keyword rmin0 0 SNAP keyword diagonalstyle 3 +SNAP keyword bzeroflag 0 +SNAP keyword quadraticflag 0 #Nomenclature on the snap files are Element_DakotaID_Year_Month @@ -99,7 +103,7 @@ Neighbor list info ... pair build: full/bin/atomonly stencil: full/bin/3d bin: standard -Memory usage per processor = 5.12833 Mbytes +Per MPI rank memory allocation (min/avg/max) = 5.13 | 5.13 | 5.13 Mbytes Step Temp E_pair E_mol TotEng Press 0 300 -11.028325 0 -10.98985 3010.497 10 293.22504 -11.027456 0 -10.989849 3258.275 @@ -112,20 +116,20 @@ Step Temp E_pair E_mol TotEng Press 80 56.127265 -10.997046 0 -10.989848 11551.687 90 38.025013 -10.994724 0 -10.989847 12069.936 100 31.768127 -10.993922 0 -10.989847 12145.648 -Loop time of 3.03545 on 4 procs for 100 steps with 128 atoms +Loop time of 5.15615 on 4 procs for 100 steps with 128 atoms -Performance: 1.423 ns/day, 16.864 hours/ns, 32.944 timesteps/s -99.9% CPU use with 4 MPI tasks x no OpenMP threads +Performance: 0.838 ns/day, 28.645 hours/ns, 19.394 timesteps/s +98.9% CPU use with 4 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 2.9594 | 2.9866 | 3.0319 | 1.6 | 98.39 +Pair | 5.0497 | 5.0762 | 5.092 | 0.8 | 98.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 -Comm | 0.0024238 | 0.047825 | 0.075032 | 12.5 | 1.58 -Output | 0.00021601 | 0.00024045 | 0.00027442 | 0.0 | 0.01 -Modify | 9.6798e-05 | 0.00011188 | 0.00011802 | 0.0 | 0.00 -Other | | 0.000698 | | | 0.02 +Comm | 0.060802 | 0.07661 | 0.10305 | 6.1 | 1.49 +Output | 0.00040722 | 0.00078458 | 0.0018959 | 0.0 | 0.02 +Modify | 0.0002389 | 0.00024962 | 0.00027442 | 0.0 | 0.00 +Other | | 0.002315 | | | 0.04 Nlocal: 32 ave 32 max 32 min Histogram: 4 0 0 0 0 0 0 0 0 0 @@ -141,4 +145,4 @@ Ave neighs/atom = 58 Neighbor list builds = 0 Dangerous builds = 0 -Total wall time: 0:00:03 +Total wall time: 0:00:05 diff --git a/examples/snap/log.21Feb17.snap.hybrid.WSNAP.HePair.g++.1 b/examples/snap/log.20Apr18.snap.hybrid.WSNAP.HePair.g++.1 similarity index 83% rename from examples/snap/log.21Feb17.snap.hybrid.WSNAP.HePair.g++.1 rename to examples/snap/log.20Apr18.snap.hybrid.WSNAP.HePair.g++.1 index 846eef269ce580ca63d730be0fb1ced38da1bf58..3f40936308b21d4e3d0ed1e8e83145c5cfd9d0f7 100644 --- a/examples/snap/log.21Feb17.snap.hybrid.WSNAP.HePair.g++.1 +++ b/examples/snap/log.20Apr18.snap.hybrid.WSNAP.HePair.g++.1 @@ -1,4 +1,6 @@ -LAMMPS (13 Feb 2017) +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task # Demonstrate SNAP Ta potential # Initialize simulation @@ -31,6 +33,7 @@ Created orthogonal box = (0 0 0) to (12.7212 12.7212 12.7212) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 128 atoms + Time spent = 0.000431538 secs mass 1 183.84 mass 2 4.0026 @@ -42,15 +45,15 @@ group helium type 2 5 atoms in group helium # choose potential -include W.SNAP_HePair.pot -# DATE: 2017-02-20 CONTRIBUTOR: Mitchell Wood mitwood@sandia.gov CITATION: Wood, M. A. and Thompson, A. P. to appear in arxiv Feb2017, W-He and He-He from Juslin, N. and Wirth, B. D. Journal of Nuclear Materials, 423, (2013) p61-63 +include W_2940_2017_2_He_JW2013.snap +# DATE: 2017-02-20 CONTRIBUTOR: Mitchell Wood mitwood@sandia.gov CITATION: Wood, M. A. and Thompson, A. P. "Quantum-Accurate Molecular Dynamics Potential for Tungsten" arXiv:1702.07042 [physics.comp-ph] # # Definition of SNAP+ZBL+Tabulated potential. variable zblcutinner equal 4 variable zblcutouter equal 4.8 variable zblz equal 74 -# Specify hybrid with SNAP, ZBL, and long-range Coulomb +# Specify hybrid with SNAP and ZBL pair_style hybrid/overlay zbl ${zblcutinner} ${zblcutouter} snap table spline 10000 table spline 10000 pair_style hybrid/overlay zbl 4 ${zblcutouter} snap table spline 10000 table spline 10000 @@ -64,18 +67,19 @@ SNAP Element = W, Radius 0.5, Weight 1 Reading potential file W_2940_2017_2.snapparam with DATE: 2017-02-20 SNAP keyword rcutfac 4.73442 SNAP keyword twojmax 8 -SNAP keyword gamma 1 SNAP keyword rfac0 0.99363 SNAP keyword rmin0 0 SNAP keyword diagonalstyle 3 +SNAP keyword bzeroflag 0 +SNAP keyword quadraticflag 0 pair_coeff 2 2 table 1 He_He_JW2013.table HeHe Reading potential file He_He_JW2013.table with DATE: 2017-02-20 WARNING: 1 of 4999 force values in table are inconsistent with -dE/dr. - Should only be flagged at inflection points (../pair_table.cpp:476) + Should only be flagged at inflection points (../pair_table.cpp:481) pair_coeff 1 2 table 2 W_He_JW2013.table WHe Reading potential file W_He_JW2013.table with DATE: 2017-02-20 WARNING: 3 of 325 force values in table are inconsistent with -dE/dr. - Should only be flagged at inflection points (../pair_table.cpp:476) + Should only be flagged at inflection points (../pair_table.cpp:481) #Hybrid/overlay will take all pair styles and add their contributions equally, order of pair_coeff doesnt matter here #This is not the case for pair_style hybrid ... where only one pair_coeff is read for each type combination, order matters here. @@ -134,7 +138,7 @@ Neighbor list info ... pair build: full/bin/atomonly stencil: full/bin/3d bin: standard -Memory usage per processor = 7.6729 Mbytes +Per MPI rank memory allocation (min/avg/max) = 7.676 | 7.676 | 7.676 Mbytes Step Temp E_pair E_mol TotEng Press 0 300 -10.438105 0 -10.39963 -5445.2808 10 290.48923 -10.436885 0 -10.399629 -5646.4813 @@ -147,20 +151,20 @@ Step Temp E_pair E_mol TotEng Press 80 85.903126 -10.410645 0 -10.399628 857.74986 90 65.223651 -10.407993 0 -10.399628 1494.2746 100 59.833542 -10.407302 0 -10.399628 1938.9164 -Loop time of 11.0736 on 1 procs for 100 steps with 128 atoms +Loop time of 8.902 on 1 procs for 100 steps with 128 atoms -Performance: 0.390 ns/day, 61.520 hours/ns, 9.030 timesteps/s -99.9% CPU use with 1 MPI tasks x no OpenMP threads +Performance: 0.485 ns/day, 49.456 hours/ns, 11.233 timesteps/s +99.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 11.072 | 11.072 | 11.072 | 0.0 | 99.99 -Neigh | 0.00041604 | 0.00041604 | 0.00041604 | 0.0 | 0.00 -Comm | 0.00046253 | 0.00046253 | 0.00046253 | 0.0 | 0.00 -Output | 0.0001657 | 0.0001657 | 0.0001657 | 0.0 | 0.00 -Modify | 0.0002265 | 0.0002265 | 0.0002265 | 0.0 | 0.00 -Other | | 0.0003119 | | | 0.00 +Pair | 8.9002 | 8.9002 | 8.9002 | 0.0 | 99.98 +Neigh | 0.00043058 | 0.00043058 | 0.00043058 | 0.0 | 0.00 +Comm | 0.00045776 | 0.00045776 | 0.00045776 | 0.0 | 0.01 +Output | 0.00025344 | 0.00025344 | 0.00025344 | 0.0 | 0.00 +Modify | 0.00022483 | 0.00022483 | 0.00022483 | 0.0 | 0.00 +Other | | 0.0003953 | | | 0.00 Nlocal: 128 ave 128 max 128 min Histogram: 1 0 0 0 0 0 0 0 0 0 @@ -176,4 +180,4 @@ Ave neighs/atom = 53.5156 Neighbor list builds = 1 Dangerous builds = 0 -Total wall time: 0:00:11 +Total wall time: 0:00:09 diff --git a/examples/snap/log.21Feb17.snap.hybrid.WSNAP.HePair.g++.4 b/examples/snap/log.20Apr18.snap.hybrid.WSNAP.HePair.g++.4 similarity index 84% rename from examples/snap/log.21Feb17.snap.hybrid.WSNAP.HePair.g++.4 rename to examples/snap/log.20Apr18.snap.hybrid.WSNAP.HePair.g++.4 index 9bcbd288aa664cf29025090e8c0937e2580d905a..4ec85a63d014085449367848dbfd2c6f787a41e4 100644 --- a/examples/snap/log.21Feb17.snap.hybrid.WSNAP.HePair.g++.4 +++ b/examples/snap/log.20Apr18.snap.hybrid.WSNAP.HePair.g++.4 @@ -1,4 +1,6 @@ -LAMMPS (13 Feb 2017) +LAMMPS (20 Apr 2018) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:90) + using 1 OpenMP thread(s) per MPI task # Demonstrate SNAP Ta potential # Initialize simulation @@ -31,6 +33,7 @@ Created orthogonal box = (0 0 0) to (12.7212 12.7212 12.7212) 1 by 2 by 2 MPI processor grid create_atoms 1 box Created 128 atoms + Time spent = 0.000274658 secs mass 1 183.84 mass 2 4.0026 @@ -42,15 +45,15 @@ group helium type 2 5 atoms in group helium # choose potential -include W.SNAP_HePair.pot -# DATE: 2017-02-20 CONTRIBUTOR: Mitchell Wood mitwood@sandia.gov CITATION: Wood, M. A. and Thompson, A. P. to appear in arxiv Feb2017, W-He and He-He from Juslin, N. and Wirth, B. D. Journal of Nuclear Materials, 423, (2013) p61-63 +include W_2940_2017_2_He_JW2013.snap +# DATE: 2017-02-20 CONTRIBUTOR: Mitchell Wood mitwood@sandia.gov CITATION: Wood, M. A. and Thompson, A. P. "Quantum-Accurate Molecular Dynamics Potential for Tungsten" arXiv:1702.07042 [physics.comp-ph] # # Definition of SNAP+ZBL+Tabulated potential. variable zblcutinner equal 4 variable zblcutouter equal 4.8 variable zblz equal 74 -# Specify hybrid with SNAP, ZBL, and long-range Coulomb +# Specify hybrid with SNAP and ZBL pair_style hybrid/overlay zbl ${zblcutinner} ${zblcutouter} snap table spline 10000 table spline 10000 pair_style hybrid/overlay zbl 4 ${zblcutouter} snap table spline 10000 table spline 10000 @@ -64,18 +67,19 @@ SNAP Element = W, Radius 0.5, Weight 1 Reading potential file W_2940_2017_2.snapparam with DATE: 2017-02-20 SNAP keyword rcutfac 4.73442 SNAP keyword twojmax 8 -SNAP keyword gamma 1 SNAP keyword rfac0 0.99363 SNAP keyword rmin0 0 SNAP keyword diagonalstyle 3 +SNAP keyword bzeroflag 0 +SNAP keyword quadraticflag 0 pair_coeff 2 2 table 1 He_He_JW2013.table HeHe Reading potential file He_He_JW2013.table with DATE: 2017-02-20 WARNING: 1 of 4999 force values in table are inconsistent with -dE/dr. - Should only be flagged at inflection points (../pair_table.cpp:476) + Should only be flagged at inflection points (../pair_table.cpp:481) pair_coeff 1 2 table 2 W_He_JW2013.table WHe Reading potential file W_He_JW2013.table with DATE: 2017-02-20 WARNING: 3 of 325 force values in table are inconsistent with -dE/dr. - Should only be flagged at inflection points (../pair_table.cpp:476) + Should only be flagged at inflection points (../pair_table.cpp:481) #Hybrid/overlay will take all pair styles and add their contributions equally, order of pair_coeff doesnt matter here #This is not the case for pair_style hybrid ... where only one pair_coeff is read for each type combination, order matters here. @@ -134,7 +138,7 @@ Neighbor list info ... pair build: full/bin/atomonly stencil: full/bin/3d bin: standard -Memory usage per processor = 7.65426 Mbytes +Per MPI rank memory allocation (min/avg/max) = 7.656 | 7.656 | 7.656 Mbytes Step Temp E_pair E_mol TotEng Press 0 300 -10.438105 0 -10.39963 -5445.2808 10 292.13979 -10.437097 0 -10.39963 -5516.3963 @@ -147,20 +151,20 @@ Step Temp E_pair E_mol TotEng Press 80 79.985938 -10.409886 0 -10.399628 2392.1106 90 62.568933 -10.407652 0 -10.399628 3141.7027 100 56.697933 -10.406899 0 -10.399628 3583.9538 -Loop time of 2.8757 on 4 procs for 100 steps with 128 atoms +Loop time of 4.82103 on 4 procs for 100 steps with 128 atoms -Performance: 1.502 ns/day, 15.976 hours/ns, 34.774 timesteps/s -99.9% CPU use with 4 MPI tasks x no OpenMP threads +Performance: 0.896 ns/day, 26.783 hours/ns, 20.742 timesteps/s +99.0% CPU use with 4 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- -Pair | 2.7363 | 2.8122 | 2.8636 | 2.9 | 97.79 +Pair | 4.4837 | 4.6734 | 4.7605 | 5.2 | 96.94 Neigh | 0 | 0 | 0 | 0.0 | 0.00 -Comm | 0.011014 | 0.062439 | 0.13842 | 19.3 | 2.17 -Output | 0.00023842 | 0.00025076 | 0.0002861 | 0.0 | 0.01 -Modify | 9.2506e-05 | 9.9301e-05 | 0.00010395 | 0.0 | 0.00 -Other | | 0.0006654 | | | 0.02 +Comm | 0.057389 | 0.14453 | 0.33421 | 29.4 | 3.00 +Output | 0.00038719 | 0.00073916 | 0.0017841 | 0.0 | 0.02 +Modify | 0.00018716 | 0.00022203 | 0.00026417 | 0.0 | 0.00 +Other | | 0.002119 | | | 0.04 Nlocal: 32 ave 32 max 32 min Histogram: 4 0 0 0 0 0 0 0 0 0 @@ -176,4 +180,4 @@ Ave neighs/atom = 53.5156 Neighbor list builds = 0 Dangerous builds = 0 -Total wall time: 0:00:02 +Total wall time: 0:00:04 diff --git a/lib/atc/ATC_Method.cpp b/lib/atc/ATC_Method.cpp index b1f3fa2545e74c68f882c434361c52b2091c8a95..5d61a7bed8ede5dfe033a952baf9d288e69a0054 100644 --- a/lib/atc/ATC_Method.cpp +++ b/lib/atc/ATC_Method.cpp @@ -2015,8 +2015,8 @@ pecified LammpsInterface::instance()->int_allmax(&send_size,&max_size); if (comm_rank == 0) { - int intbuf[max_size]; - double buf[max_size]; + int *intbuf = new int[max_size]; + double *buf = new double[max_size]; for (int iproc = 1; iproc < nprocs; iproc++) { LammpsInterface::instance()->int_recv(intbuf,max_size,iproc); LammpsInterface::instance()->recv(buf,max_size,iproc); @@ -2024,15 +2024,19 @@ pecified out << intbuf[i] << " " << buf[i] << "\n"; } } + delete[] intbuf; + delete[] buf; } else { - int intbuf[send_size]; - double buf[send_size]; + int *intbuf = new int[send_size]; + double *buf = new double[send_size]; for (int i = 0; i < send_size; i++) { intbuf[i] = id2tag[i]; buf[i] = atomicVolumeMatrix(i,i); } LammpsInterface::instance()->int_send(intbuf,send_size); LammpsInterface::instance()->send(buf,send_size); + delete[] intbuf; + delete[] buf; } } diff --git a/lib/atc/Array.h b/lib/atc/Array.h index 9df6cbbda245d1bc4730d124a1a6980bbad2dae4..21e66a95512b4b73b2e66e482312d8dd09110d19 100644 --- a/lib/atc/Array.h +++ b/lib/atc/Array.h @@ -4,7 +4,7 @@ #include #include #include -#include +#include // for macros #include "MatrixDef.h" diff --git a/lib/atc/Array2D.h b/lib/atc/Array2D.h index 8d3af47e12c14bea9e852928fea9b9cdee180009..25f895f72ccbaa82323ca1617d66f2fe8d519aba 100644 --- a/lib/atc/Array2D.h +++ b/lib/atc/Array2D.h @@ -2,10 +2,9 @@ #define ARRAY2D_H #include +#include #include #include -#include -#include #include "Array.h" diff --git a/lib/atc/ElectronPhononExchange.cpp b/lib/atc/ElectronPhononExchange.cpp index 2ed25fc557dd8494a9556a4fe86fa199fbc34d41..0ccc8ec67e1c70df9ff298eb0ee5b13b83afc006 100644 --- a/lib/atc/ElectronPhononExchange.cpp +++ b/lib/atc/ElectronPhononExchange.cpp @@ -5,7 +5,7 @@ #include #include -#include +#include using ATC_Utility::command_line; using ATC_Utility::str2dbl; diff --git a/lib/atc/FE_Element.cpp b/lib/atc/FE_Element.cpp index cfc59aa601d8b8019d5efdff63ffa3a6abc24a81..9eec08c483e971a4574c41ea653856a776841b41 100644 --- a/lib/atc/FE_Element.cpp +++ b/lib/atc/FE_Element.cpp @@ -8,7 +8,7 @@ #include "Utility.h" // Other headers -#include "math.h" +#include using ATC_Utility::dbl_geq; using ATC_Utility::det3; diff --git a/lib/atc/FE_Engine.cpp b/lib/atc/FE_Engine.cpp index d8d6e3e440b364c30a25f568d0ff076d729b3e06..efcde66d782fa9ce27bd596ad3418645c6b30b2f 100644 --- a/lib/atc/FE_Engine.cpp +++ b/lib/atc/FE_Engine.cpp @@ -7,8 +7,8 @@ #include "KernelFunction.h" #include "Utility.h" #include "MPI_Wrappers.h" -#include -#include +#include +#include #include #include @@ -352,8 +352,9 @@ namespace ATC{ // each segment of the piecewise funcion is length-normalized separately else if (strcmp(arg[argIdx],"position-number-density")==0) { argIdx++; - double y[nx],w[nx]; - int n[nx]; + double *y = new double[nx]; + double *w = new double[nx]; + int *n = new int[nx]; int nn = 0; while (argIdx < narg) { if (! is_numeric(arg[argIdx])) break; @@ -369,7 +370,7 @@ namespace ATC{ double w0 = w[i-1]; double dw = w[i]-w0; double lx = 0; - double l[dn]; + double *l = new double[dn]; for (int j = 0; j < dn; ++j) { double x = (j+0.5)/dn; double dl = w0+x*dw; @@ -380,7 +381,11 @@ namespace ATC{ for (int j = 0; j < dn; ++j) { dx(k++) = scale*l[j]; } + delete[] l; } + delete[] y; + delete[] w; + delete[] n; } // construct relative values from a density function // evaluate for a domain (0,1) diff --git a/lib/atc/FE_Interpolate.cpp b/lib/atc/FE_Interpolate.cpp index 3f41e3002994db342561e2a5b8f2a6f5112ee9ec..19753a80079a6fe7e4e69d1cc624ef55c2ab56cb 100644 --- a/lib/atc/FE_Interpolate.cpp +++ b/lib/atc/FE_Interpolate.cpp @@ -5,7 +5,7 @@ #include "FE_Quadrature.h" // Other headers -#include "math.h" +#include using std::map; using std::vector; diff --git a/lib/atc/FE_Mesh.cpp b/lib/atc/FE_Mesh.cpp index 6225a1b192af060bdbccecd5d59ddd014414b1e8..b090bf2881bdbb9855c7098ccc7b5f2a6d4a4f7a 100644 --- a/lib/atc/FE_Mesh.cpp +++ b/lib/atc/FE_Mesh.cpp @@ -6,7 +6,7 @@ #include "OutputManager.h" #include "Utility.h" #include -#include +#include #include #include #include diff --git a/lib/atc/FE_Mesh.h b/lib/atc/FE_Mesh.h index b37cb1e8bad05ef6639e8aa83cb4b83327b844b7..be40d7cb28e21265646d5320a2ecce105eddb98c 100644 --- a/lib/atc/FE_Mesh.h +++ b/lib/atc/FE_Mesh.h @@ -12,7 +12,7 @@ #include #include #include -#include +#include #include #include #include "mpi.h" diff --git a/lib/atc/Function.cpp b/lib/atc/Function.cpp index 0bd759695c0839db48d423dbe858a78b6de9c090..12396937bd75a149285d92ae3435964dcc399738 100644 --- a/lib/atc/Function.cpp +++ b/lib/atc/Function.cpp @@ -1,3 +1,6 @@ +#ifndef _WIN32 +#include +#endif #include "Function.h" #include "ATC_Error.h" #include "LammpsInterface.h" @@ -58,9 +61,13 @@ namespace ATC { { string type = args[0]; int narg = nargs -1; - double dargs[narg]; +#ifdef _WIN32 + double *dargs = (double *) _alloca(sizeof(double) * narg); +#else + double *dargs = (double *) alloca(sizeof(double) * narg); +#endif for (int i = 0; i < narg; ++i) dargs[i] = atof(args[i+1]); - + return function(type, narg, dargs); } @@ -192,7 +199,11 @@ XT_Function_Mgr * XT_Function_Mgr::myInstance_ = NULL; { string type = args[0]; int narg = nargs -1; - double dargs[narg]; +#ifdef _WIN32 + double *dargs = (double *) _alloca(sizeof(double) * narg); +#else + double *dargs = (double *) alloca(sizeof(double) * narg); +#endif for (int i = 0; i < narg; ++i) dargs[i] = atof(args[i+1]); return function(type, narg, dargs); diff --git a/lib/atc/Function.h b/lib/atc/Function.h index 7368589e96ef65a958ce445040c3b92eaccd95e8..4572009f92a39729fb4b5342aaeb691b8099a76d 100644 --- a/lib/atc/Function.h +++ b/lib/atc/Function.h @@ -1,7 +1,7 @@ #ifndef XT_FUNCTION_H #define XT_FUNCTION_H -#include +#include #include #include #include diff --git a/lib/atc/GMRES.h b/lib/atc/GMRES.h index 0cffe9837f952b59f0f29f260107b90e6739267c..a64fc70c009bfa5cd51766ca67c1dbe32bc5be75 100644 --- a/lib/atc/GMRES.h +++ b/lib/atc/GMRES.h @@ -19,7 +19,7 @@ // //***************************************************************** -#include +#include template diff --git a/lib/atc/InterscaleOperators.h b/lib/atc/InterscaleOperators.h index 4681801e732dfacf1e2510cff8e09d70b08d9bd5..0ddca1dc67a08d4adb299a3648ddfad8a5f5b931 100644 --- a/lib/atc/InterscaleOperators.h +++ b/lib/atc/InterscaleOperators.h @@ -279,7 +279,7 @@ namespace ATC { typename std::map::iterator it = list.find(tag); if (it==list.end()) return NULL; return it->second; - }; + } /** helper function to add a data entry to a list */ template @@ -290,7 +290,7 @@ namespace ATC { throw ATC_Error("Tried to add another Quantity with tag "+tag+" in InterscaleManager::add_quantity"); typename std::template pair myPair(tag,quantity); list.insert(myPair); - }; + } /** helper function to add a data entry to a list when it requires neighbor communication*/ template @@ -302,7 +302,7 @@ namespace ATC { if (quantity->atom_type() == PROC_GHOST) { commList.push_back(quantity); } - }; + } /** helper function to fina a data entry in a list */ template @@ -311,7 +311,7 @@ namespace ATC { typename std::map::iterator it = list.find(tag); if (it!=list.end()) return it->second; return NULL; - }; + } /** helper function to force the reset of all data in a list */ template @@ -319,7 +319,7 @@ namespace ATC { { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) (it->second)->force_reset(); - }; + } /** helper function to set the memory type to temporary of a list */ template @@ -327,7 +327,7 @@ namespace ATC { { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) (it->second)->set_memory_type(TEMPORARY); - }; + } /** helper function to perform intialization for dfs of a list */ template @@ -336,7 +336,7 @@ namespace ATC { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) { (it->second)->dfsFound_ = false; } - }; + } /** helper function to start the dfs visit for list */ template @@ -349,7 +349,7 @@ namespace ATC { if ((it->second)->memory_type()==TEMPORARY) list.erase(it++); else ++it; } - }; + } // PAQ helper functions /** helper function to adjust local atom count for all data in a list before exchange, only valid with quantities that do that are aware of atom counts */ @@ -359,7 +359,7 @@ namespace ATC { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) { (it->second)->reset_nlocal(); } - }; + } /** helper function to indicate lammps data is stale for all data in a list before exchange, only valid with PAQs */ template @@ -367,7 +367,7 @@ namespace ATC { { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) (it->second)->lammps_force_reset(); - }; + } /** helper function to size all data in a list, only valid with comm lists */ template @@ -375,7 +375,7 @@ namespace ATC { { for (typename std::vector::iterator it = list.begin(); it != list.end(); ++it) (*it)->quantity(); - }; + } /** helper function to pack all data in a list before exchange, only valid with quantities that do work before parallel communication */ template @@ -384,7 +384,7 @@ namespace ATC { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) { (it->second)->prepare_exchange(); } - }; + } /** helper function to extract all data in a list after exchange, only valid with quantities that do work after parallel communication */ template @@ -393,7 +393,7 @@ namespace ATC { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) { (it->second)->post_exchange(); } - }; + } /** helper function to determine memory usage of all data in a list, only valid with PAQs */ template @@ -401,7 +401,7 @@ namespace ATC { { for (typename std::map::const_iterator it = list.begin(); it != list.end(); ++it) usage += (it->second)->memory_usage(); - }; + } /** helper function to pack arrays of all data before exchange in a list, only valid with PAQs */ template @@ -410,7 +410,7 @@ namespace ATC { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) { index += (it->second)->pack_exchange(i,&buffer[index]); } - }; + } /** helper function to unpack arrays of all data after exchange in a list, only valid with PAQs */ template @@ -418,7 +418,7 @@ namespace ATC { { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) index += (it->second)->unpack_exchange(i,&buffer[index]); - }; + } /** helper function to pack arrays of all data in a list, only valid with comm lists */ template @@ -427,7 +427,7 @@ namespace ATC { { for (typename std::vector::iterator it = list.begin(); it != list.end(); ++it) size += (*it)->pack_comm(index,&buf[size],pbc_flag,pbc); - }; + } /** helper function to unpack arrays of all data in a list, only valid with comm lists */ template @@ -435,7 +435,7 @@ namespace ATC { { for (typename std::vector::iterator it = list.begin(); it != list.end(); ++it) size += (*it)->unpack_comm(index,&buf[size]); - }; + } /** helper function to grow arrays of all data in a list, only valid with PAQs */ template @@ -443,7 +443,7 @@ namespace ATC { { for (typename std::map::iterator it = list.begin(); it != list.end(); ++it) (it->second)->grow_lammps_array(nmax,prefix_+it->first); - }; + } /** helper function to copy arrays of all data in a list, only valid with PAQs */ template diff --git a/lib/atc/KD_Tree.cpp b/lib/atc/KD_Tree.cpp index 362bd70d34bd35f8d94d18d7c52e36978dab0f03..1432663e8064b60b8862e707d99aa010fb0245c1 100644 --- a/lib/atc/KD_Tree.cpp +++ b/lib/atc/KD_Tree.cpp @@ -1,5 +1,5 @@ #include "KD_Tree.h" -#include +#include using std::vector; diff --git a/lib/atc/KD_Tree.h b/lib/atc/KD_Tree.h index 6c788c407112948bbcbbed4f3c8d2f612728fa69..3877cd40993bd910744b19b94b898842431af1b2 100644 --- a/lib/atc/KD_Tree.h +++ b/lib/atc/KD_Tree.h @@ -4,7 +4,7 @@ #include "Array2D.h" #include "MatrixDef.h" #include "MatrixLibrary.h" -#include +#include #include #include diff --git a/lib/atc/KernelFunction.cpp b/lib/atc/KernelFunction.cpp index 91f99a61494f185145af66f0d709dc209af7e6e0..80e41a15509bd1c4efd77f42e5d55e30e0a6f910 100644 --- a/lib/atc/KernelFunction.cpp +++ b/lib/atc/KernelFunction.cpp @@ -1,5 +1,5 @@ #include "KernelFunction.h" -#include "math.h" +#include #include #include "ATC_Error.h" #include "Quadrature.h" diff --git a/lib/atc/LammpsInterface.cpp b/lib/atc/LammpsInterface.cpp index d584d159eaade8822f93af0e92d05004e1032d14..2238d930f4d4fb3f5eb25fac636168743e35d0f3 100644 --- a/lib/atc/LammpsInterface.cpp +++ b/lib/atc/LammpsInterface.cpp @@ -131,15 +131,15 @@ void LammpsInterface::sparse_allsum(SparseMatrix &toShare) const if (error != MPI_SUCCESS) throw ATC_Error("error in sparse_allsum_numrows "+to_string(error)); // adjust row sendcounts because recRowsCRS is off by one - int rowCounts[nProcs]; - int sizeCounts[nProcs]; + int *rowCounts = new int[nProcs]; + int *sizeCounts = new int[nProcs]; // set up total size of receive buffers for Allgatherv calls int totalRowsCRS = 0; int totalSize = 0; // set up array of displacements for Allgatherv calls - int rowOffsets[nProcs]; + int *rowOffsets = new int[nProcs]; rowOffsets[0] = 0; - int sizeOffsets[nProcs]; + int *sizeOffsets = new int[nProcs]; sizeOffsets[0] = 0; for (int i = 0; i < nProcs; i++) { // find the total number of entries to share in the mpi calls below @@ -156,8 +156,8 @@ void LammpsInterface::sparse_allsum(SparseMatrix &toShare) const // get actual rows INDEX *rec_ia = new INDEX[totalRowsCRS]; if (toShare.size() == 0) { - double dummy[0]; - error = MPI_Allgatherv(dummy, 0, MPI_INT, + double dummy; + error = MPI_Allgatherv(&dummy, 0, MPI_INT, rec_ia, rowCounts, rowOffsets, MPI_INT, lammps_->world); } else @@ -211,6 +211,10 @@ void LammpsInterface::sparse_allsum(SparseMatrix &toShare) const toShare += tempMat; } } + delete[] rowCounts; + delete[] sizeCounts; + delete[] rowOffsets; + delete[] sizeOffsets; delete[] recInfo; delete[] rec_ia; diff --git a/lib/atc/LammpsInterface.h b/lib/atc/LammpsInterface.h index ff2b4ba9b2696dfb270ba6e50191b73cea5ba1e7..2032571da5df99e642da3b761eb1464c176ed098 100644 --- a/lib/atc/LammpsInterface.h +++ b/lib/atc/LammpsInterface.h @@ -2,7 +2,7 @@ #define LAMMPS_INTERFACE_H #include -#include +#include #include #include #include @@ -315,7 +315,7 @@ class LammpsInterface { } else { int commSize = comm_size(); - double recv[commSize]; + double *recv = new double[commSize]; MPI_Wrappers::gather(lammps_->world,data,recv); if (rank_zero()) { full_msg << " ATC:" << tag; @@ -324,6 +324,7 @@ class LammpsInterface { } full_msg << "\n"; } + delete[] recv; } if (rank_zero()) { std::string mesg = full_msg.str(); @@ -577,13 +578,13 @@ class LammpsInterface { void destroy_2d_int_array(int **i) const; int ** grow_2d_int_array(int **array, int n1, int n2, const char *name) const; template - T * grow_array(T *&array, int n, const char *name) const {return lammps_->memory->grow(array,n,name);}; + T * grow_array(T *&array, int n, const char *name) const {return lammps_->memory->grow(array,n,name);} template - void destroy_array(T * array) {lammps_->memory->destroy(array);}; + void destroy_array(T * array) {lammps_->memory->destroy(array);} template - T ** grow_array(T **&array, int n1, int n2, const char *name) const {return lammps_->memory->grow(array,n1,n2,name);}; + T ** grow_array(T **&array, int n1, int n2, const char *name) const {return lammps_->memory->grow(array,n1,n2,name);} template - void destroy_array(T ** array) const {lammps_->memory->destroy(array);}; + void destroy_array(T ** array) const {lammps_->memory->destroy(array);} /*@}*/ /** \name Methods that interface with Update class */ diff --git a/lib/atc/MPI_Wrappers.cpp b/lib/atc/MPI_Wrappers.cpp index 9468644c53da762a871e64f7e569ab88605bc243..b8a8ab77b734d03442b30b0f3d8fadec53a3e886 100644 --- a/lib/atc/MPI_Wrappers.cpp +++ b/lib/atc/MPI_Wrappers.cpp @@ -94,7 +94,8 @@ namespace MPI_Wrappers { { int myRank; MPI_Comm_rank(MPI_COMM_WORLD, &myRank); - DOUBLE_RANK in[count],out[count]; + DOUBLE_RANK *in = new DOUBLE_RANK[count]; + DOUBLE_RANK *out = new DOUBLE_RANK[count]; for (int i = 0; i < count; i++) { in[i].val = send_buf[i]; in[i].rank = myRank; @@ -105,6 +106,8 @@ namespace MPI_Wrappers { for (int i = 0; i < count; i++) { rec_buf[i] = out[i].val; } + delete[] in; + delete[] out; return out[0].rank; } @@ -154,14 +157,16 @@ namespace MPI_Wrappers { { int error; int numprocs = size(comm); - int sizes[numprocs]; - int displacements[numprocs]; + int *sizes = new int[numprocs]; + int *displacements = new int[numprocs]; for (int i = 0; i < numprocs; ++i) { sizes[i] = 1; displacements[i] = i; } error = MPI_Scatterv(send_buf, sizes, displacements, MPI_INT, rec_buf, count, MPI_INT, 0, comm); if (error != MPI_SUCCESS) throw ATC_Error("error in int_scatter "+to_string(error)); + delete[] sizes; + delete[] displacements; } void allgatherv(MPI_Comm comm, double *send_buf, int send_count, diff --git a/lib/atc/Makefile.mpi b/lib/atc/Makefile.mpi index ec941efdcb6c0b0171440306653fa9522b8b65cf..c1ce0500ea5f717cec4d44f538127d330440312b 100644 --- a/lib/atc/Makefile.mpi +++ b/lib/atc/Makefile.mpi @@ -52,4 +52,4 @@ fastdep.exe: ../../src/DEPEND/fastdep.c clean: -rm -f *.o *~ .depend $(LIB) fastdep.exe -sinclude $(DEPENDS) +sinclude .depend diff --git a/lib/atc/OutputManager.cpp b/lib/atc/OutputManager.cpp index 414c5173e7b7cfb1bde38a5a263480eccec264d5..4340c8b8b0a3ca3c308be3838385a2b36a7b3c9a 100644 --- a/lib/atc/OutputManager.cpp +++ b/lib/atc/OutputManager.cpp @@ -1,6 +1,6 @@ #include #include -#include +#include #include #include "OutputManager.h" #include "ATC_Error.h" diff --git a/lib/atc/PrescribedDataManager.h b/lib/atc/PrescribedDataManager.h index 05f553ab2db9955c631c65ef122ae5768d213c92..738c34d593d5e9100422cd80622cc19dc2e7cc89 100644 --- a/lib/atc/PrescribedDataManager.h +++ b/lib/atc/PrescribedDataManager.h @@ -154,7 +154,7 @@ namespace ATC { std::set fluxes; //list of nodes to insert. //1 for nodes to insert, 0 for nodes not to insert. - int toInsert[nNodes_]; + int *toInsert = new int[nNodes_]; for (int i = 0; i < nNodes_; ++i) toInsert[i] = 0; const std::map < std::pair , Array < XT_Function * > > & sources = faceSources_.find(thisField)->second; @@ -178,6 +178,7 @@ namespace ATC { for (int node = 0; node < nNodes_; ++node) { if (toInsert[node]) fluxes.insert(node); } + delete[] toInsert; return fluxes; } @@ -189,7 +190,7 @@ namespace ATC { { //list of nodes to insert. //1 for nodes to insert, 0 for nodes not to insert. - int toInsert[nNodes_]; + int *toInsert = new int[nNodes_]; for (int i = 0; i < nNodes_; ++i) toInsert[i] = 0; const std::map < std::pair , Array < XT_Function * > > & sources = faceSources_.find(thisField)->second; @@ -213,6 +214,7 @@ namespace ATC { for (int node = 0; node < nNodes_; ++node) { if (toInsert[node]) fluxes.insert(node); } + delete[] toInsert; } /** */ @@ -223,7 +225,7 @@ namespace ATC { std::set fluxes; //list of nodes to insert. //1 for nodes to insert, 0 for nodes not to insert. - int toInsert[nNodes_]; + int *toInsert = new int[nNodes_]; for (int i = 0; i < nNodes_; ++i) toInsert[i] = 0; const Array2D < XT_Function *> & sources = elementSources_.find(thisField)->second; @@ -244,6 +246,7 @@ namespace ATC { for (int node = 0; node < nNodes_; ++node) { if (toInsert[node]) fluxes.insert(node); } + delete[] toInsert; return fluxes; } @@ -255,7 +258,7 @@ namespace ATC { { //list of nodes to insert. //1 for nodes to insert, 0 for nodes not to insert. - int toInsert[nNodes_]; + int *toInsert = new int[nNodes_]; for (int i = 0; i < nNodes_; ++i) toInsert[i] = 0; const Array2D < XT_Function *> & sources = elementSources_.find(thisField)->second; @@ -276,6 +279,7 @@ namespace ATC { for (int node = 0; node < nNodes_; ++node) { if (toInsert[node]) fluxes.insert(node); } + delete[] toInsert; } /** */ diff --git a/lib/atc/ShapeFunction.h b/lib/atc/ShapeFunction.h index 724e66924feadf790deaf17bbda8b64e84edb44a..62b2138cd7fd7b994d7aaa5d7c071ec21c27966e 100644 --- a/lib/atc/ShapeFunction.h +++ b/lib/atc/ShapeFunction.h @@ -5,10 +5,10 @@ #include "DependencyManager.h" #include "PaqAtcUtility.h" -#include -#include -#include -#include +#include +#include +#include +#include namespace ATC { diff --git a/lib/atc/SparseMatrix-inl.h b/lib/atc/SparseMatrix-inl.h index 8d6aec78dca94f04503caf662761ff203d4e75e7..f70dd0361d3cf52e519fef06abc07f0518c86b21 100644 --- a/lib/atc/SparseMatrix-inl.h +++ b/lib/atc/SparseMatrix-inl.h @@ -67,9 +67,9 @@ void SparseMatrix::_create(INDEX size, INDEX nrows) // assign memory to hold matrix try { - _val = (_size*nrows) ? new T [_size] : NULL; - _ia = (_size*nrows) ? new INDEX [_nRowsCRS+1] : NULL; - _ja = (_size*nrows) ? new INDEX [_size] : NULL; + _val = (_size && nrows) ? new T [_size] : NULL; + _ia = (_size && nrows) ? new INDEX [_nRowsCRS+1] : NULL; + _ja = (_size && nrows) ? new INDEX [_size] : NULL; } catch (std::exception &e) { diff --git a/lib/atc/Utility.h b/lib/atc/Utility.h index f9e99ff194fb8245618c791858cd308208876a1d..d975d4804ae87ac5ee9043ae206bedbf1e815782 100644 --- a/lib/atc/Utility.h +++ b/lib/atc/Utility.h @@ -13,7 +13,7 @@ #include #include #include -#include "math.h" +#include #include "ATC_Error.h" diff --git a/lib/awpmd/ivutils/include/cerf.h b/lib/awpmd/ivutils/include/cerf.h index 207fe8f4590b7e762c8c327340b69e6ee7d1d672..b094c4144f6d7dd49d023cc20669087871507625 100644 --- a/lib/awpmd/ivutils/include/cerf.h +++ b/lib/awpmd/ivutils/include/cerf.h @@ -42,11 +42,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // -//#include -//#include - -//#include "f77-fcn.h" - // // Abramowitz and Stegun: (eqn: 7.1.14) gives this continued // fraction for erfc(z) @@ -242,4 +237,4 @@ const Complex cerf( const Complex z ) // 2.2 1.7 0.135021+0.153161i | 0.135021 +0.153161 1.65541359 -1.276707 // 2.2 2.7 0.127900+0.096330i | 0.127900 +0.096330 0.98619434 +0.000564 -# endif \ No newline at end of file +# endif diff --git a/lib/awpmd/ivutils/include/logexc.h b/lib/awpmd/ivutils/include/logexc.h index 0211a96034448869676e0a7739df88fcea3e2b6d..400b3fb7d2e970e1773ade440ff25ce1b295139f 100644 --- a/lib/awpmd/ivutils/include/logexc.h +++ b/lib/awpmd/ivutils/include/logexc.h @@ -1,9 +1,9 @@ # ifndef LOGEXC_H # define LOGEXC_H -#include -#include -#include +#include +#include +#include #include #include diff --git a/lib/awpmd/ivutils/include/vector_3.h b/lib/awpmd/ivutils/include/vector_3.h index 75ef801a2ea7a1194c1169b68ebb8d2ca4cb54b9..3e3d9e6e0b249a941e90ad34039a3de5fb03a998 100644 --- a/lib/awpmd/ivutils/include/vector_3.h +++ b/lib/awpmd/ivutils/include/vector_3.h @@ -84,7 +84,7 @@ # include # include # include -# include +# include // some compilers don't define PI! # ifndef M_PI diff --git a/lib/colvars/Makefile.deps b/lib/colvars/Makefile.deps index 9a7de0647db57eeb3d62ee866e71f6e363b6c802..a0d8515bc104f985584d18726c79914c67227cdf 100644 --- a/lib/colvars/Makefile.deps +++ b/lib/colvars/Makefile.deps @@ -1,9 +1,9 @@ $(COLVARS_OBJ_DIR)colvaratoms.o: colvaratoms.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvarvalue.h colvartypes.h \ + colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h \ colvarparse.h colvaratoms.h colvardeps.h $(COLVARS_OBJ_DIR)colvarbias_abf.o: colvarbias_abf.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvarvalue.h colvartypes.h colvar.h \ + colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h colvar.h \ colvarparse.h colvardeps.h lepton/include/Lepton.h \ lepton/include/lepton/CompiledExpression.h \ lepton/include/lepton/ExpressionTreeNode.h \ @@ -29,7 +29,7 @@ $(COLVARS_OBJ_DIR)colvarbias_alb.o: colvarbias_alb.cpp colvarmodule.h \ lepton/include/lepton/ParsedExpression.h lepton/include/lepton/Parser.h \ colvarbias_alb.h $(COLVARS_OBJ_DIR)colvarbias.o: colvarbias.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvarvalue.h colvartypes.h colvarbias.h \ + colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h colvarbias.h \ colvar.h colvarparse.h colvardeps.h lepton/include/Lepton.h \ lepton/include/lepton/CompiledExpression.h \ lepton/include/lepton/ExpressionTreeNode.h \ @@ -42,8 +42,8 @@ $(COLVARS_OBJ_DIR)colvarbias.o: colvarbias.cpp colvarmodule.h \ lepton/include/lepton/ParsedExpression.h lepton/include/lepton/Parser.h \ colvargrid.h $(COLVARS_OBJ_DIR)colvarbias_histogram.o: colvarbias_histogram.cpp \ - colvarmodule.h colvars_version.h colvarproxy.h colvarvalue.h \ - colvartypes.h colvar.h colvarparse.h colvardeps.h \ + colvarmodule.h colvars_version.h colvarproxy.h colvartypes.h \ + colvarvalue.h colvar.h colvarparse.h colvardeps.h \ lepton/include/Lepton.h lepton/include/lepton/CompiledExpression.h \ lepton/include/lepton/ExpressionTreeNode.h \ lepton/include/lepton/windowsIncludes.h \ @@ -55,7 +55,7 @@ $(COLVARS_OBJ_DIR)colvarbias_histogram.o: colvarbias_histogram.cpp \ lepton/include/lepton/ParsedExpression.h lepton/include/lepton/Parser.h \ colvarbias_histogram.h colvarbias.h colvargrid.h $(COLVARS_OBJ_DIR)colvarbias_meta.o: colvarbias_meta.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvarvalue.h colvartypes.h colvar.h \ + colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h colvar.h \ colvarparse.h colvardeps.h lepton/include/Lepton.h \ lepton/include/lepton/CompiledExpression.h \ lepton/include/lepton/ExpressionTreeNode.h \ @@ -68,8 +68,8 @@ $(COLVARS_OBJ_DIR)colvarbias_meta.o: colvarbias_meta.cpp colvarmodule.h \ lepton/include/lepton/ParsedExpression.h lepton/include/lepton/Parser.h \ colvarbias_meta.h colvarbias.h colvargrid.h $(COLVARS_OBJ_DIR)colvarbias_restraint.o: colvarbias_restraint.cpp \ - colvarmodule.h colvars_version.h colvarproxy.h colvarvalue.h \ - colvartypes.h colvarbias_restraint.h colvarbias.h colvar.h colvarparse.h \ + colvarmodule.h colvars_version.h colvarproxy.h colvartypes.h \ + colvarvalue.h colvarbias_restraint.h colvarbias.h colvar.h colvarparse.h \ colvardeps.h lepton/include/Lepton.h \ lepton/include/lepton/CompiledExpression.h \ lepton/include/lepton/ExpressionTreeNode.h \ @@ -171,7 +171,7 @@ $(COLVARS_OBJ_DIR)colvar.o: colvar.cpp colvarmodule.h colvars_version.h \ lepton/include/lepton/ParsedExpression.h lepton/include/lepton/Parser.h \ colvarcomp.h colvaratoms.h colvarproxy.h colvarscript.h colvarbias.h $(COLVARS_OBJ_DIR)colvardeps.o: colvardeps.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvarvalue.h colvartypes.h colvardeps.h \ + colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h colvardeps.h \ colvarparse.h $(COLVARS_OBJ_DIR)colvargrid.o: colvargrid.cpp colvarmodule.h \ colvars_version.h colvarvalue.h colvartypes.h colvarparse.h colvar.h \ @@ -204,7 +204,7 @@ $(COLVARS_OBJ_DIR)colvarmodule.o: colvarmodule.cpp colvarmodule.h \ $(COLVARS_OBJ_DIR)colvarparse.o: colvarparse.cpp colvarmodule.h \ colvars_version.h colvarvalue.h colvartypes.h colvarparse.h $(COLVARS_OBJ_DIR)colvarproxy.o: colvarproxy.cpp colvarmodule.h \ - colvars_version.h colvarproxy.h colvarvalue.h colvartypes.h \ + colvars_version.h colvarproxy.h colvartypes.h colvarvalue.h \ colvarscript.h colvarbias.h colvar.h colvarparse.h colvardeps.h \ lepton/include/Lepton.h lepton/include/lepton/CompiledExpression.h \ lepton/include/lepton/ExpressionTreeNode.h \ diff --git a/lib/colvars/colvar.cpp b/lib/colvars/colvar.cpp index 5a4e8b617a9007fff02e87233b8f8dfebb1e7a25..c5b6d906c1ec063fac7ee5e48b39a41c4e841e96 100644 --- a/lib/colvars/colvar.cpp +++ b/lib/colvars/colvar.cpp @@ -7,6 +7,10 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. +#include +#include +#include + #include "colvarmodule.h" #include "colvarvalue.h" #include "colvarparse.h" @@ -14,15 +18,6 @@ #include "colvarcomp.h" #include "colvarscript.h" -// used in build_atom_list() -#include - - -/// Compare two cvcs using their names -/// Used to sort CVC array in scripted coordinates -bool compare(colvar::cvc *i, colvar::cvc *j) { - return i->name < j->name; -} colvar::colvar() @@ -34,6 +29,15 @@ colvar::colvar() } +namespace { + /// Compare two cvcs using their names + /// Used to sort CVC array in scripted coordinates + bool compare(colvar::cvc *i, colvar::cvc *j) + { + return i->name < j->name; + } +} + int colvar::init(std::string const &conf) { cvm::log("Initializing a new collective variable.\n"); @@ -143,6 +147,9 @@ int colvar::init(std::string const &conf) x.type(cvc_value); x_reported.type(cvc_value); } + + set_enabled(f_cv_scalar, (value().type() == colvarvalue::type_scalar)); + // If using scripted biases, any colvar may receive bias forces // and will need its gradient if (cvm::scripted_forces()) { @@ -198,6 +205,7 @@ int colvar::init(std::string const &conf) if (is_enabled(f_cv_homogeneous) && cvcs[0]->b_periodic) { // TODO make this a CVC feature bool b_periodic = true; period = cvcs[0]->period; + wrap_center = cvcs[0]->wrap_center; for (i = 1; i < cvcs.size(); i++) { if (!cvcs[i]->b_periodic || cvcs[i]->period != period) { b_periodic = false; @@ -211,6 +219,14 @@ int colvar::init(std::string const &conf) set_enabled(f_cv_periodic, b_periodic); } + // Allow scripted/custom functions to be defined as periodic + if ( (is_enabled(f_cv_scripted) || is_enabled(f_cv_custom_function)) && is_enabled(f_cv_scalar) ) { + if (get_keyval(conf, "period", period, 0.)) { + set_enabled(f_cv_periodic, true); + get_keyval(conf, "wrapAround", wrap_center, 0.); + } + } + // check that cvcs are compatible for (i = 0; i < cvcs.size(); i++) { @@ -443,8 +459,6 @@ int colvar::init_grid_parameters(std::string const &conf) upper_boundary.type(value()); upper_wall.type(value()); - set_enabled(f_cv_scalar, (value().type() == colvarvalue::type_scalar)); - if (is_enabled(f_cv_scalar)) { if (get_keyval(conf, "lowerBoundary", lower_boundary, lower_boundary)) { @@ -1503,7 +1517,7 @@ cvm::real colvar::update_forces_energy() vr += (0.5 * dt) * f_ext / ext_mass; xr += dt * vr; xr.apply_constraints(); - if (this->is_enabled(f_cv_periodic)) this->wrap(xr); + this->wrap(xr); } // Now adding the force on the actual colvar (for those biases that @@ -1714,9 +1728,18 @@ colvarvalue colvar::dist2_rgrad(colvarvalue const &x1, void colvar::wrap(colvarvalue &x) const { - if (is_enabled(f_cv_homogeneous)) { - (cvcs[0])->wrap(x); + if ( !is_enabled(f_cv_periodic) ) { + return; + } + + if ( is_enabled(f_cv_scripted) || is_enabled(f_cv_custom_function) ) { + // Scripted functions do their own wrapping, as cvcs might not be periodic + cvm::real shift = std::floor((x.real_value - wrap_center) / period + 0.5); + x.real_value -= shift * period; + } else { + cvcs[0]->wrap(x); } + return; } @@ -2244,7 +2267,7 @@ void colvar::calc_runave() runave.type(value().type()); runave.reset(); - // first-step operations + // first-step operationsf if (cvm::debug()) cvm::log("Colvar \""+this->name+ diff --git a/lib/colvars/colvar.h b/lib/colvars/colvar.h index 32c329460d06cfa5ceba43e245aa08a0d0810100..271231fb2aa2c6c6404c2f19f752cb80edfc66bf 100644 --- a/lib/colvars/colvar.h +++ b/lib/colvars/colvar.h @@ -216,6 +216,7 @@ public: /// Period, if this variable is periodic cvm::real period; + cvm::real wrap_center; /// \brief Expand the boundaries of multiples of width, to keep the diff --git a/lib/colvars/colvar_UIestimator.h b/lib/colvars/colvar_UIestimator.h index 36ed938119d41232dfdbdc42589cd35f8f67a735..759b8d54a034800bd9bebce1cb34753ca6bcef89 100644 --- a/lib/colvars/colvar_UIestimator.h +++ b/lib/colvars/colvar_UIestimator.h @@ -731,6 +731,6 @@ namespace UIestimator { } } }; -}; +} #endif diff --git a/lib/colvars/colvaratoms.cpp b/lib/colvars/colvaratoms.cpp index 1be6f42e594f86adf16a5b4702a631a6bef9c1e7..c8dcfc076619f881a3a217d4e794d52a9838c44e 100644 --- a/lib/colvars/colvaratoms.cpp +++ b/lib/colvars/colvaratoms.cpp @@ -7,6 +7,10 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. +#include +#include +#include + #include "colvarmodule.h" #include "colvarproxy.h" #include "colvarparse.h" @@ -436,7 +440,7 @@ int cvm::atom_group::parse(std::string const &group_conf) } bool b_print_atom_ids = false; - get_keyval(group_conf, "printAtomIDs", b_print_atom_ids, false, colvarparse::parse_silent); + get_keyval(group_conf, "printAtomIDs", b_print_atom_ids, false); // Calculate all required properties (such as total mass) setup(); @@ -715,13 +719,10 @@ int cvm::atom_group::parse_fitting_options(std::string const &group_conf) "if provided, must be non-zero.\n", INPUT_ERROR); return COLVARS_ERROR; } - } else { - // if not, rely on existing atom indices for the group - group_for_fit->create_sorted_ids(); - ref_pos.resize(group_for_fit->size()); } - cvm::load_coords(ref_pos_file.c_str(), ref_pos, group_for_fit->sorted_ids, + ref_pos.resize(group_for_fit->size()); + cvm::load_coords(ref_pos_file.c_str(), &ref_pos, group_for_fit, ref_pos_col, ref_pos_col_value); } @@ -789,33 +790,39 @@ void cvm::atom_group::do_feature_side_effects(int id) } -int cvm::atom_group::create_sorted_ids(void) +int cvm::atom_group::create_sorted_ids() { // Only do the work if the vector is not yet populated - if (sorted_ids.size()) + if (sorted_atoms_ids.size()) return COLVARS_OK; - std::list temp_id_list; - for (cvm::atom_iter ai = this->begin(); ai != this->end(); ai++) { - temp_id_list.push_back(ai->id); - } - temp_id_list.sort(); - temp_id_list.unique(); - if (temp_id_list.size() != this->size()) { - cvm::error("Error: duplicate atom IDs in atom group? (found " + - cvm::to_str(temp_id_list.size()) + - " unique atom IDs instead of" + - cvm::to_str(this->size()) + ").\n"); - return COLVARS_ERROR; + // Sort the internal IDs + std::list sorted_atoms_ids_list; + for (size_t i = 0; i < this->size(); i++) { + sorted_atoms_ids_list.push_back(atoms_ids[i]); } - sorted_ids = std::vector (temp_id_list.size()); - unsigned int id_i = 0; - std::list::iterator li; - for (li = temp_id_list.begin(); li != temp_id_list.end(); ++li) { - sorted_ids[id_i] = *li; - id_i++; + sorted_atoms_ids_list.sort(); + sorted_atoms_ids_list.unique(); + if (sorted_atoms_ids_list.size() != this->size()) { + return cvm::error("Error: duplicate atom IDs in atom group? (found " + + cvm::to_str(sorted_atoms_ids_list.size()) + + " unique atom IDs instead of " + + cvm::to_str(this->size()) + ").\n", BUG_ERROR); } - return (cvm::get_error() ? COLVARS_ERROR : COLVARS_OK); + + // Compute map between sorted and unsorted elements + sorted_atoms_ids.resize(this->size()); + sorted_atoms_ids_map.resize(this->size()); + std::list::iterator lsii = sorted_atoms_ids_list.begin(); + size_t ii = 0; + for ( ; ii < this->size(); lsii++, ii++) { + sorted_atoms_ids[ii] = *lsii; + size_t const pos = std::find(atoms_ids.begin(), atoms_ids.end(), *lsii) - + atoms_ids.begin(); + sorted_atoms_ids_map[ii] = pos; + } + + return COLVARS_OK; } diff --git a/lib/colvars/colvaratoms.h b/lib/colvars/colvaratoms.h index 0dda6ab792d8ae20afcf6a9aeaa615675f332d1b..93ae594aae893e303fff493487c6b49e7cf09ae8 100644 --- a/lib/colvars/colvaratoms.h +++ b/lib/colvars/colvaratoms.h @@ -227,9 +227,16 @@ protected: /// \brief Array of atom objects std::vector atoms; - /// \brief Array of atom identifiers for the MD program (0-based) + /// \brief Internal atom IDs for host code std::vector atoms_ids; + /// Sorted list of internal atom IDs (populated on-demand by + /// create_sorted_ids); used to read coordinate files + std::vector sorted_atoms_ids; + + /// Map entries of sorted_atoms_ids onto the original positions in the group + std::vector sorted_atoms_ids_map; + /// \brief Dummy atom position cvm::atom_pos dummy_atom_pos; @@ -273,19 +280,34 @@ public: return atoms.size(); } - std::string const print_atom_ids() const; - /// \brief If this option is on, this group merely acts as a wrapper /// for a fixed position; any calls to atoms within or to /// functions that return disaggregated data will fail bool b_dummy; - /// Sorted list of zero-based (internal) atom ids - /// (populated on-demand by create_sorted_ids) - std::vector sorted_ids; + /// Internal atom IDs (populated during initialization) + inline std::vector const &ids() const + { + return atoms_ids; + } + + std::string const print_atom_ids() const; + + /// Allocates and populates sorted_ids and sorted_ids_map + int create_sorted_ids(); - /// Allocates and populates the sorted list of atom ids - int create_sorted_ids(void); + /// Sorted internal atom IDs (populated on-demand by create_sorted_ids); + /// used to read coordinate files + inline std::vector const &sorted_ids() const + { + return sorted_atoms_ids; + } + + /// Map entries of sorted_atoms_ids onto the original positions in the group + inline std::vector const &sorted_ids_map() const + { + return sorted_atoms_ids_map; + } /// Detect whether two groups share atoms /// If yes, returns 1-based number of a common atom; else, returns 0 diff --git a/lib/colvars/colvarbias_abf.cpp b/lib/colvars/colvarbias_abf.cpp index b3b5b3eb1654df12992b2fafb206d82851d3788b..771955a4fa354222b300b2e3cefcfb71c81c2c12 100644 --- a/lib/colvars/colvarbias_abf.cpp +++ b/lib/colvars/colvarbias_abf.cpp @@ -17,17 +17,17 @@ colvarbias_abf::colvarbias_abf(char const *key) : colvarbias(key), b_UI_estimator(false), b_CZAR_estimator(false), + pabf_freq(0), system_force(NULL), gradients(NULL), - pmf(NULL), samples(NULL), + pmf(NULL), z_gradients(NULL), z_samples(NULL), czar_gradients(NULL), czar_pmf(NULL), last_gradients(NULL), - last_samples(NULL), - pabf_freq(0) + last_samples(NULL) { } @@ -315,8 +315,6 @@ colvarbias_abf::~colvarbias_abf() int colvarbias_abf::update() { - int iter; - if (cvm::debug()) cvm::log("Updating ABF bias " + this->name); size_t i; @@ -368,7 +366,12 @@ int colvarbias_abf::update() if ( b_integrate ) { if ( pabf_freq && cvm::step_relative() % pabf_freq == 0 ) { cvm::real err; - iter = pmf->integrate(integrate_steps, integrate_tol, err); + int iter = pmf->integrate(integrate_steps, integrate_tol, err); + if ( iter == integrate_steps ) { + cvm::log("Warning: PMF integration did not converge to " + cvm::to_str(integrate_tol) + + " in " + cvm::to_str(integrate_steps) + + " steps. Residual error: " + cvm::to_str(err)); + } pmf->set_zero_minimum(); // TODO: do this only when necessary } } @@ -485,7 +488,6 @@ int colvarbias_abf::update() int colvarbias_abf::replica_share() { - int p; if ( !cvm::replica_enabled() ) { cvm::error("Error: shared ABF: No replicas.\n"); @@ -507,6 +509,7 @@ int colvarbias_abf::replica_share() { char* msg_data = new char[msg_total]; if (cvm::replica_index() == 0) { + int p; // Replica 0 collects the delta gradient and count from the others. for (p = 1; p < cvm::replica_num(); p++) { // Receive the deltas. diff --git a/lib/colvars/colvarcomp.cpp b/lib/colvars/colvarcomp.cpp index 589de1d32af44a82d8b6beb78e8ee3d5f5ec8fc3..39b84b26d195dc59eae8bbced3ef40ef14f4cbb9 100644 --- a/lib/colvars/colvarcomp.cpp +++ b/lib/colvars/colvarcomp.cpp @@ -21,6 +21,9 @@ colvar::cvc::cvc() b_try_scalable(true) { init_cvc_requires(); + sup_coeff = 1.0; + period = 0.0; + wrap_center = 0.0; } @@ -30,43 +33,52 @@ colvar::cvc::cvc(std::string const &conf) b_periodic(false), b_try_scalable(true) { + init_cvc_requires(); + sup_coeff = 1.0; + period = 0.0; + wrap_center = 0.0; + init(conf); +} + + +int colvar::cvc::init(std::string const &conf) +{ + int error_code = COLVARS_OK; if (cvm::debug()) cvm::log("Initializing cvc base object.\n"); - init_cvc_requires(); - - if (get_keyval(conf, "name", this->name, std::string(""), parse_silent)) { + get_keyval(conf, "name", this->name, this->name); + if (name.size() > 0) { // Temporary description until child object is initialized description = "cvc " + name; } else { description = "uninitialized cvc"; } - get_keyval(conf, "componentCoeff", sup_coeff, 1.0); - get_keyval(conf, "componentExp", sup_np, 1); + get_keyval(conf, "componentCoeff", sup_coeff, sup_coeff); + get_keyval(conf, "componentExp", sup_np, sup_np); - get_keyval(conf, "period", period, 0.0); - get_keyval(conf, "wrapAround", wrap_center, 0.0); + get_keyval(conf, "period", period, period); + get_keyval(conf, "wrapAround", wrap_center, wrap_center); - get_keyval_feature((colvarparse *)this, conf, "debugGradients", + get_keyval_feature(dynamic_cast(this), conf, "debugGradients", f_cvc_debug_gradient, false, parse_silent); - { - bool b_no_PBC = false; - get_keyval(conf, "forceNoPBC", b_no_PBC, false); - if (b_no_PBC) { - disable(f_cvc_pbc_minimum_image); - } else { - enable(f_cvc_pbc_minimum_image); - } - // this does not use get_keyval_feature() only for backward compatibility + bool b_no_PBC = !is_enabled(f_cvc_pbc_minimum_image); // Enabled by default + get_keyval(conf, "forceNoPBC", b_no_PBC, b_no_PBC); + if (b_no_PBC) { + disable(f_cvc_pbc_minimum_image); + } else { + enable(f_cvc_pbc_minimum_image); } // Attempt scalable calculations when in parallel? (By default yes, if available) - get_keyval(conf, "scalable", b_try_scalable, true); + get_keyval(conf, "scalable", b_try_scalable, b_try_scalable); if (cvm::debug()) cvm::log("Done initializing cvc base object.\n"); + + return error_code; } diff --git a/lib/colvars/colvarcomp.h b/lib/colvars/colvarcomp.h index 52078a3a3059cb91315ac9f52e62b2f06e1e55f3..b5c3b16098c94f3fa94140b1259f016ef6581187 100644 --- a/lib/colvars/colvarcomp.h +++ b/lib/colvars/colvarcomp.h @@ -98,12 +98,14 @@ public: /// \brief Constructor /// - /// At least one constructor which reads a string should be defined - /// for every class inheriting from cvc \param conf Contents - /// of the configuration file pertaining to this \link cvc - /// \endlink + /// Calls the init() function of the class cvc(std::string const &conf); + /// An init function should be defined for every class inheriting from cvc + /// \param conf Contents of the configuration file pertaining to this \link + /// cvc \endlink + virtual int init(std::string const &conf); + /// \brief Within the constructor, make a group parse its own /// options from the provided configuration string /// Returns reference to new group @@ -231,7 +233,7 @@ public: virtual colvarvalue dist2_rgrad(colvarvalue const &x1, colvarvalue const &x2) const; - /// \brief Wrapp value (for periodic/symmetric cvcs) + /// \brief Wrap value (for periodic/symmetric cvcs) virtual void wrap(colvarvalue &x) const; /// \brief Pointers to all atom groups, to let colvars collect info diff --git a/lib/colvars/colvarcomp_distances.cpp b/lib/colvars/colvarcomp_distances.cpp index 9911f4c87edef9c17605403f21a0ffc1a45826e9..57b2a9a625fa01c49a8301b34b7e5f688096f8b4 100644 --- a/lib/colvars/colvarcomp_distances.cpp +++ b/lib/colvars/colvarcomp_distances.cpp @@ -148,7 +148,7 @@ void colvar::distance_vec::apply_force(colvarvalue const &force) cvm::real colvar::distance_vec::dist2(colvarvalue const &x1, colvarvalue const &x2) const { - return cvm::position_dist2(x1.rvector_value, x2.rvector_value); + return (cvm::position_distance(x1.rvector_value, x2.rvector_value)).norm2(); } @@ -192,7 +192,7 @@ colvar::distance_z::distance_z(std::string const &conf) // this group is optional ref2 = parse_group(conf, "ref2", true); - if (ref2 && ref2->size()) { + if ( ref2 ) { cvm::log("Using axis joining the centers of mass of groups \"ref\" and \"ref2\""); fixed_axis = false; if (key_lookup(conf, "axis")) @@ -306,7 +306,7 @@ void colvar::distance_z::apply_force(colvarvalue const &force) if (!ref1->noforce) ref1->apply_colvar_force(force.real_value); - if (ref2 && ref2->size() && !ref2->noforce) + if (ref2 && !ref2->noforce) ref2->apply_colvar_force(force.real_value); if (!main->noforce) @@ -464,7 +464,7 @@ void colvar::distance_xy::apply_force(colvarvalue const &force) if (!ref1->noforce) ref1->apply_colvar_force(force.real_value); - if (ref2 && ref2->size() && !ref2->noforce) + if (ref2 && !ref2->noforce) ref2->apply_colvar_force(force.real_value); if (!main->noforce) @@ -979,14 +979,12 @@ colvar::rmsd::rmsd(std::string const &conf) "if provided, must be non-zero.\n"); return; } - } else { - // if not, rely on existing atom indices for the group - atoms->create_sorted_ids(); - ref_pos.resize(atoms->size()); } - cvm::load_coords(ref_pos_file.c_str(), ref_pos, atoms->sorted_ids, - ref_pos_col, ref_pos_col_value); + ref_pos.resize(atoms->size()); + + cvm::load_coords(ref_pos_file.c_str(), &ref_pos, atoms, + ref_pos_col, ref_pos_col_value); } } @@ -1172,13 +1170,11 @@ colvar::eigenvector::eigenvector(std::string const &conf) "if provided, must be non-zero.\n"); return; } - } else { - // if not, use atom indices - atoms->create_sorted_ids(); } ref_pos.resize(atoms->size()); - cvm::load_coords(file_name.c_str(), ref_pos, atoms->sorted_ids, file_col, file_col_value); + cvm::load_coords(file_name.c_str(), &ref_pos, atoms, + file_col, file_col_value); } } @@ -1249,13 +1245,11 @@ colvar::eigenvector::eigenvector(std::string const &conf) cvm::error("Error: vectorColValue, if provided, must be non-zero.\n"); return; } - } else { - // if not, use atom indices - atoms->create_sorted_ids(); } eigenvec.resize(atoms->size()); - cvm::load_coords(file_name.c_str(), eigenvec, atoms->sorted_ids, file_col, file_col_value); + cvm::load_coords(file_name.c_str(), &eigenvec, atoms, + file_col, file_col_value); } } diff --git a/lib/colvars/colvarcomp_rotations.cpp b/lib/colvars/colvarcomp_rotations.cpp index 2650a9fe18efaaff66e6711d73be99a715d17ec1..498ef7c2f548f0cc6593725c52fb24d341c72822 100644 --- a/lib/colvars/colvarcomp_rotations.cpp +++ b/lib/colvars/colvarcomp_rotations.cpp @@ -50,12 +50,11 @@ colvar::orientation::orientation(std::string const &conf) "if provided, must be non-zero.\n"); return; } - } else { - // if not, use atom indices - atoms->create_sorted_ids(); } + ref_pos.resize(atoms->size()); - cvm::load_coords(file_name.c_str(), ref_pos, atoms->sorted_ids, file_col, file_col_value); + cvm::load_coords(file_name.c_str(), &ref_pos, atoms, + file_col, file_col_value); } } diff --git a/lib/colvars/colvardeps.cpp b/lib/colvars/colvardeps.cpp index a058ad55c2a4911324c9cd07b4ea7bb1e1afb147..80bd6670d3f13317bdf10da43a48cee5b482ec61 100644 --- a/lib/colvars/colvardeps.cpp +++ b/lib/colvars/colvardeps.cpp @@ -549,7 +549,7 @@ void colvardeps::init_cv_requires() { f_req_exclude(f_cv_custom_function, f_cv_scripted); init_feature(f_cv_periodic, "periodic", f_type_static); - f_req_self(f_cv_periodic, f_cv_homogeneous); + f_req_self(f_cv_periodic, f_cv_scalar); init_feature(f_cv_scalar, "scalar", f_type_static); init_feature(f_cv_linear, "linear", f_type_static); init_feature(f_cv_homogeneous, "homogeneous", f_type_static); diff --git a/lib/colvars/colvargrid.cpp b/lib/colvars/colvargrid.cpp index 1ac4aae133c3a225aa8d4a8bb2dbdd1c3ac381cb..407b336afd7b09e49a05c1550096bf318f4f06f3 100644 --- a/lib/colvars/colvargrid.cpp +++ b/lib/colvars/colvargrid.cpp @@ -329,7 +329,6 @@ void integrate_potential::update_div_local(const std::vector &ix0) const int linear_index = address(ix0); int i, j, k; std::vector ix = ix0; - const cvm::real * g; if (nd == 2) { // gradients at grid points surrounding the current scalar grid point @@ -783,7 +782,7 @@ void integrate_potential::atimes(const std::vector &A, std::vector &b, std::vector &x) { - for (size_t i=0; i &b, std::ve iter=0; atimes(x,r); - for (j=0;j &b, std::ve bkden = 1.0; while (iter < itmax) { ++iter; - for (bknum=0.0,j=0;j -#include +#include #include "colvarmodule.h" #include "colvarparse.h" @@ -30,10 +30,10 @@ colvarmodule::colvarmodule(colvarproxy *proxy_in) depth_s = 0; cv_traj_os = NULL; - // pointer to the proxy object if (proxy == NULL) { - proxy = proxy_in; - parse = new colvarparse(); + proxy = proxy_in; // Pointer to the proxy object + parse = new colvarparse(); // Parsing object for global options + version_int = proxy->get_version_from_string(COLVARS_VERSION); } else { // TODO relax this error to handle multiple molecules in VMD // once the module is not static anymore @@ -58,22 +58,24 @@ colvarmodule::colvarmodule(colvarproxy *proxy_in) // "it_restart" will be set by the input state file, if any; // "it" should be updated by the proxy colvarmodule::it = colvarmodule::it_restart = 0; - colvarmodule::it_restart_from_state_file = true; - colvarmodule::use_scripted_forces = false; + use_scripted_forces = false; + scripting_after_biases = false; - colvarmodule::b_analysis = false; + b_analysis = false; colvarmodule::debug_gradients_step_size = 1.0e-07; colvarmodule::rotation::monitor_crossings = false; colvarmodule::rotation::crossing_threshold = 1.0e-02; - colvarmodule::cv_traj_freq = 100; - colvarmodule::restart_out_freq = proxy->restart_frequency(); + cv_traj_freq = 100; + restart_out_freq = proxy->restart_frequency(); // by default overwrite the existing trajectory file - colvarmodule::cv_traj_append = false; + cv_traj_append = false; + + cv_traj_write_labels = true; } @@ -189,26 +191,27 @@ int colvarmodule::parse_config(std::string &conf) { extra_conf.clear(); - // parse global options + // Parse global options if (catch_input_errors(parse_global_params(conf))) { return get_error(); } - // parse the options for collective variables + // Parse the options for collective variables if (catch_input_errors(parse_colvars(conf))) { return get_error(); } - // parse the options for biases + // Parse the options for biases if (catch_input_errors(parse_biases(conf))) { return get_error(); } - // done parsing known keywords, check that all keywords found were valid ones + // Done parsing known keywords, check that all keywords found were valid ones if (catch_input_errors(parse->check_keywords(conf, "colvarmodule"))) { return get_error(); } + // Parse auto-generated configuration (e.g. for back-compatibility) if (extra_conf.size()) { catch_input_errors(parse_global_params(extra_conf)); catch_input_errors(parse_colvars(extra_conf)); @@ -222,13 +225,11 @@ int colvarmodule::parse_config(std::string &conf) cvm::log("Collective variables module (re)initialized.\n"); cvm::log(cvm::line_marker); - // update any necessary proxy data + // Update any necessary proxy data proxy->setup(); - if (cv_traj_os != NULL) { - // configuration might have changed, better redo the labels - write_traj_label(*cv_traj_os); - } + // configuration might have changed, better redo the labels + cv_traj_write_labels = true; return get_error(); } @@ -279,15 +280,18 @@ int colvarmodule::parse_global_params(std::string const &conf) parse->get_keyval(conf, "colvarsTrajAppend", cv_traj_append, cv_traj_append, colvarparse::parse_silent); - parse->get_keyval(conf, "scriptedColvarForces", use_scripted_forces, false); + parse->get_keyval(conf, "scriptedColvarForces", + use_scripted_forces, use_scripted_forces); - parse->get_keyval(conf, "scriptingAfterBiases", scripting_after_biases, true); + parse->get_keyval(conf, "scriptingAfterBiases", + scripting_after_biases, scripting_after_biases); if (use_scripted_forces && !proxy->force_script_defined) { - cvm::error("User script for scripted colvar forces not found.", INPUT_ERROR); + return cvm::error("User script for scripted colvar forces not found.", + INPUT_ERROR); } - return (cvm::get_error() ? COLVARS_ERROR : COLVARS_OK); + return cvm::get_error(); } @@ -432,13 +436,13 @@ int colvarmodule::parse_biases(std::string const &conf) } -int colvarmodule::num_variables() const +size_t colvarmodule::num_variables() const { return colvars.size(); } -int colvarmodule::num_variables_feature(int feature_id) const +size_t colvarmodule::num_variables_feature(int feature_id) const { size_t n = 0; for (std::vector::const_iterator cvi = colvars.begin(); @@ -452,13 +456,13 @@ int colvarmodule::num_variables_feature(int feature_id) const } -int colvarmodule::num_biases() const +size_t colvarmodule::num_biases() const { return biases.size(); } -int colvarmodule::num_biases_feature(int feature_id) const +size_t colvarmodule::num_biases_feature(int feature_id) const { size_t n = 0; for (std::vector::const_iterator bi = biases.begin(); @@ -472,7 +476,7 @@ int colvarmodule::num_biases_feature(int feature_id) const } -int colvarmodule::num_biases_type(std::string const &type) const +size_t colvarmodule::num_biases_type(std::string const &type) const { size_t n = 0; for (std::vector::const_iterator bi = biases.begin(); @@ -971,13 +975,20 @@ int colvarmodule::write_restart_file(std::string const &out_name) int colvarmodule::write_traj_files() { if (cv_traj_os == NULL) { - open_traj_file(cv_traj_name); + if (open_traj_file(cv_traj_name) != COLVARS_OK) { + return cvm::get_error(); + } else { + cv_traj_write_labels = true; + } } // write labels in the traj file every 1000 lines and at first timestep - if ((cvm::step_absolute() % (cv_traj_freq * 1000)) == 0 || cvm::step_relative() == 0) { + if ((cvm::step_absolute() % (cv_traj_freq * 1000)) == 0 || + cvm::step_relative() == 0 || + cv_traj_write_labels) { write_traj_label(*cv_traj_os); } + cv_traj_write_labels = false; if ((cvm::step_absolute() % cv_traj_freq) == 0) { write_traj(*cv_traj_os); @@ -1064,7 +1075,7 @@ int colvarmodule::reset() { parse->init(); - cvm::log("Resetting the Collective Variables Module.\n"); + cvm::log("Resetting the Collective Variables module.\n"); // Iterate backwards because we are deleting the elements as we go for (std::vector::reverse_iterator bi = biases.rbegin(); @@ -1073,6 +1084,7 @@ int colvarmodule::reset() delete *bi; // the bias destructor updates the biases array } biases.clear(); + biases_active_.clear(); // Iterate backwards because we are deleting the elements as we go for (std::vector::reverse_iterator cvi = colvars.rbegin(); @@ -1088,7 +1100,7 @@ int colvarmodule::reset() proxy->reset(); if (cv_traj_os != NULL) { - // Do not close file here, as we might not be done with it yet. + // Do not close traj file here, as we might not be done with it yet. proxy->flush_output_stream(cv_traj_os); } @@ -1188,12 +1200,10 @@ std::istream & colvarmodule::read_restart(std::istream &is) // read global restart information std::string restart_conf; if (is >> colvarparse::read_block("configuration", restart_conf)) { - if (it_restart_from_state_file) { - parse->get_keyval(restart_conf, "step", - it_restart, (size_t) 0, - colvarparse::parse_silent); + parse->get_keyval(restart_conf, "step", + it_restart, (size_t) 0, + colvarparse::parse_silent); it = it_restart; - } std::string restart_version; parse->get_keyval(restart_conf, "version", restart_version, std::string(""), @@ -1688,40 +1698,59 @@ int cvm::read_index_file(char const *filename) return (cvm::get_error() ? COLVARS_ERROR : COLVARS_OK); } + int cvm::load_atoms(char const *file_name, cvm::atom_group &atoms, std::string const &pdb_field, - double const pdb_field_value) + double pdb_field_value) { return proxy->load_atoms(file_name, atoms, pdb_field, pdb_field_value); } + int cvm::load_coords(char const *file_name, - std::vector &pos, - const std::vector &indices, + std::vector *pos, + cvm::atom_group *atoms, std::string const &pdb_field, - double const pdb_field_value) + double pdb_field_value) { - // Differentiate between PDB and XYZ files - // for XYZ files, use CVM internal parser - // otherwise call proxy function for PDB + int error_code = COLVARS_OK; + + std::string const ext(strlen(file_name) > 4 ? + (file_name + (strlen(file_name) - 4)) : + file_name); + + atoms->create_sorted_ids(); + + std::vector sorted_pos(atoms->size(), cvm::rvector(0.0)); - std::string const ext(strlen(file_name) > 4 ? (file_name + (strlen(file_name) - 4)) : file_name); + // Differentiate between PDB and XYZ files if (colvarparse::to_lower_cppstr(ext) == std::string(".xyz")) { - if ( pdb_field.size() > 0 ) { - cvm::error("Error: PDB column may not be specified for XYZ coordinate file.\n", INPUT_ERROR); - return COLVARS_ERROR; + if (pdb_field.size() > 0) { + return cvm::error("Error: PDB column may not be specified " + "for XYZ coordinate files.\n", INPUT_ERROR); } - return cvm::load_coords_xyz(file_name, pos, indices); + // For XYZ files, use internal parser + error_code |= cvm::load_coords_xyz(file_name, &sorted_pos, atoms); } else { - return proxy->load_coords(file_name, pos, indices, pdb_field, pdb_field_value); + // Otherwise, call proxy function for PDB + error_code |= proxy->load_coords(file_name, + sorted_pos, atoms->sorted_ids(), + pdb_field, pdb_field_value); } + + std::vector const &map = atoms->sorted_ids_map(); + for (size_t i = 0; i < atoms->size(); i++) { + (*pos)[map[i]] = sorted_pos[i]; + } + + return error_code; } int cvm::load_coords_xyz(char const *filename, - std::vector &pos, - const std::vector &indices) + std::vector *pos, + cvm::atom_group *atoms) { std::ifstream xyz_is(filename); unsigned int natoms; @@ -1736,12 +1765,12 @@ int cvm::load_coords_xyz(char const *filename, cvm::getline(xyz_is, line); cvm::getline(xyz_is, line); xyz_is.width(255); - std::vector::iterator pos_i = pos.begin(); + std::vector::iterator pos_i = pos->begin(); - if (pos.size() != natoms) { // Use specified indices + if (pos->size() != natoms) { // Use specified indices int next = 0; // indices are zero-based - std::vector::const_iterator index = indices.begin(); - for ( ; pos_i != pos.end() ; pos_i++, index++) { + std::vector::const_iterator index = atoms->sorted_ids().begin(); + for ( ; pos_i != pos->end() ; pos_i++, index++) { while ( next < *index ) { cvm::getline(xyz_is, line); @@ -1751,7 +1780,7 @@ int cvm::load_coords_xyz(char const *filename, xyz_is >> (*pos_i)[0] >> (*pos_i)[1] >> (*pos_i)[2]; } } else { // Use all positions - for ( ; pos_i != pos.end() ; pos_i++) { + for ( ; pos_i != pos->end() ; pos_i++) { xyz_is >> symbol; xyz_is >> (*pos_i)[0] >> (*pos_i)[1] >> (*pos_i)[2]; } @@ -1792,17 +1821,13 @@ void cvm::request_total_force() proxy->request_total_force(true); } -cvm::rvector cvm::position_distance(atom_pos const &pos1, - atom_pos const &pos2) + +cvm::rvector cvm::position_distance(cvm::atom_pos const &pos1, + cvm::atom_pos const &pos2) { return proxy->position_distance(pos1, pos2); } -cvm::real cvm::position_dist2(cvm::atom_pos const &pos1, - cvm::atom_pos const &pos2) -{ - return proxy->position_dist2(pos1, pos2); -} cvm::real cvm::rand_gaussian(void) { diff --git a/lib/colvars/colvarmodule.h b/lib/colvars/colvarmodule.h index 64a98b77a02d59eae598a3f223214fc103018263..f3d99a2b234baf4a72300b4c59c3c9595d318b12 100644 --- a/lib/colvars/colvarmodule.h +++ b/lib/colvars/colvarmodule.h @@ -73,8 +73,17 @@ private: /// Impossible to initialize the main object without arguments colvarmodule(); + /// Integer representing the version string (allows comparisons) + int version_int; + public: + /// Get the version number (higher = more recent) + int version_number() const + { + return version_int; + } + friend class colvarproxy; // TODO colvarscript should be unaware of colvarmodule's internals friend class colvarscript; @@ -158,10 +167,6 @@ public: return it; } - /// If true, get it_restart from the state file; if set to false, - /// the MD program is providing it - bool it_restart_from_state_file; - /// \brief Finite difference step size (if there is no dynamics, or /// if gradients need to be tested independently from the size of /// dt) @@ -306,19 +311,19 @@ private: public: /// Return how many variables are defined - int num_variables() const; + size_t num_variables() const; /// Return how many variables have this feature enabled - int num_variables_feature(int feature_id) const; + size_t num_variables_feature(int feature_id) const; /// Return how many biases are defined - int num_biases() const; + size_t num_biases() const; /// Return how many biases have this feature enabled - int num_biases_feature(int feature_id) const; + size_t num_biases_feature(int feature_id) const; /// Return how many biases of this type are defined - int num_biases_type(std::string const &type) const; + size_t num_biases_type(std::string const &type) const; /// Return the names of time-dependent biases with forces enabled (ABF, /// metadynamics, etc) @@ -479,9 +484,6 @@ public: /// Print a message to the main log and set global error code static int error(std::string const &message, int code = COLVARS_ERROR); - /// Print a message to the main log and exit normally - static void exit(std::string const &message); - // Replica exchange commands. static bool replica_enabled(); static int replica_index(); @@ -495,15 +497,6 @@ public: static rvector position_distance(atom_pos const &pos1, atom_pos const &pos2); - /// \brief Get the square distance between two positions (with - /// periodic boundary conditions handled transparently) - /// - /// Note: in the case of periodic boundary conditions, this provides - /// an analytical square distance (while taking the square of - /// position_distance() would produce leads to a cusp) - static real position_dist2(atom_pos const &pos1, - atom_pos const &pos2); - /// \brief Names of groups from a Gromacs .ndx file to be read at startup std::list index_group_names; @@ -513,29 +506,36 @@ public: /// \brief Read a Gromacs .ndx file int read_index_file(char const *filename); - - /// \brief Create atoms from a file \param filename name of the file - /// (usually a PDB) \param atoms array of the atoms to be allocated - /// \param pdb_field (optiona) if "filename" is a PDB file, use this - /// field to determine which are the atoms to be set + /// \brief Select atom IDs from a file (usually PDB) \param filename name of + /// the file \param atoms array into which atoms read from "filename" will be + /// appended \param pdb_field (optional) if the file is a PDB and this + /// string is non-empty, select atoms for which this field is non-zero + /// \param pdb_field_value (optional) if non-zero, select only atoms whose + /// pdb_field equals this static int load_atoms(char const *filename, atom_group &atoms, std::string const &pdb_field, - double const pdb_field_value = 0.0); - - /// \brief Load the coordinates for a group of atoms from a file - /// (PDB or XYZ) + double pdb_field_value = 0.0); + + /// \brief Load coordinates for a group of atoms from a file (PDB or XYZ); + /// if "pos" is already allocated, the number of its elements must match the + /// number of entries in "filename" \param filename name of the file \param + /// pos array of coordinates \param atoms group containing the atoms (used + /// to obtain internal IDs) \param pdb_field (optional) if the file is a PDB + /// and this string is non-empty, select atoms for which this field is + /// non-zero \param pdb_field_value (optional) if non-zero, select only + /// atoms whose pdb_field equals this static int load_coords(char const *filename, - std::vector &pos, - const std::vector &indices, + std::vector *pos, + atom_group *atoms, std::string const &pdb_field, - double const pdb_field_value = 0.0); + double pdb_field_value = 0.0); /// \brief Load the coordinates for a group of atoms from an /// XYZ file static int load_coords_xyz(char const *filename, - std::vector &pos, - const std::vector &indices); + std::vector *pos, + atom_group *atoms); /// Frequency for collective variables trajectory output static size_t cv_traj_freq; @@ -568,6 +568,9 @@ protected: /// Appending to the existing trajectory file? bool cv_traj_append; + /// Write labels at the next iteration + bool cv_traj_write_labels; + private: /// Counter for the current depth in the object hierarchy (useg e.g. in output) diff --git a/lib/colvars/colvarproxy.cpp b/lib/colvars/colvarproxy.cpp index 8767d5f459090854cf19ad011f579e752c6d2230..86338dfd1b81768de686dfba86bfea964240eca0 100644 --- a/lib/colvars/colvarproxy.cpp +++ b/lib/colvars/colvarproxy.cpp @@ -8,7 +8,7 @@ // Colvars repository at GitHub. #include -#include +#include #if defined(_OPENMP) #include @@ -26,7 +26,10 @@ -colvarproxy_system::colvarproxy_system() {} +colvarproxy_system::colvarproxy_system() +{ + reset_pbc_lattice(); +} colvarproxy_system::~colvarproxy_system() {} @@ -55,10 +58,73 @@ bool colvarproxy_system::total_forces_same_step() const } -cvm::real colvarproxy_system::position_dist2(cvm::atom_pos const &pos1, - cvm::atom_pos const &pos2) +inline int round_to_integer(cvm::real x) { - return (position_distance(pos1, pos2)).norm2(); + return std::floor(x+0.5); +} + + +void colvarproxy_system::update_pbc_lattice() +{ + // Periodicity is assumed in all directions + + if (boundaries_type == boundaries_unsupported || + boundaries_type == boundaries_non_periodic) { + cvm::error("Error: setting PBC lattice with unsupported boundaries.\n", + BUG_ERROR); + return; + } + + { + cvm::rvector const v = cvm::rvector::outer(unit_cell_y, unit_cell_z); + reciprocal_cell_x = v/(v*unit_cell_x); + } + { + cvm::rvector const v = cvm::rvector::outer(unit_cell_z, unit_cell_x); + reciprocal_cell_y = v/(v*unit_cell_y); + } + { + cvm::rvector const v = cvm::rvector::outer(unit_cell_x, unit_cell_y); + reciprocal_cell_z = v/(v*unit_cell_z); + } +} + + +void colvarproxy_system::reset_pbc_lattice() +{ + unit_cell_x.reset(); + unit_cell_y.reset(); + unit_cell_z.reset(); + reciprocal_cell_x.reset(); + reciprocal_cell_y.reset(); + reciprocal_cell_z.reset(); +} + + +cvm::rvector colvarproxy_system::position_distance(cvm::atom_pos const &pos1, + cvm::atom_pos const &pos2) + const +{ + if (boundaries_type == boundaries_unsupported) { + cvm::error("Error: unsupported boundary conditions.\n", INPUT_ERROR); + } + + cvm::rvector diff = (pos2 - pos1); + + if (boundaries_type == boundaries_non_periodic) return diff; + + cvm::real const x_shift = round_to_integer(reciprocal_cell_x*diff); + cvm::real const y_shift = round_to_integer(reciprocal_cell_y*diff); + cvm::real const z_shift = round_to_integer(reciprocal_cell_z*diff); + + diff.x -= x_shift*unit_cell_x.x + y_shift*unit_cell_y.x + + z_shift*unit_cell_z.x; + diff.y -= x_shift*unit_cell_x.y + y_shift*unit_cell_y.y + + z_shift*unit_cell_z.y; + diff.z -= x_shift*unit_cell_x.z + y_shift*unit_cell_y.z + + z_shift*unit_cell_z.z; + + return diff; } @@ -132,7 +198,7 @@ void colvarproxy_atoms::clear_atom(int index) int colvarproxy_atoms::load_atoms(char const *filename, cvm::atom_group &atoms, std::string const &pdb_field, - double const) + double) { return cvm::error("Error: loading atom identifiers from a file " "is currently not implemented.\n", @@ -142,9 +208,9 @@ int colvarproxy_atoms::load_atoms(char const *filename, int colvarproxy_atoms::load_coords(char const *filename, std::vector &pos, - const std::vector &indices, + std::vector const &sorted_ids, std::string const &pdb_field, - double const) + double) { return cvm::error("Error: loading atomic coordinates from a file " "is currently not implemented.\n", @@ -661,6 +727,7 @@ int colvarproxy_io::close_output_stream(std::string const &output_name) for ( ; osi != output_files.end(); osi++, osni++) { if (*osni == output_name) { ((std::ofstream *) (*osi))->close(); + delete *osi; output_files.erase(osi); output_stream_names.erase(osni); return COLVARS_OK; @@ -729,3 +796,13 @@ size_t colvarproxy::restart_frequency() return 0; } + +int colvarproxy::get_version_from_string(char const *version_string) +{ + std::string const v(version_string); + std::istringstream is(v.substr(0, 4) + v.substr(5, 2) + v.substr(8, 2)); + int newint; + is >> newint; + return newint; +} + diff --git a/lib/colvars/colvarproxy.h b/lib/colvars/colvarproxy.h index bf290482704af3204518c0ffae7daf5ad5d88c0b..845f93c9bcde6b2654b86fcc9b52baee998ec8a4 100644 --- a/lib/colvars/colvarproxy.h +++ b/lib/colvars/colvarproxy.h @@ -14,6 +14,7 @@ #include #include "colvarmodule.h" +#include "colvartypes.h" #include "colvarvalue.h" @@ -29,7 +30,7 @@ /// To interface to a new MD engine, the simplest solution is to derive a new /// class from \link colvarproxy \endlink. Currently implemented are: \link /// colvarproxy_lammps, \endlink, \link colvarproxy_namd, \endlink, \link -/// colvarproxy_vmd, \endlink. +/// colvarproxy_vmd \endlink. // forward declarations @@ -68,14 +69,16 @@ public: /// \brief Get the PBC-aware distance vector between two positions virtual cvm::rvector position_distance(cvm::atom_pos const &pos1, - cvm::atom_pos const &pos2) = 0; + cvm::atom_pos const &pos2) const; - /// \brief Get the PBC-aware square distance between two positions; - /// may need to be reimplemented independently from position_distance() for optimization purposes - virtual cvm::real position_dist2(cvm::atom_pos const &pos1, - cvm::atom_pos const &pos2); + /// Recompute PBC reciprocal lattice (assumes XYZ periodicity) + void update_pbc_lattice(); - /// Tell the proxy whether total forces are needed (may not always be available) + /// Set the lattice vectors to zero + void reset_pbc_lattice(); + + /// \brief Tell the proxy whether total forces are needed (they may not + /// always be available) virtual void request_total_force(bool yesno); /// Are total forces being used? @@ -83,6 +86,29 @@ public: /// Are total forces from the current step available? virtual bool total_forces_same_step() const; + +protected: + + /// \brief Type of boundary conditions + /// + /// Orthogonal and triclinic cells are made available to objects. + /// For any other conditions (mixed periodicity, triclinic cells in LAMMPS) + /// minimum-image distances are computed by the host engine regardless. + enum Boundaries_type { + boundaries_non_periodic, + boundaries_pbc_ortho, + boundaries_pbc_triclinic, + boundaries_unsupported + }; + + /// Type of boundary conditions + Boundaries_type boundaries_type; + + /// Bravais lattice vectors + cvm::rvector unit_cell_x, unit_cell_y, unit_cell_z; + + /// Reciprocal lattice vectors + cvm::rvector reciprocal_cell_x, reciprocal_cell_y, reciprocal_cell_z; }; @@ -121,24 +147,30 @@ public: /// (costly) set the corresponding atoms_ncopies to zero virtual void clear_atom(int index); - /// \brief Read atom identifiers from a file \param filename name of - /// the file (usually a PDB) \param atoms array to which atoms read - /// from "filename" will be appended \param pdb_field (optiona) if - /// "filename" is a PDB file, use this field to determine which are - /// the atoms to be set + /// \brief Select atom IDs from a file (usually PDB) \param filename name of + /// the file \param atoms array to which atoms read from "filename" will be + /// appended \param pdb_field (optional) if the file is a PDB and this + /// string is non-empty, select atoms for which this field is non-zero + /// \param pdb_field_value (optional) if non-zero, select only atoms whose + /// pdb_field equals this virtual int load_atoms(char const *filename, cvm::atom_group &atoms, std::string const &pdb_field, - double const pdb_field_value = 0.0); - - /// \brief Load the coordinates for a group of atoms from a file - /// (usually a PDB); if "pos" is already allocated, the number of its - /// elements must match the number of atoms in "filename" + double pdb_field_value = 0.0); + + /// \brief Load a set of coordinates from a file (usually PDB); if "pos" is + /// already allocated, the number of its elements must match the number of + /// entries in "filename" \param filename name of the file \param pos array + /// of coordinates \param sorted_ids array of sorted internal IDs, used to + /// loop through the file only once \param pdb_field (optional) if the file + /// is a PDB and this string is non-empty, select atoms for which this field + /// is non-zero \param pdb_field_value (optional) if non-zero, select only + /// atoms whose pdb_field equals this virtual int load_coords(char const *filename, std::vector &pos, - const std::vector &indices, + std::vector const &sorted_ids, std::string const &pdb_field, - double const pdb_field_value = 0.0); + double pdb_field_value = 0.0); /// Clear atomic data int reset(); @@ -636,6 +668,15 @@ public: return b_simulation_running; } + /// Convert a version string "YYYY-MM-DD" into an integer + int get_version_from_string(char const *version_string); + + /// Get the version number (higher = more recent) + int version_number() const + { + return version_int; + } + protected: /// Whether a simulation is running (warn against irrecovarable errors) @@ -644,6 +685,9 @@ protected: /// Whether the entire module should be deallocated by the host engine bool b_delete_requested; + /// Integer representing the version string (allows comparisons) + int version_int; + }; diff --git a/lib/colvars/colvars_version.h b/lib/colvars/colvars_version.h index dc4b8bd07e420d83289b99f458ed2bf935ab210e..68f5cd13ab14eae1d71a47eba46d8729167966cd 100644 --- a/lib/colvars/colvars_version.h +++ b/lib/colvars/colvars_version.h @@ -1,5 +1,5 @@ #ifndef COLVARS_VERSION -#define COLVARS_VERSION "2018-01-17" +#define COLVARS_VERSION "2018-04-29" // This file is part of the Collective Variables module (Colvars). // The original version of Colvars and its updates are located at: // https://github.com/colvars/colvars diff --git a/lib/colvars/colvarscript.cpp b/lib/colvars/colvarscript.cpp index 0977496b9e1c252e52c5670f44321796cfafd889..a55e4c65d921261c3f428cdef0f7211c8c5ad6a1 100644 --- a/lib/colvars/colvarscript.cpp +++ b/lib/colvars/colvarscript.cpp @@ -8,8 +8,7 @@ // Colvars repository at GitHub. #include -#include -#include +#include #define COLVARSCRIPT_CPP #include "colvarscript.h" diff --git a/lib/colvars/colvartypes.cpp b/lib/colvars/colvartypes.cpp index b604606d4628911138f2553215db9d7b3c306630..2b45d77e078478e755b76194d2f39851e0c3881c 100644 --- a/lib/colvars/colvartypes.cpp +++ b/lib/colvars/colvartypes.cpp @@ -7,8 +7,8 @@ // If you wish to distribute your changes, please submit them to the // Colvars repository at GitHub. -#include -#include +#include +#include #include "colvarmodule.h" #include "colvartypes.h" diff --git a/lib/colvars/colvartypes.h b/lib/colvars/colvartypes.h index 97257d18ad66d1da99b0b74586190e735687850b..4ef9557dcbf400c2e7adfc846207874632b134ac 100644 --- a/lib/colvars/colvartypes.h +++ b/lib/colvars/colvartypes.h @@ -130,7 +130,7 @@ public: } } - inline void operator *= (cvm::real const &a) + inline void operator *= (cvm::real a) { size_t i; for (i = 0; i < this->size(); i++) { @@ -138,7 +138,7 @@ public: } } - inline void operator /= (cvm::real const &a) + inline void operator /= (cvm::real a) { size_t i; for (i = 0; i < this->size(); i++) { @@ -146,7 +146,8 @@ public: } } - inline friend vector1d operator + (vector1d const &v1, vector1d const &v2) + inline friend vector1d operator + (vector1d const &v1, + vector1d const &v2) { check_sizes(v1.size(), v2.size()); vector1d result(v1.size()); @@ -157,7 +158,8 @@ public: return result; } - inline friend vector1d operator - (vector1d const &v1, vector1d const &v2) + inline friend vector1d operator - (vector1d const &v1, + vector1d const &v2) { check_sizes(v1.size(), v2.size()); vector1d result(v1.size()); @@ -168,7 +170,7 @@ public: return result; } - inline friend vector1d operator * (vector1d const &v, cvm::real const &a) + inline friend vector1d operator * (vector1d const &v, cvm::real a) { vector1d result(v.size()); size_t i; @@ -178,12 +180,12 @@ public: return result; } - inline friend vector1d operator * (cvm::real const &a, vector1d const &v) + inline friend vector1d operator * (cvm::real a, vector1d const &v) { return v * a; } - inline friend vector1d operator / (vector1d const &v, cvm::real const &a) + inline friend vector1d operator / (vector1d const &v, cvm::real a) { vector1d result(v.size()); size_t i; @@ -246,7 +248,8 @@ public: } /// Assign a vector to a slice of this vector - inline void sliceassign(size_t const i1, size_t const i2, vector1d const &v) + inline void sliceassign(size_t const i1, size_t const i2, + vector1d const &v) { if ((i2 < i1) || (i2 >= this->size())) { cvm::error("Error: trying to slice a vector using incorrect boundaries.\n"); @@ -259,12 +262,13 @@ public: /// Formatted output - inline size_t output_width(size_t const &real_width) const + inline size_t output_width(size_t real_width) const { return real_width*(this->size()) + 3*(this->size()-1) + 4; } - inline friend std::istream & operator >> (std::istream &is, cvm::vector1d &v) + inline friend std::istream & operator >> (std::istream &is, + cvm::vector1d &v) { if (v.size() == 0) return is; size_t const start_pos = is.tellg(); @@ -288,7 +292,8 @@ public: return is; } - inline friend std::ostream & operator << (std::ostream &os, cvm::vector1d const &v) + inline friend std::ostream & operator << (std::ostream &os, + cvm::vector1d const &v) { std::streamsize const w = os.width(); std::streamsize const p = os.precision(); @@ -377,6 +382,15 @@ protected: { return vector1d(length, data); } + inline int set(cvm::vector1d const &v) const + { + if (v.size() != length) { + return cvm::error("Error: setting a matrix row from a vector of " + "incompatible size.\n", BUG_ERROR); + } + for (size_t i = 0; i < length; i++) data[i] = v[i]; + return COLVARS_OK; + } }; std::vector data; @@ -515,9 +529,12 @@ public: { if ((m1.outer_length != m2.outer_length) || (m1.inner_length != m2.inner_length)) { - cvm::error("Error: trying to perform an operation between matrices of different sizes, "+ - cvm::to_str(m1.outer_length)+"x"+cvm::to_str(m1.inner_length)+" and "+ - cvm::to_str(m2.outer_length)+"x"+cvm::to_str(m2.inner_length)+".\n"); + cvm::error("Error: trying to perform an operation between " + "matrices of different sizes, "+ + cvm::to_str(m1.outer_length)+"x"+ + cvm::to_str(m1.inner_length)+" and "+ + cvm::to_str(m2.outer_length)+"x"+ + cvm::to_str(m2.inner_length)+".\n"); } } @@ -539,7 +556,7 @@ public: } } - inline void operator *= (cvm::real const &a) + inline void operator *= (cvm::real a) { size_t i; for (i = 0; i < data.size(); i++) { @@ -547,7 +564,7 @@ public: } } - inline void operator /= (cvm::real const &a) + inline void operator /= (cvm::real a) { size_t i; for (i = 0; i < data.size(); i++) { @@ -555,7 +572,8 @@ public: } } - inline friend matrix2d operator + (matrix2d const &m1, matrix2d const &m2) + inline friend matrix2d operator + (matrix2d const &m1, + matrix2d const &m2) { check_sizes(m1, m2); matrix2d result(m1.outer_length, m1.inner_length); @@ -566,7 +584,8 @@ public: return result; } - inline friend matrix2d operator - (matrix2d const &m1, matrix2d const &m2) + inline friend matrix2d operator - (matrix2d const &m1, + matrix2d const &m2) { check_sizes(m1, m2); matrix2d result(m1.outer_length, m1.inner_length); @@ -577,7 +596,7 @@ public: return result; } - inline friend matrix2d operator * (matrix2d const &m, cvm::real const &a) + inline friend matrix2d operator * (matrix2d const &m, cvm::real a) { matrix2d result(m.outer_length, m.inner_length); size_t i; @@ -587,12 +606,12 @@ public: return result; } - inline friend matrix2d operator * (cvm::real const &a, matrix2d const &m) + inline friend matrix2d operator * (cvm::real a, matrix2d const &m) { return m * a; } - inline friend matrix2d operator / (matrix2d const &m, cvm::real const &a) + inline friend matrix2d operator / (matrix2d const &m, cvm::real a) { matrix2d result(m.outer_length, m.inner_length); size_t i; @@ -602,34 +621,17 @@ public: return result; } - /// Matrix multiplication -// inline friend matrix2d const & operator * (matrix2d const &m1, matrix2d const &m2) -// { -// matrix2d result(m1.outer_length, m2.inner_length); -// if (m1.inner_length != m2.outer_length) { -// cvm::error("Error: trying to multiply two matrices of incompatible sizes, "+ -// cvm::to_str(m1.outer_length)+"x"+cvm::to_str(m1.inner_length)+" and "+ -// cvm::to_str(m2.outer_length)+"x"+cvm::to_str(m2.inner_length)+".\n"); -// } else { -// size_t i, j, k; -// for (i = 0; i < m1.outer_length; i++) { -// for (j = 0; j < m2.inner_length; j++) { -// for (k = 0; k < m1.inner_length; k++) { -// result[i][j] += m1[i][k] * m2[k][j]; -// } -// } -// } -// } -// return result; -// } - /// vector-matrix multiplication - inline friend vector1d operator * (vector1d const &v, matrix2d const &m) + inline friend vector1d operator * (vector1d const &v, + matrix2d const &m) { vector1d result(m.inner_length); if (m.outer_length != v.size()) { - cvm::error("Error: trying to multiply a vector and a matrix of incompatible sizes, "+ - cvm::to_str(v.size()) + " and " + cvm::to_str(m.outer_length)+"x"+cvm::to_str(m.inner_length) + ".\n"); + cvm::error("Error: trying to multiply a vector and a matrix " + "of incompatible sizes, "+ + cvm::to_str(v.size()) + " and " + + cvm::to_str(m.outer_length)+"x"+cvm::to_str(m.inner_length) + + ".\n"); } else { size_t i, k; for (i = 0; i < m.inner_length; i++) { @@ -641,25 +643,6 @@ public: return result; } -// /// matrix-vector multiplication (unused for now) -// inline friend vector1d const & operator * (matrix2d const &m, vector1d const &v) -// { -// vector1d result(m.outer_length); -// if (m.inner_length != v.size()) { -// cvm::error("Error: trying to multiply a matrix and a vector of incompatible sizes, "+ -// cvm::to_str(m.outer_length)+"x"+cvm::to_str(m.inner_length) -// + " and " + cvm::to_str(v.length) + ".\n"); -// } else { -// size_t i, k; -// for (i = 0; i < m.outer_length; i++) { -// for (k = 0; k < m.inner_length; k++) { -// result[i] += m[i][k] * v[k]; -// } -// } -// } -// return result; -// } - /// Formatted output friend std::ostream & operator << (std::ostream &os, matrix2d const &m) @@ -725,49 +708,52 @@ public: cvm::real x, y, z; inline rvector() - : x(0.0), y(0.0), z(0.0) - {} + { + reset(); + } - inline rvector(cvm::real const &x_i, - cvm::real const &y_i, - cvm::real const &z_i) - : x(x_i), y(y_i), z(z_i) - {} + /// \brief Set all components to zero + inline void reset() + { + set(0.0); + } + + inline rvector(cvm::real x_i, cvm::real y_i, cvm::real z_i) + { + set(x_i, y_i, z_i); + } inline rvector(cvm::vector1d const &v) - : x(v[0]), y(v[1]), z(v[2]) - {} + { + set(v[0], v[1], v[2]); + } inline rvector(cvm::real t) - : x(t), y(t), z(t) - {} + { + set(t); + } - /// \brief Set all components to a scalar value - inline void set(cvm::real const &value) { + /// \brief Set all components to a scalar + inline void set(cvm::real value) + { x = y = z = value; } /// \brief Assign all components - inline void set(cvm::real const &x_i, - cvm::real const &y_i, - cvm::real const &z_i) { + inline void set(cvm::real x_i, cvm::real y_i, cvm::real z_i) + { x = x_i; y = y_i; z = z_i; } - /// \brief Set all components to zero - inline void reset() { - x = y = z = 0.0; - } - /// \brief Access cartesian components by index - inline cvm::real & operator [] (int const &i) { + inline cvm::real & operator [] (int i) { return (i == 0) ? x : (i == 1) ? y : (i == 2) ? z : x; } /// \brief Access cartesian components by index - inline cvm::real const & operator [] (int const &i) const { + inline cvm::real operator [] (int i) const { return (i == 0) ? x : (i == 1) ? y : (i == 2) ? z : x; } @@ -780,14 +766,6 @@ public: return result; } - inline cvm::rvector & operator = (cvm::real const &v) - { - x = v; - y = v; - z = v; - return *this; - } - inline void operator += (cvm::rvector const &v) { x += v.x; @@ -802,7 +780,7 @@ public: z -= v.z; } - inline void operator *= (cvm::real const &v) + inline void operator *= (cvm::real v) { x *= v; y *= v; @@ -832,13 +810,14 @@ public: return (n > 0. ? cvm::rvector(x, y, z)/n : cvm::rvector(1., 0., 0.)); } - static inline size_t output_width(size_t const &real_width) + static inline size_t output_width(size_t real_width) { return 3*real_width + 10; } - static inline cvm::rvector outer(cvm::rvector const &v1, cvm::rvector const &v2) + static inline cvm::rvector outer(cvm::rvector const &v1, + cvm::rvector const &v2) { return cvm::rvector( v1.y*v2.z - v2.y*v1.z, -v1.x*v2.z + v2.x*v1.z, @@ -850,41 +829,35 @@ public: return cvm::rvector(-v.x, -v.y, -v.z); } - friend inline int operator == (cvm::rvector const &v1, cvm::rvector const &v2) - { - return (v1.x == v2.x) && (v1.y == v2.y) && (v1.z == v2.z); - } - - friend inline int operator != (cvm::rvector const &v1, cvm::rvector const &v2) - { - return (v1.x != v2.x) || (v1.y != v2.y) || (v1.z != v2.z); - } - - friend inline cvm::rvector operator + (cvm::rvector const &v1, cvm::rvector const &v2) + friend inline cvm::rvector operator + (cvm::rvector const &v1, + cvm::rvector const &v2) { return cvm::rvector(v1.x + v2.x, v1.y + v2.y, v1.z + v2.z); } - friend inline cvm::rvector operator - (cvm::rvector const &v1, cvm::rvector const &v2) + friend inline cvm::rvector operator - (cvm::rvector const &v1, + cvm::rvector const &v2) { return cvm::rvector(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z); } - friend inline cvm::real operator * (cvm::rvector const &v1, cvm::rvector const &v2) + /// Inner (dot) product + friend inline cvm::real operator * (cvm::rvector const &v1, + cvm::rvector const &v2) { return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z; } - friend inline cvm::rvector operator * (cvm::real const &a, cvm::rvector const &v) + friend inline cvm::rvector operator * (cvm::real a, cvm::rvector const &v) { return cvm::rvector(a*v.x, a*v.y, a*v.z); } - friend inline cvm::rvector operator * (cvm::rvector const &v, cvm::real const &a) + friend inline cvm::rvector operator * (cvm::rvector const &v, cvm::real a) { return cvm::rvector(a*v.x, a*v.y, a*v.z); } - friend inline cvm::rvector operator / (cvm::rvector const &v, cvm::real const &a) + friend inline cvm::rvector operator / (cvm::rvector const &v, cvm::real a) { return cvm::rvector(v.x/a, v.y/a, v.z/a); } @@ -946,15 +919,9 @@ public: {} /// Constructor component by component - inline rmatrix(cvm::real const &xxi, - cvm::real const &xyi, - cvm::real const &xzi, - cvm::real const &yxi, - cvm::real const &yyi, - cvm::real const &yzi, - cvm::real const &zxi, - cvm::real const &zyi, - cvm::real const &zzi) + inline rmatrix(cvm::real xxi, cvm::real xyi, cvm::real xzi, + cvm::real yxi, cvm::real yyi, cvm::real yzi, + cvm::real zxi, cvm::real zyi, cvm::real zzi) : cvm::matrix2d(3, 3) { this->xx() = xxi; @@ -983,31 +950,13 @@ public: inline cvm::rmatrix transpose() const { - return cvm::rmatrix(this->xx(), - this->yx(), - this->zx(), - this->xy(), - this->yy(), - this->zy(), - this->xz(), - this->yz(), - this->zz()); + return cvm::rmatrix(this->xx(), this->yx(), this->zx(), + this->xy(), this->yy(), this->zy(), + this->xz(), this->yz(), this->zz()); } friend cvm::rvector operator * (cvm::rmatrix const &m, cvm::rvector const &r); - // friend inline cvm::rmatrix const operator * (cvm::rmatrix const &m1, cvm::rmatrix const &m2) { - // return cvm::rmatrix (m1.xx()*m2.xx() + m1.xy()*m2.yx() + m1.xz()*m2.yz(), - // m1.xx()*m2.xy() + m1.xy()*m2.yy() + m1.xz()*m2.zy(), - // m1.xx()*m2.xz() + m1.xy()*m2.yz() + m1.xz()*m2.zz(), - // m1.yx()*m2.xx() + m1.yy()*m2.yx() + m1.yz()*m2.yz(), - // m1.yx()*m2.xy() + m1.yy()*m2.yy() + m1.yz()*m2.yy(), - // m1.yx()*m2.xz() + m1.yy()*m2.yz() + m1.yz()*m2.yz(), - // m1.zx()*m2.xx() + m1.zy()*m2.yx() + m1.zz()*m2.yz(), - // m1.zx()*m2.xy() + m1.zy()*m2.yy() + m1.zz()*m2.yy(), - // m1.zx()*m2.xz() + m1.zy()*m2.yz() + m1.zz()*m2.yz()); - // } - }; @@ -1031,7 +980,7 @@ public: cvm::real q0, q1, q2, q3; /// Constructor from a 3-d vector - inline quaternion(cvm::real const &x, cvm::real const &y, cvm::real const &z) + inline quaternion(cvm::real x, cvm::real y, cvm::real z) : q0(0.0), q1(x), q2(y), q3(z) {} @@ -1041,10 +990,10 @@ public: {} /// Constructor component by component - inline quaternion(cvm::real const &q0i, - cvm::real const &q1i, - cvm::real const &q2i, - cvm::real const &q3i) + inline quaternion(cvm::real q0i, + cvm::real q1i, + cvm::real q2i, + cvm::real q3i) : q0(q0i), q1(q1i), q2(q2i), q3(q3i) {} @@ -1055,9 +1004,9 @@ public: /// "Constructor" after Euler angles (in radians) /// /// http://en.wikipedia.org/wiki/Conversion_between_quaternions_and_Euler_angles - inline void set_from_euler_angles(cvm::real const &phi_in, - cvm::real const &theta_in, - cvm::real const &psi_in) + inline void set_from_euler_angles(cvm::real phi_in, + cvm::real theta_in, + cvm::real psi_in) { q0 = ( (std::cos(phi_in/2.0)) * (std::cos(theta_in/2.0)) * (std::cos(psi_in/2.0)) + (std::sin(phi_in/2.0)) * (std::sin(theta_in/2.0)) * (std::sin(psi_in/2.0)) ); @@ -1079,7 +1028,7 @@ public: } /// \brief Set all components to a scalar - inline void set(cvm::real const &value = 0.0) + inline void set(cvm::real value) { q0 = q1 = q2 = q3 = value; } @@ -1087,7 +1036,7 @@ public: /// \brief Set all components to zero (null quaternion) inline void reset() { - q0 = q1 = q2 = q3 = 0.0; + set(0.0); } /// \brief Set the q0 component to 1 and the others to 0 (quaternion @@ -1099,7 +1048,7 @@ public: } /// Tell the number of characters required to print a quaternion, given that of a real number - static inline size_t output_width(size_t const &real_width) + static inline size_t output_width(size_t real_width) { return 4*real_width + 13; } @@ -1113,7 +1062,7 @@ public: friend std::istream & operator >> (std::istream &is, cvm::quaternion &q); /// Access the quaternion as a 4-d array (return a reference) - inline cvm::real & operator [] (int const &i) { + inline cvm::real & operator [] (int i) { switch (i) { case 0: return this->q0; @@ -1130,7 +1079,7 @@ public: } /// Access the quaternion as a 4-d array (return a value) - inline cvm::real operator [] (int const &i) const { + inline cvm::real operator [] (int i) const { switch (i) { case 0: return this->q0; @@ -1175,12 +1124,12 @@ public: return cvm::quaternion(q0, -q1, -q2, -q3); } - inline void operator *= (cvm::real const &a) + inline void operator *= (cvm::real a) { q0 *= a; q1 *= a; q2 *= a; q3 *= a; } - inline void operator /= (cvm::real const &a) + inline void operator /= (cvm::real a) { q0 /= a; q1 /= a; q2 /= a; q3 /= a; } @@ -1215,19 +1164,22 @@ public: } - friend inline cvm::quaternion operator + (cvm::quaternion const &h, cvm::quaternion const &q) + friend inline cvm::quaternion operator + (cvm::quaternion const &h, + cvm::quaternion const &q) { return cvm::quaternion(h.q0+q.q0, h.q1+q.q1, h.q2+q.q2, h.q3+q.q3); } - friend inline cvm::quaternion operator - (cvm::quaternion const &h, cvm::quaternion const &q) + friend inline cvm::quaternion operator - (cvm::quaternion const &h, + cvm::quaternion const &q) { return cvm::quaternion(h.q0-q.q0, h.q1-q.q1, h.q2-q.q2, h.q3-q.q3); } /// \brief Provides the quaternion product. \b NOTE: for the inner /// product use: \code h.inner (q); \endcode - friend inline cvm::quaternion operator * (cvm::quaternion const &h, cvm::quaternion const &q) + friend inline cvm::quaternion operator * (cvm::quaternion const &h, + cvm::quaternion const &q) { return cvm::quaternion(h.q0*q.q0 - h.q1*q.q1 - h.q2*q.q2 - h.q3*q.q3, h.q0*q.q1 + h.q1*q.q0 + h.q2*q.q3 - h.q3*q.q2, @@ -1235,18 +1187,18 @@ public: h.q0*q.q3 + h.q3*q.q0 + h.q1*q.q2 - h.q2*q.q1); } - friend inline cvm::quaternion operator * (cvm::real const &c, + friend inline cvm::quaternion operator * (cvm::real c, cvm::quaternion const &q) { return cvm::quaternion(c*q.q0, c*q.q1, c*q.q2, c*q.q3); } friend inline cvm::quaternion operator * (cvm::quaternion const &q, - cvm::real const &c) + cvm::real c) { return cvm::quaternion(q.q0*c, q.q1*c, q.q2*c, q.q3*c); } friend inline cvm::quaternion operator / (cvm::quaternion const &q, - cvm::real const &c) + cvm::real c) { return cvm::quaternion(q.q0/c, q.q1/c, q.q2/c, q.q3/c); } @@ -1407,7 +1359,7 @@ public: std::vector< cvm::vector1d > dQ0_1, dQ0_2; /// Allocate space for the derivatives of the rotation - inline void request_group1_gradients(size_t const &n) + inline void request_group1_gradients(size_t n) { dS_1.resize(n, cvm::matrix2d(4, 4)); dL0_1.resize(n, cvm::rvector(0.0, 0.0, 0.0)); @@ -1415,7 +1367,7 @@ public: } /// Allocate space for the derivatives of the rotation - inline void request_group2_gradients(size_t const &n) + inline void request_group2_gradients(size_t n) { dS_2.resize(n, cvm::matrix2d(4, 4)); dL0_2.resize(n, cvm::rvector(0.0, 0.0, 0.0)); @@ -1448,7 +1400,7 @@ public: } /// Constructor after an axis of rotation and an angle (in radians) - inline rotation(cvm::real const &angle, cvm::rvector const &axis) + inline rotation(cvm::real angle, cvm::rvector const &axis) : b_debug_gradients(false) { cvm::rvector const axis_n = axis.unit(); @@ -1500,20 +1452,18 @@ public: if (q.q0 != 0.0) { - // cvm::real const x = iprod/q.q0; - - cvm::real const dspindx = (180.0/PI) * 2.0 * (1.0 / (1.0 + (iprod*iprod)/(q.q0*q.q0))); + cvm::real const dspindx = + (180.0/PI) * 2.0 * (1.0 / (1.0 + (iprod*iprod)/(q.q0*q.q0))); - return - cvm::quaternion( dspindx * (iprod * (-1.0) / (q.q0*q.q0)), - dspindx * ((1.0/q.q0) * axis.x), - dspindx * ((1.0/q.q0) * axis.y), - dspindx * ((1.0/q.q0) * axis.z)); + return cvm::quaternion( dspindx * (iprod * (-1.0) / (q.q0*q.q0)), + dspindx * ((1.0/q.q0) * axis.x), + dspindx * ((1.0/q.q0) * axis.y), + dspindx * ((1.0/q.q0) * axis.z)); } else { // (1/(1+x^2)) ~ (1/x)^2 - return - cvm::quaternion((180.0/PI) * 2.0 * ((-1.0)/iprod), 0.0, 0.0, 0.0); - // XX TODO: What if iprod == 0? XX + // The documentation of spinAngle discourages its use when q_vec and + // axis are not close + return cvm::quaternion((180.0/PI) * 2.0 * ((-1.0)/iprod), 0.0, 0.0, 0.0); } } diff --git a/lib/gpu/Makefile.linux_multi b/lib/gpu/Makefile.linux_multi new file mode 100644 index 0000000000000000000000000000000000000000..02b405ac35114402cbd5609b635748fd2df37e55 --- /dev/null +++ b/lib/gpu/Makefile.linux_multi @@ -0,0 +1,53 @@ +# /* ---------------------------------------------------------------------- +# Generic Linux Makefile for CUDA +# - Change CUDA_ARCH for your GPU +# ------------------------------------------------------------------------- */ + +# which file will be copied to Makefile.lammps + +EXTRAMAKE = Makefile.lammps.standard + +ifeq ($(CUDA_HOME),) +CUDA_HOME = /usr/local/cuda +endif + +NVCC = nvcc + +# Kepler CUDA +#CUDA_ARCH = -arch=sm_35 +# newer CUDA +#CUDA_ARCH = -arch=sm_13 +# older CUDA +#CUDA_ARCH = -arch=sm_10 -DCUDA_PRE_THREE + +CUDA_ARCH = -gencode arch=compute_60,code=sm_60 -gencode arch=compute_61,code=sm_61 + +# this setting should match LAMMPS Makefile +# one of LAMMPS_SMALLBIG (default), LAMMPS_BIGBIG and LAMMPS_SMALLSMALL + +LMP_INC = -DLAMMPS_SMALLBIG + +# precision for GPU calculations +# -D_SINGLE_SINGLE # Single precision for all calculations +# -D_DOUBLE_DOUBLE # Double precision for all calculations +# -D_SINGLE_DOUBLE # Accumulation of forces, etc. in double + +CUDA_PRECISION = -D_SINGLE_DOUBLE + +CUDA_INCLUDE = -I$(CUDA_HOME)/include +CUDA_LIB = -L$(CUDA_HOME)/lib64 +CUDA_OPTS = -DUNIX -O3 -Xptxas -v --use_fast_math $(LMP_INC) -Xcompiler "-fPIC -std=c++98" + +CUDR_CPP = mpicxx -DMPI_GERYON -DUCL_NO_EXIT -DMPICH_IGNORE_CXX_SEEK -DOMPI_SKIP_MPICXX=1 -fPIC +CUDR_OPTS = -O2 $(LMP_INC) # -xHost -no-prec-div -ansi-alias + +BIN_DIR = ./ +OBJ_DIR = ./ +LIB_DIR = ./ +AR = ar +BSH = /bin/sh + +CUDPP_OPT = -DUSE_CUDPP -Icudpp_mini + +include Nvidia.makefile_multi + diff --git a/lib/gpu/Makefile.linux_opencl b/lib/gpu/Makefile.linux_opencl index e6358907785d1db0fb4c70c6e672ef33700956e4..640562dca535665d246d1b08e7350724309d3587 100644 --- a/lib/gpu/Makefile.linux_opencl +++ b/lib/gpu/Makefile.linux_opencl @@ -6,10 +6,10 @@ EXTRAMAKE = Makefile.lammps.opencl -OCL_TUNE = -DFERMI_OCL # -- Uncomment for NVIDIA Fermi +# OCL_TUNE = -DFERMI_OCL # -- Uncomment for NVIDIA Fermi # OCL_TUNE = -DKEPLER_OCL # -- Uncomment for NVIDIA Kepler # OCL_TUNE = -DCYPRESS_OCL # -- Uncomment for AMD Cypress -# OCL_TUNE = -DGENERIC_OCL # -- Uncomment for generic device +OCL_TUNE = -DGENERIC_OCL # -- Uncomment for generic device # this setting should match LAMMPS Makefile # one of LAMMPS_SMALLBIG (default), LAMMPS_BIGBIG and LAMMPS_SMALLSMALL diff --git a/lib/gpu/Nvidia.makefile b/lib/gpu/Nvidia.makefile index 5f692cf66c8bbe9834ca36f81786fef1ad2e9ae5..0d7214260da804c79a26413b51458623f71c078a 100644 --- a/lib/gpu/Nvidia.makefile +++ b/lib/gpu/Nvidia.makefile @@ -77,7 +77,12 @@ OBJS = $(OBJ_DIR)/lal_atom.o $(OBJ_DIR)/lal_ans.o \ $(OBJ_DIR)/lal_coul_debye.o $(OBJ_DIR)/lal_coul_debye_ext.o \ $(OBJ_DIR)/lal_zbl.o $(OBJ_DIR)/lal_zbl_ext.o \ $(OBJ_DIR)/lal_lj_cubic.o $(OBJ_DIR)/lal_lj_cubic_ext.o \ - $(OBJ_DIR)/lal_ufm.o $(OBJ_DIR)/lal_ufm_ext.o + $(OBJ_DIR)/lal_ufm.o $(OBJ_DIR)/lal_ufm_ext.o \ + $(OBJ_DIR)/lal_dipole_long_lj.o $(OBJ_DIR)/lal_dipole_long_lj_ext.o \ + $(OBJ_DIR)/lal_lj_expand_coul_long.o $(OBJ_DIR)/lal_lj_expand_coul_long_ext.o \ + $(OBJ_DIR)/lal_coul_long_cs.o $(OBJ_DIR)/lal_coul_long_cs_ext.o \ + $(OBJ_DIR)/lal_born_coul_long_cs.o $(OBJ_DIR)/lal_born_coul_long_cs_ext.o \ + $(OBJ_DIR)/lal_born_coul_wolf_cs.o $(OBJ_DIR)/lal_born_coul_wolf_cs_ext.o CBNS = $(OBJ_DIR)/device.cubin $(OBJ_DIR)/device_cubin.h \ $(OBJ_DIR)/atom.cubin $(OBJ_DIR)/atom_cubin.h \ @@ -133,7 +138,12 @@ CBNS = $(OBJ_DIR)/device.cubin $(OBJ_DIR)/device_cubin.h \ $(OBJ_DIR)/coul_debye.cubin $(OBJ_DIR)/coul_debye_cubin.h \ $(OBJ_DIR)/zbl.cubin $(OBJ_DIR)/zbl_cubin.h \ $(OBJ_DIR)/lj_cubic.cubin $(OBJ_DIR)/lj_cubic_cubin.h \ - $(OBJ_DIR)/ufm.cubin $(OBJ_DIR)/ufm_cubin.h + $(OBJ_DIR)/ufm.cubin $(OBJ_DIR)/ufm_cubin.h \ + $(OBJ_DIR)/dipole_long_lj.cubin $(OBJ_DIR)/dipole_long_lj_cubin.h \ + $(OBJ_DIR)/lj_expand_coul_long.cubin $(OBJ_DIR)/lj_expand_coul_long_cubin.h \ + $(OBJ_DIR)/coul_long_cs.cubin $(OBJ_DIR)/coul_long_cs_cubin.h \ + $(OBJ_DIR)/born_coul_long_cs.cubin $(OBJ_DIR)/born_coul_long_cs_cubin.h \ + $(OBJ_DIR)/born_coul_wolf_cs.cubin $(OBJ_DIR)/born_coul_wolf_cs_cubin.h all: $(OBJ_DIR) $(GPU_LIB) $(EXECS) @@ -809,6 +819,66 @@ $(OBJ_DIR)/lal_lj_cubic.o: $(ALL_H) lal_lj_cubic.h lal_lj_cubic.cpp $(OBJ_DIR)/l $(OBJ_DIR)/lal_lj_cubic_ext.o: $(ALL_H) lal_lj_cubic.h lal_lj_cubic_ext.cpp lal_base_atomic.h $(CUDR) -o $@ -c lal_lj_cubic_ext.cpp -I$(OBJ_DIR) +$(OBJ_DIR)/dipole_long_lj.cubin: lal_dipole_long_lj.cu lal_precision.h lal_preprocessor.h + $(CUDA) --cubin -DNV_KERNEL -o $@ lal_dipole_long_lj.cu + +$(OBJ_DIR)/dipole_long_lj_cubin.h: $(OBJ_DIR)/dipole_long_lj.cubin $(OBJ_DIR)/dipole_long_lj.cubin + $(BIN2C) -c -n dipole_long_lj $(OBJ_DIR)/dipole_long_lj.cubin > $(OBJ_DIR)/dipole_long_lj_cubin.h + +$(OBJ_DIR)/lal_dipole_long_lj.o: $(ALL_H) lal_dipole_long_lj.h lal_dipole_long_lj.cpp $(OBJ_DIR)/dipole_long_lj_cubin.h $(OBJ_DIR)/lal_base_dipole.o + $(CUDR) -o $@ -c lal_dipole_long_lj.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_dipole_long_lj_ext.o: $(ALL_H) lal_dipole_long_lj.h lal_dipole_long_lj_ext.cpp lal_base_dipole.h + $(CUDR) -o $@ -c lal_dipole_long_lj_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_expand_coul_long.cubin: lal_lj_expand_coul_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --cubin -DNV_KERNEL -o $@ lal_lj_expand_coul_long.cu + +$(OBJ_DIR)/lj_expand_coul_long_cubin.h: $(OBJ_DIR)/lj_expand_coul_long.cubin $(OBJ_DIR)/lj_expand_coul_long.cubin + $(BIN2C) -c -n lj_expand_coul_long $(OBJ_DIR)/lj_expand_coul_long.cubin > $(OBJ_DIR)/lj_expand_coul_long_cubin.h + +$(OBJ_DIR)/lal_lj_expand_coul_long.o: $(ALL_H) lal_lj_expand_coul_long.h lal_lj_expand_coul_long.cpp $(OBJ_DIR)/lj_expand_coul_long_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_lj_expand_coul_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_expand_coul_long_ext.o: $(ALL_H) lal_lj_expand_coul_long.h lal_lj_expand_coul_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_expand_coul_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/coul_long_cs.cubin: lal_coul_long_cs.cu lal_precision.h lal_preprocessor.h + $(CUDA) --cubin -DNV_KERNEL -o $@ lal_coul_long_cs.cu + +$(OBJ_DIR)/coul_long_cs_cubin.h: $(OBJ_DIR)/coul_long_cs.cubin $(OBJ_DIR)/coul_long_cs.cubin + $(BIN2C) -c -n coul_long_cs $(OBJ_DIR)/coul_long_cs.cubin > $(OBJ_DIR)/coul_long_cs_cubin.h + +$(OBJ_DIR)/lal_coul_long_cs.o: $(ALL_H) lal_coul_long_cs.h lal_coul_long_cs.cpp $(OBJ_DIR)/coul_long_cs_cubin.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_coul_long.o + $(CUDR) -o $@ -c lal_coul_long_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_coul_long_cs_ext.o: $(ALL_H) lal_coul_long_cs.h lal_coul_long_cs_ext.cpp lal_coul_long.h + $(CUDR) -o $@ -c lal_coul_long_cs_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born_coul_long_cs.cubin: lal_born_coul_long_cs.cu lal_precision.h lal_preprocessor.h + $(CUDA) --cubin -DNV_KERNEL -o $@ lal_born_coul_long_cs.cu + +$(OBJ_DIR)/born_coul_long_cs_cubin.h: $(OBJ_DIR)/born_coul_long_cs.cubin $(OBJ_DIR)/born_coul_long_cs.cubin + $(BIN2C) -c -n born_coul_long_cs $(OBJ_DIR)/born_coul_long_cs.cubin > $(OBJ_DIR)/born_coul_long_cs_cubin.h + +$(OBJ_DIR)/lal_born_coul_long_cs.o: $(ALL_H) lal_born_coul_long_cs.h lal_born_coul_long_cs.cpp $(OBJ_DIR)/born_coul_long_cs_cubin.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_born_coul_long.o + $(CUDR) -o $@ -c lal_born_coul_long_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_coul_long_cs_ext.o: $(ALL_H) lal_born_coul_long_cs.h lal_born_coul_long_cs_ext.cpp lal_born_coul_long.h + $(CUDR) -o $@ -c lal_born_coul_long_cs_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born_coul_wolf_cs.cubin: lal_born_coul_wolf_cs.cu lal_precision.h lal_preprocessor.h + $(CUDA) --cubin -DNV_KERNEL -o $@ lal_born_coul_wolf_cs.cu + +$(OBJ_DIR)/born_coul_wolf_cs_cubin.h: $(OBJ_DIR)/born_coul_wolf_cs.cubin $(OBJ_DIR)/born_coul_wolf_cs.cubin + $(BIN2C) -c -n born_coul_wolf_cs $(OBJ_DIR)/born_coul_wolf_cs.cubin > $(OBJ_DIR)/born_coul_wolf_cs_cubin.h + +$(OBJ_DIR)/lal_born_coul_wolf_cs.o: $(ALL_H) lal_born_coul_wolf_cs.h lal_born_coul_wolf_cs.cpp $(OBJ_DIR)/born_coul_wolf_cs_cubin.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_born_coul_wolf.o + $(CUDR) -o $@ -c lal_born_coul_wolf_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_coul_wolf_cs_ext.o: $(ALL_H) lal_born_coul_wolf_cs.h lal_born_coul_wolf_cs_ext.cpp lal_born_coul_wolf.h + $(CUDR) -o $@ -c lal_born_coul_wolf_cs_ext.cpp -I$(OBJ_DIR) + $(BIN_DIR)/nvc_get_devices: ./geryon/ucl_get_devices.cpp $(NVD_H) $(CUDR) -o $@ ./geryon/ucl_get_devices.cpp -DUCL_CUDADR $(CUDA_LIB) -lcuda diff --git a/lib/gpu/Nvidia.makefile_multi b/lib/gpu/Nvidia.makefile_multi new file mode 100644 index 0000000000000000000000000000000000000000..94cfd4af6b8cd376a2c4497011f8ab71a7b63b5f --- /dev/null +++ b/lib/gpu/Nvidia.makefile_multi @@ -0,0 +1,896 @@ +CUDA = $(NVCC) $(CUDA_INCLUDE) $(CUDA_OPTS) -Icudpp_mini $(CUDA_ARCH) \ + $(CUDA_PRECISION) +CUDR = $(CUDR_CPP) $(CUDR_OPTS) $(CUDA_PRECISION) $(CUDA_INCLUDE) \ + $(CUDPP_OPT) +CUDA_LINK = $(CUDA_LIB) -lcudart +BIN2C = $(CUDA_HOME)/bin/bin2c + +GPU_LIB = $(LIB_DIR)/libgpu.a + +# Headers for Geryon +UCL_H = $(wildcard ./geryon/ucl*.h) +NVC_H = $(wildcard ./geryon/nvc*.h) $(UCL_H) +NVD_H = $(wildcard ./geryon/nvd*.h) $(UCL_H) lal_preprocessor.h +# Headers for Pair Stuff +PAIR_H = lal_atom.h lal_answer.h lal_neighbor_shared.h \ + lal_neighbor.h lal_precision.h lal_device.h \ + lal_balance.h lal_pppm.h + +ALL_H = $(NVD_H) $(PAIR_H) + +EXECS = $(BIN_DIR)/nvc_get_devices +ifdef CUDPP_OPT +CUDPP = $(OBJ_DIR)/cudpp.o $(OBJ_DIR)/cudpp_plan.o \ + $(OBJ_DIR)/cudpp_maximal_launch.o $(OBJ_DIR)/cudpp_plan_manager.o \ + $(OBJ_DIR)/radixsort_app.cu_o $(OBJ_DIR)/scan_app.cu_o +endif +OBJS = $(OBJ_DIR)/lal_atom.o $(OBJ_DIR)/lal_ans.o \ + $(OBJ_DIR)/lal_neighbor.o $(OBJ_DIR)/lal_neighbor_shared.o \ + $(OBJ_DIR)/lal_device.o $(OBJ_DIR)/lal_base_atomic.o \ + $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_base_ellipsoid.o \ + $(OBJ_DIR)/lal_base_dipole.o $(OBJ_DIR)/lal_base_three.o \ + $(OBJ_DIR)/lal_base_dpd.o \ + $(OBJ_DIR)/lal_pppm.o $(OBJ_DIR)/lal_pppm_ext.o \ + $(OBJ_DIR)/lal_gayberne.o $(OBJ_DIR)/lal_gayberne_ext.o \ + $(OBJ_DIR)/lal_re_squared.o $(OBJ_DIR)/lal_re_squared_ext.o \ + $(OBJ_DIR)/lal_lj.o $(OBJ_DIR)/lal_lj_ext.o \ + $(OBJ_DIR)/lal_lj96.o $(OBJ_DIR)/lal_lj96_ext.o \ + $(OBJ_DIR)/lal_lj_expand.o $(OBJ_DIR)/lal_lj_expand_ext.o \ + $(OBJ_DIR)/lal_lj_coul.o $(OBJ_DIR)/lal_lj_coul_ext.o \ + $(OBJ_DIR)/lal_lj_coul_long.o $(OBJ_DIR)/lal_lj_coul_long_ext.o \ + $(OBJ_DIR)/lal_lj_dsf.o $(OBJ_DIR)/lal_lj_dsf_ext.o \ + $(OBJ_DIR)/lal_lj_class2_long.o $(OBJ_DIR)/lal_lj_class2_long_ext.o \ + $(OBJ_DIR)/lal_coul_long.o $(OBJ_DIR)/lal_coul_long_ext.o \ + $(OBJ_DIR)/lal_morse.o $(OBJ_DIR)/lal_morse_ext.o \ + $(OBJ_DIR)/lal_charmm_long.o $(OBJ_DIR)/lal_charmm_long_ext.o \ + $(OBJ_DIR)/lal_lj_sdk.o $(OBJ_DIR)/lal_lj_sdk_ext.o \ + $(OBJ_DIR)/lal_lj_sdk_long.o $(OBJ_DIR)/lal_lj_sdk_long_ext.o \ + $(OBJ_DIR)/lal_eam.o $(OBJ_DIR)/lal_eam_ext.o \ + $(OBJ_DIR)/lal_eam_fs_ext.o $(OBJ_DIR)/lal_eam_alloy_ext.o \ + $(OBJ_DIR)/lal_buck.o $(OBJ_DIR)/lal_buck_ext.o \ + $(OBJ_DIR)/lal_buck_coul.o $(OBJ_DIR)/lal_buck_coul_ext.o \ + $(OBJ_DIR)/lal_buck_coul_long.o $(OBJ_DIR)/lal_buck_coul_long_ext.o \ + $(OBJ_DIR)/lal_table.o $(OBJ_DIR)/lal_table_ext.o \ + $(OBJ_DIR)/lal_yukawa.o $(OBJ_DIR)/lal_yukawa_ext.o \ + $(OBJ_DIR)/lal_born.o $(OBJ_DIR)/lal_born_ext.o \ + $(OBJ_DIR)/lal_born_coul_wolf.o $(OBJ_DIR)/lal_born_coul_wolf_ext.o \ + $(OBJ_DIR)/lal_born_coul_long.o $(OBJ_DIR)/lal_born_coul_long_ext.o \ + $(OBJ_DIR)/lal_dipole_lj.o $(OBJ_DIR)/lal_dipole_lj_ext.o \ + $(OBJ_DIR)/lal_dipole_lj_sf.o $(OBJ_DIR)/lal_dipole_lj_sf_ext.o \ + $(OBJ_DIR)/lal_colloid.o $(OBJ_DIR)/lal_colloid_ext.o \ + $(OBJ_DIR)/lal_gauss.o $(OBJ_DIR)/lal_gauss_ext.o \ + $(OBJ_DIR)/lal_yukawa_colloid.o $(OBJ_DIR)/lal_yukawa_colloid_ext.o \ + $(OBJ_DIR)/lal_lj_coul_debye.o $(OBJ_DIR)/lal_lj_coul_debye_ext.o \ + $(OBJ_DIR)/lal_coul_dsf.o $(OBJ_DIR)/lal_coul_dsf_ext.o \ + $(OBJ_DIR)/lal_sw.o $(OBJ_DIR)/lal_sw_ext.o \ + $(OBJ_DIR)/lal_vashishta.o $(OBJ_DIR)/lal_vashishta_ext.o \ + $(OBJ_DIR)/lal_beck.o $(OBJ_DIR)/lal_beck_ext.o \ + $(OBJ_DIR)/lal_mie.o $(OBJ_DIR)/lal_mie_ext.o \ + $(OBJ_DIR)/lal_soft.o $(OBJ_DIR)/lal_soft_ext.o \ + $(OBJ_DIR)/lal_lj_coul_msm.o $(OBJ_DIR)/lal_lj_coul_msm_ext.o \ + $(OBJ_DIR)/lal_lj_gromacs.o $(OBJ_DIR)/lal_lj_gromacs_ext.o \ + $(OBJ_DIR)/lal_dpd.o $(OBJ_DIR)/lal_dpd_ext.o \ + $(OBJ_DIR)/lal_tersoff.o $(OBJ_DIR)/lal_tersoff_ext.o \ + $(OBJ_DIR)/lal_tersoff_zbl.o $(OBJ_DIR)/lal_tersoff_zbl_ext.o \ + $(OBJ_DIR)/lal_tersoff_mod.o $(OBJ_DIR)/lal_tersoff_mod_ext.o \ + $(OBJ_DIR)/lal_coul.o $(OBJ_DIR)/lal_coul_ext.o \ + $(OBJ_DIR)/lal_coul_debye.o $(OBJ_DIR)/lal_coul_debye_ext.o \ + $(OBJ_DIR)/lal_zbl.o $(OBJ_DIR)/lal_zbl_ext.o \ + $(OBJ_DIR)/lal_lj_cubic.o $(OBJ_DIR)/lal_lj_cubic_ext.o \ + $(OBJ_DIR)/lal_ufm.o $(OBJ_DIR)/lal_ufm_ext.o \ + $(OBJ_DIR)/lal_dipole_long_lj.o $(OBJ_DIR)/lal_dipole_long_lj_ext.o \ + $(OBJ_DIR)/lal_lj_expand_coul_long.o $(OBJ_DIR)/lal_lj_expand_coul_long_ext.o \ + $(OBJ_DIR)/lal_coul_long_cs.o $(OBJ_DIR)/lal_coul_long_cs_ext.o \ + $(OBJ_DIR)/lal_born_coul_long_cs.o $(OBJ_DIR)/lal_born_coul_long_cs_ext.o \ + $(OBJ_DIR)/lal_born_coul_wolf_cs.o $(OBJ_DIR)/lal_born_coul_wolf_cs_ext.o + +CBNS = $(OBJ_DIR)/device.cubin $(OBJ_DIR)/device_cubin.h \ + $(OBJ_DIR)/atom.cubin $(OBJ_DIR)/atom_cubin.h \ + $(OBJ_DIR)/neighbor_cpu.cubin $(OBJ_DIR)/neighbor_cpu_cubin.h \ + $(OBJ_DIR)/neighbor_gpu.cubin $(OBJ_DIR)/neighbor_gpu_cubin.h \ + $(OBJ_DIR)/pppm_f.cubin $(OBJ_DIR)/pppm_f_cubin.h \ + $(OBJ_DIR)/pppm_d.cubin $(OBJ_DIR)/pppm_d_cubin.h \ + $(OBJ_DIR)/ellipsoid_nbor.cubin $(OBJ_DIR)/ellipsoid_nbor_cubin.h \ + $(OBJ_DIR)/gayberne.cubin $(OBJ_DIR)/gayberne_lj.cubin \ + $(OBJ_DIR)/gayberne_cubin.h $(OBJ_DIR)/gayberne_lj_cubin.h \ + $(OBJ_DIR)/re_squared.cubin $(OBJ_DIR)/re_squared_lj.cubin \ + $(OBJ_DIR)/re_squared_cubin.h $(OBJ_DIR)/re_squared_lj_cubin.h \ + $(OBJ_DIR)/lj.cubin $(OBJ_DIR)/lj_cubin.h \ + $(OBJ_DIR)/lj96.cubin $(OBJ_DIR)/lj96_cubin.h \ + $(OBJ_DIR)/lj_expand.cubin $(OBJ_DIR)/lj_expand_cubin.h \ + $(OBJ_DIR)/lj_coul.cubin $(OBJ_DIR)/lj_coul_cubin.h \ + $(OBJ_DIR)/lj_coul_long.cubin $(OBJ_DIR)/lj_coul_long_cubin.h \ + $(OBJ_DIR)/lj_dsf.cubin $(OBJ_DIR)/lj_dsf_cubin.h \ + $(OBJ_DIR)/lj_class2_long.cubin $(OBJ_DIR)/lj_class2_long_cubin.h \ + $(OBJ_DIR)/coul_long.cubin $(OBJ_DIR)/coul_long_cubin.h \ + $(OBJ_DIR)/morse.cubin $(OBJ_DIR)/morse_cubin.h \ + $(OBJ_DIR)/charmm_long.cubin $(OBJ_DIR)/charmm_long_cubin.h \ + $(OBJ_DIR)/lj_sdk.cubin $(OBJ_DIR)/lj_sdk_cubin.h \ + $(OBJ_DIR)/lj_sdk_long.cubin $(OBJ_DIR)/lj_sdk_long_cubin.h \ + $(OBJ_DIR)/eam.cubin $(OBJ_DIR)/eam_cubin.h \ + $(OBJ_DIR)/buck.cubin $(OBJ_DIR)/buck_cubin.h \ + $(OBJ_DIR)/buck_coul_long.cubin $(OBJ_DIR)/buck_coul_long_cubin.h \ + $(OBJ_DIR)/buck_coul.cubin $(OBJ_DIR)/buck_coul_cubin.h \ + $(OBJ_DIR)/table.cubin $(OBJ_DIR)/table_cubin.h \ + $(OBJ_DIR)/yukawa.cubin $(OBJ_DIR)/yukawa_cubin.h \ + $(OBJ_DIR)/born.cubin $(OBJ_DIR)/born_cubin.h \ + $(OBJ_DIR)/born_coul_wolf.cubin $(OBJ_DIR)/born_coul_wolf_cubin.h \ + $(OBJ_DIR)/born_coul_long.cubin $(OBJ_DIR)/born_coul_long_cubin.h \ + $(OBJ_DIR)/dipole_lj.cubin $(OBJ_DIR)/dipole_lj_cubin.h \ + $(OBJ_DIR)/dipole_lj_sf.cubin $(OBJ_DIR)/dipole_lj_sf_cubin.h \ + $(OBJ_DIR)/colloid.cubin $(OBJ_DIR)/colloid_cubin.h \ + $(OBJ_DIR)/gauss.cubin $(OBJ_DIR)/gauss_cubin.h \ + $(OBJ_DIR)/yukawa_colloid.cubin $(OBJ_DIR)/yukawa_colloid_cubin.h \ + $(OBJ_DIR)/lj_coul_debye.cubin $(OBJ_DIR)/lj_coul_debye_cubin.h \ + $(OBJ_DIR)/coul_dsf.cubin $(OBJ_DIR)/coul_dsf_cubin.h \ + $(OBJ_DIR)/sw.cubin $(OBJ_DIR)/sw_cubin.h \ + $(OBJ_DIR)/vashishta.cubin $(OBJ_DIR)/vashishta_cubin.h \ + $(OBJ_DIR)/beck.cubin $(OBJ_DIR)/beck_cubin.h \ + $(OBJ_DIR)/mie.cubin $(OBJ_DIR)/mie_cubin.h \ + $(OBJ_DIR)/soft.cubin $(OBJ_DIR)/soft_cubin.h \ + $(OBJ_DIR)/lj_coul_msm.cubin $(OBJ_DIR)/lj_coul_msm_cubin.h \ + $(OBJ_DIR)/lj_gromacs.cubin $(OBJ_DIR)/lj_gromacs_cubin.h \ + $(OBJ_DIR)/dpd.cubin $(OBJ_DIR)/dpd_cubin.h \ + $(OBJ_DIR)/tersoff.cubin $(OBJ_DIR)/tersoff_cubin.h \ + $(OBJ_DIR)/tersoff_zbl.cubin $(OBJ_DIR)/tersoff_zbl_cubin.h \ + $(OBJ_DIR)/tersoff_mod.cubin $(OBJ_DIR)/tersoff_mod_cubin.h \ + $(OBJ_DIR)/coul.cubin $(OBJ_DIR)/coul_cubin.h \ + $(OBJ_DIR)/coul_debye.cubin $(OBJ_DIR)/coul_debye_cubin.h \ + $(OBJ_DIR)/zbl.cubin $(OBJ_DIR)/zbl_cubin.h \ + $(OBJ_DIR)/lj_cubic.cubin $(OBJ_DIR)/lj_cubic_cubin.h \ + $(OBJ_DIR)/ufm.cubin $(OBJ_DIR)/ufm_cubin.h \ + $(OBJ_DIR)/dipole_long_lj.cubin $(OBJ_DIR)/dipole_long_lj_cubin.h \ + $(OBJ_DIR)/lj_expand_coul_long.cubin $(OBJ_DIR)/lj_expand_coul_long_cubin.h \ + $(OBJ_DIR)/coul_long_cs.cubin $(OBJ_DIR)/coul_long_cs_cubin.h \ + $(OBJ_DIR)/born_coul_long_cs.cubin $(OBJ_DIR)/born_coul_long_cs_cubin.h \ + $(OBJ_DIR)/born_coul_wolf_cs.cubin $(OBJ_DIR)/born_coul_wolf_cs_cubin.h + +all: $(OBJ_DIR) $(GPU_LIB) $(EXECS) + +$(OBJ_DIR): + mkdir -p $@ + +$(OBJ_DIR)/cudpp.o: cudpp_mini/cudpp.cpp + $(CUDR) -o $@ -c cudpp_mini/cudpp.cpp -Icudpp_mini + +$(OBJ_DIR)/cudpp_plan.o: cudpp_mini/cudpp_plan.cpp + $(CUDR) -o $@ -c cudpp_mini/cudpp_plan.cpp -Icudpp_mini + +$(OBJ_DIR)/cudpp_maximal_launch.o: cudpp_mini/cudpp_maximal_launch.cpp + $(CUDR) -o $@ -c cudpp_mini/cudpp_maximal_launch.cpp -Icudpp_mini + +$(OBJ_DIR)/cudpp_plan_manager.o: cudpp_mini/cudpp_plan_manager.cpp + $(CUDR) -o $@ -c cudpp_mini/cudpp_plan_manager.cpp -Icudpp_mini + +$(OBJ_DIR)/radixsort_app.cu_o: cudpp_mini/radixsort_app.cu + $(CUDA) -o $@ -c cudpp_mini/radixsort_app.cu + +$(OBJ_DIR)/scan_app.cu_o: cudpp_mini/scan_app.cu + $(CUDA) -o $@ -c cudpp_mini/scan_app.cu + +$(OBJ_DIR)/atom.cubin: lal_atom.cu lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_atom.cu + +$(OBJ_DIR)/atom_cubin.h: $(OBJ_DIR)/atom.cubin + $(BIN2C) -c -n atom $(OBJ_DIR)/atom.cubin > $(OBJ_DIR)/atom_cubin.h + +$(OBJ_DIR)/lal_atom.o: lal_atom.cpp lal_atom.h $(NVD_H) $(OBJ_DIR)/atom_cubin.h + $(CUDR) -o $@ -c lal_atom.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_ans.o: lal_answer.cpp lal_answer.h $(NVD_H) + $(CUDR) -o $@ -c lal_answer.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/neighbor_cpu.cubin: lal_neighbor_cpu.cu lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_neighbor_cpu.cu + +$(OBJ_DIR)/neighbor_cpu_cubin.h: $(OBJ_DIR)/neighbor_cpu.cubin + $(BIN2C) -c -n neighbor_cpu $(OBJ_DIR)/neighbor_cpu.cubin > $(OBJ_DIR)/neighbor_cpu_cubin.h + +$(OBJ_DIR)/neighbor_gpu.cubin: lal_neighbor_gpu.cu lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_neighbor_gpu.cu + +$(OBJ_DIR)/neighbor_gpu_cubin.h: $(OBJ_DIR)/neighbor_gpu.cubin + $(BIN2C) -c -n neighbor_gpu $(OBJ_DIR)/neighbor_gpu.cubin > $(OBJ_DIR)/neighbor_gpu_cubin.h + +$(OBJ_DIR)/lal_neighbor_shared.o: lal_neighbor_shared.cpp lal_neighbor_shared.h $(OBJ_DIR)/neighbor_cpu_cubin.h $(OBJ_DIR)/neighbor_gpu_cubin.h $(NVD_H) + $(CUDR) -o $@ -c lal_neighbor_shared.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_neighbor.o: lal_neighbor.cpp lal_neighbor.h lal_neighbor_shared.h $(NVD_H) + $(CUDR) -o $@ -c lal_neighbor.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/device.cubin: lal_device.cu lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_device.cu + +$(OBJ_DIR)/device_cubin.h: $(OBJ_DIR)/device.cubin + $(BIN2C) -c -n device $(OBJ_DIR)/device.cubin > $(OBJ_DIR)/device_cubin.h + +$(OBJ_DIR)/lal_device.o: lal_device.cpp lal_device.h $(ALL_H) $(OBJ_DIR)/device_cubin.h + $(CUDR) -o $@ -c lal_device.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_base_atomic.o: $(ALL_H) lal_base_atomic.h lal_base_atomic.cpp + $(CUDR) -o $@ -c lal_base_atomic.cpp + +$(OBJ_DIR)/lal_base_charge.o: $(ALL_H) lal_base_charge.h lal_base_charge.cpp + $(CUDR) -o $@ -c lal_base_charge.cpp + +$(OBJ_DIR)/lal_base_ellipsoid.o: $(ALL_H) lal_base_ellipsoid.h lal_base_ellipsoid.cpp $(OBJ_DIR)/ellipsoid_nbor_cubin.h + $(CUDR) -o $@ -c lal_base_ellipsoid.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_base_dipole.o: $(ALL_H) lal_base_dipole.h lal_base_dipole.cpp + $(CUDR) -o $@ -c lal_base_dipole.cpp + +$(OBJ_DIR)/lal_base_three.o: $(ALL_H) lal_base_three.h lal_base_three.cpp + $(CUDR) -o $@ -c lal_base_three.cpp + +$(OBJ_DIR)/lal_base_dpd.o: $(ALL_H) lal_base_dpd.h lal_base_dpd.cpp + $(CUDR) -o $@ -c lal_base_dpd.cpp + +$(OBJ_DIR)/pppm_f.cubin: lal_pppm.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -Dgrdtyp=float -Dgrdtyp4=float4 -o $@ lal_pppm.cu + +$(OBJ_DIR)/pppm_f_cubin.h: $(OBJ_DIR)/pppm_f.cubin + $(BIN2C) -c -n pppm_f $(OBJ_DIR)/pppm_f.cubin > $(OBJ_DIR)/pppm_f_cubin.h + +$(OBJ_DIR)/pppm_d.cubin: lal_pppm.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -Dgrdtyp=double -Dgrdtyp4=double4 -o $@ lal_pppm.cu + +$(OBJ_DIR)/pppm_d_cubin.h: $(OBJ_DIR)/pppm_d.cubin + $(BIN2C) -c -n pppm_d $(OBJ_DIR)/pppm_d.cubin > $(OBJ_DIR)/pppm_d_cubin.h + +$(OBJ_DIR)/lal_pppm.o: $(ALL_H) lal_pppm.h lal_pppm.cpp $(OBJ_DIR)/pppm_f_cubin.h $(OBJ_DIR)/pppm_d_cubin.h + $(CUDR) -o $@ -c lal_pppm.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_pppm_ext.o: $(ALL_H) lal_pppm.h lal_pppm_ext.cpp + $(CUDR) -o $@ -c lal_pppm_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/ellipsoid_nbor.cubin: lal_ellipsoid_nbor.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_ellipsoid_nbor.cu + +$(OBJ_DIR)/ellipsoid_nbor_cubin.h: $(OBJ_DIR)/ellipsoid_nbor.cubin + $(BIN2C) -c -n ellipsoid_nbor $(OBJ_DIR)/ellipsoid_nbor.cubin > $(OBJ_DIR)/ellipsoid_nbor_cubin.h + +$(OBJ_DIR)/gayberne.cubin: lal_gayberne.cu lal_precision.h lal_ellipsoid_extra.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_gayberne.cu + +$(OBJ_DIR)/gayberne_lj.cubin: lal_gayberne_lj.cu lal_precision.h lal_ellipsoid_extra.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_gayberne_lj.cu + +$(OBJ_DIR)/gayberne_cubin.h: $(OBJ_DIR)/gayberne.cubin + $(BIN2C) -c -n gayberne $(OBJ_DIR)/gayberne.cubin > $(OBJ_DIR)/gayberne_cubin.h + +$(OBJ_DIR)/gayberne_lj_cubin.h: $(OBJ_DIR)/gayberne_lj.cubin + $(BIN2C) -c -n gayberne_lj $(OBJ_DIR)/gayberne_lj.cubin > $(OBJ_DIR)/gayberne_lj_cubin.h + +$(OBJ_DIR)/lal_gayberne.o: $(ALL_H) lal_gayberne.h lal_gayberne.cpp $(OBJ_DIR)/gayberne_cubin.h $(OBJ_DIR)/gayberne_lj_cubin.h $(OBJ_DIR)/lal_base_ellipsoid.o + $(CUDR) -o $@ -c lal_gayberne.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_gayberne_ext.o: $(ALL_H) $(OBJ_DIR)/lal_gayberne.o lal_gayberne_ext.cpp + $(CUDR) -o $@ -c lal_gayberne_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/re_squared.cubin: lal_re_squared.cu lal_precision.h lal_ellipsoid_extra.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_re_squared.cu + +$(OBJ_DIR)/re_squared_lj.cubin: lal_re_squared_lj.cu lal_precision.h lal_ellipsoid_extra.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_re_squared_lj.cu + +$(OBJ_DIR)/re_squared_cubin.h: $(OBJ_DIR)/re_squared.cubin + $(BIN2C) -c -n re_squared $(OBJ_DIR)/re_squared.cubin > $(OBJ_DIR)/re_squared_cubin.h + +$(OBJ_DIR)/re_squared_lj_cubin.h: $(OBJ_DIR)/re_squared_lj.cubin + $(BIN2C) -c -n re_squared_lj $(OBJ_DIR)/re_squared_lj.cubin > $(OBJ_DIR)/re_squared_lj_cubin.h + +$(OBJ_DIR)/lal_re_squared.o: $(ALL_H) lal_re_squared.h lal_re_squared.cpp $(OBJ_DIR)/re_squared_cubin.h $(OBJ_DIR)/re_squared_lj_cubin.h $(OBJ_DIR)/lal_base_ellipsoid.o + $(CUDR) -o $@ -c lal_re_squared.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_re_squared_ext.o: $(ALL_H) $(OBJ_DIR)/lal_re_squared.o lal_re_squared_ext.cpp + $(CUDR) -o $@ -c lal_re_squared_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj.cubin: lal_lj.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj.cu + +$(OBJ_DIR)/lj_cubin.h: $(OBJ_DIR)/lj.cubin $(OBJ_DIR)/lj.cubin + $(BIN2C) -c -n lj $(OBJ_DIR)/lj.cubin > $(OBJ_DIR)/lj_cubin.h + +$(OBJ_DIR)/lal_lj.o: $(ALL_H) lal_lj.h lal_lj.cpp $(OBJ_DIR)/lj_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_lj.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_ext.o: $(ALL_H) lal_lj.h lal_lj_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_lj_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_coul.cubin: lal_lj_coul.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_coul.cu + +$(OBJ_DIR)/lj_coul_cubin.h: $(OBJ_DIR)/lj_coul.cubin $(OBJ_DIR)/lj_coul.cubin + $(BIN2C) -c -n lj_coul $(OBJ_DIR)/lj_coul.cubin > $(OBJ_DIR)/lj_coul_cubin.h + +$(OBJ_DIR)/lal_lj_coul.o: $(ALL_H) lal_lj_coul.h lal_lj_coul.cpp $(OBJ_DIR)/lj_coul_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_lj_coul.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_coul_ext.o: $(ALL_H) lal_lj_coul.h lal_lj_coul_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_coul_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_class2_long.cubin: lal_lj_class2_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_class2_long.cu + +$(OBJ_DIR)/lj_class2_long_cubin.h: $(OBJ_DIR)/lj_class2_long.cubin $(OBJ_DIR)/lj_class2_long.cubin + $(BIN2C) -c -n lj_class2_long $(OBJ_DIR)/lj_class2_long.cubin > $(OBJ_DIR)/lj_class2_long_cubin.h + +$(OBJ_DIR)/lal_lj_class2_long.o: $(ALL_H) lal_lj_class2_long.h lal_lj_class2_long.cpp $(OBJ_DIR)/lj_class2_long_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_lj_class2_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_class2_long_ext.o: $(ALL_H) lal_lj_class2_long.h lal_lj_class2_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_class2_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/coul_long.cubin: lal_coul_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_coul_long.cu + +$(OBJ_DIR)/coul_long_cubin.h: $(OBJ_DIR)/coul_long.cubin $(OBJ_DIR)/coul_long.cubin + $(BIN2C) -c -n coul_long $(OBJ_DIR)/coul_long.cubin > $(OBJ_DIR)/coul_long_cubin.h + +$(OBJ_DIR)/lal_coul_long.o: $(ALL_H) lal_coul_long.h lal_coul_long.cpp $(OBJ_DIR)/coul_long_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_coul_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_coul_long_ext.o: $(ALL_H) lal_coul_long.h lal_coul_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_coul_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_coul_long.cubin: lal_lj_coul_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_coul_long.cu + +$(OBJ_DIR)/lj_coul_long_cubin.h: $(OBJ_DIR)/lj_coul_long.cubin $(OBJ_DIR)/lj_coul_long.cubin + $(BIN2C) -c -n lj_coul_long $(OBJ_DIR)/lj_coul_long.cubin > $(OBJ_DIR)/lj_coul_long_cubin.h + +$(OBJ_DIR)/lal_lj_coul_long.o: $(ALL_H) lal_lj_coul_long.h lal_lj_coul_long.cpp $(OBJ_DIR)/lj_coul_long_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_lj_coul_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_coul_long_ext.o: $(ALL_H) lal_lj_coul_long.h lal_lj_coul_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_coul_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_dsf.cubin: lal_lj_dsf.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_dsf.cu + +$(OBJ_DIR)/lj_dsf_cubin.h: $(OBJ_DIR)/lj_dsf.cubin $(OBJ_DIR)/lj_dsf.cubin + $(BIN2C) -c -n lj_dsf $(OBJ_DIR)/lj_dsf.cubin > $(OBJ_DIR)/lj_dsf_cubin.h + +$(OBJ_DIR)/lal_lj_dsf.o: $(ALL_H) lal_lj_dsf.h lal_lj_dsf.cpp $(OBJ_DIR)/lj_dsf_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_lj_dsf.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_dsf_ext.o: $(ALL_H) lal_lj_dsf.h lal_lj_dsf_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_dsf_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/morse.cubin: lal_morse.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_morse.cu + +$(OBJ_DIR)/morse_cubin.h: $(OBJ_DIR)/morse.cubin $(OBJ_DIR)/morse.cubin + $(BIN2C) -c -n morse $(OBJ_DIR)/morse.cubin > $(OBJ_DIR)/morse_cubin.h + +$(OBJ_DIR)/lal_morse.o: $(ALL_H) lal_morse.h lal_morse.cpp $(OBJ_DIR)/morse_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_morse.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_morse_ext.o: $(ALL_H) lal_morse.h lal_morse_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_morse_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/charmm_long.cubin: lal_charmm_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_charmm_long.cu + +$(OBJ_DIR)/charmm_long_cubin.h: $(OBJ_DIR)/charmm_long.cubin $(OBJ_DIR)/charmm_long.cubin + $(BIN2C) -c -n charmm_long $(OBJ_DIR)/charmm_long.cubin > $(OBJ_DIR)/charmm_long_cubin.h + +$(OBJ_DIR)/lal_charmm_long.o: $(ALL_H) lal_charmm_long.h lal_charmm_long.cpp $(OBJ_DIR)/charmm_long_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_charmm_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_charmm_long_ext.o: $(ALL_H) lal_charmm_long.h lal_charmm_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_charmm_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj96.cubin: lal_lj96.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj96.cu + +$(OBJ_DIR)/lj96_cubin.h: $(OBJ_DIR)/lj96.cubin $(OBJ_DIR)/lj96.cubin + $(BIN2C) -c -n lj96 $(OBJ_DIR)/lj96.cubin > $(OBJ_DIR)/lj96_cubin.h + +$(OBJ_DIR)/lal_lj96.o: $(ALL_H) lal_lj96.h lal_lj96.cpp $(OBJ_DIR)/lj96_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_lj96.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj96_ext.o: $(ALL_H) lal_lj96.h lal_lj96_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_lj96_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_expand.cubin: lal_lj_expand.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_expand.cu + +$(OBJ_DIR)/lj_expand_cubin.h: $(OBJ_DIR)/lj_expand.cubin $(OBJ_DIR)/lj_expand.cubin + $(BIN2C) -c -n lj_expand $(OBJ_DIR)/lj_expand.cubin > $(OBJ_DIR)/lj_expand_cubin.h + +$(OBJ_DIR)/lal_lj_expand.o: $(ALL_H) lal_lj_expand.h lal_lj_expand.cpp $(OBJ_DIR)/lj_expand_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_lj_expand.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_expand_ext.o: $(ALL_H) lal_lj_expand.h lal_lj_expand_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_lj_expand_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_sdk.cubin: lal_lj_sdk.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_sdk.cu + +$(OBJ_DIR)/lj_sdk_cubin.h: $(OBJ_DIR)/lj_sdk.cubin $(OBJ_DIR)/lj_sdk.cubin + $(BIN2C) -c -n lj_sdk $(OBJ_DIR)/lj_sdk.cubin > $(OBJ_DIR)/lj_sdk_cubin.h + +$(OBJ_DIR)/lal_lj_sdk.o: $(ALL_H) lal_lj_sdk.h lal_lj_sdk.cpp $(OBJ_DIR)/lj_sdk_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_lj_sdk.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_sdk_ext.o: $(ALL_H) lal_lj_sdk.h lal_lj_sdk_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_lj_sdk_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_sdk_long.cubin: lal_lj_sdk_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_sdk_long.cu + +$(OBJ_DIR)/lj_sdk_long_cubin.h: $(OBJ_DIR)/lj_sdk_long.cubin $(OBJ_DIR)/lj_sdk_long.cubin + $(BIN2C) -c -n lj_sdk_long $(OBJ_DIR)/lj_sdk_long.cubin > $(OBJ_DIR)/lj_sdk_long_cubin.h + +$(OBJ_DIR)/lal_lj_sdk_long.o: $(ALL_H) lal_lj_sdk_long.h lal_lj_sdk_long.cpp $(OBJ_DIR)/lj_sdk_long_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_lj_sdk_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_sdk_long_ext.o: $(ALL_H) lal_lj_sdk_long.h lal_lj_sdk_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_sdk_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/eam.cubin: lal_eam.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_eam.cu + +$(OBJ_DIR)/eam_cubin.h: $(OBJ_DIR)/eam.cubin $(OBJ_DIR)/eam.cubin + $(BIN2C) -c -n eam $(OBJ_DIR)/eam.cubin > $(OBJ_DIR)/eam_cubin.h + +$(OBJ_DIR)/lal_eam.o: $(ALL_H) lal_eam.h lal_eam.cpp $(OBJ_DIR)/eam_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_eam.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_eam_ext.o: $(ALL_H) lal_eam.h lal_eam_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_eam_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_eam_fs_ext.o: $(ALL_H) lal_eam.h lal_eam_fs_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_eam_fs_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_eam_alloy_ext.o: $(ALL_H) lal_eam.h lal_eam_alloy_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_eam_alloy_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/buck.cubin: lal_buck.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_buck.cu + +$(OBJ_DIR)/buck_cubin.h: $(OBJ_DIR)/buck.cubin $(OBJ_DIR)/buck.cubin + $(BIN2C) -c -n buck $(OBJ_DIR)/buck.cubin > $(OBJ_DIR)/buck_cubin.h + +$(OBJ_DIR)/lal_buck.o: $(ALL_H) lal_buck.h lal_buck.cpp $(OBJ_DIR)/buck_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_buck.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_buck_ext.o: $(ALL_H) lal_buck.h lal_buck_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_buck_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/buck_coul.cubin: lal_buck_coul.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_buck_coul.cu + +$(OBJ_DIR)/buck_coul_cubin.h: $(OBJ_DIR)/buck_coul.cubin $(OBJ_DIR)/buck_coul.cubin + $(BIN2C) -c -n buck_coul $(OBJ_DIR)/buck_coul.cubin > $(OBJ_DIR)/buck_coul_cubin.h + +$(OBJ_DIR)/lal_buck_coul.o: $(ALL_H) lal_buck_coul.h lal_buck_coul.cpp $(OBJ_DIR)/buck_coul_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_buck_coul.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_buck_coul_ext.o: $(ALL_H) lal_buck_coul.h lal_buck_coul_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_buck_coul_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/buck_coul_long.cubin: lal_buck_coul_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_buck_coul_long.cu + +$(OBJ_DIR)/buck_coul_long_cubin.h: $(OBJ_DIR)/buck_coul_long.cubin $(OBJ_DIR)/buck_coul_long.cubin + $(BIN2C) -c -n buck_coul_long $(OBJ_DIR)/buck_coul_long.cubin > $(OBJ_DIR)/buck_coul_long_cubin.h + +$(OBJ_DIR)/lal_buck_coul_long.o: $(ALL_H) lal_buck_coul_long.h lal_buck_coul_long.cpp $(OBJ_DIR)/buck_coul_long_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_buck_coul_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_buck_coul_long_ext.o: $(ALL_H) lal_buck_coul_long.h lal_buck_coul_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_buck_coul_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/table.cubin: lal_table.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_table.cu + +$(OBJ_DIR)/table_cubin.h: $(OBJ_DIR)/table.cubin $(OBJ_DIR)/table.cubin + $(BIN2C) -c -n table $(OBJ_DIR)/table.cubin > $(OBJ_DIR)/table_cubin.h + +$(OBJ_DIR)/lal_table.o: $(ALL_H) lal_table.h lal_table.cpp $(OBJ_DIR)/table_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_table.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_table_ext.o: $(ALL_H) lal_table.h lal_table_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_table_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/yukawa.cubin: lal_yukawa.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_yukawa.cu + +$(OBJ_DIR)/yukawa_cubin.h: $(OBJ_DIR)/yukawa.cubin $(OBJ_DIR)/yukawa.cubin + $(BIN2C) -c -n yukawa $(OBJ_DIR)/yukawa.cubin > $(OBJ_DIR)/yukawa_cubin.h + +$(OBJ_DIR)/lal_yukawa.o: $(ALL_H) lal_yukawa.h lal_yukawa.cpp $(OBJ_DIR)/yukawa_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_yukawa.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_yukawa_ext.o: $(ALL_H) lal_yukawa.h lal_yukawa_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_yukawa_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born.cubin: lal_born.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_born.cu + +$(OBJ_DIR)/born_cubin.h: $(OBJ_DIR)/born.cubin $(OBJ_DIR)/born.cubin + $(BIN2C) -c -n born $(OBJ_DIR)/born.cubin > $(OBJ_DIR)/born_cubin.h + +$(OBJ_DIR)/lal_born.o: $(ALL_H) lal_born.h lal_born.cpp $(OBJ_DIR)/born_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_born.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_ext.o: $(ALL_H) lal_born.h lal_born_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_born_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born_coul_wolf.cubin: lal_born_coul_wolf.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_born_coul_wolf.cu + +$(OBJ_DIR)/born_coul_wolf_cubin.h: $(OBJ_DIR)/born_coul_wolf.cubin $(OBJ_DIR)/born_coul_wolf.cubin + $(BIN2C) -c -n born_coul_wolf $(OBJ_DIR)/born_coul_wolf.cubin > $(OBJ_DIR)/born_coul_wolf_cubin.h + +$(OBJ_DIR)/lal_born_coul_wolf.o: $(ALL_H) lal_born_coul_wolf.h lal_born_coul_wolf.cpp $(OBJ_DIR)/born_coul_wolf_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_born_coul_wolf.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_coul_wolf_ext.o: $(ALL_H) lal_born_coul_wolf.h lal_born_coul_wolf_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_born_coul_wolf_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born_coul_long.cubin: lal_born_coul_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_born_coul_long.cu + +$(OBJ_DIR)/born_coul_long_cubin.h: $(OBJ_DIR)/born_coul_long.cubin $(OBJ_DIR)/born_coul_long.cubin + $(BIN2C) -c -n born_coul_long $(OBJ_DIR)/born_coul_long.cubin > $(OBJ_DIR)/born_coul_long_cubin.h + +$(OBJ_DIR)/lal_born_coul_long.o: $(ALL_H) lal_born_coul_long.h lal_born_coul_long.cpp $(OBJ_DIR)/born_coul_long_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_born_coul_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_coul_long_ext.o: $(ALL_H) lal_born_coul_long.h lal_born_coul_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_born_coul_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/dipole_lj.cubin: lal_dipole_lj.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_dipole_lj.cu + +$(OBJ_DIR)/dipole_lj_cubin.h: $(OBJ_DIR)/dipole_lj.cubin $(OBJ_DIR)/dipole_lj.cubin + $(BIN2C) -c -n dipole_lj $(OBJ_DIR)/dipole_lj.cubin > $(OBJ_DIR)/dipole_lj_cubin.h + +$(OBJ_DIR)/lal_dipole_lj.o: $(ALL_H) lal_dipole_lj.h lal_dipole_lj.cpp $(OBJ_DIR)/dipole_lj_cubin.h $(OBJ_DIR)/lal_base_dipole.o + $(CUDR) -o $@ -c lal_dipole_lj.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_dipole_lj_ext.o: $(ALL_H) lal_dipole_lj.h lal_dipole_lj_ext.cpp lal_base_dipole.h + $(CUDR) -o $@ -c lal_dipole_lj_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/dipole_lj_sf.cubin: lal_dipole_lj_sf.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_dipole_lj_sf.cu + +$(OBJ_DIR)/dipole_lj_sf_cubin.h: $(OBJ_DIR)/dipole_lj_sf.cubin $(OBJ_DIR)/dipole_lj_sf.cubin + $(BIN2C) -c -n dipole_lj_sf $(OBJ_DIR)/dipole_lj_sf.cubin > $(OBJ_DIR)/dipole_lj_sf_cubin.h + +$(OBJ_DIR)/lal_dipole_lj_sf.o: $(ALL_H) lal_dipole_lj_sf.h lal_dipole_lj_sf.cpp $(OBJ_DIR)/dipole_lj_sf_cubin.h $(OBJ_DIR)/lal_base_dipole.o + $(CUDR) -o $@ -c lal_dipole_lj_sf.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_dipole_lj_sf_ext.o: $(ALL_H) lal_dipole_lj_sf.h lal_dipole_lj_sf_ext.cpp lal_base_dipole.h + $(CUDR) -o $@ -c lal_dipole_lj_sf_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/colloid.cubin: lal_colloid.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_colloid.cu + +$(OBJ_DIR)/colloid_cubin.h: $(OBJ_DIR)/colloid.cubin $(OBJ_DIR)/colloid.cubin + $(BIN2C) -c -n colloid $(OBJ_DIR)/colloid.cubin > $(OBJ_DIR)/colloid_cubin.h + +$(OBJ_DIR)/lal_colloid.o: $(ALL_H) lal_colloid.h lal_colloid.cpp $(OBJ_DIR)/colloid_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_colloid.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_colloid_ext.o: $(ALL_H) lal_colloid.h lal_colloid_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_colloid_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/gauss.cubin: lal_gauss.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_gauss.cu + +$(OBJ_DIR)/gauss_cubin.h: $(OBJ_DIR)/gauss.cubin $(OBJ_DIR)/gauss.cubin + $(BIN2C) -c -n gauss $(OBJ_DIR)/gauss.cubin > $(OBJ_DIR)/gauss_cubin.h + +$(OBJ_DIR)/lal_gauss.o: $(ALL_H) lal_gauss.h lal_gauss.cpp $(OBJ_DIR)/gauss_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_gauss.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_gauss_ext.o: $(ALL_H) lal_gauss.h lal_gauss_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_gauss_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/yukawa_colloid.cubin: lal_yukawa_colloid.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_yukawa_colloid.cu + +$(OBJ_DIR)/yukawa_colloid_cubin.h: $(OBJ_DIR)/yukawa_colloid.cubin $(OBJ_DIR)/yukawa_colloid.cubin + $(BIN2C) -c -n yukawa_colloid $(OBJ_DIR)/yukawa_colloid.cubin > $(OBJ_DIR)/yukawa_colloid_cubin.h + +$(OBJ_DIR)/lal_yukawa_colloid.o: $(ALL_H) lal_yukawa_colloid.h lal_yukawa_colloid.cpp $(OBJ_DIR)/yukawa_colloid_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_yukawa_colloid.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_yukawa_colloid_ext.o: $(ALL_H) lal_yukawa_colloid.h lal_yukawa_colloid_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_yukawa_colloid_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_coul_debye.cubin: lal_lj_coul_debye.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_coul_debye.cu + +$(OBJ_DIR)/lj_coul_debye_cubin.h: $(OBJ_DIR)/lj_coul_debye.cubin $(OBJ_DIR)/lj_coul_debye.cubin + $(BIN2C) -c -n lj_coul_debye $(OBJ_DIR)/lj_coul_debye.cubin > $(OBJ_DIR)/lj_coul_debye_cubin.h + +$(OBJ_DIR)/lal_lj_coul_debye.o: $(ALL_H) lal_lj_coul_debye.h lal_lj_coul_debye.cpp $(OBJ_DIR)/lj_coul_debye_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_lj_coul_debye.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_coul_debye_ext.o: $(ALL_H) lal_lj_coul_debye.h lal_lj_coul_debye_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_coul_debye_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/coul_dsf.cubin: lal_coul_dsf.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_coul_dsf.cu + +$(OBJ_DIR)/coul_dsf_cubin.h: $(OBJ_DIR)/coul_dsf.cubin $(OBJ_DIR)/coul_dsf.cubin + $(BIN2C) -c -n coul_dsf $(OBJ_DIR)/coul_dsf.cubin > $(OBJ_DIR)/coul_dsf_cubin.h + +$(OBJ_DIR)/lal_coul_dsf.o: $(ALL_H) lal_coul_dsf.h lal_coul_dsf.cpp $(OBJ_DIR)/coul_dsf_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_coul_dsf.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_coul_dsf_ext.o: $(ALL_H) lal_coul_dsf.h lal_coul_dsf_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_coul_dsf_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/vashishta.cubin: lal_vashishta.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_vashishta.cu + +$(OBJ_DIR)/vashishta_cubin.h: $(OBJ_DIR)/vashishta.cubin $(OBJ_DIR)/vashishta.cubin + $(BIN2C) -c -n vashishta $(OBJ_DIR)/vashishta.cubin > $(OBJ_DIR)/vashishta_cubin.h + +$(OBJ_DIR)/lal_vashishta.o: $(ALL_H) lal_vashishta.h lal_vashishta.cpp $(OBJ_DIR)/vashishta_cubin.h $(OBJ_DIR)/lal_base_three.o + $(CUDR) -o $@ -c lal_vashishta.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_vashishta_ext.o: $(ALL_H) lal_vashishta.h lal_vashishta_ext.cpp lal_base_three.h + $(CUDR) -o $@ -c lal_vashishta_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/sw.cubin: lal_sw.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_sw.cu + +$(OBJ_DIR)/sw_cubin.h: $(OBJ_DIR)/sw.cubin $(OBJ_DIR)/sw.cubin + $(BIN2C) -c -n sw $(OBJ_DIR)/sw.cubin > $(OBJ_DIR)/sw_cubin.h + +$(OBJ_DIR)/lal_sw.o: $(ALL_H) lal_sw.h lal_sw.cpp $(OBJ_DIR)/sw_cubin.h $(OBJ_DIR)/lal_base_three.o + $(CUDR) -o $@ -c lal_sw.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_sw_ext.o: $(ALL_H) lal_sw.h lal_sw_ext.cpp lal_base_three.h + $(CUDR) -o $@ -c lal_sw_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/beck.cubin: lal_beck.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_beck.cu + +$(OBJ_DIR)/beck_cubin.h: $(OBJ_DIR)/beck.cubin $(OBJ_DIR)/beck.cubin + $(BIN2C) -c -n beck $(OBJ_DIR)/beck.cubin > $(OBJ_DIR)/beck_cubin.h + +$(OBJ_DIR)/lal_beck.o: $(ALL_H) lal_beck.h lal_beck.cpp $(OBJ_DIR)/beck_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_beck.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_beck_ext.o: $(ALL_H) lal_beck.h lal_beck_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_beck_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/mie.cubin: lal_mie.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_mie.cu + +$(OBJ_DIR)/mie_cubin.h: $(OBJ_DIR)/mie.cubin $(OBJ_DIR)/mie.cubin + $(BIN2C) -c -n mie $(OBJ_DIR)/mie.cubin > $(OBJ_DIR)/mie_cubin.h + +$(OBJ_DIR)/lal_mie.o: $(ALL_H) lal_mie.h lal_mie.cpp $(OBJ_DIR)/mie_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_mie.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_mie_ext.o: $(ALL_H) lal_mie.h lal_mie_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_mie_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/soft.cubin: lal_soft.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_soft.cu + +$(OBJ_DIR)/soft_cubin.h: $(OBJ_DIR)/soft.cubin $(OBJ_DIR)/soft.cubin + $(BIN2C) -c -n soft $(OBJ_DIR)/soft.cubin > $(OBJ_DIR)/soft_cubin.h + +$(OBJ_DIR)/lal_soft.o: $(ALL_H) lal_soft.h lal_soft.cpp $(OBJ_DIR)/soft_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_soft.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_soft_ext.o: $(ALL_H) lal_soft.h lal_soft_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_soft_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_coul_msm.cubin: lal_lj_coul_msm.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_coul_msm.cu + +$(OBJ_DIR)/lj_coul_msm_cubin.h: $(OBJ_DIR)/lj_coul_msm.cubin $(OBJ_DIR)/lj_coul_msm.cubin + $(BIN2C) -c -n lj_coul_msm $(OBJ_DIR)/lj_coul_msm.cubin > $(OBJ_DIR)/lj_coul_msm_cubin.h + +$(OBJ_DIR)/lal_lj_coul_msm.o: $(ALL_H) lal_lj_coul_msm.h lal_lj_coul_msm.cpp $(OBJ_DIR)/lj_coul_msm_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_lj_coul_msm.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_coul_msm_ext.o: $(ALL_H) lal_lj_coul_msm.h lal_lj_coul_msm_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_coul_msm_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_gromacs.cubin: lal_lj_gromacs.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_gromacs.cu + +$(OBJ_DIR)/lj_gromacs_cubin.h: $(OBJ_DIR)/lj_gromacs.cubin $(OBJ_DIR)/lj_gromacs.cubin + $(BIN2C) -c -n lj_gromacs $(OBJ_DIR)/lj_gromacs.cubin > $(OBJ_DIR)/lj_gromacs_cubin.h + +$(OBJ_DIR)/lal_lj_gromacs.o: $(ALL_H) lal_lj_gromacs.h lal_lj_gromacs.cpp $(OBJ_DIR)/lj_gromacs_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_lj_gromacs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_gromacs_ext.o: $(ALL_H) lal_lj_gromacs.h lal_lj_gromacs_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_lj_gromacs_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/dpd.cubin: lal_dpd.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_dpd.cu + +$(OBJ_DIR)/dpd_cubin.h: $(OBJ_DIR)/dpd.cubin $(OBJ_DIR)/dpd.cubin + $(BIN2C) -c -n dpd $(OBJ_DIR)/dpd.cubin > $(OBJ_DIR)/dpd_cubin.h + +$(OBJ_DIR)/ufm.cubin: lal_ufm.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_ufm.cu + +$(OBJ_DIR)/ufm_cubin.h: $(OBJ_DIR)/ufm.cubin $(OBJ_DIR)/ufm.cubin + $(BIN2C) -c -n ufm $(OBJ_DIR)/ufm.cubin > $(OBJ_DIR)/ufm_cubin.h + +$(OBJ_DIR)/lal_ufm.o: $(ALL_H) lal_ufm.h lal_ufm.cpp $(OBJ_DIR)/ufm_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_ufm.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_ufm_ext.o: $(ALL_H) lal_ufm.h lal_ufm_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_ufm_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_dpd.o: $(ALL_H) lal_dpd.h lal_dpd.cpp $(OBJ_DIR)/dpd_cubin.h $(OBJ_DIR)/lal_base_dpd.o + $(CUDR) -o $@ -c lal_dpd.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_dpd_ext.o: $(ALL_H) lal_dpd.h lal_dpd_ext.cpp lal_base_dpd.h + $(CUDR) -o $@ -c lal_dpd_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/tersoff.cubin: lal_tersoff.cu lal_precision.h lal_tersoff_extra.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_tersoff.cu + +$(OBJ_DIR)/tersoff_cubin.h: $(OBJ_DIR)/tersoff.cubin $(OBJ_DIR)/tersoff.cubin + $(BIN2C) -c -n tersoff $(OBJ_DIR)/tersoff.cubin > $(OBJ_DIR)/tersoff_cubin.h + +$(OBJ_DIR)/lal_tersoff.o: $(ALL_H) lal_tersoff.h lal_tersoff.cpp $(OBJ_DIR)/tersoff_cubin.h $(OBJ_DIR)/lal_base_three.o + $(CUDR) -o $@ -c lal_tersoff.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_tersoff_ext.o: $(ALL_H) lal_tersoff.h lal_tersoff_ext.cpp lal_base_three.h + $(CUDR) -o $@ -c lal_tersoff_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/tersoff_zbl.cubin: lal_tersoff_zbl.cu lal_precision.h lal_tersoff_zbl_extra.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_tersoff_zbl.cu + +$(OBJ_DIR)/tersoff_zbl_cubin.h: $(OBJ_DIR)/tersoff_zbl.cubin $(OBJ_DIR)/tersoff_zbl.cubin + $(BIN2C) -c -n tersoff_zbl $(OBJ_DIR)/tersoff_zbl.cubin > $(OBJ_DIR)/tersoff_zbl_cubin.h + +$(OBJ_DIR)/lal_tersoff_zbl.o: $(ALL_H) lal_tersoff_zbl.h lal_tersoff_zbl.cpp $(OBJ_DIR)/tersoff_zbl_cubin.h $(OBJ_DIR)/lal_base_three.o + $(CUDR) -o $@ -c lal_tersoff_zbl.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_tersoff_zbl_ext.o: $(ALL_H) lal_tersoff_zbl.h lal_tersoff_zbl_ext.cpp lal_base_three.h + $(CUDR) -o $@ -c lal_tersoff_zbl_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/tersoff_mod.cubin: lal_tersoff_mod.cu lal_precision.h lal_tersoff_mod_extra.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_tersoff_mod.cu + +$(OBJ_DIR)/tersoff_mod_cubin.h: $(OBJ_DIR)/tersoff_mod.cubin $(OBJ_DIR)/tersoff_mod.cubin + $(BIN2C) -c -n tersoff_mod $(OBJ_DIR)/tersoff_mod.cubin > $(OBJ_DIR)/tersoff_mod_cubin.h + +$(OBJ_DIR)/lal_tersoff_mod.o: $(ALL_H) lal_tersoff_mod.h lal_tersoff_mod.cpp $(OBJ_DIR)/tersoff_mod_cubin.h $(OBJ_DIR)/lal_base_three.o + $(CUDR) -o $@ -c lal_tersoff_mod.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_tersoff_mod_ext.o: $(ALL_H) lal_tersoff_mod.h lal_tersoff_mod_ext.cpp lal_base_three.h + $(CUDR) -o $@ -c lal_tersoff_mod_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/coul.cubin: lal_coul.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_coul.cu + +$(OBJ_DIR)/coul_cubin.h: $(OBJ_DIR)/coul.cubin $(OBJ_DIR)/coul.cubin + $(BIN2C) -c -n coul $(OBJ_DIR)/coul.cubin > $(OBJ_DIR)/coul_cubin.h + +$(OBJ_DIR)/lal_coul.o: $(ALL_H) lal_coul.h lal_coul.cpp $(OBJ_DIR)/coul_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_coul.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_coul_ext.o: $(ALL_H) lal_coul.h lal_coul_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_coul_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/coul_debye.cubin: lal_coul_debye.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_coul_debye.cu + +$(OBJ_DIR)/coul_debye_cubin.h: $(OBJ_DIR)/coul_debye.cubin $(OBJ_DIR)/coul_debye.cubin + $(BIN2C) -c -n coul_debye $(OBJ_DIR)/coul_debye.cubin > $(OBJ_DIR)/coul_debye_cubin.h + +$(OBJ_DIR)/lal_coul_debye.o: $(ALL_H) lal_coul_debye.h lal_coul_debye.cpp $(OBJ_DIR)/coul_debye_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_coul_debye.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_coul_debye_ext.o: $(ALL_H) lal_coul_debye.h lal_coul_debye_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_coul_debye_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/zbl.cubin: lal_zbl.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_zbl.cu + +$(OBJ_DIR)/zbl_cubin.h: $(OBJ_DIR)/zbl.cubin $(OBJ_DIR)/zbl.cubin + $(BIN2C) -c -n zbl $(OBJ_DIR)/zbl.cubin > $(OBJ_DIR)/zbl_cubin.h + +$(OBJ_DIR)/lal_zbl.o: $(ALL_H) lal_zbl.h lal_zbl.cpp $(OBJ_DIR)/zbl_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_zbl.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_zbl_ext.o: $(ALL_H) lal_zbl.h lal_zbl_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_zbl_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_cubic.cubin: lal_lj_cubic.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_cubic.cu + +$(OBJ_DIR)/lj_cubic_cubin.h: $(OBJ_DIR)/lj_cubic.cubin $(OBJ_DIR)/lj_cubic.cubin + $(BIN2C) -c -n lj_cubic $(OBJ_DIR)/lj_cubic.cubin > $(OBJ_DIR)/lj_cubic_cubin.h + +$(OBJ_DIR)/lal_lj_cubic.o: $(ALL_H) lal_lj_cubic.h lal_lj_cubic.cpp $(OBJ_DIR)/lj_cubic_cubin.h $(OBJ_DIR)/lal_base_atomic.o + $(CUDR) -o $@ -c lal_lj_cubic.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_cubic_ext.o: $(ALL_H) lal_lj_cubic.h lal_lj_cubic_ext.cpp lal_base_atomic.h + $(CUDR) -o $@ -c lal_lj_cubic_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/dipole_long_lj.cubin: lal_dipole_long_lj.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_dipole_long_lj.cu + +$(OBJ_DIR)/dipole_long_lj_cubin.h: $(OBJ_DIR)/dipole_long_lj.cubin $(OBJ_DIR)/dipole_long_lj.cubin + $(BIN2C) -c -n dipole_long_lj $(OBJ_DIR)/dipole_long_lj.cubin > $(OBJ_DIR)/dipole_long_lj_cubin.h + +$(OBJ_DIR)/lal_dipole_long_lj.o: $(ALL_H) lal_dipole_long_lj.h lal_dipole_long_lj.cpp $(OBJ_DIR)/dipole_long_lj_cubin.h $(OBJ_DIR)/lal_base_dipole.o + $(CUDR) -o $@ -c lal_dipole_long_lj.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_dipole_long_lj_ext.o: $(ALL_H) lal_dipole_long_lj.h lal_dipole_long_lj_ext.cpp lal_base_dipole.h + $(CUDR) -o $@ -c lal_dipole_long_lj_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_expand_coul_long.cubin: lal_lj_expand_coul_long.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_lj_expand_coul_long.cu + +$(OBJ_DIR)/lj_expand_coul_long_cubin.h: $(OBJ_DIR)/lj_expand_coul_long.cubin $(OBJ_DIR)/lj_expand_coul_long.cubin + $(BIN2C) -c -n lj_expand_coul_long $(OBJ_DIR)/lj_expand_coul_long.cubin > $(OBJ_DIR)/lj_expand_coul_long_cubin.h + +$(OBJ_DIR)/lal_lj_expand_coul_long.o: $(ALL_H) lal_lj_expand_coul_long.h lal_lj_expand_coul_long.cpp $(OBJ_DIR)/lj_expand_coul_long_cubin.h $(OBJ_DIR)/lal_base_charge.o + $(CUDR) -o $@ -c lal_lj_expand_coul_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_expand_coul_long_ext.o: $(ALL_H) lal_lj_expand_coul_long.h lal_lj_expand_coul_long_ext.cpp lal_base_charge.h + $(CUDR) -o $@ -c lal_lj_expand_coul_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/coul_long_cs.cubin: lal_coul_long_cs.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_coul_long_cs.cu + +$(OBJ_DIR)/coul_long_cs_cubin.h: $(OBJ_DIR)/coul_long_cs.cubin $(OBJ_DIR)/coul_long_cs.cubin + $(BIN2C) -c -n coul_long_cs $(OBJ_DIR)/coul_long_cs.cubin > $(OBJ_DIR)/coul_long_cs_cubin.h + +$(OBJ_DIR)/lal_coul_long_cs.o: $(ALL_H) lal_coul_long_cs.h lal_coul_long_cs.cpp $(OBJ_DIR)/coul_long_cs_cubin.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_coul_long.o + $(CUDR) -o $@ -c lal_coul_long_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_coul_long_cs_ext.o: $(ALL_H) lal_coul_long_cs.h lal_coul_long_cs_ext.cpp lal_coul_long.h + $(CUDR) -o $@ -c lal_coul_long_cs_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born_coul_long_cs.cubin: lal_born_coul_long_cs.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_born_coul_long_cs.cu + +$(OBJ_DIR)/born_coul_long_cs_cubin.h: $(OBJ_DIR)/born_coul_long_cs.cubin $(OBJ_DIR)/born_coul_long_cs.cubin + $(BIN2C) -c -n born_coul_long_cs $(OBJ_DIR)/born_coul_long_cs.cubin > $(OBJ_DIR)/born_coul_long_cs_cubin.h + +$(OBJ_DIR)/lal_born_coul_long_cs.o: $(ALL_H) lal_born_coul_long_cs.h lal_born_coul_long_cs.cpp $(OBJ_DIR)/born_coul_long_cs_cubin.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_born_coul_long.o + $(CUDR) -o $@ -c lal_born_coul_long_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_coul_long_cs_ext.o: $(ALL_H) lal_born_coul_long_cs.h lal_born_coul_long_cs_ext.cpp lal_born_coul_long.h + $(CUDR) -o $@ -c lal_born_coul_long_cs_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born_coul_wolf_cs.cubin: lal_born_coul_wolf_cs.cu lal_precision.h lal_preprocessor.h + $(CUDA) --fatbin -DNV_KERNEL -o $@ lal_born_coul_wolf_cs.cu + +$(OBJ_DIR)/born_coul_wolf_cs_cubin.h: $(OBJ_DIR)/born_coul_wolf_cs.cubin $(OBJ_DIR)/born_coul_wolf_cs.cubin + $(BIN2C) -c -n born_coul_wolf_cs $(OBJ_DIR)/born_coul_wolf_cs.cubin > $(OBJ_DIR)/born_coul_wolf_cs_cubin.h + +$(OBJ_DIR)/lal_born_coul_wolf_cs.o: $(ALL_H) lal_born_coul_wolf_cs.h lal_born_coul_wolf_cs.cpp $(OBJ_DIR)/born_coul_wolf_cs_cubin.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_born_coul_wolf.o + $(CUDR) -o $@ -c lal_born_coul_wolf_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_coul_wolf_cs_ext.o: $(ALL_H) lal_born_coul_wolf_cs.h lal_born_coul_wolf_cs_ext.cpp lal_born_coul_wolf.h + $(CUDR) -o $@ -c lal_born_coul_wolf_cs_ext.cpp -I$(OBJ_DIR) + +$(BIN_DIR)/nvc_get_devices: ./geryon/ucl_get_devices.cpp $(NVD_H) + $(CUDR) -o $@ ./geryon/ucl_get_devices.cpp -DUCL_CUDADR $(CUDA_LIB) -lcuda + +$(GPU_LIB): $(OBJS) $(CUDPP) + $(AR) -crusv $(GPU_LIB) $(OBJS) $(CUDPP) + @cp $(EXTRAMAKE) Makefile.lammps + +clean: + -rm -f $(EXECS) $(GPU_LIB) $(OBJS) $(CUDPP) $(CBNS) *.linkinfo + +veryclean: clean + -rm -rf *~ *.linkinfo + +cleanlib: + -rm -f $(EXECS) $(GPU_LIB) $(OBJS) $(CBNS) *.linkinfo diff --git a/lib/gpu/Opencl.makefile b/lib/gpu/Opencl.makefile index bb071514474655a9fb36a73fab05635fa9ffdd99..86991a1e98f09ef30217e0c003239b9fcff8f11c 100644 --- a/lib/gpu/Opencl.makefile +++ b/lib/gpu/Opencl.makefile @@ -66,7 +66,12 @@ OBJS = $(OBJ_DIR)/lal_atom.o $(OBJ_DIR)/lal_answer.o \ $(OBJ_DIR)/lal_coul_debye.o $(OBJ_DIR)/lal_coul_debye_ext.o \ $(OBJ_DIR)/lal_zbl.o $(OBJ_DIR)/lal_zbl_ext.o \ $(OBJ_DIR)/lal_lj_cubic.o $(OBJ_DIR)/lal_lj_cubic_ext.o \ - $(OBJ_DIR)/lal_ufm.o $(OBJ_DIR)/lal_ufm_ext.o + $(OBJ_DIR)/lal_ufm.o $(OBJ_DIR)/lal_ufm_ext.o \ + $(OBJ_DIR)/lal_dipole_long_lj.o $(OBJ_DIR)/lal_dipole_long_lj_ext.o \ + $(OBJ_DIR)/lal_lj_expand_coul_long.o $(OBJ_DIR)/lal_lj_expand_coul_long_ext.o \ + $(OBJ_DIR)/lal_coul_long_cs.o $(OBJ_DIR)/lal_coul_long_cs_ext.o \ + $(OBJ_DIR)/lal_born_coul_long_cs.o $(OBJ_DIR)/lal_born_coul_long_cs_ext.o \ + $(OBJ_DIR)/lal_born_coul_wolf_cs.o $(OBJ_DIR)/lal_born_coul_wolf_cs_ext.o KERS = $(OBJ_DIR)/device_cl.h $(OBJ_DIR)/atom_cl.h \ $(OBJ_DIR)/neighbor_cpu_cl.h $(OBJ_DIR)/pppm_cl.h \ @@ -95,7 +100,9 @@ KERS = $(OBJ_DIR)/device_cl.h $(OBJ_DIR)/atom_cl.h \ $(OBJ_DIR)/tersoff_mod_cl.h $(OBJ_DIR)/coul_cl.h \ $(OBJ_DIR)/coul_debye_cl.h $(OBJ_DIR)/zbl_cl.h \ $(OBJ_DIR)/lj_cubic_cl.h $(OBJ_DIR)/vashishta_cl.h \ - $(OBJ_DIR)/ufm_cl.h + $(OBJ_DIR)/ufm_cl.h $(OBJ_DIR)/dipole_long_lj_cl.h \ + $(OBJ_DIR)/lj_expand_coul_long_cl.h $(OBJ_DIR)/coul_long_cs_cl.h \ + $(OBJ_DIR)/born_coul_long_cs_cl.h $(OBJ_DIR)/born_coul_wolf_cs_cl.h OCL_EXECS = $(BIN_DIR)/ocl_get_devices @@ -588,7 +595,52 @@ $(OBJ_DIR)/lal_ufm.o: $(ALL_H) lal_ufm.h lal_ufm.cpp $(OBJ_DIR)/ufm_cl.h $(OBJ_ $(OBJ_DIR)/lal_ufm_ext.o: $(ALL_H) lal_ufm.h lal_ufm_ext.cpp lal_base_atomic.h $(OCL) -o $@ -c lal_ufm_ext.cpp -I$(OBJ_DIR) -$(BIN_DIR)/ocl_get_devices: ./geryon/ucl_get_devices.cpp +$(OBJ_DIR)/dipole_long_lj_cl.h: lal_dipole_long_lj.cu $(PRE1_H) + $(BSH) ./geryon/file_to_cstr.sh dipole_long_lj $(PRE1_H) lal_dipole_long_lj.cu $(OBJ_DIR)/dipole_long_lj_cl.h; + +$(OBJ_DIR)/lal_dipole_long_lj.o: $(ALL_H) lal_dipole_long_lj.h lal_dipole_long_lj.cpp $(OBJ_DIR)/dipole_long_lj_cl.h $(OBJ_DIR)/lj_expand_coul_long_cl.h $(OBJ_DIR)/lal_base_charge.o + $(OCL) -o $@ -c lal_dipole_long_lj.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_dipole_long_lj_ext.o: $(ALL_H) lal_dipole_long_lj.h lal_dipole_long_lj_ext.cpp lal_base_dipole.h + $(OCL) -o $@ -c lal_dipole_long_lj_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lj_expand_coul_long_cl.h: lal_lj_expand_coul_long.cu $(PRE1_H) + $(BSH) ./geryon/file_to_cstr.sh lj_expand_coul_long $(PRE1_H) lal_lj_expand_coul_long.cu $(OBJ_DIR)/lj_expand_coul_long_cl.h; + +$(OBJ_DIR)/lal_lj_expand_coul_long.o: $(ALL_H) lal_lj_expand_coul_long.h lal_lj_expand_coul_long.cpp $(OBJ_DIR)/lj_expand_coul_long_cl.h $(OBJ_DIR)/lj_expand_coul_long_cl.h $(OBJ_DIR)/lal_base_charge.o + $(OCL) -o $@ -c lal_lj_expand_coul_long.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_lj_expand_coul_long_ext.o: $(ALL_H) lal_lj_expand_coul_long.h lal_lj_expand_coul_long_ext.cpp lal_base_charge.h + $(OCL) -o $@ -c lal_lj_expand_coul_long_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/coul_long_cs_cl.h: lal_coul_long_cs.cu $(PRE1_H) + $(BSH) ./geryon/file_to_cstr.sh coul_long_cs $(PRE1_H) lal_coul_long_cs.cu $(OBJ_DIR)/coul_long_cs_cl.h; + +$(OBJ_DIR)/lal_coul_long_cs.o: $(ALL_H) lal_coul_long_cs.h lal_coul_long_cs.cpp $(OBJ_DIR)/coul_long_cs_cl.h $(OBJ_DIR)/coul_long_cs_cl.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_coul_long.o + $(OCL) -o $@ -c lal_coul_long_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_coul_long_cs_ext.o: $(ALL_H) lal_coul_long_cs.h lal_coul_long_cs_ext.cpp lal_coul_long.h + $(OCL) -o $@ -c lal_coul_long_cs_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born_coul_long_cs_cl.h: lal_born_coul_long_cs.cu $(PRE1_H) + $(BSH) ./geryon/file_to_cstr.sh born_coul_long_cs $(PRE1_H) lal_born_coul_long_cs.cu $(OBJ_DIR)/born_coul_long_cs_cl.h; + +$(OBJ_DIR)/lal_born_coul_long_cs.o: $(ALL_H) lal_born_coul_long_cs.h lal_born_coul_long_cs.cpp $(OBJ_DIR)/born_coul_long_cs_cl.h $(OBJ_DIR)/born_coul_long_cs_cl.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_born_coul_long.o + $(OCL) -o $@ -c lal_born_coul_long_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_coul_long_cs_ext.o: $(ALL_H) lal_born_coul_long_cs.h lal_born_coul_long_cs_ext.cpp lal_born_coul_long.h + $(OCL) -o $@ -c lal_born_coul_long_cs_ext.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/born_coul_wolf_cs_cl.h: lal_born_coul_wolf_cs.cu $(PRE1_H) + $(BSH) ./geryon/file_to_cstr.sh born_coul_wolf_cs $(PRE1_H) lal_born_coul_wolf_cs.cu $(OBJ_DIR)/born_coul_wolf_cs_cl.h; + +$(OBJ_DIR)/lal_born_coul_wolf_cs.o: $(ALL_H) lal_born_coul_wolf_cs.h lal_born_coul_wolf_cs.cpp $(OBJ_DIR)/born_coul_wolf_cs_cl.h $(OBJ_DIR)/born_coul_wolf_cs_cl.h $(OBJ_DIR)/lal_base_charge.o $(OBJ_DIR)/lal_born_coul_wolf.o + $(OCL) -o $@ -c lal_born_coul_wolf_cs.cpp -I$(OBJ_DIR) + +$(OBJ_DIR)/lal_born_coul_wolf_cs_ext.o: $(ALL_H) lal_born_coul_wolf_cs.h lal_born_coul_wolf_cs_ext.cpp lal_born_coul_wolf.h + $(OCL) -o $@ -c lal_born_coul_wolf_cs_ext.cpp -I$(OBJ_DIR) + +$(BIN_DIR)/ocl_get_devices: ./geryon/ucl_get_devices.cpp $(OCL_H) $(OCL) -o $@ ./geryon/ucl_get_devices.cpp -DUCL_OPENCL $(OCL_LINK) $(OCL_LIB): $(OBJS) $(PTXS) diff --git a/lib/gpu/cudpp_mini/cudpp.h b/lib/gpu/cudpp_mini/cudpp.h index 088b560abc87bccd73604646a64df252b87a04fb..2f38d780a545a1881fd7b858cef1bd42d8727ea3 100644 --- a/lib/gpu/cudpp_mini/cudpp.h +++ b/lib/gpu/cudpp_mini/cudpp.h @@ -300,7 +300,7 @@ #ifndef __CUDPP_H__ #define __CUDPP_H__ -#include // for size_t +#include // for size_t #ifdef __cplusplus extern "C" { diff --git a/lib/gpu/cudpp_mini/cudpp_plan.cpp b/lib/gpu/cudpp_mini/cudpp_plan.cpp index b64b7b37ff5161832607b54d50aa2719ab35237b..e92a857dd1e195c4c656975a17dcef97e10405c6 100644 --- a/lib/gpu/cudpp_mini/cudpp_plan.cpp +++ b/lib/gpu/cudpp_mini/cudpp_plan.cpp @@ -16,7 +16,7 @@ //#include "cudpp_spmvmult.h" #include "cudpp_radixsort.h" -#include +#include CUDPPPlanManager* CUDPPPlanManager::m_instance = NULL; diff --git a/lib/gpu/cudpp_mini/cudpp_util.h b/lib/gpu/cudpp_mini/cudpp_util.h index 5cff05e8182a9f5fb352e2303948f98128846be9..e1c21f3fe6d60074f6794ab82f7411caaa195765 100644 --- a/lib/gpu/cudpp_mini/cudpp_util.h +++ b/lib/gpu/cudpp_mini/cudpp_util.h @@ -25,7 +25,7 @@ #include #include #include -#include +#include #if (CUDA_VERSION >= 3000) #define LAUNCH_BOUNDS(x) __launch_bounds__((x)) diff --git a/lib/gpu/geryon/nvd_device.h b/lib/gpu/geryon/nvd_device.h index 2d2a751f85b47dbef4e08bb0ec69858a8ecc4798..129bdbbdef7b6af52792ccec44fb0446744e7c0e 100644 --- a/lib/gpu/geryon/nvd_device.h +++ b/lib/gpu/geryon/nvd_device.h @@ -260,6 +260,9 @@ class UCL_Device { /// List all devices along with all properties inline void print_all(std::ostream &out); + /// Select the platform that has accelerators (for compatibility with OpenCL) + inline int set_platform_accelerator(int pid=-1) { return UCL_SUCCESS; } + private: int _device, _num_devices; std::vector _properties; diff --git a/lib/gpu/geryon/nvd_macros.h b/lib/gpu/geryon/nvd_macros.h index e0e29b4c6f5d827231fcffb0dc57ca507dd70eac..08ff84991a914eda8deb24e23e5a5b65b52cfa13 100644 --- a/lib/gpu/geryon/nvd_macros.h +++ b/lib/gpu/geryon/nvd_macros.h @@ -1,7 +1,7 @@ #ifndef NVD_MACROS_H #define NVD_MACROS_H -#include +#include #include #include diff --git a/lib/gpu/geryon/ocl_device.h b/lib/gpu/geryon/ocl_device.h index 138b03c091c7ceac39e4ef4a2c2c54b702f967a7..14455e38a50740784fe2c28fc3ae5a6673c85796 100644 --- a/lib/gpu/geryon/ocl_device.h +++ b/lib/gpu/geryon/ocl_device.h @@ -165,8 +165,8 @@ class UCL_Device { /// Get the current OpenCL device name inline std::string name() { return name(_device); } /// Get the OpenCL device name - inline std::string name(const int i) - { return std::string(_properties[i].name); } + inline std::string name(const int i) { + return std::string(_properties[i].name); } /// Get a string telling the type of the current device inline std::string device_type_name() { return device_type_name(_device); } @@ -280,6 +280,9 @@ class UCL_Device { /// Return the OpenCL type for the device inline cl_device_id & cl_device() { return _cl_device; } + /// Select the platform that has accelerators + inline int set_platform_accelerator(int pid=-1); + private: int _num_platforms; // Number of platforms int _platform; // UCL_Device ID for current platform @@ -311,8 +314,8 @@ UCL_Device::UCL_Device() { return; } else _num_platforms=static_cast(nplatforms); - - set_platform(0); + // note that platform 0 may not necessarily be associated with accelerators + set_platform_accelerator(); } UCL_Device::~UCL_Device() { @@ -320,6 +323,8 @@ UCL_Device::~UCL_Device() { } void UCL_Device::clear() { + _properties.clear(); + _cl_devices.clear(); if (_device>-1) { for (size_t i=0; i<_cq.size(); i++) { CL_DESTRUCT_CALL(clReleaseCommandQueue(_cq.back())); @@ -353,7 +358,7 @@ int UCL_Device::set_platform(int pid) { _num_devices=0; return UCL_ERROR; } - cl_device_id device_list[_num_devices]; + cl_device_id *device_list = new cl_device_id[_num_devices]; CL_SAFE_CALL(clGetDeviceIDs(_cl_platform,CL_DEVICE_TYPE_ALL,n,device_list, &n)); @@ -362,7 +367,7 @@ int UCL_Device::set_platform(int pid) { _cl_devices.push_back(device_list[i]); add_properties(device_list[i]); } - + delete[] device_list; return UCL_SUCCESS; } @@ -516,87 +521,117 @@ int UCL_Device::device_type(const int i) { // Set the CUDA device to the specified device number int UCL_Device::set(int num) { - clear(); - - cl_device_id device_list[_num_devices]; + cl_device_id *device_list = new cl_device_id[_num_devices]; cl_uint n; CL_SAFE_CALL(clGetDeviceIDs(_cl_platform,CL_DEVICE_TYPE_ALL,_num_devices, device_list,&n)); _device=num; _cl_device=device_list[_device]; + delete[] device_list; return create_context(); } -// List all devices along with all properties +// List all devices from all platforms along with all properties void UCL_Device::print_all(std::ostream &out) { - if (num_devices() == 0) - out << "There is no device supporting OpenCL\n"; - for (int i=0; i +#include #include #ifdef __APPLE__ diff --git a/lib/gpu/geryon/ocl_memory.h b/lib/gpu/geryon/ocl_memory.h index 28bb88941f7dbff83faffee954ed3c8500b1f7c7..9692f4dd7bd5b619565ba03d625ad5b6edb807d4 100644 --- a/lib/gpu/geryon/ocl_memory.h +++ b/lib/gpu/geryon/ocl_memory.h @@ -407,7 +407,7 @@ inline void _ocl_build(cl_program &program, cl_device_id &device, size_t ms; CL_SAFE_CALL(clGetProgramBuildInfo(program, device,CL_PROGRAM_BUILD_LOG, 0, NULL, &ms)); - char build_log[ms]; + char *build_log = new char[ms]; CL_SAFE_CALL(clGetProgramBuildInfo(program,device,CL_PROGRAM_BUILD_LOG,ms, build_log, NULL)); @@ -416,6 +416,7 @@ inline void _ocl_build(cl_program &program, cl_device_id &device, << " Error compiling OpenCL Program...\n" << "----------------------------------------------------------\n"; std::cerr << build_log << std::endl; + delete[] build_log; } inline void _ocl_kernel_from_source(cl_context &context, cl_device_id &device, diff --git a/lib/gpu/geryon/ocl_timer.h b/lib/gpu/geryon/ocl_timer.h index 66b79dcab101db3cbc31bbaa00263d5b563081f8..1f56aeb364ccc73c3b6ce22fa2644f0c9413f64b 100644 --- a/lib/gpu/geryon/ocl_timer.h +++ b/lib/gpu/geryon/ocl_timer.h @@ -49,8 +49,6 @@ class UCL_Timer { inline void clear() { if (_initialized) { CL_DESTRUCT_CALL(clReleaseCommandQueue(_cq)); - clReleaseEvent(start_event); - clReleaseEvent(stop_event); _initialized=false; _total_time=0.0; } @@ -107,6 +105,8 @@ class UCL_Timer { CL_SAFE_CALL(clGetEventProfilingInfo(start_event, CL_PROFILING_COMMAND_END, sizeof(cl_ulong), &tstart, NULL)); + clReleaseEvent(start_event); + clReleaseEvent(stop_event); return (tend-tstart)*t_factor; } diff --git a/lib/gpu/lal_answer.h b/lib/gpu/lal_answer.h index 790d9c1f8d16ba95e14902bd6603fc0e23ca7285..557c69b4714bc8368ad13c6b4a031141efd16e7c 100644 --- a/lib/gpu/lal_answer.h +++ b/lib/gpu/lal_answer.h @@ -16,7 +16,7 @@ #ifndef LAL_ANSWER_H #define LAL_ANSWER_H -#include +#include #include "mpi.h" #if defined(USE_OPENCL) diff --git a/lib/gpu/lal_atom.h b/lib/gpu/lal_atom.h index 1b4e17d972aeeca62d3a6bdc2bb2fb5dca823075..57880d7ca976c029ab7006b9c2a5035da8018cfc 100644 --- a/lib/gpu/lal_atom.h +++ b/lib/gpu/lal_atom.h @@ -16,7 +16,7 @@ #ifndef PAIR_GPU_ATOM_H #define PAIR_GPU_ATOM_H -#include +#include #include "mpi.h" #if defined(USE_OPENCL) @@ -322,10 +322,12 @@ class Atom { // Copy charges to device asynchronously inline void add_q_data() { + time_q.start(); if (_q_avail==false) { q.update_device(_nall,true); _q_avail=true; } + time_q.stop(); } // Cast quaternions to write buffer @@ -347,10 +349,12 @@ class Atom { // Copy quaternions to device /** Copies nall()*4 elements **/ inline void add_quat_data() { + time_quat.start(); if (_quat_avail==false) { quat.update_device(_nall*4,true); _quat_avail=true; } + time_quat.stop(); } /// Cast velocities and tags to write buffer diff --git a/lib/gpu/lal_balance.h b/lib/gpu/lal_balance.h index e90e94bee1c974fcc3d8084bbd63f21157ab65ea..6aee5952ed00baa99637162b500dbe0ffd0ec083 100644 --- a/lib/gpu/lal_balance.h +++ b/lib/gpu/lal_balance.h @@ -17,7 +17,7 @@ #define LAL_BALANCE_H #include "lal_device.h" -#include +#include #define _HD_BALANCE_EVERY 25 #define _HD_BALANCE_WEIGHT 0.5 diff --git a/lib/gpu/lal_beck_ext.cpp b/lib/gpu/lal_beck_ext.cpp index 226c2d477b53ebf444ea22eb1093efb194b6545d..dcba4e4f40b1ca65f5045e41d17a816f599ad906 100644 --- a/lib/gpu/lal_beck_ext.cpp +++ b/lib/gpu/lal_beck_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_beck.h" diff --git a/lib/gpu/lal_born_coul_long.cpp b/lib/gpu/lal_born_coul_long.cpp index 68695c49380ea9a0810a98ca0273686c6d3eb61c..116d44d58fd340e13b75439dab4d380dd13de89b 100644 --- a/lib/gpu/lal_born_coul_long.cpp +++ b/lib/gpu/lal_born_coul_long.cpp @@ -57,7 +57,7 @@ int BornCoulLongT::init(const int ntypes, double **host_cutsq, double **host_rho const double g_ewald) { int success; success=this->init_atomic(nlocal,nall,max_nbors,maxspecial,cell_size,gpu_split, - _screen,born_coul_long,"k_born_long"); + _screen,born_coul_long,"k_born_coul_long"); if (success!=0) return success; diff --git a/lib/gpu/lal_born_coul_long.cu b/lib/gpu/lal_born_coul_long.cu index 4cb4ea448fbf74374ce8b7ca7bd95b7cfda6505a..71e5e0ae502e8847bc006788deaf82da9477868d 100644 --- a/lib/gpu/lal_born_coul_long.cu +++ b/lib/gpu/lal_born_coul_long.cu @@ -29,7 +29,7 @@ texture q_tex; #define q_tex q_ #endif -__kernel void k_born_long(const __global numtyp4 *restrict x_, +__kernel void k_born_coul_long(const __global numtyp4 *restrict x_, const __global numtyp4 *restrict coeff1, const __global numtyp4 *restrict coeff2, const int lj_types, @@ -110,7 +110,7 @@ __kernel void k_born_long(const __global numtyp4 *restrict x_, forcecoul = prefactor * (_erfc + EWALD_F*grij*expm2-factor_coul); } else forcecoul = (numtyp)0.0; - if (rsq < cutsq_sigma[mtype].y) { + if (rsq < cutsq_sigma[mtype].y) { // cut_ljsq numtyp r = ucl_sqrt(rsq); rexp = ucl_exp((cutsq_sigma[mtype].z-r)*coeff1[mtype].x); r6inv = r2inv*r2inv*r2inv; @@ -127,7 +127,7 @@ __kernel void k_born_long(const __global numtyp4 *restrict x_, if (eflag>0) { if (rsq < cut_coulsq) e_coul += prefactor*(_erfc-factor_coul); - if (rsq < coeff1[mtype].w) { + if (rsq < cutsq_sigma[mtype].y) { numtyp e=coeff2[mtype].x*rexp - coeff2[mtype].y*r6inv + coeff2[mtype].z*r2inv*r6inv; energy+=factor_lj*(e-coeff2[mtype].w); @@ -149,7 +149,7 @@ __kernel void k_born_long(const __global numtyp4 *restrict x_, } // if ii } -__kernel void k_born_long_fast(const __global numtyp4 *restrict x_, +__kernel void k_born_coul_long_fast(const __global numtyp4 *restrict x_, const __global numtyp4 *restrict coeff1_in, const __global numtyp4 *restrict coeff2_in, const __global numtyp *restrict sp_lj_in, @@ -232,7 +232,7 @@ __kernel void k_born_long_fast(const __global numtyp4 *restrict x_, forcecoul = prefactor * (_erfc + EWALD_F*grij*expm2-factor_coul); } else forcecoul = (numtyp)0.0; - if (rsq < cutsq_sigma[mtype].y) { + if (rsq < cutsq_sigma[mtype].y) { // cut_ljsq numtyp r = ucl_sqrt(rsq); rexp = ucl_exp((cutsq_sigma[mtype].z-r)*coeff1[mtype].x); r6inv = r2inv*r2inv*r2inv; @@ -249,7 +249,7 @@ __kernel void k_born_long_fast(const __global numtyp4 *restrict x_, if (eflag>0) { if (rsq < cut_coulsq) e_coul += prefactor*(_erfc-factor_coul); - if (rsq < coeff1[mtype].w) { + if (rsq < cutsq_sigma[mtype].y) { numtyp e=coeff2[mtype].x*rexp - coeff2[mtype].y*r6inv + coeff2[mtype].z*r2inv*r6inv; energy+=factor_lj*(e-coeff2[mtype].w); diff --git a/lib/gpu/lal_born_coul_long.h b/lib/gpu/lal_born_coul_long.h index e0de27c71cc19091887d0c162af5861e37759df0..d236b7b57feca914beb028aae304c91eddda1ff3 100644 --- a/lib/gpu/lal_born_coul_long.h +++ b/lib/gpu/lal_born_coul_long.h @@ -78,7 +78,7 @@ class BornCoulLong : public BaseCharge { numtyp _cut_coulsq, _qqrd2e, _g_ewald; - private: + protected: bool _allocated; void loop(const bool _eflag, const bool _vflag); }; diff --git a/lib/gpu/lal_born_coul_long_cs.cpp b/lib/gpu/lal_born_coul_long_cs.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e7fb946f148949f3b4d50dc71e662458f32977fd --- /dev/null +++ b/lib/gpu/lal_born_coul_long_cs.cpp @@ -0,0 +1,95 @@ +/*************************************************************************** + born_coul_long_cs.cpp + ------------------- + Trung Dac Nguyen (Northwestern) + + Class for acceleration of the born/coul/long/cs pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#ifdef USE_OPENCL +#include "born_coul_long_cs_cl.h" +#elif defined(USE_CUDART) +const char *born_coul_long_cs=0; +#else +#include "born_coul_long_cs_cubin.h" +#endif + +#include "lal_born_coul_long_cs.h" +#include +using namespace LAMMPS_AL; +#define BornCoulLongCST BornCoulLongCS + +extern Device device; + +template +int BornCoulLongCST::init(const int ntypes, double **host_cutsq, double **host_rhoinv, + double **host_born1, double **host_born2, double **host_born3, + double **host_a, double **host_c, double **host_d, + double **host_sigma, double **host_offset, + double *host_special_lj, const int nlocal, + const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *_screen, + double **host_cut_ljsq, const double host_cut_coulsq, + double *host_special_coul, const double qqrd2e, + const double g_ewald) { + int success; + success=this->init_atomic(nlocal,nall,max_nbors,maxspecial,cell_size,gpu_split, + _screen,born_coul_long_cs,"k_born_coul_long_cs"); + if (success!=0) + return success; + + // If atom type constants fit in shared memory use fast kernel + int lj_types=ntypes; + this->shared_types=false; + int max_shared_types=this->device->max_shared_types(); + if (lj_types<=max_shared_types && this->_block_size>=max_shared_types) { + lj_types=max_shared_types; + this->shared_types=true; + } + this->_lj_types=lj_types; + + // Allocate a host write buffer for data initialization + UCL_H_Vec host_write(lj_types*lj_types*32,*(this->ucl_device), + UCL_WRITE_ONLY); + + for (int i=0; icoeff1.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,this->coeff1,host_write,host_rhoinv, + host_born1,host_born2,host_born3); + + this->coeff2.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,this->coeff2,host_write,host_a,host_c, + host_d,host_offset); + + this->cutsq_sigma.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,this->cutsq_sigma,host_write,host_cutsq, + host_cut_ljsq,host_sigma); + + this->sp_lj.alloc(8,*(this->ucl_device),UCL_READ_ONLY); + for (int i=0; i<4; i++) { + host_write[i]=host_special_lj[i]; + host_write[i+4]=host_special_coul[i]; + } + ucl_copy(this->sp_lj,host_write,8,false); + + this->_cut_coulsq=host_cut_coulsq; + this->_qqrd2e=qqrd2e; + this->_g_ewald=g_ewald; + + this->_allocated=true; + this->_max_bytes=this->coeff1.row_bytes()+this->coeff2.row_bytes() + +this->cutsq_sigma.row_bytes()+this->sp_lj.row_bytes(); + return 0; +} + +template class BornCoulLongCS; diff --git a/lib/gpu/lal_born_coul_long_cs.cu b/lib/gpu/lal_born_coul_long_cs.cu new file mode 100644 index 0000000000000000000000000000000000000000..b3e79d9ec841afd0d31cf64b5af1c74f9469a811 --- /dev/null +++ b/lib/gpu/lal_born_coul_long_cs.cu @@ -0,0 +1,325 @@ +// ************************************************************************** +// born_coul_long_cs.cu +// ------------------- +// Trung Dac Nguyen (Northwestern) +// +// Device code for acceleration of the born/coul/long/cs pair style +// +// __________________________________________________________________________ +// This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) +// __________________________________________________________________________ +// +// begin : June 2018 +// email : ndactrung@gmail.com +// ***************************************************************************/ + +#ifdef NV_KERNEL + +#include "lal_aux_fun1.h" +#ifndef _DOUBLE_DOUBLE +texture pos_tex; +texture q_tex; +#else +texture pos_tex; +texture q_tex; +#endif + +#else +#define pos_tex x_ +#define q_tex q_ +#endif + +// Note: EWALD_P is different from that in lal_preprocessor.h +// acctyp is needed for these parameters +#define CS_EWALD_P (acctyp)9.95473818e-1 +#define B0 (acctyp)-0.1335096380159268 +#define B1 (acctyp)-2.57839507e-1 +#define B2 (acctyp)-1.37203639e-1 +#define B3 (acctyp)-8.88822059e-3 +#define B4 (acctyp)-5.80844129e-3 +#define B5 (acctyp)1.14652755e-1 + +#define EPSILON (acctyp)(1.0e-20) +#define EPS_EWALD (acctyp)(1.0e-6) +#define EPS_EWALD_SQR (acctyp)(1.0e-12) + +__kernel void k_born_coul_long_cs(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict coeff1, + const __global numtyp4 *restrict coeff2, + const int lj_types, + const __global numtyp *restrict sp_lj_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const __global numtyp4 *restrict cutsq_sigma, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp g_ewald, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp sp_lj[8]; + sp_lj[0]=sp_lj_in[0]; + sp_lj[1]=sp_lj_in[1]; + sp_lj[2]=sp_lj_in[2]; + sp_lj[3]=sp_lj_in[3]; + sp_lj[4]=sp_lj_in[4]; + sp_lj[5]=sp_lj_in[5]; + sp_lj[6]=sp_lj_in[6]; + sp_lj[7]=sp_lj_in[7]; + + acctyp energy=(acctyp)0; + acctyp e_coul=(acctyp)0; + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp virial[6]; + for (int i=0; i<6; i++) + virial[i]=(acctyp)0; + + if (ii0) { + if (rsq < cut_coulsq) { + numtyp e = prefactor*_erfc; + if (factor_coul<(numtyp)1.0) e -= ((numtyp)1.0-factor_coul)*prefactor; + e_coul += e; + } + if (rsq < cutsq_sigma[mtype].y) { + numtyp e=coeff2[mtype].x*rexp - coeff2[mtype].y*r6inv + + coeff2[mtype].z*r2inv*r6inv; + energy+=factor_lj*(e-coeff2[mtype].w); + } + } + if (vflag>0) { + virial[0] += delx*delx*force; + virial[1] += dely*dely*force; + virial[2] += delz*delz*force; + virial[3] += delx*dely*force; + virial[4] += delx*delz*force; + virial[5] += dely*delz*force; + } + } + + } // for nbor + store_answers_q(f,energy,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + +__kernel void k_born_coul_long_cs_fast(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict coeff1_in, + const __global numtyp4 *restrict coeff2_in, + const __global numtyp *restrict sp_lj_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const __global numtyp4 *restrict cutsq_sigma, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp g_ewald, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp4 coeff1[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp4 coeff2[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp sp_lj[8]; + if (tid<8) + sp_lj[tid]=sp_lj_in[tid]; + if (tid0) + coeff2[tid]=coeff2_in[tid]; + } + + acctyp energy=(acctyp)0; + acctyp e_coul=(acctyp)0; + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp virial[6]; + for (int i=0; i<6; i++) + virial[i]=(acctyp)0; + + __syncthreads(); + + if (ii0) { + if (rsq < cut_coulsq) { + numtyp e = prefactor*_erfc; + if (factor_coul<(numtyp)1.0) e -= ((numtyp)1.0-factor_coul)*prefactor; + e_coul += e; + } + if (rsq < cutsq_sigma[mtype].y) { + numtyp e=coeff2[mtype].x*rexp - coeff2[mtype].y*r6inv + + coeff2[mtype].z*r2inv*r6inv; + energy+=factor_lj*(e-coeff2[mtype].w); + } + } + if (vflag>0) { + virial[0] += delx*delx*force; + virial[1] += dely*dely*force; + virial[2] += delz*delz*force; + virial[3] += delx*dely*force; + virial[4] += delx*delz*force; + virial[5] += dely*delz*force; + } + } + + } // for nbor + store_answers_q(f,energy,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + diff --git a/lib/gpu/lal_born_coul_long_cs.h b/lib/gpu/lal_born_coul_long_cs.h new file mode 100644 index 0000000000000000000000000000000000000000..df0fa0fcd41c790932fd9f4bedd2eb8e982c4865 --- /dev/null +++ b/lib/gpu/lal_born_coul_long_cs.h @@ -0,0 +1,53 @@ +/*************************************************************************** + born_coul_long_cs.h + ------------------- + Trung Dac Nguyen (Northwestern) + + Class for acceleration of the born/coul/long/cs pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#ifndef LAL_BORN_COUL_LONG_CS_H +#define LAL_BORN_COUL_LONG_CS_H + +#include "lal_born_coul_long.h" + +namespace LAMMPS_AL { + +template +class BornCoulLongCS : public BornCoulLong { + public: + BornCoulLongCS() {} + ~BornCoulLongCS() {} + + /// Clear any previous data and set up for a new LAMMPS run + /** \param max_nbors initial number of rows in the neighbor matrix + * \param cell_size cutoff + skin + * \param gpu_split fraction of particles handled by device + * + * Returns: + * - 0 if successfull + * - -1 if fix gpu not found + * - -3 if there is an out of memory error + * - -4 if the GPU library was not compiled for GPU + * - -5 Double precision is not supported on card **/ + int init(const int ntypes, double **host_cutsq, double **host_rhoinv, + double **host_born1, double **host_born2, double **host_born3, + double **host_a, double **host_c, double **host_d, + double **host_sigma, double **host_offset, double *host_special_lj, + const int nlocal, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *screen, double **host_cut_ljsq, + const double host_cut_coulsq, double *host_special_coul, + const double qqrd2e, const double g_ewald); +}; + +} + +#endif diff --git a/lib/gpu/lal_born_coul_long_cs_ext.cpp b/lib/gpu/lal_born_coul_long_cs_ext.cpp new file mode 100644 index 0000000000000000000000000000000000000000..badc8b0808488569685a7d11c5224beb720ce534 --- /dev/null +++ b/lib/gpu/lal_born_coul_long_cs_ext.cpp @@ -0,0 +1,132 @@ +/*************************************************************************** + born_coul_long_cs_ext.cpp + ------------------- + Trung Dac Nguyen (ORNL) + + Functions for LAMMPS access to born/coul/long/cs acceleration routines. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#include +#include +#include + +#include "lal_born_coul_long_cs.h" + +using namespace std; +using namespace LAMMPS_AL; + +static BornCoulLongCS BCLCSMF; + +// --------------------------------------------------------------------------- +// Allocate memory on host and device and copy constants to device +// --------------------------------------------------------------------------- +int bornclcs_gpu_init(const int ntypes, double **cutsq, double **host_rhoinv, + double **host_born1, double **host_born2, double **host_born3, + double **host_a, double **host_c, double **host_d, + double **sigma, double **offset, double *special_lj, + const int inum, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, int &gpu_mode, + FILE *screen, double **host_cut_ljsq, double host_cut_coulsq, + double *host_special_coul, const double qqrd2e, + const double g_ewald) { + BCLCSMF.clear(); + gpu_mode=BCLCSMF.device->gpu_mode(); + double gpu_split=BCLCSMF.device->particle_split(); + int first_gpu=BCLCSMF.device->first_device(); + int last_gpu=BCLCSMF.device->last_device(); + int world_me=BCLCSMF.device->world_me(); + int gpu_rank=BCLCSMF.device->gpu_rank(); + int procs_per_gpu=BCLCSMF.device->procs_per_gpu(); + + BCLCSMF.device->init_message(screen,"born/coul/long/cs",first_gpu,last_gpu); + + bool message=false; + if (BCLCSMF.device->replica_me()==0 && screen) + message=true; + + if (message) { + fprintf(screen,"Initializing Device and compiling on process 0..."); + fflush(screen); + } + + int init_ok=0; + if (world_me==0) + init_ok=BCLCSMF.init(ntypes, cutsq, host_rhoinv, host_born1, host_born2, + host_born3, host_a, host_c, host_d, sigma, offset, + special_lj, inum, nall, 300, maxspecial, cell_size, + gpu_split, screen, host_cut_ljsq, host_cut_coulsq, + host_special_coul, qqrd2e, g_ewald); + + BCLCSMF.device->world_barrier(); + if (message) + fprintf(screen,"Done.\n"); + + for (int i=0; igpu_barrier(); + if (message) + fprintf(screen,"Done.\n"); + } + if (message) + fprintf(screen,"\n"); + + if (init_ok==0) + BCLCSMF.estimate_gpu_overhead(); + return init_ok; +} + +void bornclcs_gpu_clear() { + BCLCSMF.clear(); +} + +int** bornclcs_gpu_compute_n(const int ago, const int inum_full, + const int nall, double **host_x, int *host_type, + double *sublo, double *subhi, tagint *tag, int **nspecial, + tagint **special, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + int **ilist, int **jnum, const double cpu_time, + bool &success, double *host_q, double *boxlo, + double *prd) { + return BCLCSMF.compute(ago, inum_full, nall, host_x, host_type, sublo, + subhi, tag, nspecial, special, eflag, vflag, eatom, + vatom, host_start, ilist, jnum, cpu_time, success, + host_q, boxlo, prd); +} + +void bornclcs_gpu_compute(const int ago, const int inum_full, const int nall, + double **host_x, int *host_type, int *ilist, int *numj, + int **firstneigh, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + const double cpu_time, bool &success, double *host_q, + const int nlocal, double *boxlo, double *prd) { + BCLCSMF.compute(ago,inum_full,nall,host_x,host_type,ilist,numj, + firstneigh,eflag,vflag,eatom,vatom,host_start,cpu_time,success, + host_q,nlocal,boxlo,prd); +} + +double bornclcs_gpu_bytes() { + return BCLCSMF.host_memory_usage(); +} + + diff --git a/lib/gpu/lal_born_coul_long_ext.cpp b/lib/gpu/lal_born_coul_long_ext.cpp index feb7472e7446999ff0ba2b43496cbfcc38a2e361..d0825529b1bb8ed9bec9a2d858dce8f874dca116 100644 --- a/lib/gpu/lal_born_coul_long_ext.cpp +++ b/lib/gpu/lal_born_coul_long_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_born_coul_long.h" diff --git a/lib/gpu/lal_born_coul_wolf.cpp b/lib/gpu/lal_born_coul_wolf.cpp index 7ebd7b744fd6501a2710c3ad7143112aa9cf520e..c44b8414635abcb6a872b46544e52c1fa5a738da 100644 --- a/lib/gpu/lal_born_coul_wolf.cpp +++ b/lib/gpu/lal_born_coul_wolf.cpp @@ -57,7 +57,7 @@ int BornCoulWolfT::init(const int ntypes, double **host_cutsq, double **host_rho const double alf, const double e_shift, const double f_shift) { int success; success=this->init_atomic(nlocal,nall,max_nbors,maxspecial,cell_size,gpu_split, - _screen,born_coul_wolf,"k_born_wolf"); + _screen,born_coul_wolf,"k_born_coul_wolf"); if (success!=0) return success; diff --git a/lib/gpu/lal_born_coul_wolf.cu b/lib/gpu/lal_born_coul_wolf.cu index 0dc7d08c638d93bd9d0a5f0c1e37cd26e963e593..2c2249feeb7a34bdc899195aad60284aef51551a 100644 --- a/lib/gpu/lal_born_coul_wolf.cu +++ b/lib/gpu/lal_born_coul_wolf.cu @@ -31,7 +31,7 @@ texture q_tex; #define MY_PIS (acctyp)1.77245385090551602729 -__kernel void k_born_wolf(const __global numtyp4 *restrict x_, +__kernel void k_born_coul_wolf(const __global numtyp4 *restrict x_, const __global numtyp4 *restrict coeff1, const __global numtyp4 *restrict coeff2, const int lj_types, @@ -165,7 +165,7 @@ __kernel void k_born_wolf(const __global numtyp4 *restrict x_, } // if ii } -__kernel void k_born_wolf_fast(const __global numtyp4 *restrict x_, +__kernel void k_born_coul_wolf_fast(const __global numtyp4 *restrict x_, const __global numtyp4 *restrict coeff1_in, const __global numtyp4 *restrict coeff2_in, const __global numtyp *restrict sp_lj_in, diff --git a/lib/gpu/lal_born_coul_wolf.h b/lib/gpu/lal_born_coul_wolf.h index 4b2406b989be7d41d57c3b6cb66c035d491d937d..4b817ee0ced7df7d975c14de7cf20fa2410cdea3 100644 --- a/lib/gpu/lal_born_coul_wolf.h +++ b/lib/gpu/lal_born_coul_wolf.h @@ -13,8 +13,8 @@ email : nguyentd@ornl.gov ***************************************************************************/ -#ifndef LAL_BORN_COUL_LONG_H -#define LAL_BORN_COUL_LONG_H +#ifndef LAL_BORN_COUL_WOLF_H +#define LAL_BORN_COUL_WOLF_H #include "lal_base_charge.h" @@ -79,7 +79,7 @@ class BornCoulWolf : public BaseCharge { numtyp _cut_coulsq,_qqrd2e,_alf,_e_shift,_f_shift; - private: + protected: bool _allocated; void loop(const bool _eflag, const bool _vflag); }; diff --git a/lib/gpu/lal_born_coul_wolf_cs.cpp b/lib/gpu/lal_born_coul_wolf_cs.cpp new file mode 100644 index 0000000000000000000000000000000000000000..bdb1c31e557b9f91f9308036cdf31ee46d87271f --- /dev/null +++ b/lib/gpu/lal_born_coul_wolf_cs.cpp @@ -0,0 +1,97 @@ +/*************************************************************************** + born_coul_wolf_cs.cpp + ------------------- + Trung Dac Nguyen (Northwestern) + + Class for acceleration of the born/coul/wolf/cs pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#ifdef USE_OPENCL +#include "born_coul_wolf_cs_cl.h" +#elif defined(USE_CUDART) +const char *born_coul_wolf_cs=0; +#else +#include "born_coul_wolf_cs_cubin.h" +#endif + +#include "lal_born_coul_wolf_cs.h" +#include +using namespace LAMMPS_AL; +#define BornCoulWolfCST BornCoulWolfCS + +extern Device device; + +template +int BornCoulWolfCST::init(const int ntypes, double **host_cutsq, double **host_rhoinv, + double **host_born1, double **host_born2, double **host_born3, + double **host_a, double **host_c, double **host_d, + double **host_sigma, double **host_offset, + double *host_special_lj, const int nlocal, + const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *_screen, + double **host_cut_ljsq, const double host_cut_coulsq, + double *host_special_coul, const double qqrd2e, + const double alf, const double e_shift, const double f_shift) { + int success; + success=this->init_atomic(nlocal,nall,max_nbors,maxspecial,cell_size,gpu_split, + _screen,born_coul_wolf_cs,"k_born_coul_wolf_cs"); + if (success!=0) + return success; + + // If atom type constants fit in shared memory use fast kernel + int lj_types=ntypes; + this->shared_types=false; + int max_shared_types=this->device->max_shared_types(); + if (lj_types<=max_shared_types && this->_block_size>=max_shared_types) { + lj_types=max_shared_types; + this->shared_types=true; + } + this->_lj_types=lj_types; + + // Allocate a host write buffer for data initialization + UCL_H_Vec host_write(lj_types*lj_types*32,*(this->ucl_device), + UCL_WRITE_ONLY); + + for (int i=0; icoeff1.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,this->coeff1,host_write,host_rhoinv, + host_born1,host_born2,host_born3); + + this->coeff2.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,this->coeff2,host_write,host_a,host_c, + host_d,host_offset); + + this->cutsq_sigma.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,this->cutsq_sigma,host_write,host_cutsq, + host_cut_ljsq,host_sigma); + + this->sp_lj.alloc(8,*(this->ucl_device),UCL_READ_ONLY); + for (int i=0; i<4; i++) { + host_write[i]=host_special_lj[i]; + host_write[i+4]=host_special_coul[i]; + } + ucl_copy(this->sp_lj,host_write,8,false); + + this->_cut_coulsq=host_cut_coulsq; + this->_qqrd2e=qqrd2e; + this->_alf=alf; + this->_e_shift=e_shift; + this->_f_shift=f_shift; + + this->_allocated=true; + this->_max_bytes=this->coeff1.row_bytes()+this->coeff2.row_bytes() + +this->cutsq_sigma.row_bytes()+this->sp_lj.row_bytes(); + return 0; +} + +template class BornCoulWolfCS; diff --git a/lib/gpu/lal_born_coul_wolf_cs.cu b/lib/gpu/lal_born_coul_wolf_cs.cu new file mode 100644 index 0000000000000000000000000000000000000000..847387bfe8c1adbe2e1f3f2a3ed21964d08c5989 --- /dev/null +++ b/lib/gpu/lal_born_coul_wolf_cs.cu @@ -0,0 +1,306 @@ +// ************************************************************************** +// born_coul_wolf_cs.cu +// ------------------- +// Trung Dac Nguyen (Northwestern) +// +// Device code for acceleration of the born/coul/wolf/cs pair style +// +// __________________________________________________________________________ +// This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) +// __________________________________________________________________________ +// +// begin : +// email : ndactrung@gmail.com +// ***************************************************************************/ + +#ifdef NV_KERNEL + +#include "lal_aux_fun1.h" +#ifndef _DOUBLE_DOUBLE +texture pos_tex; +texture q_tex; +#else +texture pos_tex; +texture q_tex; +#endif + +#else +#define pos_tex x_ +#define q_tex q_ +#endif + +#define EPSILON (acctyp)(1.0e-20) +#define MY_PIS (acctyp)1.77245385090551602729 + +__kernel void k_born_coul_wolf_cs(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict coeff1, + const __global numtyp4 *restrict coeff2, + const int lj_types, + const __global numtyp *restrict sp_lj_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const __global numtyp4 *restrict cutsq_sigma, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp alf, const numtyp e_shift, + const numtyp f_shift, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp sp_lj[8]; + sp_lj[0]=sp_lj_in[0]; + sp_lj[1]=sp_lj_in[1]; + sp_lj[2]=sp_lj_in[2]; + sp_lj[3]=sp_lj_in[3]; + sp_lj[4]=sp_lj_in[4]; + sp_lj[5]=sp_lj_in[5]; + sp_lj[6]=sp_lj_in[6]; + sp_lj[7]=sp_lj_in[7]; + + acctyp energy=(acctyp)0; + acctyp e_coul=(acctyp)0; + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp virial[6]; + for (int i=0; i<6; i++) + virial[i]=(acctyp)0; + + if (ii0) { + acctyp e_self = -((acctyp)0.5*e_shift + alf/MY_PIS) * + qtmp*qtmp*qqrd2e/(acctyp)t_per_atom; + e_coul += (acctyp)2.0*e_self; + } + + for ( ; nbor0) { + if (rsq < cut_coulsq) { + acctyp e=v_sh; + if (factor_coul < (numtyp)1.0) e -= ((numtyp)1.0-factor_coul)*prefactor; + e_coul += e; + } + if (rsq < cutsq_sigma[mtype].y) { + numtyp e=coeff2[mtype].x*rexp - coeff2[mtype].y*r6inv + + coeff2[mtype].z*r2inv*r6inv; + energy+=factor_lj*(e-coeff2[mtype].w); + } + } + if (vflag>0) { + virial[0] += delx*delx*force; + virial[1] += dely*dely*force; + virial[2] += delz*delz*force; + virial[3] += delx*dely*force; + virial[4] += delx*delz*force; + virial[5] += dely*delz*force; + } + } + + } // for nbor + store_answers_q(f,energy,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + +__kernel void k_born_coul_wolf_cs_fast(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict coeff1_in, + const __global numtyp4 *restrict coeff2_in, + const __global numtyp *restrict sp_lj_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const __global numtyp4 *restrict cutsq_sigma, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp alf, const numtyp e_shift, + const numtyp f_shift, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp4 coeff1[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp4 coeff2[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp sp_lj[8]; + if (tid<8) + sp_lj[tid]=sp_lj_in[tid]; + if (tid0) + coeff2[tid]=coeff2_in[tid]; + } + + acctyp energy=(acctyp)0; + acctyp e_coul=(acctyp)0; + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp virial[6]; + for (int i=0; i<6; i++) + virial[i]=(acctyp)0; + + __syncthreads(); + + if (ii0) { + acctyp e_self = -((acctyp)0.5*e_shift + alf/MY_PIS) * + qtmp*qtmp*qqrd2e/(acctyp)t_per_atom; + e_coul += (acctyp)2.0*e_self; + } + + for ( ; nbor0) { + if (rsq < cut_coulsq) { + acctyp e=v_sh; + if (factor_coul < (numtyp)1.0) e -= ((numtyp)1.0-factor_coul)*prefactor; + e_coul += e; + } + if (rsq < cutsq_sigma[mtype].y) { + numtyp e=coeff2[mtype].x*rexp - coeff2[mtype].y*r6inv + + coeff2[mtype].z*r2inv*r6inv; + energy+=factor_lj*(e-coeff2[mtype].w); + } + } + if (vflag>0) { + virial[0] += delx*delx*force; + virial[1] += dely*dely*force; + virial[2] += delz*delz*force; + virial[3] += delx*dely*force; + virial[4] += delx*delz*force; + virial[5] += dely*delz*force; + } + } + + } // for nbor + store_answers_q(f,energy,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + diff --git a/lib/gpu/lal_born_coul_wolf_cs.h b/lib/gpu/lal_born_coul_wolf_cs.h new file mode 100644 index 0000000000000000000000000000000000000000..1d9de0a457f04027118aebe5e9f4c1c6c6561ad3 --- /dev/null +++ b/lib/gpu/lal_born_coul_wolf_cs.h @@ -0,0 +1,54 @@ +/*************************************************************************** + born_coul_wolf_cs.h + ------------------- + Trung Dac Nguyen (Northwestern) + + Class for acceleration of the born/coul/wolf/cs pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#ifndef LAL_BORN_COUL_WOLF_CS_H +#define LAL_BORN_COUL_WOLF_CS_H + +#include "lal_born_coul_wolf.h" + +namespace LAMMPS_AL { + +template +class BornCoulWolfCS : public BornCoulWolf { + public: + BornCoulWolfCS() {} + ~BornCoulWolfCS() {} + + /// Clear any previous data and set up for a new LAMMPS run + /** \param max_nbors initial number of rows in the neighbor matrix + * \param cell_size cutoff + skin + * \param gpu_split fraction of particles handled by device + * + * Returns: + * - 0 if successfull + * - -1 if fix gpu not found + * - -3 if there is an out of memory error + * - -4 if the GPU library was not compiled for GPU + * - -5 Double precision is not supported on card **/ + int init(const int ntypes, double **host_cutsq, double **host_rhoinv, + double **host_born1, double **host_born2, double **host_born3, + double **host_a, double **host_c, double **host_d, + double **host_sigma, double **host_offset, double *host_special_lj, + const int nlocal, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *screen, double **host_cut_ljsq, + const double host_cut_coulsq, double *host_special_coul, + const double qqrd2e, const double alf, const double e_shift, + const double f_shift); +}; + +} + +#endif diff --git a/lib/gpu/lal_born_coul_wolf_cs_ext.cpp b/lib/gpu/lal_born_coul_wolf_cs_ext.cpp new file mode 100644 index 0000000000000000000000000000000000000000..e2211644af1f5b662a4750686ae5afa28216441c --- /dev/null +++ b/lib/gpu/lal_born_coul_wolf_cs_ext.cpp @@ -0,0 +1,134 @@ +/*************************************************************************** + born_coul_wolf_cs_ext.cpp + ------------------- + Trung Dac Nguyen (Northwestern) + + Functions for LAMMPS access to born/coul/wolf/cs acceleration routines. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#include +#include +#include + +#include "lal_born_coul_wolf_cs.h" + +using namespace std; +using namespace LAMMPS_AL; + +static BornCoulWolfCS BornCWCST; + +// --------------------------------------------------------------------------- +// Allocate memory on host and device and copy constants to device +// --------------------------------------------------------------------------- +int borncwcs_gpu_init(const int ntypes, double **cutsq, double **host_rhoinv, + double **host_born1, double **host_born2, double **host_born3, + double **host_a, double **host_c, double **host_d, + double **sigma, double **offset, double *special_lj, const int inum, + const int nall, const int max_nbors, const int maxspecial, + const double cell_size, int &gpu_mode, FILE *screen, + double **host_cut_ljsq, double host_cut_coulsq, + double *host_special_coul, const double qqrd2e, + const double alf, const double e_shift, const double f_shift) { + BornCWCST.clear(); + gpu_mode=BornCWCST.device->gpu_mode(); + double gpu_split=BornCWCST.device->particle_split(); + int first_gpu=BornCWCST.device->first_device(); + int last_gpu=BornCWCST.device->last_device(); + int world_me=BornCWCST.device->world_me(); + int gpu_rank=BornCWCST.device->gpu_rank(); + int procs_per_gpu=BornCWCST.device->procs_per_gpu(); + + BornCWCST.device->init_message(screen,"born/coul/wolf/cs",first_gpu,last_gpu); + + bool message=false; + if (BornCWCST.device->replica_me()==0 && screen) + message=true; + + if (message) { + fprintf(screen,"Initializing Device and compiling on process 0..."); + fflush(screen); + } + + int init_ok=0; + if (world_me==0) + init_ok=BornCWCST.init(ntypes, cutsq, host_rhoinv, host_born1, host_born2, + host_born3, host_a, host_c, host_d, sigma, + offset, special_lj, inum, nall, 300, + maxspecial, cell_size, gpu_split, screen, host_cut_ljsq, + host_cut_coulsq, host_special_coul, qqrd2e, + alf, e_shift, f_shift); + + BornCWCST.device->world_barrier(); + if (message) + fprintf(screen,"Done.\n"); + + for (int i=0; igpu_barrier(); + if (message) + fprintf(screen,"Done.\n"); + } + if (message) + fprintf(screen,"\n"); + + if (init_ok==0) + BornCWCST.estimate_gpu_overhead(); + return init_ok; +} + +void borncwcs_gpu_clear() { + BornCWCST.clear(); +} + +int** borncwcs_gpu_compute_n(const int ago, const int inum_full, + const int nall, double **host_x, int *host_type, + double *sublo, double *subhi, tagint *tag, int **nspecial, + tagint **special, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + int **ilist, int **jnum, const double cpu_time, + bool &success, double *host_q, double *boxlo, + double *prd) { + return BornCWCST.compute(ago, inum_full, nall, host_x, host_type, sublo, + subhi, tag, nspecial, special, eflag, vflag, eatom, + vatom, host_start, ilist, jnum, cpu_time, success, + host_q, boxlo, prd); +} + +void borncwcs_gpu_compute(const int ago, const int inum_full, const int nall, + double **host_x, int *host_type, int *ilist, int *numj, + int **firstneigh, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + const double cpu_time, bool &success, double *host_q, + const int nlocal, double *boxlo, double *prd) { + BornCWCST.compute(ago,inum_full,nall,host_x,host_type,ilist,numj, + firstneigh,eflag,vflag,eatom,vatom,host_start,cpu_time,success, + host_q,nlocal,boxlo,prd); +} + +double borncwcs_gpu_bytes() { + return BornCWCST.host_memory_usage(); +} + + diff --git a/lib/gpu/lal_born_coul_wolf_ext.cpp b/lib/gpu/lal_born_coul_wolf_ext.cpp index 254b1c905b5c0991065bcc721bd3b770395040ba..d664f302128df2e33bfe873ed511276bbf756cc7 100644 --- a/lib/gpu/lal_born_coul_wolf_ext.cpp +++ b/lib/gpu/lal_born_coul_wolf_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_born_coul_wolf.h" diff --git a/lib/gpu/lal_born_ext.cpp b/lib/gpu/lal_born_ext.cpp index b1ebf5804c471d883761c89c8effc8a1969df4eb..63991889d90ee35dbeb5fb35ac686a8fa1a8745b 100644 --- a/lib/gpu/lal_born_ext.cpp +++ b/lib/gpu/lal_born_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_born.h" diff --git a/lib/gpu/lal_buck_coul_ext.cpp b/lib/gpu/lal_buck_coul_ext.cpp index e5a5e1315bbf845a770a92e97b7842ef156451db..2a089e20403d17f395cb135270919acbd608cc00 100644 --- a/lib/gpu/lal_buck_coul_ext.cpp +++ b/lib/gpu/lal_buck_coul_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_buck_coul.h" diff --git a/lib/gpu/lal_buck_coul_long_ext.cpp b/lib/gpu/lal_buck_coul_long_ext.cpp index 28a89746b3cdedaf44df8fa6907c2b6560d19d6e..c7e1cd1e35862d769ab135908670a69609865ac7 100644 --- a/lib/gpu/lal_buck_coul_long_ext.cpp +++ b/lib/gpu/lal_buck_coul_long_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_buck_coul_long.h" diff --git a/lib/gpu/lal_buck_ext.cpp b/lib/gpu/lal_buck_ext.cpp index 336aab6d4c5e72cffc63dc8d1f94f9194cc8b423..cc8b77c0a9f0e288d57cbc0ac762310ebac84b4e 100644 --- a/lib/gpu/lal_buck_ext.cpp +++ b/lib/gpu/lal_buck_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_buck.h" diff --git a/lib/gpu/lal_charmm_long_ext.cpp b/lib/gpu/lal_charmm_long_ext.cpp index e24c650be4dafb02a792f763406c3bebbdbdd8dc..743b510825515561bb110b4a42e01b82b43147a8 100644 --- a/lib/gpu/lal_charmm_long_ext.cpp +++ b/lib/gpu/lal_charmm_long_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_charmm_long.h" diff --git a/lib/gpu/lal_colloid_ext.cpp b/lib/gpu/lal_colloid_ext.cpp index 8e1b18e72f11bdefdbbb63ec6d74895047547c1c..961ad75925e5e0a18f585fd2e8f1a1cc17d72930 100644 --- a/lib/gpu/lal_colloid_ext.cpp +++ b/lib/gpu/lal_colloid_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_colloid.h" diff --git a/lib/gpu/lal_coul_debye_ext.cpp b/lib/gpu/lal_coul_debye_ext.cpp index af9156c24c8339089143310c751370072a38d186..af54746defca665a6a6a8ce0f98ff04028f55260 100644 --- a/lib/gpu/lal_coul_debye_ext.cpp +++ b/lib/gpu/lal_coul_debye_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_coul_debye.h" diff --git a/lib/gpu/lal_coul_dsf_ext.cpp b/lib/gpu/lal_coul_dsf_ext.cpp index 026dd924c9c49f786231088835bd4e7719ef9d7e..2d18f9f94d65c723aeb0833791659b72a374d9a6 100644 --- a/lib/gpu/lal_coul_dsf_ext.cpp +++ b/lib/gpu/lal_coul_dsf_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_coul_dsf.h" diff --git a/lib/gpu/lal_coul_ext.cpp b/lib/gpu/lal_coul_ext.cpp index f03d8fcdfcd91c063bba63713bbfbf3ec960bc9d..9779526d62aeac9b2a55d079d0ba3da296d689d6 100644 --- a/lib/gpu/lal_coul_ext.cpp +++ b/lib/gpu/lal_coul_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_coul.h" diff --git a/lib/gpu/lal_coul_long.h b/lib/gpu/lal_coul_long.h index d12198fccc48fe37e262d1dfa63cdfea0b7ae844..ae25b91dc77a9322449fbcc5c1f96d994710838c 100644 --- a/lib/gpu/lal_coul_long.h +++ b/lib/gpu/lal_coul_long.h @@ -72,7 +72,7 @@ class CoulLong : public BaseCharge { numtyp _cut_coulsq, _qqrd2e, _g_ewald; - private: + protected: bool _allocated; void loop(const bool _eflag, const bool _vflag); }; diff --git a/lib/gpu/lal_coul_long_cs.cpp b/lib/gpu/lal_coul_long_cs.cpp new file mode 100644 index 0000000000000000000000000000000000000000..7afa0ae5d21bfb95bbf5c18315907250e7155318 --- /dev/null +++ b/lib/gpu/lal_coul_long_cs.cpp @@ -0,0 +1,78 @@ +/*************************************************************************** + coul_long_cs.cpp + ------------------- + Trung Nguyen (Northwestern) + + Class for acceleration of the coul/long pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : June 2018 + email : ndactrung@gmail.com + ***************************************************************************/ + +#if defined(USE_OPENCL) +#include "coul_long_cs_cl.h" +#elif defined(USE_CUDART) +const char *coul_long_cs=0; +#else +#include "coul_long_cs_cubin.h" +#endif + +#include "lal_coul_long_cs.h" +#include +using namespace LAMMPS_AL; +#define CoulLongCST CoulLongCS + +extern Device pair_gpu_device; + +template +int CoulLongCST::init(const int ntypes, double **host_scale, + const int nlocal, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *_screen, + const double host_cut_coulsq, double *host_special_coul, + const double qqrd2e, const double g_ewald) { + int success; + success=this->init_atomic(nlocal,nall,max_nbors,maxspecial,cell_size, + gpu_split,_screen,coul_long_cs,"k_coul_long_cs"); + if (success!=0) + return success; + + int lj_types=ntypes; + this->shared_types=false; + int max_shared_types=this->device->max_shared_types(); + if (lj_types<=max_shared_types && this->_block_size>=max_shared_types) { + lj_types=max_shared_types; + this->shared_types=true; + } + this->_lj_types=lj_types; + + // Allocate a host write buffer for data initialization + UCL_H_Vec host_write(lj_types*lj_types*32,*(this->ucl_device), + UCL_WRITE_ONLY); + + for (int i=0; iscale.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack1(ntypes,lj_types,this->scale,host_write,host_scale); + + this->sp_cl.alloc(4,*(this->ucl_device),UCL_READ_ONLY); + for (int i=0; i<4; i++) { + host_write[i]=host_special_coul[i]; + } + ucl_copy(this->sp_cl,host_write,4,false); + + this->_cut_coulsq=host_cut_coulsq; + this->_qqrd2e=qqrd2e; + this->_g_ewald=g_ewald; + + this->_allocated=true; + this->_max_bytes=this->scale.row_bytes()+this->sp_cl.row_bytes(); + return 0; +} + +template class CoulLongCS; diff --git a/lib/gpu/lal_coul_long_cs.cu b/lib/gpu/lal_coul_long_cs.cu new file mode 100644 index 0000000000000000000000000000000000000000..3c34666131d2d363c03bc6f684bd9b573b54c043 --- /dev/null +++ b/lib/gpu/lal_coul_long_cs.cu @@ -0,0 +1,367 @@ +// ************************************************************************** +// coul_long_cs.cu +// ------------------- +// Trung Nguyen (Northwestern) +// +// Device code for acceleration of the coul/long/cs pair style +// +// __________________________________________________________________________ +// This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) +// __________________________________________________________________________ +// +// begin : June 2018 +// email : ndactrung@gmail.com +// ***************************************************************************/ + +#ifdef NV_KERNEL + +#include "lal_aux_fun1.h" +#ifndef _DOUBLE_DOUBLE +texture pos_tex; +texture q_tex; +#else +texture pos_tex; +texture q_tex; +#endif + +#else +#define pos_tex x_ +#define q_tex q_ +#endif + +// Note: EWALD_P is different from that in lal_preprocessor.h +// acctyp is needed for these parameters +#define CS_EWALD_P (acctyp)9.95473818e-1 +#define B0 (acctyp)-0.1335096380159268 +#define B1 (acctyp)-2.57839507e-1 +#define B2 (acctyp)-1.37203639e-1 +#define B3 (acctyp)-8.88822059e-3 +#define B4 (acctyp)-5.80844129e-3 +#define B5 (acctyp)1.14652755e-1 + +#define EPSILON (acctyp)(1.0e-20) +#define EPS_EWALD (acctyp)(1.0e-6) +#define EPS_EWALD_SQR (acctyp)(1.0e-12) + +#if (ARCH < 300) + +#define store_answers_lq(f, e_coul, virial, ii, inum, tid, \ + t_per_atom, offset, eflag, vflag, ans, engv) \ + if (t_per_atom>1) { \ + __local acctyp red_acc[6][BLOCK_PAIR]; \ + \ + red_acc[0][tid]=f.x; \ + red_acc[1][tid]=f.y; \ + red_acc[2][tid]=f.z; \ + red_acc[3][tid]=e_coul; \ + \ + for (unsigned int s=t_per_atom/2; s>0; s>>=1) { \ + if (offset < s) { \ + for (int r=0; r<4; r++) \ + red_acc[r][tid] += red_acc[r][tid+s]; \ + } \ + } \ + \ + f.x=red_acc[0][tid]; \ + f.y=red_acc[1][tid]; \ + f.z=red_acc[2][tid]; \ + e_coul=red_acc[3][tid]; \ + \ + if (vflag>0) { \ + for (int r=0; r<6; r++) \ + red_acc[r][tid]=virial[r]; \ + \ + for (unsigned int s=t_per_atom/2; s>0; s>>=1) { \ + if (offset < s) { \ + for (int r=0; r<6; r++) \ + red_acc[r][tid] += red_acc[r][tid+s]; \ + } \ + } \ + \ + for (int r=0; r<6; r++) \ + virial[r]=red_acc[r][tid]; \ + } \ + } \ + \ + if (offset==0) { \ + __global acctyp *ap1=engv+ii; \ + if (eflag>0) { \ + *ap1=(acctyp)0; \ + ap1+=inum; \ + *ap1=e_coul*(acctyp)0.5; \ + ap1+=inum; \ + } \ + if (vflag>0) { \ + for (int i=0; i<6; i++) { \ + *ap1=virial[i]*(acctyp)0.5; \ + ap1+=inum; \ + } \ + } \ + ans[ii]=f; \ + } + +#else + +#define store_answers_lq(f, e_coul, virial, ii, inum, tid, \ + t_per_atom, offset, eflag, vflag, ans, engv) \ + if (t_per_atom>1) { \ + for (unsigned int s=t_per_atom/2; s>0; s>>=1) { \ + f.x += shfl_xor(f.x, s, t_per_atom); \ + f.y += shfl_xor(f.y, s, t_per_atom); \ + f.z += shfl_xor(f.z, s, t_per_atom); \ + e_coul += shfl_xor(e_coul, s, t_per_atom); \ + } \ + if (vflag>0) { \ + for (unsigned int s=t_per_atom/2; s>0; s>>=1) { \ + for (int r=0; r<6; r++) \ + virial[r] += shfl_xor(virial[r], s, t_per_atom); \ + } \ + } \ + } \ + if (offset==0) { \ + __global acctyp *ap1=engv+ii; \ + if (eflag>0) { \ + *ap1=(acctyp)0; \ + ap1+=inum; \ + *ap1=e_coul*(acctyp)0.5; \ + ap1+=inum; \ + } \ + if (vflag>0) { \ + for (int i=0; i<6; i++) { \ + *ap1=virial[i]*(acctyp)0.5; \ + ap1+=inum; \ + } \ + } \ + ans[ii]=f; \ + } + +#endif + +__kernel void k_coul_long_cs(const __global numtyp4 *restrict x_, + const __global numtyp *restrict scale, + const int lj_types, + const __global numtyp *restrict sp_cl_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp g_ewald, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp sp_cl[4]; + sp_cl[0]=sp_cl_in[0]; + sp_cl[1]=sp_cl_in[1]; + sp_cl[2]=sp_cl_in[2]; + sp_cl[3]=sp_cl_in[3]; + + acctyp e_coul=(acctyp)0; + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp virial[6]; + for (int i=0; i<6; i++) + virial[i]=(acctyp)0; + + if (ii0) { + numtyp e = prefactor*_erfc; + if (factor_coul<(numtyp)1.0) e -= ((numtyp)1.0-factor_coul)*prefactor; + e_coul += e; + } + if (vflag>0) { + virial[0] += delx*delx*force; + virial[1] += dely*dely*force; + virial[2] += delz*delz*force; + virial[3] += delx*dely*force; + virial[4] += delx*delz*force; + virial[5] += dely*delz*force; + } + } + + } // for nbor + store_answers_lq(f,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + +__kernel void k_coul_long_cs_fast(const __global numtyp4 *restrict x_, + const __global numtyp *restrict scale_in, + const __global numtyp *restrict sp_cl_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp g_ewald, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp scale[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp sp_cl[4]; + if (tid<4) + sp_cl[tid]=sp_cl_in[tid]; + if (tid0) { + numtyp e = prefactor*_erfc; + if (factor_coul<(numtyp)1.0) e -= ((numtyp)1.0-factor_coul)*prefactor; + e_coul += e; + } + if (vflag>0) { + virial[0] += delx*delx*force; + virial[1] += dely*dely*force; + virial[2] += delz*delz*force; + virial[3] += delx*dely*force; + virial[4] += delx*delz*force; + virial[5] += dely*delz*force; + } + } + + } // for nbor + store_answers_lq(f,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + diff --git a/lib/gpu/lal_coul_long_cs.h b/lib/gpu/lal_coul_long_cs.h new file mode 100644 index 0000000000000000000000000000000000000000..3cfcb80fc86c9ab3f3066e086533cad795a378be --- /dev/null +++ b/lib/gpu/lal_coul_long_cs.h @@ -0,0 +1,50 @@ +/*************************************************************************** + coul_long_cs.h + ------------------- + Trung Nguyen (Northwestern) + + Class for acceleration of the coul/long/cs pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : June 2018 + email : ndactrung@gmail.com + ***************************************************************************/ + +#ifndef LAL_COUL_LONG_CS_H +#define LAL_COUL_LONG_CS_H + +#include "lal_coul_long.h" + +namespace LAMMPS_AL { + +template +class CoulLongCS : public CoulLong { + public: + CoulLongCS() {} + ~CoulLongCS() {} + + /// Clear any previous data and set up for a new LAMMPS run + /** \param max_nbors initial number of rows in the neighbor matrix + * \param cell_size cutoff + skin + * \param gpu_split fraction of particles handled by device + * + * Returns: + * - 0 if successfull + * - -1 if fix gpu not found + * - -3 if there is an out of memory error + * - -4 if the GPU library was not compiled for GPU + * - -5 Double precision is not supported on card **/ + int init(const int ntypes, double **scale, + const int nlocal, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *screen, + const double host_cut_coulsq, double *host_special_coul, + const double qqrd2e, const double g_ewald); +}; + +} + +#endif diff --git a/lib/gpu/lal_coul_long_cs_ext.cpp b/lib/gpu/lal_coul_long_cs_ext.cpp new file mode 100644 index 0000000000000000000000000000000000000000..ae57eb20382a0e47e1d987921e521d84a169dfb3 --- /dev/null +++ b/lib/gpu/lal_coul_long_cs_ext.cpp @@ -0,0 +1,145 @@ +/*************************************************************************** + coul_long_cs_ext.cpp + ------------------- + Trung Nguyen (Northwestern) + + Functions for LAMMPS access to coul/long/cs acceleration routines. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : June 2018 + email : ndactrung@gmail.com + ***************************************************************************/ + +#include +#include +#include + +#include "lal_coul_long_cs.h" + +using namespace std; +using namespace LAMMPS_AL; + +static CoulLongCS CLCSMF; + +// --------------------------------------------------------------------------- +// Allocate memory on host and device and copy constants to device +// --------------------------------------------------------------------------- +int clcs_gpu_init(const int ntypes, double **host_scale, + const int inum, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, int &gpu_mode, + FILE *screen, double host_cut_coulsq, double *host_special_coul, + const double qqrd2e, const double g_ewald) { + CLCSMF.clear(); + gpu_mode=CLCSMF.device->gpu_mode(); + double gpu_split=CLCSMF.device->particle_split(); + int first_gpu=CLCSMF.device->first_device(); + int last_gpu=CLCSMF.device->last_device(); + int world_me=CLCSMF.device->world_me(); + int gpu_rank=CLCSMF.device->gpu_rank(); + int procs_per_gpu=CLCSMF.device->procs_per_gpu(); + + CLCSMF.device->init_message(screen,"coul/long/cs",first_gpu,last_gpu); + + bool message=false; + if (CLCSMF.device->replica_me()==0 && screen) + message=true; + + if (message) { + fprintf(screen,"Initializing Device and compiling on process 0..."); + fflush(screen); + } + + int init_ok=0; + if (world_me==0) + init_ok=CLCSMF.init(ntypes, host_scale, inum, nall, 300, maxspecial, + cell_size, gpu_split, screen, host_cut_coulsq, + host_special_coul, qqrd2e, g_ewald); + + CLCSMF.device->world_barrier(); + if (message) + fprintf(screen,"Done.\n"); + + for (int i=0; igpu_barrier(); + if (message) + fprintf(screen,"Done.\n"); + } + if (message) + fprintf(screen,"\n"); + + if (init_ok==0) + CLCSMF.estimate_gpu_overhead(); + return init_ok; +} + +// --------------------------------------------------------------------------- +// Copy updated coeffs from host to device +// --------------------------------------------------------------------------- +void clcs_gpu_reinit(const int ntypes, double **host_scale) { + int world_me=CLCSMF.device->world_me(); + int gpu_rank=CLCSMF.device->gpu_rank(); + int procs_per_gpu=CLCSMF.device->procs_per_gpu(); + + if (world_me==0) + CLCSMF.reinit(ntypes, host_scale); + + CLCSMF.device->world_barrier(); + + for (int i=0; igpu_barrier(); + } +} + +void clcs_gpu_clear() { + CLCSMF.clear(); +} + +int** clcs_gpu_compute_n(const int ago, const int inum_full, + const int nall, double **host_x, int *host_type, + double *sublo, double *subhi, tagint *tag, int **nspecial, + tagint **special, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + int **ilist, int **jnum, const double cpu_time, + bool &success, double *host_q, double *boxlo, + double *prd) { + return CLCSMF.compute(ago, inum_full, nall, host_x, host_type, sublo, + subhi, tag, nspecial, special, eflag, vflag, eatom, + vatom, host_start, ilist, jnum, cpu_time, success, + host_q, boxlo, prd); +} + +void clcs_gpu_compute(const int ago, const int inum_full, const int nall, + double **host_x, int *host_type, int *ilist, int *numj, + int **firstneigh, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + const double cpu_time, bool &success, double *host_q, + const int nlocal, double *boxlo, double *prd) { + CLCSMF.compute(ago,inum_full,nall,host_x,host_type,ilist,numj, + firstneigh,eflag,vflag,eatom,vatom,host_start,cpu_time,success, + host_q,nlocal,boxlo,prd); +} + +double clcs_gpu_bytes() { + return CLCSMF.host_memory_usage(); +} + + diff --git a/lib/gpu/lal_coul_long_ext.cpp b/lib/gpu/lal_coul_long_ext.cpp index 06c102b2d19f16917ca3d0f1a9ef86da47f4e0a0..653b4be4f322ec70bb1388aaa3cfa22498070ec9 100644 --- a/lib/gpu/lal_coul_long_ext.cpp +++ b/lib/gpu/lal_coul_long_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_coul_long.h" diff --git a/lib/gpu/lal_device.cpp b/lib/gpu/lal_device.cpp index e95f2b30efcc0356646fc0fdf5035034ccb8c996..6b4d0ab2a504e404a72af7bf35d3bc436f9fdd8a 100644 --- a/lib/gpu/lal_device.cpp +++ b/lib/gpu/lal_device.cpp @@ -16,7 +16,7 @@ #include "lal_device.h" #include "lal_precision.h" #include -#include +#include #ifdef _OPENMP #include #endif @@ -34,8 +34,8 @@ using namespace LAMMPS_AL; template DeviceT::Device() : _init_count(0), _device_init(false), - _gpu_mode(GPU_FORCE), _first_device(0), - _last_device(0), _compiled(false) { + _gpu_mode(GPU_FORCE), _first_device(0), + _last_device(0), _platform_id(-1), _compiled(false) { } template @@ -67,6 +67,17 @@ int DeviceT::init_device(MPI_Comm world, MPI_Comm replica, const int first_gpu, _particle_split=p_split; _cell_size=cell_size; _block_pair=block_pair; + // support selecting platform though "package device" keyword. + // "0:generic" will select platform 0 and tune for generic device + // "1:fermi" will select platform 1 and tune for Nvidia Fermi gpu + if (ocl_vendor) { + char *sep = NULL; + if ((sep = strstr(ocl_vendor,":"))) { + *sep = '\0'; + _platform_id = atoi(ocl_vendor); + ocl_vendor = sep+1; + } + } // Get the rank/size within the world MPI_Comm_rank(_comm_world,&_world_me); @@ -78,9 +89,9 @@ int DeviceT::init_device(MPI_Comm world, MPI_Comm replica, const int first_gpu, // Get the names of all nodes int name_length; char node_name[MPI_MAX_PROCESSOR_NAME]; - char node_names[MPI_MAX_PROCESSOR_NAME*_world_size]; + char *node_names = new char[MPI_MAX_PROCESSOR_NAME*_world_size]; MPI_Get_processor_name(node_name,&name_length); - MPI_Allgather(&node_name,MPI_MAX_PROCESSOR_NAME,MPI_CHAR,&node_names, + MPI_Allgather(&node_name,MPI_MAX_PROCESSOR_NAME,MPI_CHAR,&node_names[0], MPI_MAX_PROCESSOR_NAME,MPI_CHAR,_comm_world); std::string node_string=std::string(node_name); @@ -104,6 +115,7 @@ int DeviceT::init_device(MPI_Comm world, MPI_Comm replica, const int first_gpu, split_id=split_num; split_num++; } + delete[] node_names; // Set up a per node communicator and find rank within MPI_Comm node_comm; @@ -118,8 +130,16 @@ int DeviceT::init_device(MPI_Comm world, MPI_Comm replica, const int first_gpu, // Time on the device only if 1 proc per gpu _time_device=true; + +#if 0 + // XXX: the following setting triggers a memory leak with OpenCL and MPI + // setting _time_device=true for all processes doesn't seem to be a + // problem with either (no segfault, no (large) memory leak. + // thus keeping this disabled for now. may need to review later. + // 2018-07-23 if (_procs_per_gpu>1) _time_device=false; +#endif // Set up a per device communicator MPI_Comm_split(node_comm,my_gpu,0,&_comm_gpu); @@ -134,6 +154,9 @@ int DeviceT::init_device(MPI_Comm world, MPI_Comm replica, const int first_gpu, return -7; #endif + if (gpu->set_platform_accelerator(_platform_id)!=UCL_SUCCESS) + return -12; + if (gpu->set(my_gpu)!=UCL_SUCCESS) return -6; @@ -190,13 +213,15 @@ int DeviceT::set_ocl_params(char *ocl_vendor) { _ocl_vendor_string="-DUSE_OPENCL"; int token_count=0; std::string params[13]; - char *pch = strtok(ocl_vendor,"\" "); + char *pch = strtok(ocl_vendor,","); + pch = strtok(NULL,","); + if (pch == NULL) return -11; while (pch != NULL) { if (token_count==13) return -11; params[token_count]=pch; token_count++; - pch = strtok(NULL,"\" "); + pch = strtok(NULL,","); } _ocl_vendor_string+=" -DMEM_THREADS="+params[0]+ " -DTHREADS_PER_ATOM="+params[1]+ @@ -655,7 +680,7 @@ int DeviceT::compile_kernels() { dev_program=new UCL_Program(*gpu); int success=dev_program->load_string(device,compile_string().c_str()); if (success!=UCL_SUCCESS) - return -4; + return -6; k_zero.set_function(*dev_program,"kernel_zero"); k_info.set_function(*dev_program,"kernel_info"); _compiled=true; diff --git a/lib/gpu/lal_device.h b/lib/gpu/lal_device.h index 4f7b594c7c9ae7f86e059cee98ffa33b3711be4f..695b0a62f9236f9f4e16119391ce05c6eafbf8e8 100644 --- a/lib/gpu/lal_device.h +++ b/lib/gpu/lal_device.h @@ -22,7 +22,7 @@ #include "lal_pppm.h" #include "mpi.h" #include -#include "stdio.h" +#include #include #include @@ -292,7 +292,7 @@ class Device { MPI_Comm _comm_world, _comm_replica, _comm_gpu; int _procs_per_gpu, _gpu_rank, _world_me, _world_size, _replica_me, _replica_size; - int _gpu_mode, _first_device, _last_device, _nthreads; + int _gpu_mode, _first_device, _last_device, _platform_id, _nthreads; double _particle_split; double _cpu_full; double _ptx_arch; diff --git a/lib/gpu/lal_dipole_lj_ext.cpp b/lib/gpu/lal_dipole_lj_ext.cpp index 76722a20b41c3b6992783ec80c5b141a184864ac..0a94969c8b3115952fa95b0f9b4cb7798854eecf 100644 --- a/lib/gpu/lal_dipole_lj_ext.cpp +++ b/lib/gpu/lal_dipole_lj_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_dipole_lj.h" diff --git a/lib/gpu/lal_dipole_lj_sf_ext.cpp b/lib/gpu/lal_dipole_lj_sf_ext.cpp index 68b935ff38f59add31f3a032a7907e629ec5a6f0..3626e8305ea36dd13844c7a9b9654c9d55bfac4a 100644 --- a/lib/gpu/lal_dipole_lj_sf_ext.cpp +++ b/lib/gpu/lal_dipole_lj_sf_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_dipole_lj_sf.h" diff --git a/lib/gpu/lal_dipole_long_lj.cpp b/lib/gpu/lal_dipole_long_lj.cpp new file mode 100644 index 0000000000000000000000000000000000000000..251e1def92972a9cfd317d0033a5b4e6893213a1 --- /dev/null +++ b/lib/gpu/lal_dipole_long_lj.cpp @@ -0,0 +1,173 @@ +/*************************************************************************** + dipole_lj.cpp + ------------------- + Trung Dac Nguyen (ORNL) + + Class for acceleration of the dipole/cut pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : nguyentd@ornl.gov + ***************************************************************************/ + +#ifdef USE_OPENCL +#include "dipole_long_lj_cl.h" +#elif defined(USE_CUDART) +const char *dipole_long_lj=0; +#else +#include "dipole_long_lj_cubin.h" +#endif + +#include "lal_dipole_long_lj.h" +#include +using namespace LAMMPS_AL; +#define DipoleLongLJT DipoleLongLJ + +extern Device device; + +template +DipoleLongLJT::DipoleLongLJ() : BaseDipole(), + _allocated(false) { +} + +template +DipoleLongLJT::~DipoleLongLJ() { + clear(); +} + +template +int DipoleLongLJT::bytes_per_atom(const int max_nbors) const { + return this->bytes_per_atom_atomic(max_nbors); +} + +template +int DipoleLongLJT::init(const int ntypes, + double **host_cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, + double **host_lj4, double **host_offset, + double *host_special_lj, const int nlocal, + const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *_screen, + double **host_cut_ljsq, const double host_cut_coulsq, + double *host_special_coul, const double qqrd2e, + const double g_ewald) { + int success; + success=this->init_atomic(nlocal,nall,max_nbors,maxspecial,cell_size,gpu_split, + _screen,dipole_long_lj,"k_dipole_long_lj"); + if (success!=0) + return success; + + // If atom type constants fit in shared memory use fast kernel + int lj_types=ntypes; + shared_types=false; + int max_shared_types=this->device->max_shared_types(); + if (lj_types<=max_shared_types && this->_block_size>=max_shared_types) { + lj_types=max_shared_types; + shared_types=true; + } + _lj_types=lj_types; + + // Allocate a host write buffer for data initialization + UCL_H_Vec host_write(lj_types*lj_types*32,*(this->ucl_device), + UCL_WRITE_ONLY); + + for (int i=0; iucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,lj1,host_write,host_lj1,host_lj2, + host_cut_ljsq); + + lj3.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,lj3,host_write,host_lj3,host_lj4, + host_offset); + + cutsq.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack1(ntypes,lj_types,cutsq,host_write,host_cutsq); + + sp_lj.alloc(8,*(this->ucl_device),UCL_READ_ONLY); + for (int i=0; i<4; i++) { + host_write[i]=host_special_lj[i]; + host_write[i+4]=host_special_coul[i]; + } + ucl_copy(sp_lj,host_write,8,false); + + _cut_coulsq=host_cut_coulsq; + _qqrd2e=qqrd2e; + _g_ewald=g_ewald; + + _allocated=true; + this->_max_bytes=lj1.row_bytes()+lj3.row_bytes()+cutsq.row_bytes()+ + sp_lj.row_bytes(); + return 0; +} + +template +void DipoleLongLJT::clear() { + if (!_allocated) + return; + _allocated=false; + + lj1.clear(); + lj3.clear(); + cutsq.clear(); + sp_lj.clear(); + this->clear_atomic(); +} + +template +double DipoleLongLJT::host_memory_usage() const { + return this->host_memory_usage_atomic()+sizeof(DipoleLongLJ); +} + +// --------------------------------------------------------------------------- +// Calculate energies, forces, and torques +// --------------------------------------------------------------------------- +template +void DipoleLongLJT::loop(const bool _eflag, const bool _vflag) { + // Compute the block size and grid size to keep all cores busy + const int BX=this->block_size(); + int eflag, vflag; + if (_eflag) + eflag=1; + else + eflag=0; + + if (_vflag) + vflag=1; + else + vflag=0; + + int GX=static_cast(ceil(static_cast(this->ans->inum())/ + (BX/this->_threads_per_atom))); + + int ainum=this->ans->inum(); + int nbor_pitch=this->nbor->nbor_pitch(); + this->time_pair.start(); + if (shared_types) { + this->k_pair_fast.set_size(GX,BX); + this->k_pair_fast.run(&this->atom->x, &lj1, &lj3, &sp_lj, + &this->nbor->dev_nbor, + &this->_nbor_data->begin(), + &this->ans->force, &this->ans->engv, &eflag, &vflag, + &ainum, &nbor_pitch, &this->atom->q, + &this->atom->quat, &cutsq, &_cut_coulsq, + &_qqrd2e, &_g_ewald, &this->_threads_per_atom); + } else { + this->k_pair.set_size(GX,BX); + this->k_pair.run(&this->atom->x, &lj1, &lj3, + &_lj_types, &sp_lj, &this->nbor->dev_nbor, + &this->_nbor_data->begin(), &this->ans->force, + &this->ans->engv, &eflag, &vflag, &ainum, + &nbor_pitch, &this->atom->q, + &this->atom->quat, &cutsq, &_cut_coulsq, + &_qqrd2e, &_g_ewald, &this->_threads_per_atom); + } + this->time_pair.stop(); +} + +template class DipoleLongLJ; diff --git a/lib/gpu/lal_dipole_long_lj.cu b/lib/gpu/lal_dipole_long_lj.cu new file mode 100644 index 0000000000000000000000000000000000000000..f888dece9b513001b4af9309ebc76e7b30f060d2 --- /dev/null +++ b/lib/gpu/lal_dipole_long_lj.cu @@ -0,0 +1,640 @@ +// ************************************************************************** +// dipole_lj.cu +// ------------------- +// Trung Dac Nguyen (ORNL) +// +// Device code for acceleration of the dipole/cut pair style +// +// __________________________________________________________________________ +// This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) +// __________________________________________________________________________ +// +// begin : +// email : nguyentd@ornl.gov +// ***************************************************************************/ + +#ifdef NV_KERNEL +#include "lal_aux_fun1.h" +#ifndef _DOUBLE_DOUBLE +texture pos_tex; +texture q_tex; +texture mu_tex; +#else +texture pos_tex; +texture q_tex; +texture mu_tex; +#endif + +#else +#define pos_tex x_ +#define q_tex q_ +#define mu_tex mu_ +#endif + +#if (ARCH < 300) + +#define store_answers_tq(f, tor, energy, ecoul, virial, ii, inum, tid, \ + t_per_atom, offset, eflag, vflag, ans, engv) \ + if (t_per_atom>1) { \ + __local acctyp red_acc[8][BLOCK_PAIR]; \ + red_acc[0][tid]=f.x; \ + red_acc[1][tid]=f.y; \ + red_acc[2][tid]=f.z; \ + red_acc[3][tid]=tor.x; \ + red_acc[4][tid]=tor.y; \ + red_acc[5][tid]=tor.z; \ + for (unsigned int s=t_per_atom/2; s>0; s>>=1) { \ + if (offset < s) { \ + for (int r=0; r<6; r++) \ + red_acc[r][tid] += red_acc[r][tid+s]; \ + } \ + } \ + f.x=red_acc[0][tid]; \ + f.y=red_acc[1][tid]; \ + f.z=red_acc[2][tid]; \ + tor.x=red_acc[3][tid]; \ + tor.y=red_acc[4][tid]; \ + tor.z=red_acc[5][tid]; \ + if (eflag>0 || vflag>0) { \ + for (int r=0; r<6; r++) \ + red_acc[r][tid]=virial[r]; \ + red_acc[6][tid]=energy; \ + red_acc[7][tid]=ecoul; \ + for (unsigned int s=t_per_atom/2; s>0; s>>=1) { \ + if (offset < s) { \ + for (int r=0; r<8; r++) \ + red_acc[r][tid] += red_acc[r][tid+s]; \ + } \ + } \ + for (int r=0; r<6; r++) \ + virial[r]=red_acc[r][tid]; \ + energy=red_acc[6][tid]; \ + ecoul=red_acc[7][tid]; \ + } \ + } \ + if (offset==0) { \ + int ei=ii; \ + if (eflag>0) { \ + engv[ei]=energy*(acctyp)0.5; \ + ei+=inum; \ + engv[ei]=e_coul*(acctyp)0.5; \ + ei+=inum; \ + } \ + if (vflag>0) { \ + for (int i=0; i<6; i++) { \ + engv[ei]=virial[i]*(acctyp)0.5; \ + ei+=inum; \ + } \ + } \ + ans[ii]=f; \ + ans[ii+inum]=tor; \ + } + +#else + +#define store_answers_tq(f, tor, energy, e_coul, virial, ii, inum, tid, \ + t_per_atom, offset, eflag, vflag, ans, engv) \ + if (t_per_atom>1) { \ + for (unsigned int s=t_per_atom/2; s>0; s>>=1) { \ + f.x += shfl_xor(f.x, s, t_per_atom); \ + f.y += shfl_xor(f.y, s, t_per_atom); \ + f.z += shfl_xor(f.z, s, t_per_atom); \ + tor.x += shfl_xor(tor.x, s, t_per_atom); \ + tor.y += shfl_xor(tor.y, s, t_per_atom); \ + tor.z += shfl_xor(tor.z, s, t_per_atom); \ + energy += shfl_xor(energy, s, t_per_atom); \ + e_coul += shfl_xor(e_coul, s, t_per_atom); \ + } \ + if (vflag>0) { \ + for (unsigned int s=t_per_atom/2; s>0; s>>=1) { \ + for (int r=0; r<6; r++) \ + virial[r] += shfl_xor(virial[r], s, t_per_atom); \ + } \ + } \ + } \ + if (offset==0) { \ + int ei=ii; \ + if (eflag>0) { \ + engv[ei]=energy*(acctyp)0.5; \ + ei+=inum; \ + engv[ei]=e_coul*(acctyp)0.5; \ + ei+=inum; \ + } \ + if (vflag>0) { \ + for (int i=0; i<6; i++) { \ + engv[ei]=virial[i]*(acctyp)0.5; \ + ei+=inum; \ + } \ + } \ + ans[ii]=f; \ + ans[ii+inum]=tor; \ + } + +#endif + +#define MY_PIS (acctyp)1.77245385090551602729 + +__kernel void k_dipole_long_lj(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict lj1, + const __global numtyp4 *restrict lj3, + const int lj_types, + const __global numtyp *restrict sp_lj_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const __global numtyp4 *restrict mu_, + const __global numtyp *restrict cutsq, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp g_ewald, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp sp_lj[8]; + sp_lj[0]=sp_lj_in[0]; + sp_lj[1]=sp_lj_in[1]; + sp_lj[2]=sp_lj_in[2]; + sp_lj[3]=sp_lj_in[3]; + sp_lj[4]=sp_lj_in[4]; + sp_lj[5]=sp_lj_in[5]; + sp_lj[6]=sp_lj_in[6]; + sp_lj[7]=sp_lj_in[7]; + + acctyp energy=(acctyp)0; + acctyp e_coul=(acctyp)0; + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp4 tor; + tor.x=(acctyp)0; + tor.y=(acctyp)0; + tor.z=(acctyp)0; + acctyp virial[6]; + for (int i=0; i<6; i++) + virial[i]=(acctyp)0; + + numtyp pre1 = numtyp(2.0) * g_ewald / MY_PIS; + numtyp pre2 = numtyp(4.0) * (g_ewald*g_ewald*g_ewald) / MY_PIS; + numtyp pre3 = numtyp(8.0) * (g_ewald*g_ewald*g_ewald*g_ewald*g_ewald) / MY_PIS; + + if (ii (numtyp)0.0) { + b0 = _erfc * rinv; + b1 = (b0 + pre1*expm2) * r2inv; + b2 = ((numtyp)3.0*b1 + pre2*expm2) * r2inv; + b3 = ((numtyp)5.0*b2 + pre3*expm2) * r2inv; + + g0b1_g1b2_g2b3 = g0*b1 + g1*b2 + g2*b3; + fdx = delx * g0b1_g1b2_g2b3 - + b1 * (qtmp*muj.x - qj*mui.x) + + b2 * (pjdotr*mui.x + pidotr*muj.x); + fdy = dely * g0b1_g1b2_g2b3 - + b1 * (qtmp*muj.y - qj*mui.y) + + b2 * (pjdotr*mui.y + pidotr*muj.y); + fdz = delz * g0b1_g1b2_g2b3 - + b1 * (qtmp*muj.z - qj*mui.z) + + b2 * (pjdotr*mui.z + pidotr*muj.z); + + zdix = delx * (qj*b1 + b2*pjdotr) - b1*muj.x; + zdiy = dely * (qj*b1 + b2*pjdotr) - b1*muj.y; + zdiz = delz * (qj*b1 + b2*pjdotr) - b1*muj.z; + zdjx = delx * (-qtmp*b1 + b2*pidotr) - b1*mui.x; + zdjy = dely * (-qtmp*b1 + b2*pidotr) - b1*mui.y; + zdjz = delz * (-qtmp*b1 + b2*pidotr) - b1*mui.z; + + if (factor_coul < (numtyp)1.0) { + fdx *= factor_coul; + fdy *= factor_coul; + fdz *= factor_coul; + zdix *= factor_coul; + zdiy *= factor_coul; + zdiz *= factor_coul; + zdjx *= factor_coul; + zdjy *= factor_coul; + zdjz *= factor_coul; + } + } else { + fdx = fdy = fdz = (numtyp)0.0; + zdix = zdiy = zdiz = (numtyp)0.0; + zdjx = zdjy = zdjz = (numtyp)0.0; + } + + if (factor_coul < (numtyp)1.0) { + d0 = (_erfc - (numtyp)1.0) * rinv; + d1 = (d0 + pre1*expm2) * r2inv; + d2 = ((numtyp)3.0*d1 + pre2*expm2) * r2inv; + d3 = ((numtyp)5.0*d2 + pre3*expm2) * r2inv; + + g0d1_g1d2_g2d3 = g0*d1 + g1*d2 + g2*d3; + fax = delx * g0d1_g1d2_g2d3 - + d1 * (qtmp*muj.x - qj*mui.x) + + d2 * (pjdotr*mui.x + pidotr*muj.x); + fay = dely * g0d1_g1d2_g2d3 - + d1 * (qtmp*muj.y - qj*mui.y) + + d2 * (pjdotr*mui.y + pidotr*muj.y); + faz = delz * g0d1_g1d2_g2d3 - + d1 * (qtmp*muj.z - qj*mui.z) + + d2 * (pjdotr*mui.z + pidotr*muj.z); + + zaix = delx * (qj*d1 + d2*pjdotr) - d1*muj.x; + zaiy = dely * (qj*d1 + d2*pjdotr) - d1*muj.y; + zaiz = delz * (qj*d1 + d2*pjdotr) - d1*muj.z; + zajx = delx * (-qtmp*d1 + d2*pidotr) - d1*mui.x; + zajy = dely * (-qtmp*d1 + d2*pidotr) - d1*mui.y; + zajz = delz * (-qtmp*d1 + d2*pidotr) - d1*mui.z; + + if (factor_coul > (numtyp)0.0) { + facm1 = (numtyp)1.0 - factor_coul; + fax *= facm1; + fay *= facm1; + faz *= facm1; + zaix *= facm1; + zaiy *= facm1; + zaiz *= facm1; + zajx *= facm1; + zajy *= facm1; + zajz *= facm1; + } + } else { + fax = fay = faz = (numtyp)0.0; + zaix = zaiy = zaiz = (numtyp)0.0; + zajx = zajy = zajz = (numtyp)0.0; + } + + forcecoul.x = fdx + fax; + forcecoul.y = fdy + fay; + forcecoul.z = fdz + faz; + + ticoul.x = mui.y*(zdiz + zaiz) - mui.z*(zdiy + zaiy); + ticoul.y = mui.z*(zdix + zaix) - mui.x*(zdiz + zaiz); + ticoul.z = mui.x*(zdiy + zaiy) - mui.y*(zdix + zaix); + + } else { + forcecoul.x = forcecoul.y = forcecoul.z = (numtyp)0.0; + ticoul.x = ticoul.y = ticoul.z = (numtyp)0.0; + } + + force.x = qqrd2e*forcecoul.x + delx*force_lj; + force.y = qqrd2e*forcecoul.y + dely*force_lj; + force.z = qqrd2e*forcecoul.z + delz*force_lj; + f.x+=force.x; + f.y+=force.y; + f.z+=force.z; + tor.x+=qqrd2e*ticoul.x; + tor.y+=qqrd2e*ticoul.y; + tor.z+=qqrd2e*ticoul.z; + + if (eflag>0) { + acctyp e = (acctyp)0.0; + if (rsq < cut_coulsq && factor_coul > (numtyp)0.0) { + e = qqrd2e*(b0*g0 + b1*g1 + b2*g2); + if (factor_coul < (numtyp)1.0) { + e_coul *= factor_coul; + e_coul += ((numtyp)1.0-factor_coul) * qqrd2e * (d0*g0 + d1*g1 + d2*g2); + } + } else e = (acctyp)0.0; + e_coul += e; + + if (rsq < lj1[mtype].z) { + e=r6inv*(lj3[mtype].x*r6inv-lj3[mtype].y); + energy+=factor_lj*(e-lj3[mtype].z); + } + } + if (vflag>0) { + virial[0] += delx*force.x; + virial[1] += dely*force.y; + virial[2] += delz*force.z; + virial[3] += delx*force.y; + virial[4] += delx*force.z; + virial[5] += dely*force.z; + } + } + + } // for nbor + store_answers_tq(f,tor,energy,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + +__kernel void k_dipole_long_lj_fast(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict lj1_in, + const __global numtyp4 *restrict lj3_in, + const __global numtyp *restrict sp_lj_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const __global numtyp4 *restrict mu_, + const __global numtyp *restrict _cutsq, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp g_ewald, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp4 lj1[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp4 lj3[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp cutsq[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp sp_lj[8]; + if (tid<8) + sp_lj[tid]=sp_lj_in[tid]; + if (tid0) + lj3[tid]=lj3_in[tid]; + } + + acctyp energy=(acctyp)0; + acctyp e_coul=(acctyp)0; + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp4 tor; + tor.x=(acctyp)0; + tor.y=(acctyp)0; + tor.z=(acctyp)0; + acctyp virial[6]; + for (int i=0; i<6; i++) + virial[i]=(acctyp)0; + + __syncthreads(); + + numtyp pre1 = numtyp(2.0) * g_ewald / MY_PIS; + numtyp pre2 = numtyp(4.0) * (g_ewald*g_ewald*g_ewald) / MY_PIS; + numtyp pre3 = numtyp(8.0) * (g_ewald*g_ewald*g_ewald*g_ewald*g_ewald) / MY_PIS; + + if (ii (numtyp)0.0) { + b0 = _erfc * rinv; + b1 = (b0 + pre1*expm2) * r2inv; + b2 = ((numtyp)3.0*b1 + pre2*expm2) * r2inv; + b3 = ((numtyp)5.0*b2 + pre3*expm2) * r2inv; + + g0b1_g1b2_g2b3 = g0*b1 + g1*b2 + g2*b3; + fdx = delx * g0b1_g1b2_g2b3 - + b1 * (qtmp*muj.x - qj*mui.x) + + b2 * (pjdotr*mui.x + pidotr*muj.x); + fdy = dely * g0b1_g1b2_g2b3 - + b1 * (qtmp*muj.y - qj*mui.y) + + b2 * (pjdotr*mui.y + pidotr*muj.y); + fdz = delz * g0b1_g1b2_g2b3 - + b1 * (qtmp*muj.z - qj*mui.z) + + b2 * (pjdotr*mui.z + pidotr*muj.z); + + zdix = delx * (qj*b1 + b2*pjdotr) - b1*muj.x; + zdiy = dely * (qj*b1 + b2*pjdotr) - b1*muj.y; + zdiz = delz * (qj*b1 + b2*pjdotr) - b1*muj.z; + zdjx = delx * (-qtmp*b1 + b2*pidotr) - b1*mui.x; + zdjy = dely * (-qtmp*b1 + b2*pidotr) - b1*mui.y; + zdjz = delz * (-qtmp*b1 + b2*pidotr) - b1*mui.z; + + if (factor_coul < (numtyp)1.0) { + fdx *= factor_coul; + fdy *= factor_coul; + fdz *= factor_coul; + zdix *= factor_coul; + zdiy *= factor_coul; + zdiz *= factor_coul; + zdjx *= factor_coul; + zdjy *= factor_coul; + zdjz *= factor_coul; + } + } else { + fdx = fdy = fdz = (numtyp)0.0; + zdix = zdiy = zdiz = (numtyp)0.0; + zdjx = zdjy = zdjz = (numtyp)0.0; + } + + if (factor_coul < (numtyp)1.0) { + d0 = (_erfc - (numtyp)1.0) * rinv; + d1 = (d0 + pre1*expm2) * r2inv; + d2 = ((numtyp)3.0*d1 + pre2*expm2) * r2inv; + d3 = ((numtyp)5.0*d2 + pre3*expm2) * r2inv; + + g0d1_g1d2_g2d3 = g0*d1 + g1*d2 + g2*d3; + fax = delx * g0d1_g1d2_g2d3 - + d1 * (qtmp*muj.x - qj*mui.x) + + d2 * (pjdotr*mui.x + pidotr*muj.x); + fay = dely * g0d1_g1d2_g2d3 - + d1 * (qtmp*muj.y - qj*mui.y) + + d2 * (pjdotr*mui.y + pidotr*muj.y); + faz = delz * g0d1_g1d2_g2d3 - + d1 * (qtmp*muj.z - qj*mui.z) + + d2 * (pjdotr*mui.z + pidotr*muj.z); + + zaix = delx * (qj*d1 + d2*pjdotr) - d1*muj.x; + zaiy = dely * (qj*d1 + d2*pjdotr) - d1*muj.y; + zaiz = delz * (qj*d1 + d2*pjdotr) - d1*muj.z; + zajx = delx * (-qtmp*d1 + d2*pidotr) - d1*mui.x; + zajy = dely * (-qtmp*d1 + d2*pidotr) - d1*mui.y; + zajz = delz * (-qtmp*d1 + d2*pidotr) - d1*mui.z; + + if (factor_coul > (numtyp)0.0) { + facm1 = (numtyp)1.0 - factor_coul; + fax *= facm1; + fay *= facm1; + faz *= facm1; + zaix *= facm1; + zaiy *= facm1; + zaiz *= facm1; + zajx *= facm1; + zajy *= facm1; + zajz *= facm1; + } + } else { + fax = fay = faz = (numtyp)0.0; + zaix = zaiy = zaiz = (numtyp)0.0; + zajx = zajy = zajz = (numtyp)0.0; + } + + forcecoul.x = fdx + fax; + forcecoul.y = fdy + fay; + forcecoul.z = fdz + faz; + + ticoul.x = mui.y*(zdiz + zaiz) - mui.z*(zdiy + zaiy); + ticoul.y = mui.z*(zdix + zaix) - mui.x*(zdiz + zaiz); + ticoul.z = mui.x*(zdiy + zaiy) - mui.y*(zdix + zaix); + + } else { + forcecoul.x = forcecoul.y = forcecoul.z = (numtyp)0.0; + ticoul.x = ticoul.y = ticoul.z = (numtyp)0.0; + } + + force.x = qqrd2e*forcecoul.x + delx*force_lj; + force.y = qqrd2e*forcecoul.y + dely*force_lj; + force.z = qqrd2e*forcecoul.z + delz*force_lj; + f.x+=force.x; + f.y+=force.y; + f.z+=force.z; + tor.x+=qqrd2e*ticoul.x; + tor.y+=qqrd2e*ticoul.y; + tor.z+=qqrd2e*ticoul.z; + + if (eflag>0) { + acctyp e = (acctyp)0.0; + if (rsq < cut_coulsq && factor_coul > (numtyp)0.0) { + e = qqrd2e*(b0*g0 + b1*g1 + b2*g2); + if (factor_coul < (numtyp)1.0) { + e_coul *= factor_coul; + e_coul += ((numtyp)1.0-factor_coul) * qqrd2e * (d0*g0 + d1*g1 + d2*g2); + } + } else e = (acctyp)0.0; + e_coul += e; + + if (rsq < lj1[mtype].z) { + e=r6inv*(lj3[mtype].x*r6inv-lj3[mtype].y); + energy+=factor_lj*(e-lj3[mtype].z); + } + } + if (vflag>0) { + virial[0] += delx*force.x; + virial[1] += dely*force.y; + virial[2] += delz*force.z; + virial[3] += delx*force.y; + virial[4] += delx*force.z; + virial[5] += dely*force.z; + } + } + + } // for nbor + store_answers_tq(f,tor,energy,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + diff --git a/lib/gpu/lal_dipole_long_lj.h b/lib/gpu/lal_dipole_long_lj.h new file mode 100644 index 0000000000000000000000000000000000000000..1381e243267bcc548d7eef6da409b29f3da36931 --- /dev/null +++ b/lib/gpu/lal_dipole_long_lj.h @@ -0,0 +1,85 @@ +/*************************************************************************** + dipole_long_lj.h + ------------------- + Trung Dac Nguyen (Northwestern) + + Class for acceleration of the lj/cut/dipole/long pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#ifndef LAL_DIPOLE_LONG_LJ_H +#define LAL_DIPOLE_LONG_LJ_H + +#include "lal_base_dipole.h" + +namespace LAMMPS_AL { + +template +class DipoleLongLJ : public BaseDipole { + public: + DipoleLongLJ(); + ~DipoleLongLJ(); + + /// Clear any previous data and set up for a new LAMMPS run + /** \param max_nbors initial number of rows in the neighbor matrix + * \param cell_size cutoff + skin + * \param gpu_split fraction of particles handled by device + * + * Returns: + * - 0 if successfull + * - -1 if fix gpu not found + * - -3 if there is an out of memory error + * - -4 if the GPU library was not compiled for GPU + * - -5 Double precision is not supported on card **/ + int init(const int ntypes, double **host_cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, double **host_lj4, + double **host_offset, double *host_special_lj, + const int nlocal, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *screen, double **host_cut_ljsq, + const double host_cut_coulsq, double *host_special_coul, + const double qqrd2e, const double g_ewald); + + /// Clear all host and device data + /** \note This is called at the beginning of the init() routine **/ + void clear(); + + /// Returns memory usage on device per atom + int bytes_per_atom(const int max_nbors) const; + + /// Total host memory used by library for pair style + double host_memory_usage() const; + + // --------------------------- TYPE DATA -------------------------- + + /// lj1.x = lj1, lj1.y = lj2, lj1.z = cutsq_vdw, lj1.w = cutsq_coul + UCL_D_Vec lj1; + /// lj3.x = lj3, lj3.y = lj4, lj3.z = offset + UCL_D_Vec lj3; + /// cutsq + UCL_D_Vec cutsq; + /// Special LJ values [0-3] and Special Coul values [4-7] + UCL_D_Vec sp_lj; + + /// If atom type constants fit in shared memory, use fast kernels + bool shared_types; + + /// Number of atom types + int _lj_types; + + numtyp _cut_coulsq, _qqrd2e, _g_ewald; + + private: + bool _allocated; + void loop(const bool _eflag, const bool _vflag); +}; + +} + +#endif diff --git a/lib/gpu/lal_dipole_long_lj_ext.cpp b/lib/gpu/lal_dipole_long_lj_ext.cpp new file mode 100644 index 0000000000000000000000000000000000000000..b2751e8a8221a1620a1ebb61211158eee8f455ad --- /dev/null +++ b/lib/gpu/lal_dipole_long_lj_ext.cpp @@ -0,0 +1,129 @@ +/*************************************************************************** + dipole_long_lj_ext.cpp + ------------------- + Trung Dac Nguyen (ORNL) + + Functions for LAMMPS access to dipole/cut acceleration routines. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : nguyentd@ornl.gov + ***************************************************************************/ + +#include +#include +#include + +#include "lal_dipole_long_lj.h" + +using namespace std; +using namespace LAMMPS_AL; + +static DipoleLongLJ DPLJMF; + +// --------------------------------------------------------------------------- +// Allocate memory on host and device and copy constants to device +// --------------------------------------------------------------------------- +int dplj_gpu_init(const int ntypes, double **cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, double **host_lj4, + double **offset, double *special_lj, const int inum, + const int nall, const int max_nbors, const int maxspecial, + const double cell_size, int &gpu_mode, FILE *screen, + double **host_cut_ljsq, const double host_cut_coulsq, + double *host_special_coul, const double qqrd2e, + const double g_ewald) { + DPLJMF.clear(); + gpu_mode=DPLJMF.device->gpu_mode(); + double gpu_split=DPLJMF.device->particle_split(); + int first_gpu=DPLJMF.device->first_device(); + int last_gpu=DPLJMF.device->last_device(); + int world_me=DPLJMF.device->world_me(); + int gpu_rank=DPLJMF.device->gpu_rank(); + int procs_per_gpu=DPLJMF.device->procs_per_gpu(); + + DPLJMF.device->init_message(screen,"lj/cut/dipole/long",first_gpu,last_gpu); + + bool message=false; + if (DPLJMF.device->replica_me()==0 && screen) + message=true; + + if (message) { + fprintf(screen,"Initializing Device and compiling on process 0..."); + fflush(screen); + } + + int init_ok=0; + if (world_me==0) + init_ok=DPLJMF.init(ntypes, cutsq, host_lj1, host_lj2, host_lj3, + host_lj4, offset, special_lj, inum, nall, 300, + maxspecial, cell_size, gpu_split, screen, host_cut_ljsq, + host_cut_coulsq, host_special_coul, qqrd2e, g_ewald); + + DPLJMF.device->world_barrier(); + if (message) + fprintf(screen,"Done.\n"); + + for (int i=0; igpu_barrier(); + if (message) + fprintf(screen,"Done.\n"); + } + if (message) + fprintf(screen,"\n"); + + if (init_ok==0) + DPLJMF.estimate_gpu_overhead(); + return init_ok; +} + +void dplj_gpu_clear() { + DPLJMF.clear(); +} + +int** dplj_gpu_compute_n(const int ago, const int inum_full, + const int nall, double **host_x, int *host_type, + double *sublo, double *subhi, tagint *tag, int **nspecial, + tagint **special, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + int **ilist, int **jnum, const double cpu_time, + bool &success, double *host_q, double **host_mu, + double *boxlo, double *prd) { + return DPLJMF.compute(ago, inum_full, nall, host_x, host_type, sublo, + subhi, tag, nspecial, special, eflag, vflag, eatom, + vatom, host_start, ilist, jnum, cpu_time, success, + host_q, host_mu, boxlo, prd); +} + +void dplj_gpu_compute(const int ago, const int inum_full, const int nall, + double **host_x, int *host_type, int *ilist, int *numj, + int **firstneigh, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + const double cpu_time, bool &success, double *host_q, + double **host_mu, const int nlocal, double *boxlo, double *prd) { + DPLJMF.compute(ago,inum_full,nall,host_x,host_type,ilist,numj,firstneigh,eflag, + vflag,eatom,vatom,host_start,cpu_time,success,host_q,host_mu, + nlocal,boxlo,prd); +} + +double dplj_gpu_bytes() { + return DPLJMF.host_memory_usage(); +} + + diff --git a/lib/gpu/lal_dpd_ext.cpp b/lib/gpu/lal_dpd_ext.cpp index 26bbb660b840d48d2439dbf3963325cb65aa1e96..33b4beddb03849448943a96a0133d1489b1a11f1 100644 --- a/lib/gpu/lal_dpd_ext.cpp +++ b/lib/gpu/lal_dpd_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_dpd.h" diff --git a/lib/gpu/lal_eam_alloy_ext.cpp b/lib/gpu/lal_eam_alloy_ext.cpp index 9209ed5c2602769b034802a1ae26428abdec0d93..e5f1010e76dae225718deb446993183e69f846b7 100644 --- a/lib/gpu/lal_eam_alloy_ext.cpp +++ b/lib/gpu/lal_eam_alloy_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_eam.h" diff --git a/lib/gpu/lal_eam_ext.cpp b/lib/gpu/lal_eam_ext.cpp index 1b5602f808fc4a97f5fe6516d1cd01eb43f16cdc..78f2e3c1f834e5c6ed4bd53fb7dd777e70a14d0c 100644 --- a/lib/gpu/lal_eam_ext.cpp +++ b/lib/gpu/lal_eam_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_eam.h" diff --git a/lib/gpu/lal_eam_fs_ext.cpp b/lib/gpu/lal_eam_fs_ext.cpp index b9e25466aaa71c8c82a5b6511b96b0fea3c320c4..37208e54f8c4cf245bdcc4297455e03d72ed26e5 100644 --- a/lib/gpu/lal_eam_fs_ext.cpp +++ b/lib/gpu/lal_eam_fs_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_eam.h" diff --git a/lib/gpu/lal_gauss_ext.cpp b/lib/gpu/lal_gauss_ext.cpp index 7fa4b68870ea9ff4f6bb797e6904b99cd612e622..a2804ce3cf9b20994246c5077cc73de63c27dc55 100644 --- a/lib/gpu/lal_gauss_ext.cpp +++ b/lib/gpu/lal_gauss_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_gauss.h" diff --git a/lib/gpu/lal_gayberne_ext.cpp b/lib/gpu/lal_gayberne_ext.cpp index 451550e7efca8023f78397ca499dc459e4d3fb53..56aad61632f3c86a0531528ff6109d81f6edd973 100644 --- a/lib/gpu/lal_gayberne_ext.cpp +++ b/lib/gpu/lal_gayberne_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_gayberne.h" diff --git a/lib/gpu/lal_lj96_ext.cpp b/lib/gpu/lal_lj96_ext.cpp index 5c4a58c5e8a272541e8b95e80e4fad40c72dae5a..f68b35de57b283e9fb4039a3dacc1d13c9809909 100644 --- a/lib/gpu/lal_lj96_ext.cpp +++ b/lib/gpu/lal_lj96_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj96.h" diff --git a/lib/gpu/lal_lj_class2_long_ext.cpp b/lib/gpu/lal_lj_class2_long_ext.cpp index 6ed15126d99d08633f7b9677b69c24bf683a6cc7..f669a811898f9d06fc61be16bff3805434cde248 100644 --- a/lib/gpu/lal_lj_class2_long_ext.cpp +++ b/lib/gpu/lal_lj_class2_long_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_class2_long.h" diff --git a/lib/gpu/lal_lj_coul_debye_ext.cpp b/lib/gpu/lal_lj_coul_debye_ext.cpp index 3a0a3593e7bf89a3e0ef83589251ecfda5a3f3f5..95588eb95ad6eb0442b9260ef7192304c4439d4c 100644 --- a/lib/gpu/lal_lj_coul_debye_ext.cpp +++ b/lib/gpu/lal_lj_coul_debye_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_coul_debye.h" diff --git a/lib/gpu/lal_lj_coul_ext.cpp b/lib/gpu/lal_lj_coul_ext.cpp index b803101b9e49193ad7569205ce34d3da7fd5abf4..060088a7cbef707e275851f5701a1f671e784ce5 100644 --- a/lib/gpu/lal_lj_coul_ext.cpp +++ b/lib/gpu/lal_lj_coul_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_coul.h" diff --git a/lib/gpu/lal_lj_coul_long_ext.cpp b/lib/gpu/lal_lj_coul_long_ext.cpp index 6f8b5c9fe12451773586e9b6c4b079adf9fa8bb6..33771af53c59e68dabf7e11857b0c744c88da7cc 100644 --- a/lib/gpu/lal_lj_coul_long_ext.cpp +++ b/lib/gpu/lal_lj_coul_long_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_coul_long.h" diff --git a/lib/gpu/lal_lj_coul_msm_ext.cpp b/lib/gpu/lal_lj_coul_msm_ext.cpp index bf520e4dc55fd5a804e03cb6f454a24ed30e7a5b..d957cbe37670e449b18ec3db006531e1efe95c31 100644 --- a/lib/gpu/lal_lj_coul_msm_ext.cpp +++ b/lib/gpu/lal_lj_coul_msm_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_coul_msm.h" diff --git a/lib/gpu/lal_lj_cubic_ext.cpp b/lib/gpu/lal_lj_cubic_ext.cpp index efbcee0a9f4db2dc78df16422c5f047b5c6344e7..f02ce0f184bca4fe1b507eb53f1541bf66d48661 100644 --- a/lib/gpu/lal_lj_cubic_ext.cpp +++ b/lib/gpu/lal_lj_cubic_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_cubic.h" diff --git a/lib/gpu/lal_lj_dsf_ext.cpp b/lib/gpu/lal_lj_dsf_ext.cpp index 25802e75447d6b70c600495f069079e498ec57bc..6d53896a1181f32b33eb1f4f11a1def1159c83ad 100644 --- a/lib/gpu/lal_lj_dsf_ext.cpp +++ b/lib/gpu/lal_lj_dsf_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_dsf.h" diff --git a/lib/gpu/lal_lj_expand_coul_long.cpp b/lib/gpu/lal_lj_expand_coul_long.cpp new file mode 100644 index 0000000000000000000000000000000000000000..32a4f8120e2e42d40ae6f67bcf960515182b3ca0 --- /dev/null +++ b/lib/gpu/lal_lj_expand_coul_long.cpp @@ -0,0 +1,183 @@ +/*************************************************************************** + lj_expand_coul_long.cpp + -------------------------- + Trung Nguyen (Northwestern) + + Class for acceleration of the lj/expand/coul/long pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#if defined(USE_OPENCL) +#include "lj_expand_coul_long_cl.h" +#elif defined(USE_CUDART) +const char *lj_expand_coul_long=0; +#else +#include "lj_expand_coul_long_cubin.h" +#endif + +#include "lal_lj_expand_coul_long.h" +#include +using namespace LAMMPS_AL; +#define LJExpandCoulLongT LJExpandCoulLong + +extern Device device; + +template +LJExpandCoulLongT::LJExpandCoulLong() : BaseCharge(), + _allocated(false) { +} + +template +LJExpandCoulLongT::~LJExpandCoulLong() { + clear(); +} + +template +int LJExpandCoulLongT::bytes_per_atom(const int max_nbors) const { + return this->bytes_per_atom_atomic(max_nbors); +} + +template +int LJExpandCoulLongT::init(const int ntypes, + double **host_cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, + double **host_lj4, double **host_offset, double **host_shift, + double *host_special_lj, const int nlocal, + const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *_screen, + double **host_cut_ljsq, const double host_cut_coulsq, + double *host_special_coul, const double qqrd2e, + const double g_ewald) { + int success; + success=this->init_atomic(nlocal,nall,max_nbors,maxspecial,cell_size,gpu_split, + _screen,lj_expand_coul_long,"k_lj_expand_coul_long"); + if (success!=0) + return success; + + // If atom type constants fit in shared memory use fast kernel + int lj_types=ntypes; + shared_types=false; + int max_shared_types=this->device->max_shared_types(); + if (lj_types<=max_shared_types && this->_block_size>=max_shared_types) { + lj_types=max_shared_types; + shared_types=true; + } + _lj_types=lj_types; + + // Allocate a host write buffer for data initialization + UCL_H_Vec host_write(lj_types*lj_types*32,*(this->ucl_device), + UCL_WRITE_ONLY); + + for (int i=0; iucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,lj1,host_write,host_lj1,host_lj2, + host_cutsq, host_cut_ljsq); + + lj3.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,lj3,host_write,host_lj3,host_lj4, + host_offset,host_shift); + + sp_lj.alloc(8,*(this->ucl_device),UCL_READ_ONLY); + for (int i=0; i<4; i++) { + host_write[i]=host_special_lj[i]; + host_write[i+4]=host_special_coul[i]; + } + ucl_copy(sp_lj,host_write,8,false); + + _cut_coulsq=host_cut_coulsq; + _qqrd2e=qqrd2e; + _g_ewald=g_ewald; + + _allocated=true; + this->_max_bytes=lj1.row_bytes()+lj3.row_bytes()+sp_lj.row_bytes(); + return 0; +} + +template +void LJExpandCoulLongT::reinit(const int ntypes, double **host_cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, double **host_lj4, + double **host_offset, double **host_shift, double **host_cut_ljsq) { + // Allocate a host write buffer for data initialization + UCL_H_Vec host_write(_lj_types*_lj_types*32,*(this->ucl_device), + UCL_WRITE_ONLY); + + for (int i=0; i<_lj_types*_lj_types; i++) + host_write[i]=0.0; + + this->atom->type_pack4(ntypes,_lj_types,lj1,host_write,host_lj1,host_lj2, + host_cutsq, host_cut_ljsq); + this->atom->type_pack4(ntypes,_lj_types,lj3,host_write,host_lj3,host_lj4, + host_offset,host_shift); +} + +template +void LJExpandCoulLongT::clear() { + if (!_allocated) + return; + _allocated=false; + + lj1.clear(); + lj3.clear(); + sp_lj.clear(); + this->clear_atomic(); +} + +template +double LJExpandCoulLongT::host_memory_usage() const { + return this->host_memory_usage_atomic()+sizeof(LJExpandCoulLong); +} + +// --------------------------------------------------------------------------- +// Calculate energies, forces, and torques +// --------------------------------------------------------------------------- +template +void LJExpandCoulLongT::loop(const bool _eflag, const bool _vflag) { + // Compute the block size and grid size to keep all cores busy + const int BX=this->block_size(); + int eflag, vflag; + if (_eflag) + eflag=1; + else + eflag=0; + + if (_vflag) + vflag=1; + else + vflag=0; + + int GX=static_cast(ceil(static_cast(this->ans->inum())/ + (BX/this->_threads_per_atom))); + + int ainum=this->ans->inum(); + int nbor_pitch=this->nbor->nbor_pitch(); + this->time_pair.start(); + if (shared_types) { + this->k_pair_fast.set_size(GX,BX); + this->k_pair_fast.run(&this->atom->x, &lj1, &lj3, &sp_lj, + &this->nbor->dev_nbor, &this->_nbor_data->begin(), + &this->ans->force, &this->ans->engv, &eflag, + &vflag, &ainum, &nbor_pitch, &this->atom->q, + &_cut_coulsq, &_qqrd2e, &_g_ewald, + &this->_threads_per_atom); + } else { + this->k_pair.set_size(GX,BX); + this->k_pair.run(&this->atom->x, &lj1, &lj3, + &_lj_types, &sp_lj, &this->nbor->dev_nbor, + &this->_nbor_data->begin(), &this->ans->force, + &this->ans->engv, &eflag, &vflag, &ainum, + &nbor_pitch, &this->atom->q, &_cut_coulsq, + &_qqrd2e, &_g_ewald, &this->_threads_per_atom); + } + this->time_pair.stop(); +} + +template class LJExpandCoulLong; diff --git a/lib/gpu/lal_lj_expand_coul_long.cu b/lib/gpu/lal_lj_expand_coul_long.cu new file mode 100644 index 0000000000000000000000000000000000000000..aa8f02be8c521134f80201e873ad5636b33783e4 --- /dev/null +++ b/lib/gpu/lal_lj_expand_coul_long.cu @@ -0,0 +1,272 @@ +// ************************************************************************** +// lj_coul_long.cu +// ------------------- +// Trung Nguyen (Northwestern) +// +// Device code for acceleration of the lj/expand/coul/long pair style +// +// __________________________________________________________________________ +// This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) +// __________________________________________________________________________ +// +// begin : +// email : ndactrung@gmail.com +// ***************************************************************************/ + +#ifdef NV_KERNEL + +#include "lal_aux_fun1.h" +#ifndef _DOUBLE_DOUBLE +texture pos_tex; +texture q_tex; +#else +texture pos_tex; +texture q_tex; +#endif + +#else +#define pos_tex x_ +#define q_tex q_ +#endif + +__kernel void k_lj_expand_coul_long(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict lj1, + const __global numtyp4 *restrict lj3, + const int lj_types, + const __global numtyp *restrict sp_lj_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, + const __global numtyp *restrict q_, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp g_ewald, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp sp_lj[8]; + sp_lj[0]=sp_lj_in[0]; + sp_lj[1]=sp_lj_in[1]; + sp_lj[2]=sp_lj_in[2]; + sp_lj[3]=sp_lj_in[3]; + sp_lj[4]=sp_lj_in[4]; + sp_lj[5]=sp_lj_in[5]; + sp_lj[6]=sp_lj_in[6]; + sp_lj[7]=sp_lj_in[7]; + + acctyp energy=(acctyp)0; + acctyp e_coul=(acctyp)0; + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp virial[6]; + for (int i=0; i<6; i++) + virial[i]=(acctyp)0; + + if (ii0) { + if (rsq < cut_coulsq) + e_coul += prefactor*(_erfc-factor_coul); + if (rsq < lj1[mtype].w) { + numtyp e=r6inv*(lj3[mtype].x*r6inv-lj3[mtype].y); + energy+=factor_lj*(e-lj3[mtype].z); + } + } + if (vflag>0) { + virial[0] += delx*delx*force; + virial[1] += dely*dely*force; + virial[2] += delz*delz*force; + virial[3] += delx*dely*force; + virial[4] += delx*delz*force; + virial[5] += dely*delz*force; + } + } + + } // for nbor + store_answers_q(f,energy,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + +__kernel void k_lj_expand_coul_long_fast(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict lj1_in, + const __global numtyp4 *restrict lj3_in, + const __global numtyp *restrict sp_lj_in, + const __global int *dev_nbor, + const __global int *dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, + const int inum, const int nbor_pitch, + const __global numtyp *restrict q_, + const numtyp cut_coulsq, const numtyp qqrd2e, + const numtyp g_ewald, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + __local numtyp4 lj1[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp4 lj3[MAX_SHARED_TYPES*MAX_SHARED_TYPES]; + __local numtyp sp_lj[8]; + if (tid<8) + sp_lj[tid]=sp_lj_in[tid]; + if (tid0) { + if (rsq < cut_coulsq) + e_coul += prefactor*(_erfc-factor_coul); + if (rsq < lj1[mtype].w) { + numtyp e=r6inv*(lj3[mtype].x*r6inv-lj3[mtype].y); + energy+=factor_lj*(e-lj3[mtype].z); + } + } + if (vflag>0) { + virial[0] += delx*delx*force; + virial[1] += dely*dely*force; + virial[2] += delz*delz*force; + virial[3] += delx*dely*force; + virial[4] += delx*delz*force; + virial[5] += dely*delz*force; + } + } + + } // for nbor + store_answers_q(f,energy,e_coul,virial,ii,inum,tid,t_per_atom,offset,eflag, + vflag,ans,engv); + } // if ii +} + diff --git a/lib/gpu/lal_lj_expand_coul_long.h b/lib/gpu/lal_lj_expand_coul_long.h new file mode 100644 index 0000000000000000000000000000000000000000..64fd9df1abdcb88725e021db9a8bfb5dd96d94d3 --- /dev/null +++ b/lib/gpu/lal_lj_expand_coul_long.h @@ -0,0 +1,88 @@ +/*************************************************************************** + lj_expand_coul_long.h + ------------------- + Trung Nguyen (Northwestern) + + Class for acceleration of the lj/expand/coul/long pair style. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#ifndef LAL_LJ_EXPAND_COUL_LONG_H +#define LAL_LJ_EXPAND_COUL_LONG_H + +#include "lal_base_charge.h" + +namespace LAMMPS_AL { + +template +class LJExpandCoulLong : public BaseCharge { + public: + LJExpandCoulLong(); + ~LJExpandCoulLong(); + + /// Clear any previous data and set up for a new LAMMPS run + /** \param max_nbors initial number of rows in the neighbor matrix + * \param cell_size cutoff + skin + * \param gpu_split fraction of particles handled by device + * + * Returns: + * - 0 if successfull + * - -1 if fix gpu not found + * - -3 if there is an out of memory error + * - -4 if the GPU library was not compiled for GPU + * - -5 Double precision is not supported on card **/ + int init(const int ntypes, double **host_cutsq, + double **host_lj1, double **host_lj2, double **host_lj3, + double **host_lj4, double **host_offset, double **host_shift, double *host_special_lj, + const int nlocal, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *screen, double **host_cut_ljsq, + const double host_cut_coulsq, double *host_special_coul, + const double qqrd2e, const double g_ewald); + + /// Send updated coeffs from host to device (to be compatible with fix adapt) + void reinit(const int ntypes, double **host_cutsq, + double **host_lj1, double **host_lj2, double **host_lj3, + double **host_lj4, double **host_offset, double **host_shift, double **host_cut_ljsq); + + /// Clear all host and device data + /** \note This is called at the beginning of the init() routine **/ + void clear(); + + /// Returns memory usage on device per atom + int bytes_per_atom(const int max_nbors) const; + + /// Total host memory used by library for pair style + double host_memory_usage() const; + + // --------------------------- TYPE DATA -------------------------- + + /// lj1.x = lj1, lj1.y = lj2, lj1.z = cutsq, lj1.w = cutsq_vdw + UCL_D_Vec lj1; + /// lj3.x = lj3, lj3.y = lj4, lj3.z = offset, lj3.w = shift + UCL_D_Vec lj3; + /// Special LJ values [0-3] and Special Coul values [4-7] + UCL_D_Vec sp_lj; + + /// If atom type constants fit in shared memory, use fast kernels + bool shared_types; + + /// Number of atom types + int _lj_types; + + numtyp _cut_coulsq, _qqrd2e, _g_ewald; + + private: + bool _allocated; + void loop(const bool _eflag, const bool _vflag); +}; + +} + +#endif diff --git a/lib/gpu/lal_lj_expand_coul_long_ext.cpp b/lib/gpu/lal_lj_expand_coul_long_ext.cpp new file mode 100644 index 0000000000000000000000000000000000000000..3ff1bef70128c20122c1d3c28e800a43e98c56fd --- /dev/null +++ b/lib/gpu/lal_lj_expand_coul_long_ext.cpp @@ -0,0 +1,152 @@ +/*************************************************************************** + lj_expand_coul_long_ext.cpp + ------------------------ + Trung Nguyen (Northwestern) + + Functions for LAMMPS access to lj/expand/coul/long acceleration routines. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : ndactrung@gmail.com + ***************************************************************************/ + +#include +#include +#include + +#include "lal_lj_expand_coul_long.h" + +using namespace std; +using namespace LAMMPS_AL; + +static LJExpandCoulLong LJECLMF; + +// --------------------------------------------------------------------------- +// Allocate memory on host and device and copy constants to device +// --------------------------------------------------------------------------- +int ljecl_gpu_init(const int ntypes, double **cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, double **host_lj4, + double **offset, double **shift, double *special_lj, const int inum, + const int nall, const int max_nbors, const int maxspecial, + const double cell_size, int &gpu_mode, FILE *screen, + double **host_cut_ljsq, double host_cut_coulsq, + double *host_special_coul, const double qqrd2e, + const double g_ewald) { + LJECLMF.clear(); + gpu_mode=LJECLMF.device->gpu_mode(); + double gpu_split=LJECLMF.device->particle_split(); + int first_gpu=LJECLMF.device->first_device(); + int last_gpu=LJECLMF.device->last_device(); + int world_me=LJECLMF.device->world_me(); + int gpu_rank=LJECLMF.device->gpu_rank(); + int procs_per_gpu=LJECLMF.device->procs_per_gpu(); + + LJECLMF.device->init_message(screen,"lj/expand/coul/long",first_gpu,last_gpu); + + bool message=false; + if (LJECLMF.device->replica_me()==0 && screen) + message=true; + + if (message) { + fprintf(screen,"Initializing Device and compiling on process 0..."); + fflush(screen); + } + + int init_ok=0; + if (world_me==0) + init_ok=LJECLMF.init(ntypes, cutsq, host_lj1, host_lj2, host_lj3, host_lj4, + offset, shift, special_lj, inum, nall, 300, maxspecial, + cell_size, gpu_split, screen, host_cut_ljsq, + host_cut_coulsq, host_special_coul, qqrd2e, g_ewald); + + LJECLMF.device->world_barrier(); + if (message) + fprintf(screen,"Done.\n"); + + for (int i=0; igpu_barrier(); + if (message) + fprintf(screen,"Done.\n"); + } + if (message) + fprintf(screen,"\n"); + + if (init_ok==0) + LJECLMF.estimate_gpu_overhead(); + return init_ok; +} + +// --------------------------------------------------------------------------- +// Copy updated coeffs from host to device +// --------------------------------------------------------------------------- +void ljecl_gpu_reinit(const int ntypes, double **cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, double **host_lj4, + double **offset, double **shift, double **host_cut_ljsq) { + int world_me=LJECLMF.device->world_me(); + int gpu_rank=LJECLMF.device->gpu_rank(); + int procs_per_gpu=LJECLMF.device->procs_per_gpu(); + + if (world_me==0) + LJECLMF.reinit(ntypes, cutsq, host_lj1, host_lj2, host_lj3, host_lj4, + offset, shift, host_cut_ljsq); + LJECLMF.device->world_barrier(); + + for (int i=0; igpu_barrier(); + } +} + +void ljecl_gpu_clear() { + LJECLMF.clear(); +} + +int** ljecl_gpu_compute_n(const int ago, const int inum_full, + const int nall, double **host_x, int *host_type, + double *sublo, double *subhi, tagint *tag, int **nspecial, + tagint **special, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + int **ilist, int **jnum, const double cpu_time, + bool &success, double *host_q, double *boxlo, + double *prd) { + return LJECLMF.compute(ago, inum_full, nall, host_x, host_type, sublo, + subhi, tag, nspecial, special, eflag, vflag, eatom, + vatom, host_start, ilist, jnum, cpu_time, success, + host_q, boxlo, prd); +} + +void ljecl_gpu_compute(const int ago, const int inum_full, const int nall, + double **host_x, int *host_type, int *ilist, int *numj, + int **firstneigh, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + const double cpu_time, bool &success, double *host_q, + const int nlocal, double *boxlo, double *prd) { + LJECLMF.compute(ago,inum_full,nall,host_x,host_type,ilist,numj, + firstneigh,eflag,vflag,eatom,vatom,host_start,cpu_time,success, + host_q,nlocal,boxlo,prd); +} + +double ljecl_gpu_bytes() { + return LJECLMF.host_memory_usage(); +} + + diff --git a/lib/gpu/lal_lj_expand_ext.cpp b/lib/gpu/lal_lj_expand_ext.cpp index a9c791803b11f3ff5343f10cfb433f0dd1d9924e..603e425d3f99c9f8b2927f2ea1f7e66e619eaa28 100644 --- a/lib/gpu/lal_lj_expand_ext.cpp +++ b/lib/gpu/lal_lj_expand_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_expand.h" diff --git a/lib/gpu/lal_lj_ext.cpp b/lib/gpu/lal_lj_ext.cpp index 8124556d40394a5d2a2b3d78f61f41df9e5539ae..124cf46c8c18be346132e16f7603726eedc4c02b 100644 --- a/lib/gpu/lal_lj_ext.cpp +++ b/lib/gpu/lal_lj_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj.h" diff --git a/lib/gpu/lal_lj_gromacs_ext.cpp b/lib/gpu/lal_lj_gromacs_ext.cpp index 53b93bfdff306d8ad4eb993458ee6daad8ad8569..99d32ab09a5131681c909a162eabeb32c6a72acc 100644 --- a/lib/gpu/lal_lj_gromacs_ext.cpp +++ b/lib/gpu/lal_lj_gromacs_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_gromacs.h" diff --git a/lib/gpu/lal_lj_sdk_ext.cpp b/lib/gpu/lal_lj_sdk_ext.cpp index 386106161e1b33a4ca11391e9470089d482ebeaf..de0c5fef4f224951e3533e48f20a8bfd91ec9430 100644 --- a/lib/gpu/lal_lj_sdk_ext.cpp +++ b/lib/gpu/lal_lj_sdk_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_sdk.h" diff --git a/lib/gpu/lal_lj_sdk_long_ext.cpp b/lib/gpu/lal_lj_sdk_long_ext.cpp index 08390d3eeb8f1e011324e394f6b5b2281409746b..f29348728211644ee599f599380f0ac32c0cf472 100644 --- a/lib/gpu/lal_lj_sdk_long_ext.cpp +++ b/lib/gpu/lal_lj_sdk_long_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_lj_sdk_long.h" diff --git a/lib/gpu/lal_mie_ext.cpp b/lib/gpu/lal_mie_ext.cpp index 9b03903c4f027070a8048941beb42d69d3de3e45..f612de4336779c511ac3e5ef4f2013d0046ba3fb 100644 --- a/lib/gpu/lal_mie_ext.cpp +++ b/lib/gpu/lal_mie_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_mie.h" diff --git a/lib/gpu/lal_morse_ext.cpp b/lib/gpu/lal_morse_ext.cpp index 0338bc07a835a8716afd622b72563b3717c40aef..3b62d10305a2e6d1897846b70b87b52018a205fe 100644 --- a/lib/gpu/lal_morse_ext.cpp +++ b/lib/gpu/lal_morse_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_morse.h" diff --git a/lib/gpu/lal_neighbor.cpp b/lib/gpu/lal_neighbor.cpp index 0a9933a6c02982bce3a2521756d246341f826638..3e128bcf57349d39399f5cf625e5f863186a3630 100644 --- a/lib/gpu/lal_neighbor.cpp +++ b/lib/gpu/lal_neighbor.cpp @@ -17,7 +17,7 @@ #include "lal_precision.h" #include "lal_neighbor.h" #include "lal_device.h" -#include "math.h" +#include using namespace LAMMPS_AL; int Neighbor::bytes_per_atom(const int max_nbors) const { @@ -127,10 +127,10 @@ void Neighbor::alloc(bool &success) { dev_packed.clear(); success=success && (dev_packed.alloc((_max_nbors+2)*_max_atoms,*dev, _packed_permissions)==UCL_SUCCESS); - dev_acc.clear(); - success=success && (dev_acc.alloc(_max_atoms,*dev, + dev_ilist.clear(); + success=success && (dev_ilist.alloc(_max_atoms,*dev, UCL_READ_WRITE)==UCL_SUCCESS); - _c_bytes+=dev_packed.row_bytes()+dev_acc.row_bytes(); + _c_bytes+=dev_packed.row_bytes()+dev_ilist.row_bytes(); } if (_max_host>0) { nbor_host.clear(); @@ -197,7 +197,7 @@ void Neighbor::clear() { host_packed.clear(); host_acc.clear(); - dev_acc.clear(); + dev_ilist.clear(); dev_nbor.clear(); nbor_host.clear(); dev_packed.clear(); @@ -281,7 +281,7 @@ void Neighbor::get_host(const int inum, int *ilist, int *numj, } UCL_D_Vec acc_view; acc_view.view_offset(inum,dev_nbor,inum*2); - ucl_copy(acc_view,host_acc,true); + ucl_copy(acc_view,host_acc,inum*2,true); UCL_H_Vec host_view; host_view.alloc(_max_atoms,*dev,UCL_READ_WRITE); @@ -289,7 +289,7 @@ void Neighbor::get_host(const int inum, int *ilist, int *numj, int i=ilist[ii]; host_view[i] = ii; } - ucl_copy(dev_acc,host_view,true); + ucl_copy(dev_ilist,host_view,true); time_nbor.stop(); @@ -364,7 +364,7 @@ void Neighbor::get_host3(const int inum, const int nlist, int *ilist, int *numj, } UCL_D_Vec acc_view; acc_view.view_offset(inum,dev_nbor,inum*2); - ucl_copy(acc_view,host_acc,true); + ucl_copy(acc_view,host_acc,inum*2,true); time_nbor.stop(); if (_use_packing==false) { diff --git a/lib/gpu/lal_neighbor.h b/lib/gpu/lal_neighbor.h index 05168834c6034a3cc336ef429242d441a63c9945..996deaff6d12bbbfa6789ac12dae0910b7f7f699 100644 --- a/lib/gpu/lal_neighbor.h +++ b/lib/gpu/lal_neighbor.h @@ -110,7 +110,7 @@ class Neighbor { } if (_time_device) { time_nbor.add_to_total(); - time_kernel.add_to_total(); + if (_use_packing==false) time_kernel.add_to_total(); if (_gpu_nbor==2) { time_hybrid1.add_to_total(); time_hybrid2.add_to_total(); @@ -200,7 +200,7 @@ class Neighbor { /// Host storage for nbor counts (row 1) & accumulated neighbor counts (row2) UCL_H_Vec host_acc; /// Device storage for accessing atom indices from the neighbor list (3-body) - UCL_D_Vec dev_acc; + UCL_D_Vec dev_ilist; // ----------------- Data for GPU Neighbor Calculation --------------- diff --git a/lib/gpu/lal_neighbor_gpu.cu b/lib/gpu/lal_neighbor_gpu.cu index b0b3cfb90c958c5c7e7f0c84816be3b03ba73d04..83692a24e4c04bfd9d1441c2a49b5da01fc9813e 100644 --- a/lib/gpu/lal_neighbor_gpu.cu +++ b/lib/gpu/lal_neighbor_gpu.cu @@ -118,24 +118,24 @@ __kernel void transpose(__global tagint *restrict out, const __global tagint *restrict in, int columns_in, int rows_in) { - __local tagint block[BLOCK_CELL_2D][BLOCK_CELL_2D+1]; + __local tagint block[BLOCK_CELL_2D][BLOCK_CELL_2D+1]; - unsigned ti=THREAD_ID_X; - unsigned tj=THREAD_ID_Y; - unsigned bi=BLOCK_ID_X; - unsigned bj=BLOCK_ID_Y; + unsigned ti=THREAD_ID_X; + unsigned tj=THREAD_ID_Y; + unsigned bi=BLOCK_ID_X; + unsigned bj=BLOCK_ID_Y; - unsigned i=bi*BLOCK_CELL_2D+ti; - unsigned j=bj*BLOCK_CELL_2D+tj; - if ((i 1e-5) { + if (r2 < cell_size*cell_size && pid_j != pid_i) { // && r2 > 1e-5 cnt++; if (cnt <= neigh_bin_size) { *neigh_list = pid_j; @@ -243,8 +243,8 @@ __kernel void calc_neigh_list_cell(const __global numtyp4 *restrict x_, } } } - __syncthreads(); - } // for (k) + __syncthreads(); + } // for (k) } } } diff --git a/lib/gpu/lal_pppm_ext.cpp b/lib/gpu/lal_pppm_ext.cpp index 7e07d6c87b393190d3dbd342c0bc6ebfa1ead468..a75536eb19aa805a32c0fd307bc055896f7a80df 100644 --- a/lib/gpu/lal_pppm_ext.cpp +++ b/lib/gpu/lal_pppm_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_pppm.h" diff --git a/lib/gpu/lal_re_squared_ext.cpp b/lib/gpu/lal_re_squared_ext.cpp index b719dfe05f689ffcca81b7c8f93305b1b5998a41..e1eb8a45b01f7d2adc3bd7b8aad02aec03f2f2b6 100644 --- a/lib/gpu/lal_re_squared_ext.cpp +++ b/lib/gpu/lal_re_squared_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_re_squared.h" diff --git a/lib/gpu/lal_soft_ext.cpp b/lib/gpu/lal_soft_ext.cpp index d3b3fa25984cae7225ce70244771ee5a394ecb76..7c0cbe79731a9b204237ea6950a7020582d88662 100644 --- a/lib/gpu/lal_soft_ext.cpp +++ b/lib/gpu/lal_soft_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_soft.h" diff --git a/lib/gpu/lal_sw.cpp b/lib/gpu/lal_sw.cpp index 24984e48785d665c63ad9cae54dc45812846a5f2..46b6382a6097aeaab518a2cc509b6eeb5d92e41b 100644 --- a/lib/gpu/lal_sw.cpp +++ b/lib/gpu/lal_sw.cpp @@ -243,7 +243,7 @@ void SWT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end_vatom.run(&this->atom->x, &sw1, &sw2, &sw3, &map, &elem2param, &_nelements, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); @@ -252,7 +252,7 @@ void SWT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end.run(&this->atom->x, &sw1, &sw2, &sw3, &map, &elem2param, &_nelements, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); diff --git a/lib/gpu/lal_sw.cu b/lib/gpu/lal_sw.cu index 517de70691cd735cac9c9dab5cc849a257f5d373..3b6de5a683d603e74f53b8c2364942fd0f83f2cf 100644 --- a/lib/gpu/lal_sw.cu +++ b/lib/gpu/lal_sw.cu @@ -544,7 +544,7 @@ __kernel void k_sw_three_end(const __global numtyp4 *restrict x_, const int nelements, const __global int * dev_nbor, const __global int * dev_packed, - const __global int * dev_acc, + const __global int * dev_ilist, const __global int * dev_short_nbor, __global acctyp4 *restrict ans, __global acctyp *restrict engv, @@ -614,13 +614,13 @@ __kernel void k_sw_three_end(const __global numtyp4 *restrict x_, int nbor_k,numk; if (dev_nbor==dev_packed) { if (gpu_nbor) nbor_k=j+nbor_pitch; - else nbor_k=dev_acc[j]+nbor_pitch; + else nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch+fast_mul(j,t_per_atom-1); k_end=nbor_k+fast_mul(numk/t_per_atom,n_stride)+(numk & (t_per_atom-1)); nbor_k+=offset_k; } else { - nbor_k=dev_acc[j]+nbor_pitch; + nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch; nbor_k=dev_nbor[nbor_k]; @@ -698,7 +698,7 @@ __kernel void k_sw_three_end_vatom(const __global numtyp4 *restrict x_, const int nelements, const __global int * dev_nbor, const __global int * dev_packed, - const __global int * dev_acc, + const __global int * dev_ilist, const __global int * dev_short_nbor, __global acctyp4 *restrict ans, __global acctyp *restrict engv, @@ -768,13 +768,13 @@ __kernel void k_sw_three_end_vatom(const __global numtyp4 *restrict x_, int nbor_k,numk; if (dev_nbor==dev_packed) { if (gpu_nbor) nbor_k=j+nbor_pitch; - else nbor_k=dev_acc[j]+nbor_pitch; + else nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch+fast_mul(j,t_per_atom-1); k_end=nbor_k+fast_mul(numk/t_per_atom,n_stride)+(numk & (t_per_atom-1)); nbor_k+=offset_k; } else { - nbor_k=dev_acc[j]+nbor_pitch; + nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch; nbor_k=dev_nbor[nbor_k]; diff --git a/lib/gpu/lal_sw_ext.cpp b/lib/gpu/lal_sw_ext.cpp index 4959650c90887d7a5aaaba42fe94452b5b890d88..1935ed615b1acf41697c68ea848f01354b98c180 100644 --- a/lib/gpu/lal_sw_ext.cpp +++ b/lib/gpu/lal_sw_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_sw.h" diff --git a/lib/gpu/lal_table_ext.cpp b/lib/gpu/lal_table_ext.cpp index a2b5c61e74bb9ea6db513f17c3808b52a325088a..f067881b882f5c4321d05d8b3067bfc891fa050a 100644 --- a/lib/gpu/lal_table_ext.cpp +++ b/lib/gpu/lal_table_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_table.h" diff --git a/lib/gpu/lal_tersoff.cpp b/lib/gpu/lal_tersoff.cpp index a63d286d9c16a9120ee9e300f16d9fda4e5ecdfc..ef55b98a2dba21347cc9830858f9663f0ff21b31 100644 --- a/lib/gpu/lal_tersoff.cpp +++ b/lib/gpu/lal_tersoff.cpp @@ -272,7 +272,7 @@ void TersoffT::loop(const bool _eflag, const bool _vflag, const int evatom) { &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), &this->dev_short_nbor, - &_eflag, &this->_ainum, &nbor_pitch, &this->_threads_per_atom); + &eflag, &this->_ainum, &nbor_pitch, &this->_threads_per_atom); ainum=this->ans->inum(); nbor_pitch=this->nbor->nbor_pitch(); @@ -311,7 +311,7 @@ void TersoffT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end_vatom.run(&this->atom->x, &ts1, &ts2, &ts4, &cutsq, &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); @@ -320,7 +320,7 @@ void TersoffT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end.run(&this->atom->x, &ts1, &ts2, &ts4, &cutsq, &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); } diff --git a/lib/gpu/lal_tersoff.cu b/lib/gpu/lal_tersoff.cu index cec0ccc44341c10f9678e57b8de628d169980262..836f05660d7b066dcaf7398ed11e10e96eec7b07 100644 --- a/lib/gpu/lal_tersoff.cu +++ b/lib/gpu/lal_tersoff.cu @@ -696,7 +696,7 @@ __kernel void k_tersoff_three_end(const __global numtyp4 *restrict x_, const __global acctyp4 *restrict zetaij, const __global int * dev_nbor, const __global int * dev_packed, - const __global int * dev_acc, + const __global int * dev_ilist, const __global int * dev_short_nbor, __global acctyp4 *restrict ans, __global acctyp *restrict engv, @@ -777,13 +777,13 @@ __kernel void k_tersoff_three_end(const __global numtyp4 *restrict x_, int nbor_k,numk; if (dev_nbor==dev_packed) { if (gpu_nbor) nbor_k=j+nbor_pitch; - else nbor_k=dev_acc[j]+nbor_pitch; + else nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch+fast_mul(j,t_per_atom-1); k_end=nbor_k+fast_mul(numk/t_per_atom,n_stride)+(numk & (t_per_atom-1)); nbor_k+=offset_k; } else { - nbor_k=dev_acc[j]+nbor_pitch; + nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch; nbor_k=dev_nbor[nbor_k]; @@ -941,7 +941,7 @@ __kernel void k_tersoff_three_end_vatom(const __global numtyp4 *restrict x_, const __global acctyp4 *restrict zetaij, const __global int * dev_nbor, const __global int * dev_packed, - const __global int * dev_acc, + const __global int * dev_ilist, const __global int * dev_short_nbor, __global acctyp4 *restrict ans, __global acctyp *restrict engv, @@ -1022,13 +1022,13 @@ __kernel void k_tersoff_three_end_vatom(const __global numtyp4 *restrict x_, int nbor_k,numk; if (dev_nbor==dev_packed) { if (gpu_nbor) nbor_k=j+nbor_pitch; - else nbor_k=dev_acc[j]+nbor_pitch; + else nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch+fast_mul(j,t_per_atom-1); k_end=nbor_k+fast_mul(numk/t_per_atom,n_stride)+(numk & (t_per_atom-1)); nbor_k+=offset_k; } else { - nbor_k=dev_acc[j]+nbor_pitch; + nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch; nbor_k=dev_nbor[nbor_k]; diff --git a/lib/gpu/lal_tersoff_ext.cpp b/lib/gpu/lal_tersoff_ext.cpp index e6dc5390354085e8b552a7eef683778795b8f2cc..749842864f958150170d534409d9fa12a03ac259 100644 --- a/lib/gpu/lal_tersoff_ext.cpp +++ b/lib/gpu/lal_tersoff_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_tersoff.h" diff --git a/lib/gpu/lal_tersoff_mod.cpp b/lib/gpu/lal_tersoff_mod.cpp index c37c07f1a1234d1945cfefdac45d42f9be446458..3cbb488cab878c497c0f0cf7eede5f9c5ce9663c 100644 --- a/lib/gpu/lal_tersoff_mod.cpp +++ b/lib/gpu/lal_tersoff_mod.cpp @@ -272,7 +272,7 @@ void TersoffMT::loop(const bool _eflag, const bool _vflag, const int evatom) { &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), &this->dev_short_nbor, - &_eflag, &this->_ainum, &nbor_pitch, &this->_threads_per_atom); + &eflag, &this->_ainum, &nbor_pitch, &this->_threads_per_atom); ainum=this->ans->inum(); nbor_pitch=this->nbor->nbor_pitch(); @@ -311,7 +311,7 @@ void TersoffMT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end_vatom.run(&this->atom->x, &ts1, &ts2, &ts4, &ts5, &cutsq, &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); @@ -320,7 +320,7 @@ void TersoffMT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end.run(&this->atom->x, &ts1, &ts2, &ts4, &ts5, &cutsq, &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); } diff --git a/lib/gpu/lal_tersoff_mod.cu b/lib/gpu/lal_tersoff_mod.cu index 576359b5146246d74078b0deff98a700bbdcb533..dfb94c41451c4a553a244e14c2aa05710cf1ebe6 100644 --- a/lib/gpu/lal_tersoff_mod.cu +++ b/lib/gpu/lal_tersoff_mod.cu @@ -272,7 +272,7 @@ __kernel void k_tersoff_mod_zeta(const __global numtyp4 *restrict x_, if (ii #include -#include +#include #include "lal_tersoff_mod.h" diff --git a/lib/gpu/lal_tersoff_zbl.cpp b/lib/gpu/lal_tersoff_zbl.cpp index 341f663030f6330ec0ffbfd97526a24e5e59e87a..ebf67285eda47914ed06f3d0ec4abe3d4d4084aa 100644 --- a/lib/gpu/lal_tersoff_zbl.cpp +++ b/lib/gpu/lal_tersoff_zbl.cpp @@ -297,7 +297,7 @@ void TersoffZT::loop(const bool _eflag, const bool _vflag, const int evatom) { &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), &this->dev_short_nbor, - &_eflag, &this->_ainum, &nbor_pitch, &this->_threads_per_atom); + &eflag, &this->_ainum, &nbor_pitch, &this->_threads_per_atom); ainum=this->ans->inum(); nbor_pitch=this->nbor->nbor_pitch(); @@ -337,7 +337,7 @@ void TersoffZT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end_vatom.run(&this->atom->x, &ts1, &ts2, &ts4, &cutsq, &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); @@ -346,7 +346,7 @@ void TersoffZT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end.run(&this->atom->x, &ts1, &ts2, &ts4, &cutsq, &map, &elem2param, &_nelements, &_nparams, &_zetaij, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); } diff --git a/lib/gpu/lal_tersoff_zbl.cu b/lib/gpu/lal_tersoff_zbl.cu index e8bb017f5901a9184b80403d8814aab50794500c..73ff51c70404cfea89fa7c9195e26ac12b6fbbcd 100644 --- a/lib/gpu/lal_tersoff_zbl.cu +++ b/lib/gpu/lal_tersoff_zbl.cu @@ -278,7 +278,7 @@ __kernel void k_tersoff_zbl_zeta(const __global numtyp4 *restrict x_, if (ii #include -#include +#include #include "lal_tersoff_zbl.h" diff --git a/lib/gpu/lal_ufm_ext.cpp b/lib/gpu/lal_ufm_ext.cpp index ae4a5fb8fc9fe11e658271154178610173541683..dd476ec3fa164c277716e431f08e77c1a31b8bec 100644 --- a/lib/gpu/lal_ufm_ext.cpp +++ b/lib/gpu/lal_ufm_ext.cpp @@ -17,7 +17,7 @@ #include #include -#include +#include #include "lal_ufm.h" diff --git a/lib/gpu/lal_vashishta.cpp b/lib/gpu/lal_vashishta.cpp index d03ac992bd468ea0677a6b537468016f56b7b3e0..5a01a9bd46f185938710ab65cfd75761b3f5fb1e 100644 --- a/lib/gpu/lal_vashishta.cpp +++ b/lib/gpu/lal_vashishta.cpp @@ -278,7 +278,7 @@ void VashishtaT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end_vatom.run(&this->atom->x, ¶m1, ¶m2, ¶m3, ¶m4, ¶m5, &map, &elem2param, &_nelements, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); } else { @@ -286,7 +286,7 @@ void VashishtaT::loop(const bool _eflag, const bool _vflag, const int evatom) { this->k_three_end.run(&this->atom->x, ¶m1, ¶m2, ¶m3, ¶m4, ¶m5, &map, &elem2param, &_nelements, &this->nbor->dev_nbor, &this->_nbor_data->begin(), - &this->nbor->dev_acc, &this->dev_short_nbor, + &this->nbor->dev_ilist, &this->dev_short_nbor, &end_ans->force, &end_ans->engv, &eflag, &vflag, &ainum, &nbor_pitch, &this->_threads_per_atom, &this->_gpu_nbor); } diff --git a/lib/gpu/lal_vashishta.cu b/lib/gpu/lal_vashishta.cu index d2e8bb1496abfd7355f88730cbb0d69c1c22339d..0da46c3b534cc29cba600851db0dda05a2cf38da 100644 --- a/lib/gpu/lal_vashishta.cu +++ b/lib/gpu/lal_vashishta.cu @@ -554,7 +554,7 @@ __kernel void k_vashishta_three_end(const __global numtyp4 *restrict x_, const int nelements, const __global int * dev_nbor, const __global int * dev_packed, - const __global int * dev_acc, + const __global int * dev_ilist, const __global int * dev_short_nbor, __global acctyp4 *restrict ans, __global acctyp *restrict engv, @@ -623,13 +623,13 @@ __kernel void k_vashishta_three_end(const __global numtyp4 *restrict x_, int nbor_k,numk; if (dev_nbor==dev_packed) { if (gpu_nbor) nbor_k=j+nbor_pitch; - else nbor_k=dev_acc[j]+nbor_pitch; + else nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch+fast_mul(j,t_per_atom-1); k_end=nbor_k+fast_mul(numk/t_per_atom,n_stride)+(numk & (t_per_atom-1)); nbor_k+=offset_k; } else { - nbor_k=dev_acc[j]+nbor_pitch; + nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch; nbor_k=dev_nbor[nbor_k]; @@ -709,7 +709,7 @@ __kernel void k_vashishta_three_end_vatom(const __global numtyp4 *restrict x_, const int nelements, const __global int * dev_nbor, const __global int * dev_packed, - const __global int * dev_acc, + const __global int * dev_ilist, const __global int * dev_short_nbor, __global acctyp4 *restrict ans, __global acctyp *restrict engv, @@ -778,13 +778,13 @@ __kernel void k_vashishta_three_end_vatom(const __global numtyp4 *restrict x_, int nbor_k,numk; if (dev_nbor==dev_packed) { if (gpu_nbor) nbor_k=j+nbor_pitch; - else nbor_k=dev_acc[j]+nbor_pitch; + else nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch+fast_mul(j,t_per_atom-1); k_end=nbor_k+fast_mul(numk/t_per_atom,n_stride)+(numk & (t_per_atom-1)); nbor_k+=offset_k; } else { - nbor_k=dev_acc[j]+nbor_pitch; + nbor_k=dev_ilist[j]+nbor_pitch; numk=dev_nbor[nbor_k]; nbor_k+=nbor_pitch; nbor_k=dev_nbor[nbor_k]; diff --git a/lib/gpu/lal_vashishta_ext.cpp b/lib/gpu/lal_vashishta_ext.cpp index 22f530a7ed01dd580ad1122b06ac5785676f51a6..56dfd8a0ffb847c52baf7fd2108fc0e086df7a30 100644 --- a/lib/gpu/lal_vashishta_ext.cpp +++ b/lib/gpu/lal_vashishta_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_vashishta.h" using namespace LAMMPS_AL; diff --git a/lib/gpu/lal_yukawa_colloid_ext.cpp b/lib/gpu/lal_yukawa_colloid_ext.cpp index e2b0354d1046497a338d684d81fa3ba11d82df5e..988d33bdd663448da64437b720f39d6a8c06f036 100644 --- a/lib/gpu/lal_yukawa_colloid_ext.cpp +++ b/lib/gpu/lal_yukawa_colloid_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_yukawa_colloid.h" diff --git a/lib/gpu/lal_yukawa_ext.cpp b/lib/gpu/lal_yukawa_ext.cpp index 9d38387bc1b5611c44e4a97a1c95ca99ebd88371..995694bdfd9f3a2e7b854267977bfffa14af7a39 100644 --- a/lib/gpu/lal_yukawa_ext.cpp +++ b/lib/gpu/lal_yukawa_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_yukawa.h" diff --git a/lib/gpu/lal_zbl_ext.cpp b/lib/gpu/lal_zbl_ext.cpp index 37aa74351b63897f9c0979a9401f64db833b94e5..f15e814a50ae1b0c95b9907e1570e83dc7486356 100644 --- a/lib/gpu/lal_zbl_ext.cpp +++ b/lib/gpu/lal_zbl_ext.cpp @@ -15,7 +15,7 @@ #include #include -#include +#include #include "lal_zbl.h" diff --git a/lib/kim/Install.py b/lib/kim/Install.py index 0e873889546d198398f22d3fc2df37d0bc3fec06..d098250906bfabd19e74db7ad2a657d92a4c4ead 100644 --- a/lib/kim/Install.py +++ b/lib/kim/Install.py @@ -21,7 +21,7 @@ Syntax from lib dir: python Install.py -b -v version -a kim-name specify one or more options, order does not matter -v = version of KIM API library to use - default = kim-api-v1.9.2 (current as of Oct 2017) + default = kim-api-v1.9.5 (current as of May 2018) -b = download and build base KIM API library with example Models this will delete any previous installation in the current folder -n = do NOT download and build base KIM API library. @@ -109,7 +109,7 @@ nargs = len(args) if nargs == 0: error() thisdir = os.environ['PWD'] -version = "kim-api-v1.9.2" +version = "kim-api-v1.9.5" buildflag = False everythingflag = False @@ -166,9 +166,6 @@ if pathflag: mkfile.write("print_dir:\n") mkfile.write(" @printf $(KIM_INSTALL_DIR)\n") - with open("%s/Makefile.KIM_Config" % thisdir, 'w') as cfgfile: - cfgfile.write("include %s/lib/kim-api/Makefile.KIM_Config" % kimdir) - print("Created %s/Makefile.KIM_DIR\n using %s" % (thisdir,kimdir)) else: kimdir = os.path.join(os.path.abspath(thisdir), "installed-" + version) @@ -191,9 +188,6 @@ if buildflag: mkfile.write("print_dir:\n") mkfile.write(" @printf $(KIM_INSTALL_DIR)\n") - with open("%s/Makefile.KIM_Config" % thisdir, 'w') as cfgfile: - cfgfile.write("include %s/lib/kim-api/Makefile.KIM_Config" % kimdir) - print("Created %s/Makefile.KIM_DIR\n using %s" % (thisdir,kimdir)) # download entire kim-api tarball @@ -247,11 +241,16 @@ if buildflag: # add single OpenKIM model if addflag: + makefile_path = os.path.join(thisdir, "Makefile.KIM_DIR") + if os.path.isfile(makefile_path): + cmd = 'make --no-print-directory -f %s print_dir' % makefile_path + kimdir = subprocess.check_output(cmd,stderr=subprocess.STDOUT,shell=True) + if not os.path.isdir(kimdir): print("\nkim-api is not installed") error() # download single model - cmd = '%s/bin/kim-api-v1-collections-management install system %s' % (kimdir, addmodelname) + cmd = '%s/bin/kim-api-v1-collections-management install system %s' % (kimdir.decode("UTF-8"), addmodelname) txt = subprocess.check_output(cmd,stderr=subprocess.STDOUT,shell=True) if verboseflag: print (txt.decode("UTF-8")) diff --git a/lib/kim/README b/lib/kim/README index 7a4230dc25e99a282b5ba9b8e439d0b0250da058..ce4ea1bdff42e55ad70b9101bdbea5b48ace61a6 100644 --- a/lib/kim/README +++ b/lib/kim/README @@ -20,47 +20,35 @@ Instructions: 1. Configure lammps for use with the kim-api library installed in this directory -$ printf "KIM_INSTALL_DIR=${PWD}\n" > ./Makefile.KIM_DIR -$ printf "include ${PWD}/lib/kim-api/Makefile.KIM_Config\n" > ./Makefile.KIM_Config +# replace X.Y.Z as appropriate here and below +$ printf "KIM_INSTALL_DIR=${PWD}/installed-kim-api-vX.Y.Z\n" > ./Makefile.KIM_DIR 2. Download and unpack the kim-api -# replace X.Y.Z as appropriate here and below -$ wget http://s3.openkim.org/kim-api/kim-api-vX.Y.Z.tgz -$ tar zxvf kim-api-vX.Y.Z.tgz +$ wget http://s3.openkim.org/kim-api/kim-api-vX.Y.Z.txz +$ tar zxvf kim-api-vX.Y.Z.txz # configure the kim-api $ cd kim-api-vX.Y.Z -$ ./configure --prefix=${PWD}/../ - -# setup the desired kim item -$ make add-Pair_Johnson_Fe__MO_857282754307_002 +$ ./configure --prefix=${PWD}/../installed-kim-api-vX.Y.Z 3. Build and install the kim-api and model $ make $ make install - -# replace X with the KIM API major version number -$ make install-set-default-to-vX -$ cd ../ +$ cd .. 4. Remove source and build files $ rm -rf kim-api-vX.Y.Z -$ rm -rf kim-api-vX.Y.Z.tgz +$ rm -rf kim-api-vX.Y.Z.txz -5. To add additional items do the following (replace the kim item name with your +5. To add items do the following (replace the kim item name with your desired value) -$ wget https://openkim.org/download/EAM_Johnson_NearestNeighbor_Cu__MO_887933271505_001.tgz -$ tar zxvf EAM_Johnson_NearestNeighbor_Cu__MO_887933271505_001.tgz -$ cd EAM_Johnson_NearestNeighbor_Cu__MO_887933271505_001 -$ make -$ make install -$ cd .. -$ rm -rf EAM_Johnson_NearestNeighbor_Cu__MO_887933271505_001 -$ rm -rf EAM_Johnson_NearestNeighbor_Cu__MO_887933271505_001.tgz +$ source ${PWD}/kim-api-vX.Y.Z/bin/kim-api-v1-activate +$ kim-api-v1-collections-management install system Pair_Johnson_Fe__MO_857282754307_002 + ----------------- @@ -73,4 +61,4 @@ $ make g++ (or whatever target you wish) Note that the Makefile.lammps and Makefile.KIM_DIR files in this directory are required to allow the LAMMPS build to find the necessary KIM files. -You should not normally need to edit this file. +You should not normally need to edit these files. diff --git a/lib/kim/pair-kim.release.info b/lib/kim/pair-kim.release.info deleted file mode 100644 index f6c3c01c4e5ea5a1b61f0fc1e6900e391df57a66..0000000000000000000000000000000000000000 --- a/lib/kim/pair-kim.release.info +++ /dev/null @@ -1,6 +0,0 @@ -This package (pair-kim-v1.7.2+1) created from commit - -ced1275c5fd5b382cb9bd39e44ed1324c7c85e99 - -of the pair-kim git repository -By Ryan S. Elliott (relliott@umn.edu) on Mon Feb 22 14:59:53 CST 2016. diff --git a/lib/kokkos/CHANGELOG.md b/lib/kokkos/CHANGELOG.md index feb2bd547f034a5ef233667a3a9b5c3d0e02d3f8..145cc62706eea04fab0bb6e3fbcb676ee03b9ef8 100644 --- a/lib/kokkos/CHANGELOG.md +++ b/lib/kokkos/CHANGELOG.md @@ -1,5 +1,58 @@ # Change Log +## [2.7.00](https://github.com/kokkos/kokkos/tree/2.7.00) (2018-05-24) +[Full Changelog](https://github.com/kokkos/kokkos/compare/2.6.00...2.7.00) + +**Part of the Kokkos C++ Performance Portability Programming EcoSystem 2.7** + +**Implemented enhancements:** + +- Deprecate team\_size auto adjusting to maximal value possible [\#1618](https://github.com/kokkos/kokkos/issues/1618) +- DynamicView - remove restrictions to std::is\_trivial types and value\_type is power of two [\#1586](https://github.com/kokkos/kokkos/issues/1586) +- Kokkos::StaticCrsGraph does not propagate memory traits \(e.g., Unmanaged\) [\#1581](https://github.com/kokkos/kokkos/issues/1581) +- Adding ETI for DeepCopy / ViewFill etc. [\#1578](https://github.com/kokkos/kokkos/issues/1578) +- Deprecate all the left over KOKKOS\_HAVE\_ Macros and Kokkos\_OldMacros.hpp [\#1572](https://github.com/kokkos/kokkos/issues/1572) +- Error if Kokkos\_ARCH set in CMake [\#1555](https://github.com/kokkos/kokkos/issues/1555) +- Deprecate ExecSpace::initialize / ExecSpace::finalize [\#1532](https://github.com/kokkos/kokkos/issues/1532) +- New API for TeamPolicy property setting [\#1531](https://github.com/kokkos/kokkos/issues/1531) +- clang 6.0 + cuda debug out-of-memory test failure [\#1521](https://github.com/kokkos/kokkos/issues/1521) +- Cuda UniqueToken interface not consistent with other backends [\#1505](https://github.com/kokkos/kokkos/issues/1505) +- Move Reducers out of Experimental namespace [\#1494](https://github.com/kokkos/kokkos/issues/1494) +- Provide scope guard for initialize/finalize [\#1479](https://github.com/kokkos/kokkos/issues/1479) +- Check Kokkos::is\_initialized in SharedAllocationRecord dtor [\#1465](https://github.com/kokkos/kokkos/issues/1465) +- Remove static list of allocations [\#1464](https://github.com/kokkos/kokkos/issues/1464) +- Makefiles: Support single compile/link line use case [\#1402](https://github.com/kokkos/kokkos/issues/1402) +- ThreadVectorRange with a range [\#1400](https://github.com/kokkos/kokkos/issues/1400) +- Exclusive scan + last value API [\#1358](https://github.com/kokkos/kokkos/issues/1358) +- Install kokkos\_generated\_settings.cmake [\#1348](https://github.com/kokkos/kokkos/issues/1348) +- Kokkos arrays \(not views!\) don't do bounds checking in debug mode [\#1342](https://github.com/kokkos/kokkos/issues/1342) +- Expose round-robin GPU assignment outside of initialize\(int, char\*\*\) [\#1318](https://github.com/kokkos/kokkos/issues/1318) +- DynamicView misses use\_count and label function [\#1298](https://github.com/kokkos/kokkos/issues/1298) +- View constructor should check arguments [\#1286](https://github.com/kokkos/kokkos/issues/1286) +- False Positive on Oversubscription Warning [\#1207](https://github.com/kokkos/kokkos/issues/1207) +- Allow \(require\) execution space for 1st arg of VerifyExecutionCanAccessMemorySpace [\#1192](https://github.com/kokkos/kokkos/issues/1192) +- ROCm: Add ROCmHostPinnedSpace [\#958](https://github.com/kokkos/kokkos/issues/958) +- power of two functions [\#656](https://github.com/kokkos/kokkos/issues/656) +- CUDA 8 has 64bit \_\_shfl [\#361](https://github.com/kokkos/kokkos/issues/361) +- Add TriBITS/CMake configure information about node types [\#243](https://github.com/kokkos/kokkos/issues/243) + +**Fixed bugs:** + +- CUDA atomic\_fetch\_sub for doubles is hitting CAS instead of intrinsic [\#1624](https://github.com/kokkos/kokkos/issues/1624) +- Bug: use of ballot on Volta [\#1612](https://github.com/kokkos/kokkos/issues/1612) +- Kokkos::deep\_copy memory access failures [\#1583](https://github.com/kokkos/kokkos/issues/1583) +- g++ -std option doubly set for cmake project [\#1548](https://github.com/kokkos/kokkos/issues/1548) +- ViewFill for 1D Views of larger 32bit entries fails [\#1541](https://github.com/kokkos/kokkos/issues/1541) +- CUDA Volta another warpsync bug [\#1520](https://github.com/kokkos/kokkos/issues/1520) +- triple\_nested\_parallelism fails with KOKKOS\_DEBUG and CUDA [\#1513](https://github.com/kokkos/kokkos/issues/1513) +- Jenkins errors in Kokkos\_SharedAlloc.cpp with debug build [\#1511](https://github.com/kokkos/kokkos/issues/1511) +- Kokkos::Sort out-of-bounds with empty bins [\#1504](https://github.com/kokkos/kokkos/issues/1504) +- Get rid of deprecated functions inside Kokkos [\#1484](https://github.com/kokkos/kokkos/issues/1484) +- get\_work\_partition casts int64\_t to int, causing a seg fault [\#1481](https://github.com/kokkos/kokkos/issues/1481) +- NVCC bug with \_\_device\_\_ on defaulted function [\#1470](https://github.com/kokkos/kokkos/issues/1470) +- CMake example broken with CUDA backend [\#1468](https://github.com/kokkos/kokkos/issues/1468) + + ## [2.6.00](https://github.com/kokkos/kokkos/tree/2.6.00) (2018-03-07) [Full Changelog](https://github.com/kokkos/kokkos/compare/2.5.00...2.6.00) diff --git a/lib/kokkos/CMakeLists.txt b/lib/kokkos/CMakeLists.txt index cd1f4ea981339a5ff01095be9bca144cdb5d9064..9e5308f1c3245ea40a01079909cd9639cf22c82f 100644 --- a/lib/kokkos/CMakeLists.txt +++ b/lib/kokkos/CMakeLists.txt @@ -44,6 +44,7 @@ IF(NOT KOKKOS_HAS_TRILINOS) "${KOKKOS_SETTINGS} make -f ${KOKKOS_SRC_PATH}/cmake/Makefile.generate_cmake_settings CXX=${CMAKE_CXX_COMPILER} generate_build_settings") endif() include(${Kokkos_BINARY_DIR}/kokkos_generated_settings.cmake) + install(FILES ${Kokkos_BINARY_DIR}/kokkos_generated_settings.cmake DESTINATION lib/cmake/Kokkos) string(REPLACE " " ";" KOKKOS_TPL_INCLUDE_DIRS "${KOKKOS_GMAKE_TPL_INCLUDE_DIRS}") string(REPLACE " " ";" KOKKOS_TPL_LIBRARY_DIRS "${KOKKOS_GMAKE_TPL_LIBRARY_DIRS}") string(REPLACE " " ";" KOKKOS_TPL_LIBRARY_NAMES "${KOKKOS_GMAKE_TPL_LIBRARY_NAMES}") diff --git a/lib/kokkos/Makefile.kokkos b/lib/kokkos/Makefile.kokkos index a7bb63f190348405267c3ea50e0f55dcf20645a3..52cd3969f9f74d736fc9be99ad64114b8f5af6cf 100644 --- a/lib/kokkos/Makefile.kokkos +++ b/lib/kokkos/Makefile.kokkos @@ -1,7 +1,9 @@ # Default settings common options. #LAMMPS specific settings: -KOKKOS_PATH=../../lib/kokkos +ifndef KOKKOS_PATH + KOKKOS_PATH=../../lib/kokkos +endif CXXFLAGS=$(CCFLAGS) # Options: Cuda,ROCm,OpenMP,Pthreads,Qthreads,Serial @@ -21,8 +23,10 @@ KOKKOS_DEBUG ?= "no" KOKKOS_USE_TPLS ?= "" # Options: c++11,c++1z KOKKOS_CXX_STANDARD ?= "c++11" -# Options: aggressive_vectorization,disable_profiling,disable_deprecated_code +# Options: aggressive_vectorization,disable_profiling,disable_deprecated_code,enable_large_mem_tests KOKKOS_OPTIONS ?= "" +# Option for setting ETI path +KOKKOS_ETI_PATH ?= ${KOKKOS_PATH}/core/src/eti # Default settings specific options. # Options: force_uvm,use_ldg,rdc,enable_lambda @@ -51,10 +55,12 @@ KOKKOS_INTERNAL_DISABLE_PROFILING := $(call kokkos_has_string,$(KOKKOS_OPTIONS), KOKKOS_INTERNAL_DISABLE_DEPRECATED_CODE := $(call kokkos_has_string,$(KOKKOS_OPTIONS),disable_deprecated_code) KOKKOS_INTERNAL_DISABLE_DUALVIEW_MODIFY_CHECK := $(call kokkos_has_string,$(KOKKOS_OPTIONS),disable_dualview_modify_check) KOKKOS_INTERNAL_ENABLE_PROFILING_LOAD_PRINT := $(call kokkos_has_string,$(KOKKOS_OPTIONS),enable_profile_load_print) +KOKKOS_INTERNAL_ENABLE_LARGE_MEM_TESTS := $(call kokkos_has_string,$(KOKKOS_OPTIONS),enable_large_mem_tests) KOKKOS_INTERNAL_CUDA_USE_LDG := $(call kokkos_has_string,$(KOKKOS_CUDA_OPTIONS),use_ldg) KOKKOS_INTERNAL_CUDA_USE_UVM := $(call kokkos_has_string,$(KOKKOS_CUDA_OPTIONS),force_uvm) KOKKOS_INTERNAL_CUDA_USE_RELOC := $(call kokkos_has_string,$(KOKKOS_CUDA_OPTIONS),rdc) KOKKOS_INTERNAL_CUDA_USE_LAMBDA := $(call kokkos_has_string,$(KOKKOS_CUDA_OPTIONS),enable_lambda) +KOKKOS_INTERNAL_ENABLE_ETI := $(call kokkos_has_string,$(KOKKOS_OPTIONS),enable_eti) # Check for Kokkos Host Execution Spaces one of which must be on. @@ -78,7 +84,12 @@ KOKKOS_INTERNAL_USE_OPENMPTARGET := $(call kokkos_has_string,$(KOKKOS_DEVICES),O ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) KOKKOS_INTERNAL_NVCC_PATH := $(shell which nvcc) - CUDA_PATH ?= $(KOKKOS_INTERNAL_NVCC_PATH:/bin/nvcc=) + ifeq ($(origin CUDA_PATH), undefined) + CUDA_PATH = $(KOKKOS_INTERNAL_NVCC_PATH:/bin/nvcc=) + endif + ifeq ($(CUDA_PATH),) + CUDA_PATH = $(KOKKOS_INTERNAL_NVCC_PATH:/bin/nvcc=) + endif KOKKOS_INTERNAL_COMPILER_NVCC_VERSION := $(shell nvcc --version 2>&1 | grep release | cut -d' ' -f5 | cut -d',' -f1 | tr -d .) endif @@ -116,7 +127,7 @@ ifeq ($(KOKKOS_INTERNAL_COMPILER_HCC), 1) endif ifeq ($(KOKKOS_INTERNAL_COMPILER_CLANG), 1) - KOKKOS_INTERNAL_COMPILER_CLANG_VERSION := $(shell clang --version | grep version | cut -d ' ' -f3 | tr -d '.') + KOKKOS_INTERNAL_COMPILER_CLANG_VERSION := $(shell $(CXX) --version | grep version | cut -d ' ' -f3 | tr -d '.') ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) ifeq ($(shell test $(KOKKOS_INTERNAL_COMPILER_CLANG_VERSION) -lt 400; echo $$?),0) @@ -323,12 +334,13 @@ endif # Generating the list of Flags. -KOKKOS_CPPFLAGS = -I./ -I$(KOKKOS_PATH)/core/src -I$(KOKKOS_PATH)/containers/src -I$(KOKKOS_PATH)/algorithms/src +#CPPFLAGS is now unused +KOKKOS_CPPFLAGS = +KOKKOS_CXXFLAGS = -I./ -I$(KOKKOS_PATH)/core/src -I$(KOKKOS_PATH)/containers/src -I$(KOKKOS_PATH)/algorithms/src -I$(KOKKOS_ETI_PATH) KOKKOS_TPL_INCLUDE_DIRS = KOKKOS_TPL_LIBRARY_DIRS = KOKKOS_TPL_LIBRARY_NAMES = -KOKKOS_CXXFLAGS = ifeq ($(KOKKOS_INTERNAL_ENABLE_COMPILER_WARNINGS), 1) KOKKOS_CXXFLAGS += $(KOKKOS_INTERNAL_COMPILER_WARNINGS) endif @@ -336,6 +348,8 @@ endif KOKKOS_LIBS = -ldl KOKKOS_TPL_LIBRARY_NAMES += dl KOKKOS_LDFLAGS = -L$(shell pwd) +# CXXLDFLAGS is used together with CXXFLAGS in a combined compile/link command +KOKKOS_CXXLDFLAGS = -L$(shell pwd) KOKKOS_LINK_FLAGS = KOKKOS_SRC = KOKKOS_HEADERS = @@ -362,7 +376,7 @@ tmp := $(call kokkos_append_header,'\#endif') tmp := $(call kokkos_append_header,"/* Execution Spaces */") ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_CUDA") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CUDA") endif ifeq ($(KOKKOS_INTERNAL_USE_ROCM), 1) @@ -374,19 +388,19 @@ ifeq ($(KOKKOS_INTERNAL_USE_OPENMPTARGET), 1) endif ifeq ($(KOKKOS_INTERNAL_USE_OPENMP), 1) - tmp := $(call kokkos_append_header,'\#define KOKKOS_HAVE_OPENMP') + tmp := $(call kokkos_append_header,'\#define KOKKOS_ENABLE_OPENMP') endif ifeq ($(KOKKOS_INTERNAL_USE_PTHREADS), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_PTHREAD") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_THREADS") endif ifeq ($(KOKKOS_INTERNAL_USE_QTHREADS), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_QTHREADS") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_QTHREADS") endif ifeq ($(KOKKOS_INTERNAL_USE_SERIAL), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_SERIAL") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_SERIAL") endif ifeq ($(KOKKOS_INTERNAL_USE_TM), 1) @@ -422,13 +436,13 @@ endif tmp := $(call kokkos_append_header,"/* General Settings */") ifeq ($(KOKKOS_INTERNAL_ENABLE_CXX11), 1) KOKKOS_CXXFLAGS += $(KOKKOS_INTERNAL_CXX11_FLAG) - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_CXX11") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CXX11") endif ifeq ($(KOKKOS_INTERNAL_ENABLE_CXX1Z), 1) KOKKOS_CXXFLAGS += $(KOKKOS_INTERNAL_CXX1Z_FLAG) - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_CXX11") - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_CXX1Z") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CXX11") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CXX1Z") endif ifeq ($(KOKKOS_INTERNAL_ENABLE_DEBUG), 1) @@ -437,9 +451,9 @@ ifeq ($(KOKKOS_INTERNAL_ENABLE_DEBUG), 1) endif KOKKOS_CXXFLAGS += -g - KOKKOS_LDFLAGS += -g -ldl + KOKKOS_LDFLAGS += -g tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_DEBUG_BOUNDS_CHECK") - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_DEBUG") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_DEBUG") ifeq ($(KOKKOS_INTERNAL_DISABLE_DUALVIEW_MODIFY_CHECK), 0) tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_DEBUG_DUALVIEW_MODIFY_CHECK") endif @@ -451,14 +465,15 @@ endif ifeq ($(KOKKOS_INTERNAL_USE_HWLOC), 1) ifneq ($(HWLOC_PATH),) - KOKKOS_CPPFLAGS += -I$(HWLOC_PATH)/include + KOKKOS_CXXFLAGS += -I$(HWLOC_PATH)/include KOKKOS_LDFLAGS += -L$(HWLOC_PATH)/lib + KOKKOS_CXXLDFLAGS += -L$(HWLOC_PATH)/lib KOKKOS_TPL_INCLUDE_DIRS += $(HWLOC_PATH)/include KOKKOS_TPL_LIBRARY_DIRS += $(HWLOC_PATH)/lib endif KOKKOS_LIBS += -lhwloc KOKKOS_TPL_LIBRARY_NAMES += hwloc - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_HWLOC") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_HWLOC") endif ifeq ($(KOKKOS_INTERNAL_USE_LIBRT), 1) @@ -469,14 +484,15 @@ endif ifeq ($(KOKKOS_INTERNAL_USE_MEMKIND), 1) ifneq ($(MEMKIND_PATH),) - KOKKOS_CPPFLAGS += -I$(MEMKIND_PATH)/include + KOKKOS_CXXFLAGS += -I$(MEMKIND_PATH)/include KOKKOS_LDFLAGS += -L$(MEMKIND_PATH)/lib + KOKKOS_CXXLDFLAGS += -L$(MEMKIND_PATH)/lib KOKKOS_TPL_INCLUDE_DIRS += $(MEMKIND_PATH)/include KOKKOS_TPL_LIBRARY_DIRS += $(MEMKIND_PATH)/lib endif KOKKOS_LIBS += -lmemkind -lnuma KOKKOS_TPL_LIBRARY_NAMES += memkind numa - tmp := $(call kokkos_append_header,"\#define KOKKOS_HAVE_HBWSPACE") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_HBWSPACE") endif ifeq ($(KOKKOS_INTERNAL_DISABLE_PROFILING), 0) @@ -486,6 +502,13 @@ endif ifeq ($(KOKKOS_INTERNAL_DISABLE_DEPRECATED_CODE), 0) tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_DEPRECATED_CODE") endif +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_ETI") +endif + +ifeq ($(KOKKOS_INTERNAL_ENABLE_LARGE_MEM_TESTS), 1) + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_LARGE_MEM_TESTS") +endif tmp := $(call kokkos_append_header,"/* Optimization Settings */") @@ -497,27 +520,35 @@ tmp := $(call kokkos_append_header,"/* Cuda Settings */") ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) ifeq ($(KOKKOS_INTERNAL_CUDA_USE_LDG), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_CUDA_USE_LDG_INTRINSIC") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CUDA_LDG_INTRINSIC") else ifeq ($(KOKKOS_INTERNAL_COMPILER_CLANG), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_CUDA_USE_LDG_INTRINSIC") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CUDA_LDG_INTRINSIC") endif endif ifeq ($(KOKKOS_INTERNAL_CUDA_USE_UVM), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_CUDA_USE_UVM") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CUDA_UVM") endif ifeq ($(KOKKOS_INTERNAL_CUDA_USE_RELOC), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_CUDA_USE_RELOCATABLE_DEVICE_CODE") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE") KOKKOS_CXXFLAGS += --relocatable-device-code=true KOKKOS_LDFLAGS += --relocatable-device-code=true endif + ifeq ($(KOKKOS_INTERNAL_COMPILER_NVCC), 1) + ifeq ($(shell test $(KOKKOS_INTERNAL_COMPILER_NVCC_VERSION) -ge 90; echo $$?),0) + # This diagnostic is just plain wrong in CUDA 9 + # See https://github.com/kokkos/kokkos/issues/1470 + KOKKOS_CXXFLAGS += -Xcudafe --diag_suppress=esa_on_defaulted_function_ignored + endif + endif + ifeq ($(KOKKOS_INTERNAL_CUDA_USE_LAMBDA), 1) ifeq ($(KOKKOS_INTERNAL_COMPILER_NVCC), 1) ifeq ($(shell test $(KOKKOS_INTERNAL_COMPILER_NVCC_VERSION) -gt 70; echo $$?),0) - tmp := $(call kokkos_append_header,"\#define KOKKOS_CUDA_USE_LAMBDA") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CUDA_LAMBDA") KOKKOS_CXXFLAGS += -expt-extended-lambda else $(warning Warning: Cuda Lambda support was requested but NVCC version is too low. This requires NVCC for Cuda version 7.5 or higher. Disabling Lambda support now.) @@ -525,12 +556,12 @@ ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) endif ifeq ($(KOKKOS_INTERNAL_COMPILER_CLANG), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_CUDA_USE_LAMBDA") + tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_CUDA_LAMBDA") endif endif ifeq ($(KOKKOS_INTERNAL_COMPILER_CLANG), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_CUDA_CLANG_WORKAROUND") + tmp := $(call kokkos_append_header,"\#define KOKKOS_IMPL_CUDA_CLANG_WORKAROUND") endif endif @@ -907,10 +938,14 @@ ifeq ($(KOKKOS_INTERNAL_USE_ROCM), 1) KOKKOS_CXXFLAGS += $(shell $(ROCM_HCC_PATH)/bin/hcc-config --cxxflags) KOKKOS_LDFLAGS += $(shell $(ROCM_HCC_PATH)/bin/hcc-config --ldflags) -lhc_am -lm + KOKKOS_CXXLDFLAGS += $(shell $(ROCM_HCC_PATH)/bin/hcc-config --ldflags) -lhc_am -lm KOKKOS_TPL_LIBRARY_NAMES += hc_am m KOKKOS_LDFLAGS += $(KOKKOS_INTERNAL_ROCM_ARCH_FLAG) KOKKOS_SRC += $(wildcard $(KOKKOS_PATH)/core/src/ROCm/*.cpp) +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + KOKKOS_SRC += $(wildcard $(KOKKOS_ETI_PATH)/ROCm/*.cpp) +endif KOKKOS_HEADERS += $(wildcard $(KOKKOS_PATH)/core/src/ROCm/*.hpp) endif @@ -937,10 +972,14 @@ KOKKOS_SRC += $(wildcard $(KOKKOS_PATH)/containers/src/impl/*.cpp) ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) KOKKOS_SRC += $(wildcard $(KOKKOS_PATH)/core/src/Cuda/*.cpp) +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + KOKKOS_SRC += $(wildcard $(KOKKOS_ETI_PATH)/Cuda/*.cpp) +endif KOKKOS_HEADERS += $(wildcard $(KOKKOS_PATH)/core/src/Cuda/*.hpp) ifneq ($(CUDA_PATH),) - KOKKOS_CPPFLAGS += -I$(CUDA_PATH)/include + KOKKOS_CXXFLAGS += -I$(CUDA_PATH)/include KOKKOS_LDFLAGS += -L$(CUDA_PATH)/lib64 + KOKKOS_CXXLDFLAGS += -L$(CUDA_PATH)/lib64 KOKKOS_TPL_INCLUDE_DIRS += $(CUDA_PATH)/include KOKKOS_TPL_LIBRARY_DIRS += $(CUDA_PATH)/lib64 ifeq ($(KOKKOS_INTERNAL_COMPILER_CLANG), 1) @@ -964,6 +1003,9 @@ endif ifeq ($(KOKKOS_INTERNAL_USE_OPENMP), 1) KOKKOS_SRC += $(wildcard $(KOKKOS_PATH)/core/src/OpenMP/*.cpp) +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + KOKKOS_SRC += $(wildcard $(KOKKOS_ETI_PATH)/OpenMP/*.cpp) +endif KOKKOS_HEADERS += $(wildcard $(KOKKOS_PATH)/core/src/OpenMP/*.hpp) ifeq ($(KOKKOS_INTERNAL_COMPILER_NVCC), 1) @@ -978,6 +1020,9 @@ endif ifeq ($(KOKKOS_INTERNAL_USE_PTHREADS), 1) KOKKOS_SRC += $(wildcard $(KOKKOS_PATH)/core/src/Threads/*.cpp) +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + KOKKOS_SRC += $(wildcard $(KOKKOS_ETI_PATH)/Threads/*.cpp) +endif KOKKOS_HEADERS += $(wildcard $(KOKKOS_PATH)/core/src/Threads/*.hpp) KOKKOS_LIBS += -lpthread KOKKOS_TPL_LIBRARY_NAMES += pthread @@ -987,8 +1032,9 @@ ifeq ($(KOKKOS_INTERNAL_USE_QTHREADS), 1) KOKKOS_SRC += $(wildcard $(KOKKOS_PATH)/core/src/Qthreads/*.cpp) KOKKOS_HEADERS += $(wildcard $(KOKKOS_PATH)/core/src/Qthreads/*.hpp) ifneq ($(QTHREADS_PATH),) - KOKKOS_CPPFLAGS += -I$(QTHREADS_PATH)/include + KOKKOS_CXXFLAGS += -I$(QTHREADS_PATH)/include KOKKOS_LDFLAGS += -L$(QTHREADS_PATH)/lib + KOKKOS_CXXLDFLAGS += -L$(QTHREADS_PATH)/lib KOKKOS_TPL_INCLUDE_DIRS += $(QTHREADS_PATH)/include KOKKOS_TPL_LIBRARY_DIRS += $(QTHREADS_PATH)/lib64 endif @@ -1011,6 +1057,11 @@ endif # Don't include Kokkos_Serial.cpp or Kokkos_Serial_Task.cpp if not using Serial # device to avoid a link warning. +ifeq ($(KOKKOS_INTERNAL_USE_SERIAL), 1) +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + KOKKOS_SRC += $(wildcard $(KOKKOS_ETI_PATH)/Serial/*.cpp) +endif +endif ifneq ($(KOKKOS_INTERNAL_USE_SERIAL), 1) KOKKOS_SRC := $(filter-out $(KOKKOS_PATH)/core/src/impl/Kokkos_Serial.cpp,$(KOKKOS_SRC)) KOKKOS_SRC := $(filter-out $(KOKKOS_PATH)/core/src/impl/Kokkos_Serial_Task.cpp,$(KOKKOS_SRC)) diff --git a/lib/kokkos/Makefile.targets b/lib/kokkos/Makefile.targets index a63598577c720a7b522a5f10192aa413046564b9..44da1e082ae12f6293a3fb925fb8b30e76e28248 100644 --- a/lib/kokkos/Makefile.targets +++ b/lib/kokkos/Makefile.targets @@ -31,6 +31,12 @@ Kokkos_SharedAlloc.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/impl/Kokkos_ Kokkos_MemoryPool.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/impl/Kokkos_MemoryPool.cpp $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/impl/Kokkos_MemoryPool.cpp +ifeq ($(KOKKOS_INTERNAL_USE_SERIAL), 1) +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + include $(KOKKOS_ETI_PATH)/Serial/Makefile.eti_Serial +endif +endif + ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) Kokkos_Cuda_Impl.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/Cuda/Kokkos_Cuda_Impl.cpp $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/Cuda/Kokkos_Cuda_Impl.cpp @@ -40,6 +46,9 @@ Kokkos_Cuda_Task.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/Cuda/Kokkos_Cu $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/Cuda/Kokkos_Cuda_Task.cpp Kokkos_Cuda_Locks.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/Cuda/Kokkos_Cuda_Locks.cpp $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/Cuda/Kokkos_Cuda_Locks.cpp +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + include $(KOKKOS_ETI_PATH)/Cuda/Makefile.eti_Cuda +endif endif ifeq ($(KOKKOS_INTERNAL_USE_ROCM), 1) @@ -51,6 +60,9 @@ Kokkos_ROCm_Task.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/ROCm/Kokkos_RO $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/ROCm/Kokkos_ROCm_Task.cpp Kokkos_ROCm_Impl.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/ROCm/Kokkos_ROCm_Impl.cpp $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/ROCm/Kokkos_ROCm_Impl.cpp +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + include $(KOKKOS_ETI_PATH)/ROCm/Makefile.eti_ROCm +endif endif ifeq ($(KOKKOS_INTERNAL_USE_PTHREADS), 1) @@ -58,6 +70,9 @@ Kokkos_ThreadsExec_base.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/Threads $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/Threads/Kokkos_ThreadsExec_base.cpp Kokkos_ThreadsExec.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/Threads/Kokkos_ThreadsExec.cpp $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/Threads/Kokkos_ThreadsExec.cpp +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + include $(KOKKOS_ETI_PATH)/Threads/Makefile.eti_Threads +endif endif ifeq ($(KOKKOS_INTERNAL_USE_QTHREADS), 1) @@ -72,6 +87,9 @@ Kokkos_OpenMP_Exec.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/OpenMP/Kokko $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/OpenMP/Kokkos_OpenMP_Exec.cpp Kokkos_OpenMP_Task.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/OpenMP/Kokkos_OpenMP_Task.cpp $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/OpenMP/Kokkos_OpenMP_Task.cpp +ifeq ($(KOKKOS_INTERNAL_ENABLE_ETI), 1) + include $(KOKKOS_ETI_PATH)/OpenMP/Makefile.eti_OpenMP +endif endif ifeq ($(KOKKOS_INTERNAL_USE_OPENMPTARGET), 1) diff --git a/lib/kokkos/algorithms/src/Kokkos_Random.hpp b/lib/kokkos/algorithms/src/Kokkos_Random.hpp index 1c659e44a45e5cd1d972f441f956ce4e47de2d2e..5f1d88bfffbfa90dd2a68361d8ef17e853a5bc8a 100644 --- a/lib/kokkos/algorithms/src/Kokkos_Random.hpp +++ b/lib/kokkos/algorithms/src/Kokkos_Random.hpp @@ -702,7 +702,11 @@ namespace Kokkos { } Random_XorShift64_Pool(uint64_t seed) { num_states_ = 0; +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE init(seed,DeviceType::max_hardware_threads()); +#else + init(seed,DeviceType::impl_max_hardware_threads()); +#endif } Random_XorShift64_Pool(const Random_XorShift64_Pool& src): @@ -751,7 +755,11 @@ namespace Kokkos { KOKKOS_INLINE_FUNCTION Random_XorShift64 get_state() const { +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE const int i = DeviceType::hardware_thread_id();; +#else + const int i = DeviceType::impl_hardware_thread_id();; +#endif return Random_XorShift64(state_(i),i); } @@ -957,7 +965,11 @@ namespace Kokkos { inline Random_XorShift1024_Pool(uint64_t seed){ num_states_ = 0; +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE init(seed,DeviceType::max_hardware_threads()); +#else + init(seed,DeviceType::impl_max_hardware_threads()); +#endif } Random_XorShift1024_Pool(const Random_XorShift1024_Pool& src): @@ -1012,7 +1024,11 @@ namespace Kokkos { KOKKOS_INLINE_FUNCTION Random_XorShift1024 get_state() const { +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE const int i = DeviceType::hardware_thread_id(); +#else + const int i = DeviceType::impl_hardware_thread_id(); +#endif return Random_XorShift1024(state_,p_(i),i); }; diff --git a/lib/kokkos/algorithms/src/Kokkos_Sort.hpp b/lib/kokkos/algorithms/src/Kokkos_Sort.hpp index 888476045b8ee4a424e668a5da71567c408af934..c952b1e541af767d346ae2fdd2cea6c16c84a3eb 100644 --- a/lib/kokkos/algorithms/src/Kokkos_Sort.hpp +++ b/lib/kokkos/algorithms/src/Kokkos_Sort.hpp @@ -288,6 +288,7 @@ public: Kokkos::abort("BinSort::sort: values range length != permutation vector length"); } +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE scratch_view_type sorted_values("Scratch", len, @@ -298,6 +299,18 @@ public: values.extent(5), values.extent(6), values.extent(7)); +#else + scratch_view_type + sorted_values("Scratch", + values.rank_dynamic > 0 ? len : KOKKOS_IMPL_CTOR_DEFAULT_ARG, + values.rank_dynamic > 1 ? values.extent(1) : KOKKOS_IMPL_CTOR_DEFAULT_ARG , + values.rank_dynamic > 2 ? values.extent(2) : KOKKOS_IMPL_CTOR_DEFAULT_ARG, + values.rank_dynamic > 3 ? values.extent(3) : KOKKOS_IMPL_CTOR_DEFAULT_ARG, + values.rank_dynamic > 4 ? values.extent(4) : KOKKOS_IMPL_CTOR_DEFAULT_ARG, + values.rank_dynamic > 5 ? values.extent(5) : KOKKOS_IMPL_CTOR_DEFAULT_ARG, + values.rank_dynamic > 6 ? values.extent(6) : KOKKOS_IMPL_CTOR_DEFAULT_ARG, + values.rank_dynamic > 7 ? values.extent(7) : KOKKOS_IMPL_CTOR_DEFAULT_ARG); +#endif { copy_permute_functor< scratch_view_type /* DstViewType */ @@ -362,8 +375,10 @@ public: KOKKOS_INLINE_FUNCTION void operator() (const bin_sort_bins_tag& tag, const int&i ) const { + auto bin_size = bin_count_const(i); + if (bin_size <= 1) return; + int upper_bound = bin_offsets(i)+bin_size; bool sorted = false; - int upper_bound = bin_offsets(i)+bin_count_const(i); while(!sorted) { sorted = true; int old_idx = sort_order(bin_offsets(i)); @@ -501,7 +516,7 @@ bool try_std_sort(ViewType view) { template struct min_max_functor { - typedef Kokkos::Experimental::MinMaxScalar minmax_scalar; + typedef Kokkos::MinMaxScalar minmax_scalar; ViewType view; min_max_functor(const ViewType& view_):view(view_) {} @@ -523,8 +538,8 @@ void sort( ViewType const & view , bool const always_use_kokkos_sort = false) } typedef BinOp1D CompType; - Kokkos::Experimental::MinMaxScalar result; - Kokkos::Experimental::MinMax reducer(result); + Kokkos::MinMaxScalar result; + Kokkos::MinMax reducer(result); parallel_reduce("Kokkos::Sort::FindExtent",Kokkos::RangePolicy(0,view.extent(0)), Impl::min_max_functor(view),reducer); if(result.min_val == result.max_val) return; @@ -542,8 +557,8 @@ void sort( ViewType view typedef Kokkos::RangePolicy range_policy ; typedef BinOp1D CompType; - Kokkos::Experimental::MinMaxScalar result; - Kokkos::Experimental::MinMax reducer(result); + Kokkos::MinMaxScalar result; + Kokkos::MinMax reducer(result); parallel_reduce("Kokkos::Sort::FindExtent", range_policy( begin , end ) , Impl::min_max_functor(view),reducer ); diff --git a/lib/kokkos/cmake/kokkos_build.cmake b/lib/kokkos/cmake/kokkos_build.cmake index 76d0655adb76753d09df3bbfd88ff6d98d7da013..94dd733ca33ecf4d0ea35957ffcf99b9e1dc00b6 100644 --- a/lib/kokkos/cmake/kokkos_build.cmake +++ b/lib/kokkos/cmake/kokkos_build.cmake @@ -76,7 +76,11 @@ IF(KOKKOS_SEPARATE_LIBS) ) foreach(lib IN LISTS KOKKOS_TPL_LIBRARY_NAMES) - find_library(LIB_${lib} ${lib} PATHS ${KOKKOS_TPL_LIBRARY_DIRS}) + if ("${lib}" STREQUAL "cuda") + set(LIB_cuda "-lcuda") + else() + find_library(LIB_${lib} ${lib} PATHS ${KOKKOS_TPL_LIBRARY_DIRS}) + endif() target_link_libraries(kokkoscore PUBLIC ${LIB_${lib}}) endforeach() @@ -154,7 +158,11 @@ ELSE() ) foreach(lib IN LISTS KOKKOS_TPL_LIBRARY_NAMES) - find_library(LIB_${lib} ${lib} PATHS ${KOKKOS_TPL_LIBRARY_DIRS}) + if ("${lib}" STREQUAL "cuda") + set(LIB_cuda "-lcuda") + else() + find_library(LIB_${lib} ${lib} PATHS ${KOKKOS_TPL_LIBRARY_DIRS}) + endif() target_link_libraries(kokkos PUBLIC ${LIB_${lib}}) endforeach() diff --git a/lib/kokkos/cmake/kokkos_options.cmake b/lib/kokkos/cmake/kokkos_options.cmake index 25eb8e86ced2e549eefa1d1c0788ffc41654cbd8..80a091bb98b1d57a24b50f0f22e902133062ecee 100644 --- a/lib/kokkos/cmake/kokkos_options.cmake +++ b/lib/kokkos/cmake/kokkos_options.cmake @@ -31,6 +31,7 @@ list(APPEND KOKKOS_INTERNAL_ENABLE_OPTIONS_LIST Profiling_Load_Print Aggressive_Vectorization Deprecated_Code + Explicit_Instantiation ) #------------------------------------------------------------------------------- @@ -40,6 +41,7 @@ list(APPEND KOKKOS_INTERNAL_ENABLE_OPTIONS_LIST foreach(opt ${KOKKOS_INTERNAL_ENABLE_OPTIONS_LIST}) string(TOUPPER ${opt} OPT ) IF(DEFINED Kokkos_ENABLE_${opt}) + MESSAGE("Kokkos_ENABLE_${opt} is defined!") IF(DEFINED KOKKOS_ENABLE_${OPT}) IF(NOT ("${KOKKOS_ENABLE_${OPT}}" STREQUAL "${Kokkos_ENABLE_${opt}}")) IF(DEFINED KOKKOS_ENABLE_${OPT}_INTERNAL) @@ -57,18 +59,16 @@ foreach(opt ${KOKKOS_INTERNAL_ENABLE_OPTIONS_LIST}) ENDIF() ELSE() SET(KOKKOS_INTERNAL_ENABLE_${OPT}_DEFAULT ${Kokkos_ENABLE_${opt}}) + MESSAGE("set KOKKOS_INTERNAL_ENABLE_${OPT}_DEFAULT!") ENDIF() ENDIF() endforeach() +IF(DEFINED Kokkos_ARCH) + MESSAGE(FATAL_ERROR "Defined Kokkos_ARCH, use KOKKOS_ARCH instead!") +ENDIF() IF(DEFINED Kokkos_Arch) - IF(DEFINED KOKKOS_ARCH) - IF(NOT (${KOKKOS_ARCH} STREQUAL "${Kokkos_Arch}")) - MESSAGE(FATAL_ERROR "Defined both Kokkos_Arch and KOKKOS_ARCH and they differ!") - ENDIF() - ELSE() - SET(KOKKOS_ARCH ${Kokkos_Arch}) - ENDIF() + MESSAGE(FATAL_ERROR "Defined Kokkos_Arch, use KOKKOS_ARCH instead!") ENDIF() #------------------------------------------------------------------------------- @@ -103,6 +103,8 @@ list(APPEND KOKKOS_ARCH_LIST Maxwell53 # (GPU) NVIDIA Maxwell generation CC 5.3 Pascal60 # (GPU) NVIDIA Pascal generation CC 6.0 Pascal61 # (GPU) NVIDIA Pascal generation CC 6.1 + Volta70 # (GPU) NVIDIA Volta generation CC 7.0 + Volta72 # (GPU) NVIDIA Volta generation CC 7.2 ) # List of possible device architectures. @@ -267,6 +269,8 @@ set(KOKKOS_ENABLE_PROFILING_LOAD_PRINT ${KOKKOS_INTERNAL_ENABLE_PROFILING_LOAD_P set_kokkos_default_default(DEPRECATED_CODE ON) set(KOKKOS_ENABLE_DEPRECATED_CODE ${KOKKOS_INTERNAL_ENABLE_DEPRECATED_CODE_DEFAULT} CACHE BOOL "Enable deprecated code.") +set_kokkos_default_default(EXPLICIT_INSTANTIATION ON) +set(KOKKOS_ENABLE_EXPLICIT_INSTANTIATION ${KOKKOS_INTERNAL_ENABLE_EXPLICIT_INSTANTIATION_DEFAULT} CACHE BOOL "Enable explicit template instantiation.") #------------------------------------------------------------------------------- #------------------------------- KOKKOS_USE_TPLS ------------------------------- diff --git a/lib/kokkos/cmake/kokkos_settings.cmake b/lib/kokkos/cmake/kokkos_settings.cmake index 579fab0c954c230d7690cda72a854d332d598be1..21c9d75a96aa52fd349c751aa0c2fa0f12316c91 100644 --- a/lib/kokkos/cmake/kokkos_settings.cmake +++ b/lib/kokkos/cmake/kokkos_settings.cmake @@ -74,6 +74,9 @@ endif() if(${KOKKOS_ENABLE_PROFILING_LOAD_PRINT}) list(APPEND KOKKOS_OPTIONSl enable_profile_load_print) endif() +if(${KOKKOS_ENABLE_EXPLICIT_INSTANTIATION}) + list(APPEND KOKKOS_OPTIONSl enable_eti) +endif() # List needs to be comma-delimitted string(REPLACE ";" "," KOKKOS_GMAKE_OPTIONS "${KOKKOS_OPTIONSl}") @@ -158,6 +161,19 @@ if (NOT "${KOKKOS_INTERNAL_ADDTOPATH}" STREQUAL "") set(KOKKOS_SETTINGS ${KOKKOS_SETTINGS} "PATH=\"${KOKKOS_INTERNAL_ADDTOPATH}:$ENV{PATH}\"") endif() +if (CMAKE_CXX_STANDARD) + if (CMAKE_CXX_STANDARD STREQUAL "98") + message(FATAL_ERROR "Kokkos requires C++11 or newer!") + endif() + set(KOKKOS_CXX_STANDARD "c++${CMAKE_CXX_STANDARD}") + if (CMAKE_CXX_EXTENSIONS) + if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + set(KOKKOS_CXX_STANDARD "gnu++${CMAKE_CXX_STANDARD}") + endif() + endif() + set(KOKKOS_SETTINGS ${KOKKOS_SETTINGS} "KOKKOS_CXX_STANDARD=\"${KOKKOS_CXX_STANDARD}\"") +endif() + # Final form that gets passed to make set(KOKKOS_SETTINGS env ${KOKKOS_SETTINGS}) diff --git a/lib/kokkos/cmake/tribits.cmake b/lib/kokkos/cmake/tribits.cmake index 1b5a7b2adb4572cf3b454af49ce7db13332fc7ce..f8eebc29f8b01dab2fe1baa831d30306b0eef376 100644 --- a/lib/kokkos/cmake/tribits.cmake +++ b/lib/kokkos/cmake/tribits.cmake @@ -300,7 +300,9 @@ FUNCTION(TRIBITS_ADD_EXECUTABLE EXE_NAME) ENDIF() ENDFUNCTION() -ADD_CUSTOM_TARGET(check COMMAND ${CMAKE_CTEST_COMMAND} -VV -C ${CMAKE_CFG_INTDIR}) +IF(NOT TARGET check) + ADD_CUSTOM_TARGET(check COMMAND ${CMAKE_CTEST_COMMAND} -VV -C ${CMAKE_CFG_INTDIR}) +ENDIF() FUNCTION(TRIBITS_ADD_TEST) ENDFUNCTION() diff --git a/lib/kokkos/config/test_all_sandia b/lib/kokkos/config/test_all_sandia index 28b4a64b10819538c7f5fc672ada210671343cf4..15e6049afbaf238d132a28335f811576d2d0c72d 100755 --- a/lib/kokkos/config/test_all_sandia +++ b/lib/kokkos/config/test_all_sandia @@ -22,30 +22,38 @@ if [[ "$HOSTNAME" =~ .*bowman.* ]]; then module load git fi -if [[ "$HOSTNAME" =~ n.* ]]; then # Warning: very generic name +if [[ "$HOSTNAME" == n* ]]; then # Warning: very generic name if [[ "$PROCESSOR" = "aarch64" ]]; then MACHINE=sullivan module load git fi fi -if [[ "$HOSTNAME" =~ node.* ]]; then # Warning: very generic name +if [[ "$HOSTNAME" == node* ]]; then # Warning: very generic name if [[ "$MACHINE" = "" ]]; then MACHINE=shepard module load git fi fi -if [[ "$HOSTNAME" =~ apollo ]]; then +if [[ "$HOSTNAME" == apollo\.* ]]; then MACHINE=apollo module load git fi -if [[ "$HOSTNAME" =~ sullivan ]]; then +if [[ "$HOSTNAME" == sullivan ]]; then MACHINE=sullivan module load git fi +if [[ "$HOSTNAME" == mayer\.* ]]; then + MACHINE=mayer +# module load git +fi +if [[ "$HOSTNAME" == cn* ]]; then # Warning: very generic name + MACHINE=mayer +fi + if [ ! -z "$SEMS_MODULEFILES_ROOT" ]; then if [[ "$MACHINE" = "" ]]; then MACHINE=sems @@ -83,7 +91,7 @@ CUSTOM_BUILD_LIST="" QTHREADS_PATH="" DRYRUN=False BUILD_ONLY=False -declare -i NUM_JOBS_TO_RUN_IN_PARALLEL=3 +declare -i NUM_JOBS_TO_RUN_IN_PARALLEL=1 TEST_SCRIPT=False SKIP_HWLOC=False SPOT_CHECK=False @@ -142,6 +150,9 @@ do --with-cuda-options*) KOKKOS_CUDA_OPTIONS="--with-cuda-options=${key#*=}" ;; + --with-options*) + KOKKOS_OPTIONS="--with-options=enable_large_mem_tests,${key#*=}" + ;; --cxxflags-extra*) CXX_FLAGS_EXTRA="${key#*=}" ;; @@ -247,7 +258,7 @@ elif [ "$MACHINE" = "white" ]; then ARCH_FLAG="--arch=Power8,Kepler37" fi - NUM_JOBS_TO_RUN_IN_PARALLEL=2 + NUM_JOBS_TO_RUN_IN_PARALLEL=1 elif [ "$MACHINE" = "bowman" ]; then source /etc/profile.d/modules.sh @@ -268,7 +279,7 @@ elif [ "$MACHINE" = "bowman" ]; then ARCH_FLAG="--arch=KNL" fi - NUM_JOBS_TO_RUN_IN_PARALLEL=2 + NUM_JOBS_TO_RUN_IN_PARALLEL=1 elif [ "$MACHINE" = "sullivan" ]; then source /etc/profile.d/modules.sh @@ -284,7 +295,24 @@ elif [ "$MACHINE" = "sullivan" ]; then ARCH_FLAG="--arch=ARMv8-ThunderX" fi - NUM_JOBS_TO_RUN_IN_PARALLEL=2 + NUM_JOBS_TO_RUN_IN_PARALLEL=1 + +elif [ "$MACHINE" = "mayer" ]; then + SKIP_HWLOC=True + export SLURM_TASKS_PER_NODE=96 + + BASE_MODULE_LIST="/" + ARM_MODULE_LIST="/" + + # Format: (compiler module-list build-list exe-name warning-flag) + COMPILERS=("gcc/7.2.0 $BASE_MODULE_LIST $ARM_GCC_BUILD_LIST g++ $GCC_WARNING_FLAGS" + "arm/1.4.0 $ARM_MODULE_LIST $ARM_GCC_BUILD_LIST armclang++ $CLANG_WARNING_FLAGS") + + if [ -z "$ARCH_FLAG" ]; then + ARCH_FLAG="--arch=ARMv8-TX2" + fi + + NUM_JOBS_TO_RUN_IN_PARALLEL=1 elif [ "$MACHINE" = "shepard" ]; then source /etc/profile.d/modules.sh @@ -303,7 +331,7 @@ elif [ "$MACHINE" = "shepard" ]; then if [ -z "$ARCH_FLAG" ]; then ARCH_FLAG="--arch=HSW" fi - NUM_JOBS_TO_RUN_IN_PARALLEL=2 + NUM_JOBS_TO_RUN_IN_PARALLEL=1 elif [ "$MACHINE" = "apollo" ]; then source /projects/sems/modulefiles/utils/sems-modules-init.sh @@ -331,7 +359,7 @@ elif [ "$MACHINE" = "apollo" ]; then if [ "$SPOT_CHECK" = "True" ]; then # Format: (compiler module-list build-list exe-name warning-flag) COMPILERS=("gcc/4.8.4 $BASE_MODULE_LIST "OpenMP,Pthread" g++ $GCC_WARNING_FLAGS" - "gcc/5.1.0 $BASE_MODULE_LIST "Serial" g++ $GCC_WARNING_FLAGS" + "gcc/5.3.0 $BASE_MODULE_LIST "Serial" g++ $GCC_WARNING_FLAGS" "intel/16.0.1 $BASE_MODULE_LIST "OpenMP" icpc $INTEL_WARNING_FLAGS" "clang/3.9.0 $BASE_MODULE_LIST "Pthread_Serial" clang++ $CLANG_WARNING_FLAGS" "clang/6.0 $CLANG_MODULE_LIST "Cuda_Pthread" clang++ $CUDA_WARNING_FLAGS" @@ -358,7 +386,7 @@ elif [ "$MACHINE" = "apollo" ]; then ARCH_FLAG="--arch=SNB,Volta70" fi - NUM_JOBS_TO_RUN_IN_PARALLEL=2 + NUM_JOBS_TO_RUN_IN_PARALLEL=1 else echo "Unhandled machine $MACHINE" >&2 @@ -627,6 +655,11 @@ single_build_and_test() { if [[ "$KOKKOS_CUDA_OPTIONS" != "" ]]; then local extra_args="$extra_args $KOKKOS_CUDA_OPTIONS" fi + if [[ "$KOKKOS_OPTIONS" != "" ]]; then + local extra_args="$extra_args $KOKKOS_OPTIONS" + else + local extra_args="$extra_args --with-options=enable_large_mem_tests" + fi echo " Starting job $desc" @@ -642,7 +675,7 @@ single_build_and_test() { else run_cmd ${KOKKOS_PATH}/generate_makefile.bash --with-devices=$build $ARCH_FLAG --compiler=$(which $compiler_exe) --cxxflags=\"$cxxflags\" --ldflags=\"$ldflags\" $extra_args &>> ${desc}.configure.log || { report_and_log_test_result 1 ${desc} configure && return 0; } local -i build_start_time=$(date +%s) - run_cmd make -j 32 build-test >& ${desc}.build.log || { report_and_log_test_result 1 ${desc} build && return 0; } + run_cmd make -j 48 build-test >& ${desc}.build.log || { report_and_log_test_result 1 ${desc} build && return 0; } local -i build_end_time=$(date +%s) comment="build_time=$(($build_end_time-$build_start_time))" @@ -682,6 +715,9 @@ run_in_background() { if [[ "$compiler" == cuda* ]]; then num_jobs=1 fi + if [[ "$compiler" == clang ]]; then + num_jobs=1 + fi # fi wait_for_jobs $num_jobs diff --git a/lib/kokkos/containers/performance_tests/TestCuda.cpp b/lib/kokkos/containers/performance_tests/TestCuda.cpp index 682f3f52f70a6d7c37ef1006267d3bddffc9cd70..351fb86df3d48836ff45286401e52a6f1f684fd7 100644 --- a/lib/kokkos/containers/performance_tests/TestCuda.cpp +++ b/lib/kokkos/containers/performance_tests/TestCuda.cpp @@ -70,13 +70,12 @@ protected: static void SetUpTestCase() { std::cout << std::setprecision(5) << std::scientific; - Kokkos::HostSpace::execution_space::initialize(); - Kokkos::Cuda::initialize( Kokkos::Cuda::SelectDevice(0) ); + Kokkos::InitArguments args(-1, -1, 0); + Kokkos::initialize(args); } static void TearDownTestCase() { - Kokkos::Cuda::finalize(); - Kokkos::HostSpace::execution_space::finalize(); + Kokkos::finalize(); } }; diff --git a/lib/kokkos/containers/performance_tests/TestOpenMP.cpp b/lib/kokkos/containers/performance_tests/TestOpenMP.cpp index 66d497552e3de2dc09cd409bed204c35bc0ddb68..e6218074eafd965554c3ebe60136386c488fd882 100644 --- a/lib/kokkos/containers/performance_tests/TestOpenMP.cpp +++ b/lib/kokkos/containers/performance_tests/TestOpenMP.cpp @@ -70,13 +70,13 @@ protected: { std::cout << std::setprecision(5) << std::scientific; - Kokkos::OpenMP::initialize(); + Kokkos::initialize(); Kokkos::OpenMP::print_configuration( std::cout ); } static void TearDownTestCase() { - Kokkos::OpenMP::finalize(); + Kokkos::finalize(); } }; diff --git a/lib/kokkos/containers/performance_tests/TestThreads.cpp b/lib/kokkos/containers/performance_tests/TestThreads.cpp index a951a5ca56e4f30fcbe39d0ae797f6bd0d126882..6a02e67b252781f7320223ad8fb87cadfef3355e 100644 --- a/lib/kokkos/containers/performance_tests/TestThreads.cpp +++ b/lib/kokkos/containers/performance_tests/TestThreads.cpp @@ -81,12 +81,12 @@ protected: std::cout << "Threads: " << num_threads << std::endl; - Kokkos::Threads::initialize( num_threads ); + Kokkos::initialize( Kokkos::InitArguments(num_threads) ); } static void TearDownTestCase() { - Kokkos::Threads::finalize(); + Kokkos::finalize(); } }; diff --git a/lib/kokkos/containers/src/Kokkos_Bitset.hpp b/lib/kokkos/containers/src/Kokkos_Bitset.hpp index c48058d75d774feaf424cf196522dfceadf9e150..bfe8080f3b92ce9d11a0c040c123745acaf7e66b 100644 --- a/lib/kokkos/containers/src/Kokkos_Bitset.hpp +++ b/lib/kokkos/containers/src/Kokkos_Bitset.hpp @@ -271,7 +271,7 @@ private: block = Impl::rotate_right(block, offset); return ((( !(scan_direction & BIT_SCAN_REVERSE) ? Impl::bit_scan_forward(block) : - Impl::bit_scan_reverse(block) + ::Kokkos::log2(block) ) + offset ) & block_mask ) + block_start; diff --git a/lib/kokkos/containers/src/Kokkos_DualView.hpp b/lib/kokkos/containers/src/Kokkos_DualView.hpp index 74fe4418f870854498cd65cfe8e346d7d183e716..548e96d251f13224f4b82e13dda1c233fe36a577 100644 --- a/lib/kokkos/containers/src/Kokkos_DualView.hpp +++ b/lib/kokkos/containers/src/Kokkos_DualView.hpp @@ -209,14 +209,14 @@ public: /// the first three integer arguments will be nonzero, and you may /// omit the integer arguments that follow. DualView (const std::string& label, - const size_t n0 = 0, - const size_t n1 = 0, - const size_t n2 = 0, - const size_t n3 = 0, - const size_t n4 = 0, - const size_t n5 = 0, - const size_t n6 = 0, - const size_t n7 = 0) + const size_t n0 = KOKKOS_IMPL_CTOR_DEFAULT_ARG, + const size_t n1 = KOKKOS_IMPL_CTOR_DEFAULT_ARG, + const size_t n2 = KOKKOS_IMPL_CTOR_DEFAULT_ARG, + const size_t n3 = KOKKOS_IMPL_CTOR_DEFAULT_ARG, + const size_t n4 = KOKKOS_IMPL_CTOR_DEFAULT_ARG, + const size_t n5 = KOKKOS_IMPL_CTOR_DEFAULT_ARG, + const size_t n6 = KOKKOS_IMPL_CTOR_DEFAULT_ARG, + const size_t n7 = KOKKOS_IMPL_CTOR_DEFAULT_ARG) : d_view (label, n0, n1, n2, n3, n4, n5, n6, n7) , h_view (create_mirror_view (d_view)) // without UVM, host View mirrors , modified_device (View ("DualView::modified_device")) @@ -464,14 +464,14 @@ public: /// This discards any existing contents of the objects, and resets /// their modified flags. It does not copy the old contents /// of either View into the new View objects. - void realloc( const size_t n0 = 0 , - const size_t n1 = 0 , - const size_t n2 = 0 , - const size_t n3 = 0 , - const size_t n4 = 0 , - const size_t n5 = 0 , - const size_t n6 = 0 , - const size_t n7 = 0 ) { + void realloc( const size_t n0 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n1 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n2 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n3 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n4 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n5 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n6 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n7 = KOKKOS_IMPL_CTOR_DEFAULT_ARG ) { ::Kokkos::realloc(d_view,n0,n1,n2,n3,n4,n5,n6,n7); h_view = create_mirror_view( d_view ); @@ -483,14 +483,14 @@ public: /// /// This method only copies the old contents into the new View /// objects for the device which was last marked as modified. - void resize( const size_t n0 = 0 , - const size_t n1 = 0 , - const size_t n2 = 0 , - const size_t n3 = 0 , - const size_t n4 = 0 , - const size_t n5 = 0 , - const size_t n6 = 0 , - const size_t n7 = 0 ) { + void resize( const size_t n0 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n1 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n2 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n3 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n4 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n5 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n6 = KOKKOS_IMPL_CTOR_DEFAULT_ARG , + const size_t n7 = KOKKOS_IMPL_CTOR_DEFAULT_ARG ) { if(modified_device() >= modified_host()) { /* Resize on Device */ ::Kokkos::resize(d_view,n0,n1,n2,n3,n4,n5,n6,n7); @@ -533,10 +533,21 @@ public: //! \name Methods for getting capacity, stride, or dimension(s). //@{ +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE //! The allocation size (same as Kokkos::View::capacity). size_t capacity() const { return d_view.span(); } +#endif + + //! The allocation size (same as Kokkos::View::span). + KOKKOS_INLINE_FUNCTION constexpr size_t span() const { + return d_view.span(); + } + + KOKKOS_INLINE_FUNCTION bool span_is_contiguous() const { + return d_view.span_is_contiguous(); + } //! Get stride(s) for each dimension. template< typename iType> @@ -556,6 +567,11 @@ public: extent_int( const iType & r ) const { return static_cast(d_view.extent(r)); } +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE + /* Deprecate all 'dimension' functions in favor of + * ISO/C++ vocabulary 'extent'. + */ + /* \brief return size of dimension 0 */ size_t dimension_0() const {return d_view.extent(0);} /* \brief return size of dimension 1 */ @@ -572,6 +588,7 @@ public: size_t dimension_6() const {return d_view.extent(6);} /* \brief return size of dimension 7 */ size_t dimension_7() const {return d_view.extent(7);} +#endif //@} }; diff --git a/lib/kokkos/containers/src/Kokkos_DynRankView.hpp b/lib/kokkos/containers/src/Kokkos_DynRankView.hpp index ccf53b3d5096574f4446d4cf9d7eee71b6e45c08..b30009a999e108235a1318431df08fd3115ec965 100644 --- a/lib/kokkos/containers/src/Kokkos_DynRankView.hpp +++ b/lib/kokkos/containers/src/Kokkos_DynRankView.hpp @@ -64,7 +64,7 @@ namespace Impl { template struct DynRankDimTraits { - enum : size_t{unspecified = ~size_t(0)}; + enum : size_t{unspecified =KOKKOS_INVALID_INDEX}; // Compute the rank of the view from the nonzero dimension arguments. KOKKOS_INLINE_FUNCTION @@ -192,14 +192,14 @@ struct DynRankDimTraits { static typename std::enable_if< (std::is_same::value || std::is_same::value) && std::is_integral::value , Layout >::type reconstructLayout( const Layout& layout , iType dynrank ) { - return Layout( dynrank > 0 ? layout.dimension[0] : ~size_t(0) - , dynrank > 1 ? layout.dimension[1] : ~size_t(0) - , dynrank > 2 ? layout.dimension[2] : ~size_t(0) - , dynrank > 3 ? layout.dimension[3] : ~size_t(0) - , dynrank > 4 ? layout.dimension[4] : ~size_t(0) - , dynrank > 5 ? layout.dimension[5] : ~size_t(0) - , dynrank > 6 ? layout.dimension[6] : ~size_t(0) - , dynrank > 7 ? layout.dimension[7] : ~size_t(0) + return Layout( dynrank > 0 ? layout.dimension[0] :KOKKOS_INVALID_INDEX + , dynrank > 1 ? layout.dimension[1] :KOKKOS_INVALID_INDEX + , dynrank > 2 ? layout.dimension[2] :KOKKOS_INVALID_INDEX + , dynrank > 3 ? layout.dimension[3] :KOKKOS_INVALID_INDEX + , dynrank > 4 ? layout.dimension[4] :KOKKOS_INVALID_INDEX + , dynrank > 5 ? layout.dimension[5] :KOKKOS_INVALID_INDEX + , dynrank > 6 ? layout.dimension[6] :KOKKOS_INVALID_INDEX + , dynrank > 7 ? layout.dimension[7] :KOKKOS_INVALID_INDEX ); } @@ -209,21 +209,21 @@ struct DynRankDimTraits { static typename std::enable_if< (std::is_same::value) && std::is_integral::value , Layout >::type reconstructLayout( const Layout& layout , iType dynrank ) { - return Layout( dynrank > 0 ? layout.dimension[0] : ~size_t(0) + return Layout( dynrank > 0 ? layout.dimension[0] :KOKKOS_INVALID_INDEX , dynrank > 0 ? layout.stride[0] : (0) - , dynrank > 1 ? layout.dimension[1] : ~size_t(0) + , dynrank > 1 ? layout.dimension[1] :KOKKOS_INVALID_INDEX , dynrank > 1 ? layout.stride[1] : (0) - , dynrank > 2 ? layout.dimension[2] : ~size_t(0) + , dynrank > 2 ? layout.dimension[2] :KOKKOS_INVALID_INDEX , dynrank > 2 ? layout.stride[2] : (0) - , dynrank > 3 ? layout.dimension[3] : ~size_t(0) + , dynrank > 3 ? layout.dimension[3] :KOKKOS_INVALID_INDEX , dynrank > 3 ? layout.stride[3] : (0) - , dynrank > 4 ? layout.dimension[4] : ~size_t(0) + , dynrank > 4 ? layout.dimension[4] :KOKKOS_INVALID_INDEX , dynrank > 4 ? layout.stride[4] : (0) - , dynrank > 5 ? layout.dimension[5] : ~size_t(0) + , dynrank > 5 ? layout.dimension[5] :KOKKOS_INVALID_INDEX , dynrank > 5 ? layout.stride[5] : (0) - , dynrank > 6 ? layout.dimension[6] : ~size_t(0) + , dynrank > 6 ? layout.dimension[6] :KOKKOS_INVALID_INDEX , dynrank > 6 ? layout.stride[6] : (0) - , dynrank > 7 ? layout.dimension[7] : ~size_t(0) + , dynrank > 7 ? layout.dimension[7] :KOKKOS_INVALID_INDEX , dynrank > 7 ? layout.stride[7] : (0) ); } @@ -501,6 +501,7 @@ public: * ISO/C++ vocabulary 'extent'. */ +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE template< typename iType > KOKKOS_INLINE_FUNCTION constexpr typename std::enable_if< std::is_integral::value , size_t >::type @@ -514,17 +515,18 @@ public: KOKKOS_INLINE_FUNCTION constexpr size_t dimension_5() const { return m_map.dimension_5(); } KOKKOS_INLINE_FUNCTION constexpr size_t dimension_6() const { return m_map.dimension_6(); } KOKKOS_INLINE_FUNCTION constexpr size_t dimension_7() const { return m_map.dimension_7(); } +#endif //---------------------------------------- - KOKKOS_INLINE_FUNCTION constexpr size_t size() const { return m_map.dimension_0() * - m_map.dimension_1() * - m_map.dimension_2() * - m_map.dimension_3() * - m_map.dimension_4() * - m_map.dimension_5() * - m_map.dimension_6() * - m_map.dimension_7(); } + KOKKOS_INLINE_FUNCTION constexpr size_t size() const { return m_map.extent(0) * + m_map.extent(1) * + m_map.extent(2) * + m_map.extent(3) * + m_map.extent(4) * + m_map.extent(5) * + m_map.extent(6) * + m_map.extent(7); } KOKKOS_INLINE_FUNCTION constexpr size_t stride_0() const { return m_map.stride_0(); } KOKKOS_INLINE_FUNCTION constexpr size_t stride_1() const { return m_map.stride_1(); } @@ -547,15 +549,19 @@ public: enum { reference_type_is_lvalue_reference = std::is_lvalue_reference< reference_type >::value }; KOKKOS_INLINE_FUNCTION constexpr size_t span() const { return m_map.span(); } +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE // Deprecated, use 'span()' instead KOKKOS_INLINE_FUNCTION constexpr size_t capacity() const { return m_map.span(); } +#endif KOKKOS_INLINE_FUNCTION constexpr bool span_is_contiguous() const { return m_map.span_is_contiguous(); } KOKKOS_INLINE_FUNCTION constexpr pointer_type data() const { return m_map.data(); } +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE // Deprecated, use 'span_is_contigous()' instead KOKKOS_INLINE_FUNCTION constexpr bool is_contiguous() const { return m_map.span_is_contiguous(); } // Deprecated, use 'data()' instead KOKKOS_INLINE_FUNCTION constexpr pointer_type ptr_on_device() const { return m_map.data(); } +#endif //---------------------------------------- // Allow specializations to query their specialized map @@ -998,7 +1004,7 @@ public: //---------------------------------------- // Allocation according to allocation properties and array layout - // unused arg_layout dimensions must be set to ~size_t(0) so that rank deduction can properly take place + // unused arg_layout dimensions must be set toKOKKOS_INVALID_INDEX so that rank deduction can properly take place template< class ... P > explicit inline DynRankView( const Kokkos::Impl::ViewCtorProp< P ... > & arg_prop @@ -1038,7 +1044,12 @@ public: , "View allocation constructor requires managed memory" ); if ( alloc_prop::initialize && - ! alloc_prop::execution_space::is_initialized() ) { +#ifdef KOKKOS_ENABLE_DEPRECATED_CODE + ! alloc_prop::execution_space::is_initialized() +#else + ! alloc_prop::execution_space::impl_is_initialized() +#endif + ) { // If initializing view data then // the execution space must be initialized. Kokkos::Impl::throw_runtime_exception("Constructing DynRankView and initializing data with uninitialized execution space"); @@ -1104,14 +1115,14 @@ public: DynRankView( const Kokkos::Impl::ViewCtorProp< P ... > & arg_prop , typename std::enable_if< ! Kokkos::Impl::ViewCtorProp< P... >::has_pointer , size_t - >::type const arg_N0 = ~size_t(0) - , const size_t arg_N1 = ~size_t(0) - , const size_t arg_N2 = ~size_t(0) - , const size_t arg_N3 = ~size_t(0) - , const size_t arg_N4 = ~size_t(0) - , const size_t arg_N5 = ~size_t(0) - , const size_t arg_N6 = ~size_t(0) - , const size_t arg_N7 = ~size_t(0) + >::type const arg_N0 =KOKKOS_INVALID_INDEX + , const size_t arg_N1 =KOKKOS_INVALID_INDEX + , const size_t arg_N2 =KOKKOS_INVALID_INDEX + , const size_t arg_N3 =KOKKOS_INVALID_INDEX + , const size_t arg_N4 =KOKKOS_INVALID_INDEX + , const size_t arg_N5 =KOKKOS_INVALID_INDEX + , const size_t arg_N6 =KOKKOS_INVALID_INDEX + , const size_t arg_N7 =KOKKOS_INVALID_INDEX ) : DynRankView( arg_prop , typename traits::array_layout @@ -1124,14 +1135,14 @@ public: DynRankView( const Kokkos::Impl::ViewCtorProp< P ... > & arg_prop , typename std::enable_if< Kokkos::Impl::ViewCtorProp< P... >::has_pointer , size_t - >::type const arg_N0 = ~size_t(0) - , const size_t arg_N1 = ~size_t(0) - , const size_t arg_N2 = ~size_t(0) - , const size_t arg_N3 = ~size_t(0) - , const size_t arg_N4 = ~size_t(0) - , const size_t arg_N5 = ~size_t(0) - , const size_t arg_N6 = ~size_t(0) - , const size_t arg_N7 = ~size_t(0) + >::type const arg_N0 =KOKKOS_INVALID_INDEX + , const size_t arg_N1 =KOKKOS_INVALID_INDEX + , const size_t arg_N2 =KOKKOS_INVALID_INDEX + , const size_t arg_N3 =KOKKOS_INVALID_INDEX + , const size_t arg_N4 =KOKKOS_INVALID_INDEX + , const size_t arg_N5 =KOKKOS_INVALID_INDEX + , const size_t arg_N6 =KOKKOS_INVALID_INDEX + , const size_t arg_N7 =KOKKOS_INVALID_INDEX ) : DynRankView( arg_prop , typename traits::array_layout @@ -1156,14 +1167,14 @@ public: DynRankView( const Label & arg_label , typename std::enable_if< Kokkos::Impl::is_view_label