diff --git a/.github/workflows/check-cpp23.yml b/.github/workflows/check-cpp23.yml
new file mode 100644
index 0000000000..2cd53f2208
--- /dev/null
+++ b/.github/workflows/check-cpp23.yml
@@ -0,0 +1,92 @@
+# GitHub action to build LAMMPS on Linux with gcc and C++23
+name: "Check for C++23 Compatibility"
+
+on:
+ push:
+ branches:
+ - develop
+ pull_request:
+ branches:
+ - develop
+
+ workflow_dispatch:
+
+jobs:
+ build:
+ name: Build with C++23 support enabled
+ if: ${{ github.repository == 'lammps/lammps' }}
+ runs-on: ubuntu-latest
+ env:
+ CCACHE_DIR: ${{ github.workspace }}/.ccache
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 2
+
+ - name: Install extra packages
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y ccache \
+ libeigen3-dev \
+ libcurl4-openssl-dev \
+ mold \
+ mpi-default-bin \
+ mpi-default-dev \
+ ninja-build \
+ python3-dev
+
+ - name: Create Build Environment
+ run: mkdir build
+
+ - name: Set up ccache
+ uses: actions/cache@v4
+ with:
+ path: ${{ env.CCACHE_DIR }}
+ key: linux-cpp23-ccache-${{ github.sha }}
+ restore-keys: linux-cpp23-ccache-
+
+ - name: Building LAMMPS via CMake
+ shell: bash
+ run: |
+ ccache -z
+ python3 -m venv linuxenv
+ source linuxenv/bin/activate
+ python3 -m pip install numpy
+ python3 -m pip install pyyaml
+ cmake -S cmake -B build \
+ -C cmake/presets/most.cmake \
+ -C cmake/presets/kokkos-openmp.cmake \
+ -D CMAKE_CXX_STANDARD=23 \
+ -D CMAKE_CXX_COMPILER=g++ \
+ -D CMAKE_C_COMPILER=gcc \
+ -D CMAKE_CXX_COMPILER_LAUNCHER=ccache \
+ -D CMAKE_C_COMPILER_LAUNCHER=ccache \
+ -D CMAKE_BUILD_TYPE=Debug \
+ -D CMAKE_CXX_FLAGS_DEBUG="-Og -g" \
+ -D DOWNLOAD_POTENTIALS=off \
+ -D BUILD_MPI=on \
+ -D BUILD_SHARED_LIBS=on \
+ -D BUILD_TOOLS=off \
+ -D ENABLE_TESTING=off \
+ -D MLIAP_ENABLE_ACE=on \
+ -D MLIAP_ENABLE_PYTHON=off \
+ -D PKG_AWPMD=on \
+ -D PKG_GPU=on \
+ -D GPU_API=opencl \
+ -D PKG_KOKKOS=on \
+ -D PKG_LATBOLTZ=on \
+ -D PKG_MDI=on \
+ -D PKG_MANIFOLD=on \
+ -D PKG_ML-PACE=on \
+ -D PKG_ML-RANN=off \
+ -D PKG_MOLFILE=on \
+ -D PKG_RHEO=on \
+ -D PKG_PTM=on \
+ -D PKG_PYTHON=on \
+ -D PKG_QTB=on \
+ -D PKG_SMTBQ=on \
+ -G Ninja
+ cmake --build build
+ ccache -s
diff --git a/.github/workflows/check-vla.yml b/.github/workflows/check-vla.yml
index 26f23cc33f..ab89018a3d 100644
--- a/.github/workflows/check-vla.yml
+++ b/.github/workflows/check-vla.yml
@@ -27,9 +27,9 @@ jobs:
- name: Install extra packages
run: |
+ sudo apt-get update
sudo apt-get install -y ccache \
libeigen3-dev \
- libgsl-dev \
libcurl4-openssl-dev \
mold \
mpi-default-bin \
diff --git a/.github/workflows/full-regression.yml b/.github/workflows/full-regression.yml
index 73e1803bb6..a6b5353b9b 100644
--- a/.github/workflows/full-regression.yml
+++ b/.github/workflows/full-regression.yml
@@ -30,8 +30,9 @@ jobs:
- name: Install extra packages
run: |
+ sudo apt-get update
sudo apt-get install -y ccache ninja-build libeigen3-dev \
- libgsl-dev libcurl4-openssl-dev python3-dev \
+ libcurl4-openssl-dev python3-dev \
mpi-default-bin mpi-default-dev
- name: Create Build Environment
diff --git a/.github/workflows/kokkos-regression.yaml b/.github/workflows/kokkos-regression.yaml
new file mode 100644
index 0000000000..0756b080b0
--- /dev/null
+++ b/.github/workflows/kokkos-regression.yaml
@@ -0,0 +1,124 @@
+# GitHub action to build LAMMPS on Linux and run selected regression tests
+name: "Kokkos OpenMP Regression Test"
+
+on:
+ pull_request:
+ branches:
+ - develop
+
+ workflow_dispatch:
+
+jobs:
+ build:
+ name: Build LAMMPS with Kokkos OpenMP
+ # restrict to official LAMMPS repository
+ if: ${{ github.repository == 'lammps/lammps' }}
+ runs-on: ubuntu-latest
+ env:
+ CCACHE_DIR: ${{ github.workspace }}/.ccache
+ strategy:
+ max-parallel: 4
+ matrix:
+ idx: [ 'pair', 'fix', 'compute', 'misc' ]
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ with:
+ fetch-depth: 2
+ show-progress: false
+
+ - name: Install extra packages
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y ccache ninja-build libeigen3-dev \
+ libcurl4-openssl-dev python3-dev \
+ mpi-default-bin mpi-default-dev
+
+ - name: Create Build Environment
+ run: mkdir build
+
+ - name: Set up ccache
+ uses: actions/cache@v4
+ with:
+ path: ${{ env.CCACHE_DIR }}
+ key: linux-kokkos-ccache-${{ github.sha }}
+ restore-keys: linux-kokkos-ccache-
+
+ - name: Building LAMMPS via CMake
+ shell: bash
+ run: |
+ ccache -z
+ python3 -m venv linuxenv
+ source linuxenv/bin/activate
+ python3 -m pip install --upgrade pip
+ python3 -m pip install numpy pyyaml junit_xml
+ cmake -S cmake -B build \
+ -C cmake/presets/gcc.cmake \
+ -C cmake/presets/basic.cmake \
+ -C cmake/presets/kokkos-openmp.cmake \
+ -D CMAKE_CXX_COMPILER_LAUNCHER=ccache \
+ -D CMAKE_C_COMPILER_LAUNCHER=ccache \
+ -D BUILD_SHARED_LIBS=off \
+ -D DOWNLOAD_POTENTIALS=off \
+ -D PKG_AMOEBA=on \
+ -D PKG_ASPHERE=on \
+ -D PKG_BROWNIAN=on \
+ -D PKG_CLASS2=on \
+ -D PKG_COLLOID=on \
+ -D PKG_CORESHELL=on \
+ -D PKG_DIPOLE=on \
+ -D PKG_DPD-BASIC=on \
+ -D PKG_EXTRA-COMPUTE=on \
+ -D PKG_EXTRA-FIX=on \
+ -D PKG_EXTRA-MOLECULE=on \
+ -D PKG_EXTRA-PAIR=on \
+ -D PKG_GRANULAR=on \
+ -D PKG_LEPTON=on \
+ -D PKG_MC=on \
+ -D PKG_MEAM=on \
+ -D PKG_POEMS=on \
+ -D PKG_PYTHON=on \
+ -D PKG_QEQ=on \
+ -D PKG_REAXFF=on \
+ -D PKG_REPLICA=on \
+ -D PKG_SRD=on \
+ -D PKG_VORONOI=on \
+ -G Ninja
+ cmake --build build
+ ccache -s
+
+ - name: Run Regression Tests for Selected Examples
+ shell: bash
+ run: |
+ source linuxenv/bin/activate
+ python3 tools/regression-tests/get_kokkos_input.py \
+ --examples-top-level=examples \
+ --filter-out="balance;fire;gcmc;granregion;mdi;mliap;neb;pace;prd;pour;python;snap"
+
+ python3 tools/regression-tests/run_tests.py \
+ --lmp-bin=build/lmp \
+ --config-file=tools/regression-tests/config_kokkos_openmp.yaml \
+ --list-input=input-list-${{ matrix.idx }}-kk.txt \
+ --output-file=output-${{ matrix.idx }}.xml \
+ --progress-file=progress-${{ matrix.idx }}.yaml \
+ --log-file=run-${{ matrix.idx }}.log \
+ --quick-max=100 --verbose
+
+ tar -cvf kokkos-regression-test-${{ matrix.idx }}.tar run-${{ matrix.idx }}.log progress-${{ matrix.idx }}.yaml output-${{ matrix.idx }}.xml
+
+ - name: Upload artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: kokkos-regression-test-artifact-${{ matrix.idx }}
+ path: kokkos-regression-test-${{ matrix.idx }}.tar
+
+ merge:
+ runs-on: ubuntu-latest
+ needs: build
+ steps:
+ - name: Merge Artifacts
+ uses: actions/upload-artifact/merge@v4
+ with:
+ name: merged-kokkos-regresssion-artifact
+ pattern: kokkos-regression-test-artifact-*
diff --git a/.github/workflows/quick-regression.yml b/.github/workflows/quick-regression.yml
index 6174d57ec2..88794bfa0a 100644
--- a/.github/workflows/quick-regression.yml
+++ b/.github/workflows/quick-regression.yml
@@ -34,8 +34,9 @@ jobs:
- name: Install extra packages
run: |
+ sudo apt-get update
sudo apt-get install -y ccache ninja-build libeigen3-dev \
- libgsl-dev libcurl4-openssl-dev python3-dev \
+ libcurl4-openssl-dev python3-dev \
mpi-default-bin mpi-default-dev
- name: Create Build Environment
diff --git a/.github/workflows/unittest-linux.yml b/.github/workflows/unittest-linux.yml
index dcf495ccc0..ce98fcea35 100644
--- a/.github/workflows/unittest-linux.yml
+++ b/.github/workflows/unittest-linux.yml
@@ -31,9 +31,9 @@ jobs:
- name: Install extra packages
run: |
+ sudo apt-get update
sudo apt-get install -y ccache \
libeigen3-dev \
- libgsl-dev \
libcurl4-openssl-dev \
mold \
ninja-build \
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
index c68a925324..8d57e237b3 100644
--- a/cmake/CMakeLists.txt
+++ b/cmake/CMakeLists.txt
@@ -118,7 +118,7 @@ endif()
# silence excessive warnings for new Intel Compilers
if(CMAKE_CXX_COMPILER_ID STREQUAL "IntelLLVM")
- set(CMAKE_TUNE_DEFAULT "-Wno-tautological-constant-compare -Wno-unused-command-line-argument")
+ set(CMAKE_TUNE_DEFAULT "-fp-model precise -Wno-tautological-constant-compare -Wno-unused-command-line-argument")
endif()
# silence excessive warnings for PGI/NVHPC compilers
@@ -141,7 +141,7 @@ endif()
# silence nvcc warnings
if((PKG_KOKKOS) AND (Kokkos_ENABLE_CUDA) AND NOT (CMAKE_CXX_COMPILER_ID STREQUAL "Clang"))
- set(CMAKE_TUNE_DEFAULT "${CMAKE_TUNE_DEFAULT} -Xcudafe --diag_suppress=unrecognized_pragma")
+ set(CMAKE_TUNE_DEFAULT "${CMAKE_TUNE_DEFAULT} -Xcudafe --diag_suppress=unrecognized_pragma -Xcudafe --diag_suppress=128")
endif()
# we require C++11 without extensions. Kokkos requires at least C++17 (currently)
@@ -165,6 +165,7 @@ if(MSVC)
add_compile_options(/wd4267)
add_compile_options(/wd4250)
add_compile_options(/EHsc)
+ add_compile_options(/utf-8)
endif()
add_compile_definitions(_CRT_SECURE_NO_WARNINGS)
endif()
@@ -497,7 +498,7 @@ if((CMAKE_CXX_COMPILER_ID STREQUAL "Intel") AND (CMAKE_CXX_STANDARD GREATER_EQUA
PROPERTIES COMPILE_OPTIONS "-std=c++14")
endif()
-if(PKG_ATC OR PKG_AWPMD OR PKG_ML-QUIP OR PKG_ML-POD OR PKG_ELECTRODE OR BUILD_TOOLS)
+if(PKG_ATC OR PKG_AWPMD OR PKG_ML-QUIP OR PKG_ML-POD OR PKG_ELECTRODE OR PKG_RHEO OR BUILD_TOOLS)
enable_language(C)
if (NOT USE_INTERNAL_LINALG)
find_package(LAPACK)
@@ -572,7 +573,7 @@ else()
endif()
foreach(PKG_WITH_INCL KSPACE PYTHON ML-IAP VORONOI COLVARS ML-HDNNP MDI MOLFILE NETCDF
- PLUMED QMMM ML-QUIP SCAFACOS MACHDYN VTK KIM COMPRESS ML-PACE LEPTON RHEO EXTRA-COMMAND)
+ PLUMED QMMM ML-QUIP SCAFACOS MACHDYN VTK KIM COMPRESS ML-PACE LEPTON EXTRA-COMMAND)
if(PKG_${PKG_WITH_INCL})
include(Packages/${PKG_WITH_INCL})
endif()
@@ -822,9 +823,15 @@ foreach(_DEF ${LAMMPS_DEFINES})
set(LAMMPS_API_DEFINES "${LAMMPS_API_DEFINES} -D${_DEF}")
endforeach()
if(BUILD_SHARED_LIBS)
- install(TARGETS lammps EXPORT LAMMPS_Targets LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
+ install(TARGETS lammps EXPORT LAMMPS_Targets
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
if(NOT BUILD_MPI)
- install(TARGETS mpi_stubs EXPORT LAMMPS_Targets LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
+ install(TARGETS mpi_stubs EXPORT LAMMPS_Targets
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
+ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
+ RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()
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)
diff --git a/cmake/Modules/Documentation.cmake b/cmake/Modules/Documentation.cmake
index 7b8f4a5ba0..dfaf7bdb39 100644
--- a/cmake/Modules/Documentation.cmake
+++ b/cmake/Modules/Documentation.cmake
@@ -110,6 +110,7 @@ if(BUILD_DOC)
add_custom_command(
OUTPUT html
DEPENDS ${DOC_SOURCES} ${DOCENV_DEPS} ${DOXYGEN_XML_DIR}/index.xml ${BUILD_DOC_CONFIG_FILE}
+ COMMAND ${Python3_EXECUTABLE} ${LAMMPS_DOC_DIR}/utils/make-globbed-tocs.py -d ${LAMMPS_DOC_DIR}/src
COMMAND Sphinx::sphinx-build ${SPHINX_EXTRA_OPTS} -b html -c ${DOC_BUILD_DIR} -d ${DOC_BUILD_DIR}/doctrees ${LAMMPS_DOC_DIR}/src ${DOC_BUILD_DIR}/html
COMMAND ${CMAKE_COMMAND} -E create_symlink Manual.html ${DOC_BUILD_DIR}/html/index.html
COMMAND ${CMAKE_COMMAND} -E copy_directory ${LAMMPS_DOC_DIR}/src/PDF ${DOC_BUILD_DIR}/html/PDF
diff --git a/cmake/Modules/FindVORO.cmake b/cmake/Modules/FindVORO.cmake
index 3f0fe98ff1..80bcfcfb53 100644
--- a/cmake/Modules/FindVORO.cmake
+++ b/cmake/Modules/FindVORO.cmake
@@ -21,9 +21,9 @@ if(VORO_FOUND)
set(VORO_LIBRARIES ${VORO_LIBRARY})
set(VORO_INCLUDE_DIRS ${VORO_INCLUDE_DIR})
- if(NOT TARGET VORO::VORO)
- add_library(VORO::VORO UNKNOWN IMPORTED)
- set_target_properties(VORO::VORO PROPERTIES
+ if(NOT TARGET VORO::voro++)
+ add_library(VORO::voro++ UNKNOWN IMPORTED)
+ set_target_properties(VORO::voro++ PROPERTIES
IMPORTED_LOCATION "${VORO_LIBRARY}"
INTERFACE_INCLUDE_DIRECTORIES "${VORO_INCLUDE_DIR}")
endif()
diff --git a/cmake/Modules/Packages/H5MD.cmake b/cmake/Modules/Packages/H5MD.cmake
index 6f6922f13e..1e611b94e6 100644
--- a/cmake/Modules/Packages/H5MD.cmake
+++ b/cmake/Modules/Packages/H5MD.cmake
@@ -3,7 +3,7 @@ enable_language(C)
# we don't use the parallel i/o interface.
set(HDF5_PREFER_PARALLEL FALSE)
-find_package(HDF5 REQUIRED)
+find_package(HDF5 COMPONENTS C REQUIRED)
# parallel HDF5 will import incompatible MPI headers with a serial build
if((NOT BUILD_MPI) AND HDF5_IS_PARALLEL)
diff --git a/cmake/Modules/Packages/KOKKOS.cmake b/cmake/Modules/Packages/KOKKOS.cmake
index bf0a18d324..adb3abab6b 100644
--- a/cmake/Modules/Packages/KOKKOS.cmake
+++ b/cmake/Modules/Packages/KOKKOS.cmake
@@ -8,8 +8,24 @@ endif()
########################################################################
# consistency checks and Kokkos options/settings required by LAMMPS
if(Kokkos_ENABLE_CUDA)
- message(STATUS "KOKKOS: Enabling CUDA LAMBDA function support")
- set(Kokkos_ENABLE_CUDA_LAMBDA ON CACHE BOOL "" FORCE)
+ option(Kokkos_ENABLE_IMPL_CUDA_MALLOC_ASYNC "CUDA asynchronous malloc support" OFF)
+ mark_as_advanced(Kokkos_ENABLE_IMPL_CUDA_MALLOC_ASYNC)
+ if(Kokkos_ENABLE_IMPL_CUDA_MALLOC_ASYNC)
+ message(STATUS "KOKKOS: CUDA malloc async support enabled")
+ else()
+ message(STATUS "KOKKOS: CUDA malloc async support disabled")
+ endif()
+endif()
+if(Kokkos_ENABLE_HIP)
+ option(Kokkos_ENABLE_HIP_MULTIPLE_KERNEL_INSTANTIATIONS "Enable multiple kernel instantiations with HIP" ON)
+ mark_as_advanced(Kokkos_ENABLE_HIP_MULTIPLE_KERNEL_INSTANTIATIONS)
+ option(Kokkos_ENABLE_ROCTHRUST "Use RoCThrust library" ON)
+ mark_as_advanced(Kokkos_ENABLE_ROCTHRUST)
+
+ if(Kokkos_ARCH_AMD_GFX942 OR Kokkos_ARCH_AMD_GFX940)
+ option(Kokkos_ENABLE_IMPL_HIP_UNIFIED_MEMORY "Enable unified memory with HIP" ON)
+ mark_as_advanced(Kokkos_ENABLE_IMPL_HIP_UNIFIED_MEMORY)
+ endif()
endif()
# Adding OpenMP compiler flags without the checks done for
# BUILD_OMP can result in compile failures. Enforce consistency.
@@ -18,6 +34,15 @@ if(Kokkos_ENABLE_OPENMP)
message(FATAL_ERROR "Must enable BUILD_OMP with Kokkos_ENABLE_OPENMP")
endif()
endif()
+
+if(Kokkos_ENABLE_SERIAL)
+ if(NOT (Kokkos_ENABLE_OPENMP OR Kokkos_ENABLE_THREADS OR
+ Kokkos_ENABLE_CUDA OR Kokkos_ENABLE_HIP OR Kokkos_ENABLE_SYCL
+ OR Kokkos_ENABLE_OPENMPTARGET))
+ option(Kokkos_ENABLE_ATOMICS_BYPASS "Disable atomics for Kokkos Serial Backend" ON)
+ mark_as_advanced(Kokkos_ENABLE_ATOMICS_BYPASS)
+ endif()
+endif()
########################################################################
option(EXTERNAL_KOKKOS "Build against external kokkos library" OFF)
@@ -45,8 +70,8 @@ if(DOWNLOAD_KOKKOS)
list(APPEND KOKKOS_LIB_BUILD_ARGS "-DCMAKE_CXX_EXTENSIONS=${CMAKE_CXX_EXTENSIONS}")
list(APPEND KOKKOS_LIB_BUILD_ARGS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}")
include(ExternalProject)
- set(KOKKOS_URL "https://github.com/kokkos/kokkos/archive/4.3.01.tar.gz" CACHE STRING "URL for KOKKOS tarball")
- set(KOKKOS_MD5 "243de871b3dc2cf3990c1c404032df83" CACHE STRING "MD5 checksum of KOKKOS tarball")
+ set(KOKKOS_URL "https://github.com/kokkos/kokkos/archive/4.4.01.tar.gz" CACHE STRING "URL for KOKKOS tarball")
+ set(KOKKOS_MD5 "de6ee80d00b6212b02bfb7f1e71a8392" CACHE STRING "MD5 checksum of KOKKOS tarball")
mark_as_advanced(KOKKOS_URL)
mark_as_advanced(KOKKOS_MD5)
GetFallbackURL(KOKKOS_URL KOKKOS_FALLBACK)
@@ -71,7 +96,7 @@ if(DOWNLOAD_KOKKOS)
add_dependencies(LAMMPS::KOKKOSCORE kokkos_build)
add_dependencies(LAMMPS::KOKKOSCONTAINERS kokkos_build)
elseif(EXTERNAL_KOKKOS)
- find_package(Kokkos 4.3.01 REQUIRED CONFIG)
+ find_package(Kokkos 4.4.01 REQUIRED CONFIG)
target_link_libraries(lammps PRIVATE Kokkos::kokkos)
else()
set(LAMMPS_LIB_KOKKOS_SRC_DIR ${LAMMPS_LIB_SOURCE_DIR}/kokkos)
diff --git a/cmake/Modules/Packages/RHEO.cmake b/cmake/Modules/Packages/RHEO.cmake
deleted file mode 100644
index 7639acd8bc..0000000000
--- a/cmake/Modules/Packages/RHEO.cmake
+++ /dev/null
@@ -1,2 +0,0 @@
-find_package(GSL 2.6 REQUIRED)
-target_link_libraries(lammps PRIVATE GSL::gsl)
diff --git a/cmake/Modules/Packages/VORONOI.cmake b/cmake/Modules/Packages/VORONOI.cmake
index c010469677..cbc350340f 100644
--- a/cmake/Modules/Packages/VORONOI.cmake
+++ b/cmake/Modules/Packages/VORONOI.cmake
@@ -54,5 +54,5 @@ else()
if(NOT VORO_FOUND)
message(FATAL_ERROR "Voro++ library not found. Help CMake to find it by setting VORO_LIBRARY and VORO_INCLUDE_DIR, or set DOWNLOAD_VORO=ON to download it")
endif()
- target_link_libraries(lammps PRIVATE VORO::VORO)
+ target_link_libraries(lammps PRIVATE VORO::voro++)
endif()
diff --git a/cmake/presets/kokkos-sycl-intel.cmake b/cmake/presets/kokkos-sycl-intel.cmake
index 3fc75e4b2d..eba386564d 100644
--- a/cmake/presets/kokkos-sycl-intel.cmake
+++ b/cmake/presets/kokkos-sycl-intel.cmake
@@ -6,13 +6,24 @@ set(Kokkos_ENABLE_OPENMP ON CACHE BOOL "" FORCE)
set(Kokkos_ENABLE_CUDA OFF CACHE BOOL "" FORCE)
set(Kokkos_ENABLE_SYCL ON CACHE BOOL "" FORCE)
+set(FFT "MKL" CACHE STRING "" FORCE)
+set(FFT_KOKKOS "MKL_GPU" CACHE STRING "" FORCE)
+
+unset(USE_INTERNAL_LINALG)
+unset(USE_INTERNAL_LINALG CACHE)
+set(BLAS_VENDOR "Intel10_64_dyn")
+
# hide deprecation warnings temporarily for stable release
set(Kokkos_ENABLE_DEPRECATION_WARNINGS OFF CACHE BOOL "" FORCE)
set(CMAKE_CXX_COMPILER icpx CACHE STRING "" FORCE)
+set(CMAKE_C_COMPILER icx CACHE STRING "" FORCE)
+set(CMAKE_Fortran_COMPILER "" CACHE STRING "" FORCE)
set(MPI_CXX_COMPILER "mpicxx" CACHE STRING "" FORCE)
set(CMAKE_CXX_STANDARD 17 CACHE STRING "" FORCE)
# Silence everything
set(CMAKE_CXX_FLAGS "-w" CACHE STRING "" FORCE)
-set(CMAKE_EXE_LINKER_FLAGS "-fsycl -flink-huge-device-code -fsycl-max-parallel-link-jobs=32 -fsycl-targets=spir64_gen -Xsycl-target-backend \"-device 12.60.7\" " CACHE STRING "" FORCE)
-set(CMAKE_TUNE_FLAGS "-O3 -fsycl -fsycl-device-code-split=per_kernel -fsycl-targets=spir64_gen" CACHE STRING "" FORCE)
+#set(CMAKE_EXE_LINKER_FLAGS "-fsycl -flink-huge-device-code -fsycl-targets=spir64_gen " CACHE STRING "" FORCE)
+#set(CMAKE_TUNE_FLAGS "-O3 -fsycl -fsycl-device-code-split=per_kernel -fsycl-targets=spir64_gen" CACHE STRING "" FORCE)
+set(CMAKE_EXE_LINKER_FLAGS "-fsycl -flink-huge-device-code " CACHE STRING "" FORCE)
+set(CMAKE_TUNE_FLAGS "-O3 -fsycl -fsycl-device-code-split=per_kernel " CACHE STRING "" FORCE)
diff --git a/cmake/presets/mingw-cross.cmake b/cmake/presets/mingw-cross.cmake
index 100ce13632..413744b078 100644
--- a/cmake/presets/mingw-cross.cmake
+++ b/cmake/presets/mingw-cross.cmake
@@ -67,6 +67,7 @@ set(WIN_PACKAGES
REACTION
REAXFF
REPLICA
+ RHEO
RIGID
SHOCK
SMTBQ
diff --git a/cmake/presets/most.cmake b/cmake/presets/most.cmake
index d01642f94d..05282eebdd 100644
--- a/cmake/presets/most.cmake
+++ b/cmake/presets/most.cmake
@@ -60,6 +60,7 @@ set(ALL_PACKAGES
REACTION
REAXFF
REPLICA
+ RHEO
RIGID
SHOCK
SPH
diff --git a/cmake/presets/oneapi.cmake b/cmake/presets/oneapi.cmake
index 393d1d9b68..d98817e4b0 100644
--- a/cmake/presets/oneapi.cmake
+++ b/cmake/presets/oneapi.cmake
@@ -3,26 +3,9 @@
set(CMAKE_CXX_COMPILER "icpx" CACHE STRING "" FORCE)
set(CMAKE_C_COMPILER "icx" CACHE STRING "" FORCE)
set(CMAKE_Fortran_COMPILER "ifx" CACHE STRING "" FORCE)
-set(CMAKE_CXX_FLAGS_DEBUG "-Wall -Wextra -g" CACHE STRING "" FORCE)
-set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-Wall -Wextra -g -O2 -DNDEBUG" CACHE STRING "" FORCE)
-set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG" CACHE STRING "" FORCE)
-set(CMAKE_Fortran_FLAGS_DEBUG "-Wall -Wextra -g" CACHE STRING "" FORCE)
-set(CMAKE_Fortran_FLAGS_RELWITHDEBINFO "-Wall -Wextra -g -O2 -DNDEBUG" CACHE STRING "" FORCE)
-set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -DNDEBUG" CACHE STRING "" FORCE)
-set(CMAKE_C_FLAGS_DEBUG "-Wall -Wextra -g" CACHE STRING "" FORCE)
-set(CMAKE_C_FLAGS_RELWITHDEBINFO "-Wall -Wextra -g -O2 -DNDEBUG" CACHE STRING "" FORCE)
-set(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG" CACHE STRING "" FORCE)
-
set(MPI_CXX "icpx" CACHE STRING "" FORCE)
set(MPI_CXX_COMPILER "mpicxx" CACHE STRING "" FORCE)
-unset(HAVE_OMP_H_INCLUDE CACHE)
-set(OpenMP_C "icx" CACHE STRING "" FORCE)
-set(OpenMP_C_FLAGS "-qopenmp;-qopenmp-simd" CACHE STRING "" FORCE)
-set(OpenMP_C_LIB_NAMES "omp" CACHE STRING "" FORCE)
-set(OpenMP_CXX "icpx" CACHE STRING "" FORCE)
-set(OpenMP_CXX_FLAGS "-qopenmp;-qopenmp-simd" CACHE STRING "" FORCE)
-set(OpenMP_CXX_LIB_NAMES "omp" CACHE STRING "" FORCE)
-set(OpenMP_Fortran_FLAGS "-qopenmp;-qopenmp-simd" CACHE STRING "" FORCE)
-set(OpenMP_omp_LIBRARY "libiomp5.so" CACHE PATH "" FORCE)
+# force using internal BLAS/LAPCK since external ones may not be ABI compatible
+set(USE_INTERNAL_LINALG ON CACHE BOOL "" FORCE)
diff --git a/cmake/presets/windows.cmake b/cmake/presets/windows.cmake
index 403d40efa4..71241c559c 100644
--- a/cmake/presets/windows.cmake
+++ b/cmake/presets/windows.cmake
@@ -60,6 +60,7 @@ set(WIN_PACKAGES
REACTION
REAXFF
REPLICA
+ RHEO
RIGID
SHOCK
SMTBQ
diff --git a/doc/.gitignore b/doc/.gitignore
index 7c953d2432..28e583fa0b 100644
--- a/doc/.gitignore
+++ b/doc/.gitignore
@@ -17,3 +17,10 @@
*.el
/utils/sphinx-config/_static/mathjax
/utils/sphinx-config/_static/polyfill.js
+/src/pairs.rst
+/src/bonds.rst
+/src/angles.rst
+/src/dihedrals.rst
+/src/impropers.rst
+/src/computes.rst
+/src/fixes.rst
diff --git a/doc/Makefile b/doc/Makefile
index f9f8336665..d26e6020a6 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -83,7 +83,10 @@ $(SPHINXCONFIG)/conf.py: $(SPHINXCONFIG)/conf.py.in
-e 's,@LAMMPS_PYTHON_DIR@,$(BUILDDIR)/../python,g' \
-e 's,@LAMMPS_DOC_DIR@,$(BUILDDIR),g' $< > $@
-html: xmlgen $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK) $(MATHJAX)
+globbed-tocs:
+ $(PYTHON) $(BUILDDIR)/utils/make-globbed-tocs.py -d $(RSTDIR)
+
+html: xmlgen globbed-tocs $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK) $(MATHJAX)
@if [ "$(HAS_BASH)" == "NO" ] ; then echo "bash was not found at $(OSHELL)! Please use: $(MAKE) SHELL=/path/to/bash" 1>&2; exit 1; fi
@$(MAKE) $(MFLAGS) -C graphviz all
@(\
@@ -113,7 +116,7 @@ html: xmlgen $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK) $(MATHJAX)
@rm -rf html/PDF/.[sg]*
@echo "Build finished. The HTML pages are in doc/html."
-fasthtml: xmlgen $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK) $(MATHJAX)
+fasthtml: xmlgen globbed-tocs $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK) $(MATHJAX)
@if [ "$(HAS_BASH)" == "NO" ] ; then echo "bash was not found at $(OSHELL)! Please use: $(MAKE) SHELL=/path/to/bash" 1>&2; exit 1; fi
@$(MAKE) $(MFLAGS) -C graphviz all
@mkdir -p fasthtml
@@ -132,7 +135,7 @@ fasthtml: xmlgen $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK) $(MATHJAX)
@rm -rf fasthtml/PDF/.[sg]*
@echo "Fast HTML build finished. The HTML pages are in doc/fasthtml."
-spelling: xmlgen $(SPHINXCONFIG)/conf.py $(VENV) $(SPHINXCONFIG)/false_positives.txt
+spelling: xmlgen globbed-tocs $(SPHINXCONFIG)/conf.py $(VENV) $(SPHINXCONFIG)/false_positives.txt
@if [ "$(HAS_BASH)" == "NO" ] ; then echo "bash was not found at $(OSHELL)! Please use: $(MAKE) SHELL=/path/to/bash" 1>&2; exit 1; fi
@(\
. $(VENV)/bin/activate ; \
@@ -143,7 +146,7 @@ spelling: xmlgen $(SPHINXCONFIG)/conf.py $(VENV) $(SPHINXCONFIG)/false_positives
)
@echo "Spell check finished."
-epub: xmlgen $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK)
+epub: xmlgen globbed-tocs $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK)
@if [ "$(HAS_BASH)" == "NO" ] ; then echo "bash was not found at $(OSHELL)! Please use: $(MAKE) SHELL=/path/to/bash" 1>&2; exit 1; fi
@$(MAKE) $(MFLAGS) -C graphviz all
@mkdir -p epub/JPG
@@ -166,7 +169,7 @@ mobi: epub
@ebook-convert LAMMPS.epub LAMMPS.mobi
@echo "Conversion finished. The MOBI manual file is created."
-pdf: xmlgen $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK)
+pdf: xmlgen globbed-tocs $(VENV) $(SPHINXCONFIG)/conf.py $(ANCHORCHECK)
@if [ "$(HAS_BASH)" == "NO" ] ; then echo "bash was not found at $(OSHELL)! Please use: $(MAKE) SHELL=/path/to/bash" 1>&2; exit 1; fi
@$(MAKE) $(MFLAGS) -C graphviz all
@if [ "$(HAS_PDFLATEX)" == "NO" ] ; then echo "PDFLaTeX or latexmk were not found! Please check README for further instructions" 1>&2; exit 1; fi
diff --git a/doc/src/Build_extras.rst b/doc/src/Build_extras.rst
index ac7edc7678..8465bea829 100644
--- a/doc/src/Build_extras.rst
+++ b/doc/src/Build_extras.rst
@@ -2251,28 +2251,38 @@ verified to work in February 2020 with Quantum Espresso versions 6.3 to
RHEO package
------------
-To build with this package you must have the `GNU Scientific Library
-(GSL) ` installed in locations that
-are accessible in your environment. The GSL library should be at least
-version 2.7.
+This package depends on the BPM package.
.. tabs::
.. tab:: CMake build
- If CMake cannot find the GSL library or include files, you can set:
-
.. code-block:: bash
- -D GSL_ROOT_DIR=path # path to root of GSL installation
+ -D PKG_RHEO=yes # enable the package itself
+ -D PKG_BPM=yes # the RHEO package requires BPM
+ -D USE_INTERNAL_LINALG=value # prefer internal LAPACK if true
+
+ Some features in the RHEO package are dependent on code in the BPM
+ package so the latter one *must* be enabled as well.
+
+ The RHEO package also requires LAPACK (and BLAS) and CMake
+ can identify their locations and pass that info to the RHEO
+ build script. But on some systems this may cause problems when
+ linking or the dependency is not desired. By using the setting
+ ``-D USE_INTERNAL_LINALG=yes`` when running the CMake
+ configuration, you will select compiling and linking the bundled
+ linear algebra library and work around the limitations.
.. tab:: Traditional make
- LAMMPS will try to auto-detect the GSL compiler and linker flags
- from the corresponding ``pkg-config`` file (``gsl.pc``), otherwise
- you can edit the file ``lib/rheo/Makefile.lammps``
- to specify the paths and library names where indicated by comments.
- This must be done **before** the package is installed.
+ The RHEO package requires LAPACK (and BLAS) which can be either
+ a system provided library or the bundled "linalg" library. This
+ is a subset of LAPACK translated to C++. For that, one of the
+ provided ``Makefile.lammps.`` files needs to be copied
+ to ``Makefile.lammps`` and edited as needed. The default file
+ uses the bundled "linalg" library, which can be built by
+ ``make lib-linalg args='-m serial'`` in the ``src`` folder.
----------
diff --git a/doc/src/Commands_fix.rst b/doc/src/Commands_fix.rst
index 69109e96e9..5017a949c1 100644
--- a/doc/src/Commands_fix.rst
+++ b/doc/src/Commands_fix.rst
@@ -179,6 +179,7 @@ OPT.
* :doc:`python/move `
* :doc:`qbmsst `
* :doc:`qeq/comb (o) `
+ * :doc:`qeq/ctip `
* :doc:`qeq/dynamic `
* :doc:`qeq/fire `
* :doc:`qeq/point `
diff --git a/doc/src/Commands_pair.rst b/doc/src/Commands_pair.rst
index dfed8f7485..5f42f53bd5 100644
--- a/doc/src/Commands_pair.rst
+++ b/doc/src/Commands_pair.rst
@@ -44,7 +44,7 @@ OPT.
* :doc:`born/coul/wolf/cs (g) `
* :doc:`born/gauss `
* :doc:`bpm/spring `
- * :doc:`brownian (o) `
+ * :doc:`brownian (ko) `
* :doc:`brownian/poly (o) `
* :doc:`buck (giko) `
* :doc:`buck/coul/cut (giko) `
@@ -59,6 +59,7 @@ OPT.
* :doc:`comb (o) `
* :doc:`comb3 `
* :doc:`cosine/squared `
+ * :doc:`coul/ctip `
* :doc:`coul/cut (gko) `
* :doc:`coul/cut/dielectric `
* :doc:`coul/cut/global (o) `
diff --git a/doc/src/Howto_bioFF.rst b/doc/src/Howto_bioFF.rst
index 72dcec2d31..92dd45b9b6 100644
--- a/doc/src/Howto_bioFF.rst
+++ b/doc/src/Howto_bioFF.rst
@@ -1,5 +1,5 @@
-CHARMM, AMBER, COMPASS, and DREIDING force fields
-=================================================
+CHARMM, AMBER, COMPASS, DREIDING, and OPLS force fields
+=======================================================
A compact summary of the concepts, definitions, and properties of
force fields with explicit bonded interactions (like the ones discussed
@@ -236,6 +236,40 @@ documentation for the formula it computes.
* :doc:`special_bonds ` dreiding
+OPLS
+----
+
+OPLS (Optimized Potentials for Liquid Simulations) is a general force
+field for atomistic simulation of organic molecules in solvent. It was
+developed by the `Jorgensen group
+`_ at Purdue University and
+later at Yale University. Multiple versions of the OPLS parameters
+exist for united atom representations (OPLS-UA) and for all-atom
+representations (OPLS-AA).
+
+This force field is based on atom types mapped to specific functional
+groups in organic and biological molecules. Each atom includes a
+static, partial atomic charge reflecting the oxidation state of the
+element derived from its bonded neighbors :ref:`(Jorgensen)
+` and computed based on increments determined by the
+atom type of the atoms bond to it.
+
+The interaction styles listed below compute force field formulas that
+are fully or in part consistent with the OPLS style force fields. See
+each command's documentation for the formula it computes. Some are only
+compatible with a subset of OPLS interactions.
+
+* :doc:`bond_style ` harmonic
+* :doc:`angle_style ` harmonic
+* :doc:`dihedral_style ` opls
+* :doc:`improper_style ` cvff
+* :doc:`improper_style ` fourier
+* :doc:`improper_style ` harmonic
+* :doc:`pair_style ` lj/cut/coul/cut
+* :doc:`pair_style ` lj/cut/coul/long
+* :doc:`pair_modify ` geometric
+* :doc:`special_bonds ` lj/coul 0.0 0.0 0.5
+
----------
.. _Typelabel2:
@@ -266,3 +300,6 @@ documentation for the formula it computes.
**(Mayo)** Mayo, Olfason, Goddard III (1990). J Phys Chem, 94, 8897-8909. https://doi.org/10.1021/j100389a010
+.. _howto-Jorgensen:
+
+**(Jorgensen)** Jorgensen, Tirado-Rives (1988). J Am Chem Soc, 110, 1657-1666. https://doi.org/10.1021/ja00214a001
diff --git a/doc/src/Howto_bpm.rst b/doc/src/Howto_bpm.rst
index 86e091fcef..f2aa1fc0a3 100644
--- a/doc/src/Howto_bpm.rst
+++ b/doc/src/Howto_bpm.rst
@@ -5,7 +5,11 @@ The BPM package implements bonded particle models which can be used to
simulate mesoscale solids. Solids are constructed as a collection of
particles, which each represent a coarse-grained region of space much
larger than the atomistic scale. Particles within a solid region are
-then connected by a network of bonds to provide solid elasticity.
+then connected by a network of bonds to model solid elasticity.
+There are many names for methods that are based on similar (or
+equivalent) capabilities to those in this package, including, but not
+limited to, cohesive beam models, bonded DEMs, lattice spring models,
+mass spring models, and lattice particle methods.
Unlike traditional bonds in molecular dynamics, the equilibrium bond
length can vary between bonds. Bonds store the reference state. This
@@ -42,7 +46,8 @@ Currently, there are two types of bonds included in the BPM package. The
first bond style, :doc:`bond bpm/spring `, only applies
pairwise, central body forces. Point particles must have :doc:`bond atom
style ` and may be thought of as nodes in a spring
-network. Alternatively, the second bond style, :doc:`bond bpm/rotational
+network. An optional multibody term can be used to adjust the network's
+Poisson's ratio. Alternatively, the second bond style, :doc:`bond bpm/rotational
`, resolves tangential forces and torques arising
with the shearing, bending, and twisting of the bond due to rotation or
displacement of particles. Particles are similar to those used in the
@@ -55,8 +60,9 @@ orientation similar to :doc:`fix nve/asphere `.
In addition to bond styles, a new pair style :doc:`pair bpm/spring
` was added to accompany the bpm/spring bond
-style. This pair style is simply a hookean repulsion with similar
-velocity damping as its sister bond style.
+style. By default, this pair style is simply a hookean repulsion with
+similar velocity damping as its sister bond style, but optional
+arguments can be used to modify the force.
----------
diff --git a/doc/src/Howto_chunk.rst b/doc/src/Howto_chunk.rst
index f8655b745d..ea000eb22f 100644
--- a/doc/src/Howto_chunk.rst
+++ b/doc/src/Howto_chunk.rst
@@ -58,28 +58,30 @@ chunk ID for an individual atom can also be static (e.g. a molecule
ID), or dynamic (e.g. what spatial bin an atom is in as it moves).
Note that this compute allows the per-atom output of other
-:doc:`computes `, :doc:`fixes `, and
-:doc:`variables ` 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 the :doc:`Modify `
-doc pages for info on how to do this. You can also define a :doc:`per-atom variable ` in the input script that uses a formula to
-generate a chunk ID for each atom.
+:doc:`computes `, :doc:`fixes `, and :doc:`variables
+` 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 the :doc:`Modify ` doc pages for info on
+how to do this. You can also define a :doc:`per-atom variable
+` in the input script that uses a formula to generate a chunk
+ID for each atom.
Fix ave/chunk command:
----------------------
-This fix takes the ID of a :doc:`compute chunk/atom ` command as input. For each chunk,
-it then sums one or more specified per-atom values over the atoms in
-each chunk. The per-atom values can be any atom property, such as
-velocity, force, charge, potential energy, kinetic energy, stress,
-etc. Additional keywords are defined for per-chunk properties like
-density and temperature. More generally any per-atom value generated
-by other :doc:`computes `, :doc:`fixes `, and :doc:`per-atom variables `, can be summed over atoms in each chunk.
+This fix takes the ID of a :doc:`compute chunk/atom
+` command as input. For each chunk, it then sums
+one or more specified per-atom values over the atoms in each chunk. The
+per-atom values can be any atom property, such as velocity, force,
+charge, potential energy, kinetic energy, stress, etc. Additional
+keywords are defined for per-chunk properties like density and
+temperature. More generally any per-atom value generated by other
+:doc:`computes `, :doc:`fixes `, and :doc:`per-atom
+variables `, can be summed over atoms in each chunk.
Similar to other averaging fixes, this fix allows the summed per-chunk
values to be time-averaged in various ways, and output to a file. The
-fix produces a global array as output with one row of values per
-chunk.
+fix produces a global array as output with one row of values per chunk.
Compute \*/chunk commands:
--------------------------
@@ -97,17 +99,20 @@ category:
* :doc:`compute torque/chunk `
* :doc:`compute vcm/chunk `
-They each take the ID of a :doc:`compute chunk/atom ` command as input. As their names
-indicate, they calculate the center-of-mass, radius of gyration,
-moments of inertia, mean-squared displacement, temperature, torque,
-and velocity of center-of-mass for each chunk of atoms. The :doc:`compute property/chunk ` command can tally the
-count of atoms in each chunk and extract other per-chunk properties.
+They each take the ID of a :doc:`compute chunk/atom
+` command as input. As their names indicate, they
+calculate the center-of-mass, radius of gyration, moments of inertia,
+mean-squared displacement, temperature, torque, and velocity of
+center-of-mass for each chunk of atoms. The :doc:`compute
+property/chunk ` command can tally the count of
+atoms in each chunk and extract other per-chunk properties.
-The reason these various calculations are not part of the :doc:`fix ave/chunk command `, is that each requires a more
+The reason these various calculations are not part of the :doc:`fix
+ave/chunk command `, is that each requires a more
complicated operation than simply summing and averaging over per-atom
-values in each chunk. For example, many of them require calculation
-of a center of mass, which requires summing mass\*position over the
-atoms and then dividing by summed mass.
+values in each chunk. For example, many of them require calculation of
+a center of mass, which requires summing mass\*position over the atoms
+and then dividing by summed mass.
All of these computes produce a global vector or global array as
output, with one or more values per chunk. The output can be used in
@@ -118,9 +123,10 @@ various ways:
* As input to the :doc:`fix ave/histo ` command to
histogram values across chunks. E.g. a histogram of cluster sizes or
molecule diffusion rates.
-* As input to special functions of :doc:`equal-style variables `, like sum() and max() and ave(). E.g. to
- find the largest cluster or fastest diffusing molecule or average
- radius-of-gyration of a set of molecules (chunks).
+* As input to special functions of :doc:`equal-style variables
+ `, like sum() and max() and ave(). E.g. to find the largest
+ cluster or fastest diffusing molecule or average radius-of-gyration of
+ a set of molecules (chunks).
Other chunk commands:
---------------------
@@ -138,9 +144,10 @@ spatially average per-chunk values calculated by a per-chunk compute.
The :doc:`compute reduce/chunk ` command reduces a
peratom value across the atoms in each chunk to produce a value per
-chunk. When used with the :doc:`compute chunk/spread/atom ` command it can
-create peratom values that induce a new set of chunks with a second
-:doc:`compute chunk/atom ` command.
+chunk. When used with the :doc:`compute chunk/spread/atom
+` command it can create peratom values that
+induce a new set of chunks with a second :doc:`compute chunk/atom
+` command.
Example calculations with chunks
--------------------------------
diff --git a/doc/src/Intro_portability.rst b/doc/src/Intro_portability.rst
index 472a2bee88..036529ff9d 100644
--- a/doc/src/Intro_portability.rst
+++ b/doc/src/Intro_portability.rst
@@ -31,18 +31,19 @@ Operating systems
^^^^^^^^^^^^^^^^^
The primary development platform for LAMMPS is Linux. Thus, the chances
-for LAMMPS to compile without problems on Linux machines are the best.
+for LAMMPS to compile without problems are the best on Linux machines.
Also, compilation and correct execution on macOS and Windows (using
-Microsoft Visual C++) is checked automatically for largest part of the
-source code. Some (optional) features are not compatible with all
+Microsoft Visual C++) is checked automatically for the largest part of
+the source code. Some (optional) features are not compatible with all
operating systems, either through limitations of the corresponding
-LAMMPS source code or through source code or build system
-incompatibilities of required libraries.
+LAMMPS source code or through incompatibilities of source code or
+build system of required external libraries or packages.
Executables for Windows may be created natively using either Cygwin or
Visual Studio or with a Linux to Windows MinGW cross-compiler.
-Additionally, FreeBSD and Solaris have been tested successfully.
+Additionally, FreeBSD and Solaris have been tested successfully to
+run LAMMPS and produce results consistent with those on Linux.
Compilers
^^^^^^^^^
diff --git a/doc/src/Packages_details.rst b/doc/src/Packages_details.rst
index 43429feb03..466d4134cb 100644
--- a/doc/src/Packages_details.rst
+++ b/doc/src/Packages_details.rst
@@ -880,7 +880,7 @@ groups of atoms that interact with the remaining atoms as electrolyte.
**Authors:** The ELECTRODE package is written and maintained by Ludwig
Ahrens-Iwers (TUHH, Hamburg, Germany), Shern Tee (UQ, Brisbane, Australia) and
-Robert Meissner (TUHH, Hamburg, Germany).
+Robert Meissner (Helmholtz-Zentrum Hereon, Geesthacht and TUHH, Hamburg, Germany).
.. versionadded:: 4May2022
diff --git a/doc/src/Run_windows.rst b/doc/src/Run_windows.rst
index 0c0a07f4c7..8c2eac2bc6 100644
--- a/doc/src/Run_windows.rst
+++ b/doc/src/Run_windows.rst
@@ -3,71 +3,70 @@ Running LAMMPS on Windows
To run a serial (non-MPI) executable, follow these steps:
-* Get a command prompt by going to Start->Run... ,
- then typing "cmd".
-* Move to the directory where you have your input script,
+* Install a LAMMPS installer package from https://packages.lammps.org/windows.html
+* Open the "Command Prompt" or "Terminal" app.
+* Change to the directory where you have your input script,
(e.g. by typing: cd "Documents").
-* At the command prompt, type "lmp -in in.file", where
- in.file is the name of your LAMMPS input script.
+* At the command prompt, type "lmp -in in.file.lmp", where
+ ``in.file.lmp`` is the name of your LAMMPS input script.
Note that the serial executable includes support for multi-threading
-parallelization from the styles in the OPENMP packages. To run with
-4 threads, you can type this:
+parallelization from the styles in the OPENMP and KOKKOS packages.
+To run with 4 threads, you can type this:
.. code-block:: bash
- lmp -in in.lj -pk omp 4 -sf omp
+ lmp -in in.lj.lmp -pk omp 4 -sf omp
+ lmp -in in.lj.lmp -k on t 4 -sf kk
+
+Alternately, you can also install a package with LAMMPS-GUI included and
+open the LAMMPS-GUI app (the package includes the command line version
+of LAMMPS as well) and open the input file in the GUI and run it from
+there. For details on LAMMPS-GUI, see :doc:`Howto_lammps_gui`.
----------
-For the MPI executable, which allows you to run LAMMPS under Windows
-in parallel, follow these steps.
+For the MS-MPI executables, which allow you to run LAMMPS under Windows
+in parallel using MPI rather than multi-threading, follow these steps.
-Download and install a compatible MPI library binary package:
-
-* for 32-bit Windows: `mpich2-1.4.1p1-win-ia32.msi `_
-* for 64-bit Windows: `mpich2-1.4.1p1-win-x86-64.msi `_
-
-The LAMMPS Windows installer packages will automatically adjust your
-path for the default location of this MPI package. After the
-installation of the MPICH2 software, it needs to be integrated into
-the system. For this you need to start a Command Prompt in
-*Administrator Mode* (right click on the icon and select it). Change
-into the MPICH2 installation directory, then into the subdirectory
-**bin** and execute **smpd.exe -install**\ . Exit the command window.
-
-* Get a new, regular command prompt by going to Start->Run... ,
- then typing "cmd".
-* Move to the directory where you have your input file
- (e.g. by typing: cd "Documents").
+Download and install the MS-MPI runtime package ``msmpisetup.exe`` from
+https://www.microsoft.com/en-us/download/details.aspx?id=105289 (Note
+that the ``msmpisdk.msi`` is **only** required for **compilation** of
+LAMMPS from source on Windows using Microsoft Visual Studio). After
+installation of MS-MPI perform a reboot.
Then you can run the executable in serial like in the example above
or in parallel using MPI with one of the following commands:
.. code-block:: bash
- mpiexec -localonly 4 lmp -in in.file
- mpiexec -np 4 lmp -in in.file
+ mpiexec -localonly 4 lmp -in in.file.lmp
+ mpiexec -np 4 lmp -in in.file.lmp
-where in.file is the name of your LAMMPS input script. For the latter
-case, you may be prompted to enter the password that you set during
-installation of the MPI library software.
+where ``in.file.lmp`` is the name of your LAMMPS input script. For the
+latter case, you may be prompted to enter the password that you set
+during installation of the MPI library software.
In this mode, output may not immediately show up on the screen, so if
your input script takes a long time to execute, you may need to be
patient before the output shows up.
-The parallel executable can also run on a single processor by typing
-something like this:
+Note that the parallel executable also includes OpenMP multi-threading
+through both the OPENMP and the KOKKOS package, which can be combined
+with MPI using something like:
.. code-block:: bash
- lmp -in in.lj
+ mpiexec -localonly 2 lmp -in in.lj.lmp -pk omp 2 -sf omp
+ mpiexec -localonly 2 lmp -in in.lj.lmp -kokkos on t 2 -sf kk
-Note that the parallel executable also includes OpenMP
-multi-threading, which can be combined with MPI using something like:
-
-.. code-block:: bash
-
- mpiexec -localonly 2 lmp -in in.lj -pk omp 2 -sf omp
+-------------
+MPI parallelization will work for *all* functionality in LAMMPS and in
+many cases the MPI parallelization is more efficient than
+multi-threading since LAMMPS was designed from ground up for MPI
+parallelization using domain decomposition. Multi-threading is only
+available for selected styles and implemented on top of the MPI
+parallelization. Multi-threading is most useful for systems with large
+load imbalances when using domain decomposition and a smaller number
+of threads (<= 8).
diff --git a/doc/src/angles.rst b/doc/src/angles.rst
deleted file mode 100644
index c940689d4d..0000000000
--- a/doc/src/angles.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Angle Styles
-############
-
-.. toctree::
- :maxdepth: 1
- :glob:
-
- angle_*
diff --git a/doc/src/bond_bpm_spring.rst b/doc/src/bond_bpm_spring.rst
index 81582bd5ea..4bc5cd3463 100644
--- a/doc/src/bond_bpm_spring.rst
+++ b/doc/src/bond_bpm_spring.rst
@@ -10,7 +10,7 @@ Syntax
bond_style bpm/spring keyword value attribute1 attribute2 ...
-* optional keyword = *overlay/pair* or *store/local* or *smooth* or *break*
+* optional keyword = *overlay/pair* or *store/local* or *smooth* or *break* or *volume/factor*
.. parsed-literal::
@@ -36,6 +36,9 @@ Syntax
*break* value = *yes* or *no*
indicates whether bonds break during a run
+ *volume/factor* value = *yes* or *no*
+ indicates whether forces include the volumetric contribution
+
Examples
""""""""
@@ -44,6 +47,9 @@ Examples
bond_style bpm/spring
bond_coeff 1 1.0 0.05 0.1
+ bond_style bpm/spring volume/factor yes
+ bond_coeff 1 1.0 0.05 0.1 0.5
+
bond_style bpm/spring myfix 1000 time id1 id2
dump 1 all local 1000 dump.broken f_myfix[1] f_myfix[2] f_myfix[3]
dump_modify 1 write_header no
@@ -97,15 +103,6 @@ approach the critical strain
w = 1.0 - \left( \frac{r - r_0}{r_0 \epsilon_c} \right)^8 .
-The following coefficients must be defined for each bond type via the
-:doc:`bond_coeff ` command as in the example above, or in
-the data file or restart files read by the :doc:`read_data
-` or :doc:`read_restart ` commands:
-
-* :math:`k` (force/distance units)
-* :math:`\epsilon_c` (unit less)
-* :math:`\gamma` (force/velocity units)
-
If the *normalize* keyword is set to *yes*, the elastic bond force will be
normalized by :math:`r_0` such that :math:`k` must be given in force units.
@@ -123,6 +120,43 @@ during a simulation run. This will prevent some unnecessary calculation.
However, if a bond reaches a strain greater than :math:`\epsilon_c`,
it will trigger an error.
+.. versionadded:: TBD
+
+The *volume/factor* keyword toggles whether an additional multibody
+contribution is added to he force using the formulation in
+:ref:`(Clemmer2) `,
+
+.. math::
+
+ \alpha_v \left(\left[\frac{V_i + V_j}{V_{0,i} + V_{0,j}}\right]^{1/3} - \frac{r_{ij}}{r_{0,ij}}\right)
+
+where :math:`\alpha_v` is a user specified coefficient and :math:`V_i`
+and :math:`V_{0,i}` are estimates of the current and local volume
+of atom :math:`i`. These volumes are calculated as the sum of current
+or initial bond lengths cubed. In 2D, the volume is replaced with an area
+calculated using bond lengths squared and the cube root in the above equation
+is accordingly replaced with a square root. This approximation assumes bonds
+are evenly distributed on a spherical surface and neglects constant prefactors
+which are irrelevant since only the ratio of volumes matters. This term may be
+used to adjust the Poisson's ratio.
+
+If a bond is broken (or created), :math:`V_{0,i}` is updated by subtracting
+(or adding) that bond's contribution.
+
+The following coefficients must be defined for each bond type via the
+:doc:`bond_coeff ` command as in the example above, or in
+the data file or restart files read by the :doc:`read_data
+` or :doc:`read_restart ` commands:
+
+* :math:`k` (force/distance units)
+* :math:`\epsilon_c` (unit less)
+* :math:`\gamma` (force/velocity units)
+
+Additionally, if *volume/factor* is set to *yes*, a fourth coefficient
+must be provided:
+
+* :math:`a_v` (force units)
+
If the *store/local* keyword is used, an internal fix will track bonds that
break during the simulation. Whenever a bond breaks, data is processed
and transferred to an internal fix labeled *fix_ID*. This allows the
@@ -213,7 +247,7 @@ Related commands
Default
"""""""
-The option defaults are *overlay/pair* = *no*, *smooth* = *yes*, *normalize* = *no*, and *break* = *yes*
+The option defaults are *overlay/pair* = *no*, *smooth* = *yes*, *normalize* = *no*, *break* = *yes*, and *volume/factor* = *no*
----------
@@ -224,3 +258,7 @@ The option defaults are *overlay/pair* = *no*, *smooth* = *yes*, *normalize* = *
.. _Groot4:
**(Groot)** Groot and Warren, J Chem Phys, 107, 4423-35 (1997).
+
+.. _multibody-Clemmer:
+
+**(Clemmer2)** Clemmer, Monti, Lechman, Soft Matter, 20, 1702 (2024).
diff --git a/doc/src/bonds.rst b/doc/src/bonds.rst
deleted file mode 100644
index 4118e153e9..0000000000
--- a/doc/src/bonds.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Bond Styles
-###########
-
-.. toctree::
- :maxdepth: 1
- :glob:
-
- bond_*
diff --git a/doc/src/compute_angle_local.rst b/doc/src/compute_angle_local.rst
index 126dd309af..d4491c6945 100644
--- a/doc/src/compute_angle_local.rst
+++ b/doc/src/compute_angle_local.rst
@@ -78,7 +78,7 @@ system and output the statistics in various ways:
compute 2 all angle/local eng theta v_cos v_cossq set theta t
dump 1 all local 100 tmp.dump c_1[*] c_2[*]
- compute 3 all reduce ave c_2[*]
+ compute 3 all reduce ave c_2[*] inputs local
thermo_style custom step temp press c_3[*]
fix 10 all ave/histo 10 10 100 -1 1 20 c_2[3] mode vector file tmp.histo
diff --git a/doc/src/compute_bond_local.rst b/doc/src/compute_bond_local.rst
index 5036358c8c..e070d507b1 100644
--- a/doc/src/compute_bond_local.rst
+++ b/doc/src/compute_bond_local.rst
@@ -139,7 +139,7 @@ output the statistics in various ways:
compute 2 all bond/local engpot dist v_dsq set dist d
dump 1 all local 100 tmp.dump c_1[*] c_2[*]
- compute 3 all reduce ave c_2[*]
+ compute 3 all reduce ave c_2[*] inputs local
thermo_style custom step temp press c_3[*]
fix 10 all ave/histo 10 10 100 0 6 20 c_2[3] mode vector file tmp.histo
diff --git a/doc/src/compute_composition_atom.rst b/doc/src/compute_composition_atom.rst
index c3e6fb7c60..4b68e7c79e 100644
--- a/doc/src/compute_composition_atom.rst
+++ b/doc/src/compute_composition_atom.rst
@@ -88,6 +88,10 @@ too frequently.
----------
+.. include:: accel_styles.rst
+
+----------
+
Output info
"""""""""""
diff --git a/doc/src/compute_dihedral_local.rst b/doc/src/compute_dihedral_local.rst
index 291b870373..d809cd39ce 100644
--- a/doc/src/compute_dihedral_local.rst
+++ b/doc/src/compute_dihedral_local.rst
@@ -76,7 +76,7 @@ angle in the system and output the statistics in various ways:
compute 2 all dihedral/local phi v_cos v_cossq set phi p
dump 1 all local 100 tmp.dump c_1[*] c_2[*]
- compute 3 all reduce ave c_2[*]
+ compute 3 all reduce ave c_2[*] inputs local
thermo_style custom step temp press c_3[*]
fix 10 all ave/histo 10 10 100 -1 1 20 c_2[2] mode vector file tmp.histo
diff --git a/doc/src/compute_pressure.rst b/doc/src/compute_pressure.rst
index 439f701bd4..92dcdb307a 100644
--- a/doc/src/compute_pressure.rst
+++ b/doc/src/compute_pressure.rst
@@ -125,10 +125,6 @@ where thermo_temp is the ID of a similarly defined compute of style
----------
-.. include:: accel_styles.rst
-
-----------
-
Output info
"""""""""""
diff --git a/doc/src/compute_reduce.rst b/doc/src/compute_reduce.rst
index 9eafe7cd5a..e5c99a478f 100644
--- a/doc/src/compute_reduce.rst
+++ b/doc/src/compute_reduce.rst
@@ -206,11 +206,13 @@ IDs and the bond stretch will be printed with thermodynamic output.
The *inputs* keyword allows selection of whether all the inputs are
per-atom or local quantities. As noted above, all the inputs must be
-the same kind (per-atom or local). Per-atom is the default setting.
-If a compute or fix is specified as an input, it must produce per-atom
-or local data to match this setting. If it produces both, e.g. for
+the same kind (per-atom or local). Per-atom is the default setting. If
+a compute or fix is specified as an input, it must produce per-atom or
+local data to match this setting. If it produces both, like for example
the :doc:`compute voronoi/atom ` command, then
-this keyword selects between them.
+this keyword selects between them. If a compute *only* produces local
+data, like for example the :doc:`compute bond/local command
+`, the setting "inputs local" is *required*.
----------
diff --git a/doc/src/compute_reduce_chunk.rst b/doc/src/compute_reduce_chunk.rst
index 8ec19ade66..eeadd50a97 100644
--- a/doc/src/compute_reduce_chunk.rst
+++ b/doc/src/compute_reduce_chunk.rst
@@ -37,55 +37,57 @@ Description
Define a calculation that reduces one or more per-atom vectors into
per-chunk values. This can be useful for diagnostic output. Or when
-used in conjunction with the :doc:`compute chunk/spread/atom ` command it can be
-used to create per-atom values that induce a new set of chunks with a
-second :doc:`compute chunk/atom ` command. An
-example is given below.
+used in conjunction with the :doc:`compute chunk/spread/atom
+` command it can be used to create per-atom
+values that induce a new set of chunks with a second :doc:`compute
+chunk/atom ` command. An example is given below.
-In LAMMPS, chunks are collections of atoms defined by a :doc:`compute chunk/atom ` command, which assigns each atom
-to a single chunk (or no chunk). The ID for this command is specified
-as chunkID. For example, a single chunk could be the atoms in a
-molecule or atoms in a spatial bin. See the :doc:`compute chunk/atom ` and :doc:`Howto chunk `
-doc pages for details of how chunks can be defined and examples of how
-they can be used to measure properties of a system.
+In LAMMPS, chunks are collections of atoms defined by a :doc:`compute
+chunk/atom ` command, which assigns each atom to a
+single chunk (or no chunk). The ID for this command is specified as
+chunkID. For example, a single chunk could be the atoms in a molecule
+or atoms in a spatial bin. See the :doc:`compute chunk/atom
+` and :doc:`Howto chunk ` doc pages for
+details of how chunks can be defined and examples of how they can be
+used to measure properties of a system.
For each atom, this compute accesses its chunk ID from the specified
-*chunkID* compute. The per-atom value from an input contributes
-to a per-chunk value corresponding the the chunk ID.
+*chunkID* compute. The per-atom value from an input contributes to a
+per-chunk value corresponding the chunk ID.
The reduction operation is specified by the *mode* setting and is
performed over all the per-atom values from the atoms in each chunk.
-The *sum* option adds the pre-atom values to a per-chunk total. The
-*min* or *max* options find the minimum or maximum value of the
-per-atom values for each chunk.
+The *sum* option adds the per-atom values to a per-chunk total. The
+*min* or *max* options find the minimum or maximum value of the per-atom
+values for each chunk.
-Note that only atoms in the specified group contribute to the
-reduction operation. If the *chunkID* compute returns a 0 for the
-chunk ID of an atom (i.e., the atom is not in a chunk defined by the
-:doc:`compute chunk/atom ` command), that atom will
-also not contribute to the reduction operation. An input that is a
-compute or fix may define its own group which affects the quantities
-it returns. For example, a compute with return a zero value for atoms
-that are not in the group specified for that compute.
+Note that only atoms in the specified group contribute to the reduction
+operation. If the *chunkID* compute returns a 0 for the chunk ID of an
+atom (i.e., the atom is not in a chunk defined by the :doc:`compute
+chunk/atom ` command), that atom will also not
+contribute to the reduction operation. An input that is a compute or
+fix may define its own group which affects the quantities it returns.
+For example, a compute will return a zero value for atoms that are not
+in the group specified for that compute.
Each listed input is operated on independently. Each input can be the
-result of a :doc:`compute ` or :doc:`fix ` or the evaluation
-of an atom-style :doc:`variable `.
+result of a :doc:`compute ` or :doc:`fix ` or the
+evaluation of an atom-style :doc:`variable `.
-Note that for values from a compute or fix, the bracketed index I can
-be specified using a wildcard asterisk with the index to effectively
+Note that for values from a compute or fix, the bracketed index I can be
+specified using a wildcard asterisk with the index to effectively
specify multiple values. This takes the form "\*" or "\*n" or "m\*" or
-"m\*n". If :math:`N` is the size of the vector (for *mode* = scalar) or the
-number of columns in the array (for *mode* = vector), then an asterisk
-with no numeric values means all indices from 1 to :math:`N`. A leading
-asterisk means all indices from 1 to n (inclusive). A trailing
-asterisk means all indices from n to :math:`N` (inclusive). A middle asterisk
-means all indices from m to n (inclusive).
+"m\*n". If :math:`N` is the size of the vector (for *mode* = scalar) or
+the number of columns in the array (for *mode* = vector), then an
+asterisk with no numeric values means all indices from 1 to :math:`N`.
+A leading asterisk means all indices from 1 to n (inclusive). A
+trailing asterisk means all indices from n to :math:`N` (inclusive). A
+middle asterisk means all indices from m to n (inclusive).
Using a wildcard is the same as if the individual columns of the array
-had been listed one by one. For example, the following two compute reduce/chunk
-commands are equivalent, since the
-:doc:`compute property/chunk ` command creates a per-atom
+had been listed one by one. For example, the following two compute
+reduce/chunk commands are equivalent, since the :doc:`compute
+property/chunk ` command creates a per-atom
array with 3 columns:
.. code-block:: LAMMPS
@@ -164,13 +166,14 @@ Output info
"""""""""""
This compute calculates a global vector if a single input value is
-specified, otherwise a global array is output. The number of columns
-in the array is the number of inputs provided. The length of the
-vector or the number of vector elements or array rows = the number of
-chunks *Nchunk* as calculated by the specified :doc:`compute chunk/atom ` command. The vector or array can
-be accessed by any command that uses global values from a compute as
-input. See the :doc:`Howto output ` page for an
-overview of LAMMPS output options.
+specified, otherwise a global array is output. The number of columns in
+the array is the number of inputs provided. The length of the vector or
+the number of vector elements or array rows = the number of chunks
+*Nchunk* as calculated by the specified :doc:`compute chunk/atom
+` command. The vector or array can be accessed by
+any command that uses global values from a compute as input. See the
+:doc:`Howto output ` page for an overview of LAMMPS output
+options.
The per-atom values for the vector or each column of the array will be
in whatever :doc:`units ` the corresponding input value is in.
@@ -183,7 +186,9 @@ Restrictions
Related commands
""""""""""""""""
-:doc:`compute chunk/atom `, :doc:`compute reduce `, :doc:`compute chunk/spread/atom `
+:doc:`compute chunk/atom `,
+:doc:`compute reduce `,
+:doc:`compute chunk/spread/atom `
Default
"""""""
diff --git a/doc/src/compute_rheo_property_atom.rst b/doc/src/compute_rheo_property_atom.rst
index 2e905b97be..8686a0dec2 100644
--- a/doc/src/compute_rheo_property_atom.rst
+++ b/doc/src/compute_rheo_property_atom.rst
@@ -81,7 +81,7 @@ includes *xx*, *xy*, *yx*, and *yy*. In 3D, this includes *xx*, *xy*, *xz*,
Many properties require their respective fixes, listed below in related
commands, be defined. For instance, the *viscosity* attribute is the
viscosity of a particle calculated by
-:doc:`fix rheo/viscous `. The meaning of less obvious
+:doc:`fix rheo/viscosity `. The meaning of less obvious
properties is described below.
The *phase* property indicates whether the particle is in a fluid state,
diff --git a/doc/src/compute_stress_mop.rst b/doc/src/compute_stress_mop.rst
index b4779b8bf3..31c81b5df7 100644
--- a/doc/src/compute_stress_mop.rst
+++ b/doc/src/compute_stress_mop.rst
@@ -129,6 +129,9 @@ package ` doc page on for more info.
The method is implemented for orthogonal simulation boxes whose
size does not change in time, and axis-aligned planes.
+Contributions from bonds, angles, and dihedrals are not compatible
+with MPI parallel runs.
+
The method only works with two-body pair interactions, because it
requires the class method ``Pair::single()`` to be implemented, which is
not possible for manybody potentials. In particular, compute
diff --git a/doc/src/compute_temp_deform.rst b/doc/src/compute_temp_deform.rst
index 1c8c2da096..abeb7041cc 100644
--- a/doc/src/compute_temp_deform.rst
+++ b/doc/src/compute_temp_deform.rst
@@ -128,6 +128,12 @@ See the :doc:`Howto thermostat ` page for a
discussion of different ways to compute temperature and perform
thermostatting.
+----------
+
+.. include:: accel_styles.rst
+
+----------
+
Output info
"""""""""""
diff --git a/doc/src/compute_temp_partial.rst b/doc/src/compute_temp_partial.rst
index d98558c159..b6803f2c9c 100644
--- a/doc/src/compute_temp_partial.rst
+++ b/doc/src/compute_temp_partial.rst
@@ -46,7 +46,7 @@ degrees of freedom.
A symmetric tensor, stored as a six-element vector, is also calculated
by this compute for use in the computation of a pressure tensor by the
-:doc:`compute pressue ` command. The formula for
+:doc:`compute pressure ` command. The formula for
the components of the tensor is the same as the above expression for
:math:`E_\mathrm{kin}`, except that the 1/2 factor is NOT included and
the :math:`v_i^2` is replaced by :math:`v_{i,x} v_{i,y}` for the
@@ -82,12 +82,6 @@ See the :doc:`Howto thermostat ` page for a
discussion of different ways to compute temperature and perform
thermostatting.
-----------
-
-.. include:: accel_styles.rst
-
-----------
-
Output info
"""""""""""
diff --git a/doc/src/computes.rst b/doc/src/computes.rst
deleted file mode 100644
index 8d53b6cf06..0000000000
--- a/doc/src/computes.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Computes
-########
-
-.. toctree::
- :maxdepth: 1
- :glob:
-
- compute_*
diff --git a/doc/src/dihedrals.rst b/doc/src/dihedrals.rst
deleted file mode 100644
index f56e323427..0000000000
--- a/doc/src/dihedrals.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Dihedral Styles
-###############
-
-.. toctree::
- :maxdepth: 1
- :glob:
-
- dihedral_*
diff --git a/doc/src/fix.rst b/doc/src/fix.rst
index 4f4564719b..bd89dd7f59 100644
--- a/doc/src/fix.rst
+++ b/doc/src/fix.rst
@@ -358,6 +358,7 @@ accelerated styles exist.
* :doc:`python/move ` - move particles using a Python function during a simulation run
* :doc:`qbmsst ` - quantum bath multi-scale shock technique time integrator
* :doc:`qeq/comb ` - charge equilibration for COMB potential
+* :doc:`qeq/ctip ` - charge equilibration for CTIP potential
* :doc:`qeq/dynamic ` - charge equilibration via dynamic method
* :doc:`qeq/fire ` - charge equilibration via FIRE minimizer
* :doc:`qeq/point ` - charge equilibration via point method
diff --git a/doc/src/fix_adapt.rst b/doc/src/fix_adapt.rst
index 1943798160..1b5282f741 100644
--- a/doc/src/fix_adapt.rst
+++ b/doc/src/fix_adapt.rst
@@ -322,25 +322,33 @@ all types from 1 to :math:`N`. A leading asterisk means all types from
If :doc:`bond_style hybrid ` is used, *bstyle* should be a
sub-style name. The bond styles that currently work with fix adapt are:
-+---------------------------------------------------+------------+------------+
-| :doc:`class2 ` | r0 | type bonds |
-+---------------------------------------------------+------------+------------+
-| :doc:`fene ` | k,r0 | type bonds |
-+---------------------------------------------------+------------+------------+
-| :doc:`fene/nm ` | k,r0 | type bonds |
-+---------------------------------------------------+------------+------------+
-| :doc:`gromos ` | k,r0 | type bonds |
-+---------------------------------------------------+------------+------------+
-| :doc:`harmonic ` | k,r0 | type bonds |
-+---------------------------------------------------+------------+------------+
-| :doc:`harmonic/shift ` | k,r0,r1 | type bonds |
-+---------------------------------------------------+------------+------------+
-| :doc:`harmonic/restrain ` | k | type bonds |
-+---------------------------------------------------+------------+------------+
-| :doc:`morse ` | r0 | type bonds |
-+---------------------------------------------------+------------+------------+
-| :doc:`nonlinear ` | epsilon,r0 | type bonds |
-+---------------------------------------------------+------------+------------+
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`class2 ` | k2,k3,k4,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`fene ` | k,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`fene/expand ` | k,r0,epsilon,sigma,shift | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`fene/nm ` | k,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`gaussian ` | alpha,width,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`gromos ` | k,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`harmonic ` | k,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`harmonic/restrain ` | k | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`harmonic/shift ` | k,r0,r1 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`harmonic/shift/cut ` | k,r0,r1 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`mm3 ` | k,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`morse ` | d0,alpha,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
+| :doc:`nonlinear ` | lamda,epsilon,r0 | type bonds |
++-----------------------------------------------------+---------------------------+------------+
----------
@@ -363,11 +371,37 @@ all types from 1 to :math:`N`. A leading asterisk means all types from
If :doc:`angle_style hybrid ` is used, *astyle* should be a
sub-style name. The angle styles that currently work with fix adapt are:
-+------------------------------------+----------+-------------+
-| :doc:`harmonic ` | k,theta0 | type angles |
-+------------------------------------+----------+-------------+
-| :doc:`cosine ` | k | type angles |
-+------------------------------------+----------+-------------+
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`harmonic ` | k,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`charmm ` | k,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`class2 ` | k2,k3,k4,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`cosine ` | k | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`cosine/delta ` | k | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`cosine/periodic ` | k,b,n | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`cosine/squared ` | k,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`cosine/squared/restricted ` | k,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`dipole ` | k,gamma0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`fourier ` | k,c0,c1,c2 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`fourier/simple ` | k,c,n | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`gaussian ` | alpha,width,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`mm3 ` | k,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`quartic ` | k2,k3,k4,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
+| :doc:`spica ` | k,theta0 | type angles |
++--------------------------------------------------------------------+--------------------+-------------+
Note that internally, theta0 is stored in radians, so the variable
this fix uses to reset theta0 needs to generate values in radians.
diff --git a/doc/src/fix_addforce.rst b/doc/src/fix_addforce.rst
index 68a32695b7..2813270307 100644
--- a/doc/src/fix_addforce.rst
+++ b/doc/src/fix_addforce.rst
@@ -115,10 +115,6 @@ correctly, the minimization will not converge properly.
----------
-.. include:: accel_styles.rst
-
-----------
-
Restart, fix_modify, output, run start/stop, minimize info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/fix_atom_swap.rst b/doc/src/fix_atom_swap.rst
index 48f5b33a74..fd4a2f7245 100644
--- a/doc/src/fix_atom_swap.rst
+++ b/doc/src/fix_atom_swap.rst
@@ -119,15 +119,14 @@ groups of atoms that have different charges, these charges will not be
changed when the atom types change.
Since this fix computes total potential energies before and after
-proposed swaps, so even complicated potential energy calculations are
-OK, including the following:
+proposed swaps, even complicated potential energy calculations are
+acceptable, including the following:
* long-range electrostatics (:math:`k`-space)
* many body pair styles
-* hybrid pair styles
-* eam pair styles
+* hybrid pair styles (with restrictions)
+* EAM pair styles
* triclinic systems
-* need to include potential energy contributions from other fixes
Some fixes have an associated potential energy. Examples of such fixes
include: :doc:`efield `, :doc:`gravity `,
@@ -181,6 +180,10 @@ This fix is part of the MC package. It is only enabled if LAMMPS was
built with that package. See the :doc:`Build package `
doc page for more info.
+When this fix is used with a :doc:`hybrid pair style `
+system, only swaps between atom types of the same sub-style (or
+combination of sub-styles) are permitted.
+
This fix cannot be used with systems that do not have per-type masses
(e.g. atom style sphere) since the implemented algorithm pre-computes
velocity rescaling factors from per-type masses and ignores any per-atom
diff --git a/doc/src/fix_aveforce.rst b/doc/src/fix_aveforce.rst
index ea535697f4..36f53ef571 100644
--- a/doc/src/fix_aveforce.rst
+++ b/doc/src/fix_aveforce.rst
@@ -71,10 +71,6 @@ to it.
----------
-.. include:: accel_styles.rst
-
-----------
-
Restart, fix_modify, output, run start/stop, minimize info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/fix_gcmc.rst b/doc/src/fix_gcmc.rst
index e6037af586..beb36fbafd 100644
--- a/doc/src/fix_gcmc.rst
+++ b/doc/src/fix_gcmc.rst
@@ -50,8 +50,8 @@ Syntax
*intra_energy* value = intramolecular energy (energy units)
*tfac_insert* value = scale up/down temperature of inserted atoms (unitless)
*overlap_cutoff* value = maximum pair distance for overlap rejection (distance units)
- *max* value = Maximum number of molecules allowed in the system
- *min* value = Minimum number of molecules allowed in the system
+ *max* value = Maximum number of atoms allowed in the fix group (and region)
+ *min* value = Minimum number of atoms allowed in the fix group (and region)
Examples
""""""""
@@ -380,10 +380,11 @@ an infinite positive energy to all new configurations that place any
pair of atoms closer than the specified overlap cutoff distance.
The *max* and *min* keywords allow for the restriction of the number of
-atoms in the simulation. They automatically reject all insertion or
-deletion moves that would take the system beyond the set boundaries.
-Should the system already be beyond the boundary, only moves that bring
-the system closer to the bounds may be accepted.
+atoms in the fix group (and region in case the *region* keyword is
+used). They automatically reject all insertion or deletion moves that
+would take the system beyond the set boundaries. Should the system
+already be beyond the boundary, only moves that bring the system closer
+to the bounds may be accepted.
The *group* keyword adds all inserted atoms to the :doc:`group `
of the group-ID value. The *grouptype* keyword adds all inserted atoms
diff --git a/doc/src/fix_halt.rst b/doc/src/fix_halt.rst
index 25331804aa..0bcf2fb5ea 100644
--- a/doc/src/fix_halt.rst
+++ b/doc/src/fix_halt.rst
@@ -101,7 +101,7 @@ hstyle = bondmax option.
.. code-block:: LAMMPS
compute bdist all bond/local dist
- compute bmax all reduce max c_bdist
+ compute bmax all reduce max c_bdist inputs local
variable bondmax equal c_bmax
Thus these two versions of a fix halt command will do the same thing:
diff --git a/doc/src/fix_langevin.rst b/doc/src/fix_langevin.rst
index e04805427e..30e4c48270 100644
--- a/doc/src/fix_langevin.rst
+++ b/doc/src/fix_langevin.rst
@@ -231,12 +231,6 @@ the particles. As described below, this energy can then be printed
out or added to the potential energy of the system to monitor energy
conservation.
-.. note::
-
- This accumulated energy does NOT include kinetic energy removed
- by the *zero* flag. LAMMPS will print a warning when both options are
- active.
-
The keyword *zero* can be used to eliminate drift due to the
thermostat. Because the random forces on different atoms are
independent, they do not sum exactly to zero. As a result, this fix
diff --git a/doc/src/fix_nonaffine_displacement.rst b/doc/src/fix_nonaffine_displacement.rst
index fd9830cc48..5fdd3ae772 100644
--- a/doc/src/fix_nonaffine_displacement.rst
+++ b/doc/src/fix_nonaffine_displacement.rst
@@ -102,7 +102,6 @@ zeroed. The *update* reference style implies the reference state will be updated
*nstep* timesteps. The *offset* reference will update the reference state *nstep*
timesteps before a multiple of *nevery* timesteps.
-
----------
Restart, fix_modify, output, run start/stop, minimize info
@@ -129,6 +128,12 @@ This compute is part of the EXTRA-FIX package. It is only enabled if
LAMMPS was built with that package. See the
:doc:`Build package ` page for more info.
+As this fix depends on a run including specific reference timesteps, it
+currently does not update peratom values if used in conjunction with the
+:doc:`rerun command ` since it cannot ensure the necessary reference
+timesteps are included.
+
+
Related commands
""""""""""""""""
diff --git a/doc/src/fix_nph_body.rst b/doc/src/fix_nph_body.rst
index 9ee0bd7669..4cc6084ad1 100644
--- a/doc/src/fix_nph_body.rst
+++ b/doc/src/fix_nph_body.rst
@@ -79,8 +79,6 @@ It also means that changing attributes of *thermo_temp* or
----------
-.. include:: accel_styles.rst
-
Restart, fix_modify, output, run start/stop, minimize info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/fix_npt_body.rst b/doc/src/fix_npt_body.rst
index 31ef1653b8..b1a7e56fe4 100644
--- a/doc/src/fix_npt_body.rst
+++ b/doc/src/fix_npt_body.rst
@@ -103,8 +103,6 @@ remaining thermal degrees of freedom, and the bias is added back in.
----------
-.. include:: accel_styles.rst
-
Restart, fix_modify, output, run start/stop, minimize info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/fix_nvt_body.rst b/doc/src/fix_nvt_body.rst
index 4397159515..c3275a0e00 100644
--- a/doc/src/fix_nvt_body.rst
+++ b/doc/src/fix_nvt_body.rst
@@ -85,8 +85,6 @@ remaining thermal degrees of freedom, and the bias is added back in.
----------
-.. include:: accel_styles.rst
-
Restart, fix_modify, output, run start/stop, minimize info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/fix_pour.rst b/doc/src/fix_pour.rst
index 3b4bb5c723..7986929745 100644
--- a/doc/src/fix_pour.rst
+++ b/doc/src/fix_pour.rst
@@ -155,6 +155,22 @@ many timesteps until the desired # of particles has been inserted.
the :doc:`compute_modify dynamic/dof yes ` command
for the temperature compute you are using.
+.. admonition:: Implementation Notes
+ :class: Hint
+
+ The exact insertion procedure depends on many factors (e.g. the range of
+ diameters inserted or whether molecules are being inserted). However, in
+ the simplest scenario of monodisperse atoms, the procedure works as
+ follows. First, the number of timesteps between two insertion events is
+ calculated as the time for a particle to fall through the insertion region,
+ accounting for gravity and any region motion. Next, the target number of
+ particles inserted per event (assuming no failed insertions due to overlaps)
+ is calculated as the product of the volume fraction and the volume of the
+ insertion region divided by the volume of a particle (or area in 2D).
+ Events are repeated until all N particles have been inserted, where
+ the final event is likely interrupted upon reaching N. Estimates of this
+ process are printed to the log/screen at the start of a run.
+
----------
All other keywords are optional with defaults as shown below.
diff --git a/doc/src/fix_qeq.rst b/doc/src/fix_qeq.rst
index f353e9a998..fd317666d0 100644
--- a/doc/src/fix_qeq.rst
+++ b/doc/src/fix_qeq.rst
@@ -1,6 +1,7 @@
.. index:: fix qeq/point
.. index:: fix qeq/shielded
.. index:: fix qeq/slater
+.. index:: fix qeq/ctip
.. index:: fix qeq/dynamic
.. index:: fix qeq/fire
@@ -13,6 +14,9 @@ fix qeq/shielded command
fix qeq/slater command
======================
+fix qeq/ctip command
+====================
+
fix qeq/dynamic command
=======================
@@ -27,18 +31,20 @@ Syntax
fix ID group-ID style Nevery cutoff tolerance maxiter qfile keyword ...
* ID, group-ID are documented in :doc:`fix ` command
-* style = *qeq/point* or *qeq/shielded* or *qeq/slater* or *qeq/dynamic* or *qeq/fire*
+* style = *qeq/point* or *qeq/shielded* or *qeq/slater* or *qeq/ctip* or *qeq/dynamic* or *qeq/fire*
* Nevery = perform charge equilibration every this many steps
* cutoff = global cutoff for charge-charge interactions (distance unit)
* tolerance = precision to which charges will be equilibrated
* maxiter = maximum iterations to perform charge equilibration
-* qfile = a filename with QEq parameters or *coul/streitz* or *reaxff*
+* qfile = a filename with QEq parameters or *coul/streitz* or *coul/ctip* or *reaxff*
* zero or more keyword/value pairs may be appended
-* keyword = *alpha* or *qdamp* or *qstep* or *warn*
+* keyword = *alpha* or *cdamp* or *maxrepeat* or *qdamp* or *qstep* or *warn*
.. parsed-literal::
*alpha* value = Slater type orbital exponent (qeq/slater only)
+ *cdamp* value = damping parameter for Coulomb interactions (qeq/ctip only)
+ *maxrepeat* value = number of equilibration cycles allowed to ensure no atoms cross charge bounds (qeq/ctip only)
*qdamp* value = damping factor for damped dynamics charge solver (qeq/dynamic and qeq/fire only)
*qstep* value = time step size for damped dynamics charge solver (qeq/dynamic and qeq/fire only)
*warn* value = do (=yes) or do not (=no) print a warning when the maximum number of iterations is reached
@@ -51,6 +57,7 @@ Examples
fix 1 all qeq/point 1 10 1.0e-6 200 param.qeq1
fix 1 qeq qeq/shielded 1 8 1.0e-6 100 param.qeq2
fix 1 all qeq/slater 5 10 1.0e-6 100 params alpha 0.2
+ fix 1 all qeq/ctip 1 12 1.0e-8 100 coul/ctip cdamp 0.30 maxrepeat 10
fix 1 qeq qeq/dynamic 1 12 1.0e-3 100 my_qeq
fix 1 all qeq/fire 1 10 1.0e-3 100 my_qeq qdamp 0.2 qstep 0.1
@@ -103,7 +110,7 @@ equalizes the derivative of energy with respect to charge of all the
atoms) by adjusting the partial charge on individual atoms based on
interactions with their neighbors within *cutoff*\ . It requires a few
parameters in the appropriate units for each atom type which are read
-from a file specified by *qfile*\ . The file has the following format
+from a file specified by *qfile*\ . The file has the following format:
.. parsed-literal::
@@ -112,20 +119,32 @@ from a file specified by *qfile*\ . The file has the following format
...
Ntype chi eta gamma zeta qcore
+except for fix style *qeq/ctip* where the format is:
+
+.. parsed-literal::
+
+ 1 chi eta gamma zeta qcore qmin qmax omega
+ 2 chi eta gamma zeta qcore qmin qmax omega
+ ...
+ Ntype chi eta gamma zeta qcore qmin qmax omega
+
There have to be parameters given for every atom type. Wildcard entries
are possible using the same type range syntax as for "coeff" commands
(i.e., n\*m, n\*, \*m, \*). Later entries will overwrite previous ones.
-Empty lines or any text following the pound sign (#) are ignored.
-Each line starts with the atom type followed by five parameters.
-Only a subset of the parameters is used by each QEq style as described
-below, thus the others can be set to 0.0 if desired, but all five
-entries per line are required.
+Empty lines or any text following the pound sign (#) are ignored. Each
+line starts with the atom type followed by eight parameters. Only a
+subset of the parameters is used by each QEq style as described below,
+thus the others can be set to 0.0 if desired, but all eight entries per
+line are required.
* *chi* = electronegativity in energy units
* *eta* = self-Coulomb potential in energy units
* *gamma* = shielded Coulomb constant defined by :ref:`ReaxFF force field ` in distance units
* *zeta* = Slater type orbital exponent defined by the :ref:`Streitz-Mintmire ` potential in reverse distance units
* *qcore* = charge of the nucleus defined by the :ref:`Streitz-Mintmire potential ` potential in charge units
+* *qmin* = lower bound on the allowed charge defined by the :ref:`CTIP ` potential in charge units
+* *qmax* = upper bound on the allowed charge defined by the :ref:`CTIP ` potential in charge units
+* *omega* = penalty parameter used to enforce charge bounds defined by the :ref:`CTIP ` potential in energy units
The fix qeq styles will print a warning if the charges are not
equilibrated within *tolerance* by *maxiter* steps, unless the
@@ -171,6 +190,22 @@ on atoms via the matrix inversion method. A tolerance of 1.0e-6 is
usually a good number. Keyword *alpha* can be used to change the Slater
type orbital exponent.
+.. versionadded:: TBD
+
+The *qeq/ctip* style describes partial charges on atoms in the same way
+as style *qeq/shielded* but also enables the definition of charge
+bounds. Only the *chi*, *eta*, *gamma*, *qmin*, *qmax*, and *omega*
+parameters from the *qfile* file are used. When using the string
+*coul/ctip* as filename, these parameters are extracted directly from an
+active *coul/ctip* pair style. This style solves partial charges on
+atoms via the matrix inversion method. Keyword *cdamp* can be used to
+change the damping parameter used to calculate Coulomb interactions.
+Keyword *maxrepeat* can be used to adjust the number of equilibration
+cycles allowed to ensure no atoms have crossed the charge bounds. A
+value of 10 is usually a good choice. A tolerance between 1.0e-6 and
+1.0e-8 is usually a good choice but should be checked in conjunction
+with the timestep for adequate energy conservation during dynamic runs.
+
The *qeq/dynamic* style describes partial charges on atoms as point
charges that interact through 1/r, but the extended Lagrangian method is
used to solve partial charges on atoms. Only the *chi* and *eta*
@@ -186,7 +221,7 @@ minimization algorithm to solve for equilibrium charges. Keyword
*qdamp* can be used to change the damping factor, while keyword *qstep*
can be used to change the time step size.
-Note that *qeq/point*, *qeq/shielded*, and *qeq/slater* describe
+Note that *qeq/point*, *qeq/shielded*, *qeq/slater*, and *qeq/ctip* describe
different charge models, whereas the matrix inversion method and the
extended Lagrangian method (\ *qeq/dynamic* and *qeq/fire*\ ) are
different solvers.
@@ -266,6 +301,11 @@ Chemistry, 95, 3358-3363 (1991).
**(Streitz-Mintmire)** F. H. Streitz, J. W. Mintmire, Physical Review B, 50,
16, 11996 (1994)
+.. _CTIP1:
+
+**(CTIP)** G. Plummer, J. P. Tavenner, M. I. Mendelev, Z. Wu, J. W. Lawson,
+in preparation
+
.. _vanDuin:
**(ReaxFF)** A. C. T. van Duin, S. Dasgupta, F. Lorant, W. A. Goddard III, J
diff --git a/doc/src/fix_rheo.rst b/doc/src/fix_rheo.rst
index 2977662238..eb88ef0536 100644
--- a/doc/src/fix_rheo.rst
+++ b/doc/src/fix_rheo.rst
@@ -16,8 +16,7 @@ Syntax
* kstyle = *quintic* or *RK0* or *RK1* or *RK2*
* zmin = minimal number of neighbors for reproducing kernels
* zero or more keyword/value pairs may be appended to args
-* keyword = *thermal* or *interface/reconstruct* or *surface/detection* or
- *shift* or *rho/sum* or *density* or *self/mass* or *speed/sound*
+* keyword = *thermal* or *interface/reconstruct* or *surface/detection* or *shift* or *rho/sum* or *density* or *self/mass* or *speed/sound*
.. parsed-literal::
diff --git a/doc/src/fix_wall_flow.rst b/doc/src/fix_wall_flow.rst
index d498e57c63..ce2f204616 100644
--- a/doc/src/fix_wall_flow.rst
+++ b/doc/src/fix_wall_flow.rst
@@ -123,6 +123,12 @@ also be potentially mitigated by using more multiple walls.
conservative as possible (every timestep if needed). Those are the
default settings.
+----------
+
+.. include:: accel_styles.rst
+
+----------
+
Restart, fix_modify, output, run start/stop, minimize info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/fixes.rst b/doc/src/fixes.rst
deleted file mode 100644
index eb0215e310..0000000000
--- a/doc/src/fixes.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Fixes
-#####
-
-.. toctree::
- :maxdepth: 1
- :glob:
-
- fix_*
diff --git a/doc/src/group.rst b/doc/src/group.rst
index 15ab0c9dc8..a7a29467ff 100644
--- a/doc/src/group.rst
+++ b/doc/src/group.rst
@@ -162,7 +162,7 @@ potential energy is above the threshold value :math:`-3.0`.
compute 1 all pe/atom
compute 2 all reduce sum c_1
thermo_style custom step temp pe c_2
- run 0
+ run 0 post no
variable eatom atom "c_1 > -3.0"
group hienergy variable eatom
@@ -173,7 +173,7 @@ Note that these lines
compute 2 all reduce sum c_1
thermo_style custom step temp pe c_2
- run 0
+ run 0 post no
are necessary to ensure that the "eatom" variable is current when the
group command invokes it. Because the eatom variable computes the
diff --git a/doc/src/impropers.rst b/doc/src/impropers.rst
deleted file mode 100644
index a6653fde7d..0000000000
--- a/doc/src/impropers.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Improper Styles
-###############
-
-.. toctree::
- :maxdepth: 1
- :glob:
-
- improper_*
diff --git a/doc/src/min_style.rst b/doc/src/min_style.rst
index b89ae6d398..bbf5236885 100644
--- a/doc/src/min_style.rst
+++ b/doc/src/min_style.rst
@@ -3,6 +3,8 @@
min_style cg command
====================
+Accelerator Variant: *cg/kk*
+
min_style hftn command
======================
diff --git a/doc/src/pair_bpm_spring.rst b/doc/src/pair_bpm_spring.rst
index 7dfa9bc12c..068efff577 100644
--- a/doc/src/pair_bpm_spring.rst
+++ b/doc/src/pair_bpm_spring.rst
@@ -8,7 +8,14 @@ Syntax
.. code-block:: LAMMPS
- pair_style bpm/spring
+ pair_style bpm/spring keyword value ...
+
+* optional keyword = *anharmonic*
+
+ .. parsed-literal::
+
+ *anharmonic* value = *yes* or *no*
+ whether forces include the anharmonic term
Examples
""""""""
@@ -17,7 +24,8 @@ Examples
pair_style bpm/spring
pair_coeff * * 1.0 1.0 1.0
- pair_coeff 1 1 1.0 1.0 1.0
+ pair_style bpm/spring anharmonic yes
+ pair_coeff 1 1 1.0 1.0 1.0 50.0
Description
"""""""""""
@@ -28,12 +36,16 @@ Style *bpm/spring* computes pairwise forces with the formula
.. math::
- F = k (r - r_c)
+ F = k (r - r_c) + k_a (r - r_c)^3
-where :math:`k` is a stiffness and :math:`r_c` is the cutoff length.
-An additional damping force is also applied to interacting
-particles. The force is proportional to the difference in the
-normal velocity of particles
+where :math:`k` is a stiffness, :math:`r_c` is the cutoff
+length, and :math:`k_a` is an optional anharmonic cubic prefactor
+that can be enabled using the *anharmonic* keyword. The anharmonic
+term may be useful in scenarios that need to prevent large particle overlap.
+
+An additional damping force is also applied to interacting particles.
+The force is proportional to the difference in the normal velocity of
+particles
.. math::
@@ -73,6 +85,12 @@ commands, or by mixing as described below:
* :math:`r_c` (distance units)
* :math:`\gamma` (force/velocity units)
+.. versionadded:: TBD
+
+Additionally, if *anharmonic* is set to *yes*, a fourth coefficient
+must be provided:
+
+* :math:`k_a` (force/distance\^3 units)
----------
@@ -117,4 +135,5 @@ Related commands
Default
"""""""
-none
+The option defaults are *anharmonic* = *no*
+
diff --git a/doc/src/pair_brownian.rst b/doc/src/pair_brownian.rst
index 9fec789ba0..a740952a5c 100644
--- a/doc/src/pair_brownian.rst
+++ b/doc/src/pair_brownian.rst
@@ -1,12 +1,13 @@
.. index:: pair_style brownian
.. index:: pair_style brownian/omp
+.. index:: pair_style brownian/kk
.. index:: pair_style brownian/poly
.. index:: pair_style brownian/poly/omp
pair_style brownian command
===========================
-Accelerator Variants: *brownian/omp*
+Accelerator Variants: *brownian/omp*, *brownian/kk*
pair_style brownian/poly command
================================
diff --git a/doc/src/pair_coul.rst b/doc/src/pair_coul.rst
index e8f09515b0..17e9358754 100644
--- a/doc/src/pair_coul.rst
+++ b/doc/src/pair_coul.rst
@@ -4,6 +4,7 @@
.. index:: pair_style coul/cut/omp
.. index:: pair_style coul/cut/global
.. index:: pair_style coul/cut/global/omp
+.. index:: pair_style coul/ctip
.. index:: pair_style coul/debye
.. index:: pair_style coul/debye/gpu
.. index:: pair_style coul/debye/kk
@@ -38,6 +39,9 @@ pair_style coul/cut/global command
Accelerator Variants: *coul/cut/omp*
+pair_style coul/ctip command
+============================
+
pair_style coul/debye command
=============================
@@ -79,7 +83,6 @@ pair_style tip4p/long command
Accelerator Variants: *tip4p/long/omp*
-
Syntax
""""""
@@ -87,6 +90,7 @@ Syntax
pair_style coul/cut cutoff
pair_style coul/cut/global cutoff
+ pair_style coul/ctip alpha cutoff
pair_style coul/debye kappa cutoff
pair_style coul/dsf alpha cutoff
pair_style coul/exclude cutoff
@@ -116,6 +120,9 @@ Examples
pair_coeff * *
pair_coeff 2 2 3.5
+ pair_style coul/ctip 0.30 12.0
+ pair_coeff * * NiO.ctip Ni O
+
pair_style coul/debye 1.4 3.0
pair_coeff * *
pair_coeff 2 2 3.5
@@ -173,6 +180,33 @@ coulomb styles in :doc:`hybrid pair styles `.
----------
+.. versionadded:: TBD
+
+Style *coul/ctip* computes the Coulomb interactions as described in
+:ref:`Plummer `. It uses the the damped shifted model as in
+style *coul/dsf* but is further extended to the second derivative of the
+potential and incorporates empirical charge shielding meant to
+approximate the more expensive Coulomb integrals used in style
+*coul/streitz*. More details can be found in the referenced paper. Like
+the style *coul/streitz*, style *coul/ctip* is a variable charge
+potential and must be hybridized with a short-range potential via the
+:doc:`pair_style hybrid/overlay ` command. Charge
+equilibration must be performed with the :doc:`fix qeq/ctip `
+command. For example:
+
+.. code-block:: LAMMPS
+
+ pair_style hybrid/overlay eam/fs coul/ctip 0.30 12.0
+ pair_coeff * * eam/fs NiO.eam.fs Ni O
+ pair_coeff * * coul/ctip NiO.ctip Ni O
+ fix 1 all qeq/ctip 1 12.0 1.0e-8 100 coul/ctip cdamp 0.30 maxrepeat 10
+
+See the examples/ctip directory for an example input script using the
+CTIP potential. An Ni-O CTIP and EAM/FS parameterization are included
+for use with the example.
+
+----------
+
Style *coul/debye* adds an additional exp() damping factor to the
Coulombic term, given by
@@ -399,16 +433,18 @@ Restrictions
""""""""""""
The *coul/long*, *coul/msm*, *coul/streitz*, and *tip4p/long* styles are
-part of the KSPACE package. The *coul/cut/global*, *coul/exclude* styles are
-part of the EXTRA-PAIR package. The *tip4p/cut* style is part of the MOLECULE
-package. A pair style is only enabled if LAMMPS was built with its
-corresponding package. See the :doc:`Build package `
-doc page for more info.
+part of the KSPACE package. The *coul/cut/global*, *coul/exclude*, and
+*coul/ctip* styles are part of the EXTRA-PAIR package. The *tip4p/cut*
+style is part of the MOLECULE package. A pair style is only enabled if
+LAMMPS was built with its corresponding package. See the
+:doc:`Build package ` page for more info.
Related commands
""""""""""""""""
-:doc:`pair_coeff `, :doc:`pair_style, hybrid/overlay `, :doc:`kspace_style `
+:doc:`pair_coeff `,
+:doc:`pair_style hybrid/overlay `,
+:doc:`kspace_style `
Default
"""""""
@@ -432,6 +468,11 @@ Phys, 110, 8254 (1999).
**(Streitz)** F. H. Streitz, J. W. Mintmire, Phys Rev B, 50, 11996-12003
(1994).
+.. _Plummer1:
+
+**(Plummer)** G. Plummer, J. P. Tavenner, M. I. Mendelev, Z. Wu, J. W. Lawson,
+in preparation
+
.. _Jorgensen3:
**(Jorgensen)** Jorgensen, Chandrasekhar, Madura, Impey, Klein, J Chem
diff --git a/doc/src/pair_coul_diel.rst b/doc/src/pair_coul_diel.rst
index 77c00c633a..5b5b5f3501 100644
--- a/doc/src/pair_coul_diel.rst
+++ b/doc/src/pair_coul_diel.rst
@@ -71,6 +71,10 @@ The global cutoff (:math:`r_c`) specified in the pair_style command is used.
----------
+.. include:: accel_styles.rst
+
+----------
+
Mixing, shift, table, tail correction, restart, rRESPA info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/pair_coul_slater.rst b/doc/src/pair_coul_slater.rst
index 7abc1f8b07..7af1ec42c6 100644
--- a/doc/src/pair_coul_slater.rst
+++ b/doc/src/pair_coul_slater.rst
@@ -77,6 +77,10 @@ The global decay length of the charge (:math:`\lambda`) specified in the pair_st
----------
+.. include:: accel_styles.rst
+
+----------
+
Mixing, shift, table, tail correction, restart, rRESPA info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/pair_granular.rst b/doc/src/pair_granular.rst
index f061331497..e0f15ccd62 100644
--- a/doc/src/pair_granular.rst
+++ b/doc/src/pair_granular.rst
@@ -741,10 +741,6 @@ atom types.
----------
-.. include:: accel_styles.rst
-
-----------
-
Mixing, shift, table, tail correction, restart, rRESPA info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/pair_mesodpd.rst b/doc/src/pair_mesodpd.rst
index 28a398754f..6674b013ba 100644
--- a/doc/src/pair_mesodpd.rst
+++ b/doc/src/pair_mesodpd.rst
@@ -287,6 +287,10 @@ concentration profiles of the two chemical species as
----------
+.. include:: accel_styles.rst
+
+----------
+
Mixing, shift, table, tail correction, restart, rRESPA info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/pair_mie.rst b/doc/src/pair_mie.rst
index 6e9eec1f5c..0a0e1d9c32 100644
--- a/doc/src/pair_mie.rst
+++ b/doc/src/pair_mie.rst
@@ -62,6 +62,10 @@ cutoff specified in the pair_style command is used.
----------
+.. include:: accel_styles.rst
+
+----------
+
Mixing, shift, table, tail correction, restart, rRESPA info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/pair_sph_heatconduction.rst b/doc/src/pair_sph_heatconduction.rst
index e9004cb5a4..33472b64c7 100644
--- a/doc/src/pair_sph_heatconduction.rst
+++ b/doc/src/pair_sph_heatconduction.rst
@@ -39,6 +39,10 @@ above.
----------
+.. include:: accel_styles.rst
+
+----------
+
Mixing, shift, table, tail correction, restart, rRESPA info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/pair_sph_lj.rst b/doc/src/pair_sph_lj.rst
index 5ac7ab9c6b..4dbccc41de 100644
--- a/doc/src/pair_sph_lj.rst
+++ b/doc/src/pair_sph_lj.rst
@@ -43,6 +43,10 @@ above.
----------
+.. include:: accel_styles.rst
+
+----------
+
Mixing, shift, table, tail correction, restart, rRESPA info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/pair_sph_taitwater.rst b/doc/src/pair_sph_taitwater.rst
index 79972660c4..f25b69a969 100644
--- a/doc/src/pair_sph_taitwater.rst
+++ b/doc/src/pair_sph_taitwater.rst
@@ -52,6 +52,10 @@ above.
----------
+.. include:: accel_styles.rst
+
+----------
+
Mixing, shift, table, tail correction, restart, rRESPA info
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
diff --git a/doc/src/pair_style.rst b/doc/src/pair_style.rst
index 51350c86a4..fc2ed2b9a9 100644
--- a/doc/src/pair_style.rst
+++ b/doc/src/pair_style.rst
@@ -151,6 +151,7 @@ accelerated styles exist.
* :doc:`comb ` - charge-optimized many-body (COMB) potential
* :doc:`comb3 ` - charge-optimized many-body (COMB3) potential
* :doc:`cosine/squared ` - Cooke-Kremer-Deserno membrane model potential
+* :doc:`coul/ctip ` - Charge Transfer Interatomic (Coulomb) Potential
* :doc:`coul/cut ` - cutoff Coulomb potential
* :doc:`coul/cut/dielectric ` -
* :doc:`coul/cut/global ` - cutoff Coulomb potential
diff --git a/doc/src/pairs.rst b/doc/src/pairs.rst
deleted file mode 100644
index b764c74cc7..0000000000
--- a/doc/src/pairs.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Pair Styles
-###########
-
-.. toctree::
- :maxdepth: 1
- :glob:
-
- pair_*
diff --git a/doc/src/read_dump.rst b/doc/src/read_dump.rst
index 59d6cca78d..7f0e5bee42 100644
--- a/doc/src/read_dump.rst
+++ b/doc/src/read_dump.rst
@@ -115,10 +115,11 @@ to tell LAMMPS how many parallel files exist, via its specified
The format of the dump file is selected through the *format* keyword.
If specified, it must be the last keyword used, since all remaining
-arguments are passed on to the dump reader. The *native* format is
-for native LAMMPS dump files, written with a :doc:`dump atom `
-or :doc:`dump custom ` command. The *xyz* format is for generic XYZ
-formatted dump files. These formats take no additional values.
+arguments are passed on to the dump reader. The *native* format is for
+native LAMMPS dump files, written with a :doc:`dump atom ` or
+:doc:`dump custom ` command. The *xyz* format is for generic XYZ
+formatted dump files (see details below). These formats take no
+additional values.
The *molfile* format supports reading data through using the `VMD `_
molfile plugin interface. This dump reader format is only available,
@@ -230,23 +231,39 @@ will then have a label corresponding to the fix-ID rather than "x" or
"xs". The *label* keyword can also be used to specify new column
labels for fields *id* and *type*\ .
-For dump files in *xyz* format, only the *x*, *y*, and *z* fields are
-supported. The dump file does not store atom IDs, so these are
-assigned consecutively to the atoms as they appear in the dump file,
-starting from 1. Thus you should ensure that order of atoms is
-consistent from snapshot to snapshot in the XYZ dump file. See
-the :doc:`dump_modify sort ` command if the XYZ dump file
-was written by LAMMPS.
+For dump files in *xyz* format, only the *type*, *x*, *y*, and *z*
+fields are supported. There are many variants of the XYZ file format.
+LAMMPS will read the number of atoms from the first line of each frame,
+ignore the second (title) line, and then read one line for each atom in the format:
+
+.. parsed-literal::
+
+
+
+
+If the atom label is a numeric integer (like with XYZ files created by
+created with default settings by :doc:`dump style ` *xyz*), that
+number will be used as the atom type. If the atom label is a string,
+then a type map must be created using the :doc:`labelmap command
+`. This map needs to associate each (numeric) atom type with
+a string label. The numeric atom type is stored internally.
+
+The xyz format dump file does not store atom IDs, so these are assigned
+consecutively to the atoms as they appear in the dump file, starting
+from 1. Thus you should ensure that the order of atoms is consistent
+from snapshot to snapshot in the XYZ dump file. See the
+:doc:`dump_modify sort ` command if the XYZ dump file was
+written by LAMMPS.
For dump files in *molfile* format, the *x*, *y*, *z*, *vx*, *vy*, and
*vz* fields can be specified. However, not all molfile formats store
velocities, or their respective plugins may not support reading of
-velocities. The molfile dump files do not store atom IDs, so these
-are assigned consecutively to the atoms as they appear in the dump
-file, starting from 1. Thus you should ensure that order of atoms are
-consistent from snapshot to snapshot in the molfile dump file.
-See the :doc:`dump_modify sort ` command if the dump file
-was written by LAMMPS.
+velocities. The molfile dump files do not store atom IDs, so these are
+assigned consecutively to the atoms as they appear in the dump file,
+starting from 1. Thus you should ensure that the order of atoms are
+consistent from snapshot to snapshot in the molfile dump file. See the
+:doc:`dump_modify sort ` command if the dump file was
+written by LAMMPS.
The *adios* format supports all fields that the *native* format supports
except for the *q* charge field.
diff --git a/doc/utils/check-styles.py b/doc/utils/check-styles.py
index d9f7381473..89c8920760 100644
--- a/doc/utils/check-styles.py
+++ b/doc/utils/check-styles.py
@@ -61,16 +61,51 @@ region = {}
total = 0
index_pattern = re.compile(r"^.. index:: (compute|fix|pair_style|angle_style|bond_style|dihedral_style|improper_style|kspace_style|dump)\s+([a-zA-Z0-9/_]+)$")
+accel_pattern = re.compile(r"^.. include::\s+accel_styles.rst$")
style_pattern = re.compile(r"(.+)Style\((.+),(.+)\)")
+cmd_pattern = re.compile(r"^.. index:: ([a-zA-Z0-9/_]+)$")
upper = re.compile("[A-Z]+")
-gpu = re.compile("(.+)/gpu$")
-intel = re.compile("(.+)/intel$")
-kokkos = re.compile("(.+)/kk$")
-kokkos_skip = re.compile("(.+)/kk/(host|device)$")
-omp = re.compile("(.+)/omp$")
-opt = re.compile("(.+)/opt$")
+gpu = re.compile("(.+)/gpu\\s*$")
+intel = re.compile("(.+)/intel\\s*$")
+kokkos = re.compile("(.+)/kk$\\s*")
+kokkos_skip = re.compile("(.+)/kk/(host|device)\\s*$")
+omp = re.compile("(.+)/omp\\s*$")
+opt = re.compile("(.+)/opt\\s*$")
removed = re.compile("(.*)Deprecated$")
+accel_pattern = re.compile(r"^.. include::\s+accel_styles.rst$")
+
+def require_accel_include(path):
+ found = False
+ needs = False
+ # handle exceptions
+ if path == "src/min_style.rst" : needs = True
+ if path == "src/atom_style.rst" : needs = True
+ if path == "src/region.rst" : needs = True
+ # check file
+ with open(path, 'r') as reader:
+ for line in reader:
+ m = accel_pattern.match(line)
+ if m: found = True
+ m = index_pattern.match(line)
+ if m:
+ if gpu.match(line): needs = True
+ if omp.match(line): needs = True
+ if kokkos.match(line): needs = True
+ if intel.match(line): needs = True
+ if opt.match(line): needs = True
+ m = cmd_pattern.match(line)
+ if m:
+ if gpu.match(line): needs = True
+ if omp.match(line): needs = True
+ if kokkos.match(line): needs = True
+ if intel.match(line): needs = True
+ if opt.match(line): needs = True
+ if needs and not found:
+ print("Missing '.. include:: accel_style.rst' in file ", path)
+ if not needs and found:
+ print("Have '.. include:: accel_style.rst' without accelerated styles in file ", path)
+
def load_index_entries_in_file(path):
entries = []
with open(path, 'r') as reader:
@@ -82,6 +117,11 @@ def load_index_entries_in_file(path):
entries.append((command_type, style))
return entries
+def check_accel_includes():
+ rst_files = glob(os.path.join(doc_dir, '*.rst'))
+ for f in rst_files:
+ require_accel_include(f)
+
def load_index_entries():
index = {'compute': set(), 'fix': set(), 'pair_style': set(), 'angle_style': set(),
'bond_style': set(), 'dihedral_style': set(), 'improper_style': set(),
@@ -249,6 +289,8 @@ Total number of styles (including suffixes): %d""" \
len(fix), len(improper), len(integrate), len(kspace), \
len(minimize), len(pair), len(reader), len(region), total))
+check_accel_includes()
+
index = load_index_entries()
total_index = 0
diff --git a/doc/utils/converters/.gitignore b/doc/utils/converters/.gitignore
index 11041c7834..cd3cd53819 100644
--- a/doc/utils/converters/.gitignore
+++ b/doc/utils/converters/.gitignore
@@ -1 +1,2 @@
*.egg-info
+/build
diff --git a/doc/utils/make-globbed-tocs.py b/doc/utils/make-globbed-tocs.py
new file mode 100644
index 0000000000..bd0062adbe
--- /dev/null
+++ b/doc/utils/make-globbed-tocs.py
@@ -0,0 +1,120 @@
+#!/usr/bin/env python3
+
+"""
+Script to emulate globbed toctrees with the added feature
+to avoid adding files that are already included elsewhere.
+"""
+
+import os, re
+import filecmp
+import tempfile
+import shutil
+from glob import glob
+from argparse import ArgumentParser
+
+LAMMPS_DIR = os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..'))
+
+parser = ArgumentParser(prog='make-globbed-tocs.py',
+ description="Create toctree files from patterns with exclusions")
+parser.add_argument("-v", "--verbose", action='store_true', help="Enable verbose output")
+parser.add_argument("-d", "--doc", help="Path to LAMMPS documentation sources")
+
+args = parser.parse_args()
+verbose = args.verbose
+if args.doc:
+ docsrc = os.path.realpath(args.doc)
+else:
+ docsrc = os.path.join(LAMMPS_DIR, 'doc', 'src')
+
+if not os.path.isdir(docsrc):
+ sys.exit(f"LAMMPS manual source dir {docsrc} does not exist")
+
+def glob_tocfile(style, name, head, exclude):
+
+ newname = None
+ exclude_re = re.compile(exclude)
+ if verbose: print("Processing style ", style)
+ with tempfile.NamedTemporaryFile(prefix=style + '.', delete=False) as f:
+ newname = f.name
+ if verbose: print("Temporary file: ", newname)
+ f.write(head.encode('utf-8'))
+ for doc in sorted(glob(os.path.join(docsrc, style + '_*.rst'))):
+ d,e = os.path.splitext(os.path.basename(doc))
+ if exclude_re.match(d):
+ if verbose: print("skipping file ", d)
+ continue
+ if verbose: print("processing file ", d)
+ f.write((" " + d + "\n").encode('utf-8'))
+
+ oldname = os.path.join(docsrc, name)
+ if os.path.exists(oldname) and filecmp.cmp(newname, oldname, shallow=False):
+ print("File ", name, " is unchanged")
+ os.remove(newname)
+ else:
+ print("Overwriting file ", name, " with new version")
+ shutil.move(newname, os.path.join(docsrc, name))
+
+##################################
+
+pair_head = """Pair Styles
+###########
+
+.. toctree::
+ :maxdepth: 1
+
+"""
+glob_tocfile('pair', 'pairs.rst', pair_head, r"pair_(coeff|modify|style|write)")
+
+bond_head = """Bond Styles
+###########
+
+.. toctree::
+ :maxdepth: 1
+
+"""
+glob_tocfile('bond', 'bonds.rst', bond_head, r"bond_(coeff|modify|style|write)")
+
+angle_head = """Angle Styles
+############
+
+.. toctree::
+ :maxdepth: 1
+
+"""
+glob_tocfile('angle', 'angles.rst', angle_head, r"angle_(coeff|modify|style|write)")
+
+dihedral_head = """Dihedral Styles
+###############
+
+.. toctree::
+ :maxdepth: 1
+
+"""
+glob_tocfile('dihedral', 'dihedrals.rst', dihedral_head, r"dihedral_(coeff|modify|style|write)")
+
+improper_head = """Improper Styles
+###############
+
+.. toctree::
+ :maxdepth: 1
+
+"""
+glob_tocfile('improper', 'impropers.rst', improper_head, r"improper_(coeff|modify|style|write)")
+
+compute_head = """Compute Styles
+###############
+
+.. toctree::
+ :maxdepth: 1
+
+"""
+glob_tocfile('compute', 'computes.rst', compute_head, r"compute_modify")
+
+fix_head = """Fix Styles
+##########
+
+.. toctree::
+ :maxdepth: 1
+
+"""
+glob_tocfile('fix', 'fixes.rst', fix_head, r"fix_modify(|_atc_commands)")
diff --git a/doc/utils/requirements.txt b/doc/utils/requirements.txt
index 6787b9d682..acf575fe58 100644
--- a/doc/utils/requirements.txt
+++ b/doc/utils/requirements.txt
@@ -1,4 +1,4 @@
-Sphinx >= 5.3.0, <7.5
+Sphinx >= 5.3.0, <8.2.0
sphinxcontrib-spelling
sphinxcontrib-jquery
sphinx-design
diff --git a/doc/utils/sphinx-config/false_positives.txt b/doc/utils/sphinx-config/false_positives.txt
index ed56556c2d..ffbfecfef4 100644
--- a/doc/utils/sphinx-config/false_positives.txt
+++ b/doc/utils/sphinx-config/false_positives.txt
@@ -639,6 +639,7 @@ cstyle
csvr
ctest
ctilde
+ctip
ctrl
ctrn
ctypes
@@ -1286,6 +1287,7 @@ gcc
gcmc
gdot
GeC
+Geesthacht
Geier
gencode
Geocomputing
@@ -3665,6 +3667,7 @@ Tanmoy
Tartakovsky
taskset
taubi
+Tavenner
taylor
tb
tchain
@@ -4218,6 +4221,7 @@ zeeman
Zeeman
Zemer
zenodo
+Zentrum
Zepeda
zflag
Zhang
diff --git a/examples/ASPHERE/line/in.line b/examples/ASPHERE/line/in.line
index f4c672f19c..8d2678aded 100644
--- a/examples/ASPHERE/line/in.line
+++ b/examples/ASPHERE/line/in.line
@@ -13,11 +13,11 @@ neigh_modify delay 0 every 1 check yes
neigh_modify exclude molecule/intra all
pair_style line/lj 2.5
-pair_coeff * * 1.0 1.0 1.0 0.25 2.5
+pair_coeff * * 0.25 0.25 1.0 0.25 2.5
fix 2 all rigid molecule langevin 2.0 2.0 1.0 492983
-fix 3 all deform 1 x scale 0.3 y scale 0.3
+fix 3 all deform 5 x scale 0.8 y scale 0.8
fix 4 all enforce2d
compute 10 all property/atom end1x end1y end2x end2y
@@ -26,7 +26,7 @@ compute 10 all property/atom end1x end1y end2x end2y
#dump 2 all custom 500 dump1.line id type &
# c_10[1] c_10[2] c_10[3] c_10[4]
-timestep 0.004
+timestep 0.001
compute 1 all erotate/asphere
compute 2 all ke
diff --git a/examples/ASPHERE/line/in.line.srd b/examples/ASPHERE/line/in.line.srd
index 6a99ce6bb1..c5eb4d2b73 100644
--- a/examples/ASPHERE/line/in.line.srd
+++ b/examples/ASPHERE/line/in.line.srd
@@ -21,10 +21,10 @@ set group small mass 0.01
# delete overlaps
# must set 1-2 cutoff to non-zero value
-pair_style lj/cut 1.5
+pair_style lj/cut 1.5
pair_coeff 1 1 1.0 1.0
pair_coeff 2 2 0.0 1.0 0.0
-pair_coeff 1 2 0.0 1.0
+pair_coeff 1 2 1.0 1.0
delete_atoms overlap 1.5 small big
@@ -34,7 +34,7 @@ reset_timestep 0
velocity small create 1.44 87287 loop geom
-neighbor 0.3 multi
+neighbor 0.8 multi
neigh_modify delay 0 every 1 check yes
neigh_modify exclude molecule/intra big include big
@@ -44,21 +44,21 @@ neigh_modify include big
# no pairwise interactions with small particles
pair_style line/lj 2.5
-pair_coeff 1 1 1.0 1.0 1.0 1.0 2.5
-pair_coeff 2 2 0.0 0.0 0.0 1.0 0.0
-pair_coeff 1 2 1.0 0.0 0.0 1.0 0.0
+pair_coeff 1 1 1.0 1.0 1.0 1.0 2.5
+pair_coeff 2 2 0.0 0.0 0.0 1.0 0.0
+pair_coeff 1 2 1.0 0.2 1.0 0.2 2.5
# use fix SRD to push small particles out from inside big ones
# if comment out, big particles won't see SRD particles
-timestep 0.001
+timestep 0.0001
fix 1 big rigid molecule
fix 2 small srd 20 big 1.0 0.25 49894 &
search 0.2 cubic warn 0.0001 shift yes 49829 &
overlap yes collision noslip
-fix 3 all deform 1 x scale 0.35 y scale 0.35
+fix 3 all deform 1 x scale 1.25 y scale 1.25
fix 4 all enforce2d
# diagnostics
@@ -96,12 +96,12 @@ change_box all triclinic
fix 2 small srd 20 big 1.0 0.25 49894 &
search 0.2 cubic warn 0.0001 shift yes 49829 &
- overlap yes collision noslip tstat yes
+ overlap yes collision noslip #tstat yes
#dump 1 all custom 500 dump2.atom.srd id type x y z ix iy iz
#dump 2 all custom 500 dump2.line.srd id type &
# c_10[1] c_10[2] c_10[3] c_10[4]
-fix 3 all deform 1 xy erate 0.05 units box remap v
+fix 3 all deform 1 xy erate 0.0002 units box remap v
-run 40000
+run 30000
diff --git a/examples/ASPHERE/line/log.1Feb14.line.g++.8 b/examples/ASPHERE/line/log.1Feb14.line.g++.8
deleted file mode 100644
index a3eb6f7791..0000000000
--- a/examples/ASPHERE/line/log.1Feb14.line.g++.8
+++ /dev/null
@@ -1,213 +0,0 @@
-LAMMPS (1 Feb 2014)
-# Aspherical shear demo - 2d line box and triangle mixture, implicit solvent
-
-units lj
-atom_style line
-dimension 2
-
-read_data data.line
- orthogonal box = (-22.5539 -22.5539 -0.5) to (22.5539 22.5539 0.5)
- 4 by 2 by 1 MPI processor grid
- reading atoms ...
- 350 atoms
- 350 lines
-
-velocity all create 1.44 320984 loop geom
-
-neighbor 0.3 bin
-neigh_modify delay 0 every 1 check yes
-neigh_modify exclude molecule all
-
-pair_style line/lj 2.5
-pair_coeff * * 1.0 0.25
-
-fix 2 all rigid molecule langevin 2.0 2.0 1.0 492983
-100 rigid bodies with 350 atoms
-
-fix 3 all deform 1 x scale 0.3 y scale 0.3
-fix 4 all enforce2d
-
-compute 10 all property/atom end1x end1y end2x end2y
-
-#dump 1 all custom 500 dump1.atom id type x y z ix iy iz
-#dump 2 all custom 500 dump1.line id type # c_10[1] c_10[2] c_10[3] c_10[4]
-
-timestep 0.004
-
-compute 1 all erotate/asphere
-compute 2 all ke
-compute 3 all pe
-variable toteng equal (c_1+c_2+c_3)/atoms
-
-thermo 1000
-thermo_style custom step temp f_2 pe ke c_1 c_2 c_3 v_toteng
-
-run 10000
-Memory usage per processor = 2.6072 Mbytes
-Step Temp 2 PotEng KinEng 1 2 3 toteng
- 0 0 1.2780105 0 -0 0.037823677 0.50989511 0 0.54771879
- 1000 0 1.9896906 -0.13333756 -0 0.12630626 0.72641827 -0.13333756 0.71938697
- 2000 0 2.0408541 -0.24906647 -0 0.13199238 0.74265938 -0.24906647 0.62558529
- 3000 0 1.9921323 -0.39759798 -0 0.11671173 0.73705927 -0.39759798 0.45617302
- 4000 0 2.1392159 -0.36475197 -0 0.11923802 0.7975688 -0.36475197 0.55205485
- 5000 0 2.139715 -0.52582091 -0 0.15846417 0.75855653 -0.52582091 0.39119979
- 6000 0 2.1313904 -0.65532027 -0 0.11090422 0.80254883 -0.65532027 0.25813278
- 7000 0 1.9416614 -0.81322598 -0 0.11722471 0.71491587 -0.81322598 0.018914608
- 8000 0 1.9388183 -1.0581149 -0 0.10142762 0.72949452 -1.0581149 -0.22719275
- 9000 0 2.2830265 -1.583347 -0 0.14583927 0.83260066 -1.583347 -0.60490709
- 10000 0 4.1416666 -2.6034045 -0 0.18839177 1.5866082 -2.6034045 -0.82840455
-Loop time of 2.84713 on 8 procs for 10000 steps with 350 atoms
-
-Pair time (%) = 1.26607 (44.4682)
-Neigh time (%) = 0.0163046 (0.572669)
-Comm time (%) = 0.786148 (27.612)
-Outpt time (%) = 0.000368953 (0.0129588)
-Other time (%) = 0.778241 (27.3342)
-
-Nlocal: 43.75 ave 51 max 39 min
-Histogram: 1 2 0 2 0 1 1 0 0 1
-Nghost: 170.25 ave 180 max 160 min
-Histogram: 2 1 0 0 0 0 2 0 1 2
-Neighs: 963.125 ave 1209 max 767 min
-Histogram: 2 0 2 0 1 0 1 0 1 1
-
-Total # of neighbors = 7705
-Ave neighs/atom = 22.0143
-Neighbor list builds = 987
-Dangerous builds = 0
-
-#undump 1
-#undump 2
-unfix 3
-
-change_box all triclinic
- triclinic box = (-6.76616 -6.76616 -0.5) to (6.76616 6.76616 0.5) with tilt (0 0 0)
-
-#dump 1 all custom 500 dump2.atom id type x y z ix iy iz
-#dump 2 all custom 500 dump2.line id type # c_10[1] c_10[2] c_10[3] c_10[4]
-
-fix 3 all deform 1 xy erate 0.01 units box
-
-run 100000
-Memory usage per processor = 2.75978 Mbytes
-Step Temp 2 PotEng KinEng 1 2 3 toteng
- 10000 0 4.1416666 -2.6024092 -0 0.18839177 1.5866082 -2.6024092 -0.82740923
- 11000 0 1.8408319 -3.1031477 -0 0.12073234 0.66819561 -3.1031477 -2.3142198
- 12000 0 2.0793172 -3.0329681 -0 0.086927592 0.80420833 -3.0329681 -2.1418322
- 13000 0 2.2022136 -2.99776 -0 0.14309291 0.8007129 -2.99776 -2.0539542
- 14000 0 1.9510757 -3.094649 -0 0.09482969 0.74134559 -3.094649 -2.2584737
- 15000 0 1.9874689 -3.1431753 -0 0.1083061 0.7434663 -3.1431753 -2.2914029
- 16000 0 1.8484778 -2.9491537 -0 0.079102883 0.71310191 -2.9491537 -2.1569489
- 17000 0 2.1978438 -2.9675694 -0 0.11677634 0.82515673 -2.9675694 -2.0256363
- 18000 0 2.0293397 -2.9860257 -0 0.1287845 0.7409325 -2.9860257 -2.1163087
- 19000 0 2.0077219 -3.005622 -0 0.12697603 0.7334762 -3.005622 -2.1451698
- 20000 0 2.1806369 -3.0622132 -0 0.11066657 0.82389212 -3.0622132 -2.1276545
- 21000 0 1.8156509 -3.1031481 -0 0.10227614 0.67585994 -3.1031481 -2.325012
- 22000 0 2.1028516 -3.0861182 -0 0.098877162 0.80234493 -3.0861182 -2.1848961
- 23000 0 1.8994891 -3.0110243 -0 0.10961187 0.70445488 -3.0110243 -2.1969576
- 24000 0 1.9305389 -3.0057136 -0 0.11735151 0.7100223 -3.0057136 -2.1783398
- 25000 0 1.9553918 -3.0848948 -0 0.13217467 0.70585039 -3.0848948 -2.2468697
- 26000 0 1.8903754 -2.9543658 -0 0.099925113 0.71023579 -2.9543658 -2.1442049
- 27000 0 2.2624684 -3.2416154 -0 0.11398815 0.85564117 -3.2416154 -2.2719861
- 28000 0 2.0335234 -3.1795174 -0 0.10291986 0.76859015 -3.1795174 -2.3080074
- 29000 0 1.7056403 -3.1198739 -0 0.076174496 0.65481419 -3.1198739 -2.3888853
- 30000 0 2.1203465 -3.0863113 -0 0.11355683 0.79516311 -3.0863113 -2.1775914
- 31000 0 1.8446708 -3.2764357 -0 0.11006455 0.68050865 -3.2764357 -2.4858625
- 32000 0 1.7947968 -3.081031 -0 0.087540776 0.68165784 -3.081031 -2.3118324
- 33000 0 2.2576228 -3.1042222 -0 0.15666855 0.81088407 -3.1042222 -2.1366696
- 34000 0 1.8522306 -3.0037311 -0 0.08276626 0.71104684 -3.0037311 -2.209918
- 35000 0 2.0611686 -2.9877406 -0 0.10822003 0.77513794 -2.9877406 -2.1043826
- 36000 0 2.0739798 -2.981184 -0 0.11784198 0.77100651 -2.981184 -2.0923355
- 37000 0 2.2120215 -2.8961216 -0 0.13172943 0.8162798 -2.8961216 -1.9481124
- 38000 0 2.1097357 -2.9746777 -0 0.11881736 0.78535507 -2.9746777 -2.0705053
- 39000 0 1.8928127 -2.9482169 -0 0.10915752 0.70204792 -2.9482169 -2.1370115
- 40000 0 1.8515483 -3.003524 -0 0.096981256 0.69653943 -3.003524 -2.2100033
- 41000 0 1.8569065 -3.0834675 -0 0.10562739 0.6901897 -3.0834675 -2.2876504
- 42000 0 2.2638459 -3.0577224 -0 0.10896442 0.86125524 -3.0577224 -2.0875027
- 43000 0 2.0992151 -3.1219185 -0 0.13280434 0.76685929 -3.1219185 -2.2222548
- 44000 0 2.3479986 -3.0702445 -0 0.14438131 0.86190379 -3.0702445 -2.0639594
- 45000 0 2.0295235 -2.9619688 -0 0.13726365 0.73253213 -2.9619688 -2.092173
- 46000 0 2.0597998 -3.1282569 -0 0.10139093 0.7813804 -3.1282569 -2.2454856
- 47000 0 1.8173541 -3.1122647 -0 0.10380346 0.67506259 -3.1122647 -2.3333986
- 48000 0 1.9650208 -3.22153 -0 0.10115952 0.74099226 -3.22153 -2.3793782
- 49000 0 1.8836303 -3.0781944 -0 0.10561306 0.70165705 -3.0781944 -2.2709243
- 50000 0 1.7799289 -3.1090208 -0 0.10522105 0.65760561 -3.1090208 -2.3461941
- 51000 0 1.7270244 -2.894789 -0 0.079316066 0.66083727 -2.894789 -2.1546357
- 52000 0 2.1036512 -3.0708266 -0 0.11762021 0.7839446 -3.0708266 -2.1692618
- 53000 0 2.1749106 -3.043193 -0 0.11908953 0.81301499 -3.043193 -2.1110885
- 54000 0 1.7245018 -3.1528646 -0 0.11118993 0.62788226 -3.1528646 -2.4137924
- 55000 0 1.7599209 -3.0543405 -0 0.098996756 0.65525507 -3.0543405 -2.3000886
- 56000 0 1.9085953 -3.1072383 -0 0.10931083 0.70865859 -3.1072383 -2.2892689
- 57000 0 1.9682028 -3.131335 -0 0.094973379 0.74854212 -3.131335 -2.2878195
- 58000 0 1.7813545 -3.167275 -0 0.085523136 0.6779145 -3.167275 -2.4038374
- 59000 0 2.0324497 -3.1103534 -0 0.13343285 0.73761703 -3.1103534 -2.2393035
- 60000 0 1.697349 -3.152831 -0 0.086035815 0.64139945 -3.152831 -2.4253957
- 61000 0 2.061537 -3.0730484 -0 0.12753143 0.75598441 -3.0730484 -2.1895325
- 62000 0 1.8186587 -3.1590894 -0 0.096701457 0.68272371 -3.1590894 -2.3796643
- 63000 0 1.9692063 -3.1053354 -0 0.094864849 0.7490807 -3.1053354 -2.2613899
- 64000 0 2.0113722 -3.0898117 -0 0.12640828 0.73560838 -3.0898117 -2.227795
- 65000 0 1.9350085 -3.2290712 -0 0.11850297 0.71078638 -3.2290712 -2.3997819
- 66000 0 2.0569306 -3.0489252 -0 0.12731012 0.75423156 -3.0489252 -2.1673835
- 67000 0 2.0119071 -3.10894 -0 0.099142151 0.76310375 -3.10894 -2.2466941
- 68000 0 2.0615321 -3.167552 -0 0.11066625 0.77284751 -3.167552 -2.2840383
- 69000 0 1.8731077 -3.1864825 -0 0.12982742 0.672933 -3.1864825 -2.3837221
- 70000 0 2.109088 -3.1787326 -0 0.13107619 0.77281866 -3.1787326 -2.2748377
- 71000 0 1.9764202 -3.0731116 -0 0.12035585 0.72668137 -3.0731116 -2.2260744
- 72000 0 1.6460591 -3.0865952 -0 0.09486718 0.61058673 -3.0865952 -2.3811413
- 73000 0 1.9756864 -3.0431747 -0 0.1041775 0.74254526 -3.0431747 -2.196452
- 74000 0 2.0553658 -3.1290715 -0 0.12267262 0.75819842 -3.1290715 -2.2482004
- 75000 0 1.550997 -2.9813403 -0 0.094350599 0.57036238 -2.9813403 -2.3166273
- 76000 0 1.9824851 -3.0057088 -0 0.11621875 0.73341774 -3.0057088 -2.1560723
- 77000 0 1.8451505 -3.0063772 -0 0.12602143 0.66475735 -3.0063772 -2.2155984
- 78000 0 1.934755 -3.0603773 -0 0.11800375 0.71117696 -3.0603773 -2.2311966
- 79000 0 2.1982093 -3.095224 -0 0.12840585 0.81368383 -3.095224 -2.1531343
- 80000 0 1.7547828 -3.0620364 -0 0.092552269 0.65949751 -3.0620364 -2.3099866
- 81000 0 2.1064588 -3.1631358 -0 0.11415036 0.78861768 -3.1631358 -2.2603677
- 82000 0 2.0039288 -3.1190532 -0 0.13374009 0.72508654 -3.1190532 -2.2602266
- 83000 0 1.7749465 -3.2172309 -0 0.11017601 0.65051537 -3.2172309 -2.4565396
- 84000 0 1.7865147 -3.1433093 -0 0.086859958 0.67878922 -3.1433093 -2.3776602
- 85000 0 1.4541199 -3.0123872 -0 0.096301993 0.52689225 -3.0123872 -2.3891929
- 86000 0 2.0345567 -2.9577061 -0 0.11756878 0.7543841 -2.9577061 -2.0857532
- 87000 0 1.9655671 -3.0235755 -0 0.13068174 0.71170417 -3.0235755 -2.1811896
- 88000 0 2.1238733 -3.0972095 -0 0.15660293 0.75362848 -3.0972095 -2.1869781
- 89000 0 1.93413 -3.0018414 -0 0.11736651 0.71154634 -3.0018414 -2.1729285
- 90000 0 2.0106701 -3.0778989 -0 0.1150105 0.74670527 -3.0778989 -2.2161831
- 91000 0 1.9700224 -3.0072749 -0 0.1200151 0.72428023 -3.0072749 -2.1629796
- 92000 0 2.3062898 -3.1245149 -0 0.16045862 0.82795128 -3.1245149 -2.136105
- 93000 0 1.9977984 -3.1072212 -0 0.098381856 0.75781746 -3.1072212 -2.2510219
- 94000 0 1.9684844 -3.0923519 -0 0.11228362 0.73135255 -3.0923519 -2.2487157
- 95000 0 1.8913269 -3.1044766 -0 0.088944817 0.72162386 -3.1044766 -2.293908
- 96000 0 2.139258 -2.9032081 -0 0.12122357 0.7956013 -2.9032081 -1.9863833
- 97000 0 2.1549839 -3.0073823 -0 0.14177897 0.78178555 -3.0073823 -2.0838178
- 98000 0 2.001084 -3.0411655 -0 0.16549603 0.69211139 -3.0411655 -2.1835581
- 99000 0 2.269108 -3.0749812 -0 0.11370514 0.85876972 -3.0749812 -2.1025064
- 100000 0 2.0270482 -3.0802101 -0 0.098599302 0.77013563 -3.0802101 -2.2114752
- 101000 0 1.9412796 -3.1543623 -0 0.11953004 0.71244692 -3.1543623 -2.3223853
- 102000 0 2.0146461 -3.0140006 -0 0.10152606 0.7618937 -3.0140006 -2.1505808
- 103000 0 1.7377282 -3.1862597 -0 0.082111131 0.66262952 -3.1862597 -2.441519
- 104000 0 1.7973897 -3.1055088 -0 0.093370304 0.67693958 -3.1055088 -2.3351989
- 105000 0 2.2615194 -2.9636424 -0 0.12584102 0.84338157 -2.9636424 -1.9944198
- 106000 0 1.8974182 -2.9505576 -0 0.085928679 0.72725057 -2.9505576 -2.1373783
- 107000 0 2.0691161 -3.0804349 -0 0.12411017 0.76265389 -3.0804349 -2.1936708
- 108000 0 2.0457472 -2.981702 -0 0.09308074 0.78366806 -2.981702 -2.1049532
- 109000 0 1.6610604 -3.1463569 -0 0.066318676 0.64556436 -3.1463569 -2.4344738
- 110000 0 1.9606721 -3.080013 -0 0.13164067 0.70864736 -3.080013 -2.2397249
-Loop time of 62.2251 on 8 procs for 100000 steps with 350 atoms
-
-Pair time (%) = 43.4946 (69.8987)
-Neigh time (%) = 0.395421 (0.635469)
-Comm time (%) = 10.3551 (16.6414)
-Outpt time (%) = 0.00358662 (0.00576394)
-Other time (%) = 7.97644 (12.8187)
-
-Nlocal: 43.75 ave 51 max 33 min
-Histogram: 1 0 1 0 0 2 0 1 2 1
-Nghost: 168.375 ave 180 max 155 min
-Histogram: 1 1 0 0 1 0 2 2 0 1
-Neighs: 971 ave 1278 max 631 min
-Histogram: 1 1 0 1 0 1 2 1 0 1
-
-Total # of neighbors = 7768
-Ave neighs/atom = 22.1943
-Neighbor list builds = 7621
-Dangerous builds = 0
diff --git a/examples/ASPHERE/line/log.1Feb14.line.srd.g++.8 b/examples/ASPHERE/line/log.1Feb14.line.srd.g++.8
deleted file mode 100644
index fca6f26af7..0000000000
--- a/examples/ASPHERE/line/log.1Feb14.line.srd.g++.8
+++ /dev/null
@@ -1,244 +0,0 @@
-LAMMPS (1 Feb 2014)
-# Aspherical shear demo - 2d line boxes, solvated by SRD particles
-
-units lj
-atom_style line
-atom_modify first big
-dimension 2
-
-read_data data.line.srd
- orthogonal box = (-28.7968 -28.7968 -0.5) to (28.7968 28.7968 0.5)
- 4 by 2 by 1 MPI processor grid
- reading atoms ...
- 400 atoms
- 400 lines
-
-# add small particles as hi density lattice
-
-lattice sq 0.4
-Lattice spacing in x,y,z = 1.58114 1.58114 1.58114
-region plane block INF INF INF INF -0.001 0.001
-lattice sq 10.0
-Lattice spacing in x,y,z = 0.316228 0.316228 0.316228
-create_atoms 2 region plane
-Created 33489 atoms
-
-group big type 1
-400 atoms in group big
-group small type 2
-33489 atoms in group small
-set group small mass 0.01
- 33489 settings made for mass
-
-# delete overlaps
-# must set 1-2 cutoff to non-zero value
-
-pair_style lj/cut 1.5
-pair_coeff 1 1 1.0 1.0
-pair_coeff 2 2 0.0 1.0 0.0
-pair_coeff 1 2 0.0 1.0
-
-delete_atoms overlap 1.5 small big
-Deleted 13605 atoms, new total = 20284
-
-# SRD run
-
-reset_timestep 0
-
-velocity small create 1.44 87287 loop geom
-
-neighbor 0.3 bin
-neigh_modify delay 0 every 1 check yes
-neigh_modify exclude molecule big include big
-
-communicate multi group big vel yes
-neigh_modify include big
-
-# no pairwise interactions with small particles
-
-pair_style line/lj 2.5
-pair_coeff 1 1 1.0 1.0
-pair_coeff 2 2 0.0 1.0 0.0
-pair_coeff 1 2 0.0 1.0 0.0
-
-# use fix SRD to push small particles out from inside big ones
-# if comment out, big particles won't see SRD particles
-
-timestep 0.001
-
-fix 1 big rigid molecule
-100 rigid bodies with 400 atoms
-fix 2 small srd 20 big 1.0 0.25 49894 search 0.2 cubic warn 0.0001 shift yes 49829 overlap yes collision noslip
-
-fix 3 all deform 1 x scale 0.35 y scale 0.35
-fix 4 all enforce2d
-
-# diagnostics
-
-compute tsmall small temp/deform
-compute tbig big temp
-variable pebig equal pe*atoms/count(big)
-variable ebig equal etotal*atoms/count(big)
-
-compute 1 big erotate/asphere
-compute 2 all ke
-compute 3 all pe
-variable toteng equal (c_1+c_2+c_3)/atoms
-
-thermo 1000
-thermo_style custom step temp c_tsmall f_2[9] c_1 etotal v_pebig v_ebig press
-thermo_modify temp tbig
-WARNING: Temperature for thermo pressure is not for group all (../thermo.cpp:439)
-
-compute 10 big property/atom end1x end1y end2x end2y
-
-#dump 1 all custom 500 dump1.atom.srd id type x y z ix iy iz
-#dump 2 all custom 500 dump1.line.srd id type # c_10[1] c_10[2] c_10[3] c_10[4]
-
-run 10000
-WARNING: Using fix srd with box deformation but no SRD thermostat (../fix_srd.cpp:385)
-SRD info:
- SRD/big particles = 19884 400
- big particle diameter max/min = 1.99882 0.503306
- SRD temperature & lamda = 1 0.2
- SRD max distance & max velocity = 0.8 40
- SRD grid counts: 230 230 1
- SRD grid size: request, actual (xyz) = 0.25, 0.250407 0.250407 1
- SRD per actual grid cell = 0.444963
- SRD viscosity = 4.2356
- big/SRD mass density ratio = 14.0918
-WARNING: SRD bin size for fix srd differs from user request (../fix_srd.cpp:2853)
-WARNING: Fix srd grid size > 1/4 of big particle diameter (../fix_srd.cpp:2875)
- # of rescaled SRD velocities = 0
- ave/max small velocity = 15.906 29.1054
- ave/max big velocity = 0 0
-WARNING: Using compute temp/deform with inconsistent fix deform remap option (../compute_temp_deform.cpp:76)
-Memory usage per processor = 7.79007 Mbytes
-Step Temp tsmall 2[9] 1 TotEng pebig ebig Press
- 0 0 1.4528554 0 0 0 0 0 0
- 1000 0 1.1122612 1.1071958 0.00058011072 0 0 0 0.32625408
- 2000 0 1.0254475 1.0231236 0.00072347646 -2.3144253e-06 -0.00011736451 -0.00011736451 0.44526308
- 3000 0 1.0089214 0.99966408 0.00061511441 -0.00023298189 -0.011814512 -0.011814512 0.87208025
- 4000 0 1.0066185 0.99391102 0.00079065587 -0.0021630644 -0.10968899 -0.10968899 1.3901494
- 5000 0 1.0109003 1.0009124 0.00071588733 -0.0040023493 -0.20295913 -0.20295913 1.2736445
- 6000 0 1.0119642 1.0105049 0.00080741361 -0.0067908165 -0.34436231 -0.34436231 2.5492857
- 7000 0 1.0048989 0.98912274 0.00098851463 -0.010933999 -0.55446309 -0.55446309 3.5707613
- 8000 0 1.0021597 0.99377939 0.0008405671 -0.015690841 -0.79568252 -0.79568252 6.685381
- 9000 0 1.0197546 1.00114 0.0012645557 -0.021124602 -1.0712286 -1.0712286 18.907993
- 10000 0 1.0401079 1.0184189 0.0036111452 0.0099395852 0.50403637 0.50403637 96.909257
-Loop time of 3.93391 on 8 procs for 10000 steps with 20284 atoms
-
-Pair time (%) = 0.110261 (2.80284)
-Neigh time (%) = 0.32853 (8.35124)
-Comm time (%) = 0.199613 (5.07416)
-Outpt time (%) = 0.00108692 (0.0276295)
-Other time (%) = 3.29442 (83.7441)
-
-Nlocal: 2535.5 ave 2850 max 2226 min
-Histogram: 1 0 1 1 1 1 1 0 1 1
-Nghost: 109.25 ave 117 max 102 min
-Histogram: 1 0 2 0 1 1 1 1 0 1
-Neighs: 526 ave 665 max 407 min
-Histogram: 1 2 0 1 0 1 1 1 0 1
-
-Total # of neighbors = 4208
-Ave neighs/atom = 0.207454
-Neighbor list builds = 522
-Dangerous builds = 0
-
-#undump 1
-#undump 2
-unfix 3
-
-change_box all triclinic
- triclinic box = (-10.0789 -10.0789 -0.5) to (10.0789 10.0789 0.5) with tilt (0 0 0)
-
-fix 2 small srd 20 big 1.0 0.25 49894 search 0.2 cubic warn 0.0001 shift yes 49829 overlap yes collision noslip tstat yes
-
-#dump 1 all custom 500 dump2.atom.srd id type x y z ix iy iz
-#dump 2 all custom 500 dump2.line.srd id type # c_10[1] c_10[2] c_10[3] c_10[4]
-
-fix 3 all deform 1 xy erate 0.05 units box remap v
-
-run 40000
-SRD info:
- SRD/big particles = 19884 400
- big particle diameter max/min = 1.99882 0.503306
- SRD temperature & lamda = 1 0.2
- SRD max distance & max velocity = 0.8 40
- SRD grid counts: 81 81 1
- SRD grid size: request, actual (xyz) = 0.25, 0.248861 0.248861 1
- SRD per actual grid cell = -11.3331
- SRD viscosity = -1920.36
- big/SRD mass density ratio = -0.546468
-WARNING: SRD bin size for fix srd differs from user request (../fix_srd.cpp:2853)
-WARNING: Fix srd grid size > 1/4 of big particle diameter (../fix_srd.cpp:2875)
-WARNING: Fix srd viscosity < 0.0 due to low SRD density (../fix_srd.cpp:2877)
- # of rescaled SRD velocities = 1
- ave/max small velocity = 12.724 40
- ave/max big velocity = 1.54523 5.36901
-Memory usage per processor = 4.23847 Mbytes
-Step Temp tsmall 2[9] 1 TotEng pebig ebig Press
- 10000 0 1.0277413 0 0.0036111452 0.010135973 0.51399517 0.51399517 60.794865
- 11000 0 1.0024742 1 0.00040482851 -0.031643325 -1.604633 -1.604633 55.531632
- 12000 0 1.0036177 1 0.00036416993 -0.030844063 -1.5641024 -1.5641024 56.694788
- 13000 0 1.0043067 1 0.00068862721 -0.030673787 -1.5554677 -1.5554677 56.852537
- 14000 0 1.0042533 1 0.00050997053 -0.035967153 -1.8238943 -1.8238943 51.254109
- 15000 0 1.003956 1 0.00048458218 -0.038060147 -1.9300301 -1.9300301 50.346943
- 16000 0 1.0059929 1 0.0004740426 -0.037433402 -1.8982478 -1.8982478 49.82532
- 17000 0 1.0042401 1 0.00039855238 -0.034314446 -1.7400855 -1.7400855 48.430648
- 18000 0 1.0025952 1 0.00046207703 -0.034166102 -1.732563 -1.732563 53.883613
- 19000 0 1.0025881 1 0.00034818943 -0.037341367 -1.8935807 -1.8935807 48.90662
- 20000 0 1.0009932 1 0.00031244041 -0.035274728 -1.7887814 -1.7887814 47.665935
- 21000 0 1.0025603 1 0.0005514826 -0.034350221 -1.7418997 -1.7418997 63.290704
- 22000 0 1.0038575 1 0.00034453716 -0.03576596 -1.8136918 -1.8136918 49.805726
- 23000 0 1.0030321 1 0.00049535709 -0.035873083 -1.819124 -1.819124 48.973244
- 24000 0 1.0048593 1 0.00034225992 -0.03322158 -1.6846663 -1.6846663 52.557383
- 25000 0 1.0024423 1 0.00059157362 -0.030152319 -1.5290241 -1.5290241 56.733821
- 26000 0 1.0022703 1 0.00047512976 -0.029563064 -1.499143 -1.499143 56.271943
- 27000 0 1.0024537 1 0.00054158319 -0.02957039 -1.4995145 -1.4995145 55.246787
- 28000 0 1.0023325 1 0.00051129428 -0.035115211 -1.7806924 -1.7806924 49.718172
- 29000 0 1.002865 1 0.00056728135 -0.035484703 -1.7994293 -1.7994293 48.387401
- 30000 0 1.0022693 1 0.00040284402 -0.033844303 -1.7162446 -1.7162446 50.486676
- 31000 0 1.0037106 1 0.00056291948 -0.036529699 -1.852421 -1.852421 52.011803
- 32000 0 1.0022542 1 0.00041877447 -0.036903458 -1.8713743 -1.8713743 52.712289
- 33000 0 1.0021364 1 0.00040871451 -0.033616728 -1.7047043 -1.7047043 55.199593
- 34000 0 1.003779 1 0.00040667148 -0.031745412 -1.6098098 -1.6098098 51.055261
- 35000 0 1.0015547 1 0.00042509365 -0.033603064 -1.7040114 -1.7040114 53.887389
- 36000 0 1.0024849 1 0.00040589851 -0.032151258 -1.6303903 -1.6303903 55.673615
- 37000 0 1.0038204 1 0.00040542177 -0.033643242 -1.7060488 -1.7060488 51.834694
- 38000 0 1.0031777 1 0.00040237126 -0.034711811 -1.7602359 -1.7602359 56.275778
- 39000 0 1.002777 1 0.00051021239 -0.034375104 -1.7431615 -1.7431615 48.461145
- 40000 0 1.0053762 1 0.00041566465 -0.036016384 -1.8263908 -1.8263908 48.937456
- 41000 0 1.0039078 1 0.00049726673 -0.036481888 -1.8499966 -1.8499966 49.290465
- 42000 0 1.0033408 1 0.00045236191 -0.034254524 -1.7370469 -1.7370469 52.146603
- 43000 0 1.0039893 1 0.00048362351 -0.032519474 -1.6490625 -1.6490625 53.320599
- 44000 0 1.0036667 1 0.00046834006 -0.031099875 -1.5770747 -1.5770747 55.907531
- 45000 0 1.0035765 1 0.0005195031 -0.029559708 -1.4989728 -1.4989728 56.191165
- 46000 0 1.004514 1 0.00050134348 -0.028852909 -1.463131 -1.463131 57.547696
- 47000 0 1.003864 1 0.00038963389 -0.031339229 -1.5892123 -1.5892123 55.775764
- 48000 0 1.003145 1 0.00035436452 -0.032390682 -1.6425315 -1.6425315 55.233354
- 49000 0 1.0042615 1 0.00053161075 -0.029960468 -1.5192953 -1.5192953 54.611685
- 50000 0 1.0037096 1 0.00031191389 -0.02942011 -1.4918938 -1.4918938 58.653762
-Loop time of 27.1275 on 8 procs for 40000 steps with 20284 atoms
-
-Pair time (%) = 1.54277 (5.68709)
-Neigh time (%) = 1.26864 (4.67658)
-Comm time (%) = 1.19871 (4.4188)
-Outpt time (%) = 0.00421953 (0.0155544)
-Other time (%) = 23.1132 (85.202)
-
-Nlocal: 2535.5 ave 2670 max 2406 min
-Histogram: 1 1 1 0 0 2 1 1 0 1
-Nghost: 114.5 ave 124 max 103 min
-Histogram: 1 0 1 0 2 1 0 1 0 2
-Neighs: 521.5 ave 692 max 442 min
-Histogram: 3 1 1 1 0 0 0 1 0 1
-
-Total # of neighbors = 4172
-Ave neighs/atom = 0.205679
-Neighbor list builds = 2002
-Dangerous builds = 0
-
-Please see the log.cite file for references relevant to this simulation
-
diff --git a/examples/ASPHERE/line/log.21Sep24.line.g++.1 b/examples/ASPHERE/line/log.21Sep24.line.g++.1
new file mode 100644
index 0000000000..474e1d37a4
--- /dev/null
+++ b/examples/ASPHERE/line/log.21Sep24.line.g++.1
@@ -0,0 +1,189 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-296-g061c80104a-modified)
+ using 1 OpenMP thread(s) per MPI task
+# Aspherical shear demo - 2d line box and triangle mixture, implicit solvent
+
+units lj
+atom_style line
+dimension 2
+
+read_data data.line
+Reading data file ...
+ orthogonal box = (-22.553882 -22.553882 -0.5) to (22.553882 22.553882 0.5)
+ 1 by 1 by 1 MPI processor grid
+ reading atoms ...
+ 350 atoms
+ 350 lines
+ read_data CPU = 0.003 seconds
+
+velocity all create 1.44 320984 loop geom
+
+neighbor 0.3 bin
+neigh_modify delay 0 every 1 check yes
+neigh_modify exclude molecule/intra all
+
+pair_style line/lj 2.5
+pair_coeff * * 0.25 0.25 1.0 0.25 2.5
+
+fix 2 all rigid molecule langevin 2.0 2.0 1.0 492983
+ 100 rigid bodies with 350 atoms
+
+fix 3 all deform 5 x scale 0.8 y scale 0.8
+fix 4 all enforce2d
+
+compute 10 all property/atom end1x end1y end2x end2y
+
+#dump 1 all custom 500 dump1.atom id type x y z ix iy iz
+#dump 2 all custom 500 dump1.line id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+timestep 0.001
+
+compute 1 all erotate/asphere
+compute 2 all ke
+compute 3 all pe
+variable toteng equal (c_1+c_2+c_3)/atoms
+
+compute_modify thermo_temp extra/dof -350
+
+thermo 1000
+thermo_style custom step f_2 pe ke c_1 c_2 c_3 v_toteng
+
+run 10000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419
+
+@Article{Gissinger24,
+ author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor},
+ title = {Type Label Framework for Bonded Force Fields in LAMMPS},
+ journal = {J. Phys. Chem. B},
+ year = 2024,
+ volume = 128,
+ number = 13,
+ pages = {3282–-3297}
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+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 = 33 33 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton
+ stencil: half/bin/2d
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 4.742 | 4.742 | 4.742 Mbytes
+ Step f_2 PotEng KinEng c_1 c_2 c_3 v_toteng
+ 0 1.1872976 0 0.46543528 0.03617212 0.46543528 0 0.5016074
+ 1000 1.9084412 -0.001043719 0.71003395 0.089891202 0.71003395 -0.001043719 0.79888143
+ 2000 2.31668 -0.020711665 0.83611544 0.13062287 0.83611544 -0.020711665 0.94602664
+ 3000 2.3094506 -0.062018072 0.80584123 0.15326943 0.80584123 -0.062018072 0.8970926
+ 4000 2.4383442 -0.053659995 0.86864073 0.14696993 0.86864073 -0.053659995 0.96195067
+ 5000 2.5885917 -0.15612821 0.90351683 0.17156633 0.90351683 -0.15612821 0.91895495
+ 6000 2.1187379 -0.072041135 0.76933527 0.11557939 0.76933527 -0.072041135 0.81287353
+ 7000 2.1407592 -0.057727294 0.75154343 0.13827066 0.75154343 -0.057727294 0.8320868
+ 8000 2.0661844 -0.097529608 0.71093839 0.14547433 0.71093839 -0.097529608 0.75888311
+ 9000 2.1574445 -0.052890857 0.78826145 0.11363136 0.78826145 -0.052890857 0.84900195
+ 10000 2.473097 -0.092376489 0.85756337 0.16861278 0.85756337 -0.092376489 0.93379965
+Loop time of 1.16704 on 1 procs for 10000 steps with 350 atoms
+
+Performance: 740334.372 tau/day, 8568.685 timesteps/s, 2.999 Matom-step/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 | 0.80757 | 0.80757 | 0.80757 | 0.0 | 69.20
+Neigh | 0.0090046 | 0.0090046 | 0.0090046 | 0.0 | 0.77
+Comm | 0.011808 | 0.011808 | 0.011808 | 0.0 | 1.01
+Output | 0.000194 | 0.000194 | 0.000194 | 0.0 | 0.02
+Modify | 0.3317 | 0.3317 | 0.3317 | 0.0 | 28.42
+Other | | 0.006768 | | | 0.58
+
+Nlocal: 350 ave 350 max 350 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 101 ave 101 max 101 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 853 ave 853 max 853 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 853
+Ave neighs/atom = 2.4371429
+Neighbor list builds = 274
+Dangerous builds = 0
+
+#undump 1
+#undump 2
+unfix 3
+
+change_box all triclinic
+Changing box ...
+ triclinic box = (-18.043106 -18.043106 -0.5) to (18.043106 18.043106 0.5) with tilt (0 0 0)
+
+#dump 1 all custom 500 dump2.atom id type x y z ix iy iz
+#dump 2 all custom 500 dump2.line id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+fix 3 all deform 1 xy erate 0.01 units box
+
+run 10000
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+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 = 26 26 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton/tri
+ stencil: half/bin/2d/tri
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 4.756 | 4.756 | 4.756 Mbytes
+ Step f_2 PotEng KinEng c_1 c_2 c_3 v_toteng
+ 10000 2.473097 -0.092380532 0.85753671 0.16863499 0.85753671 -0.092380532 0.93379117
+ 11000 2.5185915 -0.1015737 0.84230876 0.197573 0.84230876 -0.1015737 0.93830806
+ 12000 2.5971728 -0.13087195 0.90608898 0.17248755 0.90608898 -0.13087195 0.94770458
+ 13000 2.5065714 -0.14666584 0.83804307 0.19683483 0.83804307 -0.14666584 0.88821206
+ 14000 2.1672357 -0.10720878 0.79713452 0.10973398 0.79713452 -0.10720878 0.79965972
+ 15000 2.3444438 -0.14780285 0.81642139 0.15695019 0.81642139 -0.14780285 0.82556873
+ 16000 2.2672973 -0.12590007 0.76672668 0.17081014 0.76672668 -0.12590007 0.81163675
+ 17000 2.3999651 -0.15464102 0.85708567 0.14289234 0.85708567 -0.15464102 0.84533699
+ 18000 2.2024356 -0.14077779 0.76727873 0.14718521 0.76727873 -0.14077779 0.77368615
+ 19000 2.5411572 -0.092014576 0.85750101 0.19297197 0.85750101 -0.092014576 0.95845841
+ 20000 2.2113691 -0.11944862 0.77295445 0.14564597 0.77295445 -0.11944862 0.79915181
+Loop time of 1.76388 on 1 procs for 10000 steps with 350 atoms
+
+Performance: 489827.896 tau/day, 5669.304 timesteps/s, 1.984 Matom-step/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 | 1.3668 | 1.3668 | 1.3668 | 0.0 | 77.49
+Neigh | 0.018849 | 0.018849 | 0.018849 | 0.0 | 1.07
+Comm | 0.013338 | 0.013338 | 0.013338 | 0.0 | 0.76
+Output | 0.00020434 | 0.00020434 | 0.00020434 | 0.0 | 0.01
+Modify | 0.35698 | 0.35698 | 0.35698 | 0.0 | 20.24
+Other | | 0.007667 | | | 0.43
+
+Nlocal: 350 ave 350 max 350 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 119 ave 119 max 119 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 997 ave 997 max 997 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 997
+Ave neighs/atom = 2.8485714
+Neighbor list builds = 283
+Dangerous builds = 0
+Total wall time: 0:00:02
diff --git a/examples/ASPHERE/line/log.21Sep24.line.g++.4 b/examples/ASPHERE/line/log.21Sep24.line.g++.4
new file mode 100644
index 0000000000..3b5ac63fa7
--- /dev/null
+++ b/examples/ASPHERE/line/log.21Sep24.line.g++.4
@@ -0,0 +1,189 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-296-g061c80104a-modified)
+ using 1 OpenMP thread(s) per MPI task
+# Aspherical shear demo - 2d line box and triangle mixture, implicit solvent
+
+units lj
+atom_style line
+dimension 2
+
+read_data data.line
+Reading data file ...
+ orthogonal box = (-22.553882 -22.553882 -0.5) to (22.553882 22.553882 0.5)
+ 2 by 2 by 1 MPI processor grid
+ reading atoms ...
+ 350 atoms
+ 350 lines
+ read_data CPU = 0.003 seconds
+
+velocity all create 1.44 320984 loop geom
+
+neighbor 0.3 bin
+neigh_modify delay 0 every 1 check yes
+neigh_modify exclude molecule/intra all
+
+pair_style line/lj 2.5
+pair_coeff * * 0.25 0.25 1.0 0.25 2.5
+
+fix 2 all rigid molecule langevin 2.0 2.0 1.0 492983
+ 100 rigid bodies with 350 atoms
+
+fix 3 all deform 5 x scale 0.8 y scale 0.8
+fix 4 all enforce2d
+
+compute 10 all property/atom end1x end1y end2x end2y
+
+#dump 1 all custom 500 dump1.atom id type x y z ix iy iz
+#dump 2 all custom 500 dump1.line id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+timestep 0.001
+
+compute 1 all erotate/asphere
+compute 2 all ke
+compute 3 all pe
+variable toteng equal (c_1+c_2+c_3)/atoms
+
+compute_modify thermo_temp extra/dof -350
+
+thermo 1000
+thermo_style custom step f_2 pe ke c_1 c_2 c_3 v_toteng
+
+run 10000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419
+
+@Article{Gissinger24,
+ author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor},
+ title = {Type Label Framework for Bonded Force Fields in LAMMPS},
+ journal = {J. Phys. Chem. B},
+ year = 2024,
+ volume = 128,
+ number = 13,
+ pages = {3282–-3297}
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+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 = 33 33 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton
+ stencil: half/bin/2d
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 4.736 | 4.736 | 4.736 Mbytes
+ Step f_2 PotEng KinEng c_1 c_2 c_3 v_toteng
+ 0 1.1872976 0 0.46543528 0.03617212 0.46543528 0 0.5016074
+ 1000 1.9084412 -0.001043719 0.71003395 0.089891202 0.71003395 -0.001043719 0.79888143
+ 2000 2.31668 -0.020711665 0.83611544 0.13062287 0.83611544 -0.020711665 0.94602664
+ 3000 2.3094506 -0.062018072 0.80584123 0.15326943 0.80584123 -0.062018072 0.8970926
+ 4000 2.4383442 -0.053659995 0.86864073 0.14696993 0.86864073 -0.053659995 0.96195067
+ 5000 2.5885917 -0.15612821 0.90351683 0.17156633 0.90351683 -0.15612821 0.91895494
+ 6000 2.118738 -0.072041141 0.76933528 0.1155794 0.76933528 -0.072041141 0.81287354
+ 7000 2.1407609 -0.057727453 0.75154404 0.13827078 0.75154404 -0.057727453 0.83208737
+ 8000 2.066348 -0.097639137 0.71096217 0.14551295 0.71096217 -0.097639137 0.75883597
+ 9000 2.1969096 -0.050133795 0.8028133 0.11559948 0.8028133 -0.050133795 0.86827899
+ 10000 2.3932442 -0.098008752 0.83753779 0.15678193 0.83753779 -0.098008752 0.89631097
+Loop time of 0.596624 on 4 procs for 10000 steps with 350 atoms
+
+Performance: 1448149.372 tau/day, 16760.988 timesteps/s, 5.866 Matom-step/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.17419 | 0.21073 | 0.27006 | 7.8 | 35.32
+Neigh | 0.0015899 | 0.0018079 | 0.0020932 | 0.5 | 0.30
+Comm | 0.041688 | 0.101 | 0.13805 | 11.3 | 16.93
+Output | 0.00011945 | 0.0001262 | 0.000143 | 0.0 | 0.02
+Modify | 0.26906 | 0.27183 | 0.27467 | 0.4 | 45.56
+Other | | 0.01113 | | | 1.87
+
+Nlocal: 87.5 ave 94 max 80 min
+Histogram: 1 1 0 0 0 0 0 0 0 2
+Nghost: 54.5 ave 67 max 42 min
+Histogram: 1 0 1 0 0 0 0 1 0 1
+Neighs: 212.75 ave 286 max 122 min
+Histogram: 1 0 0 1 0 0 0 0 1 1
+
+Total # of neighbors = 851
+Ave neighs/atom = 2.4314286
+Neighbor list builds = 273
+Dangerous builds = 0
+
+#undump 1
+#undump 2
+unfix 3
+
+change_box all triclinic
+Changing box ...
+ triclinic box = (-18.043106 -18.043106 -0.5) to (18.043106 18.043106 0.5) with tilt (0 0 0)
+
+#dump 1 all custom 500 dump2.atom id type x y z ix iy iz
+#dump 2 all custom 500 dump2.line id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+fix 3 all deform 1 xy erate 0.01 units box
+
+run 10000
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+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 = 26 26 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton/tri
+ stencil: half/bin/2d/tri
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 4.752 | 4.752 | 4.752 Mbytes
+ Step f_2 PotEng KinEng c_1 c_2 c_3 v_toteng
+ 10000 2.3932442 -0.098029446 0.83751359 0.1568021 0.83751359 -0.098029446 0.89628624
+ 11000 2.4541893 -0.15538223 0.82053681 0.19271549 0.82053681 -0.15538223 0.85787007
+ 12000 2.4124449 -0.14024177 0.84559598 0.15692416 0.84559598 -0.14024177 0.86227837
+ 13000 2.2095814 -0.10822636 0.73930104 0.173052 0.73930104 -0.10822636 0.80412668
+ 14000 2.0946831 -0.087303541 0.77743494 0.10023865 0.77743494 -0.087303541 0.79037005
+ 15000 2.0911016 -0.11524594 0.74044758 0.12978235 0.74044758 -0.11524594 0.75498398
+ 16000 1.9736428 -0.17259563 0.67852978 0.13943094 0.67852978 -0.17259563 0.64536509
+ 17000 2.3284367 -0.17673537 0.77018991 0.1897596 0.77018991 -0.17673537 0.78321414
+ 18000 2.3178564 -0.16634746 0.81488323 0.1487365 0.81488323 -0.16634746 0.79727227
+ 19000 2.7497251 -0.18254513 1.0041125 0.14528424 1.0041125 -0.18254513 0.96685165
+ 20000 2.3897059 -0.12664177 0.8390411 0.15426546 0.8390411 -0.12664177 0.86666479
+Loop time of 0.79519 on 4 procs for 10000 steps with 350 atoms
+
+Performance: 1086533.223 tau/day, 12575.616 timesteps/s, 4.401 Matom-step/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.26601 | 0.35051 | 0.443 | 12.3 | 44.08
+Neigh | 0.0029891 | 0.0036725 | 0.0040631 | 0.7 | 0.46
+Comm | 0.049744 | 0.14268 | 0.22734 | 19.3 | 17.94
+Output | 0.00013783 | 0.00014503 | 0.00016304 | 0.0 | 0.02
+Modify | 0.27963 | 0.28446 | 0.29049 | 0.8 | 35.77
+Other | | 0.01372 | | | 1.73
+
+Nlocal: 87.5 ave 101 max 75 min
+Histogram: 1 0 1 0 0 0 1 0 0 1
+Nghost: 61.5 ave 67 max 50 min
+Histogram: 1 0 0 0 0 0 0 0 2 1
+Neighs: 244.75 ave 268 max 198 min
+Histogram: 1 0 0 0 0 0 0 1 0 2
+
+Total # of neighbors = 979
+Ave neighs/atom = 2.7971429
+Neighbor list builds = 289
+Dangerous builds = 0
+Total wall time: 0:00:01
diff --git a/examples/ASPHERE/line/log.21Sep24.line.srd.g++.1 b/examples/ASPHERE/line/log.21Sep24.line.srd.g++.1
new file mode 100644
index 0000000000..cf77473a7f
--- /dev/null
+++ b/examples/ASPHERE/line/log.21Sep24.line.srd.g++.1
@@ -0,0 +1,363 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-296-g061c80104a-modified)
+ using 1 OpenMP thread(s) per MPI task
+# Aspherical shear demo - 2d line boxes, solvated by SRD particles
+
+units lj
+atom_style line
+atom_modify first big
+dimension 2
+
+read_data data.line.srd
+Reading data file ...
+ orthogonal box = (-28.796757 -28.796757 -0.5) to (28.796757 28.796757 0.5)
+ 1 by 1 by 1 MPI processor grid
+ reading atoms ...
+ 400 atoms
+ 400 lines
+ read_data CPU = 0.003 seconds
+
+# add small particles as hi density lattice
+
+lattice sq 0.4
+Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388
+region plane block INF INF INF INF -0.001 0.001
+lattice sq 10.0
+Lattice spacing in x,y,z = 0.31622777 0.31622777 0.31622777
+create_atoms 2 region plane
+Created 33489 atoms
+ using lattice units in orthogonal box = (-28.796757 -28.796757 -0.5) to (28.796757 28.796757 0.5)
+ create_atoms CPU = 0.003 seconds
+
+group big type 1
+400 atoms in group big
+group small type 2
+33489 atoms in group small
+set group small mass 0.01
+Setting atom values ...
+ 33489 settings made for mass
+
+# delete overlaps
+# must set 1-2 cutoff to non-zero value
+
+pair_style lj/cut 1.5
+pair_coeff 1 1 1.0 1.0
+pair_coeff 2 2 0.0 1.0 0.0
+pair_coeff 1 2 1.0 1.0
+
+delete_atoms overlap 1.5 small big
+System init for delete_atoms ...
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 1.8
+ ghost atom cutoff = 1.8
+ binsize = 0.9, bins = 64 64 2
+ 2 neighbor lists, perpetual/occasional/extra = 1 1 0
+ (1) command delete_atoms, occasional
+ attributes: full, newton on
+ pair build: full/bin/atomonly
+ stencil: full/bin/2d
+ bin: standard
+ (2) pair lj/cut, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton
+ stencil: half/bin/2d
+ bin: standard
+WARNING: Delete_atoms cutoff > minimum neighbor cutoff (src/delete_atoms.cpp:313)
+Deleted 13605 atoms, new total = 20284
+
+# SRD run
+
+reset_timestep 0
+
+velocity small create 1.44 87287 loop geom
+
+neighbor 0.8 multi
+neigh_modify delay 0 every 1 check yes
+neigh_modify exclude molecule/intra big include big
+
+comm_modify mode multi group big vel yes
+neigh_modify include big
+
+# no pairwise interactions with small particles
+
+pair_style line/lj 2.5
+pair_coeff 1 1 1.0 1.0 1.0 1.0 2.5
+pair_coeff 2 2 0.0 0.0 0.0 1.0 0.0
+pair_coeff 1 2 1.0 0.2 1.0 0.2 2.5
+
+# use fix SRD to push small particles out from inside big ones
+# if comment out, big particles won't see SRD particles
+
+timestep 0.0001
+
+fix 1 big rigid molecule
+ 100 rigid bodies with 400 atoms
+fix 2 small srd 20 big 1.0 0.25 49894 search 0.2 cubic warn 0.0001 shift yes 49829 overlap yes collision noslip
+
+fix 3 all deform 1 x scale 1.25 y scale 1.25
+fix 4 all enforce2d
+
+# diagnostics
+
+compute tsmall small temp/deform
+compute tbig big temp
+variable pebig equal pe*atoms/count(big)
+variable ebig equal etotal*atoms/count(big)
+
+compute_modify tbig extra/dof -350
+
+compute 1 big erotate/asphere
+compute 2 all ke
+compute 3 all pe
+variable toteng equal (c_1+c_2+c_3)/atoms
+
+thermo 1000
+thermo_style custom step c_tsmall f_2[9] c_1 etotal v_pebig v_ebig press
+thermo_modify temp tbig
+WARNING: Temperature for thermo pressure is not for group all (src/thermo.cpp:533)
+
+compute 10 big property/atom end1x end1y end2x end2y
+
+#dump 1 all custom 500 dump1.atom.srd id type x y z ix iy iz
+#dump 2 all custom 500 dump1.line.srd id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+run 10000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419
+
+@Article{Gissinger24,
+ author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor},
+ title = {Type Label Framework for Bonded Force Fields in LAMMPS},
+ journal = {J. Phys. Chem. B},
+ year = 2024,
+ volume = 128,
+ number = 13,
+ pages = {3282–-3297}
+}
+
+- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
+
+@Article{Intveld08,
+ author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
+ title = {Accurate and Efficient Methods for Modeling Colloidal
+ Mixtures in an Explicit Solvent using Molecular Dynamics},
+ journal = {Comput.\ Phys.\ Commut.},
+ year = 2008,
+ volume = 179,
+ pages = {320--329}
+}
+
+@article{Shire2020,
+ author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
+ title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
+ Detection Applied to Investigate the Quasi-Static Limit},
+ journal = {Computational Particle Mechanics},
+ year = {2020}
+@article{Monti2022,
+ author = {Monti, Joseph M. and Clemmer, Joel T. and Srivastava,
+ Ishan and Silbert, Leonardo E. and Grest, Gary S.
+ and Lechman, Jeremy B.},
+ title = {Large-scale frictionless jamming with power-law particle
+ size distributions},
+ journal = {Phys. Rev. E},
+ volume = {106}
+ issue = {3}
+ year = {2022}
+}
+
+- fix srd command: doi:10.1063/1.3419070
+
+@Article{Petersen10,
+ author = {M. K. Petersen and J. B. Lechman and S. J. Plimpton and
+ G. S. Grest and in 't Veld, P. J. and P. R. Schunk},
+ title = {Mesoscale Hydrodynamics via Stochastic Rotation
+ Dynamics: Comparison with {L}ennard-{J}ones Fluid},
+ journal = {J.~Chem.\ Phys.},
+ year = 2010,
+ volume = 132,
+ pages = 174106
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+WARNING: Using compute temp/deform with inconsistent fix deform remap option (src/compute_temp_deform.cpp:71)
+WARNING: Using fix srd with box deformation but no SRD thermostat (src/SRD/fix_srd.cpp:405)
+SRD info:
+ SRD/big particles = 19884 400
+ big particle diameter max/min = 1.9988171 0.50330564
+ SRD temperature & lamda = 1 0.02
+ SRD max distance & max velocity = 0.08 40
+ SRD grid counts: 230 230 1
+ SRD grid size: request, actual (xyz) = 0.25, 0.25040659 0.25040659 1
+ SRD per actual grid cell = 0.45503978
+ SRD viscosity = 0.92062623
+ big/SRD mass density ratio = 12.298053
+WARNING: SRD bin size for fix srd differs from user request (src/SRD/fix_srd.cpp:2809)
+WARNING: Fix srd grid size > 1/4 of big particle diameter (src/SRD/fix_srd.cpp:2830)
+ # of rescaled SRD velocities = 0
+ ave/max small velocity = 15.906001 29.105426
+ ave/max big velocity = 0 0
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 3.3
+ ghost atom cutoff = 3.3
+ binsize = 1.65, bins = 35 35 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/multi/atomonly/newton
+ stencil: half/multi/2d
+ bin: multi
+Per MPI rank memory allocation (min/avg/max) = 43.18 | 43.18 | 43.18 Mbytes
+ Step c_tsmall f_2[9] c_1 TotEng v_pebig v_ebig Press
+ 0 1.6084386 0 0 0 0 0 0
+ 1000 1.4566787 1.2042825 0.00015900089 0.0011955837 0 0.060628048 0.75322967
+ 2000 1.3561018 1.2092936 0.00026739313 0.0020783306 0 0.10539215 0.53247025
+ 3000 1.3327447 1.1696777 0.0003215116 0.0024935719 0 0.12644903 0.32024668
+ 4000 1.3031273 1.1385596 0.00037337107 0.0031214473 0 0.15828859 0.64066244
+ 5000 1.28204 1.0983763 0.00047966362 0.0033295434 0 0.16884114 0.32103666
+ 6000 1.2654396 1.0969562 0.00049917373 0.0037382387 0 0.18956609 0.16211614
+ 7000 1.2401503 1.1232046 0.00045137168 0.0037522201 0 0.19027508 0.014071672
+ 8000 1.2349025 1.059008 0.00056648801 0.0039664742 0 0.20113991 0.24483817
+ 9000 1.2272907 1.0371006 0.00056271544 0.0037847074 0 0.19192251 0.032968056
+ 10000 1.2153817 1.0209113 0.00053291164 0.0037197691 0 0.18862949 0.3237698
+Loop time of 6.0346 on 1 procs for 10000 steps with 20284 atoms
+
+Performance: 14317.424 tau/day, 1657.109 timesteps/s, 33.613 Matom-step/s
+96.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.10636 | 0.10636 | 0.10636 | 0.0 | 1.76
+Neigh | 0.01905 | 0.01905 | 0.01905 | 0.0 | 0.32
+Comm | 0.041223 | 0.041223 | 0.041223 | 0.0 | 0.68
+Output | 0.0017015 | 0.0017015 | 0.0017015 | 0.0 | 0.03
+Modify | 5.8165 | 5.8165 | 5.8165 | 0.0 | 96.39
+Other | | 0.04976 | | | 0.82
+
+Nlocal: 20284 ave 20284 max 20284 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 = 500
+Dangerous builds = 0
+
+#undump 1
+#undump 2
+unfix 3
+
+change_box all triclinic
+Changing box ...
+ triclinic box = (-35.995947 -35.995947 -0.5) to (35.995947 35.995947 0.5) with tilt (0 0 0)
+
+fix 2 small srd 20 big 1.0 0.25 49894 search 0.2 cubic warn 0.0001 shift yes 49829 overlap yes collision noslip #tstat yes
+
+#dump 1 all custom 500 dump2.atom.srd id type x y z ix iy iz
+#dump 2 all custom 500 dump2.line.srd id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+fix 3 all deform 1 xy erate 0.0002 units box remap v
+
+run 30000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+WARNING: Using fix srd with box deformation but no SRD thermostat (src/SRD/fix_srd.cpp:405)
+SRD info:
+ SRD/big particles = 19884 400
+ big particle diameter max/min = 1.9988171 0.50330564
+ SRD temperature & lamda = 1 0.02
+ SRD max distance & max velocity = 0.08 40
+ SRD grid counts: 288 288 1
+ SRD grid size: request, actual (xyz) = 0.25, 0.24997185 0.24997185 1
+ SRD per actual grid cell = 0.26976265
+ SRD viscosity = 1.0312189
+ big/SRD mass density ratio = 20.672578
+WARNING: SRD bin size for fix srd differs from user request (src/SRD/fix_srd.cpp:2809)
+WARNING: Fix srd grid size > 1/4 of big particle diameter (src/SRD/fix_srd.cpp:2830)
+ # of rescaled SRD velocities = 0
+ ave/max small velocity = 12.805429 40
+ ave/max big velocity = 0.50400801 2.1697856
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 3.3
+ ghost atom cutoff = 3.3
+ binsize = 1.65, bins = 44 44 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/multi/atomonly/newton/tri
+ stencil: half/multi/2d/tri
+ bin: multi
+Per MPI rank memory allocation (min/avg/max) = 58.85 | 58.85 | 58.85 Mbytes
+ Step c_tsmall f_2[9] c_1 TotEng v_pebig v_ebig Press
+ 10000 1.0423767 0 0.00053289774 0.0037197858 0 0.18863034 0.014558088
+ 11000 1.0333923 1.0309908 0.00058283908 0.0042336078 0 0.21468625 0.13036048
+ 12000 1.0268543 1.0290122 0.00055294944 0.0044278861 0 0.2245381 0.53275676
+ 13000 1.0257856 1.0140434 0.00051520803 0.0042888387 0 0.21748701 0.2066835
+ 14000 1.0239497 1.0321558 0.00054742053 0.004259664 0 0.21600756 0.24430097
+ 15000 1.0194475 1.0119806 0.00053619565 0.0041113765 0 0.2084879 0.18420434
+ 16000 1.016421 1.0309991 0.00049553642 0.0041338645 0 0.20962827 0.18298406
+ 17000 1.0088527 0.99723694 0.00049824173 0.0044777581 0 0.22706711 0.65557023
+ 18000 1.0073877 1.0136962 0.00058327835 0.0045355884 0 0.22999969 0.13700737
+ 19000 1.0026916 1.0253129 0.00056760151 0.0045138437 0 0.22889701 0.16443344
+ 20000 1.0024042 0.98988084 0.00057568118 0.0048644983 0 0.24667871 0.060864322
+ 21000 0.99500641 0.99075324 0.00062187543 0.0050480594 0 0.25598709 0.18428384
+ 22000 0.99286446 0.98642266 0.00061024492 0.0050497174 0 0.25607117 0.18499738
+ 23000 0.99204086 0.98869005 0.00064013575 0.0052921112 0 0.26836296 0.046987646
+ 24000 0.98768375 1.0110613 0.00065868636 0.0049285304 0 0.24992578 0.22623751
+ 25000 0.98763308 0.98752678 0.00067070463 0.0049364253 0 0.25032613 0.022819382
+ 26000 0.9844889 1.0059918 0.00075364589 0.0053381778 0 0.270699 0.089735771
+ 27000 0.98574608 0.99094039 0.00080711088 0.0054137233 0 0.27452991 0.14477885
+ 28000 0.98139419 0.97487219 0.00071242405 0.0053315389 0 0.27036234 -0.016357088
+ 29000 0.98458705 0.98600894 0.00068355573 0.0050157315 0 0.25434775 0.015749835
+ 30000 0.98440759 1.0010793 0.00067594666 0.0048121267 0 0.24402295 0.20422918
+ 31000 0.98060632 0.9825933 0.00069529947 0.0050649881 -0.00010700206 0.25684555 0.0014601267
+ 32000 0.97616624 0.94976641 0.00067682494 0.0052111319 -0.00013230279 0.2642565 0.013738873
+ 33000 0.97926122 0.95756794 0.00071774059 0.0053716513 -0.00024804252 0.27239644 0.10643895
+ 34000 0.97227771 0.94365547 0.00080885359 0.0055744144 -0.00063217879 0.28267856 0.12472959
+ 35000 0.97295679 0.98103625 0.0008130852 0.0057598371 -0.00097218501 0.29208134 0.88422099
+ 36000 0.97131919 0.97164636 0.0008345433 0.0062212675 -0.001543055 0.31548048 0.22389401
+ 37000 0.96988732 0.98589058 0.00083271625 0.0062999411 -0.0026064482 0.31947001 0.11797226
+ 38000 0.97135512 0.96486494 0.00076943974 0.0057397763 -0.0041174109 0.29106406 0.072790492
+ 39000 0.97386738 0.95218062 0.00079594844 0.0056308358 -0.0069006312 0.28553968 0.12417837
+ 40000 0.97914045 1.0033941 0.000830798 0.0055952714 -0.0086705514 0.28373621 0.1976663
+Loop time of 15.944 on 1 procs for 30000 steps with 20284 atoms
+
+Performance: 16256.931 tau/day, 1881.589 timesteps/s, 38.166 Matom-step/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.31871 | 0.31871 | 0.31871 | 0.0 | 2.00
+Neigh | 0.082974 | 0.082974 | 0.082974 | 0.0 | 0.52
+Comm | 0.16092 | 0.16092 | 0.16092 | 0.0 | 1.01
+Output | 0.0047257 | 0.0047257 | 0.0047257 | 0.0 | 0.03
+Modify | 15.189 | 15.189 | 15.189 | 0.0 | 95.27
+Other | | 0.1871 | | | 1.17
+
+Nlocal: 20284 ave 20284 max 20284 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 76 ave 76 max 76 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 38 ave 38 max 38 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 38
+Ave neighs/atom = 0.0018733978
+Neighbor list builds = 1500
+Dangerous builds = 0
+Total wall time: 0:00:22
diff --git a/examples/ASPHERE/line/log.21Sep24.line.srd.g++.4 b/examples/ASPHERE/line/log.21Sep24.line.srd.g++.4
new file mode 100644
index 0000000000..1f59ef2b75
--- /dev/null
+++ b/examples/ASPHERE/line/log.21Sep24.line.srd.g++.4
@@ -0,0 +1,363 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-296-g061c80104a-modified)
+ using 1 OpenMP thread(s) per MPI task
+# Aspherical shear demo - 2d line boxes, solvated by SRD particles
+
+units lj
+atom_style line
+atom_modify first big
+dimension 2
+
+read_data data.line.srd
+Reading data file ...
+ orthogonal box = (-28.796757 -28.796757 -0.5) to (28.796757 28.796757 0.5)
+ 2 by 2 by 1 MPI processor grid
+ reading atoms ...
+ 400 atoms
+ 400 lines
+ read_data CPU = 0.003 seconds
+
+# add small particles as hi density lattice
+
+lattice sq 0.4
+Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388
+region plane block INF INF INF INF -0.001 0.001
+lattice sq 10.0
+Lattice spacing in x,y,z = 0.31622777 0.31622777 0.31622777
+create_atoms 2 region plane
+Created 33489 atoms
+ using lattice units in orthogonal box = (-28.796757 -28.796757 -0.5) to (28.796757 28.796757 0.5)
+ create_atoms CPU = 0.001 seconds
+
+group big type 1
+400 atoms in group big
+group small type 2
+33489 atoms in group small
+set group small mass 0.01
+Setting atom values ...
+ 33489 settings made for mass
+
+# delete overlaps
+# must set 1-2 cutoff to non-zero value
+
+pair_style lj/cut 1.5
+pair_coeff 1 1 1.0 1.0
+pair_coeff 2 2 0.0 1.0 0.0
+pair_coeff 1 2 1.0 1.0
+
+delete_atoms overlap 1.5 small big
+System init for delete_atoms ...
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 1.8
+ ghost atom cutoff = 1.8
+ binsize = 0.9, bins = 64 64 2
+ 2 neighbor lists, perpetual/occasional/extra = 1 1 0
+ (1) command delete_atoms, occasional
+ attributes: full, newton on
+ pair build: full/bin/atomonly
+ stencil: full/bin/2d
+ bin: standard
+ (2) pair lj/cut, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton
+ stencil: half/bin/2d
+ bin: standard
+WARNING: Delete_atoms cutoff > minimum neighbor cutoff (src/delete_atoms.cpp:313)
+Deleted 13605 atoms, new total = 20284
+
+# SRD run
+
+reset_timestep 0
+
+velocity small create 1.44 87287 loop geom
+
+neighbor 0.8 multi
+neigh_modify delay 0 every 1 check yes
+neigh_modify exclude molecule/intra big include big
+
+comm_modify mode multi group big vel yes
+neigh_modify include big
+
+# no pairwise interactions with small particles
+
+pair_style line/lj 2.5
+pair_coeff 1 1 1.0 1.0 1.0 1.0 2.5
+pair_coeff 2 2 0.0 0.0 0.0 1.0 0.0
+pair_coeff 1 2 1.0 0.2 1.0 0.2 2.5
+
+# use fix SRD to push small particles out from inside big ones
+# if comment out, big particles won't see SRD particles
+
+timestep 0.0001
+
+fix 1 big rigid molecule
+ 100 rigid bodies with 400 atoms
+fix 2 small srd 20 big 1.0 0.25 49894 search 0.2 cubic warn 0.0001 shift yes 49829 overlap yes collision noslip
+
+fix 3 all deform 1 x scale 1.25 y scale 1.25
+fix 4 all enforce2d
+
+# diagnostics
+
+compute tsmall small temp/deform
+compute tbig big temp
+variable pebig equal pe*atoms/count(big)
+variable ebig equal etotal*atoms/count(big)
+
+compute_modify tbig extra/dof -350
+
+compute 1 big erotate/asphere
+compute 2 all ke
+compute 3 all pe
+variable toteng equal (c_1+c_2+c_3)/atoms
+
+thermo 1000
+thermo_style custom step c_tsmall f_2[9] c_1 etotal v_pebig v_ebig press
+thermo_modify temp tbig
+WARNING: Temperature for thermo pressure is not for group all (src/thermo.cpp:533)
+
+compute 10 big property/atom end1x end1y end2x end2y
+
+#dump 1 all custom 500 dump1.atom.srd id type x y z ix iy iz
+#dump 2 all custom 500 dump1.line.srd id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+run 10000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419
+
+@Article{Gissinger24,
+ author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor},
+ title = {Type Label Framework for Bonded Force Fields in LAMMPS},
+ journal = {J. Phys. Chem. B},
+ year = 2024,
+ volume = 128,
+ number = 13,
+ pages = {3282–-3297}
+}
+
+- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
+
+@Article{Intveld08,
+ author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
+ title = {Accurate and Efficient Methods for Modeling Colloidal
+ Mixtures in an Explicit Solvent using Molecular Dynamics},
+ journal = {Comput.\ Phys.\ Commut.},
+ year = 2008,
+ volume = 179,
+ pages = {320--329}
+}
+
+@article{Shire2020,
+ author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
+ title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
+ Detection Applied to Investigate the Quasi-Static Limit},
+ journal = {Computational Particle Mechanics},
+ year = {2020}
+@article{Monti2022,
+ author = {Monti, Joseph M. and Clemmer, Joel T. and Srivastava,
+ Ishan and Silbert, Leonardo E. and Grest, Gary S.
+ and Lechman, Jeremy B.},
+ title = {Large-scale frictionless jamming with power-law particle
+ size distributions},
+ journal = {Phys. Rev. E},
+ volume = {106}
+ issue = {3}
+ year = {2022}
+}
+
+- fix srd command: doi:10.1063/1.3419070
+
+@Article{Petersen10,
+ author = {M. K. Petersen and J. B. Lechman and S. J. Plimpton and
+ G. S. Grest and in 't Veld, P. J. and P. R. Schunk},
+ title = {Mesoscale Hydrodynamics via Stochastic Rotation
+ Dynamics: Comparison with {L}ennard-{J}ones Fluid},
+ journal = {J.~Chem.\ Phys.},
+ year = 2010,
+ volume = 132,
+ pages = 174106
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+WARNING: Using compute temp/deform with inconsistent fix deform remap option (src/compute_temp_deform.cpp:71)
+WARNING: Using fix srd with box deformation but no SRD thermostat (src/SRD/fix_srd.cpp:405)
+SRD info:
+ SRD/big particles = 19884 400
+ big particle diameter max/min = 1.9988171 0.50330564
+ SRD temperature & lamda = 1 0.02
+ SRD max distance & max velocity = 0.08 40
+ SRD grid counts: 230 230 1
+ SRD grid size: request, actual (xyz) = 0.25, 0.25040659 0.25040659 1
+ SRD per actual grid cell = 0.45503978
+ SRD viscosity = 0.92062623
+ big/SRD mass density ratio = 12.298053
+WARNING: SRD bin size for fix srd differs from user request (src/SRD/fix_srd.cpp:2809)
+WARNING: Fix srd grid size > 1/4 of big particle diameter (src/SRD/fix_srd.cpp:2830)
+ # of rescaled SRD velocities = 0
+ ave/max small velocity = 15.906001 29.105426
+ ave/max big velocity = 0 0
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 3.3
+ ghost atom cutoff = 3.3
+ binsize = 1.65, bins = 35 35 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/multi/atomonly/newton
+ stencil: half/multi/2d
+ bin: multi
+Per MPI rank memory allocation (min/avg/max) = 13.44 | 13.45 | 13.47 Mbytes
+ Step c_tsmall f_2[9] c_1 TotEng v_pebig v_ebig Press
+ 0 1.6084386 0 0 0 0 0 0
+ 1000 1.4539924 1.2578325 0.0001679809 0.0010497614 0 0.053233399 0.69841607
+ 2000 1.3516746 1.1693535 0.00031932331 0.0021450754 0 0.10877677 0.058141137
+ 3000 1.3294093 1.1539986 0.00032558495 0.0022345521 0 0.11331414 0.085892255
+ 4000 1.3049311 1.1174444 0.00039637116 0.0026520968 0 0.13448783 0.10574422
+ 5000 1.2790124 1.1209176 0.0004519172 0.0032635257 0 0.16549339 0.59225702
+ 6000 1.2631214 1.0868777 0.00052274216 0.003527049 0 0.17885666 0.26093936
+ 7000 1.2520054 1.0780954 0.00051683183 0.0038111141 0 0.1932616 -0.0014733978
+ 8000 1.2412037 1.0587149 0.00056620143 0.0038329297 0 0.19436786 0.31576462
+ 9000 1.2242125 1.0699712 0.00065335672 0.0039948578 0 0.20257924 0.19755012
+ 10000 1.2155758 1.0279682 0.00059730828 0.004142635 0 0.21007302 0.30022953
+Loop time of 1.92412 on 4 procs for 10000 steps with 20284 atoms
+
+Performance: 44903.607 tau/day, 5197.177 timesteps/s, 105.420 Matom-step/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.026855 | 0.027529 | 0.028377 | 0.4 | 1.43
+Neigh | 0.0073723 | 0.007433 | 0.0075693 | 0.1 | 0.39
+Comm | 0.062837 | 0.065574 | 0.066747 | 0.6 | 3.41
+Output | 0.00072894 | 0.00076558 | 0.00083361 | 0.0 | 0.04
+Modify | 1.7861 | 1.7926 | 1.8 | 0.4 | 93.16
+Other | | 0.03026 | | | 1.57
+
+Nlocal: 5071 ave 5096 max 5051 min
+Histogram: 1 0 1 0 0 1 0 0 0 1
+Nghost: 44 ave 51 max 40 min
+Histogram: 2 0 0 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 = 500
+Dangerous builds = 0
+
+#undump 1
+#undump 2
+unfix 3
+
+change_box all triclinic
+Changing box ...
+ triclinic box = (-35.995947 -35.995947 -0.5) to (35.995947 35.995947 0.5) with tilt (0 0 0)
+
+fix 2 small srd 20 big 1.0 0.25 49894 search 0.2 cubic warn 0.0001 shift yes 49829 overlap yes collision noslip #tstat yes
+
+#dump 1 all custom 500 dump2.atom.srd id type x y z ix iy iz
+#dump 2 all custom 500 dump2.line.srd id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+fix 3 all deform 1 xy erate 0.0002 units box remap v
+
+run 30000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+WARNING: Using fix srd with box deformation but no SRD thermostat (src/SRD/fix_srd.cpp:405)
+SRD info:
+ SRD/big particles = 19884 400
+ big particle diameter max/min = 1.9988171 0.50330564
+ SRD temperature & lamda = 1 0.02
+ SRD max distance & max velocity = 0.08 40
+ SRD grid counts: 288 288 1
+ SRD grid size: request, actual (xyz) = 0.25, 0.24997185 0.24997185 1
+ SRD per actual grid cell = 0.26976265
+ SRD viscosity = 1.0312189
+ big/SRD mass density ratio = 20.672578
+WARNING: SRD bin size for fix srd differs from user request (src/SRD/fix_srd.cpp:2809)
+WARNING: Fix srd grid size > 1/4 of big particle diameter (src/SRD/fix_srd.cpp:2830)
+ # of rescaled SRD velocities = 0
+ ave/max small velocity = 12.826666 40
+ ave/max big velocity = 0.53469722 1.7415554
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 3.3
+ ghost atom cutoff = 3.3
+ binsize = 1.65, bins = 44 44 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/multi/atomonly/newton/tri
+ stencil: half/multi/2d/tri
+ bin: multi
+Per MPI rank memory allocation (min/avg/max) = 17.6 | 17.6 | 17.61 Mbytes
+ Step c_tsmall f_2[9] c_1 TotEng v_pebig v_ebig Press
+ 10000 1.0416233 0 0.0005972922 0.0041426543 0 0.210074 0.016213064
+ 11000 1.0366852 1.0236717 0.00066926382 0.004404743 0 0.22336452 0.097686059
+ 12000 1.028695 1.0023004 0.00065323121 0.0043971164 0 0.22297777 0.30007875
+ 13000 1.0223214 1.0296267 0.00060201395 0.0041815724 0 0.21204754 0.17307062
+ 14000 1.0210601 1.0092227 0.00057020066 0.0041936718 0 0.2126611 0.13379405
+ 15000 1.0169223 1.003359 0.00060818329 0.0046120335 0 0.23387622 0.39144341
+ 16000 1.012222 0.99937463 0.00060471571 0.004533278 0 0.22988253 0.16026051
+ 17000 1.0087993 0.98937449 0.00061843646 0.0048888197 0 0.24791205 0.095507016
+ 18000 1.0030288 0.94092316 0.00054252694 0.0046740839 0 0.2370228 -0.070838649
+ 19000 1.0010739 0.99759814 0.00054041829 0.0045481798 0 0.2306382 0.1944996
+ 20000 1.004189 1.0157285 0.00053330893 0.0044999261 0 0.22819125 0.14452619
+ 21000 0.99601133 1.003771 0.00053282188 0.0048954851 0 0.24825005 0.20196263
+ 22000 0.99445408 1.0163465 0.00059954941 0.0051668276 0 0.26200983 0.21332194
+ 23000 0.99663947 0.94920707 0.00057729723 0.0051052499 0 0.25888722 0.19282224
+ 24000 0.99500015 1.0021742 0.00064312956 0.0053430656 0 0.27094686 0.18044164
+ 25000 0.99388189 0.98446723 0.00060150964 0.0054017824 0 0.27392438 0.18844037
+ 26000 0.99632932 0.94670024 0.00052479857 0.004905147 0 0.24874 0.17961314
+ 27000 0.99112962 1.0247118 0.00053159824 0.004752248 0 0.2409865 0.12037737
+ 28000 0.98887153 0.97734068 0.00052255365 0.0050199491 0 0.25456162 0.29110866
+ 29000 0.98938025 0.99467239 0.00053095044 0.0050303107 0 0.25508706 0.59776339
+ 30000 0.99081592 0.98822122 0.00056693985 0.0052452228 0 0.26598525 0.0150843
+ 31000 0.99050903 1.0184912 0.00056742049 0.0056515686 0 0.28659104 0.07877756
+ 32000 0.98929926 0.99257634 0.00058111732 0.005740055 0 0.29107819 0.19146041
+ 33000 0.98698723 0.94872564 0.00056547335 0.0057628447 0 0.29223385 0.076755599
+ 34000 0.98967998 0.98777081 0.00056045905 0.0055645603 0 0.28217885 0.095025284
+ 35000 0.98777734 0.95746323 0.00050104756 0.0055630681 -4.7847642e-05 0.28210318 0.25667997
+ 36000 0.98661597 0.98801246 0.00047074618 0.0054500805 -5.8956193e-05 0.27637358 0.18221607
+ 37000 0.98390111 0.9837894 0.00044581144 0.0054703357 -7.4197741e-05 0.27740072 0.11959303
+ 38000 0.98092646 1.0142057 0.0004945556 0.0056372628 -8.6736668e-05 0.2858656 0.017325263
+ 39000 0.98125957 0.94219822 0.00059691168 0.0060914156 -9.9726556e-05 0.30889569 0.0081217281
+ 40000 0.98362942 0.9649582 0.00062286697 0.0063736358 -0.00010700337 0.32320707 0.293121
+Loop time of 5.08621 on 4 procs for 30000 steps with 20284 atoms
+
+Performance: 50961.296 tau/day, 5898.298 timesteps/s, 119.641 Matom-step/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 | 0.084321 | 0.084948 | 0.086233 | 0.3 | 1.67
+Neigh | 0.027521 | 0.029247 | 0.030632 | 0.7 | 0.58
+Comm | 0.19101 | 0.20262 | 0.2068 | 1.5 | 3.98
+Output | 0.0019581 | 0.0020369 | 0.0022544 | 0.3 | 0.04
+Modify | 4.681 | 4.6884 | 4.7051 | 0.4 | 92.18
+Other | | 0.07891 | | | 1.55
+
+Nlocal: 5071 ave 5197 max 4951 min
+Histogram: 1 0 0 1 0 0 1 0 0 1
+Nghost: 44 ave 50 max 41 min
+Histogram: 2 0 0 1 0 0 0 0 0 1
+Neighs: 5.75 ave 12 max 0 min
+Histogram: 1 0 0 1 0 1 0 0 0 1
+
+Total # of neighbors = 23
+Ave neighs/atom = 0.0011338986
+Neighbor list builds = 1500
+Dangerous builds = 0
+Total wall time: 0:00:07
diff --git a/examples/ASPHERE/line/log.21Sep24.line.srd.g++.8 b/examples/ASPHERE/line/log.21Sep24.line.srd.g++.8
new file mode 100644
index 0000000000..13b28fce8e
--- /dev/null
+++ b/examples/ASPHERE/line/log.21Sep24.line.srd.g++.8
@@ -0,0 +1,323 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-296-g061c80104a-modified)
+ using 1 OpenMP thread(s) per MPI task
+# Aspherical shear demo - 2d line boxes, solvated by SRD particles
+
+units lj
+atom_style line
+atom_modify first big
+dimension 2
+
+read_data data.line.srd
+Reading data file ...
+ orthogonal box = (-28.796757 -28.796757 -0.5) to (28.796757 28.796757 0.5)
+ 4 by 2 by 1 MPI processor grid
+ reading atoms ...
+ 400 atoms
+ 400 lines
+ read_data CPU = 0.002 seconds
+
+# add small particles as hi density lattice
+
+lattice sq 0.4
+Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388
+region plane block INF INF INF INF -0.001 0.001
+lattice sq 10.0
+Lattice spacing in x,y,z = 0.31622777 0.31622777 0.31622777
+create_atoms 2 region plane
+Created 33489 atoms
+ using lattice units in orthogonal box = (-28.796757 -28.796757 -0.5) to (28.796757 28.796757 0.5)
+ create_atoms CPU = 0.001 seconds
+
+group big type 1
+400 atoms in group big
+group small type 2
+33489 atoms in group small
+set group small mass 0.01
+Setting atom values ...
+ 33489 settings made for mass
+
+# delete overlaps
+# must set 1-2 cutoff to non-zero value
+
+pair_style lj/cut 1.5
+pair_coeff 1 1 1.0 1.0
+pair_coeff 2 2 0.0 1.0 0.0
+pair_coeff 1 2 1.0 1.0
+
+delete_atoms overlap 1.5 small big
+System init for delete_atoms ...
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 1.8
+ ghost atom cutoff = 1.8
+ binsize = 0.9, bins = 64 64 2
+ 2 neighbor lists, perpetual/occasional/extra = 1 1 0
+ (1) command delete_atoms, occasional
+ attributes: full, newton on
+ pair build: full/bin/atomonly
+ stencil: full/bin/2d
+ bin: standard
+ (2) pair lj/cut, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton
+ stencil: half/bin/2d
+ bin: standard
+WARNING: Delete_atoms cutoff > minimum neighbor cutoff (src/delete_atoms.cpp:313)
+Deleted 13605 atoms, new total = 20284
+
+# SRD run
+
+reset_timestep 0
+
+velocity small create 1.44 87287 loop geom
+
+neighbor 0.8 multi
+neigh_modify delay 0 every 1 check yes
+neigh_modify exclude molecule/intra big include big
+
+comm_modify mode multi group big vel yes
+neigh_modify include big
+
+# no pairwise interactions with small particles
+
+pair_style line/lj 2.5
+pair_coeff 1 1 1.0 1.0 1.0 1.0 2.5
+pair_coeff 2 2 0.0 0.0 0.0 1.0 0.0
+pair_coeff 1 2 1.0 0.2 1.0 0.2 2.5
+
+# use fix SRD to push small particles out from inside big ones
+# if comment out, big particles won't see SRD particles
+
+timestep 0.0002
+
+fix 1 big rigid molecule
+ 100 rigid bodies with 400 atoms
+fix 2 small srd 20 big 1.0 0.25 49894 search 0.2 cubic warn 0.0001 shift yes 49829 overlap yes collision noslip
+
+fix 3 all deform 1 x scale 1.25 y scale 1.25
+fix 4 all enforce2d
+
+# diagnostics
+
+compute tsmall small temp/deform
+compute tbig big temp
+variable pebig equal pe*atoms/count(big)
+variable ebig equal etotal*atoms/count(big)
+
+compute_modify tbig extra/dof -350
+
+compute 1 big erotate/asphere
+compute 2 all ke
+compute 3 all pe
+variable toteng equal (c_1+c_2+c_3)/atoms
+
+thermo 1000
+thermo_style custom step c_tsmall f_2[9] c_1 etotal v_pebig v_ebig press
+thermo_modify temp tbig
+WARNING: Temperature for thermo pressure is not for group all (src/thermo.cpp:533)
+
+compute 10 big property/atom end1x end1y end2x end2y
+
+#dump 1 all custom 500 dump1.atom.srd id type x y z ix iy iz
+#dump 2 all custom 500 dump1.line.srd id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+run 10000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419
+
+@Article{Gissinger24,
+ author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor},
+ title = {Type Label Framework for Bonded Force Fields in LAMMPS},
+ journal = {J. Phys. Chem. B},
+ year = 2024,
+ volume = 128,
+ number = 13,
+ pages = {3282–-3297}
+}
+
+- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
+
+@Article{Intveld08,
+ author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
+ title = {Accurate and Efficient Methods for Modeling Colloidal
+ Mixtures in an Explicit Solvent using Molecular Dynamics},
+ journal = {Comput.\ Phys.\ Commut.},
+ year = 2008,
+ volume = 179,
+ pages = {320--329}
+}
+
+@article{Shire2020,
+ author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
+ title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
+ Detection Applied to Investigate the Quasi-Static Limit},
+ journal = {Computational Particle Mechanics},
+ year = {2020}
+@article{Monti2022,
+ author = {Monti, Joseph M. and Clemmer, Joel T. and Srivastava,
+ Ishan and Silbert, Leonardo E. and Grest, Gary S.
+ and Lechman, Jeremy B.},
+ title = {Large-scale frictionless jamming with power-law particle
+ size distributions},
+ journal = {Phys. Rev. E},
+ volume = {106}
+ issue = {3}
+ year = {2022}
+}
+
+- fix srd command: doi:10.1063/1.3419070
+
+@Article{Petersen10,
+ author = {M. K. Petersen and J. B. Lechman and S. J. Plimpton and
+ G. S. Grest and in 't Veld, P. J. and P. R. Schunk},
+ title = {Mesoscale Hydrodynamics via Stochastic Rotation
+ Dynamics: Comparison with {L}ennard-{J}ones Fluid},
+ journal = {J.~Chem.\ Phys.},
+ year = 2010,
+ volume = 132,
+ pages = 174106
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+WARNING: Using compute temp/deform with inconsistent fix deform remap option (src/compute_temp_deform.cpp:71)
+WARNING: Using fix srd with box deformation but no SRD thermostat (src/SRD/fix_srd.cpp:405)
+SRD info:
+ SRD/big particles = 19884 400
+ big particle diameter max/min = 1.9988171 0.50330564
+ SRD temperature & lamda = 1 0.04
+ SRD max distance & max velocity = 0.16 40
+ SRD grid counts: 230 230 1
+ SRD grid size: request, actual (xyz) = 0.25, 0.25040659 0.25040659 1
+ SRD per actual grid cell = 0.45503978
+ SRD viscosity = 1.0732692
+ big/SRD mass density ratio = 12.298053
+WARNING: SRD bin size for fix srd differs from user request (src/SRD/fix_srd.cpp:2809)
+WARNING: Fix srd grid size > 1/4 of big particle diameter (src/SRD/fix_srd.cpp:2830)
+ # of rescaled SRD velocities = 0
+ ave/max small velocity = 15.906001 29.105426
+ ave/max big velocity = 0 0
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 3.3
+ ghost atom cutoff = 3.3
+ binsize = 1.65, bins = 35 35 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/multi/atomonly/newton
+ stencil: half/multi/2d
+ bin: multi
+Per MPI rank memory allocation (min/avg/max) = 9.752 | 9.762 | 9.781 Mbytes
+ Step c_tsmall f_2[9] c_1 TotEng v_pebig v_ebig Press
+ 0 1.4809886 0 0 0 0 0 0
+ 1000 1.2265081 1.1522909 0.00027866069 0.0022427232 0 0.1137285 0.58262976
+ 2000 1.1757141 1.1251323 0.00040597152 0.003287261 0 0.16669701 0.27109853
+ 3000 1.126304 1.0646585 0.00050542958 0.0040748897 0 0.20663766 0.36959653
+ 4000 1.1140297 1.0761435 0.00060430927 0.0052863645 0 0.26807154 0.35099205
+ 5000 1.0823307 1.0256814 0.00066557681 0.0051213284 0 0.25970256 0.28491631
+ 6000 1.0656188 1.0387091 0.00066454105 0.005213537 0 0.26437846 0.2150581
+ 7000 1.0600108 1.0099931 0.0007238719 0.005470459 0 0.27740698 0.21846568
+ 8000 1.0464374 1.0049819 0.00061068366 0.0053702582 0 0.27232579 0.1326171
+ 9000 1.0381097 1.0126049 0.00057318728 0.0055976321 0 0.28385592 0.16797796
+ 10000 1.0312982 1.0018962 0.00050597007 0.0051153126 0 0.2593975 0.15281043
+Loop time of 1.2997 on 8 procs for 10000 steps with 20284 atoms
+
+Performance: 132953.355 tau/day, 7694.060 timesteps/s, 156.066 Matom-step/s
+96.7% CPU use with 8 MPI tasks x 1 OpenMP threads
+
+MPI task timing breakdown:
+Section | min time | avg time | max time |%varavg| %total
+---------------------------------------------------------------
+Pair | 0.01406 | 0.014495 | 0.01532 | 0.3 | 1.12
+Neigh | 0.0051916 | 0.0053424 | 0.0054386 | 0.1 | 0.41
+Comm | 0.062053 | 0.065305 | 0.069014 | 0.9 | 5.02
+Output | 0.00062289 | 0.00065254 | 0.00077243 | 0.0 | 0.05
+Modify | 1.169 | 1.178 | 1.1905 | 0.6 | 90.64
+Other | | 0.03589 | | | 2.76
+
+Nlocal: 2535.5 ave 2637 max 2476 min
+Histogram: 1 3 1 1 0 0 0 0 1 1
+Nghost: 31.125 ave 42 max 25 min
+Histogram: 3 0 1 2 0 0 0 0 1 1
+Neighs: 0 ave 0 max 0 min
+Histogram: 8 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 0
+Ave neighs/atom = 0
+Neighbor list builds = 500
+Dangerous builds = 0
+
+#undump 1
+#undump 2
+unfix 3
+
+change_box all triclinic
+Changing box ...
+ triclinic box = (-35.995947 -35.995947 -0.5) to (35.995947 35.995947 0.5) with tilt (0 0 0)
+
+fix 2 small srd 20 big 1.0 0.25 49894 search 0.2 cubic warn 0.0001 shift yes 49829 overlap yes collision noslip #tstat yes
+
+#dump 1 all custom 500 dump2.atom.srd id type x y z ix iy iz
+#dump 2 all custom 500 dump2.line.srd id type # c_10[1] c_10[2] c_10[3] c_10[4]
+
+fix 3 all deform 1 xy erate 0.0002 units box remap v
+
+run 40000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+WARNING: Using fix srd with box deformation but no SRD thermostat (src/SRD/fix_srd.cpp:405)
+SRD info:
+ SRD/big particles = 19884 400
+ big particle diameter max/min = 1.9988171 0.50330564
+ SRD temperature & lamda = 1 0.04
+ SRD max distance & max velocity = 0.16 40
+ SRD grid counts: 288 288 1
+ SRD grid size: request, actual (xyz) = 0.25, 0.24997185 0.24997185 1
+ SRD per actual grid cell = 0.26976265
+ SRD viscosity = 1.5799049
+ big/SRD mass density ratio = 20.672578
+WARNING: SRD bin size for fix srd differs from user request (src/SRD/fix_srd.cpp:2809)
+WARNING: Fix srd grid size > 1/4 of big particle diameter (src/SRD/fix_srd.cpp:2830)
+ # of rescaled SRD velocities = 1
+ ave/max small velocity = 12.481632 40
+ ave/max big velocity = 0.58815233 1.5489134
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 3.3
+ ghost atom cutoff = 3.3
+ binsize = 1.65, bins = 44 44 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair line/lj, perpetual
+ attributes: half, newton on
+ pair build: half/multi/atomonly/newton/tri
+ stencil: half/multi/2d/tri
+ bin: multi
+Per MPI rank memory allocation (min/avg/max) = 11.95 | 11.95 | 11.95 Mbytes
+ Step c_tsmall f_2[9] c_1 TotEng v_pebig v_ebig Press
+ 10000 0.98889306 0 0.00050595647 0.0051153289 0 0.25939833 0.020019811
+ 11000 0.98995417 0.99721412 0.0005166709 0.0054320552 0 0.27545952 0.03376188
+ 12000 0.99401168 0.95502319 0.00053659416 0.0054974426 0 0.27877531 0.056856034
+ 13000 0.98790692 0.96488357 0.00061076364 0.0053196554 0 0.26975972 0.2677228
+ 14000 0.98939233 0.98809694 0.00052317779 0.0050536922 0 0.25627273 0.20381427
+ 15000 0.99046365 0.97048828 0.00056914402 0.0053274908 0 0.27015706 0.082163088
+ 16000 0.99743447 1.0111983 0.00053706165 0.0048068384 0 0.24375478 0.06429569
+ 17000 0.99622359 1.0124982 0.0005905197 0.0055966416 -7.4541903e-05 0.2838057 0.25418037
+ 18000 0.99283929 0.99581721 0.00061730878 0.0059098964 -0.00014754106 0.29969084 0.12701702
+ 19000 0.99175517 1.0115581 0.0005128714 0.0059214809 -0.00046203987 0.30027829 0.2640506
+ 20000 0.98895811 0.97731528 0.00052294314 0.0055670021 -0.0016029702 0.28230268 0.26239209
+ 21000 0.98904093 0.98120258 0.00054169978 0.0052762731 -0.0026834879 0.26755981 0.15432481
+ 22000 0.98773149 0.99217218 0.00056091602 0.0052754729 -0.0044093345 0.26751923 0.2208051
+ 23000 0.98802862 0.96564549 0.00062226338 0.0053263454 -0.008790914 0.27009898 0.18058977
+ 24000 0.98754002 1.024015 0.00057178953 0.0054083382 -0.0094859317 0.27425683 0.01598147
+ 25000 0.98656341 0.94647246 0.00066215791 0.0053555849 -0.014877058 0.27158171 0.28794628
+ 26000 0.98750471 1.0077626 0.00058955769 0.0057081639 -0.013151869 0.28946099 0.20814911
+ 27
\ No newline at end of file
diff --git a/examples/COUPLE/plugin/liblammpsplugin.c b/examples/COUPLE/plugin/liblammpsplugin.c
index c8a38c21e4..5b1308a5cc 100644
--- a/examples/COUPLE/plugin/liblammpsplugin.c
+++ b/examples/COUPLE/plugin/liblammpsplugin.c
@@ -81,6 +81,7 @@ liblammpsplugin_t *liblammpsplugin_load(const char *lib)
ADDSYM(python_finalize);
ADDSYM(error);
+ ADDSYM(expand);
ADDSYM(file);
ADDSYM(command);
diff --git a/examples/COUPLE/plugin/liblammpsplugin.h b/examples/COUPLE/plugin/liblammpsplugin.h
index b444f75215..b2df98d630 100644
--- a/examples/COUPLE/plugin/liblammpsplugin.h
+++ b/examples/COUPLE/plugin/liblammpsplugin.h
@@ -126,6 +126,7 @@ struct _liblammpsplugin {
void (*python_finalize)();
void (*error)(void *, int, const char *);
+ char *(*expand)(void *, const char *);
void (*file)(void *, const char *);
char *(*command)(void *, const char *);
diff --git a/examples/bpm/impact/in.bpm.impact.rotational b/examples/bpm/impact/in.bpm.impact.rotational
index 698fa22fb8..caca37ddc0 100644
--- a/examples/bpm/impact/in.bpm.impact.rotational
+++ b/examples/bpm/impact/in.bpm.impact.rotational
@@ -45,7 +45,7 @@ thermo 100
thermo_modify lost ignore lost/bond ignore
#dump 1 all custom 100 atomDump id radius x y z c_nbond
-dump 2 all local 100 brokenDump f_brkbond[1] f_brkbond[2] f_brkbond[3]
-dump_modify 2 header no
+#dump 2 all local 100 brokenDump f_brkbond[1] f_brkbond[2] f_brkbond[3]
+#dump_modify 2 header no
run 7500
diff --git a/examples/bpm/impact/in.bpm.impact.spring b/examples/bpm/impact/in.bpm.impact.spring
index 7c5c56841b..d135de6f9e 100644
--- a/examples/bpm/impact/in.bpm.impact.spring
+++ b/examples/bpm/impact/in.bpm.impact.spring
@@ -47,7 +47,7 @@ thermo 100
thermo_modify lost ignore lost/bond ignore
#dump 1 all custom 100 atomDump id x y z c_nbond
-dump 2 all local 100 brokenDump f_brkbond[1] f_brkbond[2] f_brkbond[3]
-dump_modify 2 header no
+#dump 2 all local 100 brokenDump f_brkbond[1] f_brkbond[2] f_brkbond[3]
+#dump_modify 2 header no
run 7500
diff --git a/examples/granregion/log.16Mar23.granregion.box.g++.1 b/examples/granregion/log.16Mar23.granregion.box.g++.1
deleted file mode 100644
index b7bdeda1d4..0000000000
--- a/examples/granregion/log.16Mar23.granregion.box.g++.1
+++ /dev/null
@@ -1,484 +0,0 @@
-LAMMPS (8 Feb 2023)
-OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
- using 1 OpenMP thread(s) per MPI task
-# pouring spheres into container box
-
-units lj
-atom_style sphere
-boundary f f f
-dimension 3
-comm_modify vel yes
-
-region box block -10 10 -10 10 -10 10 units box
-create_box 2 box
-Created orthogonal box = (-10 -10 -10) to (10 10 10)
- 1 by 1 by 1 MPI processor grid
-
-pair_style hybrid gran/hooke 4000.0 NULL 100.0 NULL 0.5 1
-pair_coeff * * gran/hooke
-
-region container block -6 6 -6 6 -6 6 units box
-fix container all wall/gran/region hooke/history 4000.0 NULL 100.0 NULL 0.5 1 region container
-
-neighbor 0.3 bin
-neigh_modify delay 0 every 1 check yes
-
-fix 2 all nve/sphere
-fix 3 all gravity 1.0 vector 0 0 -1
-
-region slab block -2 2 -2 2 -2 2 units box
-fix ins all pour 100 2 4767548 vol 0.4 10 diam one 1.0 region slab ignore
-Particle insertion: 48 every 566 steps, 100 by step 1133
-
-timestep 0.005
-
-compute 1 all temp
-compute_modify 1 dynamic/dof yes
-
-compute 2 all temp/sphere
-compute_modify 2 dynamic/dof yes
-
-thermo 100
-thermo_style custom step atoms temp c_1 c_2 press
-thermo_modify lost ignore
-compute_modify thermo_temp dynamic/dof yes
-
-#dump 2 all image 100 image.*.jpg type type # zoom 1.4 adiam 1.0 box no 0.0 axes yes 0.9 0.03
-#dump_modify 2 pad 5
-
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Neighbor list info ...
- update: every = 1 steps, delay = 0 steps, check = yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 1.3
- ghost atom cutoff = 1.3
- binsize = 0.65, bins = 31 31 31
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair gran/hooke, perpetual
- attributes: half, newton on, size
- pair build: half/size/bin/newton
- stencil: half/bin/3d
- bin: standard
-Per MPI rank memory allocation (min/avg/max) = 0.5861 | 0.5861 | 0.5861 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 0 0 0 0 0 0
-WARNING: Fewer insertions than requested (src/GRANULAR/fix_pour.cpp:681)
- 100 30 0.803783 0.803783 0.39507978 0.0029137134
- 200 30 1.1967995 1.1967995 0.5882574 0.0043383984
- 300 30 1.2814686 1.2814686 0.62987441 0.0046453238
- 400 30 0.82331082 0.82331082 0.41173176 0.0029845017
- 500 30 0.7708462 0.7708462 0.38777784 0.0043831147
-WARNING: Fewer insertions than requested (src/GRANULAR/fix_pour.cpp:681)
- 600 64 0.51564897 0.51564897 0.26631577 0.0040059368
- 700 64 0.57239348 0.57239348 0.29566901 0.0045075987
- 800 64 0.61837087 0.61837087 0.32195387 0.0048123564
- 900 64 0.53061888 0.53061888 0.28564763 0.0055906552
- 1000 64 0.496299 0.496299 0.26801572 0.0061169128
- 1100 64 0.46068308 0.46068308 0.24699057 0.0055717699
-WARNING: Fewer insertions than requested (src/GRANULAR/fix_pour.cpp:681)
- 1200 99 0.39206225 0.39206225 0.21356546 0.0066294211
- 1300 99 0.38624966 0.38624966 0.21345854 0.0049051051
- 1400 99 0.35615284 0.35615284 0.19785725 0.0046170772
- 1500 99 0.31486693 0.31486693 0.17429055 0.0064903432
- 1600 99 0.26369001 0.26369001 0.15095266 0.0045226847
- 1700 100 0.1925923 0.1925923 0.11308104 0.007362313
- 1800 100 0.13724978 0.13724978 0.083276845 0.0058136373
- 1900 100 0.077212636 0.077212636 0.053159386 0.0016509598
- 2000 100 0.065294031 0.065294031 0.04372752 0.0020346467
- 2100 100 0.057431398 0.057431398 0.037977068 0.0012681098
- 2200 100 0.059093045 0.059093045 0.037435193 0.00096610799
- 2300 100 0.03422338 0.03422338 0.025491304 0.00069886052
- 2400 100 0.020558284 0.020558284 0.016163009 0.0017260663
- 2500 100 0.015339709 0.015339709 0.012329236 0.00041308031
- 2600 100 0.012891354 0.012891354 0.009766054 0.00030356722
- 2700 100 0.0092634449 0.0092634449 0.0073580108 0.00077723051
- 2800 100 0.0073925841 0.0073925841 0.0059932218 0.00016466767
- 2900 100 0.0081228267 0.0081228267 0.006281761 0.00013828388
- 3000 100 0.0041833223 0.0041833223 0.0035147096 0.00013160599
- 3100 100 0.0035930775 0.0035930775 0.0030039922 0.00060639771
- 3200 100 0.0030824465 0.0030824465 0.0026541293 0.00047391014
- 3300 100 0.0035087522 0.0035087522 0.0027664508 0.00014080317
- 3400 100 0.0018537868 0.0018537868 0.0017099705 6.3326674e-05
- 3500 100 0.0015371228 0.0015371228 0.0014155433 0.00021612522
- 3600 100 0.001708556 0.001708556 0.0014369892 8.1034202e-05
- 3700 100 0.00095948652 0.00095948652 0.0009788528 3.4694023e-05
- 3800 100 0.00091875668 0.00091875668 0.00086805146 3.9373686e-05
- 3900 100 0.001557068 0.001557068 0.001159526 2.5178607e-05
- 4000 100 0.00062012451 0.00062012451 0.00066806922 5.6680551e-06
- 4100 100 0.00060940771 0.00060940771 0.00065614741 1.0137901e-05
- 4200 100 0.00059538437 0.00059538437 0.00064501521 7.3679744e-06
- 4300 100 0.00052946048 0.00052946048 0.00059353641 5.9225081e-06
- 4400 100 0.00051202281 0.00051202281 0.00057524772 3.6198435e-05
- 4500 100 0.00049986632 0.00049986632 0.00055754521 2.2275519e-05
- 4600 100 0.00048187334 0.00048187334 0.00053988815 2.2015243e-05
- 4700 100 0.00045261491 0.00045261491 0.00050298355 8.9681339e-05
- 4800 100 0.00034965427 0.00034965427 0.0004278781 1.0983535e-05
- 4900 100 0.00033555621 0.00033555621 0.00041435167 2.9266598e-05
- 5000 100 0.00031387148 0.00031387148 0.00039605781 2.5628425e-05
-Loop time of 0.073938 on 1 procs for 5000 steps with 100 atoms
-
-Performance: 29213677.752 tau/day, 67624.254 timesteps/s, 6.762 Matom-step/s
-98.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.0084547 | 0.0084547 | 0.0084547 | 0.0 | 11.43
-Neigh | 0.011399 | 0.011399 | 0.011399 | 0.0 | 15.42
-Comm | 0.00077205 | 0.00077205 | 0.00077205 | 0.0 | 1.04
-Output | 0.00042663 | 0.00042663 | 0.00042663 | 0.0 | 0.58
-Modify | 0.049692 | 0.049692 | 0.049692 | 0.0 | 67.21
-Other | | 0.003194 | | | 4.32
-
-Nlocal: 100 ave 100 max 100 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: 164 ave 164 max 164 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 164
-Ave neighs/atom = 1.64
-Neighbor list builds = 281
-Dangerous builds = 0
-
-region container delete
-variable theta equal (step-5000)*(4.0*PI/5000)
-region container block -6 6 -6 6 -6 6 units box rotate v_theta 0 0 0 0 0 1
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-WARNING: Region properties for region container changed between runs, resetting its motion (src/GRANULAR/fix_wall_gran_region.cpp:101)
-Per MPI rank memory allocation (min/avg/max) = 5.837 | 5.837 | 5.837 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 5000 100 0.00031387148 0.00031387148 0.00039605781 2.6174978e-05
- 5100 100 0.54537023 0.54537023 0.30042175 0.0087427352
- 5200 100 0.57210852 0.57210852 0.3192468 0.0098134067
- 5300 100 0.7168108 0.7168108 0.38577893 0.011004584
- 5400 100 0.78895524 0.78895524 0.41889428 0.013555713
- 5500 100 0.87797874 0.87797874 0.45689223 0.01565356
- 5600 100 0.95424379 0.95424379 0.48830429 0.014707858
- 5700 100 1.0046012 1.0046012 0.51054927 0.01469179
- 5800 100 1.0371453 1.0371453 0.5262568 0.015576788
- 5900 100 1.0545743 1.0545743 0.5361173 0.01589889
- 6000 100 1.0932949 1.0932949 0.55402214 0.017484573
- 6100 100 1.1148364 1.1148364 0.56241126 0.01721788
- 6200 100 1.1315267 1.1315267 0.57050887 0.017961246
- 6300 100 1.1506124 1.1506124 0.58009471 0.017159062
- 6400 100 1.1663328 1.1663328 0.5876586 0.017935311
- 6500 100 1.1821086 1.1821086 0.59595161 0.018005316
- 6600 100 1.2039397 1.2039397 0.60567523 0.021604661
- 6700 100 1.2269912 1.2269912 0.61770225 0.018907995
- 6800 100 1.2447034 1.2447034 0.62576519 0.020537655
- 6900 100 1.2625323 1.2625323 0.63486698 0.02010613
- 7000 100 1.2617127 1.2617127 0.63318163 0.019670429
- 7100 100 1.260715 1.260715 0.63311254 0.01981063
- 7200 100 1.2790404 1.2790404 0.64079 0.020218912
- 7300 100 1.2760228 1.2760228 0.6395331 0.021749952
- 7400 100 1.2799657 1.2799657 0.64139078 0.020472917
- 7500 100 1.2846472 1.2846472 0.64343076 0.020610029
- 7600 100 1.2883963 1.2883963 0.6449186 0.020748906
- 7700 100 1.2926891 1.2926891 0.64684538 0.020599574
- 7800 100 1.3033565 1.3033565 0.65126214 0.021822145
- 7900 100 1.3025797 1.3025797 0.65069472 0.02121384
- 8000 100 1.3052551 1.3052551 0.65209898 0.021398725
- 8100 100 1.3069868 1.3069868 0.65304899 0.021246465
- 8200 100 1.3091964 1.3091964 0.65438143 0.021222398
- 8300 100 1.3101277 1.3101277 0.65518554 0.021329556
- 8400 100 1.3117162 1.3117162 0.65551056 0.021468306
- 8500 100 1.3143892 1.3143892 0.65683087 0.021610874
- 8600 100 1.3164123 1.3164123 0.65789423 0.021564818
- 8700 100 1.3186854 1.3186854 0.65914031 0.021745193
- 8800 100 1.3216944 1.3216944 0.66041385 0.022178553
- 8900 100 1.3207558 1.3207558 0.65988071 0.021810027
- 9000 100 1.3213131 1.3213131 0.66020938 0.021890893
- 9100 100 1.3224905 1.3224905 0.66088289 0.021824994
- 9200 100 1.3240681 1.3240681 0.66183168 0.021784616
- 9300 100 1.3254174 1.3254174 0.66279883 0.021664485
- 9400 100 1.3326916 1.3326916 0.66633358 0.021979709
- 9500 100 1.3405062 1.3405062 0.66975745 0.022238702
- 9600 100 1.3363695 1.3363695 0.66742377 0.022104646
- 9700 100 1.3363391 1.3363391 0.6673032 0.022066628
- 9800 100 1.334875 1.334875 0.6665532 0.021902669
- 9900 100 1.3339805 1.3339805 0.66614358 0.022018971
- 10000 100 1.3337897 1.3337897 0.66609803 0.022184385
-Loop time of 0.213875 on 1 procs for 5000 steps with 100 atoms
-
-Performance: 10099379.673 tau/day, 23378.194 timesteps/s, 2.338 Matom-step/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.031863 | 0.031863 | 0.031863 | 0.0 | 14.90
-Neigh | 0.026844 | 0.026844 | 0.026844 | 0.0 | 12.55
-Comm | 0.0011059 | 0.0011059 | 0.0011059 | 0.0 | 0.52
-Output | 0.00072907 | 0.00072907 | 0.00072907 | 0.0 | 0.34
-Modify | 0.14874 | 0.14874 | 0.14874 | 0.0 | 69.54
-Other | | 0.004595 | | | 2.15
-
-Nlocal: 100 ave 100 max 100 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: 186 ave 186 max 186 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 186
-Ave neighs/atom = 1.86
-Neighbor list builds = 626
-Dangerous builds = 0
-
-region container delete
-region container block -6 6 -6 6 -6 6 units box
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 5.837 | 5.837 | 5.837 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 10000 100 1.3337897 1.3337897 0.66609803 0.022303323
- 10100 100 0.29960521 0.29960521 0.17535846 0.0099382421
- 10200 100 0.15737069 0.15737069 0.1024212 0.0045555648
- 10300 100 0.087501771 0.087501771 0.070895975 0.00093482858
- 10400 100 0.069967301 0.069967301 0.059253397 0.0008760803
- 10500 100 0.056137153 0.056137153 0.047810947 0.0009202993
- 10600 100 0.046835352 0.046835352 0.039400006 0.0011343063
- 10700 100 0.035422167 0.035422167 0.030746587 0.00081816474
- 10800 100 0.029180739 0.029180739 0.02627693 0.00039292712
- 10900 100 0.025094915 0.025094915 0.023244435 0.00044742245
- 11000 100 0.018014893 0.018014893 0.016862375 0.00017018411
- 11100 100 0.014549072 0.014549072 0.014551468 0.00020988549
- 11200 100 0.012586232 0.012586232 0.012569333 0.00019035396
- 11300 100 0.01003586 0.01003586 0.010253286 0.0004598214
- 11400 100 0.0067515743 0.0067515743 0.0069569741 0.00040592883
- 11500 100 0.0057834612 0.0057834612 0.0060790719 0.00013993531
- 11600 100 0.005496335 0.005496335 0.0056855922 0.00013419698
- 11700 100 0.0051524178 0.0051524178 0.0053354591 7.4388594e-05
- 11800 100 0.004911096 0.004911096 0.0051415984 0.00010665621
- 11900 100 0.004687138 0.004687138 0.0049520306 6.7492552e-05
- 12000 100 0.0041516495 0.0041516495 0.0044351666 4.3841199e-05
- 12100 100 0.0033948026 0.0033948026 0.0036851466 4.2010682e-05
- 12200 100 0.0029584231 0.0029584231 0.0031151054 5.1583068e-05
- 12300 100 0.0028401114 0.0028401114 0.0030094644 4.5499489e-05
- 12400 100 0.002650861 0.002650861 0.0027699066 0.00015370263
- 12500 100 0.0026018053 0.0026018053 0.0027178583 3.219734e-05
- 12600 100 0.0025788693 0.0025788693 0.0026939358 3.6615314e-05
- 12700 100 0.0024798907 0.0024798907 0.0026181033 3.0688648e-05
- 12800 100 0.0023930719 0.0023930719 0.0025491721 7.5200629e-05
- 12900 100 0.0022100795 0.0022100795 0.0024231125 2.3210159e-05
- 13000 100 0.0021267492 0.0021267492 0.0023312893 2.463758e-05
- 13100 100 0.0020732193 0.0020732193 0.0022673707 2.5656089e-05
- 13200 100 0.0020010659 0.0020010659 0.0021834293 2.4913608e-05
- 13300 100 0.0019645929 0.0019645929 0.0021311636 6.8209063e-05
- 13400 100 0.0019236711 0.0019236711 0.0020928899 2.3805429e-05
- 13500 100 0.001857137 0.001857137 0.0020387354 3.1316165e-05
- 13600 100 0.0018399111 0.0018399111 0.0020204586 2.27689e-05
- 13700 100 0.0016240252 0.0016240252 0.0017492695 0.00023180963
- 13800 100 0.0015856393 0.0015856393 0.0017164012 4.2480373e-05
- 13900 100 0.0014770352 0.0014770352 0.001571278 2.3192512e-05
- 14000 100 0.0013712974 0.0013712974 0.0014839763 4.7410142e-05
- 14100 100 0.0012396318 0.0012396318 0.0013778109 1.3867692e-05
- 14200 100 0.0011502319 0.0011502319 0.0012780584 0.00018410725
- 14300 100 0.0011020896 0.0011020896 0.0012348357 7.8122446e-05
- 14400 100 0.0010486644 0.0010486644 0.0011483239 0.00015074963
- 14500 100 0.00094167471 0.00094167471 0.0010033809 1.9550083e-05
- 14600 100 0.00080775791 0.00080775791 0.00087434944 4.6043659e-05
- 14700 100 0.00076176039 0.00076176039 0.00083462461 8.1916038e-05
- 14800 100 0.00073637901 0.00073637901 0.00081306941 9.1126903e-06
- 14900 100 0.00072682383 0.00072682383 0.00079396231 8.9944449e-06
- 15000 100 0.00070207518 0.00070207518 0.00077168127 2.2155171e-05
-Loop time of 0.0756704 on 1 procs for 5000 steps with 100 atoms
-
-Performance: 28544845.995 tau/day, 66076.032 timesteps/s, 6.608 Matom-step/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 | 0.0079484 | 0.0079484 | 0.0079484 | 0.0 | 10.50
-Neigh | 0.0043035 | 0.0043035 | 0.0043035 | 0.0 | 5.69
-Comm | 0.00064796 | 0.00064796 | 0.00064796 | 0.0 | 0.86
-Output | 0.00044137 | 0.00044137 | 0.00044137 | 0.0 | 0.58
-Modify | 0.059329 | 0.059329 | 0.059329 | 0.0 | 78.40
-Other | | 0.003 | | | 3.97
-
-Nlocal: 100 ave 100 max 100 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: 165 ave 165 max 165 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 165
-Ave neighs/atom = 1.65
-Neighbor list builds = 101
-Dangerous builds = 0
-
-region container delete
-variable theta equal (step-15000)*(4.0*PI/5000)
-region container block -6 6 -6 6 -6 6 units box rotate v_theta 0 0 0 1 1 1
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 5.837 | 5.837 | 5.837 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 15000 100 0.00070207518 0.00070207518 0.00077168127 2.0192237e-05
- 15100 100 1.1160127 1.1160127 0.69939857 0.01822663
- 15200 100 1.2546016 1.2546016 0.78819474 0.017013321
- 15300 100 1.1930613 1.1930613 0.77429911 0.015607175
- 15400 100 1.3791371 1.3791371 0.87875984 0.018478669
- 15500 100 1.6063158 1.6063158 0.98587325 0.027330546
- 15600 100 1.7719925 1.7719925 1.0773314 0.025651867
- 15700 100 1.8053439 1.8053439 1.0934572 0.033790716
- 15800 100 1.959016 1.959016 1.1465659 0.033715025
- 15900 100 2.1365654 2.1365654 1.2217718 0.03009529
- 16000 100 2.2883378 2.2883378 1.2768504 0.030582689
- 16100 100 2.4384012 2.4384012 1.3513708 0.031435936
- 16200 100 2.3571308 2.3571308 1.29989 0.034824253
- 16300 100 2.4671092 2.4671092 1.3516798 0.032364282
- 16400 100 2.4411936 2.4411936 1.3385743 0.031890134
- 16500 100 2.4930545 2.4930545 1.3635435 0.032601452
- 16600 100 2.5771906 2.5771906 1.4113993 0.034547128
- 16700 100 2.723199 2.723199 1.4769168 0.036582811
- 16800 100 2.8616886 2.8616886 1.5379462 0.036224198
- 16900 100 2.9517942 2.9517942 1.5872824 0.038757052
- 17000 100 3.0150335 3.0150335 1.6337001 0.044031411
- 17100 100 3.2211536 3.2211536 1.7374532 0.041483093
- 17200 100 3.2509982 3.2509982 1.7512835 0.042718835
- 17300 100 3.262348 3.262348 1.7648674 0.049291835
- 17400 100 3.4050702 3.4050702 1.8352043 0.04435958
- 17500 100 3.5236051 3.5236051 1.9003369 0.045640904
- 17600 100 3.4005287 3.4005287 1.8404347 0.044832295
- 17700 100 3.3190992 3.3190992 1.8154147 0.046365998
- 17800 100 3.2981138 3.2981138 1.811389 0.04607132
- 17900 100 3.2839466 3.2839466 1.7863773 0.045628167
- 18000 100 3.1519747 3.1519747 1.7382103 0.041739193
- 18100 100 3.1205305 3.1205305 1.7101547 0.043511342
- 18200 100 3.2014874 3.2014874 1.746745 0.04452173
- 18300 100 3.2739622 3.2739622 1.7796276 0.041345823
- 18400 100 3.3157359 3.3157359 1.8158932 0.047414
- 18500 100 3.5592096 3.5592096 1.9307695 0.046458132
- 18600 100 3.6594352 3.6594352 1.9851626 0.046396953
- 18700 100 3.6392917 3.6392917 1.9701361 0.047272883
- 18800 100 3.8490892 3.8490892 2.0832481 0.052344106
- 18900 100 3.8465732 3.8465732 2.0790411 0.054203126
- 19000 100 4.010008 4.010008 2.1620722 0.054242542
- 19100 100 4.0417392 4.0417392 2.168506 0.066484948
- 19200 100 3.8791541 3.8791541 2.0791914 0.060788142
- 19300 100 4.1023603 4.1023603 2.1944127 0.056461298
- 19400 100 4.1294375 4.1294375 2.2009649 0.061099665
- 19500 100 3.9274112 3.9274112 2.0877398 0.066068401
- 19600 100 4.066229 4.066229 2.1678487 0.055961003
- 19700 100 3.9829257 3.9829257 2.1184329 0.061961838
- 19800 100 4.0303258 4.0303258 2.14544 0.053667616
- 19900 100 3.9385166 3.9385166 2.1074364 0.060804382
- 20000 100 3.8534401 3.8534401 2.0796496 0.057588336
-Loop time of 0.167801 on 1 procs for 5000 steps with 100 atoms
-
-Performance: 12872385.064 tau/day, 29797.188 timesteps/s, 2.980 Matom-step/s
-99.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.013849 | 0.013849 | 0.013849 | 0.0 | 8.25
-Neigh | 0.038108 | 0.038108 | 0.038108 | 0.0 | 22.71
-Comm | 0.0011352 | 0.0011352 | 0.0011352 | 0.0 | 0.68
-Output | 0.00073125 | 0.00073125 | 0.00073125 | 0.0 | 0.44
-Modify | 0.10927 | 0.10927 | 0.10927 | 0.0 | 65.12
-Other | | 0.004703 | | | 2.80
-
-Nlocal: 100 ave 100 max 100 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: 157 ave 157 max 157 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 157
-Ave neighs/atom = 1.57
-Neighbor list builds = 914
-Dangerous builds = 0
-
-region container delete
-region container block -6 6 -6 6 -6 6 units box
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 5.837 | 5.837 | 5.837 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 20000 100 3.8534401 3.8534401 2.0796496 0.057176513
- 20100 100 1.2993548 1.2993548 0.81360425 0.016153186
- 20200 100 1.0761427 1.0761427 0.68479926 0.014383682
- 20300 100 0.95889127 0.95889127 0.61193887 0.01314653
- 20400 100 0.89684043 0.89684043 0.57475851 0.011106613
- 20500 100 0.85901565 0.85901565 0.54372093 0.015717834
- 20600 100 0.98438384 0.98438384 0.6079212 0.013965815
- 20700 100 1.1061789 1.1061789 0.66511277 0.013698526
- 20800 100 1.0615292 1.0615292 0.6269413 0.014496973
- 20900 100 0.92980037 0.92980037 0.54727184 0.014568574
- 21000 100 0.71248123 0.71248123 0.41945517 0.01199152
- 21100 100 0.34785801 0.34785801 0.21699877 0.0062324631
- 21200 100 0.2452514 0.2452514 0.15265503 0.0041094159
- 21300 100 0.22937209 0.22937209 0.13988978 0.0034016589
- 21400 100 0.17765021 0.17765021 0.11334596 0.0024169343
- 21500 100 0.11484505 0.11484505 0.078119393 0.0020987046
- 21600 100 0.077564645 0.077564645 0.056175123 0.002107237
- 21700 100 0.049571519 0.049571519 0.039920177 0.00099127481
- 21800 100 0.0403125 0.0403125 0.032827882 0.00074671903
- 21900 100 0.02735168 0.02735168 0.023877339 0.0018186225
- 22000 100 0.02218474 0.02218474 0.01893178 0.00061438633
- 22100 100 0.021701103 0.021701103 0.0179008 0.00068071664
- 22200 100 0.01777321 0.01777321 0.014521817 0.00045296506
- 22300 100 0.016056338 0.016056338 0.01280709 0.00038192299
- 22400 100 0.013344054 0.013344054 0.010788852 0.0002617289
- 22500 100 0.011625836 0.011625836 0.0094362641 0.00045947089
- 22600 100 0.0068875777 0.0068875777 0.0058858647 0.00028566999
- 22700 100 0.0054081662 0.0054081662 0.0049545239 0.00029291503
- 22800 100 0.0045080107 0.0045080107 0.0042362636 0.00015217816
- 22900 100 0.0038090552 0.0038090552 0.0036905284 0.00049430003
- 23000 100 0.003551951 0.003551951 0.0033639677 0.00022478393
- 23100 100 0.0033854012 0.0033854012 0.00317485 0.00015179604
- 23200 100 0.0032951003 0.0032951003 0.0029760374 0.00015363208
- 23300 100 0.0022995179 0.0022995179 0.0023224311 0.00018791799
- 23400 100 0.0020834178 0.0020834178 0.0021434342 0.00020683744
- 23500 100 0.0019221303 0.0019221303 0.0020227484 0.00018960984
- 23600 100 0.0018393381 0.0018393381 0.0019560681 0.00021375486
- 23700 100 0.0019027035 0.0019027035 0.0020047598 0.00010932204
- 23800 100 0.0023612063 0.0023612063 0.0021895633 6.7671176e-05
- 23900 100 0.0019570853 0.0019570853 0.0018847178 5.6761457e-05
- 24000 100 0.0013011744 0.0013011744 0.0013899106 3.8847148e-05
- 24100 100 0.001281115 0.001281115 0.0013737259 3.7559904e-05
- 24200 100 0.0012136262 0.0012136262 0.0013002937 6.8727546e-05
- 24300 100 0.0011789934 0.0011789934 0.0012399341 3.7633632e-05
- 24400 100 0.0011601514 0.0011601514 0.0012186534 4.0077907e-05
- 24500 100 0.0010660295 0.0010660295 0.0011419405 0.00015757237
- 24600 100 0.00098862453 0.00098862453 0.0010869455 4.5714503e-05
- 24700 100 0.00087647136 0.00087647136 0.00091405278 3.3129869e-05
- 24800 100 0.00063913046 0.00063913046 0.00072298864 3.5424308e-05
- 24900 100 0.00062195456 0.00062195456 0.00070527087 2.6201396e-05
- 25000 100 0.00057599538 0.00057599538 0.00065623226 2.0096103e-05
-Loop time of 0.0771328 on 1 procs for 5000 steps with 100 atoms
-
-Performance: 28003659.560 tau/day, 64823.286 timesteps/s, 6.482 Matom-step/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 | 0.0090635 | 0.0090635 | 0.0090635 | 0.0 | 11.75
-Neigh | 0.012028 | 0.012028 | 0.012028 | 0.0 | 15.59
-Comm | 0.0008345 | 0.0008345 | 0.0008345 | 0.0 | 1.08
-Output | 0.00038777 | 0.00038777 | 0.00038777 | 0.0 | 0.50
-Modify | 0.051619 | 0.051619 | 0.051619 | 0.0 | 66.92
-Other | | 0.0032 | | | 4.15
-
-Nlocal: 100 ave 100 max 100 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: 158 ave 158 max 158 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 158
-Ave neighs/atom = 1.58
-Neighbor list builds = 310
-Dangerous builds = 0
-Total wall time: 0:00:00
diff --git a/examples/granregion/log.16Mar23.granregion.box.g++.4 b/examples/granregion/log.16Mar23.granregion.box.g++.4
deleted file mode 100644
index 0874981da4..0000000000
--- a/examples/granregion/log.16Mar23.granregion.box.g++.4
+++ /dev/null
@@ -1,484 +0,0 @@
-LAMMPS (8 Feb 2023)
-OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
- using 1 OpenMP thread(s) per MPI task
-# pouring spheres into container box
-
-units lj
-atom_style sphere
-boundary f f f
-dimension 3
-comm_modify vel yes
-
-region box block -10 10 -10 10 -10 10 units box
-create_box 2 box
-Created orthogonal box = (-10 -10 -10) to (10 10 10)
- 1 by 2 by 2 MPI processor grid
-
-pair_style hybrid gran/hooke 4000.0 NULL 100.0 NULL 0.5 1
-pair_coeff * * gran/hooke
-
-region container block -6 6 -6 6 -6 6 units box
-fix container all wall/gran/region hooke/history 4000.0 NULL 100.0 NULL 0.5 1 region container
-
-neighbor 0.3 bin
-neigh_modify delay 0 every 1 check yes
-
-fix 2 all nve/sphere
-fix 3 all gravity 1.0 vector 0 0 -1
-
-region slab block -2 2 -2 2 -2 2 units box
-fix ins all pour 100 2 4767548 vol 0.4 10 diam one 1.0 region slab ignore
-Particle insertion: 48 every 566 steps, 100 by step 1133
-
-timestep 0.005
-
-compute 1 all temp
-compute_modify 1 dynamic/dof yes
-
-compute 2 all temp/sphere
-compute_modify 2 dynamic/dof yes
-
-thermo 100
-thermo_style custom step atoms temp c_1 c_2 press
-thermo_modify lost ignore
-compute_modify thermo_temp dynamic/dof yes
-
-#dump 2 all image 100 image.*.jpg type type # zoom 1.4 adiam 1.0 box no 0.0 axes yes 0.9 0.03
-#dump_modify 2 pad 5
-
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Neighbor list info ...
- update: every = 1 steps, delay = 0 steps, check = yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 1.3
- ghost atom cutoff = 1.3
- binsize = 0.65, bins = 31 31 31
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair gran/hooke, perpetual
- attributes: half, newton on, size
- pair build: half/size/bin/newton
- stencil: half/bin/3d
- bin: standard
-Per MPI rank memory allocation (min/avg/max) = 0.4843 | 0.4843 | 0.4843 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 0 0 0 0 0 0
-WARNING: Fewer insertions than requested (src/GRANULAR/fix_pour.cpp:681)
- 100 30 0.803783 0.803783 0.39507978 0.0029137134
- 200 30 1.1967995 1.1967995 0.5882574 0.0043383984
- 300 30 1.2814686 1.2814686 0.62987441 0.0046453238
- 400 30 0.82331082 0.82331082 0.41173176 0.0029845017
- 500 30 0.7708462 0.7708462 0.38777784 0.0043831147
-WARNING: Fewer insertions than requested (src/GRANULAR/fix_pour.cpp:681)
- 600 64 0.51564897 0.51564897 0.26631577 0.0040059368
- 700 64 0.57239348 0.57239348 0.29566901 0.0045075987
- 800 64 0.61837087 0.61837087 0.32195387 0.0048123564
- 900 64 0.53061888 0.53061888 0.28564763 0.0055906552
- 1000 64 0.496299 0.496299 0.26801572 0.0061169128
- 1100 64 0.46068308 0.46068308 0.24699057 0.0055717699
-WARNING: Fewer insertions than requested (src/GRANULAR/fix_pour.cpp:681)
- 1200 99 0.39206225 0.39206225 0.21356546 0.0066294211
- 1300 99 0.38624966 0.38624966 0.21345854 0.0049051051
- 1400 99 0.35615284 0.35615284 0.19785725 0.0046170772
- 1500 99 0.31486693 0.31486693 0.17429055 0.0064903432
- 1600 99 0.26369001 0.26369001 0.15095266 0.0045226847
- 1700 100 0.1925923 0.1925923 0.11308104 0.007362313
- 1800 100 0.13724978 0.13724978 0.083276845 0.0058136373
- 1900 100 0.077212636 0.077212636 0.053159386 0.0016509598
- 2000 100 0.065294031 0.065294031 0.04372752 0.0020346467
- 2100 100 0.057431398 0.057431398 0.037977068 0.0012681098
- 2200 100 0.059093046 0.059093046 0.037435194 0.00096610935
- 2300 100 0.034223376 0.034223376 0.025491303 0.00069886041
- 2400 100 0.020558283 0.020558283 0.016163008 0.0017260646
- 2500 100 0.015339698 0.015339698 0.012329233 0.00041312351
- 2600 100 0.012891357 0.012891357 0.0097660566 0.00030356702
- 2700 100 0.0092631621 0.0092631621 0.0073576327 0.00077729311
- 2800 100 0.0073866488 0.0073866488 0.0060126175 0.00018677664
- 2900 100 0.0081122362 0.0081122362 0.0062557089 0.00013749542
- 3000 100 0.0042333757 0.0042333757 0.0035407672 0.00016515787
- 3100 100 0.0035433278 0.0035433278 0.0029683167 0.00033693479
- 3200 100 0.0030692964 0.0030692964 0.0026495167 0.00043739373
- 3300 100 0.0033703684 0.0033703684 0.0026931948 0.00014857157
- 3400 100 0.0018405709 0.0018405709 0.0016990035 6.0202278e-05
- 3500 100 0.0014788087 0.0014788087 0.0013889916 0.00016730937
- 3600 100 0.0015932961 0.0015932961 0.0013807898 0.0001418157
- 3700 100 0.00096238915 0.00096238915 0.00097931829 6.7974535e-05
- 3800 100 0.00093087985 0.00093087985 0.00087659377 0.0001504142
- 3900 100 0.0015825065 0.0015825065 0.0011708936 1.9583518e-05
- 4000 100 0.00062295367 0.00062295367 0.00067129665 3.9455653e-05
- 4100 100 0.00061259406 0.00061259406 0.00065710963 1.8540759e-05
- 4200 100 0.00059619666 0.00059619666 0.00064365219 7.3779336e-06
- 4300 100 0.00051191641 0.00051191641 0.00057870947 6.3349656e-06
- 4400 100 0.00050668587 0.00050668587 0.00057057233 6.2702376e-06
- 4500 100 0.00049474942 0.00049474942 0.00055151343 1.5746831e-05
- 4600 100 0.00049309932 0.00049309932 0.00054086323 6.1021041e-06
- 4700 100 0.00049263883 0.00049263883 0.00052677244 6.0964056e-06
- 4800 100 0.00041885021 0.00041885021 0.00047389202 9.5350789e-05
- 4900 100 0.00035596444 0.00035596444 0.00042522549 5.8036712e-05
- 5000 100 0.00032946897 0.00032946897 0.00040320773 6.5350005e-06
-Loop time of 0.0763179 on 4 procs for 5000 steps with 100 atoms
-
-Performance: 28302682.620 tau/day, 65515.469 timesteps/s, 6.552 Matom-step/s
-96.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.0010572 | 0.0039588 | 0.0074661 | 4.6 | 5.19
-Neigh | 0.0025868 | 0.0049885 | 0.0075283 | 3.4 | 6.54
-Comm | 0.011862 | 0.014631 | 0.018383 | 2.0 | 19.17
-Output | 0.0009702 | 0.0012326 | 0.0014234 | 0.5 | 1.62
-Modify | 0.0019843 | 0.018558 | 0.036592 | 12.2 | 24.32
-Other | | 0.03295 | | | 43.17
-
-Nlocal: 25 ave 54 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 1 1
-Nghost: 4.5 ave 10 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 1 1
-Neighs: 40.5 ave 94 max 0 min
-Histogram: 2 0 0 0 0 0 0 1 0 1
-
-Total # of neighbors = 162
-Ave neighs/atom = 1.62
-Neighbor list builds = 281
-Dangerous builds = 0
-
-region container delete
-variable theta equal (step-5000)*(4.0*PI/5000)
-region container block -6 6 -6 6 -6 6 units box rotate v_theta 0 0 0 0 0 1
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-WARNING: Region properties for region container changed between runs, resetting its motion (src/GRANULAR/fix_wall_gran_region.cpp:101)
-Per MPI rank memory allocation (min/avg/max) = 5.609 | 5.672 | 5.735 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 5000 100 0.00032946897 0.00032946897 0.00040320773 6.050219e-06
- 5100 100 0.54371575 0.54371575 0.29836301 0.008148168
- 5200 100 0.60281896 0.60281896 0.33161676 0.0083772071
- 5300 100 0.70823011 0.70823011 0.38289657 0.0099694209
- 5400 100 0.78467127 0.78467127 0.4133495 0.010119104
- 5500 100 0.85741178 0.85741178 0.44761254 0.013013239
- 5600 100 0.93241573 0.93241573 0.47879351 0.017769592
- 5700 100 1.019104 1.019104 0.51644461 0.015312937
- 5800 100 1.0550014 1.0550014 0.53450507 0.017227797
- 5900 100 1.0910946 1.0910946 0.55272891 0.017469625
- 6000 100 1.1275288 1.1275288 0.56906788 0.018958103
- 6100 100 1.1545017 1.1545017 0.58324166 0.019220208
- 6200 100 1.1815817 1.1815817 0.59552677 0.019397271
- 6300 100 1.1963931 1.1963931 0.60251664 0.018382058
- 6400 100 1.2084652 1.2084652 0.60776713 0.020027986
- 6500 100 1.2217215 1.2217215 0.61406339 0.021750945
- 6600 100 1.2364016 1.2364016 0.62124174 0.021701243
- 6700 100 1.2739954 1.2739954 0.63930766 0.02025277
- 6800 100 1.3032733 1.3032733 0.65268105 0.021684843
- 6900 100 1.3226653 1.3226653 0.66168772 0.021187963
- 7000 100 1.3464995 1.3464995 0.67431153 0.022066117
- 7100 100 1.3250485 1.3250485 0.66342366 0.02109487
- 7200 100 1.3384316 1.3384316 0.67035095 0.021554113
- 7300 100 1.3280234 1.3280234 0.66553439 0.020829435
- 7400 100 1.3218971 1.3218971 0.66186263 0.020882591
- 7500 100 1.3293858 1.3293858 0.66506462 0.020897778
- 7600 100 1.3386019 1.3386019 0.66909392 0.020754479
- 7700 100 1.3465327 1.3465327 0.67316081 0.021231547
- 7800 100 1.3510586 1.3510586 0.67531764 0.021053475
- 7900 100 1.3508987 1.3508987 0.67535907 0.020769633
- 8000 100 1.3575635 1.3575635 0.67875993 0.022020776
- 8100 100 1.3655144 1.3655144 0.68258066 0.021016999
- 8200 100 1.375187 1.375187 0.68732222 0.021385146
- 8300 100 1.3799568 1.3799568 0.69000134 0.02114428
- 8400 100 1.3755871 1.3755871 0.68757909 0.022395102
- 8500 100 1.3708345 1.3708345 0.68509834 0.021603853
- 8600 100 1.3689806 1.3689806 0.68388935 0.022127839
- 8700 100 1.3697516 1.3697516 0.68411868 0.02165119
- 8800 100 1.3700522 1.3700522 0.68423671 0.021554001
- 8900 100 1.3705045 1.3705045 0.68451935 0.021470392
- 9000 100 1.3715107 1.3715107 0.68506443 0.021789844
- 9100 100 1.3707806 1.3707806 0.68467539 0.021451331
- 9200 100 1.371112 1.371112 0.68485975 0.021479203
- 9300 100 1.3716851 1.3716851 0.68516034 0.021515076
- 9400 100 1.3719031 1.3719031 0.68529221 0.021502802
- 9500 100 1.3726759 1.3726759 0.68544012 0.021585119
- 9600 100 1.3746583 1.3746583 0.68636924 0.02206073
- 9700 100 1.3761662 1.3761662 0.68716579 0.021533719
- 9800 100 1.3760157 1.3760157 0.687092 0.02163129
- 9900 100 1.3762626 1.3762626 0.68726404 0.021707045
- 10000 100 1.376303 1.376303 0.68735031 0.022306557
-Loop time of 0.128472 on 4 procs for 5000 steps with 100 atoms
-
-Performance: 16812995.511 tau/day, 38918.971 timesteps/s, 3.892 Matom-step/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.0012241 | 0.0085024 | 0.016023 | 7.8 | 6.62
-Neigh | 0.0051137 | 0.0079745 | 0.011012 | 3.2 | 6.21
-Comm | 0.0050448 | 0.009504 | 0.015048 | 4.6 | 7.40
-Output | 0.00090309 | 0.0014765 | 0.0019648 | 1.2 | 1.15
-Modify | 0.0072253 | 0.041211 | 0.076226 | 16.7 | 32.08
-Other | | 0.0598 | | | 46.55
-
-Nlocal: 25 ave 51 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 0 2
-Nghost: 3.25 ave 7 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 1 1
-Neighs: 46 ave 101 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 1 1
-
-Total # of neighbors = 184
-Ave neighs/atom = 1.84
-Neighbor list builds = 628
-Dangerous builds = 0
-
-region container delete
-region container block -6 6 -6 6 -6 6 units box
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 5.609 | 5.672 | 5.735 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 10000 100 1.376303 1.376303 0.68735031 0.022411506
- 10100 100 0.28192752 0.28192752 0.16298909 0.0041760951
- 10200 100 0.14576408 0.14576408 0.10117889 0.0058653094
- 10300 100 0.10070361 0.10070361 0.078060938 0.0041432979
- 10400 100 0.07455595 0.07455595 0.061163197 0.0029733745
- 10500 100 0.063531027 0.063531027 0.052515707 0.0015731241
- 10600 100 0.049259626 0.049259626 0.041321284 0.00073083104
- 10700 100 0.037377957 0.037377957 0.032017729 0.0022631642
- 10800 100 0.031849901 0.031849901 0.027079116 0.0014148618
- 10900 100 0.02795233 0.02795233 0.02461403 0.00037567522
- 11000 100 0.02597858 0.02597858 0.022516094 0.00054992645
- 11100 100 0.021812043 0.021812043 0.019276946 0.00043233309
- 11200 100 0.019318956 0.019318956 0.017224213 0.00035792964
- 11300 100 0.017760494 0.017760494 0.01578407 0.00056959435
- 11400 100 0.015485043 0.015485043 0.013703 0.00061308169
- 11500 100 0.015051781 0.015051781 0.012994991 0.00040607387
- 11600 100 0.012204953 0.012204953 0.01079191 0.00059482171
- 11700 100 0.011242847 0.011242847 0.0096811013 0.00018299476
- 11800 100 0.0089605707 0.0089605707 0.0075086629 0.0012779422
- 11900 100 0.0065544011 0.0065544011 0.0056480432 0.00039599272
- 12000 100 0.0048068901 0.0048068901 0.004185961 0.00022434097
- 12100 100 0.0045272524 0.0045272524 0.0039084556 7.8443821e-05
- 12200 100 0.0038926209 0.0038926209 0.0033949999 0.00011203445
- 12300 100 0.0034653 0.0034653 0.0030246557 0.00014999893
- 12400 100 0.0034031041 0.0034031041 0.0029879474 7.9628343e-05
- 12500 100 0.0032219984 0.0032219984 0.0028369239 6.1651251e-05
- 12600 100 0.0031148659 0.0031148659 0.0027543848 5.7332789e-05
- 12700 100 0.0027407824 0.0027407824 0.0024822578 5.150993e-05
- 12800 100 0.0026205294 0.0026205294 0.0023576698 8.896122e-05
- 12900 100 0.0025633289 0.0025633289 0.0023134486 7.0525939e-05
- 13000 100 0.0025434711 0.0025434711 0.0022833007 5.5638668e-05
- 13100 100 0.0025046562 0.0025046562 0.002227265 5.2772716e-05
- 13200 100 0.0023544645 0.0023544645 0.0021086805 0.00030775943
- 13300 100 0.0022163971 0.0022163971 0.0020107508 4.9204292e-05
- 13400 100 0.0021307794 0.0021307794 0.0019334987 4.8144132e-05
- 13500 100 0.0019891796 0.0019891796 0.0018128084 4.8532374e-05
- 13600 100 0.0018591538 0.0018591538 0.0016721703 4.4781385e-05
- 13700 100 0.001768055 0.001768055 0.001597222 1.6800418e-05
- 13800 100 0.001569014 0.001569014 0.0014331265 4.2982654e-05
- 13900 100 0.0013700893 0.0013700893 0.0012782771 4.8209662e-05
- 14000 100 0.0012398662 0.0012398662 0.0011606486 5.5766702e-05
- 14100 100 0.0011707267 0.0011707267 0.0010811523 3.4913501e-05
- 14200 100 0.0010483984 0.0010483984 0.0009831881 3.4742894e-05
- 14300 100 0.0010043196 0.0010043196 0.00092474592 3.4196115e-05
- 14400 100 0.00094238924 0.00094238924 0.00087181843 8.1414071e-05
- 14500 100 0.00093341457 0.00093341457 0.00086429224 3.3276909e-05
- 14600 100 0.00086042474 0.00086042474 0.00079524877 3.2260019e-05
- 14700 100 0.00080525469 0.00080525469 0.00075380989 2.8374703e-05
- 14800 100 0.00070848512 0.00070848512 0.0006762901 2.9937591e-05
- 14900 100 0.00060414588 0.00060414588 0.00058494979 2.5684401e-05
- 15000 100 0.00054251571 0.00054251571 0.00053643753 4.5496354e-05
-Loop time of 0.0553238 on 4 procs for 5000 steps with 100 atoms
-
-Performance: 39042861.362 tau/day, 90376.994 timesteps/s, 9.038 Matom-step/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.00085556 | 0.0028667 | 0.0052429 | 3.6 | 5.18
-Neigh | 0.00076731 | 0.0012173 | 0.0016987 | 1.3 | 2.20
-Comm | 0.0016497 | 0.0060965 | 0.010792 | 5.7 | 11.02
-Output | 0.00072675 | 0.00099509 | 0.0011615 | 0.0 | 1.80
-Modify | 0.00064371 | 0.014719 | 0.030427 | 11.6 | 26.61
-Other | | 0.02943 | | | 53.19
-
-Nlocal: 25 ave 54 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 1 1
-Nghost: 5 ave 11 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 1 1
-Neighs: 40 ave 88 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 1 1
-
-Total # of neighbors = 160
-Ave neighs/atom = 1.6
-Neighbor list builds = 97
-Dangerous builds = 0
-
-region container delete
-variable theta equal (step-15000)*(4.0*PI/5000)
-region container block -6 6 -6 6 -6 6 units box rotate v_theta 0 0 0 1 1 1
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 5.609 | 5.672 | 5.735 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 15000 100 0.00054251571 0.00054251571 0.00053643753 4.3506263e-05
- 15100 100 1.1164435 1.1164435 0.7163854 0.017358175
- 15200 100 1.0384203 1.0384203 0.66790042 0.016095459
- 15300 100 1.0829984 1.0829984 0.712381 0.015915015
- 15400 100 1.4187366 1.4187366 0.89537718 0.023771032
- 15500 100 1.5397547 1.5397547 0.97895571 0.025145916
- 15600 100 1.7993339 1.7993339 1.1003794 0.026783317
- 15700 100 1.8858073 1.8858073 1.1481696 0.030802833
- 15800 100 1.9368129 1.9368129 1.1450129 0.032144729
- 15900 100 2.0379823 2.0379823 1.1738926 0.031969116
- 16000 100 2.0655671 2.0655671 1.187038 0.032395513
- 16100 100 2.1199141 2.1199141 1.2102937 0.028830059
- 16200 100 2.1819656 2.1819656 1.245147 0.029493813
- 16300 100 2.2451204 2.2451204 1.2726968 0.029915554
- 16400 100 2.1697892 2.1697892 1.2342734 0.027495983
- 16500 100 2.2689358 2.2689358 1.2710223 0.029516621
- 16600 100 2.3901976 2.3901976 1.3328992 0.030049751
- 16700 100 2.4731258 2.4731258 1.3763126 0.032663365
- 16800 100 2.5708338 2.5708338 1.4255635 0.032731991
- 16900 100 2.7232422 2.7232422 1.5006931 0.036649645
- 17000 100 2.901986 2.901986 1.5886643 0.037333791
- 17100 100 2.8787369 2.8787369 1.5752504 0.03582313
- 17200 100 3.1137189 3.1137189 1.6974538 0.041245422
- 17300 100 3.1805823 3.1805823 1.7370013 0.040766564
- 17400 100 3.3215703 3.3215703 1.8109954 0.044269306
- 17500 100 3.3767256 3.3767256 1.813696 0.048012575
- 17600 100 3.3618731 3.3618731 1.8004834 0.06103562
- 17700 100 3.2288285 3.2288285 1.7447885 0.042875761
- 17800 100 3.2545435 3.2545435 1.7617642 0.04661949
- 17900 100 3.1162969 3.1162969 1.6850561 0.040086156
- 18000 100 3.2053719 3.2053719 1.7132296 0.040657811
- 18100 100 3.2924625 3.2924625 1.7709303 0.048407939
- 18200 100 3.1682076 3.1682076 1.7136129 0.040996326
- 18300 100 3.2244534 3.2244534 1.7401102 0.043957312
- 18400 100 3.1470903 3.1470903 1.7171698 0.043123438
- 18500 100 3.2690021 3.2690021 1.7803818 0.042693323
- 18600 100 3.2566233 3.2566233 1.7670476 0.04776305
- 18700 100 3.384347 3.384347 1.8334885 0.04441225
- 18800 100 3.6479797 3.6479797 1.9565845 0.047454733
- 18900 100 3.6894531 3.6894531 1.9767079 0.053222159
- 19000 100 3.7867788 3.7867788 2.0265223 0.055923793
- 19100 100 3.9120999 3.9120999 2.0850815 0.053591707
- 19200 100 3.8255419 3.8255419 2.0517931 0.061034295
- 19300 100 3.764721 3.764721 2.0089969 0.068118255
- 19400 100 3.8604884 3.8604884 2.0640292 0.052825172
- 19500 100 3.7763823 3.7763823 2.0223758 0.054529616
- 19600 100 3.9158781 3.9158781 2.0873723 0.053130512
- 19700 100 3.6394071 3.6394071 1.9735106 0.047466529
- 19800 100 3.5409741 3.5409741 1.9335311 0.047317029
- 19900 100 3.5961407 3.5961407 1.954696 0.048093129
- 20000 100 3.4355899 3.4355899 1.8679902 0.0486077
-Loop time of 0.107854 on 4 procs for 5000 steps with 100 atoms
-
-Performance: 20026986.271 tau/day, 46358.765 timesteps/s, 4.636 Matom-step/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 | 0.0025992 | 0.0042158 | 0.0061269 | 1.9 | 3.91
-Neigh | 0.0089595 | 0.011254 | 0.012853 | 1.3 | 10.43
-Comm | 0.020408 | 0.022579 | 0.024669 | 1.4 | 20.94
-Output | 0.0010271 | 0.0011457 | 0.0012268 | 0.2 | 1.06
-Modify | 0.019454 | 0.032696 | 0.040003 | 4.4 | 30.31
-Other | | 0.03596 | | | 33.34
-
-Nlocal: 25 ave 36 max 16 min
-Histogram: 1 0 1 0 0 0 1 0 0 1
-Nghost: 5.5 ave 8 max 2 min
-Histogram: 1 0 0 0 0 1 0 0 1 1
-Neighs: 34.25 ave 48 max 19 min
-Histogram: 1 1 0 0 0 0 0 0 0 2
-
-Total # of neighbors = 137
-Ave neighs/atom = 1.37
-Neighbor list builds = 908
-Dangerous builds = 0
-
-region container delete
-region container block -6 6 -6 6 -6 6 units box
-run 5000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 5.734 | 5.735 | 5.735 Mbytes
- Step Atoms Temp c_1 c_2 Press
- 20000 100 3.4355899 3.4355899 1.8679902 0.047866781
- 20100 100 1.1677914 1.1677914 0.70763342 0.015645481
- 20200 100 0.99137326 0.99137326 0.61064707 0.012080974
- 20300 100 0.84603548 0.84603548 0.52093267 0.012501649
- 20400 100 0.82813609 0.82813609 0.50585936 0.010248184
- 20500 100 0.86524293 0.86524293 0.5210492 0.011145216
- 20600 100 0.92229302 0.92229302 0.54567614 0.012838894
- 20700 100 0.93499886 0.93499886 0.55161401 0.011618713
- 20800 100 0.95831407 0.95831407 0.56173113 0.014502297
- 20900 100 0.88486451 0.88486451 0.51926962 0.013847246
- 21000 100 0.66876325 0.66876325 0.39313901 0.010224296
- 21100 100 0.46578708 0.46578708 0.28086455 0.0089121873
- 21200 100 0.21445902 0.21445902 0.14749113 0.0033665892
- 21300 100 0.12935011 0.12935011 0.09319765 0.002811107
- 21400 100 0.10572326 0.10572326 0.075154962 0.0034728629
- 21500 100 0.10952604 0.10952604 0.073864376 0.0017411404
- 21600 100 0.074321422 0.074321422 0.051368858 0.0037915268
- 21700 100 0.043324694 0.043324694 0.032954769 0.00092476658
- 21800 100 0.034911155 0.034911155 0.026843877 0.00061350592
- 21900 100 0.02261818 0.02261818 0.018357224 0.00049800957
- 22000 100 0.015096211 0.015096211 0.01390442 0.00059260194
- 22100 100 0.016119209 0.016119209 0.013990821 0.00038431756
- 22200 100 0.012184692 0.012184692 0.011062653 0.00030466184
- 22300 100 0.0090526001 0.0090526001 0.0080893293 0.00082507232
- 22400 100 0.007155528 0.007155528 0.0067365227 0.00094740021
- 22500 100 0.0057433117 0.0057433117 0.0057438575 0.00016706605
- 22600 100 0.0053029734 0.0053029734 0.0050429137 0.00018457156
- 22700 100 0.0041888319 0.0041888319 0.0039979907 0.00029467329
- 22800 100 0.0046486843 0.0046486843 0.0042259456 0.00019395675
- 22900 100 0.0046414295 0.0046414295 0.0040659744 0.00016025205
- 23000 100 0.0033983576 0.0033983576 0.0033431909 0.00039998961
- 23100 100 0.0031212625 0.0031212625 0.0031113361 0.00024783655
- 23200 100 0.0026724347 0.0026724347 0.0026905233 0.00026001445
- 23300 100 0.0029222876 0.0029222876 0.002946198 0.00012385327
- 23400 100 0.0023944825 0.0023944825 0.0021829995 0.00016185776
- 23500 100 0.0020384082 0.0020384082 0.0019106613 9.2139544e-05
- 23600 100 0.0019773679 0.0019773679 0.0018577006 8.9169073e-05
- 23700 100 0.0018850072 0.0018850072 0.0017715658 9.1301463e-05
- 23800 100 0.0020857322 0.0020857322 0.001864009 7.4633597e-05
- 23900 100 0.0017616498 0.0017616498 0.001680563 4.8547939e-05
- 24000 100 0.0017183254 0.0017183254 0.0016568629 6.56741e-05
- 24100 100 0.0014311732 0.0014311732 0.0013829993 6.0743962e-05
- 24200 100 0.0013434756 0.0013434756 0.001315682 0.00025727478
- 24300 100 0.0012855885 0.0012855885 0.0012558467 9.0130585e-05
- 24400 100 0.0012731213 0.0012731213 0.0012408428 8.2008231e-05
- 24500 100 0.0011333063 0.0011333063 0.001045815 8.8391061e-05
- 24600 100 0.0010560932 0.0010560932 0.00098304208 5.6725938e-05
- 24700 100 0.00097698038 0.00097698038 0.00092381967 7.1771848e-05
- 24800 100 0.00094316799 0.00094316799 0.00089343119 5.5558578e-05
- 24900 100 0.00082812377 0.00082812377 0.00076615512 5.8668812e-05
- 25000 100 0.00076097781 0.00076097781 0.00069462801 6.5742694e-05
-Loop time of 0.0523621 on 4 procs for 5000 steps with 100 atoms
-
-Performance: 41251226.669 tau/day, 95488.951 timesteps/s, 9.549 Matom-step/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.0011166 | 0.0029573 | 0.0049613 | 3.3 | 5.65
-Neigh | 0.0026276 | 0.0033989 | 0.0041666 | 1.1 | 6.49
-Comm | 0.0054479 | 0.0084136 | 0.01182 | 2.9 | 16.07
-Output | 0.00070658 | 0.00092447 | 0.0010421 | 0.0 | 1.77
-Modify | 0.0015069 | 0.012796 | 0.025273 | 9.9 | 24.44
-Other | | 0.02387 | | | 45.59
-
-Nlocal: 25 ave 55 max 0 min
-Histogram: 2 0 0 0 0 0 0 0 1 1
-Nghost: 6 ave 14 max 0 min
-Histogram: 2 0 0 0 0 0 0 1 0 1
-Neighs: 39.25 ave 88 max 0 min
-Histogram: 2 0 0 0 0 0 0 1 0 1
-
-Total # of neighbors = 157
-Ave neighs/atom = 1.57
-Neighbor list builds = 280
-Dangerous builds = 0
-Total wall time: 0:00:00
diff --git a/examples/granregion/log.16Mar23.granregion.funnel.g++.1 b/examples/granregion/log.16Mar23.granregion.funnel.g++.1
deleted file mode 100644
index 0ead1ddd41..0000000000
--- a/examples/granregion/log.16Mar23.granregion.funnel.g++.1
+++ /dev/null
@@ -1,635 +0,0 @@
-LAMMPS (8 Feb 2023)
-OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
- using 1 OpenMP thread(s) per MPI task
-# pour particles into cone-shaped funnel, settle them, let them run out bottom
-
-variable name string funnel_pour
-
-thermo_modify flush yes
-units si
-variable PI equal 3.141592653589
-variable seed equal 14314
-
-###############################################
-# Geometry-related parameters
-###############################################
-
-variable xlo equal 10
-variable xhi equal 40
-variable ylo equal 10
-variable yhi equal 40
-variable zlo equal -20
-variable zhi equal 50
-
-variable xc equal 25
-variable yc equal 25
-
-variable zconehi equal 50
-variable zconelo equal 10
-variable zcyllo equal 0
-variable radconelo equal 2
-variable radconehi equal 20
-
-################################################
-# Particle sizes
-################################################
-
-variable rlo equal 0.25
-variable rhi equal 0.5
-variable dlo equal 2.0*${rlo}
-variable dlo equal 2.0*0.25
-variable dhi equal 2.0*${rhi}
-variable dhi equal 2.0*0.5
-
-variable skin equal ${rhi}
-variable skin equal 0.5
-
-###############################################
-# Granular contact parameters
-###############################################
-
-variable coeffRes equal 0.1
-variable coeffFric equal 0.5
-
-variable density equal 1.0
-variable EYoung equal 10^5
-variable Poisson equal 2.0/7.0
-variable GShear equal ${EYoung}/(2*(1+${Poisson}))
-variable GShear equal 100000/(2*(1+${Poisson}))
-variable GShear equal 100000/(2*(1+0.285714285714286))
-
-variable gravity equal 1.0
-
-variable reff equal 0.5*(${rhi}+${rlo})
-variable reff equal 0.5*(0.5+${rlo})
-variable reff equal 0.5*(0.5+0.25)
-variable meff equal ${density}*4.0/3.0*${PI}*${reff}^3
-variable meff equal 1*4.0/3.0*${PI}*${reff}^3
-variable meff equal 1*4.0/3.0*3.141592653589*${reff}^3
-variable meff equal 1*4.0/3.0*3.141592653589*0.375^3
-variable min_mass equal ${density}*4.0/3.0*${PI}*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*${PI}*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*3.141592653589*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*0.25*${rlo}
-variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*0.25*0.25
-variable max_mass equal ${density}*4.0/3.0*${PI}*${rhi}*${rhi}*${rhi}
-variable max_mass equal 1*4.0/3.0*${PI}*${rhi}*${rhi}*${rhi}
-variable max_mass equal 1*4.0/3.0*3.141592653589*${rhi}*${rhi}*${rhi}
-variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*${rhi}*${rhi}
-variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*0.5*${rhi}
-variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*0.5*0.5
-
-## Typical way to set kn, kt, etc.:
-variable kn equal 4.0*${GShear}/(3*(1-${Poisson}))
-variable kn equal 4.0*38888.8888888889/(3*(1-${Poisson}))
-variable kn equal 4.0*38888.8888888889/(3*(1-0.285714285714286))
-variable kt equal 4.0*${GShear}/(2-${Poisson})
-variable kt equal 4.0*38888.8888888889/(2-${Poisson})
-variable kt equal 4.0*38888.8888888889/(2-0.285714285714286)
-
-variable a equal (-2.0*log(${coeffRes})/${PI})^2
-variable a equal (-2.0*log(0.1)/${PI})^2
-variable a equal (-2.0*log(0.1)/3.141592653589)^2
-variable gamma_n equal sqrt($a*2*${kn}/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569556*2*${kn}/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/0.0654498469497708/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/0.0654498469497708/(1+0.25*0.405284734569556))
-variable gamma_t equal ${gamma_n}*0.5
-variable gamma_t equal 903.503751814138*0.5
-
-variable tcol equal ${PI}/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
-variable tcol equal 3.141592653589/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
-variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/${min_mass}-${gamma_n}/4.0)
-variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/0.0654498469497708-${gamma_n}/4.0)
-variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/0.0654498469497708-903.503751814138/4.0)
-
-variable dt equal ${tcol}*0.05
-variable dt equal 0.00210943016014969*0.05
-timestep ${dt}
-timestep 0.000105471508007485
-
-###############################################
-variable dumpfreq equal 1000
-variable logfreq equal 1000
-
-newton off
-atom_style sphere
-
-boundary p p f
-
-region boxreg block ${xlo} ${xhi} ${ylo} ${yhi} ${zlo} ${zhi}
-region boxreg block 10 ${xhi} ${ylo} ${yhi} ${zlo} ${zhi}
-region boxreg block 10 40 ${ylo} ${yhi} ${zlo} ${zhi}
-region boxreg block 10 40 10 ${yhi} ${zlo} ${zhi}
-region boxreg block 10 40 10 40 ${zlo} ${zhi}
-region boxreg block 10 40 10 40 -20 ${zhi}
-region boxreg block 10 40 10 40 -20 50
-create_box 1 boxreg
-Created orthogonal box = (10 10 -20) to (40 40 50)
- 1 by 1 by 1 MPI processor grid
-
-pair_style gran/hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1
-pair_coeff * *
-
-neighbor ${skin} multi
-neighbor 0.5 multi
-thermo ${logfreq}
-thermo 1000
-
-comm_style brick
-comm_modify mode multi group all vel yes
-balance 1.1 shift xyz 20 1.1
-Balancing ...
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Neighbor list info ...
- update: every = 1 steps, delay = 0 steps, check = yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 0
- ghost atom cutoff = 0
- binsize = 30, bins = 1 1 3
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair gran/hertz/history, perpetual
- attributes: half, newton off, size, history
- pair build: half/size/multi/newtoff
- stencil: full/multi/3d
- bin: multi
-WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:210)
-fix bal all balance 10000 1.1 shift xyz 20 1.01
-
-####################### Options specific to pouring #########################
-
-# insertion region for fix/pour
-
-region insreg cylinder z ${xc} ${yc} 10 30 50 side in units box
-region insreg cylinder z 25 ${yc} 10 30 50 side in units box
-region insreg cylinder z 25 25 10 30 50 side in units box
-
-# define cone and cylinder regions - see lammps doc on region command
-# note new open options
-
-region cylreg cylinder z ${xc} ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 2 #Top is open
-region cylreg cylinder z 25 ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 2
-region cylreg cylinder z 25 25 ${radconelo} ${zcyllo} ${zconelo} side in units box open 2
-region cylreg cylinder z 25 25 2 ${zcyllo} ${zconelo} side in units box open 2
-region cylreg cylinder z 25 25 2 0 ${zconelo} side in units box open 2
-region cylreg cylinder z 25 25 2 0 10 side in units box open 2
-
-region conereg cone z ${xc} ${yc} ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2 #Bottom and top are open
-region conereg cone z 25 ${yc} ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 2 ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 2 20 ${zconelo} ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 2 20 10 ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 2 20 10 50 side in units box open 1 open 2
-
-region hopreg union 2 conereg cylreg
-
-fix grav all gravity ${gravity} vector 0 0 -1
-fix grav all gravity 1 vector 0 0 -1
-fix 1 all nve/sphere
-
-
-fix hopper3 all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1 region hopreg
-
-fix ins all pour 2000 1 42424 region insreg diam range ${dlo} ${dhi} dens ${density} ${density}
-fix ins all pour 2000 1 42424 region insreg diam range 0.5 ${dhi} dens ${density} ${density}
-fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens ${density} ${density}
-fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens 1 ${density}
-fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 3000 every 59965 steps, 2000 by step 1
-
-#dump 1 all custom ${dumpfreq} ${name}.dump # id type mass diameter x y z
-
-#dump 2 all image 4000 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 zoom 3.0 # box no 0.0 axes no 0.0 0.0
-#dump_modify 2 pad 6
-
-thermo_style custom step cpu atoms ke
-WARNING: New thermo_style command, previous thermo_modify settings will be lost (src/output.cpp:895)
-thermo_modify flush yes lost warn
-
-# Initial run to fill up the cone
-
-run 20000
-
-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
-
-Your simulation uses code contributions which should be cited:
-
-- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
-
-@Article{Intveld08,
- author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
- title = {Accurate and Efficient Methods for Modeling Colloidal
- Mixtures in an Explicit Solvent using Molecular Dynamics},
- journal = {Comput.\ Phys.\ Commut.},
- year = 2008,
- volume = 179,
- pages = {320--329}
-}
-
-@article{Shire2020,
- author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
- title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
- Detection Applied to Investigate the Quasi-Static Limit},
- journal = {Computational Particle Mechanics},
- year = {2020}
-}
-
-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
-
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 6.648 | 6.648 | 6.648 Mbytes
- Step CPU Atoms KinEng
- 0 0 0 -0
- 1000 0.52844331 2000 -0
- 2000 0.76085445 2000 -0
- 3000 0.99183068 2000 -0
- 4000 1.2193085 2000 -0
- 5000 1.4439617 2000 -0
- 6000 1.6703511 2000 -0
- 7000 1.9053408 2000 -0
- 8000 2.1323525 2000 -0
- 9000 2.3566342 2000 -0
- 10000 2.5829638 2000 -0
- 11000 2.8106202 2000 -0
- 12000 3.0371473 2000 -0
- 13000 3.2621782 2000 -0
- 14000 3.4860689 2000 -0
- 15000 3.7138322 2000 -0
- 16000 3.9424002 2000 -0
- 17000 4.1703584 2000 -0
- 18000 4.3973348 2000 -0
- 19000 4.6213358 2000 -0
- 20000 4.8547603 2000 -0
-Loop time of 4.85478 on 1 procs for 20000 steps with 2000 atoms
-
-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 | 0.52375 | 0.52375 | 0.52375 | 0.0 | 10.79
-Neigh | 0.070018 | 0.070018 | 0.070018 | 0.0 | 1.44
-Comm | 0.011077 | 0.011077 | 0.011077 | 0.0 | 0.23
-Output | 0.00071321 | 0.00071321 | 0.00071321 | 0.0 | 0.01
-Modify | 4.1233 | 4.1233 | 4.1233 | 0.0 | 84.93
-Other | | 0.126 | | | 2.59
-
-Nlocal: 2000 ave 2000 max 2000 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: 1607 ave 1607 max 1607 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 1607
-Ave neighs/atom = 0.8035
-Neighbor list builds = 71
-Dangerous builds = 0
-unfix ins
-run 150000
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 12.69 | 12.69 | 12.69 Mbytes
- Step CPU Atoms KinEng
- 20000 0 2000 6652.2957
- 21000 0.22761741 2000 6807.2201
- 22000 0.45508977 2000 6973.9359
- 23000 0.68132308 2000 7142.3648
- 24000 0.91084802 2000 7276.9717
- 25000 1.1397154 2000 7369.4191
- 26000 1.3724974 2000 7497.6526
- 27000 1.6037436 2000 7638.946
- 28000 1.8381254 2000 7780.0339
- 29000 2.0763695 2000 7881.8177
- 30000 2.3169444 2000 7967.2641
- 31000 2.5544704 2000 7994.9273
- 32000 2.7981688 2000 7937.0671
- 33000 3.0486439 2000 7774.0508
- 34000 3.3065315 2000 7591.1491
- 35000 3.5712927 2000 7357.5176
- 36000 3.8415508 2000 7147.2024
- 37000 4.1137466 2000 6979.1604
- 38000 4.3946186 2000 6813.2152
- 39000 4.6737386 2000 6660.2701
- 40000 4.9654287 2000 6502.8957
- 41000 5.2606376 2000 6324.3951
- 42000 5.5633065 2000 6132.7516
- 43000 5.8692745 2000 5913.1841
- 44000 6.1757115 2000 5732.2095
- 45000 6.4896845 2000 5508.8322
- 46000 6.8170163 2000 5306.8932
- 47000 7.1514543 2000 5152.0521
- 48000 7.4863157 2000 5028.2274
- 49000 7.8214974 2000 4896.102
- 50000 8.1600826 2000 4723.5189
- 51000 8.4984004 2000 4583.7526
- 52000 8.8500924 2000 4447.0187
- 53000 9.2046999 2000 4303.2307
- 54000 9.5724785 2000 4168.5251
- 55000 9.9479954 2000 4036.9704
- 56000 10.324666 2000 3901.1183
- 57000 10.708944 2000 3716.7071
- 58000 11.108887 2000 3473.5422
- 59000 11.515057 2000 3245.1223
- 60000 11.922119 2000 3039.7845
- 61000 12.331146 2000 2780.0187
- 62000 12.745147 2000 2577.3345
- 63000 13.169644 2000 2346.2488
- 64000 13.602869 2000 2116.7298
- 65000 14.044828 2000 1903.7828
- 66000 14.49159 2000 1631.1676
- 67000 14.953127 2000 1431.0198
- 68000 15.428874 2000 1212.875
- 69000 15.981012 2000 995.45046
- 70000 16.458356 2000 811.54766
- 71000 16.936094 2000 624.08622
- 72000 17.432306 2000 471.00862
- 73000 17.949423 2000 358.33486
- 74000 18.467878 2000 284.39416
- 75000 18.970599 2000 234.26671
- 76000 19.45957 2000 185.61836
- 77000 19.959792 2000 152.95918
- 78000 20.455734 2000 122.49023
- 79000 20.93849 2000 102.29396
- 80000 21.430632 2000 86.284684
- 81000 21.925932 2000 73.984781
- 82000 22.428573 2000 63.042918
- 83000 22.945552 2000 53.338428
- 84000 23.467102 2000 45.89585
- 85000 23.992243 2000 40.412826
- 86000 24.512956 2000 34.183381
- 87000 25.037944 2000 29.671524
- 88000 25.56622 2000 26.90414
- 89000 26.102251 2000 24.362631
- 90000 26.638165 2000 21.887341
- 91000 27.17863 2000 19.985662
- 92000 27.72662 2000 18.728162
- 93000 28.276842 2000 16.99941
- 94000 28.830281 2000 15.71941
- 95000 29.389744 2000 14.744057
- 96000 29.972451 2000 14.214918
- 97000 30.575245 2000 13.450182
- 98000 31.141552 2000 12.79222
- 99000 31.711177 2000 12.10595
- 100000 32.286609 2000 11.281863
- 101000 32.879692 2000 10.025419
- 102000 33.460265 2000 9.9574468
- 103000 34.040002 2000 9.4078117
- 104000 34.619096 2000 8.9079161
- 105000 35.199384 2000 8.6269302
- 106000 35.784782 2000 8.5512649
- 107000 36.37489 2000 8.4703948
- 108000 36.963891 2000 8.2747542
- 109000 37.551549 2000 8.2895118
- 110000 38.154561 2000 8.1785613
- 111000 38.749306 2000 7.8443234
- 112000 39.344241 2000 7.7436124
- 113000 39.938878 2000 7.8118604
- 114000 40.531935 2000 7.3806177
- 115000 41.130022 2000 7.0857235
- 116000 41.726772 2000 7.1346752
- 117000 42.322611 2000 7.0653751
- 118000 42.927287 2000 6.6314104
- 119000 43.524125 2000 6.2169614
- 120000 44.127912 2000 5.8988829
- 121000 44.724988 2000 5.4197277
- 122000 45.328051 2000 4.6381303
- 123000 45.93285 2000 4.4949206
- 124000 46.54149 2000 4.4261118
- 125000 47.301723 2000 4.4223703
- 126000 48.071689 2000 4.4858898
- 127000 48.834286 2000 4.3312536
- 128000 49.448737 2000 3.7124973
- 129000 50.169622 2000 3.5467396
- 130000 50.867494 2000 3.5104139
- 131000 51.585563 2000 3.5725612
- 132000 52.240372 2000 3.669455
- 133000 52.892134 2000 3.6168912
- 134000 53.50594 2000 3.3598517
- 135000 54.114565 2000 3.3743407
- 136000 54.725082 2000 3.1109764
- 137000 55.358218 2000 3.0720146
- 138000 55.977314 2000 3.1303776
- 139000 56.589791 2000 3.2052806
- 140000 57.212518 2000 2.8958882
- 141000 57.867102 2000 2.9931572
- 142000 58.690342 2000 3.0967832
- 143000 59.418639 2000 3.0576365
- 144000 60.035852 2000 3.2016943
- 145000 60.666569 2000 3.3817709
- 146000 61.368878 2000 3.4527239
- 147000 62.159309 2000 3.5928733
- 148000 62.879677 2000 3.7784682
- 149000 63.50784 2000 3.6587944
- 150000 64.129366 2000 3.7945669
- 151000 64.74324 2000 3.5551557
- 152000 65.360802 2000 3.6248848
- 153000 65.979475 2000 3.7361463
- 154000 66.593554 2000 3.8534319
- 155000 67.30899 2000 4.0101408
- 156000 68.295637 2000 3.7670652
- 157000 69.257704 2000 3.1487676
- 158000 70.085566 2000 2.980076
- 159000 70.914218 2000 3.0350592
- 160000 71.734553 2000 3.125389
- 161000 72.423913 2000 2.7516115
- 162000 73.264994 2000 2.413911
- 163000 74.126424 2000 2.297713
- 164000 75.050891 2000 2.3190806
- 165000 75.917063 2000 2.2868879
- 166000 76.783267 2000 2.1658547
- 167000 77.516683 2000 1.7511071
- 168000 78.319102 2000 1.4112478
- 169000 78.961239 2000 1.3623558
- 170000 79.578448 2000 1.3701579
-Loop time of 79.5785 on 1 procs for 150000 steps with 2000 atoms
-
-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 | 40.78 | 40.78 | 40.78 | 0.0 | 51.25
-Neigh | 0.6504 | 0.6504 | 0.6504 | 0.0 | 0.82
-Comm | 0.090848 | 0.090848 | 0.090848 | 0.0 | 0.11
-Output | 0.0059597 | 0.0059597 | 0.0059597 | 0.0 | 0.01
-Modify | 36.939 | 36.939 | 36.939 | 0.0 | 46.42
-Other | | 1.112 | | | 1.40
-
-Nlocal: 2000 ave 2000 max 2000 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: 15308 ave 15308 max 15308 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 15308
-Ave neighs/atom = 7.654
-Neighbor list builds = 367
-Dangerous builds = 0
-
-# remove "plug" - need to redefine cylinder region & union
-
-region cylreg delete
-region hopreg delete
-region cylreg cylinder z ${xc} ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2 #Bottom & top are open
-region cylreg cylinder z 25 ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2
-region cylreg cylinder z 25 25 ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2
-region cylreg cylinder z 25 25 2 ${zcyllo} ${zconelo} side in units box open 1 open 2
-region cylreg cylinder z 25 25 2 0 ${zconelo} side in units box open 1 open 2
-region cylreg cylinder z 25 25 2 0 10 side in units box open 1 open 2
-
-region hopreg union 2 cylreg conereg
-
-unfix hopper3
-fix hopper3 all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1 region hopreg
-
-run 100000
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 12.69 | 12.69 | 12.69 Mbytes
- Step CPU Atoms KinEng
- 170000 0 2000 1.3701579
- 171000 0.71457906 2000 2.3724823
- 172000 1.4067557 2000 3.5881441
- 173000 2.0500352 2000 5.3771633
- 174000 2.8020081 2000 7.5896471
- 175000 3.467807 2000 10.77251
- 176000 4.064748 2000 14.806868
- 177000 4.6769962 2000 19.607624
- 178000 5.26259 2000 25.426227
- 179000 5.8424937 2000 32.23584
- 180000 6.4222206 2000 39.930468
- 181000 6.9910375 2000 47.686304
- 182000 7.5601562 2000 56.506806
- 183000 8.1243537 2000 66.514326
- 184000 8.6871123 2000 77.554644
- 185000 9.3749051 2000 89.224002
- 186000 10.008412 2000 102.07846
- 187000 10.668269 2000 116.08141
- 188000 11.26663 2000 130.97964
- 189000 11.874542 2000 146.77806
- 190000 12.436262 2000 162.79858
- 191000 12.973297 2000 179.02052
- 192000 13.532286 2000 196.26683
- 193000 14.056018 2000 214.38928
- 194000 14.593726 2000 232.32068
- 195000 15.115478 2000 251.74644
- 196000 15.637308 2000 272.25231
- 197000 16.159144 2000 294.64075
- 198000 16.676958 2000 318.32895
- 199000 17.186114 2000 342.44005
- 200000 17.706244 2000 368.35469
- 201000 18.221731 2000 395.2465
- 202000 18.739505 2000 422.63599
- 203000 19.259645 2000 450.45248
- 204000 19.769875 2000 479.60812
- 205000 20.293972 2000 510.44155
- 206000 20.806658 2000 543.25751
- 207000 21.348998 2000 577.35928
- 208000 21.888691 2000 612.29718
- 209000 22.421596 2000 647.8951
- 210000 22.922782 2000 683.79409
- 211000 23.473165 2000 720.36556
- 212000 24.008952 2000 759.27331
- 213000 24.56155 2000 798.27302
- 214000 25.062386 2000 837.93849
- 215000 25.563743 2000 877.92945
- 216000 26.066188 2000 919.62532
- 217000 26.584605 2000 962.83509
- 218000 27.15076 2000 1008.5243
- 219000 27.651387 2000 1054.5769
- 220000 28.146147 2000 1103.1843
- 221000 28.644239 2000 1153.0349
- 222000 29.141899 2000 1204.5599
- 223000 29.636644 2000 1257.1367
- 224000 30.13786 2000 1308.6735
-WARNING: Lost atoms: original 2000 current 1999 (src/thermo.cpp:487)
- 225000 30.638093 1999 1360.1205
- 226000 31.127956 1998 1404.8405
- 227000 31.620394 1996 1448.4869
- 228000 32.108597 1992 1491.8112
- 229000 32.592048 1985 1518.7013
- 230000 33.067462 1971 1507.6699
- 231000 33.552874 1965 1533.5096
- 232000 34.037763 1948 1489.4128
- 233000 34.531058 1933 1477.4536
- 234000 35.01451 1915 1425.8398
- 235000 35.495081 1904 1410.1451
- 236000 35.963357 1892 1401.7595
- 237000 36.428382 1880 1368.893
- 238000 36.890459 1868 1341.8885
- 239000 37.358838 1850 1286.7968
- 240000 37.828549 1833 1219.5123
- 241000 38.29428 1820 1173.3608
- 242000 38.750021 1806 1106.0727
- 243000 39.206425 1788 1035.912
- 244000 39.690492 1779 1021.6147
- 245000 40.138287 1767 969.40032
- 246000 40.582591 1757 939.12022
- 247000 41.02378 1739 840.9396
- 248000 41.472154 1730 822.06575
- 249000 41.916625 1719 762.11057
- 250000 42.365019 1707 708.50308
- 251000 42.804617 1700 692.12647
- 252000 43.257666 1697 694.5812
- 253000 43.777656 1686 652.36951
- 254000 44.244131 1682 662.95256
- 255000 44.667759 1677 637.34619
- 256000 45.111967 1672 630.71277
- 257000 45.550194 1669 641.87365
- 258000 45.985106 1665 635.862
- 259000 46.42582 1664 658.5339
- 260000 46.860965 1662 669.95468
- 261000 47.298309 1660 676.93495
- 262000 47.748236 1657 681.72646
- 263000 48.215018 1655 687.4078
- 264000 48.657973 1651 681.61352
- 265000 49.076584 1647 673.20622
- 266000 49.497823 1644 677.30073
- 267000 49.917789 1641 671.05897
- 268000 50.347112 1639 689.55776
- 269000 50.778062 1637 711.98809
- 270000 51.226034 1633 705.29974
-Loop time of 51.2261 on 1 procs for 100000 steps with 1633 atoms
-
-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 | 27.462 | 27.462 | 27.462 | 0.0 | 53.61
-Neigh | 0.47887 | 0.47887 | 0.47887 | 0.0 | 0.93
-Comm | 0.058496 | 0.058496 | 0.058496 | 0.0 | 0.11
-Output | 0.0039167 | 0.0039167 | 0.0039167 | 0.0 | 0.01
-Modify | 22.566 | 22.566 | 22.566 | 0.0 | 44.05
-Other | | 0.6567 | | | 1.28
-
-Nlocal: 1633 ave 1633 max 1633 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: 11358 ave 11358 max 11358 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 11358
-Ave neighs/atom = 6.955297
-Neighbor list builds = 244
-Dangerous builds = 0
-Total wall time: 0:02:15
diff --git a/examples/granregion/log.16Mar23.granregion.funnel.g++.4 b/examples/granregion/log.16Mar23.granregion.funnel.g++.4
deleted file mode 100644
index 451e508fe3..0000000000
--- a/examples/granregion/log.16Mar23.granregion.funnel.g++.4
+++ /dev/null
@@ -1,635 +0,0 @@
-LAMMPS (8 Feb 2023)
-OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
- using 1 OpenMP thread(s) per MPI task
-# pour particles into cone-shaped funnel, settle them, let them run out bottom
-
-variable name string funnel_pour
-
-thermo_modify flush yes
-units si
-variable PI equal 3.141592653589
-variable seed equal 14314
-
-###############################################
-# Geometry-related parameters
-###############################################
-
-variable xlo equal 10
-variable xhi equal 40
-variable ylo equal 10
-variable yhi equal 40
-variable zlo equal -20
-variable zhi equal 50
-
-variable xc equal 25
-variable yc equal 25
-
-variable zconehi equal 50
-variable zconelo equal 10
-variable zcyllo equal 0
-variable radconelo equal 2
-variable radconehi equal 20
-
-################################################
-# Particle sizes
-################################################
-
-variable rlo equal 0.25
-variable rhi equal 0.5
-variable dlo equal 2.0*${rlo}
-variable dlo equal 2.0*0.25
-variable dhi equal 2.0*${rhi}
-variable dhi equal 2.0*0.5
-
-variable skin equal ${rhi}
-variable skin equal 0.5
-
-###############################################
-# Granular contact parameters
-###############################################
-
-variable coeffRes equal 0.1
-variable coeffFric equal 0.5
-
-variable density equal 1.0
-variable EYoung equal 10^5
-variable Poisson equal 2.0/7.0
-variable GShear equal ${EYoung}/(2*(1+${Poisson}))
-variable GShear equal 100000/(2*(1+${Poisson}))
-variable GShear equal 100000/(2*(1+0.285714285714286))
-
-variable gravity equal 1.0
-
-variable reff equal 0.5*(${rhi}+${rlo})
-variable reff equal 0.5*(0.5+${rlo})
-variable reff equal 0.5*(0.5+0.25)
-variable meff equal ${density}*4.0/3.0*${PI}*${reff}^3
-variable meff equal 1*4.0/3.0*${PI}*${reff}^3
-variable meff equal 1*4.0/3.0*3.141592653589*${reff}^3
-variable meff equal 1*4.0/3.0*3.141592653589*0.375^3
-variable min_mass equal ${density}*4.0/3.0*${PI}*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*${PI}*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*3.141592653589*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*0.25*${rlo}
-variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*0.25*0.25
-variable max_mass equal ${density}*4.0/3.0*${PI}*${rhi}*${rhi}*${rhi}
-variable max_mass equal 1*4.0/3.0*${PI}*${rhi}*${rhi}*${rhi}
-variable max_mass equal 1*4.0/3.0*3.141592653589*${rhi}*${rhi}*${rhi}
-variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*${rhi}*${rhi}
-variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*0.5*${rhi}
-variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*0.5*0.5
-
-## Typical way to set kn, kt, etc.:
-variable kn equal 4.0*${GShear}/(3*(1-${Poisson}))
-variable kn equal 4.0*38888.8888888889/(3*(1-${Poisson}))
-variable kn equal 4.0*38888.8888888889/(3*(1-0.285714285714286))
-variable kt equal 4.0*${GShear}/(2-${Poisson})
-variable kt equal 4.0*38888.8888888889/(2-${Poisson})
-variable kt equal 4.0*38888.8888888889/(2-0.285714285714286)
-
-variable a equal (-2.0*log(${coeffRes})/${PI})^2
-variable a equal (-2.0*log(0.1)/${PI})^2
-variable a equal (-2.0*log(0.1)/3.141592653589)^2
-variable gamma_n equal sqrt($a*2*${kn}/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569556*2*${kn}/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/0.0654498469497708/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/0.0654498469497708/(1+0.25*0.405284734569556))
-variable gamma_t equal ${gamma_n}*0.5
-variable gamma_t equal 903.503751814138*0.5
-
-variable tcol equal ${PI}/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
-variable tcol equal 3.141592653589/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
-variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/${min_mass}-${gamma_n}/4.0)
-variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/0.0654498469497708-${gamma_n}/4.0)
-variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/0.0654498469497708-903.503751814138/4.0)
-
-variable dt equal ${tcol}*0.05
-variable dt equal 0.00210943016014969*0.05
-timestep ${dt}
-timestep 0.000105471508007485
-
-###############################################
-variable dumpfreq equal 1000
-variable logfreq equal 1000
-
-newton off
-atom_style sphere
-
-boundary p p f
-
-region boxreg block ${xlo} ${xhi} ${ylo} ${yhi} ${zlo} ${zhi}
-region boxreg block 10 ${xhi} ${ylo} ${yhi} ${zlo} ${zhi}
-region boxreg block 10 40 ${ylo} ${yhi} ${zlo} ${zhi}
-region boxreg block 10 40 10 ${yhi} ${zlo} ${zhi}
-region boxreg block 10 40 10 40 ${zlo} ${zhi}
-region boxreg block 10 40 10 40 -20 ${zhi}
-region boxreg block 10 40 10 40 -20 50
-create_box 1 boxreg
-Created orthogonal box = (10 10 -20) to (40 40 50)
- 1 by 1 by 4 MPI processor grid
-
-pair_style gran/hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1
-pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1
-pair_coeff * *
-
-neighbor ${skin} multi
-neighbor 0.5 multi
-thermo ${logfreq}
-thermo 1000
-
-comm_style brick
-comm_modify mode multi group all vel yes
-balance 1.1 shift xyz 20 1.1
-Balancing ...
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Neighbor list info ...
- update: every = 1 steps, delay = 0 steps, check = yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 0
- ghost atom cutoff = 0
- binsize = 30, bins = 1 1 3
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair gran/hertz/history, perpetual
- attributes: half, newton off, size, history
- pair build: half/size/multi/newtoff
- stencil: full/multi/3d
- bin: multi
-WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:210)
-fix bal all balance 10000 1.1 shift xyz 20 1.01
-
-####################### Options specific to pouring #########################
-
-# insertion region for fix/pour
-
-region insreg cylinder z ${xc} ${yc} 10 30 50 side in units box
-region insreg cylinder z 25 ${yc} 10 30 50 side in units box
-region insreg cylinder z 25 25 10 30 50 side in units box
-
-# define cone and cylinder regions - see lammps doc on region command
-# note new open options
-
-region cylreg cylinder z ${xc} ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 2 #Top is open
-region cylreg cylinder z 25 ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 2
-region cylreg cylinder z 25 25 ${radconelo} ${zcyllo} ${zconelo} side in units box open 2
-region cylreg cylinder z 25 25 2 ${zcyllo} ${zconelo} side in units box open 2
-region cylreg cylinder z 25 25 2 0 ${zconelo} side in units box open 2
-region cylreg cylinder z 25 25 2 0 10 side in units box open 2
-
-region conereg cone z ${xc} ${yc} ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2 #Bottom and top are open
-region conereg cone z 25 ${yc} ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 2 ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 2 20 ${zconelo} ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 2 20 10 ${zconehi} side in units box open 1 open 2
-region conereg cone z 25 25 2 20 10 50 side in units box open 1 open 2
-
-region hopreg union 2 conereg cylreg
-
-fix grav all gravity ${gravity} vector 0 0 -1
-fix grav all gravity 1 vector 0 0 -1
-fix 1 all nve/sphere
-
-
-fix hopper3 all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1 region hopreg
-
-fix ins all pour 2000 1 42424 region insreg diam range ${dlo} ${dhi} dens ${density} ${density}
-fix ins all pour 2000 1 42424 region insreg diam range 0.5 ${dhi} dens ${density} ${density}
-fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens ${density} ${density}
-fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens 1 ${density}
-fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 3000 every 59965 steps, 2000 by step 1
-
-#dump 1 all custom ${dumpfreq} ${name}.dump # id type mass diameter x y z
-
-#dump 2 all image 4000 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 zoom 3.0 # box no 0.0 axes no 0.0 0.0
-#dump_modify 2 pad 6
-
-thermo_style custom step cpu atoms ke
-WARNING: New thermo_style command, previous thermo_modify settings will be lost (src/output.cpp:895)
-thermo_modify flush yes lost warn
-
-# Initial run to fill up the cone
-
-run 20000
-
-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
-
-Your simulation uses code contributions which should be cited:
-
-- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
-
-@Article{Intveld08,
- author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
- title = {Accurate and Efficient Methods for Modeling Colloidal
- Mixtures in an Explicit Solvent using Molecular Dynamics},
- journal = {Comput.\ Phys.\ Commut.},
- year = 2008,
- volume = 179,
- pages = {320--329}
-}
-
-@article{Shire2020,
- author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
- title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
- Detection Applied to Investigate the Quasi-Static Limit},
- journal = {Computational Particle Mechanics},
- year = {2020}
-}
-
-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
-
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 6.049 | 6.049 | 6.049 Mbytes
- Step CPU Atoms KinEng
- 0 0 0 -0
- 1000 0.55467905 2000 -0
- 2000 0.77825615 2000 -0
- 3000 0.99338813 2000 -0
- 4000 1.2048904 2000 -0
- 5000 1.4073987 2000 -0
- 6000 1.6070452 2000 -0
- 7000 1.8056594 2000 -0
- 8000 1.9907326 2000 -0
- 9000 2.1732359 2000 -0
- 10000 2.3525506 2000 -0
- 11000 2.4202338 2000 -0
- 12000 2.4883928 2000 -0
- 13000 2.5587335 2000 -0
- 14000 2.6327822 2000 -0
- 15000 2.7095893 2000 -0
- 16000 2.7909032 2000 -0
- 17000 2.8763781 2000 -0
- 18000 2.9671807 2000 -0
- 19000 3.05783 2000 -0
- 20000 3.1546642 2000 -0
-Loop time of 3.1547 on 4 procs for 20000 steps with 2000 atoms
-
-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.045592 | 0.12271 | 0.29398 | 28.5 | 3.89
-Neigh | 0.011353 | 0.019401 | 0.032667 | 5.7 | 0.61
-Comm | 0.043342 | 0.09899 | 0.1539 | 14.6 | 3.14
-Output | 0.00097884 | 0.0019761 | 0.0024333 | 1.3 | 0.06
-Modify | 0.8096 | 1.2822 | 2.26 | 50.7 | 40.65
-Other | | 1.629 | | | 51.65
-
-Nlocal: 500 ave 510 max 493 min
-Histogram: 1 1 0 0 0 1 0 0 0 1
-Nghost: 154 ave 227 max 79 min
-Histogram: 1 0 0 0 1 0 1 0 0 1
-Neighs: 415.5 ave 610 max 258 min
-Histogram: 1 1 0 0 0 0 1 0 0 1
-
-Total # of neighbors = 1662
-Ave neighs/atom = 0.831
-Neighbor list builds = 71
-Dangerous builds = 0
-unfix ins
-run 150000
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 12.33 | 12.5 | 12.68 Mbytes
- Step CPU Atoms KinEng
- 20000 0 2000 6652.2957
- 21000 0.068149031 2000 6807.2201
- 22000 0.13906682 2000 6973.9359
- 23000 0.21167896 2000 7142.3648
- 24000 0.28828482 2000 7276.9717
- 25000 0.36895294 2000 7369.4191
- 26000 0.45705665 2000 7497.6526
- 27000 0.55283141 2000 7638.946
- 28000 0.65163553 2000 7780.0339
- 29000 0.75208427 2000 7881.8177
- 30000 0.85956458 2000 7967.2641
- 31000 0.94177635 2000 7994.9273
- 32000 1.0345834 2000 7937.0672
- 33000 1.1315152 2000 7774.0508
- 34000 1.2426423 2000 7591.1511
- 35000 1.3578344 2000 7357.5032
- 36000 1.4893311 2000 7147.3776
- 37000 1.6240315 2000 6980.0719
- 38000 1.7664339 2000 6813.0872
- 39000 1.91857 2000 6657.0694
- 40000 2.0835393 2000 6505.1356
- 41000 2.2038908 2000 6330.3106
- 42000 2.330345 2000 6148.0635
- 43000 2.4596185 2000 5933.4808
- 44000 2.5912876 2000 5759.5507
- 45000 2.7316375 2000 5510.4729
- 46000 2.8777238 2000 5332.8673
- 47000 3.0357893 2000 5164.4197
- 48000 3.1931582 2000 5027.4099
- 49000 3.341993 2000 4904.6999
- 50000 3.4914327 2000 4712.0967
- 51000 3.6880787 2000 4575.8693
- 52000 3.8868278 2000 4443.4894
- 53000 4.0538325 2000 4272.1666
- 54000 4.2275386 2000 4113.2811
- 55000 4.3935565 2000 3974.5981
- 56000 4.6008319 2000 3863.5272
- 57000 4.8305792 2000 3676.8918
- 58000 5.1085757 2000 3446.5177
- 59000 5.3025239 2000 3227.8857
- 60000 5.5061134 2000 2997.8151
- 61000 5.6771065 2000 2745.5998
- 62000 5.8533046 2000 2530.2536
- 63000 6.0266287 2000 2352.9283
- 64000 6.1975348 2000 2102.4916
- 65000 6.375875 2000 1906.3034
- 66000 6.6008814 2000 1683.179
- 67000 6.8728018 2000 1440.0663
- 68000 7.1104699 2000 1220.2743
- 69000 7.3660591 2000 1012.4596
- 70000 7.6208232 2000 796.99913
- 71000 7.8459169 2000 631.28788
- 72000 8.0433916 2000 459.93641
- 73000 8.2225178 2000 359.28959
- 74000 8.3982201 2000 286.19292
- 75000 8.5769976 2000 235.53259
- 76000 8.7541865 2000 187.55737
- 77000 9.0010462 2000 144.42323
- 78000 9.2721615 2000 116.12613
- 79000 9.4992863 2000 95.625301
- 80000 9.7368141 2000 82.645629
- 81000 9.9462546 2000 72.124657
- 82000 10.15281 2000 64.266704
- 83000 10.365519 2000 56.7285
- 84000 10.55069 2000 49.44393
- 85000 10.764107 2000 42.434733
- 86000 10.993211 2000 37.816266
- 87000 11.243268 2000 33.892006
- 88000 11.487204 2000 29.898596
- 89000 11.684173 2000 26.4401
- 90000 11.880908 2000 23.329056
- 91000 12.078366 2000 21.291141
- 92000 12.347446 2000 19.494401
- 93000 12.582632 2000 18.157646
- 94000 12.833491 2000 17.176709
- 95000 13.109452 2000 16.059418
- 96000 13.34541 2000 15.524934
- 97000 13.604566 2000 13.887097
- 98000 13.816696 2000 12.98846
- 99000 14.043128 2000 12.325347
- 100000 14.35998 2000 11.567779
- 101000 14.584033 2000 11.097346
- 102000 14.793606 2000 10.981696
- 103000 15.011832 2000 10.914661
- 104000 15.223053 2000 10.183009
- 105000 15.435892 2000 9.9825606
- 106000 15.651946 2000 9.5164341
- 107000 15.870696 2000 9.4270389
- 108000 16.237826 2000 9.2752131
- 109000 16.525601 2000 8.580319
- 110000 16.74452 2000 8.3138082
- 111000 16.991527 2000 7.826454
- 112000 17.322972 2000 7.5958866
- 113000 17.649386 2000 7.2760339
- 114000 17.967676 2000 7.2879075
- 115000 18.27941 2000 6.8298855
- 116000 18.619507 2000 6.6964815
- 117000 18.979092 2000 6.490952
- 118000 19.303215 2000 6.0204595
- 119000 19.683409 2000 5.9293145
- 120000 20.034873 2000 5.7244854
- 121000 20.329374 2000 5.4221021
- 122000 20.670529 2000 4.8227757
- 123000 20.970073 2000 4.7914829
- 124000 21.297132 2000 4.6895984
- 125000 21.524346 2000 4.4951309
- 126000 21.742931 2000 4.5186107
- 127000 21.983039 2000 4.5989696
- 128000 22.203881 2000 4.5578225
- 129000 22.428553 2000 4.2667783
- 130000 22.662049 2000 4.0855202
- 131000 22.893977 2000 4.129346
- 132000 23.134398 2000 4.1720282
- 133000 23.367561 2000 4.3178701
- 134000 23.614361 2000 4.1047803
- 135000 23.840139 2000 3.856834
- 136000 24.095293 2000 4.0099605
- 137000 24.320746 2000 4.1104868
- 138000 24.555868 2000 4.1538456
- 139000 24.798604 2000 4.3079797
- 140000 25.125474 2000 4.0655486
- 141000 25.360498 2000 4.1257388
- 142000 25.597535 2000 4.1180413
- 143000 25.824173 2000 4.2764691
- 144000 26.082826 2000 4.3992832
- 145000 26.307002 2000 4.0978942
- 146000 26.532413 2000 4.1776805
- 147000 26.759469 2000 4.2261665
- 148000 26.989405 2000 4.4049886
- 149000 27.215826 2000 4.5559941
- 150000 27.443235 2000 4.7449947
- 151000 27.670397 2000 4.962558
- 152000 27.901368 2000 4.8517188
- 153000 28.148201 2000 4.9263912
- 154000 28.379071 2000 4.6200149
- 155000 28.621063 2000 4.8289752
- 156000 28.870192 2000 5.043235
- 157000 29.105614 2000 5.2399981
- 158000 29.330537 2000 5.494424
- 159000 29.558095 2000 4.9215021
- 160000 29.785841 2000 4.8938104
- 161000 30.011182 2000 5.0832139
- 162000 30.23825 2000 5.2281894
- 163000 30.464829 2000 5.4710487
- 164000 30.719854 2000 5.7311326
- 165000 31.038065 2000 5.9048483
- 166000 31.340672 2000 6.1177544
- 167000 31.649901 2000 4.0749212
- 168000 31.928746 2000 4.0087545
- 169000 32.153717 2000 2.8333927
- 170000 32.380796 2000 2.6131424
-Loop time of 32.3808 on 4 procs for 150000 steps with 2000 atoms
-
-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 | 6.997 | 12.251 | 14.992 | 89.3 | 37.83
-Neigh | 0.1358 | 0.20191 | 0.24331 | 9.0 | 0.62
-Comm | 1.2102 | 2.0432 | 2.4992 | 36.1 | 6.31
-Output | 0.0079578 | 0.012222 | 0.020149 | 4.4 | 0.04
-Modify | 7.1333 | 9.974 | 12.03 | 56.2 | 30.80
-Other | | 7.899 | | | 24.39
-
-Nlocal: 500 ave 547 max 414 min
-Histogram: 1 0 0 0 0 0 1 0 0 2
-Nghost: 447.5 ave 678 max 201 min
-Histogram: 1 0 0 0 1 0 1 0 0 1
-Neighs: 4478.75 ave 5715 max 3358 min
-Histogram: 1 0 0 1 0 0 1 0 0 1
-
-Total # of neighbors = 17915
-Ave neighs/atom = 8.9575
-Neighbor list builds = 375
-Dangerous builds = 0
-
-# remove "plug" - need to redefine cylinder region & union
-
-region cylreg delete
-region hopreg delete
-region cylreg cylinder z ${xc} ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2 #Bottom & top are open
-region cylreg cylinder z 25 ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2
-region cylreg cylinder z 25 25 ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2
-region cylreg cylinder z 25 25 2 ${zcyllo} ${zconelo} side in units box open 1 open 2
-region cylreg cylinder z 25 25 2 0 ${zconelo} side in units box open 1 open 2
-region cylreg cylinder z 25 25 2 0 10 side in units box open 1 open 2
-
-region hopreg union 2 cylreg conereg
-
-unfix hopper3
-fix hopper3 all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1 region hopreg
-fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1 region hopreg
-
-run 100000
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 12.34 | 12.53 | 12.68 Mbytes
- Step CPU Atoms KinEng
- 170000 0 2000 2.6131424
- 171000 0.22601136 2000 3.529459
- 172000 0.45221016 2000 4.7071494
- 173000 0.68427839 2000 6.3480095
- 174000 0.91114205 2000 8.8055429
- 175000 1.1431874 2000 12.020148
- 176000 1.3732197 2000 16.079961
- 177000 1.6051751 2000 20.911155
- 178000 1.8346523 2000 26.447901
- 179000 2.0762403 2000 32.277607
- 180000 2.3420473 2000 39.374754
- 181000 2.6328957 2000 46.824434
- 182000 2.8669203 2000 54.755937
- 183000 3.1047916 2000 63.957816
- 184000 3.3310346 2000 74.217343
- 185000 3.5685015 2000 85.472859
- 186000 3.7955114 2000 97.586962
- 187000 4.0326183 2000 110.39658
- 188000 4.267244 2000 123.54524
- 189000 4.4987867 2000 137.45798
- 190000 4.7358838 2000 151.81094
- 191000 4.9494874 2000 166.91945
- 192000 5.1552044 2000 182.93379
- 193000 5.3547002 2000 200.32195
- 194000 5.5590208 2000 218.31863
- 195000 5.7575332 2000 237.22122
- 196000 5.9520759 2000 255.12936
- 197000 6.1457469 2000 273.87347
- 198000 6.341216 2000 293.82126
- 199000 6.5397944 2000 315.13067
- 200000 6.7418645 2000 337.18517
- 201000 6.9368245 2000 359.48438
- 202000 7.1538903 2000 382.76229
- 203000 7.3864641 2000 408.60338
- 204000 7.6731476 2000 435.15421
- 205000 7.9053649 2000 462.53542
- 206000 8.1480905 2000 490.85791
- 207000 8.3856692 2000 519.80878
- 208000 8.6034715 2000 550.44978
- 209000 8.8046602 2000 581.78594
- 210000 9.0044136 2000 615.02491
- 211000 9.2216638 2000 649.34564
- 212000 9.4269046 2000 684.24357
- 213000 9.6587854 2000 720.72627
- 214000 9.8596293 2000 757.96901
- 215000 10.05877 2000 796.8493
- 216000 10.256066 2000 836.58839
- 217000 10.48718 2000 877.81823
- 218000 10.694787 2000 920.81077
- 219000 10.891455 2000 963.77552
- 220000 11.147269 2000 1007.6868
- 221000 11.400829 2000 1054.0654
- 222000 11.65238 2000 1102.4934
- 223000 11.846807 2000 1151.1348
- 224000 12.040148 2000 1200.6622
- 225000 12.229259 2000 1251.5126
-WARNING: Lost atoms: original 2000 current 1999 (src/thermo.cpp:487)
- 226000 12.420863 1999 1299.6349
- 227000 12.635492 1997 1338.1126
- 228000 12.827738 1987 1354.6661
- 229000 13.016127 1980 1369.1412
- 230000 13.211511 1970 1369.1776
- 231000 13.404909 1963 1377.7863
- 232000 13.602332 1950 1362.1028
- 233000 13.796103 1938 1344.4535
- 234000 13.988442 1924 1318.1397
- 235000 14.185813 1907 1269.3181
- 236000 14.378388 1895 1242.269
- 237000 14.568867 1881 1188.0729
- 238000 14.75676 1868 1162.8778
- 239000 14.947894 1854 1111.9974
- 240000 15.160004 1840 1050.2813
- 241000 15.340495 1831 1024.5782
- 242000 15.523597 1816 980.07203
- 243000 15.725193 1807 973.84606
- 244000 15.902549 1796 936.95947
- 245000 16.081382 1790 916.53685
- 246000 16.261081 1780 893.82891
- 247000 16.451727 1770 853.09944
- 248000 16.628641 1755 804.73429
- 249000 16.804105 1749 773.19378
- 250000 16.978354 1738 734.78084
- 251000 17.152527 1725 668.92528
- 252000 17.328291 1717 651.36038
- 253000 17.512786 1706 595.48412
- 254000 17.695931 1699 564.79829
- 255000 17.874221 1695 558.19897
- 256000 18.050516 1693 568.02459
- 257000 18.228697 1692 584.97166
- 258000 18.400925 1689 574.19701
- 259000 18.576449 1687 583.36332
- 260000 18.754006 1684 577.56927
- 261000 18.946091 1681 582.0375
- 262000 19.182957 1679 583.29644
- 263000 19.394795 1676 575.09831
- 264000 19.604668 1673 575.78272
- 265000 19.81517 1672 595.66572
- 266000 20.046658 1670 610.84262
- 267000 20.332684 1665 588.36505
- 268000 20.573691 1662 593.44831
- 269000 20.800574 1660 600.31964
- 270000 21.058624 1656 588.46212
-Loop time of 21.0587 on 4 procs for 100000 steps with 1656 atoms
-
-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 | 3.8632 | 8.4037 | 11.541 | 97.3 | 39.91
-Neigh | 0.13431 | 0.15665 | 0.17248 | 3.8 | 0.74
-Comm | 0.70516 | 1.4552 | 1.9637 | 40.7 | 6.91
-Output | 0.0030904 | 0.0079543 | 0.016722 | 5.9 | 0.04
-Modify | 5.3661 | 6.1781 | 6.8249 | 22.0 | 29.34
-Other | | 4.857 | | | 23.06
-
-Nlocal: 414 ave 426 max 385 min
-Histogram: 1 0 0 0 0 0 0 0 0 3
-Nghost: 408 ave 634 max 183 min
-Histogram: 1 0 0 1 0 0 1 0 0 1
-Neighs: 3463 ave 4360 max 2354 min
-Histogram: 1 0 0 1 0 0 0 0 1 1
-
-Total # of neighbors = 13852
-Ave neighs/atom = 8.3647343
-Neighbor list builds = 255
-Dangerous builds = 0
-Total wall time: 0:00:56
diff --git a/examples/granregion/log.16Mar23.granregion.mixer.g++.1 b/examples/granregion/log.16Mar23.granregion.mixer.g++.1
deleted file mode 100644
index 3fc012d20c..0000000000
--- a/examples/granregion/log.16Mar23.granregion.mixer.g++.1
+++ /dev/null
@@ -1,634 +0,0 @@
-LAMMPS (8 Feb 2023)
-OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
- using 1 OpenMP thread(s) per MPI task
-variable name string mixer
-
-thermo_modify flush yes
-variable seed equal 14314
-
-###############################################
-# Particle parameters
-################################################
-
-variable rlo equal 0.3
-variable rhi equal 0.6
-variable dlo equal 2.0*${rlo}
-variable dlo equal 2.0*0.3
-variable dhi equal 2.0*${rhi}
-variable dhi equal 2.0*0.6
-variable skin equal ${rhi}
-variable skin equal 0.6
-
-variable coeffRes equal 0.1
-variable coeffFric equal 0.5
-
-variable kn equal 10^5
-variable kt equal 0.2*${kn}
-variable kt equal 0.2*100000
-
-variable gravity equal 1.0
-variable density equal 1.0
-
-variable min_mass equal ${density}*4.0/3.0*PI*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*PI*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*PI*0.3*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*PI*0.3*0.3*${rlo}
-variable min_mass equal 1*4.0/3.0*PI*0.3*0.3*0.3
-variable a equal (-2.0*log(${coeffRes})/PI)^2
-variable a equal (-2.0*log(0.1)/PI)^2
-variable gamma_n equal sqrt($a*2*${kn}/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569351*2*${kn}/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569351*2*100000/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569351*2*100000/0.113097335529233/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569351*2*100000/0.113097335529233/(1+0.25*0.405284734569351))
-variable gamma_t equal ${gamma_n}*0.5
-variable gamma_t equal 806.699778405191*0.5
-
-variable tcol equal PI/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
-variable tcol equal PI/sqrt(2*100000/${min_mass}-${gamma_n}/4.0)
-variable tcol equal PI/sqrt(2*100000/0.113097335529233-${gamma_n}/4.0)
-variable tcol equal PI/sqrt(2*100000/0.113097335529233-806.699778405191/4.0)
-
-variable dt equal ${tcol}*0.02
-variable dt equal 0.00236257621510454*0.02
-timestep ${dt}
-timestep 4.72515243020908e-05
-
-###############################################
-
-variable dumpfreq equal 1000
-variable logfreq equal 1000
-
-newton on
-atom_style sphere
-
-boundary p p f
-
-region boxreg block 0 20 0 20 0 20
-create_box 1 boxreg
-Created orthogonal box = (0 0 0) to (20 20 20)
- 1 by 1 by 1 MPI processor grid
-
-pair_style gran/hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 100000 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 100000 20000 ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 100000 20000 806.699778405191 ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 100000 20000 806.699778405191 403.349889202595 ${coeffFric} 1
-pair_style gran/hertz/history 100000 20000 806.699778405191 403.349889202595 0.5 1
-pair_coeff * *
-
-neighbor ${skin} multi
-neighbor 0.6 multi
-thermo ${logfreq}
-thermo 1000
-
-comm_style brick
-comm_modify mode multi group all vel yes
-balance 1.1 shift xyz 20 1.1
-Balancing ...
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Neighbor list info ...
- update: every = 1 steps, delay = 0 steps, check = yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 0
- ghost atom cutoff = 0
- binsize = 20, bins = 1 1 1
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair gran/hertz/history, perpetual
- attributes: half, newton on, size, history
- pair build: half/size/multi/newton
- stencil: half/multi/3d
- bin: multi
-WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:210)
-fix bal all balance 10000 1.1 shift xyz 20 1.01
-
-####################### Options specific to pouring #########################
-
-region insreg cylinder z 10 10 8 10 18 side in units box
-region cylreg cylinder z 10 10 10 0 20 side in units box
-
-variable theta equal (step/400000)*2*PI
-
-region b1 block 2 18 9 11 0 4 side out rotate v_theta 10 10 0 0 0 1 units box
-region b2 block 9 11 2 18 0 3.99999 side out rotate v_theta 10 10 0 0 0 1 units box
-
-region mixer intersect 3 cylreg b1 b2 side in
-
-fix grav all gravity ${gravity} vector 0 0 -1
-fix grav all gravity 1 vector 0 0 -1
-fix 1 all nve/sphere
-
-fix mixwall all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 20000 ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 ${gamma_t} ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 403.349889202595 ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 403.349889202595 0.5 1 region mixer
-
-fix ins all pour 1000 1 42424 region insreg diam range ${dlo} ${dhi} dens ${density} ${density}
-fix ins all pour 1000 1 42424 region insreg diam range 0.6 ${dhi} dens ${density} ${density}
-fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens ${density} ${density}
-fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens 1 ${density}
-fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens 1 1
-Particle insertion: 444 every 84653 steps, 1000 by step 169307
-
-#dump 1 all custom ${dumpfreq} ${name}_pour.dump # id type mass diameter x y z
-
-#dump 2 all image 4000 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 zoom 1.5 # box no 0.0 axes no 0.0 0.0
-#dump_modify 2 pad 6
-
-thermo_style custom step cpu atoms ke v_theta
-WARNING: New thermo_style command, previous thermo_modify settings will be lost (src/output.cpp:895)
-thermo_modify flush yes lost warn
-
-run 200000
-
-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
-
-Your simulation uses code contributions which should be cited:
-
-- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
-
-@Article{Intveld08,
- author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
- title = {Accurate and Efficient Methods for Modeling Colloidal
- Mixtures in an Explicit Solvent using Molecular Dynamics},
- journal = {Comput.\ Phys.\ Commut.},
- year = 2008,
- volume = 179,
- pages = {320--329}
-}
-
-@article{Shire2020,
- author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
- title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
- Detection Applied to Investigate the Quasi-Static Limit},
- journal = {Computational Particle Mechanics},
- year = {2020}
-}
-
-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
-
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 5.861 | 5.861 | 5.861 Mbytes
- Step CPU Atoms KinEng v_theta
- 0 0 0 -0 0
- 1000 0.11477344 444 -0 0.015707963
- 2000 0.21604269 444 -0 0.031415927
- 3000 0.31421365 444 -0 0.04712389
- 4000 0.41095902 444 -0 0.062831853
- 5000 0.50703042 444 -0 0.078539816
- 6000 0.60585007 444 -0 0.09424778
- 7000 0.70232419 444 -0 0.10995574
- 8000 0.80002622 444 -0 0.12566371
- 9000 0.89464008 444 -0 0.14137167
- 10000 0.99260726 444 -0 0.15707963
- 11000 1.090675 444 -0 0.1727876
- 12000 1.1878107 444 -0 0.18849556
- 13000 1.2860401 444 -0 0.20420352
- 14000 1.3830433 444 -0 0.21991149
- 15000 1.4834023 444 -0 0.23561945
- 16000 1.5799984 444 -0 0.25132741
- 17000 1.6758091 444 -0 0.26703538
- 18000 1.7713554 444 -0 0.28274334
- 19000 1.8684734 444 -0 0.2984513
- 20000 1.9661563 444 -0 0.31415927
- 21000 2.0629748 444 -0 0.32986723
- 22000 2.1575594 444 -0 0.34557519
- 23000 2.2530422 444 -0 0.36128316
- 24000 2.3525179 444 -0 0.37699112
- 25000 2.4494323 444 -0 0.39269908
- 26000 2.5454666 444 -0 0.40840704
- 27000 2.6402269 444 -0 0.42411501
- 28000 2.7364338 444 -0 0.43982297
- 29000 2.8349 444 -0 0.45553093
- 30000 2.9327959 444 -0 0.4712389
- 31000 3.0304534 444 -0 0.48694686
- 32000 3.1315005 444 -0 0.50265482
- 33000 3.2290307 444 -0 0.51836279
- 34000 3.3243787 444 -0 0.53407075
- 35000 3.4232964 444 -0 0.54977871
- 36000 3.5235978 444 -0 0.56548668
- 37000 3.6214101 444 -0 0.58119464
- 38000 3.7179412 444 -0 0.5969026
- 39000 3.8159856 444 -0 0.61261057
- 40000 3.9121916 444 -0 0.62831853
- 41000 4.0080794 444 -0 0.64402649
- 42000 4.1087349 444 -0 0.65973446
- 43000 4.2059697 444 -0 0.67544242
- 44000 4.3043867 444 -0 0.69115038
- 45000 4.4014253 444 -0 0.70685835
- 46000 4.5000241 444 -0 0.72256631
- 47000 4.5970258 444 -0 0.73827427
- 48000 4.6929243 444 -0 0.75398224
- 49000 4.7894702 444 -0 0.7696902
- 50000 4.8858098 444 -0 0.78539816
- 51000 4.985063 444 -0 0.80110613
- 52000 5.0863877 444 -0 0.81681409
- 53000 5.181301 444 -0 0.83252205
- 54000 5.2819523 444 -0 0.84823002
- 55000 5.3895357 444 -0 0.86393798
- 56000 5.5225568 444 -0 0.87964594
- 57000 5.6473901 444 -0 0.89535391
- 58000 5.7786123 444 -0 0.91106187
- 59000 5.8932617 444 -0 0.92676983
- 60000 6.004952 444 -0 0.9424778
- 61000 6.1168028 444 -0 0.95818576
- 62000 6.2274784 444 -0 0.97389372
- 63000 6.341172 444 -0 0.98960169
- 64000 6.4565154 444 -0 1.0053096
- 65000 6.5684785 444 -0 1.0210176
- 66000 6.6836542 444 -0 1.0367256
- 67000 6.797745 444 -0 1.0524335
- 68000 6.9091592 444 -0 1.0681415
- 69000 7.0230958 444 -0 1.0838495
- 70000 7.140508 444 -0 1.0995574
- 71000 7.2547153 444 -0 1.1152654
- 72000 7.3698096 444 -0 1.1309734
- 73000 7.4846587 444 -0 1.1466813
- 74000 7.6005538 444 -0 1.1623893
- 75000 7.715498 444 -0 1.1780972
- 76000 7.8306339 444 -0 1.1938052
- 77000 7.9458861 444 -0 1.2095132
- 78000 8.0608796 444 -0 1.2252211
- 79000 8.1819612 444 -0 1.2409291
- 80000 8.3017939 444 -0 1.2566371
- 81000 8.4206794 444 -0 1.272345
- 82000 8.5396045 444 -0 1.288053
- 83000 8.6588178 444 -0 1.303761
- 84000 8.7939815 444 -0 1.3194689
- 85000 8.9999511 888 -0 1.3351769
- 86000 9.2762515 888 -0 1.3508848
- 87000 9.5497189 888 -0 1.3665928
- 88000 9.8025426 888 -0 1.3823008
- 89000 10.063005 888 -0 1.3980087
- 90000 10.343956 888 -0 1.4137167
- 91000 10.630004 888 -0 1.4294247
- 92000 10.865437 888 -0 1.4451326
- 93000 11.090302 888 -0 1.4608406
- 94000 11.306921 888 -0 1.4765485
- 95000 11.525442 888 -0 1.4922565
- 96000 11.786482 888 -0 1.5079645
- 97000 12.033336 888 -0 1.5236724
- 98000 12.258224 888 -0 1.5393804
- 99000 12.486583 888 -0 1.5550884
- 100000 12.70566 888 -0 1.5707963
- 101000 12.934051 888 -0 1.5865043
- 102000 13.194977 888 -0 1.6022123
- 103000 13.503561 888 -0 1.6179202
- 104000 13.737785 888 -0 1.6336282
- 105000 13.96388 888 -0 1.6493361
- 106000 14.190156 888 -0 1.6650441
- 107000 14.416346 888 -0 1.6807521
- 108000 14.642321 888 -0 1.69646
- 109000 14.877668 888 -0 1.712168
- 110000 15.114644 888 -0 1.727876
- 111000 15.354762 888 -0 1.7435839
- 112000 15.615795 888 -0 1.7592919
- 113000 15.854301 888 -0 1.7749998
- 114000 16.099855 888 -0 1.7907078
- 115000 16.344044 888 -0 1.8064158
- 116000 16.60829 888 -0 1.8221237
- 117000 16.847146 888 -0 1.8378317
- 118000 17.086787 888 -0 1.8535397
- 119000 17.324264 888 -0 1.8692476
- 120000 17.563913 888 -0 1.8849556
- 121000 17.798333 888 -0 1.9006636
- 122000 18.033339 888 -0 1.9163715
- 123000 18.275883 888 -0 1.9320795
- 124000 18.542879 888 -0 1.9477874
- 125000 18.790098 888 -0 1.9634954
- 126000 19.034113 888 -0 1.9792034
- 127000 19.286183 888 -0 1.9949113
- 128000 19.574764 888 -0 2.0106193
- 129000 19.832536 888 -0 2.0263273
- 130000 20.085705 888 -0 2.0420352
- 131000 20.327805 888 -0 2.0577432
- 132000 20.576476 888 -0 2.0734512
- 133000 20.82021 888 -0 2.0891591
- 134000 21.063425 888 -0 2.1048671
- 135000 21.304848 888 -0 2.120575
- 136000 21.554936 888 -0 2.136283
- 137000 21.797949 888 -0 2.151991
- 138000 22.041181 888 -0 2.1676989
- 139000 22.288509 888 -0 2.1834069
- 140000 22.539512 888 -0 2.1991149
- 141000 22.786046 888 -0 2.2148228
- 142000 23.052553 888 -0 2.2305308
- 143000 23.321282 888 -0 2.2462387
- 144000 23.619171 888 -0 2.2619467
- 145000 23.918581 888 -0 2.2776547
- 146000 24.200849 888 -0 2.2933626
- 147000 24.500127 888 -0 2.3090706
- 148000 24.756357 888 -0 2.3247786
- 149000 25.015262 888 -0 2.3404865
- 150000 25.271136 888 -0 2.3561945
- 151000 25.519846 888 -0 2.3719025
- 152000 25.780481 888 -0 2.3876104
- 153000 26.027917 888 -0 2.4033184
- 154000 26.277021 888 -0 2.4190263
- 155000 26.54158 888 -0 2.4347343
- 156000 26.828357 888 -0 2.4504423
- 157000 27.172993 888 -0 2.4661502
- 158000 27.454171 888 -0 2.4818582
- 159000 27.72964 888 -0 2.4975662
- 160000 28.007464 888 -0 2.5132741
- 161000 28.28268 888 -0 2.5289821
- 162000 28.561094 888 -0 2.54469
- 163000 28.839295 888 -0 2.560398
- 164000 29.117588 888 -0 2.576106
- 165000 29.394126 888 -0 2.5918139
- 166000 29.675102 888 -0 2.6075219
- 167000 29.951524 888 -0 2.6232299
- 168000 30.233181 888 -0 2.6389378
- 169000 30.516798 888 -0 2.6546458
- 170000 30.818897 1000 -0 2.6703538
- 171000 31.215403 1000 -0 2.6860617
- 172000 31.528362 1000 -0 2.7017697
- 173000 31.844759 1000 -0 2.7174776
- 174000 32.159787 1000 -0 2.7331856
- 175000 32.482605 1000 -0 2.7488936
- 176000 32.798004 1000 -0 2.7646015
- 177000 33.112668 1000 -0 2.7803095
- 178000 33.429501 1000 -0 2.7960175
- 179000 33.74646 1000 -0 2.8117254
- 180000 34.059172 1000 -0 2.8274334
- 181000 34.381226 1000 -0 2.8431414
- 182000 34.697465 1000 -0 2.8588493
- 183000 35.008892 1000 -0 2.8745573
- 184000 35.332856 1000 -0 2.8902652
- 185000 35.650733 1000 -0 2.9059732
- 186000 35.971328 1000 -0 2.9216812
- 187000 36.298046 1000 -0 2.9373891
- 188000 36.622634 1000 -0 2.9530971
- 189000 36.945728 1000 -0 2.9688051
- 190000 37.268801 1000 -0 2.984513
- 191000 37.592615 1000 -0 3.000221
- 192000 37.915197 1000 -0 3.0159289
- 193000 38.226138 1000 -0 3.0316369
- 194000 38.534735 1000 -0 3.0473449
- 195000 38.844711 1000 -0 3.0630528
- 196000 39.159518 1000 -0 3.0787608
- 197000 39.474235 1000 -0 3.0944688
- 198000 39.786609 1000 -0 3.1101767
- 199000 40.10213 1000 -0 3.1258847
- 200000 40.421226 1000 -0 3.1415927
-Loop time of 40.4213 on 1 procs for 200000 steps with 1000 atoms
-
-Performance: 20199.903 tau/day, 4947.886 timesteps/s, 4.948 Matom-step/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.6681 | 3.6681 | 3.6681 | 0.0 | 9.07
-Neigh | 0.050194 | 0.050194 | 0.050194 | 0.0 | 0.12
-Comm | 0.53308 | 0.53308 | 0.53308 | 0.0 | 1.32
-Output | 0.0071363 | 0.0071363 | 0.0071363 | 0.0 | 0.02
-Modify | 35.563 | 35.563 | 35.563 | 0.0 | 87.98
-Other | | 0.5999 | | | 1.48
-
-Nlocal: 1000 ave 1000 max 1000 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Nghost: 197 ave 197 max 197 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Neighs: 3812 ave 3812 max 3812 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 3812
-Ave neighs/atom = 3.812
-Neighbor list builds = 205
-Dangerous builds = 0
-unfix ins
-run 200000
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 11.89 | 11.89 | 11.89 Mbytes
- Step CPU Atoms KinEng v_theta
- 200000 0 1000 1.0188213 3.1415927
- 201000 0.31745969 1000 1.0237918 3.1573006
- 202000 0.6315036 1000 1.0177231 3.1730086
- 203000 0.9480314 1000 1.0127096 3.1887165
- 204000 1.2572431 1000 1.0084386 3.2044245
- 205000 1.5683429 1000 0.9957528 3.2201325
- 206000 1.8801922 1000 1.0003921 3.2358404
- 207000 2.1905883 1000 0.99358387 3.2515484
- 208000 2.4948426 1000 0.99103748 3.2672564
- 209000 2.8195665 1000 0.98488628 3.2829643
- 210000 3.1420952 1000 0.98305824 3.2986723
- 211000 3.4618849 1000 0.97185818 3.3143802
- 212000 3.7910078 1000 0.96191966 3.3300882
- 213000 4.1184009 1000 0.95953159 3.3457962
- 214000 4.4491355 1000 0.95307268 3.3615041
- 215000 4.7782398 1000 0.95612155 3.3772121
- 216000 5.1088177 1000 0.96582166 3.3929201
- 217000 5.4376503 1000 0.96124408 3.408628
- 218000 5.7707229 1000 0.95705813 3.424336
- 219000 6.1055922 1000 0.9660222 3.440044
- 220000 6.4418056 1000 0.97539486 3.4557519
- 221000 6.7755181 1000 0.97919396 3.4714599
- 222000 7.104521 1000 0.97448171 3.4871678
- 223000 7.4368025 1000 0.95742917 3.5028758
- 224000 7.7623405 1000 0.94218245 3.5185838
- 225000 8.0932682 1000 0.93056484 3.5342917
- 226000 8.4217598 1000 0.92009109 3.5499997
- 227000 8.747426 1000 0.90684871 3.5657077
- 228000 9.0818038 1000 0.91719046 3.5814156
- 229000 9.4125504 1000 0.92681746 3.5971236
- 230000 9.7439963 1000 0.9195493 3.6128316
- 231000 10.075499 1000 0.93275667 3.6285395
- 232000 10.404017 1000 0.9494565 3.6442475
- 233000 10.774786 1000 0.95036607 3.6599554
- 234000 11.158713 1000 0.9596283 3.6756634
- 235000 11.566878 1000 0.98314341 3.6913714
- 236000 11.977294 1000 0.98115865 3.7070793
- 237000 12.347191 1000 0.9723466 3.7227873
- 238000 12.686388 1000 0.95267817 3.7384953
- 239000 13.031631 1000 0.92661956 3.7542032
- 240000 13.451121 1000 0.92237207 3.7699112
- 241000 13.855031 1000 0.91301732 3.7856191
- 242000 14.272001 1000 0.90488754 3.8013271
- 243000 14.632631 1000 0.90430417 3.8170351
- 244000 14.97608 1000 0.90179051 3.832743
- 245000 15.419173 1000 0.89658897 3.848451
- 246000 15.903699 1000 0.89583335 3.864159
- 247000 16.312374 1000 0.89409138 3.8798669
- 248000 16.660472 1000 0.89948364 3.8955749
- 249000 17.063147 1000 0.90196936 3.9112829
- 250000 17.423622 1000 0.89616943 3.9269908
- 251000 17.76439 1000 0.87816303 3.9426988
- 252000 18.103828 1000 0.86705341 3.9584067
- 253000 18.454644 1000 0.84494344 3.9741147
- 254000 18.876297 1000 0.81541663 3.9898227
- 255000 19.264851 1000 0.80071805 4.0055306
- 256000 19.669757 1000 0.80290754 4.0212386
- 257000 20.066097 1000 0.80000385 4.0369466
- 258000 20.481516 1000 0.80379277 4.0526545
- 259000 20.851537 1000 0.81091684 4.0683625
- 260000 21.246226 1000 0.80124855 4.0840704
- 261000 21.586832 1000 0.79581606 4.0997784
- 262000 21.968726 1000 0.78415946 4.1154864
- 263000 22.388474 1000 0.78837276 4.1311943
- 264000 22.76238 1000 0.78962435 4.1469023
- 265000 23.13787 1000 0.79388706 4.1626103
- 266000 23.470742 1000 0.80484385 4.1783182
- 267000 23.801402 1000 0.79505699 4.1940262
- 268000 24.14266 1000 0.78663829 4.2097342
- 269000 24.545281 1000 0.77557297 4.2254421
- 270000 24.886776 1000 0.76992342 4.2411501
- 271000 25.218744 1000 0.75955867 4.256858
- 272000 25.549898 1000 0.76207709 4.272566
- 273000 25.882738 1000 0.76891185 4.288274
- 274000 26.212384 1000 0.77380617 4.3039819
- 275000 26.540612 1000 0.77349795 4.3196899
- 276000 26.869636 1000 0.77559636 4.3353979
- 277000 27.200449 1000 0.76806972 4.3511058
- 278000 27.548549 1000 0.76223861 4.3668138
- 279000 27.883681 1000 0.76306533 4.3825218
- 280000 28.221552 1000 0.76369569 4.3982297
- 281000 28.558479 1000 0.75945303 4.4139377
- 282000 28.892758 1000 0.75872312 4.4296456
- 283000 29.224927 1000 0.75354345 4.4453536
- 284000 29.565477 1000 0.74433058 4.4610616
- 285000 29.914679 1000 0.7349005 4.4767695
- 286000 30.265305 1000 0.73182808 4.4924775
- 287000 30.607982 1000 0.73334122 4.5081855
- 288000 30.94168 1000 0.73308623 4.5238934
- 289000 31.276062 1000 0.73620818 4.5396014
- 290000 31.614934 1000 0.73906492 4.5553093
- 291000 31.959782 1000 0.73921306 4.5710173
- 292000 32.296279 1000 0.73919766 4.5867253
- 293000 32.615262 1000 0.75148875 4.6024332
- 294000 32.93925 1000 0.76390126 4.6181412
- 295000 33.266316 1000 0.76421084 4.6338492
- 296000 33.591115 1000 0.78124272 4.6495571
- 297000 33.924279 1000 0.78526224 4.6652651
- 298000 34.256265 1000 0.78279226 4.6809731
- 299000 34.584382 1000 0.78390001 4.696681
- 300000 34.910629 1000 0.78017239 4.712389
- 301000 35.233205 1000 0.77432653 4.7280969
- 302000 35.55956 1000 0.7627792 4.7438049
- 303000 35.885484 1000 0.75222273 4.7595129
- 304000 36.205453 1000 0.73765921 4.7752208
- 305000 36.525101 1000 0.72338298 4.7909288
- 306000 36.845236 1000 0.71944975 4.8066368
- 307000 37.168044 1000 0.71547274 4.8223447
- 308000 37.491196 1000 0.71267737 4.8380527
- 309000 37.827079 1000 0.70506173 4.8537606
- 310000 38.168049 1000 0.70685173 4.8694686
- 311000 38.504282 1000 0.70327488 4.8851766
- 312000 38.846152 1000 0.69732519 4.9008845
- 313000 39.191958 1000 0.70137823 4.9165925
- 314000 39.532177 1000 0.70613806 4.9323005
- 315000 39.876728 1000 0.70981591 4.9480084
- 316000 40.225244 1000 0.72246602 4.9637164
- 317000 40.573681 1000 0.71946499 4.9794244
- 318000 40.918134 1000 0.73275857 4.9951323
- 319000 41.261914 1000 0.74357547 5.0108403
- 320000 41.607984 1000 0.74138038 5.0265482
- 321000 41.957822 1000 0.73285846 5.0422562
- 322000 42.30176 1000 0.72990718 5.0579642
- 323000 42.644077 1000 0.72024459 5.0736721
- 324000 42.985509 1000 0.71052943 5.0893801
- 325000 43.323921 1000 0.69560261 5.1050881
- 326000 43.664945 1000 0.69939398 5.120796
- 327000 44.004741 1000 0.71331291 5.136504
- 328000 44.347204 1000 0.72181082 5.152212
- 329000 44.689866 1000 0.72534262 5.1679199
- 330000 45.055673 1000 0.73874292 5.1836279
- 331000 45.400501 1000 0.74135464 5.1993358
- 332000 45.743289 1000 0.73578005 5.2150438
- 333000 46.087061 1000 0.72662516 5.2307518
- 334000 46.427231 1000 0.72030125 5.2464597
- 335000 46.767813 1000 0.72801784 5.2621677
- 336000 47.108619 1000 0.73020974 5.2778757
- 337000 47.44666 1000 0.7344527 5.2935836
- 338000 47.784653 1000 0.73826638 5.3092916
- 339000 48.124114 1000 0.74079395 5.3249995
- 340000 48.463953 1000 0.74030413 5.3407075
- 341000 48.804616 1000 0.74815855 5.3564155
- 342000 49.143226 1000 0.75762011 5.3721234
- 343000 49.482788 1000 0.76311094 5.3878314
- 344000 49.822597 1000 0.76394459 5.4035394
- 345000 50.162186 1000 0.75550163 5.4192473
- 346000 50.496689 1000 0.7594991 5.4349553
- 347000 50.831695 1000 0.76650932 5.4506633
- 348000 51.167201 1000 0.76750437 5.4663712
- 349000 51.501847 1000 0.77084248 5.4820792
- 350000 51.841805 1000 0.76487701 5.4977871
- 351000 52.179907 1000 0.76870148 5.5134951
- 352000 52.517605 1000 0.77597853 5.5292031
- 353000 52.850047 1000 0.77929348 5.544911
- 354000 53.182408 1000 0.7744937 5.560619
- 355000 53.512931 1000 0.76114616 5.576327
- 356000 53.845782 1000 0.75392687 5.5920349
- 357000 54.178336 1000 0.74858889 5.6077429
- 358000 54.514517 1000 0.75630978 5.6234508
- 359000 54.850783 1000 0.75781107 5.6391588
- 360000 55.183323 1000 0.75613713 5.6548668
- 361000 55.518704 1000 0.75250391 5.6705747
- 362000 55.851425 1000 0.75790051 5.6862827
- 363000 56.212376 1000 0.75283475 5.7019907
- 364000 56.542027 1000 0.7431151 5.7176986
- 365000 56.874325 1000 0.73274509 5.7334066
- 366000 57.208926 1000 0.72261631 5.7491146
- 367000 57.596495 1000 0.71279773 5.7648225
- 368000 58.007863 1000 0.70452113 5.7805305
- 369000 58.346944 1000 0.69777381 5.7962384
- 370000 58.686215 1000 0.69698007 5.8119464
- 371000 59.030366 1000 0.69322062 5.8276544
- 372000 59.368607 1000 0.67728454 5.8433623
- 373000 59.704376 1000 0.67335006 5.8590703
- 374000 60.044772 1000 0.66920493 5.8747783
- 375000 60.382875 1000 0.65614401 5.8904862
- 376000 60.72002 1000 0.65874131 5.9061942
- 377000 61.058554 1000 0.67072465 5.9219022
- 378000 61.400078 1000 0.68118419 5.9376101
- 379000 61.748931 1000 0.68481865 5.9533181
- 380000 62.098203 1000 0.68840839 5.969026
- 381000 62.444961 1000 0.69447162 5.984734
- 382000 62.797286 1000 0.69881397 6.000442
- 383000 63.154921 1000 0.69610171 6.0161499
- 384000 63.508448 1000 0.70059329 6.0318579
- 385000 63.857115 1000 0.71085103 6.0475659
- 386000 64.207915 1000 0.71532684 6.0632738
- 387000 64.561127 1000 0.72968624 6.0789818
- 388000 64.939826 1000 0.74729894 6.0946897
- 389000 65.284635 1000 0.76268063 6.1103977
- 390000 65.631752 1000 0.77170089 6.1261057
- 391000 65.981566 1000 0.77212462 6.1418136
- 392000 66.328406 1000 0.773784 6.1575216
- 393000 66.655905 1000 0.7731096 6.1732296
- 394000 66.993751 1000 0.77245259 6.1889375
- 395000 67.322842 1000 0.76912533 6.2046455
- 396000 67.647532 1000 0.76397972 6.2203535
- 397000 67.977448 1000 0.75736166 6.2360614
- 398000 68.310064 1000 0.75287599 6.2517694
- 399000 68.635966 1000 0.75354368 6.2674773
- 400000 68.963492 1000 0.75582397 6.2831853
-Loop time of 68.9635 on 1 procs for 200000 steps with 1000 atoms
-
-Performance: 11839.683 tau/day, 2900.084 timesteps/s, 2.900 Matom-step/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 | 11.238 | 11.238 | 11.238 | 0.0 | 16.30
-Neigh | 0.077817 | 0.077817 | 0.077817 | 0.0 | 0.11
-Comm | 1.5441 | 1.5441 | 1.5441 | 0.0 | 2.24
-Output | 0.0082341 | 0.0082341 | 0.0082341 | 0.0 | 0.01
-Modify | 55.304 | 55.304 | 55.304 | 0.0 | 80.19
-Other | | 0.7909 | | | 1.15
-
-Nlocal: 1000 ave 1000 max 1000 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Nghost: 278 ave 278 max 278 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Neighs: 5072 ave 5072 max 5072 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 5072
-Ave neighs/atom = 5.072
-Neighbor list builds = 166
-Dangerous builds = 0
-Total wall time: 0:01:49
diff --git a/examples/granregion/log.16Mar23.granregion.mixer.g++.4 b/examples/granregion/log.16Mar23.granregion.mixer.g++.4
deleted file mode 100644
index b601f3f13a..0000000000
--- a/examples/granregion/log.16Mar23.granregion.mixer.g++.4
+++ /dev/null
@@ -1,634 +0,0 @@
-LAMMPS (8 Feb 2023)
-OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
- using 1 OpenMP thread(s) per MPI task
-variable name string mixer
-
-thermo_modify flush yes
-variable seed equal 14314
-
-###############################################
-# Particle parameters
-################################################
-
-variable rlo equal 0.3
-variable rhi equal 0.6
-variable dlo equal 2.0*${rlo}
-variable dlo equal 2.0*0.3
-variable dhi equal 2.0*${rhi}
-variable dhi equal 2.0*0.6
-variable skin equal ${rhi}
-variable skin equal 0.6
-
-variable coeffRes equal 0.1
-variable coeffFric equal 0.5
-
-variable kn equal 10^5
-variable kt equal 0.2*${kn}
-variable kt equal 0.2*100000
-
-variable gravity equal 1.0
-variable density equal 1.0
-
-variable min_mass equal ${density}*4.0/3.0*PI*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*PI*${rlo}*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*PI*0.3*${rlo}*${rlo}
-variable min_mass equal 1*4.0/3.0*PI*0.3*0.3*${rlo}
-variable min_mass equal 1*4.0/3.0*PI*0.3*0.3*0.3
-variable a equal (-2.0*log(${coeffRes})/PI)^2
-variable a equal (-2.0*log(0.1)/PI)^2
-variable gamma_n equal sqrt($a*2*${kn}/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569351*2*${kn}/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569351*2*100000/${min_mass}/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569351*2*100000/0.113097335529233/(1+0.25*$a))
-variable gamma_n equal sqrt(0.405284734569351*2*100000/0.113097335529233/(1+0.25*0.405284734569351))
-variable gamma_t equal ${gamma_n}*0.5
-variable gamma_t equal 806.699778405191*0.5
-
-variable tcol equal PI/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
-variable tcol equal PI/sqrt(2*100000/${min_mass}-${gamma_n}/4.0)
-variable tcol equal PI/sqrt(2*100000/0.113097335529233-${gamma_n}/4.0)
-variable tcol equal PI/sqrt(2*100000/0.113097335529233-806.699778405191/4.0)
-
-variable dt equal ${tcol}*0.02
-variable dt equal 0.00236257621510454*0.02
-timestep ${dt}
-timestep 4.72515243020908e-05
-
-###############################################
-
-variable dumpfreq equal 1000
-variable logfreq equal 1000
-
-newton on
-atom_style sphere
-
-boundary p p f
-
-region boxreg block 0 20 0 20 0 20
-create_box 1 boxreg
-Created orthogonal box = (0 0 0) to (20 20 20)
- 1 by 2 by 2 MPI processor grid
-
-pair_style gran/hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 100000 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 100000 20000 ${gamma_n} ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 100000 20000 806.699778405191 ${gamma_t} ${coeffFric} 1
-pair_style gran/hertz/history 100000 20000 806.699778405191 403.349889202595 ${coeffFric} 1
-pair_style gran/hertz/history 100000 20000 806.699778405191 403.349889202595 0.5 1
-pair_coeff * *
-
-neighbor ${skin} multi
-neighbor 0.6 multi
-thermo ${logfreq}
-thermo 1000
-
-comm_style brick
-comm_modify mode multi group all vel yes
-balance 1.1 shift xyz 20 1.1
-Balancing ...
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Neighbor list info ...
- update: every = 1 steps, delay = 0 steps, check = yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 0
- ghost atom cutoff = 0
- binsize = 20, bins = 1 1 1
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair gran/hertz/history, perpetual
- attributes: half, newton on, size, history
- pair build: half/size/multi/newton
- stencil: half/multi/3d
- bin: multi
-WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:210)
-fix bal all balance 10000 1.1 shift xyz 20 1.01
-
-####################### Options specific to pouring #########################
-
-region insreg cylinder z 10 10 8 10 18 side in units box
-region cylreg cylinder z 10 10 10 0 20 side in units box
-
-variable theta equal (step/400000)*2*PI
-
-region b1 block 2 18 9 11 0 4 side out rotate v_theta 10 10 0 0 0 1 units box
-region b2 block 9 11 2 18 0 3.99999 side out rotate v_theta 10 10 0 0 0 1 units box
-
-region mixer intersect 3 cylreg b1 b2 side in
-
-fix grav all gravity ${gravity} vector 0 0 -1
-fix grav all gravity 1 vector 0 0 -1
-fix 1 all nve/sphere
-
-fix mixwall all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 20000 ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 ${gamma_t} ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 403.349889202595 ${coeffFric} 1 region mixer
-fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 403.349889202595 0.5 1 region mixer
-
-fix ins all pour 1000 1 42424 region insreg diam range ${dlo} ${dhi} dens ${density} ${density}
-fix ins all pour 1000 1 42424 region insreg diam range 0.6 ${dhi} dens ${density} ${density}
-fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens ${density} ${density}
-fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens 1 ${density}
-fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens 1 1
-Particle insertion: 444 every 84653 steps, 1000 by step 169307
-
-#dump 1 all custom ${dumpfreq} ${name}_pour.dump # id type mass diameter x y z
-
-#dump 2 all image 4000 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 zoom 1.5 # box no 0.0 axes no 0.0 0.0
-#dump_modify 2 pad 6
-
-thermo_style custom step cpu atoms ke v_theta
-WARNING: New thermo_style command, previous thermo_modify settings will be lost (src/output.cpp:895)
-thermo_modify flush yes lost warn
-
-run 200000
-
-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
-
-Your simulation uses code contributions which should be cited:
-
-- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
-
-@Article{Intveld08,
- author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
- title = {Accurate and Efficient Methods for Modeling Colloidal
- Mixtures in an Explicit Solvent using Molecular Dynamics},
- journal = {Comput.\ Phys.\ Commut.},
- year = 2008,
- volume = 179,
- pages = {320--329}
-}
-
-@article{Shire2020,
- author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
- title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
- Detection Applied to Investigate the Quasi-Static Limit},
- journal = {Computational Particle Mechanics},
- year = {2020}
-}
-
-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
-
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 5.816 | 5.816 | 5.816 Mbytes
- Step CPU Atoms KinEng v_theta
- 0 0 0 -0 0
- 1000 0.069039547 444 -0 0.015707963
- 2000 0.12867095 444 -0 0.031415927
- 3000 0.18791426 444 -0 0.04712389
- 4000 0.24614388 444 -0 0.062831853
- 5000 0.30404486 444 -0 0.078539816
- 6000 0.36105446 444 -0 0.09424778
- 7000 0.41713358 444 -0 0.10995574
- 8000 0.47282802 444 -0 0.12566371
- 9000 0.52742586 444 -0 0.14137167
- 10000 0.58233488 444 -0 0.15707963
- 11000 0.62155506 444 -0 0.1727876
- 12000 0.6605457 444 -0 0.18849556
- 13000 0.69971591 444 -0 0.20420352
- 14000 0.73821845 444 -0 0.21991149
- 15000 0.77860211 444 -0 0.23561945
- 16000 0.8188072 444 -0 0.25132741
- 17000 0.85992964 444 -0 0.26703538
- 18000 0.9008443 444 -0 0.28274334
- 19000 0.94216466 444 -0 0.2984513
- 20000 0.98508697 444 -0 0.31415927
- 21000 1.0241468 444 -0 0.32986723
- 22000 1.0606191 444 -0 0.34557519
- 23000 1.0972735 444 -0 0.36128316
- 24000 1.134726 444 -0 0.37699112
- 25000 1.1723693 444 -0 0.39269908
- 26000 1.211349 444 -0 0.40840704
- 27000 1.250291 444 -0 0.42411501
- 28000 1.2906408 444 -0 0.43982297
- 29000 1.3307315 444 -0 0.45553093
- 30000 1.3704867 444 -0 0.4712389
- 31000 1.4064392 444 -0 0.48694686
- 32000 1.4426955 444 -0 0.50265482
- 33000 1.4789666 444 -0 0.51836279
- 34000 1.5163037 444 -0 0.53407075
- 35000 1.5534135 444 -0 0.54977871
- 36000 1.5907054 444 -0 0.56548668
- 37000 1.6296055 444 -0 0.58119464
- 38000 1.6690167 444 -0 0.5969026
- 39000 1.7082024 444 -0 0.61261057
- 40000 1.7476796 444 -0 0.62831853
- 41000 1.7847465 444 -0 0.64402649
- 42000 1.8216975 444 -0 0.65973446
- 43000 1.8594424 444 -0 0.67544242
- 44000 1.8975401 444 -0 0.69115038
- 45000 1.9361216 444 -0 0.70685835
- 46000 1.9764821 444 -0 0.72256631
- 47000 2.0221252 444 -0 0.73827427
- 48000 2.0635337 444 -0 0.75398224
- 49000 2.104472 444 -0 0.7696902
- 50000 2.1447842 444 -0 0.78539816
- 51000 2.1808558 444 -0 0.80110613
- 52000 2.2180542 444 -0 0.81681409
- 53000 2.2547243 444 -0 0.83252205
- 54000 2.2934546 444 -0 0.84823002
- 55000 2.3321909 444 -0 0.86393798
- 56000 2.3732179 444 -0 0.87964594
- 57000 2.4141133 444 -0 0.89535391
- 58000 2.455667 444 -0 0.91106187
- 59000 2.4983196 444 -0 0.92676983
- 60000 2.5415086 444 -0 0.9424778
- 61000 2.581342 444 -0 0.95818576
- 62000 2.6215029 444 -0 0.97389372
- 63000 2.6633884 444 -0 0.98960169
- 64000 2.7048848 444 -0 1.0053096
- 65000 2.7497607 444 -0 1.0210176
- 66000 2.7952373 444 -0 1.0367256
- 67000 2.8399748 444 -0 1.0524335
- 68000 2.8851806 444 -0 1.0681415
- 69000 2.9303317 444 -0 1.0838495
- 70000 2.9815632 444 -0 1.0995574
- 71000 3.0257986 444 -0 1.1152654
- 72000 3.068788 444 -0 1.1309734
- 73000 3.1130125 444 -0 1.1466813
- 74000 3.1558178 444 -0 1.1623893
- 75000 3.1993327 444 -0 1.1780972
- 76000 3.2444469 444 -0 1.1938052
- 77000 3.2901781 444 -0 1.2095132
- 78000 3.3356302 444 -0 1.2252211
- 79000 3.3814834 444 -0 1.2409291
- 80000 3.4290631 444 -0 1.2566371
- 81000 3.4715671 444 -0 1.272345
- 82000 3.5136342 444 -0 1.288053
- 83000 3.5566281 444 -0 1.303761
- 84000 3.6001405 444 -0 1.3194689
- 85000 3.6709788 888 -0 1.3351769
- 86000 3.7652387 888 -0 1.3508848
- 87000 3.8618109 888 -0 1.3665928
- 88000 3.9546406 888 -0 1.3823008
- 89000 4.0475587 888 -0 1.3980087
- 90000 4.1424919 888 -0 1.4137167
- 91000 4.2114594 888 -0 1.4294247
- 92000 4.2842588 888 -0 1.4451326
- 93000 4.3524161 888 -0 1.4608406
- 94000 4.4204131 888 -0 1.4765485
- 95000 4.4886628 888 -0 1.4922565
- 96000 4.5588224 888 -0 1.5079645
- 97000 4.6304943 888 -0 1.5236724
- 98000 4.7018695 888 -0 1.5393804
- 99000 4.774147 888 -0 1.5550884
- 100000 4.847776 888 -0 1.5707963
- 101000 4.9173562 888 -0 1.5865043
- 102000 4.9886499 888 -0 1.6022123
- 103000 5.0618801 888 -0 1.6179202
- 104000 5.1331411 888 -0 1.6336282
- 105000 5.205209 888 -0 1.6493361
- 106000 5.2795148 888 -0 1.6650441
- 107000 5.3523346 888 -0 1.6807521
- 108000 5.4263886 888 -0 1.69646
- 109000 5.5029416 888 -0 1.712168
- 110000 5.5807033 888 -0 1.727876
- 111000 5.6574852 888 -0 1.7435839
- 112000 5.7320356 888 -0 1.7592919
- 113000 5.8097178 888 -0 1.7749998
- 114000 5.8858974 888 -0 1.7907078
- 115000 5.9636528 888 -0 1.8064158
- 116000 6.0421783 888 -0 1.8221237
- 117000 6.12052 888 -0 1.8378317
- 118000 6.2016349 888 -0 1.8535397
- 119000 6.2834058 888 -0 1.8692476
- 120000 6.3644485 888 -0 1.8849556
- 121000 6.4398727 888 -0 1.9006636
- 122000 6.5152081 888 -0 1.9163715
- 123000 6.5916482 888 -0 1.9320795
- 124000 6.6694407 888 -0 1.9477874
- 125000 6.7474201 888 -0 1.9634954
- 126000 6.8270768 888 -0 1.9792034
- 127000 6.9060885 888 -0 1.9949113
- 128000 6.9847809 888 -0 2.0106193
- 129000 7.0660497 888 -0 2.0263273
- 130000 7.1468939 888 -0 2.0420352
- 131000 7.2275386 888 -0 2.0577432
- 132000 7.3103515 888 -0 2.0734512
- 133000 7.3904073 888 -0 2.0891591
- 134000 7.4711333 888 -0 2.1048671
- 135000 7.5529594 888 -0 2.120575
- 136000 7.6399017 888 -0 2.136283
- 137000 7.7263891 888 -0 2.151991
- 138000 7.815523 888 -0 2.1676989
- 139000 7.9041642 888 -0 2.1834069
- 140000 7.9950145 888 -0 2.1991149
- 141000 8.0776291 888 -0 2.2148228
- 142000 8.1584715 888 -0 2.2305308
- 143000 8.2409653 888 -0 2.2462387
- 144000 8.326064 888 -0 2.2619467
- 145000 8.4107211 888 -0 2.2776547
- 146000 8.4946153 888 -0 2.2933626
- 147000 8.5784663 888 -0 2.3090706
- 148000 8.6648861 888 -0 2.3247786
- 149000 8.7503472 888 -0 2.3404865
- 150000 8.8378801 888 -0 2.3561945
- 151000 8.9221381 888 -0 2.3719025
- 152000 9.0101516 888 -0 2.3876104
- 153000 9.0982387 888 -0 2.4033184
- 154000 9.1851912 888 -0 2.4190263
- 155000 9.2744741 888 -0 2.4347343
- 156000 9.3697509 888 -0 2.4504423
- 157000 9.4640354 888 -0 2.4661502
- 158000 9.5594845 888 -0 2.4818582
- 159000 9.6572972 888 -0 2.4975662
- 160000 9.7543656 888 -0 2.5132741
- 161000 9.8485073 888 -0 2.5289821
- 162000 9.9446493 888 -0 2.54469
- 163000 10.040013 888 -0 2.560398
- 164000 10.137116 888 -0 2.576106
- 165000 10.23506 888 -0 2.5918139
- 166000 10.335537 888 -0 2.6075219
- 167000 10.436607 888 -0 2.6232299
- 168000 10.537429 888 -0 2.6389378
- 169000 10.642458 888 -0 2.6546458
- 170000 10.74705 1000 -0 2.6703538
- 171000 10.857156 1000 -0 2.6860617
- 172000 10.965939 1000 -0 2.7017697
- 173000 11.076233 1000 -0 2.7174776
- 174000 11.184172 1000 -0 2.7331856
- 175000 11.293846 1000 -0 2.7488936
- 176000 11.402493 1000 -0 2.7646015
- 177000 11.513895 1000 -0 2.7803095
- 178000 11.625438 1000 -0 2.7960175
- 179000 11.738308 1000 -0 2.8117254
- 180000 11.854793 1000 -0 2.8274334
- 181000 11.968344 1000 -0 2.8431414
- 182000 12.082268 1000 -0 2.8588493
- 183000 12.196356 1000 -0 2.8745573
- 184000 12.313359 1000 -0 2.8902652
- 185000 12.429559 1000 -0 2.9059732
- 186000 12.545853 1000 -0 2.9216812
- 187000 12.661447 1000 -0 2.9373891
- 188000 12.777355 1000 -0 2.9530971
- 189000 12.894856 1000 -0 2.9688051
- 190000 13.0103 1000 -0 2.984513
- 191000 13.126221 1000 -0 3.000221
- 192000 13.241507 1000 -0 3.0159289
- 193000 13.356198 1000 -0 3.0316369
- 194000 13.468168 1000 -0 3.0473449
- 195000 13.582232 1000 -0 3.0630528
- 196000 13.700446 1000 -0 3.0787608
- 197000 13.816948 1000 -0 3.0944688
- 198000 13.934106 1000 -0 3.1101767
- 199000 14.053497 1000 -0 3.1258847
- 200000 14.171799 1000 -0 3.1415927
-Loop time of 14.1719 on 4 procs for 200000 steps with 1000 atoms
-
-Performance: 57614.644 tau/day, 14112.479 timesteps/s, 14.112 Matom-step/s
-99.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.46468 | 0.82686 | 1.2428 | 39.9 | 5.83
-Neigh | 0.010644 | 0.013047 | 0.015567 | 2.0 | 0.09
-Comm | 2.2447 | 2.716 | 3.2525 | 28.2 | 19.16
-Output | 0.0040193 | 0.0057101 | 0.0084742 | 2.2 | 0.04
-Modify | 7.9913 | 8.6193 | 9.394 | 20.9 | 60.82
-Other | | 1.991 | | | 14.05
-
-Nlocal: 250 ave 266 max 237 min
-Histogram: 1 0 0 1 1 0 0 0 0 1
-Nghost: 294 ave 335 max 253 min
-Histogram: 2 0 0 0 0 0 0 0 0 2
-Neighs: 960.25 ave 1454 max 492 min
-Histogram: 2 0 0 0 0 0 0 0 0 2
-
-Total # of neighbors = 3841
-Ave neighs/atom = 3.841
-Neighbor list builds = 201
-Dangerous builds = 0
-unfix ins
-run 200000
-Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
-Per MPI rank memory allocation (min/avg/max) = 11.87 | 11.89 | 11.9 Mbytes
- Step CPU Atoms KinEng v_theta
- 200000 0 1000 1.0060272 3.1415927
- 201000 0.11023112 1000 1.0117513 3.1573006
- 202000 0.22297119 1000 1.0121624 3.1730086
- 203000 0.33090251 1000 1.0099707 3.1887165
- 204000 0.43921623 1000 1.0099624 3.2044245
- 205000 0.54813391 1000 1.009398 3.2201325
- 206000 0.6597641 1000 0.99686298 3.2358404
- 207000 0.76806828 1000 0.96520673 3.2515484
- 208000 0.88217705 1000 0.96521294 3.2672564
- 209000 0.99810181 1000 0.96501099 3.2829643
- 210000 1.1113988 1000 0.96426624 3.2986723
- 211000 1.2252752 1000 0.9564358 3.3143802
- 212000 1.3381064 1000 0.95482019 3.3300882
- 213000 1.4513852 1000 0.9446233 3.3457962
- 214000 1.5630713 1000 0.92461651 3.3615041
- 215000 1.6785702 1000 0.92106646 3.3772121
- 216000 1.7937182 1000 0.92058667 3.3929201
- 217000 1.9092992 1000 0.91797493 3.408628
- 218000 2.0251567 1000 0.91351081 3.424336
- 219000 2.1419482 1000 0.91991749 3.440044
- 220000 2.258391 1000 0.92943198 3.4557519
- 221000 2.3747328 1000 0.93176684 3.4714599
- 222000 2.4930355 1000 0.92625008 3.4871678
- 223000 2.6111794 1000 0.9216243 3.5028758
- 224000 2.729971 1000 0.92332955 3.5185838
- 225000 2.8489286 1000 0.91963985 3.5342917
- 226000 2.97003 1000 0.91913679 3.5499997
- 227000 3.0874646 1000 0.92381436 3.5657077
- 228000 3.2089543 1000 0.93085242 3.5814156
- 229000 3.3281962 1000 0.92872221 3.5971236
- 230000 3.4476271 1000 0.92536664 3.6128316
- 231000 3.5681706 1000 0.92953138 3.6285395
- 232000 3.6911427 1000 0.93937257 3.6442475
- 233000 3.8115833 1000 0.95916002 3.6599554
- 234000 3.9301977 1000 0.96652709 3.6756634
- 235000 4.0481963 1000 0.96753364 3.6913714
- 236000 4.1684171 1000 0.96096249 3.7070793
- 237000 4.2874672 1000 0.97028893 3.7227873
- 238000 4.4072896 1000 0.95323014 3.7384953
- 239000 4.5292898 1000 0.94143454 3.7542032
- 240000 4.6529563 1000 0.9334569 3.7699112
- 241000 4.7701737 1000 0.93340822 3.7856191
- 242000 4.8891772 1000 0.93517762 3.8013271
- 243000 5.0078759 1000 0.92632745 3.8170351
- 244000 5.1260291 1000 0.91858996 3.832743
- 245000 5.2472736 1000 0.90006015 3.848451
- 246000 5.363907 1000 0.8850116 3.864159
- 247000 5.4838317 1000 0.87807775 3.8798669
- 248000 5.6039445 1000 0.85981326 3.8955749
- 249000 5.7262584 1000 0.85764597 3.9112829
- 250000 5.8488174 1000 0.86748856 3.9269908
- 251000 5.9665578 1000 0.85889952 3.9426988
- 252000 6.084021 1000 0.84476495 3.9584067
- 253000 6.203987 1000 0.84094974 3.9741147
- 254000 6.3221073 1000 0.82638568 3.9898227
- 255000 6.441682 1000 0.81449512 4.0055306
- 256000 6.5625653 1000 0.80130582 4.0212386
- 257000 6.6860772 1000 0.79100139 4.0369466
- 258000 6.8117355 1000 0.78531082 4.0526545
- 259000 6.9379959 1000 0.7678277 4.0683625
- 260000 7.0606907 1000 0.74798797 4.0840704
- 261000 7.1846943 1000 0.73902576 4.0997784
- 262000 7.3084818 1000 0.73326104 4.1154864
- 263000 7.4304296 1000 0.7370234 4.1311943
- 264000 7.5536012 1000 0.73817854 4.1469023
- 265000 7.6792395 1000 0.74675482 4.1626103
- 266000 7.8061753 1000 0.7480056 4.1783182
- 267000 7.9331093 1000 0.748671 4.1940262
- 268000 8.0593048 1000 0.74430146 4.2097342
- 269000 8.1888555 1000 0.73246199 4.2254421
- 270000 8.3184687 1000 0.71666285 4.2411501
- 271000 8.4489277 1000 0.69699332 4.256858
- 272000 8.5822473 1000 0.69724726 4.272566
- 273000 8.7148666 1000 0.69752702 4.288274
- 274000 8.8426159 1000 0.69393439 4.3039819
- 275000 8.9746848 1000 0.67961922 4.3196899
- 276000 9.1020134 1000 0.67808365 4.3353979
- 277000 9.232486 1000 0.66241302 4.3511058
- 278000 9.3607588 1000 0.65559661 4.3668138
- 279000 9.4879578 1000 0.64949975 4.3825218
- 280000 9.6142148 1000 0.65351945 4.3982297
- 281000 9.7437802 1000 0.66566267 4.4139377
- 282000 9.87097 1000 0.68284419 4.4296456
- 283000 9.9975944 1000 0.68906456 4.4453536
- 284000 10.124724 1000 0.69474503 4.4610616
- 285000 10.25369 1000 0.71686298 4.4767695
- 286000 10.38212 1000 0.70966561 4.4924775
- 287000 10.513274 1000 0.70173402 4.5081855
- 288000 10.641359 1000 0.69841037 4.5238934
- 289000 10.765608 1000 0.68947449 4.5396014
- 290000 10.893738 1000 0.68391661 4.5553093
- 291000 11.018982 1000 0.69112115 4.5710173
- 292000 11.146639 1000 0.70208247 4.5867253
- 293000 11.269392 1000 0.70044553 4.6024332
- 294000 11.39243 1000 0.69973655 4.6181412
- 295000 11.517741 1000 0.70719661 4.6338492
- 296000 11.643013 1000 0.69961909 4.6495571
- 297000 11.771064 1000 0.7038606 4.6652651
- 298000 11.899855 1000 0.70651383 4.6809731
- 299000 12.024499 1000 0.72028817 4.696681
- 300000 12.151124 1000 0.72141372 4.712389
- 301000 12.278902 1000 0.73011344 4.7280969
- 302000 12.402615 1000 0.74750506 4.7438049
- 303000 12.524021 1000 0.74362139 4.7595129
- 304000 12.645914 1000 0.73643471 4.7752208
- 305000 12.766721 1000 0.73250587 4.7909288
- 306000 12.945373 1000 0.72450933 4.8066368
- 307000 13.084062 1000 0.71650682 4.8223447
- 308000 13.210593 1000 0.71012044 4.8380527
- 309000 13.339536 1000 0.7045498 4.8537606
- 310000 13.477512 1000 0.69904261 4.8694686
- 311000 13.617832 1000 0.69370407 4.8851766
- 312000 13.802532 1000 0.70012261 4.9008845
- 313000 13.9682 1000 0.69796658 4.9165925
- 314000 14.139079 1000 0.70673901 4.9323005
- 315000 14.290205 1000 0.70285296 4.9480084
- 316000 14.414474 1000 0.69917788 4.9637164
- 317000 14.541743 1000 0.69153454 4.9794244
- 318000 14.672817 1000 0.69630312 4.9951323
- 319000 14.800594 1000 0.70732059 5.0108403
- 320000 14.982014 1000 0.71069744 5.0265482
- 321000 15.126459 1000 0.70982909 5.0422562
- 322000 15.264165 1000 0.70514067 5.0579642
- 323000 15.391036 1000 0.70591206 5.0736721
- 324000 15.518096 1000 0.70992653 5.0893801
- 325000 15.644416 1000 0.70605327 5.1050881
- 326000 15.772686 1000 0.70492617 5.120796
- 327000 15.899812 1000 0.69711977 5.136504
- 328000 16.050906 1000 0.68791974 5.152212
- 329000 16.197987 1000 0.68350425 5.1679199
- 330000 16.346901 1000 0.67886559 5.1836279
- 331000 16.511885 1000 0.6838106 5.1993358
- 332000 16.666556 1000 0.68570448 5.2150438
- 333000 16.820557 1000 0.68347768 5.2307518
- 334000 16.972048 1000 0.67352858 5.2464597
- 335000 17.171176 1000 0.67154375 5.2621677
- 336000 17.380218 1000 0.67050288 5.2778757
- 337000 17.561848 1000 0.66093797 5.2935836
- 338000 17.746525 1000 0.65261747 5.3092916
- 339000 17.926411 1000 0.65084314 5.3249995
- 340000 18.105197 1000 0.65003008 5.3407075
- 341000 18.235972 1000 0.65397536 5.3564155
- 342000 18.389741 1000 0.67129271 5.3721234
- 343000 18.604032 1000 0.68934086 5.3878314
- 344000 18.788879 1000 0.71225704 5.4035394
- 345000 18.935273 1000 0.72645711 5.4192473
- 346000 19.136926 1000 0.73153889 5.4349553
- 347000 19.310095 1000 0.74047453 5.4506633
- 348000 19.476545 1000 0.74508084 5.4663712
- 349000 19.599138 1000 0.74030176 5.4820792
- 350000 19.753114 1000 0.72037009 5.4977871
- 351000 19.893497 1000 0.71009934 5.5134951
- 352000 20.020982 1000 0.69475509 5.5292031
- 353000 20.149857 1000 0.68883962 5.544911
- 354000 20.278476 1000 0.68764856 5.560619
- 355000 20.407747 1000 0.6853423 5.576327
- 356000 20.53591 1000 0.69528948 5.5920349
- 357000 20.668654 1000 0.70787069 5.6077429
- 358000 20.802835 1000 0.70110924 5.6234508
- 359000 20.950394 1000 0.69356484 5.6391588
- 360000 21.076061 1000 0.69727901 5.6548668
- 361000 21.224785 1000 0.69878093 5.6705747
- 362000 21.416947 1000 0.70063124 5.6862827
- 363000 21.632619 1000 0.68842038 5.7019907
- 364000 21.836231 1000 0.68478573 5.7176986
- 365000 21.963636 1000 0.68232032 5.7334066
- 366000 22.092926 1000 0.66971225 5.7491146
- 367000 22.219251 1000 0.67006227 5.7648225
- 368000 22.344723 1000 0.6694355 5.7805305
- 369000 22.470654 1000 0.66622377 5.7962384
- 370000 22.59941 1000 0.66501888 5.8119464
- 371000 22.732869 1000 0.66108622 5.8276544
- 372000 22.859824 1000 0.65989005 5.8433623
- 373000 22.989282 1000 0.65277032 5.8590703
- 374000 23.116089 1000 0.64599939 5.8747783
- 375000 23.243733 1000 0.64279675 5.8904862
- 376000 23.371971 1000 0.64321129 5.9061942
- 377000 23.505382 1000 0.65596736 5.9219022
- 378000 23.638755 1000 0.68055295 5.9376101
- 379000 23.770714 1000 0.71147476 5.9533181
- 380000 23.906376 1000 0.7478441 5.969026
- 381000 24.040685 1000 0.76216879 5.984734
- 382000 24.173446 1000 0.78574658 6.000442
- 383000 24.30114 1000 0.80947952 6.0161499
- 384000 24.426872 1000 0.81514681 6.0318579
- 385000 24.555905 1000 0.81469775 6.0475659
- 386000 24.684891 1000 0.80579609 6.0632738
- 387000 24.811946 1000 0.79952446 6.0789818
- 388000 24.940028 1000 0.78668384 6.0946897
- 389000 25.061479 1000 0.78375511 6.1103977
- 390000 25.18315 1000 0.78124583 6.1261057
- 391000 25.303012 1000 0.77072038 6.1418136
- 392000 25.423275 1000 0.75748297 6.1575216
- 393000 25.542996 1000 0.74703682 6.1732296
- 394000 25.661826 1000 0.74135384 6.1889375
- 395000 25.782254 1000 0.73344196 6.2046455
- 396000 25.903156 1000 0.72305463 6.2203535
- 397000 26.026207 1000 0.71221263 6.2360614
- 398000 26.145498 1000 0.70602241 6.2517694
- 399000 26.266146 1000 0.69822375 6.2674773
- 400000 26.387762 1000 0.69567985 6.2831853
-Loop time of 26.3878 on 4 procs for 200000 steps with 1000 atoms
-
-Performance: 30942.580 tau/day, 7579.263 timesteps/s, 7.579 Matom-step/s
-99.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 | 1.6871 | 2.8172 | 3.925 | 64.8 | 10.68
-Neigh | 0.017325 | 0.021917 | 0.026669 | 3.1 | 0.08
-Comm | 4.7404 | 6.0917 | 7.4409 | 54.5 | 23.09
-Output | 0.0043138 | 0.0065642 | 0.0087622 | 1.9 | 0.02
-Modify | 13.258 | 14.716 | 16.132 | 35.6 | 55.77
-Other | | 2.735 | | | 10.36
-
-Nlocal: 250 ave 257 max 241 min
-Histogram: 1 0 0 0 0 1 0 1 0 1
-Nghost: 387.5 ave 477 max 299 min
-Histogram: 2 0 0 0 0 0 0 0 0 2
-Neighs: 1233.5 ave 1523 max 917 min
-Histogram: 1 1 0 0 0 0 0 0 0 2
-
-Total # of neighbors = 4934
-Ave neighs/atom = 4.934
-Neighbor list builds = 168
-Dangerous builds = 0
-Total wall time: 0:00:40
diff --git a/examples/granregion/log.27Jun24.granregion.box.g++.1 b/examples/granregion/log.27Jun24.granregion.box.g++.1
new file mode 100644
index 0000000000..63782bb19f
--- /dev/null
+++ b/examples/granregion/log.27Jun24.granregion.box.g++.1
@@ -0,0 +1,482 @@
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
+# pouring spheres into container box
+
+units lj
+atom_style sphere
+boundary f f f
+dimension 3
+comm_modify vel yes
+
+region box block -10 10 -10 10 -10 10 units box
+create_box 2 box
+Created orthogonal box = (-10 -10 -10) to (10 10 10)
+ 1 by 1 by 1 MPI processor grid
+
+pair_style hybrid gran/hooke 4000.0 NULL 100.0 NULL 0.5 1
+pair_coeff * * gran/hooke
+
+region container block -6 6 -6 6 -6 6 units box
+fix container all wall/gran/region hooke/history 4000.0 NULL 100.0 NULL 0.5 1 region container
+
+neighbor 0.3 bin
+neigh_modify delay 0 every 1 check yes
+
+fix 2 all nve/sphere
+fix 3 all gravity 1.0 vector 0 0 -1
+
+region slab block -2 2 -2 2 -2 2 units box
+fix ins all pour 100 2 4767548 vol 0.4 10 diam one 1.0 region slab ignore
+
+timestep 0.005
+
+compute 1 all temp
+compute_modify 1 dynamic/dof yes
+
+compute 2 all temp/sphere
+compute_modify 2 dynamic/dof yes
+
+thermo 100
+thermo_style custom step atoms temp c_1 c_2 press
+thermo_modify lost ignore
+compute_modify thermo_temp dynamic/dof yes
+
+#dump 2 all image 100 image.*.jpg type type # zoom 1.4 adiam 1.0 box no 0.0 axes yes 0.9 0.03
+#dump_modify 2 pad 5
+
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 48 every 566 steps, 100 by step 1133
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 1.3
+ ghost atom cutoff = 1.3
+ binsize = 0.65, bins = 31 31 31
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair gran/hooke, perpetual
+ attributes: half, newton on, size
+ pair build: half/size/bin/atomonly/newton
+ stencil: half/bin/3d
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 0.5861 | 0.5861 | 0.5861 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 0 0 0 0 0 0
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 100 30 0.803783 0.803783 0.39507978 0.0029137134
+ 200 30 1.1967995 1.1967995 0.5882574 0.0043383984
+ 300 30 1.2814686 1.2814686 0.62987441 0.0046453238
+ 400 30 0.82331082 0.82331082 0.41173176 0.0029845017
+ 500 30 0.7708462 0.7708462 0.38777784 0.0043831147
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 600 64 0.51564897 0.51564897 0.26631577 0.0040059368
+ 700 64 0.57239348 0.57239348 0.29566901 0.0045075987
+ 800 64 0.61837087 0.61837087 0.32195387 0.0048123564
+ 900 64 0.53061888 0.53061888 0.28564763 0.0055906552
+ 1000 64 0.496299 0.496299 0.26801572 0.0061169128
+ 1100 64 0.46068308 0.46068308 0.24699057 0.0055717699
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 1200 99 0.39206225 0.39206225 0.21356546 0.0066294211
+ 1300 99 0.38624966 0.38624966 0.21345854 0.0049051051
+ 1400 99 0.35615284 0.35615284 0.19785725 0.0046170772
+ 1500 99 0.31486693 0.31486693 0.17429055 0.0064903432
+ 1600 99 0.26369001 0.26369001 0.15095266 0.0045226847
+ 1700 100 0.1925923 0.1925923 0.11308104 0.007362313
+ 1800 100 0.13724978 0.13724978 0.083276845 0.0058136373
+ 1900 100 0.077212636 0.077212636 0.053159386 0.0016509598
+ 2000 100 0.065294031 0.065294031 0.04372752 0.0020346467
+ 2100 100 0.057431398 0.057431398 0.037977068 0.0012681098
+ 2200 100 0.059093045 0.059093045 0.037435193 0.00096610799
+ 2300 100 0.03422338 0.03422338 0.025491304 0.00069886052
+ 2400 100 0.020558284 0.020558284 0.016163009 0.0017260663
+ 2500 100 0.015339709 0.015339709 0.012329236 0.00041308031
+ 2600 100 0.012891354 0.012891354 0.009766054 0.00030356722
+ 2700 100 0.0092634449 0.0092634449 0.0073580108 0.00077723051
+ 2800 100 0.0073925841 0.0073925841 0.0059932218 0.00016466767
+ 2900 100 0.0081228267 0.0081228267 0.006281761 0.00013828388
+ 3000 100 0.0041833223 0.0041833223 0.0035147096 0.00013160599
+ 3100 100 0.0035930775 0.0035930775 0.0030039922 0.00060639771
+ 3200 100 0.0030824465 0.0030824465 0.0026541293 0.00047391014
+ 3300 100 0.0035087522 0.0035087522 0.0027664508 0.00014080317
+ 3400 100 0.0018537868 0.0018537868 0.0017099705 6.3326674e-05
+ 3500 100 0.0015371228 0.0015371228 0.0014155433 0.00021612522
+ 3600 100 0.001708556 0.001708556 0.0014369892 8.1034202e-05
+ 3700 100 0.00095948652 0.00095948652 0.0009788528 3.4694023e-05
+ 3800 100 0.00091875668 0.00091875668 0.00086805146 3.9373686e-05
+ 3900 100 0.001557068 0.001557068 0.001159526 2.5178607e-05
+ 4000 100 0.00062012451 0.00062012451 0.00066806922 5.6680551e-06
+ 4100 100 0.00060940771 0.00060940771 0.00065614741 1.0137901e-05
+ 4200 100 0.00059538437 0.00059538437 0.00064501521 7.3679744e-06
+ 4300 100 0.00052946048 0.00052946048 0.00059353641 5.9225081e-06
+ 4400 100 0.00051202281 0.00051202281 0.00057524772 3.6198435e-05
+ 4500 100 0.00049986632 0.00049986632 0.00055754521 2.2275519e-05
+ 4600 100 0.00048187334 0.00048187334 0.00053988815 2.2015243e-05
+ 4700 100 0.00045261491 0.00045261491 0.00050298355 8.9681339e-05
+ 4800 100 0.00034965427 0.00034965427 0.0004278781 1.0983535e-05
+ 4900 100 0.00033555621 0.00033555621 0.00041435167 2.9266598e-05
+ 5000 100 0.00031387148 0.00031387148 0.00039605781 2.5628425e-05
+Loop time of 0.0497806 on 1 procs for 5000 steps with 100 atoms
+
+Performance: 43390431.056 tau/day, 100440.813 timesteps/s, 10.044 Matom-step/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.0052991 | 0.0052991 | 0.0052991 | 0.0 | 10.64
+Neigh | 0.008529 | 0.008529 | 0.008529 | 0.0 | 17.13
+Comm | 0.00050137 | 0.00050137 | 0.00050137 | 0.0 | 1.01
+Output | 0.00028923 | 0.00028923 | 0.00028923 | 0.0 | 0.58
+Modify | 0.033612 | 0.033612 | 0.033612 | 0.0 | 67.52
+Other | | 0.00155 | | | 3.11
+
+Nlocal: 100 ave 100 max 100 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: 164 ave 164 max 164 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 164
+Ave neighs/atom = 1.64
+Neighbor list builds = 281
+Dangerous builds = 0
+
+region container delete
+variable theta equal (step-5000)*(4.0*PI/5000)
+region container block -6 6 -6 6 -6 6 units box rotate v_theta 0 0 0 0 0 1
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+WARNING: Region properties for region container changed between runs, resetting its motion (../fix_wall_gran_region.cpp:96)
+Per MPI rank memory allocation (min/avg/max) = 5.837 | 5.837 | 5.837 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 5000 100 0.00031387148 0.00031387148 0.00039605781 2.6174978e-05
+ 5100 100 0.54537023 0.54537023 0.30042175 0.0087427352
+ 5200 100 0.57210852 0.57210852 0.3192468 0.0098134067
+ 5300 100 0.7168108 0.7168108 0.38577893 0.011004584
+ 5400 100 0.78895524 0.78895524 0.41889428 0.013555713
+ 5500 100 0.87797874 0.87797874 0.45689223 0.01565356
+ 5600 100 0.95424379 0.95424379 0.48830429 0.014707858
+ 5700 100 1.0046012 1.0046012 0.51054927 0.01469179
+ 5800 100 1.0371453 1.0371453 0.5262568 0.015576788
+ 5900 100 1.0545743 1.0545743 0.5361173 0.01589889
+ 6000 100 1.0932949 1.0932949 0.55402214 0.017484573
+ 6100 100 1.1148364 1.1148364 0.56241126 0.01721788
+ 6200 100 1.1315267 1.1315267 0.57050887 0.017961246
+ 6300 100 1.1506124 1.1506124 0.58009471 0.017159062
+ 6400 100 1.1663328 1.1663328 0.5876586 0.017935311
+ 6500 100 1.1821086 1.1821086 0.59595161 0.018005315
+ 6600 100 1.2039397 1.2039397 0.60567524 0.021604662
+ 6700 100 1.2269912 1.2269912 0.61770225 0.018907995
+ 6800 100 1.2447035 1.2447035 0.6257652 0.020537656
+ 6900 100 1.2625323 1.2625323 0.63486698 0.020106131
+ 7000 100 1.2617127 1.2617127 0.63318163 0.019670429
+ 7100 100 1.260715 1.260715 0.63311254 0.01981063
+ 7200 100 1.2790404 1.2790404 0.64079 0.02021891
+ 7300 100 1.2760228 1.2760228 0.6395331 0.021749943
+ 7400 100 1.2799657 1.2799657 0.64139079 0.020472918
+ 7500 100 1.2846472 1.2846472 0.64343078 0.02061003
+ 7600 100 1.2883963 1.2883963 0.64491863 0.020748893
+ 7700 100 1.2926891 1.2926891 0.6468454 0.02059959
+ 7800 100 1.3033563 1.3033563 0.65126208 0.021822102
+ 7900 100 1.3025795 1.3025795 0.65069464 0.021213858
+ 8000 100 1.3052548 1.3052548 0.65209881 0.021398728
+ 8100 100 1.3069801 1.3069801 0.6530457 0.021245966
+ 8200 100 1.3092011 1.3092011 0.65438349 0.02122166
+ 8300 100 1.3101277 1.3101277 0.65518546 0.021329292
+ 8400 100 1.3117013 1.3117013 0.65550345 0.021460379
+ 8500 100 1.3144455 1.3144455 0.65685825 0.021604641
+ 8600 100 1.3164134 1.3164134 0.65789495 0.021563159
+ 8700 100 1.3186879 1.3186879 0.6591421 0.021754259
+ 8800 100 1.3216911 1.3216911 0.66041154 0.022161545
+ 8900 100 1.3207611 1.3207611 0.65988391 0.021812278
+ 9000 100 1.3213163 1.3213163 0.66021107 0.021890934
+ 9100 100 1.3224957 1.3224957 0.66088572 0.021825725
+ 9200 100 1.3240758 1.3240758 0.66183609 0.021785081
+ 9300 100 1.3254189 1.3254189 0.66280087 0.021665121
+ 9400 100 1.3325923 1.3325923 0.66627599 0.021935299
+ 9500 100 1.3403779 1.3403779 0.66969078 0.022258389
+ 9600 100 1.3360821 1.3360821 0.66729084 0.022125375
+ 9700 100 1.3364048 1.3364048 0.66733374 0.022084635
+ 9800 100 1.3348391 1.3348391 0.66653654 0.021957941
+ 9900 100 1.3340902 1.3340902 0.66619851 0.022132442
+ 10000 100 1.3341233 1.3341233 0.66625291 0.02242346
+Loop time of 0.170031 on 1 procs for 5000 steps with 100 atoms
+
+Performance: 12703591.746 tau/day, 29406.462 timesteps/s, 2.941 Matom-step/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.02428 | 0.02428 | 0.02428 | 0.0 | 14.28
+Neigh | 0.02016 | 0.02016 | 0.02016 | 0.0 | 11.86
+Comm | 0.00063308 | 0.00063308 | 0.00063308 | 0.0 | 0.37
+Output | 0.00026926 | 0.00026926 | 0.00026926 | 0.0 | 0.16
+Modify | 0.12295 | 0.12295 | 0.12295 | 0.0 | 72.31
+Other | | 0.001744 | | | 1.03
+
+Nlocal: 100 ave 100 max 100 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: 186 ave 186 max 186 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 186
+Ave neighs/atom = 1.86
+Neighbor list builds = 626
+Dangerous builds = 0
+
+region container delete
+region container block -6 6 -6 6 -6 6 units box
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 5.837 | 5.837 | 5.837 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 10000 100 1.3341233 1.3341233 0.66625291 0.022389629
+ 10100 100 0.29934208 0.29934208 0.17559716 0.0080511663
+ 10200 100 0.15937333 0.15937333 0.10361049 0.0052770441
+ 10300 100 0.083457844 0.083457844 0.067443759 0.0019700613
+ 10400 100 0.065692832 0.065692832 0.055653291 0.0018339668
+ 10500 100 0.052804438 0.052804438 0.045281034 0.0016027455
+ 10600 100 0.04328663 0.04328663 0.037333736 0.0010520803
+ 10700 100 0.034758594 0.034758594 0.030913039 0.00098209982
+ 10800 100 0.031059386 0.031059386 0.027743119 0.00043771073
+ 10900 100 0.025257043 0.025257043 0.023417455 0.00057319686
+ 11000 100 0.020661736 0.020661736 0.019736355 0.00027957807
+ 11100 100 0.017347891 0.017347891 0.017523904 0.00033806442
+ 11200 100 0.013838843 0.013838843 0.013891648 0.0004814668
+ 11300 100 0.010848849 0.010848849 0.011429994 0.00017218727
+ 11400 100 0.0087243303 0.0087243303 0.0089442702 0.00075858277
+ 11500 100 0.0073404505 0.0073404505 0.0074359014 0.00016419055
+ 11600 100 0.005593778 0.005593778 0.0059169171 0.00067508582
+ 11700 100 0.0051164194 0.0051164194 0.0053270943 8.4490639e-05
+ 11800 100 0.00441161 0.00441161 0.0046984183 8.1750645e-05
+ 11900 100 0.0040823871 0.0040823871 0.0044273607 0.00057274663
+ 12000 100 0.0036457853 0.0036457853 0.0041171254 6.4466313e-05
+ 12100 100 0.0034927566 0.0034927566 0.0039732335 0.00010435211
+ 12200 100 0.0034030997 0.0034030997 0.0038913895 7.5846038e-05
+ 12300 100 0.0032970662 0.0032970662 0.0036879396 8.4270392e-05
+ 12400 100 0.0031107627 0.0031107627 0.0034222463 0.00010403492
+ 12500 100 0.0029402407 0.0029402407 0.0033029532 3.6385479e-05
+ 12600 100 0.0027926657 0.0027926657 0.0031897566 4.143403e-05
+ 12700 100 0.0026584426 0.0026584426 0.0030863436 0.00017608636
+ 12800 100 0.0020593472 0.0020593472 0.0024174548 2.5484422e-05
+ 12900 100 0.0019445876 0.0019445876 0.0023331214 1.3291393e-05
+ 13000 100 0.0019356798 0.0019356798 0.0023208275 3.7775631e-05
+ 13100 100 0.001917674 0.001917674 0.0023067328 2.3731216e-05
+ 13200 100 0.0018402122 0.0018402122 0.0022290175 2.3227838e-05
+ 13300 100 0.0017947406 0.0017947406 0.0021839926 5.68555e-05
+ 13400 100 0.0016930751 0.0016930751 0.0020981569 3.762312e-05
+ 13500 100 0.0016591044 0.0016591044 0.0020636607 2.0531417e-05
+ 13600 100 0.0015170608 0.0015170608 0.0019236349 2.87871e-05
+ 13700 100 0.0014040099 0.0014040099 0.0017412115 3.7091497e-05
+ 13800 100 0.0013892837 0.0013892837 0.0017134626 1.7192386e-05
+ 13900 100 0.0013189709 0.0013189709 0.0016364794 0.00022920131
+ 14000 100 0.0012610766 0.0012610766 0.0015926858 1.5605822e-05
+ 14100 100 0.0010746324 0.0010746324 0.0014018754 1.8598362e-05
+ 14200 100 0.0010259837 0.0010259837 0.0013546872 1.7918726e-05
+ 14300 100 0.0008919653 0.0008919653 0.0011534101 0.00015490093
+ 14400 100 0.00087001531 0.00087001531 0.0011016258 1.0766439e-05
+ 14500 100 0.00083846397 0.00083846397 0.0010767041 1.0375992e-05
+ 14600 100 0.0008155908 0.0008155908 0.00105642 1.2582086e-05
+ 14700 100 0.00080868405 0.00080868405 0.00104978 7.027334e-05
+ 14800 100 0.00073613153 0.00073613153 0.00098179118 3.236684e-05
+ 14900 100 0.00071371931 0.00071371931 0.00095309072 8.6245124e-06
+ 15000 100 0.00070031746 0.00070031746 0.0009423403 2.4693888e-05
+Loop time of 0.0531531 on 1 procs for 5000 steps with 100 atoms
+
+Performance: 40637346.357 tau/day, 94067.931 timesteps/s, 9.407 Matom-step/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.0049693 | 0.0049693 | 0.0049693 | 0.0 | 9.35
+Neigh | 0.0033529 | 0.0033529 | 0.0033529 | 0.0 | 6.31
+Comm | 0.00045859 | 0.00045859 | 0.00045859 | 0.0 | 0.86
+Output | 0.00031163 | 0.00031163 | 0.00031163 | 0.0 | 0.59
+Modify | 0.042417 | 0.042417 | 0.042417 | 0.0 | 79.80
+Other | | 0.001644 | | | 3.09
+
+Nlocal: 100 ave 100 max 100 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: 157 ave 157 max 157 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 157
+Ave neighs/atom = 1.57
+Neighbor list builds = 101
+Dangerous builds = 0
+
+region container delete
+variable theta equal (step-15000)*(4.0*PI/5000)
+region container block -6 6 -6 6 -6 6 units box rotate v_theta 0 0 0 1 1 1
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 5.837 | 5.837 | 5.837 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 15000 100 0.00070031746 0.00070031746 0.0009423403 2.4820402e-05
+ 15100 100 1.0378931 1.0378931 0.67940294 0.014665698
+ 15200 100 1.0517533 1.0517533 0.69115597 0.01309217
+ 15300 100 1.1062671 1.1062671 0.73515555 0.015692859
+ 15400 100 1.385963 1.385963 0.89710836 0.022187064
+ 15500 100 1.5008849 1.5008849 0.94689573 0.030001316
+ 15600 100 1.6919387 1.6919387 1.0471028 0.026806301
+ 15700 100 1.8311512 1.8311512 1.1071134 0.024492529
+ 15800 100 1.8517819 1.8517819 1.1216762 0.028629961
+ 15900 100 1.8895616 1.8895616 1.1177621 0.028934483
+ 16000 100 2.0691195 2.0691195 1.1848851 0.032794489
+ 16100 100 2.2520282 2.2520282 1.26292 0.030167679
+ 16200 100 2.2879859 2.2879859 1.2866695 0.02974115
+ 16300 100 2.3679798 2.3679798 1.3150501 0.032771704
+ 16400 100 2.3846251 2.3846251 1.3122933 0.029948284
+ 16500 100 2.528765 2.528765 1.3886857 0.032511301
+ 16600 100 2.5465734 2.5465734 1.4009546 0.033614459
+ 16700 100 2.6883939 2.6883939 1.457327 0.039494183
+ 16800 100 2.8655546 2.8655546 1.5468292 0.036099395
+ 16900 100 2.8919695 2.8919695 1.5768619 0.037384016
+ 17000 100 3.0433407 3.0433407 1.6445056 0.037344364
+ 17100 100 3.2283804 3.2283804 1.7335616 0.041395151
+ 17200 100 3.3098823 3.3098823 1.7794605 0.04616548
+ 17300 100 3.3890828 3.3890828 1.8289994 0.050512368
+ 17400 100 3.278912 3.278912 1.7770308 0.04270684
+ 17500 100 3.3373113 3.3373113 1.7927421 0.056764855
+ 17600 100 3.3264731 3.3264731 1.8066541 0.045863538
+ 17700 100 3.0707481 3.0707481 1.6881602 0.047285321
+ 17800 100 3.0911023 3.0911023 1.7142589 0.040005715
+ 17900 100 3.1368 3.1368 1.7314207 0.043475979
+ 18000 100 3.1705064 3.1705064 1.7503598 0.042272578
+ 18100 100 3.2348301 3.2348301 1.7599183 0.042974559
+ 18200 100 3.4676237 3.4676237 1.8675014 0.051937094
+ 18300 100 3.460493 3.460493 1.8710624 0.04615202
+ 18400 100 3.4132328 3.4132328 1.8379148 0.048316249
+ 18500 100 3.6046 3.6046 1.936101 0.046093227
+ 18600 100 3.6898847 3.6898847 1.985425 0.048623681
+ 18700 100 3.8073645 3.8073645 2.0517694 0.051139644
+ 18800 100 3.9453683 3.9453683 2.121645 0.053091211
+ 18900 100 3.891796 3.891796 2.1038949 0.047975378
+ 19000 100 3.9805517 3.9805517 2.143216 0.052740909
+ 19100 100 3.8032187 3.8032187 2.0535533 0.060896481
+ 19200 100 3.8956813 3.8956813 2.1023053 0.055995941
+ 19300 100 3.8441465 3.8441465 2.0783298 0.055586425
+ 19400 100 3.6983054 3.6983054 1.9993476 0.051487825
+ 19500 100 3.9082901 3.9082901 2.110386 0.055361137
+ 19600 100 3.8183806 3.8183806 2.0521248 0.054637936
+ 19700 100 3.9479599 3.9479599 2.123487 0.05654763
+ 19800 100 3.7900356 3.7900356 2.0309629 0.055030689
+ 19900 100 3.8526352 3.8526352 2.079537 0.052237722
+ 20000 100 3.7004965 3.7004965 2.0054313 0.052260073
+Loop time of 0.141466 on 1 procs for 5000 steps with 100 atoms
+
+Performance: 15268708.811 tau/day, 35344.233 timesteps/s, 3.534 Matom-step/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.0092801 | 0.0092801 | 0.0092801 | 0.0 | 6.56
+Neigh | 0.030749 | 0.030749 | 0.030749 | 0.0 | 21.74
+Comm | 0.00076276 | 0.00076276 | 0.00076276 | 0.0 | 0.54
+Output | 0.00026657 | 0.00026657 | 0.00026657 | 0.0 | 0.19
+Modify | 0.098434 | 0.098434 | 0.098434 | 0.0 | 69.58
+Other | | 0.001973 | | | 1.39
+
+Nlocal: 100 ave 100 max 100 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: 144 ave 144 max 144 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 144
+Ave neighs/atom = 1.44
+Neighbor list builds = 906
+Dangerous builds = 0
+
+region container delete
+region container block -6 6 -6 6 -6 6 units box
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 5.837 | 5.837 | 5.837 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 20000 100 3.7004965 3.7004965 2.0054313 0.051978523
+ 20100 100 1.0456682 1.0456682 0.65203589 0.01426764
+ 20200 100 0.92132571 0.92132571 0.56692143 0.016160496
+ 20300 100 0.9080139 0.9080139 0.54653258 0.011333456
+ 20400 100 0.95504442 0.95504442 0.56626124 0.011989567
+ 20500 100 0.85373295 0.85373295 0.5162143 0.011906206
+ 20600 100 1.0224737 1.0224737 0.59801919 0.012676175
+ 20700 100 0.98041767 0.98041767 0.57722359 0.015534239
+ 20800 100 0.94580127 0.94580127 0.54452681 0.014648617
+ 20900 100 0.92685337 0.92685337 0.52998999 0.012221026
+ 21000 100 0.67355263 0.67355263 0.38349088 0.0096954349
+ 21100 100 0.30344447 0.30344447 0.20123228 0.0065577613
+ 21200 100 0.16818819 0.16818819 0.12097279 0.0042401405
+ 21300 100 0.10742131 0.10742131 0.082910182 0.0032814832
+ 21400 100 0.096764554 0.096764554 0.071534839 0.0029435039
+ 21500 100 0.046970465 0.046970465 0.04129138 0.0017468115
+ 21600 100 0.032766377 0.032766377 0.026265793 0.0016491276
+ 21700 100 0.022152668 0.022152668 0.019394268 0.00050552315
+ 21800 100 0.020778 0.020778 0.017776111 0.00098557239
+ 21900 100 0.020778283 0.020778283 0.017641295 0.00074778783
+ 22000 100 0.01698488 0.01698488 0.01429695 0.0005628648
+ 22100 100 0.01418614 0.01418614 0.012102299 0.00051794337
+ 22200 100 0.013346276 0.013346276 0.011394805 0.00032236098
+ 22300 100 0.0079928433 0.0079928433 0.0077723623 0.00022112873
+ 22400 100 0.0076254375 0.0076254375 0.0073027877 0.00031949798
+ 22500 100 0.0069692597 0.0069692597 0.0069664447 0.00021312177
+ 22600 100 0.006390305 0.006390305 0.0064208682 0.00041289648
+ 22700 100 0.0056975941 0.0056975941 0.0057521988 0.00030399038
+ 22800 100 0.0044357329 0.0044357329 0.0045549598 0.00017846882
+ 22900 100 0.0036644546 0.0036644546 0.0038064043 0.00023078463
+ 23000 100 0.002829538 0.002829538 0.0032135364 0.00022739562
+ 23100 100 0.0027443908 0.0027443908 0.0030949164 0.00020554818
+ 23200 100 0.0026840272 0.0026840272 0.00304758 0.00016936931
+ 23300 100 0.0024070816 0.0024070816 0.0027285777 0.00016201789
+ 23400 100 0.0021175586 0.0021175586 0.0023871632 0.00029731473
+ 23500 100 0.0020591834 0.0020591834 0.0022740401 0.00015989214
+ 23600 100 0.0020569788 0.0020569788 0.0022646534 0.00015753267
+ 23700 100 0.0019823585 0.0019823585 0.0021969033 0.00015346211
+ 23800 100 0.0021461846 0.0021461846 0.0022696006 0.00025075823
+ 23900 100 0.001964677 0.001964677 0.0021583248 0.00014863082
+ 24000 100 0.0019474488 0.0019474488 0.0021316684 0.00013004574
+ 24100 100 0.0024970295 0.0024970295 0.0023832844 9.8929573e-05
+ 24200 100 0.0017561148 0.0017561148 0.0019839926 7.1132622e-05
+ 24300 100 0.0016986298 0.0016986298 0.001930582 7.1465912e-05
+ 24400 100 0.001571577 0.001571577 0.0018168131 0.00015652173
+ 24500 100 0.0015605078 0.0015605078 0.001789223 6.9843415e-05
+ 24600 100 0.0018490208 0.0018490208 0.0019049916 5.2092258e-05
+ 24700 100 0.0014134222 0.0014134222 0.0016814396 4.4173713e-05
+ 24800 100 0.0013062268 0.0013062268 0.001520288 3.6497646e-05
+ 24900 100 0.0012718438 0.0012718438 0.0014563564 3.8597512e-05
+ 25000 100 0.0012686432 0.0012686432 0.0014211643 4.791856e-05
+Loop time of 0.0562653 on 1 procs for 5000 steps with 100 atoms
+
+Performance: 38389540.983 tau/day, 88864.678 timesteps/s, 8.886 Matom-step/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.0068337 | 0.0068337 | 0.0068337 | 0.0 | 12.15
+Neigh | 0.0087607 | 0.0087607 | 0.0087607 | 0.0 | 15.57
+Comm | 0.00052045 | 0.00052045 | 0.00052045 | 0.0 | 0.92
+Output | 0.00029698 | 0.00029698 | 0.00029698 | 0.0 | 0.53
+Modify | 0.038112 | 0.038112 | 0.038112 | 0.0 | 67.74
+Other | | 0.001742 | | | 3.10
+
+Nlocal: 100 ave 100 max 100 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: 150 ave 150 max 150 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 150
+Ave neighs/atom = 1.5
+Neighbor list builds = 267
+Dangerous builds = 0
+Total wall time: 0:00:00
diff --git a/examples/granregion/log.27Jun24.granregion.box.g++.4 b/examples/granregion/log.27Jun24.granregion.box.g++.4
new file mode 100644
index 0000000000..819ce04248
--- /dev/null
+++ b/examples/granregion/log.27Jun24.granregion.box.g++.4
@@ -0,0 +1,482 @@
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
+# pouring spheres into container box
+
+units lj
+atom_style sphere
+boundary f f f
+dimension 3
+comm_modify vel yes
+
+region box block -10 10 -10 10 -10 10 units box
+create_box 2 box
+Created orthogonal box = (-10 -10 -10) to (10 10 10)
+ 1 by 2 by 2 MPI processor grid
+
+pair_style hybrid gran/hooke 4000.0 NULL 100.0 NULL 0.5 1
+pair_coeff * * gran/hooke
+
+region container block -6 6 -6 6 -6 6 units box
+fix container all wall/gran/region hooke/history 4000.0 NULL 100.0 NULL 0.5 1 region container
+
+neighbor 0.3 bin
+neigh_modify delay 0 every 1 check yes
+
+fix 2 all nve/sphere
+fix 3 all gravity 1.0 vector 0 0 -1
+
+region slab block -2 2 -2 2 -2 2 units box
+fix ins all pour 100 2 4767548 vol 0.4 10 diam one 1.0 region slab ignore
+
+timestep 0.005
+
+compute 1 all temp
+compute_modify 1 dynamic/dof yes
+
+compute 2 all temp/sphere
+compute_modify 2 dynamic/dof yes
+
+thermo 100
+thermo_style custom step atoms temp c_1 c_2 press
+thermo_modify lost ignore
+compute_modify thermo_temp dynamic/dof yes
+
+#dump 2 all image 100 image.*.jpg type type # zoom 1.4 adiam 1.0 box no 0.0 axes yes 0.9 0.03
+#dump_modify 2 pad 5
+
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 48 every 566 steps, 100 by step 1133
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 1.3
+ ghost atom cutoff = 1.3
+ binsize = 0.65, bins = 31 31 31
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair gran/hooke, perpetual
+ attributes: half, newton on, size
+ pair build: half/size/bin/atomonly/newton
+ stencil: half/bin/3d
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 0.4843 | 0.4843 | 0.4843 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 0 0 0 0 0 0
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 100 30 0.803783 0.803783 0.39507978 0.0029137134
+ 200 30 1.1967995 1.1967995 0.5882574 0.0043383984
+ 300 30 1.2814686 1.2814686 0.62987441 0.0046453238
+ 400 30 0.82331082 0.82331082 0.41173176 0.0029845017
+ 500 30 0.7708462 0.7708462 0.38777784 0.0043831147
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 600 64 0.51564897 0.51564897 0.26631577 0.0040059368
+ 700 64 0.57239348 0.57239348 0.29566901 0.0045075987
+ 800 64 0.61837087 0.61837087 0.32195387 0.0048123564
+ 900 64 0.53061888 0.53061888 0.28564763 0.0055906552
+ 1000 64 0.496299 0.496299 0.26801572 0.0061169128
+ 1100 64 0.46068308 0.46068308 0.24699057 0.0055717699
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 1200 99 0.39206225 0.39206225 0.21356546 0.0066294211
+ 1300 99 0.38624966 0.38624966 0.21345854 0.0049051051
+ 1400 99 0.35615284 0.35615284 0.19785725 0.0046170774
+ 1500 99 0.31486691 0.31486691 0.17429054 0.0064903404
+ 1600 99 0.26369 0.26369 0.15095263 0.0045226821
+ 1700 100 0.19259352 0.19259352 0.11308184 0.0073603886
+ 1800 100 0.1372448 0.1372448 0.083273652 0.0058163062
+ 1900 100 0.077253038 0.077253038 0.053166156 0.0017440856
+ 2000 100 0.065472093 0.065472093 0.04375349 0.0018416047
+ 2100 100 0.057213469 0.057213469 0.037773954 0.001226231
+ 2200 100 0.058857437 0.058857437 0.0372655 0.00090812381
+ 2300 100 0.035066108 0.035066108 0.025934054 0.00072114554
+ 2400 100 0.021272125 0.021272125 0.016635107 0.0018506654
+ 2500 100 0.015530432 0.015530432 0.012533546 0.0013883971
+ 2600 100 0.012603946 0.012603946 0.0096981459 0.00038648118
+ 2700 100 0.0097347475 0.0097347475 0.0076016624 0.00057313888
+ 2800 100 0.0067081771 0.0067081771 0.0056944431 0.00085080075
+ 2900 100 0.0089177981 0.0089177981 0.0065036822 0.00028986539
+ 3000 100 0.0057840287 0.0057840287 0.0044989265 0.00016111737
+ 3100 100 0.0038909621 0.0038909621 0.0031511938 0.0001708892
+ 3200 100 0.0029043214 0.0029043214 0.0025807767 9.2473673e-05
+ 3300 100 0.0022769336 0.0022769336 0.0021487157 0.00022312666
+ 3400 100 0.0015571397 0.0015571397 0.0016669068 0.0003381372
+ 3500 100 0.0015978184 0.0015978184 0.001707772 4.9930818e-05
+ 3600 100 0.0023358916 0.0023358916 0.0020709426 9.7687609e-05
+ 3700 100 0.0011186736 0.0011186736 0.0012146914 9.3338234e-05
+ 3800 100 0.0011657036 0.0011657036 0.0012313764 3.1931251e-05
+ 3900 100 0.0014998387 0.0014998387 0.0014015491 2.4226798e-05
+ 4000 100 0.0010858335 0.0010858335 0.0010623286 1.6359241e-05
+ 4100 100 0.0010464314 0.0010464314 0.0010123557 1.2949588e-05
+ 4200 100 0.0010022428 0.0010022428 0.00097338971 1.2402332e-05
+ 4300 100 0.00080622372 0.00080622372 0.00084329652 0.00033857037
+ 4400 100 0.00073613921 0.00073613921 0.00078373608 1.0103949e-05
+ 4500 100 0.00071402196 0.00071402196 0.00076658004 8.8360218e-06
+ 4600 100 0.00064851765 0.00064851765 0.00071533461 1.0736438e-05
+ 4700 100 0.00061146699 0.00061146699 0.00068274687 4.1341755e-06
+ 4800 100 0.00059511472 0.00059511472 0.0006625527 7.3645447e-06
+ 4900 100 0.00057700347 0.00057700347 0.0006468562 1.5411897e-05
+ 5000 100 0.00056205001 0.00056205001 0.00063592505 7.8813845e-06
+Loop time of 0.0666388 on 4 procs for 5000 steps with 100 atoms
+
+Performance: 32413524.665 tau/day, 75031.307 timesteps/s, 7.503 Matom-step/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 | 0.001133 | 0.0024206 | 0.0039594 | 2.6 | 3.63
+Neigh | 0.0040192 | 0.0046633 | 0.0052296 | 0.8 | 7.00
+Comm | 0.015155 | 0.021785 | 0.029291 | 4.1 | 32.69
+Output | 0.0012323 | 0.0014638 | 0.0016021 | 0.4 | 2.20
+Modify | 0.0026785 | 0.011483 | 0.021199 | 8.2 | 17.23
+Other | | 0.02482 | | | 37.25
+
+Nlocal: 25 ave 53 max 0 min
+Histogram: 2 0 0 0 0 0 0 0 1 1
+Nghost: 4 ave 8 max 0 min
+Histogram: 2 0 0 0 0 0 0 0 0 2
+Neighs: 40.5 ave 92 max 0 min
+Histogram: 2 0 0 0 0 0 0 1 0 1
+
+Total # of neighbors = 162
+Ave neighs/atom = 1.62
+Neighbor list builds = 288
+Dangerous builds = 0
+
+region container delete
+variable theta equal (step-5000)*(4.0*PI/5000)
+region container block -6 6 -6 6 -6 6 units box rotate v_theta 0 0 0 0 0 1
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+WARNING: Region properties for region container changed between runs, resetting its motion (../fix_wall_gran_region.cpp:96)
+Per MPI rank memory allocation (min/avg/max) = 5.609 | 5.672 | 5.735 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 5000 100 0.00056205001 0.00056205001 0.00063592505 7.871665e-06
+ 5100 100 0.59585977 0.59585977 0.32464933 0.0141718
+ 5200 100 0.67306764 0.67306764 0.35872096 0.013373672
+ 5300 100 0.76065187 0.76065187 0.39925025 0.011460301
+ 5400 100 0.87984446 0.87984446 0.45261417 0.013937042
+ 5500 100 0.95548319 0.95548319 0.48706892 0.013601658
+ 5600 100 0.9993278 0.9993278 0.50830306 0.015663766
+ 5700 100 1.0449415 1.0449415 0.52967249 0.016797841
+ 5800 100 1.0767598 1.0767598 0.54508699 0.016128855
+ 5900 100 1.118688 1.118688 0.56530849 0.016830117
+ 6000 100 1.1535698 1.1535698 0.58290663 0.01715335
+ 6100 100 1.1753828 1.1753828 0.59419088 0.019273207
+ 6200 100 1.1994171 1.1994171 0.60433264 0.018391566
+ 6300 100 1.2244707 1.2244707 0.61626199 0.018842556
+ 6400 100 1.2507994 1.2507994 0.62829386 0.019538413
+ 6500 100 1.2684644 1.2684644 0.63747702 0.020794729
+ 6600 100 1.2704726 1.2704726 0.63929889 0.020253985
+ 6700 100 1.2737302 1.2737302 0.63970688 0.020858602
+ 6800 100 1.287922 1.287922 0.64460894 0.021589773
+ 6900 100 1.3028782 1.3028782 0.65197802 0.02135295
+ 7000 100 1.306633 1.306633 0.65371741 0.021291182
+ 7100 100 1.3161393 1.3161393 0.65785404 0.022554896
+ 7200 100 1.3228158 1.3228158 0.6609031 0.021811977
+ 7300 100 1.3245632 1.3245632 0.66161966 0.02206776
+ 7400 100 1.3266822 1.3266822 0.662738 0.022070761
+ 7500 100 1.3265138 1.3265138 0.6624472 0.021944768
+ 7600 100 1.3286802 1.3286802 0.66338775 0.0219393
+ 7700 100 1.332829 1.332829 0.66547051 0.022142398
+ 7800 100 1.3323535 1.3323535 0.66534513 0.022787777
+ 7900 100 1.3372424 1.3372424 0.66777556 0.02192759
+ 8000 100 1.3396201 1.3396201 0.66910123 0.022439596
+ 8100 100 1.3422271 1.3422271 0.67060566 0.023784952
+ 8200 100 1.3468062 1.3468062 0.6728991 0.02243345
+ 8300 100 1.3439408 1.3439408 0.6717529 0.022312339
+ 8400 100 1.3484134 1.3484134 0.67346027 0.022770922
+ 8500 100 1.3490032 1.3490032 0.67378177 0.022427863
+ 8600 100 1.349789 1.349789 0.67398897 0.022494049
+ 8700 100 1.3513512 1.3513512 0.67475613 0.022413559
+ 8800 100 1.3535168 1.3535168 0.67589784 0.022356566
+ 8900 100 1.3505765 1.3505765 0.67442168 0.022240615
+ 9000 100 1.3499918 1.3499918 0.67419831 0.02226049
+ 9100 100 1.3518103 1.3518103 0.67489482 0.022399038
+ 9200 100 1.3526275 1.3526275 0.67529852 0.022395079
+ 9300 100 1.353741 1.353741 0.67585205 0.022471008
+ 9400 100 1.3538758 1.3538758 0.67589523 0.022461734
+ 9500 100 1.3537199 1.3537199 0.67586527 0.022370169
+ 9600 100 1.3539788 1.3539788 0.67602899 0.022400771
+ 9700 100 1.3544874 1.3544874 0.67619552 0.022648464
+ 9800 100 1.3555422 1.3555422 0.67666186 0.022367319
+ 9900 100 1.3560106 1.3560106 0.6768751 0.02236585
+ 10000 100 1.3563578 1.3563578 0.6770434 0.022359307
+Loop time of 0.117825 on 4 procs for 5000 steps with 100 atoms
+
+Performance: 18332213.198 tau/day, 42435.679 timesteps/s, 4.244 Matom-step/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.00088578 | 0.0090104 | 0.017735 | 8.5 | 7.65
+Neigh | 0.0078603 | 0.0087927 | 0.0097327 | 1.0 | 7.46
+Comm | 0.006411 | 0.013582 | 0.022547 | 6.1 | 11.53
+Output | 0.0011273 | 0.0015902 | 0.0019777 | 1.0 | 1.35
+Modify | 0.0095221 | 0.034125 | 0.058989 | 13.2 | 28.96
+Other | | 0.05073 | | | 43.05
+
+Nlocal: 25 ave 52 max 0 min
+Histogram: 2 0 0 0 0 0 0 0 0 2
+Nghost: 3 ave 6 max 0 min
+Histogram: 2 0 0 0 0 0 0 0 0 2
+Neighs: 48.25 ave 109 max 0 min
+Histogram: 2 0 0 0 0 0 0 1 0 1
+
+Total # of neighbors = 193
+Ave neighs/atom = 1.93
+Neighbor list builds = 626
+Dangerous builds = 0
+
+region container delete
+region container block -6 6 -6 6 -6 6 units box
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 5.609 | 5.672 | 5.735 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 10000 100 1.3563578 1.3563578 0.6770434 0.022433108
+ 10100 100 0.32881547 0.32881547 0.18968913 0.0063460187
+ 10200 100 0.19880113 0.19880113 0.12812646 0.0074601538
+ 10300 100 0.12614062 0.12614062 0.090121373 0.0028337336
+ 10400 100 0.088358363 0.088358363 0.067236815 0.0020269846
+ 10500 100 0.071199344 0.071199344 0.055567135 0.0016191769
+ 10600 100 0.053909616 0.053909616 0.042301996 0.00098643468
+ 10700 100 0.039560745 0.039560745 0.032482256 0.00089240864
+ 10800 100 0.032130432 0.032130432 0.02705329 0.00058669881
+ 10900 100 0.02462494 0.02462494 0.021121496 0.0017376127
+ 11000 100 0.020941068 0.020941068 0.017866781 0.00031112553
+ 11100 100 0.016775675 0.016775675 0.014620214 0.00026856842
+ 11200 100 0.015005732 0.015005732 0.012803923 0.00067036626
+ 11300 100 0.012099209 0.012099209 0.010308221 0.00032666902
+ 11400 100 0.010559421 0.010559421 0.0090243729 0.00013645685
+ 11500 100 0.0093738615 0.0093738615 0.0080176514 0.00098541099
+ 11600 100 0.0081900702 0.0081900702 0.0070256953 0.00025935992
+ 11700 100 0.0068100165 0.0068100165 0.0058703223 0.00014866816
+ 11800 100 0.0060475708 0.0060475708 0.0052518105 0.00017895168
+ 11900 100 0.0055607485 0.0055607485 0.0047184164 0.00011358846
+ 12000 100 0.0053149064 0.0053149064 0.0045168418 0.00015222428
+ 12100 100 0.0050909525 0.0050909525 0.0043196952 6.3000537e-05
+ 12200 100 0.0041810842 0.0041810842 0.0036835522 4.6423956e-05
+ 12300 100 0.0034305227 0.0034305227 0.0031222649 0.00020251115
+ 12400 100 0.0031763077 0.0031763077 0.0028956456 0.00030307787
+ 12500 100 0.0027440829 0.0027440829 0.0025087304 0.00010418607
+ 12600 100 0.0024581964 0.0024581964 0.0022200229 3.042018e-05
+ 12700 100 0.002259527 0.002259527 0.0020708869 4.192368e-05
+ 12800 100 0.0019143448 0.0019143448 0.0018088032 4.6200439e-05
+ 12900 100 0.0017935964 0.0017935964 0.0017028317 2.2195756e-05
+ 13000 100 0.0017286429 0.0017286429 0.0016396753 2.3108871e-05
+ 13100 100 0.0017055291 0.0017055291 0.0016122058 2.2444611e-05
+ 13200 100 0.0016539275 0.0016539275 0.0015570166 2.0467353e-05
+ 13300 100 0.0015777788 0.0015777788 0.0014852505 1.9525012e-05
+ 13400 100 0.0015372199 0.0015372199 0.0014497102 2.3203566e-05
+ 13500 100 0.0015066638 0.0015066638 0.0014097203 1.8644964e-05
+ 13600 100 0.0012290618 0.0012290618 0.0012056216 1.3235643e-05
+ 13700 100 0.0011781948 0.0011781948 0.0011685226 3.4312262e-05
+ 13800 100 0.0011530136 0.0011530136 0.0011433171 2.8832126e-05
+ 13900 100 0.0011085224 0.0011085224 0.0011052764 1.444139e-05
+ 14000 100 0.0010656788 0.0010656788 0.0010702461 1.3187775e-05
+ 14100 100 0.001029277 0.001029277 0.0010469537 1.2837267e-05
+ 14200 100 0.0009750904 0.0009750904 0.0009915384 1.209089e-05
+ 14300 100 0.00094893337 0.00094893337 0.00096909301 1.1743051e-05
+ 14400 100 0.00087708427 0.00087708427 0.00087575318 1.9027338e-05
+ 14500 100 0.00086229913 0.00086229913 0.0008643568 1.0670952e-05
+ 14600 100 0.00084206808 0.00084206808 0.0008268172 3.2391722e-05
+ 14700 100 0.00077682873 0.00077682873 0.00077186085 9.6132555e-06
+ 14800 100 0.00074736908 0.00074736908 0.00074958372 9.2486924e-06
+ 14900 100 0.00074456847 0.00074456847 0.00074779946 9.2140349e-06
+ 15000 100 0.00073830282 0.00073830282 0.0007426924 9.1364974e-06
+Loop time of 0.0608167 on 4 procs for 5000 steps with 100 atoms
+
+Performance: 35516589.034 tau/day, 82214.326 timesteps/s, 8.221 Matom-step/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.00059197 | 0.0022122 | 0.0043047 | 3.5 | 3.64
+Neigh | 0.00087477 | 0.0012077 | 0.001588 | 1.0 | 1.99
+Comm | 0.0017826 | 0.010005 | 0.018966 | 8.1 | 16.45
+Output | 0.0010587 | 0.0013365 | 0.0015183 | 0.5 | 2.20
+Modify | 0.00046958 | 0.012924 | 0.027298 | 11.0 | 21.25
+Other | | 0.03313 | | | 54.48
+
+Nlocal: 25 ave 53 max 0 min
+Histogram: 2 0 0 0 0 0 0 0 1 1
+Nghost: 3.75 ave 8 max 0 min
+Histogram: 2 0 0 0 0 0 0 0 1 1
+Neighs: 39.25 ave 82 max 0 min
+Histogram: 2 0 0 0 0 0 0 0 0 2
+
+Total # of neighbors = 157
+Ave neighs/atom = 1.57
+Neighbor list builds = 100
+Dangerous builds = 0
+
+region container delete
+variable theta equal (step-15000)*(4.0*PI/5000)
+region container block -6 6 -6 6 -6 6 units box rotate v_theta 0 0 0 1 1 1
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 5.609 | 5.672 | 5.735 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 15000 100 0.00073830282 0.00073830282 0.0007426924 9.1364974e-06
+ 15100 100 1.1048281 1.1048281 0.7023727 0.018379275
+ 15200 100 1.2022249 1.2022249 0.77748962 0.015662439
+ 15300 100 1.2561351 1.2561351 0.82563065 0.01835048
+ 15400 100 1.4372446 1.4372446 0.92907923 0.02087065
+ 15500 100 1.6414713 1.6414713 1.0284489 0.025654324
+ 15600 100 1.7844655 1.7844655 1.0861866 0.025170346
+ 15700 100 2.034248 2.034248 1.2017171 0.040341642
+ 15800 100 2.1253699 2.1253699 1.2228657 0.029297194
+ 15900 100 2.1940232 2.1940232 1.2470589 0.033866758
+ 16000 100 2.2624419 2.2624419 1.2828225 0.030063645
+ 16100 100 2.3208536 2.3208536 1.3118956 0.0323489
+ 16200 100 2.3564971 2.3564971 1.3261173 0.032882494
+ 16300 100 2.3956066 2.3956066 1.3260307 0.03292972
+ 16400 100 2.5025831 2.5025831 1.3817693 0.031132988
+ 16500 100 2.5947914 2.5947914 1.4152657 0.036126782
+ 16600 100 2.7688769 2.7688769 1.4975686 0.037497127
+ 16700 100 2.812503 2.812503 1.5216659 0.039316167
+ 16800 100 2.8977424 2.8977424 1.5599254 0.039996029
+ 16900 100 3.045802 3.045802 1.6332888 0.041406156
+ 17000 100 3.2195366 3.2195366 1.7247171 0.040023634
+ 17100 100 3.2597294 3.2597294 1.7527958 0.04828292
+ 17200 100 3.293587 3.293587 1.7693254 0.044001441
+ 17300 100 3.1861836 3.1861836 1.7142076 0.049158822
+ 17400 100 3.4593561 3.4593561 1.8426619 0.053469673
+ 17500 100 3.3813767 3.3813767 1.8079958 0.058776299
+ 17600 100 3.5834203 3.5834203 1.9094759 0.053256842
+ 17700 100 3.2243306 3.2243306 1.7425111 0.064354789
+ 17800 100 3.358228 3.358228 1.8202932 0.046798524
+ 17900 100 3.2257908 3.2257908 1.7678964 0.043655204
+ 18000 100 3.237732 3.237732 1.7598181 0.050850672
+ 18100 100 3.2042441 3.2042441 1.751979 0.045582006
+ 18200 100 3.1562775 3.1562775 1.7336068 0.042210739
+ 18300 100 3.2630507 3.2630507 1.7925333 0.046412778
+ 18400 100 3.4150588 3.4150588 1.8668408 0.044386435
+ 18500 100 3.4913198 3.4913198 1.9125495 0.043329829
+ 18600 100 3.5290036 3.5290036 1.9184098 0.048302721
+ 18700 100 3.4852698 3.4852698 1.8865833 0.059566124
+ 18800 100 3.7157551 3.7157551 2.0082235 0.051356305
+ 18900 100 3.9504619 3.9504619 2.1377018 0.051553987
+ 19000 100 3.9711274 3.9711274 2.1549121 0.051555312
+ 19100 100 3.90954 3.90954 2.1135174 0.0548311
+ 19200 100 4.0672819 4.0672819 2.1837089 0.064431553
+ 19300 100 3.998355 3.998355 2.1572884 0.056830399
+ 19400 100 3.9172127 3.9172127 2.1130164 0.051264041
+ 19500 100 3.9120291 3.9120291 2.1088399 0.052545115
+ 19600 100 3.8613614 3.8613614 2.0752883 0.055466569
+ 19700 100 3.8428824 3.8428824 2.0787804 0.05129261
+ 19800 100 3.5686751 3.5686751 1.9356553 0.059177256
+ 19900 100 3.5573788 3.5573788 1.9430183 0.054618794
+ 20000 100 3.5453022 3.5453022 1.9413343 0.047640543
+Loop time of 0.120564 on 4 procs for 5000 steps with 100 atoms
+
+Performance: 17915781.606 tau/day, 41471.717 timesteps/s, 4.147 Matom-step/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.0022864 | 0.0035398 | 0.0056964 | 2.2 | 2.94
+Neigh | 0.0095136 | 0.011233 | 0.012853 | 1.1 | 9.32
+Comm | 0.043338 | 0.044586 | 0.046388 | 0.6 | 36.98
+Output | 0.0011632 | 0.0012814 | 0.0013677 | 0.2 | 1.06
+Modify | 0.01756 | 0.026391 | 0.03297 | 3.5 | 21.89
+Other | | 0.03353 | | | 27.81
+
+Nlocal: 25 ave 36 max 13 min
+Histogram: 1 0 0 0 1 0 1 0 0 1
+Nghost: 5 ave 9 max 2 min
+Histogram: 1 0 1 0 1 0 0 0 0 1
+Neighs: 37.5 ave 53 max 15 min
+Histogram: 1 0 0 0 0 1 0 1 0 1
+
+Total # of neighbors = 150
+Ave neighs/atom = 1.5
+Neighbor list builds = 913
+Dangerous builds = 0
+
+region container delete
+region container block -6 6 -6 6 -6 6 units box
+run 5000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 5.734 | 5.735 | 5.735 Mbytes
+ Step Atoms Temp c_1 c_2 Press
+ 20000 100 3.5453022 3.5453022 1.9413343 0.047178052
+ 20100 100 1.0878587 1.0878587 0.68666704 0.016139979
+ 20200 100 1.0230655 1.0230655 0.63593494 0.014642345
+ 20300 100 0.94958824 0.94958824 0.59306601 0.011745659
+ 20400 100 0.93038108 0.93038108 0.57232527 0.01154829
+ 20500 100 0.92183816 0.92183816 0.55466942 0.01212559
+ 20600 100 1.0175846 1.0175846 0.59940035 0.013815361
+ 20700 100 1.0564615 1.0564615 0.60726745 0.013073711
+ 20800 100 0.99967869 0.99967869 0.57665019 0.012450813
+ 20900 100 0.97051084 0.97051084 0.5574217 0.015686955
+ 21000 100 0.639185 0.639185 0.37441942 0.017594616
+ 21100 100 0.24979014 0.24979014 0.17121567 0.0084027295
+ 21200 100 0.15147941 0.15147941 0.11124349 0.0030435746
+ 21300 100 0.13117502 0.13117502 0.091432638 0.0029110318
+ 21400 100 0.11158272 0.11158272 0.076264692 0.0021951204
+ 21500 100 0.056660993 0.056660993 0.043503807 0.0010993096
+ 21600 100 0.028640836 0.028640836 0.026000267 0.0010440792
+ 21700 100 0.025816483 0.025816483 0.021922896 0.00081674646
+ 21800 100 0.023929555 0.023929555 0.019936972 0.0010383614
+ 21900 100 0.022271339 0.022271339 0.017947505 0.0014630387
+ 22000 100 0.019277834 0.019277834 0.015483116 0.00058751407
+ 22100 100 0.019997809 0.019997809 0.015919504 0.00064176101
+ 22200 100 0.015870543 0.015870543 0.01244838 0.0004205505
+ 22300 100 0.011797587 0.011797587 0.0096491363 0.00034907063
+ 22400 100 0.010745212 0.010745212 0.008874218 0.00035427537
+ 22500 100 0.0082372399 0.0082372399 0.0071217811 0.00028179943
+ 22600 100 0.007942576 0.007942576 0.0067248822 0.001507115
+ 22700 100 0.0061733667 0.0061733667 0.0053092324 0.00056018554
+ 22800 100 0.0058287651 0.0058287651 0.004972189 0.00023807695
+ 22900 100 0.0051352339 0.0051352339 0.004324157 0.00020849263
+ 23000 100 0.0040107769 0.0040107769 0.0035769703 0.00022626101
+ 23100 100 0.0040288854 0.0040288854 0.0034355474 0.00019107621
+ 23200 100 0.003277858 0.003277858 0.0030013165 0.00016119888
+ 23300 100 0.0033633749 0.0033633749 0.0030188927 0.00014459404
+ 23400 100 0.003468042 0.003468042 0.0030079205 0.00013778427
+ 23500 100 0.0027616702 0.0027616702 0.0024994596 0.00011834915
+ 23600 100 0.0022531303 0.0022531303 0.0021182802 0.0002279623
+ 23700 100 0.002067768 0.002067768 0.0019631752 0.00014341503
+ 23800 100 0.0020069255 0.0020069255 0.0019209587 0.00010673435
+ 23900 100 0.0019630617 0.0019630617 0.0018748221 0.00011856923
+ 24000 100 0.0018800646 0.0018800646 0.0018190347 0.00010707562
+ 24100 100 0.0018028137 0.0018028137 0.0017067233 0.00010884117
+ 24200 100 0.0017278932 0.0017278932 0.0016251004 0.00013664683
+ 24300 100 0.0016373288 0.0016373288 0.0015529481 0.00010025414
+ 24400 100 0.0019876848 0.0019876848 0.0016912033 0.00011235942
+ 24500 100 0.0013677345 0.0013677345 0.0012839488 7.8669645e-05
+ 24600 100 0.0012852614 0.0012852614 0.0012065052 0.00010172361
+ 24700 100 0.0011145002 0.0011145002 0.0010748344 7.5021689e-05
+ 24800 100 0.0012860792 0.0012860792 0.0011429675 5.7939624e-05
+ 24900 100 0.00097198499 0.00097198499 0.00096175911 5.443837e-05
+ 25000 100 0.00096224466 0.00096224466 0.00095159089 5.4245409e-05
+Loop time of 0.0658283 on 4 procs for 5000 steps with 100 atoms
+
+Performance: 32812622.584 tau/day, 75955.145 timesteps/s, 7.596 Matom-step/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.00079402 | 0.002735 | 0.0055522 | 3.9 | 4.15
+Neigh | 0.0027088 | 0.003273 | 0.0038077 | 0.9 | 4.97
+Comm | 0.010018 | 0.017119 | 0.024875 | 4.8 | 26.01
+Output | 0.0010937 | 0.0013253 | 0.0015108 | 0.5 | 2.01
+Modify | 0.0012967 | 0.011558 | 0.023237 | 9.5 | 17.56
+Other | | 0.02982 | | | 45.30
+
+Nlocal: 25 ave 56 max 0 min
+Histogram: 2 0 0 0 0 0 0 1 0 1
+Nghost: 5.5 ave 12 max 0 min
+Histogram: 2 0 0 0 0 0 0 0 1 1
+Neighs: 40 ave 101 max 0 min
+Histogram: 2 0 0 0 0 1 0 0 0 1
+
+Total # of neighbors = 160
+Ave neighs/atom = 1.6
+Neighbor list builds = 275
+Dangerous builds = 0
+Total wall time: 0:00:00
diff --git a/examples/granregion/log.27Jun24.granregion.funnel.g++.1 b/examples/granregion/log.27Jun24.granregion.funnel.g++.1
new file mode 100644
index 0000000000..7c3a4cea3a
--- /dev/null
+++ b/examples/granregion/log.27Jun24.granregion.funnel.g++.1
@@ -0,0 +1,643 @@
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
+# pour particles into cone-shaped funnel, settle them, let them run out bottom
+
+variable name string funnel_pour
+
+thermo_modify flush yes
+units si
+variable PI equal 3.141592653589
+variable seed equal 14314
+
+###############################################
+# Geometry-related parameters
+###############################################
+
+variable xlo equal 10
+variable xhi equal 40
+variable ylo equal 10
+variable yhi equal 40
+variable zlo equal -20
+variable zhi equal 50
+
+variable xc equal 25
+variable yc equal 25
+
+variable zconehi equal 50
+variable zconelo equal 10
+variable zcyllo equal 0
+variable radconelo equal 2
+variable radconehi equal 20
+
+################################################
+# Particle sizes
+################################################
+
+variable rlo equal 0.25
+variable rhi equal 0.5
+variable dlo equal 2.0*${rlo}
+variable dlo equal 2.0*0.25
+variable dhi equal 2.0*${rhi}
+variable dhi equal 2.0*0.5
+
+variable skin equal ${rhi}
+variable skin equal 0.5
+
+###############################################
+# Granular contact parameters
+###############################################
+
+variable coeffRes equal 0.1
+variable coeffFric equal 0.5
+
+variable density equal 1.0
+variable EYoung equal 10^5
+variable Poisson equal 2.0/7.0
+variable GShear equal ${EYoung}/(2*(1+${Poisson}))
+variable GShear equal 100000/(2*(1+${Poisson}))
+variable GShear equal 100000/(2*(1+0.285714285714286))
+
+variable gravity equal 1.0
+
+variable reff equal 0.5*(${rhi}+${rlo})
+variable reff equal 0.5*(0.5+${rlo})
+variable reff equal 0.5*(0.5+0.25)
+variable meff equal ${density}*4.0/3.0*${PI}*${reff}^3
+variable meff equal 1*4.0/3.0*${PI}*${reff}^3
+variable meff equal 1*4.0/3.0*3.141592653589*${reff}^3
+variable meff equal 1*4.0/3.0*3.141592653589*0.375^3
+variable min_mass equal ${density}*4.0/3.0*${PI}*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*${PI}*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*3.141592653589*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*0.25*${rlo}
+variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*0.25*0.25
+variable max_mass equal ${density}*4.0/3.0*${PI}*${rhi}*${rhi}*${rhi}
+variable max_mass equal 1*4.0/3.0*${PI}*${rhi}*${rhi}*${rhi}
+variable max_mass equal 1*4.0/3.0*3.141592653589*${rhi}*${rhi}*${rhi}
+variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*${rhi}*${rhi}
+variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*0.5*${rhi}
+variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*0.5*0.5
+
+## Typical way to set kn, kt, etc.:
+variable kn equal 4.0*${GShear}/(3*(1-${Poisson}))
+variable kn equal 4.0*38888.8888888889/(3*(1-${Poisson}))
+variable kn equal 4.0*38888.8888888889/(3*(1-0.285714285714286))
+variable kt equal 4.0*${GShear}/(2-${Poisson})
+variable kt equal 4.0*38888.8888888889/(2-${Poisson})
+variable kt equal 4.0*38888.8888888889/(2-0.285714285714286)
+
+variable a equal (-2.0*log(${coeffRes})/${PI})^2
+variable a equal (-2.0*log(0.1)/${PI})^2
+variable a equal (-2.0*log(0.1)/3.141592653589)^2
+variable gamma_n equal sqrt($a*2*${kn}/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569556*2*${kn}/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/0.0654498469497708/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/0.0654498469497708/(1+0.25*0.405284734569556))
+variable gamma_t equal ${gamma_n}*0.5
+variable gamma_t equal 903.503751814138*0.5
+
+variable tcol equal ${PI}/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
+variable tcol equal 3.141592653589/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
+variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/${min_mass}-${gamma_n}/4.0)
+variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/0.0654498469497708-${gamma_n}/4.0)
+variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/0.0654498469497708-903.503751814138/4.0)
+
+variable dt equal ${tcol}*0.05
+variable dt equal 0.00210943016014969*0.05
+timestep ${dt}
+timestep 0.000105471508007485
+
+###############################################
+variable dumpfreq equal 1000
+variable logfreq equal 1000
+
+newton off
+atom_style sphere
+
+boundary p p f
+
+region boxreg block ${xlo} ${xhi} ${ylo} ${yhi} ${zlo} ${zhi}
+region boxreg block 10 ${xhi} ${ylo} ${yhi} ${zlo} ${zhi}
+region boxreg block 10 40 ${ylo} ${yhi} ${zlo} ${zhi}
+region boxreg block 10 40 10 ${yhi} ${zlo} ${zhi}
+region boxreg block 10 40 10 40 ${zlo} ${zhi}
+region boxreg block 10 40 10 40 -20 ${zhi}
+region boxreg block 10 40 10 40 -20 50
+create_box 1 boxreg
+Created orthogonal box = (10 10 -20) to (40 40 50)
+ 1 by 1 by 1 MPI processor grid
+
+pair_style gran/hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1
+pair_coeff * *
+
+neighbor ${skin} multi
+neighbor 0.5 multi
+thermo ${logfreq}
+thermo 1000
+
+comm_style brick
+comm_modify mode multi group all vel yes
+balance 1.1 shift xyz 20 1.1
+Balancing ...
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 0
+ ghost atom cutoff = 0
+ binsize = 30, bins = 1 1 3
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair gran/hertz/history, perpetual
+ attributes: half, newton off, size, history
+ pair build: half/size/multi/atomonly/newtoff
+ stencil: full/multi/3d
+ bin: multi
+WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (../comm_brick.cpp:210)
+fix bal all balance 10000 1.1 shift xyz 20 1.01
+
+####################### Options specific to pouring #########################
+
+# insertion region for fix/pour
+
+region insreg cylinder z ${xc} ${yc} 10 30 50 side in units box
+region insreg cylinder z 25 ${yc} 10 30 50 side in units box
+region insreg cylinder z 25 25 10 30 50 side in units box
+
+# define cone and cylinder regions - see lammps doc on region command
+# note new open options
+
+region cylreg cylinder z ${xc} ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 2 #Top is open
+region cylreg cylinder z 25 ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 2
+region cylreg cylinder z 25 25 ${radconelo} ${zcyllo} ${zconelo} side in units box open 2
+region cylreg cylinder z 25 25 2 ${zcyllo} ${zconelo} side in units box open 2
+region cylreg cylinder z 25 25 2 0 ${zconelo} side in units box open 2
+region cylreg cylinder z 25 25 2 0 10 side in units box open 2
+
+region conereg cone z ${xc} ${yc} ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2 #Bottom and top are open
+region conereg cone z 25 ${yc} ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 2 ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 2 20 ${zconelo} ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 2 20 10 ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 2 20 10 50 side in units box open 1 open 2
+
+region hopreg union 2 conereg cylreg
+
+fix grav all gravity ${gravity} vector 0 0 -1
+fix grav all gravity 1 vector 0 0 -1
+fix 1 all nve/sphere
+
+
+fix hopper3 all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1 region hopreg
+
+fix ins all pour 2000 1 42424 region insreg diam range ${dlo} ${dhi} dens ${density} ${density}
+fix ins all pour 2000 1 42424 region insreg diam range 0.5 ${dhi} dens ${density} ${density}
+fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens ${density} ${density}
+fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens 1 ${density}
+fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens 1 1
+
+#dump 1 all custom ${dumpfreq} ${name}.dump # id type mass diameter x y z
+
+#dump 2 all image 4000 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 zoom 3.0 # box no 0.0 axes no 0.0 0.0
+#dump_modify 2 pad 6
+
+thermo_style custom step cpu atoms ke
+WARNING: New thermo_style command, previous thermo_modify settings will be lost (../output.cpp:904)
+thermo_modify flush yes lost warn
+
+# Initial run to fill up the cone
+
+run 20000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
+
+@Article{Intveld08,
+ author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
+ title = {Accurate and Efficient Methods for Modeling Colloidal
+ Mixtures in an Explicit Solvent using Molecular Dynamics},
+ journal = {Comput.\ Phys.\ Commut.},
+ year = 2008,
+ volume = 179,
+ pages = {320--329}
+}
+
+@article{Shire2020,
+ author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
+ title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
+ Detection Applied to Investigate the Quasi-Static Limit},
+ journal = {Computational Particle Mechanics},
+ year = {2020}
+@article{Monti2022,
+ author = {Monti, Joseph M. and Clemmer, Joel T. and Srivastava,
+ Ishan and Silbert, Leonardo E. and Grest, Gary S.
+ and Lechman, Jeremy B.},
+ title = {Large-scale frictionless jamming with power-law particle
+ size distributions},
+ journal = {Phys. Rev. E},
+ volume = {106}
+ issue = {3}
+ year = {2022}
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 3000 every 59965 steps, 2000 by step 1
+Per MPI rank memory allocation (min/avg/max) = 6.648 | 6.648 | 6.648 Mbytes
+ Step CPU Atoms KinEng
+ 0 0 0 -0
+ 1000 0.42422547 2000 -0
+ 2000 0.61303447 2000 -0
+ 3000 0.80093891 2000 -0
+ 4000 0.9870726 2000 -0
+ 5000 1.174735 2000 -0
+ 6000 1.3615338 2000 -0
+ 7000 1.5481574 2000 -0
+ 8000 1.7332676 2000 -0
+ 9000 1.9202086 2000 -0
+ 10000 2.1067651 2000 -0
+ 11000 2.2904529 2000 -0
+ 12000 2.4750549 2000 -0
+ 13000 2.6588335 2000 -0
+ 14000 2.8432942 2000 -0
+ 15000 3.0276634 2000 -0
+ 16000 3.2143893 2000 -0
+ 17000 3.3989855 2000 -0
+ 18000 3.5835207 2000 -0
+ 19000 3.7684773 2000 -0
+ 20000 3.9550272 2000 -0
+Loop time of 3.95505 on 1 procs for 20000 steps with 2000 atoms
+
+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.40709 | 0.40709 | 0.40709 | 0.0 | 10.29
+Neigh | 0.065613 | 0.065613 | 0.065613 | 0.0 | 1.66
+Comm | 0.0076015 | 0.0076015 | 0.0076015 | 0.0 | 0.19
+Output | 0.00041671 | 0.00041671 | 0.00041671 | 0.0 | 0.01
+Modify | 3.3895 | 3.3895 | 3.3895 | 0.0 | 85.70
+Other | | 0.08486 | | | 2.15
+
+Nlocal: 2000 ave 2000 max 2000 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: 1607 ave 1607 max 1607 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 1607
+Ave neighs/atom = 0.8035
+Neighbor list builds = 71
+Dangerous builds = 0
+unfix ins
+run 150000
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 12.69 | 12.69 | 12.69 Mbytes
+ Step CPU Atoms KinEng
+ 20000 0 2000 6652.2957
+ 21000 0.18540841 2000 6807.2201
+ 22000 0.37080157 2000 6973.9359
+ 23000 0.55573123 2000 7142.3648
+ 24000 0.74112501 2000 7276.9717
+ 25000 0.92686283 2000 7369.4191
+ 26000 1.1145958 2000 7497.6526
+ 27000 1.3033904 2000 7638.946
+ 28000 1.4921406 2000 7780.0339
+ 29000 1.6824098 2000 7881.8177
+ 30000 1.8751801 2000 7967.2641
+ 31000 2.0698118 2000 7994.9273
+ 32000 2.2682778 2000 7937.0671
+ 33000 2.4695819 2000 7774.0508
+ 34000 2.675988 2000 7591.1491
+ 35000 2.886376 2000 7357.5176
+ 36000 3.102007 2000 7147.2024
+ 37000 3.321435 2000 6979.1604
+ 38000 3.5426417 2000 6813.2152
+ 39000 3.7660203 2000 6660.2701
+ 40000 3.998044 2000 6502.8957
+ 41000 4.234151 2000 6324.3951
+ 42000 4.4731702 2000 6132.7516
+ 43000 4.7137403 2000 5913.1841
+ 44000 4.9572451 2000 5732.2095
+ 45000 5.2042391 2000 5508.8322
+ 46000 5.462849 2000 5306.8932
+ 47000 5.724072 2000 5152.0521
+ 48000 5.987507 2000 5028.2274
+ 49000 6.2495317 2000 4896.102
+ 50000 6.5151951 2000 4723.5189
+ 51000 6.7809368 2000 4583.7526
+ 52000 7.0554059 2000 4447.0187
+ 53000 7.5371151 2000 4303.2307
+ 54000 7.8249388 2000 4168.5251
+ 55000 8.1204418 2000 4036.9704
+ 56000 8.4176628 2000 3901.1183
+ 57000 8.7222873 2000 3716.7071
+ 58000 9.0346411 2000 3473.5422
+ 59000 9.3526758 2000 3245.1223
+ 60000 9.6699173 2000 3039.7845
+ 61000 9.9903491 2000 2780.0187
+ 62000 10.318591 2000 2577.3345
+ 63000 10.65279 2000 2346.2488
+ 64000 10.993148 2000 2116.7298
+ 65000 11.335466 2000 1903.7828
+ 66000 11.686936 2000 1631.1676
+ 67000 12.046515 2000 1431.0198
+ 68000 12.413611 2000 1212.875
+ 69000 12.783883 2000 995.45046
+ 70000 13.156707 2000 811.54766
+ 71000 13.532628 2000 624.08622
+ 72000 13.91241 2000 471.00862
+ 73000 14.296186 2000 358.33486
+ 74000 14.680961 2000 284.39416
+ 75000 15.06644 2000 234.26671
+ 76000 15.447805 2000 185.61836
+ 77000 15.825601 2000 152.95918
+ 78000 16.205661 2000 122.49023
+ 79000 16.582292 2000 102.29396
+ 80000 16.96433 2000 86.284684
+ 81000 17.347289 2000 73.984781
+ 82000 17.739993 2000 63.042918
+ 83000 18.142078 2000 53.338428
+ 84000 18.547853 2000 45.89585
+ 85000 18.95343 2000 40.412826
+ 86000 19.35904 2000 34.183381
+ 87000 19.765916 2000 29.671524
+ 88000 20.18651 2000 26.90414
+ 89000 20.598969 2000 24.362631
+ 90000 21.016445 2000 21.887341
+ 91000 21.437072 2000 19.985662
+ 92000 21.86331 2000 18.728162
+ 93000 22.291217 2000 16.99941
+ 94000 22.724102 2000 15.71941
+ 95000 23.155367 2000 14.744057
+ 96000 23.590722 2000 14.214918
+ 97000 24.028273 2000 13.450182
+ 98000 24.47017 2000 12.79222
+ 99000 24.913929 2000 12.10595
+ 100000 25.361256 2000 11.281863
+ 101000 25.807117 2000 10.025419
+ 102000 26.257292 2000 9.9574468
+ 103000 26.70767 2000 9.4078117
+ 104000 27.161728 2000 8.9079161
+ 105000 27.617856 2000 8.6269302
+ 106000 28.069631 2000 8.5512649
+ 107000 28.526606 2000 8.4703948
+ 108000 28.982832 2000 8.2747542
+ 109000 29.441422 2000 8.2895118
+ 110000 29.906198 2000 8.1785613
+ 111000 30.36715 2000 7.8443234
+ 112000 30.829642 2000 7.7436124
+ 113000 31.319634 2000 7.8118604
+ 114000 31.791602 2000 7.3806177
+ 115000 32.260138 2000 7.0857235
+ 116000 32.725698 2000 7.1346752
+ 117000 33.192963 2000 7.0653751
+ 118000 33.661517 2000 6.6314104
+ 119000 34.127108 2000 6.2169614
+ 120000 34.597123 2000 5.8988829
+ 121000 35.064919 2000 5.4197277
+ 122000 35.535855 2000 4.6381303
+ 123000 36.005284 2000 4.4949206
+ 124000 36.47519 2000 4.4261118
+ 125000 36.945117 2000 4.4223703
+ 126000 37.417732 2000 4.4858898
+ 127000 37.888171 2000 4.3312536
+ 128000 38.360713 2000 3.7124973
+ 129000 38.835798 2000 3.5467396
+ 130000 39.311234 2000 3.5104139
+ 131000 39.783409 2000 3.5725612
+ 132000 40.255871 2000 3.669455
+ 133000 40.728998 2000 3.6168912
+ 134000 41.203148 2000 3.3598517
+ 135000 41.677786 2000 3.3743407
+ 136000 42.15241 2000 3.1109764
+ 137000 42.627707 2000 3.0720146
+ 138000 43.100904 2000 3.1303776
+ 139000 43.574775 2000 3.2052806
+ 140000 44.050804 2000 2.8958882
+ 141000 44.525409 2000 2.9931572
+ 142000 44.999822 2000 3.0967832
+ 143000 45.476054 2000 3.0576365
+ 144000 45.951361 2000 3.2016943
+ 145000 46.429655 2000 3.3817709
+ 146000 46.905577 2000 3.4527239
+ 147000 47.38743 2000 3.5928733
+ 148000 47.86409 2000 3.7784682
+ 149000 48.342003 2000 3.6587944
+ 150000 48.823792 2000 3.7945669
+ 151000 49.30105 2000 3.5551557
+ 152000 49.780315 2000 3.6248848
+ 153000 50.257553 2000 3.7361463
+ 154000 50.737624 2000 3.8534319
+ 155000 51.218208 2000 4.0101408
+ 156000 51.695675 2000 3.7670652
+ 157000 52.176961 2000 3.1487676
+ 158000 52.657466 2000 2.980076
+ 159000 53.134109 2000 3.0350592
+ 160000 53.615609 2000 3.125389
+ 161000 54.093868 2000 2.7516115
+ 162000 54.576681 2000 2.413911
+ 163000 55.055496 2000 2.297713
+ 164000 55.538174 2000 2.3190806
+ 165000 56.020458 2000 2.2868879
+ 166000 56.501206 2000 2.1658547
+ 167000 56.983465 2000 1.7511071
+ 168000 57.466833 2000 1.4112478
+ 169000 57.949757 2000 1.3623558
+ 170000 58.43349 2000 1.3701579
+Loop time of 58.4335 on 1 procs for 150000 steps with 2000 atoms
+
+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 | 29.221 | 29.221 | 29.221 | 0.0 | 50.01
+Neigh | 0.57927 | 0.57927 | 0.57927 | 0.0 | 0.99
+Comm | 0.060749 | 0.060749 | 0.060749 | 0.0 | 0.10
+Output | 0.20563 | 0.20563 | 0.20563 | 0.0 | 0.35
+Modify | 27.674 | 27.674 | 27.674 | 0.0 | 47.36
+Other | | 0.6922 | | | 1.18
+
+Nlocal: 2000 ave 2000 max 2000 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: 15308 ave 15308 max 15308 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 15308
+Ave neighs/atom = 7.654
+Neighbor list builds = 367
+Dangerous builds = 0
+
+# remove "plug" - need to redefine cylinder region & union
+
+region cylreg delete
+region hopreg delete
+region cylreg cylinder z ${xc} ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2 #Bottom & top are open
+region cylreg cylinder z 25 ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2
+region cylreg cylinder z 25 25 ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2
+region cylreg cylinder z 25 25 2 ${zcyllo} ${zconelo} side in units box open 1 open 2
+region cylreg cylinder z 25 25 2 0 ${zconelo} side in units box open 1 open 2
+region cylreg cylinder z 25 25 2 0 10 side in units box open 1 open 2
+
+region hopreg union 2 cylreg conereg
+
+unfix hopper3
+fix hopper3 all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1 region hopreg
+
+run 100000
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 12.69 | 12.69 | 12.69 Mbytes
+ Step CPU Atoms KinEng
+ 170000 0 2000 1.3701579
+ 171000 0.48431316 2000 2.3724823
+ 172000 0.96523693 2000 3.5881441
+ 173000 1.4349569 2000 5.3771633
+ 174000 1.902564 2000 7.5896471
+ 175000 2.3637344 2000 10.77251
+ 176000 2.817277 2000 14.806868
+ 177000 3.2682365 2000 19.607624
+ 178000 3.7215391 2000 25.426227
+ 179000 4.1716711 2000 32.23584
+ 180000 4.621872 2000 39.930468
+ 181000 5.0676618 2000 47.686304
+ 182000 5.5105545 2000 56.506806
+ 183000 5.9489081 2000 66.514326
+ 184000 6.3843739 2000 77.554644
+ 185000 6.8189889 2000 89.224002
+ 186000 7.2526358 2000 102.07846
+ 187000 7.6807565 2000 116.08141
+ 188000 8.1050895 2000 130.97964
+ 189000 8.52413 2000 146.77806
+ 190000 8.9479211 2000 162.79858
+ 191000 9.3652194 2000 179.02052
+ 192000 9.780893 2000 196.26683
+ 193000 10.192876 2000 214.38928
+ 194000 10.606655 2000 232.32068
+ 195000 11.018129 2000 251.74644
+ 196000 11.424821 2000 272.25231
+ 197000 11.833891 2000 294.64075
+ 198000 12.237613 2000 318.32895
+ 199000 12.640094 2000 342.44005
+ 200000 13.045535 2000 368.35469
+ 201000 13.445497 2000 395.2465
+ 202000 13.85102 2000 422.63599
+ 203000 14.254213 2000 450.45248
+ 204000 14.654729 2000 479.60812
+ 205000 15.057527 2000 510.44155
+ 206000 15.456223 2000 543.25751
+ 207000 15.849932 2000 577.35928
+ 208000 16.240706 2000 612.29718
+ 209000 16.629756 2000 647.8951
+ 210000 17.019318 2000 683.79409
+ 211000 17.40949 2000 720.36556
+ 212000 17.802521 2000 759.27331
+ 213000 18.192311 2000 798.27302
+ 214000 18.582347 2000 837.93849
+ 215000 18.970586 2000 877.92945
+ 216000 19.362316 2000 919.62532
+ 217000 19.755364 2000 962.83509
+ 218000 20.146845 2000 1008.5243
+ 219000 20.530427 2000 1054.5769
+ 220000 20.914645 2000 1103.1843
+ 221000 21.296153 2000 1153.0349
+ 222000 21.681747 2000 1204.5599
+ 223000 22.06794 2000 1257.1367
+ 224000 22.45394 2000 1308.6735
+WARNING: Lost atoms: original 2000 current 1999 (../thermo.cpp:499)
+ 225000 22.843026 1999 1360.1205
+ 226000 23.221639 1998 1404.8405
+ 227000 23.603256 1996 1448.4869
+ 228000 23.985547 1992 1491.8112
+ 229000 24.359685 1985 1518.7013
+ 230000 24.733284 1971 1507.6699
+ 231000 25.100372 1965 1533.5096
+ 232000 25.470109 1948 1489.4128
+ 233000 25.840892 1933 1477.4536
+ 234000 26.207893 1915 1425.8398
+ 235000 26.570401 1904 1410.1451
+ 236000 26.931189 1892 1401.7595
+ 237000 27.28796 1880 1368.893
+ 238000 27.642985 1868 1341.8885
+ 239000 27.998754 1850 1286.7968
+ 240000 28.353974 1833 1219.5123
+ 241000 28.709461 1820 1173.3608
+ 242000 29.065121 1806 1106.0727
+ 243000 29.418519 1788 1035.912
+ 244000 29.770812 1779 1021.6147
+ 245000 30.11704 1767 969.40032
+ 246000 30.457702 1757 939.12022
+ 247000 30.800392 1739 840.9396
+ 248000 31.141047 1730 822.06575
+ 249000 31.483192 1719 762.11057
+ 250000 31.831879 1707 708.50308
+ 251000 32.176299 1700 692.12647
+ 252000 32.520059 1697 694.5812
+ 253000 32.884872 1686 652.36951
+ 254000 33.229261 1682 662.95256
+ 255000 33.557987 1677 637.34619
+ 256000 33.891681 1672 630.71277
+ 257000 34.230081 1669 641.87365
+ 258000 34.571663 1665 635.862
+ 259000 34.913723 1664 658.5339
+ 260000 35.253805 1662 669.95468
+ 261000 35.587547 1660 676.93495
+ 262000 35.920661 1657 681.72646
+ 263000 36.25079 1655 687.4078
+ 264000 36.5838 1651 681.61352
+ 265000 36.914146 1647 673.20622
+ 266000 37.245414 1644 677.30073
+ 267000 37.571588 1641 671.05897
+ 268000 37.896337 1639 689.55776
+ 269000 38.22279 1637 711.98809
+ 270000 38.550831 1633 705.29974
+Loop time of 38.5508 on 1 procs for 100000 steps with 1633 atoms
+
+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 | 20.145 | 20.145 | 20.145 | 0.0 | 52.25
+Neigh | 0.42523 | 0.42523 | 0.42523 | 0.0 | 1.10
+Comm | 0.042119 | 0.042119 | 0.042119 | 0.0 | 0.11
+Output | 0.0022978 | 0.0022978 | 0.0022978 | 0.0 | 0.01
+Modify | 17.495 | 17.495 | 17.495 | 0.0 | 45.38
+Other | | 0.4416 | | | 1.15
+
+Nlocal: 1633 ave 1633 max 1633 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: 11358 ave 11358 max 11358 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 11358
+Ave neighs/atom = 6.955297
+Neighbor list builds = 244
+Dangerous builds = 0
+Total wall time: 0:01:40
diff --git a/examples/granregion/log.27Jun24.granregion.funnel.g++.4 b/examples/granregion/log.27Jun24.granregion.funnel.g++.4
new file mode 100644
index 0000000000..ffd7e011fa
--- /dev/null
+++ b/examples/granregion/log.27Jun24.granregion.funnel.g++.4
@@ -0,0 +1,643 @@
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
+# pour particles into cone-shaped funnel, settle them, let them run out bottom
+
+variable name string funnel_pour
+
+thermo_modify flush yes
+units si
+variable PI equal 3.141592653589
+variable seed equal 14314
+
+###############################################
+# Geometry-related parameters
+###############################################
+
+variable xlo equal 10
+variable xhi equal 40
+variable ylo equal 10
+variable yhi equal 40
+variable zlo equal -20
+variable zhi equal 50
+
+variable xc equal 25
+variable yc equal 25
+
+variable zconehi equal 50
+variable zconelo equal 10
+variable zcyllo equal 0
+variable radconelo equal 2
+variable radconehi equal 20
+
+################################################
+# Particle sizes
+################################################
+
+variable rlo equal 0.25
+variable rhi equal 0.5
+variable dlo equal 2.0*${rlo}
+variable dlo equal 2.0*0.25
+variable dhi equal 2.0*${rhi}
+variable dhi equal 2.0*0.5
+
+variable skin equal ${rhi}
+variable skin equal 0.5
+
+###############################################
+# Granular contact parameters
+###############################################
+
+variable coeffRes equal 0.1
+variable coeffFric equal 0.5
+
+variable density equal 1.0
+variable EYoung equal 10^5
+variable Poisson equal 2.0/7.0
+variable GShear equal ${EYoung}/(2*(1+${Poisson}))
+variable GShear equal 100000/(2*(1+${Poisson}))
+variable GShear equal 100000/(2*(1+0.285714285714286))
+
+variable gravity equal 1.0
+
+variable reff equal 0.5*(${rhi}+${rlo})
+variable reff equal 0.5*(0.5+${rlo})
+variable reff equal 0.5*(0.5+0.25)
+variable meff equal ${density}*4.0/3.0*${PI}*${reff}^3
+variable meff equal 1*4.0/3.0*${PI}*${reff}^3
+variable meff equal 1*4.0/3.0*3.141592653589*${reff}^3
+variable meff equal 1*4.0/3.0*3.141592653589*0.375^3
+variable min_mass equal ${density}*4.0/3.0*${PI}*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*${PI}*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*3.141592653589*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*0.25*${rlo}
+variable min_mass equal 1*4.0/3.0*3.141592653589*0.25*0.25*0.25
+variable max_mass equal ${density}*4.0/3.0*${PI}*${rhi}*${rhi}*${rhi}
+variable max_mass equal 1*4.0/3.0*${PI}*${rhi}*${rhi}*${rhi}
+variable max_mass equal 1*4.0/3.0*3.141592653589*${rhi}*${rhi}*${rhi}
+variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*${rhi}*${rhi}
+variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*0.5*${rhi}
+variable max_mass equal 1*4.0/3.0*3.141592653589*0.5*0.5*0.5
+
+## Typical way to set kn, kt, etc.:
+variable kn equal 4.0*${GShear}/(3*(1-${Poisson}))
+variable kn equal 4.0*38888.8888888889/(3*(1-${Poisson}))
+variable kn equal 4.0*38888.8888888889/(3*(1-0.285714285714286))
+variable kt equal 4.0*${GShear}/(2-${Poisson})
+variable kt equal 4.0*38888.8888888889/(2-${Poisson})
+variable kt equal 4.0*38888.8888888889/(2-0.285714285714286)
+
+variable a equal (-2.0*log(${coeffRes})/${PI})^2
+variable a equal (-2.0*log(0.1)/${PI})^2
+variable a equal (-2.0*log(0.1)/3.141592653589)^2
+variable gamma_n equal sqrt($a*2*${kn}/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569556*2*${kn}/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/0.0654498469497708/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569556*2*72592.5925925926/0.0654498469497708/(1+0.25*0.405284734569556))
+variable gamma_t equal ${gamma_n}*0.5
+variable gamma_t equal 903.503751814138*0.5
+
+variable tcol equal ${PI}/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
+variable tcol equal 3.141592653589/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
+variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/${min_mass}-${gamma_n}/4.0)
+variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/0.0654498469497708-${gamma_n}/4.0)
+variable tcol equal 3.141592653589/sqrt(2*72592.5925925926/0.0654498469497708-903.503751814138/4.0)
+
+variable dt equal ${tcol}*0.05
+variable dt equal 0.00210943016014969*0.05
+timestep ${dt}
+timestep 0.000105471508007485
+
+###############################################
+variable dumpfreq equal 1000
+variable logfreq equal 1000
+
+newton off
+atom_style sphere
+
+boundary p p f
+
+region boxreg block ${xlo} ${xhi} ${ylo} ${yhi} ${zlo} ${zhi}
+region boxreg block 10 ${xhi} ${ylo} ${yhi} ${zlo} ${zhi}
+region boxreg block 10 40 ${ylo} ${yhi} ${zlo} ${zhi}
+region boxreg block 10 40 10 ${yhi} ${zlo} ${zhi}
+region boxreg block 10 40 10 40 ${zlo} ${zhi}
+region boxreg block 10 40 10 40 -20 ${zhi}
+region boxreg block 10 40 10 40 -20 50
+create_box 1 boxreg
+Created orthogonal box = (10 10 -20) to (40 40 50)
+ 1 by 1 by 4 MPI processor grid
+
+pair_style gran/hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1
+pair_style gran/hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1
+pair_coeff * *
+
+neighbor ${skin} multi
+neighbor 0.5 multi
+thermo ${logfreq}
+thermo 1000
+
+comm_style brick
+comm_modify mode multi group all vel yes
+balance 1.1 shift xyz 20 1.1
+Balancing ...
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 0
+ ghost atom cutoff = 0
+ binsize = 30, bins = 1 1 3
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair gran/hertz/history, perpetual
+ attributes: half, newton off, size, history
+ pair build: half/size/multi/atomonly/newtoff
+ stencil: full/multi/3d
+ bin: multi
+WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (../comm_brick.cpp:210)
+fix bal all balance 10000 1.1 shift xyz 20 1.01
+
+####################### Options specific to pouring #########################
+
+# insertion region for fix/pour
+
+region insreg cylinder z ${xc} ${yc} 10 30 50 side in units box
+region insreg cylinder z 25 ${yc} 10 30 50 side in units box
+region insreg cylinder z 25 25 10 30 50 side in units box
+
+# define cone and cylinder regions - see lammps doc on region command
+# note new open options
+
+region cylreg cylinder z ${xc} ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 2 #Top is open
+region cylreg cylinder z 25 ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 2
+region cylreg cylinder z 25 25 ${radconelo} ${zcyllo} ${zconelo} side in units box open 2
+region cylreg cylinder z 25 25 2 ${zcyllo} ${zconelo} side in units box open 2
+region cylreg cylinder z 25 25 2 0 ${zconelo} side in units box open 2
+region cylreg cylinder z 25 25 2 0 10 side in units box open 2
+
+region conereg cone z ${xc} ${yc} ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2 #Bottom and top are open
+region conereg cone z 25 ${yc} ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 ${radconelo} ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 2 ${radconehi} ${zconelo} ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 2 20 ${zconelo} ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 2 20 10 ${zconehi} side in units box open 1 open 2
+region conereg cone z 25 25 2 20 10 50 side in units box open 1 open 2
+
+region hopreg union 2 conereg cylreg
+
+fix grav all gravity ${gravity} vector 0 0 -1
+fix grav all gravity 1 vector 0 0 -1
+fix 1 all nve/sphere
+
+
+fix hopper3 all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1 region hopreg
+
+fix ins all pour 2000 1 42424 region insreg diam range ${dlo} ${dhi} dens ${density} ${density}
+fix ins all pour 2000 1 42424 region insreg diam range 0.5 ${dhi} dens ${density} ${density}
+fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens ${density} ${density}
+fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens 1 ${density}
+fix ins all pour 2000 1 42424 region insreg diam range 0.5 1 dens 1 1
+
+#dump 1 all custom ${dumpfreq} ${name}.dump # id type mass diameter x y z
+
+#dump 2 all image 4000 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 zoom 3.0 # box no 0.0 axes no 0.0 0.0
+#dump_modify 2 pad 6
+
+thermo_style custom step cpu atoms ke
+WARNING: New thermo_style command, previous thermo_modify settings will be lost (../output.cpp:904)
+thermo_modify flush yes lost warn
+
+# Initial run to fill up the cone
+
+run 20000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
+
+@Article{Intveld08,
+ author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
+ title = {Accurate and Efficient Methods for Modeling Colloidal
+ Mixtures in an Explicit Solvent using Molecular Dynamics},
+ journal = {Comput.\ Phys.\ Commut.},
+ year = 2008,
+ volume = 179,
+ pages = {320--329}
+}
+
+@article{Shire2020,
+ author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
+ title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
+ Detection Applied to Investigate the Quasi-Static Limit},
+ journal = {Computational Particle Mechanics},
+ year = {2020}
+@article{Monti2022,
+ author = {Monti, Joseph M. and Clemmer, Joel T. and Srivastava,
+ Ishan and Silbert, Leonardo E. and Grest, Gary S.
+ and Lechman, Jeremy B.},
+ title = {Large-scale frictionless jamming with power-law particle
+ size distributions},
+ journal = {Phys. Rev. E},
+ volume = {106}
+ issue = {3}
+ year = {2022}
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 3000 every 59965 steps, 2000 by step 1
+Per MPI rank memory allocation (min/avg/max) = 6.049 | 6.049 | 6.049 Mbytes
+ Step CPU Atoms KinEng
+ 0 0 0 -0
+ 1000 0.44807882 2000 -0
+ 2000 0.63550417 2000 -0
+ 3000 0.82082211 2000 -0
+ 4000 1.0004254 2000 -0
+ 5000 1.1738611 2000 -0
+ 6000 1.3426033 2000 -0
+ 7000 1.5076494 2000 -0
+ 8000 1.6673766 2000 -0
+ 9000 1.8244007 2000 -0
+ 10000 1.9794011 2000 -0
+ 11000 2.049584 2000 -0
+ 12000 2.1210622 2000 -0
+ 13000 2.1917604 2000 -0
+ 14000 2.2631006 2000 -0
+ 15000 2.3361511 2000 -0
+ 16000 2.4131306 2000 -0
+ 17000 2.4938482 2000 -0
+ 18000 2.5771299 2000 -0
+ 19000 2.6633207 2000 -0
+ 20000 2.7541527 2000 -0
+Loop time of 2.75417 on 4 procs for 20000 steps with 2000 atoms
+
+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.028725 | 0.079701 | 0.18206 | 21.3 | 2.89
+Neigh | 0.0072627 | 0.013673 | 0.023071 | 5.0 | 0.50
+Comm | 0.084562 | 0.18785 | 0.28115 | 18.6 | 6.82
+Output | 0.00088257 | 0.0016453 | 0.0021961 | 1.2 | 0.06
+Modify | 0.66551 | 1.1062 | 1.9324 | 46.7 | 40.16
+Other | | 1.365 | | | 49.57
+
+Nlocal: 500 ave 510 max 493 min
+Histogram: 1 1 0 0 0 1 0 0 0 1
+Nghost: 154 ave 227 max 79 min
+Histogram: 1 0 0 0 1 0 1 0 0 1
+Neighs: 415.5 ave 610 max 258 min
+Histogram: 1 1 0 0 0 0 1 0 0 1
+
+Total # of neighbors = 1662
+Ave neighs/atom = 0.831
+Neighbor list builds = 71
+Dangerous builds = 0
+unfix ins
+run 150000
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 12.33 | 12.5 | 12.68 Mbytes
+ Step CPU Atoms KinEng
+ 20000 0 2000 6652.2957
+ 21000 0.064679537 2000 6807.2201
+ 22000 0.13180546 2000 6973.9359
+ 23000 0.20116485 2000 7142.3648
+ 24000 0.27404997 2000 7276.9717
+ 25000 0.35093997 2000 7369.4191
+ 26000 0.43258785 2000 7497.6526
+ 27000 0.51758599 2000 7638.946
+ 28000 0.60693744 2000 7780.0339
+ 29000 0.7014587 2000 7881.8177
+ 30000 0.80119592 2000 7967.2641
+ 31000 0.87335402 2000 7994.9273
+ 32000 0.95320537 2000 7937.0672
+ 33000 1.0398918 2000 7774.0508
+ 34000 1.1351184 2000 7591.1511
+ 35000 1.2382665 2000 7357.5032
+ 36000 1.3492928 2000 7147.3776
+ 37000 1.467685 2000 6980.0719
+ 38000 1.5926331 2000 6813.0872
+ 39000 1.7265338 2000 6657.0693
+ 40000 1.8700751 2000 6505.1155
+ 41000 1.9833133 2000 6330.2864
+ 42000 2.1004898 2000 6147.8022
+ 43000 2.2208699 2000 5932.9244
+ 44000 2.3442041 2000 5755.296
+ 45000 2.4697527 2000 5511.622
+ 46000 2.6055398 2000 5332.3171
+ 47000 2.7455054 2000 5162.4926
+ 48000 2.8851384 2000 5044.5764
+ 49000 3.0239861 2000 4901.1141
+ 50000 3.1614979 2000 4731.1949
+ 51000 3.2810383 2000 4575.418
+ 52000 3.4070575 2000 4428.9425
+ 53000 3.5378444 2000 4291.7282
+ 54000 3.6714875 2000 4154.1885
+ 55000 3.8108149 2000 3994.9402
+ 56000 3.9546982 2000 3855.5977
+ 57000 4.0997167 2000 3672.9504
+ 58000 4.2491708 2000 3435.3395
+ 59000 4.408196 2000 3200.7379
+ 60000 4.5700117 2000 2986.5411
+ 61000 4.723306 2000 2747.3628
+ 62000 4.878128 2000 2542.0805
+ 63000 5.0341944 2000 2336.7687
+ 64000 5.1923913 2000 2151.6388
+ 65000 5.3556896 2000 1933.6773
+ 66000 5.5238885 2000 1699.0747
+ 67000 5.6948336 2000 1467.7209
+ 68000 5.8690421 2000 1227.3577
+ 69000 6.0509636 2000 1016.2766
+ 70000 6.2387022 2000 812.90843
+ 71000 6.4073364 2000 632.88108
+ 72000 6.577617 2000 470.67731
+ 73000 6.7470437 2000 360.47748
+ 74000 6.9135965 2000 286.10584
+ 75000 7.0795553 2000 229.70386
+ 76000 7.2433614 2000 179.62654
+ 77000 7.4108991 2000 142.40417
+ 78000 7.5787629 2000 113.55745
+ 79000 7.7455158 2000 93.787669
+ 80000 7.9119881 2000 80.646319
+ 81000 8.0788298 2000 70.944319
+ 82000 8.2481597 2000 59.2275
+ 83000 8.4164166 2000 49.633808
+ 84000 8.5904585 2000 42.882698
+ 85000 8.768017 2000 36.841824
+ 86000 8.9516342 2000 31.776681
+ 87000 9.1361653 2000 28.25076
+ 88000 9.3230302 2000 25.228966
+ 89000 9.5111334 2000 22.593627
+ 90000 9.7013966 2000 21.15796
+ 91000 9.8899455 2000 19.941629
+ 92000 10.082329 2000 18.375654
+ 93000 10.276769 2000 17.056701
+ 94000 10.474742 2000 16.192511
+ 95000 10.674727 2000 15.572922
+ 96000 10.874807 2000 14.827788
+ 97000 11.075291 2000 13.919613
+ 98000 11.275072 2000 13.19525
+ 99000 11.475537 2000 11.993376
+ 100000 11.677999 2000 11.258787
+ 101000 11.88024 2000 10.641688
+ 102000 12.084353 2000 10.430435
+ 103000 12.288658 2000 9.518069
+ 104000 12.4935 2000 9.1332086
+ 105000 12.70028 2000 9.2151611
+ 106000 12.908347 2000 9.0035132
+ 107000 13.116082 2000 8.7835861
+ 108000 13.324126 2000 8.5124479
+ 109000 13.53208 2000 8.2975453
+ 110000 13.740687 2000 8.3483043
+ 111000 13.948107 2000 8.4658572
+ 112000 14.156079 2000 8.4771784
+ 113000 14.364341 2000 7.8937975
+ 114000 14.574123 2000 7.2472953
+ 115000 14.783651 2000 6.5812074
+ 116000 14.99421 2000 5.5651566
+ 117000 15.204441 2000 5.3015807
+ 118000 15.415336 2000 5.0133941
+ 119000 15.625609 2000 4.8746036
+ 120000 15.836675 2000 4.9133073
+ 121000 16.047261 2000 4.3337392
+ 122000 16.257951 2000 4.3374836
+ 123000 16.468869 2000 4.3721818
+ 124000 16.680533 2000 4.3894508
+ 125000 16.890783 2000 4.1811774
+ 126000 17.103698 2000 4.3011002
+ 127000 17.315003 2000 4.442228
+ 128000 17.526696 2000 4.6170394
+ 129000 17.738415 2000 4.8184318
+ 130000 17.952565 2000 4.8442096
+ 131000 18.165389 2000 4.9668117
+ 132000 18.378094 2000 4.8364562
+ 133000 18.592482 2000 4.6658645
+ 134000 18.804443 2000 4.5758487
+ 135000 19.016578 2000 4.7251949
+ 136000 19.230118 2000 4.5846492
+ 137000 19.443202 2000 4.7565986
+ 138000 19.656431 2000 4.8186623
+ 139000 19.867627 2000 4.6571647
+ 140000 20.080227 2000 4.0730143
+ 141000 20.292696 2000 4.0605542
+ 142000 20.503397 2000 4.1457179
+ 143000 20.714516 2000 4.3418042
+ 144000 20.925902 2000 4.0323813
+ 145000 21.139161 2000 3.8064958
+ 146000 21.352466 2000 3.1802044
+ 147000 21.564201 2000 2.7947641
+ 148000 21.772853 2000 2.7384164
+ 149000 21.983847 2000 2.7428829
+ 150000 22.196524 2000 2.7802186
+ 151000 22.408229 2000 2.6703451
+ 152000 22.619074 2000 2.3357647
+ 153000 22.829739 2000 1.9855305
+ 154000 23.039835 2000 1.9442713
+ 155000 23.252204 2000 1.7348027
+ 156000 23.464375 2000 1.5699942
+ 157000 23.677869 2000 1.5224944
+ 158000 23.888064 2000 1.4850914
+ 159000 24.099703 2000 1.4461048
+ 160000 24.312523 2000 1.3759525
+ 161000 24.522295 2000 0.83754463
+ 162000 24.733904 2000 0.7952922
+ 163000 24.944962 2000 0.69670143
+ 164000 25.155399 2000 0.66253723
+ 165000 25.36618 2000 0.64602969
+ 166000 25.576713 2000 0.60229858
+ 167000 25.788559 2000 0.5757589
+ 168000 25.998455 2000 0.5996023
+ 169000 26.209944 2000 0.62130448
+ 170000 26.420855 2000 0.63888277
+Loop time of 26.4209 on 4 procs for 150000 steps with 2000 atoms
+
+97.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 | 4.6691 | 8.9481 | 11.368 | 85.5 | 33.87
+Neigh | 0.087705 | 0.14369 | 0.18343 | 9.2 | 0.54
+Comm | 1.9172 | 3.5612 | 4.2565 | 50.7 | 13.48
+Output | 0.0045151 | 0.0090615 | 0.016477 | 4.7 | 0.03
+Modify | 5.4247 | 7.6604 | 9.1464 | 49.8 | 28.99
+Other | | 6.099 | | | 23.08
+
+Nlocal: 500 ave 538 max 419 min
+Histogram: 1 0 0 0 0 0 0 1 0 2
+Nghost: 445.5 ave 688 max 200 min
+Histogram: 1 0 0 0 1 0 1 0 0 1
+Neighs: 4500.25 ave 5610 max 3443 min
+Histogram: 1 0 1 0 0 0 1 0 0 1
+
+Total # of neighbors = 18001
+Ave neighs/atom = 9.0005
+Neighbor list builds = 362
+Dangerous builds = 0
+
+# remove "plug" - need to redefine cylinder region & union
+
+region cylreg delete
+region hopreg delete
+region cylreg cylinder z ${xc} ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2 #Bottom & top are open
+region cylreg cylinder z 25 ${yc} ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2
+region cylreg cylinder z 25 25 ${radconelo} ${zcyllo} ${zconelo} side in units box open 1 open 2
+region cylreg cylinder z 25 25 2 ${zcyllo} ${zconelo} side in units box open 1 open 2
+region cylreg cylinder z 25 25 2 0 ${zconelo} side in units box open 1 open 2
+region cylreg cylinder z 25 25 2 0 10 side in units box open 1 open 2
+
+region hopreg union 2 cylreg conereg
+
+unfix hopper3
+fix hopper3 all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 ${gamma_n} ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 ${gamma_t} ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 ${coeffFric} 1 region hopreg
+fix hopper3 all wall/gran/region hertz/history 72592.5925925926 90740.7407407408 903.503751814138 451.751875907069 0.5 1 region hopreg
+
+run 100000
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 12.34 | 12.53 | 12.68 Mbytes
+ Step CPU Atoms KinEng
+ 170000 0 2000 0.63888277
+ 171000 0.21222344 2000 1.4139245
+ 172000 0.42521156 2000 2.2400138
+ 173000 0.63924412 2000 3.8034979
+ 174000 0.85157975 2000 6.116727
+ 175000 1.065247 2000 8.9536458
+ 176000 1.2785495 2000 12.74348
+ 177000 1.4916668 2000 17.410816
+ 178000 1.7042214 2000 22.879174
+ 179000 1.9186225 2000 28.966022
+ 180000 2.1345716 2000 35.449239
+ 181000 2.3486488 2000 42.694882
+ 182000 2.5624316 2000 50.913279
+ 183000 2.7760261 2000 60.098465
+ 184000 2.9883219 2000 70.133474
+ 185000 3.2007559 2000 80.950013
+ 186000 3.4107595 2000 92.495525
+ 187000 3.6204368 2000 104.83034
+ 188000 3.8298085 2000 118.04659
+ 189000 4.0383423 2000 132.7403
+ 190000 4.2477798 2000 148.31955
+ 191000 4.4421194 2000 164.26321
+ 192000 4.6373112 2000 180.6933
+ 193000 4.829991 2000 197.72012
+ 194000 5.02323 2000 215.43637
+ 195000 5.2162947 2000 234.29738
+ 196000 5.4075928 2000 254.03407
+ 197000 5.5974162 2000 274.58626
+ 198000 5.7869821 2000 296.88915
+ 199000 5.976701 2000 320.45001
+ 200000 6.1650648 2000 344.75891
+ 201000 6.3509022 2000 370.14016
+ 202000 6.5363704 2000 395.72827
+ 203000 6.7222457 2000 420.42026
+ 204000 6.9107246 2000 446.08079
+ 205000 7.0996055 2000 473.62963
+ 206000 7.2878276 2000 501.05693
+ 207000 7.4753237 2000 530.40427
+ 208000 7.6643827 2000 560.62015
+ 209000 7.8553563 2000 593.00113
+ 210000 8.0454619 2000 626.36661
+ 211000 8.2342734 2000 661.34861
+ 212000 8.4248464 2000 697.41001
+ 213000 8.6166264 2000 735.12299
+ 214000 8.8061303 2000 773.89126
+ 215000 8.9932827 2000 813.83268
+ 216000 9.1797117 2000 854.63669
+ 217000 9.3642361 2000 896.59089
+ 218000 9.5486397 2000 938.70251
+ 219000 9.7300675 2000 982.10773
+ 220000 9.9142511 2000 1025.2953
+ 221000 10.098593 2000 1069.8382
+ 222000 10.284654 2000 1115.4449
+ 223000 10.47145 2000 1161.6742
+ 224000 10.656994 2000 1211.289
+ 225000 10.839264 2000 1262.8074
+ 226000 11.019273 2000 1316.6353
+ 227000 11.198463 2000 1370.7434
+WARNING: Lost atoms: original 2000 current 1991 (../thermo.cpp:499)
+ 228000 11.377846 1991 1382.0924
+ 229000 11.557302 1986 1407.1543
+ 230000 11.737106 1975 1415.708
+ 231000 11.915389 1968 1430.6498
+ 232000 12.095672 1957 1421.0352
+ 233000 12.275267 1939 1376.0322
+ 234000 12.452526 1925 1350.1292
+ 235000 12.629207 1912 1337.0529
+ 236000 12.80204 1893 1273.2219
+ 237000 12.975817 1879 1207.0473
+ 238000 13.152228 1861 1132.0109
+ 239000 13.331267 1846 1083.1042
+ 240000 13.510046 1826 1004.3265
+ 241000 13.67647 1819 989.36186
+ 242000 13.842216 1812 983.26132
+ 243000 14.006163 1805 985.79932
+ 244000 14.168208 1794 936.34844
+ 245000 14.331979 1784 889.17423
+ 246000 14.495868 1770 846.65018
+ 247000 14.662081 1753 751.16306
+ 248000 14.830163 1740 709.23095
+ 249000 14.999432 1732 687.61586
+ 250000 15.166285 1721 638.82967
+ 251000 15.331363 1714 618.71543
+ 252000 15.493524 1709 611.25444
+ 253000 15.651829 1705 606.6846
+ 254000 15.809586 1702 601.7236
+ 255000 15.966097 1697 575.97244
+ 256000 16.12731 1695 577.1712
+ 257000 16.292272 1691 576.93668
+ 258000 16.460463 1688 586.63687
+ 259000 16.628863 1686 581.52487
+ 260000 16.797813 1682 566.49544
+ 261000 16.95041 1681 586.18628
+ 262000 17.101549 1678 582.11927
+ 263000 17.251379 1675 589.96041
+ 264000 17.403824 1672 577.55581
+ 265000 17.556094 1669 570.45998
+ 266000 17.710318 1666 574.0576
+ 267000 17.865801 1662 578.07385
+ 268000 18.019798 1660 587.65705
+ 269000 18.177178 1657 584.43358
+ 270000 18.332227 1654 591.22601
+Loop time of 18.3323 on 4 procs for 100000 steps with 1654 atoms
+
+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 | 2.7775 | 6.3596 | 9.2369 | 92.3 | 34.69
+Neigh | 0.088842 | 0.10453 | 0.12331 | 4.2 | 0.57
+Comm | 1.1938 | 2.7006 | 3.3247 | 53.6 | 14.73
+Output | 0.0013814 | 0.0063655 | 0.013334 | 5.5 | 0.03
+Modify | 4.3454 | 4.8952 | 5.3813 | 20.7 | 26.70
+Other | | 4.266 | | | 23.27
+
+Nlocal: 413.5 ave 429 max 408 min
+Histogram: 3 0 0 0 0 0 0 0 0 1
+Nghost: 408.25 ave 653 max 182 min
+Histogram: 1 0 0 1 0 1 0 0 0 1
+Neighs: 3486.25 ave 4367 max 2213 min
+Histogram: 1 0 0 0 0 1 0 0 1 1
+
+Total # of neighbors = 13945
+Ave neighs/atom = 8.4310762
+Neighbor list builds = 227
+Dangerous builds = 0
+Total wall time: 0:00:47
diff --git a/examples/granregion/log.27Jun24.granregion.mixer.g++.1 b/examples/granregion/log.27Jun24.granregion.mixer.g++.1
new file mode 100644
index 0000000000..712e0fa23a
--- /dev/null
+++ b/examples/granregion/log.27Jun24.granregion.mixer.g++.1
@@ -0,0 +1,642 @@
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
+variable name string mixer
+
+thermo_modify flush yes
+variable seed equal 14314
+
+###############################################
+# Particle parameters
+################################################
+
+variable rlo equal 0.3
+variable rhi equal 0.6
+variable dlo equal 2.0*${rlo}
+variable dlo equal 2.0*0.3
+variable dhi equal 2.0*${rhi}
+variable dhi equal 2.0*0.6
+variable skin equal ${rhi}
+variable skin equal 0.6
+
+variable coeffRes equal 0.1
+variable coeffFric equal 0.5
+
+variable kn equal 10^5
+variable kt equal 0.2*${kn}
+variable kt equal 0.2*100000
+
+variable gravity equal 1.0
+variable density equal 1.0
+
+variable min_mass equal ${density}*4.0/3.0*PI*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*PI*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*PI*0.3*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*PI*0.3*0.3*${rlo}
+variable min_mass equal 1*4.0/3.0*PI*0.3*0.3*0.3
+variable a equal (-2.0*log(${coeffRes})/PI)^2
+variable a equal (-2.0*log(0.1)/PI)^2
+variable gamma_n equal sqrt($a*2*${kn}/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569351*2*${kn}/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569351*2*100000/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569351*2*100000/0.113097335529233/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569351*2*100000/0.113097335529233/(1+0.25*0.405284734569351))
+variable gamma_t equal ${gamma_n}*0.5
+variable gamma_t equal 806.699778405191*0.5
+
+variable tcol equal PI/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
+variable tcol equal PI/sqrt(2*100000/${min_mass}-${gamma_n}/4.0)
+variable tcol equal PI/sqrt(2*100000/0.113097335529233-${gamma_n}/4.0)
+variable tcol equal PI/sqrt(2*100000/0.113097335529233-806.699778405191/4.0)
+
+variable dt equal ${tcol}*0.02
+variable dt equal 0.00236257621510454*0.02
+timestep ${dt}
+timestep 4.72515243020908e-05
+
+###############################################
+
+variable dumpfreq equal 1000
+variable logfreq equal 1000
+
+newton on
+atom_style sphere
+
+boundary p p f
+
+region boxreg block 0 20 0 20 0 20
+create_box 1 boxreg
+Created orthogonal box = (0 0 0) to (20 20 20)
+ 1 by 1 by 1 MPI processor grid
+
+pair_style gran/hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 100000 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 100000 20000 ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 100000 20000 806.699778405191 ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 100000 20000 806.699778405191 403.349889202595 ${coeffFric} 1
+pair_style gran/hertz/history 100000 20000 806.699778405191 403.349889202595 0.5 1
+pair_coeff * *
+
+neighbor ${skin} multi
+neighbor 0.6 multi
+thermo ${logfreq}
+thermo 1000
+
+comm_style brick
+comm_modify mode multi group all vel yes
+balance 1.1 shift xyz 20 1.1
+Balancing ...
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 0
+ ghost atom cutoff = 0
+ binsize = 20, bins = 1 1 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair gran/hertz/history, perpetual
+ attributes: half, newton on, size, history
+ pair build: half/size/multi/atomonly/newton
+ stencil: half/multi/3d
+ bin: multi
+WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (../comm_brick.cpp:210)
+fix bal all balance 10000 1.1 shift xyz 20 1.01
+
+####################### Options specific to pouring #########################
+
+region insreg cylinder z 10 10 8 10 18 side in units box
+region cylreg cylinder z 10 10 10 0 20 side in units box
+
+variable theta equal (step/400000)*2*PI
+
+region b1 block 2 18 9 11 0 4 side out rotate v_theta 10 10 0 0 0 1 units box
+region b2 block 9 11 2 18 0 3.99999 side out rotate v_theta 10 10 0 0 0 1 units box
+
+region mixer intersect 3 cylreg b1 b2 side in
+
+fix grav all gravity ${gravity} vector 0 0 -1
+fix grav all gravity 1 vector 0 0 -1
+fix 1 all nve/sphere
+
+fix mixwall all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 20000 ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 ${gamma_t} ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 403.349889202595 ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 403.349889202595 0.5 1 region mixer
+
+fix ins all pour 1000 1 42424 region insreg diam range ${dlo} ${dhi} dens ${density} ${density}
+fix ins all pour 1000 1 42424 region insreg diam range 0.6 ${dhi} dens ${density} ${density}
+fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens ${density} ${density}
+fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens 1 ${density}
+fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens 1 1
+
+#dump 1 all custom ${dumpfreq} ${name}_pour.dump # id type mass diameter x y z
+
+#dump 2 all image 4000 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 zoom 1.5 # box no 0.0 axes no 0.0 0.0
+#dump_modify 2 pad 6
+
+thermo_style custom step cpu atoms ke v_theta
+WARNING: New thermo_style command, previous thermo_modify settings will be lost (../output.cpp:904)
+thermo_modify flush yes lost warn
+
+run 200000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
+
+@Article{Intveld08,
+ author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
+ title = {Accurate and Efficient Methods for Modeling Colloidal
+ Mixtures in an Explicit Solvent using Molecular Dynamics},
+ journal = {Comput.\ Phys.\ Commut.},
+ year = 2008,
+ volume = 179,
+ pages = {320--329}
+}
+
+@article{Shire2020,
+ author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
+ title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
+ Detection Applied to Investigate the Quasi-Static Limit},
+ journal = {Computational Particle Mechanics},
+ year = {2020}
+@article{Monti2022,
+ author = {Monti, Joseph M. and Clemmer, Joel T. and Srivastava,
+ Ishan and Silbert, Leonardo E. and Grest, Gary S.
+ and Lechman, Jeremy B.},
+ title = {Large-scale frictionless jamming with power-law particle
+ size distributions},
+ journal = {Phys. Rev. E},
+ volume = {106}
+ issue = {3}
+ year = {2022}
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 444 every 84653 steps, 1000 by step 169307
+Per MPI rank memory allocation (min/avg/max) = 5.861 | 5.861 | 5.861 Mbytes
+ Step CPU Atoms KinEng v_theta
+ 0 0 0 -0 0
+ 1000 0.081165379 444 -0 0.015707963
+ 2000 0.15754332 444 -0 0.031415927
+ 3000 0.23012784 444 -0 0.04712389
+ 4000 0.30324079 444 -0 0.062831853
+ 5000 0.37566627 444 -0 0.078539816
+ 6000 0.4478183 444 -0 0.09424778
+ 7000 0.52130598 444 -0 0.10995574
+ 8000 0.59583276 444 -0 0.12566371
+ 9000 0.67333641 444 -0 0.14137167
+ 10000 0.75133989 444 -0 0.15707963
+ 11000 0.88621821 444 -0 0.1727876
+ 12000 0.96223543 444 -0 0.18849556
+ 13000 1.0406719 444 -0 0.20420352
+ 14000 1.1209824 444 -0 0.21991149
+ 15000 1.2017612 444 -0 0.23561945
+ 16000 1.2818653 444 -0 0.25132741
+ 17000 1.36192 444 -0 0.26703538
+ 18000 1.4377702 444 -0 0.28274334
+ 19000 1.5144381 444 -0 0.2984513
+ 20000 1.5913902 444 -0 0.31415927
+ 21000 1.6673472 444 -0 0.32986723
+ 22000 1.7434481 444 -0 0.34557519
+ 23000 1.8190585 444 -0 0.36128316
+ 24000 1.8962389 444 -0 0.37699112
+ 25000 1.9736636 444 -0 0.39269908
+ 26000 2.0534547 444 -0 0.40840704
+ 27000 2.1298466 444 -0 0.42411501
+ 28000 2.206882 444 -0 0.43982297
+ 29000 2.2836177 444 -0 0.45553093
+ 30000 2.4525793 444 -0 0.4712389
+ 31000 2.528444 444 -0 0.48694686
+ 32000 2.6062516 444 -0 0.50265482
+ 33000 2.6838811 444 -0 0.51836279
+ 34000 2.7618967 444 -0 0.53407075
+ 35000 3.1234167 444 -0 0.54977871
+ 36000 3.1992217 444 -0 0.56548668
+ 37000 3.2744137 444 -0 0.58119464
+ 38000 3.3504088 444 -0 0.5969026
+ 39000 3.4259728 444 -0 0.61261057
+ 40000 3.5020768 444 -0 0.62831853
+ 41000 3.5794542 444 -0 0.64402649
+ 42000 3.657433 444 -0 0.65973446
+ 43000 3.7353763 444 -0 0.67544242
+ 44000 3.8131676 444 -0 0.69115038
+ 45000 3.8924163 444 -0 0.70685835
+ 46000 3.973914 444 -0 0.72256631
+ 47000 4.0525907 444 -0 0.73827427
+ 48000 4.131257 444 -0 0.75398224
+ 49000 4.2096226 444 -0 0.7696902
+ 50000 4.2879179 444 -0 0.78539816
+ 51000 4.3673368 444 -0 0.80110613
+ 52000 4.4496186 444 -0 0.81681409
+ 53000 4.5285675 444 -0 0.83252205
+ 54000 4.6132205 444 -0 0.84823002
+ 55000 4.6992461 444 -0 0.86393798
+ 56000 4.7864008 444 -0 0.87964594
+ 57000 4.8715403 444 -0 0.89535391
+ 58000 4.9547161 444 -0 0.91106187
+ 59000 5.0403186 444 -0 0.92676983
+ 60000 5.123722 444 -0 0.9424778
+ 61000 5.2068168 444 -0 0.95818576
+ 62000 5.2899206 444 -0 0.97389372
+ 63000 5.3725203 444 -0 0.98960169
+ 64000 5.4561614 444 -0 1.0053096
+ 65000 5.5399537 444 -0 1.0210176
+ 66000 5.6233183 444 -0 1.0367256
+ 67000 5.7075311 444 -0 1.0524335
+ 68000 5.7921332 444 -0 1.0681415
+ 69000 5.8772289 444 -0 1.0838495
+ 70000 5.9626083 444 -0 1.0995574
+ 71000 6.0468013 444 -0 1.1152654
+ 72000 6.1325358 444 -0 1.1309734
+ 73000 6.217391 444 -0 1.1466813
+ 74000 6.3029286 444 -0 1.1623893
+ 75000 6.3892387 444 -0 1.1780972
+ 76000 6.4757637 444 -0 1.1938052
+ 77000 6.5633899 444 -0 1.2095132
+ 78000 6.6494516 444 -0 1.2252211
+ 79000 6.7363426 444 -0 1.2409291
+ 80000 6.8243808 444 -0 1.2566371
+ 81000 6.9120999 444 -0 1.272345
+ 82000 7.0004402 444 -0 1.288053
+ 83000 7.0882632 444 -0 1.303761
+ 84000 7.176153 444 -0 1.3194689
+ 85000 7.2980017 888 -0 1.3351769
+ 86000 7.4665034 888 -0 1.3508848
+ 87000 7.634481 888 -0 1.3665928
+ 88000 7.8021372 888 -0 1.3823008
+ 89000 7.9705032 888 -0 1.3980087
+ 90000 8.1395213 888 -0 1.4137167
+ 91000 8.3093436 888 -0 1.4294247
+ 92000 8.4791404 888 -0 1.4451326
+ 93000 8.6448257 888 -0 1.4608406
+ 94000 8.8096695 888 -0 1.4765485
+ 95000 8.9806056 888 -0 1.4922565
+ 96000 9.1479017 888 -0 1.5079645
+ 97000 9.3159102 888 -0 1.5236724
+ 98000 9.4817887 888 -0 1.5393804
+ 99000 9.6484134 888 -0 1.5550884
+ 100000 9.8145145 888 -0 1.5707963
+ 101000 9.9833565 888 -0 1.5865043
+ 102000 10.153126 888 -0 1.6022123
+ 103000 10.32344 888 -0 1.6179202
+ 104000 10.493544 888 -0 1.6336282
+ 105000 10.663787 888 -0 1.6493361
+ 106000 10.834335 888 -0 1.6650441
+ 107000 11.004695 888 -0 1.6807521
+ 108000 11.175239 888 -0 1.69646
+ 109000 11.350053 888 -0 1.712168
+ 110000 11.525953 888 -0 1.727876
+ 111000 11.702706 888 -0 1.7435839
+ 112000 11.880308 888 -0 1.7592919
+ 113000 12.058561 888 -0 1.7749998
+ 114000 12.236372 888 -0 1.7907078
+ 115000 12.414617 888 -0 1.8064158
+ 116000 12.592501 888 -0 1.8221237
+ 117000 12.770926 888 -0 1.8378317
+ 118000 12.949072 888 -0 1.8535397
+ 119000 13.128801 888 -0 1.8692476
+ 120000 13.311101 888 -0 1.8849556
+ 121000 13.489781 888 -0 1.9006636
+ 122000 13.669833 888 -0 1.9163715
+ 123000 13.85109 888 -0 1.9320795
+ 124000 14.032358 888 -0 1.9477874
+ 125000 14.213661 888 -0 1.9634954
+ 126000 14.393846 888 -0 1.9792034
+ 127000 14.574645 888 -0 1.9949113
+ 128000 14.755261 888 -0 2.0106193
+ 129000 14.939145 888 -0 2.0263273
+ 130000 15.123073 888 -0 2.0420352
+ 131000 15.303459 888 -0 2.0577432
+ 132000 15.484755 888 -0 2.0734512
+ 133000 15.665288 888 -0 2.0891591
+ 134000 15.845779 888 -0 2.1048671
+ 135000 16.026283 888 -0 2.120575
+ 136000 16.20857 888 -0 2.136283
+ 137000 16.39054 888 -0 2.151991
+ 138000 16.574105 888 -0 2.1676989
+ 139000 16.758949 888 -0 2.1834069
+ 140000 16.943594 888 -0 2.1991149
+ 141000 17.127119 888 -0 2.2148228
+ 142000 17.311688 888 -0 2.2305308
+ 143000 17.498924 888 -0 2.2462387
+ 144000 17.68621 888 -0 2.2619467
+ 145000 17.873463 888 -0 2.2776547
+ 146000 18.061679 888 -0 2.2933626
+ 147000 18.248264 888 -0 2.3090706
+ 148000 18.434172 888 -0 2.3247786
+ 149000 18.620894 888 -0 2.3404865
+ 150000 18.807222 888 -0 2.3561945
+ 151000 18.993959 888 -0 2.3719025
+ 152000 19.183597 888 -0 2.3876104
+ 153000 19.372979 888 -0 2.4033184
+ 154000 19.560741 888 -0 2.4190263
+ 155000 19.760386 888 -0 2.4347343
+ 156000 19.968774 888 -0 2.4504423
+ 157000 20.179252 888 -0 2.4661502
+ 158000 20.388599 888 -0 2.4818582
+ 159000 20.598976 888 -0 2.4975662
+ 160000 20.80891 888 -0 2.5132741
+ 161000 21.026202 888 -0 2.5289821
+ 162000 21.239367 888 -0 2.54469
+ 163000 21.452486 888 -0 2.560398
+ 164000 21.665343 888 -0 2.576106
+ 165000 21.879421 888 -0 2.5918139
+ 166000 22.093404 888 -0 2.6075219
+ 167000 22.307097 888 -0 2.6232299
+ 168000 22.521133 888 -0 2.6389378
+ 169000 22.735535 888 -0 2.6546458
+ 170000 22.968021 1000 -0 2.6703538
+ 171000 23.205371 1000 -0 2.6860617
+ 172000 23.44698 1000 -0 2.7017697
+ 173000 23.689107 1000 -0 2.7174776
+ 174000 23.930244 1000 -0 2.7331856
+ 175000 24.168568 1000 -0 2.7488936
+ 176000 24.405774 1000 -0 2.7646015
+ 177000 24.645769 1000 -0 2.7803095
+ 178000 24.886311 1000 -0 2.7960175
+ 179000 25.129675 1000 -0 2.8117254
+ 180000 25.375354 1000 -0 2.8274334
+ 181000 25.620074 1000 -0 2.8431414
+ 182000 25.867063 1000 -0 2.8588493
+ 183000 26.111737 1000 -0 2.8745573
+ 184000 26.356693 1000 -0 2.8902652
+ 185000 26.601965 1000 -0 2.9059732
+ 186000 26.847594 1000 -0 2.9216812
+ 187000 27.09479 1000 -0 2.9373891
+ 188000 27.343645 1000 -0 2.9530971
+ 189000 27.593252 1000 -0 2.9688051
+ 190000 27.84598 1000 -0 2.984513
+ 191000 28.097785 1000 -0 3.000221
+ 192000 28.347653 1000 -0 3.0159289
+ 193000 28.588968 1000 -0 3.0316369
+ 194000 28.82728 1000 -0 3.0473449
+ 195000 29.066565 1000 -0 3.0630528
+ 196000 29.309153 1000 -0 3.0787608
+ 197000 29.894236 1000 -0 3.0944688
+ 198000 30.138713 1000 -0 3.1101767
+ 199000 30.381879 1000 -0 3.1258847
+ 200000 30.627512 1000 -0 3.1415927
+Loop time of 30.6275 on 1 procs for 200000 steps with 1000 atoms
+
+Performance: 26659.225 tau/day, 6530.072 timesteps/s, 6.530 Matom-step/s
+97.2% 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.4017 | 2.4017 | 2.4017 | 0.0 | 7.84
+Neigh | 0.038916 | 0.038916 | 0.038916 | 0.0 | 0.13
+Comm | 0.35872 | 0.35872 | 0.35872 | 0.0 | 1.17
+Output | 0.78641 | 0.78641 | 0.78641 | 0.0 | 2.57
+Modify | 26.719 | 26.719 | 26.719 | 0.0 | 87.24
+Other | | 0.3225 | | | 1.05
+
+Nlocal: 1000 ave 1000 max 1000 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 186 ave 186 max 186 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 3782 ave 3782 max 3782 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 3782
+Ave neighs/atom = 3.782
+Neighbor list builds = 200
+Dangerous builds = 0
+unfix ins
+run 200000
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 11.89 | 11.89 | 11.89 Mbytes
+ Step CPU Atoms KinEng v_theta
+ 200000 0 1000 1.0680935 3.1415927
+ 201000 0.23768219 1000 1.0599937 3.1573006
+ 202000 0.47603693 1000 1.0366355 3.1730086
+ 203000 0.71459797 1000 1.0189286 3.1887165
+ 204000 0.95145301 1000 1.001478 3.2044245
+ 205000 1.1869146 1000 0.99637635 3.2201325
+ 206000 1.4249684 1000 0.99361197 3.2358404
+ 207000 1.6635344 1000 0.99529657 3.2515484
+ 208000 1.8992251 1000 0.98997171 3.2672564
+ 209000 2.1484862 1000 0.97666133 3.2829643
+ 210000 2.4012768 1000 0.97683679 3.2986723
+ 211000 2.6554877 1000 0.98150752 3.3143802
+ 212000 2.9093673 1000 0.97585316 3.3300882
+ 213000 3.161481 1000 0.97389688 3.3457962
+ 214000 3.4184197 1000 0.96426468 3.3615041
+ 215000 3.6711643 1000 0.96552353 3.3772121
+ 216000 3.9243061 1000 0.97713174 3.3929201
+ 217000 4.1757021 1000 0.97062546 3.408628
+ 218000 4.4291788 1000 0.97111212 3.424336
+ 219000 4.6819445 1000 0.97645659 3.440044
+ 220000 4.9376967 1000 0.98148797 3.4557519
+ 221000 5.1883947 1000 0.97386268 3.4714599
+ 222000 5.4387287 1000 0.97322415 3.4871678
+ 223000 5.6878448 1000 0.95781163 3.5028758
+ 224000 5.9358535 1000 0.93919542 3.5185838
+ 225000 6.1822635 1000 0.9313702 3.5342917
+ 226000 6.4302601 1000 0.92788207 3.5499997
+ 227000 6.6795172 1000 0.91026919 3.5657077
+ 228000 6.9286832 1000 0.89557479 3.5814156
+ 229000 7.1797845 1000 0.89173643 3.5971236
+ 230000 7.432965 1000 0.89292723 3.6128316
+ 231000 7.6848123 1000 0.89944536 3.6285395
+ 232000 7.9361745 1000 0.89319113 3.6442475
+ 233000 8.1896078 1000 0.89273543 3.6599554
+ 234000 8.4447838 1000 0.87360829 3.6756634
+ 235000 8.7028153 1000 0.86841591 3.6913714
+ 236000 8.9582068 1000 0.86559907 3.7070793
+ 237000 9.2150326 1000 0.86231762 3.7227873
+ 238000 9.4701361 1000 0.85170772 3.7384953
+ 239000 9.7272256 1000 0.85616849 3.7542032
+ 240000 9.985268 1000 0.86809668 3.7699112
+ 241000 10.243685 1000 0.88066532 3.7856191
+ 242000 10.50579 1000 0.89440189 3.8013271
+ 243000 10.768046 1000 0.8939512 3.8170351
+ 244000 11.030389 1000 0.8963829 3.832743
+ 245000 11.29267 1000 0.88074176 3.848451
+ 246000 11.553505 1000 0.8733699 3.864159
+ 247000 11.81124 1000 0.86130993 3.8798669
+ 248000 12.068927 1000 0.86035503 3.8955749
+ 249000 12.326723 1000 0.84878437 3.9112829
+ 250000 12.584681 1000 0.83989297 3.9269908
+ 251000 12.841147 1000 0.82781463 3.9426988
+ 252000 13.101351 1000 0.8142641 3.9584067
+ 253000 13.361975 1000 0.80683745 3.9741147
+ 254000 13.621901 1000 0.809379 3.9898227
+ 255000 13.879382 1000 0.81147846 4.0055306
+ 256000 14.136754 1000 0.79574281 4.0212386
+ 257000 14.393097 1000 0.78339098 4.0369466
+ 258000 14.65084 1000 0.7799887 4.0526545
+ 259000 14.909563 1000 0.7848995 4.0683625
+ 260000 15.171732 1000 0.78284201 4.0840704
+ 261000 15.434923 1000 0.7776263 4.0997784
+ 262000 15.699673 1000 0.77405185 4.1154864
+ 263000 15.964731 1000 0.78130382 4.1311943
+ 264000 16.231068 1000 0.81006815 4.1469023
+ 265000 16.494447 1000 0.79467298 4.1626103
+ 266000 16.757296 1000 0.78592963 4.1783182
+ 267000 17.020773 1000 0.76857233 4.1940262
+ 268000 17.281914 1000 0.76483523 4.2097342
+ 269000 17.543254 1000 0.76549297 4.2254421
+ 270000 17.807266 1000 0.75564385 4.2411501
+ 271000 18.083451 1000 0.75445102 4.256858
+ 272000 18.34927 1000 0.7514406 4.272566
+ 273000 18.6133 1000 0.75170218 4.288274
+ 274000 18.874318 1000 0.76454717 4.3039819
+ 275000 19.137188 1000 0.75991671 4.3196899
+ 276000 19.398218 1000 0.75817752 4.3353979
+ 277000 19.65797 1000 0.7621338 4.3511058
+ 278000 19.917364 1000 0.77239256 4.3668138
+ 279000 20.178778 1000 0.7667469 4.3825218
+ 280000 20.441559 1000 0.75761494 4.3982297
+ 281000 20.704047 1000 0.74370218 4.4139377
+ 282000 20.967325 1000 0.734955 4.4296456
+ 283000 21.226371 1000 0.72783614 4.4453536
+ 284000 21.485188 1000 0.72349874 4.4610616
+ 285000 21.742828 1000 0.71585562 4.4767695
+ 286000 22.002099 1000 0.70846101 4.4924775
+ 287000 22.262387 1000 0.69307445 4.5081855
+ 288000 22.523992 1000 0.68469722 4.5238934
+ 289000 22.786885 1000 0.67892956 4.5396014
+ 290000 23.050769 1000 0.67872999 4.5553093
+ 291000 23.313704 1000 0.6820098 4.5710173
+ 292000 23.576713 1000 0.67663229 4.5867253
+ 293000 23.828165 1000 0.67477934 4.6024332
+ 294000 24.081047 1000 0.67452515 4.6181412
+ 295000 24.335392 1000 0.67341495 4.6338492
+ 296000 24.590438 1000 0.67888865 4.6495571
+ 297000 24.84277 1000 0.68373518 4.6652651
+ 298000 25.097993 1000 0.68612329 4.6809731
+ 299000 25.355621 1000 0.68169877 4.696681
+ 300000 25.612938 1000 0.68602699 4.712389
+ 301000 25.866694 1000 0.68485644 4.7280969
+ 302000 26.120968 1000 0.68101185 4.7438049
+ 303000 26.374411 1000 0.67663031 4.7595129
+ 304000 26.628686 1000 0.67771638 4.7752208
+ 305000 26.881546 1000 0.67525788 4.7909288
+ 306000 27.163762 1000 0.6709689 4.8066368
+ 307000 27.421347 1000 0.68328286 4.8223447
+ 308000 27.674664 1000 0.70273998 4.8380527
+ 309000 27.937573 1000 0.70461978 4.8537606
+ 310000 28.206728 1000 0.70307737 4.8694686
+ 311000 28.473159 1000 0.70087936 4.8851766
+ 312000 28.739452 1000 0.70449303 4.9008845
+ 313000 29.001716 1000 0.71030367 4.9165925
+ 314000 29.267562 1000 0.71113177 4.9323005
+ 315000 29.533541 1000 0.71089537 4.9480084
+ 316000 29.798996 1000 0.70713116 4.9637164
+ 317000 30.068605 1000 0.71002087 4.9794244
+ 318000 30.339303 1000 0.71804737 4.9951323
+ 319000 30.609227 1000 0.71925831 5.0108403
+ 320000 30.879193 1000 0.72835371 5.0265482
+ 321000 31.147328 1000 0.7236586 5.0422562
+ 322000 31.413246 1000 0.71432128 5.0579642
+ 323000 31.675418 1000 0.70905325 5.0736721
+ 324000 31.938939 1000 0.71323674 5.0893801
+ 325000 32.20437 1000 0.72466784 5.1050881
+ 326000 32.471213 1000 0.72956158 5.120796
+ 327000 32.739168 1000 0.74478918 5.136504
+ 328000 33.005983 1000 0.74404284 5.152212
+ 329000 33.273193 1000 0.74051597 5.1679199
+ 330000 33.541489 1000 0.73438585 5.1836279
+ 331000 33.805988 1000 0.73023911 5.1993358
+ 332000 34.071435 1000 0.7373459 5.2150438
+ 333000 34.337809 1000 0.73137848 5.2307518
+ 334000 34.602061 1000 0.72917991 5.2464597
+ 335000 34.87065 1000 0.72945658 5.2621677
+ 336000 35.140112 1000 0.72046325 5.2778757
+ 337000 35.411283 1000 0.72224629 5.2935836
+ 338000 35.681774 1000 0.72177721 5.3092916
+ 339000 35.952034 1000 0.72852277 5.3249995
+ 340000 36.220116 1000 0.73244024 5.3407075
+ 341000 36.484799 1000 0.74123436 5.3564155
+ 342000 36.752429 1000 0.74117339 5.3721234
+ 343000 37.019401 1000 0.74360263 5.3878314
+ 344000 37.284441 1000 0.74998018 5.4035394
+ 345000 37.548209 1000 0.75026985 5.4192473
+ 346000 37.812297 1000 0.74415875 5.4349553
+ 347000 38.078351 1000 0.73219169 5.4506633
+ 348000 38.343692 1000 0.72316753 5.4663712
+ 349000 38.60829 1000 0.71747804 5.4820792
+ 350000 38.873334 1000 0.72055215 5.4977871
+ 351000 39.135591 1000 0.71525775 5.5134951
+ 352000 39.397948 1000 0.7157435 5.5292031
+ 353000 39.65874 1000 0.71883293 5.544911
+ 354000 39.921649 1000 0.72106381 5.560619
+ 355000 40.184118 1000 0.7126019 5.576327
+ 356000 40.44828 1000 0.70018005 5.5920349
+ 357000 40.711808 1000 0.6948238 5.6077429
+ 358000 40.974553 1000 0.70261087 5.6234508
+ 359000 41.240667 1000 0.70651692 5.6391588
+ 360000 41.508869 1000 0.71812614 5.6548668
+ 361000 41.775889 1000 0.72247116 5.6705747
+ 362000 42.044747 1000 0.73675936 5.6862827
+ 363000 42.311154 1000 0.75136966 5.7019907
+ 364000 42.577458 1000 0.75745313 5.7176986
+ 365000 42.846131 1000 0.7541109 5.7334066
+ 366000 43.113639 1000 0.75340643 5.7491146
+ 367000 43.3804 1000 0.74817232 5.7648225
+ 368000 43.644839 1000 0.73555712 5.7805305
+ 369000 43.907875 1000 0.72911144 5.7962384
+ 370000 44.173474 1000 0.72223387 5.8119464
+ 371000 44.435762 1000 0.72012879 5.8276544
+ 372000 44.698339 1000 0.72050435 5.8433623
+ 373000 44.96325 1000 0.72789287 5.8590703
+ 374000 45.228536 1000 0.74234609 5.8747783
+ 375000 45.49447 1000 0.74808952 5.8904862
+ 376000 45.76007 1000 0.74096035 5.9061942
+ 377000 46.027203 1000 0.74052775 5.9219022
+ 378000 46.294627 1000 0.74206885 5.9376101
+ 379000 46.567974 1000 0.74385723 5.9533181
+ 380000 46.837323 1000 0.74901717 5.969026
+ 381000 47.104723 1000 0.760668 5.984734
+ 382000 47.37249 1000 0.76622105 6.000442
+ 383000 47.642871 1000 0.77784236 6.0161499
+ 384000 47.913238 1000 0.78443266 6.0318579
+ 385000 48.179637 1000 0.77604024 6.0475659
+ 386000 48.444304 1000 0.76126822 6.0632738
+ 387000 48.708424 1000 0.74932674 6.0789818
+ 388000 48.972518 1000 0.7394025 6.0946897
+ 389000 49.236663 1000 0.73446106 6.1103977
+ 390000 49.502321 1000 0.73226431 6.1261057
+ 391000 49.772781 1000 0.72676072 6.1418136
+ 392000 50.047483 1000 0.7283395 6.1575216
+ 393000 50.308297 1000 0.7289238 6.1732296
+ 394000 50.564792 1000 0.72479408 6.1889375
+ 395000 50.819957 1000 0.71014812 6.2046455
+ 396000 51.078032 1000 0.70351995 6.2203535
+ 397000 51.336319 1000 0.70221306 6.2360614
+ 398000 51.593057 1000 0.70748482 6.2517694
+ 399000 51.853527 1000 0.7046252 6.2674773
+ 400000 52.1092 1000 0.70581734 6.2831853
+Loop time of 52.1092 on 1 procs for 200000 steps with 1000 atoms
+
+Performance: 15669.134 tau/day, 3838.093 timesteps/s, 3.838 Matom-step/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 | 7.7952 | 7.7952 | 7.7952 | 0.0 | 14.96
+Neigh | 0.062504 | 0.062504 | 0.062504 | 0.0 | 0.12
+Comm | 1.0937 | 1.0937 | 1.0937 | 0.0 | 2.10
+Output | 0.0038447 | 0.0038447 | 0.0038447 | 0.0 | 0.01
+Modify | 42.69 | 42.69 | 42.69 | 0.0 | 81.92
+Other | | 0.4642 | | | 0.89
+
+Nlocal: 1000 ave 1000 max 1000 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 285 ave 285 max 285 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 5094 ave 5094 max 5094 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 5094
+Ave neighs/atom = 5.094
+Neighbor list builds = 158
+Dangerous builds = 0
+Total wall time: 0:01:22
diff --git a/examples/granregion/log.27Jun24.granregion.mixer.g++.4 b/examples/granregion/log.27Jun24.granregion.mixer.g++.4
new file mode 100644
index 0000000000..f67f111bac
--- /dev/null
+++ b/examples/granregion/log.27Jun24.granregion.mixer.g++.4
@@ -0,0 +1,642 @@
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
+variable name string mixer
+
+thermo_modify flush yes
+variable seed equal 14314
+
+###############################################
+# Particle parameters
+################################################
+
+variable rlo equal 0.3
+variable rhi equal 0.6
+variable dlo equal 2.0*${rlo}
+variable dlo equal 2.0*0.3
+variable dhi equal 2.0*${rhi}
+variable dhi equal 2.0*0.6
+variable skin equal ${rhi}
+variable skin equal 0.6
+
+variable coeffRes equal 0.1
+variable coeffFric equal 0.5
+
+variable kn equal 10^5
+variable kt equal 0.2*${kn}
+variable kt equal 0.2*100000
+
+variable gravity equal 1.0
+variable density equal 1.0
+
+variable min_mass equal ${density}*4.0/3.0*PI*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*PI*${rlo}*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*PI*0.3*${rlo}*${rlo}
+variable min_mass equal 1*4.0/3.0*PI*0.3*0.3*${rlo}
+variable min_mass equal 1*4.0/3.0*PI*0.3*0.3*0.3
+variable a equal (-2.0*log(${coeffRes})/PI)^2
+variable a equal (-2.0*log(0.1)/PI)^2
+variable gamma_n equal sqrt($a*2*${kn}/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569351*2*${kn}/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569351*2*100000/${min_mass}/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569351*2*100000/0.113097335529233/(1+0.25*$a))
+variable gamma_n equal sqrt(0.405284734569351*2*100000/0.113097335529233/(1+0.25*0.405284734569351))
+variable gamma_t equal ${gamma_n}*0.5
+variable gamma_t equal 806.699778405191*0.5
+
+variable tcol equal PI/sqrt(2*${kn}/${min_mass}-${gamma_n}/4.0)
+variable tcol equal PI/sqrt(2*100000/${min_mass}-${gamma_n}/4.0)
+variable tcol equal PI/sqrt(2*100000/0.113097335529233-${gamma_n}/4.0)
+variable tcol equal PI/sqrt(2*100000/0.113097335529233-806.699778405191/4.0)
+
+variable dt equal ${tcol}*0.02
+variable dt equal 0.00236257621510454*0.02
+timestep ${dt}
+timestep 4.72515243020908e-05
+
+###############################################
+
+variable dumpfreq equal 1000
+variable logfreq equal 1000
+
+newton on
+atom_style sphere
+
+boundary p p f
+
+region boxreg block 0 20 0 20 0 20
+create_box 1 boxreg
+Created orthogonal box = (0 0 0) to (20 20 20)
+ 1 by 2 by 2 MPI processor grid
+
+pair_style gran/hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 100000 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 100000 20000 ${gamma_n} ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 100000 20000 806.699778405191 ${gamma_t} ${coeffFric} 1
+pair_style gran/hertz/history 100000 20000 806.699778405191 403.349889202595 ${coeffFric} 1
+pair_style gran/hertz/history 100000 20000 806.699778405191 403.349889202595 0.5 1
+pair_coeff * *
+
+neighbor ${skin} multi
+neighbor 0.6 multi
+thermo ${logfreq}
+thermo 1000
+
+comm_style brick
+comm_modify mode multi group all vel yes
+balance 1.1 shift xyz 20 1.1
+Balancing ...
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 0
+ ghost atom cutoff = 0
+ binsize = 20, bins = 1 1 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair gran/hertz/history, perpetual
+ attributes: half, newton on, size, history
+ pair build: half/size/multi/atomonly/newton
+ stencil: half/multi/3d
+ bin: multi
+WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (../comm_brick.cpp:210)
+fix bal all balance 10000 1.1 shift xyz 20 1.01
+
+####################### Options specific to pouring #########################
+
+region insreg cylinder z 10 10 8 10 18 side in units box
+region cylreg cylinder z 10 10 10 0 20 side in units box
+
+variable theta equal (step/400000)*2*PI
+
+region b1 block 2 18 9 11 0 4 side out rotate v_theta 10 10 0 0 0 1 units box
+region b2 block 9 11 2 18 0 3.99999 side out rotate v_theta 10 10 0 0 0 1 units box
+
+region mixer intersect 3 cylreg b1 b2 side in
+
+fix grav all gravity ${gravity} vector 0 0 -1
+fix grav all gravity 1 vector 0 0 -1
+fix 1 all nve/sphere
+
+fix mixwall all wall/gran/region hertz/history ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 20000 ${gamma_n} ${gamma_t} ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 ${gamma_t} ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 403.349889202595 ${coeffFric} 1 region mixer
+fix mixwall all wall/gran/region hertz/history 100000 20000 806.699778405191 403.349889202595 0.5 1 region mixer
+
+fix ins all pour 1000 1 42424 region insreg diam range ${dlo} ${dhi} dens ${density} ${density}
+fix ins all pour 1000 1 42424 region insreg diam range 0.6 ${dhi} dens ${density} ${density}
+fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens ${density} ${density}
+fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens 1 ${density}
+fix ins all pour 1000 1 42424 region insreg diam range 0.6 1.2 dens 1 1
+
+#dump 1 all custom ${dumpfreq} ${name}_pour.dump # id type mass diameter x y z
+
+#dump 2 all image 4000 image.*.jpg type type # axes yes 0.8 0.02 view 60 -30 zoom 1.5 # box no 0.0 axes no 0.0 0.0
+#dump_modify 2 pad 6
+
+thermo_style custom step cpu atoms ke v_theta
+WARNING: New thermo_style command, previous thermo_modify settings will be lost (../output.cpp:904)
+thermo_modify flush yes lost warn
+
+run 200000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- neighbor multi command: doi:10.1016/j.cpc.2008.03.005, doi:10.1007/s40571-020-00361-2
+
+@Article{Intveld08,
+ author = {in 't Veld, P. J. and S. J.~Plimpton and G. S. Grest},
+ title = {Accurate and Efficient Methods for Modeling Colloidal
+ Mixtures in an Explicit Solvent using Molecular Dynamics},
+ journal = {Comput.\ Phys.\ Commut.},
+ year = 2008,
+ volume = 179,
+ pages = {320--329}
+}
+
+@article{Shire2020,
+ author = {Shire, Tom and Hanley, Kevin J. and Stratford, Kevin},
+ title = {{DEM} Simulations of Polydisperse Media: Efficient Contact
+ Detection Applied to Investigate the Quasi-Static Limit},
+ journal = {Computational Particle Mechanics},
+ year = {2020}
+@article{Monti2022,
+ author = {Monti, Joseph M. and Clemmer, Joel T. and Srivastava,
+ Ishan and Silbert, Leonardo E. and Grest, Gary S.
+ and Lechman, Jeremy B.},
+ title = {Large-scale frictionless jamming with power-law particle
+ size distributions},
+ journal = {Phys. Rev. E},
+ volume = {106}
+ issue = {3}
+ year = {2022}
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 444 every 84653 steps, 1000 by step 169307
+Per MPI rank memory allocation (min/avg/max) = 5.816 | 5.816 | 5.816 Mbytes
+ Step CPU Atoms KinEng v_theta
+ 0 0 0 -0 0
+ 1000 0.088111932 444 -0 0.015707963
+ 2000 0.14514013 444 -0 0.031415927
+ 3000 0.19901283 444 -0 0.04712389
+ 4000 0.25271154 444 -0 0.062831853
+ 5000 0.30627277 444 -0 0.078539816
+ 6000 0.35966654 444 -0 0.09424778
+ 7000 0.41280835 444 -0 0.10995574
+ 8000 0.46584491 444 -0 0.12566371
+ 9000 0.51843618 444 -0 0.14137167
+ 10000 0.57151612 444 -0 0.15707963
+ 11000 0.61192936 444 -0 0.1727876
+ 12000 0.65265862 444 -0 0.18849556
+ 13000 0.69377116 444 -0 0.20420352
+ 14000 0.73526123 444 -0 0.21991149
+ 15000 0.77783987 444 -0 0.23561945
+ 16000 0.82128542 444 -0 0.25132741
+ 17000 0.86603751 444 -0 0.26703538
+ 18000 0.90981059 444 -0 0.28274334
+ 19000 0.95383173 444 -0 0.2984513
+ 20000 0.99782061 444 -0 0.31415927
+ 21000 1.0370303 444 -0 0.32986723
+ 22000 1.0764103 444 -0 0.34557519
+ 23000 1.1154891 444 -0 0.36128316
+ 24000 1.1549694 444 -0 0.37699112
+ 25000 1.1953727 444 -0 0.39269908
+ 26000 1.2364474 444 -0 0.40840704
+ 27000 1.2777508 444 -0 0.42411501
+ 28000 1.3195763 444 -0 0.43982297
+ 29000 1.3618971 444 -0 0.45553093
+ 30000 1.404607 444 -0 0.4712389
+ 31000 1.4428952 444 -0 0.48694686
+ 32000 1.4818254 444 -0 0.50265482
+ 33000 1.5205701 444 -0 0.51836279
+ 34000 1.559401 444 -0 0.53407075
+ 35000 1.5987318 444 -0 0.54977871
+ 36000 1.6379014 444 -0 0.56548668
+ 37000 1.6781504 444 -0 0.58119464
+ 38000 1.7190533 444 -0 0.5969026
+ 39000 1.7604269 444 -0 0.61261057
+ 40000 1.8019216 444 -0 0.62831853
+ 41000 1.8402535 444 -0 0.64402649
+ 42000 1.8791646 444 -0 0.65973446
+ 43000 1.9188237 444 -0 0.67544242
+ 44000 1.9584939 444 -0 0.69115038
+ 45000 1.9992043 444 -0 0.70685835
+ 46000 2.04024 444 -0 0.72256631
+ 47000 2.0814641 444 -0 0.73827427
+ 48000 2.123407 444 -0 0.75398224
+ 49000 2.165223 444 -0 0.7696902
+ 50000 2.2074047 444 -0 0.78539816
+ 51000 2.2456301 444 -0 0.80110613
+ 52000 2.2839661 444 -0 0.81681409
+ 53000 2.3227369 444 -0 0.83252205
+ 54000 2.3618801 444 -0 0.84823002
+ 55000 2.401451 444 -0 0.86393798
+ 56000 2.4414565 444 -0 0.87964594
+ 57000 2.4813918 444 -0 0.89535391
+ 58000 2.5221831 444 -0 0.91106187
+ 59000 2.5637488 444 -0 0.92676983
+ 60000 2.6055953 444 -0 0.9424778
+ 61000 2.6456326 444 -0 0.95818576
+ 62000 2.6857299 444 -0 0.97389372
+ 63000 2.7259082 444 -0 0.98960169
+ 64000 2.7665767 444 -0 1.0053096
+ 65000 2.8082755 444 -0 1.0210176
+ 66000 2.8503373 444 -0 1.0367256
+ 67000 2.8938769 444 -0 1.0524335
+ 68000 2.9373604 444 -0 1.0681415
+ 69000 2.9810674 444 -0 1.0838495
+ 70000 3.0246587 444 -0 1.0995574
+ 71000 3.0655215 444 -0 1.1152654
+ 72000 3.1075971 444 -0 1.1309734
+ 73000 3.1497688 444 -0 1.1466813
+ 74000 3.1915941 444 -0 1.1623893
+ 75000 3.2352454 444 -0 1.1780972
+ 76000 3.2799164 444 -0 1.1938052
+ 77000 3.3245184 444 -0 1.2095132
+ 78000 3.3693626 444 -0 1.2252211
+ 79000 3.4144403 444 -0 1.2409291
+ 80000 3.4609593 444 -0 1.2566371
+ 81000 3.5037956 444 -0 1.272345
+ 82000 3.5460391 444 -0 1.288053
+ 83000 3.5890988 444 -0 1.303761
+ 84000 3.6329781 444 -0 1.3194689
+ 85000 3.6969324 888 -0 1.3351769
+ 86000 3.7764618 888 -0 1.3508848
+ 87000 3.855693 888 -0 1.3665928
+ 88000 3.9341142 888 -0 1.3823008
+ 89000 4.0125134 888 -0 1.3980087
+ 90000 4.0915705 888 -0 1.4137167
+ 91000 4.1526623 888 -0 1.4294247
+ 92000 4.2142478 888 -0 1.4451326
+ 93000 4.2776631 888 -0 1.4608406
+ 94000 4.3413071 888 -0 1.4765485
+ 95000 4.4047448 888 -0 1.4922565
+ 96000 4.4682904 888 -0 1.5079645
+ 97000 4.5328349 888 -0 1.5236724
+ 98000 4.5968674 888 -0 1.5393804
+ 99000 4.6612212 888 -0 1.5550884
+ 100000 4.7263166 888 -0 1.5707963
+ 101000 4.7899218 888 -0 1.5865043
+ 102000 4.8548615 888 -0 1.6022123
+ 103000 4.9201477 888 -0 1.6179202
+ 104000 4.9848694 888 -0 1.6336282
+ 105000 5.0511867 888 -0 1.6493361
+ 106000 5.1167808 888 -0 1.6650441
+ 107000 5.1831053 888 -0 1.6807521
+ 108000 5.250398 888 -0 1.69646
+ 109000 5.3169814 888 -0 1.712168
+ 110000 5.3857277 888 -0 1.727876
+ 111000 5.4527691 888 -0 1.7435839
+ 112000 5.5214505 888 -0 1.7592919
+ 113000 5.5892604 888 -0 1.7749998
+ 114000 5.6579089 888 -0 1.7907078
+ 115000 5.7279007 888 -0 1.8064158
+ 116000 5.7971602 888 -0 1.8221237
+ 117000 5.867895 888 -0 1.8378317
+ 118000 5.9400645 888 -0 1.8535397
+ 119000 6.0117635 888 -0 1.8692476
+ 120000 6.0851132 888 -0 1.8849556
+ 121000 6.1539323 888 -0 1.9006636
+ 122000 6.2231605 888 -0 1.9163715
+ 123000 6.2930557 888 -0 1.9320795
+ 124000 6.3632912 888 -0 1.9477874
+ 125000 6.4336358 888 -0 1.9634954
+ 126000 6.5042786 888 -0 1.9792034
+ 127000 6.5747889 888 -0 1.9949113
+ 128000 6.6452984 888 -0 2.0106193
+ 129000 6.7169482 888 -0 2.0263273
+ 130000 6.7865487 888 -0 2.0420352
+ 131000 6.8576956 888 -0 2.0577432
+ 132000 6.9296299 888 -0 2.0734512
+ 133000 7.0024987 888 -0 2.0891591
+ 134000 7.0753126 888 -0 2.1048671
+ 135000 7.1492322 888 -0 2.120575
+ 136000 7.2243825 888 -0 2.136283
+ 137000 7.3005224 888 -0 2.151991
+ 138000 7.378849 888 -0 2.1676989
+ 139000 7.4574391 888 -0 2.1834069
+ 140000 7.5370788 888 -0 2.1991149
+ 141000 7.6104683 888 -0 2.2148228
+ 142000 7.6840599 888 -0 2.2305308
+ 143000 7.7594508 888 -0 2.2462387
+ 144000 7.8338839 888 -0 2.2619467
+ 145000 7.9104471 888 -0 2.2776547
+ 146000 7.9862744 888 -0 2.2933626
+ 147000 8.0621903 888 -0 2.3090706
+ 148000 8.1403104 888 -0 2.3247786
+ 149000 8.2192751 888 -0 2.3404865
+ 150000 8.2988877 888 -0 2.3561945
+ 151000 8.3771585 888 -0 2.3719025
+ 152000 8.4559615 888 -0 2.3876104
+ 153000 8.5340116 888 -0 2.4033184
+ 154000 8.612764 888 -0 2.4190263
+ 155000 8.6925848 888 -0 2.4347343
+ 156000 8.7739307 888 -0 2.4504423
+ 157000 8.8541471 888 -0 2.4661502
+ 158000 8.9371669 888 -0 2.4818582
+ 159000 9.0204947 888 -0 2.4975662
+ 160000 9.1037153 888 -0 2.5132741
+ 161000 9.1860231 888 -0 2.5289821
+ 162000 9.2695251 888 -0 2.54469
+ 163000 9.3537318 888 -0 2.560398
+ 164000 9.4396954 888 -0 2.576106
+ 165000 9.5265215 888 -0 2.5918139
+ 166000 9.6140047 888 -0 2.6075219
+ 167000 9.7019854 888 -0 2.6232299
+ 168000 9.7918781 888 -0 2.6389378
+ 169000 9.8831043 888 -0 2.6546458
+ 170000 9.9785874 1000 -0 2.6703538
+ 171000 10.073548 1000 -0 2.6860617
+ 172000 10.164183 1000 -0 2.7017697
+ 173000 10.256327 1000 -0 2.7174776
+ 174000 10.353455 1000 -0 2.7331856
+ 175000 10.451392 1000 -0 2.7488936
+ 176000 10.549792 1000 -0 2.7646015
+ 177000 10.648615 1000 -0 2.7803095
+ 178000 10.747357 1000 -0 2.7960175
+ 179000 10.84476 1000 -0 2.8117254
+ 180000 10.942242 1000 -0 2.8274334
+ 181000 11.040635 1000 -0 2.8431414
+ 182000 11.139273 1000 -0 2.8588493
+ 183000 11.239382 1000 -0 2.8745573
+ 184000 11.339673 1000 -0 2.8902652
+ 185000 11.441311 1000 -0 2.9059732
+ 186000 11.543812 1000 -0 2.9216812
+ 187000 11.64542 1000 -0 2.9373891
+ 188000 11.74731 1000 -0 2.9530971
+ 189000 11.850149 1000 -0 2.9688051
+ 190000 11.952154 1000 -0 2.984513
+ 191000 12.055857 1000 -0 3.000221
+ 192000 12.158418 1000 -0 3.0159289
+ 193000 12.261926 1000 -0 3.0316369
+ 194000 12.364315 1000 -0 3.0473449
+ 195000 12.466776 1000 -0 3.0630528
+ 196000 12.568419 1000 -0 3.0787608
+ 197000 12.670258 1000 -0 3.0944688
+ 198000 12.771091 1000 -0 3.1101767
+ 199000 12.873654 1000 -0 3.1258847
+ 200000 12.976411 1000 -0 3.1415927
+Loop time of 12.9764 on 4 procs for 200000 steps with 1000 atoms
+
+Performance: 62922.248 tau/day, 15412.556 timesteps/s, 15.413 Matom-step/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.35493 | 0.65797 | 0.98979 | 36.8 | 5.07
+Neigh | 0.0084865 | 0.011137 | 0.013852 | 2.4 | 0.09
+Comm | 3.7509 | 4.2375 | 4.7882 | 23.1 | 32.66
+Output | 0.0027947 | 0.0036594 | 0.0042822 | 0.9 | 0.03
+Modify | 5.6694 | 6.3746 | 7.0279 | 24.5 | 49.12
+Other | | 1.692 | | | 13.04
+
+Nlocal: 250 ave 260 max 242 min
+Histogram: 1 0 1 0 0 1 0 0 0 1
+Nghost: 279.25 ave 325 max 232 min
+Histogram: 1 1 0 0 0 0 0 0 1 1
+Neighs: 939.75 ave 1397 max 509 min
+Histogram: 2 0 0 0 0 0 0 0 0 2
+
+Total # of neighbors = 3759
+Ave neighs/atom = 3.759
+Neighbor list builds = 201
+Dangerous builds = 0
+unfix ins
+run 200000
+Generated 0 of 0 mixed pair_coeff terms from geometric mixing rule
+Per MPI rank memory allocation (min/avg/max) = 11.87 | 11.88 | 11.89 Mbytes
+ Step CPU Atoms KinEng v_theta
+ 200000 0 1000 1.0071568 3.1415927
+ 201000 0.093433184 1000 1.0036239 3.1573006
+ 202000 0.18902203 1000 0.99846844 3.1730086
+ 203000 0.28432792 1000 0.98236169 3.1887165
+ 204000 0.38011419 1000 0.98625572 3.2044245
+ 205000 0.47468558 1000 0.9893407 3.2201325
+ 206000 0.56918796 1000 1.0012123 3.2358404
+ 207000 0.66393867 1000 1.0231892 3.2515484
+ 208000 0.75739212 1000 1.0265912 3.2672564
+ 209000 0.85184147 1000 1.0190202 3.2829643
+ 210000 0.94643219 1000 1.0267754 3.2986723
+ 211000 1.0419472 1000 1.0186847 3.3143802
+ 212000 1.1365263 1000 1.0159848 3.3300882
+ 213000 1.232359 1000 0.99326329 3.3457962
+ 214000 1.3262519 1000 0.97263135 3.3615041
+ 215000 1.4200243 1000 0.97246409 3.3772121
+ 216000 1.5161944 1000 0.96000626 3.3929201
+ 217000 1.6118944 1000 0.95730432 3.408628
+ 218000 1.7110719 1000 0.95605591 3.424336
+ 219000 1.8103017 1000 0.94983 3.440044
+ 220000 1.9104019 1000 0.95291888 3.4557519
+ 221000 2.0104337 1000 0.93612997 3.4714599
+ 222000 2.1116636 1000 0.93414081 3.4871678
+ 223000 2.2119333 1000 0.93321246 3.5028758
+ 224000 2.3141 1000 0.93026943 3.5185838
+ 225000 2.4159209 1000 0.930478 3.5342917
+ 226000 2.5183511 1000 0.92909096 3.5499997
+ 227000 2.6187905 1000 0.92308495 3.5657077
+ 228000 2.7162318 1000 0.91075986 3.5814156
+ 229000 2.8156901 1000 0.9006662 3.5971236
+ 230000 2.9175496 1000 0.88869212 3.6128316
+ 231000 3.0178436 1000 0.8877611 3.6285395
+ 232000 3.1199496 1000 0.89409636 3.6442475
+ 233000 3.2221471 1000 0.90866091 3.6599554
+ 234000 3.3254883 1000 0.90454601 3.6756634
+ 235000 3.4290048 1000 0.89408327 3.6913714
+ 236000 3.5311688 1000 0.8881044 3.7070793
+ 237000 3.6334192 1000 0.89322168 3.7227873
+ 238000 3.7368611 1000 0.89018045 3.7384953
+ 239000 3.8423369 1000 0.88771268 3.7542032
+ 240000 3.9476493 1000 0.88957717 3.7699112
+ 241000 4.0539657 1000 0.89362036 3.7856191
+ 242000 4.16111 1000 0.90967472 3.8013271
+ 243000 4.2703542 1000 0.91366381 3.8170351
+ 244000 4.3773387 1000 0.9150959 3.832743
+ 245000 4.4845495 1000 0.92725789 3.848451
+ 246000 4.5930315 1000 0.93024722 3.864159
+ 247000 4.7046291 1000 0.93297974 3.8798669
+ 248000 4.8170945 1000 0.94755869 3.8955749
+ 249000 4.9268016 1000 0.94761679 3.9112829
+ 250000 5.0368647 1000 0.92701064 3.9269908
+ 251000 5.1471839 1000 0.91365252 3.9426988
+ 252000 5.2579805 1000 0.90918381 3.9584067
+ 253000 5.3685628 1000 0.90612685 3.9741147
+ 254000 5.4809889 1000 0.90352142 3.9898227
+ 255000 5.5948165 1000 0.90421567 4.0055306
+ 256000 5.7098724 1000 0.90024688 4.0212386
+ 257000 5.8267005 1000 0.88540341 4.0369466
+ 258000 5.9410582 1000 0.87890423 4.0526545
+ 259000 6.0566794 1000 0.86833748 4.0683625
+ 260000 6.1707105 1000 0.85465694 4.0840704
+ 261000 6.2863098 1000 0.83941242 4.0997784
+ 262000 6.4015542 1000 0.81790404 4.1154864
+ 263000 6.5166913 1000 0.82284562 4.1311943
+ 264000 6.6306328 1000 0.80961447 4.1469023
+ 265000 6.7436467 1000 0.80567073 4.1626103
+ 266000 6.855163 1000 0.79577448 4.1783182
+ 267000 6.9684761 1000 0.78489106 4.1940262
+ 268000 7.0840143 1000 0.77348757 4.2097342
+ 269000 7.1995596 1000 0.76606696 4.2254421
+ 270000 7.3149459 1000 0.7649744 4.2411501
+ 271000 7.4296104 1000 0.76050309 4.256858
+ 272000 7.545919 1000 0.75378759 4.272566
+ 273000 7.6616623 1000 0.75633811 4.288274
+ 274000 7.7787912 1000 0.75703106 4.3039819
+ 275000 7.8956703 1000 0.75227453 4.3196899
+ 276000 8.0137649 1000 0.76003902 4.3353979
+ 277000 8.1334933 1000 0.76274661 4.3511058
+ 278000 8.2489616 1000 0.75888482 4.3668138
+ 279000 8.3645369 1000 0.75071875 4.3825218
+ 280000 8.4781847 1000 0.75454927 4.3982297
+ 281000 8.5925071 1000 0.75617824 4.4139377
+ 282000 8.7079255 1000 0.75230835 4.4296456
+ 283000 8.8225434 1000 0.75417571 4.4453536
+ 284000 8.9358224 1000 0.74559345 4.4610616
+ 285000 9.0494588 1000 0.73274661 4.4767695
+ 286000 9.1624226 1000 0.72385193 4.4924775
+ 287000 9.2738683 1000 0.72398899 4.5081855
+ 288000 9.3858476 1000 0.72009027 4.5238934
+ 289000 9.496472 1000 0.72026686 4.5396014
+ 290000 9.6064673 1000 0.72330145 4.5553093
+ 291000 9.7157088 1000 0.71630656 4.5710173
+ 292000 9.8251432 1000 0.71089192 4.5867253
+ 293000 9.9340203 1000 0.70584923 4.6024332
+ 294000 10.041427 1000 0.71350398 4.6181412
+ 295000 10.150066 1000 0.72781836 4.6338492
+ 296000 10.258912 1000 0.72285512 4.6495571
+ 297000 10.368299 1000 0.71649517 4.6652651
+ 298000 10.480058 1000 0.71132209 4.6809731
+ 299000 10.592962 1000 0.73602072 4.696681
+ 300000 10.706549 1000 0.74400837 4.712389
+ 301000 10.818871 1000 0.76618562 4.7280969
+ 302000 10.930873 1000 0.77476041 4.7438049
+ 303000 11.040635 1000 0.77124283 4.7595129
+ 304000 11.150729 1000 0.7625748 4.7752208
+ 305000 11.260184 1000 0.74979361 4.7909288
+ 306000 11.36913 1000 0.74515733 4.8066368
+ 307000 11.477137 1000 0.74302741 4.8223447
+ 308000 11.584107 1000 0.73732959 4.8380527
+ 309000 11.692852 1000 0.73368237 4.8537606
+ 310000 11.800777 1000 0.72374292 4.8694686
+ 311000 11.906901 1000 0.72107784 4.8851766
+ 312000 12.015001 1000 0.72944426 4.9008845
+ 313000 12.122634 1000 0.73958637 4.9165925
+ 314000 12.231473 1000 0.75160847 4.9323005
+ 315000 12.343728 1000 0.74419683 4.9480084
+ 316000 12.455114 1000 0.74652593 4.9637164
+ 317000 12.564048 1000 0.74933482 4.9794244
+ 318000 12.672355 1000 0.74200509 4.9951323
+ 319000 12.778931 1000 0.7346024 5.0108403
+ 320000 12.886067 1000 0.72806145 5.0265482
+ 321000 12.993743 1000 0.72147888 5.0422562
+ 322000 13.101955 1000 0.71460041 5.0579642
+ 323000 13.212177 1000 0.70255075 5.0736721
+ 324000 13.322528 1000 0.70640327 5.0893801
+ 325000 13.435038 1000 0.70643428 5.1050881
+ 326000 13.545443 1000 0.69751794 5.120796
+ 327000 13.657538 1000 0.69035108 5.136504
+ 328000 13.770475 1000 0.68068243 5.152212
+ 329000 13.883136 1000 0.69123492 5.1679199
+ 330000 13.995043 1000 0.70326515 5.1836279
+ 331000 14.109604 1000 0.70551726 5.1993358
+ 332000 14.222995 1000 0.70514444 5.2150438
+ 333000 14.336604 1000 0.71102045 5.2307518
+ 334000 14.44933 1000 0.71336747 5.2464597
+ 335000 14.56056 1000 0.70816388 5.2621677
+ 336000 14.67143 1000 0.69502472 5.2778757
+ 337000 14.783295 1000 0.69314289 5.2935836
+ 338000 14.893816 1000 0.68565794 5.3092916
+ 339000 15.005631 1000 0.67268053 5.3249995
+ 340000 15.119406 1000 0.68313196 5.3407075
+ 341000 15.233786 1000 0.68782815 5.3564155
+ 342000 15.349691 1000 0.6989326 5.3721234
+ 343000 15.466599 1000 0.694926 5.3878314
+ 344000 15.583585 1000 0.7006474 5.4035394
+ 345000 15.702299 1000 0.70783177 5.4192473
+ 346000 15.819367 1000 0.71334276 5.4349553
+ 347000 15.935892 1000 0.72917419 5.4506633
+ 348000 16.051074 1000 0.74315705 5.4663712
+ 349000 16.165316 1000 0.76731311 5.4820792
+ 350000 16.281794 1000 0.79761434 5.4977871
+ 351000 16.397615 1000 0.80447724 5.5134951
+ 352000 16.514271 1000 0.80118728 5.5292031
+ 353000 16.632427 1000 0.77990459 5.544911
+ 354000 16.750052 1000 0.76453299 5.560619
+ 355000 16.868875 1000 0.76538392 5.576327
+ 356000 16.985762 1000 0.76310698 5.5920349
+ 357000 17.103471 1000 0.75897095 5.6077429
+ 358000 17.223037 1000 0.75071115 5.6234508
+ 359000 17.340073 1000 0.74034801 5.6391588
+ 360000 17.457867 1000 0.72671924 5.6548668
+ 361000 17.57503 1000 0.72111017 5.6705747
+ 362000 17.69138 1000 0.71875181 5.6862827
+ 363000 17.808661 1000 0.71469706 5.7019907
+ 364000 17.925895 1000 0.70470493 5.7176986
+ 365000 18.042976 1000 0.70863047 5.7334066
+ 366000 18.162079 1000 0.70850561 5.7491146
+ 367000 18.283911 1000 0.71413452 5.7648225
+ 368000 18.407692 1000 0.71314184 5.7805305
+ 369000 18.53068 1000 0.71309549 5.7962384
+ 370000 18.652767 1000 0.71132937 5.8119464
+ 371000 18.772131 1000 0.70788039 5.8276544
+ 372000 18.892439 1000 0.71780071 5.8433623
+ 373000 19.012886 1000 0.72352571 5.8590703
+ 374000 19.132857 1000 0.71723739 5.8747783
+ 375000 19.25312 1000 0.71556941 5.8904862
+ 376000 19.372783 1000 0.70935312 5.9061942
+ 377000 19.493215 1000 0.71551157 5.9219022
+ 378000 19.614604 1000 0.7235163 5.9376101
+ 379000 19.735704 1000 0.73896421 5.9533181
+ 380000 19.856219 1000 0.74906169 5.969026
+ 381000 19.974782 1000 0.75303336 5.984734
+ 382000 20.093831 1000 0.75359492 6.000442
+ 383000 20.213075 1000 0.75579354 6.0161499
+ 384000 20.334366 1000 0.75178368 6.0318579
+ 385000 20.455027 1000 0.74412159 6.0475659
+ 386000 20.574847 1000 0.7360955 6.0632738
+ 387000 20.691183 1000 0.73461103 6.0789818
+ 388000 20.80664 1000 0.72496617 6.0946897
+ 389000 20.92229 1000 0.7219047 6.1103977
+ 390000 21.037387 1000 0.71837013 6.1261057
+ 391000 21.152412 1000 0.71495923 6.1418136
+ 392000 21.267451 1000 0.71436707 6.1575216
+ 393000 21.382024 1000 0.71447834 6.1732296
+ 394000 21.496952 1000 0.71334298 6.1889375
+ 395000 21.611699 1000 0.71510229 6.2046455
+ 396000 21.726328 1000 0.7121714 6.2203535
+ 397000 21.840614 1000 0.70818894 6.2360614
+ 398000 21.955122 1000 0.70059455 6.2517694
+ 399000 22.068714 1000 0.69960089 6.2674773
+ 400000 22.182962 1000 0.70261998 6.2831853
+Loop time of 22.183 on 4 procs for 200000 steps with 1000 atoms
+
+Performance: 36807.772 tau/day, 9015.918 timesteps/s, 9.016 Matom-step/s
+95.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 | 1.1609 | 2.0592 | 2.957 | 61.9 | 9.28
+Neigh | 0.013526 | 0.018287 | 0.022861 | 3.3 | 0.08
+Comm | 7.707 | 8.9501 | 10.214 | 41.1 | 40.35
+Output | 0.0027437 | 0.0039021 | 0.0045769 | 1.1 | 0.02
+Modify | 7.9431 | 9.4082 | 10.711 | 40.5 | 42.41
+Other | | 1.743 | | | 7.86
+
+Nlocal: 250 ave 258 max 241 min
+Histogram: 1 0 0 0 1 0 0 1 0 1
+Nghost: 412 ave 492 max 332 min
+Histogram: 2 0 0 0 0 0 0 0 0 2
+Neighs: 1258.5 ave 1588 max 953 min
+Histogram: 2 0 0 0 0 0 0 0 1 1
+
+Total # of neighbors = 5034
+Ave neighs/atom = 5.034
+Neighbor list builds = 159
+Dangerous builds = 0
+Total wall time: 0:00:35
diff --git a/examples/granular/log.28Mar23.pour.drum.g++.1 b/examples/granular/log.27Jun24.pour.drum.g++.1
similarity index 75%
rename from examples/granular/log.28Mar23.pour.drum.g++.1
rename to examples/granular/log.27Jun24.pour.drum.g++.1
index 4d6744101a..b634481bb3 100644
--- a/examples/granular/log.28Mar23.pour.drum.g++.1
+++ b/examples/granular/log.27Jun24.pour.drum.g++.1
@@ -1,4 +1,4 @@
-LAMMPS (28 Mar 2023 - Development)
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
# pour two types of particles (cohesive and non-cohesive) into cylinder
# 'turn' cylinder by changing direction of gravity, then rotate it.
# This simulates a rotating drum powder characterization experiment.
@@ -92,13 +92,11 @@ fix ins1 all pour 2000 1 1234 region insreg diam range 0.5 ${dhi} de
fix ins1 all pour 2000 1 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
fix ins1 all pour 2000 1 1234 region insreg diam range 0.5 1 dens 1 ${dens}
fix ins1 all pour 2000 1 1234 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 9396 every 490 steps, 2000 by step 1
fix ins2 all pour 2000 2 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
fix ins2 all pour 2000 2 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
fix ins2 all pour 2000 2 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
fix ins2 all pour 2000 2 1234 region insreg diam range 0.5 1 dens 1 ${dens}
fix ins2 all pour 2000 2 1234 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 9396 every 490 steps, 2000 by step 1
comm_modify vel yes
@@ -126,6 +124,8 @@ dynamic group delgroup defined
run 2000
Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 9396 every 2449 steps, 2000 by step 1
+Particle insertion: 9396 every 2449 steps, 2000 by step 1
Neighbor list info ...
update: every = 1 steps, delay = 0 steps, check = yes
max neighbors/atom: 2000, page size: 100000
@@ -135,7 +135,7 @@ Neighbor list info ...
1 neighbor lists, perpetual/occasional/extra = 1 0 0
(1) pair granular, perpetual
attributes: half, newton on, size, history
- pair build: half/size/bin/newton
+ pair build: half/size/bin/atomonly/newton
stencil: half/bin/3d
bin: standard
Per MPI rank memory allocation (min/avg/max) = 15.95 | 15.95 | 15.95 Mbytes
@@ -161,20 +161,20 @@ Per MPI rank memory allocation (min/avg/max) = 15.95 | 15.95 | 15.95 Mbytes
1800 4000 -0 0
1900 4000 -0 0
2000 4000 -0 0
-Loop time of 2.86367 on 1 procs for 2000 steps with 4000 atoms
+Loop time of 2.46916 on 1 procs for 2000 steps with 4000 atoms
-Performance: 60342.153 tau/day, 698.405 timesteps/s, 2.794 Matom-step/s
-99.6% CPU use with 1 MPI tasks x no OpenMP threads
+Performance: 69983.324 tau/day, 809.992 timesteps/s, 3.240 Matom-step/s
+99.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 | 0.36474 | 0.36474 | 0.36474 | 0.0 | 12.74
-Neigh | 1.0694 | 1.0694 | 1.0694 | 0.0 | 37.35
-Comm | 0.043549 | 0.043549 | 0.043549 | 0.0 | 1.52
-Output | 0.00054587 | 0.00054587 | 0.00054587 | 0.0 | 0.02
-Modify | 1.3281 | 1.3281 | 1.3281 | 0.0 | 46.38
-Other | | 0.05731 | | | 2.00
+Pair | 0.32379 | 0.32379 | 0.32379 | 0.0 | 13.11
+Neigh | 0.98775 | 0.98775 | 0.98775 | 0.0 | 40.00
+Comm | 0.03762 | 0.03762 | 0.03762 | 0.0 | 1.52
+Output | 0.0004273 | 0.0004273 | 0.0004273 | 0.0 | 0.02
+Modify | 1.0824 | 1.0824 | 1.0824 | 0.0 | 43.84
+Other | | 0.03719 | | | 1.51
Nlocal: 4000 ave 4000 max 4000 min
Histogram: 1 0 0 0 0 0 0 0 0 0
@@ -213,60 +213,60 @@ Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
Per MPI rank memory allocation (min/avg/max) = 22.3 | 22.3 | 22.3 Mbytes
Step Atoms KinEng v_theta
2000 4000 59.748184 0
- 2100 4000 47.337202 0.031415927
- 2200 4000 33.303567 0.062831853
- 2300 4000 24.246806 0.09424778
- 2400 4000 17.165844 0.12566371
- 2500 4000 18.415922 0.15707963
- 2600 4000 17.3084 0.18849556
- 2700 4000 15.985202 0.21991149
- 2800 4000 14.084599 0.25132741
- 2900 4000 11.526622 0.28274334
- 3000 4000 8.9364793 0.31415927
- 3100 4000 6.844209 0.34557519
- 3200 4000 5.8243926 0.37699112
- 3300 4000 5.5616671 0.40840704
- 3400 4000 5.7219459 0.43982297
- 3500 4000 6.2482952 0.4712389
- 3600 4000 6.396804 0.50265482
- 3700 4000 6.6017236 0.53407075
- 3800 4000 6.684913 0.56548668
- 3900 4000 6.5988588 0.5969026
- 4000 4000 6.4839456 0.62831853
- 4100 4000 6.104233 0.65973446
- 4200 4000 5.6021757 0.69115038
- 4300 4000 4.9670639 0.72256631
- 4400 4000 4.3298233 0.75398224
- 4500 4000 3.8833884 0.78539816
- 4600 4000 3.4626401 0.81681409
- 4700 4000 3.0367615 0.84823002
- 4800 4000 2.762543 0.87964594
- 4900 4000 2.5627778 0.91106187
- 5000 4000 2.4007014 0.9424778
-Loop time of 9.68472 on 1 procs for 3000 steps with 4000 atoms
+ 2100 4000 47.350194 0.031415927
+ 2200 4000 33.365489 0.062831853
+ 2300 4000 24.167007 0.09424778
+ 2400 4000 17.169385 0.12566371
+ 2500 4000 18.361204 0.15707963
+ 2600 4000 17.259574 0.18849556
+ 2700 4000 16.022776 0.21991149
+ 2800 4000 14.177071 0.25132741
+ 2900 4000 11.594949 0.28274334
+ 3000 4000 8.8305692 0.31415927
+ 3100 4000 6.777187 0.34557519
+ 3200 4000 5.7660641 0.37699112
+ 3300 4000 5.6477598 0.40840704
+ 3400 4000 5.7778867 0.43982297
+ 3500 4000 6.1873342 0.4712389
+ 3600 4000 6.2232869 0.50265482
+ 3700 4000 6.3635239 0.53407075
+ 3800 4000 6.523255 0.56548668
+ 3900 4000 6.5008528 0.5969026
+ 4000 4000 6.2394922 0.62831853
+ 4100 4000 5.9742801 0.65973446
+ 4200 4000 5.3949422 0.69115038
+ 4300 4000 4.9123859 0.72256631
+ 4400 4000 4.3863176 0.75398224
+ 4500 4000 3.8729959 0.78539816
+ 4600 4000 3.4734137 0.81681409
+ 4700 4000 3.0478845 0.84823002
+ 4800 4000 2.8232582 0.87964594
+ 4900 4000 2.6314234 0.91106187
+ 5000 4000 2.429883 0.9424778
+Loop time of 8.26731 on 1 procs for 3000 steps with 4000 atoms
-Performance: 26763.820 tau/day, 309.766 timesteps/s, 1.239 Matom-step/s
-99.6% CPU use with 1 MPI tasks x no OpenMP threads
+Performance: 31352.411 tau/day, 362.875 timesteps/s, 1.452 Matom-step/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 | 3.2753 | 3.2753 | 3.2753 | 0.0 | 33.82
-Neigh | 2.2272 | 2.2272 | 2.2272 | 0.0 | 23.00
-Comm | 0.068198 | 0.068198 | 0.068198 | 0.0 | 0.70
-Output | 0.0008788 | 0.0008788 | 0.0008788 | 0.0 | 0.01
-Modify | 4.0327 | 4.0327 | 4.0327 | 0.0 | 41.64
-Other | | 0.08047 | | | 0.83
+Pair | 2.9751 | 2.9751 | 2.9751 | 0.0 | 35.99
+Neigh | 2.0918 | 2.0918 | 2.0918 | 0.0 | 25.30
+Comm | 0.059511 | 0.059511 | 0.059511 | 0.0 | 0.72
+Output | 0.0007014 | 0.0007014 | 0.0007014 | 0.0 | 0.01
+Modify | 3.0819 | 3.0819 | 3.0819 | 0.0 | 37.28
+Other | | 0.05826 | | | 0.70
Nlocal: 4000 ave 4000 max 4000 min
Histogram: 1 0 0 0 0 0 0 0 0 0
-Nghost: 364 ave 364 max 364 min
+Nghost: 353 ave 353 max 353 min
Histogram: 1 0 0 0 0 0 0 0 0 0
-Neighs: 12973 ave 12973 max 12973 min
+Neighs: 12970 ave 12970 max 12970 min
Histogram: 1 0 0 0 0 0 0 0 0 0
-Total # of neighbors = 12973
-Ave neighs/atom = 3.24325
-Neighbor list builds = 1274
+Total # of neighbors = 12970
+Ave neighs/atom = 3.2425
+Neighbor list builds = 1236
Dangerous builds = 130
-Total wall time: 0:00:12
+Total wall time: 0:00:10
diff --git a/examples/granular/log.28Mar23.pour.drum.g++.4 b/examples/granular/log.27Jun24.pour.drum.g++.4
similarity index 89%
rename from examples/granular/log.28Mar23.pour.drum.g++.4
rename to examples/granular/log.27Jun24.pour.drum.g++.4
index 059e6b848f..b4d8176283 100644
--- a/examples/granular/log.28Mar23.pour.drum.g++.4
+++ b/examples/granular/log.27Jun24.pour.drum.g++.4
@@ -1,4 +1,4 @@
-LAMMPS (28 Mar 2023 - Development)
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
# pour two types of particles (cohesive and non-cohesive) into cylinder
# 'turn' cylinder by changing direction of gravity, then rotate it.
# This simulates a rotating drum powder characterization experiment.
@@ -92,13 +92,11 @@ fix ins1 all pour 2000 1 1234 region insreg diam range 0.5 ${dhi} de
fix ins1 all pour 2000 1 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
fix ins1 all pour 2000 1 1234 region insreg diam range 0.5 1 dens 1 ${dens}
fix ins1 all pour 2000 1 1234 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 9396 every 490 steps, 2000 by step 1
fix ins2 all pour 2000 2 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
fix ins2 all pour 2000 2 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
fix ins2 all pour 2000 2 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
fix ins2 all pour 2000 2 1234 region insreg diam range 0.5 1 dens 1 ${dens}
fix ins2 all pour 2000 2 1234 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 9396 every 490 steps, 2000 by step 1
comm_modify vel yes
@@ -126,6 +124,8 @@ dynamic group delgroup defined
run 2000
Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 9396 every 2449 steps, 2000 by step 1
+Particle insertion: 9396 every 2449 steps, 2000 by step 1
Neighbor list info ...
update: every = 1 steps, delay = 0 steps, check = yes
max neighbors/atom: 2000, page size: 100000
@@ -135,7 +135,7 @@ Neighbor list info ...
1 neighbor lists, perpetual/occasional/extra = 1 0 0
(1) pair granular, perpetual
attributes: half, newton on, size, history
- pair build: half/size/bin/newton
+ pair build: half/size/bin/atomonly/newton
stencil: half/bin/3d
bin: standard
Per MPI rank memory allocation (min/avg/max) = 15.26 | 15.26 | 15.26 Mbytes
@@ -161,20 +161,20 @@ Per MPI rank memory allocation (min/avg/max) = 15.26 | 15.26 | 15.26 Mbytes
1800 4000 -0 0
1900 4000 -0 0
2000 4000 -0 0
-Loop time of 0.748557 on 4 procs for 2000 steps with 4000 atoms
+Loop time of 0.717368 on 4 procs for 2000 steps with 4000 atoms
-Performance: 230844.044 tau/day, 2671.806 timesteps/s, 10.687 Matom-step/s
-97.9% CPU use with 4 MPI tasks x no OpenMP threads
+Performance: 240880.647 tau/day, 2787.970 timesteps/s, 11.152 Matom-step/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.06941 | 0.071981 | 0.074417 | 0.7 | 9.62
-Neigh | 0.16177 | 0.16555 | 0.17093 | 0.8 | 22.12
-Comm | 0.090638 | 0.10803 | 0.12219 | 4.1 | 14.43
-Output | 0.00028818 | 0.00034597 | 0.0004604 | 0.0 | 0.05
-Modify | 0.36474 | 0.3754 | 0.38959 | 1.7 | 50.15
-Other | | 0.02725 | | | 3.64
+Pair | 0.066314 | 0.069313 | 0.072824 | 0.9 | 9.66
+Neigh | 0.17091 | 0.17659 | 0.18316 | 1.2 | 24.62
+Comm | 0.090794 | 0.10277 | 0.11691 | 3.3 | 14.33
+Output | 0.00026021 | 0.00028548 | 0.00031629 | 0.0 | 0.04
+Modify | 0.33724 | 0.3471 | 0.35578 | 1.1 | 48.39
+Other | | 0.02131 | | | 2.97
Nlocal: 1000 ave 1011 max 989 min
Histogram: 2 0 0 0 0 0 0 0 0 2
@@ -243,20 +243,20 @@ Per MPI rank memory allocation (min/avg/max) = 21.56 | 21.56 | 21.56 Mbytes
4800 4000 2.6544181 0.87964594
4900 4000 2.4465164 0.91106187
5000 4000 2.2332401 0.9424778
-Loop time of 2.5078 on 4 procs for 3000 steps with 4000 atoms
+Loop time of 2.47988 on 4 procs for 3000 steps with 4000 atoms
-Performance: 103357.584 tau/day, 1196.268 timesteps/s, 4.785 Matom-step/s
-98.5% CPU use with 4 MPI tasks x no OpenMP threads
+Performance: 104520.996 tau/day, 1209.734 timesteps/s, 4.839 Matom-step/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.54095 | 0.71709 | 0.87542 | 14.0 | 28.59
-Neigh | 0.36061 | 0.42976 | 0.50378 | 7.7 | 17.14
-Comm | 0.17653 | 0.42898 | 0.69006 | 27.8 | 17.11
-Output | 0.00074969 | 0.0013183 | 0.0019347 | 1.2 | 0.05
-Modify | 0.70535 | 0.80409 | 0.91217 | 8.2 | 32.06
-Other | | 0.1266 | | | 5.05
+Pair | 0.51755 | 0.69165 | 0.84951 | 14.2 | 27.89
+Neigh | 0.37557 | 0.44168 | 0.51371 | 7.4 | 17.81
+Comm | 0.17182 | 0.42275 | 0.67979 | 27.7 | 17.05
+Output | 0.00061419 | 0.0013055 | 0.0020239 | 1.4 | 0.05
+Modify | 0.69708 | 0.79942 | 0.90438 | 8.2 | 32.24
+Other | | 0.1231 | | | 4.96
Nlocal: 1000 ave 1311 max 689 min
Histogram: 2 0 0 0 0 0 0 0 0 2
diff --git a/examples/granular/log.28Mar23.pour.flatwall.g++.1 b/examples/granular/log.27Jun24.pour.flatwall.g++.1
similarity index 58%
rename from examples/granular/log.28Mar23.pour.flatwall.g++.1
rename to examples/granular/log.27Jun24.pour.flatwall.g++.1
index 0879b2ae13..e9c79f57d4 100644
--- a/examples/granular/log.28Mar23.pour.flatwall.g++.1
+++ b/examples/granular/log.27Jun24.pour.flatwall.g++.1
@@ -1,4 +1,4 @@
-LAMMPS (28 Mar 2023 - Development)
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
# pour two types of particles (cohesive and non-cohesive) on flat wall
variable name string pour_two_types
@@ -70,13 +70,11 @@ fix ins1 all pour 1500 1 3123 region insreg1 diam range 0.5 ${dhi} d
fix ins1 all pour 1500 1 3123 region insreg1 diam range 0.5 1 dens ${dens} ${dens}
fix ins1 all pour 1500 1 3123 region insreg1 diam range 0.5 1 dens 1 ${dens}
fix ins1 all pour 1500 1 3123 region insreg1 diam range 0.5 1 dens 1 1
-Particle insertion: 562 every 346 steps, 1500 by step 693
fix ins2 all pour 1500 2 3123 region insreg2 diam range ${dlo} ${dhi} dens ${dens} ${dens}
fix ins2 all pour 1500 2 3123 region insreg2 diam range 0.5 ${dhi} dens ${dens} ${dens}
fix ins2 all pour 1500 2 3123 region insreg2 diam range 0.5 1 dens ${dens} ${dens}
fix ins2 all pour 1500 2 3123 region insreg2 diam range 0.5 1 dens 1 ${dens}
fix ins2 all pour 1500 2 3123 region insreg2 diam range 0.5 1 dens 1 1
-Particle insertion: 562 every 346 steps, 1500 by step 693
neighbor ${skin} bin
neighbor 0.15 bin
@@ -94,6 +92,8 @@ timestep 0.001
run 5000
Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 562 every 1732 steps, 1500 by step 3465
+Particle insertion: 562 every 1732 steps, 1500 by step 3465
Neighbor list info ...
update: every = 1 steps, delay = 0 steps, check = yes
max neighbors/atom: 2000, page size: 100000
@@ -103,93 +103,91 @@ Neighbor list info ...
1 neighbor lists, perpetual/occasional/extra = 1 0 0
(1) pair granular, perpetual
attributes: half, newton on, size, history
- pair build: half/size/bin/newton
+ pair build: half/size/bin/atomonly/newton
stencil: half/bin/3d
bin: standard
Per MPI rank memory allocation (min/avg/max) = 15.24 | 15.24 | 15.24 Mbytes
Step Atoms KinEng
0 0 -0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
100 926 -0
200 926 -0
300 926 -0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 400 1498 -0
- 500 1498 -0
- 600 1498 -0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 700 2275 -0
- 800 2275 -0
- 900 2275 -0
- 1000 2275 -0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 1100 2954 -0
- 1200 2954 -0
- 1300 2954 -0
- 1400 3000 -0
- 1500 3000 -0
- 1600 3000 -0
- 1700 3000 -0
- 1800 3000 -0
- 1900 3000 -0
- 2000 3000 -0
- 2100 3000 -0
- 2200 3000 -0
- 2300 3000 -0
- 2400 3000 -0
- 2500 3000 -0
- 2600 3000 -0
- 2700 3000 -0
- 2800 3000 -0
- 2900 3000 -0
- 3000 3000 -0
- 3100 3000 -0
- 3200 3000 -0
- 3300 3000 -0
- 3400 3000 -0
- 3500 3000 -0
- 3600 3000 -0
- 3700 3000 -0
- 3800 3000 -0
- 3900 3000 -0
- 4000 3000 -0
- 4100 3000 -0
- 4200 3000 -0
- 4300 3000 -0
- 4400 3000 -0
- 4500 3000 -0
- 4600 3000 -0
- 4700 3000 -0
- 4800 3000 -0
- 4900 3000 -0
- 5000 3000 -0
-Loop time of 10.8677 on 1 procs for 5000 steps with 3000 atoms
+ 400 926 -0
+ 500 926 -0
+ 600 926 -0
+ 700 926 -0
+ 800 926 -0
+ 900 926 -0
+ 1000 926 -0
+ 1100 926 -0
+ 1200 926 -0
+ 1300 926 -0
+ 1400 926 -0
+ 1500 926 -0
+ 1600 926 -0
+ 1700 926 -0
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 1800 1882 -0
+ 1900 1882 -0
+ 2000 1882 -0
+ 2100 1882 -0
+ 2200 1882 -0
+ 2300 1882 -0
+ 2400 1882 -0
+ 2500 1882 -0
+ 2600 1882 -0
+ 2700 1882 -0
+ 2800 1882 -0
+ 2900 1882 -0
+ 3000 1882 -0
+ 3100 1882 -0
+ 3200 1882 -0
+ 3300 1882 -0
+ 3400 1882 -0
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 3500 2849 -0
+ 3600 2849 -0
+ 3700 2849 -0
+ 3800 2849 -0
+ 3900 2849 -0
+ 4000 2849 -0
+ 4100 2849 -0
+ 4200 2849 -0
+ 4300 2849 -0
+ 4400 2849 -0
+ 4500 2849 -0
+ 4600 2849 -0
+ 4700 2849 -0
+ 4800 2849 -0
+ 4900 2849 -0
+ 5000 2849 -0
+Loop time of 5.10849 on 1 procs for 5000 steps with 2849 atoms
-Performance: 39750.725 tau/day, 460.078 timesteps/s, 1.380 Matom-step/s
-99.6% CPU use with 1 MPI tasks x no OpenMP threads
+Performance: 84565.099 tau/day, 978.763 timesteps/s, 2.788 Matom-step/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 | 8.0086 | 8.0086 | 8.0086 | 0.0 | 73.69
-Neigh | 1.3537 | 1.3537 | 1.3537 | 0.0 | 12.46
-Comm | 0.063133 | 0.063133 | 0.063133 | 0.0 | 0.58
-Output | 0.0010708 | 0.0010708 | 0.0010708 | 0.0 | 0.01
-Modify | 1.3723 | 1.3723 | 1.3723 | 0.0 | 12.63
-Other | | 0.06891 | | | 0.63
+Pair | 3.4951 | 3.4951 | 3.4951 | 0.0 | 68.42
+Neigh | 0.84792 | 0.84792 | 0.84792 | 0.0 | 16.60
+Comm | 0.03348 | 0.03348 | 0.03348 | 0.0 | 0.66
+Output | 0.00063957 | 0.00063957 | 0.00063957 | 0.0 | 0.01
+Modify | 0.69872 | 0.69872 | 0.69872 | 0.0 | 13.68
+Other | | 0.03268 | | | 0.64
-Nlocal: 3000 ave 3000 max 3000 min
+Nlocal: 2849 ave 2849 max 2849 min
Histogram: 1 0 0 0 0 0 0 0 0 0
-Nghost: 477 ave 477 max 477 min
+Nghost: 325 ave 325 max 325 min
Histogram: 1 0 0 0 0 0 0 0 0 0
-Neighs: 16725 ave 16725 max 16725 min
+Neighs: 12243 ave 12243 max 12243 min
Histogram: 1 0 0 0 0 0 0 0 0 0
-Total # of neighbors = 16725
-Ave neighs/atom = 5.575
-Neighbor list builds = 1109
+Total # of neighbors = 12243
+Ave neighs/atom = 4.2972973
+Neighbor list builds = 1275
Dangerous builds = 0
-Total wall time: 0:00:10
+Total wall time: 0:00:05
diff --git a/examples/granular/log.28Mar23.pour.flatwall.g++.4 b/examples/granular/log.27Jun24.pour.flatwall.g++.4
similarity index 57%
rename from examples/granular/log.28Mar23.pour.flatwall.g++.4
rename to examples/granular/log.27Jun24.pour.flatwall.g++.4
index fd49a05b6c..613be3fb99 100644
--- a/examples/granular/log.28Mar23.pour.flatwall.g++.4
+++ b/examples/granular/log.27Jun24.pour.flatwall.g++.4
@@ -1,4 +1,4 @@
-LAMMPS (28 Mar 2023 - Development)
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
# pour two types of particles (cohesive and non-cohesive) on flat wall
variable name string pour_two_types
@@ -70,13 +70,11 @@ fix ins1 all pour 1500 1 3123 region insreg1 diam range 0.5 ${dhi} d
fix ins1 all pour 1500 1 3123 region insreg1 diam range 0.5 1 dens ${dens} ${dens}
fix ins1 all pour 1500 1 3123 region insreg1 diam range 0.5 1 dens 1 ${dens}
fix ins1 all pour 1500 1 3123 region insreg1 diam range 0.5 1 dens 1 1
-Particle insertion: 562 every 346 steps, 1500 by step 693
fix ins2 all pour 1500 2 3123 region insreg2 diam range ${dlo} ${dhi} dens ${dens} ${dens}
fix ins2 all pour 1500 2 3123 region insreg2 diam range 0.5 ${dhi} dens ${dens} ${dens}
fix ins2 all pour 1500 2 3123 region insreg2 diam range 0.5 1 dens ${dens} ${dens}
fix ins2 all pour 1500 2 3123 region insreg2 diam range 0.5 1 dens 1 ${dens}
fix ins2 all pour 1500 2 3123 region insreg2 diam range 0.5 1 dens 1 1
-Particle insertion: 562 every 346 steps, 1500 by step 693
neighbor ${skin} bin
neighbor 0.15 bin
@@ -94,6 +92,8 @@ timestep 0.001
run 5000
Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 562 every 1732 steps, 1500 by step 3465
+Particle insertion: 562 every 1732 steps, 1500 by step 3465
Neighbor list info ...
update: every = 1 steps, delay = 0 steps, check = yes
max neighbors/atom: 2000, page size: 100000
@@ -103,93 +103,91 @@ Neighbor list info ...
1 neighbor lists, perpetual/occasional/extra = 1 0 0
(1) pair granular, perpetual
attributes: half, newton on, size, history
- pair build: half/size/bin/newton
+ pair build: half/size/bin/atomonly/newton
stencil: half/bin/3d
bin: standard
Per MPI rank memory allocation (min/avg/max) = 15.03 | 15.03 | 15.03 Mbytes
Step Atoms KinEng
0 0 -0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
100 926 -0
200 926 -0
300 926 -0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 400 1498 -0
- 500 1498 -0
- 600 1498 -0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 700 2275 -0
- 800 2275 -0
- 900 2275 -0
- 1000 2275 -0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 1100 2954 -0
- 1200 2954 -0
- 1300 2954 -0
- 1400 3000 -0
- 1500 3000 -0
- 1600 3000 -0
- 1700 3000 -0
- 1800 3000 -0
- 1900 3000 -0
- 2000 3000 -0
- 2100 3000 -0
- 2200 3000 -0
- 2300 3000 -0
- 2400 3000 -0
- 2500 3000 -0
- 2600 3000 -0
- 2700 3000 -0
- 2800 3000 -0
- 2900 3000 -0
- 3000 3000 -0
- 3100 3000 -0
- 3200 3000 -0
- 3300 3000 -0
- 3400 3000 -0
- 3500 3000 -0
- 3600 3000 -0
- 3700 3000 -0
- 3800 3000 -0
- 3900 3000 -0
- 4000 3000 -0
- 4100 3000 -0
- 4200 3000 -0
- 4300 3000 -0
- 4400 3000 -0
- 4500 3000 -0
- 4600 3000 -0
- 4700 3000 -0
- 4800 3000 -0
- 4900 3000 -0
- 5000 3000 -0
-Loop time of 4.13223 on 4 procs for 5000 steps with 3000 atoms
+ 400 926 -0
+ 500 926 -0
+ 600 926 -0
+ 700 926 -0
+ 800 926 -0
+ 900 926 -0
+ 1000 926 -0
+ 1100 926 -0
+ 1200 926 -0
+ 1300 926 -0
+ 1400 926 -0
+ 1500 926 -0
+ 1600 926 -0
+ 1700 926 -0
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 1800 1882 -0
+ 1900 1882 -0
+ 2000 1882 -0
+ 2100 1882 -0
+ 2200 1882 -0
+ 2300 1882 -0
+ 2400 1882 -0
+ 2500 1882 -0
+ 2600 1882 -0
+ 2700 1882 -0
+ 2800 1882 -0
+ 2900 1882 -0
+ 3000 1882 -0
+ 3100 1882 -0
+ 3200 1882 -0
+ 3300 1882 -0
+ 3400 1882 -0
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 3500 2849 -0
+ 3600 2849 -0
+ 3700 2849 -0
+ 3800 2849 -0
+ 3900 2849 -0
+ 4000 2849 -0
+ 4100 2849 -0
+ 4200 2849 -0
+ 4300 2849 -0
+ 4400 2849 -0
+ 4500 2849 -0
+ 4600 2849 -0
+ 4700 2849 -0
+ 4800 2849 -0
+ 4900 2849 -0
+ 5000 2849 -0
+Loop time of 2.29763 on 4 procs for 5000 steps with 2849 atoms
-Performance: 104544.144 tau/day, 1210.002 timesteps/s, 3.630 Matom-step/s
-98.9% CPU use with 4 MPI tasks x no OpenMP threads
+Performance: 188019.846 tau/day, 2176.156 timesteps/s, 6.200 Matom-step/s
+99.3% 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.85927 | 1.7572 | 2.6929 | 62.8 | 42.52
-Neigh | 0.19818 | 0.26863 | 0.34064 | 11.8 | 6.50
-Comm | 0.2647 | 1.3123 | 2.3283 | 79.9 | 31.76
-Output | 0.00061316 | 0.00082693 | 0.0011984 | 0.0 | 0.02
-Modify | 0.69024 | 0.74011 | 0.783 | 3.9 | 17.91
-Other | | 0.05316 | | | 1.29
+Pair | 0.38295 | 0.832 | 1.3838 | 49.2 | 36.21
+Neigh | 0.13581 | 0.1818 | 0.24052 | 10.9 | 7.91
+Comm | 0.21418 | 0.83972 | 1.3498 | 56.1 | 36.55
+Output | 0.00049029 | 0.00061201 | 0.00074711 | 0.0 | 0.03
+Modify | 0.37843 | 0.41232 | 0.44468 | 4.0 | 17.95
+Other | | 0.03117 | | | 1.36
-Nlocal: 750 ave 1038 max 458 min
+Nlocal: 712.25 ave 891 max 538 min
Histogram: 2 0 0 0 0 0 0 0 0 2
-Nghost: 456.75 ave 516 max 411 min
-Histogram: 2 0 0 0 0 0 1 0 0 1
-Neighs: 4186.25 ave 6316 max 1939 min
+Nghost: 420.25 ave 451 max 381 min
+Histogram: 1 0 0 1 0 0 0 0 0 2
+Neighs: 3050.75 ave 4663 max 1564 min
Histogram: 2 0 0 0 0 0 0 0 0 2
-Total # of neighbors = 16745
-Ave neighs/atom = 5.5816667
-Neighbor list builds = 1116
+Total # of neighbors = 12203
+Ave neighs/atom = 4.2832573
+Neighbor list builds = 1282
Dangerous builds = 0
-Total wall time: 0:00:04
+Total wall time: 0:00:02
diff --git a/examples/granular/log.27Jun24.pour.heat.g++.1 b/examples/granular/log.27Jun24.pour.heat.g++.1
new file mode 100644
index 0000000000..d09a9666ab
--- /dev/null
+++ b/examples/granular/log.27Jun24.pour.heat.g++.1
@@ -0,0 +1,1167 @@
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
+# pour one types of particles into cylinder and oscillate
+# temperature of the bottom plate
+
+variable name string heat_plate
+
+atom_style sphere
+units lj
+
+###############################################
+# Geometry-related parameters
+###############################################
+
+variable boxx equal 10
+variable boxy equal 10
+variable boxz equal 50
+
+variable drum_rad equal ${boxx}*0.5
+variable drum_rad equal 10*0.5
+variable drum_height equal 30
+
+variable xc equal 0.5*${boxx}
+variable xc equal 0.5*10
+variable yc equal 0.5*${boxx}
+variable yc equal 0.5*10
+variable zc equal 0.5*${boxz}
+variable zc equal 0.5*50
+
+###############################################
+# Particle-related parameters
+###############################################
+variable rlo equal 0.25
+variable rhi equal 0.5
+variable dlo equal 2.0*${rlo}
+variable dlo equal 2.0*0.25
+variable dhi equal 2.0*${rhi}
+variable dhi equal 2.0*0.5
+
+variable cyl_rad_inner equal ${drum_rad}-1.1*${rhi}
+variable cyl_rad_inner equal 5-1.1*${rhi}
+variable cyl_rad_inner equal 5-1.1*0.5
+
+variable dens equal 1.0
+
+variable skin equal 0.4*${rhi}
+variable skin equal 0.4*0.5
+
+#############
+processors * * 1
+region boxreg block 0 ${boxx} 0 ${boxy} 0 ${boxz}
+region boxreg block 0 10 0 ${boxy} 0 ${boxz}
+region boxreg block 0 10 0 10 0 ${boxz}
+region boxreg block 0 10 0 10 0 50
+create_box 2 boxreg
+Created orthogonal box = (0 0 0) to (10 10 50)
+ 1 by 1 by 1 MPI processor grid
+change_box all boundary p p f
+Changing box ...
+
+pair_style granular
+pair_coeff * * hertz/material 1e5 0.2 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji heat area 5.0
+
+region curved_wall cylinder z ${xc} ${yc} ${drum_rad} 0 ${drum_height} side in
+region curved_wall cylinder z 5 ${yc} ${drum_rad} 0 ${drum_height} side in
+region curved_wall cylinder z 5 5 ${drum_rad} 0 ${drum_height} side in
+region curved_wall cylinder z 5 5 5 0 ${drum_height} side in
+region curved_wall cylinder z 5 5 5 0 30 side in
+region bottom_wall plane ${xc} ${yc} 0 0 0 1 side in
+region bottom_wall plane 5 ${yc} 0 0 0 1 side in
+region bottom_wall plane 5 5 0 0 0 1 side in
+
+region insreg cylinder z ${xc} ${yc} ${cyl_rad_inner} ${drum_height} ${boxz}
+region insreg cylinder z 5 ${yc} ${cyl_rad_inner} ${drum_height} ${boxz}
+region insreg cylinder z 5 5 ${cyl_rad_inner} ${drum_height} ${boxz}
+region insreg cylinder z 5 5 4.45 ${drum_height} ${boxz}
+region insreg cylinder z 5 5 4.45 30 ${boxz}
+region insreg cylinder z 5 5 4.45 30 50
+
+fix 0 all property/atom temperature heatflow
+WARNING: Fix property/atom mol, charge, rmass, temperature, or heatflow w/out ghost communication (../fix_property_atom.cpp:205)
+fix 1 all balance 100 1.0 shift xy 5 1.1
+fix 2 all nve/sphere
+fix 3 all heat/flow constant 1.0
+fix grav all gravity 10 vector 0 0 -1
+fix ins1 all pour 1000 1 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
+fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
+fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
+fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens 1 ${dens}
+fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens 1 1
+fix ins2 all pour 1000 2 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
+fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
+fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
+fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens 1 ${dens}
+fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens 1 1
+
+comm_modify vel yes
+
+neighbor ${skin} bin
+neighbor 0.2 bin
+neigh_modify delay 0 every 1 check yes
+
+variable oscillate equal 1.0*sin(step*0.0001)
+
+fix 4 all wall/gran/region granular hertz/material 1e5 0.1 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji region curved_wall
+fix 5 all wall/gran/region granular hertz/material 1e5 0.1 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji heat area 5.0 region bottom_wall temperature v_oscillate
+
+thermo_style custom step atoms ke pxx pyy pzz
+thermo_modify lost warn
+thermo 100
+
+timestep 0.001
+
+compute 1 all property/atom temperature heatflow
+#dump 1 all custom 1000 ${name}.dump id type radius mass x y z c_1[*]
+
+run 100000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 594 every 2000 steps, 1000 by step 2001
+Particle insertion: 594 every 2000 steps, 1000 by step 2001
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 1.2
+ ghost atom cutoff = 1.2
+ binsize = 0.6, bins = 17 17 84
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair granular, perpetual
+ attributes: half, newton on, size, history
+ pair build: half/size/bin/atomonly/newton
+ stencil: half/bin/3d
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 5.944 | 5.944 | 5.944 Mbytes
+ Step Atoms KinEng Pxx Pyy Pzz
+ 0 0 -0 0 0 0
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 100 536 -0 0 0 7.4220499
+ 200 536 -0 0 0 10.753096
+ 300 536 -0 0 0 13.500241
+ 400 536 -0 0 0 18.036636
+ 500 536 -0 0 0 21.669269
+ 600 536 -0 0 0 25.794277
+ 700 536 -0 0.036728411 0.03359373 24.224864
+ 800 536 -0 0.21062609 0.26430303 25.376901
+ 900 536 -0 0.26668829 0.20265866 25.658924
+ 1000 536 -0 0.39065235 0.60669031 26.763499
+ 1100 536 -0 0.69933284 0.71982789 26.225375
+ 1200 536 -0 0.41577691 0.42256255 24.911833
+ 1300 536 -0 0.34365998 0.63004232 25.749448
+ 1400 536 -0 0.91213774 1.2145317 22.920251
+ 1500 536 -0 0.54726452 0.897705 22.553668
+ 1600 536 -0 0.91615466 0.77555664 21.525841
+ 1700 536 -0 1.0051938 0.97676595 20.94176
+ 1800 536 -0 1.1478423 1.1773124 20.249603
+ 1900 536 -0 1.0337276 0.96821449 21.000233
+ 2000 536 -0 1.2071746 1.0543682 19.716919
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 2100 1056 -0 1.6914999 2.1024908 23.300848
+ 2200 1056 -0 1.0763038 0.99766028 21.476739
+ 2300 1056 -0 1.0060348 1.0881501 22.393655
+ 2400 1056 -0 1.8382425 1.8651087 22.523726
+ 2500 1056 -0 1.6019099 1.7458938 21.9726
+ 2600 1056 -0 2.5819875 2.2467378 20.799104
+ 2700 1056 -0 1.3032965 1.3540011 19.306465
+ 2800 1056 -0 1.2873026 1.3465203 21.080743
+ 2900 1056 -0 2.4437283 2.4546684 21.251491
+ 3000 1056 -0 1.6351054 1.7271037 20.721292
+ 3100 1056 -0 1.7478858 1.8072961 21.19535
+ 3200 1056 -0 2.2476927 2.1239368 21.826835
+ 3300 1056 -0 2.3489303 2.4565817 22.530916
+ 3400 1056 -0 2.0282765 2.0592858 21.499588
+ 3500 1056 -0 2.7289638 2.6145138 22.75168
+ 3600 1056 -0 2.4031598 2.3984781 22.577541
+ 3700 1056 -0 2.3814822 2.5489609 23.583342
+ 3800 1056 -0 2.7238397 2.9213797 22.611132
+ 3900 1056 -0 3.2886764 3.3331076 22.231541
+ 4000 1056 -0 3.629641 3.5650404 21.326329
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 4100 1550 -0 3.6581253 3.6091037 22.567266
+ 4200 1550 -0 3.1703325 3.1201394 21.762369
+ 4300 1550 -0 2.7416796 2.6035668 22.903128
+ 4400 1550 -0 3.0699015 3.1431528 23.999622
+ 4500 1550 -0 3.6196014 3.7017313 24.544985
+ 4600 1550 -0 3.6441931 3.6848323 23.75274
+ 4700 1550 -0 3.5151562 3.6568247 23.317229
+ 4800 1550 -0 4.8761024 4.5587136 22.977859
+ 4900 1550 -0 4.3005341 4.4190368 21.679238
+ 5000 1550 -0 3.9301352 4.1732564 19.921555
+ 5100 1550 -0 3.3296487 3.5432155 19.471996
+ 5200 1550 -0 4.0072218 4.1491206 21.012391
+ 5300 1550 -0 3.7957463 3.9084427 20.787641
+ 5400 1550 -0 3.8598485 3.5535159 20.482895
+ 5500 1550 -0 4.4197873 4.6219011 21.727572
+ 5600 1550 -0 4.5302978 4.2812429 22.689942
+ 5700 1550 -0 4.2916308 4.4059403 21.521813
+ 5800 1550 -0 4.6164726 4.480437 21.070154
+ 5900 1550 -0 4.675308 4.6550469 20.897123
+ 6000 1550 -0 5.0539642 4.979992 20.23696
+ 6100 2000 -0 4.9990276 5.1035338 23.26111
+ 6200 2000 -0 4.6119285 4.5511599 21.934549
+ 6300 2000 -0 5.0774825 4.8160391 23.631839
+ 6400 2000 -0 5.7737139 5.9626596 26.069644
+ 6500 2000 -0 5.3892569 5.5231249 23.023259
+ 6600 2000 -0 5.3886344 5.4872107 21.971442
+ 6700 2000 -0 5.7449615 5.8255033 21.783299
+ 6800 2000 -0 6.0646923 5.9799121 22.245498
+ 6900 2000 -0 5.0057778 4.9285257 20.655013
+ 7000 2000 -0 4.6019464 4.8168115 21.333938
+ 7100 2000 -0 5.408486 5.4825597 23.456271
+ 7200 2000 -0 6.5726796 6.5613098 24.838022
+ 7300 2000 -0 6.6530583 6.6594714 21.901974
+ 7400 2000 -0 6.5197299 6.5144643 19.805667
+ 7500 2000 -0 5.5386627 5.7635754 19.372649
+ 7600 2000 -0 5.9167463 6.0747035 19.465497
+ 7700 2000 -0 5.5273234 5.6764922 20.063724
+ 7800 2000 -0 5.2941089 5.6583351 19.399821
+ 7900 2000 -0 6.2127566 6.2730591 20.811689
+ 8000 2000 -0 6.2586957 6.3917413 21.181183
+ 8100 2000 -0 7.6888419 7.4612645 19.004971
+ 8200 2000 -0 6.6978099 6.9641603 15.525389
+ 8300 2000 -0 6.2921869 6.4062074 10.845374
+ 8400 2000 -0 6.0119354 6.1316484 7.8511123
+ 8500 2000 -0 5.1806588 5.303647 6.311854
+ 8600 2000 -0 4.6944864 4.7229744 4.9041607
+ 8700 2000 -0 4.5019064 4.5329727 4.6795368
+ 8800 2000 -0 4.6403273 4.679531 5.3583029
+ 8900 2000 -0 4.7461483 4.7714283 5.5728241
+ 9000 2000 -0 4.6875927 4.7228285 5.2516801
+ 9100 2000 -0 4.6506598 4.6723208 5.1753237
+ 9200 2000 -0 4.7038993 4.7334071 5.3953721
+ 9300 2000 -0 4.7007404 4.7526162 5.3789411
+ 9400 2000 -0 4.6837243 4.7134602 5.2741541
+ 9500 2000 -0 4.6941099 4.7190018 5.3740553
+ 9600 2000 -0 4.7077487 4.7347507 5.3845442
+ 9700 2000 -0 4.6786958 4.7023309 5.2672484
+ 9800 2000 -0 4.6894331 4.7131781 5.3005024
+ 9900 2000 -0 4.6994526 4.7274671 5.361834
+ 10000 2000 -0 4.7030651 4.7237065 5.3238507
+ 10100 2000 -0 4.7090801 4.7309366 5.3340736
+ 10200 2000 -0 4.7042425 4.725825 5.3426828
+ 10300 2000 -0 4.704067 4.7214451 5.3090602
+ 10400 2000 -0 4.7061515 4.7336504 5.3149709
+ 10500 2000 -0 4.709502 4.7327221 5.354315
+ 10600 2000 -0 4.7100093 4.7299141 5.3339651
+ 10700 2000 -0 4.7023375 4.721219 5.2924765
+ 10800 2000 -0 4.7097181 4.7280991 5.3407703
+ 10900 2000 -0 4.7072132 4.7241735 5.3226943
+ 11000 2000 -0 4.7008964 4.7225721 5.3067345
+ 11100 2000 -0 4.7062982 4.72604 5.3241206
+ 11200 2000 -0 4.7078072 4.7273662 5.3241052
+ 11300 2000 -0 4.7047129 4.7246072 5.3017292
+ 11400 2000 -0 4.7070437 4.7248132 5.3266213
+ 11500 2000 -0 4.7074544 4.7270548 5.3233484
+ 11600 2000 -0 4.7065379 4.7229341 5.305733
+ 11700 2000 -0 4.7084526 4.7254471 5.3166146
+ 11800 2000 -0 4.710842 4.7266522 5.3226719
+ 11900 2000 -0 4.7102149 4.7269278 5.3085626
+ 12000 2000 -0 4.7095586 4.7264181 5.3141177
+ 12100 2000 -0 4.711148 4.7283138 5.322567
+ 12200 2000 -0 4.709444 4.7258315 5.3087624
+ 12300 2000 -0 4.7102522 4.7261502 5.3144278
+ 12400 2000 -0 4.7110708 4.7260929 5.3252994
+ 12500 2000 -0 4.7096024 4.7256316 5.3116866
+ 12600 2000 -0 4.7094944 4.7255543 5.3128415
+ 12700 2000 -0 4.7108484 4.7262459 5.3210272
+ 12800 2000 -0 4.7107443 4.726967 5.3162115
+ 12900 2000 -0 4.7103715 4.7272747 5.3161831
+ 13000 2000 -0 4.7111615 4.7274234 5.3195144
+ 13100 2000 -0 4.7107115 4.7270934 5.3171955
+ 13200 2000 -0 4.7105058 4.7266866 5.3152255
+ 13300 2000 -0 4.7111528 4.727238 5.3191341
+ 13400 2000 -0 4.7104746 4.7260372 5.3167924
+ 13500 2000 -0 4.7099999 4.7255337 5.3124374
+ 13600 2000 -0 4.7107353 4.7265814 5.3186421
+ 13700 2000 -0 4.7109478 4.7264837 5.3177188
+ 13800 2000 -0 4.7100596 4.7258467 5.3139152
+ 13900 2000 -0 4.7107621 4.7264007 5.3169692
+ 14000 2000 -0 4.7107395 4.7265627 5.3182922
+ 14100 2000 -0 4.7103907 4.7260697 5.3143929
+ 14200 2000 -0 4.7105034 4.7263416 5.3165362
+ 14300 2000 -0 4.7108127 4.7264373 5.3180601
+ 14400 2000 -0 4.7103102 4.7261005 5.3149927
+ 14500 2000 -0 4.7104753 4.7262846 5.3162597
+ 14600 2000 -0 4.710704 4.7264748 5.3177725
+ 14700 2000 -0 4.7103244 4.7262026 5.3155505
+ 14800 2000 -0 4.7103678 4.7261949 5.3160753
+ 14900 2000 -0 4.7105271 4.7263478 5.3173896
+ 15000 2000 -0 4.7102922 4.7262017 5.315962
+ 15100 2000 -0 4.7102725 4.726208 5.3159691
+ 15200 2000 -0 4.7104136 4.7263526 5.3171242
+ 15300 2000 -0 4.710264 4.7261979 5.3162196
+ 15400 2000 -0 4.7101849 4.7261344 5.315894
+ 15500 2000 -0 4.7103291 4.7262597 5.3168688
+ 15600 2000 -0 4.710259 4.726233 5.3163792
+ 15700 2000 -0 4.7101934 4.7261818 5.315928
+ 15800 2000 -0 4.7103083 4.7262548 5.3166994
+ 15900 2000 -0 4.7102736 4.7262088 5.3164432
+ 16000 2000 -0 4.7102205 4.7261479 5.3159781
+ 16100 2000 -0 4.7103292 4.7262465 5.3165618
+ 16200 2000 -0 4.7103529 4.7262663 5.3165089
+ 16300 2000 -0 4.7103166 4.7262103 5.3160762
+ 16400 2000 -0 4.7104019 4.726244 5.3164669
+ 16500 2000 -0 4.710446 4.726252 5.3165153
+ 16600 2000 -0 4.7104341 4.7262253 5.3161457
+ 16700 2000 -0 4.7105191 4.7262831 5.3164131
+ 16800 2000 -0 4.7105753 4.7263084 5.3165176
+ 16900 2000 -0 4.7105631 4.7262594 5.3162034
+ 17000 2000 -0 4.7106131 4.7262665 5.3163428
+ 17100 2000 -0 4.7106604 4.7262905 5.3164636
+ 17200 2000 -0 4.7106547 4.7262781 5.3162311
+ 17300 2000 -0 4.7106852 4.7262949 5.3162973
+ 17400 2000 -0 4.7107163 4.7263038 5.3164158
+ 17500 2000 -0 4.7106985 4.7262671 5.3162357
+ 17600 2000 -0 4.7107075 4.7262644 5.3162458
+ 17700 2000 -0 4.710735 4.72629 5.3163664
+ 17800 2000 -0 4.7107256 4.7262866 5.3162536
+ 17900 2000 -0 4.710726 4.7262831 5.3162384
+ 18000 2000 -0 4.7107392 4.7262854 5.3163383
+ 18100 2000 -0 4.7107256 4.7262696 5.3162644
+ 18200 2000 -0 4.7107194 4.7262707 5.3162396
+ 18300 2000 -0 4.7107304 4.7262929 5.3163322
+ 18400 2000 -0 4.7107138 4.7262906 5.3162972
+ 18500 2000 -0 4.7106926 4.7262783 5.3162615
+ 18600 2000 -0 4.7106787 4.7262738 5.3163258
+ 18700 2000 -0 4.7106515 4.7262672 5.3163085
+ 18800 2000 -0 4.7106197 4.7262643 5.3162732
+ 18900 2000 -0 4.7105961 4.7262691 5.3163197
+ 19000 2000 -0 4.7105612 4.7262576 5.316309
+ 19100 2000 -0 4.7105201 4.7262362 5.3162634
+ 19200 2000 -0 4.7104918 4.7262275 5.3162855
+ 19300 2000 -0 4.7104649 4.7262324 5.3162818
+ 19400 2000 -0 4.7104396 4.7262192 5.3162447
+ 19500 2000 -0 4.7104236 4.7262151 5.3162575
+ 19600 2000 -0 4.7104091 4.7262051 5.3162561
+ 19700 2000 -0 4.7103951 4.7261932 5.3162232
+ 19800 2000 -0 4.7103936 4.7261935 5.3162311
+ 19900 2000 -0 4.7103982 4.7261999 5.3162407
+ 20000 2000 -0 4.7104029 4.7262015 5.3162218
+ 20100 2000 -0 4.7104142 4.726202 5.3162267
+ 20200 2000 -0 4.7104309 4.7262027 5.3162368
+ 20300 2000 -0 4.7104504 4.7262057 5.3162258
+ 20400 2000 -0 4.7104786 4.7262187 5.3162333
+ 20500 2000 -0 4.7105134 4.7262302 5.3162478
+ 20600 2000 -0 4.7105482 4.7262372 5.3162423
+ 20700 2000 -0 4.7105864 4.7262404 5.3162515
+ 20800 2000 -0 4.7106261 4.7262471 5.3162596
+ 20900 2000 -0 4.7106689 4.7262579 5.316255
+ 21000 2000 -0 4.7107034 4.7262671 5.3162507
+ 21100 2000 -0 4.7107384 4.7262744 5.3162497
+ 21200 2000 -0 4.7107672 4.7262748 5.3162382
+ 21300 2000 -0 4.7107906 4.7262732 5.3162256
+ 21400 2000 -0 4.7108106 4.7262742 5.3162189
+ 21500 2000 -0 4.7108265 4.7262767 5.3162088
+ 21600 2000 -0 4.7108382 4.7262821 5.3161979
+ 21700 2000 -0 4.7108471 4.7262761 5.3161924
+ 21800 2000 -0 4.7108526 4.7262726 5.3161843
+ 21900 2000 -0 4.7108564 4.7262706 5.3161772
+ 22000 2000 -0 4.7108602 4.7262724 5.316177
+ 22100 2000 -0 4.7108625 4.7262751 5.3161775
+ 22200 2000 -0 4.7108622 4.7262758 5.3161772
+ 22300 2000 -0 4.7108596 4.7262749 5.3161806
+ 22400 2000 -0 4.7108543 4.726274 5.3161846
+ 22500 2000 -0 4.7108459 4.7262746 5.3161884
+ 22600 2000 -0 4.7108343 4.7262762 5.3161948
+ 22700 2000 -0 4.7108179 4.7262758 5.3162001
+ 22800 2000 -0 4.7107957 4.7262716 5.3162015
+ 22900 2000 -0 4.710769 4.7262654 5.3162017
+ 23000 2000 -0 4.7107389 4.726259 5.3162004
+ 23100 2000 -0 4.7107066 4.7262529 5.3161958
+ 23200 2000 -0 4.7106737 4.726246 5.3161897
+ 23300 2000 -0 4.7106415 4.7262372 5.3161816
+ 23400 2000 -0 4.7106114 4.7262271 5.3161708
+ 23500 2000 -0 4.7105855 4.7262183 5.31616
+ 23600 2000 -0 4.7105648 4.7262119 5.3161507
+ 23700 2000 -0 4.7105493 4.7262074 5.3161415
+ 23800 2000 -0 4.7105388 4.7262036 5.3161333
+ 23900 2000 -0 4.7105332 4.7262001 5.3161266
+ 24000 2000 -0 4.7105324 4.726198 5.3161208
+ 24100 2000 -0 4.7105379 4.7261987 5.3161176
+ 24200 2000 -0 4.7105467 4.7262021 5.3161163
+ 24300 2000 -0 4.7105614 4.7262068 5.3161163
+ 24400 2000 -0 4.7105809 4.7262121 5.3161172
+ 24500 2000 -0 4.7106056 4.7262183 5.3161194
+ 24600 2000 -0 4.7106355 4.7262261 5.3161222
+ 24700 2000 -0 4.7106703 4.7262357 5.3161253
+ 24800 2000 -0 4.7107088 4.7262461 5.3161282
+ 24900 2000 -0 4.7107493 4.7262556 5.3161293
+ 25000 2000 -0 4.7107901 4.7262637 5.3161281
+ 25100 2000 -0 4.7108296 4.7262709 5.3161249
+ 25200 2000 -0 4.7108664 4.7262775 5.3161194
+ 25300 2000 -0 4.7108991 4.7262828 5.3161118
+ 25400 2000 -0 4.7109269 4.7262863 5.3161024
+ 25500 2000 -0 4.7109494 4.7262877 5.3160916
+ 25600 2000 -0 4.7109671 4.7262877 5.3160803
+ 25700 2000 -0 4.7109809 4.7262876 5.3160696
+ 25800 2000 -0 4.7109916 4.7262876 5.3160602
+ 25900 2000 -0 4.7109995 4.7262877 5.3160521
+ 26000 2000 -0 4.7110054 4.7262875 5.3160457
+ 26100 2000 -0 4.7110094 4.7262874 5.3160411
+ 26200 2000 -0 4.7110117 4.7262882 5.3160388
+ 26300 2000 -0 4.7110127 4.7262891 5.3160382
+ 26400 2000 -0 4.7110121 4.7262905 5.31604
+ 26500 2000 -0 4.711009 4.7262915 5.316043
+ 26600 2000 -0 4.7110027 4.7262919 5.3160469
+ 26700 2000 -0 4.7109927 4.7262915 5.3160515
+ 26800 2000 -0 4.7109782 4.7262906 5.3160561
+ 26900 2000 -0 4.710959 4.7262886 5.3160598
+ 27000 2000 -0 4.7109348 4.7262851 5.316062
+ 27100 2000 -0 4.7109061 4.7262796 5.3160619
+ 27200 2000 -0 4.7108739 4.7262724 5.3160591
+ 27300 2000 -0 4.7108401 4.7262642 5.316054
+ 27400 2000 -0 4.7108063 4.7262557 5.316047
+ 27500 2000 -0 4.7107742 4.7262471 5.3160385
+ 27600 2000 -0 4.7107453 4.7262385 5.3160291
+ 27700 2000 -0 4.7107206 4.7262304 5.3160195
+ 27800 2000 -0 4.7107008 4.7262235 5.3160103
+ 27900 2000 -0 4.7106863 4.7262182 5.3160023
+ 28000 2000 -0 4.710677 4.7262146 5.3159957
+ 28100 2000 -0 4.7106727 4.7262125 5.3159906
+ 28200 2000 -0 4.7106733 4.7262119 5.3159871
+ 28300 2000 -0 4.7106787 4.7262128 5.3159853
+ 28400 2000 -0 4.7106892 4.7262156 5.3159852
+ 28500 2000 -0 4.7107048 4.7262212 5.3159867
+ 28600 2000 -0 4.7107257 4.7262261 5.3159896
+ 28700 2000 -0 4.7107517 4.7262335 5.3159932
+ 28800 2000 -0 4.7107826 4.7262417 5.3159971
+ 28900 2000 -0 4.7108219 4.7262521 5.3160015
+ 29000 2000 -0 4.7108561 4.7262597 5.3160038
+ 29100 2000 -0 4.7108958 4.7262689 5.3160052
+ 29200 2000 -0 4.7109361 4.7262771 5.3160045
+ 29300 2000 -0 4.7109728 4.7262838 5.3160011
+ 29400 2000 -0 4.7110067 4.7262889 5.3159955
+ 29500 2000 -0 4.711036 4.7262925 5.3159877
+ 29600 2000 -0 4.7110603 4.7262948 5.3159785
+ 29700 2000 -0 4.7110799 4.7262957 5.3159685
+ 29800 2000 -0 4.7110949 4.7262956 5.3159584
+ 29900 2000 -0 4.7111061 4.7262949 5.3159489
+ 30000 2000 -0 4.7111143 4.7262941 5.3159407
+ 30100 2000 -0 4.7111193 4.7262933 5.3159341
+ 30200 2000 -0 4.7111243 4.7262932 5.3159294
+ 30300 2000 -0 4.7111269 4.7262935 5.3159266
+ 30400 2000 -0 4.711128 4.7262936 5.3159258
+ 30500 2000 -0 4.7111275 4.7262944 5.3159269
+ 30600 2000 -0 4.711125 4.7262955 5.3159298
+ 30700 2000 -0 4.7111199 4.7262965 5.3159342
+ 30800 2000 -0 4.7111114 4.726297 5.3159393
+ 30900 2000 -0 4.7110988 4.7262967 5.3159447
+ 31000 2000 -0 4.7110815 4.7262952 5.3159497
+ 31100 2000 -0 4.7110595 4.7262923 5.3159535
+ 31200 2000 -0 4.7110323 4.726288 5.3159553
+ 31300 2000 -0 4.7110013 4.726282 5.3159549
+ 31400 2000 -0 4.7109675 4.7262747 5.3159519
+ 31500 2000 -0 4.7109327 4.7262663 5.3159466
+ 31600 2000 -0 4.7108986 4.7262575 5.3159394
+ 31700 2000 -0 4.710867 4.7262487 5.315931
+ 31800 2000 -0 4.7108391 4.7262405 5.3159221
+ 31900 2000 -0 4.7108159 4.7262331 5.3159133
+ 32000 2000 -0 4.7107977 4.726227 5.3159052
+ 32100 2000 -0 4.710785 4.7262223 5.3158983
+ 32200 2000 -0 4.710777 4.7262191 5.3158927
+ 32300 2000 -0 4.7107748 4.7262178 5.3158888
+ 32400 2000 -0 4.7107773 4.7262181 5.3158866
+ 32500 2000 -0 4.7107837 4.7262199 5.3158861
+ 32600 2000 -0 4.7107949 4.7262234 5.3158872
+ 32700 2000 -0 4.710812 4.7262285 5.3158898
+ 32800 2000 -0 4.7108346 4.7262358 5.3158935
+ 32900 2000 -0 4.7108627 4.7262432 5.3158979
+ 33000 2000 -0 4.7108948 4.7262519 5.3159023
+ 33100 2000 -0 4.7109317 4.7262609 5.3159063
+ 33200 2000 -0 4.7109705 4.7262703 5.3159091
+ 33300 2000 -0 4.7110099 4.7262791 5.3159101
+ 33400 2000 -0 4.7110481 4.7262867 5.3159088
+ 33500 2000 -0 4.7110833 4.726293 5.3159051
+ 33600 2000 -0 4.7111146 4.7262976 5.3158989
+ 33700 2000 -0 4.7111412 4.7263004 5.3158909
+ 33800 2000 -0 4.7111628 4.7263019 5.3158816
+ 33900 2000 -0 4.7111797 4.7263023 5.3158719
+ 34000 2000 -0 4.7111926 4.7263021 5.3158624
+ 34100 2000 -0 4.7112021 4.7263014 5.3158538
+ 34200 2000 -0 4.7112089 4.7263006 5.3158466
+ 34300 2000 -0 4.7112136 4.7263001 5.3158411
+ 34400 2000 -0 4.7112166 4.7262999 5.3158375
+ 34500 2000 -0 4.7112182 4.7263002 5.3158359
+ 34600 2000 -0 4.7112183 4.7263009 5.3158363
+ 34700 2000 -0 4.7112167 4.7263019 5.3158385
+ 34800 2000 -0 4.7112128 4.726303 5.3158423
+ 34900 2000 -0 4.711206 4.7263038 5.3158473
+ 35000 2000 -0 4.7111956 4.7263041 5.315853
+ 35100 2000 -0 4.7111808 4.7263035 5.3158586
+ 35200 2000 -0 4.7111612 4.7263016 5.3158636
+ 35300 2000 -0 4.7111367 4.7262982 5.315867
+ 35400 2000 -0 4.7111076 4.7262939 5.3158682
+ 35500 2000 -0 4.711075 4.7262874 5.3158674
+ 35600 2000 -0 4.7110402 4.726279 5.3158635
+ 35700 2000 -0 4.7110052 4.7262704 5.3158577
+ 35800 2000 -0 4.7109715 4.7262616 5.3158502
+ 35900 2000 -0 4.7109409 4.726253 5.3158418
+ 36000 2000 -0 4.7109144 4.7262451 5.3158331
+ 36100 2000 -0 4.7108927 4.7262382 5.3158248
+ 36200 2000 -0 4.7108762 4.7262327 5.3158173
+ 36300 2000 -0 4.7108649 4.7262287 5.3158111
+ 36400 2000 -0 4.7108587 4.7262271 5.3158065
+ 36500 2000 -0 4.7108574 4.7262255 5.3158035
+ 36600 2000 -0 4.710861 4.7262264 5.3158022
+ 36700 2000 -0 4.7108696 4.726229 5.3158026
+ 36800 2000 -0 4.7108832 4.7262332 5.3158045
+ 36900 2000 -0 4.7109021 4.7262389 5.3158078
+ 37000 2000 -0 4.7109262 4.726246 5.315812
+ 37100 2000 -0 4.7109553 4.7262543 5.3158168
+ 37200 2000 -0 4.7109889 4.7262632 5.3158214
+ 37300 2000 -0 4.7110258 4.7262726 5.3158253
+ 37400 2000 -0 4.7110646 4.7262817 5.3158277
+ 37500 2000 -0 4.7111043 4.7262909 5.3158284
+ 37600 2000 -0 4.7111414 4.7262979 5.3158264
+ 37700 2000 -0 4.7111756 4.7263035 5.315822
+ 37800 2000 -0 4.7112054 4.7263076 5.3158153
+ 37900 2000 -0 4.7112301 4.7263101 5.3158068
+ 38000 2000 -0 4.7112498 4.7263113 5.3157976
+ 38100 2000 -0 4.711265 4.7263115 5.3157881
+ 38200 2000 -0 4.7112763 4.726311 5.315779
+ 38300 2000 -0 4.7112845 4.7263104 5.3157711
+ 38400 2000 -0 4.7112902 4.7263097 5.3157647
+ 38500 2000 -0 4.7112939 4.7263093 5.31576
+ 38600 2000 -0 4.7112962 4.7263094 5.3157573
+ 38700 2000 -0 4.711297 4.7263099 5.3157567
+ 38800 2000 -0 4.7112963 4.7263107 5.3157579
+ 38900 2000 -0 4.7112937 4.7263118 5.315761
+ 39000 2000 -0 4.7112886 4.7263129 5.3157655
+ 39100 2000 -0 4.7112804 4.7263136 5.3157709
+ 39200 2000 -0 4.7112682 4.7263137 5.3157769
+ 39300 2000 -0 4.7112515 4.7263127 5.3157826
+ 39400 2000 -0 4.71123 4.7263103 5.3157872
+ 39500 2000 -0 4.7112035 4.7263063 5.31579
+ 39600 2000 -0 4.7111728 4.7263008 5.3157907
+ 39700 2000 -0 4.711139 4.7262939 5.3157887
+ 39800 2000 -0 4.7111037 4.7262859 5.3157844
+ 39900 2000 -0 4.7110687 4.7262772 5.3157781
+ 40000 2000 -0 4.7110358 4.7262685 5.3157704
+ 40100 2000 -0 4.7110064 4.7262601 5.3157619
+ 40200 2000 -0 4.7109813 4.7262525 5.3157535
+ 40300 2000 -0 4.7109613 4.7262462 5.3157456
+ 40400 2000 -0 4.7109465 4.7262412 5.3157387
+ 40500 2000 -0 4.7109368 4.7262378 5.3157332
+ 40600 2000 -0 4.7109321 4.726236 5.3157293
+ 40700 2000 -0 4.7109324 4.7262358 5.315727
+ 40800 2000 -0 4.7109375 4.7262374 5.3157264
+ 40900 2000 -0 4.7109477 4.7262406 5.3157276
+ 41000 2000 -0 4.7109629 4.7262454 5.3157302
+ 41100 2000 -0 4.7109834 4.7262517 5.3157339
+ 41200 2000 -0 4.7110092 4.7262592 5.3157386
+ 41300 2000 -0 4.7110397 4.7262678 5.3157435
+ 41400 2000 -0 4.7110744 4.726277 5.3157481
+ 41500 2000 -0 4.711112 4.7262863 5.3157517
+ 41600 2000 -0 4.7111509 4.7262953 5.3157536
+ 41700 2000 -0 4.7111892 4.7263034 5.3157532
+ 41800 2000 -0 4.7112253 4.7263101 5.3157504
+ 41900 2000 -0 4.7112578 4.7263153 5.3157453
+ 42000 2000 -0 4.7112856 4.7263188 5.315738
+ 42100 2000 -0 4.7113084 4.7263209 5.3157294
+ 42200 2000 -0 4.7113263 4.7263217 5.31572
+ 42300 2000 -0 4.7113399 4.7263217 5.3157107
+ 42400 2000 -0 4.7113499 4.7263212 5.3157021
+ 42500 2000 -0 4.7113569 4.7263205 5.3156948
+ 42600 2000 -0 4.7113617 4.7263199 5.3156891
+ 42700 2000 -0 4.7113648 4.7263197 5.3156852
+ 42800 2000 -0 4.7113664 4.7263199 5.3156833
+ 42900 2000 -0 4.7113666 4.7263206 5.3156835
+ 43000 2000 -0 4.7113652 4.7263216 5.3156855
+ 43100 2000 -0 4.7113616 4.7263228 5.3156891
+ 43200 2000 -0 4.7113555 4.7263238 5.3156942
+ 43300 2000 -0 4.7113458 4.7263244 5.3157
+ 43400 2000 -0 4.7113321 4.7263241 5.315706
+ 43500 2000 -0 4.7113137 4.7263227 5.3157116
+ 43600 2000 -0 4.7112903 4.7263199 5.3157158
+ 43700 2000 -0 4.7112621 4.7263155 5.3157181
+ 43800 2000 -0 4.7112301 4.7263095 5.315718
+ 43900 2000 -0 4.7111955 4.7263022 5.3157154
+ 44000 2000 -0 4.71116 4.7262939 5.3157104
+ 44100 2000 -0 4.7111254 4.7262852 5.3157037
+ 44200 2000 -0 4.7110933 4.7262765 5.3156958
+ 44300 2000 -0 4.7110651 4.7262684 5.3156873
+ 44400 2000 -0 4.7110416 4.7262613 5.3156791
+ 44500 2000 -0 4.7110231 4.7262554 5.3156716
+ 44600 2000 -0 4.7110098 4.7262509 5.3156652
+ 44700 2000 -0 4.7110017 4.726248 5.3156603
+ 44800 2000 -0 4.7109984 4.7262468 5.315657
+ 44900 2000 -0 4.7110001 4.7262473 5.3156554
+ 45000 2000 -0 4.7110067 4.7262494 5.3156555
+ 45100 2000 -0 4.7110184 4.7262532 5.3156573
+ 45200 2000 -0 4.7110351 4.7262585 5.3156604
+ 45300 2000 -0 4.7110572 4.7262652 5.3156645
+ 45400 2000 -0 4.7110844 4.7262732 5.3156695
+ 45500 2000 -0 4.7111163 4.726282 5.3156745
+ 45600 2000 -0 4.7111519 4.7262913 5.3156789
+ 45700 2000 -0 4.7111899 4.7263006 5.3156821
+ 45800 2000 -0 4.7112287 4.7263093 5.3156834
+ 45900 2000 -0 4.7112664 4.7263171 5.3156824
+ 46000 2000 -0 4.7113014 4.7263234 5.315679
+ 46100 2000 -0 4.7113323 4.726328 5.3156732
+ 46200 2000 -0 4.7113584 4.7263312 5.3156655
+ 46300 2000 -0 4.7113795 4.7263328 5.3156566
+ 46400 2000 -0 4.7113959 4.7263333 5.3156473
+ 46500 2000 -0 4.7114081 4.7263331 5.3156382
+ 46600 2000 -0 4.711417 4.7263325 5.3156301
+ 46700 2000 -0 4.7114231 4.7263319 5.3156233
+ 46800 2000 -0 4.7114273 4.7263314 5.3156182
+ 46900 2000 -0 4.7114297 4.7263314 5.3156151
+ 47000 2000 -0 4.7114308 4.7263317 5.3156139
+ 47100 2000 -0 4.7114304 4.7263325 5.3156147
+ 47200 2000 -0 4.7114283 4.7263336 5.3156173
+ 47300 2000 -0 4.7114239 4.7263348 5.3156216
+ 47400 2000 -0 4.7114167 4.7263358 5.315627
+ 47500 2000 -0 4.7114058 4.7263362 5.315633
+ 47600 2000 -0 4.7113906 4.7263358 5.3156392
+ 47700 2000 -0 4.7113705 4.7263338 5.3156444
+ 47800 2000 -0 4.7113455 4.7263306 5.3156482
+ 47900 2000 -0 4.711316 4.7263257 5.3156499
+ 48000 2000 -0 4.711284 4.7263196 5.3156491
+ 48100 2000 -0 4.7112478 4.7263117 5.3156458
+ 48200 2000 -0 4.7112122 4.7263033 5.3156404
+ 48300 2000 -0 4.7111781 4.7262945 5.3156333
+ 48400 2000 -0 4.711147 4.726286 5.3156252
+ 48500 2000 -0 4.71112 4.7262782 5.3156168
+ 48600 2000 -0 4.7110979 4.7262714 5.3156088
+ 48700 2000 -0 4.7110808 4.7262659 5.3156017
+ 48800 2000 -0 4.711069 4.7262619 5.3155958
+ 48900 2000 -0 4.7110622 4.7262595 5.3155915
+ 49000 2000 -0 4.7110603 4.7262589 5.3155887
+ 49100 2000 -0 4.7110634 4.7262598 5.3155877
+ 49200 2000 -0 4.7110713 4.7262625 5.3155884
+ 49300 2000 -0 4.7110844 4.7262667 5.3155906
+ 49400 2000 -0 4.7111026 4.7262725 5.3155941
+ 49500 2000 -0 4.711126 4.7262796 5.3155987
+ 49600 2000 -0 4.7111545 4.7262879 5.3156038
+ 49700 2000 -0 4.7111875 4.7262969 5.3156087
+ 49800 2000 -0 4.7112239 4.7263063 5.3156129
+ 49900 2000 -0 4.7112622 4.7263155 5.3156158
+ 50000 2000 -0 4.7113008 4.726324 5.3156165
+ 50100 2000 -0 4.7113377 4.7263314 5.3156149
+ 50200 2000 -0 4.7113716 4.7263373 5.3156108
+ 50300 2000 -0 4.7114011 4.7263415 5.3156045
+ 50400 2000 -0 4.7114257 4.7263442 5.3155964
+ 50500 2000 -0 4.7114453 4.7263455 5.3155874
+ 50600 2000 -0 4.7114604 4.7263458 5.3155782
+ 50700 2000 -0 4.7114715 4.7263454 5.3155694
+ 50800 2000 -0 4.7114794 4.7263448 5.3155616
+ 50900 2000 -0 4.7114848 4.7263442 5.3155554
+ 51000 2000 -0 4.7114884 4.7263439 5.3155509
+ 51100 2000 -0 4.7114904 4.726344 5.3155483
+ 51200 2000 -0 4.7114909 4.7263445 5.3155478
+ 51300 2000 -0 4.71149 4.7263454 5.3155492
+ 51400 2000 -0 4.7114873 4.7263466 5.3155523
+ 51500 2000 -0 4.7114821 4.7263478 5.315557
+ 51600 2000 -0 4.7114739 4.7263487 5.3155627
+ 51700 2000 -0 4.7114618 4.7263489 5.3155689
+ 51800 2000 -0 4.7114452 4.7263481 5.3155749
+ 51900 2000 -0 4.7114238 4.7263459 5.31558
+ 52000 2000 -0 4.7113974 4.7263422 5.3155833
+ 52100 2000 -0 4.7113667 4.7263369 5.3155844
+ 52200 2000 -0 4.7113328 4.7263302 5.315583
+ 52300 2000 -0 4.7112973 4.7263223 5.3155792
+ 52400 2000 -0 4.7112619 4.7263138 5.3155733
+ 52500 2000 -0 4.7112284 4.7263051 5.3155659
+ 52600 2000 -0 4.7111982 4.7262967 5.3155577
+ 52700 2000 -0 4.7111724 4.7262891 5.3155495
+ 52800 2000 -0 4.7111515 4.7262827 5.3155417
+ 52900 2000 -0 4.7111358 4.7262776 5.3155349
+ 53000 2000 -0 4.7111253 4.7262741 5.3155295
+ 53100 2000 -0 4.7111197 4.7262722 5.3155256
+ 53200 2000 -0 4.7111191 4.726272 5.3155234
+ 53300 2000 -0 4.7111233 4.7262734 5.3155228
+ 53400 2000 -0 4.7111325 4.7262764 5.315524
+ 53500 2000 -0 4.7111468 4.7262811 5.3155267
+ 53600 2000 -0 4.7111665 4.7262869 5.3155307
+ 53700 2000 -0 4.711191 4.7262947 5.3155354
+ 53800 2000 -0 4.7112206 4.7263032 5.3155405
+ 53900 2000 -0 4.7112545 4.7263124 5.3155454
+ 54000 2000 -0 4.7112915 4.7263219 5.3155494
+ 54100 2000 -0 4.71133 4.726331 5.3155517
+ 54200 2000 -0 4.7113682 4.7263393 5.315552
+ 54300 2000 -0 4.7114045 4.7263463 5.3155498
+ 54400 2000 -0 4.7114372 4.7263518 5.3155451
+ 54500 2000 -0 4.7114654 4.7263556 5.3155384
+ 54600 2000 -0 4.7114887 4.7263579 5.3155301
+ 54700 2000 -0 4.711507 4.726359 5.315521
+ 54800 2000 -0 4.7115209 4.7263593 5.3155118
+ 54900 2000 -0 4.7115311 4.7263587 5.3155033
+ 55000 2000 -0 4.7115383 4.726358 5.3154959
+ 55100 2000 -0 4.7115431 4.7263575 5.3154901
+ 55200 2000 -0 4.7115462 4.7263573 5.3154862
+ 55300 2000 -0 4.7115477 4.7263575 5.3154841
+ 55400 2000 -0 4.7115479 4.7263581 5.3154841
+ 55500 2000 -0 4.7115465 4.7263592 5.315486
+ 55600 2000 -0 4.7115432 4.7263604 5.3154896
+ 55700 2000 -0 4.7115373 4.7263616 5.3154947
+ 55800 2000 -0 4.7115281 4.7263624 5.3155006
+ 55900 2000 -0 4.7115149 4.7263624 5.3155069
+ 56000 2000 -0 4.7114971 4.7263613 5.3155128
+ 56100 2000 -0 4.7114744 4.7263589 5.3155175
+ 56200 2000 -0 4.711447 4.7263548 5.3155205
+ 56300 2000 -0 4.7114152 4.7263493 5.3155209
+ 56400 2000 -0 4.7113807 4.7263423 5.315519
+ 56500 2000 -0 4.711345 4.7263343 5.3155148
+ 56600 2000 -0 4.7113099 4.7263257 5.3155083
+ 56700 2000 -0 4.7112769 4.726317 5.3155008
+ 56800 2000 -0 4.7112477 4.7263089 5.3154926
+ 56900 2000 -0 4.7112229 4.7263016 5.3154844
+ 57000 2000 -0 4.7112032 4.7262955 5.3154769
+ 57100 2000 -0 4.7111887 4.7262908 5.3154705
+ 57200 2000 -0 4.7111792 4.7262877 5.3154654
+ 57300 2000 -0 4.7111748 4.7262862 5.3154619
+ 57400 2000 -0 4.7111752 4.7262864 5.3154602
+ 57500 2000 -0 4.7111806 4.7262883 5.315461
+ 57600 2000 -0 4.711191 4.7262917 5.3154625
+ 57700 2000 -0 4.7112065 4.7262968 5.3154658
+ 57800 2000 -0 4.7112271 4.7263034 5.3154698
+ 57900 2000 -0 4.7112529 4.7263111 5.3154746
+ 58000 2000 -0 4.7112835 4.7263199 5.3154801
+ 58100 2000 -0 4.7113181 4.7263292 5.3154848
+ 58200 2000 -0 4.7113555 4.7263387 5.3154884
+ 58300 2000 -0 4.7113941 4.7263477 5.3154905
+ 58400 2000 -0 4.7114319 4.7263558 5.3154902
+ 58500 2000 -0 4.7114674 4.7263625 5.3154874
+ 58600 2000 -0 4.7114992 4.7263677 5.3154824
+ 58700 2000 -0 4.7115262 4.7263712 5.3154753
+ 58800 2000 -0 4.7115483 4.7263732 5.3154666
+ 58900 2000 -0 4.7115656 4.7263742 5.3154576
+ 59000 2000 -0 4.7115785 4.7263741 5.3154486
+ 59100 2000 -0 4.7115886 4.7263741 5.3154403
+ 59200 2000 -0 4.7115944 4.726373 5.3154332
+ 59300 2000 -0 4.7115987 4.7263726 5.3154279
+ 59400 2000 -0 4.7116014 4.7263725 5.3154243
+ 59500 2000 -0 4.7116026 4.7263729 5.3154228
+ 59600 2000 -0 4.7116024 4.7263737 5.3154233
+ 59700 2000 -0 4.7116006 4.7263748 5.3154255
+ 59800 2000 -0 4.7115967 4.7263761 5.3154295
+ 59900 2000 -0 4.7115901 4.7263772 5.3154349
+ 60000 2000 -0 4.7115801 4.7263779 5.3154409
+ 60100 2000 -0 4.7115659 4.7263778 5.3154472
+ 60200 2000 -0 4.7115471 4.7263764 5.315453
+ 60300 2000 -0 4.7115233 4.7263737 5.3154574
+ 60400 2000 -0 4.7114947 4.7263693 5.3154599
+ 60500 2000 -0 4.7114623 4.7263635 5.31546
+ 60600 2000 -0 4.7114273 4.7263565 5.3154576
+ 60700 2000 -0 4.7113916 4.7263481 5.3154528
+ 60800 2000 -0 4.7113567 4.7263394 5.3154463
+ 60900 2000 -0 4.7113244 4.7263309 5.3154385
+ 61000 2000 -0 4.7112959 4.7263229 5.3154303
+ 61100 2000 -0 4.7112722 4.7263158 5.3154223
+ 61200 2000 -0 4.7112535 4.72631 5.315415
+ 61300 2000 -0 4.71124 4.7263057 5.3154088
+ 61400 2000 -0 4.7112315 4.7263029 5.3154041
+ 61500 2000 -0 4.711228 4.7263017 5.315401
+ 61600 2000 -0 4.7112293 4.7263023 5.3153996
+ 61700 2000 -0 4.7112355 4.7263045 5.3153999
+ 61800 2000 -0 4.7112468 4.7263085 5.3154018
+ 61900 2000 -0 4.7112631 4.7263138 5.3154051
+ 62000 2000 -0 4.7112847 4.7263205 5.3154094
+ 62100 2000 -0 4.7113115 4.726329 5.3154147
+ 62200 2000 -0 4.7113429 4.7263379 5.3154198
+ 62300 2000 -0 4.7113781 4.726347 5.3154245
+ 62400 2000 -0 4.7114158 4.7263563 5.315428
+ 62500 2000 -0 4.7114544 4.7263652 5.3154296
+ 62600 2000 -0 4.7114918 4.726373 5.3154289
+ 62700 2000 -0 4.7115267 4.7263795 5.3154257
+ 62800 2000 -0 4.7115575 4.7263843 5.3154202
+ 62900 2000 -0 4.7115836 4.7263876 5.3154128
+ 63000 2000 -0 4.7116046 4.7263894 5.3154041
+ 63100 2000 -0 4.711621 4.72639 5.315395
+ 63200 2000 -0 4.7116331 4.7263899 5.315386
+ 63300 2000 -0 4.7116418 4.7263894 5.315378
+ 63400 2000 -0 4.7116478 4.7263889 5.3153713
+ 63500 2000 -0 4.7116518 4.7263885 5.3153663
+ 63600 2000 -0 4.7116541 4.7263885 5.3153631
+ 63700 2000 -0 4.711655 4.7263889 5.315362
+ 63800 2000 -0 4.7116545 4.7263898 5.3153629
+ 63900 2000 -0 4.7116523 4.726391 5.3153655
+ 64000 2000 -0 4.711648 4.7263923 5.3153698
+ 64100 2000 -0 4.7116408 4.7263934 5.3153754
+ 64200 2000 -0 4.71163 4.726394 5.3153816
+ 64300 2000 -0 4.711615 4.7263937 5.3153879
+ 64400 2000 -0 4.7115953 4.7263922 5.3153935
+ 64500 2000 -0 4.7115705 4.7263891 5.3153977
+ 64600 2000 -0 4.7115412 4.7263845 5.3153998
+ 64700 2000 -0 4.7115082 4.7263784 5.3153995
+ 64800 2000 -0 4.7114729 4.726371 5.3153966
+ 64900 2000 -0 4.7114371 4.7263627 5.3153915
+ 65000 2000 -0 4.7114025 4.7263541 5.3153848
+ 65100 2000 -0 4.7113708 4.7263456 5.3153769
+ 65200 2000 -0 4.7113431 4.7263378 5.3153687
+ 65300 2000 -0 4.7113201 4.7263309 5.3153608
+ 65400 2000 -0 4.7113023 4.7263254 5.3153537
+ 65500 2000 -0 4.7112896 4.7263213 5.3153478
+ 65600 2000 -0 4.711282 4.7263188 5.3153434
+ 65700 2000 -0 4.7112792 4.726318 5.3153406
+ 65800 2000 -0 4.7112814 4.7263188 5.3153395
+ 65900 2000 -0 4.7112884 4.7263213 5.3153401
+ 66000 2000 -0 4.7113004 4.7263254 5.3153423
+ 66100 2000 -0 4.7113176 4.7263311 5.3153458
+ 66200 2000 -0 4.71134 4.7263381 5.3153504
+ 66300 2000 -0 4.7113676 4.7263463 5.3153556
+ 66400 2000 -0 4.7113996 4.7263553 5.3153608
+ 66500 2000 -0 4.7114353 4.7263648 5.3153654
+ 66600 2000 -0 4.7114733 4.7263742 5.3153687
+ 66700 2000 -0 4.7115117 4.7263829 5.3153699
+ 66800 2000 -0 4.7115488 4.7263906 5.3153689
+ 66900 2000 -0 4.711583 4.7263968 5.3153653
+ 67000 2000 -0 4.7116131 4.7264014 5.3153595
+ 67100 2000 -0 4.7116383 4.7264044 5.3153518
+ 67200 2000 -0 4.7116585 4.726406 5.3153431
+ 67300 2000 -0 4.7116741 4.7264065 5.315334
+ 67400 2000 -0 4.7116856 4.7264063 5.3153251
+ 67500 2000 -0 4.7116938 4.7264058 5.3153173
+ 67600 2000 -0 4.7116994 4.7264052 5.3153109
+ 67700 2000 -0 4.711703 4.7264049 5.3153062
+ 67800 2000 -0 4.7117052 4.7264052 5.3153034
+ 67900 2000 -0 4.7117057 4.7264056 5.3153026
+ 68000 2000 -0 4.711705 4.7264065 5.3153038
+ 68100 2000 -0 4.7117024 4.7264077 5.3153067
+ 68200 2000 -0 4.7116977 4.726409 5.3153113
+ 68300 2000 -0 4.71169 4.7264101 5.315317
+ 68400 2000 -0 4.7116786 4.7264106 5.3153233
+ 68500 2000 -0 4.7116629 4.7264101 5.3153296
+ 68600 2000 -0 4.7116424 4.7264084 5.3153351
+ 68700 2000 -0 4.7116169 4.7264052 5.315339
+ 68800 2000 -0 4.7115869 4.7264004 5.3153408
+ 68900 2000 -0 4.7115534 4.726394 5.3153401
+ 69000 2000 -0 4.7115179 4.7263865 5.3153369
+ 69100 2000 -0 4.7114821 4.7263781 5.3153316
+ 69200 2000 -0 4.7114479 4.7263695 5.3153247
+ 69300 2000 -0 4.7114166 4.7263611 5.3153167
+ 69400 2000 -0 4.7113895 4.7263534 5.3153086
+ 69500 2000 -0 4.7113673 4.7263467 5.3153008
+ 69600 2000 -0 4.7113501 4.7263414 5.3152938
+ 69700 2000 -0 4.7113382 4.7263375 5.3152882
+ 69800 2000 -0 4.7113312 4.7263353 5.315284
+ 69900 2000 -0 4.7113291 4.7263347 5.3152815
+ 70000 2000 -0 4.7113319 4.7263358 5.3152806
+ 70100 2000 -0 4.7113396 4.7263385 5.3152815
+ 70200 2000 -0 4.7113523 4.7263428 5.315284
+ 70300 2000 -0 4.7113701 4.7263487 5.3152876
+ 70400 2000 -0 4.7113932 4.7263559 5.3152924
+ 70500 2000 -0 4.7114213 4.7263643 5.3152977
+ 70600 2000 -0 4.7114539 4.7263734 5.3153028
+ 70700 2000 -0 4.7114899 4.7263829 5.3153073
+ 70800 2000 -0 4.711528 4.7263922 5.3153104
+ 70900 2000 -0 4.7115663 4.7264009 5.3153114
+ 71000 2000 -0 4.7116031 4.7264084 5.31531
+ 71100 2000 -0 4.7116368 4.7264144 5.3153062
+ 71200 2000 -0 4.7116662 4.7264187 5.3153001
+ 71300 2000 -0 4.7116908 4.7264215 5.3152923
+ 71400 2000 -0 4.7117103 4.726423 5.3152835
+ 71500 2000 -0 4.7117253 4.7264234 5.3152743
+ 71600 2000 -0 4.7117363 4.7264232 5.3152656
+ 71700 2000 -0 4.7117441 4.7264226 5.315258
+ 71800 2000 -0 4.7117494 4.7264221 5.3152518
+ 71900 2000 -0 4.7117527 4.7264218 5.3152473
+ 72000 2000 -0 4.7117546 4.726422 5.3152448
+ 72100 2000 -0 4.711755 4.7264226 5.3152443
+ 72200 2000 -0 4.711754 4.7264236 5.3152457
+ 72300 2000 -0 4.7117512 4.7264249 5.3152489
+ 72400 2000 -0 4.7117461 4.7264262 5.3152537
+ 72500 2000 -0 4.711738 4.7264272 5.3152595
+ 72600 2000 -0 4.7117262 4.7264276 5.3152659
+ 72700 2000 -0 4.7117099 4.726427 5.3152721
+ 72800 2000 -0 4.7116887 4.7264251 5.3152775
+ 72900 2000 -0 4.7116626 4.7264217 5.3152812
+ 73000 2000 -0 4.7116322 4.7264167 5.3152828
+ 73100 2000 -0 4.7115983 4.7264103 5.3152818
+ 73200 2000 -0 4.7115627 4.7264026 5.3152784
+ 73300 2000 -0 4.711527 4.7263942 5.3152729
+ 73400 2000 -0 4.7114929 4.7263856 5.3152658
+ 73500 2000 -0 4.7114621 4.7263772 5.3152578
+ 73600 2000 -0 4.7114355 4.7263696 5.3152497
+ 73700 2000 -0 4.7114138 4.7263631 5.315242
+ 73800 2000 -0 4.7113972 4.726358 5.3152352
+ 73900 2000 -0 4.7113858 4.7263543 5.3152297
+ 74000 2000 -0 4.7113794 4.7263522 5.3152258
+ 74100 2000 -0 4.7113778 4.7263519 5.3152235
+ 74200 2000 -0 4.711381 4.7263531 5.3152228
+ 74300 2000 -0 4.7113892 4.726356 5.3152239
+ 74400 2000 -0 4.7114024 4.7263605 5.3152265
+ 74500 2000 -0 4.7114207 4.7263666 5.3152303
+ 74600 2000 -0 4.7114443 4.7263739 5.3152352
+ 74700 2000 -0 4.7114729 4.7263824 5.3152405
+ 74800 2000 -0 4.7115059 4.7263916 5.3152457
+ 74900 2000 -0 4.7115422 4.7264011 5.31525
+ 75000 2000 -0 4.7115803 4.7264104 5.315253
+ 75100 2000 -0 4.7116185 4.7264193 5.3152538
+ 75200 2000 -0 4.7116548 4.7264265 5.3152525
+ 75300 2000 -0 4.7116882 4.7264323 5.3152482
+ 75400 2000 -0 4.7117172 4.7264365 5.3152419
+ 75500 2000 -0 4.7117411 4.7264392 5.315234
+ 75600 2000 -0 4.7117602 4.7264405 5.3152251
+ 75700 2000 -0 4.7117747 4.7264409 5.315216
+ 75800 2000 -0 4.7117853 4.7264406 5.3152074
+ 75900 2000 -0 4.7117928 4.72644 5.3151999
+ 76000 2000 -0 4.7117978 4.7264395 5.3151939
+ 76100 2000 -0 4.711801 4.7264393 5.3151896
+ 76200 2000 -0 4.7118027 4.7264395 5.3151873
+ 76300 2000 -0 4.711803 4.7264401 5.315187
+ 76400 2000 -0 4.7118019 4.7264412 5.3151886
+ 76500 2000 -0 4.7117989 4.7264425 5.315192
+ 76600 2000 -0 4.7117935 4.7264438 5.3151969
+ 76700 2000 -0 4.7117851 4.7264448 5.3152028
+ 76800 2000 -0 4.7117728 4.7264451 5.3152092
+ 76900 2000 -0 4.7117561 4.7264445 5.3152155
+ 77000 2000 -0 4.7117345 4.7264425 5.3152208
+ 77100 2000 -0 4.711708 4.726439 5.3152243
+ 77200 2000 -0 4.7116772 4.7264338 5.3152257
+ 77300 2000 -0 4.7116431 4.7264273 5.3152246
+ 77400 2000 -0 4.7116073 4.7264195 5.315221
+ 77500 2000 -0 4.7115717 4.7264111 5.3152153
+ 77600 2000 -0 4.7115378 4.7264025 5.3152082
+ 77700 2000 -0 4.7115073 4.7263942 5.3152002
+ 77800 2000 -0 4.711481 4.7263867 5.3151921
+ 77900 2000 -0 4.7114597 4.7263803 5.3151844
+ 78000 2000 -0 4.7114436 4.7263752 5.3151778
+ 78100 2000 -0 4.7114325 4.7263717 5.3151724
+ 78200 2000 -0 4.7114265 4.7263698 5.3151686
+ 78300 2000 -0 4.7114252 4.7263695 5.3151664
+ 78400 2000 -0 4.7114288 4.7263709 5.3151659
+ 78500 2000 -0 4.7114373 4.726374 5.3151672
+ 78600 2000 -0 4.7114509 4.7263786 5.3151699
+ 78700 2000 -0 4.7114696 4.7263847 5.3151738
+ 78800 2000 -0 4.7114935 4.7263922 5.3151788
+ 78900 2000 -0 4.7115224 4.7264007 5.3151842
+ 79000 2000 -0 4.7115556 4.72641 5.3151893
+ 79100 2000 -0 4.711592 4.7264195 5.3151936
+ 79200 2000 -0 4.7116302 4.7264287 5.3151964
+ 79300 2000 -0 4.7116683 4.7264372 5.3151971
+ 79400 2000 -0 4.7117047 4.7264451 5.3151953
+ 79500 2000 -0 4.7117376 4.7264503 5.3151911
+ 79600 2000 -0 4.7117662 4.7264544 5.3151847
+ 79700 2000 -0 4.7117898 4.7264569 5.3151768
+ 79800 2000 -0 4.7118085 4.7264582 5.3151679
+ 79900 2000 -0 4.7118227 4.7264585 5.3151588
+ 80000 2000 -0 4.7118331 4.7264582 5.3151503
+ 80100 2000 -0 4.7118403 4.7264576 5.3151429
+ 80200 2000 -0 4.7118452 4.7264571 5.3151369
+ 80300 2000 -0 4.7118483 4.7264569 5.3151328
+ 80400 2000 -0 4.7118498 4.7264572 5.3151307
+ 80500 2000 -0 4.71185 4.7264578 5.3151305
+ 80600 2000 -0 4.7118487 4.7264589 5.3151322
+ 80700 2000 -0 4.7118456 4.7264602 5.3151357
+ 80800 2000 -0 4.7118401 4.7264616 5.3151407
+ 80900 2000 -0 4.7118314 4.7264626 5.3151467
+ 81000 2000 -0 4.7118189 4.7264629 5.3151532
+ 81100 2000 -0 4.7118019 4.7264622 5.3151594
+ 81200 2000 -0 4.7117801 4.7264601 5.3151646
+ 81300 2000 -0 4.7117533 4.7264565 5.3151681
+ 81400 2000 -0 4.7117222 4.7264513 5.3151694
+ 81500 2000 -0 4.711688 4.7264446 5.3151682
+ 81600 2000 -0 4.7116526 4.7264373 5.3151642
+ 81700 2000 -0 4.7116166 4.7264285 5.3151589
+ 81800 2000 -0 4.7115828 4.7264198 5.3151514
+ 81900 2000 -0 4.7115524 4.7264116 5.3151435
+ 82000 2000 -0 4.7115264 4.7264041 5.3151355
+ 82100 2000 -0 4.7115053 4.7263978 5.3151278
+ 82200 2000 -0 4.7114894 4.7263928 5.3151212
+ 82300 2000 -0 4.7114786 4.7263894 5.315116
+ 82400 2000 -0 4.7114728 4.7263875 5.3151123
+ 82500 2000 -0 4.7114717 4.7263874 5.3151102
+ 82600 2000 -0 4.7114755 4.7263888 5.3151098
+ 82700 2000 -0 4.7114842 4.726392 5.3151111
+ 82800 2000 -0 4.7114979 4.7263967 5.3151139
+ 82900 2000 -0 4.7115168 4.7264029 5.315118
+ 83000 2000 -0 4.7115409 4.7264104 5.3151229
+ 83100 2000 -0 4.71157 4.7264189 5.3151283
+ 83200 2000 -0 4.7116033 4.7264282 5.3151335
+ 83300 2000 -0 4.7116398 4.7264377 5.3151378
+ 83400 2000 -0 4.711678 4.726447 5.3151405
+ 83500 2000 -0 4.7117161 4.7264555 5.3151411
+ 83600 2000 -0 4.7117523 4.7264627 5.3151393
+ 83700 2000 -0 4.7117851 4.7264684 5.315135
+ 83800 2000 -0 4.7118134 4.7264724 5.3151286
+ 83900 2000 -0 4.7118369 4.7264749 5.3151206
+ 84000 2000 -0 4.7118553 4.7264762 5.3151117
+ 84100 2000 -0 4.7118694 4.7264764 5.3151026
+ 84200 2000 -0 4.7118796 4.7264761 5.3150941
+ 84300 2000 -0 4.7118867 4.7264755 5.3150868
+ 84400 2000 -0 4.7118915 4.7264751 5.3150809
+ 84500 2000 -0 4.7118945 4.7264749 5.3150769
+ 84600 2000 -0 4.711896 4.7264751 5.3150748
+ 84700 2000 -0 4.7118961 4.7264758 5.3150747
+ 84800 2000 -0 4.7118948 4.7264769 5.3150765
+ 84900 2000 -0 4.7118916 4.7264783 5.3150801
+ 85000 2000 -0 4.711886 4.7264796 5.3150851
+ 85100 2000 -0 4.7118772 4.7264806 5.3150912
+ 85200 2000 -0 4.7118646 4.7264809 5.3150977
+ 85300 2000 -0 4.7118475 4.7264802 5.3151039
+ 85400 2000 -0 4.7118254 4.7264781 5.3151091
+ 85500 2000 -0 4.7117985 4.7264744 5.3151126
+ 85600 2000 -0 4.7117674 4.7264692 5.3151138
+ 85700 2000 -0 4.7117331 4.7264625 5.3151125
+ 85800 2000 -0 4.7116972 4.7264548 5.3151088
+ 85900 2000 -0 4.7116616 4.7264463 5.315103
+ 86000 2000 -0 4.7116279 4.7264377 5.3150958
+ 86100 2000 -0 4.7115976 4.7264295 5.3150878
+ 86200 2000 -0 4.7115716 4.7264221 5.3150798
+ 86300 2000 -0 4.7115507 4.7264158 5.3150722
+ 86400 2000 -0 4.7115348 4.7264108 5.3150657
+ 86500 2000 -0 4.7115241 4.7264074 5.3150604
+ 86600 2000 -0 4.7115183 4.7264056 5.3150568
+ 86700 2000 -0 4.7115173 4.7264055 5.3150547
+ 86800 2000 -0 4.7115211 4.726407 5.3150543
+ 86900 2000 -0 4.7115299 4.7264101 5.3150557
+ 87000 2000 -0 4.7115436 4.7264149 5.3150586
+ 87100 2000 -0 4.7115626 4.7264211 5.3150626
+ 87200 2000 -0 4.7115867 4.7264286 5.3150676
+ 87300 2000 -0 4.7116158 4.7264372 5.3150731
+ 87400 2000 -0 4.7116491 4.7264465 5.3150782
+ 87500 2000 -0 4.7116856 4.726456 5.3150825
+ 87600 2000 -0 4.7117238 4.7264653 5.3150853
+ 87700 2000 -0 4.7117618 4.7264737 5.3150859
+ 87800 2000 -0 4.7117979 4.7264809 5.315084
+ 87900 2000 -0 4.7118307 4.7264866 5.3150798
+ 88000 2000 -0 4.711859 4.7264907 5.3150733
+ 88100 2000 -0 4.7118824 4.7264932 5.3150653
+ 88200 2000 -0 4.7119008 4.7264944 5.3150564
+ 88300 2000 -0 4.7119148 4.7264947 5.3150474
+ 88400 2000 -0 4.711925 4.7264943 5.3150389
+ 88500 2000 -0 4.7119321 4.7264938 5.3150316
+ 88600 2000 -0 4.7119368 4.7264933 5.3150257
+ 88700 2000 -0 4.7119398 4.7264931 5.3150217
+ 88800 2000 -0 4.7119412 4.7264934 5.3150196
+ 88900 2000 -0 4.7119414 4.7264941 5.3150196
+ 89000 2000 -0 4.71194 4.7264952 5.3150214
+ 89100 2000 -0 4.7119368 4.7264965 5.315025
+ 89200 2000 -0 4.7119312 4.7264979 5.31503
+ 89300 2000 -0 4.7119225 4.7264989 5.3150361
+ 89400 2000 -0 4.7119099 4.7264992 5.3150426
+ 89500 2000 -0 4.7118928 4.7264985 5.3150489
+ 89600 2000 -0 4.7118708 4.7264964 5.3150541
+ 89700 2000 -0 4.7118439 4.7264928 5.3150576
+ 89800 2000 -0 4.7118127 4.7264876 5.3150589
+ 89900 2000 -0 4.7117784 4.726481 5.3150576
+ 90000 2000 -0 4.7117426 4.7264732 5.315054
+ 90100 2000 -0 4.7117069 4.7264647 5.3150482
+ 90200 2000 -0 4.7116732 4.7264562 5.315041
+ 90300 2000 -0 4.7116428 4.7264479 5.3150331
+ 90400 2000 -0 4.7116168 4.7264405 5.315025
+ 90500 2000 -0 4.7115958 4.7264342 5.3150175
+ 90600 2000 -0 4.7115798 4.7264292 5.3150109
+ 90700 2000 -0 4.711569 4.7264258 5.3150057
+ 90800 2000 -0 4.7115631 4.726424 5.315002
+ 90900 2000 -0 4.711562 4.7264238 5.3149999
+ 91000 2000 -0 4.7115658 4.7264253 5.3149995
+ 91100 2000 -0 4.7115744 4.7264284 5.3150009
+ 91200 2000 -0 4.711588 4.7264331 5.3150037
+ 91300 2000 -0 4.7116068 4.7264393 5.3150078
+ 91400 2000 -0 4.7116299 4.7264468 5.3150128
+ 91500 2000 -0 4.7116598 4.7264554 5.3150182
+ 91600 2000 -0 4.711693 4.7264647 5.3150234
+ 91700 2000 -0 4.7117294 4.7264742 5.3150278
+ 91800 2000 -0 4.7117675 4.7264835 5.3150306
+ 91900 2000 -0 4.7118056 4.726492 5.3150313
+ 92000 2000 -0 4.7118418 4.7264992 5.3150295
+ 92100 2000 -0 4.7118746 4.726505 5.3150253
+ 92200 2000 -0 4.711903 4.7265091 5.3150189
+ 92300 2000 -0 4.7119265 4.7265116 5.3150109
+ 92400 2000 -0 4.711945 4.7265129 5.3150021
+ 92500 2000 -0 4.7119591 4.7265131 5.3149931
+ 92600 2000 -0 4.7119693 4.7265128 5.3149846
+ 92700 2000 -0 4.7119765 4.7265123 5.3149772
+ 92800 2000 -0 4.7119813 4.7265118 5.3149713
+ 92900 2000 -0 4.7119842 4.7265116 5.3149673
+ 93000 2000 -0 4.7119858 4.7265118 5.3149651
+ 93100 2000 -0 4.7119859 4.7265125 5.314965
+ 93200 2000 -0 4.7119846 4.7265136 5.3149668
+ 93300 2000 -0 4.7119815 4.726515 5.3149703
+ 93400 2000 -0 4.711976 4.7265163 5.3149754
+ 93500 2000 -0 4.7119674 4.7265174 5.3149814
+ 93600 2000 -0 4.7119549 4.7265177 5.3149879
+ 93700 2000 -0 4.711938 4.7265171 5.3149942
+ 93800 2000 -0 4.7119162 4.7265151 5.3149996
+ 93900 2000 -0 4.7118894 4.7265116 5.3150031
+ 94000 2000 -0 4.7118584 4.7265064 5.3150045
+ 94100 2000 -0 4.7118242 4.7264998 5.3150034
+ 94200 2000 -0 4.7117884 4.7264921 5.3149998
+ 94300 2000 -0 4.7117526 4.7264837 5.3149942
+ 94400 2000 -0 4.7117188 4.7264751 5.3149871
+ 94500 2000 -0 4.7116882 4.7264669 5.3149791
+ 94600 2000 -0 4.711662 4.7264594 5.3149711
+ 94700 2000 -0 4.7116407 4.726453 5.3149635
+ 94800 2000 -0 4.7116246 4.726448 5.3149569
+ 94900 2000 -0 4.7116135 4.7264445 5.3149516
+ 95000 2000 -0 4.7116074 4.7264426 5.3149479
+ 95100 2000 -0 4.711606 4.7264424 5.3149458
+ 95200 2000 -0 4.7116095 4.7264438 5.3149452
+ 95300 2000 -0 4.7116179 4.7264469 5.3149466
+ 95400 2000 -0 4.7116312 4.7264515 5.3149494
+ 95500 2000 -0 4.7116497 4.7264576 5.3149533
+ 95600 2000 -0 4.7116734 4.7264651 5.3149583
+ 95700 2000 -0 4.7117021 4.7264736 5.3149638
+ 95800 2000 -0 4.7117351 4.7264829 5.314969
+ 95900 2000 -0 4.7117714 4.7264924 5.3149734
+ 96000 2000 -0 4.7118094 4.7265017 5.3149763
+ 96100 2000 -0 4.7118475 4.7265103 5.3149771
+ 96200 2000 -0 4.7118839 4.7265176 5.3149755
+ 96300 2000 -0 4.711917 4.7265235 5.3149714
+ 96400 2000 -0 4.7119457 4.7265277 5.3149651
+ 96500 2000 -0 4.7119694 4.7265303 5.3149572
+ 96600 2000 -0 4.7119882 4.7265316 5.3149483
+ 96700 2000 -0 4.7120026 4.726532 5.3149393
+ 96800 2000 -0 4.712013 4.7265317 5.3149307
+ 96900 2000 -0 4.7120203 4.7265311 5.3149232
+ 97000 2000 -0 4.7120253 4.7265307 5.3149172
+ 97100 2000 -0 4.7120283 4.7265304 5.314913
+ 97200 2000 -0 4.71203 4.7265306 5.3149107
+ 97300 2000 -0 4.7120303 4.7265313 5.3149105
+ 97400 2000 -0 4.7120291 4.7265324 5.3149121
+ 97500 2000 -0 4.7120261 4.7265338 5.3149155
+ 97600 2000 -0 4.7120208 4.7265351 5.3149204
+ 97700 2000 -0 4.7120125 4.7265362 5.3149264
+ 97800 2000 -0 4.7120003 4.7265367 5.3149329
+ 97900 2000 -0 4.7119838 4.7265361 5.3149392
+ 98000 2000 -0 4.7119623 4.7265342 5.3149446
+ 98100 2000 -0 4.711936 4.7265308 5.3149483
+ 98200 2000 -0 4.7119052 4.7265258 5.3149499
+ 98300 2000 -0 4.7118712 4.7265194 5.3149489
+ 98400 2000 -0 4.7118355 4.7265117 5.3149454
+ 98500 2000 -0 4.7117997 4.7265033 5.3149399
+ 98600 2000 -0 4.7117657 4.7264948 5.3149329
+ 98700 2000 -0 4.7117349 4.7264865 5.3149249
+ 98800 2000 -0 4.7117083 4.7264789 5.3149168
+ 98900 2000 -0 4.7116867 4.7264725 5.3149092
+ 99000 2000 -0 4.7116701 4.7264674 5.3149024
+ 99100 2000 -0 4.7116587 4.7264638 5.314897
+ 99200 2000 -0 4.7116522 4.7264618 5.3148931
+ 99300 2000 -0 4.7116505 4.7264615 5.3148909
+ 99400 2000 -0 4.7116535 4.7264628 5.3148901
+ 99500 2000 -0 4.7116615 4.7264657 5.3148914
+ 99600 2000 -0 4.7116745 4.7264702 5.314894
+ 99700 2000 -0 4.7116925 4.7264763 5.3148978
+ 99800 2000 -0 4.7117158 4.7264836 5.3149028
+ 99900 2000 -0 4.7117441 4.7264921 5.3149082
+ 100000 2000 -0 4.7117767 4.7265013 5.3149134
+Loop time of 81.8199 on 1 procs for 100000 steps with 2000 atoms
+
+Performance: 105597.755 tau/day, 1222.196 timesteps/s, 2.444 Matom-step/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 | 60.627 | 60.627 | 60.627 | 0.0 | 74.10
+Neigh | 3.677 | 3.677 | 3.677 | 0.0 | 4.49
+Comm | 1.2623 | 1.2623 | 1.2623 | 0.0 | 1.54
+Output | 0.022348 | 0.022348 | 0.022348 | 0.0 | 0.03
+Modify | 15.673 | 15.673 | 15.673 | 0.0 | 19.15
+Other | | 0.5582 | | | 0.68
+
+Nlocal: 2000 ave 2000 max 2000 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 520 ave 520 max 520 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 9693 ave 9693 max 9693 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 9693
+Ave neighs/atom = 4.8465
+Neighbor list builds = 5282
+Dangerous builds = 0
+
+Total wall time: 0:01:21
diff --git a/examples/granular/log.27Jun24.pour.heat.g++.4 b/examples/granular/log.27Jun24.pour.heat.g++.4
new file mode 100644
index 0000000000..774ce25b45
--- /dev/null
+++ b/examples/granular/log.27Jun24.pour.heat.g++.4
@@ -0,0 +1,1167 @@
+LAMMPS (27 Jun 2024 - Development - patch_27Jun2024-930-g7036930360)
+# pour one types of particles into cylinder and oscillate
+# temperature of the bottom plate
+
+variable name string heat_plate
+
+atom_style sphere
+units lj
+
+###############################################
+# Geometry-related parameters
+###############################################
+
+variable boxx equal 10
+variable boxy equal 10
+variable boxz equal 50
+
+variable drum_rad equal ${boxx}*0.5
+variable drum_rad equal 10*0.5
+variable drum_height equal 30
+
+variable xc equal 0.5*${boxx}
+variable xc equal 0.5*10
+variable yc equal 0.5*${boxx}
+variable yc equal 0.5*10
+variable zc equal 0.5*${boxz}
+variable zc equal 0.5*50
+
+###############################################
+# Particle-related parameters
+###############################################
+variable rlo equal 0.25
+variable rhi equal 0.5
+variable dlo equal 2.0*${rlo}
+variable dlo equal 2.0*0.25
+variable dhi equal 2.0*${rhi}
+variable dhi equal 2.0*0.5
+
+variable cyl_rad_inner equal ${drum_rad}-1.1*${rhi}
+variable cyl_rad_inner equal 5-1.1*${rhi}
+variable cyl_rad_inner equal 5-1.1*0.5
+
+variable dens equal 1.0
+
+variable skin equal 0.4*${rhi}
+variable skin equal 0.4*0.5
+
+#############
+processors * * 1
+region boxreg block 0 ${boxx} 0 ${boxy} 0 ${boxz}
+region boxreg block 0 10 0 ${boxy} 0 ${boxz}
+region boxreg block 0 10 0 10 0 ${boxz}
+region boxreg block 0 10 0 10 0 50
+create_box 2 boxreg
+Created orthogonal box = (0 0 0) to (10 10 50)
+ 2 by 2 by 1 MPI processor grid
+change_box all boundary p p f
+Changing box ...
+
+pair_style granular
+pair_coeff * * hertz/material 1e5 0.2 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji heat area 5.0
+
+region curved_wall cylinder z ${xc} ${yc} ${drum_rad} 0 ${drum_height} side in
+region curved_wall cylinder z 5 ${yc} ${drum_rad} 0 ${drum_height} side in
+region curved_wall cylinder z 5 5 ${drum_rad} 0 ${drum_height} side in
+region curved_wall cylinder z 5 5 5 0 ${drum_height} side in
+region curved_wall cylinder z 5 5 5 0 30 side in
+region bottom_wall plane ${xc} ${yc} 0 0 0 1 side in
+region bottom_wall plane 5 ${yc} 0 0 0 1 side in
+region bottom_wall plane 5 5 0 0 0 1 side in
+
+region insreg cylinder z ${xc} ${yc} ${cyl_rad_inner} ${drum_height} ${boxz}
+region insreg cylinder z 5 ${yc} ${cyl_rad_inner} ${drum_height} ${boxz}
+region insreg cylinder z 5 5 ${cyl_rad_inner} ${drum_height} ${boxz}
+region insreg cylinder z 5 5 4.45 ${drum_height} ${boxz}
+region insreg cylinder z 5 5 4.45 30 ${boxz}
+region insreg cylinder z 5 5 4.45 30 50
+
+fix 0 all property/atom temperature heatflow
+WARNING: Fix property/atom mol, charge, rmass, temperature, or heatflow w/out ghost communication (../fix_property_atom.cpp:205)
+fix 1 all balance 100 1.0 shift xy 5 1.1
+fix 2 all nve/sphere
+fix 3 all heat/flow constant 1.0
+fix grav all gravity 10 vector 0 0 -1
+fix ins1 all pour 1000 1 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
+fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
+fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
+fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens 1 ${dens}
+fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens 1 1
+fix ins2 all pour 1000 2 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
+fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
+fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
+fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens 1 ${dens}
+fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens 1 1
+
+comm_modify vel yes
+
+neighbor ${skin} bin
+neighbor 0.2 bin
+neigh_modify delay 0 every 1 check yes
+
+variable oscillate equal 1.0*sin(step*0.0001)
+
+fix 4 all wall/gran/region granular hertz/material 1e5 0.1 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji region curved_wall
+fix 5 all wall/gran/region granular hertz/material 1e5 0.1 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji heat area 5.0 region bottom_wall temperature v_oscillate
+
+thermo_style custom step atoms ke pxx pyy pzz
+thermo_modify lost warn
+thermo 100
+
+timestep 0.001
+
+compute 1 all property/atom temperature heatflow
+#dump 1 all custom 1000 ${name}.dump id type radius mass x y z c_1[*]
+
+run 100000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Particle insertion: 594 every 2000 steps, 1000 by step 2001
+Particle insertion: 594 every 2000 steps, 1000 by step 2001
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 1.2
+ ghost atom cutoff = 1.2
+ binsize = 0.6, bins = 17 17 84
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair granular, perpetual
+ attributes: half, newton on, size, history
+ pair build: half/size/bin/atomonly/newton
+ stencil: half/bin/3d
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 5.847 | 5.847 | 5.847 Mbytes
+ Step Atoms KinEng Pxx Pyy Pzz
+ 0 0 -0 0 0 0
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 100 536 -0 0 0 7.4220499
+ 200 536 -0 0 0 10.753096
+ 300 536 -0 0 0 13.500241
+ 400 536 -0 0 0 18.036636
+ 500 536 -0 0 0 21.669269
+ 600 536 -0 0 0 25.794277
+ 700 536 -0 0.036728411 0.03359373 24.224864
+ 800 536 -0 0.21062609 0.26430303 25.376901
+ 900 536 -0 0.26668829 0.20265866 25.658924
+ 1000 536 -0 0.39065236 0.60669027 26.763499
+ 1100 536 -0 0.69932743 0.71983266 26.225376
+ 1200 536 -0 0.4157436 0.42293535 24.911805
+ 1300 536 -0 0.33921032 0.63682235 25.754584
+ 1400 536 -0 0.93464611 1.3237441 22.865702
+ 1500 536 -0 0.80924985 0.74657727 22.757239
+ 1600 536 -0 0.92054828 1.2190322 21.876875
+ 1700 536 -0 0.94536064 0.98360513 21.289703
+ 1800 536 -0 1.1330092 1.1237788 19.551747
+ 1900 536 -0 1.0761391 0.85000786 21.250696
+ 2000 536 -0 1.638585 1.2861506 20.207604
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 2100 1056 -0 1.5408671 1.5842743 23.291514
+ 2200 1056 -0 1.0229197 1.0843624 21.353081
+ 2300 1056 -0 1.0065987 0.91432567 22.38512
+ 2400 1056 -0 1.7739939 1.7072525 22.725414
+ 2500 1056 -0 1.7824503 1.4988478 22.162721
+ 2600 1056 -0 1.9954304 2.2158613 20.155076
+ 2700 1056 -0 1.2178088 1.1725726 19.457213
+ 2800 1056 -0 1.2801853 1.564228 21.186628
+ 2900 1056 -0 2.2349618 2.2264187 21.089537
+ 3000 1056 -0 1.6864183 1.7538789 20.996558
+ 3100 1056 -0 1.8954776 1.8910819 21.206904
+ 3200 1056 -0 2.4766394 2.2529193 21.570887
+ 3300 1056 -0 2.637015 2.7086712 22.395582
+ 3400 1056 -0 1.9106499 1.8935966 22.199401
+ 3500 1056 -0 2.5964912 2.5031185 23.039192
+ 3600 1056 -0 2.5085435 2.146064 23.068971
+ 3700 1056 -0 2.474989 2.4439976 23.419341
+ 3800 1056 -0 2.8205404 2.8384851 22.875541
+ 3900 1056 -0 3.2026873 3.2416559 22.208749
+ 4000 1056 -0 3.6740735 3.5414156 20.915706
+WARNING: Fewer insertions than requested (../fix_pour.cpp:688)
+ 4100 1550 -0 3.3900757 3.1941323 22.320541
+ 4200 1550 -0 3.2075343 3.5119664 22.534143
+ 4300 1550 -0 2.4392667 2.3822515 22.0926
+ 4400 1550 -0 3.0764489 2.9398635 24.354151
+ 4500 1550 -0 3.259183 3.5214347 24.893647
+ 4600 1550 -0 3.5868594 3.8241085 24.02662
+ 4700 1550 -0 3.7598172 3.6876335 23.416143
+ 4800 1550 -0 4.3919175 4.3391781 23.364196
+ 4900 1550 -0 4.1572977 4.2215608 21.635388
+ 5000 1550 -0 4.0761296 4.188579 20.033325
+ 5100 1550 -0 3.8154497 3.981279 20.388815
+ 5200 1550 -0 3.9260972 4.0299312 20.63532
+ 5300 1550 -0 4.2435745 4.078322 21.129107
+ 5400 1550 -0 3.9751622 4.0698369 20.548446
+ 5500 1550 -0 4.3205962 4.695632 22.227101
+ 5600 1550 -0 4.421366 4.5508427 22.518481
+ 5700 1550 -0 4.645671 4.6922949 22.26108
+ 5800 1550 -0 4.5325637 4.8296896 20.65521
+ 5900 1550 -0 4.5731936 4.7659352 21.121215
+ 6000 1550 -0 5.025558 5.6764226 20.612446
+ 6100 2000 -0 5.1141082 5.1792324 23.4753
+ 6200 2000 -0 4.6074549 4.5071521 22.552763
+ 6300 2000 -0 4.6027236 4.7950174 23.868552
+ 6400 2000 -0 5.8144758 5.8327319 25.11257
+ 6500 2000 -0 5.5493039 6.0635467 23.557583
+ 6600 2000 -0 5.5998872 5.6560452 21.26534
+ 6700 2000 -0 5.9389457 6.1453813 21.958412
+ 6800 2000 -0 5.845436 5.873492 21.472648
+ 6900 2000 -0 4.8412624 5.2517991 20.494437
+ 7000 2000 -0 4.9740892 4.8591061 21.683587
+ 7100 2000 -0 5.3541491 5.6752241 23.079795
+ 7200 2000 -0 6.3336598 6.6065982 24.308419
+ 7300 2000 -0 6.8446705 7.2038888 22.05424
+ 7400 2000 -0 6.4914858 6.2180246 19.453356
+ 7500 2000 -0 5.4149656 5.7102678 18.863244
+ 7600 2000 -0 5.993974 6.2246875 19.667177
+ 7700 2000 -0 5.537945 5.9323433 19.772405
+ 7800 2000 -0 5.7127076 5.8380692 19.832586
+ 7900 2000 -0 6.5871321 7.0177488 21.789376
+ 8000 2000 -0 6.2137806 6.6033352 20.811253
+ 8100 2000 -0 7.1080679 7.3941206 17.955335
+ 8200 2000 -0 7.0800533 7.342142 16.453027
+ 8300 2000 -0 6.5261643 6.55105 10.850028
+ 8400 2000 -0 6.0030928 6.3845533 7.7697694
+ 8500 2000 -0 5.0954238 5.3124028 6.0378477
+ 8600 2000 -0 4.4754476 4.7000196 4.3612521
+ 8700 2000 -0 4.3020147 4.5021521 4.4690397
+ 8800 2000 -0 4.4873827 4.69778 5.2301336
+ 8900 2000 -0 4.5883165 4.8009762 5.4052655
+ 9000 2000 -0 4.5299541 4.7588365 5.0717778
+ 9100 2000 -0 4.4945799 4.7007233 5.0130628
+ 9200 2000 -0 4.5452328 4.7491068 5.193421
+ 9300 2000 -0 4.5650117 4.7725276 5.2488941
+ 9400 2000 -0 4.5339484 4.7427922 5.10824
+ 9500 2000 -0 4.5481358 4.7481803 5.1461805
+ 9600 2000 -0 4.5594081 4.7553659 5.167207
+ 9700 2000 -0 4.5461404 4.7447755 5.1378673
+ 9800 2000 -0 4.551382 4.7439466 5.1230299
+ 9900 2000 -0 4.5595502 4.7519517 5.1534248
+ 10000 2000 -0 4.5505972 4.7535015 5.1484322
+ 10100 2000 -0 4.5446672 4.7456694 5.1147458
+ 10200 2000 -0 4.5465723 4.7557117 5.1340175
+ 10300 2000 -0 4.5613445 4.7614239 5.1891701
+ 10400 2000 -0 4.5540675 4.7576778 5.1186327
+ 10500 2000 -0 4.54856 4.7548567 5.1138378
+ 10600 2000 -0 4.5548107 4.7594241 5.1504753
+ 10700 2000 -0 4.5539257 4.7602468 5.1376936
+ 10800 2000 -0 4.552303 4.7563453 5.1209018
+ 10900 2000 -0 4.5517918 4.7561582 5.1370229
+ 11000 2000 -0 4.5514768 4.7584287 5.1401486
+ 11100 2000 -0 4.5574235 4.7608246 5.1362577
+ 11200 2000 -0 4.5580159 4.7570238 5.1432545
+ 11300 2000 -0 4.5556152 4.7575052 5.1377947
+ 11400 2000 -0 4.5546802 4.7546306 5.1278356
+ 11500 2000 -0 4.5598313 4.7579194 5.1423919
+ 11600 2000 -0 4.5583005 4.7587261 5.140483
+ 11700 2000 -0 4.5570835 4.7551895 5.127872
+ 11800 2000 -0 4.5581869 4.7582328 5.1377674
+ 11900 2000 -0 4.5593636 4.7587566 5.1404685
+ 12000 2000 -0 4.5573698 4.7579101 5.1329191
+ 12100 2000 -0 4.5582368 4.756673 5.1352718
+ 12200 2000 -0 4.5585613 4.7596169 5.1390805
+ 12300 2000 -0 4.5593695 4.7586533 5.1337432
+ 12400 2000 -0 4.5579537 4.7578185 5.1361814
+ 12500 2000 -0 4.5591056 4.7585352 5.1354954
+ 12600 2000 -0 4.5586966 4.7582228 5.1357892
+ 12700 2000 -0 4.5588441 4.7585485 5.1360059
+ 12800 2000 -0 4.5592438 4.7584161 5.1358659
+ 12900 2000 -0 4.5586433 4.758533 5.1361218
+ 13000 2000 -0 4.5589082 4.7582874 5.1350323
+ 13100 2000 -0 4.5587192 4.7583613 5.1358044
+ 13200 2000 -0 4.5589043 4.7584529 5.1362351
+ 13300 2000 -0 4.5587139 4.7582979 5.1352256
+ 13400 2000 -0 4.5587857 4.7583136 5.1356179
+ 13500 2000 -0 4.558887 4.7584681 5.1361406
+ 13600 2000 -0 4.5587601 4.7583028 5.1354655
+ 13700 2000 -0 4.5587896 4.758308 5.1354983
+ 13800 2000 -0 4.5588669 4.7584309 5.1360373
+ 13900 2000 -0 4.5588217 4.7583325 5.1356349
+ 14000 2000 -0 4.5587771 4.7583083 5.1354199
+ 14100 2000 -0 4.5588654 4.7583948 5.1359843
+ 14200 2000 -0 4.5588354 4.7583448 5.135626
+ 14300 2000 -0 4.5588118 4.7583178 5.1354937
+ 14400 2000 -0 4.5588496 4.7583829 5.1358985
+ 14500 2000 -0 4.5588393 4.7583337 5.1356081
+ 14600 2000 -0 4.5588417 4.7583536 5.1355849
+ 14700 2000 -0 4.5588545 4.7583671 5.1358084
+ 14800 2000 -0 4.5588414 4.7583316 5.1356228
+ 14900 2000 -0 4.5588496 4.7583499 5.1356135
+ 15000 2000 -0 4.5588668 4.7583608 5.1357615
+ 15100 2000 -0 4.5588535 4.7583347 5.1356379
+ 15200 2000 -0 4.5588525 4.7583499 5.1356253
+ 15300 2000 -0 4.5588741 4.7583534 5.1357225
+ 15400 2000 -0 4.5588659 4.7583452 5.1356571
+ 15500 2000 -0 4.5588622 4.7583461 5.13563
+ 15600 2000 -0 4.5588751 4.7583474 5.1356903
+ 15700 2000 -0 4.5588779 4.7583529 5.1356746
+ 15800 2000 -0 4.5588728 4.7583461 5.1356359
+ 15900 2000 -0 4.5588783 4.7583458 5.1356695
+ 16000 2000 -0 4.5588863 4.7583519 5.135681
+ 16100 2000 -0 4.5588834 4.7583477 5.1356416
+ 16200 2000 -0 4.5588849 4.7583458 5.1356536
+ 16300 2000 -0 4.558892 4.7583525 5.1356782
+ 16400 2000 -0 4.5588908 4.7583478 5.1356467
+ 16500 2000 -0 4.5588939 4.7583451 5.1356442
+ 16600 2000 -0 4.5588994 4.7583525 5.1356716
+ 16700 2000 -0 4.5588969 4.7583484 5.135651
+ 16800 2000 -0 4.5589 4.7583449 5.1356366
+ 16900 2000 -0 4.5589074 4.7583517 5.135664
+ 17000 2000 -0 4.5589058 4.7583494 5.1356548
+ 17100 2000 -0 4.558905 4.7583452 5.1356325
+ 17200 2000 -0 4.5589124 4.7583504 5.1356537
+ 17300 2000 -0 4.5589148 4.7583506 5.1356558
+ 17400 2000 -0 4.5589127 4.758346 5.1356338
+ 17500 2000 -0 4.5589167 4.7583488 5.1356435
+ 17600 2000 -0 4.5589213 4.7583512 5.1356525
+ 17700 2000 -0 4.5589209 4.7583478 5.1356366
+ 17800 2000 -0 4.5589224 4.7583477 5.1356363
+ 17900 2000 -0 4.5589269 4.7583505 5.1356469
+ 18000 2000 -0 4.5589283 4.7583496 5.1356381
+ 18100 2000 -0 4.5589286 4.758348 5.1356319
+ 18200 2000 -0 4.5589323 4.7583497 5.1356406
+ 18300 2000 -0 4.5589357 4.7583521 5.1356382
+ 18400 2000 -0 4.5589353 4.7583487 5.1356293
+ 18500 2000 -0 4.5589377 4.7583496 5.1356344
+ 18600 2000 -0 4.5589402 4.7583502 5.1356361
+ 18700 2000 -0 4.5589414 4.7583489 5.1356282
+ 18800 2000 -0 4.5589436 4.7583496 5.1356294
+ 18900 2000 -0 4.5589458 4.7583507 5.135633
+ 19000 2000 -0 4.5589469 4.7583496 5.1356267
+ 19100 2000 -0 4.5589492 4.7583496 5.1356252
+ 19200 2000 -0 4.5589518 4.7583508 5.1356295
+ 19300 2000 -0 4.5589526 4.7583502 5.1356253
+ 19400 2000 -0 4.5589542 4.7583498 5.1356216
+ 19500 2000 -0 4.558957 4.7583509 5.1356253
+ 19600 2000 -0 4.5589587 4.7583508 5.1356237
+ 19700 2000 -0 4.5589596 4.7583502 5.1356191
+ 19800 2000 -0 4.5589618 4.758351 5.135621
+ 19900 2000 -0 4.558964 4.7583513 5.1356211
+ 20000 2000 -0 4.5589652 4.7583507 5.1356171
+ 20100 2000 -0 4.5589696 4.7583549 5.1356171
+ 20200 2000 -0 4.5589685 4.7583518 5.1356175
+ 20300 2000 -0 4.5589703 4.7583512 5.1356148
+ 20400 2000 -0 4.5589721 4.7583513 5.1356142
+ 20500 2000 -0 4.558974 4.7583517 5.1356147
+ 20600 2000 -0 4.5589754 4.7583518 5.1356126
+ 20700 2000 -0 4.558977 4.7583519 5.1356115
+ 20800 2000 -0 4.5589787 4.7583522 5.1356115
+ 20900 2000 -0 4.5589801 4.7583528 5.1356108
+ 21000 2000 -0 4.5589819 4.7583522 5.1356087
+ 21100 2000 -0 4.5589835 4.7583526 5.1356083
+ 21200 2000 -0 4.558986 4.7583523 5.1356078
+ 21300 2000 -0 4.5589867 4.7583526 5.1356061
+ 21400 2000 -0 4.5589883 4.7583529 5.1356056
+ 21500 2000 -0 4.5589898 4.7583531 5.1356048
+ 21600 2000 -0 4.5589912 4.7583532 5.1356034
+ 21700 2000 -0 4.5589928 4.7583534 5.1356027
+ 21800 2000 -0 4.5589944 4.7583536 5.1356021
+ 21900 2000 -0 4.5589958 4.7583537 5.1356009
+ 22000 2000 -0 4.5589972 4.7583538 5.1355999
+ 22100 2000 -0 4.5589988 4.758354 5.1355993
+ 22200 2000 -0 4.5590003 4.7583542 5.1355984
+ 22300 2000 -0 4.5590018 4.7583543 5.1355973
+ 22400 2000 -0 4.5590032 4.7583545 5.1355966
+ 22500 2000 -0 4.5590047 4.7583547 5.1355957
+ 22600 2000 -0 4.5590061 4.7583548 5.1355947
+ 22700 2000 -0 4.5590076 4.758355 5.1355939
+ 22800 2000 -0 4.559009 4.7583551 5.1355931
+ 22900 2000 -0 4.5590104 4.7583553 5.1355921
+ 23000 2000 -0 4.5590118 4.7583555 5.1355913
+ 23100 2000 -0 4.5590132 4.7583556 5.1355905
+ 23200 2000 -0 4.5590146 4.7583558 5.1355896
+ 23300 2000 -0 4.559016 4.758356 5.1355887
+ 23400 2000 -0 4.5590174 4.7583562 5.1355878
+ 23500 2000 -0 4.5590187 4.7583563 5.135587
+ 23600 2000 -0 4.5590201 4.7583565 5.1355861
+ 23700 2000 -0 4.5590215 4.7583567 5.1355853
+ 23800 2000 -0 4.5590228 4.7583569 5.1355844
+ 23900 2000 -0 4.5590241 4.7583571 5.1355836
+ 24000 2000 -0 4.5590255 4.7583572 5.1355827
+ 24100 2000 -0 4.5590269 4.7583574 5.1355819
+ 24200 2000 -0 4.5590282 4.7583576 5.135581
+ 24300 2000 -0 4.5590295 4.7583578 5.1355802
+ 24400 2000 -0 4.5590308 4.758358 5.1355794
+ 24500 2000 -0 4.5590321 4.7583581 5.1355785
+ 24600 2000 -0 4.5590334 4.7583583 5.1355777
+ 24700 2000 -0 4.5590347 4.7583585 5.1355769
+ 24800 2000 -0 4.559036 4.7583587 5.135576
+ 24900 2000 -0 4.5590373 4.7583589 5.1355752
+ 25000 2000 -0 4.5590386 4.7583591 5.1355744
+ 25100 2000 -0 4.5590398 4.7583593 5.1355735
+ 25200 2000 -0 4.5590411 4.7583595 5.1355727
+ 25300 2000 -0 4.5590424 4.7583598 5.1355719
+ 25400 2000 -0 4.5590436 4.7583598 5.1355711
+ 25500 2000 -0 4.5590449 4.75836 5.1355702
+ 25600 2000 -0 4.5590461 4.7583602 5.1355694
+ 25700 2000 -0 4.5590474 4.7583604 5.1355686
+ 25800 2000 -0 4.5590486 4.7583606 5.1355678
+ 25900 2000 -0 4.5590501 4.7583608 5.135567
+ 26000 2000 -0 4.559051 4.758361 5.1355662
+ 26100 2000 -0 4.5590523 4.7583612 5.1355654
+ 26200 2000 -0 4.5590539 4.7583614 5.1355646
+ 26300 2000 -0 4.5590548 4.7583616 5.1355638
+ 26400 2000 -0 4.559056 4.7583618 5.1355629
+ 26500 2000 -0 4.5590572 4.758362 5.1355621
+ 26600 2000 -0 4.5590584 4.7583622 5.1355613
+ 26700 2000 -0 4.5590596 4.7583624 5.1355605
+ 26800 2000 -0 4.5590608 4.7583626 5.1355597
+ 26900 2000 -0 4.559062 4.7583628 5.1355589
+ 27000 2000 -0 4.5590632 4.758363 5.1355581
+ 27100 2000 -0 4.5590643 4.7583632 5.1355573
+ 27200 2000 -0 4.5590655 4.7583634 5.1355565
+ 27300 2000 -0 4.5590667 4.7583636 5.1355557
+ 27400 2000 -0 4.5590679 4.7583638 5.1355549
+ 27500 2000 -0 4.5590691 4.758364 5.1355541
+ 27600 2000 -0 4.5590702 4.7583642 5.1355533
+ 27700 2000 -0 4.5590714 4.7583644 5.1355525
+ 27800 2000 -0 4.5590726 4.7583646 5.1355517
+ 27900 2000 -0 4.5590737 4.7583648 5.1355509
+ 28000 2000 -0 4.5590749 4.7583651 5.1355501
+ 28100 2000 -0 4.559076 4.7583653 5.1355493
+ 28200 2000 -0 4.5590772 4.7583655 5.1355485
+ 28300 2000 -0 4.5590783 4.7583657 5.1355478
+ 28400 2000 -0 4.5590795 4.7583659 5.135547
+ 28500 2000 -0 4.5590806 4.7583661 5.1355462
+ 28600 2000 -0 4.5590818 4.7583663 5.1355454
+ 28700 2000 -0 4.5590829 4.7583665 5.1355446
+ 28800 2000 -0 4.559084 4.7583667 5.1355438
+ 28900 2000 -0 4.5590852 4.7583669 5.135543
+ 29000 2000 -0 4.5590863 4.7583671 5.1355423
+ 29100 2000 -0 4.5590874 4.7583673 5.1355415
+ 29200 2000 -0 4.5590886 4.7583676 5.1355407
+ 29300 2000 -0 4.5590897 4.7583678 5.1355399
+ 29400 2000 -0 4.5590908 4.758368 5.1355391
+ 29500 2000 -0 4.5590919 4.7583682 5.1355383
+ 29600 2000 -0 4.559093 4.7583684 5.1355376
+ 29700 2000 -0 4.5590942 4.7583686 5.1355368
+ 29800 2000 -0 4.5590953 4.7583688 5.135536
+ 29900 2000 -0 4.5590964 4.758369 5.1355352
+ 30000 2000 -0 4.5590975 4.7583693 5.1355345
+ 30100 2000 -0 4.5590986 4.7583695 5.1355337
+ 30200 2000 -0 4.5590997 4.7583697 5.1355329
+ 30300 2000 -0 4.5591008 4.7583699 5.1355321
+ 30400 2000 -0 4.559102 4.7583701 5.1355315
+ 30500 2000 -0 4.559103 4.7583703 5.1355306
+ 30600 2000 -0 4.5591041 4.7583705 5.1355298
+ 30700 2000 -0 4.5591052 4.7583708 5.135529
+ 30800 2000 -0 4.5591063 4.758371 5.1355283
+ 30900 2000 -0 4.5591074 4.7583712 5.1355275
+ 31000 2000 -0 4.5591097 4.7583717 5.1355264
+ 31100 2000 -0 4.5591096 4.7583716 5.1355259
+ 31200 2000 -0 4.5591106 4.7583719 5.1355252
+ 31300 2000 -0 4.5591117 4.7583721 5.1355244
+ 31400 2000 -0 4.5591128 4.7583723 5.1355236
+ 31500 2000 -0 4.5591139 4.7583725 5.1355229
+ 31600 2000 -0 4.559115 4.7583727 5.1355221
+ 31700 2000 -0 4.5591161 4.7583729 5.1355213
+ 31800 2000 -0 4.5591171 4.7583731 5.1355206
+ 31900 2000 -0 4.5591182 4.7583734 5.1355198
+ 32000 2000 -0 4.5591193 4.7583736 5.135519
+ 32100 2000 -0 4.5591204 4.7583738 5.1355183
+ 32200 2000 -0 4.5591214 4.758374 5.1355175
+ 32300 2000 -0 4.5591225 4.7583742 5.1355167
+ 32400 2000 -0 4.5591236 4.7583745 5.135516
+ 32500 2000 -0 4.5591246 4.7583747 5.1355152
+ 32600 2000 -0 4.5591257 4.7583749 5.1355144
+ 32700 2000 -0 4.5591268 4.7583751 5.1355137
+ 32800 2000 -0 4.5591278 4.7583753 5.1355129
+ 32900 2000 -0 4.5591289 4.7583755 5.1355122
+ 33000 2000 -0 4.55913 4.7583758 5.1355114
+ 33100 2000 -0 4.559131 4.758376 5.1355106
+ 33200 2000 -0 4.5591321 4.7583762 5.1355099
+ 33300 2000 -0 4.5591331 4.7583764 5.1355091
+ 33400 2000 -0 4.5591342 4.7583766 5.1355084
+ 33500 2000 -0 4.5591353 4.7583769 5.1355076
+ 33600 2000 -0 4.5591363 4.7583771 5.1355068
+ 33700 2000 -0 4.5591374 4.7583773 5.1355061
+ 33800 2000 -0 4.5591384 4.7583775 5.1355053
+ 33900 2000 -0 4.5591395 4.7583778 5.1355046
+ 34000 2000 -0 4.5591405 4.758378 5.1355038
+ 34100 2000 -0 4.5591416 4.7583782 5.135503
+ 34200 2000 -0 4.5591426 4.7583784 5.1355023
+ 34300 2000 -0 4.5591437 4.7583786 5.1355015
+ 34400 2000 -0 4.5591447 4.7583789 5.1355008
+ 34500 2000 -0 4.5591458 4.7583791 5.1355
+ 34600 2000 -0 4.5591468 4.7583793 5.1354993
+ 34700 2000 -0 4.5591479 4.7583795 5.1354985
+ 34800 2000 -0 4.5591489 4.7583797 5.1354977
+ 34900 2000 -0 4.5591499 4.75838 5.135497
+ 35000 2000 -0 4.559151 4.7583802 5.1354962
+ 35100 2000 -0 4.559152 4.7583804 5.1354955
+ 35200 2000 -0 4.5591531 4.7583806 5.1354947
+ 35300 2000 -0 4.5591541 4.7583809 5.135494
+ 35400 2000 -0 4.5591551 4.7583811 5.1354932
+ 35500 2000 -0 4.5591562 4.7583813 5.1354925
+ 35600 2000 -0 4.5591572 4.7583815 5.1354917
+ 35700 2000 -0 4.5591583 4.7583817 5.135491
+ 35800 2000 -0 4.5591593 4.758382 5.1354902
+ 35900 2000 -0 4.5591603 4.7583822 5.1354895
+ 36000 2000 -0 4.5591614 4.7583824 5.1354887
+ 36100 2000 -0 4.5591624 4.7583826 5.135488
+ 36200 2000 -0 4.5591634 4.7583829 5.1354872
+ 36300 2000 -0 4.5591645 4.7583831 5.1354864
+ 36400 2000 -0 4.5591655 4.7583833 5.1354857
+ 36500 2000 -0 4.5591665 4.7583835 5.1354849
+ 36600 2000 -0 4.5591676 4.7583838 5.1354842
+ 36700 2000 -0 4.5591686 4.758384 5.1354834
+ 36800 2000 -0 4.5591696 4.7583842 5.1354827
+ 36900 2000 -0 4.5591707 4.7583844 5.1354819
+ 37000 2000 -0 4.5591717 4.7583846 5.1354812
+ 37100 2000 -0 4.5591727 4.7583849 5.1354804
+ 37200 2000 -0 4.5591738 4.7583851 5.1354797
+ 37300 2000 -0 4.5591748 4.7583853 5.1354789
+ 37400 2000 -0 4.5591758 4.7583855 5.1354782
+ 37500 2000 -0 4.5591768 4.7583858 5.1354774
+ 37600 2000 -0 4.5591779 4.758386 5.1354767
+ 37700 2000 -0 4.5591789 4.7583862 5.135476
+ 37800 2000 -0 4.5591799 4.7583864 5.1354752
+ 37900 2000 -0 4.5591809 4.7583867 5.1354745
+ 38000 2000 -0 4.559182 4.7583869 5.1354737
+ 38100 2000 -0 4.559183 4.7583871 5.135473
+ 38200 2000 -0 4.559184 4.7583873 5.1354722
+ 38300 2000 -0 4.559185 4.7583876 5.1354715
+ 38400 2000 -0 4.5591861 4.7583878 5.1354707
+ 38500 2000 -0 4.5591871 4.758388 5.13547
+ 38600 2000 -0 4.5591881 4.7583882 5.1354692
+ 38700 2000 -0 4.5591892 4.7583896 5.1354694
+ 38800 2000 -0 4.55919 4.7583887 5.1354684
+ 38900 2000 -0 4.5591912 4.7583888 5.1354681
+ 39000 2000 -0 4.5591922 4.7583891 5.1354676
+ 39100 2000 -0 4.559194 4.7583899 5.1354667
+ 39200 2000 -0 4.5591943 4.7583895 5.1354657
+ 39300 2000 -0 4.5591953 4.7583898 5.1354653
+ 39400 2000 -0 4.5591963 4.75839 5.1354643
+ 39500 2000 -0 4.5591973 4.7583901 5.1354635
+ 39600 2000 -0 4.5591984 4.7583904 5.135463
+ 39700 2000 -0 4.5591994 4.7583906 5.1354621
+ 39800 2000 -0 4.5592004 4.7583908 5.1354613
+ 39900 2000 -0 4.5592014 4.7583911 5.1354607
+ 40000 2000 -0 4.5592024 4.7583913 5.1354599
+ 40100 2000 -0 4.5592034 4.7583915 5.1354591
+ 40200 2000 -0 4.5592045 4.7583917 5.1354584
+ 40300 2000 -0 4.5592055 4.758392 5.1354577
+ 40400 2000 -0 4.5592065 4.7583922 5.1354569
+ 40500 2000 -0 4.5592075 4.7583924 5.1354562
+ 40600 2000 -0 4.5592088 4.758394 5.1354553
+ 40700 2000 -0 4.5592095 4.7583927 5.1354547
+ 40800 2000 -0 4.5592106 4.7583931 5.1354539
+ 40900 2000 -0 4.5592116 4.7583933 5.1354532
+ 41000 2000 -0 4.5592126 4.7583935 5.1354525
+ 41100 2000 -0 4.5592136 4.7583938 5.1354517
+ 41200 2000 -0 4.5592146 4.758394 5.135451
+ 41300 2000 -0 4.5592156 4.7583942 5.1354502
+ 41400 2000 -0 4.5592166 4.7583944 5.1354495
+ 41500 2000 -0 4.5592176 4.7583949 5.1354489
+ 41600 2000 -0 4.5592186 4.758395 5.135448
+ 41700 2000 -0 4.5592197 4.7583951 5.1354473
+ 41800 2000 -0 4.5592207 4.7583953 5.1354465
+ 41900 2000 -0 4.5592217 4.7583956 5.1354458
+ 42000 2000 -0 4.5592227 4.7583958 5.135445
+ 42100 2000 -0 4.5592237 4.758396 5.1354443
+ 42200 2000 -0 4.5592247 4.7583962 5.1354436
+ 42300 2000 -0 4.5592257 4.7583965 5.1354428
+ 42400 2000 -0 4.5592267 4.7583967 5.1354421
+ 42500 2000 -0 4.5592277 4.7583969 5.1354413
+ 42600 2000 -0 4.5592287 4.7583971 5.1354406
+ 42700 2000 -0 4.5592298 4.7583974 5.1354399
+ 42800 2000 -0 4.5592308 4.7583976 5.1354391
+ 42900 2000 -0 4.5592318 4.7583978 5.1354384
+ 43000 2000 -0 4.5592328 4.7583981 5.1354376
+ 43100 2000 -0 4.5592338 4.7583983 5.1354369
+ 43200 2000 -0 4.5592348 4.7583985 5.1354361
+ 43300 2000 -0 4.5592358 4.7583987 5.1354354
+ 43400 2000 -0 4.5592368 4.758399 5.1354347
+ 43500 2000 -0 4.5592378 4.7583992 5.1354339
+ 43600 2000 -0 4.5592388 4.7583994 5.1354332
+ 43700 2000 -0 4.5592398 4.7583996 5.1354324
+ 43800 2000 -0 4.5592408 4.7583999 5.1354317
+ 43900 2000 -0 4.5592418 4.7584001 5.135431
+ 44000 2000 -0 4.5592428 4.7584003 5.1354302
+ 44100 2000 -0 4.5592438 4.7584006 5.1354295
+ 44200 2000 -0 4.5592448 4.7584008 5.1354287
+ 44300 2000 -0 4.5592459 4.758401 5.135428
+ 44400 2000 -0 4.5592469 4.7584012 5.1354273
+ 44500 2000 -0 4.5592479 4.7584015 5.1354265
+ 44600 2000 -0 4.5592489 4.7584017 5.1354258
+ 44700 2000 -0 4.5592499 4.7584019 5.135425
+ 44800 2000 -0 4.5592509 4.7584022 5.1354243
+ 44900 2000 -0 4.5592519 4.7584024 5.1354236
+ 45000 2000 -0 4.5592529 4.7584026 5.1354228
+ 45100 2000 -0 4.5592539 4.7584028 5.1354221
+ 45200 2000 -0 4.5592549 4.7584031 5.1354213
+ 45300 2000 -0 4.5592559 4.7584033 5.1354206
+ 45400 2000 -0 4.5592569 4.7584035 5.1354199
+ 45500 2000 -0 4.5592581 4.7584038 5.1354192
+ 45600 2000 -0 4.5592589 4.758404 5.1354184
+ 45700 2000 -0 4.5592599 4.7584042 5.1354177
+ 45800 2000 -0 4.5592609 4.7584044 5.1354169
+ 45900 2000 -0 4.5592619 4.7584047 5.1354162
+ 46000 2000 -0 4.5592629 4.7584049 5.1354155
+ 46100 2000 -0 4.5592639 4.7584051 5.1354147
+ 46200 2000 -0 4.5592649 4.7584053 5.135414
+ 46300 2000 -0 4.5592659 4.7584056 5.1354132
+ 46400 2000 -0 4.5592669 4.7584058 5.1354125
+ 46500 2000 -0 4.5592679 4.758406 5.1354117
+ 46600 2000 -0 4.5592689 4.7584063 5.135411
+ 46700 2000 -0 4.5592699 4.7584065 5.1354103
+ 46800 2000 -0 4.5592709 4.7584067 5.1354095
+ 46900 2000 -0 4.5592719 4.758407 5.1354088
+ 47000 2000 -0 4.5592729 4.7584072 5.1354081
+ 47100 2000 -0 4.5592739 4.7584074 5.1354073
+ 47200 2000 -0 4.5592749 4.7584076 5.1354066
+ 47300 2000 -0 4.5592759 4.7584079 5.1354058
+ 47400 2000 -0 4.5592769 4.7584081 5.1354051
+ 47500 2000 -0 4.5592779 4.7584083 5.1354044
+ 47600 2000 -0 4.5592789 4.7584086 5.1354036
+ 47700 2000 -0 4.5592799 4.7584088 5.1354029
+ 47800 2000 -0 4.5592809 4.758409 5.1354022
+ 47900 2000 -0 4.5592819 4.7584092 5.1354014
+ 48000 2000 -0 4.5592829 4.7584095 5.1354007
+ 48100 2000 -0 4.5592839 4.7584097 5.1353999
+ 48200 2000 -0 4.5592849 4.7584099 5.1353992
+ 48300 2000 -0 4.5592859 4.7584102 5.1353985
+ 48400 2000 -0 4.5592869 4.7584104 5.1353977
+ 48500 2000 -0 4.5592879 4.7584106 5.135397
+ 48600 2000 -0 4.5592889 4.7584109 5.1353963
+ 48700 2000 -0 4.5592898 4.7584111 5.1353955
+ 48800 2000 -0 4.5592908 4.7584113 5.1353948
+ 48900 2000 -0 4.5592918 4.7584115 5.1353941
+ 49000 2000 -0 4.5592928 4.7584118 5.1353933
+ 49100 2000 -0 4.5592938 4.758412 5.1353926
+ 49200 2000 -0 4.5592948 4.7584122 5.1353919
+ 49300 2000 -0 4.5592958 4.7584125 5.1353911
+ 49400 2000 -0 4.5592968 4.7584127 5.1353904
+ 49500 2000 -0 4.5592978 4.7584129 5.1353896
+ 49600 2000 -0 4.5592988 4.7584131 5.1353889
+ 49700 2000 -0 4.5592998 4.7584134 5.1353882
+ 49800 2000 -0 4.5593008 4.7584136 5.1353874
+ 49900 2000 -0 4.5593018 4.7584138 5.1353867
+ 50000 2000 -0 4.5593028 4.7584141 5.135386
+ 50100 2000 -0 4.5593038 4.7584143 5.1353852
+ 50200 2000 -0 4.5593048 4.7584145 5.1353845
+ 50300 2000 -0 4.5593058 4.7584148 5.1353838
+ 50400 2000 -0 4.5593068 4.758415 5.135383
+ 50500 2000 -0 4.5593078 4.7584152 5.1353823
+ 50600 2000 -0 4.5593088 4.7584154 5.1353816
+ 50700 2000 -0 4.5593098 4.7584157 5.1353808
+ 50800 2000 -0 4.5593107 4.7584159 5.1353801
+ 50900 2000 -0 4.5593117 4.7584161 5.1353794
+ 51000 2000 -0 4.5593127 4.7584164 5.1353786
+ 51100 2000 -0 4.5593136 4.7584166 5.1353781
+ 51200 2000 -0 4.5593145 4.7584168 5.1353775
+ 51300 2000 -0 4.5593154 4.758417 5.135377
+ 51400 2000 -0 4.5593163 4.7584172 5.1353764
+ 51500 2000 -0 4.5593171 4.7584174 5.1353759
+ 51600 2000 -0 4.559318 4.7584176 5.1353753
+ 51700 2000 -0 4.5593189 4.7584178 5.1353748
+ 51800 2000 -0 4.5593198 4.7584179 5.1353742
+ 51900 2000 -0 4.5593207 4.7584181 5.1353737
+ 52000 2000 -0 4.5593215 4.7584183 5.1353731
+ 52100 2000 -0 4.5593224 4.7584185 5.1353726
+ 52200 2000 -0 4.5593233 4.7584187 5.135372
+ 52300 2000 -0 4.5593256 4.7584188 5.135372
+ 52400 2000 -0 4.5593256 4.7584188 5.1353719
+ 52500 2000 -0 4.5593267 4.758419 5.1353709
+ 52600 2000 -0 4.5593275 4.7584193 5.1353708
+ 52700 2000 -0 4.5593284 4.7584195 5.1353701
+ 52800 2000 -0 4.5593293 4.7584196 5.1353693
+ 52900 2000 -0 4.5593302 4.7584198 5.135369
+ 53000 2000 -0 4.5593311 4.7584201 5.1353685
+ 53100 2000 -0 4.5593319 4.7584202 5.1353677
+ 53200 2000 -0 4.5593328 4.7584204 5.1353673
+ 53300 2000 -0 4.5593337 4.7584207 5.1353668
+ 53400 2000 -0 4.5593346 4.7584208 5.1353661
+ 53500 2000 -0 4.5593355 4.758421 5.1353656
+ 53600 2000 -0 4.5593364 4.7584212 5.1353651
+ 53700 2000 -0 4.5593372 4.7584214 5.1353645
+ 53800 2000 -0 4.5593381 4.7584216 5.1353639
+ 53900 2000 -0 4.559339 4.7584218 5.1353635
+ 54000 2000 -0 4.5593399 4.758422 5.1353628
+ 54100 2000 -0 4.5593408 4.7584227 5.1353622
+ 54200 2000 -0 4.5593415 4.7584224 5.1353605
+ 54300 2000 -0 4.5593425 4.7584228 5.1353606
+ 54400 2000 -0 4.5593433 4.7584229 5.1353594
+ 54500 2000 -0 4.5593442 4.7584231 5.1353589
+ 54600 2000 -0 4.5593451 4.7584234 5.1353588
+ 54700 2000 -0 4.559346 4.7584235 5.1353579
+ 54800 2000 -0 4.5593468 4.7584237 5.1353572
+ 54900 2000 -0 4.5593477 4.7584239 5.1353571
+ 55000 2000 -0 4.5593486 4.7584241 5.1353563
+ 55100 2000 -0 4.5593495 4.7584243 5.1353556
+ 55200 2000 -0 4.5593504 4.7584245 5.1353553
+ 55300 2000 -0 4.5593512 4.7584247 5.1353547
+ 55400 2000 -0 4.5593521 4.7584249 5.135354
+ 55500 2000 -0 4.559353 4.7584251 5.1353536
+ 55600 2000 -0 4.5593539 4.7584253 5.1353531
+ 55700 2000 -0 4.5593547 4.7584255 5.1353524
+ 55800 2000 -0 4.5593556 4.7584257 5.1353519
+ 55900 2000 -0 4.5593565 4.7584259 5.1353514
+ 56000 2000 -0 4.5593574 4.7584261 5.1353508
+ 56100 2000 -0 4.5593582 4.7584263 5.1353503
+ 56200 2000 -0 4.5593591 4.7584265 5.1353498
+ 56300 2000 -0 4.55936 4.7584267 5.1353491
+ 56400 2000 -0 4.5593609 4.7584269 5.1353486
+ 56500 2000 -0 4.5593618 4.7584271 5.1353481
+ 56600 2000 -0 4.5593626 4.7584273 5.1353475
+ 56700 2000 -0 4.5593635 4.7584275 5.135347
+ 56800 2000 -0 4.5593644 4.7584277 5.1353464
+ 56900 2000 -0 4.5593653 4.7584279 5.1353459
+ 57000 2000 -0 4.5593661 4.7584281 5.1353453
+ 57100 2000 -0 4.559367 4.7584283 5.1353448
+ 57200 2000 -0 4.5593679 4.7584285 5.1353442
+ 57300 2000 -0 4.5593688 4.7584287 5.1353437
+ 57400 2000 -0 4.5593697 4.7584289 5.1353431
+ 57500 2000 -0 4.5593705 4.7584291 5.1353426
+ 57600 2000 -0 4.5593714 4.7584293 5.135342
+ 57700 2000 -0 4.5593723 4.7584296 5.1353415
+ 57800 2000 -0 4.5593732 4.7584297 5.1353409
+ 57900 2000 -0 4.559374 4.7584299 5.1353404
+ 58000 2000 -0 4.5593749 4.7584301 5.1353398
+ 58100 2000 -0 4.5593758 4.7584303 5.1353393
+ 58200 2000 -0 4.5593767 4.7584305 5.1353387
+ 58300 2000 -0 4.5593775 4.7584307 5.1353382
+ 58400 2000 -0 4.5593784 4.7584309 5.1353376
+ 58500 2000 -0 4.5593793 4.7584311 5.1353371
+ 58600 2000 -0 4.5593802 4.7584313 5.1353365
+ 58700 2000 -0 4.559381 4.7584315 5.135336
+ 58800 2000 -0 4.5593819 4.7584317 5.1353355
+ 58900 2000 -0 4.5593828 4.7584319 5.1353349
+ 59000 2000 -0 4.5593837 4.7584321 5.1353344
+ 59100 2000 -0 4.5593845 4.7584323 5.1353338
+ 59200 2000 -0 4.5593854 4.7584325 5.1353333
+ 59300 2000 -0 4.5593863 4.7584327 5.1353327
+ 59400 2000 -0 4.5593872 4.7584329 5.1353322
+ 59500 2000 -0 4.559388 4.7584331 5.1353316
+ 59600 2000 -0 4.5593889 4.7584333 5.1353311
+ 59700 2000 -0 4.5593898 4.7584335 5.1353305
+ 59800 2000 -0 4.5593907 4.7584337 5.13533
+ 59900 2000 -0 4.5593915 4.7584339 5.1353294
+ 60000 2000 -0 4.5593924 4.7584341 5.1353289
+ 60100 2000 -0 4.5593933 4.7584343 5.1353283
+ 60200 2000 -0 4.5593942 4.7584345 5.1353278
+ 60300 2000 -0 4.559395 4.7584347 5.1353272
+ 60400 2000 -0 4.5593959 4.7584349 5.1353267
+ 60500 2000 -0 4.5593968 4.7584351 5.1353261
+ 60600 2000 -0 4.5593977 4.7584353 5.1353256
+ 60700 2000 -0 4.5593985 4.7584354 5.1353251
+ 60800 2000 -0 4.5593994 4.7584356 5.1353245
+ 60900 2000 -0 4.5594003 4.7584358 5.135324
+ 61000 2000 -0 4.5594012 4.758436 5.1353234
+ 61100 2000 -0 4.559402 4.7584362 5.1353229
+ 61200 2000 -0 4.5594029 4.7584364 5.1353223
+ 61300 2000 -0 4.5594038 4.7584366 5.1353218
+ 61400 2000 -0 4.5594047 4.7584368 5.1353212
+ 61500 2000 -0 4.5594055 4.758437 5.1353207
+ 61600 2000 -0 4.5594064 4.7584372 5.1353201
+ 61700 2000 -0 4.5594073 4.7584374 5.1353196
+ 61800 2000 -0 4.5594082 4.7584376 5.135319
+ 61900 2000 -0 4.559409 4.7584378 5.1353185
+ 62000 2000 -0 4.5594099 4.758438 5.135318
+ 62100 2000 -0 4.5594108 4.7584382 5.1353174
+ 62200 2000 -0 4.5594116 4.7584384 5.1353169
+ 62300 2000 -0 4.5594125 4.7584389 5.1353166
+ 62400 2000 -0 4.5594135 4.7584387 5.1353162
+ 62500 2000 -0 4.5594143 4.758439 5.1353156
+ 62600 2000 -0 4.5594152 4.7584392 5.1353151
+ 62700 2000 -0 4.5594161 4.7584394 5.1353146
+ 62800 2000 -0 4.559417 4.7584396 5.135314
+ 62900 2000 -0 4.5594178 4.7584398 5.1353135
+ 63000 2000 -0 4.5594187 4.75844 5.1353129
+ 63100 2000 -0 4.5594196 4.7584402 5.1353124
+ 63200 2000 -0 4.5594204 4.7584404 5.1353119
+ 63300 2000 -0 4.5594213 4.7584406 5.1353113
+ 63400 2000 -0 4.5594222 4.7584408 5.1353107
+ 63500 2000 -0 4.5594231 4.758441 5.1353102
+ 63600 2000 -0 4.5594239 4.7584412 5.1353097
+ 63700 2000 -0 4.5594248 4.7584414 5.1353091
+ 63800 2000 -0 4.5594257 4.7584416 5.1353086
+ 63900 2000 -0 4.5594265 4.7584418 5.135308
+ 64000 2000 -0 4.5594274 4.758442 5.1353075
+ 64100 2000 -0 4.5594283 4.7584422 5.1353069
+ 64200 2000 -0 4.5594292 4.7584424 5.1353064
+ 64300 2000 -0 4.55943 4.7584426 5.1353059
+ 64400 2000 -0 4.5594309 4.7584428 5.1353053
+ 64500 2000 -0 4.5594318 4.758443 5.1353048
+ 64600 2000 -0 4.5594327 4.7584432 5.1353042
+ 64700 2000 -0 4.5594335 4.7584434 5.1353037
+ 64800 2000 -0 4.5594344 4.7584436 5.1353031
+ 64900 2000 -0 4.5594353 4.7584438 5.1353026
+ 65000 2000 -0 4.5594361 4.758444 5.135302
+ 65100 2000 -0 4.559437 4.7584442 5.1353015
+ 65200 2000 -0 4.5594379 4.7584444 5.135301
+ 65300 2000 -0 4.5594388 4.7584446 5.1353004
+ 65400 2000 -0 4.5594396 4.7584448 5.1352999
+ 65500 2000 -0 4.5594405 4.758445 5.1352993
+ 65600 2000 -0 4.5594414 4.7584452 5.1352988
+ 65700 2000 -0 4.5594422 4.7584454 5.1352982
+ 65800 2000 -0 4.5594431 4.7584456 5.1352977
+ 65900 2000 -0 4.559444 4.7584458 5.1352972
+ 66000 2000 -0 4.5594449 4.758446 5.1352966
+ 66100 2000 -0 4.5594457 4.7584462 5.1352961
+ 66200 2000 -0 4.5594466 4.7584464 5.1352955
+ 66300 2000 -0 4.5594475 4.7584466 5.135295
+ 66400 2000 -0 4.5594483 4.7584468 5.1352944
+ 66500 2000 -0 4.5594492 4.758447 5.1352939
+ 66600 2000 -0 4.5594501 4.7584472 5.1352933
+ 66700 2000 -0 4.5594509 4.7584474 5.1352928
+ 66800 2000 -0 4.5594518 4.7584476 5.1352923
+ 66900 2000 -0 4.5594527 4.7584478 5.1352917
+ 67000 2000 -0 4.5594536 4.758448 5.1352912
+ 67100 2000 -0 4.5594544 4.7584482 5.1352906
+ 67200 2000 -0 4.5594553 4.7584484 5.1352901
+ 67300 2000 -0 4.5594562 4.7584486 5.1352896
+ 67400 2000 -0 4.559457 4.7584488 5.135289
+ 67500 2000 -0 4.5594579 4.758449 5.1352885
+ 67600 2000 -0 4.5594588 4.7584492 5.1352879
+ 67700 2000 -0 4.5594596 4.7584494 5.1352874
+ 67800 2000 -0 4.5594605 4.7584496 5.1352868
+ 67900 2000 -0 4.5594614 4.7584498 5.1352863
+ 68000 2000 -0 4.5594623 4.75845 5.1352858
+ 68100 2000 -0 4.5594631 4.7584502 5.1352852
+ 68200 2000 -0 4.559464 4.7584504 5.1352847
+ 68300 2000 -0 4.5594649 4.7584506 5.1352841
+ 68400 2000 -0 4.5594657 4.7584508 5.1352836
+ 68500 2000 -0 4.5594666 4.758451 5.135283
+ 68600 2000 -0 4.5594675 4.7584512 5.1352825
+ 68700 2000 -0 4.5594683 4.7584514 5.135282
+ 68800 2000 -0 4.5594692 4.7584515 5.1352814
+ 68900 2000 -0 4.5594701 4.7584517 5.1352809
+ 69000 2000 -0 4.5594709 4.7584519 5.1352803
+ 69100 2000 -0 4.5594718 4.7584521 5.1352798
+ 69200 2000 -0 4.5594727 4.7584523 5.1352793
+ 69300 2000 -0 4.5594736 4.7584525 5.1352787
+ 69400 2000 -0 4.5594744 4.7584527 5.1352782
+ 69500 2000 -0 4.5594753 4.7584529 5.1352776
+ 69600 2000 -0 4.5594762 4.7584531 5.1352771
+ 69700 2000 -0 4.559477 4.7584533 5.1352766
+ 69800 2000 -0 4.5594779 4.7584535 5.135276
+ 69900 2000 -0 4.5594788 4.7584537 5.1352755
+ 70000 2000 -0 4.5594796 4.7584539 5.1352749
+ 70100 2000 -0 4.5594805 4.7584541 5.1352744
+ 70200 2000 -0 4.5594814 4.7584543 5.1352738
+ 70300 2000 -0 4.5594822 4.7584545 5.1352733
+ 70400 2000 -0 4.5594831 4.7584547 5.1352728
+ 70500 2000 -0 4.559484 4.7584549 5.1352722
+ 70600 2000 -0 4.5594848 4.7584551 5.1352717
+ 70700 2000 -0 4.5594857 4.7584553 5.1352711
+ 70800 2000 -0 4.5594866 4.7584555 5.1352706
+ 70900 2000 -0 4.5594874 4.7584557 5.1352701
+ 71000 2000 -0 4.5594883 4.7584559 5.1352695
+ 71100 2000 -0 4.5594892 4.7584561 5.135269
+ 71200 2000 -0 4.5594901 4.7584563 5.1352684
+ 71300 2000 -0 4.5594909 4.7584565 5.1352679
+ 71400 2000 -0 4.5594918 4.7584567 5.1352674
+ 71500 2000 -0 4.5594927 4.7584569 5.1352668
+ 71600 2000 -0 4.5594935 4.7584571 5.1352663
+ 71700 2000 -0 4.5594944 4.7584573 5.1352657
+ 71800 2000 -0 4.5594953 4.7584575 5.1352652
+ 71900 2000 -0 4.5594961 4.7584577 5.1352647
+ 72000 2000 -0 4.559497 4.7584579 5.1352641
+ 72100 2000 -0 4.5594979 4.7584581 5.1352636
+ 72200 2000 -0 4.5594987 4.7584583 5.135263
+ 72300 2000 -0 4.5594996 4.7584585 5.1352625
+ 72400 2000 -0 4.5595005 4.7584587 5.135262
+ 72500 2000 -0 4.5595013 4.7584589 5.1352614
+ 72600 2000 -0 4.5595022 4.7584591 5.1352609
+ 72700 2000 -0 4.5595031 4.7584593 5.1352604
+ 72800 2000 -0 4.5595039 4.7584595 5.1352598
+ 72900 2000 -0 4.5595048 4.7584597 5.1352593
+ 73000 2000 -0 4.5595057 4.7584599 5.1352587
+ 73100 2000 -0 4.5595065 4.7584601 5.1352582
+ 73200 2000 -0 4.5595074 4.7584603 5.1352577
+ 73300 2000 -0 4.5595083 4.7584605 5.1352571
+ 73400 2000 -0 4.5595091 4.7584607 5.1352566
+ 73500 2000 -0 4.55951 4.7584609 5.135256
+ 73600 2000 -0 4.5595109 4.7584611 5.1352555
+ 73700 2000 -0 4.5595117 4.7584613 5.135255
+ 73800 2000 -0 4.5595126 4.7584615 5.1352544
+ 73900 2000 -0 4.5595135 4.7584617 5.1352539
+ 74000 2000 -0 4.5595143 4.7584619 5.1352534
+ 74100 2000 -0 4.5595152 4.7584621 5.1352528
+ 74200 2000 -0 4.5595161 4.7584623 5.1352523
+ 74300 2000 -0 4.559517 4.7584627 5.1352518
+ 74400 2000 -0 4.5595178 4.7584626 5.1352512
+ 74500 2000 -0 4.5595187 4.7584629 5.1352507
+ 74600 2000 -0 4.5595195 4.7584631 5.1352501
+ 74700 2000 -0 4.5595204 4.7584633 5.1352496
+ 74800 2000 -0 4.5595213 4.7584635 5.135249
+ 74900 2000 -0 4.5595221 4.7584637 5.1352485
+ 75000 2000 -0 4.559523 4.7584639 5.135248
+ 75100 2000 -0 4.5595239 4.7584641 5.1352474
+ 75200 2000 -0 4.5595247 4.7584643 5.1352469
+ 75300 2000 -0 4.5595256 4.7584645 5.1352464
+ 75400 2000 -0 4.5595265 4.7584647 5.1352458
+ 75500 2000 -0 4.5595273 4.7584649 5.1352453
+ 75600 2000 -0 4.5595282 4.758465 5.1352447
+ 75700 2000 -0 4.5595291 4.7584652 5.1352442
+ 75800 2000 -0 4.5595299 4.7584654 5.1352437
+ 75900 2000 -0 4.5595308 4.7584656 5.1352431
+ 76000 2000 -0 4.5595318 4.7584659 5.1352426
+ 76100 2000 -0 4.5595325 4.758466 5.1352421
+ 76200 2000 -0 4.5595334 4.7584662 5.1352415
+ 76300 2000 -0 4.5595342 4.7584664 5.135241
+ 76400 2000 -0 4.5595351 4.7584666 5.1352405
+ 76500 2000 -0 4.559536 4.7584668 5.1352399
+ 76600 2000 -0 4.5595368 4.758467 5.1352394
+ 76700 2000 -0 4.5595377 4.7584672 5.1352388
+ 76800 2000 -0 4.5595386 4.7584674 5.1352383
+ 76900 2000 -0 4.5595394 4.7584676 5.1352378
+ 77000 2000 -0 4.5595403 4.7584678 5.1352372
+ 77100 2000 -0 4.5595412 4.758468 5.1352367
+ 77200 2000 -0 4.559542 4.7584682 5.1352362
+ 77300 2000 -0 4.5595429 4.7584684 5.1352356
+ 77400 2000 -0 4.5595438 4.7584686 5.1352351
+ 77500 2000 -0 4.5595446 4.7584688 5.1352346
+ 77600 2000 -0 4.5595455 4.758469 5.135234
+ 77700 2000 -0 4.5595464 4.7584692 5.1352335
+ 77800 2000 -0 4.5595472 4.7584694 5.1352329
+ 77900 2000 -0 4.5595481 4.7584696 5.1352324
+ 78000 2000 -0 4.5595489 4.7584698 5.1352319
+ 78100 2000 -0 4.5595498 4.75847 5.1352313
+ 78200 2000 -0 4.5595507 4.7584702 5.1352308
+ 78300 2000 -0 4.5595515 4.7584704 5.1352303
+ 78400 2000 -0 4.5595524 4.7584706 5.1352297
+ 78500 2000 -0 4.5595533 4.7584708 5.1352292
+ 78600 2000 -0 4.5595541 4.758471 5.1352287
+ 78700 2000 -0 4.559555 4.7584712 5.1352281
+ 78800 2000 -0 4.5595559 4.7584714 5.1352276
+ 78900 2000 -0 4.5595567 4.7584716 5.1352271
+ 79000 2000 -0 4.5595576 4.7584718 5.1352265
+ 79100 2000 -0 4.5595584 4.758472 5.135226
+ 79200 2000 -0 4.5595593 4.7584722 5.1352255
+ 79300 2000 -0 4.5595602 4.7584724 5.1352249
+ 79400 2000 -0 4.559561 4.7584726 5.1352244
+ 79500 2000 -0 4.5595619 4.7584728 5.1352239
+ 79600 2000 -0 4.5595628 4.758473 5.1352233
+ 79700 2000 -0 4.5595636 4.7584732 5.1352228
+ 79800 2000 -0 4.5595645 4.7584734 5.1352222
+ 79900 2000 -0 4.5595654 4.7584736 5.1352217
+ 80000 2000 -0 4.5595662 4.7584738 5.1352212
+ 80100 2000 -0 4.5595671 4.758474 5.1352206
+ 80200 2000 -0 4.5595679 4.7584742 5.1352201
+ 80300 2000 -0 4.5595688 4.7584744 5.1352196
+ 80400 2000 -0 4.5595697 4.7584746 5.135219
+ 80500 2000 -0 4.5595705 4.7584748 5.1352185
+ 80600 2000 -0 4.5595714 4.758475 5.135218
+ 80700 2000 -0 4.5595723 4.7584752 5.1352174
+ 80800 2000 -0 4.5595731 4.7584753 5.1352169
+ 80900 2000 -0 4.559574 4.7584755 5.1352164
+ 81000 2000 -0 4.5595748 4.7584757 5.1352158
+ 81100 2000 -0 4.5595757 4.7584759 5.1352153
+ 81200 2000 -0 4.5595766 4.7584761 5.1352148
+ 81300 2000 -0 4.5595774 4.7584763 5.1352142
+ 81400 2000 -0 4.5595783 4.7584765 5.1352137
+ 81500 2000 -0 4.5595792 4.7584767 5.1352132
+ 81600 2000 -0 4.55958 4.7584769 5.1352126
+ 81700 2000 -0 4.5595809 4.7584771 5.1352121
+ 81800 2000 -0 4.5595817 4.7584773 5.1352116
+ 81900 2000 -0 4.5595826 4.7584775 5.135211
+ 82000 2000 -0 4.5595835 4.7584777 5.1352105
+ 82100 2000 -0 4.5595843 4.7584779 5.13521
+ 82200 2000 -0 4.5595852 4.7584781 5.1352094
+ 82300 2000 -0 4.559586 4.7584783 5.1352089
+ 82400 2000 -0 4.5595869 4.7584785 5.1352084
+ 82500 2000 -0 4.5595878 4.7584787 5.1352078
+ 82600 2000 -0 4.5595886 4.7584789 5.1352073
+ 82700 2000 -0 4.5595895 4.7584791 5.1352068
+ 82800 2000 -0 4.5595904 4.7584793 5.1352062
+ 82900 2000 -0 4.5595912 4.7584795 5.1352057
+ 83000 2000 -0 4.5595921 4.7584797 5.1352052
+ 83100 2000 -0 4.5595929 4.7584799 5.1352046
+ 83200 2000 -0 4.5595938 4.7584801 5.1352041
+ 83300 2000 -0 4.5595947 4.7584803 5.1352036
+ 83400 2000 -0 4.5595959 4.7584805 5.135203
+ 83500 2000 -0 4.5595964 4.7584807 5.1352026
+ 83600 2000 -0 4.5595972 4.7584809 5.1352019
+ 83700 2000 -0 4.5595981 4.7584811 5.1352015
+ 83800 2000 -0 4.559599 4.7584813 5.135201
+ 83900 2000 -0 4.5595998 4.7584815 5.1352003
+ 84000 2000 -0 4.5596007 4.7584817 5.1351999
+ 84100 2000 -0 4.5596016 4.7584819 5.1351994
+ 84200 2000 -0 4.5596024 4.7584821 5.1351988
+ 84300 2000 -0 4.5596033 4.7584823 5.1351982
+ 84400 2000 -0 4.5596041 4.7584825 5.1351978
+ 84500 2000 -0 4.559605 4.7584827 5.1351972
+ 84600 2000 -0 4.5596058 4.7584829 5.1351966
+ 84700 2000 -0 4.5596067 4.7584831 5.1351962
+ 84800 2000 -0 4.5596076 4.7584833 5.1351956
+ 84900 2000 -0 4.5596084 4.7584835 5.1351951
+ 85000 2000 -0 4.5596093 4.7584837 5.1351946
+ 85100 2000 -0 4.5596101 4.7584839 5.135194
+ 85200 2000 -0 4.559611 4.7584841 5.1351935
+ 85300 2000 -0 4.5596119 4.7584843 5.135193
+ 85400 2000 -0 4.5596127 4.7584845 5.1351924
+ 85500 2000 -0 4.5596136 4.7584847 5.1351919
+ 85600 2000 -0 4.5596144 4.7584848 5.1351914
+ 85700 2000 -0 4.5596153 4.758485 5.1351908
+ 85800 2000 -0 4.5596162 4.7584852 5.1351903
+ 85900 2000 -0 4.559617 4.7584854 5.1351898
+ 86000 2000 -0 4.5596179 4.7584856 5.1351892
+ 86100 2000 -0 4.5596187 4.7584858 5.1351887
+ 86200 2000 -0 4.5596196 4.758486 5.1351882
+ 86300 2000 -0 4.5596205 4.7584862 5.1351876
+ 86400 2000 -0 4.5596213 4.7584864 5.1351871
+ 86500 2000 -0 4.5596222 4.7584866 5.1351866
+ 86600 2000 -0 4.559623 4.7584868 5.1351861
+ 86700 2000 -0 4.5596239 4.758487 5.1351855
+ 86800 2000 -0 4.5596248 4.7584872 5.135185
+ 86900 2000 -0 4.5596256 4.7584874 5.1351845
+ 87000 2000 -0 4.5596265 4.7584876 5.1351839
+ 87100 2000 -0 4.5596273 4.7584878 5.1351834
+ 87200 2000 -0 4.5596282 4.758488 5.1351829
+ 87300 2000 -0 4.5596291 4.7584882 5.1351823
+ 87400 2000 -0 4.5596299 4.7584884 5.1351818
+ 87500 2000 -0 4.5596308 4.7584886 5.1351813
+ 87600 2000 -0 4.5596316 4.7584888 5.1351808
+ 87700 2000 -0 4.5596325 4.758489 5.1351802
+ 87800 2000 -0 4.5596333 4.7584892 5.1351797
+ 87900 2000 -0 4.5596342 4.7584894 5.1351792
+ 88000 2000 -0 4.5596351 4.7584896 5.1351786
+ 88100 2000 -0 4.5596359 4.7584898 5.1351781
+ 88200 2000 -0 4.5596368 4.75849 5.1351776
+ 88300 2000 -0 4.5596376 4.7584902 5.135177
+ 88400 2000 -0 4.5596385 4.7584904 5.1351765
+ 88500 2000 -0 4.5596394 4.7584906 5.135176
+ 88600 2000 -0 4.5596402 4.7584908 5.1351755
+ 88700 2000 -0 4.5596411 4.758491 5.1351749
+ 88800 2000 -0 4.5596419 4.7584912 5.1351744
+ 88900 2000 -0 4.5596428 4.7584914 5.1351739
+ 89000 2000 -0 4.5596436 4.7584916 5.1351733
+ 89100 2000 -0 4.5596445 4.7584918 5.1351728
+ 89200 2000 -0 4.5596454 4.758492 5.1351723
+ 89300 2000 -0 4.5596462 4.7584922 5.1351718
+ 89400 2000 -0 4.5596471 4.7584924 5.1351712
+ 89500 2000 -0 4.5596479 4.7584926 5.1351707
+ 89600 2000 -0 4.5596488 4.7584928 5.1351702
+ 89700 2000 -0 4.5596496 4.758493 5.1351696
+ 89800 2000 -0 4.5596505 4.7584932 5.1351691
+ 89900 2000 -0 4.5596514 4.7584934 5.1351686
+ 90000 2000 -0 4.5596522 4.7584936 5.1351681
+ 90100 2000 -0 4.5596531 4.7584937 5.1351675
+ 90200 2000 -0 4.5596539 4.7584939 5.135167
+ 90300 2000 -0 4.5596548 4.7584941 5.1351665
+ 90400 2000 -0 4.5596556 4.7584943 5.135166
+ 90500 2000 -0 4.5596565 4.7584945 5.1351654
+ 90600 2000 -0 4.5596574 4.7584947 5.1351649
+ 90700 2000 -0 4.5596582 4.7584949 5.1351644
+ 90800 2000 -0 4.5596591 4.7584951 5.1351638
+ 90900 2000 -0 4.5596599 4.7584953 5.1351633
+ 91000 2000 -0 4.5596608 4.7584955 5.1351628
+ 91100 2000 -0 4.5596616 4.7584957 5.1351623
+ 91200 2000 -0 4.5596625 4.7584959 5.1351617
+ 91300 2000 -0 4.5596633 4.7584961 5.1351612
+ 91400 2000 -0 4.5596642 4.7584963 5.1351607
+ 91500 2000 -0 4.5596651 4.7584965 5.1351602
+ 91600 2000 -0 4.5596659 4.7584967 5.1351596
+ 91700 2000 -0 4.5596668 4.7584969 5.1351591
+ 91800 2000 -0 4.5596676 4.7584971 5.1351586
+ 91900 2000 -0 4.5596685 4.7584973 5.135158
+ 92000 2000 -0 4.5596693 4.7584975 5.1351575
+ 92100 2000 -0 4.5596702 4.7584977 5.135157
+ 92200 2000 -0 4.5596711 4.7584979 5.1351565
+ 92300 2000 -0 4.5596719 4.7584981 5.1351559
+ 92400 2000 -0 4.5596728 4.7584983 5.1351554
+ 92500 2000 -0 4.5596736 4.7584985 5.1351549
+ 92600 2000 -0 4.5596745 4.7584987 5.1351544
+ 92700 2000 -0 4.5596753 4.7584989 5.1351538
+ 92800 2000 -0 4.5596762 4.7584991 5.1351533
+ 92900 2000 -0 4.5596772 4.7584992 5.1351528
+ 93000 2000 -0 4.5596781 4.7584993 5.1351523
+ 93100 2000 -0 4.5596791 4.7584995 5.1351517
+ 93200 2000 -0 4.55968 4.7584997 5.1351512
+ 93300 2000 -0 4.559681 4.7584998 5.1351507
+ 93400 2000 -0 4.5596819 4.7584999 5.1351502
+ 93500 2000 -0 4.5596829 4.7585 5.1351496
+ 93600 2000 -0 4.5596838 4.7585002 5.1351491
+ 93700 2000 -0 4.5596848 4.7585003 5.1351486
+ 93800 2000 -0 4.5596858 4.7585005 5.1351481
+ 93900 2000 -0 4.5596867 4.7585006 5.1351476
+ 94000 2000 -0 4.5596877 4.7585007 5.135147
+ 94100 2000 -0 4.5596886 4.7585009 5.1351465
+ 94200 2000 -0 4.5596896 4.758501 5.135146
+ 94300 2000 -0 4.5596907 4.7585015 5.1351456
+ 94400 2000 -0 4.5596915 4.7585013 5.1351449
+ 94500 2000 -0 4.5596924 4.7585015 5.1351445
+ 94600 2000 -0 4.5596934 4.7585016 5.1351439
+ 94700 2000 -0 4.5596943 4.7585017 5.1351434
+ 94800 2000 -0 4.5596953 4.7585019 5.1351429
+ 94900 2000 -0 4.5596962 4.758502 5.1351423
+ 95000 2000 -0 4.5596972 4.7585021 5.1351418
+ 95100 2000 -0 4.5596981 4.7585023 5.1351413
+ 95200 2000 -0 4.5596991 4.7585024 5.1351408
+ 95300 2000 -0 4.5597 4.7585026 5.1351402
+ 95400 2000 -0 4.559701 4.7585027 5.1351397
+ 95500 2000 -0 4.559702 4.7585028 5.1351392
+ 95600 2000 -0 4.5597029 4.758503 5.1351387
+ 95700 2000 -0 4.5597039 4.7585031 5.1351382
+ 95800 2000 -0 4.5597048 4.7585033 5.1351377
+ 95900 2000 -0 4.5597058 4.7585034 5.1351371
+ 96000 2000 -0 4.5597067 4.7585035 5.1351366
+ 96100 2000 -0 4.5597077 4.7585037 5.1351361
+ 96200 2000 -0 4.5597086 4.7585038 5.1351356
+ 96300 2000 -0 4.5597096 4.758504 5.1351351
+ 96400 2000 -0 4.5597105 4.7585041 5.1351345
+ 96500 2000 -0 4.5597115 4.7585042 5.135134
+ 96600 2000 -0 4.5597124 4.7585044 5.1351335
+ 96700 2000 -0 4.5597134 4.7585045 5.135133
+ 96800 2000 -0 4.5597143 4.7585047 5.1351325
+ 96900 2000 -0 4.5597153 4.7585048 5.1351319
+ 97000 2000 -0 4.5597162 4.7585049 5.1351314
+ 97100 2000 -0 4.5597172 4.7585051 5.1351309
+ 97200 2000 -0 4.5597181 4.7585052 5.1351304
+ 97300 2000 -0 4.5597191 4.7585054 5.1351299
+ 97400 2000 -0 4.5597201 4.7585055 5.1351293
+ 97500 2000 -0 4.559721 4.7585056 5.1351288
+ 97600 2000 -0 4.559722 4.7585058 5.1351283
+ 97700 2000 -0 4.5597229 4.7585059 5.1351278
+ 97800 2000 -0 4.5597239 4.7585061 5.1351273
+ 97900 2000 -0 4.5597248 4.7585062 5.1351267
+ 98000 2000 -0 4.5597258 4.7585063 5.1351262
+ 98100 2000 -0 4.5597267 4.7585065 5.1351257
+ 98200 2000 -0 4.5597277 4.7585066 5.1351252
+ 98300 2000 -0 4.5597286 4.7585068 5.1351247
+ 98400 2000 -0 4.5597296 4.7585069 5.1351241
+ 98500 2000 -0 4.5597305 4.758507 5.1351236
+ 98600 2000 -0 4.5597315 4.7585072 5.1351231
+ 98700 2000 -0 4.5597324 4.7585073 5.1351226
+ 98800 2000 -0 4.5597334 4.7585075 5.1351221
+ 98900 2000 -0 4.5597343 4.7585076 5.1351215
+ 99000 2000 -0 4.5597353 4.7585077 5.135121
+ 99100 2000 -0 4.5597362 4.7585079 5.1351205
+ 99200 2000 -0 4.5597372 4.758508 5.13512
+ 99300 2000 -0 4.5597381 4.7585082 5.1351195
+ 99400 2000 -0 4.5597391 4.7585083 5.1351189
+ 99500 2000 -0 4.55974 4.7585084 5.1351184
+ 99600 2000 -0 4.559741 4.7585086 5.1351179
+ 99700 2000 -0 4.5597419 4.7585087 5.1351174
+ 99800 2000 -0 4.5597429 4.7585089 5.1351169
+ 99900 2000 -0 4.5597438 4.758509 5.1351164
+ 100000 2000 -0 4.5597448 4.7585091 5.1351158
+Loop time of 28.5137 on 4 procs for 100000 steps with 2000 atoms
+
+Performance: 303012.391 tau/day, 3507.088 timesteps/s, 7.014 Matom-step/s
+98.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 | 13.673 | 14.898 | 16.176 | 28.4 | 52.25
+Neigh | 0.73867 | 0.77521 | 0.81583 | 4.0 | 2.72
+Comm | 4.3336 | 5.8757 | 7.3155 | 50.3 | 20.61
+Output | 0.020967 | 0.022222 | 0.025301 | 1.2 | 0.08
+Modify | 6.3623 | 6.5284 | 6.7446 | 5.7 | 22.90
+Other | | 0.4143 | | | 1.45
+
+Nlocal: 500 ave 502 max 498 min
+Histogram: 2 0 0 0 0 0 0 0 0 2
+Nghost: 548.5 ave 556 max 542 min
+Histogram: 1 0 1 0 0 1 0 0 0 1
+Neighs: 2427.25 ave 2528 max 2355 min
+Histogram: 2 0 0 0 0 1 0 0 0 1
+
+Total # of neighbors = 9709
+Ave neighs/atom = 4.8545
+Neighbor list builds = 5271
+Dangerous builds = 0
+
+Total wall time: 0:00:29
diff --git a/examples/granular/log.28Mar23.pour.heat.g++.1 b/examples/granular/log.28Mar23.pour.heat.g++.1
deleted file mode 100644
index 9ee7612e45..0000000000
--- a/examples/granular/log.28Mar23.pour.heat.g++.1
+++ /dev/null
@@ -1,1168 +0,0 @@
-LAMMPS (28 Mar 2023 - Development)
-# pour one types of particles into cylinder and oscillate
-# temperature of the bottom plate
-
-variable name string heat_plate
-
-atom_style sphere
-units lj
-
-###############################################
-# Geometry-related parameters
-###############################################
-
-variable boxx equal 10
-variable boxy equal 10
-variable boxz equal 50
-
-variable drum_rad equal ${boxx}*0.5
-variable drum_rad equal 10*0.5
-variable drum_height equal 30
-
-variable xc equal 0.5*${boxx}
-variable xc equal 0.5*10
-variable yc equal 0.5*${boxx}
-variable yc equal 0.5*10
-variable zc equal 0.5*${boxz}
-variable zc equal 0.5*50
-
-###############################################
-# Particle-related parameters
-###############################################
-variable rlo equal 0.25
-variable rhi equal 0.5
-variable dlo equal 2.0*${rlo}
-variable dlo equal 2.0*0.25
-variable dhi equal 2.0*${rhi}
-variable dhi equal 2.0*0.5
-
-variable cyl_rad_inner equal ${drum_rad}-1.1*${rhi}
-variable cyl_rad_inner equal 5-1.1*${rhi}
-variable cyl_rad_inner equal 5-1.1*0.5
-
-variable dens equal 1.0
-
-variable skin equal 0.4*${rhi}
-variable skin equal 0.4*0.5
-
-#############
-processors * * 1
-region boxreg block 0 ${boxx} 0 ${boxy} 0 ${boxz}
-region boxreg block 0 10 0 ${boxy} 0 ${boxz}
-region boxreg block 0 10 0 10 0 ${boxz}
-region boxreg block 0 10 0 10 0 50
-create_box 2 boxreg
-Created orthogonal box = (0 0 0) to (10 10 50)
- 1 by 1 by 1 MPI processor grid
-change_box all boundary p p f
-Changing box ...
-
-pair_style granular
-pair_coeff * * hertz/material 1e5 0.2 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji heat area 5.0
-
-region curved_wall cylinder z ${xc} ${yc} ${drum_rad} 0 ${drum_height} side in
-region curved_wall cylinder z 5 ${yc} ${drum_rad} 0 ${drum_height} side in
-region curved_wall cylinder z 5 5 ${drum_rad} 0 ${drum_height} side in
-region curved_wall cylinder z 5 5 5 0 ${drum_height} side in
-region curved_wall cylinder z 5 5 5 0 30 side in
-region bottom_wall plane ${xc} ${yc} 0 0 0 1 side in
-region bottom_wall plane 5 ${yc} 0 0 0 1 side in
-region bottom_wall plane 5 5 0 0 0 1 side in
-
-region insreg cylinder z ${xc} ${yc} ${cyl_rad_inner} ${drum_height} ${boxz}
-region insreg cylinder z 5 ${yc} ${cyl_rad_inner} ${drum_height} ${boxz}
-region insreg cylinder z 5 5 ${cyl_rad_inner} ${drum_height} ${boxz}
-region insreg cylinder z 5 5 4.45 ${drum_height} ${boxz}
-region insreg cylinder z 5 5 4.45 30 ${boxz}
-region insreg cylinder z 5 5 4.45 30 50
-
-fix 0 all property/atom temperature heatflow
-WARNING: Fix property/atom mol, charge, rmass, temperature, or heatflow w/out ghost communication (../fix_property_atom.cpp:194)
-fix 1 all balance 100 1.0 shift xy 5 1.1
-fix 2 all nve/sphere
-fix 3 all heat/flow constant 1.0
-fix grav all gravity 10 vector 0 0 -1
-fix ins1 all pour 1000 1 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
-fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
-fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
-fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens 1 ${dens}
-fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 594 every 400 steps, 1000 by step 401
-fix ins2 all pour 1000 2 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
-fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
-fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
-fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens 1 ${dens}
-fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 594 every 400 steps, 1000 by step 401
-
-comm_modify vel yes
-
-neighbor ${skin} bin
-neighbor 0.2 bin
-neigh_modify delay 0 every 1 check yes
-
-variable oscillate equal 1.0*sin(step*0.0001)
-
-fix 4 all wall/gran/region granular hertz/material 1e5 0.1 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji region curved_wall
-fix 5 all wall/gran/region granular hertz/material 1e5 0.1 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji heat area 5.0 region bottom_wall temperature v_oscillate
-
-thermo_style custom step atoms ke pxx pyy pzz
-thermo_modify lost warn
-thermo 100
-
-timestep 0.001
-
-dump 1 all custom 1000 ${name}.dump id type radius mass x y z temperature heatflow
-dump 1 all custom 1000 heat_plate.dump id type radius mass x y z temperature heatflow
-
-run 100000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Neighbor list info ...
- update: every = 1 steps, delay = 0 steps, check = yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 1.2
- ghost atom cutoff = 1.2
- binsize = 0.6, bins = 17 17 84
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair granular, perpetual
- attributes: half, newton on, size, history
- pair build: half/size/bin/newton
- stencil: half/bin/3d
- bin: standard
-Per MPI rank memory allocation (min/avg/max) = 5.944 | 5.944 | 5.944 Mbytes
- Step Atoms KinEng Pxx Pyy Pzz
- 0 0 -0 0 0 0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 100 536 -0 0 0 7.4220499
- 200 536 -0 0 0 10.753096
- 300 536 -0 0 0 13.500241
- 400 536 -0 0 0 18.036636
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 500 903 -0 0 0 25.955524
- 600 903 -0 0 0 32.116907
- 700 903 -0 0.03620165 0.033499977 32.179357
- 800 903 -0 0.2106713 0.26431108 36.206318
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 900 1265 -0 0.2667335 0.20266671 44.177757
- 1000 1265 -0 0.51829264 0.67739216 49.904079
- 1100 1265 -0 0.87526847 0.66040207 53.13465
- 1200 1265 -0 0.7989492 0.81976513 54.277194
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 1300 1618 -0 1.0736038 1.2317728 60.921948
- 1400 1618 -0 3.6835952 3.1929764 60.725834
- 1500 1618 -0 2.756994 2.611876 61.575807
- 1600 1618 -0 3.3981246 3.253067 61.920098
- 1700 2000 -0 3.8273855 3.6731016 68.643557
- 1800 2000 -0 4.7528855 4.4495018 69.914035
- 1900 2000 -0 5.1197897 5.3612522 76.341875
- 2000 2000 -0 7.4609619 7.3959134 76.619654
- 2100 2000 -0 6.8808532 7.6237902 73.684129
- 2200 2000 -0 10.034925 9.4881564 72.897703
- 2300 2000 -0 10.110575 10.379096 70.330499
- 2400 2000 -0 12.458237 12.285825 68.726515
- 2500 2000 -0 11.081771 11.120864 59.216898
- 2600 2000 -0 11.441977 11.532286 57.698842
- 2700 2000 -0 12.285359 11.905254 56.086117
- 2800 2000 -0 13.392058 13.168532 54.678918
- 2900 2000 -0 12.439277 12.212282 49.214122
- 3000 2000 -0 11.12664 11.09865 43.35763
- 3100 2000 -0 12.899283 12.735645 45.72121
- 3200 2000 -0 13.397802 12.892421 40.82795
- 3300 2000 -0 11.935141 11.858897 33.412627
- 3400 2000 -0 12.005889 11.539848 29.290034
- 3500 2000 -0 13.311405 13.11741 27.54997
- 3600 2000 -0 11.985219 11.954031 21.79518
- 3700 2000 -0 10.728636 9.800667 14.497682
- 3800 2000 -0 10.082744 9.6420894 12.241554
- 3900 2000 -0 9.6227604 9.1331298 10.31104
- 4000 2000 -0 8.9197423 8.5118438 7.6564098
- 4100 2000 -0 8.224539 7.765121 6.4246439
- 4200 2000 -0 7.8352874 7.3855212 5.9657978
- 4300 2000 -0 7.84891 7.3973377 6.2217099
- 4400 2000 -0 7.9743441 7.5242803 6.7082653
- 4500 2000 -0 7.9906412 7.5831386 6.7093176
- 4600 2000 -0 7.9382395 7.4929459 6.4150432
- 4700 2000 -0 7.9318996 7.4971722 6.4746841
- 4800 2000 -0 7.9685751 7.5471868 6.6574514
- 4900 2000 -0 7.9524289 7.516294 6.5660525
- 5000 2000 -0 7.9378811 7.5115542 6.5001617
- 5100 2000 -0 7.9266301 7.5073503 6.5253548
- 5200 2000 -0 7.9434374 7.5177496 6.5845847
- 5300 2000 -0 7.9305032 7.5191693 6.5372085
- 5400 2000 -0 7.9402877 7.5254309 6.5520449
- 5500 2000 -0 7.9427052 7.5280949 6.5557961
- 5600 2000 -0 7.9391493 7.5233972 6.5331874
- 5700 2000 -0 7.9399937 7.5202519 6.543535
- 5800 2000 -0 7.9398529 7.5228566 6.54443
- 5900 2000 -0 7.9410688 7.5260002 6.5435973
- 6000 2000 -0 7.941019 7.5216292 6.5431831
- 6100 2000 -0 7.9390808 7.5219254 6.5415317
- 6200 2000 -0 7.9481596 7.5395611 6.5622388
- 6300 2000 -0 7.9490652 7.5315638 6.5562056
- 6400 2000 -0 7.9427506 7.5243388 6.5431344
- 6500 2000 -0 7.9452629 7.5265503 6.5495796
- 6600 2000 -0 7.9458414 7.5249099 6.5533876
- 6700 2000 -0 7.94418 7.525769 6.5394106
- 6800 2000 -0 7.943729 7.5287032 6.5405826
- 6900 2000 -0 7.947609 7.5300725 6.5559575
- 7000 2000 -0 7.9443102 7.5257838 6.5463817
- 7100 2000 -0 7.9441301 7.5276861 6.5381619
- 7200 2000 -0 7.9454486 7.5282359 6.5456825
- 7300 2000 -0 7.945263 7.5286763 6.5512798
- 7400 2000 -0 7.9420874 7.527752 6.5445142
- 7500 2000 -0 7.9441062 7.5272938 6.5441649
- 7600 2000 -0 7.9457317 7.528108 6.5503985
- 7700 2000 -0 7.9440802 7.5278111 6.5470895
- 7800 2000 -0 7.9431937 7.5265385 6.541355
- 7900 2000 -0 7.9443162 7.5279484 6.5500105
- 8000 2000 -0 7.9494361 7.5285053 6.5534428
- 8100 2000 -0 7.946984 7.5263991 6.5455634
- 8200 2000 -0 7.9484464 7.5274982 6.5494966
- 8300 2000 -0 7.9481535 7.5274655 6.5501241
- 8400 2000 -0 7.9479539 7.5273074 6.5488317
- 8500 2000 -0 7.9485734 7.5277795 6.5512236
- 8600 2000 -0 7.9479221 7.528244 6.5500855
- 8700 2000 -0 7.9478183 7.5276603 6.5489063
- 8800 2000 -0 7.948203 7.5284835 6.5517141
- 8900 2000 -0 7.9485476 7.5282914 6.5523536
- 9000 2000 -0 7.9480852 7.527842 6.5485105
- 9100 2000 -0 7.9503303 7.5292996 6.5521516
- 9200 2000 -0 7.9484069 7.5284723 6.5532887
- 9300 2000 -0 7.9477781 7.5273643 6.5479285
- 9400 2000 -0 7.9480058 7.5281007 6.5494258
- 9500 2000 -0 7.9502363 7.5292831 6.5551525
- 9600 2000 -0 7.9491036 7.5284568 6.5495709
- 9700 2000 -0 7.9486046 7.5277883 6.5479749
- 9800 2000 -0 7.949523 7.5288246 6.5522055
- 9900 2000 -0 7.9494267 7.5284447 6.5514459
- 10000 2000 -0 7.9488016 7.5280346 6.5482727
- 10100 2000 -0 7.9490863 7.5283793 6.5508377
- 10200 2000 -0 7.9494738 7.5286559 6.5521934
- 10300 2000 -0 7.94897 7.5280769 6.5494088
- 10400 2000 -0 7.9491066 7.52825 6.5501939
- 10500 2000 -0 7.9493209 7.5285384 6.5519118
- 10600 2000 -0 7.9491644 7.5282301 6.5502712
- 10700 2000 -0 7.9491801 7.5281441 6.5499963
- 10800 2000 -0 7.9493282 7.5284381 6.5515091
- 10900 2000 -0 7.9492367 7.5283402 6.5507061
- 11000 2000 -0 7.9491668 7.5282029 6.5500415
- 11100 2000 -0 7.9493582 7.5283461 6.5510357
- 11200 2000 -0 7.949305 7.5283898 6.55098
- 11300 2000 -0 7.9491619 7.5282773 6.5501609
- 11400 2000 -0 7.9492854 7.5283288 6.5506804
- 11500 2000 -0 7.9493516 7.5283815 6.5509932
- 11600 2000 -0 7.9492185 7.5283196 6.5504137
- 11700 2000 -0 7.9492341 7.5283288 6.5505111
- 11800 2000 -0 7.9493062 7.5283673 6.5508542
- 11900 2000 -0 7.9492738 7.5283272 6.5506104
- 12000 2000 -0 7.9492546 7.5283062 6.5505492
- 12100 2000 -0 7.9492631 7.5283416 6.5507445
- 12200 2000 -0 7.9492627 7.5283173 6.5506804
- 12300 2000 -0 7.9492692 7.5282802 6.5506371
- 12400 2000 -0 7.9492646 7.5282953 6.550753
- 12500 2000 -0 7.9492316 7.5282905 6.5507057
- 12600 2000 -0 7.9492342 7.5282624 6.5506826
- 12700 2000 -0 7.9492517 7.5282775 6.5507828
- 12800 2000 -0 7.9492092 7.5282666 6.5507381
- 12900 2000 -0 7.9491704 7.528266 6.550672
- 13000 2000 -0 7.9491743 7.5282771 6.550743
- 13100 2000 -0 7.9491605 7.5282824 6.5507079
- 13200 2000 -0 7.9491217 7.5282926 6.5506177
- 13300 2000 -0 7.9491063 7.5283202 6.5506443
- 13400 2000 -0 7.949103 7.5283325 6.5506231
- 13500 2000 -0 7.9490907 7.5283364 6.5505438
- 13600 2000 -0 7.9490835 7.5283584 6.5505599
- 13700 2000 -0 7.9490777 7.5283759 6.5505599
- 13800 2000 -0 7.9490712 7.5283756 6.5504932
- 13900 2000 -0 7.9490785 7.5283817 6.5505065
- 14000 2000 -0 7.9490815 7.5283933 6.5505387
- 14100 2000 -0 7.9490684 7.528393 6.5504862
- 14200 2000 -0 7.9490688 7.5283905 6.5504794
- 14300 2000 -0 7.9490814 7.5283907 6.5505315
- 14400 2000 -0 7.9490755 7.5283879 6.5505125
- 14500 2000 -0 7.949065 7.5283808 6.5504867
- 14600 2000 -0 7.9490721 7.5283768 6.5505326
- 14700 2000 -0 7.9490774 7.5283658 6.5505527
- 14800 2000 -0 7.9490719 7.5283503 6.5505371
- 14900 2000 -0 7.9490734 7.5283397 6.5505695
- 15000 2000 -0 7.9490832 7.5283255 6.5506123
- 15100 2000 -0 7.9490922 7.5283034 6.5506235
- 15200 2000 -0 7.9491032 7.5282854 6.550654
- 15300 2000 -0 7.9491184 7.5282713 6.5507005
- 15400 2000 -0 7.9491364 7.5282536 6.5507233
- 15500 2000 -0 7.9491577 7.5282382 6.5507454
- 15600 2000 -0 7.949183 7.5282317 6.550776
- 15700 2000 -0 7.9491951 7.5282268 6.5507835
- 15800 2000 -0 7.9492105 7.5282249 6.5507815
- 15900 2000 -0 7.9492261 7.5282273 6.5507862
- 16000 2000 -0 7.949236 7.5282329 6.5507802
- 16100 2000 -0 7.9492433 7.5282403 6.5507646
- 16200 2000 -0 7.9492443 7.5282461 6.5507548
- 16300 2000 -0 7.9492487 7.528255 6.5507491
- 16400 2000 -0 7.9492492 7.5282612 6.5507372
- 16500 2000 -0 7.9492486 7.5282664 6.5507287
- 16600 2000 -0 7.9492482 7.5282702 6.5507259
- 16700 2000 -0 7.9492484 7.528271 6.550724
- 16800 2000 -0 7.949248 7.5282702 6.550724
- 16900 2000 -0 7.9492465 7.5282682 6.5507268
- 17000 2000 -0 7.9492458 7.5282638 6.550732
- 17100 2000 -0 7.9492503 7.5282577 6.5507415
- 17200 2000 -0 7.949245 7.528249 6.5507522
- 17300 2000 -0 7.949242 7.5282399 6.5507633
- 17400 2000 -0 7.9492423 7.5282314 6.5507781
- 17500 2000 -0 7.9492337 7.5282196 6.5507929
- 17600 2000 -0 7.9492257 7.5282097 6.5508056
- 17700 2000 -0 7.9492144 7.528202 6.5508153
- 17800 2000 -0 7.9492005 7.5281972 6.5508223
- 17900 2000 -0 7.9491836 7.5281958 6.5508215
- 18000 2000 -0 7.949164 7.5281986 6.550812
- 18100 2000 -0 7.949143 7.5282062 6.5507959
- 18200 2000 -0 7.9491222 7.5282177 6.550773
- 18300 2000 -0 7.9491032 7.5282315 6.5507447
- 18400 2000 -0 7.9490869 7.5282471 6.5507157
- 18500 2000 -0 7.9490738 7.5282631 6.5506876
- 18600 2000 -0 7.9490639 7.5282782 6.5506612
- 18700 2000 -0 7.9490575 7.5282917 6.5506397
- 18800 2000 -0 7.9490536 7.5283031 6.5506231
- 18900 2000 -0 7.9490511 7.5283122 6.5506095
- 19000 2000 -0 7.9490498 7.528319 6.5505999
- 19100 2000 -0 7.9490494 7.5283236 6.5505947
- 19200 2000 -0 7.9490504 7.5283266 6.5505913
- 19300 2000 -0 7.9490487 7.5283271 6.5505908
- 19400 2000 -0 7.9490481 7.5283251 6.5505927
- 19500 2000 -0 7.9490469 7.5283215 6.550597
- 19600 2000 -0 7.949046 7.5283161 6.5506036
- 19700 2000 -0 7.9490455 7.5283086 6.5506131
- 19800 2000 -0 7.9490454 7.5282989 6.5506262
- 19900 2000 -0 7.9490466 7.528287 6.550643
- 20000 2000 -0 7.9490497 7.5282729 6.5506641
- 20100 2000 -0 7.9490553 7.5282568 6.5506893
- 20200 2000 -0 7.949064 7.5282394 6.5507187
- 20300 2000 -0 7.9490762 7.5282213 6.5507507
- 20400 2000 -0 7.949092 7.5282037 6.5507836
- 20500 2000 -0 7.94911 7.5281878 6.5508144
- 20600 2000 -0 7.9491297 7.5281748 6.5508407
- 20700 2000 -0 7.9491494 7.5281658 6.5508604
- 20800 2000 -0 7.9491678 7.528161 6.5508721
- 20900 2000 -0 7.9491837 7.5281604 6.5508761
- 21000 2000 -0 7.9491965 7.5281634 6.5508735
- 21100 2000 -0 7.949206 7.5281691 6.5508664
- 21200 2000 -0 7.9492125 7.5281763 6.5508566
- 21300 2000 -0 7.9492165 7.5281841 6.5508459
- 21400 2000 -0 7.9492186 7.5281916 6.5508355
- 21500 2000 -0 7.9492193 7.5281981 6.5508266
- 21600 2000 -0 7.9492209 7.5282042 6.5508206
- 21700 2000 -0 7.9492183 7.5282068 6.5508151
- 21800 2000 -0 7.9492181 7.5282082 6.550813
- 21900 2000 -0 7.9492172 7.5282078 6.5508133
- 22000 2000 -0 7.9492165 7.5282053 6.5508164
- 22100 2000 -0 7.949216 7.5282009 6.5508221
- 22200 2000 -0 7.9492152 7.5281947 6.5508303
- 22300 2000 -0 7.9492139 7.5281868 6.5508407
- 22400 2000 -0 7.9492119 7.5281776 6.5508533
- 22500 2000 -0 7.9492085 7.5281675 6.5508672
- 22600 2000 -0 7.9492032 7.5281571 6.5508813
- 22700 2000 -0 7.9491954 7.5281475 6.5508947
- 22800 2000 -0 7.9491847 7.5281397 6.5509055
- 22900 2000 -0 7.9491707 7.5281345 6.5509114
- 23000 2000 -0 7.9491537 7.5281331 6.5509109
- 23100 2000 -0 7.9491342 7.528136 6.5509027
- 23200 2000 -0 7.9491134 7.5281433 6.5508866
- 23300 2000 -0 7.9490926 7.5281544 6.5508637
- 23400 2000 -0 7.9490734 7.5281684 6.5508363
- 23500 2000 -0 7.9490569 7.528184 6.550807
- 23600 2000 -0 7.9490436 7.5281999 6.5507785
- 23700 2000 -0 7.9490338 7.5282151 6.5507528
- 23800 2000 -0 7.9490271 7.5282287 6.550731
- 23900 2000 -0 7.9490229 7.5282402 6.5507135
- 24000 2000 -0 7.949022 7.5282475 6.5507052
- 24100 2000 -0 7.9490192 7.5282571 6.5506903
- 24200 2000 -0 7.9490187 7.5282612 6.5506857
- 24300 2000 -0 7.9490182 7.5282637 6.5506814
- 24400 2000 -0 7.9490176 7.5282644 6.5506802
- 24500 2000 -0 7.9490169 7.5282632 6.5506827
- 24600 2000 -0 7.9490162 7.52826 6.5506869
- 24700 2000 -0 7.949015 7.5282547 6.5506925
- 24800 2000 -0 7.9490143 7.5282475 6.5507019
- 24900 2000 -0 7.9490142 7.5282382 6.5507152
- 25000 2000 -0 7.949015 7.5282266 6.5507309
- 25100 2000 -0 7.9490178 7.5282127 6.5507512
- 25200 2000 -0 7.9490231 7.5281971 6.5507767
- 25300 2000 -0 7.9490313 7.5281798 6.5508053
- 25400 2000 -0 7.949043 7.5281617 6.5508367
- 25500 2000 -0 7.9490581 7.5281441 6.5508697
- 25600 2000 -0 7.949076 7.5281281 6.5509009
- 25700 2000 -0 7.9490959 7.528112 6.550928
- 25800 2000 -0 7.9491161 7.5281041 6.5509477
- 25900 2000 -0 7.9491345 7.5280996 6.5509612
- 26000 2000 -0 7.9491506 7.5280986 6.5509657
- 26100 2000 -0 7.9491638 7.5281011 6.5509636
- 26200 2000 -0 7.949174 7.5281064 6.5509573
- 26300 2000 -0 7.949181 7.5281134 6.5509475
- 26400 2000 -0 7.9491854 7.5281211 6.5509367
- 26500 2000 -0 7.9491879 7.5281286 6.5509264
- 26600 2000 -0 7.9491889 7.5281353 6.5509172
- 26700 2000 -0 7.9491886 7.5281409 6.5509104
- 26800 2000 -0 7.9491886 7.5281441 6.5509048
- 26900 2000 -0 7.9491879 7.5281458 6.5509024
- 27000 2000 -0 7.9491875 7.5281457 6.5509025
- 27100 2000 -0 7.949187 7.5281435 6.5509052
- 27200 2000 -0 7.9491866 7.5281393 6.5509102
- 27300 2000 -0 7.9491861 7.5281333 6.5509181
- 27400 2000 -0 7.9491851 7.5281257 6.5509283
- 27500 2000 -0 7.9491834 7.5281166 6.5509402
- 27600 2000 -0 7.9491805 7.5281065 6.550954
- 27700 2000 -0 7.9491758 7.5280961 6.5509683
- 27800 2000 -0 7.9491687 7.5280862 6.5509818
- 27900 2000 -0 7.9491588 7.5280779 6.5509931
- 28000 2000 -0 7.9491457 7.5280721 6.5510002
- 28100 2000 -0 7.9491294 7.5280699 6.551001
- 28200 2000 -0 7.9491105 7.5280718 6.5509942
- 28300 2000 -0 7.9490901 7.5280782 6.5509797
- 28400 2000 -0 7.9490695 7.5280885 6.550958
- 28500 2000 -0 7.9490501 7.5281019 6.5509312
- 28600 2000 -0 7.9490332 7.5281172 6.5509022
- 28700 2000 -0 7.9490195 7.5281331 6.5508735
- 28800 2000 -0 7.9490075 7.528149 6.5508475
- 28900 2000 -0 7.9490015 7.528163 6.5508246
- 29000 2000 -0 7.9489976 7.5281742 6.5508062
- 29100 2000 -0 7.9489952 7.5281837 6.5507921
- 29200 2000 -0 7.948994 7.5281911 6.550782
- 29300 2000 -0 7.9489934 7.5281962 6.5507753
- 29400 2000 -0 7.9489932 7.5281992 6.5507715
- 29500 2000 -0 7.9489929 7.5282002 6.5507702
- 29600 2000 -0 7.9489925 7.5281992 6.5507714
- 29700 2000 -0 7.9489918 7.5281964 6.5507748
- 29800 2000 -0 7.948991 7.5281916 6.5507805
- 29900 2000 -0 7.9489903 7.5281848 6.5507891
- 30000 2000 -0 7.9489901 7.5281759 6.5508007
- 30100 2000 -0 7.9489909 7.5281648 6.5508159
- 30200 2000 -0 7.9489933 7.5281515 6.5508353
- 30300 2000 -0 7.948998 7.5281362 6.550859
- 30400 2000 -0 7.9490056 7.5281192 6.5508868
- 30500 2000 -0 7.9490165 7.5281012 6.5509178
- 30600 2000 -0 7.9490309 7.5280833 6.5509503
- 30700 2000 -0 7.9490483 7.5280667 6.5509821
- 30800 2000 -0 7.9490676 7.5280525 6.5510103
- 30900 2000 -0 7.9490876 7.5280418 6.5510325
- 31000 2000 -0 7.9491067 7.5280353 6.5510472
- 31100 2000 -0 7.9491237 7.5280331 6.551054
- 31200 2000 -0 7.9491378 7.5280348 6.5510539
- 31300 2000 -0 7.9491487 7.5280394 6.5510483
- 31400 2000 -0 7.9491564 7.5280461 6.5510392
- 31500 2000 -0 7.9491615 7.5280537 6.5510287
- 31600 2000 -0 7.9491644 7.5280614 6.551018
- 31700 2000 -0 7.9491657 7.5280683 6.5510084
- 31800 2000 -0 7.949166 7.528074 6.5510005
- 31900 2000 -0 7.9491658 7.5280781 6.5509948
- 32000 2000 -0 7.9491652 7.5280804 6.5509914
- 32100 2000 -0 7.949165 7.5280809 6.5509907
- 32200 2000 -0 7.9491641 7.5280793 6.5509925
- 32300 2000 -0 7.9491637 7.5280757 6.5509969
- 32400 2000 -0 7.9491632 7.5280703 6.5510038
- 32500 2000 -0 7.9491625 7.5280632 6.5510132
- 32600 2000 -0 7.9491611 7.5280545 6.5510247
- 32700 2000 -0 7.9491587 7.5280447 6.5510379
- 32800 2000 -0 7.9491546 7.5280344 6.551052
- 32900 2000 -0 7.9491484 7.5280242 6.5510659
- 33000 2000 -0 7.9491395 7.5280153 6.5510781
- 33100 2000 -0 7.9491275 7.5280085 6.5510867
- 33200 2000 -0 7.9491123 7.528005 6.5510898
- 33300 2000 -0 7.9490942 7.5280055 6.5510857
- 33400 2000 -0 7.9490743 7.5280104 6.5510737
- 33500 2000 -0 7.9490536 7.5280195 6.5510543
- 33600 2000 -0 7.9490337 7.5280319 6.5510291
- 33700 2000 -0 7.9490159 7.5280467 6.5510006
- 33800 2000 -0 7.9490011 7.5280624 6.5509715
- 33900 2000 -0 7.9489897 7.528078 6.5509442
- 34000 2000 -0 7.9489816 7.5280924 6.5509203
- 34100 2000 -0 7.9489763 7.528105 6.5509004
- 34200 2000 -0 7.9489732 7.5281155 6.5508849
- 34300 2000 -0 7.9489717 7.5281236 6.5508735
- 34400 2000 -0 7.948971 7.5281295 6.5508656
- 34500 2000 -0 7.9489707 7.5281332 6.5508608
- 34600 2000 -0 7.9489705 7.5281349 6.5508586
- 34700 2000 -0 7.9489701 7.5281347 6.5508588
- 34800 2000 -0 7.9489695 7.5281326 6.5508613
- 34900 2000 -0 7.9489672 7.5281294 6.5508657
- 35000 2000 -0 7.9489679 7.5281227 6.5508731
- 35100 2000 -0 7.9489674 7.5281145 6.5508833
- 35200 2000 -0 7.9489677 7.5281044 6.5508973
- 35300 2000 -0 7.9489695 7.5280919 6.550915
- 35400 2000 -0 7.948973 7.5280774 6.5509365
- 35500 2000 -0 7.9489794 7.5280611 6.5509628
- 35600 2000 -0 7.9489889 7.5280435 6.5509926
- 35700 2000 -0 7.9490018 7.5280255 6.5510245
- 35800 2000 -0 7.949018 7.5280082 6.5510567
- 35900 2000 -0 7.9490366 7.5279929 6.5510867
- 36000 2000 -0 7.9490564 7.5279807 6.5511115
- 36100 2000 -0 7.949076 7.5279725 6.5511293
- 36200 2000 -0 7.949094 7.5279685 6.5511394
- 36300 2000 -0 7.9491093 7.5279687 6.5511419
- 36400 2000 -0 7.9491215 7.5279722 6.5511382
- 36500 2000 -0 7.9491305 7.5279782 6.5511304
- 36600 2000 -0 7.9491366 7.5279855 6.5511203
- 36700 2000 -0 7.9491403 7.5279933 6.5511095
- 36800 2000 -0 7.9491422 7.5280006 6.5510994
- 36900 2000 -0 7.9491429 7.5280069 6.5510907
- 37000 2000 -0 7.9491428 7.5280118 6.551084
- 37100 2000 -0 7.9491423 7.5280149 6.5510796
- 37200 2000 -0 7.9491417 7.5280162 6.5510777
- 37300 2000 -0 7.9491412 7.5280155 6.5510784
- 37400 2000 -0 7.9491407 7.5280129 6.5510816
- 37500 2000 -0 7.9491403 7.5280083 6.5510874
- 37600 2000 -0 7.9491397 7.528002 6.5510957
- 37700 2000 -0 7.9491387 7.527994 6.5511062
- 37800 2000 -0 7.9491368 7.5279847 6.5511187
- 37900 2000 -0 7.9491337 7.5279745 6.5511324
- 38000 2000 -0 7.9491286 7.5279642 6.5511466
- 38100 2000 -0 7.9491211 7.5279546 6.5511598
- 38200 2000 -0 7.9491106 7.5279467 6.5511704
- 38300 2000 -0 7.9490969 7.5279415 6.5511764
- 38400 2000 -0 7.9490802 7.52794 6.5511759
- 38500 2000 -0 7.9490611 7.5279428 6.5511678
- 38600 2000 -0 7.9490407 7.5279499 6.5511519
- 38700 2000 -0 7.9490203 7.5279608 6.5511293
- 38800 2000 -0 7.9490014 7.5279745 6.5511022
- 38900 2000 -0 7.9489851 7.5279899 6.5510732
- 39000 2000 -0 7.9489721 7.5280057 6.5510448
- 39100 2000 -0 7.9489624 7.5280208 6.5510192
- 39200 2000 -0 7.9489558 7.5280344 6.5509973
- 39300 2000 -0 7.9489516 7.528046 6.5509797
- 39400 2000 -0 7.9489493 7.5280554 6.5509663
- 39500 2000 -0 7.9489481 7.5280625 6.5509567
- 39600 2000 -0 7.9489476 7.5280674 6.5509503
- 39700 2000 -0 7.9489475 7.5280702 6.5509463
- 39800 2000 -0 7.9489472 7.5280711 6.5509448
- 39900 2000 -0 7.9489468 7.5280701 6.5509455
- 40000 2000 -0 7.9489461 7.5280673 6.5509484
- 40100 2000 -0 7.9489453 7.5280625 6.5509538
- 40200 2000 -0 7.9489445 7.5280556 6.5509619
- 40300 2000 -0 7.9489443 7.5280466 6.550973
- 40400 2000 -0 7.948945 7.5280353 6.5509879
- 40500 2000 -0 7.9489474 7.5280219 6.5510068
- 40600 2000 -0 7.9489521 7.5280065 6.5510299
- 40700 2000 -0 7.9489597 7.5279895 6.5510571
- 40800 2000 -0 7.9489706 7.5279716 6.5510876
- 40900 2000 -0 7.9489848 7.5279537 6.5511196
- 41000 2000 -0 7.9490019 7.5279372 6.5511508
- 41100 2000 -0 7.949021 7.5279231 6.5511783
- 41200 2000 -0 7.9490405 7.5279137 6.5512001
- 41300 2000 -0 7.9490593 7.5279062 6.551214
- 41400 2000 -0 7.9490759 7.527904 6.5512202
- 41500 2000 -0 7.9490897 7.5279058 6.5512195
- 41600 2000 -0 7.9491004 7.5279105 6.5512136
- 41700 2000 -0 7.9491078 7.5279171 6.5512042
- 41800 2000 -0 7.9491126 7.5279247 6.5511933
- 41900 2000 -0 7.9491153 7.5279324 6.5511823
- 42000 2000 -0 7.9491164 7.5279393 6.5511724
- 42100 2000 -0 7.9491165 7.527945 6.5511641
- 42200 2000 -0 7.949116 7.5279491 6.5511581
- 42300 2000 -0 7.9491153 7.5279515 6.5511543
- 42400 2000 -0 7.9491145 7.5279519 6.5511532
- 42500 2000 -0 7.9491138 7.5279504 6.5511545
- 42600 2000 -0 7.9491132 7.527947 6.5511584
- 42700 2000 -0 7.9491125 7.5279417 6.5511649
- 42800 2000 -0 7.9491115 7.5279347 6.5511737
- 42900 2000 -0 7.9491099 7.5279262 6.5511847
- 43000 2000 -0 7.9491074 7.5279165 6.5511975
- 43100 2000 -0 7.9491033 7.5279061 6.5512112
- 43200 2000 -0 7.9490971 7.5278959 6.5512249
- 43300 2000 -0 7.9490883 7.5278868 6.5512371
- 43400 2000 -0 7.9490764 7.5278798 6.5512459
- 43500 2000 -0 7.9490614 7.5278759 6.5512494
- 43600 2000 -0 7.9490435 7.5278759 6.5512459
- 43700 2000 -0 7.9490235 7.5278802 6.5512346
- 43800 2000 -0 7.9490027 7.5278887 6.5512158
- 43900 2000 -0 7.9489825 7.5279007 6.551191
- 44000 2000 -0 7.9489642 7.5279152 6.5511627
- 44100 2000 -0 7.9489489 7.5279308 6.5511334
- 44200 2000 -0 7.9489368 7.5279464 6.5511056
- 44300 2000 -0 7.9489281 7.5279609 6.5510809
- 44400 2000 -0 7.9489222 7.5279737 6.5510603
- 44500 2000 -0 7.9489186 7.5279844 6.551044
- 44600 2000 -0 7.9489166 7.5279929 6.5510317
- 44700 2000 -0 7.9489156 7.527999 6.551023
- 44800 2000 -0 7.948915 7.5280031 6.5510175
- 44900 2000 -0 7.9489146 7.5280051 6.5510146
- 45000 2000 -0 7.948914 7.5280052 6.5510141
- 45100 2000 -0 7.9489131 7.5280035 6.5510158
- 45200 2000 -0 7.948912 7.5279999 6.5510197
- 45300 2000 -0 7.9489109 7.5279944 6.5510261
- 45400 2000 -0 7.94891 7.5279869 6.5510353
- 45500 2000 -0 7.9489098 7.5279772 6.5510478
- 45600 2000 -0 7.9489107 7.5279654 6.551064
- 45700 2000 -0 7.9489134 7.5279514 6.5510843
- 45800 2000 -0 7.9489186 7.5279356 6.5511089
- 45900 2000 -0 7.9489269 7.5279183 6.5511373
- 46000 2000 -0 7.9489386 7.5279003 6.5511685
- 46100 2000 -0 7.9489535 7.5278828 6.5512004
- 46200 2000 -0 7.9489712 7.5278669 6.5512307
- 46300 2000 -0 7.9489904 7.5278538 6.5512567
- 46400 2000 -0 7.9490097 7.5278445 6.5512762
- 46500 2000 -0 7.9490278 7.5278394 6.551288
- 46600 2000 -0 7.9490435 7.5278384 6.5512921
- 46700 2000 -0 7.9490563 7.5278411 6.5512897
- 46800 2000 -0 7.9490658 7.5278464 6.5512826
- 46900 2000 -0 7.9490723 7.5278535 6.5512727
- 47000 2000 -0 7.9490763 7.5278612 6.5512617
- 47100 2000 -0 7.9490784 7.5278687 6.5512509
- 47200 2000 -0 7.949079 7.5278753 6.5512414
- 47300 2000 -0 7.9490788 7.5278807 6.5512337
- 47400 2000 -0 7.9490781 7.5278843 6.5512283
- 47500 2000 -0 7.9490772 7.5278862 6.5512252
- 47600 2000 -0 7.9490763 7.5278863 6.5512251
- 47700 2000 -0 7.9490756 7.5278844 6.5512274
- 47800 2000 -0 7.9490749 7.5278805 6.5512317
- 47900 2000 -0 7.9490741 7.5278748 6.5512387
- 48000 2000 -0 7.949073 7.5278674 6.5512483
- 48100 2000 -0 7.9490713 7.5278586 6.5512597
- 48200 2000 -0 7.9490684 7.5278487 6.5512726
- 48300 2000 -0 7.949064 7.5278383 6.5512866
- 48400 2000 -0 7.9490573 7.5278282 6.5513001
- 48500 2000 -0 7.9490478 7.5278194 6.5513115
- 48600 2000 -0 7.9490353 7.5278129 6.5513193
- 48700 2000 -0 7.9490196 7.5278097 6.5513215
- 48800 2000 -0 7.9490012 7.5278105 6.5513163
- 48900 2000 -0 7.948981 7.5278157 6.5513034
- 49000 2000 -0 7.9489603 7.527825 6.5512834
- 49100 2000 -0 7.9489405 7.5278375 6.5512576
- 49200 2000 -0 7.9489228 7.5278522 6.5512289
- 49300 2000 -0 7.9489081 7.5278678 6.5512
- 49400 2000 -0 7.9488969 7.5278831 6.5511728
- 49500 2000 -0 7.9488888 7.5278972 6.551149
- 49600 2000 -0 7.9488835 7.5279095 6.5511293
- 49700 2000 -0 7.9488803 7.5279197 6.5511139
- 49800 2000 -0 7.9488785 7.5279275 6.5511024
- 49900 2000 -0 7.9488776 7.5279332 6.5510945
- 50000 2000 -0 7.9488771 7.5279368 6.5510895
- 50100 2000 -0 7.9488767 7.5279384 6.5510871
- 50200 2000 -0 7.948876 7.5279381 6.551087
- 50300 2000 -0 7.9488752 7.5279359 6.5510891
- 50400 2000 -0 7.9488741 7.527932 6.5510934
- 50500 2000 -0 7.948873 7.5279261 6.5511002
- 50600 2000 -0 7.9488722 7.5279182 6.5511099
- 50700 2000 -0 7.9488721 7.5279081 6.5511229
- 50800 2000 -0 7.9488732 7.5278959 6.5511396
- 50900 2000 -0 7.9488763 7.5278816 6.5511605
- 51000 2000 -0 7.9488819 7.5278655 6.5511857
- 51100 2000 -0 7.9488907 7.527848 6.5512145
- 51200 2000 -0 7.9489028 7.52783 6.5512458
- 51300 2000 -0 7.9489182 7.5278126 6.5512776
- 51400 2000 -0 7.9489361 7.527797 6.5513073
- 51500 2000 -0 7.9489553 7.5277844 6.5513324
- 51600 2000 -0 7.9489746 7.5277755 6.5513508
- 51700 2000 -0 7.9489924 7.527771 6.5513615
- 51800 2000 -0 7.9490076 7.5277705 6.5513647
- 51900 2000 -0 7.9490195 7.5277737 6.5513615
- 52000 2000 -0 7.9490283 7.5277794 6.5513539
- 52100 2000 -0 7.949034 7.5277866 6.5513439
- 52200 2000 -0 7.949037 7.5277943 6.551333
- 52300 2000 -0 7.9490382 7.5278017 6.5513225
- 52400 2000 -0 7.9490381 7.5278081 6.5513134
- 52500 2000 -0 7.9490372 7.5278132 6.5513061
- 52600 2000 -0 7.9490358 7.5278167 6.5513011
- 52700 2000 -0 7.9490343 7.5278183 6.5512985
- 52800 2000 -0 7.9490329 7.5278181 6.5512989
- 52900 2000 -0 7.9490315 7.527816 6.5513015
- 53000 2000 -0 7.9490302 7.5278118 6.5513062
- 53100 2000 -0 7.9490288 7.5278059 6.5513136
- 53200 2000 -0 7.9490279 7.5277975 6.5513237
- 53300 2000 -0 7.9490241 7.5277891 6.5513356
- 53400 2000 -0 7.9490211 7.5277793 6.5513482
- 53500 2000 -0 7.949016 7.527769 6.5513626
- 53600 2000 -0 7.9490084 7.527759 6.5513764
- 53700 2000 -0 7.948998 7.5277502 6.5513874
- 53800 2000 -0 7.9489846 7.5277439 6.5513952
- 53900 2000 -0 7.9489681 7.527741 6.5513973
- 54000 2000 -0 7.9489489 7.5277421 6.5513917
- 54100 2000 -0 7.9489279 7.5277475 6.5513784
- 54200 2000 -0 7.9489066 7.527757 6.5513584
- 54300 2000 -0 7.9488862 7.5277697 6.5513326
- 54400 2000 -0 7.948868 7.5277844 6.5513039
- 54500 2000 -0 7.9488529 7.5278 6.5512754
- 54600 2000 -0 7.9488411 7.5278152 6.5512487
- 54700 2000 -0 7.9488325 7.5278292 6.5512253
- 54800 2000 -0 7.9488266 7.5278414 6.5512062
- 54900 2000 -0 7.9488228 7.5278514 6.5511912
- 55000 2000 -0 7.9488204 7.5278592 6.5511801
- 55100 2000 -0 7.9488188 7.5278647 6.5511725
- 55200 2000 -0 7.9488176 7.5278682 6.5511679
- 55300 2000 -0 7.9488165 7.5278697 6.5511657
- 55400 2000 -0 7.9488151 7.5278693 6.5511659
- 55500 2000 -0 7.9488136 7.5278672 6.5511683
- 55600 2000 -0 7.9488118 7.5278632 6.5511728
- 55700 2000 -0 7.94881 7.5278573 6.5511798
- 55800 2000 -0 7.9488085 7.5278494 6.5511897
- 55900 2000 -0 7.9488076 7.5278393 6.5512028
- 56000 2000 -0 7.9488081 7.5278272 6.5512196
- 56100 2000 -0 7.9488104 7.5278129 6.5512407
- 56200 2000 -0 7.9488153 7.5277968 6.5512659
- 56300 2000 -0 7.9488233 7.5277793 6.5512948
- 56400 2000 -0 7.9488347 7.5277613 6.5513262
- 56500 2000 -0 7.9488493 7.527744 6.5513581
- 56600 2000 -0 7.9488664 7.5277283 6.5513879
- 56700 2000 -0 7.9488849 7.5277157 6.5514132
- 56800 2000 -0 7.9489034 7.5277068 6.5514318
- 56900 2000 -0 7.9489205 7.5277022 6.5514428
- 57000 2000 -0 7.9489351 7.5277016 6.5514462
- 57100 2000 -0 7.9489467 7.5277046 6.5514434
- 57200 2000 -0 7.9489551 7.5277101 6.5514361
- 57300 2000 -0 7.9489606 7.5277172 6.5514261
- 57400 2000 -0 7.9489636 7.5277248 6.5514153
- 57500 2000 -0 7.9489647 7.5277322 6.5514049
- 57600 2000 -0 7.9489645 7.5277387 6.5513957
- 57700 2000 -0 7.9489634 7.5277438 6.5513885
- 57800 2000 -0 7.9489619 7.5277473 6.5513834
- 57900 2000 -0 7.9489603 7.527749 6.5513807
- 58000 2000 -0 7.9489587 7.5277489 6.551381
- 58100 2000 -0 7.9489572 7.5277469 6.5513835
- 58200 2000 -0 7.9489558 7.5277428 6.5513881
- 58300 2000 -0 7.9489543 7.527737 6.5513954
- 58400 2000 -0 7.9489526 7.5277295 6.5514052
- 58500 2000 -0 7.9489538 7.5277215 6.551417
- 58600 2000 -0 7.948947 7.5277103 6.5514298
- 58700 2000 -0 7.9489424 7.5276998 6.551444
- 58800 2000 -0 7.9489357 7.5276895 6.5514576
- 58900 2000 -0 7.9489261 7.5276803 6.5514692
- 59000 2000 -0 7.9489135 7.5276736 6.5514773
- 59100 2000 -0 7.9488978 7.5276701 6.5514798
- 59200 2000 -0 7.9488794 7.5276706 6.551475
- 59300 2000 -0 7.9488592 7.5276754 6.5514625
- 59400 2000 -0 7.9488384 7.5276843 6.5514429
- 59500 2000 -0 7.9488184 7.5276965 6.5514176
- 59600 2000 -0 7.9488006 7.5277108 6.5513894
- 59700 2000 -0 7.9487858 7.5277262 6.5513607
- 59800 2000 -0 7.9487742 7.5277411 6.5513338
- 59900 2000 -0 7.9487658 7.527755 6.5513102
- 60000 2000 -0 7.9487603 7.5277672 6.5512907
- 60100 2000 -0 7.9487569 7.5277771 6.5512753
- 60200 2000 -0 7.9487549 7.5277849 6.5512639
- 60300 2000 -0 7.9487538 7.5277905 6.551256
- 60400 2000 -0 7.9487531 7.5277939 6.551251
- 60500 2000 -0 7.9487525 7.5277954 6.5512486
- 60600 2000 -0 7.9487517 7.5277951 6.5512485
- 60700 2000 -0 7.9487507 7.5277929 6.5512505
- 60800 2000 -0 7.9487495 7.527789 6.5512547
- 60900 2000 -0 7.9487482 7.5277831 6.5512613
- 61000 2000 -0 7.9487471 7.5277753 6.5512707
- 61100 2000 -0 7.9487466 7.5277654 6.5512832
- 61200 2000 -0 7.9487474 7.5277534 6.5512994
- 61300 2000 -0 7.9487499 7.5277392 6.5513196
- 61400 2000 -0 7.9487549 7.5277231 6.551344
- 61500 2000 -0 7.9487629 7.5277057 6.5513722
- 61600 2000 -0 7.9487743 7.5276875 6.5514032
- 61700 2000 -0 7.9487889 7.5276698 6.5514349
- 61800 2000 -0 7.9488062 7.5276536 6.5514651
- 61900 2000 -0 7.9488251 7.5276402 6.5514912
- 62000 2000 -0 7.9488442 7.5276305 6.5515108
- 62100 2000 -0 7.9488621 7.5276249 6.5515229
- 62200 2000 -0 7.9488777 7.5276235 6.5515275
- 62300 2000 -0 7.9488903 7.5276257 6.5515255
- 62400 2000 -0 7.9488998 7.5276306 6.5515188
- 62500 2000 -0 7.9489063 7.5276373 6.5515091
- 62600 2000 -0 7.9489103 7.5276446 6.5514983
- 62700 2000 -0 7.9489123 7.5276519 6.5514876
- 62800 2000 -0 7.9489128 7.5276583 6.5514781
- 62900 2000 -0 7.9489125 7.5276635 6.5514704
- 63000 2000 -0 7.9489117 7.5276671 6.5514648
- 63100 2000 -0 7.9489107 7.5276689 6.5514616
- 63200 2000 -0 7.9489097 7.527669 6.5514611
- 63300 2000 -0 7.9489089 7.5276672 6.5514631
- 63400 2000 -0 7.9489086 7.5276637 6.5514673
- 63500 2000 -0 7.9489073 7.5276575 6.5514739
- 63600 2000 -0 7.9489063 7.5276501 6.551483
- 63700 2000 -0 7.9489046 7.5276413 6.5514942
- 63800 2000 -0 7.948902 7.5276313 6.5515069
- 63900 2000 -0 7.9488979 7.5276207 6.5515208
- 64000 2000 -0 7.9488918 7.5276102 6.5515346
- 64100 2000 -0 7.9488831 7.5276008 6.5515467
- 64200 2000 -0 7.9488713 7.5275934 6.5515557
- 64300 2000 -0 7.9488564 7.5275891 6.5515596
- 64400 2000 -0 7.9488387 7.5275886 6.5515566
- 64500 2000 -0 7.948819 7.5275923 6.551546
- 64600 2000 -0 7.9487983 7.5276002 6.551528
- 64700 2000 -0 7.9487782 7.5276117 6.5515039
- 64800 2000 -0 7.9487598 7.5276255 6.5514762
- 64900 2000 -0 7.9487443 7.5276407 6.5514474
- 65000 2000 -0 7.9487321 7.5276559 6.5514199
- 65100 2000 -0 7.9487231 7.5276701 6.5513954
- 65200 2000 -0 7.948717 7.5276826 6.5513748
- 65300 2000 -0 7.9487132 7.5276931 6.5513585
- 65400 2000 -0 7.948711 7.5277014 6.5513461
- 65500 2000 -0 7.9487098 7.5277075 6.5513372
- 65600 2000 -0 7.9487092 7.5277115 6.5513315
- 65700 2000 -0 7.9487086 7.5277135 6.5513284
- 65800 2000 -0 7.948708 7.5277137 6.5513277
- 65900 2000 -0 7.9487071 7.527712 6.5513291
- 66000 2000 -0 7.948706 7.5277085 6.5513326
- 66100 2000 -0 7.9487047 7.5277032 6.5513384
- 66200 2000 -0 7.9487036 7.527696 6.5513467
- 66300 2000 -0 7.9487029 7.5276867 6.5513582
- 66400 2000 -0 7.9487033 7.5276753 6.5513731
- 66500 2000 -0 7.9487052 7.5276618 6.551392
- 66600 2000 -0 7.9487093 7.5276463 6.5514151
- 66700 2000 -0 7.9487163 7.5276292 6.5514421
- 66800 2000 -0 7.9487266 7.5276112 6.5514722
- 66900 2000 -0 7.9487402 7.5275932 6.5515039
- 67000 2000 -0 7.9487567 7.5275765 6.5515348
- 67100 2000 -0 7.9487752 7.5275621 6.5515623
- 67200 2000 -0 7.9487943 7.5275511 6.5515841
- 67300 2000 -0 7.9488127 7.5275442 6.5515986
- 67400 2000 -0 7.9488291 7.5275415 6.5516055
- 67500 2000 -0 7.9488435 7.5275438 6.5516054
- 67600 2000 -0 7.9488528 7.5275468 6.5515999
- 67700 2000 -0 7.9488606 7.5275528 6.5515912
- 67800 2000 -0 7.9488653 7.52756 6.5515805
- 67900 2000 -0 7.9488678 7.5275674 6.5515696
- 68000 2000 -0 7.9488689 7.5275741 6.5515598
- 68100 2000 -0 7.9488688 7.5275798 6.5515513
- 68200 2000 -0 7.9488681 7.5275839 6.5515449
- 68300 2000 -0 7.9488671 7.5275863 6.5515409
- 68400 2000 -0 7.9488661 7.527587 6.5515394
- 68500 2000 -0 7.9488652 7.5275857 6.5515407
- 68600 2000 -0 7.9488645 7.5275825 6.551544
- 68700 2000 -0 7.9488637 7.5275774 6.5515497
- 68800 2000 -0 7.9488629 7.5275707 6.5515579
- 68900 2000 -0 7.9488616 7.5275623 6.5515684
- 69000 2000 -0 7.9488595 7.5275526 6.5515805
- 69100 2000 -0 7.9488561 7.5275422 6.551594
- 69200 2000 -0 7.9488509 7.5275315 6.5516081
- 69300 2000 -0 7.9488433 7.5275215 6.551621
- 69400 2000 -0 7.9488328 7.5275132 6.5516314
- 69500 2000 -0 7.9488192 7.5275075 6.5516376
- 69600 2000 -0 7.9488027 7.5275054 6.5516375
- 69700 2000 -0 7.9487837 7.5275074 6.5516299
- 69800 2000 -0 7.9487633 7.5275136 6.5516148
- 69900 2000 -0 7.9487429 7.5275237 6.551593
- 70000 2000 -0 7.9487238 7.5275367 6.5515664
- 70100 2000 -0 7.9487071 7.5275514 6.5515379
- 70200 2000 -0 7.9486936 7.5275666 6.5515098
- 70300 2000 -0 7.9486834 7.5275813 6.551484
- 70400 2000 -0 7.9486763 7.5275945 6.5514618
- 70500 2000 -0 7.9486716 7.5276059 6.5514438
- 70600 2000 -0 7.9486689 7.5276151 6.5514298
- 70700 2000 -0 7.9486674 7.527622 6.5514196
- 70800 2000 -0 7.9486667 7.5276269 6.5514127
- 70900 2000 -0 7.9486661 7.5276297 6.5514086
- 71000 2000 -0 7.9486656 7.5276306 6.5514069
- 71100 2000 -0 7.9486648 7.5276297 6.5514073
- 71200 2000 -0 7.9486638 7.527627 6.5514099
- 71300 2000 -0 7.9486626 7.5276226 6.5514146
- 71400 2000 -0 7.9486614 7.5276163 6.5514217
- 71500 2000 -0 7.9486605 7.527608 6.5514317
- 71600 2000 -0 7.9486603 7.5275976 6.5514449
- 71700 2000 -0 7.9486614 7.5275851 6.5514619
- 71800 2000 -0 7.9486644 7.5275705 6.5514829
- 71900 2000 -0 7.94867 7.5275542 6.5515081
- 72000 2000 -0 7.9486787 7.5275366 6.5515368
- 72100 2000 -0 7.9486908 7.5275189 6.551568
- 72200 2000 -0 7.9487059 7.5275011 6.5515994
- 72300 2000 -0 7.9487235 7.5274855 6.5516286
- 72400 2000 -0 7.9487426 7.5274729 6.5516533
- 72500 2000 -0 7.9487614 7.527464 6.5516713
- 72600 2000 -0 7.9487788 7.5274593 6.5516817
- 72700 2000 -0 7.9487938 7.5274587 6.5516848
- 72800 2000 -0 7.9488058 7.5274616 6.5516817
- 72900 2000 -0 7.9488146 7.5274669 6.5516742
- 73000 2000 -0 7.9488205 7.5274738 6.5516642
- 73100 2000 -0 7.9488269 7.5274812 6.5516534
- 73200 2000 -0 7.9488257 7.5274883 6.5516429
- 73300 2000 -0 7.9488261 7.5274945 6.5516336
- 73400 2000 -0 7.9488256 7.5274994 6.5516262
- 73500 2000 -0 7.9488248 7.5275027 6.551621
- 73600 2000 -0 7.9488238 7.5275043 6.5516181
- 73700 2000 -0 7.9488228 7.5275041 6.551618
- 73800 2000 -0 7.948822 7.527502 6.5516204
- 73900 2000 -0 7.9488212 7.5274979 6.5516247
- 74000 2000 -0 7.9488205 7.527492 6.5516315
- 74100 2000 -0 7.9488195 7.5274845 6.551641
- 74200 2000 -0 7.9488179 7.5274755 6.5516522
- 74300 2000 -0 7.9488153 7.5274655 6.551665
- 74400 2000 -0 7.9488112 7.5274549 6.5516789
- 74500 2000 -0 7.9488049 7.5274445 6.5516926
- 74600 2000 -0 7.9487961 7.5274352 6.5517045
- 74700 2000 -0 7.9487842 7.527428 6.5517132
- 74800 2000 -0 7.9487693 7.5274239 6.5517167
- 74900 2000 -0 7.9487516 7.5274236 6.5517132
- 75000 2000 -0 7.9487319 7.5274276 6.5517022
- 75100 2000 -0 7.9487114 7.5274356 6.551684
- 75200 2000 -0 7.9486914 7.5274472 6.5516598
- 75300 2000 -0 7.9486734 7.5274611 6.5516321
- 75400 2000 -0 7.9486581 7.5274761 6.5516036
- 75500 2000 -0 7.9486462 7.5274912 6.5515764
- 75600 2000 -0 7.9486374 7.5275053 6.5515521
- 75700 2000 -0 7.9486315 7.5275177 6.5515319
- 75800 2000 -0 7.9486278 7.5275281 6.5515157
- 75900 2000 -0 7.9486258 7.5275363 6.5515035
- 76000 2000 -0 7.9486247 7.5275423 6.5514948
- 76100 2000 -0 7.9486241 7.5275463 6.5514892
- 76200 2000 -0 7.9486236 7.5275483 6.5514861
- 76300 2000 -0 7.948623 7.5275484 6.5514853
- 76400 2000 -0 7.9486222 7.5275468 6.5514867
- 76500 2000 -0 7.9486211 7.5275435 6.5514901
- 76600 2000 -0 7.9486198 7.5275383 6.5514957
- 76700 2000 -0 7.9486187 7.5275312 6.5515039
- 76800 2000 -0 7.948618 7.5275222 6.551515
- 76900 2000 -0 7.9486182 7.527511 6.5515295
- 77000 2000 -0 7.9486199 7.5274977 6.551548
- 77100 2000 -0 7.9486238 7.5274825 6.5515706
- 77200 2000 -0 7.9486305 7.5274656 6.5515971
- 77300 2000 -0 7.9486405 7.5274478 6.5516268
- 77400 2000 -0 7.9486537 7.5274299 6.5516582
- 77500 2000 -0 7.9486699 7.527413 6.551689
- 77600 2000 -0 7.9486881 7.5273985 6.5517168
- 77700 2000 -0 7.9487072 7.5273872 6.5517391
- 77800 2000 -0 7.9487256 7.5273799 6.5517543
- 77900 2000 -0 7.9487421 7.5273768 6.5517619
- 78000 2000 -0 7.948756 7.5273776 6.5517625
- 78100 2000 -0 7.9487668 7.5273814 6.5517576
- 78200 2000 -0 7.9487745 7.5273874 6.551749
- 78300 2000 -0 7.9487795 7.5273946 6.5517385
- 78400 2000 -0 7.9487822 7.527402 6.5517276
- 78500 2000 -0 7.9487834 7.5274089 6.5517175
- 78600 2000 -0 7.9487834 7.5274147 6.5517089
- 78700 2000 -0 7.9487828 7.5274191 6.5517022
- 78800 2000 -0 7.9487818 7.5274218 6.5516978
- 78900 2000 -0 7.9487808 7.5274228 6.5516958
- 79000 2000 -0 7.9487799 7.5274219 6.5516967
- 79100 2000 -0 7.9487792 7.5274192 6.5516996
- 79200 2000 -0 7.9487784 7.5274145 6.5517047
- 79300 2000 -0 7.9487776 7.5274081 6.5517124
- 79400 2000 -0 7.9487765 7.5274002 6.5517225
- 79500 2000 -0 7.9487747 7.5273908 6.5517341
- 79600 2000 -0 7.9487717 7.5273805 6.5517474
- 79700 2000 -0 7.948767 7.52737 6.5517614
- 79800 2000 -0 7.9487601 7.5273598 6.5517746
- 79900 2000 -0 7.9487504 7.527351 6.5517858
- 80000 2000 -0 7.9487377 7.5273446 6.5517931
- 80100 2000 -0 7.9487219 7.5273416 6.5517947
- 80200 2000 -0 7.9487036 7.5273426 6.551789
- 80300 2000 -0 7.9486836 7.5273478 6.5517759
- 80400 2000 -0 7.9486632 7.5273569 6.5517558
- 80500 2000 -0 7.9486437 7.5273692 6.5517304
- 80600 2000 -0 7.9486265 7.5273836 6.5517023
- 80700 2000 -0 7.9486122 7.5273987 6.5516741
- 80800 2000 -0 7.9486012 7.5274136 6.5516477
- 80900 2000 -0 7.9485934 7.5274272 6.5516246
- 81000 2000 -0 7.9485882 7.5274391 6.5516056
- 81100 2000 -0 7.9485859 7.5274494 6.5515908
- 81200 2000 -0 7.9485834 7.5274563 6.5515794
- 81300 2000 -0 7.9485825 7.5274618 6.5515718
- 81400 2000 -0 7.948582 7.5274652 6.5515669
- 81500 2000 -0 7.9485815 7.5274667 6.5515644
- 81600 2000 -0 7.9485809 7.5274664 6.5515643
- 81700 2000 -0 7.94858 7.5274644 6.5515662
- 81800 2000 -0 7.9485788 7.5274606 6.55157
- 81900 2000 -0 7.9485776 7.527455 6.5515762
- 82000 2000 -0 7.9485765 7.5274475 6.5515851
- 82100 2000 -0 7.9485759 7.527438 6.5515969
- 82200 2000 -0 7.9485764 7.5274264 6.5516123
- 82300 2000 -0 7.9485786 7.5274127 6.5516316
- 82400 2000 -0 7.9485831 7.5273971 6.551655
- 82500 2000 -0 7.9485904 7.52738 6.5516822
- 82600 2000 -0 7.948601 7.5273621 6.5517124
- 82700 2000 -0 7.9486149 7.5273443 6.5517438
- 82800 2000 -0 7.9486316 7.5273279 6.5517741
- 82900 2000 -0 7.9486501 7.527314 6.5518008
- 83000 2000 -0 7.948669 7.5273036 6.5518216
- 83100 2000 -0 7.9486871 7.5272973 6.5518351
- 83200 2000 -0 7.9487031 7.527295 6.5518411
- 83300 2000 -0 7.9487163 7.5272965 6.5518404
- 83400 2000 -0 7.9487263 7.5273009 6.5518346
- 83500 2000 -0 7.9487334 7.5273073 6.5518255
- 83600 2000 -0 7.9487379 7.5273145 6.5518149
- 83700 2000 -0 7.9487402 7.5273219 6.5518041
- 83800 2000 -0 7.9487411 7.5273286 6.5517942
- 83900 2000 -0 7.948741 7.5273342 6.551786
- 84000 2000 -0 7.9487402 7.5273383 6.5517797
- 84100 2000 -0 7.9487392 7.5273407 6.5517757
- 84200 2000 -0 7.9487383 7.5273413 6.5517743
- 84300 2000 -0 7.9487374 7.5273402 6.5517756
- 84400 2000 -0 7.9487366 7.5273371 6.5517789
- 84500 2000 -0 7.9487359 7.5273321 6.5517843
- 84600 2000 -0 7.9487351 7.5273255 6.5517925
- 84700 2000 -0 7.948734 7.5273173 6.5518029
- 84800 2000 -0 7.948732 7.5273078 6.5518148
- 84900 2000 -0 7.9487288 7.5272974 6.5518282
- 85000 2000 -0 7.9487239 7.5272869 6.5518422
- 85100 2000 -0 7.9487166 7.5272769 6.5518552
- 85200 2000 -0 7.9487066 7.5272684 6.5518659
- 85300 2000 -0 7.9486935 7.5272625 6.5518726
- 85400 2000 -0 7.9486774 7.52726 6.5518732
- 85500 2000 -0 7.9486588 7.5272615 6.5518665
- 85600 2000 -0 7.9486387 7.5272673 6.5518525
- 85700 2000 -0 7.9486184 7.5272769 6.5518316
- 85800 2000 -0 7.9485993 7.5272895 6.5518058
- 85900 2000 -0 7.9485825 7.527304 6.5517777
- 86000 2000 -0 7.9485687 7.5273192 6.5517496
- 86100 2000 -0 7.9485582 7.5273338 6.5517237
- 86200 2000 -0 7.9485508 7.5273473 6.5517012
- 86300 2000 -0 7.9485459 7.5273589 6.5516828
- 86400 2000 -0 7.948543 7.5273683 6.5516683
- 86500 2000 -0 7.9485415 7.5273756 6.5516577
- 86600 2000 -0 7.9485407 7.5273808 6.5516504
- 86700 2000 -0 7.9485402 7.527384 6.5516458
- 86800 2000 -0 7.9485398 7.5273853 6.5516437
- 86900 2000 -0 7.9485391 7.5273848 6.5516437
- 87000 2000 -0 7.9485382 7.5273826 6.5516457
- 87100 2000 -0 7.948537 7.5273787 6.5516498
- 87200 2000 -0 7.9485358 7.527373 6.5516562
- 87300 2000 -0 7.9485347 7.5273654 6.5516652
- 87400 2000 -0 7.9485342 7.5273557 6.5516772
- 87500 2000 -0 7.9485348 7.527344 6.5516928
- 87600 2000 -0 7.9485371 7.5273302 6.5517124
- 87700 2000 -0 7.9485417 7.5273145 6.551736
- 87800 2000 -0 7.9485492 7.5272974 6.5517634
- 87900 2000 -0 7.9485605 7.5272797 6.5517928
- 88000 2000 -0 7.9485752 7.5272622 6.5518233
- 88100 2000 -0 7.9485926 7.5272462 6.5518526
- 88200 2000 -0 7.9486117 7.5272327 6.5518779
- 88300 2000 -0 7.9486313 7.5272227 6.5518973
- 88400 2000 -0 7.9486498 7.5272169 6.5519096
- 88500 2000 -0 7.9486663 7.5272151 6.5519142
- 88600 2000 -0 7.9486799 7.5272169 6.5519123
- 88700 2000 -0 7.9486904 7.5272216 6.5519055
- 88800 2000 -0 7.9486979 7.5272282 6.5518954
- 88900 2000 -0 7.9487028 7.5272357 6.5518839
- 89000 2000 -0 7.9487057 7.5272433 6.5518724
- 89100 2000 -0 7.9487072 7.5272501 6.5518617
- 89200 2000 -0 7.9487076 7.5272558 6.5518526
- 89300 2000 -0 7.9487074 7.5272601 6.5518456
- 89400 2000 -0 7.9487071 7.5272626 6.5518409
- 89500 2000 -0 7.9487067 7.5272635 6.5518386
- 89600 2000 -0 7.9487065 7.5272625 6.5518391
- 89700 2000 -0 7.9487063 7.5272596 6.5518416
- 89800 2000 -0 7.9487063 7.5272548 6.5518462
- 89900 2000 -0 7.9487061 7.5272484 6.5518535
- 90000 2000 -0 7.9487056 7.5272404 6.551863
- 90100 2000 -0 7.9487043 7.5272311 6.551874
- 90200 2000 -0 7.9487018 7.527221 6.5518866
- 90300 2000 -0 7.9486975 7.5272106 6.5518997
- 90400 2000 -0 7.948691 7.5272008 6.5519118
- 90500 2000 -0 7.9486816 7.5271925 6.5519217
- 90600 2000 -0 7.9486692 7.5271867 6.5519276
- 90700 2000 -0 7.9486538 7.5271843 6.5519275
- 90800 2000 -0 7.948636 7.527186 6.5519202
- 90900 2000 -0 7.9486166 7.5271918 6.5519055
- 91000 2000 -0 7.948597 7.5272016 6.551884
- 91100 2000 -0 7.9485784 7.5272143 6.5518575
- 91200 2000 -0 7.9485622 7.5272289 6.5518287
- 91300 2000 -0 7.948549 7.5272442 6.5517999
- 91400 2000 -0 7.9485391 7.5272591 6.5517731
- 91500 2000 -0 7.9485322 7.5272727 6.5517498
- 91600 2000 -0 7.9485279 7.5272845 6.5517305
- 91700 2000 -0 7.9485256 7.5272942 6.5517151
- 91800 2000 -0 7.9485247 7.5273018 6.5517036
- 91900 2000 -0 7.9485245 7.5273072 6.5516953
- 92000 2000 -0 7.9485247 7.5273107 6.5516898
- 92100 2000 -0 7.9485248 7.5273122 6.5516867
- 92200 2000 -0 7.9485251 7.5273121 6.5516858
- 92300 2000 -0 7.9485248 7.5273103 6.5516869
- 92400 2000 -0 7.948524 7.5273066 6.5516899
- 92500 2000 -0 7.9485234 7.5273012 6.5516952
- 92600 2000 -0 7.9485229 7.527294 6.5517031
- 92700 2000 -0 7.9485229 7.5272848 6.5517139
- 92800 2000 -0 7.948524 7.5272735 6.5517283
- 92900 2000 -0 7.9485267 7.5272601 6.5517465
- 93000 2000 -0 7.9485317 7.5272448 6.5517688
- 93100 2000 -0 7.9485395 7.527228 6.5517949
- 93200 2000 -0 7.9485506 7.5272104 6.5518239
- 93300 2000 -0 7.9485649 7.527193 6.5518542
- 93400 2000 -0 7.9485821 7.5271768 6.5518835
- 93500 2000 -0 7.948601 7.527163 6.5519093
- 93600 2000 -0 7.9486206 7.5271527 6.5519294
- 93700 2000 -0 7.9486392 7.5271464 6.5519423
- 93800 2000 -0 7.9486559 7.5271442 6.5519477
- 93900 2000 -0 7.9486698 7.5271457 6.5519465
- 94000 2000 -0 7.9486807 7.5271502 6.55194
- 94100 2000 -0 7.9486885 7.5271566 6.5519303
- 94200 2000 -0 7.9486937 7.527164 6.5519188
- 94300 2000 -0 7.9486968 7.5271716 6.5519072
- 94400 2000 -0 7.9486984 7.5271785 6.5518964
- 94500 2000 -0 7.948699 7.5271843 6.5518871
- 94600 2000 -0 7.948699 7.5271887 6.5518798
- 94700 2000 -0 7.9486987 7.5271915 6.5518747
- 94800 2000 -0 7.9486984 7.5271925 6.5518721
- 94900 2000 -0 7.9486982 7.5271918 6.5518722
- 95000 2000 -0 7.9486982 7.5271891 6.5518743
- 95100 2000 -0 7.9486982 7.5271846 6.5518785
- 95200 2000 -0 7.948698 7.5271783 6.5518855
- 95300 2000 -0 7.9486978 7.5271706 6.5518946
- 95400 2000 -0 7.9486968 7.5271614 6.5519053
- 95500 2000 -0 7.9486946 7.5271514 6.5519176
- 95600 2000 -0 7.9486908 7.527141 6.5519306
- 95700 2000 -0 7.9486848 7.527131 6.551943
- 95800 2000 -0 7.948676 7.5271224 6.5519533
- 95900 2000 -0 7.9486643 7.5271161 6.55196
- 96000 2000 -0 7.9486496 7.527113 6.5519611
- 96100 2000 -0 7.9486322 7.5271138 6.5519551
- 96200 2000 -0 7.9486132 7.5271189 6.5519417
- 96300 2000 -0 7.9485937 7.5271279 6.5519214
- 96400 2000 -0 7.948575 7.5271401 6.5518957
- 96500 2000 -0 7.9485584 7.5271543 6.5518672
- 96600 2000 -0 7.9485447 7.5271695 6.5518384
- 96700 2000 -0 7.9485343 7.5271845 6.5518111
- 96800 2000 -0 7.948527 7.5271983 6.5517871
- 96900 2000 -0 7.9485224 7.5272105 6.5517671
- 97000 2000 -0 7.9485199 7.5272206 6.551751
- 97100 2000 -0 7.9485188 7.5272285 6.5517387
- 97200 2000 -0 7.9485186 7.5272343 6.5517298
- 97300 2000 -0 7.9485188 7.5272381 6.5517238
- 97400 2000 -0 7.9485191 7.52724 6.5517202
- 97500 2000 -0 7.9485192 7.5272402 6.5517188
- 97600 2000 -0 7.9485191 7.5272387 6.5517194
- 97700 2000 -0 7.9485187 7.5272354 6.551722
- 97800 2000 -0 7.9485181 7.5272305 6.5517267
- 97900 2000 -0 7.9485176 7.5272237 6.5517339
- 98000 2000 -0 7.9485176 7.5272149 6.5517439
- 98100 2000 -0 7.9485184 7.5272041 6.5517572
- 98200 2000 -0 7.9485207 7.5271913 6.5517744
- 98300 2000 -0 7.9485251 7.5271764 6.5517956
- 98400 2000 -0 7.9485322 7.52716 6.5518207
- 98500 2000 -0 7.9485424 7.5271426 6.5518489
- 98600 2000 -0 7.948556 7.527125 6.5518789
- 98700 2000 -0 7.9485724 7.5271084 6.5519086
- 98800 2000 -0 7.948591 7.5270939 6.5519354
- 98900 2000 -0 7.9486105 7.5270826 6.551957
- 99000 2000 -0 7.9486296 7.5270752 6.5519718
- 99100 2000 -0 7.9486469 7.5270719 6.5519792
- 99200 2000 -0 7.9486615 7.5270725 6.5519795
- 99300 2000 -0 7.9486732 7.5270763 6.5519743
- 99400 2000 -0 7.9486818 7.5270822 6.5519652
- 99500 2000 -0 7.9486877 7.5270895 6.551954
- 99600 2000 -0 7.9486913 7.527097 6.5519424
- 99700 2000 -0 7.9486933 7.5271042 6.5519313
- 99800 2000 -0 7.9486941 7.5271104 6.5519215
- 99900 2000 -0 7.9486942 7.5271152 6.5519136
- 100000 2000 -0 7.9486939 7.5271185 6.5519079
-Loop time of 92.4328 on 1 procs for 100000 steps with 2000 atoms
-
-Performance: 93473.341 tau/day, 1081.867 timesteps/s, 2.164 Matom-step/s
-92.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 | 64.102 | 64.102 | 64.102 | 0.0 | 69.35
-Neigh | 2.666 | 2.666 | 2.666 | 0.0 | 2.88
-Comm | 1.205 | 1.205 | 1.205 | 0.0 | 1.30
-Output | 6.6387 | 6.6387 | 6.6387 | 0.0 | 7.18
-Modify | 16.945 | 16.945 | 16.945 | 0.0 | 18.33
-Other | | 0.8768 | | | 0.95
-
-Nlocal: 2000 ave 2000 max 2000 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Nghost: 494 ave 494 max 494 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Neighs: 9635 ave 9635 max 9635 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 9635
-Ave neighs/atom = 4.8175
-Neighbor list builds = 3285
-Dangerous builds = 0
-
-Total wall time: 0:01:32
diff --git a/examples/granular/log.28Mar23.pour.heat.g++.4 b/examples/granular/log.28Mar23.pour.heat.g++.4
deleted file mode 100644
index 5cdf89d255..0000000000
--- a/examples/granular/log.28Mar23.pour.heat.g++.4
+++ /dev/null
@@ -1,1167 +0,0 @@
-LAMMPS (28 Mar 2023 - Development)
-# pour one types of particles into cylinder and oscillate
-# temperature of the bottom plate
-
-variable name string heat_plate
-
-atom_style sphere
-units lj
-
-###############################################
-# Geometry-related parameters
-###############################################
-
-variable boxx equal 10
-variable boxy equal 10
-variable boxz equal 50
-
-variable drum_rad equal ${boxx}*0.5
-variable drum_rad equal 10*0.5
-variable drum_height equal 30
-
-variable xc equal 0.5*${boxx}
-variable xc equal 0.5*10
-variable yc equal 0.5*${boxx}
-variable yc equal 0.5*10
-variable zc equal 0.5*${boxz}
-variable zc equal 0.5*50
-
-###############################################
-# Particle-related parameters
-###############################################
-variable rlo equal 0.25
-variable rhi equal 0.5
-variable dlo equal 2.0*${rlo}
-variable dlo equal 2.0*0.25
-variable dhi equal 2.0*${rhi}
-variable dhi equal 2.0*0.5
-
-variable cyl_rad_inner equal ${drum_rad}-1.1*${rhi}
-variable cyl_rad_inner equal 5-1.1*${rhi}
-variable cyl_rad_inner equal 5-1.1*0.5
-
-variable dens equal 1.0
-
-variable skin equal 0.4*${rhi}
-variable skin equal 0.4*0.5
-
-#############
-processors * * 1
-region boxreg block 0 ${boxx} 0 ${boxy} 0 ${boxz}
-region boxreg block 0 10 0 ${boxy} 0 ${boxz}
-region boxreg block 0 10 0 10 0 ${boxz}
-region boxreg block 0 10 0 10 0 50
-create_box 2 boxreg
-Created orthogonal box = (0 0 0) to (10 10 50)
- 2 by 2 by 1 MPI processor grid
-change_box all boundary p p f
-Changing box ...
-
-pair_style granular
-pair_coeff * * hertz/material 1e5 0.2 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji heat area 5.0
-
-region curved_wall cylinder z ${xc} ${yc} ${drum_rad} 0 ${drum_height} side in
-region curved_wall cylinder z 5 ${yc} ${drum_rad} 0 ${drum_height} side in
-region curved_wall cylinder z 5 5 ${drum_rad} 0 ${drum_height} side in
-region curved_wall cylinder z 5 5 5 0 ${drum_height} side in
-region curved_wall cylinder z 5 5 5 0 30 side in
-region bottom_wall plane ${xc} ${yc} 0 0 0 1 side in
-region bottom_wall plane 5 ${yc} 0 0 0 1 side in
-region bottom_wall plane 5 5 0 0 0 1 side in
-
-region insreg cylinder z ${xc} ${yc} ${cyl_rad_inner} ${drum_height} ${boxz}
-region insreg cylinder z 5 ${yc} ${cyl_rad_inner} ${drum_height} ${boxz}
-region insreg cylinder z 5 5 ${cyl_rad_inner} ${drum_height} ${boxz}
-region insreg cylinder z 5 5 4.45 ${drum_height} ${boxz}
-region insreg cylinder z 5 5 4.45 30 ${boxz}
-region insreg cylinder z 5 5 4.45 30 50
-
-fix 0 all property/atom temperature heatflow
-WARNING: Fix property/atom mol, charge, rmass, temperature, or heatflow w/out ghost communication (../fix_property_atom.cpp:194)
-fix 1 all balance 100 1.0 shift xy 5 1.1
-fix 2 all nve/sphere
-fix 3 all heat/flow constant 1.0
-fix grav all gravity 10 vector 0 0 -1
-fix ins1 all pour 1000 1 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
-fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
-fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
-fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens 1 ${dens}
-fix ins1 all pour 1000 1 1234 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 594 every 400 steps, 1000 by step 401
-fix ins2 all pour 1000 2 1234 region insreg diam range ${dlo} ${dhi} dens ${dens} ${dens}
-fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 ${dhi} dens ${dens} ${dens}
-fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens ${dens} ${dens}
-fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens 1 ${dens}
-fix ins2 all pour 1000 2 1234 region insreg diam range 0.5 1 dens 1 1
-Particle insertion: 594 every 400 steps, 1000 by step 401
-
-comm_modify vel yes
-
-neighbor ${skin} bin
-neighbor 0.2 bin
-neigh_modify delay 0 every 1 check yes
-
-variable oscillate equal 1.0*sin(step*0.0001)
-
-fix 4 all wall/gran/region granular hertz/material 1e5 0.1 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji region curved_wall
-fix 5 all wall/gran/region granular hertz/material 1e5 0.1 0.3 tangential mindlin NULL 1.0 0.5 damping tsuji heat area 5.0 region bottom_wall temperature v_oscillate
-
-thermo_style custom step atoms ke pxx pyy pzz
-thermo_modify lost warn
-thermo 100
-
-timestep 0.001
-
-#dump 1 all custom 1000 ${name}.dump id type radius mass x y z temperature heatflow
-
-run 100000
-Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
-Neighbor list info ...
- update: every = 1 steps, delay = 0 steps, check = yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 1.2
- ghost atom cutoff = 1.2
- binsize = 0.6, bins = 17 17 84
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair granular, perpetual
- attributes: half, newton on, size, history
- pair build: half/size/bin/newton
- stencil: half/bin/3d
- bin: standard
-Per MPI rank memory allocation (min/avg/max) = 5.847 | 5.847 | 5.847 Mbytes
- Step Atoms KinEng Pxx Pyy Pzz
- 0 0 -0 0 0 0
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 100 536 -0 0 0 7.4220499
- 200 536 -0 0 0 10.753096
- 300 536 -0 0 0 13.500241
- 400 536 -0 0 0 18.036636
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 500 903 -0 0 0 25.955524
- 600 903 -0 0 0 32.116907
- 700 903 -0 0.03620165 0.033499977 32.179357
- 800 903 -0 0.2106713 0.26431108 36.206318
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 900 1265 -0 0.2667335 0.20266671 44.177757
- 1000 1265 -0 0.51829265 0.67739212 49.904079
- 1100 1265 -0 0.87525564 0.6604066 53.13465
- 1200 1265 -0 0.8016023 0.82120199 54.27487
-WARNING: Fewer insertions than requested (../fix_pour.cpp:681)
- 1300 1618 -0 1.0922969 1.2299526 61.033455
- 1400 1618 -0 3.4739827 3.2058732 60.989867
- 1500 1618 -0 2.952107 2.7920855 61.208615
- 1600 1618 -0 3.4540208 3.5863396 62.262722
- 1700 2000 -0 3.8875418 4.0835421 69.087737
- 1800 2000 -0 4.1780246 5.0584026 70.734293
- 1900 2000 -0 4.5873576 4.7767119 76.481264
- 2000 2000 -0 7.1355414 6.9027373 76.136305
- 2100 2000 -0 7.3292721 6.9457021 74.022659
- 2200 2000 -0 9.1771132 9.0399042 72.911506
- 2300 2000 -0 9.5743887 10.359952 70.996904
- 2400 2000 -0 12.1002 12.023765 68.246157
- 2500 2000 -0 10.68678 11.126488 59.337387
- 2600 2000 -0 10.444117 10.845713 57.115639
- 2700 2000 -0 12.012219 11.766618 56.397063
- 2800 2000 -0 12.987283 13.30882 55.411279
- 2900 2000 -0 11.55722 12.213726 48.690822
- 3000 2000 -0 11.124576 11.369397 43.425073
- 3100 2000 -0 12.54896 12.507632 45.15522
- 3200 2000 -0 13.119307 13.345554 41.469993
- 3300 2000 -0 12.07449 11.769699 32.849662
- 3400 2000 -0 11.409224 11.606583 28.228622
- 3500 2000 -0 13.30178 13.057278 28.120788
- 3600 2000 -0 12.362318 12.451842 22.030785
- 3700 2000 -0 10.065639 10.350313 14.404919
- 3800 2000 -0 9.2215449 9.4216178 10.78298
- 3900 2000 -0 9.1484555 9.2548793 9.4609704
- 4000 2000 -0 8.7679202 8.7720055 7.9592505
- 4100 2000 -0 7.9639161 8.0843783 6.2748484
- 4200 2000 -0 7.4475613 7.662972 5.7240274
- 4300 2000 -0 7.3834943 7.5643205 5.8884721
- 4400 2000 -0 7.5767328 7.7567295 6.4335134
- 4500 2000 -0 7.6350768 7.7802709 6.5220595
- 4600 2000 -0 7.5680597 7.7360764 6.2252142
- 4700 2000 -0 7.5455586 7.7200666 6.1870466
- 4800 2000 -0 7.5889323 7.7502568 6.3364001
- 4900 2000 -0 7.5976185 7.7506557 6.3511631
- 5000 2000 -0 7.5729575 7.7396108 6.226979
- 5100 2000 -0 7.5828423 7.7333361 6.2543182
- 5200 2000 -0 7.5997211 7.7682298 6.3300795
- 5300 2000 -0 7.5951405 7.7598744 6.3224087
- 5400 2000 -0 7.5703525 7.7452048 6.2321318
- 5500 2000 -0 7.5893936 7.7516359 6.2777047
- 5600 2000 -0 7.596363 7.7645306 6.3388976
- 5700 2000 -0 7.5889409 7.7570078 6.2848334
- 5800 2000 -0 7.5820271 7.7456337 6.2569579
- 5900 2000 -0 7.5946475 7.7646155 6.3117599
- 6000 2000 -0 7.5979789 7.7656429 6.3160667
- 6100 2000 -0 7.586255 7.7584393 6.2682341
- 6200 2000 -0 7.5860817 7.7574904 6.2792591
- 6300 2000 -0 7.5952765 7.7646058 6.3189922
- 6400 2000 -0 7.5996199 7.7770424 6.2986723
- 6500 2000 -0 7.5902888 7.7688566 6.2761571
- 6600 2000 -0 7.5950388 7.76863 6.2895943
- 6700 2000 -0 7.5966236 7.7691368 6.302048
- 6800 2000 -0 7.5939532 7.7641262 6.2726096
- 6900 2000 -0 7.5951993 7.7682327 6.2895245
- 7000 2000 -0 7.6023185 7.7697092 6.3080702
- 7100 2000 -0 7.5960578 7.7674031 6.2848334
- 7200 2000 -0 7.5982345 7.7654466 6.2788045
- 7300 2000 -0 7.6023187 7.7710769 6.3041624
- 7400 2000 -0 7.5974296 7.7673886 6.283173
- 7500 2000 -0 7.5973168 7.7670675 6.2788593
- 7600 2000 -0 7.5996473 7.7703847 6.2996016
- 7700 2000 -0 7.5973523 7.7680426 6.2917276
- 7800 2000 -0 7.5955633 7.7663282 6.2774422
- 7900 2000 -0 7.596774 7.7680408 6.2913039
- 8000 2000 -0 7.5990211 7.7682504 6.2971218
- 8100 2000 -0 7.5969667 7.7674553 6.2827596
- 8200 2000 -0 7.5968217 7.768405 6.2864438
- 8300 2000 -0 7.6003301 7.7675972 6.2968783
- 8400 2000 -0 7.5968968 7.7675447 6.2851363
- 8500 2000 -0 7.5964945 7.7664669 6.2821348
- 8600 2000 -0 7.59847 7.7686981 6.2935599
- 8700 2000 -0 7.5973531 7.7680237 6.2892401
- 8800 2000 -0 7.5962388 7.7660642 6.2824211
- 8900 2000 -0 7.5974758 7.7679467 6.2894374
- 9000 2000 -0 7.5980837 7.7680794 6.2922818
- 9100 2000 -0 7.5964734 7.766756 6.2837584
- 9200 2000 -0 7.5970307 7.7673294 6.2867417
- 9300 2000 -0 7.5979654 7.7680887 6.2924025
- 9400 2000 -0 7.5968814 7.7671306 6.2861078
- 9500 2000 -0 7.5967607 7.7670542 6.2853516
- 9600 2000 -0 7.5978051 7.7679583 6.2911802
- 9700 2000 -0 7.597238 7.767496 6.2880951
- 9800 2000 -0 7.596697 7.7670074 6.2853135
- 9900 2000 -0 7.5974854 7.7676519 6.2894109
- 10000 2000 -0 7.5974415 7.7676866 6.2894089
- 10100 2000 -0 7.5968332 7.7671611 6.2858705
- 10200 2000 -0 7.5971895 7.7673771 6.2881001
- 10300 2000 -0 7.5974344 7.7675998 6.2897713
- 10400 2000 -0 7.5969756 7.767279 6.2867879
- 10500 2000 -0 7.5970506 7.7672894 6.2872789
- 10600 2000 -0 7.5973817 7.7675529 6.2895398
- 10700 2000 -0 7.597085 7.7673281 6.2876393
- 10800 2000 -0 7.5969757 7.7672429 6.2869852
- 10900 2000 -0 7.5973016 7.7675261 6.2890364
- 11000 2000 -0 7.5971776 7.7674059 6.2882417
- 11100 2000 -0 7.596955 7.7672303 6.2870489
- 11200 2000 -0 7.5971842 7.7674346 6.288507
- 11300 2000 -0 7.5972149 7.7674441 6.2885796
- 11400 2000 -0 7.5969922 7.7672746 6.2872884
- 11500 2000 -0 7.5970948 7.7673717 6.2880589
- 11600 2000 -0 7.5971991 7.7674426 6.2886788
- 11700 2000 -0 7.5970217 7.7673051 6.2876396
- 11800 2000 -0 7.5970385 7.767356 6.2877736
- 11900 2000 -0 7.5971592 7.7674896 6.2885954
- 12000 2000 -0 7.5970437 7.7673831 6.2879896
- 12100 2000 -0 7.5969799 7.7673414 6.2876892
- 12200 2000 -0 7.597104 7.7674691 6.2883867
- 12300 2000 -0 7.5970688 7.7674421 6.2882073
- 12400 2000 -0 7.5969667 7.7673544 6.2877266
- 12500 2000 -0 7.5970342 7.7674299 6.2881961
- 12600 2000 -0 7.5970575 7.7674563 6.2883162
- 12700 2000 -0 7.5969702 7.7673919 6.2878499
- 12800 2000 -0 7.5969875 7.7674105 6.2880279
- 12900 2000 -0 7.5970261 7.7674542 6.2883236
- 13000 2000 -0 7.5969638 7.7674093 6.2880003
- 13100 2000 -0 7.5969523 7.7674055 6.2879583
- 13200 2000 -0 7.5969948 7.7674543 6.2882605
- 13300 2000 -0 7.5969671 7.7674324 6.2881167
- 13400 2000 -0 7.5969481 7.7674096 6.2879707
- 13500 2000 -0 7.5969704 7.7674472 6.2881927
- 13600 2000 -0 7.5969604 7.7674502 6.2881801
- 13700 2000 -0 7.5969111 7.7674226 6.2880031
- 13800 2000 -0 7.5969206 7.7674314 6.288133
- 13900 2000 -0 7.5969259 7.7674429 6.2882037
- 14000 2000 -0 7.5968972 7.7674314 6.2880579
- 14100 2000 -0 7.5968963 7.7674369 6.2880968
- 14200 2000 -0 7.5969042 7.7674469 6.2882024
- 14300 2000 -0 7.5968803 7.7674344 6.2881112
- 14400 2000 -0 7.59687 7.7674353 6.2880896
- 14500 2000 -0 7.5968808 7.7674514 6.2881879
- 14600 2000 -0 7.5968666 7.7674452 6.28815
- 14700 2000 -0 7.5968485 7.7674368 6.2880988
- 14800 2000 -0 7.5968535 7.767448 6.2881738
- 14900 2000 -0 7.5968474 7.7674514 6.2881775
- 15000 2000 -0 7.5968308 7.7674448 6.2881173
- 15100 2000 -0 7.5968288 7.7674504 6.2881599
- 15200 2000 -0 7.5968259 7.7674545 6.2881943
- 15300 2000 -0 7.5968096 7.7674493 6.2881446
- 15400 2000 -0 7.5968036 7.7674548 6.2881534
- 15500 2000 -0 7.5968025 7.7674625 6.2881974
- 15600 2000 -0 7.5967877 7.7674575 6.2881698
- 15700 2000 -0 7.5967763 7.7674574 6.2881574
- 15800 2000 -0 7.5967748 7.7674674 6.2881956
- 15900 2000 -0 7.5967648 7.7674695 6.2881883
- 16000 2000 -0 7.5967506 7.7674666 6.2881665
- 16100 2000 -0 7.5967447 7.7674721 6.2881929
- 16200 2000 -0 7.596737 7.7674775 6.2882018
- 16300 2000 -0 7.596724 7.7674779 6.2881798
- 16400 2000 -0 7.5967156 7.7674817 6.2881911
- 16500 2000 -0 7.5967078 7.7674863 6.2882086
- 16600 2000 -0 7.5966952 7.7674871 6.288195
- 16700 2000 -0 7.5966855 7.7674905 6.288195
- 16800 2000 -0 7.5966849 7.7675018 6.2882111
- 16900 2000 -0 7.5966659 7.767499 6.2882084
- 17000 2000 -0 7.5966553 7.7674989 6.288203
- 17100 2000 -0 7.5966481 7.7675039 6.288216
- 17200 2000 -0 7.5966391 7.7675079 6.2882174
- 17300 2000 -0 7.5966284 7.7675095 6.2882114
- 17400 2000 -0 7.5966197 7.7675124 6.2882207
- 17500 2000 -0 7.5966116 7.7675184 6.2882274
- 17600 2000 -0 7.5966015 7.7675179 6.2882213
- 17700 2000 -0 7.596598 7.7675217 6.2882271
- 17800 2000 -0 7.5965839 7.7675249 6.2882319
- 17900 2000 -0 7.5965764 7.7675277 6.2882321
- 18000 2000 -0 7.5965694 7.7675324 6.2882345
- 18100 2000 -0 7.5965606 7.7675381 6.288242
- 18200 2000 -0 7.5965529 7.7675402 6.2882446
- 18300 2000 -0 7.5965448 7.7675416 6.2882447
- 18400 2000 -0 7.5965376 7.7675437 6.2882479
- 18500 2000 -0 7.5965312 7.7675449 6.2882502
- 18600 2000 -0 7.5965234 7.7675465 6.2882488
- 18700 2000 -0 7.5965164 7.7675489 6.2882532
- 18800 2000 -0 7.5965092 7.7675524 6.2882585
- 18900 2000 -0 7.5965015 7.7675553 6.2882605
- 19000 2000 -0 7.5964943 7.7675579 6.288263
- 19100 2000 -0 7.5964874 7.7675604 6.2882669
- 19200 2000 -0 7.59648 7.7675614 6.2882681
- 19300 2000 -0 7.5964723 7.7675626 6.2882686
- 19400 2000 -0 7.596465 7.7675656 6.2882725
- 19500 2000 -0 7.5964572 7.7675691 6.2882763
- 19600 2000 -0 7.5964488 7.767572 6.2882784
- 19700 2000 -0 7.5964406 7.7675747 6.2882815
- 19800 2000 -0 7.5964328 7.7675771 6.2882844
- 19900 2000 -0 7.5964247 7.7675792 6.288285
- 20000 2000 -0 7.5964164 7.7675815 6.2882866
- 20100 2000 -0 7.5964079 7.7675846 6.28829
- 20200 2000 -0 7.596399 7.7675881 6.2882925
- 20300 2000 -0 7.5963909 7.7675919 6.2882955
- 20400 2000 -0 7.5963809 7.7675953 6.2882972
- 20500 2000 -0 7.5963752 7.7676011 6.2883018
- 20600 2000 -0 7.5963619 7.7676092 6.2883037
- 20700 2000 -0 7.5963522 7.767611 6.2883069
- 20800 2000 -0 7.5963411 7.7676172 6.28831
- 20900 2000 -0 7.5963304 7.7676213 6.2883118
- 21000 2000 -0 7.5963203 7.767625 6.2883148
- 21100 2000 -0 7.5963105 7.7676285 6.2883181
- 21200 2000 -0 7.5963007 7.7676317 6.2883195
- 21300 2000 -0 7.5962911 7.7676349 6.2883215
- 21400 2000 -0 7.5962816 7.7676382 6.2883246
- 21500 2000 -0 7.5962731 7.7676543 6.288331
- 21600 2000 -0 7.5962632 7.7676583 6.2883332
- 21700 2000 -0 7.5962548 7.767661 6.2883366
- 21800 2000 -0 7.5962459 7.7676634 6.2883395
- 21900 2000 -0 7.5962373 7.7676655 6.2883415
- 22000 2000 -0 7.5962319 7.7676679 6.2883449
- 22100 2000 -0 7.5962209 7.7676703 6.2883465
- 22200 2000 -0 7.5962128 7.7676725 6.2883506
- 22300 2000 -0 7.5962054 7.7676747 6.2883528
- 22400 2000 -0 7.5961978 7.7676768 6.2883553
- 22500 2000 -0 7.5961903 7.7676789 6.288359
- 22600 2000 -0 7.596183 7.7676807 6.2883613
- 22700 2000 -0 7.5961756 7.7676824 6.288363
- 22800 2000 -0 7.5961685 7.7676843 6.2883669
- 22900 2000 -0 7.5961616 7.7676859 6.2883701
- 23000 2000 -0 7.5961555 7.7676881 6.2883726
- 23100 2000 -0 7.5961478 7.7676894 6.2883761
- 23200 2000 -0 7.5961408 7.7676905 6.2883794
- 23300 2000 -0 7.5961337 7.7676917 6.2883816
- 23400 2000 -0 7.5961266 7.7676931 6.2883848
- 23500 2000 -0 7.5961196 7.7676947 6.2883884
- 23600 2000 -0 7.5961122 7.7676962 6.2883911
- 23700 2000 -0 7.5961047 7.7676979 6.2883942
- 23800 2000 -0 7.5960972 7.7676997 6.2883977
- 23900 2000 -0 7.5960894 7.7677015 6.2884004
- 24000 2000 -0 7.5960814 7.7677033 6.288403
- 24100 2000 -0 7.5960734 7.7677054 6.2884061
- 24200 2000 -0 7.5960651 7.7677076 6.2884089
- 24300 2000 -0 7.5960576 7.76771 6.2884124
- 24400 2000 -0 7.5960487 7.7677127 6.288415
- 24500 2000 -0 7.596039 7.7677152 6.2884169
- 24600 2000 -0 7.59603 7.7677178 6.2884192
- 24700 2000 -0 7.5960208 7.7677205 6.2884216
- 24800 2000 -0 7.5960115 7.7677234 6.2884242
- 24900 2000 -0 7.5960021 7.7677264 6.2884266
- 25000 2000 -0 7.5959926 7.7677293 6.288429
- 25100 2000 -0 7.595983 7.7677323 6.2884316
- 25200 2000 -0 7.5959735 7.7677352 6.2884341
- 25300 2000 -0 7.5959639 7.7677381 6.2884365
- 25400 2000 -0 7.5959544 7.7677409 6.2884391
- 25500 2000 -0 7.5959449 7.7677437 6.2884418
- 25600 2000 -0 7.5959355 7.7677464 6.2884444
- 25700 2000 -0 7.5959262 7.7677491 6.2884471
- 25800 2000 -0 7.5959171 7.7677518 6.2884498
- 25900 2000 -0 7.5959081 7.7677543 6.2884525
- 26000 2000 -0 7.5958993 7.7677567 6.2884551
- 26100 2000 -0 7.5958907 7.7677591 6.2884578
- 26200 2000 -0 7.595883 7.7677616 6.2884607
- 26300 2000 -0 7.5958752 7.7677633 6.2884628
- 26400 2000 -0 7.5958661 7.7677658 6.288466
- 26500 2000 -0 7.5958577 7.7677683 6.2884697
- 26600 2000 -0 7.5958499 7.7677701 6.2884712
- 26700 2000 -0 7.5958424 7.767772 6.2884735
- 26800 2000 -0 7.5958352 7.7677742 6.2884777
- 26900 2000 -0 7.5958278 7.767776 6.2884798
- 27000 2000 -0 7.5958205 7.7677777 6.2884817
- 27100 2000 -0 7.5958171 7.7677861 6.2884867
- 27200 2000 -0 7.5958058 7.767782 6.2884877
- 27300 2000 -0 7.5957995 7.767783 6.2884897
- 27400 2000 -0 7.5957928 7.7677845 6.2884941
- 27500 2000 -0 7.5957858 7.7677862 6.2884971
- 27600 2000 -0 7.5957786 7.7677876 6.2884991
- 27700 2000 -0 7.5957716 7.7677894 6.2885028
- 27800 2000 -0 7.5957644 7.7677911 6.2885058
- 27900 2000 -0 7.595757 7.7677927 6.2885082
- 28000 2000 -0 7.5957496 7.7677945 6.2885114
- 28100 2000 -0 7.5957421 7.7677965 6.2885146
- 28200 2000 -0 7.5957342 7.7677984 6.288517
- 28300 2000 -0 7.5957263 7.7678006 6.2885197
- 28400 2000 -0 7.5957182 7.7678029 6.2885227
- 28500 2000 -0 7.5957098 7.7678053 6.2885251
- 28600 2000 -0 7.595701 7.7678109 6.2885275
- 28700 2000 -0 7.5956927 7.7678104 6.2885301
- 28800 2000 -0 7.5956839 7.7678133 6.2885325
- 28900 2000 -0 7.5956749 7.7678161 6.2885345
- 29000 2000 -0 7.5956658 7.7678191 6.2885369
- 29100 2000 -0 7.5956566 7.7678222 6.2885392
- 29200 2000 -0 7.5956473 7.7678253 6.2885412
- 29300 2000 -0 7.5956379 7.7678284 6.2885434
- 29400 2000 -0 7.5956285 7.7678315 6.2885458
- 29500 2000 -0 7.595619 7.7678346 6.288548
- 29600 2000 -0 7.5956096 7.7678376 6.2885502
- 29700 2000 -0 7.5956004 7.7678407 6.2885528
- 29800 2000 -0 7.5955908 7.7678436 6.2885551
- 29900 2000 -0 7.5955816 7.7678465 6.2885573
- 30000 2000 -0 7.5955725 7.7678494 6.2885598
- 30100 2000 -0 7.5955635 7.7678522 6.2885623
- 30200 2000 -0 7.5955547 7.7678548 6.2885646
- 30300 2000 -0 7.5955461 7.7678575 6.2885671
- 30400 2000 -0 7.5955377 7.7678601 6.2885696
- 30500 2000 -0 7.5955317 7.7678632 6.288572
- 30600 2000 -0 7.5955209 7.7678646 6.2885732
- 30700 2000 -0 7.5955138 7.7678673 6.2885773
- 30800 2000 -0 7.5955057 7.7678698 6.2885802
- 30900 2000 -0 7.5954978 7.7678719 6.2885813
- 31000 2000 -0 7.5954905 7.7678739 6.2885838
- 31100 2000 -0 7.5954836 7.7678764 6.2885876
- 31200 2000 -0 7.5954763 7.7678782 6.2885891
- 31300 2000 -0 7.5954742 7.7678842 6.2885893
- 31400 2000 -0 7.5954635 7.7678813 6.2885963
- 31500 2000 -0 7.5954662 7.7678813 6.2885978
- 31600 2000 -0 7.5954651 7.767881 6.2885992
- 31700 2000 -0 7.5954652 7.7678813 6.2886059
- 31800 2000 -0 7.5954642 7.7678815 6.2886093
- 31900 2000 -0 7.5954627 7.7678812 6.2886098
- 32000 2000 -0 7.5954619 7.7678816 6.2886155
- 32100 2000 -0 7.5954608 7.767882 6.2886199
- 32200 2000 -0 7.595459 7.7678819 6.2886212
- 32300 2000 -0 7.5954574 7.7678824 6.2886253
- 32400 2000 -0 7.5954559 7.7678831 6.2886303
- 32500 2000 -0 7.5954537 7.7678834 6.2886323
- 32600 2000 -0 7.5954513 7.7678841 6.2886353
- 32700 2000 -0 7.5954491 7.767885 6.2886401
- 32800 2000 -0 7.5954463 7.7678859 6.2886428
- 32900 2000 -0 7.5954433 7.7678868 6.2886452
- 33000 2000 -0 7.5954404 7.7678881 6.2886494
- 33100 2000 -0 7.5954372 7.7678894 6.2886525
- 33200 2000 -0 7.5954345 7.76789 6.2886545
- 33300 2000 -0 7.5954319 7.7678907 6.2886578
- 33400 2000 -0 7.5954292 7.7678914 6.2886612
- 33500 2000 -0 7.5954262 7.767892 6.2886633
- 33600 2000 -0 7.5954232 7.7678927 6.2886662
- 33700 2000 -0 7.5954203 7.7678934 6.2886697
- 33800 2000 -0 7.5954172 7.767894 6.2886722
- 33900 2000 -0 7.5954142 7.7678945 6.288675
- 34000 2000 -0 7.5954113 7.7678952 6.2886785
- 34100 2000 -0 7.5954084 7.7678956 6.2886814
- 34200 2000 -0 7.5954056 7.767896 6.2886841
- 34300 2000 -0 7.595403 7.7678964 6.2886876
- 34400 2000 -0 7.5954005 7.7678968 6.2886908
- 34500 2000 -0 7.5953981 7.7678969 6.2886936
- 34600 2000 -0 7.5953959 7.7678971 6.2886968
- 34700 2000 -0 7.595394 7.7678972 6.2887001
- 34800 2000 -0 7.5953953 7.7678972 6.288703
- 34900 2000 -0 7.5953889 7.767897 6.2887047
- 35000 2000 -0 7.5953908 7.7678971 6.2887098
- 35100 2000 -0 7.5953877 7.7678973 6.2887122
- 35200 2000 -0 7.5953867 7.767897 6.2887144
- 35300 2000 -0 7.5953863 7.7678962 6.2887182
- 35400 2000 -0 7.5953856 7.7678962 6.288722
- 35500 2000 -0 7.5953849 7.7678956 6.2887237
- 35600 2000 -0 7.5953846 7.7678951 6.2887271
- 35700 2000 -0 7.5953844 7.7678947 6.2887309
- 35800 2000 -0 7.595384 7.767894 6.2887334
- 35900 2000 -0 7.5953838 7.7678933 6.2887362
- 36000 2000 -0 7.5953837 7.7678927 6.2887403
- 36100 2000 -0 7.5953834 7.767892 6.2887432
- 36200 2000 -0 7.595383 7.7678913 6.2887459
- 36300 2000 -0 7.5953827 7.7678907 6.2887498
- 36400 2000 -0 7.5953821 7.7678901 6.2887531
- 36500 2000 -0 7.5953814 7.7678895 6.2887558
- 36600 2000 -0 7.5953807 7.7678891 6.2887593
- 36700 2000 -0 7.5953797 7.7678887 6.2887627
- 36800 2000 -0 7.5953785 7.7678884 6.2887654
- 36900 2000 -0 7.5953772 7.7678883 6.2887685
- 37000 2000 -0 7.5953757 7.7678884 6.2887717
- 37100 2000 -0 7.595374 7.7678885 6.2887744
- 37200 2000 -0 7.5953721 7.7678888 6.2887771
- 37300 2000 -0 7.59537 7.7678892 6.2887801
- 37400 2000 -0 7.5953678 7.7678897 6.2887827
- 37500 2000 -0 7.5953654 7.7678903 6.2887851
- 37600 2000 -0 7.5953628 7.767891 6.2887879
- 37700 2000 -0 7.5953602 7.7678918 6.2887906
- 37800 2000 -0 7.5953571 7.7678929 6.288793
- 37900 2000 -0 7.5953545 7.7678935 6.2887957
- 38000 2000 -0 7.5953517 7.7678941 6.2887985
- 38100 2000 -0 7.5953488 7.7678949 6.2888011
- 38200 2000 -0 7.5953459 7.7678956 6.2888037
- 38300 2000 -0 7.5953431 7.7678962 6.2888066
- 38400 2000 -0 7.5953404 7.7678969 6.2888094
- 38500 2000 -0 7.5953377 7.7678974 6.2888122
- 38600 2000 -0 7.5953352 7.7678979 6.2888151
- 38700 2000 -0 7.5953328 7.7678983 6.288818
- 38800 2000 -0 7.5953306 7.7678987 6.2888209
- 38900 2000 -0 7.5953285 7.7678991 6.2888238
- 39000 2000 -0 7.5953266 7.7678994 6.2888267
- 39100 2000 -0 7.5953284 7.7678993 6.2888299
- 39200 2000 -0 7.5953221 7.7679002 6.2888311
- 39300 2000 -0 7.5953225 7.7678998 6.2888359
- 39400 2000 -0 7.5953215 7.7678999 6.2888384
- 39500 2000 -0 7.5953234 7.7678996 6.2888401
- 39600 2000 -0 7.5953197 7.7678996 6.2888437
- 39700 2000 -0 7.5953193 7.7678996 6.2888471
- 39800 2000 -0 7.5953187 7.7678992 6.2888486
- 39900 2000 -0 7.5953185 7.7678989 6.2888519
- 40000 2000 -0 7.5953185 7.7678987 6.2888555
- 40100 2000 -0 7.5953171 7.7678976 6.2888576
- 40200 2000 -0 7.595318 7.7678977 6.2888603
- 40300 2000 -0 7.5953181 7.7678973 6.2888642
- 40400 2000 -0 7.5953178 7.7678967 6.2888668
- 40500 2000 -0 7.5953175 7.7678962 6.2888695
- 40600 2000 -0 7.5953174 7.7678958 6.2888733
- 40700 2000 -0 7.5953169 7.7678954 6.2888761
- 40800 2000 -0 7.5953162 7.767895 6.2888787
- 40900 2000 -0 7.5953155 7.7678947 6.288882
- 41000 2000 -0 7.5953147 7.7678946 6.2888851
- 41100 2000 -0 7.5953136 7.7678944 6.2888876
- 41200 2000 -0 7.5953123 7.7678945 6.2888905
- 41300 2000 -0 7.5953109 7.7678948 6.2888936
- 41400 2000 -0 7.5953091 7.7678948 6.2888961
- 41500 2000 -0 7.595307 7.7678943 6.2888989
- 41600 2000 -0 7.5953046 7.7678939 6.2889022
- 41700 2000 -0 7.5953019 7.7678935 6.2889051
- 41800 2000 -0 7.595299 7.7678933 6.2889079
- 41900 2000 -0 7.5952973 7.7678931 6.2889112
- 42000 2000 -0 7.595293 7.7678931 6.2889142
- 42100 2000 -0 7.5952897 7.7678929 6.2889165
- 42200 2000 -0 7.5952864 7.7678928 6.2889198
- 42300 2000 -0 7.5952831 7.7678928 6.288923
- 42400 2000 -0 7.5952797 7.7678926 6.2889256
- 42500 2000 -0 7.5952764 7.7678925 6.2889289
- 42600 2000 -0 7.595274 7.7678914 6.2889322
- 42700 2000 -0 7.5952704 7.7678916 6.2889354
- 42800 2000 -0 7.595267 7.7678911 6.2889384
- 42900 2000 -0 7.5952656 7.7678941 6.2889425
- 43000 2000 -0 7.5952627 7.7678921 6.2889451
- 43100 2000 -0 7.5952594 7.7678889 6.2889481
- 43200 2000 -0 7.5952565 7.7678879 6.2889509
- 43300 2000 -0 7.5952547 7.7678871 6.2889548
- 43400 2000 -0 7.5952557 7.767886 6.2889583
- 43500 2000 -0 7.5952503 7.7678854 6.2889594
- 43600 2000 -0 7.5952493 7.7678839 6.288965
- 43700 2000 -0 7.5952482 7.7678827 6.2889677
- 43800 2000 -0 7.5952467 7.7678813 6.2889694
- 43900 2000 -0 7.5952458 7.7678801 6.2889739
- 44000 2000 -0 7.5952454 7.7678787 6.2889774
- 44100 2000 -0 7.5952449 7.7678768 6.2889786
- 44200 2000 -0 7.5952449 7.7678753 6.2889822
- 44300 2000 -0 7.595245 7.7678737 6.288986
- 44400 2000 -0 7.5952448 7.7678718 6.2889879
- 44500 2000 -0 7.5952448 7.7678699 6.2889908
- 44600 2000 -0 7.595245 7.7678683 6.2889949
- 44700 2000 -0 7.5952448 7.7678663 6.2889974
- 44800 2000 -0 7.5952446 7.7678644 6.289
- 44900 2000 -0 7.595245 7.7678622 6.2890034
- 45000 2000 -0 7.5952444 7.767861 6.2890073
- 45100 2000 -0 7.5952437 7.7678593 6.2890094
- 45200 2000 -0 7.595243 7.7678577 6.2890129
- 45300 2000 -0 7.5952422 7.7678563 6.289016
- 45400 2000 -0 7.5952411 7.7678549 6.2890185
- 45500 2000 -0 7.5952399 7.7678537 6.2890214
- 45600 2000 -0 7.5952386 7.7678526 6.2890245
- 45700 2000 -0 7.595237 7.7678516 6.2890269
- 45800 2000 -0 7.5952352 7.7678508 6.2890295
- 45900 2000 -0 7.5952333 7.7678501 6.2890323
- 46000 2000 -0 7.5952312 7.7678495 6.2890348
- 46100 2000 -0 7.5952289 7.767849 6.289037
- 46200 2000 -0 7.5952265 7.7678486 6.2890397
- 46300 2000 -0 7.595224 7.7678482 6.2890422
- 46400 2000 -0 7.5952213 7.7678478 6.2890445
- 46500 2000 -0 7.5952186 7.7678474 6.2890471
- 46600 2000 -0 7.5952159 7.767847 6.2890498
- 46700 2000 -0 7.5952132 7.7678466 6.2890522
- 46800 2000 -0 7.5952105 7.7678462 6.2890548
- 46900 2000 -0 7.5952078 7.7678457 6.2890576
- 47000 2000 -0 7.5952052 7.767848 6.2890603
- 47100 2000 -0 7.5952028 7.7678445 6.2890629
- 47200 2000 -0 7.5952004 7.7678438 6.2890658
- 47300 2000 -0 7.5951983 7.767843 6.2890684
- 47400 2000 -0 7.5951963 7.7678421 6.289071
- 47500 2000 -0 7.5951945 7.7678412 6.2890739
- 47600 2000 -0 7.5951928 7.7678403 6.2890766
- 47700 2000 -0 7.5951936 7.7678391 6.2890792
- 47800 2000 -0 7.5951902 7.7678383 6.2890813
- 47900 2000 -0 7.5951889 7.7678373 6.2890856
- 48000 2000 -0 7.5951881 7.7678358 6.2890872
- 48100 2000 -0 7.5951873 7.7678344 6.2890892
- 48200 2000 -0 7.595187 7.7678333 6.2890933
- 48300 2000 -0 7.5951866 7.7678318 6.2890956
- 48400 2000 -0 7.5951861 7.7678302 6.2890972
- 48500 2000 -0 7.5951861 7.7678288 6.289101
- 48600 2000 -0 7.5951861 7.7678272 6.289104
- 48700 2000 -0 7.5951858 7.7678254 6.2891058
- 48800 2000 -0 7.5951858 7.7678255 6.2891126
- 48900 2000 -0 7.5951857 7.767822 6.2891123
- 49000 2000 -0 7.5951856 7.7678203 6.2891153
- 49100 2000 -0 7.5951853 7.7678184 6.2891183
- 49200 2000 -0 7.595185 7.7678166 6.289121
- 49300 2000 -0 7.5951845 7.7678149 6.2891242
- 49400 2000 -0 7.595184 7.7678133 6.2891272
- 49500 2000 -0 7.5951831 7.7678116 6.2891298
- 49600 2000 -0 7.5951822 7.7678102 6.2891328
- 49700 2000 -0 7.5951811 7.7678089 6.2891358
- 49800 2000 -0 7.5951797 7.7678076 6.2891384
- 49900 2000 -0 7.5951782 7.7678065 6.2891412
- 50000 2000 -0 7.5951765 7.7678056 6.289144
- 50100 2000 -0 7.5951746 7.7678048 6.2891464
- 50200 2000 -0 7.5951725 7.7678041 6.2891489
- 50300 2000 -0 7.5951703 7.7678035 6.2891515
- 50400 2000 -0 7.5951679 7.767803 6.2891539
- 50500 2000 -0 7.5951653 7.7678025 6.2891563
- 50600 2000 -0 7.5951627 7.7678021 6.2891588
- 50700 2000 -0 7.59516 7.7678018 6.2891612
- 50800 2000 -0 7.5951572 7.7678014 6.2891637
- 50900 2000 -0 7.5951543 7.767801 6.2891662
- 51000 2000 -0 7.5951515 7.7678035 6.2891689
- 51100 2000 -0 7.5951486 7.7678002 6.2891713
- 51200 2000 -0 7.5951459 7.7677995 6.2891739
- 51300 2000 -0 7.5951433 7.7677989 6.2891766
- 51400 2000 -0 7.5951407 7.7677982 6.2891793
- 51500 2000 -0 7.5951383 7.7677975 6.289182
- 51600 2000 -0 7.595136 7.7677966 6.2891847
- 51700 2000 -0 7.5951339 7.7677957 6.2891875
- 51800 2000 -0 7.595132 7.7677948 6.2891902
- 51900 2000 -0 7.5951305 7.7677938 6.289193
- 52000 2000 -0 7.5951299 7.7677923 6.289195
- 52100 2000 -0 7.5951278 7.7677914 6.2891981
- 52200 2000 -0 7.5951262 7.7677905 6.2892017
- 52300 2000 -0 7.5951252 7.767789 6.2892033
- 52400 2000 -0 7.5951244 7.7677876 6.2892055
- 52500 2000 -0 7.595124 7.7677865 6.2892095
- 52600 2000 -0 7.5951234 7.7677849 6.2892116
- 52700 2000 -0 7.5951229 7.7677832 6.2892135
- 52800 2000 -0 7.5951229 7.7677818 6.2892173
- 52900 2000 -0 7.5951227 7.7677801 6.28922
- 53000 2000 -0 7.5951223 7.7677783 6.289222
- 53100 2000 -0 7.5951223 7.7677766 6.2892254
- 53200 2000 -0 7.5951221 7.7677749 6.2892286
- 53300 2000 -0 7.5951218 7.7677731 6.2892308
- 53400 2000 -0 7.5951215 7.7677713 6.289234
- 53500 2000 -0 7.5951213 7.7677724 6.2892375
- 53600 2000 -0 7.5951205 7.7677678 6.2892398
- 53700 2000 -0 7.5951197 7.7677663 6.2892426
- 53800 2000 -0 7.5951189 7.7677649 6.2892459
- 53900 2000 -0 7.5951178 7.7677635 6.2892486
- 54000 2000 -0 7.5951165 7.7677622 6.289251
- 54100 2000 -0 7.5951151 7.7677611 6.289254
- 54200 2000 -0 7.5951135 7.7677602 6.2892567
- 54300 2000 -0 7.5951116 7.7677592 6.2892589
- 54400 2000 -0 7.5951095 7.7677585 6.2892615
- 54500 2000 -0 7.5951073 7.7677579 6.2892641
- 54600 2000 -0 7.5951059 7.7677573 6.2892662
- 54700 2000 -0 7.5951022 7.7677569 6.2892686
- 54800 2000 -0 7.5950995 7.7677565 6.2892711
- 54900 2000 -0 7.5950966 7.7677562 6.2892734
- 55000 2000 -0 7.5950936 7.7677558 6.2892757
- 55100 2000 -0 7.5950906 7.7677555 6.2892782
- 55200 2000 -0 7.5950876 7.7677552 6.2892806
- 55300 2000 -0 7.5950846 7.7677547 6.289283
- 55400 2000 -0 7.5950816 7.7677543 6.2892856
- 55500 2000 -0 7.5950787 7.7677538 6.2892882
- 55600 2000 -0 7.5950758 7.7677532 6.2892907
- 55700 2000 -0 7.5950731 7.7677526 6.2892934
- 55800 2000 -0 7.5950705 7.7677519 6.2892961
- 55900 2000 -0 7.5950681 7.7677511 6.2892987
- 56000 2000 -0 7.5950658 7.7677503 6.2893013
- 56100 2000 -0 7.5950637 7.7677494 6.289304
- 56200 2000 -0 7.5950636 7.7677489 6.2893069
- 56300 2000 -0 7.5950599 7.7677469 6.2893081
- 56400 2000 -0 7.5950591 7.7677461 6.2893121
- 56500 2000 -0 7.5950575 7.7677452 6.2893152
- 56600 2000 -0 7.595056 7.7677438 6.2893165
- 56700 2000 -0 7.5950551 7.7677425 6.2893191
- 56800 2000 -0 7.5950546 7.7677414 6.289323
- 56900 2000 -0 7.5950537 7.7677398 6.2893246
- 57000 2000 -0 7.5950531 7.7677383 6.2893268
- 57100 2000 -0 7.5950528 7.7677369 6.2893306
- 57200 2000 -0 7.5950524 7.7677352 6.289333
- 57300 2000 -0 7.5950519 7.7677334 6.289335
- 57400 2000 -0 7.5950517 7.7677318 6.2893386
- 57500 2000 -0 7.5950513 7.7677302 6.2893415
- 57600 2000 -0 7.5950507 7.7677283 6.2893436
- 57700 2000 -0 7.5950502 7.7677267 6.2893469
- 57800 2000 -0 7.5950496 7.7677251 6.2893501
- 57900 2000 -0 7.5950486 7.7677235 6.2893525
- 58000 2000 -0 7.5950476 7.767722 6.2893554
- 58100 2000 -0 7.5950465 7.7677207 6.2893585
- 58200 2000 -0 7.5950451 7.7677194 6.289361
- 58300 2000 -0 7.5950436 7.7677183 6.2893635
- 58400 2000 -0 7.5950421 7.7677174 6.2893664
- 58500 2000 -0 7.5950402 7.7677166 6.2893688
- 58600 2000 -0 7.5950381 7.7677158 6.289371
- 58700 2000 -0 7.595036 7.7677153 6.2893736
- 58800 2000 -0 7.5950336 7.7677148 6.289376
- 58900 2000 -0 7.595031 7.7677144 6.2893781
- 59000 2000 -0 7.5950283 7.7677141 6.2893804
- 59100 2000 -0 7.5950254 7.7677139 6.2893828
- 59200 2000 -0 7.5950225 7.7677137 6.2893849
- 59300 2000 -0 7.5950194 7.7677135 6.2893872
- 59400 2000 -0 7.5950163 7.7677134 6.2893896
- 59500 2000 -0 7.5950132 7.7677131 6.2893919
- 59600 2000 -0 7.5950101 7.7677129 6.2893942
- 59700 2000 -0 7.595007 7.7677126 6.2893968
- 59800 2000 -0 7.5950047 7.7677123 6.2893992
- 59900 2000 -0 7.5950011 7.7677118 6.2894016
- 60000 2000 -0 7.5949983 7.7677113 6.2894042
- 60100 2000 -0 7.5949956 7.7677107 6.2894068
- 60200 2000 -0 7.5949931 7.7677101 6.2894093
- 60300 2000 -0 7.5949908 7.7677094 6.2894119
- 60400 2000 -0 7.5949886 7.7677087 6.2894145
- 60500 2000 -0 7.5949893 7.7677082 6.2894169
- 60600 2000 -0 7.5949834 7.7677067 6.2894183
- 60700 2000 -0 7.5949837 7.7677058 6.2894226
- 60800 2000 -0 7.5949821 7.767705 6.2894252
- 60900 2000 -0 7.5949805 7.7677038 6.2894264
- 61000 2000 -0 7.5949795 7.7677026 6.2894293
- 61100 2000 -0 7.5949789 7.7677016 6.2894329
- 61200 2000 -0 7.5949779 7.7677001 6.2894343
- 61300 2000 -0 7.5949772 7.7676987 6.2894368
- 61400 2000 -0 7.5949768 7.7676974 6.2894404
- 61500 2000 -0 7.5949762 7.7676959 6.2894425
- 61600 2000 -0 7.5949757 7.7676942 6.2894446
- 61700 2000 -0 7.5949753 7.7676928 6.2894483
- 61800 2000 -0 7.5949748 7.7676912 6.2894509
- 61900 2000 -0 7.5949741 7.7676895 6.289453
- 62000 2000 -0 7.5949735 7.767688 6.2894564
- 62100 2000 -0 7.5949727 7.7676865 6.2894593
- 62200 2000 -0 7.5949717 7.767685 6.2894616
- 62300 2000 -0 7.5949706 7.7676836 6.2894646
- 62400 2000 -0 7.5949694 7.7676824 6.2894676
- 62500 2000 -0 7.5949679 7.7676812 6.2894699
- 62600 2000 -0 7.5949663 7.7676801 6.2894725
- 62700 2000 -0 7.5949645 7.7676792 6.2894754
- 62800 2000 -0 7.5949624 7.7676785 6.2894777
- 62900 2000 -0 7.5949602 7.7676778 6.2894799
- 63000 2000 -0 7.5949578 7.7676773 6.2894825
- 63100 2000 -0 7.5949553 7.7676769 6.2894848
- 63200 2000 -0 7.5949525 7.7676765 6.2894868
- 63300 2000 -0 7.5949496 7.7676763 6.2894892
- 63400 2000 -0 7.5949466 7.7676761 6.2894915
- 63500 2000 -0 7.5949435 7.7676759 6.2894935
- 63600 2000 -0 7.5949404 7.7676757 6.2894957
- 63700 2000 -0 7.5949373 7.7676755 6.2894981
- 63800 2000 -0 7.5949341 7.7676752 6.2895003
- 63900 2000 -0 7.594931 7.7676749 6.2895025
- 64000 2000 -0 7.5949281 7.7676746 6.289505
- 64100 2000 -0 7.5949249 7.7676742 6.2895073
- 64200 2000 -0 7.5949219 7.7676737 6.2895097
- 64300 2000 -0 7.5949191 7.7676731 6.2895122
- 64400 2000 -0 7.5949165 7.7676725 6.2895147
- 64500 2000 -0 7.594914 7.7676718 6.2895171
- 64600 2000 -0 7.5949116 7.7676711 6.2895196
- 64700 2000 -0 7.5949095 7.7676702 6.2895221
- 64800 2000 -0 7.5949105 7.7676688 6.2895247
- 64900 2000 -0 7.5949039 7.767668 6.2895261
- 65000 2000 -0 7.5949041 7.7676665 6.2895306
- 65100 2000 -0 7.5949026 7.7676653 6.2895328
- 65200 2000 -0 7.5949005 7.7676632 6.2895342
- 65300 2000 -0 7.5948956 7.7676549 6.2895391
- 65400 2000 -0 7.5948925 7.7676486 6.2895389
- 65500 2000 -0 7.5948924 7.7676487 6.2895397
- 65600 2000 -0 7.5948923 7.767647 6.289549
- 65700 2000 -0 7.5948909 7.7676452 6.2895471
- 65800 2000 -0 7.5948899 7.7676429 6.289548
- 65900 2000 -0 7.5948899 7.7676418 6.2895556
- 66000 2000 -0 7.5948891 7.7676399 6.2895571
- 66100 2000 -0 7.5948876 7.7676375 6.2895567
- 66200 2000 -0 7.5948874 7.7676361 6.2895627
- 66300 2000 -0 7.5948866 7.7676344 6.2895663
- 66400 2000 -0 7.5948851 7.7676323 6.2895661
- 66500 2000 -0 7.5948842 7.7676308 6.2895704
- 66600 2000 -0 7.5948833 7.7676295 6.2895749
- 66700 2000 -0 7.5948815 7.7676277 6.2895755
- 66800 2000 -0 7.5948799 7.7676263 6.2895782
- 66900 2000 -0 7.5948784 7.7676253 6.2895826
- 67000 2000 -0 7.5948762 7.7676241 6.2895841
- 67100 2000 -0 7.5948739 7.767623 6.2895858
- 67200 2000 -0 7.5948718 7.7676223 6.2895898
- 67300 2000 -0 7.5948692 7.7676216 6.289592
- 67400 2000 -0 7.5948662 7.7676208 6.2895932
- 67500 2000 -0 7.5948635 7.7676203 6.2895964
- 67600 2000 -0 7.5948605 7.7676199 6.2895991
- 67700 2000 -0 7.5948572 7.7676193 6.2896004
- 67800 2000 -0 7.594854 7.767619 6.289603
- 67900 2000 -0 7.5948508 7.7676187 6.2896061
- 68000 2000 -0 7.5948473 7.7676182 6.2896078
- 68100 2000 -0 7.5948438 7.7676178 6.28961
- 68200 2000 -0 7.5948406 7.7676174 6.2896131
- 68300 2000 -0 7.5948372 7.7676168 6.2896153
- 68400 2000 -0 7.5948339 7.7676161 6.2896175
- 68500 2000 -0 7.5948308 7.7676156 6.2896206
- 68600 2000 -0 7.5948278 7.7676148 6.2896232
- 68700 2000 -0 7.5948248 7.767614 6.2896254
- 68800 2000 -0 7.5948221 7.7676131 6.2896283
- 68900 2000 -0 7.5948196 7.7676122 6.2896311
- 69000 2000 -0 7.5948172 7.7676111 6.2896334
- 69100 2000 -0 7.5948182 7.7676099 6.2896363
- 69200 2000 -0 7.5948122 7.7676096 6.2896377
- 69300 2000 -0 7.594811 7.7676081 6.2896421
- 69400 2000 -0 7.5948092 7.767607 6.2896441
- 69500 2000 -0 7.5948073 7.7676059 6.2896459
- 69600 2000 -0 7.5948058 7.7676043 6.2896498
- 69700 2000 -0 7.5948044 7.7676026 6.2896529
- 69800 2000 -0 7.5948029 7.7676005 6.2896547
- 69900 2000 -0 7.5948018 7.7675987 6.2896584
- 70000 2000 -0 7.5948007 7.7675967 6.2896619
- 70100 2000 -0 7.5947995 7.7675945 6.2896642
- 70200 2000 -0 7.5947984 7.7675924 6.2896674
- 70300 2000 -0 7.5947974 7.7675903 6.2896713
- 70400 2000 -0 7.5947962 7.7675881 6.2896739
- 70500 2000 -0 7.594795 7.7675859 6.289677
- 70600 2000 -0 7.5947937 7.7675838 6.2896808
- 70700 2000 -0 7.5947922 7.7675817 6.2896838
- 70800 2000 -0 7.5947906 7.7675796 6.2896868
- 70900 2000 -0 7.5947889 7.7675777 6.2896903
- 71000 2000 -0 7.594787 7.7675758 6.2896935
- 71100 2000 -0 7.5947848 7.7675741 6.2896963
- 71200 2000 -0 7.5947826 7.7675725 6.2896995
- 71300 2000 -0 7.5947801 7.767571 6.2897026
- 71400 2000 -0 7.5947774 7.7675697 6.2897053
- 71500 2000 -0 7.5947745 7.7675684 6.2897081
- 71600 2000 -0 7.5947715 7.7675673 6.2897111
- 71700 2000 -0 7.5947683 7.7675663 6.2897137
- 71800 2000 -0 7.5947648 7.7675654 6.2897162
- 71900 2000 -0 7.5947613 7.7675645 6.2897191
- 72000 2000 -0 7.5947575 7.7675638 6.2897217
- 72100 2000 -0 7.5947535 7.7675631 6.2897242
- 72200 2000 -0 7.5947494 7.7675625 6.289727
- 72300 2000 -0 7.5947453 7.7675618 6.2897298
- 72400 2000 -0 7.594741 7.7675611 6.2897324
- 72500 2000 -0 7.5947368 7.7675604 6.2897352
- 72600 2000 -0 7.5947325 7.7675597 6.2897381
- 72700 2000 -0 7.5947283 7.7675588 6.2897408
- 72800 2000 -0 7.5947242 7.7675578 6.2897437
- 72900 2000 -0 7.5947201 7.7675568 6.2897466
- 73000 2000 -0 7.5947162 7.7675557 6.2897494
- 73100 2000 -0 7.5947122 7.7675546 6.2897523
- 73200 2000 -0 7.5947083 7.7675536 6.2897553
- 73300 2000 -0 7.5947045 7.7675525 6.2897583
- 73400 2000 -0 7.5947035 7.7675515 6.2897613
- 73500 2000 -0 7.5946973 7.767551 6.2897633
- 73600 2000 -0 7.5946939 7.7675499 6.2897681
- 73700 2000 -0 7.5946909 7.7675487 6.2897703
- 73800 2000 -0 7.5946877 7.7675475 6.2897725
- 73900 2000 -0 7.5946849 7.7675465 6.2897768
- 74000 2000 -0 7.5946821 7.7675453 6.2897798
- 74100 2000 -0 7.5946792 7.7675439 6.2897817
- 74200 2000 -0 7.5946768 7.7675427 6.2897857
- 74300 2000 -0 7.5946742 7.7675414 6.2897892
- 74400 2000 -0 7.5946714 7.7675399 6.2897916
- 74500 2000 -0 7.5946688 7.7675385 6.2897951
- 74600 2000 -0 7.5946662 7.7675371 6.2897992
- 74700 2000 -0 7.5946634 7.7675355 6.2898019
- 74800 2000 -0 7.5946605 7.7675341 6.2898052
- 74900 2000 -0 7.5946577 7.7675328 6.2898092
- 75000 2000 -0 7.5946545 7.7675314 6.2898123
- 75100 2000 -0 7.5946512 7.76753 6.2898154
- 75200 2000 -0 7.5946478 7.7675289 6.2898193
- 75300 2000 -0 7.5946442 7.7675278 6.2898225
- 75400 2000 -0 7.5946403 7.7675268 6.2898255
- 75500 2000 -0 7.5946363 7.767526 6.2898289
- 75600 2000 -0 7.5946321 7.7675253 6.2898322
- 75700 2000 -0 7.5946277 7.7675247 6.2898349
- 75800 2000 -0 7.594623 7.7675243 6.2898379
- 75900 2000 -0 7.5946182 7.767524 6.289841
- 76000 2000 -0 7.5946184 7.7675222 6.2898477
- 76100 2000 -0 7.5946168 7.7675198 6.2898534
- 76200 2000 -0 7.5946059 7.7675208 6.2898537
- 76300 2000 -0 7.5945934 7.7675229 6.2898545
- 76400 2000 -0 7.5945858 7.7675222 6.2898578
- 76500 2000 -0 7.594578 7.7675215 6.2898604
- 76600 2000 -0 7.5945704 7.767521 6.289865
- 76700 2000 -0 7.5945627 7.7675205 6.2898692
- 76800 2000 -0 7.5945548 7.7675198 6.2898721
- 76900 2000 -0 7.5945472 7.7675191 6.2898763
- 77000 2000 -0 7.5945397 7.7675184 6.2898809
- 77100 2000 -0 7.5945321 7.7675175 6.2898842
- 77200 2000 -0 7.5945247 7.7675166 6.289888
- 77300 2000 -0 7.5945177 7.7675156 6.2898926
- 77400 2000 -0 7.5945106 7.7675145 6.2898964
- 77500 2000 -0 7.5945037 7.7675133 6.2899
- 77600 2000 -0 7.5944972 7.7675122 6.2899045
- 77700 2000 -0 7.5944924 7.7675106 6.2899081
- 77800 2000 -0 7.5944847 7.7675094 6.2899116
- 77900 2000 -0 7.5944783 7.7675083 6.2899171
- 78000 2000 -0 7.5944725 7.7675065 6.2899202
- 78100 2000 -0 7.5944668 7.7675048 6.2899232
- 78200 2000 -0 7.5944616 7.7675034 6.2899286
- 78300 2000 -0 7.5944563 7.7675016 6.2899324
- 78400 2000 -0 7.5944509 7.7674996 6.2899353
- 78500 2000 -0 7.594446 7.7674978 6.2899402
- 78600 2000 -0 7.5944411 7.7674959 6.2899446
- 78700 2000 -0 7.594436 7.7674938 6.2899477
- 78800 2000 -0 7.5944312 7.7674918 6.2899523
- 78900 2000 -0 7.5944263 7.7674898 6.2899571
- 79000 2000 -0 7.5944211 7.7674876 6.2899606
- 79100 2000 -0 7.594416 7.7674855 6.2899649
- 79200 2000 -0 7.5944109 7.7674835 6.2899697
- 79300 2000 -0 7.5944055 7.7674815 6.2899736
- 79400 2000 -0 7.5944 7.7674795 6.2899776
- 79500 2000 -0 7.5943944 7.7674777 6.2899823
- 79600 2000 -0 7.5943887 7.767476 6.2899864
- 79700 2000 -0 7.5943826 7.7674743 6.2899902
- 79800 2000 -0 7.5943766 7.7674728 6.2899944
- 79900 2000 -0 7.5943703 7.7674715 6.2899985
- 80000 2000 -0 7.5943639 7.7674702 6.2900021
- 80100 2000 -0 7.5943573 7.7674691 6.290006
- 80200 2000 -0 7.5943506 7.7674681 6.2900099
- 80300 2000 -0 7.5943437 7.7674671 6.2900134
- 80400 2000 -0 7.5943367 7.7674662 6.2900171
- 80500 2000 -0 7.5943296 7.7674655 6.2900209
- 80600 2000 -0 7.5943224 7.7674647 6.2900245
- 80700 2000 -0 7.5943151 7.7674639 6.2900281
- 80800 2000 -0 7.5943077 7.7674632 6.290032
- 80900 2000 -0 7.5943001 7.7674623 6.290036
- 81000 2000 -0 7.5942925 7.7674614 6.2900398
- 81100 2000 -0 7.594285 7.7674604 6.2900439
- 81200 2000 -0 7.5942776 7.7674594 6.290048
- 81300 2000 -0 7.5942702 7.7674582 6.290052
- 81400 2000 -0 7.594263 7.767457 6.2900562
- 81500 2000 -0 7.594256 7.7674558 6.2900604
- 81600 2000 -0 7.5942491 7.7674544 6.2900645
- 81700 2000 -0 7.5942424 7.767453 6.2900686
- 81800 2000 -0 7.5942359 7.7674515 6.2900729
- 81900 2000 -0 7.5942312 7.7674504 6.2900799
- 82000 2000 -0 7.5942237 7.7674478 6.29008
- 82100 2000 -0 7.5942182 7.7674465 6.2900859
- 82200 2000 -0 7.5942121 7.767445 6.2900901
- 82300 2000 -0 7.5942063 7.7674429 6.2900926
- 82400 2000 -0 7.5942013 7.7674409 6.2900972
- 82500 2000 -0 7.5941965 7.7674392 6.2901025
- 82600 2000 -0 7.5941914 7.7674369 6.2901052
- 82700 2000 -0 7.5941866 7.7674347 6.2901091
- 82800 2000 -0 7.5941822 7.7674326 6.2901146
- 82900 2000 -0 7.5941776 7.7674302 6.2901181
- 83000 2000 -0 7.5941729 7.7674277 6.2901216
- 83100 2000 -0 7.5941686 7.7674254 6.2901269
- 83200 2000 -0 7.5941641 7.767423 6.2901311
- 83300 2000 -0 7.5941594 7.7674205 6.2901346
- 83400 2000 -0 7.5941549 7.7674181 6.2901396
- 83500 2000 -0 7.5941502 7.7674158 6.2901442
- 83600 2000 -0 7.5941452 7.7674133 6.2901479
- 83700 2000 -0 7.5941402 7.7674111 6.2901524
- 83800 2000 -0 7.5941351 7.7674089 6.2901572
- 83900 2000 -0 7.5941297 7.7674068 6.290161
- 84000 2000 -0 7.5941242 7.7674048 6.290165
- 84100 2000 -0 7.5941186 7.767403 6.2901696
- 84200 2000 -0 7.5941126 7.7674013 6.2901734
- 84300 2000 -0 7.5941065 7.7673997 6.2901771
- 84400 2000 -0 7.5941003 7.7673983 6.2901814
- 84500 2000 -0 7.5940939 7.767397 6.2901852
- 84600 2000 -0 7.5940872 7.7673957 6.2901888
- 84700 2000 -0 7.5940805 7.7673944 6.2901928
- 84800 2000 -0 7.5940737 7.7673931 6.2901967
- 84900 2000 -0 7.5940667 7.7673918 6.2902004
- 85000 2000 -0 7.5940597 7.7673906 6.2902042
- 85100 2000 -0 7.5940526 7.7673893 6.2902083
- 85200 2000 -0 7.5940454 7.767388 6.2902121
- 85300 2000 -0 7.5940382 7.7673867 6.290216
- 85400 2000 -0 7.5940312 7.7673853 6.2902202
- 85500 2000 -0 7.5940241 7.7673839 6.2902243
- 85600 2000 -0 7.5940172 7.7673823 6.2902282
- 85700 2000 -0 7.5940104 7.7673808 6.2902325
- 85800 2000 -0 7.5940037 7.7673791 6.2902367
- 85900 2000 -0 7.5939971 7.7673773 6.2902409
- 86000 2000 -0 7.5939906 7.7673755 6.2902452
- 86100 2000 -0 7.5939844 7.7673736 6.2902496
- 86200 2000 -0 7.5939805 7.7673722 6.2902539
- 86300 2000 -0 7.5939717 7.7673693 6.2902569
- 86400 2000 -0 7.5939672 7.7673674 6.2902627
- 86500 2000 -0 7.5939615 7.7673655 6.2902672
- 86600 2000 -0 7.5939558 7.7673632 6.2902702
- 86700 2000 -0 7.5939508 7.7673608 6.2902746
- 86800 2000 -0 7.5939461 7.7673587 6.2902801
- 86900 2000 -0 7.5939411 7.7673561 6.2902832
- 87000 2000 -0 7.5939363 7.7673536 6.2902873
- 87100 2000 -0 7.5939319 7.7673513 6.2902927
- 87200 2000 -0 7.5939273 7.7673486 6.2902967
- 87300 2000 -0 7.5939223 7.7673461 6.2903004
- 87400 2000 -0 7.5939183 7.7673434 6.2903057
- 87500 2000 -0 7.5939138 7.7673407 6.2903103
- 87600 2000 -0 7.5939091 7.7673378 6.2903141
- 87700 2000 -0 7.5939045 7.7673352 6.2903191
- 87800 2000 -0 7.5938997 7.7673326 6.290324
- 87900 2000 -0 7.5938947 7.76733 6.2903281
- 88000 2000 -0 7.5938896 7.7673275 6.2903326
- 88100 2000 -0 7.5938843 7.7673252 6.2903375
- 88200 2000 -0 7.5938785 7.767323 6.2903417
- 88300 2000 -0 7.5938726 7.767321 6.2903459
- 88400 2000 -0 7.5938666 7.7673191 6.2903505
- 88500 2000 -0 7.5938603 7.7673174 6.2903546
- 88600 2000 -0 7.5938538 7.7673157 6.2903585
- 88700 2000 -0 7.5938471 7.7673142 6.2903628
- 88800 2000 -0 7.5938403 7.7673128 6.290367
- 88900 2000 -0 7.5938333 7.7673115 6.2903707
- 89000 2000 -0 7.5938261 7.7673103 6.2903748
- 89100 2000 -0 7.5938189 7.7673091 6.2903789
- 89200 2000 -0 7.5938115 7.7673079 6.2903827
- 89300 2000 -0 7.593804 7.7673068 6.2903867
- 89400 2000 -0 7.5937967 7.7673056 6.2903909
- 89500 2000 -0 7.5937891 7.7673045 6.290395
- 89600 2000 -0 7.5937814 7.7673033 6.2903989
- 89700 2000 -0 7.593774 7.7673021 6.2904033
- 89800 2000 -0 7.5937665 7.7673008 6.2904075
- 89900 2000 -0 7.5937592 7.7672994 6.2904116
- 90000 2000 -0 7.593752 7.7672979 6.2904159
- 90100 2000 -0 7.5937449 7.7672964 6.2904203
- 90200 2000 -0 7.593738 7.7672948 6.2904245
- 90300 2000 -0 7.5937313 7.7672931 6.2904288
- 90400 2000 -0 7.5937247 7.7672914 6.2904332
- 90500 2000 -0 7.5937212 7.7672898 6.2904372
- 90600 2000 -0 7.5937109 7.7672874 6.2904407
- 90700 2000 -0 7.5937069 7.7672852 6.2904466
- 90800 2000 -0 7.5937012 7.7672832 6.2904508
- 90900 2000 -0 7.5936954 7.7672808 6.2904539
- 91000 2000 -0 7.5936902 7.7672783 6.2904586
- 91100 2000 -0 7.5936853 7.7672761 6.2904639
- 91200 2000 -0 7.5936801 7.7672734 6.290467
- 91300 2000 -0 7.5936753 7.7672708 6.2904714
- 91400 2000 -0 7.5936707 7.7672683 6.2904767
- 91500 2000 -0 7.5936659 7.7672655 6.2904805
- 91600 2000 -0 7.5936611 7.7672627 6.2904845
- 91700 2000 -0 7.5936566 7.76726 6.2904899
- 91800 2000 -0 7.5936518 7.7672571 6.2904943
- 91900 2000 -0 7.5936469 7.7672543 6.2904983
- 92000 2000 -0 7.5936421 7.7672515 6.2905034
- 92100 2000 -0 7.5936371 7.7672488 6.2905081
- 92200 2000 -0 7.5936318 7.7672461 6.2905122
- 92300 2000 -0 7.5936265 7.7672435 6.290517
- 92400 2000 -0 7.5936211 7.767241 6.2905217
- 92500 2000 -0 7.5936154 7.7672386 6.2905258
- 92600 2000 -0 7.5936095 7.7672363 6.2905302
- 92700 2000 -0 7.5936035 7.7672343 6.2905348
- 92800 2000 -0 7.5935971 7.7672324 6.2905388
- 92900 2000 -0 7.5935906 7.7672307 6.2905428
- 93000 2000 -0 7.5935838 7.7672293 6.2905471
- 93100 2000 -0 7.5935769 7.7672279 6.2905511
- 93200 2000 -0 7.5935698 7.7672265 6.2905549
- 93300 2000 -0 7.5935625 7.7672254 6.290559
- 93400 2000 -0 7.5935551 7.7672242 6.290563
- 93500 2000 -0 7.5935476 7.7672231 6.2905668
- 93600 2000 -0 7.5935401 7.7672219 6.2905708
- 93700 2000 -0 7.5935325 7.7672208 6.290575
- 93800 2000 -0 7.5935248 7.7672196 6.2905789
- 93900 2000 -0 7.5935172 7.7672184 6.290583
- 94000 2000 -0 7.5935097 7.767217 6.2905873
- 94100 2000 -0 7.5935023 7.7672156 6.2905915
- 94200 2000 -0 7.593495 7.767214 6.2905957
- 94300 2000 -0 7.5934878 7.7672123 6.2906
- 94400 2000 -0 7.5934808 7.7672106 6.2906044
- 94500 2000 -0 7.593474 7.7672087 6.2906086
- 94600 2000 -0 7.5934675 7.7672069 6.290613
- 94700 2000 -0 7.5934609 7.7672048 6.2906173
- 94800 2000 -0 7.5934577 7.7672024 6.2906217
- 94900 2000 -0 7.5934471 7.767201 6.2906246
- 95000 2000 -0 7.5934428 7.7671984 6.2906309
- 95100 2000 -0 7.5934372 7.7671962 6.2906347
- 95200 2000 -0 7.5934313 7.7671938 6.2906378
- 95300 2000 -0 7.5934261 7.7671914 6.290643
- 95400 2000 -0 7.5934211 7.7671891 6.2906478
- 95500 2000 -0 7.5934157 7.7671863 6.2906508
- 95600 2000 -0 7.5934109 7.7671838 6.2906556
- 95700 2000 -0 7.5934061 7.7671813 6.2906607
- 95800 2000 -0 7.5934012 7.7671785 6.2906643
- 95900 2000 -0 7.5933963 7.7671757 6.2906686
- 96000 2000 -0 7.5933917 7.767173 6.2906739
- 96100 2000 -0 7.5933867 7.7671702 6.290678
- 96200 2000 -0 7.5933817 7.7671673 6.2906822
- 96300 2000 -0 7.5933768 7.7671646 6.2906873
- 96400 2000 -0 7.5933716 7.7671619 6.2906918
- 96500 2000 -0 7.5933663 7.7671592 6.2906959
- 96600 2000 -0 7.5933609 7.7671567 6.2907008
- 96700 2000 -0 7.5933553 7.7671542 6.2907054
- 96800 2000 -0 7.5933494 7.7671518 6.2907095
- 96900 2000 -0 7.5933434 7.7671496 6.2907139
- 97000 2000 -0 7.5933372 7.7671476 6.2907184
- 97100 2000 -0 7.5933308 7.7671456 6.2907224
- 97200 2000 -0 7.5933242 7.7671437 6.2907265
- 97300 2000 -0 7.5933174 7.7671421 6.2907308
- 97400 2000 -0 7.5933105 7.7671404 6.2907348
- 97500 2000 -0 7.5933033 7.7671389 6.2907386
- 97600 2000 -0 7.5932961 7.7671375 6.2907428
- 97700 2000 -0 7.5932888 7.7671359 6.2907468
- 97800 2000 -0 7.5932813 7.7671343 6.2907507
- 97900 2000 -0 7.5932739 7.7671327 6.2907548
- 98000 2000 -0 7.5932664 7.7671312 6.290759
- 98100 2000 -0 7.5932588 7.7671296 6.290763
- 98200 2000 -0 7.5932513 7.7671279 6.2907672
- 98300 2000 -0 7.5932438 7.7671262 6.2907715
- 98400 2000 -0 7.5932364 7.7671245 6.2907757
- 98500 2000 -0 7.5932291 7.7671226 6.2907799
- 98600 2000 -0 7.5932219 7.7671208 6.2907843
- 98700 2000 -0 7.5932149 7.7671188 6.2907886
- 98800 2000 -0 7.593208 7.7671167 6.2907928
- 98900 2000 -0 7.5932013 7.7671147 6.2907972
- 99000 2000 -0 7.5931948 7.7671125 6.2908015
- 99100 2000 -0 7.5931916 7.7671102 6.2908061
- 99200 2000 -0 7.5931818 7.7671085 6.2908089
- 99300 2000 -0 7.5931764 7.7671057 6.2908152
- 99400 2000 -0 7.5931708 7.7671032 6.2908188
- 99500 2000 -0 7.593165 7.7671007 6.290822
- 99600 2000 -0 7.5931598 7.7670982 6.2908274
- 99700 2000 -0 7.5931546 7.7670957 6.2908319
- 99800 2000 -0 7.5931492 7.7670928 6.2908349
- 99900 2000 -0 7.5931443 7.7670902 6.29084
- 100000 2000 -0 7.5931395 7.7670875 6.2908449
-Loop time of 30.0046 on 4 procs for 100000 steps with 2000 atoms
-
-Performance: 287955.602 tau/day, 3332.819 timesteps/s, 6.666 Matom-step/s
-96.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 | 14.456 | 15.429 | 16.749 | 23.8 | 51.42
-Neigh | 0.50522 | 0.53511 | 0.56337 | 3.4 | 1.78
-Comm | 4.8655 | 6.3036 | 7.267 | 39.7 | 21.01
-Output | 0.018666 | 0.021667 | 0.030382 | 3.4 | 0.07
-Modify | 6.9997 | 7.0865 | 7.1678 | 2.3 | 23.62
-Other | | 0.6286 | | | 2.09
-
-Nlocal: 500 ave 504 max 496 min
-Histogram: 2 0 0 0 0 0 0 0 0 2
-Nghost: 545.75 ave 553 max 538 min
-Histogram: 1 0 0 0 1 0 1 0 0 1
-Neighs: 2409.75 ave 2523 max 2343 min
-Histogram: 1 1 0 1 0 0 0 0 0 1
-
-Total # of neighbors = 9639
-Ave neighs/atom = 4.8195
-Neighbor list builds = 3151
-Dangerous builds = 0
-
-Total wall time: 0:00:30
diff --git a/examples/meam/msmeam/README.md b/examples/meam/msmeam/README.md
index dbf569d4b3..a21e35aa12 100644
--- a/examples/meam/msmeam/README.md
+++ b/examples/meam/msmeam/README.md
@@ -1,8 +1,8 @@
-To run Baske's test, do
+To run this test, do
lmp -in in.msmeam
-Then
+Then:
diff dump.msmeam dump.msmeam.bu
diff --git a/examples/meam/msmeam/dump.msmeam.bu b/examples/meam/msmeam/dump.msmeam.bu
index 039f630073..45d17a5228 100644
--- a/examples/meam/msmeam/dump.msmeam.bu
+++ b/examples/meam/msmeam/dump.msmeam.bu
@@ -3,22 +3,22 @@ ITEM: TIMESTEP
ITEM: NUMBER OF ATOMS
3
ITEM: BOX BOUNDS pp pp pp
--4 4
--4 4
--4 4
-ITEM: ATOMS id x y z fx fy fz c_pot_energy c_stress[1] c_stress[2] c_stress[3] c_stress[4] c_stress[5] c_stress[6]
-1 0 0 0 -131.925 -88.3005 0 22.9153 -2.147e+08 -1.62661e+08 -0 -2.05301e+07 -0 -0
-2 2.2 0 0 120.809 -0.482171 0 14.7692 -2.12028e+08 -0 -0 403352 -0 -0
-3 0.3 2.3 0 11.1159 88.7827 0 8.61478 -2.67145e+06 -1.62661e+08 -0 -2.09335e+07 -0 -0
+-4.0000000000000000e+00 4.0000000000000000e+00
+-4.0000000000000000e+00 4.0000000000000000e+00
+-4.0000000000000000e+00 4.0000000000000000e+00
+ITEM: ATOMS id x y z fx fy fz c_pot_energy c_stress[1] c_stress[2] c_stress[3] c_stress[4] c_stress[5] c_stress[6]
+1 0 0 0 -131.977 -88.3322 0 22.9236 -2.14786e+08 -1.62719e+08 -0 -2.05378e+07 -0 -0
+2 2.2 0 0 120.857 -0.482171 0 14.7745 -2.12113e+08 -0 -0 403352 -0 -0
+3 0.3 2.3 0 11.1201 88.8144 0 8.61773 -2.67245e+06 -1.62719e+08 -0 -2.09411e+07 -0 -0
ITEM: TIMESTEP
1
ITEM: NUMBER OF ATOMS
3
ITEM: BOX BOUNDS pp pp pp
--4 4
--4 4
--4 4
-ITEM: ATOMS id x y z fx fy fz c_pot_energy c_stress[1] c_stress[2] c_stress[3] c_stress[4] c_stress[5] c_stress[6]
-1 0 0 0 -131.925 -88.3005 0 22.9153 -2.147e+08 -1.62661e+08 -0 -2.05301e+07 -0 -0
-2 2.2 0 0 120.809 -0.482171 0 14.7692 -2.12028e+08 -0 -0 403352 -0 -0
-3 0.3 2.3 0 11.1159 88.7827 0 8.61478 -2.67145e+06 -1.62661e+08 -0 -2.09335e+07 -0 -0
+-4.0000000000000000e+00 4.0000000000000000e+00
+-4.0000000000000000e+00 4.0000000000000000e+00
+-4.0000000000000000e+00 4.0000000000000000e+00
+ITEM: ATOMS id x y z fx fy fz c_pot_energy c_stress[1] c_stress[2] c_stress[3] c_stress[4] c_stress[5] c_stress[6]
+1 0 0 0 -131.977 -88.3322 0 22.9236 -2.14786e+08 -1.62719e+08 -0 -2.05378e+07 -0 -0
+2 2.2 0 0 120.857 -0.482171 0 14.7745 -2.12113e+08 -0 -0 403352 -0 -0
+3 0.3 2.3 0 11.1201 88.8144 0 8.61773 -2.67245e+06 -1.62719e+08 -0 -2.09411e+07 -0 -0
diff --git a/examples/meam/msmeam/log.1Mar2024.msmeam.g++.1 b/examples/meam/msmeam/log.27Sep2024.msmeam.g++.1
similarity index 79%
rename from examples/meam/msmeam/log.1Mar2024.msmeam.g++.1
rename to examples/meam/msmeam/log.27Sep2024.msmeam.g++.1
index 70fbbdd89c..2fcb9f559d 100644
--- a/examples/meam/msmeam/log.1Mar2024.msmeam.g++.1
+++ b/examples/meam/msmeam/log.27Sep2024.msmeam.g++.1
@@ -1,4 +1,4 @@
-LAMMPS (7 Feb 2024 - Development - patch_7Feb2024_update1-182-g93942f2013-modified)
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-372-g51d104975a)
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
using 1 OpenMP thread(s) per MPI task
# Test of MEAM potential for HGa
@@ -67,7 +67,7 @@ Created 1 atoms
variable teng equal "c_eatoms"
compute pot_energy all pe/atom
compute stress all stress/atom NULL
-# dump 1 all custom 1 dump.msmeam id x y z fx fy fz c_pot_energy c_stress[1] c_stress[2] c_stress[3] c_stress[4] c_stress[5] c_stress[6]
+dump 1 all custom 1 dump.msmeam id x y z fx fy fz c_pot_energy c_stress[1] c_stress[2] c_stress[3] c_stress[4] c_stress[5] c_stress[6]
run 1
WARNING: No fixes with time integration, atoms won't move (src/verlet.cpp:60)
Neighbor list info ...
@@ -89,22 +89,22 @@ Neighbor list info ...
bin: none
Per MPI rank memory allocation (min/avg/max) = 8.587 | 8.587 | 8.587 Mbytes
Step Temp TotEng Press Pxx Pyy Pzz Pxy Pxz Pyz Lx Ly Lz Volume c_eatoms
- 0 0 15.433079 491354.7 838670.96 635393.15 0 80195.797 0 0 8 8 8 512 15.433079
- 1 0 15.433079 491354.7 838670.96 635393.15 0 80195.797 0 0 8 8 8 512 15.433079
-Loop time of 4.4446e-05 on 1 procs for 1 steps with 3 atoms
+ 0 0 15.438614 491542.52 839006.02 635621.55 0 80225.587 0 0 8 8 8 512 15.438614
+ 1 0 15.438614 491542.52 839006.02 635621.55 0 80225.587 0 0 8 8 8 512 15.438614
+Loop time of 0.000144827 on 1 procs for 1 steps with 3 atoms
-Performance: 1943.932 ns/day, 0.012 hours/ns, 22499.213 timesteps/s, 67.498 katom-step/s
-31.5% CPU use with 1 MPI tasks x 1 OpenMP threads
+Performance: 596.574 ns/day, 0.040 hours/ns, 6904.790 timesteps/s, 20.714 katom-step/s
+21.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.9908e-05 | 2.9908e-05 | 2.9908e-05 | 0.0 | 67.29
+Pair | 9.2136e-05 | 9.2136e-05 | 9.2136e-05 | 0.0 | 63.62
Neigh | 0 | 0 | 0 | 0.0 | 0.00
-Comm | 1.033e-06 | 1.033e-06 | 1.033e-06 | 0.0 | 2.32
-Output | 9.347e-06 | 9.347e-06 | 9.347e-06 | 0.0 | 21.03
-Modify | 2.02e-07 | 2.02e-07 | 2.02e-07 | 0.0 | 0.45
-Other | | 3.956e-06 | | | 8.90
+Comm | 4.389e-06 | 4.389e-06 | 4.389e-06 | 0.0 | 3.03
+Output | 3.9556e-05 | 3.9556e-05 | 3.9556e-05 | 0.0 | 27.31
+Modify | 9.92e-07 | 9.92e-07 | 9.92e-07 | 0.0 | 0.68
+Other | | 7.754e-06 | | | 5.35
Nlocal: 3 ave 3 max 3 min
Histogram: 1 0 0 0 0 0 0 0 0 0
diff --git a/examples/meam/msmeam/log.1Mar2024.msmeam.g++.4 b/examples/meam/msmeam/log.27Sep2024.msmeam.g++.4
similarity index 79%
rename from examples/meam/msmeam/log.1Mar2024.msmeam.g++.4
rename to examples/meam/msmeam/log.27Sep2024.msmeam.g++.4
index 6951a64945..120e3fa070 100644
--- a/examples/meam/msmeam/log.1Mar2024.msmeam.g++.4
+++ b/examples/meam/msmeam/log.27Sep2024.msmeam.g++.4
@@ -1,4 +1,4 @@
-LAMMPS (7 Feb 2024 - Development - patch_7Feb2024_update1-182-g93942f2013-modified)
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-372-g51d104975a)
OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
using 1 OpenMP thread(s) per MPI task
# Test of MEAM potential for HGa
@@ -67,7 +67,7 @@ Created 1 atoms
variable teng equal "c_eatoms"
compute pot_energy all pe/atom
compute stress all stress/atom NULL
-# dump 1 all custom 1 dump.msmeam id x y z fx fy fz c_pot_energy c_stress[1] c_stress[2] c_stress[3] c_stress[4] c_stress[5] c_stress[6]
+dump 1 all custom 1 dump.msmeam id x y z fx fy fz c_pot_energy c_stress[1] c_stress[2] c_stress[3] c_stress[4] c_stress[5] c_stress[6]
run 1
WARNING: No fixes with time integration, atoms won't move (src/verlet.cpp:60)
Neighbor list info ...
@@ -89,22 +89,22 @@ Neighbor list info ...
bin: none
Per MPI rank memory allocation (min/avg/max) = 7.965 | 8.123 | 8.594 Mbytes
Step Temp TotEng Press Pxx Pyy Pzz Pxy Pxz Pyz Lx Ly Lz Volume c_eatoms
- 0 0 15.433079 491354.7 838670.96 635393.15 0 80195.797 0 0 8 8 8 512 15.433079
- 1 0 15.433079 491354.7 838670.96 635393.15 0 80195.797 0 0 8 8 8 512 15.433079
-Loop time of 8.70645e-05 on 4 procs for 1 steps with 3 atoms
+ 0 0 15.438614 491542.52 839006.02 635621.55 0 80225.587 0 0 8 8 8 512 15.438614
+ 1 0 15.438614 491542.52 839006.02 635621.55 0 80225.587 0 0 8 8 8 512 15.438614
+Loop time of 0.000328503 on 4 procs for 1 steps with 3 atoms
-Performance: 992.368 ns/day, 0.024 hours/ns, 11485.738 timesteps/s, 34.457 katom-step/s
-29.0% CPU use with 4 MPI tasks x 1 OpenMP threads
+Performance: 263.011 ns/day, 0.091 hours/ns, 3044.110 timesteps/s, 9.132 katom-step/s
+75.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 | 4.3957e-05 | 4.67e-05 | 5.1056e-05 | 0.0 | 53.64
+Pair | 0.0001419 | 0.0001471 | 0.00015891 | 0.0 | 44.78
Neigh | 0 | 0 | 0 | 0.0 | 0.00
-Comm | 1.105e-05 | 1.3822e-05 | 1.7033e-05 | 0.0 | 15.88
-Output | 1.5765e-05 | 1.9045e-05 | 2.5216e-05 | 0.0 | 21.87
-Modify | 2.58e-07 | 3.465e-07 | 3.81e-07 | 0.0 | 0.40
-Other | | 7.151e-06 | | | 8.21
+Comm | 2.2092e-05 | 2.8424e-05 | 3.667e-05 | 0.0 | 8.65
+Output | 8.6275e-05 | 0.00010558 | 0.0001422 | 0.0 | 32.14
+Modify | 1.093e-06 | 2.4148e-06 | 5.651e-06 | 0.0 | 0.74
+Other | | 4.498e-05 | | | 13.69
Nlocal: 0.75 ave 3 max 0 min
Histogram: 3 0 0 0 0 0 0 0 0 1
diff --git a/examples/nemd/in.nemd b/examples/nemd/in.nemd
index af3e4bed82..fb66e3fd3d 100644
--- a/examples/nemd/in.nemd
+++ b/examples/nemd/in.nemd
@@ -1,37 +1,37 @@
# 2d NEMD simulation
-units lj
-atom_style atomic
-dimension 2
+units lj
+atom_style atomic
+dimension 2
-lattice sq2 0.8442
-region box prism 0 10 0 8 -0.5 0.5 0 0 0
-create_box 2 box
-create_atoms 1 box
-mass * 1.0
+lattice sq2 0.8442
+region box prism 0 10 0 8 -0.5 0.5 0 0 0
+create_box 2 box
+create_atoms 1 box
+mass * 1.0
-velocity all create 1.44 87287 loop geom
+velocity all create 1.44 87287 loop geom
-region slice block 4 6 INF INF INF INF
-set region slice type 2
+region slice block 4 6 INF INF INF INF
+set region slice type 2
-pair_style lj/cut 2.5
-pair_coeff * * 1.0 1.0 1.0
+pair_style lj/cut 4.0
+pair_coeff * * 1.0 1.0
-neighbor 0.3 bin
-neigh_modify delay 0 every 1
+neighbor 0.3 bin
+neigh_modify delay 0 every 1
-fix 1 all nvt/sllod temp 1.0 1.0 1.0 tchain 1
-fix 2 all deform 1 xy erate 0.01 remap v
+fix 1 all nvt/sllod temp 1.0 1.0 1.0 tchain 1
+fix 2 all deform 1 xy erate 0.01 remap v
-#dump 1 all custom 5000 dump.nemd id type x y z
+#dump 1 all custom 500 dump.nemd id type x y z
-#dump 2 all image 1000 image.*.jpg type type adiam 1.2
-#dump_modify 2 pad 5
+#dump 2 all image 100 image.*.jpg type type adiam 1.2
+#dump_modify 2 pad 5
-#dump 3 all movie 1000 movie.mpg type type adiam 1.2
-#dump_modify 3 pad 5
+#dump 3 all movie 100 movie.mpg type type adiam 1.2
+#dump_modify 3 pad 5
-thermo 1000
+thermo 50
-run 50000
+run 1000
diff --git a/examples/nemd/log.27Nov18.nemd.g++.1 b/examples/nemd/log.27Nov18.nemd.g++.1
deleted file mode 100644
index c0989db969..0000000000
--- a/examples/nemd/log.27Nov18.nemd.g++.1
+++ /dev/null
@@ -1,137 +0,0 @@
-LAMMPS (27 Nov 2018)
- using 1 OpenMP thread(s) per MPI task
-# 2d NEMD simulation
-
-units lj
-atom_style atomic
-dimension 2
-
-lattice sq2 0.8442
-Lattice spacing in x,y,z = 1.53919 1.53919 1.53919
-region box prism 0 10 0 8 -0.5 0.5 0 0 0
-create_box 2 box
-Created triclinic box = (0 0 -0.769595) to (15.3919 12.3135 0.769595) with tilt (0 0 0)
- 1 by 1 by 1 MPI processor grid
-create_atoms 1 box
-Created 160 atoms
- Time spent = 0.000332355 secs
-mass * 1.0
-
-velocity all create 1.44 87287 loop geom
-
-region slice block 4 6 INF INF INF INF
-set region slice type 2
- 40 settings made for type
-
-pair_style lj/cut 2.5
-pair_coeff * * 1.0 1.0 1.0
-
-neighbor 0.3 bin
-neigh_modify delay 0 every 1
-
-fix 1 all nvt/sllod temp 1.0 1.0 1.0 tchain 1
-fix 2 all deform 1 xy erate 0.01 remap v
-
-#dump 1 all custom 5000 dump.nemd id type x y z
-
-#dump 2 all image 1000 image.*.jpg type type adiam 1.2
-#dump_modify 2 pad 5
-
-#dump 3 all movie 1000 movie.mpg type type adiam 1.2
-#dump_modify 3 pad 5
-
-thermo 1000
-
-run 50000
-Neighbor list info ...
- update every 1 steps, delay 0 steps, check yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 1.3
- ghost atom cutoff = 1.3
- binsize = 0.65, bins = 24 19 3
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair lj/cut, perpetual
- attributes: half, newton on
- pair build: half/bin/newton/tri
- stencil: half/bin/2d/newton/tri
- bin: standard
-Per MPI rank memory allocation (min/avg/max) = 3.065 | 3.065 | 3.065 Mbytes
-Step Temp E_pair E_mol TotEng Press Volume
- 0 1.44 0 0 1.431 1.2080502 189.52855
- 1000 1.1326992 0.25863754 0 1.3842573 6.0588079 189.52855
- 2000 0.99104643 0.37634349 0 1.3611959 7.8993387 189.52855
- 3000 1.0749743 0.21908728 0 1.2873429 6.2659517 189.52855
- 4000 1.0986742 0.27147022 0 1.3632777 5.8778262 189.52855
- 5000 1.071838 0.23413372 0 1.2992728 5.9120887 189.52855
- 6000 1.0013194 0.26923671 0 1.2642979 6.2802759 189.52855
- 7000 0.94110685 0.3224557 0 1.2576806 6.1864166 189.52855
- 8000 0.97391513 0.28793383 0 1.255762 6.5071893 189.52855
- 9000 0.95346063 0.31050593 0 1.2580074 6.3321512 189.52855
- 10000 0.96236447 0.26298203 0 1.2193317 6.4083918 189.52855
- 11000 0.9511149 0.27571527 0 1.2208857 6.0949768 189.52855
- 12000 1.0186935 0.18134918 0 1.1936758 5.1269128 189.52855
- 13000 0.96350682 0.23171507 0 1.1892 5.7367267 189.52855
- 14000 0.94740402 0.27357945 0 1.2150622 6.0156532 189.52855
- 15000 0.87951545 0.27745111 0 1.1514696 6.297405 189.52855
- 16000 0.93216196 0.27020559 0 1.1965415 6.6188833 189.52855
- 17000 0.94109936 0.24756193 0 1.1827794 5.8993088 189.52855
- 18000 0.97325239 0.27996398 0 1.2471335 6.1486561 189.52855
- 19000 1.0494686 0.27132686 0 1.3142363 6.6757065 189.52855
- 20000 1.0391862 0.25195457 0 1.2846459 6.143235 189.52855
- 21000 0.96407137 0.27359166 0 1.2316376 5.9577116 189.52855
- 22000 0.97954534 0.31920255 0 1.2926257 6.5320163 189.52855
- 23000 0.97585473 0.24154424 0 1.2112999 6.0839179 189.52855
- 24000 1.0522109 0.1646952 0 1.2103298 5.0388687 189.52855
- 25000 0.93707172 0.25655806 0 1.1877731 5.819887 189.52855
- 26000 0.89798775 0.26629627 0 1.1586716 6.0393558 189.52855
- 27000 0.93259926 0.24542428 0 1.1721948 5.3560986 189.52855
- 28000 0.8428223 0.20784302 0 1.0453977 4.956911 189.52855
- 29000 0.81653505 0.21924932 0 1.030681 5.271501 189.52855
- 30000 0.90157811 0.15070734 0 1.0466506 4.476142 189.52855
- 31000 0.86580039 0.21115151 0 1.0715407 5.0056915 189.52855
- 32000 0.89768096 0.28377249 0 1.1758429 5.8449711 189.52855
- 33000 1.0504011 0.29009694 0 1.333933 6.1319155 189.52855
- 34000 1.2009765 0.19137934 0 1.3848498 4.9643885 189.52855
- 35000 1.208705 0.27071222 0 1.4718628 6.2162389 189.52855
- 36000 1.2211309 0.28389521 0 1.497394 6.5090715 189.52855
- 37000 1.1384381 0.42795547 0 1.5592783 8.5129272 189.52855
- 38000 1.2198334 0.34335732 0 1.5555668 7.2940883 189.52855
- 39000 1.1562045 0.35783089 0 1.5068091 7.340999 189.52855
- 40000 1.2145924 0.28410558 0 1.4911068 6.234986 189.52855
- 41000 1.1240878 0.34663237 0 1.4636946 7.1720193 189.52855
- 42000 1.2491422 0.26815889 0 1.509494 6.1390803 189.52855
- 43000 1.1387564 0.33755832 0 1.4691975 7.0577597 189.52855
- 44000 1.0031598 0.4081807 0 1.4050708 8.2732113 189.52855
- 45000 1.0166213 0.29131017 0 1.3015776 6.1907807 189.52855
- 46000 0.96251302 0.31483519 0 1.2713325 6.6987235 189.52855
- 47000 0.89809294 0.30909884 0 1.2015787 6.3997583 189.52855
- 48000 0.86736217 0.31917648 0 1.1811176 7.1584774 189.52855
- 49000 0.91979053 0.21099403 0 1.1250359 5.4968259 189.52855
- 50000 0.87079959 0.24059333 0 1.1059504 5.6039305 189.52855
-Loop time of 1.54353 on 1 procs for 50000 steps with 160 atoms
-
-Performance: 13993916.675 tau/day, 32393.326 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 | 0.20172 | 0.20172 | 0.20172 | 0.0 | 13.07
-Neigh | 0.16634 | 0.16634 | 0.16634 | 0.0 | 10.78
-Comm | 0.068928 | 0.068928 | 0.068928 | 0.0 | 4.47
-Output | 0.00059891 | 0.00059891 | 0.00059891 | 0.0 | 0.04
-Modify | 1.0123 | 1.0123 | 1.0123 | 0.0 | 65.59
-Other | | 0.09361 | | | 6.06
-
-Nlocal: 160 ave 160 max 160 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Nghost: 73 ave 73 max 73 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Neighs: 353 ave 353 max 353 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 353
-Ave neighs/atom = 2.20625
-Neighbor list builds = 5273
-Dangerous builds = 0
-Total wall time: 0:00:01
diff --git a/examples/nemd/log.27Nov18.nemd.g++.4 b/examples/nemd/log.27Nov18.nemd.g++.4
deleted file mode 100644
index 68543882b7..0000000000
--- a/examples/nemd/log.27Nov18.nemd.g++.4
+++ /dev/null
@@ -1,137 +0,0 @@
-LAMMPS (27 Nov 2018)
- using 1 OpenMP thread(s) per MPI task
-# 2d NEMD simulation
-
-units lj
-atom_style atomic
-dimension 2
-
-lattice sq2 0.8442
-Lattice spacing in x,y,z = 1.53919 1.53919 1.53919
-region box prism 0 10 0 8 -0.5 0.5 0 0 0
-create_box 2 box
-Created triclinic box = (0 0 -0.769595) to (15.3919 12.3135 0.769595) with tilt (0 0 0)
- 2 by 2 by 1 MPI processor grid
-create_atoms 1 box
-Created 160 atoms
- Time spent = 0.000308275 secs
-mass * 1.0
-
-velocity all create 1.44 87287 loop geom
-
-region slice block 4 6 INF INF INF INF
-set region slice type 2
- 40 settings made for type
-
-pair_style lj/cut 2.5
-pair_coeff * * 1.0 1.0 1.0
-
-neighbor 0.3 bin
-neigh_modify delay 0 every 1
-
-fix 1 all nvt/sllod temp 1.0 1.0 1.0 tchain 1
-fix 2 all deform 1 xy erate 0.01 remap v
-
-#dump 1 all custom 5000 dump.nemd id type x y z
-
-#dump 2 all image 1000 image.*.jpg type type adiam 1.2
-#dump_modify 2 pad 5
-
-#dump 3 all movie 1000 movie.mpg type type adiam 1.2
-#dump_modify 3 pad 5
-
-thermo 1000
-
-run 50000
-Neighbor list info ...
- update every 1 steps, delay 0 steps, check yes
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 1.3
- ghost atom cutoff = 1.3
- binsize = 0.65, bins = 24 19 3
- 1 neighbor lists, perpetual/occasional/extra = 1 0 0
- (1) pair lj/cut, perpetual
- attributes: half, newton on
- pair build: half/bin/newton/tri
- stencil: half/bin/2d/newton/tri
- bin: standard
-Per MPI rank memory allocation (min/avg/max) = 3.062 | 3.062 | 3.062 Mbytes
-Step Temp E_pair E_mol TotEng Press Volume
- 0 1.44 0 0 1.431 1.2080502 189.52855
- 1000 1.1682693 0.24486562 0 1.4058332 5.8092954 189.52855
- 2000 1.0928734 0.27609364 0 1.3621366 6.2237017 189.52855
- 3000 1.09088 0.24816112 0 1.3322231 5.7001547 189.52855
- 4000 1.0110684 0.29868377 0 1.303433 7.3312319 189.52855
- 5000 0.91033678 0.28330698 0 1.1879542 6.1840352 189.52855
- 6000 0.93416074 0.22661127 0 1.1549335 5.3619735 189.52855
- 7000 0.93305734 0.19203739 0 1.1192631 5.2497547 189.52855
- 8000 0.88944438 0.19421381 0 1.0780992 4.9733446 189.52855
- 9000 0.86949257 0.21207681 0 1.0761351 5.4687076 189.52855
- 10000 0.80088203 0.24071142 0 1.0365879 5.334545 189.52855
- 11000 0.88899727 0.19972767 0 1.0831687 4.8832207 189.52855
- 12000 0.93045817 0.17883252 0 1.1034753 4.9081709 189.52855
- 13000 0.9724196 0.19089684 0 1.1572388 5.3460903 189.52855
- 14000 0.93902186 0.25513773 0 1.1882907 6.3338337 189.52855
- 15000 0.91879903 0.31605547 0 1.229112 6.2085671 189.52855
- 16000 0.9860058 0.26863362 0 1.2484769 6.514688 189.52855
- 17000 1.0354756 0.23445357 0 1.2634574 6.1519296 189.52855
- 18000 1.0244774 0.27511827 0 1.2931927 6.2230002 189.52855
- 19000 1.1581216 0.21558936 0 1.3664727 5.5458237 189.52855
- 20000 1.0552168 0.29344488 0 1.3420666 6.4880315 189.52855
- 21000 0.97925435 0.31583414 0 1.2889681 6.7584093 189.52855
- 22000 1.0112494 0.26246834 0 1.2673974 5.4112008 189.52855
- 23000 1.0463332 0.26049752 0 1.3002911 6.1359606 189.52855
- 24000 1.1130319 0.19848564 0 1.3045611 5.7088487 189.52855
- 25000 1.0355662 0.28048951 0 1.3095834 6.4596476 189.52855
- 26000 1.0823932 0.21784218 0 1.2934704 5.106334 189.52855
- 27000 0.99719525 0.32679678 0 1.3177596 6.7399277 189.52855
- 28000 1.0665868 0.25002709 0 1.3099477 6.2732557 189.52855
- 29000 1.0312798 0.30650087 0 1.3313351 7.0581024 189.52855
- 30000 1.0388277 0.29812912 0 1.3304641 6.2533028 189.52855
- 31000 1.0461658 0.21344416 0 1.2530714 5.3631154 189.52855
- 32000 1.0233681 0.27545017 0 1.2924222 5.9612896 189.52855
- 33000 1.1353086 0.20278244 0 1.3309953 5.7619128 189.52855
- 34000 1.0374791 0.29661216 0 1.327607 6.5124409 189.52855
- 35000 1.0752783 0.21684443 0 1.2854022 5.4759171 189.52855
- 36000 1.0383445 0.27068641 0 1.3025412 6.8367218 189.52855
- 37000 0.97341144 0.24034988 0 1.2076775 6.1335996 189.52855
- 38000 0.9285918 0.2737544 0 1.1965425 5.8750327 189.52855
- 39000 0.84869423 0.30079207 0 1.144182 6.8909326 189.52855
- 40000 0.88237131 0.26049171 0 1.1373482 6.3932981 189.52855
- 41000 0.90368591 0.21064132 0 1.1086792 5.5627232 189.52855
- 42000 0.93436749 0.20367569 0 1.1322034 5.1420052 189.52855
- 43000 0.91378588 0.26155533 0 1.16963 6.366756 189.52855
- 44000 0.91673608 0.25967314 0 1.1706796 6.0846334 189.52855
- 45000 1.0233334 0.25463562 0 1.2715732 6.0924255 189.52855
- 46000 0.96184729 0.35422095 0 1.3100567 7.0249175 189.52855
- 47000 1.134079 0.26196034 0 1.3889514 6.3476756 189.52855
- 48000 1.0552136 0.303812 0 1.3524305 6.6968927 189.52855
- 49000 1.1282184 0.2100955 0 1.3312626 5.8658659 189.52855
- 50000 1.0493816 0.31540438 0 1.3582274 6.6348173 189.52855
-Loop time of 1.09903 on 4 procs for 50000 steps with 160 atoms
-
-Performance: 19653623.953 tau/day, 45494.500 timesteps/s
-94.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.057854 | 0.05974 | 0.062726 | 0.7 | 5.44
-Neigh | 0.047791 | 0.049863 | 0.054819 | 1.3 | 4.54
-Comm | 0.3581 | 0.38553 | 0.39784 | 2.6 | 35.08
-Output | 0.001116 | 0.0014414 | 0.0023859 | 1.4 | 0.13
-Modify | 0.41102 | 0.42642 | 0.4493 | 2.3 | 38.80
-Other | | 0.176 | | | 16.02
-
-Nlocal: 40 ave 42 max 39 min
-Histogram: 2 0 0 1 0 0 0 0 0 1
-Nghost: 36.5 ave 37 max 36 min
-Histogram: 2 0 0 0 0 0 0 0 0 2
-Neighs: 87.5 ave 94 max 81 min
-Histogram: 1 1 0 0 0 0 0 0 1 1
-
-Total # of neighbors = 350
-Ave neighs/atom = 2.1875
-Neighbor list builds = 5276
-Dangerous builds = 0
-Total wall time: 0:00:01
diff --git a/examples/nemd/log.30Sep24.nemd.g++.1 b/examples/nemd/log.30Sep24.nemd.g++.1
new file mode 100644
index 0000000000..161b165a09
--- /dev/null
+++ b/examples/nemd/log.30Sep24.nemd.g++.1
@@ -0,0 +1,111 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-394-g75f86a68a7-modified)
+OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
+ using 1 OpenMP thread(s) per MPI task
+# 2d NEMD simulation
+
+units lj
+atom_style atomic
+dimension 2
+
+lattice sq2 0.8442
+Lattice spacing in x,y,z = 1.5391903 1.5391903 1.5391903
+region box prism 0 10 0 8 -0.5 0.5 0 0 0
+create_box 2 box
+Created triclinic box = (0 0 -0.76959516) to (15.391903 12.313523 0.76959516) with tilt (0 0 0)
+ 1 by 1 by 1 MPI processor grid
+create_atoms 1 box
+Created 160 atoms
+ using lattice units in triclinic box = (0 0 -0.76959516) to (15.391903 12.313523 0.76959516) with tilt (0 0 0)
+ create_atoms CPU = 0.000 seconds
+mass * 1.0
+
+velocity all create 1.44 87287 loop geom
+
+region slice block 4 6 INF INF INF INF
+set region slice type 2
+Setting atom values ...
+ 40 settings made for type
+
+pair_style lj/cut 4.0
+pair_coeff * * 1.0 1.0
+
+neighbor 0.3 bin
+neigh_modify delay 0 every 1
+
+fix 1 all nvt/sllod temp 1.0 1.0 1.0 tchain 1
+fix 2 all deform 1 xy erate 0.01 remap v
+
+#dump 1 all custom 500 dump.nemd id type x y z
+
+#dump 2 all image 100 image.*.jpg type type adiam 1.2
+#dump_modify 2 pad 5
+
+#dump 3 all movie 100 movie.mpg type type adiam 1.2
+#dump_modify 3 pad 5
+
+thermo 50
+
+run 1000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 4.3
+ ghost atom cutoff = 4.3
+ binsize = 2.15, bins = 8 6 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair lj/cut, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton/tri
+ stencil: half/bin/2d/tri
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 3.065 | 3.065 | 3.065 Mbytes
+ Step Temp E_pair E_mol TotEng Press Volume
+ 0 1.44 -2.6548731 0 -1.2238731 1.9354912 189.52855
+ 50 0.97904822 -2.1934929 0 -1.2205637 5.0001562 189.52855
+ 100 0.96423603 -2.1711413 0 -1.2129318 5.3040025 189.52855
+ 150 0.96430794 -2.153062 0 -1.194781 5.3988945 189.52855
+ 200 1.056585 -2.2379316 0 -1.1879503 5.0007883 189.52855
+ 250 1.0183256 -2.1921531 0 -1.1801921 5.5370076 189.52855
+ 300 0.96855552 -2.140465 0 -1.177963 5.7188412 189.52855
+ 350 1.0115567 -2.1883272 0 -1.1830927 5.4437104 189.52855
+ 400 0.93743103 -2.1230826 0 -1.1915105 5.7059909 189.52855
+ 450 1.1120368 -2.3041274 0 -1.1990408 4.646396 189.52855
+ 500 0.99611106 -2.2039016 0 -1.2140162 5.1526658 189.52855
+ 550 1.1075519 -2.3349751 0 -1.2343453 4.0671355 189.52855
+ 600 1.0550783 -2.3126484 0 -1.2641644 4.5423735 189.52855
+ 650 0.98516169 -2.2664919 0 -1.2874875 4.8365475 189.52855
+ 700 0.97899201 -2.2815136 0 -1.3086403 4.5415389 189.52855
+ 750 1.0107776 -2.3375258 0 -1.3330656 4.3655082 189.52855
+ 800 0.97711804 -2.3221241 0 -1.3511131 4.2153988 189.52855
+ 850 0.8984454 -2.258341 0 -1.3655108 4.6759265 189.52855
+ 900 0.85409237 -2.2157566 0 -1.3670024 5.0180073 189.52855
+ 950 0.90195434 -2.2500988 0 -1.3537817 4.8189466 189.52855
+ 1000 1.0047283 -2.3359434 0 -1.3374947 4.0788763 189.52855
+Loop time of 0.0331477 on 1 procs for 1000 steps with 160 atoms
+
+Performance: 13032596.122 tau/day, 30168.047 timesteps/s, 4.827 Matom-step/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.017584 | 0.017584 | 0.017584 | 0.0 | 53.05
+Neigh | 0.0080996 | 0.0080996 | 0.0080996 | 0.0 | 24.43
+Comm | 0.0010864 | 0.0010864 | 0.0010864 | 0.0 | 3.28
+Output | 9.9819e-05 | 9.9819e-05 | 9.9819e-05 | 0.0 | 0.30
+Modify | 0.0057062 | 0.0057062 | 0.0057062 | 0.0 | 17.21
+Other | | 0.0005715 | | | 1.72
+
+Nlocal: 160 ave 160 max 160 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 271 ave 271 max 271 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 3881 ave 3881 max 3881 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 3881
+Ave neighs/atom = 24.25625
+Neighbor list builds = 106
+Dangerous builds = 0
+Total wall time: 0:00:00
diff --git a/examples/nemd/log.30Sep24.nemd.g++.4 b/examples/nemd/log.30Sep24.nemd.g++.4
new file mode 100644
index 0000000000..e101d68406
--- /dev/null
+++ b/examples/nemd/log.30Sep24.nemd.g++.4
@@ -0,0 +1,111 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-394-g75f86a68a7-modified)
+OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
+ using 1 OpenMP thread(s) per MPI task
+# 2d NEMD simulation
+
+units lj
+atom_style atomic
+dimension 2
+
+lattice sq2 0.8442
+Lattice spacing in x,y,z = 1.5391903 1.5391903 1.5391903
+region box prism 0 10 0 8 -0.5 0.5 0 0 0
+create_box 2 box
+Created triclinic box = (0 0 -0.76959516) to (15.391903 12.313523 0.76959516) with tilt (0 0 0)
+ 2 by 2 by 1 MPI processor grid
+create_atoms 1 box
+Created 160 atoms
+ using lattice units in triclinic box = (0 0 -0.76959516) to (15.391903 12.313523 0.76959516) with tilt (0 0 0)
+ create_atoms CPU = 0.001 seconds
+mass * 1.0
+
+velocity all create 1.44 87287 loop geom
+
+region slice block 4 6 INF INF INF INF
+set region slice type 2
+Setting atom values ...
+ 40 settings made for type
+
+pair_style lj/cut 4.0
+pair_coeff * * 1.0 1.0
+
+neighbor 0.3 bin
+neigh_modify delay 0 every 1
+
+fix 1 all nvt/sllod temp 1.0 1.0 1.0 tchain 1
+fix 2 all deform 1 xy erate 0.01 remap v
+
+#dump 1 all custom 500 dump.nemd id type x y z
+
+#dump 2 all image 100 image.*.jpg type type adiam 1.2
+#dump_modify 2 pad 5
+
+#dump 3 all movie 100 movie.mpg type type adiam 1.2
+#dump_modify 3 pad 5
+
+thermo 50
+
+run 1000
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 4.3
+ ghost atom cutoff = 4.3
+ binsize = 2.15, bins = 8 6 1
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair lj/cut, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton/tri
+ stencil: half/bin/2d/tri
+ bin: standard
+Per MPI rank memory allocation (min/avg/max) = 3.064 | 3.064 | 3.064 Mbytes
+ Step Temp E_pair E_mol TotEng Press Volume
+ 0 1.44 -2.6548731 0 -1.2238731 1.9354912 189.52855
+ 50 0.97904822 -2.1934929 0 -1.2205637 5.0001562 189.52855
+ 100 0.96423603 -2.1711413 0 -1.2129318 5.3040025 189.52855
+ 150 0.96430794 -2.153062 0 -1.194781 5.3988945 189.52855
+ 200 1.056585 -2.2379316 0 -1.1879503 5.0007883 189.52855
+ 250 1.0183256 -2.1921531 0 -1.1801921 5.5370076 189.52855
+ 300 0.96855552 -2.140465 0 -1.177963 5.7188412 189.52855
+ 350 1.0115567 -2.1883272 0 -1.1830927 5.4437104 189.52855
+ 400 0.93743103 -2.1230826 0 -1.1915105 5.7059909 189.52855
+ 450 1.1120368 -2.3041274 0 -1.1990408 4.646396 189.52855
+ 500 0.99611106 -2.2039016 0 -1.2140162 5.1526658 189.52855
+ 550 1.1075519 -2.3349751 0 -1.2343453 4.0671355 189.52855
+ 600 1.0550783 -2.3126484 0 -1.2641644 4.5423735 189.52855
+ 650 0.98516169 -2.2664919 0 -1.2874875 4.8365475 189.52855
+ 700 0.97899201 -2.2815136 0 -1.3086403 4.5415389 189.52855
+ 750 1.0107776 -2.3375258 0 -1.3330656 4.3655082 189.52855
+ 800 0.97711804 -2.3221241 0 -1.3511131 4.2153988 189.52855
+ 850 0.8984454 -2.258341 0 -1.3655108 4.6759265 189.52855
+ 900 0.85409237 -2.2157566 0 -1.3670024 5.0180073 189.52855
+ 950 0.90195434 -2.2500988 0 -1.3537817 4.8189466 189.52855
+ 1000 1.0047283 -2.3359434 0 -1.3374947 4.0788763 189.52855
+Loop time of 0.0158907 on 4 procs for 1000 steps with 160 atoms
+
+Performance: 27185684.597 tau/day, 62929.825 timesteps/s, 10.069 Matom-step/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.0044606 | 0.004562 | 0.0047619 | 0.2 | 28.71
+Neigh | 0.0023154 | 0.0023979 | 0.002494 | 0.1 | 15.09
+Comm | 0.0051743 | 0.0054807 | 0.0056638 | 0.3 | 34.49
+Output | 7.5535e-05 | 8.9889e-05 | 0.00012988 | 0.0 | 0.57
+Modify | 0.002223 | 0.0023624 | 0.0026372 | 0.3 | 14.87
+Other | | 0.0009979 | | | 6.28
+
+Nlocal: 40 ave 42 max 38 min
+Histogram: 1 0 1 0 0 0 0 1 0 1
+Nghost: 163.5 ave 166 max 162 min
+Histogram: 2 0 0 0 0 1 0 0 0 1
+Neighs: 970.25 ave 1016 max 942 min
+Histogram: 1 1 0 0 1 0 0 0 0 1
+
+Total # of neighbors = 3881
+Ave neighs/atom = 24.25625
+Neighbor list builds = 106
+Dangerous builds = 0
+Total wall time: 0:00:00
diff --git a/examples/plugins/CMakeLists.txt b/examples/plugins/CMakeLists.txt
index 8771b29121..60cbd01d73 100644
--- a/examples/plugins/CMakeLists.txt
+++ b/examples/plugins/CMakeLists.txt
@@ -42,8 +42,28 @@ else()
endif()
endif()
-# C++11 is required
-set(CMAKE_CXX_STANDARD 11)
+# we *require* C++11 without extensions but prefer C++17.
+# Kokkos requires at least C++17 (currently)
+if(NOT CMAKE_CXX_STANDARD)
+ if(cxx_std_17 IN_LIST CMAKE_CXX_COMPILE_FEATURES)
+ set(CMAKE_CXX_STANDARD 17)
+ else()
+ set(CMAKE_CXX_STANDARD 11)
+ endif()
+endif()
+if(CMAKE_CXX_STANDARD LESS 11)
+ message(FATAL_ERROR "C++ standard must be set to at least 11")
+endif()
+if(CMAKE_CXX_STANDARD LESS 17)
+ message(WARNING "Selecting C++17 standard is preferred over C++${CMAKE_CXX_STANDARD}")
+endif()
+if(PKG_KOKKOS AND (CMAKE_CXX_STANDARD LESS 17))
+ set(CMAKE_CXX_STANDARD 17)
+endif()
+# turn off C++17 check in lmptype.h
+if(LAMMPS_CXX11)
+ add_compile_definitions(LAMMPS_CXX11)
+endif()
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Need -restrict with Intel compilers
diff --git a/examples/streitz/NiO.ctip b/examples/streitz/NiO.ctip
new file mode 120000
index 0000000000..b57a8cffe3
--- /dev/null
+++ b/examples/streitz/NiO.ctip
@@ -0,0 +1 @@
+../../potentials/NiO.ctip
\ No newline at end of file
diff --git a/examples/streitz/NiO.eam.fs b/examples/streitz/NiO.eam.fs
new file mode 120000
index 0000000000..b5909e02d4
--- /dev/null
+++ b/examples/streitz/NiO.eam.fs
@@ -0,0 +1 @@
+../../potentials/NiO.eam.fs
\ No newline at end of file
diff --git a/examples/streitz/data.ctip b/examples/streitz/data.ctip
new file mode 100644
index 0000000000..06a96e588d
--- /dev/null
+++ b/examples/streitz/data.ctip
@@ -0,0 +1,1745 @@
+LAMMPS data file
+
+1728 atoms
+
+2 atom types
+
+0.0 24.71947842 xlo xhi
+0.0 24.71947842 ylo yhi
+0.0 24.71947842 zlo zhi
+
+Masses
+
+1 58.69340000
+2 15.99940000
+
+Atoms # charge
+
+1 1 1.04034270 0.00000000 0.00000000 0.00000000
+2 1 1.04034270 2.05995654 2.05995654 0.00000000
+3 1 1.04034270 2.05995654 0.00000000 2.05995654
+4 1 1.04034270 0.00000000 2.05995654 2.05995654
+5 1 1.04034270 0.00000000 0.00000000 4.11991307
+6 1 1.04034270 2.05995654 2.05995654 4.11991307
+7 1 1.04034270 2.05995654 0.00000000 6.17986961
+8 1 1.04034270 0.00000000 2.05995654 6.17986961
+9 1 1.04034270 0.00000000 0.00000000 8.23982614
+10 1 1.04034270 2.05995654 2.05995654 8.23982614
+11 1 1.04034270 2.05995654 0.00000000 10.29978268
+12 1 1.04034270 0.00000000 2.05995654 10.29978268
+13 1 1.04034270 0.00000000 0.00000000 12.35973921
+14 1 1.04034270 2.05995654 2.05995654 12.35973921
+15 1 1.04034270 2.05995654 0.00000000 14.41969575
+16 1 1.04034270 0.00000000 2.05995654 14.41969575
+17 1 1.04034270 0.00000000 0.00000000 16.47965228
+18 1 1.04034270 2.05995654 2.05995654 16.47965228
+19 1 1.04034270 2.05995654 0.00000000 18.53960882
+20 1 1.04034270 0.00000000 2.05995654 18.53960882
+21 1 1.04034270 0.00000000 0.00000000 20.59956535
+22 1 1.04034270 2.05995654 2.05995654 20.59956535
+23 1 1.04034270 2.05995654 0.00000000 22.65952189
+24 1 1.04034270 0.00000000 2.05995654 22.65952189
+25 1 1.04034270 0.00000000 4.11991307 0.00000000
+26 1 1.04034270 2.05995654 6.17986961 0.00000000
+27 1 1.04034270 2.05995654 4.11991307 2.05995654
+28 1 1.04034270 0.00000000 6.17986961 2.05995654
+29 1 1.04034270 0.00000000 4.11991307 4.11991307
+30 1 1.04034270 2.05995654 6.17986961 4.11991307
+31 1 1.04034270 2.05995654 4.11991307 6.17986961
+32 1 1.04034270 0.00000000 6.17986961 6.17986961
+33 1 1.04034270 0.00000000 4.11991307 8.23982614
+34 1 1.04034270 2.05995654 6.17986961 8.23982614
+35 1 1.04034270 2.05995654 4.11991307 10.29978268
+36 1 1.04034270 0.00000000 6.17986961 10.29978268
+37 1 1.04034270 0.00000000 4.11991307 12.35973921
+38 1 1.04034270 2.05995654 6.17986961 12.35973921
+39 1 1.04034270 2.05995654 4.11991307 14.41969575
+40 1 1.04034270 0.00000000 6.17986961 14.41969575
+41 1 1.04034270 0.00000000 4.11991307 16.47965228
+42 1 1.04034270 2.05995654 6.17986961 16.47965228
+43 1 1.04034270 2.05995654 4.11991307 18.53960882
+44 1 1.04034270 0.00000000 6.17986961 18.53960882
+45 1 1.04034270 0.00000000 4.11991307 20.59956535
+46 1 1.04034270 2.05995654 6.17986961 20.59956535
+47 1 1.04034270 2.05995654 4.11991307 22.65952189
+48 1 1.04034270 0.00000000 6.17986961 22.65952189
+49 1 1.04034270 0.00000000 8.23982614 0.00000000
+50 1 1.04034270 2.05995654 10.29978268 0.00000000
+51 1 1.04034270 2.05995654 8.23982614 2.05995654
+52 1 1.04034270 0.00000000 10.29978268 2.05995654
+53 1 1.04034270 0.00000000 8.23982614 4.11991307
+54 1 1.04034270 2.05995654 10.29978268 4.11991307
+55 1 1.04034270 2.05995654 8.23982614 6.17986961
+56 1 1.04034270 0.00000000 10.29978268 6.17986961
+57 1 1.04034270 0.00000000 8.23982614 8.23982614
+58 1 1.04034270 2.05995654 10.29978268 8.23982614
+59 1 1.04034270 2.05995654 8.23982614 10.29978268
+60 1 1.04034270 0.00000000 10.29978268 10.29978268
+61 1 1.04034270 0.00000000 8.23982614 12.35973921
+62 1 1.04034270 2.05995654 10.29978268 12.35973921
+63 1 1.04034270 2.05995654 8.23982614 14.41969575
+64 1 1.04034270 0.00000000 10.29978268 14.41969575
+65 1 1.04034270 0.00000000 8.23982614 16.47965228
+66 1 1.04034270 2.05995654 10.29978268 16.47965228
+67 1 1.04034270 2.05995654 8.23982614 18.53960882
+68 1 1.04034270 0.00000000 10.29978268 18.53960882
+69 1 1.04034270 0.00000000 8.23982614 20.59956535
+70 1 1.04034270 2.05995654 10.29978268 20.59956535
+71 1 1.04034270 2.05995654 8.23982614 22.65952189
+72 1 1.04034270 0.00000000 10.29978268 22.65952189
+73 1 1.04034270 0.00000000 12.35973921 0.00000000
+74 1 1.04034270 2.05995654 14.41969575 0.00000000
+75 1 1.04034270 2.05995654 12.35973921 2.05995654
+76 1 1.04034270 0.00000000 14.41969575 2.05995654
+77 1 1.04034270 0.00000000 12.35973921 4.11991307
+78 1 1.04034270 2.05995654 14.41969575 4.11991307
+79 1 1.04034270 2.05995654 12.35973921 6.17986961
+80 1 1.04034270 0.00000000 14.41969575 6.17986961
+81 1 1.04034270 0.00000000 12.35973921 8.23982614
+82 1 1.04034270 2.05995654 14.41969575 8.23982614
+83 1 1.04034270 2.05995654 12.35973921 10.29978268
+84 1 1.04034270 0.00000000 14.41969575 10.29978268
+85 1 1.04034270 0.00000000 12.35973921 12.35973921
+86 1 1.04034270 2.05995654 14.41969575 12.35973921
+87 1 1.04034270 2.05995654 12.35973921 14.41969575
+88 1 1.04034270 0.00000000 14.41969575 14.41969575
+89 1 1.04034270 0.00000000 12.35973921 16.47965228
+90 1 1.04034270 2.05995654 14.41969575 16.47965228
+91 1 1.04034270 2.05995654 12.35973921 18.53960882
+92 1 1.04034270 0.00000000 14.41969575 18.53960882
+93 1 1.04034270 0.00000000 12.35973921 20.59956535
+94 1 1.04034270 2.05995654 14.41969575 20.59956535
+95 1 1.04034270 2.05995654 12.35973921 22.65952189
+96 1 1.04034270 0.00000000 14.41969575 22.65952189
+97 1 1.04034270 0.00000000 16.47965228 0.00000000
+98 1 1.04034270 2.05995654 18.53960882 0.00000000
+99 1 1.04034270 2.05995654 16.47965228 2.05995654
+100 1 1.04034270 0.00000000 18.53960882 2.05995654
+101 1 1.04034270 0.00000000 16.47965228 4.11991307
+102 1 1.04034270 2.05995654 18.53960882 4.11991307
+103 1 1.04034270 2.05995654 16.47965228 6.17986961
+104 1 1.04034270 0.00000000 18.53960882 6.17986961
+105 1 1.04034270 0.00000000 16.47965228 8.23982614
+106 1 1.04034270 2.05995654 18.53960882 8.23982614
+107 1 1.04034270 2.05995654 16.47965228 10.29978268
+108 1 1.04034270 0.00000000 18.53960882 10.29978268
+109 1 1.04034270 0.00000000 16.47965228 12.35973921
+110 1 1.04034270 2.05995654 18.53960882 12.35973921
+111 1 1.04034270 2.05995654 16.47965228 14.41969575
+112 1 1.04034270 0.00000000 18.53960882 14.41969575
+113 1 1.04034270 0.00000000 16.47965228 16.47965228
+114 1 1.04034270 2.05995654 18.53960882 16.47965228
+115 1 1.04034270 2.05995654 16.47965228 18.53960882
+116 1 1.04034270 0.00000000 18.53960882 18.53960882
+117 1 1.04034270 0.00000000 16.47965228 20.59956535
+118 1 1.04034270 2.05995654 18.53960882 20.59956535
+119 1 1.04034270 2.05995654 16.47965228 22.65952189
+120 1 1.04034270 0.00000000 18.53960882 22.65952189
+121 1 1.04034270 0.00000000 20.59956535 0.00000000
+122 1 1.04034270 2.05995654 22.65952189 0.00000000
+123 1 1.04034270 2.05995654 20.59956535 2.05995654
+124 1 1.04034270 0.00000000 22.65952189 2.05995654
+125 1 1.04034270 0.00000000 20.59956535 4.11991307
+126 1 1.04034270 2.05995654 22.65952189 4.11991307
+127 1 1.04034270 2.05995654 20.59956535 6.17986961
+128 1 1.04034270 0.00000000 22.65952189 6.17986961
+129 1 1.04034270 0.00000000 20.59956535 8.23982614
+130 1 1.04034270 2.05995654 22.65952189 8.23982614
+131 1 1.04034270 2.05995654 20.59956535 10.29978268
+132 1 1.04034270 0.00000000 22.65952189 10.29978268
+133 1 1.04034270 0.00000000 20.59956535 12.35973921
+134 1 1.04034270 2.05995654 22.65952189 12.35973921
+135 1 1.04034270 2.05995654 20.59956535 14.41969575
+136 1 1.04034270 0.00000000 22.65952189 14.41969575
+137 1 1.04034270 0.00000000 20.59956535 16.47965228
+138 1 1.04034270 2.05995654 22.65952189 16.47965228
+139 1 1.04034270 2.05995654 20.59956535 18.53960882
+140 1 1.04034270 0.00000000 22.65952189 18.53960882
+141 1 1.04034270 0.00000000 20.59956535 20.59956535
+142 1 1.04034270 2.05995654 22.65952189 20.59956535
+143 1 1.04034270 2.05995654 20.59956535 22.65952189
+144 1 1.04034270 0.00000000 22.65952189 22.65952189
+145 1 1.04034270 4.11991307 0.00000000 0.00000000
+146 1 1.04034270 6.17986961 2.05995654 0.00000000
+147 1 1.04034270 6.17986961 0.00000000 2.05995654
+148 1 1.04034270 4.11991307 2.05995654 2.05995654
+149 1 1.04034270 4.11991307 0.00000000 4.11991307
+150 1 1.04034270 6.17986961 2.05995654 4.11991307
+151 1 1.04034270 6.17986961 0.00000000 6.17986961
+152 1 1.04034270 4.11991307 2.05995654 6.17986961
+153 1 1.04034270 4.11991307 0.00000000 8.23982614
+154 1 1.04034270 6.17986961 2.05995654 8.23982614
+155 1 1.04034270 6.17986961 0.00000000 10.29978268
+156 1 1.04034270 4.11991307 2.05995654 10.29978268
+157 1 1.04034270 4.11991307 0.00000000 12.35973921
+158 1 1.04034270 6.17986961 2.05995654 12.35973921
+159 1 1.04034270 6.17986961 0.00000000 14.41969575
+160 1 1.04034270 4.11991307 2.05995654 14.41969575
+161 1 1.04034270 4.11991307 0.00000000 16.47965228
+162 1 1.04034270 6.17986961 2.05995654 16.47965228
+163 1 1.04034270 6.17986961 0.00000000 18.53960882
+164 1 1.04034270 4.11991307 2.05995654 18.53960882
+165 1 1.04034270 4.11991307 0.00000000 20.59956535
+166 1 1.04034270 6.17986961 2.05995654 20.59956535
+167 1 1.04034270 6.17986961 0.00000000 22.65952189
+168 1 1.04034270 4.11991307 2.05995654 22.65952189
+169 1 1.04034270 4.11991307 4.11991307 0.00000000
+170 1 1.04034270 6.17986961 6.17986961 0.00000000
+171 1 1.04034270 6.17986961 4.11991307 2.05995654
+172 1 1.04034270 4.11991307 6.17986961 2.05995654
+173 1 1.04034270 4.11991307 4.11991307 4.11991307
+174 1 1.04034270 6.17986961 6.17986961 4.11991307
+175 1 1.04034270 6.17986961 4.11991307 6.17986961
+176 1 1.04034270 4.11991307 6.17986961 6.17986961
+177 1 1.04034270 4.11991307 4.11991307 8.23982614
+178 1 1.04034270 6.17986961 6.17986961 8.23982614
+179 1 1.04034270 6.17986961 4.11991307 10.29978268
+180 1 1.04034270 4.11991307 6.17986961 10.29978268
+181 1 1.04034270 4.11991307 4.11991307 12.35973921
+182 1 1.04034270 6.17986961 6.17986961 12.35973921
+183 1 1.04034270 6.17986961 4.11991307 14.41969575
+184 1 1.04034270 4.11991307 6.17986961 14.41969575
+185 1 1.04034270 4.11991307 4.11991307 16.47965228
+186 1 1.04034270 6.17986961 6.17986961 16.47965228
+187 1 1.04034270 6.17986961 4.11991307 18.53960882
+188 1 1.04034270 4.11991307 6.17986961 18.53960882
+189 1 1.04034270 4.11991307 4.11991307 20.59956535
+190 1 1.04034270 6.17986961 6.17986961 20.59956535
+191 1 1.04034270 6.17986961 4.11991307 22.65952189
+192 1 1.04034270 4.11991307 6.17986961 22.65952189
+193 1 1.04034270 4.11991307 8.23982614 0.00000000
+194 1 1.04034270 6.17986961 10.29978268 0.00000000
+195 1 1.04034270 6.17986961 8.23982614 2.05995654
+196 1 1.04034270 4.11991307 10.29978268 2.05995654
+197 1 1.04034270 4.11991307 8.23982614 4.11991307
+198 1 1.04034270 6.17986961 10.29978268 4.11991307
+199 1 1.04034270 6.17986961 8.23982614 6.17986961
+200 1 1.04034270 4.11991307 10.29978268 6.17986961
+201 1 1.04034270 4.11991307 8.23982614 8.23982614
+202 1 1.04034270 6.17986961 10.29978268 8.23982614
+203 1 1.04034270 6.17986961 8.23982614 10.29978268
+204 1 1.04034270 4.11991307 10.29978268 10.29978268
+205 1 1.04034270 4.11991307 8.23982614 12.35973921
+206 1 1.04034270 6.17986961 10.29978268 12.35973921
+207 1 1.04034270 6.17986961 8.23982614 14.41969575
+208 1 1.04034270 4.11991307 10.29978268 14.41969575
+209 1 1.04034270 4.11991307 8.23982614 16.47965228
+210 1 1.04034270 6.17986961 10.29978268 16.47965228
+211 1 1.04034270 6.17986961 8.23982614 18.53960882
+212 1 1.04034270 4.11991307 10.29978268 18.53960882
+213 1 1.04034270 4.11991307 8.23982614 20.59956535
+214 1 1.04034270 6.17986961 10.29978268 20.59956535
+215 1 1.04034270 6.17986961 8.23982614 22.65952189
+216 1 1.04034270 4.11991307 10.29978268 22.65952189
+217 1 1.04034270 4.11991307 12.35973921 0.00000000
+218 1 1.04034270 6.17986961 14.41969575 0.00000000
+219 1 1.04034270 6.17986961 12.35973921 2.05995654
+220 1 1.04034270 4.11991307 14.41969575 2.05995654
+221 1 1.04034270 4.11991307 12.35973921 4.11991307
+222 1 1.04034270 6.17986961 14.41969575 4.11991307
+223 1 1.04034270 6.17986961 12.35973921 6.17986961
+224 1 1.04034270 4.11991307 14.41969575 6.17986961
+225 1 1.04034270 4.11991307 12.35973921 8.23982614
+226 1 1.04034270 6.17986961 14.41969575 8.23982614
+227 1 1.04034270 6.17986961 12.35973921 10.29978268
+228 1 1.04034270 4.11991307 14.41969575 10.29978268
+229 1 1.04034270 4.11991307 12.35973921 12.35973921
+230 1 1.04034270 6.17986961 14.41969575 12.35973921
+231 1 1.04034270 6.17986961 12.35973921 14.41969575
+232 1 1.04034270 4.11991307 14.41969575 14.41969575
+233 1 1.04034270 4.11991307 12.35973921 16.47965228
+234 1 1.04034270 6.17986961 14.41969575 16.47965228
+235 1 1.04034270 6.17986961 12.35973921 18.53960882
+236 1 1.04034270 4.11991307 14.41969575 18.53960882
+237 1 1.04034270 4.11991307 12.35973921 20.59956535
+238 1 1.04034270 6.17986961 14.41969575 20.59956535
+239 1 1.04034270 6.17986961 12.35973921 22.65952189
+240 1 1.04034270 4.11991307 14.41969575 22.65952189
+241 1 1.04034270 4.11991307 16.47965228 0.00000000
+242 1 1.04034270 6.17986961 18.53960882 0.00000000
+243 1 1.04034270 6.17986961 16.47965228 2.05995654
+244 1 1.04034270 4.11991307 18.53960882 2.05995654
+245 1 1.04034270 4.11991307 16.47965228 4.11991307
+246 1 1.04034270 6.17986961 18.53960882 4.11991307
+247 1 1.04034270 6.17986961 16.47965228 6.17986961
+248 1 1.04034270 4.11991307 18.53960882 6.17986961
+249 1 1.04034270 4.11991307 16.47965228 8.23982614
+250 1 1.04034270 6.17986961 18.53960882 8.23982614
+251 1 1.04034270 6.17986961 16.47965228 10.29978268
+252 1 1.04034270 4.11991307 18.53960882 10.29978268
+253 1 1.04034270 4.11991307 16.47965228 12.35973921
+254 1 1.04034270 6.17986961 18.53960882 12.35973921
+255 1 1.04034270 6.17986961 16.47965228 14.41969575
+256 1 1.04034270 4.11991307 18.53960882 14.41969575
+257 1 1.04034270 4.11991307 16.47965228 16.47965228
+258 1 1.04034270 6.17986961 18.53960882 16.47965228
+259 1 1.04034270 6.17986961 16.47965228 18.53960882
+260 1 1.04034270 4.11991307 18.53960882 18.53960882
+261 1 1.04034270 4.11991307 16.47965228 20.59956535
+262 1 1.04034270 6.17986961 18.53960882 20.59956535
+263 1 1.04034270 6.17986961 16.47965228 22.65952189
+264 1 1.04034270 4.11991307 18.53960882 22.65952189
+265 1 1.04034270 4.11991307 20.59956535 0.00000000
+266 1 1.04034270 6.17986961 22.65952189 0.00000000
+267 1 1.04034270 6.17986961 20.59956535 2.05995654
+268 1 1.04034270 4.11991307 22.65952189 2.05995654
+269 1 1.04034270 4.11991307 20.59956535 4.11991307
+270 1 1.04034270 6.17986961 22.65952189 4.11991307
+271 1 1.04034270 6.17986961 20.59956535 6.17986961
+272 1 1.04034270 4.11991307 22.65952189 6.17986961
+273 1 1.04034270 4.11991307 20.59956535 8.23982614
+274 1 1.04034270 6.17986961 22.65952189 8.23982614
+275 1 1.04034270 6.17986961 20.59956535 10.29978268
+276 1 1.04034270 4.11991307 22.65952189 10.29978268
+277 1 1.04034270 4.11991307 20.59956535 12.35973921
+278 1 1.04034270 6.17986961 22.65952189 12.35973921
+279 1 1.04034270 6.17986961 20.59956535 14.41969575
+280 1 1.04034270 4.11991307 22.65952189 14.41969575
+281 1 1.04034270 4.11991307 20.59956535 16.47965228
+282 1 1.04034270 6.17986961 22.65952189 16.47965228
+283 1 1.04034270 6.17986961 20.59956535 18.53960882
+284 1 1.04034270 4.11991307 22.65952189 18.53960882
+285 1 1.04034270 4.11991307 20.59956535 20.59956535
+286 1 1.04034270 6.17986961 22.65952189 20.59956535
+287 1 1.04034270 6.17986961 20.59956535 22.65952189
+288 1 1.04034270 4.11991307 22.65952189 22.65952189
+289 1 1.04034270 8.23982614 0.00000000 0.00000000
+290 1 1.04034270 10.29978268 2.05995654 0.00000000
+291 1 1.04034270 10.29978268 0.00000000 2.05995654
+292 1 1.04034270 8.23982614 2.05995654 2.05995654
+293 1 1.04034270 8.23982614 0.00000000 4.11991307
+294 1 1.04034270 10.29978268 2.05995654 4.11991307
+295 1 1.04034270 10.29978268 0.00000000 6.17986961
+296 1 1.04034270 8.23982614 2.05995654 6.17986961
+297 1 1.04034270 8.23982614 0.00000000 8.23982614
+298 1 1.04034270 10.29978268 2.05995654 8.23982614
+299 1 1.04034270 10.29978268 0.00000000 10.29978268
+300 1 1.04034270 8.23982614 2.05995654 10.29978268
+301 1 1.04034270 8.23982614 0.00000000 12.35973921
+302 1 1.04034270 10.29978268 2.05995654 12.35973921
+303 1 1.04034270 10.29978268 0.00000000 14.41969575
+304 1 1.04034270 8.23982614 2.05995654 14.41969575
+305 1 1.04034270 8.23982614 0.00000000 16.47965228
+306 1 1.04034270 10.29978268 2.05995654 16.47965228
+307 1 1.04034270 10.29978268 0.00000000 18.53960882
+308 1 1.04034270 8.23982614 2.05995654 18.53960882
+309 1 1.04034270 8.23982614 0.00000000 20.59956535
+310 1 1.04034270 10.29978268 2.05995654 20.59956535
+311 1 1.04034270 10.29978268 0.00000000 22.65952189
+312 1 1.04034270 8.23982614 2.05995654 22.65952189
+313 1 1.04034270 8.23982614 4.11991307 0.00000000
+314 1 1.04034270 10.29978268 6.17986961 0.00000000
+315 1 1.04034270 10.29978268 4.11991307 2.05995654
+316 1 1.04034270 8.23982614 6.17986961 2.05995654
+317 1 1.04034270 8.23982614 4.11991307 4.11991307
+318 1 1.04034270 10.29978268 6.17986961 4.11991307
+319 1 1.04034270 10.29978268 4.11991307 6.17986961
+320 1 1.04034270 8.23982614 6.17986961 6.17986961
+321 1 1.04034270 8.23982614 4.11991307 8.23982614
+322 1 1.04034270 10.29978268 6.17986961 8.23982614
+323 1 1.04034270 10.29978268 4.11991307 10.29978268
+324 1 1.04034270 8.23982614 6.17986961 10.29978268
+325 1 1.04034270 8.23982614 4.11991307 12.35973921
+326 1 1.04034270 10.29978268 6.17986961 12.35973921
+327 1 1.04034270 10.29978268 4.11991307 14.41969575
+328 1 1.04034270 8.23982614 6.17986961 14.41969575
+329 1 1.04034270 8.23982614 4.11991307 16.47965228
+330 1 1.04034270 10.29978268 6.17986961 16.47965228
+331 1 1.04034270 10.29978268 4.11991307 18.53960882
+332 1 1.04034270 8.23982614 6.17986961 18.53960882
+333 1 1.04034270 8.23982614 4.11991307 20.59956535
+334 1 1.04034270 10.29978268 6.17986961 20.59956535
+335 1 1.04034270 10.29978268 4.11991307 22.65952189
+336 1 1.04034270 8.23982614 6.17986961 22.65952189
+337 1 1.04034270 8.23982614 8.23982614 0.00000000
+338 1 1.04034270 10.29978268 10.29978268 0.00000000
+339 1 1.04034270 10.29978268 8.23982614 2.05995654
+340 1 1.04034270 8.23982614 10.29978268 2.05995654
+341 1 1.04034270 8.23982614 8.23982614 4.11991307
+342 1 1.04034270 10.29978268 10.29978268 4.11991307
+343 1 1.04034270 10.29978268 8.23982614 6.17986961
+344 1 1.04034270 8.23982614 10.29978268 6.17986961
+345 1 1.04034270 8.23982614 8.23982614 8.23982614
+346 1 1.04034270 10.29978268 10.29978268 8.23982614
+347 1 1.04034270 10.29978268 8.23982614 10.29978268
+348 1 1.04034270 8.23982614 10.29978268 10.29978268
+349 1 1.04034270 8.23982614 8.23982614 12.35973921
+350 1 1.04034270 10.29978268 10.29978268 12.35973921
+351 1 1.04034270 10.29978268 8.23982614 14.41969575
+352 1 1.04034270 8.23982614 10.29978268 14.41969575
+353 1 1.04034270 8.23982614 8.23982614 16.47965228
+354 1 1.04034270 10.29978268 10.29978268 16.47965228
+355 1 1.04034270 10.29978268 8.23982614 18.53960882
+356 1 1.04034270 8.23982614 10.29978268 18.53960882
+357 1 1.04034270 8.23982614 8.23982614 20.59956535
+358 1 1.04034270 10.29978268 10.29978268 20.59956535
+359 1 1.04034270 10.29978268 8.23982614 22.65952189
+360 1 1.04034270 8.23982614 10.29978268 22.65952189
+361 1 1.04034270 8.23982614 12.35973921 0.00000000
+362 1 1.04034270 10.29978268 14.41969575 0.00000000
+363 1 1.04034270 10.29978268 12.35973921 2.05995654
+364 1 1.04034270 8.23982614 14.41969575 2.05995654
+365 1 1.04034270 8.23982614 12.35973921 4.11991307
+366 1 1.04034270 10.29978268 14.41969575 4.11991307
+367 1 1.04034270 10.29978268 12.35973921 6.17986961
+368 1 1.04034270 8.23982614 14.41969575 6.17986961
+369 1 1.04034270 8.23982614 12.35973921 8.23982614
+370 1 1.04034270 10.29978268 14.41969575 8.23982614
+371 1 1.04034270 10.29978268 12.35973921 10.29978268
+372 1 1.04034270 8.23982614 14.41969575 10.29978268
+373 1 1.04034270 8.23982614 12.35973921 12.35973921
+374 1 1.04034270 10.29978268 14.41969575 12.35973921
+375 1 1.04034270 10.29978268 12.35973921 14.41969575
+376 1 1.04034270 8.23982614 14.41969575 14.41969575
+377 1 1.04034270 8.23982614 12.35973921 16.47965228
+378 1 1.04034270 10.29978268 14.41969575 16.47965228
+379 1 1.04034270 10.29978268 12.35973921 18.53960882
+380 1 1.04034270 8.23982614 14.41969575 18.53960882
+381 1 1.04034270 8.23982614 12.35973921 20.59956535
+382 1 1.04034270 10.29978268 14.41969575 20.59956535
+383 1 1.04034270 10.29978268 12.35973921 22.65952189
+384 1 1.04034270 8.23982614 14.41969575 22.65952189
+385 1 1.04034270 8.23982614 16.47965228 0.00000000
+386 1 1.04034270 10.29978268 18.53960882 0.00000000
+387 1 1.04034270 10.29978268 16.47965228 2.05995654
+388 1 1.04034270 8.23982614 18.53960882 2.05995654
+389 1 1.04034270 8.23982614 16.47965228 4.11991307
+390 1 1.04034270 10.29978268 18.53960882 4.11991307
+391 1 1.04034270 10.29978268 16.47965228 6.17986961
+392 1 1.04034270 8.23982614 18.53960882 6.17986961
+393 1 1.04034270 8.23982614 16.47965228 8.23982614
+394 1 1.04034270 10.29978268 18.53960882 8.23982614
+395 1 1.04034270 10.29978268 16.47965228 10.29978268
+396 1 1.04034270 8.23982614 18.53960882 10.29978268
+397 1 1.04034270 8.23982614 16.47965228 12.35973921
+398 1 1.04034270 10.29978268 18.53960882 12.35973921
+399 1 1.04034270 10.29978268 16.47965228 14.41969575
+400 1 1.04034270 8.23982614 18.53960882 14.41969575
+401 1 1.04034270 8.23982614 16.47965228 16.47965228
+402 1 1.04034270 10.29978268 18.53960882 16.47965228
+403 1 1.04034270 10.29978268 16.47965228 18.53960882
+404 1 1.04034270 8.23982614 18.53960882 18.53960882
+405 1 1.04034270 8.23982614 16.47965228 20.59956535
+406 1 1.04034270 10.29978268 18.53960882 20.59956535
+407 1 1.04034270 10.29978268 16.47965228 22.65952189
+408 1 1.04034270 8.23982614 18.53960882 22.65952189
+409 1 1.04034270 8.23982614 20.59956535 0.00000000
+410 1 1.04034270 10.29978268 22.65952189 0.00000000
+411 1 1.04034270 10.29978268 20.59956535 2.05995654
+412 1 1.04034270 8.23982614 22.65952189 2.05995654
+413 1 1.04034270 8.23982614 20.59956535 4.11991307
+414 1 1.04034270 10.29978268 22.65952189 4.11991307
+415 1 1.04034270 10.29978268 20.59956535 6.17986961
+416 1 1.04034270 8.23982614 22.65952189 6.17986961
+417 1 1.04034270 8.23982614 20.59956535 8.23982614
+418 1 1.04034270 10.29978268 22.65952189 8.23982614
+419 1 1.04034270 10.29978268 20.59956535 10.29978268
+420 1 1.04034270 8.23982614 22.65952189 10.29978268
+421 1 1.04034270 8.23982614 20.59956535 12.35973921
+422 1 1.04034270 10.29978268 22.65952189 12.35973921
+423 1 1.04034270 10.29978268 20.59956535 14.41969575
+424 1 1.04034270 8.23982614 22.65952189 14.41969575
+425 1 1.04034270 8.23982614 20.59956535 16.47965228
+426 1 1.04034270 10.29978268 22.65952189 16.47965228
+427 1 1.04034270 10.29978268 20.59956535 18.53960882
+428 1 1.04034270 8.23982614 22.65952189 18.53960882
+429 1 1.04034270 8.23982614 20.59956535 20.59956535
+430 1 1.04034270 10.29978268 22.65952189 20.59956535
+431 1 1.04034270 10.29978268 20.59956535 22.65952189
+432 1 1.04034270 8.23982614 22.65952189 22.65952189
+433 1 1.04034270 12.35973921 0.00000000 0.00000000
+434 1 1.04034270 14.41969575 2.05995654 0.00000000
+435 1 1.04034270 14.41969575 0.00000000 2.05995654
+436 1 1.04034270 12.35973921 2.05995654 2.05995654
+437 1 1.04034270 12.35973921 0.00000000 4.11991307
+438 1 1.04034270 14.41969575 2.05995654 4.11991307
+439 1 1.04034270 14.41969575 0.00000000 6.17986961
+440 1 1.04034270 12.35973921 2.05995654 6.17986961
+441 1 1.04034270 12.35973921 0.00000000 8.23982614
+442 1 1.04034270 14.41969575 2.05995654 8.23982614
+443 1 1.04034270 14.41969575 0.00000000 10.29978268
+444 1 1.04034270 12.35973921 2.05995654 10.29978268
+445 1 1.04034270 12.35973921 0.00000000 12.35973921
+446 1 1.04034270 14.41969575 2.05995654 12.35973921
+447 1 1.04034270 14.41969575 0.00000000 14.41969575
+448 1 1.04034270 12.35973921 2.05995654 14.41969575
+449 1 1.04034270 12.35973921 0.00000000 16.47965228
+450 1 1.04034270 14.41969575 2.05995654 16.47965228
+451 1 1.04034270 14.41969575 0.00000000 18.53960882
+452 1 1.04034270 12.35973921 2.05995654 18.53960882
+453 1 1.04034270 12.35973921 0.00000000 20.59956535
+454 1 1.04034270 14.41969575 2.05995654 20.59956535
+455 1 1.04034270 14.41969575 0.00000000 22.65952189
+456 1 1.04034270 12.35973921 2.05995654 22.65952189
+457 1 1.04034270 12.35973921 4.11991307 0.00000000
+458 1 1.04034270 14.41969575 6.17986961 0.00000000
+459 1 1.04034270 14.41969575 4.11991307 2.05995654
+460 1 1.04034270 12.35973921 6.17986961 2.05995654
+461 1 1.04034270 12.35973921 4.11991307 4.11991307
+462 1 1.04034270 14.41969575 6.17986961 4.11991307
+463 1 1.04034270 14.41969575 4.11991307 6.17986961
+464 1 1.04034270 12.35973921 6.17986961 6.17986961
+465 1 1.04034270 12.35973921 4.11991307 8.23982614
+466 1 1.04034270 14.41969575 6.17986961 8.23982614
+467 1 1.04034270 14.41969575 4.11991307 10.29978268
+468 1 1.04034270 12.35973921 6.17986961 10.29978268
+469 1 1.04034270 12.35973921 4.11991307 12.35973921
+470 1 1.04034270 14.41969575 6.17986961 12.35973921
+471 1 1.04034270 14.41969575 4.11991307 14.41969575
+472 1 1.04034270 12.35973921 6.17986961 14.41969575
+473 1 1.04034270 12.35973921 4.11991307 16.47965228
+474 1 1.04034270 14.41969575 6.17986961 16.47965228
+475 1 1.04034270 14.41969575 4.11991307 18.53960882
+476 1 1.04034270 12.35973921 6.17986961 18.53960882
+477 1 1.04034270 12.35973921 4.11991307 20.59956535
+478 1 1.04034270 14.41969575 6.17986961 20.59956535
+479 1 1.04034270 14.41969575 4.11991307 22.65952189
+480 1 1.04034270 12.35973921 6.17986961 22.65952189
+481 1 1.04034270 12.35973921 8.23982614 0.00000000
+482 1 1.04034270 14.41969575 10.29978268 0.00000000
+483 1 1.04034270 14.41969575 8.23982614 2.05995654
+484 1 1.04034270 12.35973921 10.29978268 2.05995654
+485 1 1.04034270 12.35973921 8.23982614 4.11991307
+486 1 1.04034270 14.41969575 10.29978268 4.11991307
+487 1 1.04034270 14.41969575 8.23982614 6.17986961
+488 1 1.04034270 12.35973921 10.29978268 6.17986961
+489 1 1.04034270 12.35973921 8.23982614 8.23982614
+490 1 1.04034270 14.41969575 10.29978268 8.23982614
+491 1 1.04034270 14.41969575 8.23982614 10.29978268
+492 1 1.04034270 12.35973921 10.29978268 10.29978268
+493 1 1.04034270 12.35973921 8.23982614 12.35973921
+494 1 1.04034270 14.41969575 10.29978268 12.35973921
+495 1 1.04034270 14.41969575 8.23982614 14.41969575
+496 1 1.04034270 12.35973921 10.29978268 14.41969575
+497 1 1.04034270 12.35973921 8.23982614 16.47965228
+498 1 1.04034270 14.41969575 10.29978268 16.47965228
+499 1 1.04034270 14.41969575 8.23982614 18.53960882
+500 1 1.04034270 12.35973921 10.29978268 18.53960882
+501 1 1.04034270 12.35973921 8.23982614 20.59956535
+502 1 1.04034270 14.41969575 10.29978268 20.59956535
+503 1 1.04034270 14.41969575 8.23982614 22.65952189
+504 1 1.04034270 12.35973921 10.29978268 22.65952189
+505 1 1.04034270 12.35973921 12.35973921 0.00000000
+506 1 1.04034270 14.41969575 14.41969575 0.00000000
+507 1 1.04034270 14.41969575 12.35973921 2.05995654
+508 1 1.04034270 12.35973921 14.41969575 2.05995654
+509 1 1.04034270 12.35973921 12.35973921 4.11991307
+510 1 1.04034270 14.41969575 14.41969575 4.11991307
+511 1 1.04034270 14.41969575 12.35973921 6.17986961
+512 1 1.04034270 12.35973921 14.41969575 6.17986961
+513 1 1.04034270 12.35973921 12.35973921 8.23982614
+514 1 1.04034270 14.41969575 14.41969575 8.23982614
+515 1 1.04034270 14.41969575 12.35973921 10.29978268
+516 1 1.04034270 12.35973921 14.41969575 10.29978268
+517 1 1.04034270 12.35973921 12.35973921 12.35973921
+518 1 1.04034270 14.41969575 14.41969575 12.35973921
+519 1 1.04034270 14.41969575 12.35973921 14.41969575
+520 1 1.04034270 12.35973921 14.41969575 14.41969575
+521 1 1.04034270 12.35973921 12.35973921 16.47965228
+522 1 1.04034270 14.41969575 14.41969575 16.47965228
+523 1 1.04034270 14.41969575 12.35973921 18.53960882
+524 1 1.04034270 12.35973921 14.41969575 18.53960882
+525 1 1.04034270 12.35973921 12.35973921 20.59956535
+526 1 1.04034270 14.41969575 14.41969575 20.59956535
+527 1 1.04034270 14.41969575 12.35973921 22.65952189
+528 1 1.04034270 12.35973921 14.41969575 22.65952189
+529 1 1.04034270 12.35973921 16.47965228 0.00000000
+530 1 1.04034270 14.41969575 18.53960882 0.00000000
+531 1 1.04034270 14.41969575 16.47965228 2.05995654
+532 1 1.04034270 12.35973921 18.53960882 2.05995654
+533 1 1.04034270 12.35973921 16.47965228 4.11991307
+534 1 1.04034270 14.41969575 18.53960882 4.11991307
+535 1 1.04034270 14.41969575 16.47965228 6.17986961
+536 1 1.04034270 12.35973921 18.53960882 6.17986961
+537 1 1.04034270 12.35973921 16.47965228 8.23982614
+538 1 1.04034270 14.41969575 18.53960882 8.23982614
+539 1 1.04034270 14.41969575 16.47965228 10.29978268
+540 1 1.04034270 12.35973921 18.53960882 10.29978268
+541 1 1.04034270 12.35973921 16.47965228 12.35973921
+542 1 1.04034270 14.41969575 18.53960882 12.35973921
+543 1 1.04034270 14.41969575 16.47965228 14.41969575
+544 1 1.04034270 12.35973921 18.53960882 14.41969575
+545 1 1.04034270 12.35973921 16.47965228 16.47965228
+546 1 1.04034270 14.41969575 18.53960882 16.47965228
+547 1 1.04034270 14.41969575 16.47965228 18.53960882
+548 1 1.04034270 12.35973921 18.53960882 18.53960882
+549 1 1.04034270 12.35973921 16.47965228 20.59956535
+550 1 1.04034270 14.41969575 18.53960882 20.59956535
+551 1 1.04034270 14.41969575 16.47965228 22.65952189
+552 1 1.04034270 12.35973921 18.53960882 22.65952189
+553 1 1.04034270 12.35973921 20.59956535 0.00000000
+554 1 1.04034270 14.41969575 22.65952189 0.00000000
+555 1 1.04034270 14.41969575 20.59956535 2.05995654
+556 1 1.04034270 12.35973921 22.65952189 2.05995654
+557 1 1.04034270 12.35973921 20.59956535 4.11991307
+558 1 1.04034270 14.41969575 22.65952189 4.11991307
+559 1 1.04034270 14.41969575 20.59956535 6.17986961
+560 1 1.04034270 12.35973921 22.65952189 6.17986961
+561 1 1.04034270 12.35973921 20.59956535 8.23982614
+562 1 1.04034270 14.41969575 22.65952189 8.23982614
+563 1 1.04034270 14.41969575 20.59956535 10.29978268
+564 1 1.04034270 12.35973921 22.65952189 10.29978268
+565 1 1.04034270 12.35973921 20.59956535 12.35973921
+566 1 1.04034270 14.41969575 22.65952189 12.35973921
+567 1 1.04034270 14.41969575 20.59956535 14.41969575
+568 1 1.04034270 12.35973921 22.65952189 14.41969575
+569 1 1.04034270 12.35973921 20.59956535 16.47965228
+570 1 1.04034270 14.41969575 22.65952189 16.47965228
+571 1 1.04034270 14.41969575 20.59956535 18.53960882
+572 1 1.04034270 12.35973921 22.65952189 18.53960882
+573 1 1.04034270 12.35973921 20.59956535 20.59956535
+574 1 1.04034270 14.41969575 22.65952189 20.59956535
+575 1 1.04034270 14.41969575 20.59956535 22.65952189
+576 1 1.04034270 12.35973921 22.65952189 22.65952189
+577 1 1.04034270 16.47965228 0.00000000 0.00000000
+578 1 1.04034270 18.53960882 2.05995654 0.00000000
+579 1 1.04034270 18.53960882 0.00000000 2.05995654
+580 1 1.04034270 16.47965228 2.05995654 2.05995654
+581 1 1.04034270 16.47965228 0.00000000 4.11991307
+582 1 1.04034270 18.53960882 2.05995654 4.11991307
+583 1 1.04034270 18.53960882 0.00000000 6.17986961
+584 1 1.04034270 16.47965228 2.05995654 6.17986961
+585 1 1.04034270 16.47965228 0.00000000 8.23982614
+586 1 1.04034270 18.53960882 2.05995654 8.23982614
+587 1 1.04034270 18.53960882 0.00000000 10.29978268
+588 1 1.04034270 16.47965228 2.05995654 10.29978268
+589 1 1.04034270 16.47965228 0.00000000 12.35973921
+590 1 1.04034270 18.53960882 2.05995654 12.35973921
+591 1 1.04034270 18.53960882 0.00000000 14.41969575
+592 1 1.04034270 16.47965228 2.05995654 14.41969575
+593 1 1.04034270 16.47965228 0.00000000 16.47965228
+594 1 1.04034270 18.53960882 2.05995654 16.47965228
+595 1 1.04034270 18.53960882 0.00000000 18.53960882
+596 1 1.04034270 16.47965228 2.05995654 18.53960882
+597 1 1.04034270 16.47965228 0.00000000 20.59956535
+598 1 1.04034270 18.53960882 2.05995654 20.59956535
+599 1 1.04034270 18.53960882 0.00000000 22.65952189
+600 1 1.04034270 16.47965228 2.05995654 22.65952189
+601 1 1.04034270 16.47965228 4.11991307 0.00000000
+602 1 1.04034270 18.53960882 6.17986961 0.00000000
+603 1 1.04034270 18.53960882 4.11991307 2.05995654
+604 1 1.04034270 16.47965228 6.17986961 2.05995654
+605 1 1.04034270 16.47965228 4.11991307 4.11991307
+606 1 1.04034270 18.53960882 6.17986961 4.11991307
+607 1 1.04034270 18.53960882 4.11991307 6.17986961
+608 1 1.04034270 16.47965228 6.17986961 6.17986961
+609 1 1.04034270 16.47965228 4.11991307 8.23982614
+610 1 1.04034270 18.53960882 6.17986961 8.23982614
+611 1 1.04034270 18.53960882 4.11991307 10.29978268
+612 1 1.04034270 16.47965228 6.17986961 10.29978268
+613 1 1.04034270 16.47965228 4.11991307 12.35973921
+614 1 1.04034270 18.53960882 6.17986961 12.35973921
+615 1 1.04034270 18.53960882 4.11991307 14.41969575
+616 1 1.04034270 16.47965228 6.17986961 14.41969575
+617 1 1.04034270 16.47965228 4.11991307 16.47965228
+618 1 1.04034270 18.53960882 6.17986961 16.47965228
+619 1 1.04034270 18.53960882 4.11991307 18.53960882
+620 1 1.04034270 16.47965228 6.17986961 18.53960882
+621 1 1.04034270 16.47965228 4.11991307 20.59956535
+622 1 1.04034270 18.53960882 6.17986961 20.59956535
+623 1 1.04034270 18.53960882 4.11991307 22.65952189
+624 1 1.04034270 16.47965228 6.17986961 22.65952189
+625 1 1.04034270 16.47965228 8.23982614 0.00000000
+626 1 1.04034270 18.53960882 10.29978268 0.00000000
+627 1 1.04034270 18.53960882 8.23982614 2.05995654
+628 1 1.04034270 16.47965228 10.29978268 2.05995654
+629 1 1.04034270 16.47965228 8.23982614 4.11991307
+630 1 1.04034270 18.53960882 10.29978268 4.11991307
+631 1 1.04034270 18.53960882 8.23982614 6.17986961
+632 1 1.04034270 16.47965228 10.29978268 6.17986961
+633 1 1.04034270 16.47965228 8.23982614 8.23982614
+634 1 1.04034270 18.53960882 10.29978268 8.23982614
+635 1 1.04034270 18.53960882 8.23982614 10.29978268
+636 1 1.04034270 16.47965228 10.29978268 10.29978268
+637 1 1.04034270 16.47965228 8.23982614 12.35973921
+638 1 1.04034270 18.53960882 10.29978268 12.35973921
+639 1 1.04034270 18.53960882 8.23982614 14.41969575
+640 1 1.04034270 16.47965228 10.29978268 14.41969575
+641 1 1.04034270 16.47965228 8.23982614 16.47965228
+642 1 1.04034270 18.53960882 10.29978268 16.47965228
+643 1 1.04034270 18.53960882 8.23982614 18.53960882
+644 1 1.04034270 16.47965228 10.29978268 18.53960882
+645 1 1.04034270 16.47965228 8.23982614 20.59956535
+646 1 1.04034270 18.53960882 10.29978268 20.59956535
+647 1 1.04034270 18.53960882 8.23982614 22.65952189
+648 1 1.04034270 16.47965228 10.29978268 22.65952189
+649 1 1.04034270 16.47965228 12.35973921 0.00000000
+650 1 1.04034270 18.53960882 14.41969575 0.00000000
+651 1 1.04034270 18.53960882 12.35973921 2.05995654
+652 1 1.04034270 16.47965228 14.41969575 2.05995654
+653 1 1.04034270 16.47965228 12.35973921 4.11991307
+654 1 1.04034270 18.53960882 14.41969575 4.11991307
+655 1 1.04034270 18.53960882 12.35973921 6.17986961
+656 1 1.04034270 16.47965228 14.41969575 6.17986961
+657 1 1.04034270 16.47965228 12.35973921 8.23982614
+658 1 1.04034270 18.53960882 14.41969575 8.23982614
+659 1 1.04034270 18.53960882 12.35973921 10.29978268
+660 1 1.04034270 16.47965228 14.41969575 10.29978268
+661 1 1.04034270 16.47965228 12.35973921 12.35973921
+662 1 1.04034270 18.53960882 14.41969575 12.35973921
+663 1 1.04034270 18.53960882 12.35973921 14.41969575
+664 1 1.04034270 16.47965228 14.41969575 14.41969575
+665 1 1.04034270 16.47965228 12.35973921 16.47965228
+666 1 1.04034270 18.53960882 14.41969575 16.47965228
+667 1 1.04034270 18.53960882 12.35973921 18.53960882
+668 1 1.04034270 16.47965228 14.41969575 18.53960882
+669 1 1.04034270 16.47965228 12.35973921 20.59956535
+670 1 1.04034270 18.53960882 14.41969575 20.59956535
+671 1 1.04034270 18.53960882 12.35973921 22.65952189
+672 1 1.04034270 16.47965228 14.41969575 22.65952189
+673 1 1.04034270 16.47965228 16.47965228 0.00000000
+674 1 1.04034270 18.53960882 18.53960882 0.00000000
+675 1 1.04034270 18.53960882 16.47965228 2.05995654
+676 1 1.04034270 16.47965228 18.53960882 2.05995654
+677 1 1.04034270 16.47965228 16.47965228 4.11991307
+678 1 1.04034270 18.53960882 18.53960882 4.11991307
+679 1 1.04034270 18.53960882 16.47965228 6.17986961
+680 1 1.04034270 16.47965228 18.53960882 6.17986961
+681 1 1.04034270 16.47965228 16.47965228 8.23982614
+682 1 1.04034270 18.53960882 18.53960882 8.23982614
+683 1 1.04034270 18.53960882 16.47965228 10.29978268
+684 1 1.04034270 16.47965228 18.53960882 10.29978268
+685 1 1.04034270 16.47965228 16.47965228 12.35973921
+686 1 1.04034270 18.53960882 18.53960882 12.35973921
+687 1 1.04034270 18.53960882 16.47965228 14.41969575
+688 1 1.04034270 16.47965228 18.53960882 14.41969575
+689 1 1.04034270 16.47965228 16.47965228 16.47965228
+690 1 1.04034270 18.53960882 18.53960882 16.47965228
+691 1 1.04034270 18.53960882 16.47965228 18.53960882
+692 1 1.04034270 16.47965228 18.53960882 18.53960882
+693 1 1.04034270 16.47965228 16.47965228 20.59956535
+694 1 1.04034270 18.53960882 18.53960882 20.59956535
+695 1 1.04034270 18.53960882 16.47965228 22.65952189
+696 1 1.04034270 16.47965228 18.53960882 22.65952189
+697 1 1.04034270 16.47965228 20.59956535 0.00000000
+698 1 1.04034270 18.53960882 22.65952189 0.00000000
+699 1 1.04034270 18.53960882 20.59956535 2.05995654
+700 1 1.04034270 16.47965228 22.65952189 2.05995654
+701 1 1.04034270 16.47965228 20.59956535 4.11991307
+702 1 1.04034270 18.53960882 22.65952189 4.11991307
+703 1 1.04034270 18.53960882 20.59956535 6.17986961
+704 1 1.04034270 16.47965228 22.65952189 6.17986961
+705 1 1.04034270 16.47965228 20.59956535 8.23982614
+706 1 1.04034270 18.53960882 22.65952189 8.23982614
+707 1 1.04034270 18.53960882 20.59956535 10.29978268
+708 1 1.04034270 16.47965228 22.65952189 10.29978268
+709 1 1.04034270 16.47965228 20.59956535 12.35973921
+710 1 1.04034270 18.53960882 22.65952189 12.35973921
+711 1 1.04034270 18.53960882 20.59956535 14.41969575
+712 1 1.04034270 16.47965228 22.65952189 14.41969575
+713 1 1.04034270 16.47965228 20.59956535 16.47965228
+714 1 1.04034270 18.53960882 22.65952189 16.47965228
+715 1 1.04034270 18.53960882 20.59956535 18.53960882
+716 1 1.04034270 16.47965228 22.65952189 18.53960882
+717 1 1.04034270 16.47965228 20.59956535 20.59956535
+718 1 1.04034270 18.53960882 22.65952189 20.59956535
+719 1 1.04034270 18.53960882 20.59956535 22.65952189
+720 1 1.04034270 16.47965228 22.65952189 22.65952189
+721 1 1.04034270 20.59956535 0.00000000 0.00000000
+722 1 1.04034270 22.65952189 2.05995654 0.00000000
+723 1 1.04034270 22.65952189 0.00000000 2.05995654
+724 1 1.04034270 20.59956535 2.05995654 2.05995654
+725 1 1.04034270 20.59956535 0.00000000 4.11991307
+726 1 1.04034270 22.65952189 2.05995654 4.11991307
+727 1 1.04034270 22.65952189 0.00000000 6.17986961
+728 1 1.04034270 20.59956535 2.05995654 6.17986961
+729 1 1.04034270 20.59956535 0.00000000 8.23982614
+730 1 1.04034270 22.65952189 2.05995654 8.23982614
+731 1 1.04034270 22.65952189 0.00000000 10.29978268
+732 1 1.04034270 20.59956535 2.05995654 10.29978268
+733 1 1.04034270 20.59956535 0.00000000 12.35973921
+734 1 1.04034270 22.65952189 2.05995654 12.35973921
+735 1 1.04034270 22.65952189 0.00000000 14.41969575
+736 1 1.04034270 20.59956535 2.05995654 14.41969575
+737 1 1.04034270 20.59956535 0.00000000 16.47965228
+738 1 1.04034270 22.65952189 2.05995654 16.47965228
+739 1 1.04034270 22.65952189 0.00000000 18.53960882
+740 1 1.04034270 20.59956535 2.05995654 18.53960882
+741 1 1.04034270 20.59956535 0.00000000 20.59956535
+742 1 1.04034270 22.65952189 2.05995654 20.59956535
+743 1 1.04034270 22.65952189 0.00000000 22.65952189
+744 1 1.04034270 20.59956535 2.05995654 22.65952189
+745 1 1.04034270 20.59956535 4.11991307 0.00000000
+746 1 1.04034270 22.65952189 6.17986961 0.00000000
+747 1 1.04034270 22.65952189 4.11991307 2.05995654
+748 1 1.04034270 20.59956535 6.17986961 2.05995654
+749 1 1.04034270 20.59956535 4.11991307 4.11991307
+750 1 1.04034270 22.65952189 6.17986961 4.11991307
+751 1 1.04034270 22.65952189 4.11991307 6.17986961
+752 1 1.04034270 20.59956535 6.17986961 6.17986961
+753 1 1.04034270 20.59956535 4.11991307 8.23982614
+754 1 1.04034270 22.65952189 6.17986961 8.23982614
+755 1 1.04034270 22.65952189 4.11991307 10.29978268
+756 1 1.04034270 20.59956535 6.17986961 10.29978268
+757 1 1.04034270 20.59956535 4.11991307 12.35973921
+758 1 1.04034270 22.65952189 6.17986961 12.35973921
+759 1 1.04034270 22.65952189 4.11991307 14.41969575
+760 1 1.04034270 20.59956535 6.17986961 14.41969575
+761 1 1.04034270 20.59956535 4.11991307 16.47965228
+762 1 1.04034270 22.65952189 6.17986961 16.47965228
+763 1 1.04034270 22.65952189 4.11991307 18.53960882
+764 1 1.04034270 20.59956535 6.17986961 18.53960882
+765 1 1.04034270 20.59956535 4.11991307 20.59956535
+766 1 1.04034270 22.65952189 6.17986961 20.59956535
+767 1 1.04034270 22.65952189 4.11991307 22.65952189
+768 1 1.04034270 20.59956535 6.17986961 22.65952189
+769 1 1.04034270 20.59956535 8.23982614 0.00000000
+770 1 1.04034270 22.65952189 10.29978268 0.00000000
+771 1 1.04034270 22.65952189 8.23982614 2.05995654
+772 1 1.04034270 20.59956535 10.29978268 2.05995654
+773 1 1.04034270 20.59956535 8.23982614 4.11991307
+774 1 1.04034270 22.65952189 10.29978268 4.11991307
+775 1 1.04034270 22.65952189 8.23982614 6.17986961
+776 1 1.04034270 20.59956535 10.29978268 6.17986961
+777 1 1.04034270 20.59956535 8.23982614 8.23982614
+778 1 1.04034270 22.65952189 10.29978268 8.23982614
+779 1 1.04034270 22.65952189 8.23982614 10.29978268
+780 1 1.04034270 20.59956535 10.29978268 10.29978268
+781 1 1.04034270 20.59956535 8.23982614 12.35973921
+782 1 1.04034270 22.65952189 10.29978268 12.35973921
+783 1 1.04034270 22.65952189 8.23982614 14.41969575
+784 1 1.04034270 20.59956535 10.29978268 14.41969575
+785 1 1.04034270 20.59956535 8.23982614 16.47965228
+786 1 1.04034270 22.65952189 10.29978268 16.47965228
+787 1 1.04034270 22.65952189 8.23982614 18.53960882
+788 1 1.04034270 20.59956535 10.29978268 18.53960882
+789 1 1.04034270 20.59956535 8.23982614 20.59956535
+790 1 1.04034270 22.65952189 10.29978268 20.59956535
+791 1 1.04034270 22.65952189 8.23982614 22.65952189
+792 1 1.04034270 20.59956535 10.29978268 22.65952189
+793 1 1.04034270 20.59956535 12.35973921 0.00000000
+794 1 1.04034270 22.65952189 14.41969575 0.00000000
+795 1 1.04034270 22.65952189 12.35973921 2.05995654
+796 1 1.04034270 20.59956535 14.41969575 2.05995654
+797 1 1.04034270 20.59956535 12.35973921 4.11991307
+798 1 1.04034270 22.65952189 14.41969575 4.11991307
+799 1 1.04034270 22.65952189 12.35973921 6.17986961
+800 1 1.04034270 20.59956535 14.41969575 6.17986961
+801 1 1.04034270 20.59956535 12.35973921 8.23982614
+802 1 1.04034270 22.65952189 14.41969575 8.23982614
+803 1 1.04034270 22.65952189 12.35973921 10.29978268
+804 1 1.04034270 20.59956535 14.41969575 10.29978268
+805 1 1.04034270 20.59956535 12.35973921 12.35973921
+806 1 1.04034270 22.65952189 14.41969575 12.35973921
+807 1 1.04034270 22.65952189 12.35973921 14.41969575
+808 1 1.04034270 20.59956535 14.41969575 14.41969575
+809 1 1.04034270 20.59956535 12.35973921 16.47965228
+810 1 1.04034270 22.65952189 14.41969575 16.47965228
+811 1 1.04034270 22.65952189 12.35973921 18.53960882
+812 1 1.04034270 20.59956535 14.41969575 18.53960882
+813 1 1.04034270 20.59956535 12.35973921 20.59956535
+814 1 1.04034270 22.65952189 14.41969575 20.59956535
+815 1 1.04034270 22.65952189 12.35973921 22.65952189
+816 1 1.04034270 20.59956535 14.41969575 22.65952189
+817 1 1.04034270 20.59956535 16.47965228 0.00000000
+818 1 1.04034270 22.65952189 18.53960882 0.00000000
+819 1 1.04034270 22.65952189 16.47965228 2.05995654
+820 1 1.04034270 20.59956535 18.53960882 2.05995654
+821 1 1.04034270 20.59956535 16.47965228 4.11991307
+822 1 1.04034270 22.65952189 18.53960882 4.11991307
+823 1 1.04034270 22.65952189 16.47965228 6.17986961
+824 1 1.04034270 20.59956535 18.53960882 6.17986961
+825 1 1.04034270 20.59956535 16.47965228 8.23982614
+826 1 1.04034270 22.65952189 18.53960882 8.23982614
+827 1 1.04034270 22.65952189 16.47965228 10.29978268
+828 1 1.04034270 20.59956535 18.53960882 10.29978268
+829 1 1.04034270 20.59956535 16.47965228 12.35973921
+830 1 1.04034270 22.65952189 18.53960882 12.35973921
+831 1 1.04034270 22.65952189 16.47965228 14.41969575
+832 1 1.04034270 20.59956535 18.53960882 14.41969575
+833 1 1.04034270 20.59956535 16.47965228 16.47965228
+834 1 1.04034270 22.65952189 18.53960882 16.47965228
+835 1 1.04034270 22.65952189 16.47965228 18.53960882
+836 1 1.04034270 20.59956535 18.53960882 18.53960882
+837 1 1.04034270 20.59956535 16.47965228 20.59956535
+838 1 1.04034270 22.65952189 18.53960882 20.59956535
+839 1 1.04034270 22.65952189 16.47965228 22.65952189
+840 1 1.04034270 20.59956535 18.53960882 22.65952189
+841 1 1.04034270 20.59956535 20.59956535 0.00000000
+842 1 1.04034270 22.65952189 22.65952189 0.00000000
+843 1 1.04034270 22.65952189 20.59956535 2.05995654
+844 1 1.04034270 20.59956535 22.65952189 2.05995654
+845 1 1.04034270 20.59956535 20.59956535 4.11991307
+846 1 1.04034270 22.65952189 22.65952189 4.11991307
+847 1 1.04034270 22.65952189 20.59956535 6.17986961
+848 1 1.04034270 20.59956535 22.65952189 6.17986961
+849 1 1.04034270 20.59956535 20.59956535 8.23982614
+850 1 1.04034270 22.65952189 22.65952189 8.23982614
+851 1 1.04034270 22.65952189 20.59956535 10.29978268
+852 1 1.04034270 20.59956535 22.65952189 10.29978268
+853 1 1.04034270 20.59956535 20.59956535 12.35973921
+854 1 1.04034270 22.65952189 22.65952189 12.35973921
+855 1 1.04034270 22.65952189 20.59956535 14.41969575
+856 1 1.04034270 20.59956535 22.65952189 14.41969575
+857 1 1.04034270 20.59956535 20.59956535 16.47965228
+858 1 1.04034270 22.65952189 22.65952189 16.47965228
+859 1 1.04034270 22.65952189 20.59956535 18.53960882
+860 1 1.04034270 20.59956535 22.65952189 18.53960882
+861 1 1.04034270 20.59956535 20.59956535 20.59956535
+862 1 1.04034270 22.65952189 22.65952189 20.59956535
+863 1 1.04034270 22.65952189 20.59956535 22.65952189
+864 1 1.04034270 20.59956535 22.65952189 22.65952189
+865 2 -1.04034270 2.05995654 8.23982614 4.11991307
+866 2 -1.04034270 0.00000000 10.29978268 4.11991307
+867 2 -1.04034270 0.00000000 8.23982614 6.17986961
+868 2 -1.04034270 2.05995654 10.29978268 6.17986961
+869 2 -1.04034270 14.41969575 0.00000000 0.00000000
+870 2 -1.04034270 12.35973921 2.05995654 0.00000000
+871 2 -1.04034270 12.35973921 0.00000000 2.05995654
+872 2 -1.04034270 14.41969575 2.05995654 2.05995654
+873 2 -1.04034270 6.17986961 12.35973921 0.00000000
+874 2 -1.04034270 4.11991307 14.41969575 0.00000000
+875 2 -1.04034270 4.11991307 12.35973921 2.05995654
+876 2 -1.04034270 6.17986961 14.41969575 2.05995654
+877 2 -1.04034270 14.41969575 0.00000000 4.11991307
+878 2 -1.04034270 12.35973921 2.05995654 4.11991307
+879 2 -1.04034270 12.35973921 0.00000000 6.17986961
+880 2 -1.04034270 14.41969575 2.05995654 6.17986961
+881 2 -1.04034270 2.05995654 16.47965228 12.35973921
+882 2 -1.04034270 0.00000000 18.53960882 12.35973921
+883 2 -1.04034270 0.00000000 16.47965228 14.41969575
+884 2 -1.04034270 2.05995654 18.53960882 14.41969575
+885 2 -1.04034270 14.41969575 0.00000000 8.23982614
+886 2 -1.04034270 12.35973921 2.05995654 8.23982614
+887 2 -1.04034270 12.35973921 0.00000000 10.29978268
+888 2 -1.04034270 14.41969575 2.05995654 10.29978268
+889 2 -1.04034270 6.17986961 12.35973921 4.11991307
+890 2 -1.04034270 4.11991307 14.41969575 4.11991307
+891 2 -1.04034270 4.11991307 12.35973921 6.17986961
+892 2 -1.04034270 6.17986961 14.41969575 6.17986961
+893 2 -1.04034270 14.41969575 0.00000000 12.35973921
+894 2 -1.04034270 12.35973921 2.05995654 12.35973921
+895 2 -1.04034270 12.35973921 0.00000000 14.41969575
+896 2 -1.04034270 14.41969575 2.05995654 14.41969575
+897 2 -1.04034270 2.05995654 0.00000000 12.35973921
+898 2 -1.04034270 0.00000000 2.05995654 12.35973921
+899 2 -1.04034270 0.00000000 0.00000000 14.41969575
+900 2 -1.04034270 2.05995654 2.05995654 14.41969575
+901 2 -1.04034270 14.41969575 0.00000000 16.47965228
+902 2 -1.04034270 12.35973921 2.05995654 16.47965228
+903 2 -1.04034270 12.35973921 0.00000000 18.53960882
+904 2 -1.04034270 14.41969575 2.05995654 18.53960882
+905 2 -1.04034270 6.17986961 12.35973921 8.23982614
+906 2 -1.04034270 4.11991307 14.41969575 8.23982614
+907 2 -1.04034270 4.11991307 12.35973921 10.29978268
+908 2 -1.04034270 6.17986961 14.41969575 10.29978268
+909 2 -1.04034270 14.41969575 0.00000000 20.59956535
+910 2 -1.04034270 12.35973921 2.05995654 20.59956535
+911 2 -1.04034270 12.35973921 0.00000000 22.65952189
+912 2 -1.04034270 14.41969575 2.05995654 22.65952189
+913 2 -1.04034270 2.05995654 16.47965228 16.47965228
+914 2 -1.04034270 0.00000000 18.53960882 16.47965228
+915 2 -1.04034270 0.00000000 16.47965228 18.53960882
+916 2 -1.04034270 2.05995654 18.53960882 18.53960882
+917 2 -1.04034270 14.41969575 4.11991307 0.00000000
+918 2 -1.04034270 12.35973921 6.17986961 0.00000000
+919 2 -1.04034270 12.35973921 4.11991307 2.05995654
+920 2 -1.04034270 14.41969575 6.17986961 2.05995654
+921 2 -1.04034270 6.17986961 12.35973921 12.35973921
+922 2 -1.04034270 4.11991307 14.41969575 12.35973921
+923 2 -1.04034270 4.11991307 12.35973921 14.41969575
+924 2 -1.04034270 6.17986961 14.41969575 14.41969575
+925 2 -1.04034270 14.41969575 4.11991307 4.11991307
+926 2 -1.04034270 12.35973921 6.17986961 4.11991307
+927 2 -1.04034270 12.35973921 4.11991307 6.17986961
+928 2 -1.04034270 14.41969575 6.17986961 6.17986961
+929 2 -1.04034270 2.05995654 8.23982614 8.23982614
+930 2 -1.04034270 0.00000000 10.29978268 8.23982614
+931 2 -1.04034270 0.00000000 8.23982614 10.29978268
+932 2 -1.04034270 2.05995654 10.29978268 10.29978268
+933 2 -1.04034270 14.41969575 4.11991307 8.23982614
+934 2 -1.04034270 12.35973921 6.17986961 8.23982614
+935 2 -1.04034270 12.35973921 4.11991307 10.29978268
+936 2 -1.04034270 14.41969575 6.17986961 10.29978268
+937 2 -1.04034270 6.17986961 12.35973921 16.47965228
+938 2 -1.04034270 4.11991307 14.41969575 16.47965228
+939 2 -1.04034270 4.11991307 12.35973921 18.53960882
+940 2 -1.04034270 6.17986961 14.41969575 18.53960882
+941 2 -1.04034270 14.41969575 4.11991307 12.35973921
+942 2 -1.04034270 12.35973921 6.17986961 12.35973921
+943 2 -1.04034270 12.35973921 4.11991307 14.41969575
+944 2 -1.04034270 14.41969575 6.17986961 14.41969575
+945 2 -1.04034270 2.05995654 16.47965228 20.59956535
+946 2 -1.04034270 0.00000000 18.53960882 20.59956535
+947 2 -1.04034270 0.00000000 16.47965228 22.65952189
+948 2 -1.04034270 2.05995654 18.53960882 22.65952189
+949 2 -1.04034270 14.41969575 4.11991307 16.47965228
+950 2 -1.04034270 12.35973921 6.17986961 16.47965228
+951 2 -1.04034270 12.35973921 4.11991307 18.53960882
+952 2 -1.04034270 14.41969575 6.17986961 18.53960882
+953 2 -1.04034270 6.17986961 12.35973921 20.59956535
+954 2 -1.04034270 4.11991307 14.41969575 20.59956535
+955 2 -1.04034270 4.11991307 12.35973921 22.65952189
+956 2 -1.04034270 6.17986961 14.41969575 22.65952189
+957 2 -1.04034270 14.41969575 4.11991307 20.59956535
+958 2 -1.04034270 12.35973921 6.17986961 20.59956535
+959 2 -1.04034270 12.35973921 4.11991307 22.65952189
+960 2 -1.04034270 14.41969575 6.17986961 22.65952189
+961 2 -1.04034270 2.05995654 4.11991307 4.11991307
+962 2 -1.04034270 0.00000000 6.17986961 4.11991307
+963 2 -1.04034270 0.00000000 4.11991307 6.17986961
+964 2 -1.04034270 2.05995654 6.17986961 6.17986961
+965 2 -1.04034270 14.41969575 8.23982614 0.00000000
+966 2 -1.04034270 12.35973921 10.29978268 0.00000000
+967 2 -1.04034270 12.35973921 8.23982614 2.05995654
+968 2 -1.04034270 14.41969575 10.29978268 2.05995654
+969 2 -1.04034270 6.17986961 16.47965228 0.00000000
+970 2 -1.04034270 4.11991307 18.53960882 0.00000000
+971 2 -1.04034270 4.11991307 16.47965228 2.05995654
+972 2 -1.04034270 6.17986961 18.53960882 2.05995654
+973 2 -1.04034270 14.41969575 8.23982614 4.11991307
+974 2 -1.04034270 12.35973921 10.29978268 4.11991307
+975 2 -1.04034270 12.35973921 8.23982614 6.17986961
+976 2 -1.04034270 14.41969575 10.29978268 6.17986961
+977 2 -1.04034270 2.05995654 20.59956535 0.00000000
+978 2 -1.04034270 0.00000000 22.65952189 0.00000000
+979 2 -1.04034270 0.00000000 20.59956535 2.05995654
+980 2 -1.04034270 2.05995654 22.65952189 2.05995654
+981 2 -1.04034270 14.41969575 8.23982614 8.23982614
+982 2 -1.04034270 12.35973921 10.29978268 8.23982614
+983 2 -1.04034270 12.35973921 8.23982614 10.29978268
+984 2 -1.04034270 14.41969575 10.29978268 10.29978268
+985 2 -1.04034270 6.17986961 16.47965228 4.11991307
+986 2 -1.04034270 4.11991307 18.53960882 4.11991307
+987 2 -1.04034270 4.11991307 16.47965228 6.17986961
+988 2 -1.04034270 6.17986961 18.53960882 6.17986961
+989 2 -1.04034270 14.41969575 8.23982614 12.35973921
+990 2 -1.04034270 12.35973921 10.29978268 12.35973921
+991 2 -1.04034270 12.35973921 8.23982614 14.41969575
+992 2 -1.04034270 14.41969575 10.29978268 14.41969575
+993 2 -1.04034270 2.05995654 8.23982614 12.35973921
+994 2 -1.04034270 0.00000000 10.29978268 12.35973921
+995 2 -1.04034270 0.00000000 8.23982614 14.41969575
+996 2 -1.04034270 2.05995654 10.29978268 14.41969575
+997 2 -1.04034270 14.41969575 8.23982614 16.47965228
+998 2 -1.04034270 12.35973921 10.29978268 16.47965228
+999 2 -1.04034270 12.35973921 8.23982614 18.53960882
+1000 2 -1.04034270 14.41969575 10.29978268 18.53960882
+1001 2 -1.04034270 6.17986961 16.47965228 8.23982614
+1002 2 -1.04034270 4.11991307 18.53960882 8.23982614
+1003 2 -1.04034270 4.11991307 16.47965228 10.29978268
+1004 2 -1.04034270 6.17986961 18.53960882 10.29978268
+1005 2 -1.04034270 14.41969575 8.23982614 20.59956535
+1006 2 -1.04034270 12.35973921 10.29978268 20.59956535
+1007 2 -1.04034270 12.35973921 8.23982614 22.65952189
+1008 2 -1.04034270 14.41969575 10.29978268 22.65952189
+1009 2 -1.04034270 2.05995654 20.59956535 4.11991307
+1010 2 -1.04034270 0.00000000 22.65952189 4.11991307
+1011 2 -1.04034270 0.00000000 20.59956535 6.17986961
+1012 2 -1.04034270 2.05995654 22.65952189 6.17986961
+1013 2 -1.04034270 14.41969575 12.35973921 0.00000000
+1014 2 -1.04034270 12.35973921 14.41969575 0.00000000
+1015 2 -1.04034270 12.35973921 12.35973921 2.05995654
+1016 2 -1.04034270 14.41969575 14.41969575 2.05995654
+1017 2 -1.04034270 6.17986961 16.47965228 12.35973921
+1018 2 -1.04034270 4.11991307 18.53960882 12.35973921
+1019 2 -1.04034270 4.11991307 16.47965228 14.41969575
+1020 2 -1.04034270 6.17986961 18.53960882 14.41969575
+1021 2 -1.04034270 14.41969575 12.35973921 4.11991307
+1022 2 -1.04034270 12.35973921 14.41969575 4.11991307
+1023 2 -1.04034270 12.35973921 12.35973921 6.17986961
+1024 2 -1.04034270 14.41969575 14.41969575 6.17986961
+1025 2 -1.04034270 2.05995654 0.00000000 0.00000000
+1026 2 -1.04034270 0.00000000 2.05995654 0.00000000
+1027 2 -1.04034270 0.00000000 0.00000000 2.05995654
+1028 2 -1.04034270 2.05995654 2.05995654 2.05995654
+1029 2 -1.04034270 14.41969575 12.35973921 8.23982614
+1030 2 -1.04034270 12.35973921 14.41969575 8.23982614
+1031 2 -1.04034270 12.35973921 12.35973921 10.29978268
+1032 2 -1.04034270 14.41969575 14.41969575 10.29978268
+1033 2 -1.04034270 6.17986961 16.47965228 16.47965228
+1034 2 -1.04034270 4.11991307 18.53960882 16.47965228
+1035 2 -1.04034270 4.11991307 16.47965228 18.53960882
+1036 2 -1.04034270 6.17986961 18.53960882 18.53960882
+1037 2 -1.04034270 14.41969575 12.35973921 12.35973921
+1038 2 -1.04034270 12.35973921 14.41969575 12.35973921
+1039 2 -1.04034270 12.35973921 12.35973921 14.41969575
+1040 2 -1.04034270 14.41969575 14.41969575 14.41969575
+1041 2 -1.04034270 2.05995654 20.59956535 8.23982614
+1042 2 -1.04034270 0.00000000 22.65952189 8.23982614
+1043 2 -1.04034270 0.00000000 20.59956535 10.29978268
+1044 2 -1.04034270 2.05995654 22.65952189 10.29978268
+1045 2 -1.04034270 14.41969575 12.35973921 16.47965228
+1046 2 -1.04034270 12.35973921 14.41969575 16.47965228
+1047 2 -1.04034270 12.35973921 12.35973921 18.53960882
+1048 2 -1.04034270 14.41969575 14.41969575 18.53960882
+1049 2 -1.04034270 6.17986961 16.47965228 20.59956535
+1050 2 -1.04034270 4.11991307 18.53960882 20.59956535
+1051 2 -1.04034270 4.11991307 16.47965228 22.65952189
+1052 2 -1.04034270 6.17986961 18.53960882 22.65952189
+1053 2 -1.04034270 14.41969575 12.35973921 20.59956535
+1054 2 -1.04034270 12.35973921 14.41969575 20.59956535
+1055 2 -1.04034270 12.35973921 12.35973921 22.65952189
+1056 2 -1.04034270 14.41969575 14.41969575 22.65952189
+1057 2 -1.04034270 2.05995654 8.23982614 16.47965228
+1058 2 -1.04034270 0.00000000 10.29978268 16.47965228
+1059 2 -1.04034270 0.00000000 8.23982614 18.53960882
+1060 2 -1.04034270 2.05995654 10.29978268 18.53960882
+1061 2 -1.04034270 14.41969575 16.47965228 0.00000000
+1062 2 -1.04034270 12.35973921 18.53960882 0.00000000
+1063 2 -1.04034270 12.35973921 16.47965228 2.05995654
+1064 2 -1.04034270 14.41969575 18.53960882 2.05995654
+1065 2 -1.04034270 6.17986961 20.59956535 0.00000000
+1066 2 -1.04034270 4.11991307 22.65952189 0.00000000
+1067 2 -1.04034270 4.11991307 20.59956535 2.05995654
+1068 2 -1.04034270 6.17986961 22.65952189 2.05995654
+1069 2 -1.04034270 14.41969575 16.47965228 4.11991307
+1070 2 -1.04034270 12.35973921 18.53960882 4.11991307
+1071 2 -1.04034270 12.35973921 16.47965228 6.17986961
+1072 2 -1.04034270 14.41969575 18.53960882 6.17986961
+1073 2 -1.04034270 2.05995654 20.59956535 12.35973921
+1074 2 -1.04034270 0.00000000 22.65952189 12.35973921
+1075 2 -1.04034270 0.00000000 20.59956535 14.41969575
+1076 2 -1.04034270 2.05995654 22.65952189 14.41969575
+1077 2 -1.04034270 14.41969575 16.47965228 8.23982614
+1078 2 -1.04034270 12.35973921 18.53960882 8.23982614
+1079 2 -1.04034270 12.35973921 16.47965228 10.29978268
+1080 2 -1.04034270 14.41969575 18.53960882 10.29978268
+1081 2 -1.04034270 6.17986961 20.59956535 4.11991307
+1082 2 -1.04034270 4.11991307 22.65952189 4.11991307
+1083 2 -1.04034270 4.11991307 20.59956535 6.17986961
+1084 2 -1.04034270 6.17986961 22.65952189 6.17986961
+1085 2 -1.04034270 14.41969575 16.47965228 12.35973921
+1086 2 -1.04034270 12.35973921 18.53960882 12.35973921
+1087 2 -1.04034270 12.35973921 16.47965228 14.41969575
+1088 2 -1.04034270 14.41969575 18.53960882 14.41969575
+1089 2 -1.04034270 2.05995654 4.11991307 8.23982614
+1090 2 -1.04034270 0.00000000 6.17986961 8.23982614
+1091 2 -1.04034270 0.00000000 4.11991307 10.29978268
+1092 2 -1.04034270 2.05995654 6.17986961 10.29978268
+1093 2 -1.04034270 14.41969575 16.47965228 16.47965228
+1094 2 -1.04034270 12.35973921 18.53960882 16.47965228
+1095 2 -1.04034270 12.35973921 16.47965228 18.53960882
+1096 2 -1.04034270 14.41969575 18.53960882 18.53960882
+1097 2 -1.04034270 6.17986961 20.59956535 8.23982614
+1098 2 -1.04034270 4.11991307 22.65952189 8.23982614
+1099 2 -1.04034270 4.11991307 20.59956535 10.29978268
+1100 2 -1.04034270 6.17986961 22.65952189 10.29978268
+1101 2 -1.04034270 14.41969575 16.47965228 20.59956535
+1102 2 -1.04034270 12.35973921 18.53960882 20.59956535
+1103 2 -1.04034270 12.35973921 16.47965228 22.65952189
+1104 2 -1.04034270 14.41969575 18.53960882 22.65952189
+1105 2 -1.04034270 2.05995654 20.59956535 16.47965228
+1106 2 -1.04034270 0.00000000 22.65952189 16.47965228
+1107 2 -1.04034270 0.00000000 20.59956535 18.53960882
+1108 2 -1.04034270 2.05995654 22.65952189 18.53960882
+1109 2 -1.04034270 14.41969575 20.59956535 0.00000000
+1110 2 -1.04034270 12.35973921 22.65952189 0.00000000
+1111 2 -1.04034270 12.35973921 20.59956535 2.05995654
+1112 2 -1.04034270 14.41969575 22.65952189 2.05995654
+1113 2 -1.04034270 6.17986961 20.59956535 12.35973921
+1114 2 -1.04034270 4.11991307 22.65952189 12.35973921
+1115 2 -1.04034270 4.11991307 20.59956535 14.41969575
+1116 2 -1.04034270 6.17986961 22.65952189 14.41969575
+1117 2 -1.04034270 14.41969575 20.59956535 4.11991307
+1118 2 -1.04034270 12.35973921 22.65952189 4.11991307
+1119 2 -1.04034270 12.35973921 20.59956535 6.17986961
+1120 2 -1.04034270 14.41969575 22.65952189 6.17986961
+1121 2 -1.04034270 2.05995654 8.23982614 20.59956535
+1122 2 -1.04034270 0.00000000 10.29978268 20.59956535
+1123 2 -1.04034270 0.00000000 8.23982614 22.65952189
+1124 2 -1.04034270 2.05995654 10.29978268 22.65952189
+1125 2 -1.04034270 14.41969575 20.59956535 8.23982614
+1126 2 -1.04034270 12.35973921 22.65952189 8.23982614
+1127 2 -1.04034270 12.35973921 20.59956535 10.29978268
+1128 2 -1.04034270 14.41969575 22.65952189 10.29978268
+1129 2 -1.04034270 6.17986961 20.59956535 16.47965228
+1130 2 -1.04034270 4.11991307 22.65952189 16.47965228
+1131 2 -1.04034270 4.11991307 20.59956535 18.53960882
+1132 2 -1.04034270 6.17986961 22.65952189 18.53960882
+1133 2 -1.04034270 14.41969575 20.59956535 12.35973921
+1134 2 -1.04034270 12.35973921 22.65952189 12.35973921
+1135 2 -1.04034270 12.35973921 20.59956535 14.41969575
+1136 2 -1.04034270 14.41969575 22.65952189 14.41969575
+1137 2 -1.04034270 2.05995654 20.59956535 20.59956535
+1138 2 -1.04034270 0.00000000 22.65952189 20.59956535
+1139 2 -1.04034270 0.00000000 20.59956535 22.65952189
+1140 2 -1.04034270 2.05995654 22.65952189 22.65952189
+1141 2 -1.04034270 14.41969575 20.59956535 16.47965228
+1142 2 -1.04034270 12.35973921 22.65952189 16.47965228
+1143 2 -1.04034270 12.35973921 20.59956535 18.53960882
+1144 2 -1.04034270 14.41969575 22.65952189 18.53960882
+1145 2 -1.04034270 6.17986961 20.59956535 20.59956535
+1146 2 -1.04034270 4.11991307 22.65952189 20.59956535
+1147 2 -1.04034270 4.11991307 20.59956535 22.65952189
+1148 2 -1.04034270 6.17986961 22.65952189 22.65952189
+1149 2 -1.04034270 14.41969575 20.59956535 20.59956535
+1150 2 -1.04034270 12.35973921 22.65952189 20.59956535
+1151 2 -1.04034270 12.35973921 20.59956535 22.65952189
+1152 2 -1.04034270 14.41969575 22.65952189 22.65952189
+1153 2 -1.04034270 2.05995654 0.00000000 16.47965228
+1154 2 -1.04034270 0.00000000 2.05995654 16.47965228
+1155 2 -1.04034270 0.00000000 0.00000000 18.53960882
+1156 2 -1.04034270 2.05995654 2.05995654 18.53960882
+1157 2 -1.04034270 18.53960882 0.00000000 0.00000000
+1158 2 -1.04034270 16.47965228 2.05995654 0.00000000
+1159 2 -1.04034270 16.47965228 0.00000000 2.05995654
+1160 2 -1.04034270 18.53960882 2.05995654 2.05995654
+1161 2 -1.04034270 10.29978268 0.00000000 0.00000000
+1162 2 -1.04034270 8.23982614 2.05995654 0.00000000
+1163 2 -1.04034270 8.23982614 0.00000000 2.05995654
+1164 2 -1.04034270 10.29978268 2.05995654 2.05995654
+1165 2 -1.04034270 18.53960882 0.00000000 4.11991307
+1166 2 -1.04034270 16.47965228 2.05995654 4.11991307
+1167 2 -1.04034270 16.47965228 0.00000000 6.17986961
+1168 2 -1.04034270 18.53960882 2.05995654 6.17986961
+1169 2 -1.04034270 6.17986961 0.00000000 0.00000000
+1170 2 -1.04034270 4.11991307 2.05995654 0.00000000
+1171 2 -1.04034270 4.11991307 0.00000000 2.05995654
+1172 2 -1.04034270 6.17986961 2.05995654 2.05995654
+1173 2 -1.04034270 18.53960882 0.00000000 8.23982614
+1174 2 -1.04034270 16.47965228 2.05995654 8.23982614
+1175 2 -1.04034270 16.47965228 0.00000000 10.29978268
+1176 2 -1.04034270 18.53960882 2.05995654 10.29978268
+1177 2 -1.04034270 10.29978268 0.00000000 4.11991307
+1178 2 -1.04034270 8.23982614 2.05995654 4.11991307
+1179 2 -1.04034270 8.23982614 0.00000000 6.17986961
+1180 2 -1.04034270 10.29978268 2.05995654 6.17986961
+1181 2 -1.04034270 18.53960882 0.00000000 12.35973921
+1182 2 -1.04034270 16.47965228 2.05995654 12.35973921
+1183 2 -1.04034270 16.47965228 0.00000000 14.41969575
+1184 2 -1.04034270 18.53960882 2.05995654 14.41969575
+1185 2 -1.04034270 2.05995654 12.35973921 0.00000000
+1186 2 -1.04034270 0.00000000 14.41969575 0.00000000
+1187 2 -1.04034270 0.00000000 12.35973921 2.05995654
+1188 2 -1.04034270 2.05995654 14.41969575 2.05995654
+1189 2 -1.04034270 18.53960882 0.00000000 16.47965228
+1190 2 -1.04034270 16.47965228 2.05995654 16.47965228
+1191 2 -1.04034270 16.47965228 0.00000000 18.53960882
+1192 2 -1.04034270 18.53960882 2.05995654 18.53960882
+1193 2 -1.04034270 10.29978268 0.00000000 8.23982614
+1194 2 -1.04034270 8.23982614 2.05995654 8.23982614
+1195 2 -1.04034270 8.23982614 0.00000000 10.29978268
+1196 2 -1.04034270 10.29978268 2.05995654 10.29978268
+1197 2 -1.04034270 18.53960882 0.00000000 20.59956535
+1198 2 -1.04034270 16.47965228 2.05995654 20.59956535
+1199 2 -1.04034270 16.47965228 0.00000000 22.65952189
+1200 2 -1.04034270 18.53960882 2.05995654 22.65952189
+1201 2 -1.04034270 6.17986961 0.00000000 4.11991307
+1202 2 -1.04034270 4.11991307 2.05995654 4.11991307
+1203 2 -1.04034270 4.11991307 0.00000000 6.17986961
+1204 2 -1.04034270 6.17986961 2.05995654 6.17986961
+1205 2 -1.04034270 18.53960882 4.11991307 0.00000000
+1206 2 -1.04034270 16.47965228 6.17986961 0.00000000
+1207 2 -1.04034270 16.47965228 4.11991307 2.05995654
+1208 2 -1.04034270 18.53960882 6.17986961 2.05995654
+1209 2 -1.04034270 10.29978268 0.00000000 12.35973921
+1210 2 -1.04034270 8.23982614 2.05995654 12.35973921
+1211 2 -1.04034270 8.23982614 0.00000000 14.41969575
+1212 2 -1.04034270 10.29978268 2.05995654 14.41969575
+1213 2 -1.04034270 18.53960882 4.11991307 4.11991307
+1214 2 -1.04034270 16.47965228 6.17986961 4.11991307
+1215 2 -1.04034270 16.47965228 4.11991307 6.17986961
+1216 2 -1.04034270 18.53960882 6.17986961 6.17986961
+1217 2 -1.04034270 2.05995654 4.11991307 12.35973921
+1218 2 -1.04034270 0.00000000 6.17986961 12.35973921
+1219 2 -1.04034270 0.00000000 4.11991307 14.41969575
+1220 2 -1.04034270 2.05995654 6.17986961 14.41969575
+1221 2 -1.04034270 18.53960882 4.11991307 8.23982614
+1222 2 -1.04034270 16.47965228 6.17986961 8.23982614
+1223 2 -1.04034270 16.47965228 4.11991307 10.29978268
+1224 2 -1.04034270 18.53960882 6.17986961 10.29978268
+1225 2 -1.04034270 10.29978268 0.00000000 16.47965228
+1226 2 -1.04034270 8.23982614 2.05995654 16.47965228
+1227 2 -1.04034270 8.23982614 0.00000000 18.53960882
+1228 2 -1.04034270 10.29978268 2.05995654 18.53960882
+1229 2 -1.04034270 18.53960882 4.11991307 12.35973921
+1230 2 -1.04034270 16.47965228 6.17986961 12.35973921
+1231 2 -1.04034270 16.47965228 4.11991307 14.41969575
+1232 2 -1.04034270 18.53960882 6.17986961 14.41969575
+1233 2 -1.04034270 6.17986961 0.00000000 8.23982614
+1234 2 -1.04034270 4.11991307 2.05995654 8.23982614
+1235 2 -1.04034270 4.11991307 0.00000000 10.29978268
+1236 2 -1.04034270 6.17986961 2.05995654 10.29978268
+1237 2 -1.04034270 18.53960882 4.11991307 16.47965228
+1238 2 -1.04034270 16.47965228 6.17986961 16.47965228
+1239 2 -1.04034270 16.47965228 4.11991307 18.53960882
+1240 2 -1.04034270 18.53960882 6.17986961 18.53960882
+1241 2 -1.04034270 10.29978268 0.00000000 20.59956535
+1242 2 -1.04034270 8.23982614 2.05995654 20.59956535
+1243 2 -1.04034270 8.23982614 0.00000000 22.65952189
+1244 2 -1.04034270 10.29978268 2.05995654 22.65952189
+1245 2 -1.04034270 18.53960882 4.11991307 20.59956535
+1246 2 -1.04034270 16.47965228 6.17986961 20.59956535
+1247 2 -1.04034270 16.47965228 4.11991307 22.65952189
+1248 2 -1.04034270 18.53960882 6.17986961 22.65952189
+1249 2 -1.04034270 2.05995654 12.35973921 4.11991307
+1250 2 -1.04034270 0.00000000 14.41969575 4.11991307
+1251 2 -1.04034270 0.00000000 12.35973921 6.17986961
+1252 2 -1.04034270 2.05995654 14.41969575 6.17986961
+1253 2 -1.04034270 18.53960882 8.23982614 0.00000000
+1254 2 -1.04034270 16.47965228 10.29978268 0.00000000
+1255 2 -1.04034270 16.47965228 8.23982614 2.05995654
+1256 2 -1.04034270 18.53960882 10.29978268 2.05995654
+1257 2 -1.04034270 10.29978268 4.11991307 0.00000000
+1258 2 -1.04034270 8.23982614 6.17986961 0.00000000
+1259 2 -1.04034270 8.23982614 4.11991307 2.05995654
+1260 2 -1.04034270 10.29978268 6.17986961 2.05995654
+1261 2 -1.04034270 18.53960882 8.23982614 4.11991307
+1262 2 -1.04034270 16.47965228 10.29978268 4.11991307
+1263 2 -1.04034270 16.47965228 8.23982614 6.17986961
+1264 2 -1.04034270 18.53960882 10.29978268 6.17986961
+1265 2 -1.04034270 6.17986961 0.00000000 12.35973921
+1266 2 -1.04034270 4.11991307 2.05995654 12.35973921
+1267 2 -1.04034270 4.11991307 0.00000000 14.41969575
+1268 2 -1.04034270 6.17986961 2.05995654 14.41969575
+1269 2 -1.04034270 18.53960882 8.23982614 8.23982614
+1270 2 -1.04034270 16.47965228 10.29978268 8.23982614
+1271 2 -1.04034270 16.47965228 8.23982614 10.29978268
+1272 2 -1.04034270 18.53960882 10.29978268 10.29978268
+1273 2 -1.04034270 10.29978268 4.11991307 4.11991307
+1274 2 -1.04034270 8.23982614 6.17986961 4.11991307
+1275 2 -1.04034270 8.23982614 4.11991307 6.17986961
+1276 2 -1.04034270 10.29978268 6.17986961 6.17986961
+1277 2 -1.04034270 18.53960882 8.23982614 12.35973921
+1278 2 -1.04034270 16.47965228 10.29978268 12.35973921
+1279 2 -1.04034270 16.47965228 8.23982614 14.41969575
+1280 2 -1.04034270 18.53960882 10.29978268 14.41969575
+1281 2 -1.04034270 2.05995654 0.00000000 8.23982614
+1282 2 -1.04034270 0.00000000 2.05995654 8.23982614
+1283 2 -1.04034270 0.00000000 0.00000000 10.29978268
+1284 2 -1.04034270 2.05995654 2.05995654 10.29978268
+1285 2 -1.04034270 18.53960882 8.23982614 16.47965228
+1286 2 -1.04034270 16.47965228 10.29978268 16.47965228
+1287 2 -1.04034270 16.47965228 8.23982614 18.53960882
+1288 2 -1.04034270 18.53960882 10.29978268 18.53960882
+1289 2 -1.04034270 10.29978268 4.11991307 8.23982614
+1290 2 -1.04034270 8.23982614 6.17986961 8.23982614
+1291 2 -1.04034270 8.23982614 4.11991307 10.29978268
+1292 2 -1.04034270 10.29978268 6.17986961 10.29978268
+1293 2 -1.04034270 18.53960882 8.23982614 20.59956535
+1294 2 -1.04034270 16.47965228 10.29978268 20.59956535
+1295 2 -1.04034270 16.47965228 8.23982614 22.65952189
+1296 2 -1.04034270 18.53960882 10.29978268 22.65952189
+1297 2 -1.04034270 6.17986961 0.00000000 16.47965228
+1298 2 -1.04034270 4.11991307 2.05995654 16.47965228
+1299 2 -1.04034270 4.11991307 0.00000000 18.53960882
+1300 2 -1.04034270 6.17986961 2.05995654 18.53960882
+1301 2 -1.04034270 18.53960882 12.35973921 0.00000000
+1302 2 -1.04034270 16.47965228 14.41969575 0.00000000
+1303 2 -1.04034270 16.47965228 12.35973921 2.05995654
+1304 2 -1.04034270 18.53960882 14.41969575 2.05995654
+1305 2 -1.04034270 10.29978268 4.11991307 12.35973921
+1306 2 -1.04034270 8.23982614 6.17986961 12.35973921
+1307 2 -1.04034270 8.23982614 4.11991307 14.41969575
+1308 2 -1.04034270 10.29978268 6.17986961 14.41969575
+1309 2 -1.04034270 18.53960882 12.35973921 4.11991307
+1310 2 -1.04034270 16.47965228 14.41969575 4.11991307
+1311 2 -1.04034270 16.47965228 12.35973921 6.17986961
+1312 2 -1.04034270 18.53960882 14.41969575 6.17986961
+1313 2 -1.04034270 2.05995654 12.35973921 8.23982614
+1314 2 -1.04034270 0.00000000 14.41969575 8.23982614
+1315 2 -1.04034270 0.00000000 12.35973921 10.29978268
+1316 2 -1.04034270 2.05995654 14.41969575 10.29978268
+1317 2 -1.04034270 18.53960882 12.35973921 8.23982614
+1318 2 -1.04034270 16.47965228 14.41969575 8.23982614
+1319 2 -1.04034270 16.47965228 12.35973921 10.29978268
+1320 2 -1.04034270 18.53960882 14.41969575 10.29978268
+1321 2 -1.04034270 10.29978268 4.11991307 16.47965228
+1322 2 -1.04034270 8.23982614 6.17986961 16.47965228
+1323 2 -1.04034270 8.23982614 4.11991307 18.53960882
+1324 2 -1.04034270 10.29978268 6.17986961 18.53960882
+1325 2 -1.04034270 18.53960882 12.35973921 12.35973921
+1326 2 -1.04034270 16.47965228 14.41969575 12.35973921
+1327 2 -1.04034270 16.47965228 12.35973921 14.41969575
+1328 2 -1.04034270 18.53960882 14.41969575 14.41969575
+1329 2 -1.04034270 6.17986961 0.00000000 20.59956535
+1330 2 -1.04034270 4.11991307 2.05995654 20.59956535
+1331 2 -1.04034270 4.11991307 0.00000000 22.65952189
+1332 2 -1.04034270 6.17986961 2.05995654 22.65952189
+1333 2 -1.04034270 18.53960882 12.35973921 16.47965228
+1334 2 -1.04034270 16.47965228 14.41969575 16.47965228
+1335 2 -1.04034270 16.47965228 12.35973921 18.53960882
+1336 2 -1.04034270 18.53960882 14.41969575 18.53960882
+1337 2 -1.04034270 10.29978268 4.11991307 20.59956535
+1338 2 -1.04034270 8.23982614 6.17986961 20.59956535
+1339 2 -1.04034270 8.23982614 4.11991307 22.65952189
+1340 2 -1.04034270 10.29978268 6.17986961 22.65952189
+1341 2 -1.04034270 18.53960882 12.35973921 20.59956535
+1342 2 -1.04034270 16.47965228 14.41969575 20.59956535
+1343 2 -1.04034270 16.47965228 12.35973921 22.65952189
+1344 2 -1.04034270 18.53960882 14.41969575 22.65952189
+1345 2 -1.04034270 2.05995654 4.11991307 16.47965228
+1346 2 -1.04034270 0.00000000 6.17986961 16.47965228
+1347 2 -1.04034270 0.00000000 4.11991307 18.53960882
+1348 2 -1.04034270 2.05995654 6.17986961 18.53960882
+1349 2 -1.04034270 18.53960882 16.47965228 0.00000000
+1350 2 -1.04034270 16.47965228 18.53960882 0.00000000
+1351 2 -1.04034270 16.47965228 16.47965228 2.05995654
+1352 2 -1.04034270 18.53960882 18.53960882 2.05995654
+1353 2 -1.04034270 10.29978268 8.23982614 0.00000000
+1354 2 -1.04034270 8.23982614 10.29978268 0.00000000
+1355 2 -1.04034270 8.23982614 8.23982614 2.05995654
+1356 2 -1.04034270 10.29978268 10.29978268 2.05995654
+1357 2 -1.04034270 18.53960882 16.47965228 4.11991307
+1358 2 -1.04034270 16.47965228 18.53960882 4.11991307
+1359 2 -1.04034270 16.47965228 16.47965228 6.17986961
+1360 2 -1.04034270 18.53960882 18.53960882 6.17986961
+1361 2 -1.04034270 6.17986961 4.11991307 0.00000000
+1362 2 -1.04034270 4.11991307 6.17986961 0.00000000
+1363 2 -1.04034270 4.11991307 4.11991307 2.05995654
+1364 2 -1.04034270 6.17986961 6.17986961 2.05995654
+1365 2 -1.04034270 18.53960882 16.47965228 8.23982614
+1366 2 -1.04034270 16.47965228 18.53960882 8.23982614
+1367 2 -1.04034270 16.47965228 16.47965228 10.29978268
+1368 2 -1.04034270 18.53960882 18.53960882 10.29978268
+1369 2 -1.04034270 10.29978268 8.23982614 4.11991307
+1370 2 -1.04034270 8.23982614 10.29978268 4.11991307
+1371 2 -1.04034270 8.23982614 8.23982614 6.17986961
+1372 2 -1.04034270 10.29978268 10.29978268 6.17986961
+1373 2 -1.04034270 18.53960882 16.47965228 12.35973921
+1374 2 -1.04034270 16.47965228 18.53960882 12.35973921
+1375 2 -1.04034270 16.47965228 16.47965228 14.41969575
+1376 2 -1.04034270 18.53960882 18.53960882 14.41969575
+1377 2 -1.04034270 2.05995654 12.35973921 12.35973921
+1378 2 -1.04034270 0.00000000 14.41969575 12.35973921
+1379 2 -1.04034270 0.00000000 12.35973921 14.41969575
+1380 2 -1.04034270 2.05995654 14.41969575 14.41969575
+1381 2 -1.04034270 18.53960882 16.47965228 16.47965228
+1382 2 -1.04034270 16.47965228 18.53960882 16.47965228
+1383 2 -1.04034270 16.47965228 16.47965228 18.53960882
+1384 2 -1.04034270 18.53960882 18.53960882 18.53960882
+1385 2 -1.04034270 10.29978268 8.23982614 8.23982614
+1386 2 -1.04034270 8.23982614 10.29978268 8.23982614
+1387 2 -1.04034270 8.23982614 8.23982614 10.29978268
+1388 2 -1.04034270 10.29978268 10.29978268 10.29978268
+1389 2 -1.04034270 18.53960882 16.47965228 20.59956535
+1390 2 -1.04034270 16.47965228 18.53960882 20.59956535
+1391 2 -1.04034270 16.47965228 16.47965228 22.65952189
+1392 2 -1.04034270 18.53960882 18.53960882 22.65952189
+1393 2 -1.04034270 6.17986961 4.11991307 4.11991307
+1394 2 -1.04034270 4.11991307 6.17986961 4.11991307
+1395 2 -1.04034270 4.11991307 4.11991307 6.17986961
+1396 2 -1.04034270 6.17986961 6.17986961 6.17986961
+1397 2 -1.04034270 18.53960882 20.59956535 0.00000000
+1398 2 -1.04034270 16.47965228 22.65952189 0.00000000
+1399 2 -1.04034270 16.47965228 20.59956535 2.05995654
+1400 2 -1.04034270 18.53960882 22.65952189 2.05995654
+1401 2 -1.04034270 10.29978268 8.23982614 12.35973921
+1402 2 -1.04034270 8.23982614 10.29978268 12.35973921
+1403 2 -1.04034270 8.23982614 8.23982614 14.41969575
+1404 2 -1.04034270 10.29978268 10.29978268 14.41969575
+1405 2 -1.04034270 18.53960882 20.59956535 4.11991307
+1406 2 -1.04034270 16.47965228 22.65952189 4.11991307
+1407 2 -1.04034270 16.47965228 20.59956535 6.17986961
+1408 2 -1.04034270 18.53960882 22.65952189 6.17986961
+1409 2 -1.04034270 2.05995654 0.00000000 20.59956535
+1410 2 -1.04034270 0.00000000 2.05995654 20.59956535
+1411 2 -1.04034270 0.00000000 0.00000000 22.65952189
+1412 2 -1.04034270 2.05995654 2.05995654 22.65952189
+1413 2 -1.04034270 18.53960882 20.59956535 8.23982614
+1414 2 -1.04034270 16.47965228 22.65952189 8.23982614
+1415 2 -1.04034270 16.47965228 20.59956535 10.29978268
+1416 2 -1.04034270 18.53960882 22.65952189 10.29978268
+1417 2 -1.04034270 10.29978268 8.23982614 16.47965228
+1418 2 -1.04034270 8.23982614 10.29978268 16.47965228
+1419 2 -1.04034270 8.23982614 8.23982614 18.53960882
+1420 2 -1.04034270 10.29978268 10.29978268 18.53960882
+1421 2 -1.04034270 18.53960882 20.59956535 12.35973921
+1422 2 -1.04034270 16.47965228 22.65952189 12.35973921
+1423 2 -1.04034270 16.47965228 20.59956535 14.41969575
+1424 2 -1.04034270 18.53960882 22.65952189 14.41969575
+1425 2 -1.04034270 6.17986961 4.11991307 8.23982614
+1426 2 -1.04034270 4.11991307 6.17986961 8.23982614
+1427 2 -1.04034270 4.11991307 4.11991307 10.29978268
+1428 2 -1.04034270 6.17986961 6.17986961 10.29978268
+1429 2 -1.04034270 18.53960882 20.59956535 16.47965228
+1430 2 -1.04034270 16.47965228 22.65952189 16.47965228
+1431 2 -1.04034270 16.47965228 20.59956535 18.53960882
+1432 2 -1.04034270 18.53960882 22.65952189 18.53960882
+1433 2 -1.04034270 10.29978268 8.23982614 20.59956535
+1434 2 -1.04034270 8.23982614 10.29978268 20.59956535
+1435 2 -1.04034270 8.23982614 8.23982614 22.65952189
+1436 2 -1.04034270 10.29978268 10.29978268 22.65952189
+1437 2 -1.04034270 18.53960882 20.59956535 20.59956535
+1438 2 -1.04034270 16.47965228 22.65952189 20.59956535
+1439 2 -1.04034270 16.47965228 20.59956535 22.65952189
+1440 2 -1.04034270 18.53960882 22.65952189 22.65952189
+1441 2 -1.04034270 2.05995654 12.35973921 16.47965228
+1442 2 -1.04034270 0.00000000 14.41969575 16.47965228
+1443 2 -1.04034270 0.00000000 12.35973921 18.53960882
+1444 2 -1.04034270 2.05995654 14.41969575 18.53960882
+1445 2 -1.04034270 22.65952189 0.00000000 0.00000000
+1446 2 -1.04034270 20.59956535 2.05995654 0.00000000
+1447 2 -1.04034270 20.59956535 0.00000000 2.05995654
+1448 2 -1.04034270 22.65952189 2.05995654 2.05995654
+1449 2 -1.04034270 10.29978268 12.35973921 0.00000000
+1450 2 -1.04034270 8.23982614 14.41969575 0.00000000
+1451 2 -1.04034270 8.23982614 12.35973921 2.05995654
+1452 2 -1.04034270 10.29978268 14.41969575 2.05995654
+1453 2 -1.04034270 22.65952189 0.00000000 4.11991307
+1454 2 -1.04034270 20.59956535 2.05995654 4.11991307
+1455 2 -1.04034270 20.59956535 0.00000000 6.17986961
+1456 2 -1.04034270 22.65952189 2.05995654 6.17986961
+1457 2 -1.04034270 6.17986961 4.11991307 12.35973921
+1458 2 -1.04034270 4.11991307 6.17986961 12.35973921
+1459 2 -1.04034270 4.11991307 4.11991307 14.41969575
+1460 2 -1.04034270 6.17986961 6.17986961 14.41969575
+1461 2 -1.04034270 22.65952189 0.00000000 8.23982614
+1462 2 -1.04034270 20.59956535 2.05995654 8.23982614
+1463 2 -1.04034270 20.59956535 0.00000000 10.29978268
+1464 2 -1.04034270 22.65952189 2.05995654 10.29978268
+1465 2 -1.04034270 10.29978268 12.35973921 4.11991307
+1466 2 -1.04034270 8.23982614 14.41969575 4.11991307
+1467 2 -1.04034270 8.23982614 12.35973921 6.17986961
+1468 2 -1.04034270 10.29978268 14.41969575 6.17986961
+1469 2 -1.04034270 22.65952189 0.00000000 12.35973921
+1470 2 -1.04034270 20.59956535 2.05995654 12.35973921
+1471 2 -1.04034270 20.59956535 0.00000000 14.41969575
+1472 2 -1.04034270 22.65952189 2.05995654 14.41969575
+1473 2 -1.04034270 2.05995654 4.11991307 20.59956535
+1474 2 -1.04034270 0.00000000 6.17986961 20.59956535
+1475 2 -1.04034270 0.00000000 4.11991307 22.65952189
+1476 2 -1.04034270 2.05995654 6.17986961 22.65952189
+1477 2 -1.04034270 22.65952189 0.00000000 16.47965228
+1478 2 -1.04034270 20.59956535 2.05995654 16.47965228
+1479 2 -1.04034270 20.59956535 0.00000000 18.53960882
+1480 2 -1.04034270 22.65952189 2.05995654 18.53960882
+1481 2 -1.04034270 10.29978268 12.35973921 8.23982614
+1482 2 -1.04034270 8.23982614 14.41969575 8.23982614
+1483 2 -1.04034270 8.23982614 12.35973921 10.29978268
+1484 2 -1.04034270 10.29978268 14.41969575 10.29978268
+1485 2 -1.04034270 22.65952189 0.00000000 20.59956535
+1486 2 -1.04034270 20.59956535 2.05995654 20.59956535
+1487 2 -1.04034270 20.59956535 0.00000000 22.65952189
+1488 2 -1.04034270 22.65952189 2.05995654 22.65952189
+1489 2 -1.04034270 6.17986961 4.11991307 16.47965228
+1490 2 -1.04034270 4.11991307 6.17986961 16.47965228
+1491 2 -1.04034270 4.11991307 4.11991307 18.53960882
+1492 2 -1.04034270 6.17986961 6.17986961 18.53960882
+1493 2 -1.04034270 22.65952189 4.11991307 0.00000000
+1494 2 -1.04034270 20.59956535 6.17986961 0.00000000
+1495 2 -1.04034270 20.59956535 4.11991307 2.05995654
+1496 2 -1.04034270 22.65952189 6.17986961 2.05995654
+1497 2 -1.04034270 10.29978268 12.35973921 12.35973921
+1498 2 -1.04034270 8.23982614 14.41969575 12.35973921
+1499 2 -1.04034270 8.23982614 12.35973921 14.41969575
+1500 2 -1.04034270 10.29978268 14.41969575 14.41969575
+1501 2 -1.04034270 22.65952189 4.11991307 4.11991307
+1502 2 -1.04034270 20.59956535 6.17986961 4.11991307
+1503 2 -1.04034270 20.59956535 4.11991307 6.17986961
+1504 2 -1.04034270 22.65952189 6.17986961 6.17986961
+1505 2 -1.04034270 2.05995654 12.35973921 20.59956535
+1506 2 -1.04034270 0.00000000 14.41969575 20.59956535
+1507 2 -1.04034270 0.00000000 12.35973921 22.65952189
+1508 2 -1.04034270 2.05995654 14.41969575 22.65952189
+1509 2 -1.04034270 22.65952189 4.11991307 8.23982614
+1510 2 -1.04034270 20.59956535 6.17986961 8.23982614
+1511 2 -1.04034270 20.59956535 4.11991307 10.29978268
+1512 2 -1.04034270 22.65952189 6.17986961 10.29978268
+1513 2 -1.04034270 10.29978268 12.35973921 16.47965228
+1514 2 -1.04034270 8.23982614 14.41969575 16.47965228
+1515 2 -1.04034270 8.23982614 12.35973921 18.53960882
+1516 2 -1.04034270 10.29978268 14.41969575 18.53960882
+1517 2 -1.04034270 22.65952189 4.11991307 12.35973921
+1518 2 -1.04034270 20.59956535 6.17986961 12.35973921
+1519 2 -1.04034270 20.59956535 4.11991307 14.41969575
+1520 2 -1.04034270 22.65952189 6.17986961 14.41969575
+1521 2 -1.04034270 6.17986961 4.11991307 20.59956535
+1522 2 -1.04034270 4.11991307 6.17986961 20.59956535
+1523 2 -1.04034270 4.11991307 4.11991307 22.65952189
+1524 2 -1.04034270 6.17986961 6.17986961 22.65952189
+1525 2 -1.04034270 22.65952189 4.11991307 16.47965228
+1526 2 -1.04034270 20.59956535 6.17986961 16.47965228
+1527 2 -1.04034270 20.59956535 4.11991307 18.53960882
+1528 2 -1.04034270 22.65952189 6.17986961 18.53960882
+1529 2 -1.04034270 10.29978268 12.35973921 20.59956535
+1530 2 -1.04034270 8.23982614 14.41969575 20.59956535
+1531 2 -1.04034270 8.23982614 12.35973921 22.65952189
+1532 2 -1.04034270 10.29978268 14.41969575 22.65952189
+1533 2 -1.04034270 22.65952189 4.11991307 20.59956535
+1534 2 -1.04034270 20.59956535 6.17986961 20.59956535
+1535 2 -1.04034270 20.59956535 4.11991307 22.65952189
+1536 2 -1.04034270 22.65952189 6.17986961 22.65952189
+1537 2 -1.04034270 2.05995654 0.00000000 4.11991307
+1538 2 -1.04034270 0.00000000 2.05995654 4.11991307
+1539 2 -1.04034270 0.00000000 0.00000000 6.17986961
+1540 2 -1.04034270 2.05995654 2.05995654 6.17986961
+1541 2 -1.04034270 22.65952189 8.23982614 0.00000000
+1542 2 -1.04034270 20.59956535 10.29978268 0.00000000
+1543 2 -1.04034270 20.59956535 8.23982614 2.05995654
+1544 2 -1.04034270 22.65952189 10.29978268 2.05995654
+1545 2 -1.04034270 10.29978268 16.47965228 0.00000000
+1546 2 -1.04034270 8.23982614 18.53960882 0.00000000
+1547 2 -1.04034270 8.23982614 16.47965228 2.05995654
+1548 2 -1.04034270 10.29978268 18.53960882 2.05995654
+1549 2 -1.04034270 22.65952189 8.23982614 4.11991307
+1550 2 -1.04034270 20.59956535 10.29978268 4.11991307
+1551 2 -1.04034270 20.59956535 8.23982614 6.17986961
+1552 2 -1.04034270 22.65952189 10.29978268 6.17986961
+1553 2 -1.04034270 6.17986961 8.23982614 0.00000000
+1554 2 -1.04034270 4.11991307 10.29978268 0.00000000
+1555 2 -1.04034270 4.11991307 8.23982614 2.05995654
+1556 2 -1.04034270 6.17986961 10.29978268 2.05995654
+1557 2 -1.04034270 22.65952189 8.23982614 8.23982614
+1558 2 -1.04034270 20.59956535 10.29978268 8.23982614
+1559 2 -1.04034270 20.59956535 8.23982614 10.29978268
+1560 2 -1.04034270 22.65952189 10.29978268 10.29978268
+1561 2 -1.04034270 10.29978268 16.47965228 4.11991307
+1562 2 -1.04034270 8.23982614 18.53960882 4.11991307
+1563 2 -1.04034270 8.23982614 16.47965228 6.17986961
+1564 2 -1.04034270 10.29978268 18.53960882 6.17986961
+1565 2 -1.04034270 22.65952189 8.23982614 12.35973921
+1566 2 -1.04034270 20.59956535 10.29978268 12.35973921
+1567 2 -1.04034270 20.59956535 8.23982614 14.41969575
+1568 2 -1.04034270 22.65952189 10.29978268 14.41969575
+1569 2 -1.04034270 2.05995654 16.47965228 0.00000000
+1570 2 -1.04034270 0.00000000 18.53960882 0.00000000
+1571 2 -1.04034270 0.00000000 16.47965228 2.05995654
+1572 2 -1.04034270 2.05995654 18.53960882 2.05995654
+1573 2 -1.04034270 22.65952189 8.23982614 16.47965228
+1574 2 -1.04034270 20.59956535 10.29978268 16.47965228
+1575 2 -1.04034270 20.59956535 8.23982614 18.53960882
+1576 2 -1.04034270 22.65952189 10.29978268 18.53960882
+1577 2 -1.04034270 10.29978268 16.47965228 8.23982614
+1578 2 -1.04034270 8.23982614 18.53960882 8.23982614
+1579 2 -1.04034270 8.23982614 16.47965228 10.29978268
+1580 2 -1.04034270 10.29978268 18.53960882 10.29978268
+1581 2 -1.04034270 22.65952189 8.23982614 20.59956535
+1582 2 -1.04034270 20.59956535 10.29978268 20.59956535
+1583 2 -1.04034270 20.59956535 8.23982614 22.65952189
+1584 2 -1.04034270 22.65952189 10.29978268 22.65952189
+1585 2 -1.04034270 6.17986961 8.23982614 4.11991307
+1586 2 -1.04034270 4.11991307 10.29978268 4.11991307
+1587 2 -1.04034270 4.11991307 8.23982614 6.17986961
+1588 2 -1.04034270 6.17986961 10.29978268 6.17986961
+1589 2 -1.04034270 22.65952189 12.35973921 0.00000000
+1590 2 -1.04034270 20.59956535 14.41969575 0.00000000
+1591 2 -1.04034270 20.59956535 12.35973921 2.05995654
+1592 2 -1.04034270 22.65952189 14.41969575 2.05995654
+1593 2 -1.04034270 10.29978268 16.47965228 12.35973921
+1594 2 -1.04034270 8.23982614 18.53960882 12.35973921
+1595 2 -1.04034270 8.23982614 16.47965228 14.41969575
+1596 2 -1.04034270 10.29978268 18.53960882 14.41969575
+1597 2 -1.04034270 22.65952189 12.35973921 4.11991307
+1598 2 -1.04034270 20.59956535 14.41969575 4.11991307
+1599 2 -1.04034270 20.59956535 12.35973921 6.17986961
+1600 2 -1.04034270 22.65952189 14.41969575 6.17986961
+1601 2 -1.04034270 2.05995654 8.23982614 0.00000000
+1602 2 -1.04034270 0.00000000 10.29978268 0.00000000
+1603 2 -1.04034270 0.00000000 8.23982614 2.05995654
+1604 2 -1.04034270 2.05995654 10.29978268 2.05995654
+1605 2 -1.04034270 22.65952189 12.35973921 8.23982614
+1606 2 -1.04034270 20.59956535 14.41969575 8.23982614
+1607 2 -1.04034270 20.59956535 12.35973921 10.29978268
+1608 2 -1.04034270 22.65952189 14.41969575 10.29978268
+1609 2 -1.04034270 10.29978268 16.47965228 16.47965228
+1610 2 -1.04034270 8.23982614 18.53960882 16.47965228
+1611 2 -1.04034270 8.23982614 16.47965228 18.53960882
+1612 2 -1.04034270 10.29978268 18.53960882 18.53960882
+1613 2 -1.04034270 22.65952189 12.35973921 12.35973921
+1614 2 -1.04034270 20.59956535 14.41969575 12.35973921
+1615 2 -1.04034270 20.59956535 12.35973921 14.41969575
+1616 2 -1.04034270 22.65952189 14.41969575 14.41969575
+1617 2 -1.04034270 6.17986961 8.23982614 8.23982614
+1618 2 -1.04034270 4.11991307 10.29978268 8.23982614
+1619 2 -1.04034270 4.11991307 8.23982614 10.29978268
+1620 2 -1.04034270 6.17986961 10.29978268 10.29978268
+1621 2 -1.04034270 22.65952189 12.35973921 16.47965228
+1622 2 -1.04034270 20.59956535 14.41969575 16.47965228
+1623 2 -1.04034270 20.59956535 12.35973921 18.53960882
+1624 2 -1.04034270 22.65952189 14.41969575 18.53960882
+1625 2 -1.04034270 10.29978268 16.47965228 20.59956535
+1626 2 -1.04034270 8.23982614 18.53960882 20.59956535
+1627 2 -1.04034270 8.23982614 16.47965228 22.65952189
+1628 2 -1.04034270 10.29978268 18.53960882 22.65952189
+1629 2 -1.04034270 22.65952189 12.35973921 20.59956535
+1630 2 -1.04034270 20.59956535 14.41969575 20.59956535
+1631 2 -1.04034270 20.59956535 12.35973921 22.65952189
+1632 2 -1.04034270 22.65952189 14.41969575 22.65952189
+1633 2 -1.04034270 2.05995654 16.47965228 4.11991307
+1634 2 -1.04034270 0.00000000 18.53960882 4.11991307
+1635 2 -1.04034270 0.00000000 16.47965228 6.17986961
+1636 2 -1.04034270 2.05995654 18.53960882 6.17986961
+1637 2 -1.04034270 22.65952189 16.47965228 0.00000000
+1638 2 -1.04034270 20.59956535 18.53960882 0.00000000
+1639 2 -1.04034270 20.59956535 16.47965228 2.05995654
+1640 2 -1.04034270 22.65952189 18.53960882 2.05995654
+1641 2 -1.04034270 10.29978268 20.59956535 0.00000000
+1642 2 -1.04034270 8.23982614 22.65952189 0.00000000
+1643 2 -1.04034270 8.23982614 20.59956535 2.05995654
+1644 2 -1.04034270 10.29978268 22.65952189 2.05995654
+1645 2 -1.04034270 22.65952189 16.47965228 4.11991307
+1646 2 -1.04034270 20.59956535 18.53960882 4.11991307
+1647 2 -1.04034270 20.59956535 16.47965228 6.17986961
+1648 2 -1.04034270 22.65952189 18.53960882 6.17986961
+1649 2 -1.04034270 6.17986961 8.23982614 12.35973921
+1650 2 -1.04034270 4.11991307 10.29978268 12.35973921
+1651 2 -1.04034270 4.11991307 8.23982614 14.41969575
+1652 2 -1.04034270 6.17986961 10.29978268 14.41969575
+1653 2 -1.04034270 22.65952189 16.47965228 8.23982614
+1654 2 -1.04034270 20.59956535 18.53960882 8.23982614
+1655 2 -1.04034270 20.59956535 16.47965228 10.29978268
+1656 2 -1.04034270 22.65952189 18.53960882 10.29978268
+1657 2 -1.04034270 10.29978268 20.59956535 4.11991307
+1658 2 -1.04034270 8.23982614 22.65952189 4.11991307
+1659 2 -1.04034270 8.23982614 20.59956535 6.17986961
+1660 2 -1.04034270 10.29978268 22.65952189 6.17986961
+1661 2 -1.04034270 22.65952189 16.47965228 12.35973921
+1662 2 -1.04034270 20.59956535 18.53960882 12.35973921
+1663 2 -1.04034270 20.59956535 16.47965228 14.41969575
+1664 2 -1.04034270 22.65952189 18.53960882 14.41969575
+1665 2 -1.04034270 2.05995654 4.11991307 0.00000000
+1666 2 -1.04034270 0.00000000 6.17986961 0.00000000
+1667 2 -1.04034270 0.00000000 4.11991307 2.05995654
+1668 2 -1.04034270 2.05995654 6.17986961 2.05995654
+1669 2 -1.04034270 22.65952189 16.47965228 16.47965228
+1670 2 -1.04034270 20.59956535 18.53960882 16.47965228
+1671 2 -1.04034270 20.59956535 16.47965228 18.53960882
+1672 2 -1.04034270 22.65952189 18.53960882 18.53960882
+1673 2 -1.04034270 10.29978268 20.59956535 8.23982614
+1674 2 -1.04034270 8.23982614 22.65952189 8.23982614
+1675 2 -1.04034270 8.23982614 20.59956535 10.29978268
+1676 2 -1.04034270 10.29978268 22.65952189 10.29978268
+1677 2 -1.04034270 22.65952189 16.47965228 20.59956535
+1678 2 -1.04034270 20.59956535 18.53960882 20.59956535
+1679 2 -1.04034270 20.59956535 16.47965228 22.65952189
+1680 2 -1.04034270 22.65952189 18.53960882 22.65952189
+1681 2 -1.04034270 6.17986961 8.23982614 16.47965228
+1682 2 -1.04034270 4.11991307 10.29978268 16.47965228
+1683 2 -1.04034270 4.11991307 8.23982614 18.53960882
+1684 2 -1.04034270 6.17986961 10.29978268 18.53960882
+1685 2 -1.04034270 22.65952189 20.59956535 0.00000000
+1686 2 -1.04034270 20.59956535 22.65952189 0.00000000
+1687 2 -1.04034270 20.59956535 20.59956535 2.05995654
+1688 2 -1.04034270 22.65952189 22.65952189 2.05995654
+1689 2 -1.04034270 10.29978268 20.59956535 12.35973921
+1690 2 -1.04034270 8.23982614 22.65952189 12.35973921
+1691 2 -1.04034270 8.23982614 20.59956535 14.41969575
+1692 2 -1.04034270 10.29978268 22.65952189 14.41969575
+1693 2 -1.04034270 22.65952189 20.59956535 4.11991307
+1694 2 -1.04034270 20.59956535 22.65952189 4.11991307
+1695 2 -1.04034270 20.59956535 20.59956535 6.17986961
+1696 2 -1.04034270 22.65952189 22.65952189 6.17986961
+1697 2 -1.04034270 2.05995654 16.47965228 8.23982614
+1698 2 -1.04034270 0.00000000 18.53960882 8.23982614
+1699 2 -1.04034270 0.00000000 16.47965228 10.29978268
+1700 2 -1.04034270 2.05995654 18.53960882 10.29978268
+1701 2 -1.04034270 22.65952189 20.59956535 8.23982614
+1702 2 -1.04034270 20.59956535 22.65952189 8.23982614
+1703 2 -1.04034270 20.59956535 20.59956535 10.29978268
+1704 2 -1.04034270 22.65952189 22.65952189 10.29978268
+1705 2 -1.04034270 10.29978268 20.59956535 16.47965228
+1706 2 -1.04034270 8.23982614 22.65952189 16.47965228
+1707 2 -1.04034270 8.23982614 20.59956535 18.53960882
+1708 2 -1.04034270 10.29978268 22.65952189 18.53960882
+1709 2 -1.04034270 22.65952189 20.59956535 12.35973921
+1710 2 -1.04034270 20.59956535 22.65952189 12.35973921
+1711 2 -1.04034270 20.59956535 20.59956535 14.41969575
+1712 2 -1.04034270 22.65952189 22.65952189 14.41969575
+1713 2 -1.04034270 6.17986961 8.23982614 20.59956535
+1714 2 -1.04034270 4.11991307 10.29978268 20.59956535
+1715 2 -1.04034270 4.11991307 8.23982614 22.65952189
+1716 2 -1.04034270 6.17986961 10.29978268 22.65952189
+1717 2 -1.04034270 22.65952189 20.59956535 16.47965228
+1718 2 -1.04034270 20.59956535 22.65952189 16.47965228
+1719 2 -1.04034270 20.59956535 20.59956535 18.53960882
+1720 2 -1.04034270 22.65952189 22.65952189 18.53960882
+1721 2 -1.04034270 10.29978268 20.59956535 20.59956535
+1722 2 -1.04034270 8.23982614 22.65952189 20.59956535
+1723 2 -1.04034270 8.23982614 20.59956535 22.65952189
+1724 2 -1.04034270 10.29978268 22.65952189 22.65952189
+1725 2 -1.04034270 22.65952189 20.59956535 20.59956535
+1726 2 -1.04034270 20.59956535 22.65952189 20.59956535
+1727 2 -1.04034270 20.59956535 20.59956535 22.65952189
+1728 2 -1.04034270 22.65952189 22.65952189 22.65952189
diff --git a/examples/streitz/in.ctip b/examples/streitz/in.ctip
new file mode 100644
index 0000000000..e6d53933b4
--- /dev/null
+++ b/examples/streitz/in.ctip
@@ -0,0 +1,43 @@
+#CTIP potential for NiO
+#Contributing author: Gabriel Plummer (NASA)
+
+#Initialize
+units metal
+atom_style charge
+dimension 3
+boundary p p p
+
+#Create Structure
+read_data data.ctip
+
+#Define Charges
+group type1 type 1
+compute charge1 type1 property/atom q
+compute q1 type1 reduce ave c_charge1
+group type2 type 2
+compute charge2 type2 property/atom q
+compute q2 type2 reduce ave c_charge2
+
+#Define Potential
+pair_style hybrid/overlay eam/fs coul/ctip 0.30 12.0
+pair_coeff * * eam/fs NiO.eam.fs Ni O
+pair_coeff * * coul/ctip NiO.ctip Ni O
+fix qeq all qeq/ctip 1 12.0 1.0e-8 100 coul/ctip cdamp 0.30 maxrepeat 10
+
+#Setup
+timestep 0.001
+thermo 100
+thermo_style custom step temp pe lx ly lz pxx pyy pzz c_q1 c_q2
+
+#Minimization
+fix relax all box/relax iso 0
+minimize 1e-10 1e-10 100000 100000
+unfix relax
+
+#Dynamics
+reset_timestep 0
+variable T equal 1000
+variable rnd equal round(random(0,999,${T}))
+velocity all create ${T} ${rnd} mom yes rot yes
+fix npt all npt temp ${T} ${T} 0.1 iso 0 0 1
+run 1000
diff --git a/examples/streitz/log.11Sep24.ctip.g++.1 b/examples/streitz/log.11Sep24.ctip.g++.1
new file mode 100644
index 0000000000..8ca0f4ccf2
--- /dev/null
+++ b/examples/streitz/log.11Sep24.ctip.g++.1
@@ -0,0 +1,186 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-269-g5a12c762f3-modified)
+OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
+ using 1 OpenMP thread(s) per MPI task
+#CTIP potential for NiO
+#Contributing author: Gabriel Plummer (NASA)
+
+#Initialize
+units metal
+atom_style charge
+dimension 3
+boundary p p p
+
+#Create Structure
+read_data data.ctip
+Reading data file ...
+ orthogonal box = (0 0 0) to (24.719478 24.719478 24.719478)
+ 1 by 1 by 1 MPI processor grid
+ reading atoms ...
+ 1728 atoms
+ read_data CPU = 0.004 seconds
+
+#Define Charges
+group type1 type 1
+864 atoms in group type1
+compute charge1 type1 property/atom q
+compute q1 type1 reduce ave c_charge1
+group type2 type 2
+864 atoms in group type2
+compute charge2 type2 property/atom q
+compute q2 type2 reduce ave c_charge2
+
+#Define Potential
+pair_style hybrid/overlay eam/fs coul/ctip 0.30 12.0
+pair_coeff * * eam/fs NiO.eam.fs Ni O
+Reading eam/fs potential file NiO.eam.fs with DATE: 2024-04-29
+pair_coeff * * coul/ctip NiO.ctip Ni O
+Reading coul/ctip potential file NiO.ctip with DATE: 2024-09-11
+fix qeq all qeq/ctip 1 12.0 1.0e-8 100 coul/ctip cdamp 0.30 maxrepeat 10
+
+#Setup
+timestep 0.001
+thermo 100
+thermo_style custom step temp pe lx ly lz pxx pyy pzz c_q1 c_q2
+
+#Minimization
+fix relax all box/relax iso 0
+minimize 1e-10 1e-10 100000 100000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419
+
+@Article{Gissinger24,
+ author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor},
+ title = {Type Label Framework for Bonded Force Fields in LAMMPS},
+ journal = {J. Phys. Chem. B},
+ year = 2024,
+ volume = 128,
+ number = 13,
+ pages = {3282–-3297}
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 14
+ ghost atom cutoff = 14
+ binsize = 7, bins = 4 4 4
+ 3 neighbor lists, perpetual/occasional/extra = 3 0 0
+ (1) pair eam/fs, perpetual, trim from (2)
+ attributes: half, newton on, cut 8
+ pair build: trim
+ stencil: none
+ bin: none
+ (2) pair coul/ctip, perpetual, half/full from (3)
+ attributes: half, newton on
+ pair build: halffull/newton
+ stencil: none
+ bin: none
+ (3) fix qeq/ctip, perpetual
+ attributes: full, newton on
+ pair build: full/bin/atomonly
+ stencil: full/bin/3d
+ bin: standard
+WARNING: Energy due to 1 extra global DOFs will be included in minimizer energies
+ (src/min.cpp:219)
+Per MPI rank memory allocation (min/avg/max) = 55.22 | 55.22 | 55.22 Mbytes
+ Step Temp PotEng Lx Ly Lz Pxx Pyy Pzz c_q1 c_q2
+ 0 0 -9633.183 24.719478 24.719478 24.719478 -1491.273 -1491.273 -1491.273 1.2374666 -1.2374666
+ 6 0 -9633.1929 24.707505 24.707505 24.707505 0.0050470506 0.0050470504 0.0050470502 1.2410908 -1.2410908
+Loop time of 1.04745 on 1 procs for 6 steps with 1728 atoms
+
+99.8% CPU use with 1 MPI tasks x 1 OpenMP threads
+
+Minimization stats:
+ Stopping criterion = energy tolerance
+ Energy initial, next-to-last, final =
+ -9633.18301850704 -9633.19294329023 -9633.19294333485
+ Force two-norm initial, final = 42.177998 0.00014264694
+ Force max component initial, final = 42.177998 0.00014260857
+ Final line search alpha, max atom move = 0.0079490417 1.1336014e-06
+ Iterations, force evaluations = 6 8
+
+MPI task timing breakdown:
+Section | min time | avg time | max time |%varavg| %total
+---------------------------------------------------------------
+Pair | 0.3534 | 0.3534 | 0.3534 | 0.0 | 33.74
+Neigh | 0 | 0 | 0 | 0.0 | 0.00
+Comm | 0.0004205 | 0.0004205 | 0.0004205 | 0.0 | 0.04
+Output | 0 | 0 | 0 | 0.0 | 0.00
+Modify | 0.69216 | 0.69216 | 0.69216 | 0.0 | 66.08
+Other | | 0.001461 | | | 0.14
+
+Nlocal: 1728 ave 1728 max 1728 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 13897 ave 13897 max 13897 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 216000 ave 216000 max 216000 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+FullNghs: 2.34317e+06 ave 2.34317e+06 max 2.34317e+06 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 2343168
+Ave neighs/atom = 1356
+Neighbor list builds = 0
+Dangerous builds = 0
+unfix relax
+
+#Dynamics
+reset_timestep 0
+variable T equal 1000
+variable rnd equal round(random(0,999,${T}))
+variable rnd equal round(random(0,999,1000))
+velocity all create ${T} ${rnd} mom yes rot yes
+velocity all create 1000 ${rnd} mom yes rot yes
+velocity all create 1000 233 mom yes rot yes
+fix npt all npt temp ${T} ${T} 0.1 iso 0 0 1
+fix npt all npt temp 1000 ${T} 0.1 iso 0 0 1
+fix npt all npt temp 1000 1000 0.1 iso 0 0 1
+run 1000
+Per MPI rank memory allocation (min/avg/max) = 54.35 | 54.35 | 54.35 Mbytes
+ Step Temp PotEng Lx Ly Lz Pxx Pyy Pzz c_q1 c_q2
+ 0 1000 -9633.1929 24.707505 24.707505 24.707505 15934.991 15754.787 15735.602 1.2410908 -1.2410908
+ 100 600.77874 -9528.0602 24.816519 24.816519 24.816519 -16709.313 -15443.072 -17750.832 1.2181988 -1.2181988
+ 200 578.84295 -9490.9794 24.812627 24.812627 24.812627 -5879.8769 -4851.4601 -6722.107 1.2254363 -1.2254363
+ 300 694.7973 -9478.5512 24.764285 24.764285 24.764285 14639.415 13827.989 13766.766 1.2372201 -1.2372201
+ 400 803.93731 -9462.2542 24.866629 24.866629 24.866629 -4644.2854 -6017.2884 -7744.2567 1.2086229 -1.2086229
+ 500 893.70492 -9441.0072 24.891756 24.891756 24.891756 -5784.2232 -8219.1644 -4187.392 1.2001224 -1.2001224
+ 600 947.21728 -9416.7532 24.863623 24.863623 24.863623 11265.076 12952.469 11331.883 1.2115124 -1.2115124
+ 700 1040.4874 -9409.8397 24.933859 24.933859 24.933859 -6570.5927 -8532.7457 -3284.7317 1.1902794 -1.1902794
+ 800 1037.9366 -9398.4828 24.935138 24.935138 24.935138 -4681.8676 -2576.4998 -7160.562 1.1880324 -1.1880324
+ 900 1049.4211 -9411.115 24.899733 24.899733 24.899733 3250.2695 8121.9271 5945.0542 1.2024086 -1.2024086
+ 1000 964.18789 -9412.4405 24.926442 24.926442 24.926442 -7652.603 -5142.9259 -8351.8835 1.1908935 -1.1908935
+Loop time of 183.932 on 1 procs for 1000 steps with 1728 atoms
+
+Performance: 0.470 ns/day, 51.092 hours/ns, 5.437 timesteps/s, 9.395 katom-step/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 | 37.347 | 37.347 | 37.347 | 0.0 | 20.30
+Neigh | 0.22667 | 0.22667 | 0.22667 | 0.0 | 0.12
+Comm | 0.052514 | 0.052514 | 0.052514 | 0.0 | 0.03
+Output | 0.00053967 | 0.00053967 | 0.00053967 | 0.0 | 0.00
+Modify | 146.29 | 146.29 | 146.29 | 0.0 | 79.53
+Other | | 0.01552 | | | 0.01
+
+Nlocal: 1728 ave 1728 max 1728 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Nghost: 13901 ave 13901 max 13901 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+Neighs: 210388 ave 210388 max 210388 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+FullNghs: 2.23448e+06 ave 2.23448e+06 max 2.23448e+06 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 2234476
+Ave neighs/atom = 1293.0995
+Neighbor list builds = 5
+Dangerous builds = 0
+Total wall time: 0:03:05
diff --git a/examples/streitz/log.11Sep24.ctip.g++.4 b/examples/streitz/log.11Sep24.ctip.g++.4
new file mode 100644
index 0000000000..1fef07a7d2
--- /dev/null
+++ b/examples/streitz/log.11Sep24.ctip.g++.4
@@ -0,0 +1,186 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-269-g5a12c762f3-modified)
+OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
+ using 1 OpenMP thread(s) per MPI task
+#CTIP potential for NiO
+#Contributing author: Gabriel Plummer (NASA)
+
+#Initialize
+units metal
+atom_style charge
+dimension 3
+boundary p p p
+
+#Create Structure
+read_data data.ctip
+Reading data file ...
+ orthogonal box = (0 0 0) to (24.719478 24.719478 24.719478)
+ 1 by 2 by 2 MPI processor grid
+ reading atoms ...
+ 1728 atoms
+ read_data CPU = 0.007 seconds
+
+#Define Charges
+group type1 type 1
+864 atoms in group type1
+compute charge1 type1 property/atom q
+compute q1 type1 reduce ave c_charge1
+group type2 type 2
+864 atoms in group type2
+compute charge2 type2 property/atom q
+compute q2 type2 reduce ave c_charge2
+
+#Define Potential
+pair_style hybrid/overlay eam/fs coul/ctip 0.30 12.0
+pair_coeff * * eam/fs NiO.eam.fs Ni O
+Reading eam/fs potential file NiO.eam.fs with DATE: 2024-04-29
+pair_coeff * * coul/ctip NiO.ctip Ni O
+Reading coul/ctip potential file NiO.ctip with DATE: 2024-09-11
+fix qeq all qeq/ctip 1 12.0 1.0e-8 100 coul/ctip cdamp 0.30 maxrepeat 10
+
+#Setup
+timestep 0.001
+thermo 100
+thermo_style custom step temp pe lx ly lz pxx pyy pzz c_q1 c_q2
+
+#Minimization
+fix relax all box/relax iso 0
+minimize 1e-10 1e-10 100000 100000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+
+- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419
+
+@Article{Gissinger24,
+ author = {Jacob R. Gissinger, Ilia Nikiforov, Yaser Afshar, Brendon Waters, Moon-ki Choi, Daniel S. Karls, Alexander Stukowski, Wonpil Im, Hendrik Heinz, Axel Kohlmeyer, and Ellad B. Tadmor},
+ title = {Type Label Framework for Bonded Force Fields in LAMMPS},
+ journal = {J. Phys. Chem. B},
+ year = 2024,
+ volume = 128,
+ number = 13,
+ pages = {3282–-3297}
+}
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 14
+ ghost atom cutoff = 14
+ binsize = 7, bins = 4 4 4
+ 3 neighbor lists, perpetual/occasional/extra = 3 0 0
+ (1) pair eam/fs, perpetual, trim from (2)
+ attributes: half, newton on, cut 8
+ pair build: trim
+ stencil: none
+ bin: none
+ (2) pair coul/ctip, perpetual, half/full from (3)
+ attributes: half, newton on
+ pair build: halffull/newton
+ stencil: none
+ bin: none
+ (3) fix qeq/ctip, perpetual
+ attributes: full, newton on
+ pair build: full/bin/atomonly
+ stencil: full/bin/3d
+ bin: standard
+WARNING: Energy due to 1 extra global DOFs will be included in minimizer energies
+ (src/min.cpp:219)
+Per MPI rank memory allocation (min/avg/max) = 19.71 | 19.71 | 19.71 Mbytes
+ Step Temp PotEng Lx Ly Lz Pxx Pyy Pzz c_q1 c_q2
+ 0 0 -9633.183 24.719478 24.719478 24.719478 -1491.273 -1491.273 -1491.273 1.2374666 -1.2374666
+ 6 0 -9633.1929 24.707505 24.707505 24.707505 0.0050498849 0.0050498856 0.0050498855 1.2410908 -1.2410908
+Loop time of 0.288818 on 4 procs for 6 steps with 1728 atoms
+
+99.6% CPU use with 4 MPI tasks x 1 OpenMP threads
+
+Minimization stats:
+ Stopping criterion = energy tolerance
+ Energy initial, next-to-last, final =
+ -9633.18301849946 -9633.19294329957 -9633.19294333066
+ Force two-norm initial, final = 42.177998 0.00014286398
+ Force max component initial, final = 42.177998 0.00014268867
+ Final line search alpha, max atom move = 0.0079490643 1.1342414e-06
+ Iterations, force evaluations = 6 8
+
+MPI task timing breakdown:
+Section | min time | avg time | max time |%varavg| %total
+---------------------------------------------------------------
+Pair | 0.09401 | 0.095886 | 0.097631 | 0.4 | 33.20
+Neigh | 0 | 0 | 0 | 0.0 | 0.00
+Comm | 0.0024298 | 0.004185 | 0.0060676 | 2.1 | 1.45
+Output | 0 | 0 | 0 | 0.0 | 0.00
+Modify | 0.18779 | 0.1878 | 0.18781 | 0.0 | 65.02
+Other | | 0.000945 | | | 0.33
+
+Nlocal: 432 ave 432 max 432 min
+Histogram: 4 0 0 0 0 0 0 0 0 0
+Nghost: 8593 ave 8593 max 8593 min
+Histogram: 4 0 0 0 0 0 0 0 0 0
+Neighs: 54000 ave 54000 max 54000 min
+Histogram: 4 0 0 0 0 0 0 0 0 0
+FullNghs: 585792 ave 585792 max 585792 min
+Histogram: 4 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 2343168
+Ave neighs/atom = 1356
+Neighbor list builds = 0
+Dangerous builds = 0
+unfix relax
+
+#Dynamics
+reset_timestep 0
+variable T equal 1000
+variable rnd equal round(random(0,999,${T}))
+variable rnd equal round(random(0,999,1000))
+velocity all create ${T} ${rnd} mom yes rot yes
+velocity all create 1000 ${rnd} mom yes rot yes
+velocity all create 1000 233 mom yes rot yes
+fix npt all npt temp ${T} ${T} 0.1 iso 0 0 1
+fix npt all npt temp 1000 ${T} 0.1 iso 0 0 1
+fix npt all npt temp 1000 1000 0.1 iso 0 0 1
+run 1000
+Per MPI rank memory allocation (min/avg/max) = 18.83 | 18.83 | 18.83 Mbytes
+ Step Temp PotEng Lx Ly Lz Pxx Pyy Pzz c_q1 c_q2
+ 0 1000 -9633.1929 24.707505 24.707505 24.707505 15934.991 15754.787 15735.602 1.2410908 -1.2410908
+ 100 600.77874 -9528.0602 24.816519 24.816519 24.816519 -16709.313 -15443.072 -17750.832 1.2181988 -1.2181988
+ 200 578.84295 -9490.9794 24.812627 24.812627 24.812627 -5879.8769 -4851.4601 -6722.107 1.2254363 -1.2254363
+ 300 694.7973 -9478.5512 24.764285 24.764285 24.764285 14639.415 13827.989 13766.766 1.2372201 -1.2372201
+ 400 803.93731 -9462.2542 24.866629 24.866629 24.866629 -4644.2853 -6017.2884 -7744.2567 1.2086229 -1.2086229
+ 500 893.70492 -9441.0072 24.891756 24.891756 24.891756 -5784.2232 -8219.1644 -4187.392 1.2001224 -1.2001224
+ 600 947.21728 -9416.7532 24.863623 24.863623 24.863623 11265.076 12952.469 11331.883 1.2115124 -1.2115124
+ 700 1040.4874 -9409.8397 24.933859 24.933859 24.933859 -6570.5926 -8532.7456 -3284.7317 1.1902794 -1.1902794
+ 800 1037.9366 -9398.4828 24.935138 24.935138 24.935138 -4681.8675 -2576.5001 -7160.5622 1.1880324 -1.1880324
+ 900 1049.4211 -9411.115 24.899733 24.899733 24.899733 3250.2695 8121.9274 5945.0541 1.2024086 -1.2024086
+ 1000 964.18789 -9412.4405 24.926442 24.926442 24.926442 -7652.603 -5142.926 -8351.8839 1.1908935 -1.1908935
+Loop time of 63.5378 on 4 procs for 1000 steps with 1728 atoms
+
+Performance: 1.360 ns/day, 17.649 hours/ns, 15.739 timesteps/s, 27.196 katom-step/s
+99.5% 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.737 | 12.782 | 12.839 | 1.1 | 20.12
+Neigh | 0.082989 | 0.083627 | 0.084898 | 0.3 | 0.13
+Comm | 0.39773 | 0.45431 | 0.49896 | 5.5 | 0.72
+Output | 0.00038299 | 0.0004067 | 0.00047658 | 0.0 | 0.00
+Modify | 50.207 | 50.207 | 50.208 | 0.0 | 79.02
+Other | | 0.01047 | | | 0.02
+
+Nlocal: 432 ave 446 max 421 min
+Histogram: 1 0 1 0 1 0 0 0 0 1
+Nghost: 8594.5 ave 8608 max 8579 min
+Histogram: 1 0 0 0 0 1 1 0 0 1
+Neighs: 52597 ave 54466 max 51209 min
+Histogram: 1 0 1 0 1 0 0 0 0 1
+FullNghs: 558619 ave 576961 max 544134 min
+Histogram: 1 0 1 0 1 0 0 0 0 1
+
+Total # of neighbors = 2234476
+Ave neighs/atom = 1293.0995
+Neighbor list builds = 5
+Dangerous builds = 0
+Total wall time: 0:01:04
diff --git a/examples/threebody/log.08Oct24.mos2.sw.mod.g++.4 b/examples/threebody/log.08Oct24.mos2.sw.mod.g++.4
new file mode 100644
index 0000000000..f0941f2532
--- /dev/null
+++ b/examples/threebody/log.08Oct24.mos2.sw.mod.g++.4
@@ -0,0 +1,102 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-512-g13c57ab9b5)
+OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/comm.cpp:98)
+ using 1 OpenMP thread(s) per MPI task
+# monolayer MoS2
+units metal
+boundary p p f
+processors * * 1
+
+atom_style atomic
+read_data single_layer_MoS2.data
+Reading data file ...
+ triclinic box = (0 0 -100) to (51.15232 44.299209 100) with tilt (25.57616 0 0)
+WARNING: Triclinic box skew is large. LAMMPS will run inefficiently. (src/domain.cpp:221)
+ 2 by 2 by 1 MPI processor grid
+ reading atoms ...
+ 768 atoms
+ read_data CPU = 0.003 seconds
+
+mass * 32.065 # mass of sulphur atom , uint: a.u.=1.66X10^(-27)kg
+mass 1 95.94 # mass of molebdenum atom , uint: a.u.=1.66X10^(-27)kg
+
+########################## Define potentials ################################
+pair_style sw/mod maxdelcs 0.25 0.35
+pair_coeff * * tmd.sw.mod Mo S S
+Reading sw potential file tmd.sw.mod with DATE: 2018-03-26
+#########################################################################
+
+### Simulation settings ####
+timestep 0.001
+velocity all create 300.0 12345
+
+############################
+
+# Output
+thermo 500
+thermo_style custom step etotal pe ke temp
+thermo_modify lost warn
+
+###### Run molecular dynamics ######
+fix thermostat all nve
+run 5000
+
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Your simulation uses code contributions which should be cited:
+- Type Label Framework: https://doi.org/10.1021/acs.jpcb.3c08419
+CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE-CITE
+
+Neighbor list info ...
+ update: every = 1 steps, delay = 0 steps, check = yes
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 5.158796
+ ghost atom cutoff = 5.158796
+ binsize = 2.579398, bins = 30 18 78
+ 1 neighbor lists, perpetual/occasional/extra = 1 0 0
+ (1) pair sw/mod, 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.165 | 3.165 | 3.165 Mbytes
+ Step TotEng PotEng KinEng Temp
+ 0 -899.28605 -929.02881 29.742759 300
+ 500 -899.28626 -922.45519 23.168929 233.69313
+ 1000 -899.29247 -925.86547 26.573002 268.02828
+ 1500 -899.27957 -916.95478 17.675214 178.28084
+ 2000 -899.28171 -918.38728 19.105573 192.70814
+ 2500 -899.28732 -922.50423 23.21691 234.17709
+ 3000 -899.28195 -918.74112 19.459174 196.27473
+ 3500 -899.27944 -918.03105 18.751604 189.13784
+ 4000 -899.28397 -920.50737 21.223397 214.06955
+ 4500 -899.28386 -919.79154 20.507685 206.85053
+ 5000 -899.28077 -918.78947 19.508698 196.77425
+Loop time of 0.595509 on 4 procs for 5000 steps with 768 atoms
+
+Performance: 725.430 ns/day, 0.033 hours/ns, 8396.182 timesteps/s, 6.448 Matom-step/s
+99.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.4603 | 0.49732 | 0.54269 | 4.2 | 83.51
+Neigh | 0 | 0 | 0 | 0.0 | 0.00
+Comm | 0.03293 | 0.078347 | 0.11558 | 10.6 | 13.16
+Output | 0.00010079 | 0.00010935 | 0.00012827 | 0.0 | 0.02
+Modify | 0.0073413 | 0.0082665 | 0.0091767 | 0.7 | 1.39
+Other | | 0.01146 | | | 1.92
+
+Nlocal: 192 ave 194 max 190 min
+Histogram: 1 0 0 0 0 2 0 0 0 1
+Nghost: 194 ave 196 max 192 min
+Histogram: 1 0 0 0 0 2 0 0 0 1
+Neighs: 0 ave 0 max 0 min
+Histogram: 4 0 0 0 0 0 0 0 0 0
+FullNghs: 5120 ave 5170 max 5070 min
+Histogram: 1 0 0 0 0 2 0 0 0 1
+
+Total # of neighbors = 20480
+Ave neighs/atom = 26.666667
+Neighbor list builds = 0
+Dangerous builds = 0
+Total wall time: 0:00:00
diff --git a/examples/tracker/contact_history.dat b/examples/tracker/contact_history.dat
index 898aab4ef6..e5889a0642 100644
--- a/examples/tracker/contact_history.dat
+++ b/examples/tracker/contact_history.dat
@@ -1,8122 +1,20813 @@
-16 68 0 0.5
-17 37 0 0.5
-162 210 0 0.5
-174 163 0 0.5
-179 255 0 0.5
-96 161 0 0.505
-111 162 0 0.505
-156 231 0 0.505
-210 150 0 0.505
-226 246 0 0.505
-254 202 0 0.505
-31 82 0 0.51
-95 144 0 0.51
-116 80 0 0.51
-143 255 0 0.51
-153 165 0 0.51
-192 240 0 0.51
-227 247 0 0.51
-12 124 0 0.515
-18 39 0 0.515
-22 102 0 0.515
-34 55 0 0.515
-62 78 0 0.515
-128 188 0 0.515
-146 134 0 0.515
-50 14 0 0.52
-58 74 0 0.52
-69 134 0 0.52
-126 186 0 0.52
-143 242 0 0.52
-167 227 0 0.52
-213 37 0 0.52
-52 8 0 0.525
-69 149 0 0.525
-93 26 0 0.525
-154 144 0 0.525
-156 236 0 0.525
-180 228 0 0.525
-180 197 0 0.525
-256 1 0 0.525
-59 123 0 0.53
-84 160 0 0.53
-105 165 0 0.53
-154 151 0 0.53
-156 213 0 0.53
-158 99 0 0.53
-192 251 0 0.53
-217 21 0 0.53
-254 208 0 0.53
-31 84 0 0.535
-66 146 0 0.535
-77 129 0 0.535
-181 229 0 0.535
-203 54 0 0.535
-244 208 0 0.535
-99 174 0 0.54
-109 157 0 0.54
-187 236 0 0.54
-249 192 0 0.54
-6 54 0 0.545
-96 144 0 0.545
-109 169 0 0.545
-115 182 0 0.545
-131 206 0 0.545
-176 228 0 0.545
-203 14 0 0.545
-224 41 0 0.545
-228 256 0 0.545
-247 56 0 0.545
-18 86 0 0.55
-34 255 0 0.55
-45 90 0 0.55
-59 124 0 0.55
-111 164 0 0.55
-117 183 0.035 0.55
-193 221 0 0.55
-223 1 0 0.55
-242 206 0 0.55
-249 201 0 0.55
-256 14 0 0.55
-3 115 0 0.555
-92 165 0 0.555
-108 186 0 0.555
-128 144 0 0.555
-146 214 0 0.555
-166 246 0 0.555
-219 93 0.045 0.555
-15 68 0 0.56
-76 130 0.06 0.56
-105 123 0 0.56
-124 72 0 0.56
-137 128 0 0.56
-164 212 0 0.56
-194 207 0 0.56
-194 14 0 0.56
-244 63 0 0.56
-1 16 0 0.565
-20 100 0 0.565
-41 53 0 0.565
-76 154 0 0.565
-103 171 0 0.565
-119 246 0.045 0.565
-144 222 0 0.565
-167 155 0 0.565
-170 175 0 0.565
-241 36 0.065 0.565
-244 56 0 0.565
-28 109 0 0.57
-53 60 0 0.57
-55 123 0 0.57
-87 102 0.065 0.57
-176 256 0 0.57
-194 6 0 0.57
-233 232 0 0.57
-249 135 0 0.57
-11 123 0 0.575
-55 98 0 0.575
-71 183 0 0.575
-145 160 0 0.575
-174 162 0 0.575
-209 1 0 0.575
-38 98 0 0.58
-55 114 0 0.58
-62 242 0 0.58
-68 88 0 0.58
-86 38 0 0.58
-92 152 0 0.58
-112 100 0 0.58
-198 2 0 0.58
-229 241 0 0.58
-8 68 0 0.585
-11 186 0.07 0.585
-48 108 0 0.585
-71 131 0 0.585
-146 87 0 0.585
-165 156 0 0.585
-171 236 0 0.585
-208 193 0 0.585
-210 230 0 0.585
-224 28 0 0.585
-1 31 0 0.59
-3 116 0 0.59
-31 68 0 0.59
-78 27 0 0.59
-154 172 0 0.59
-179 227 0 0.59
-215 2 0 0.59
-231 53 0 0.59
-238 168 0.09 0.59
-15 81 0 0.595
-17 22 0.06 0.595
-45 28 0 0.595
-73 25 0 0.595
-78 84 0 0.595
-104 124 0 0.595
-137 77 0 0.595
-148 228 0 0.595
-162 148 0 0.595
-76 217 0.05 0.6
-116 130 0 0.6
-125 75 0 0.6
-144 218 0 0.6
-177 242 0 0.6
-179 195 0 0.6
-207 50 0 0.6
-45 106 0 0.605
-50 15 0 0.605
-120 129 0 0.605
-163 183 0 0.605
-180 195 0 0.605
-252 53 0 0.605
-6 69 0 0.61
-15 66 0 0.61
-15 29 0 0.61
-69 121 0 0.61
-82 162 0 0.61
-97 158 0 0.61
-97 162 0 0.61
-160 212 0 0.61
-191 251 0 0.61
-215 19 0 0.61
-15 5 0.045 0.615
-22 105 0 0.615
-38 105 0 0.615
-48 126 0 0.615
-78 29 0 0.615
-78 32 0 0.615
-145 151 0.07 0.615
-147 223 0 0.615
-156 229 0 0.615
-206 1 0 0.615
-207 78 0.06 0.615
-224 228 0 0.615
-24 84 0 0.62
-47 100 0 0.62
-88 156 0 0.62
-127 186 0 0.62
-158 163 0 0.62
-168 246 0 0.62
-253 206 0.04 0.62
-31 66 0 0.625
-70 92 0 0.625
-115 131 0 0.625
-177 225 0 0.625
-210 34 0 0.625
-234 246 0 0.625
-244 64 0 0.625
-23 103 0 0.63
-51 15 0 0.63
-91 88 0.045 0.63
-103 183 0 0.63
-106 11 0.03 0.63
-113 3 0 0.63
-140 152 0 0.63
-158 100 0 0.63
-166 184 0 0.63
-194 18 0 0.63
-252 56 0 0.63
-25 87 0.045 0.635
-125 11 0 0.635
-181 230 0 0.635
-193 253 0 0.635
-196 216 0 0.635
-214 37 0 0.635
-254 251 0 0.635
-1 19 0 0.64
-16 128 0 0.64
-27 75 0 0.64
-38 121 0 0.64
-68 82 0 0.64
-133 132 0 0.64
-135 9 0.135 0.64
-179 49 0.085 0.64
-184 232 0 0.64
-249 179 0.05 0.64
-20 22 0.05 0.645
-31 3 0 0.645
-115 129 0 0.645
-132 161 0.09 0.645
-193 62 0 0.645
-245 41 0.11 0.645
-137 192 0 0.65
-144 223 0 0.65
-147 175 0 0.65
-177 253 0 0.65
-193 5 0 0.65
-4 33 0.06 0.655
-31 65 0 0.655
-32 81 0 0.655
-57 125 0 0.655
-62 206 0 0.655
-81 132 0.05 0.655
-159 14 0.035 0.655
-210 37 0 0.655
-215 232 0.06 0.655
-222 14 0 0.655
-256 48 0 0.655
-4 29 0 0.66
-13 27 0 0.66
-14 32 0 0.66
-23 20 0.12 0.66
-82 161 0 0.66
-125 102 0.04 0.66
-177 141 0 0.66
-200 56 0 0.66
-238 242 0 0.66
-245 135 0 0.66
-250 204 0 0.66
-48 121 0 0.665
-57 102 0 0.665
-66 129 0 0.665
-134 201 0 0.665
-148 238 0 0.665
-161 212 0.045 0.665
-171 251 0 0.665
-189 169 0 0.665
-227 45 0.095 0.665
-21 1 0 0.67
-32 80 0 0.67
-54 12 0 0.67
-101 92 0 0.67
-103 151 0 0.67
-175 221 0 0.67
-196 8 0 0.67
-4 23 0.105 0.675
-84 132 0 0.675
-114 182 0 0.675
-118 98 0 0.675
-126 129 0 0.675
-133 145 0 0.675
-138 205 0 0.675
-175 223 0.125 0.675
-199 211 0 0.675
-209 197 0 0.675
-223 227 0 0.675
-225 255 0 0.675
-9 29 0 0.68
-33 22 0.04 0.68
-39 87 0 0.68
-52 66 0 0.68
-56 121 0 0.68
-72 91 0.17 0.68
-73 85 0 0.68
-103 163 0 0.68
-154 140 0 0.68
-202 222 0 0.68
-211 31 0 0.68
-33 81 0 0.685
-83 76 0.055 0.685
-147 168 0.07 0.685
-148 17 0.155 0.685
-148 216 0 0.685
-194 223 0 0.685
-216 20 0 0.685
-217 9 0 0.685
-232 252 0 0.685
-233 250 0.065 0.685
-54 11 0 0.69
-77 189 0 0.69
-97 145 0 0.69
-141 130 0.065 0.69
-186 129 0.045 0.69
-196 197 0 0.69
-219 239 0.18 0.69
-224 251 0.05 0.69
-247 39 0 0.69
-38 36 0.055 0.695
-62 208 0 0.695
-71 188 0 0.695
-159 211 0 0.695
-176 162 0.045 0.695
-245 250 0.08 0.695
-246 232 0 0.695
-24 36 0.17 0.7
-26 86 0 0.7
-54 121 0 0.7
-76 88 0 0.7
-159 203 0.115 0.7
-162 225 0 0.7
-165 151 0 0.7
-206 2 0 0.7
-243 252 0.05 0.7
-251 239 0 0.7
-4 24 0 0.705
-7 75 0 0.705
-27 95 0 0.705
-77 127 0 0.705
-88 136 0 0.705
-125 190 0 0.705
-193 14 0 0.705
-234 252 0 0.705
-30 34 0 0.71
-91 144 0 0.71
-102 183 0.13 0.71
-217 200 0 0.71
-72 132 0 0.715
-76 139 0 0.715
-91 103 0 0.715
-134 188 0 0.715
-142 149 0.17 0.715
-159 207 0 0.715
-28 48 0 0.72
-28 108 0 0.72
-90 102 0 0.72
-209 229 0 0.72
-235 255 0 0.72
-240 36 0 0.72
-3 79 0 0.725
-20 37 0 0.725
-26 89 0 0.725
-97 173 0 0.725
-134 246 0 0.725
-207 10 0 0.725
-209 21 0 0.725
-231 33 0.13 0.725
-247 34 0 0.725
-72 152 0 0.73
-196 21 0 0.73
-206 211 0 0.73
-232 55 0 0.73
-43 122 0.085 0.735
-109 122 0.08 0.735
-132 163 0.205 0.735
-134 144 0.045 0.735
-148 30 0.09 0.735
-157 139 0 0.735
-178 226 0.185 0.735
-231 243 0 0.735
-11 79 0 0.74
-19 87 0 0.74
-30 238 0 0.74
-75 139 0 0.74
-76 188 0 0.74
-76 144 0 0.74
-107 237 0.075 0.74
-113 67 0 0.74
-120 183 0 0.74
-131 196 0 0.74
-133 85 0.145 0.74
-159 29 0.055 0.74
-182 130 0 0.74
-196 213 0 0.74
-214 245 0.05 0.74
-230 252 0 0.74
-249 232 0 0.74
-26 12 0 0.745
-27 73 0 0.745
-79 66 0 0.745
-85 153 0.15 0.745
-89 19 0.18 0.745
-149 209 0 0.745
-150 155 0 0.745
-155 235 0 0.745
-192 131 0.24 0.745
-4 47 0.05 0.75
-6 26 0.25 0.75
-74 29 0 0.75
-76 156 0 0.75
-87 165 0 0.75
-157 222 0 0.75
-159 194 0 0.75
-164 184 0 0.75
-196 52 0 0.75
-239 32 0 0.75
-43 111 0.13 0.755
-101 169 0.22 0.755
-166 234 0 0.755
-213 17 0 0.755
-213 23 0.185 0.755
-65 141 0 0.76
-95 161 0 0.76
-108 127 0.05 0.76
-110 122 0 0.76
-164 183 0.12 0.76
-174 115 0 0.76
-179 225 0 0.76
-188 197 0 0.76
-227 47 0 0.76
-254 159 0.045 0.76
-6 18 0 0.765
-42 122 0 0.765
-49 14 0.24 0.765
-104 183 0 0.765
-245 251 0.22 0.765
-1 211 0 0.77
-1 66 0 0.77
-77 27 0 0.77
-97 174 0 0.77
-149 161 0 0.77
-199 21 0 0.77
-233 245 0 0.77
-233 253 0.08 0.77
-19 145 0.175 0.775
-20 145 0.09 0.775
-46 43 0 0.775
-50 62 0 0.775
-52 67 0 0.775
-68 85 0 0.775
-90 170 0 0.775
-94 161 0 0.775
-131 209 0 0.775
-172 226 0.235 0.775
-194 212 0 0.775
-202 29 0 0.775
-252 200 0 0.775
-20 68 0 0.78
-30 4 0 0.78
-49 5 0 0.78
-70 75 0 0.78
-127 65 0 0.78
-127 192 0 0.78
-145 85 0 0.78
-184 226 0 0.78
-221 14 0 0.78
-249 41 0 0.78
-254 15 0.095 0.78
-6 231 0.215 0.785
-47 19 0 0.785
-119 169 0 0.785
-142 66 0.145 0.785
-196 5 0 0.785
-47 95 0 0.79
-51 67 0 0.79
-91 85 0.1 0.79
-99 181 0 0.79
-130 195 0.1 0.79
-151 163 0 0.79
-171 238 0 0.79
-195 62 0 0.79
-240 110 0.065 0.79
-8 73 0 0.795
-78 83 0 0.795
-79 96 0.07 0.795
-84 162 0 0.795
-126 67 0 0.795
-131 200 0 0.795
-194 206 0 0.795
-207 9 0.17 0.795
-216 34 0 0.795
-1 7 0.245 0.8
-6 220 0 0.8
-20 88 0 0.8
-23 90 0 0.8
-70 68 0.3 0.8
-151 231 0 0.8
-154 167 0 0.8
-196 18 0 0.8
-220 23 0 0.8
-223 4 0 0.8
-241 197 0 0.8
-9 14 0.2 0.805
-54 8 0 0.805
-85 130 0 0.805
-105 167 0.23 0.805
-107 122 0.13 0.805
-118 108 0 0.805
-180 141 0 0.805
-214 6 0 0.805
-232 56 0 0.805
-233 204 0.21 0.805
-244 209 0.265 0.805
-248 203 0.285 0.805
-40 7 0.305 0.81
-61 122 0 0.81
-85 165 0.19 0.81
-98 119 0 0.81
-123 169 0 0.81
-125 100 0 0.81
-144 158 0 0.81
-200 4 0.175 0.81
-8 114 0 0.815
-41 34 0.045 0.815
-100 128 0.265 0.815
-105 119 0 0.815
-105 153 0 0.815
-165 183 0 0.815
-201 21 0.1 0.815
-223 18 0 0.815
-63 57 0.085 0.82
-75 134 0 0.82
-76 136 0 0.82
-79 81 0 0.82
-80 160 0 0.82
-84 115 0.305 0.82
-97 146 0 0.82
-106 189 0 0.82
-108 176 0.305 0.82
-144 156 0 0.82
-148 229 0 0.82
-151 230 0.225 0.82
-156 204 0 0.82
-165 119 0 0.82
-206 15 0.095 0.82
-222 208 0 0.82
-227 53 0 0.82
-20 101 0 0.825
-35 56 0.045 0.825
-39 89 0 0.825
-60 8 0.245 0.825
-84 175 0 0.825
-185 176 0 0.825
-194 17 0 0.825
-195 201 0.145 0.825
-223 195 0 0.825
-1 197 0 0.83
-22 34 0 0.83
-80 144 0 0.83
-97 177 0 0.83
-131 243 0 0.83
-193 49 0.315 0.83
-241 240 0 0.83
-246 205 0.06 0.83
-50 36 0 0.835
-73 134 0 0.835
-107 187 0 0.835
-119 168 0 0.835
-142 146 0.105 0.835
-155 169 0 0.835
-198 248 0 0.835
-200 54 0 0.835
-213 199 0 0.835
-150 218 0 0.84
-174 238 0 0.84
-31 111 0.27 0.845
-40 86 0 0.845
-61 106 0 0.845
-70 114 0 0.845
-86 98 0 0.845
-94 35 0 0.845
-99 168 0 0.845
-127 178 0 0.845
-132 197 0 0.845
-166 123 0 0.845
-194 148 0 0.845
-198 5 0 0.845
-72 140 0 0.85
-74 186 0 0.85
-76 150 0 0.85
-82 87 0 0.85
-87 99 0.3 0.85
-92 102 0 0.85
-187 137 0 0.85
-189 124 0 0.85
-207 202 0 0.85
-211 239 0.165 0.85
-237 255 0 0.85
-241 256 0 0.85
-61 11 0 0.855
-129 144 0 0.855
-144 160 0 0.855
-147 198 0 0.855
-155 220 0 0.855
-174 253 0 0.855
-192 244 0 0.855
-227 36 0 0.855
-241 227 0 0.855
-17 24 0 0.86
-48 111 0 0.86
-127 180 0 0.86
-136 201 0 0.86
-163 243 0.24 0.86
-240 63 0 0.86
-9 206 0.255 0.865
-9 221 0.21 0.865
-19 86 0 0.865
-39 53 0 0.865
-97 161 0 0.865
-129 209 0.285 0.865
-147 173 0.145 0.865
-198 195 0 0.865
-239 110 0.045 0.865
-247 197 0 0.865
-6 24 0 0.87
-19 7 0.165 0.87
-59 113 0.045 0.87
-152 172 0 0.87
-160 225 0.32 0.87
-186 254 0 0.87
-196 4 0 0.87
-196 29 0 0.87
-212 36 0 0.87
-213 148 0 0.87
-6 27 0 0.875
-65 83 0 0.875
-91 186 0.065 0.875
-94 100 0 0.875
-99 102 0 0.875
-189 249 0.215 0.875
-191 131 0 0.875
-198 210 0 0.875
-206 195 0 0.875
-239 35 0 0.875
-116 141 0 0.88
-127 187 0 0.88
-132 173 0.28 0.88
-139 13 0.135 0.88
-142 83 0 0.88
-167 234 0 0.88
-167 247 0.245 0.88
-179 228 0 0.88
-198 211 0 0.88
-201 23 0.38 0.88
-235 59 0 0.88
-19 37 0 0.885
-45 94 0 0.885
-46 15 0.335 0.885
-69 182 0 0.885
-77 186 0 0.885
-132 149 0 0.885
-134 202 0 0.885
-135 199 0 0.885
-150 140 0 0.885
-161 209 0 0.885
-167 236 0 0.885
-169 187 0 0.885
-205 204 0 0.885
-206 212 0 0.885
-250 207 0 0.885
-40 69 0.31 0.89
-52 16 0 0.89
-72 184 0 0.89
-127 121 0.39 0.89
-130 197 0 0.89
-138 150 0 0.89
-218 10 0 0.89
-221 239 0 0.89
-31 48 0.38 0.895
-83 132 0 0.895
-95 160 0 0.895
-134 155 0 0.895
-155 233 0 0.895
-169 176 0 0.895
-192 207 0 0.895
-205 9 0 0.895
-212 22 0.11 0.895
-223 15 0 0.895
-227 49 0 0.895
-230 44 0.05 0.895
-243 197 0 0.895
-20 83 0 0.9
-36 101 0 0.9
-77 157 0 0.9
-212 231 0.12 0.9
-235 238 0 0.9
-24 87 0 0.905
-26 109 0 0.905
-55 53 0 0.905
-61 113 0 0.905
-80 129 0 0.905
-118 75 0 0.905
-131 248 0 0.905
-185 245 0 0.905
-241 62 0 0.905
-46 126 0 0.91
-48 94 0 0.91
-99 164 0 0.91
-108 128 0 0.91
-134 157 0.335 0.91
-142 173 0.035 0.91
-171 253 0 0.91
-172 253 0 0.91
-193 148 0.22 0.91
-197 54 0 0.91
-17 35 0 0.915
-60 75 0 0.915
-65 93 0.25 0.915
-82 150 0 0.915
-87 101 0 0.915
-166 124 0 0.915
-168 216 0.315 0.915
-169 183 0 0.915
-174 116 0 0.915
-207 221 0 0.915
-235 256 0.17 0.915
-248 200 0 0.915
-6 74 0 0.92
-60 120 0.395 0.92
-119 170 0 0.92
-129 206 0 0.92
-130 184 0 0.92
-188 202 0 0.92
-199 215 0 0.92
-229 239 0.215 0.92
-244 199 0.265 0.92
-251 207 0 0.92
-46 207 0.045 0.925
-47 84 0 0.925
-64 127 0 0.925
-95 173 0 0.925
-118 66 0 0.925
-126 141 0 0.925
-164 227 0 0.925
-199 1 0.15 0.925
-213 18 0 0.925
-13 57 0 0.93
-20 111 0 0.93
-123 183 0 0.93
-127 114 0 0.93
-142 131 0 0.93
-156 249 0.05 0.93
-187 180 0.25 0.93
-12 69 0 0.935
-82 111 0 0.935
-87 167 0 0.935
-137 250 0 0.935
-155 214 0 0.935
-196 62 0 0.935
-200 1 0 0.935
-204 231 0.07 0.935
-204 224 0 0.935
-216 35 0 0.935
-123 253 0.29 0.94
-145 100 0.395 0.94
-224 48 0 0.94
-12 75 0 0.945
-19 101 0 0.945
-39 56 0.425 0.945
-51 162 0.12 0.945
-59 127 0 0.945
-84 104 0 0.945
-112 116 0 0.945
-113 122 0.075 0.945
-124 183 0 0.945
-135 252 0 0.945
-155 204 0 0.945
-249 205 0 0.945
-19 88 0 0.95
-33 53 0 0.95
-39 48 0.27 0.95
-52 122 0.26 0.95
-92 173 0 0.95
-93 141 0 0.95
-99 117 0 0.95
-137 246 0 0.95
-175 235 0 0.95
-203 57 0 0.95
-228 63 0 0.95
-35 84 0 0.955
-60 69 0 0.955
-77 113 0 0.955
-104 182 0 0.955
-127 79 0 0.955
-135 203 0 0.955
-141 193 0 0.955
-145 194 0 0.955
-148 227 0 0.955
-240 57 0.4 0.955
-256 52 0 0.955
-3 23 0.28 0.96
-10 47 0.405 0.96
-23 35 0.14 0.96
-36 56 0 0.96
-56 104 0 0.96
-60 89 0.175 0.96
-133 147 0 0.96
-136 217 0 0.96
-137 183 0 0.96
-144 193 0 0.96
-185 246 0 0.96
-192 241 0 0.96
-192 202 0 0.96
-194 1 0 0.96
-194 21 0 0.96
-245 252 0 0.96
-42 27 0.385 0.965
-42 109 0 0.965
-87 107 0 0.965
-124 69 0 0.965
-139 143 0 0.965
-192 238 0 0.965
-206 30 0 0.965
-215 37 0 0.965
-230 219 0.385 0.965
-240 59 0 0.965
-27 48 0.135 0.97
-89 69 0 0.97
-92 170 0 0.97
-215 8 0 0.97
-255 59 0.44 0.97
-16 81 0 0.975
-22 40 0 0.975
-31 110 0.245 0.975
-38 106 0 0.975
-130 209 0 0.975
-135 155 0 0.975
-138 188 0 0.975
-139 253 0 0.975
-152 164 0.235 0.975
-213 5 0 0.975
-215 18 0 0.975
-251 63 0 0.975
-36 117 0 0.98
-71 184 0 0.98
-98 120 0 0.98
-112 113 0 0.98
-182 248 0.05 0.98
-214 226 0 0.98
-217 10 0 0.98
-229 179 0 0.98
-236 256 0 0.98
-245 236 0 0.98
-205 15 0.425 0.985
-226 53 0 0.985
-239 62 0.475 0.985
-3 83 0.385 0.99
-67 182 0 0.99
-73 93 0.25 0.99
-76 149 0 0.99
-135 248 0 0.99
-135 204 0 0.99
-139 58 0.165 0.99
-158 129 0.21 0.99
-230 215 0.1 0.99
-234 254 0.44 0.99
-236 253 0 0.99
-245 227 0 0.99
-6 28 0 0.995
-33 63 0 0.995
-43 101 0.41 0.995
-88 153 0 0.995
-99 167 0 0.995
-134 156 0 0.995
-185 165 0 0.995
-192 255 0 0.995
-248 58 0.21 0.995
-6 85 0 1
-122 190 0 1
-143 148 0.34 1
-234 255 0 1
-247 253 0.425 1
-2 30 0 1.005
-30 16 0.4 1.005
-33 109 0.325 1.005
-107 167 0 1.005
-124 184 0 1.005
-219 240 0.4 1.005
-232 44 0 1.005
-240 44 0.435 1.005
-19 70 0 1.01
-41 102 0 1.01
-46 59 0 1.01
-89 75 0 1.01
-90 173 0 1.01
-122 116 0.12 1.01
-160 208 0 1.01
-181 163 0 1.01
-9 27 0 1.015
-13 25 0.46 1.015
-20 34 0 1.015
-30 35 0 1.015
-43 37 0.45 1.015
-69 181 0.48 1.015
-74 128 0 1.015
-89 66 0.44 1.015
-139 221 0 1.015
-148 206 0 1.015
-207 63 0 1.015
-210 197 0.48 1.015
-220 240 0.22 1.015
-234 205 0.18 1.015
-242 54 0.405 1.015
-252 5 0 1.015
-6 89 0 1.02
-17 45 0 1.02
-17 93 0 1.02
-23 83 0 1.02
-23 88 0 1.02
-133 68 0 1.02
-143 160 0.08 1.02
-202 58 0 1.02
-227 238 0 1.02
-20 85 0 1.025
-39 166 0.29 1.025
-60 10 0 1.025
-79 131 0.095 1.025
-128 114 0.385 1.025
-134 217 0 1.025
-143 208 0 1.025
-207 126 0.06 1.025
-217 6 0 1.025
-229 217 0.125 1.025
-248 1 0 1.025
-41 48 0 1.03
-43 108 0 1.03
-46 109 0 1.03
-67 184 0 1.03
-69 76 0 1.03
-92 112 0 1.03
-99 166 0 1.03
-118 123 0 1.03
-136 246 0.43 1.03
-143 194 0 1.03
-195 7 0.175 1.03
-197 8 0.405 1.03
-229 249 0 1.03
-17 66 0 1.035
-43 103 0 1.035
-64 10 0 1.035
-139 208 0 1.035
-181 246 0 1.035
-196 15 0 1.035
-242 228 0 1.035
-247 53 0 1.035
-6 10 0 1.04
-16 90 0.41 1.04
-50 69 0.39 1.04
-98 56 0 1.04
-112 191 0 1.04
-139 205 0 1.04
-233 42 0 1.04
-248 250 0.065 1.04
-3 85 0 1.045
-9 89 0 1.045
-31 109 0 1.045
-32 92 0 1.045
-43 102 0 1.045
-94 173 0 1.045
-95 143 0 1.045
-151 204 0 1.045
-169 229 0.22 1.045
-181 241 0 1.045
-188 191 0.33 1.045
-194 209 0 1.045
-198 21 0 1.045
-208 220 0.49 1.045
-6 58 0 1.05
-7 10 0 1.05
-38 58 0.25 1.05
-133 83 0 1.05
-147 197 0 1.05
-209 216 0 1.05
-8 25 0 1.055
-13 73 0.28 1.055
-17 81 0 1.055
-50 114 0 1.055
-73 10 0 1.055
-76 135 0 1.055
-112 177 0 1.055
-129 244 0.06 1.055
-137 202 0 1.055
-176 255 0 1.055
-195 52 0 1.055
-222 227 0 1.055
-231 43 0.48 1.055
-244 206 0 1.055
-2 70 0.475 1.06
-9 8 0.36 1.06
-19 84 0 1.06
-45 63 0 1.06
-132 212 0.165 1.06
-159 30 0.055 1.06
-210 164 0 1.06
-236 106 0.505 1.06
-3 71 0.36 1.065
-29 110 0.26 1.065
-100 176 0 1.065
-135 250 0 1.065
-149 140 0 1.065
-175 255 0 1.065
-195 54 0 1.065
-201 54 0 1.065
-224 61 0.115 1.065
-230 250 0 1.065
-235 46 0 1.065
-239 97 0.54 1.065
-3 70 0 1.07
-17 97 0 1.07
-43 92 0 1.07
-45 49 0 1.07
-69 137 0 1.07
-71 136 0 1.07
-115 79 0 1.07
-130 158 0.135 1.07
-133 246 0 1.07
-192 159 0.075 1.07
-213 212 0 1.07
-228 1 0.3 1.07
-6 208 0.28 1.075
-6 219 0 1.075
-39 92 0 1.075
-188 205 0 1.075
-239 34 0 1.075
-251 41 0 1.075
-254 142 0 1.075
-31 90 0 1.08
-54 58 0 1.08
-71 123 0 1.08
-74 141 0 1.08
-94 174 0 1.08
-106 117 0.365 1.08
-154 175 0 1.08
-222 47 0.135 1.08
-242 247 0.5 1.08
-17 82 0 1.085
-22 19 0 1.085
-74 86 0.41 1.085
-140 208 0 1.085
-169 220 0.43 1.085
-179 238 0 1.085
-219 42 0.105 1.085
-5 85 0.375 1.09
-23 37 0 1.09
-24 43 0.43 1.09
-104 106 0.57 1.09
-105 172 0.31 1.09
-105 171 0.225 1.09
-109 100 0 1.09
-149 217 0 1.09
-158 143 0.06 1.09
-162 238 0 1.09
-200 12 0 1.09
-217 231 0 1.09
-220 10 0 1.09
-228 62 0 1.09
-8 76 0.255 1.095
-17 47 0 1.095
-58 7 0 1.095
-67 137 0.53 1.095
-72 182 0 1.095
-174 100 0 1.095
-196 30 0 1.095
-196 20 0.48 1.095
-227 239 0 1.095
-228 110 0.24 1.095
-251 55 0.49 1.095
-16 89 0 1.1
-23 43 0 1.1
-45 255 0 1.1
-53 98 0 1.1
-92 111 0.205 1.1
-147 227 0 1.1
-168 227 0 1.1
-186 246 0 1.1
-201 25 0 1.1
-19 68 0 1.105
-50 196 0 1.105
-105 170 0 1.105
-115 189 0.105 1.105
-214 21 0 1.105
-226 247 0 1.105
-7 25 0 1.11
-50 40 0 1.11
-192 249 0.59 1.11
-200 25 0 1.11
-17 94 0 1.115
-26 31 0 1.115
-50 52 0 1.115
-58 10 0 1.115
-101 119 0 1.115
-130 143 0 1.115
-159 208 0 1.115
-192 251 0.6 1.115
-201 10 0 1.115
-233 187 0 1.115
-235 48 0 1.115
-249 203 0 1.115
-13 29 0 1.12
-45 97 0 1.12
-53 115 0.44 1.12
-130 210 0.48 1.12
-159 219 0 1.12
-165 178 0.48 1.12
-195 4 0 1.12
-213 209 0 1.12
-216 33 0 1.12
-219 231 0 1.12
-223 33 0 1.12
-233 251 0 1.12
-235 253 0 1.12
-42 110 0 1.125
-118 58 0.18 1.125
-136 215 0 1.125
-165 245 0.395 1.125
-175 227 0 1.125
-231 23 0 1.125
-248 251 0.45 1.125
-6 19 0 1.13
-24 102 0 1.13
-30 227 0 1.13
-37 102 0 1.13
-61 126 0 1.13
-115 191 0 1.13
-140 159 0.46 1.13
-152 212 0 1.13
-191 207 0.275 1.13
-196 3 0 1.13
-198 199 0 1.13
-237 228 0 1.13
-17 32 0 1.135
-22 35 0 1.135
-90 127 0.62 1.135
-119 184 0 1.135
-132 160 0 1.135
-142 180 0.29 1.135
-222 31 0.535 1.135
-9 200 0 1.14
-36 100 0 1.14
-50 51 0 1.14
-50 118 0.37 1.14
-85 98 0.63 1.14
-88 168 0 1.14
-111 83 0.315 1.14
-136 140 0 1.14
-145 154 0.54 1.14
-159 217 0.5 1.14
-178 161 0.435 1.14
-195 15 0 1.14
-246 202 0.445 1.14
-11 25 0.495 1.145
-13 221 0 1.145
-45 31 0 1.145
-46 64 0 1.145
-48 90 0 1.145
-114 179 0.645 1.145
-136 153 0 1.145
-164 49 0.645 1.145
-204 58 0 1.145
-226 255 0 1.145
-239 31 0.52 1.145
-13 122 0 1.15
-46 113 0 1.15
-70 67 0 1.15
-92 172 0 1.15
-130 179 0.385 1.15
-157 143 0 1.15
-159 171 0.34 1.15
-161 179 0.35 1.15
-189 205 0 1.15
-198 252 0 1.15
-116 161 0.615 1.155
-124 135 0 1.155
-137 136 0 1.155
-144 132 0 1.155
-148 224 0.135 1.155
-159 156 0.455 1.155
-216 19 0 1.155
-225 45 0.215 1.155
-19 23 0 1.16
-55 48 0.14 1.16
-130 242 0 1.16
-140 205 0 1.16
-157 132 0 1.16
-210 30 0 1.16
-220 251 0.21 1.16
-222 33 0 1.16
-236 48 0 1.16
-256 63 0 1.16
-1 113 0.32 1.165
-11 89 0 1.165
-50 60 0.385 1.165
-62 116 0.655 1.165
-93 92 0 1.165
-232 51 0 1.165
-239 255 0 1.165
-247 40 0 1.165
-3 20 0.42 1.17
-11 27 0 1.17
-55 64 0.475 1.17
-73 128 0 1.17
-93 105 0.525 1.17
-155 148 0.61 1.17
-199 203 0 1.17
-207 11 0 1.17
-207 64 0 1.17
-218 42 0 1.17
-7 121 0 1.175
-43 154 0.515 1.175
-87 105 0 1.175
-92 158 0.42 1.175
-137 197 0.465 1.175
-199 251 0.62 1.175
-243 207 0.675 1.175
-2 52 0 1.18
-188 248 0.37 1.18
-191 49 0.65 1.18
-229 183 0 1.18
-92 106 0 1.185
-125 116 0 1.185
-128 142 0 1.185
-186 249 0 1.185
-247 61 0.14 1.185
-8 88 0.575 1.19
-14 80 0.685 1.19
-35 103 0.185 1.19
-75 96 0.19 1.19
-13 93 0 1.195
-31 97 0 1.195
-61 110 0 1.195
-61 60 0 1.195
-201 5 0 1.195
-209 33 0 1.195
-210 168 0 1.195
-217 29 0.6 1.195
-218 251 0.24 1.195
-223 47 0 1.195
-5 12 0.525 1.2
-16 96 0 1.2
-30 14 0 1.2
-44 63 0.09 1.2
-67 85 0 1.2
-78 158 0 1.2
-114 131 0.265 1.2
-177 187 0.185 1.2
-185 135 0 1.2
-225 49 0 1.2
-233 22 0.65 1.2
-236 61 0 1.2
-237 164 0 1.2
-247 203 0.205 1.2
-39 119 0.2 1.205
-45 110 0 1.205
-104 172 0.17 1.205
-155 132 0.63 1.205
-13 204 0 1.21
-31 43 0.62 1.21
-44 119 0.355 1.21
-55 71 0.38 1.21
-75 95 0 1.21
-93 28 0 1.21
-130 190 0 1.21
-169 188 0.055 1.21
-201 7 0.04 1.21
-216 8 0.38 1.21
-226 38 0 1.21
-12 32 0 1.215
-12 86 0 1.215
-19 72 0 1.215
-24 98 0 1.215
-104 116 0.47 1.215
-105 48 0 1.215
-123 177 0.57 1.215
-160 220 0.42 1.215
-212 34 0 1.215
-214 221 0.545 1.215
-232 36 0 1.215
-248 201 0 1.215
-8 20 0 1.22
-14 29 0 1.22
-87 96 0.15 1.22
-93 75 0 1.22
-98 103 0 1.22
-159 218 0 1.22
-216 38 0 1.22
-26 37 0.36 1.225
-92 174 0.405 1.225
-16 94 0 1.23
-17 78 0 1.23
-31 96 0 1.23
-101 84 0 1.23
-153 152 0 1.23
-159 224 0 1.23
-169 181 0.28 1.23
-179 195 0.73 1.23
-7 124 0 1.235
-22 43 0 1.235
-133 66 0 1.235
-140 219 0 1.235
-206 10 0 1.235
-206 29 0 1.235
-215 27 0.475 1.235
-223 27 0.685 1.235
-232 40 0 1.235
-43 86 0 1.24
-44 64 0.445 1.24
-61 57 0 1.24
-92 109 0 1.24
-107 153 0 1.24
-112 79 0.445 1.24
-143 140 0.375 1.24
-13 60 0 1.245
-43 91 0 1.245
-120 184 0 1.245
-129 195 0.07 1.245
-187 247 0.41 1.245
-191 228 0 1.245
-206 14 0 1.245
-228 50 0 1.245
-246 58 0 1.245
-20 24 0 1.25
-93 107 0.54 1.25
-109 170 0 1.25
-125 177 0.615 1.25
-156 176 0 1.25
-177 173 0 1.25
-183 38 0.63 1.25
-222 229 0.735 1.25
-239 232 0.57 1.25
-250 62 0.435 1.25
-14 94 0.275 1.255
-25 37 0.08 1.255
-45 10 0.275 1.255
-97 115 0 1.255
-106 166 0 1.255
-164 255 0 1.255
-236 40 0.49 1.255
-247 240 0.65 1.255
-247 256 0.31 1.255
-34 110 0 1.26
-87 152 0 1.26
-93 25 0.33 1.26
-185 76 0.645 1.26
-188 236 0.74 1.26
-196 16 0 1.26
-212 238 0 1.26
-216 28 0.375 1.26
-222 164 0.63 1.26
-8 28 0.515 1.265
-49 97 0.68 1.265
-61 44 0 1.265
-70 133 0 1.265
-80 190 0 1.265
-100 116 0 1.265
-103 115 0.645 1.265
-122 141 0.52 1.265
-126 178 0.76 1.265
-132 211 0 1.265
-161 168 0 1.265
-168 38 0.665 1.265
-173 187 0.745 1.265
-183 231 0.69 1.265
-188 245 0 1.265
-254 250 0 1.265
-41 90 0.605 1.27
-44 118 0.3 1.27
-54 9 0 1.27
-133 138 0.425 1.27
-138 135 0 1.27
-167 227 0.695 1.27
-211 232 0.715 1.27
-232 18 0 1.27
-246 256 0.22 1.27
-13 12 0 1.275
-16 25 0.395 1.275
-67 81 0 1.275
-115 161 0 1.275
-157 150 0.135 1.275
-166 112 0.16 1.275
-175 168 0.51 1.275
-191 225 0 1.275
-206 16 0.165 1.275
-242 6 0.74 1.275
-8 89 0 1.28
-22 232 0 1.28
-55 9 0.49 1.28
-118 182 0 1.28
-142 140 0.775 1.28
-143 209 0 1.28
-166 156 0 1.28
-42 25 0.135 1.285
-103 153 0 1.285
-132 244 0 1.285
-164 193 0.61 1.285
-164 244 0.475 1.285
-199 58 0 1.285
-212 232 0.515 1.285
-231 42 0 1.285
-15 95 0.77 1.29
-46 232 0.64 1.29
-58 74 0.64 1.29
-114 100 0 1.29
-132 223 0 1.29
-210 33 0 1.29
-217 223 0.685 1.29
-17 15 0 1.295
-23 105 0 1.295
-44 108 0 1.295
-71 83 0 1.295
-83 103 0 1.295
-143 202 0 1.295
-153 167 0 1.295
-155 209 0.645 1.295
-174 113 0 1.295
-174 177 0 1.295
-181 230 0.72 1.295
-188 235 0.64 1.295
-196 200 0 1.295
-218 231 0 1.295
-16 79 0 1.3
-78 84 0.7 1.3
-125 185 0.53 1.3
-143 147 0 1.3
-144 159 0 1.3
-159 202 0 1.3
-187 235 0 1.3
-213 225 0.34 1.3
-44 122 0 1.305
-66 136 0.66 1.305
-70 149 0 1.305
-80 111 0.195 1.305
-145 165 0.25 1.305
-191 144 0.41 1.305
-236 199 0.715 1.305
-238 42 0.57 1.305
-21 89 0 1.31
-42 36 0.8 1.31
-67 87 0.75 1.31
-68 134 0.8 1.31
-134 146 0.69 1.31
-198 152 0 1.31
-218 209 0.72 1.31
-222 228 0 1.31
-48 127 0 1.315
-91 150 0 1.315
-109 113 0 1.315
-139 141 0 1.315
-191 141 0 1.315
-209 29 0.33 1.315
-216 219 0.65 1.315
-219 209 0.765 1.315
-18 28 0.48 1.32
-48 107 0 1.32
-81 149 0 1.32
-116 179 0.615 1.32
-181 226 0 1.32
-191 250 0 1.32
-218 175 0 1.32
-239 42 0 1.32
-240 205 0.6 1.32
-251 38 0.235 1.32
-254 251 0.765 1.32
-22 10 0.44 1.325
-22 105 0.675 1.325
-28 102 0 1.325
-30 211 0 1.325
-106 127 0 1.325
-198 233 0.645 1.325
-205 49 0.63 1.325
-217 26 0 1.325
-222 211 0 1.325
-225 245 0 1.325
-28 35 0.47 1.33
-44 112 0 1.33
-44 117 0.375 1.33
-52 79 0 1.33
-92 166 0 1.33
-125 77 0 1.33
-132 221 0 1.33
-145 173 0 1.33
-183 243 0 1.33
-41 59 0 1.335
-70 83 0 1.335
-85 84 0 1.335
-109 189 0 1.335
-128 178 0.65 1.335
-171 148 0.245 1.335
-205 209 0.415 1.335
-217 208 0 1.335
-48 57 0 1.34
-82 165 0 1.34
-88 161 0 1.34
-147 212 0 1.34
-207 58 0 1.34
-215 10 0 1.34
-237 212 0 1.34
-241 205 0.305 1.34
-242 2 0 1.34
-247 59 0.135 1.34
-254 46 0.77 1.34
-82 149 0 1.345
-100 117 0 1.345
-118 104 0 1.345
-174 148 0 1.345
-214 249 0.275 1.345
-223 26 0.56 1.345
-22 235 0.67 1.35
-67 147 0.63 1.35
-68 148 0.6 1.35
-188 240 0.775 1.35
-209 14 0 1.35
-223 45 0 1.35
-237 42 0 1.35
-50 38 0 1.355
-118 178 0 1.355
-175 232 0.755 1.355
-208 209 0 1.355
-223 25 0.555 1.355
-243 230 0 1.355
-16 20 0.625 1.36
-27 157 0.795 1.36
-36 65 0.22 1.36
-48 121 0.735 1.36
-68 180 0.44 1.36
-110 126 0 1.36
-114 180 0.41 1.36
-139 248 0.25 1.36
-182 247 0.54 1.36
-183 199 0.61 1.36
-13 59 0 1.365
-49 126 0 1.365
-57 64 0 1.365
-151 229 0 1.365
-198 141 0.825 1.365
-220 43 0.3 1.365
-248 9 0 1.365
-12 90 0 1.37
-52 127 0 1.37
-65 117 0 1.37
-191 186 0 1.37
-9 122 0.305 1.375
-70 150 0.57 1.375
-114 102 0.435 1.375
-122 182 0.705 1.375
-142 205 0 1.375
-156 219 0 1.375
-217 203 0 1.375
-33 113 0 1.38
-141 250 0.7 1.38
-173 225 0 1.38
-184 230 0.815 1.38
-226 184 0.825 1.38
-239 36 0 1.38
-7 74 0 1.385
-23 91 0 1.385
-43 89 0 1.385
-75 87 0 1.385
-140 221 0 1.385
-162 230 0.85 1.385
-178 72 0 1.385
-240 252 0.75 1.385
-240 47 0.56 1.385
-106 124 0 1.39
-129 83 0 1.39
-232 35 0 1.39
-23 29 0.865 1.395
-49 65 0.21 1.395
-87 198 0.85 1.395
-93 43 0 1.395
-101 169 0.81 1.395
-101 108 0 1.395
-105 37 0.49 1.395
-107 234 0.085 1.395
-207 78 0.78 1.395
-237 187 0 1.395
-244 36 0 1.395
-253 42 0 1.395
-253 1 0.87 1.395
-21 97 0.73 1.4
-49 195 0 1.4
-51 119 0 1.4
-57 122 0 1.4
-86 167 0.5 1.4
-132 17 0.635 1.4
-151 165 0.735 1.4
-188 141 0 1.4
-251 11 0.8 1.4
-85 27 0.325 1.405
-129 72 0 1.405
-140 218 0 1.405
-164 192 0.395 1.405
-193 243 0 1.405
-196 1 0 1.405
-224 238 0 1.405
-4 129 0.82 1.41
-78 94 0 1.41
-115 168 0 1.41
-142 144 0 1.41
-144 255 0.51 1.41
-196 256 0.585 1.41
-197 203 0.445 1.41
-204 89 0.775 1.41
-206 255 0.155 1.41
-255 42 0 1.41
-22 101 0 1.415
-66 129 0.83 1.415
-68 131 0 1.415
-80 140 0 1.415
-159 212 0 1.415
-22 89 0 1.42
-56 102 0 1.42
-72 131 0 1.42
-114 104 0 1.42
-153 233 0 1.42
-153 171 0 1.42
-169 249 0 1.42
-182 192 0.835 1.42
-202 12 0.81 1.42
-253 196 0.89 1.42
-3 117 0 1.425
-5 117 0.585 1.425
-71 131 0.695 1.425
-125 15 0.745 1.425
-175 187 0.13 1.425
-190 179 0.615 1.425
-210 161 0 1.425
-214 204 0 1.425
-3 95 0.81 1.43
-25 91 0.755 1.43
-35 114 0.92 1.43
-100 189 0 1.43
-152 161 0 1.43
-171 191 0 1.43
-173 238 0 1.43
-176 225 0 1.43
-177 226 0 1.43
-214 219 0 1.43
-46 244 0 1.435
-51 127 0 1.435
-60 74 0 1.435
-78 129 0 1.435
-93 154 0 1.435
-164 131 0.155 1.435
-221 201 0.465 1.435
-243 40 0 1.435
-16 95 0 1.44
-32 84 0.74 1.44
-63 79 0.345 1.44
-116 117 0 1.44
-157 233 0.345 1.44
-180 183 0.87 1.44
-200 209 0 1.44
-214 26 0.32 1.44
-13 63 0 1.445
-49 5 0.92 1.445
-86 166 0 1.445
-156 234 0 1.445
-176 46 0.79 1.445
-193 14 0.895 1.445
-200 212 0.18 1.445
-218 249 0.26 1.445
-17 29 0 1.45
-52 77 0 1.45
-116 164 0 1.45
-130 148 0.445 1.45
-210 232 0 1.45
-213 2 0 1.45
-222 46 0.635 1.45
-4 84 0 1.455
-50 9 0.725 1.455
-74 124 0 1.455
-104 119 0 1.455
-106 170 0 1.455
-119 162 0 1.455
-147 200 0 1.455
-177 166 0.95 1.455
-177 168 0 1.455
-180 135 0.94 1.455
-190 144 0 1.455
-193 238 0.52 1.455
-214 227 0 1.455
-232 39 0 1.455
-252 202 0 1.455
-32 42 0 1.46
-88 108 0.465 1.46
-106 123 0 1.46
-113 161 0.675 1.46
-129 95 0 1.46
-159 205 0 1.46
-178 68 0 1.46
-212 216 0 1.46
-12 31 0.445 1.465
-49 207 0 1.465
-103 119 0 1.465
-105 185 0 1.465
-109 98 0.47 1.465
-205 195 0.885 1.465
-207 52 0 1.465
-78 145 0 1.47
-80 92 0 1.47
-106 169 0 1.47
-129 149 0.915 1.47
-133 245 0.84 1.47
-151 200 0 1.47
-180 195 0.75 1.47
-237 225 0 1.47
-241 239 0 1.47
-11 91 0 1.475
-16 3 0.9 1.475
-75 71 0 1.475
-83 161 0 1.475
-97 161 0.945 1.475
-120 68 0 1.475
-126 115 0 1.475
-134 186 0.27 1.475
-137 192 0.665 1.475
-177 238 0 1.475
-185 233 0 1.475
-185 144 0.885 1.475
-218 170 0.26 1.475
-242 49 0 1.475
-243 57 0.885 1.475
-254 144 0 1.475
-11 23 0.59 1.48
-13 74 0 1.48
-27 80 0 1.48
-37 104 0.895 1.48
-49 56 0 1.48
-99 152 0 1.48
-146 173 0.26 1.48
-154 189 0.595 1.48
-185 192 0.75 1.48
-194 53 0.97 1.48
-213 21 0 1.48
-215 236 0.24 1.48
-243 3 0.75 1.48
-11 31 0.465 1.485
-75 182 0 1.485
-140 214 0 1.485
-185 128 0 1.485
-79 96 0.875 1.49
-80 84 0.75 1.49
-103 233 0.395 1.49
-120 180 0 1.49
-137 141 0 1.49
-143 250 0.57 1.49
-156 170 0 1.49
-160 170 0.435 1.49
-205 16 0.97 1.49
-208 27 0 1.49
-241 46 0 1.49
-253 228 0 1.49
-256 202 0 1.49
-13 77 0 1.495
-23 73 0 1.495
-31 77 0 1.495
-77 95 0 1.495
-107 233 0.245 1.495
-125 98 0.83 1.495
-133 198 0 1.495
-156 230 0 1.495
-163 212 0 1.495
-171 175 0 1.495
-174 218 0.785 1.495
-193 245 0.755 1.495
-210 228 0 1.495
-34 118 0.96 1.5
-52 16 0.97 1.5
-79 144 0 1.5
-93 84 0 1.5
-103 170 0 1.5
-104 121 0 1.5
-120 136 0.56 1.5
-133 186 0.5 1.5
-138 221 0.67 1.5
-155 171 0 1.5
-231 40 0.38 1.5
-243 56 0 1.5
-247 9 0.54 1.5
-255 16 0.97 1.5
-5 9 0 1.505
-64 124 0.63 1.505
-69 73 0 1.505
-85 145 0.905 1.505
-85 150 0 1.505
-90 110 0 1.505
-103 112 0.575 1.505
-130 180 0 1.505
-168 170 0.99 1.505
-178 226 0.98 1.505
-180 196 0.965 1.505
-191 245 0.785 1.505
-196 255 0.27 1.505
-205 132 0 1.505
-205 14 0 1.505
-222 29 0 1.505
-229 34 0 1.505
-46 98 0.395 1.51
-57 5 0.84 1.51
-64 76 0.765 1.51
-78 67 0 1.51
-78 141 0 1.51
-133 168 0.91 1.51
-161 229 0 1.51
-185 230 0 1.51
-187 180 1 1.51
-208 26 0 1.51
-217 230 0.17 1.51
-6 69 0.64 1.515
-12 29 0 1.515
-25 45 0.39 1.515
-47 51 1.005 1.515
-111 163 0.84 1.515
-128 141 0 1.515
-131 246 0 1.515
-149 198 0 1.515
-154 110 0.85 1.515
-162 172 0.415 1.515
-200 229 0.865 1.515
-204 5 0.625 1.515
-204 21 0 1.515
-207 4 0 1.515
-214 200 0 1.515
-220 39 0.865 1.515
-229 18 0 1.515
-231 54 0.495 1.515
-27 87 0 1.52
-52 68 0.16 1.52
-90 150 0 1.52
-102 71 0.575 1.52
-108 230 0.665 1.52
-133 197 0 1.52
-134 138 0 1.52
-172 186 0.595 1.52
-215 24 0 1.52
-32 44 0 1.525
-34 5 0.965 1.525
-46 53 0.09 1.525
-47 127 0.695 1.525
-91 79 0.865 1.525
-101 106 0.24 1.525
-104 120 0 1.525
-174 235 0.96 1.525
-216 235 1.025 1.525
-41 249 0.875 1.53
-99 102 1.005 1.53
-116 145 1.015 1.53
-134 139 0 1.53
-173 163 0.125 1.53
-176 241 0 1.53
-253 193 0.695 1.53
-28 42 0 1.535
-52 117 0 1.535
-93 158 0 1.535
-116 95 0.905 1.535
-134 91 0 1.535
-138 139 0 1.535
-139 136 0.315 1.535
-155 224 0 1.535
-167 215 0 1.535
-171 239 0.9 1.535
-190 238 0 1.535
-205 221 0 1.535
-212 229 0 1.535
-227 40 0 1.535
-254 53 0.885 1.535
-44 47 0.74 1.54
-67 95 0 1.54
-87 80 0.495 1.54
-163 176 0.285 1.54
-181 245 0 1.54
-184 186 0.66 1.54
-37 117 0.335 1.545
-71 186 0 1.545
-126 95 0.615 1.545
-137 157 0 1.545
-154 148 0.39 1.545
-193 2 0 1.545
-224 225 0 1.545
-241 53 0 1.545
-11 93 0 1.55
-12 21 0 1.55
-18 40 0 1.55
-49 245 0.61 1.55
-93 79 0 1.55
-120 135 0.68 1.55
-128 68 0.41 1.55
-140 246 0 1.55
-157 198 0.8 1.55
-183 235 0.67 1.55
-185 250 0 1.55
-212 24 0.54 1.55
-214 211 0 1.55
-12 27 0 1.555
-46 1 0.395 1.555
-80 160 0.955 1.555
-137 80 0 1.555
-163 245 0 1.555
-177 117 0 1.555
-106 110 0 1.56
-126 143 1.05 1.56
-152 200 0 1.56
-187 238 0 1.56
-204 27 0 1.56
-253 141 0.76 1.56
-56 14 0.985 1.565
-73 72 0 1.565
-73 134 1.05 1.565
-104 161 0 1.565
-119 172 0 1.565
-143 238 1.045 1.565
-183 186 0.325 1.565
-204 8 0.725 1.565
-215 230 1.05 1.565
-215 29 0.615 1.565
-239 243 0 1.565
-256 57 0 1.565
-10 95 0.985 1.57
-14 95 0.475 1.57
-64 79 0 1.57
-80 154 0 1.57
-86 108 0 1.57
-128 143 0.76 1.57
-134 197 0 1.57
-187 255 0.105 1.57
-195 212 0.49 1.57
-241 1 0 1.57
-19 35 0 1.575
-46 51 0 1.575
-87 186 0.92 1.575
-109 169 0.95 1.575
-115 128 0.36 1.575
-118 23 1.07 1.575
-145 131 0 1.575
-156 224 0 1.575
-207 16 0 1.575
-214 232 0 1.575
-31 3 0.945 1.58
-36 127 0 1.58
-64 74 0 1.58
-65 145 0 1.58
-106 119 0 1.58
-177 242 0.89 1.58
-239 32 0.98 1.58
-17 10 0.4 1.585
-32 36 0.85 1.585
-41 34 0.925 1.585
-51 126 0 1.585
-92 218 0.135 1.585
-155 233 1.08 1.585
-177 253 0.93 1.585
-194 248 0.655 1.585
-215 224 0.775 1.585
-217 224 0 1.585
-227 243 0 1.585
-241 195 0 1.585
-1 54 0.295 1.59
-30 110 0 1.59
-31 65 1.01 1.59
-38 43 0.38 1.59
-39 60 0.725 1.59
-124 79 0.64 1.59
-127 115 0 1.59
-128 67 1.08 1.59
-134 214 0 1.59
-136 50 1.025 1.59
-139 200 0.935 1.59
-170 144 0.965 1.59
-181 170 0.97 1.59
-222 234 0 1.59
-229 33 0 1.59
-236 240 0 1.59
-241 61 0.775 1.59
-5 72 0.74 1.595
-29 33 0 1.595
-31 80 0 1.595
-38 59 0 1.595
-63 115 0.355 1.595
-66 84 0 1.595
-97 127 0 1.595
-118 72 0 1.595
-118 87 1.025 1.595
-138 202 0 1.595
-155 208 0 1.595
-177 143 0.925 1.595
-179 229 1.005 1.595
-180 50 0.85 1.595
-188 256 0.375 1.595
-193 5 0.865 1.595
-195 31 1.035 1.595
-241 34 0 1.595
-243 35 0.64 1.595
-7 67 0.97 1.6
-28 109 1.075 1.6
-48 98 1.09 1.6
-60 102 0 1.6
-78 157 0.53 1.6
-114 78 0 1.6
-155 237 0 1.6
-160 234 0 1.6
-174 175 0 1.6
-179 248 0 1.6
-183 57 0.645 1.6
-11 70 0 1.605
-16 75 0 1.605
-63 189 0.725 1.605
-65 72 0 1.605
-107 160 0 1.605
-116 191 0 1.605
-163 179 0 1.605
-214 41 0 1.605
-223 32 0 1.605
-253 206 0.745 1.605
-17 30 0 1.61
-17 33 0 1.61
-26 46 0 1.61
-43 96 0 1.61
-43 121 0 1.61
-46 110 0 1.61
-62 77 0 1.61
-96 148 0.61 1.61
-104 127 1.03 1.61
-147 167 0 1.61
-164 129 0.675 1.61
-177 175 0 1.61
-191 193 0 1.61
-212 35 0 1.61
-226 50 0 1.61
-15 56 0.98 1.615
-26 61 0.07 1.615
-56 178 0.38 1.615
-74 137 0 1.615
-188 203 0 1.615
-213 201 0 1.615
-241 189 0.62 1.615
-32 110 0 1.62
-49 40 0 1.62
-79 191 0 1.62
-86 165 0 1.62
-89 169 0.945 1.62
-93 157 0 1.62
-95 160 1.12 1.62
-113 189 0 1.62
-114 14 0.96 1.62
-152 162 0 1.62
-158 218 0.585 1.62
-207 200 0.94 1.62
-234 175 0 1.62
-15 67 0.985 1.625
-93 76 0.215 1.625
-107 157 0 1.625
-125 75 0.745 1.625
-132 195 0 1.625
-154 159 0 1.625
-190 77 0 1.625
-193 1 0 1.625
-211 228 0.825 1.625
-215 208 0.495 1.625
-215 235 0.325 1.625
-10 94 0.395 1.63
-19 99 0 1.63
-111 113 0.605 1.63
-115 164 0 1.63
-125 189 0 1.63
-136 17 1.1 1.63
-153 158 0.51 1.63
-170 230 0.17 1.63
-234 218 0 1.63
-247 39 0.845 1.63
-253 244 0 1.63
-31 95 0 1.635
-37 53 0 1.635
-49 50 0 1.635
-74 71 0 1.635
-85 146 0 1.635
-116 141 1.055 1.635
-122 71 0.58 1.635
-152 232 0.39 1.635
-204 41 0.13 1.635
-217 235 0 1.635
-54 104 1.01 1.64
-156 235 0 1.64
-177 163 0 1.64
-185 75 0 1.64
-234 220 0 1.64
-241 143 0.845 1.64
-1 31 1 1.645
-63 77 0 1.645
-98 161 0 1.645
-103 168 0 1.645
-118 67 0 1.645
-119 75 0 1.645
-126 76 1.1 1.645
-154 234 0 1.645
-163 127 0.94 1.645
-176 218 0 1.645
-191 179 0 1.645
-9 71 0.77 1.65
-18 39 0.655 1.65
-46 32 0 1.65
-59 16 0.985 1.65
-123 249 0.21 1.65
-135 150 1.005 1.65
-136 200 0 1.65
-176 226 0.815 1.65
-220 42 0 1.65
-229 21 0.17 1.65
-248 42 0.965 1.65
-32 18 1.05 1.655
-62 110 0 1.655
-82 110 0.265 1.655
-84 209 1.12 1.655
-92 140 0 1.655
-151 233 0 1.655
-153 221 0.62 1.655
-174 164 0 1.655
-178 245 0 1.655
-241 240 0.89 1.655
-53 117 0 1.66
-66 146 0.66 1.66
-100 229 1.11 1.66
-138 159 0 1.66
-217 171 0 1.66
-227 39 0.92 1.66
-228 40 0.36 1.66
-32 33 0 1.665
-37 86 0 1.665
-52 67 0.82 1.665
-72 91 0.975 1.665
-81 100 0.695 1.665
-101 181 0 1.665
-207 31 0.46 1.665
-207 3 0 1.665
-228 54 0.64 1.665
-234 26 0.56 1.665
-241 253 0 1.665
-254 184 0.995 1.665
-15 10 0 1.67
-26 59 0.05 1.67
-49 54 0.145 1.67
-57 119 0.85 1.67
-59 75 0 1.67
-60 112 1.12 1.67
-77 192 0.83 1.67
-224 41 1.035 1.67
-247 45 1.095 1.67
-4 99 0.87 1.675
-27 20 0.97 1.675
-70 124 0 1.675
-102 168 0.93 1.675
-123 191 0 1.675
-154 221 0 1.675
-179 232 0 1.675
-191 143 0 1.675
-229 248 0.33 1.675
-236 105 0.925 1.675
-242 228 1.14 1.675
-63 78 0.65 1.68
-75 137 0 1.68
-122 137 0.54 1.68
-130 150 0.74 1.68
-148 176 0 1.68
-149 100 1.01 1.68
-156 172 0 1.68
-26 240 0 1.685
-34 117 0 1.685
-74 122 0 1.685
-79 127 1.12 1.685
-80 94 0 1.685
-84 160 0.725 1.685
-96 169 0 1.685
-107 189 0 1.685
-117 69 0 1.685
-120 166 0 1.685
-128 138 0 1.685
-137 144 0 1.685
-15 79 0 1.69
-45 41 0 1.69
-49 110 0 1.69
-142 209 0 1.69
-150 218 0.93 1.69
-162 232 0.965 1.69
-188 197 0.94 1.69
-191 244 0 1.69
-210 167 0 1.69
-210 226 0 1.69
-247 58 0 1.69
-12 72 0.65 1.695
-31 2 0 1.695
-37 55 0 1.695
-45 57 1.1 1.695
-45 109 0 1.695
-66 116 0.97 1.695
-68 146 0 1.695
-74 79 0 1.695
-116 77 0 1.695
-173 209 0.305 1.695
-211 239 1.175 1.695
-215 12 0 1.695
-254 50 0 1.695
-255 63 0 1.695
-10 4 1.065 1.7
-89 134 0 1.7
-109 161 0 1.7
-157 148 0.405 1.7
-171 236 1.065 1.7
-178 191 0 1.7
-183 248 0 1.7
-216 228 1.085 1.7
-3 18 0.495 1.705
-15 66 0.96 1.705
-26 48 0 1.705
-31 15 0 1.705
-89 150 0 1.705
-93 138 0 1.705
-93 145 1.095 1.705
-120 129 0.7 1.705
-183 144 0.805 1.705
-193 13 1.015 1.705
-196 219 1.125 1.705
-199 69 0.18 1.705
-10 80 0.555 1.71
-23 101 0 1.71
-84 149 0 1.71
-106 73 0.595 1.71
-174 192 0.715 1.71
-233 41 0 1.71
-14 8 0.155 1.715
-17 16 0 1.715
-26 47 0 1.715
-27 94 0 1.715
-93 27 0 1.715
-121 189 0 1.715
-136 209 0 1.715
-175 255 1.21 1.715
-211 31 0.86 1.715
-222 226 0.66 1.715
-238 58 1.11 1.715
-241 49 0 1.715
-18 98 0 1.72
-83 163 0 1.72
-134 198 0 1.72
-141 209 1.13 1.72
-254 194 0.135 1.72
-21 39 0.665 1.725
-23 39 0 1.725
-27 48 1.145 1.725
-68 192 0.745 1.725
-148 127 0.905 1.725
-174 75 1.2 1.725
-196 224 0.56 1.725
-208 30 0 1.725
-213 209 1.22 1.725
-242 200 0 1.725
-242 199 0 1.725
-17 224 0 1.73
-62 114 0.85 1.73
-63 121 0.44 1.73
-71 91 0 1.73
-109 99 0.62 1.73
-123 183 1.125 1.73
-168 131 0.885 1.73
-170 235 0.115 1.73
-177 176 0 1.73
-178 168 0 1.73
-184 232 0.92 1.73
-185 189 0 1.73
-190 161 0.73 1.73
-57 105 0.795 1.735
-68 193 0.555 1.735
-71 77 0.88 1.735
-112 77 0.305 1.735
-139 192 0 1.735
-191 129 0 1.735
-210 165 0 1.735
-237 249 0 1.735
-252 12 0 1.735
-1 69 0.24 1.74
-4 145 0.47 1.74
-10 47 0.985 1.74
-11 71 0 1.74
-13 126 0 1.74
-14 69 0.88 1.74
-15 69 0.895 1.74
-27 76 0 1.74
-40 52 0 1.74
-102 178 0.535 1.74
-138 158 0 1.74
-178 194 0.645 1.74
-252 73 0.7 1.74
-6 53 0.855 1.745
-16 27 0 1.745
-26 239 0.525 1.745
-27 96 0 1.745
-59 110 0 1.745
-113 79 0 1.745
-114 110 1.155 1.745
-153 206 0.845 1.745
-155 196 0.715 1.745
-189 249 0.995 1.745
-225 30 0 1.745
-227 101 1.015 1.745
-13 10 0 1.75
-26 90 0 1.75
-66 94 0.21 1.75
-83 151 0 1.75
-84 152 0 1.75
-89 101 0.935 1.75
-100 102 0.61 1.75
-137 77 0.925 1.75
-196 203 0.615 1.75
-196 202 0.68 1.75
-238 13 1.11 1.75
-5 15 0.995 1.755
-6 3 0.5 1.755
-18 88 1.24 1.755
-106 11 1.255 1.755
-111 175 0 1.755
-112 113 1.045 1.755
-144 196 0.705 1.755
-195 7 1.105 1.755
-212 10 1.24 1.755
-224 33 0 1.755
-229 243 0 1.755
-248 6 0.7 1.755
-49 98 0 1.76
-66 132 1.165 1.76
-80 90 0 1.76
-89 44 1.08 1.76
-121 169 0 1.76
-126 69 0.845 1.76
-135 6 0.295 1.76
-161 162 0 1.76
-225 243 0 1.76
-234 239 0 1.76
-78 128 0 1.765
-93 126 1.125 1.765
-102 179 1.015 1.765
-111 189 0 1.765
-124 172 0.225 1.765
-213 231 0 1.765
-28 107 0 1.77
-127 129 1.19 1.77
-234 238 0 1.77
-1 63 0 1.775
-49 114 0 1.775
-60 124 0 1.775
-71 138 0 1.775
-84 132 0.845 1.775
-145 160 0.68 1.775
-185 71 0 1.775
-196 160 0.915 1.775
-53 7 0 1.78
-100 147 1.14 1.78
-107 158 0 1.78
-111 148 0 1.78
-118 3 0 1.78
-138 154 0 1.78
-140 203 0 1.78
-162 229 0 1.78
-183 251 0.54 1.78
-202 26 0.955 1.78
-210 231 0 1.78
-219 20 1.145 1.78
-34 55 1.015 1.785
-37 99 0.945 1.785
-53 118 0 1.785
-75 206 1.255 1.785
-92 165 1.005 1.785
-100 173 0 1.785
-142 136 1.13 1.785
-180 194 0.255 1.785
-185 249 0 1.785
-198 220 0 1.785
-215 206 0.94 1.785
-219 236 0.235 1.785
-219 43 0 1.785
-28 55 1.035 1.79
-101 110 1.28 1.79
-111 177 0 1.79
-113 129 1.115 1.79
-157 196 1.255 1.79
-160 175 0 1.79
-198 221 0.505 1.79
-204 70 0.86 1.79
-208 64 0 1.79
-216 226 0 1.79
-63 123 0.805 1.795
-66 142 1.09 1.795
-124 166 0.965 1.795
-155 223 0.355 1.795
-167 170 0 1.795
-202 29 0.81 1.795
-254 195 0 1.795
-10 19 1.055 1.8
-46 125 0 1.8
-62 128 0.385 1.8
-64 12 0 1.8
-83 165 0 1.8
-121 172 0.47 1.8
-149 229 0 1.8
-158 206 0.515 1.8
-109 121 1.025 1.805
-133 139 0.035 1.805
-180 136 0.83 1.805
-188 247 0.4 1.805
-201 12 0.065 1.805
-64 3 1.22 1.81
-68 136 0.305 1.81
-115 129 0.7 1.81
-139 151 0 1.81
-160 209 0 1.81
-13 65 1.13 1.815
-25 38 1.14 1.815
-28 40 0.4 1.815
-51 15 0.815 1.815
-81 146 0 1.815
-89 80 0 1.815
-123 143 0.63 1.815
-160 148 0 1.815
-233 247 0 1.815
-247 250 0 1.815
-51 67 0.94 1.82
-117 67 0 1.82
-119 170 0.96 1.82
-161 241 0.305 1.82
-207 221 1.085 1.82
-245 54 0 1.82
-5 65 0 1.825
-10 20 0.81 1.825
-36 109 0 1.825
-144 223 0.72 1.825
-199 2 0 1.825
-231 23 1.215 1.825
-4 96 0.72 1.83
-35 102 0 1.83
-134 217 1.045 1.83
-249 240 0 1.83
-14 21 0.925 1.835
-37 245 0 1.835
-45 255 1.21 1.835
-108 128 1.33 1.835
-222 17 0 1.835
-244 54 0.71 1.835
-56 181 1.065 1.84
-81 98 0.64 1.84
-119 72 0.695 1.84
-161 165 0 1.84
-216 236 0.535 1.84
-252 208 0.34 1.84
-2 7 0 1.845
-34 3 1.005 1.845
-43 60 1.31 1.845
-70 138 0 1.845
-73 128 1.24 1.845
-91 68 1.255 1.845
-100 176 1.135 1.845
-130 194 0 1.845
-183 194 0.835 1.845
-61 244 0 1.85
-81 110 0.73 1.85
-96 99 0.89 1.85
-141 223 1.135 1.85
-170 249 0 1.85
-200 231 1.205 1.85
-208 20 1 1.85
-49 125 1.29 1.855
-68 143 0 1.855
-103 121 0 1.855
-110 162 1.28 1.855
-114 7 0 1.855
-124 128 0 1.855
-125 96 1 1.855
-138 206 0.73 1.855
-149 140 1.205 1.855
-165 216 1.16 1.855
-204 74 0.755 1.855
-211 6 0 1.855
-4 79 0 1.86
-33 40 0 1.86
-106 128 0 1.86
-122 192 0.78 1.86
-142 221 0.805 1.86
-183 197 0 1.86
-211 231 0.11 1.86
-6 54 0.695 1.865
-19 29 1.055 1.865
-46 58 1.035 1.865
-78 76 0.81 1.865
-124 189 0.96 1.865
-139 206 0 1.865
-141 193 1.025 1.865
-145 141 0 1.865
-183 252 0 1.865
-227 97 0.555 1.865
-228 244 0 1.865
-240 58 0.425 1.865
-246 118 1.3 1.865
-5 14 0.165 1.87
-22 12 0 1.87
-51 110 0 1.87
-74 75 0 1.87
-94 112 1.35 1.87
-110 104 1.115 1.87
-120 130 0 1.87
-181 164 0 1.87
-214 236 0 1.87
-215 231 0 1.87
-241 225 0 1.87
-46 52 0 1.875
-134 150 0 1.875
-141 203 0.79 1.875
-145 129 0 1.875
-236 28 0.265 1.875
-237 206 1.355 1.875
-242 232 0 1.875
-244 51 0.835 1.875
-13 48 0.975 1.88
-47 174 1.34 1.88
-50 7 0 1.88
-72 135 0 1.88
-112 192 0 1.88
-147 161 0 1.88
-156 206 1.18 1.88
-246 256 1.285 1.88
-6 85 1.275 1.885
-17 20 0 1.885
-39 150 1.245 1.885
-94 146 0.93 1.885
-96 171 0 1.885
-151 197 0 1.885
-173 164 0 1.885
-180 184 0 1.885
-187 246 0 1.885
-213 50 1.11 1.885
-235 38 0.47 1.885
-40 53 0 1.89
-123 253 0.965 1.89
-142 193 0 1.89
-181 69 1.225 1.89
-186 253 0 1.89
-242 139 0.9 1.89
-246 38 0.55 1.89
-252 13 0 1.89
-254 203 0 1.89
-22 7 1.115 1.895
-24 89 0 1.895
-60 70 0 1.895
-109 171 0.06 1.895
-113 181 1.16 1.895
-124 183 1.125 1.895
-143 194 1.2 1.895
-167 179 0 1.895
-183 187 0 1.895
-183 201 0.64 1.895
-190 68 0 1.895
-219 212 1.36 1.895
-228 52 0 1.895
-245 38 0 1.895
-247 118 1.275 1.895
-70 130 0 1.9
-94 91 0 1.9
-153 80 0 1.9
-225 20 0.815 1.9
-237 209 0.54 1.9
-247 40 1.305 1.9
-5 52 0 1.905
-23 18 0 1.905
-61 207 0 1.905
-80 145 0 1.905
-82 103 0 1.905
-90 171 0.1 1.905
-94 101 1.385 1.905
-110 115 0 1.905
-131 139 0.805 1.905
-138 198 0.625 1.905
-219 41 0 1.905
-233 188 0.425 1.905
-238 30 0.84 1.905
-249 253 0 1.905
-4 97 0.28 1.91
-25 105 0 1.91
-37 54 0.11 1.91
-56 73 0 1.91
-68 129 0 1.91
-99 127 0.615 1.91
-154 217 0 1.91
-179 230 0 1.91
-204 26 0 1.91
-249 61 0 1.91
-254 251 1.34 1.91
-3 85 1.165 1.915
-3 130 1.125 1.915
-47 107 1.26 1.915
-55 124 0 1.915
-57 53 0 1.915
-91 107 0 1.915
-166 184 0.69 1.915
-194 243 0.705 1.915
-220 38 0 1.915
-238 248 1.355 1.915
-32 80 0.72 1.92
-50 211 1.045 1.92
-56 72 0.67 1.92
-67 182 1.245 1.92
-75 76 0 1.92
-100 152 0.635 1.92
-172 189 0 1.92
-185 131 1.31 1.92
-187 61 0.5 1.92
-216 232 0 1.92
-239 227 1.215 1.92
-252 43 1.335 1.92
-255 208 0.985 1.92
-51 178 0.065 1.925
-62 60 0.78 1.925
-66 145 0 1.925
-111 164 0.84 1.925
-166 249 0 1.925
-200 9 1.26 1.925
-230 248 0 1.925
-255 5 1.085 1.925
-12 85 0 1.93
-27 91 0 1.93
-35 110 0 1.93
-51 181 0.95 1.93
-87 157 0.105 1.93
-110 146 1.205 1.93
-148 238 1.395 1.93
-153 142 0.8 1.93
-158 171 0 1.93
-175 224 0 1.93
-185 168 0 1.93
-8 130 1 1.935
-41 43 0 1.935
-66 35 1.38 1.935
-182 50 1.16 1.935
-194 209 1.135 1.935
-210 222 0 1.935
-220 247 0.055 1.935
-243 54 0 1.935
-20 125 1.275 1.94
-47 112 1.255 1.94
-81 88 0 1.94
-87 77 1.275 1.94
-108 179 1.13 1.94
-166 152 0 1.94
-190 193 0 1.94
-226 38 1.39 1.94
-27 47 0 1.945
-74 87 0 1.945
-81 109 0.205 1.945
-108 189 0 1.945
-162 175 0 1.945
-222 238 0 1.945
-91 103 1.35 1.95
-118 69 0 1.95
-124 108 0 1.95
-138 151 0 1.95
-144 207 0 1.95
-183 198 1.155 1.95
-46 63 0 1.955
-52 54 0.71 1.955
-56 67 0 1.955
-62 208 0.955 1.955
-63 99 1.355 1.955
-114 130 0 1.955
-142 146 1.065 1.955
-33 110 0 1.96
-47 96 0 1.96
-90 160 0.585 1.96
-94 113 1.415 1.96
-140 206 0.515 1.96
-147 165 0 1.96
-166 139 1.41 1.96
-17 216 0 1.965
-119 67 0 1.965
-130 86 1.35 1.965
-151 186 1.235 1.965
-173 189 0 1.965
-25 43 0 1.97
-37 57 0.36 1.97
-76 141 0.31 1.97
-130 213 0 1.97
-132 146 0 1.97
-134 184 0 1.97
-138 217 0 1.97
-158 156 0.45 1.97
-185 167 0 1.97
-228 97 0.585 1.97
-12 86 1.365 1.975
-69 145 0.915 1.975
-83 152 0 1.975
-87 138 0 1.975
-111 146 0 1.975
-161 224 1.38 1.975
-220 24 0.625 1.975
-226 244 0 1.975
-76 80 0 1.98
-100 167 0.76 1.98
-110 164 1.23 1.98
-129 184 0 1.98
-218 240 0 1.98
-220 249 0.035 1.98
-249 38 0 1.98
-93 33 1.35 1.985
-107 150 0 1.985
-111 98 0.575 1.985
-114 129 0 1.985
-142 99 1.335 1.985
-167 188 1.375 1.985
-5 85 1.39 1.99
-25 236 0.245 1.99
-45 36 0 1.99
-47 58 1.245 1.99
-50 8 0 1.99
-102 124 0 1.99
-104 152 0.865 1.99
-131 197 0 1.99
-146 209 0 1.99
-159 152 1.13 1.99
-159 163 0.975 1.99
-213 146 0 1.99
-220 45 0 1.99
-236 24 0.88 1.99
-42 105 0 1.995
-112 169 0 1.995
-135 50 0.77 1.995
-142 156 0.91 1.995
-166 229 0 1.995
-181 167 0 1.995
-213 6 0 1.995
-122 189 0 2
-214 221 1.47 2
-26 105 0 2.005
-117 122 1.455 2.005
-130 137 0.945 2.005
-174 100 1.165 2.005
-210 239 0 2.005
-218 30 0 2.005
-4 94 0 2.01
-22 232 1.4 2.01
-30 106 1.355 2.01
-66 97 0.805 2.01
-87 155 0 2.01
-102 167 0.195 2.01
-129 135 0.9 2.01
-168 188 0.44 2.01
-183 243 1.42 2.01
-183 250 0 2.01
-17 8 0 2.015
-134 140 0 2.015
-151 202 0 2.015
-184 187 1.48 2.015
-195 248 0 2.015
-207 15 0 2.015
-31 33 0 2.02
-53 8 0.9 2.02
-202 216 1.335 2.02
-205 193 0 2.02
-224 47 0 2.02
-13 219 0 2.025
-30 63 1.385 2.025
-74 153 0 2.025
-227 236 0.925 2.025
-229 249 1.41 2.025
-21 38 1.49 2.03
-32 142 1.525 2.03
-87 182 0.91 2.03
-104 168 0 2.03
-132 157 1.41 2.03
-154 84 0.29 2.03
-163 239 0.27 2.03
-181 73 1.01 2.03
-202 22 0.89 2.03
-202 10 0 2.03
-214 25 0 2.03
-2 83 1.48 2.035
-6 216 0 2.035
-65 132 1.205 2.035
-72 153 0 2.035
-87 217 0.585 2.035
-136 215 1.355 2.035
-4 85 0 2.04
-22 38 0 2.04
-28 91 0 2.04
-37 81 1.46 2.04
-57 43 0 2.04
-100 168 0 2.04
-121 187 1.525 2.04
-131 50 0.07 2.04
-254 141 0 2.04
-48 34 1.3 2.045
-100 179 0.38 2.045
-188 230 0.415 2.045
-222 163 0 2.045
-224 20 0.785 2.045
-240 29 0.46 2.045
-59 174 1.32 2.05
-134 124 0 2.05
-135 202 0 2.05
-142 154 0 2.05
-158 163 0.86 2.05
-171 221 0 2.05
-184 151 1.205 2.05
-247 251 0 2.05
-255 248 1.355 2.05
-46 94 1.105 2.055
-88 213 1.445 2.055
-92 104 1.38 2.055
-164 242 0 2.055
-164 239 0 2.055
-204 216 0 2.055
-215 8 1.48 2.055
-240 43 0.73 2.055
-250 199 0 2.055
-19 97 0 2.06
-121 140 1.485 2.06
-137 86 1.52 2.06
-149 217 1.155 2.06
-161 225 0 2.06
-218 236 0 2.06
-25 235 0 2.065
-42 107 1.545 2.065
-87 90 0 2.065
-94 18 0.31 2.065
-105 117 1.14 2.065
-112 172 0 2.065
-118 77 1.405 2.065
-187 198 1.4 2.065
-222 146 0.46 2.065
-226 239 0 2.065
-226 253 1.005 2.065
-20 110 0 2.07
-62 122 0 2.07
-66 149 0 2.07
-166 230 0 2.07
-217 229 1.52 2.07
-241 194 0.515 2.07
-18 68 1.535 2.075
-52 248 1.325 2.075
-69 129 0.8 2.075
-114 180 1.385 2.075
-133 194 0 2.075
-145 173 1.375 2.075
-153 90 0 2.075
-164 253 0 2.075
-203 197 1.51 2.075
-224 93 1.5 2.075
-228 51 0 2.075
-28 43 0 2.08
-31 18 0 2.08
-49 58 1.095 2.08
-59 124 0.605 2.08
-75 157 0 2.08
-119 151 1.525 2.08
-133 149 0 2.08
-145 143 0 2.08
-148 17 1.515 2.08
-159 146 0.39 2.08
-230 250 1.21 2.08
-233 25 1.4 2.08
-246 53 0.72 2.08
-38 42 0 2.085
-39 115 1.4 2.085
-75 153 0 2.085
-102 133 0.905 2.085
-180 244 0 2.085
-87 140 0 2.09
-123 116 0.165 2.09
-126 189 0 2.09
-245 255 1.09 2.09
-17 239 0 2.095
-37 97 0.545 2.095
-46 97 0 2.095
-72 150 0 2.095
-91 109 0 2.095
-115 121 1.33 2.095
-168 175 1.305 2.095
-195 6 0 2.095
-197 202 0.555 2.095
-227 46 0 2.095
-17 227 0 2.1
-32 68 1.49 2.1
-65 129 0 2.1
-72 103 1.425 2.1
-123 250 0.285 2.1
-148 227 1.57 2.1
-228 48 0.96 2.1
-19 94 0 2.105
-28 106 0 2.105
-64 190 1.37 2.105
-68 157 0.92 2.105
-85 97 0.55 2.105
-88 148 1.055 2.105
-99 152 1.595 2.105
-139 230 1.545 2.105
-252 16 1.16 2.105
-4 130 0.75 2.11
-35 44 1.5 2.11
-75 144 0 2.11
-76 149 1.565 2.11
-93 111 0 2.11
-101 169 1.495 2.11
-146 216 1.205 2.11
-166 214 0 2.11
-166 226 0 2.11
-191 207 1.46 2.11
-191 242 0 2.11
-212 94 1.39 2.11
-218 10 1.45 2.11
-224 209 0.275 2.11
-224 212 0 2.11
-231 25 0 2.11
-102 188 1.34 2.115
-123 205 1.34 2.115
-138 92 0 2.115
-189 141 0 2.115
-203 10 0 2.115
-206 224 0 2.115
-212 48 1.4 2.115
-217 237 0 2.115
-2 15 0 2.12
-23 74 0 2.12
-35 57 1.56 2.12
-39 42 0 2.12
-72 132 1.25 2.12
-143 256 0.63 2.12
-154 172 0.625 2.12
-198 206 0.77 2.12
-208 77 0.935 2.12
-212 29 0 2.12
-227 81 1.29 2.12
-20 98 0 2.125
-93 91 0 2.125
-102 73 0.62 2.125
-144 157 0 2.125
-151 157 0.255 2.125
-160 176 0 2.125
-175 227 1.5 2.125
-9 70 0.4 2.13
-57 11 0 2.13
-70 77 1.045 2.13
-93 89 0 2.13
-95 98 1.57 2.13
-106 92 1.495 2.13
-123 79 0 2.13
-138 182 0 2.13
-164 179 0 2.13
-228 253 1.58 2.13
-42 54 1.3 2.135
-66 99 0.635 2.135
-73 87 0 2.135
-95 132 0 2.135
-142 206 0 2.135
-147 229 0 2.135
-154 127 0.39 2.135
-195 199 0 2.135
-224 48 1.02 2.135
-238 1 0.71 2.135
-44 117 1.39 2.14
-51 102 0 2.14
-71 140 0 2.14
-159 17 0.29 2.14
-199 11 0 2.14
-212 97 0.585 2.14
-26 221 0 2.145
-109 157 0.75 2.145
-131 244 0 2.145
-147 17 0.955 2.145
-18 95 1.28 2.15
-27 57 1.515 2.15
-66 86 0.6 2.15
-106 101 1.545 2.15
-158 109 0 2.15
-166 234 1.395 2.15
-191 256 0 2.15
-195 53 0 2.15
-218 231 1.46 2.15
-225 34 0 2.15
-239 18 0 2.15
-246 195 0.605 2.15
-102 182 0 2.155
-126 129 0.725 2.155
-62 16 0 2.16
-79 145 0 2.16
-102 172 0.155 2.16
-125 154 0.555 2.16
-132 222 0 2.16
-154 167 1.17 2.16
-162 102 0.295 2.16
-178 185 1.19 2.16
-178 184 0 2.16
-245 53 0 2.16
-13 31 0 2.165
-39 118 0.375 2.165
-90 108 0 2.165
-123 189 0 2.165
-123 141 0 2.165
-135 246 0 2.165
-190 242 0.755 2.165
-192 193 0 2.165
-221 10 0 2.165
-5 22 1.09 2.17
-58 7 1.62 2.17
-91 79 1.59 2.17
-91 214 1.575 2.17
-93 97 0 2.17
-148 229 0.85 2.17
-175 18 1.62 2.17
-177 166 1.62 2.17
-201 13 0 2.17
-210 146 0 2.17
-226 179 0 2.17
-66 88 0 2.175
-78 130 1.115 2.175
-108 214 1.165 2.175
-108 156 0 2.175
-147 214 0 2.175
-154 166 1.485 2.175
-166 180 1.57 2.175
-221 235 0 2.175
-249 203 1.2 2.175
-42 118 1.36 2.18
-96 110 0.76 2.18
-133 188 0 2.18
-154 176 0 2.18
-14 18 0.845 2.185
-120 102 0 2.185
-175 45 0.21 2.185
-182 197 0 2.185
-209 21 1.525 2.185
-223 10 0 2.185
-3 134 1.58 2.19
-18 97 0 2.19
-55 86 1.1 2.19
-68 84 0 2.19
-68 94 0 2.19
-112 189 0 2.19
-127 146 0.97 2.19
-134 242 1.65 2.19
-152 231 0 2.19
-171 189 0 2.19
-201 206 0.53 2.19
-217 167 0 2.19
-237 212 1.37 2.19
-5 70 0 2.195
-123 144 0.385 2.195
-136 197 0 2.195
-148 150 1.475 2.195
-162 184 0.335 2.195
-219 74 1.095 2.195
-254 250 1.58 2.195
-22 82 0 2.2
-23 27 0 2.2
-79 242 1.7 2.2
-103 115 1.31 2.2
-148 165 0 2.2
-162 172 1.675 2.2
-166 233 0 2.2
-169 229 1.435 2.2
-5 71 0.57 2.205
-35 114 1.505 2.205
-111 128 1.07 2.205
-124 184 1.32 2.205
-178 136 0.49 2.205
-187 207 1.56 2.205
-210 217 1.35 2.205
-223 218 0 2.205
-237 223 0 2.205
-243 199 0 2.205
-2 24 0 2.21
-25 24 0 2.21
-28 32 0 2.21
-49 3 0 2.21
-59 108 0 2.21
-63 111 1.095 2.21
-121 71 0 2.21
-143 244 0 2.21
-149 156 0 2.21
-179 244 0 2.21
-247 51 1.6 2.21
-249 9 1.665 2.21
-252 38 0 2.21
-40 178 1.305 2.215
-99 147 0 2.215
-126 141 0.965 2.215
-245 228 0 2.215
-20 111 1.295 2.22
-32 44 1.625 2.22
-59 185 1.285 2.22
-69 95 0.89 2.22
-149 194 0 2.22
-187 202 1.205 2.22
-14 212 0 2.225
-32 107 0 2.225
-43 55 0 2.225
-56 70 0 2.225
-88 162 0 2.225
-146 229 0 2.225
-148 216 1.53 2.225
-187 206 0.93 2.225
-242 143 0.845 2.225
-255 196 1.675 2.225
-12 80 0.275 2.23
-29 125 1.35 2.23
-56 21 1.315 2.23
-79 83 1.52 2.23
-86 156 0.505 2.23
-93 109 0 2.23
-103 174 1.68 2.23
-105 185 1.715 2.23
-160 235 0 2.23
-93 142 0 2.235
-178 119 0 2.235
-183 231 1.725 2.235
-192 157 1.145 2.235
-200 24 0.495 2.235
-2 71 1.6 2.24
-8 73 1.605 2.24
-13 11 0 2.24
-16 68 0.735 2.24
-22 235 1.455 2.24
-26 85 1.675 2.24
-62 78 0.56 2.24
-69 149 0.905 2.24
-72 147 0 2.24
-88 97 0 2.24
-90 112 0 2.24
-93 83 1.225 2.24
-95 149 1.115 2.24
-96 97 0 2.24
-174 185 0.52 2.24
-233 231 0 2.24
-251 29 1.48 2.24
-100 150 0.78 2.245
-101 27 1.625 2.245
-106 89 1.11 2.245
-145 193 0 2.245
-166 245 0 2.245
-240 225 0 2.245
-40 60 0 2.25
-102 115 0 2.25
-119 184 1.21 2.25
-132 213 0 2.25
-159 237 0 2.25
-174 121 0.6 2.25
-206 218 0 2.25
-81 24 0 2.255
-108 127 1.555 2.255
-134 194 0 2.255
-138 89 0 2.255
-142 173 0.97 2.255
-151 160 0.855 2.255
-181 139 0.8 2.255
-248 115 1.605 2.255
-30 25 1.01 2.26
-38 60 0 2.26
-44 90 0 2.26
-120 124 0 2.26
-154 112 0 2.26
-158 239 1.095 2.26
-170 205 1.455 2.26
-177 179 0 2.26
-193 255 0 2.26
-196 31 0 2.26
-13 209 1.75 2.265
-26 23 0 2.265
-39 51 0 2.265
-59 105 0 2.265
-84 165 0 2.265
-85 10 1.73 2.265
-92 174 1.35 2.265
-103 152 0 2.265
-133 121 0.565 2.265
-187 13 1.36 2.265
-195 227 1.245 2.265
-203 215 0.73 2.265
-248 113 1.65 2.265
-249 256 0 2.265
-4 83 0 2.27
-31 235 1.6 2.27
-48 60 0.815 2.27
-106 154 0.15 2.27
-128 129 0 2.27
-177 131 0 2.27
-181 124 0 2.27
-195 22 1.31 2.27
-239 225 0 2.27
-251 47 1.75 2.27
-16 138 1.5 2.275
-26 89 1.075 2.275
-27 40 1.66 2.275
-33 113 1.495 2.275
-79 95 0 2.275
-121 138 1.545 2.275
-127 188 1.675 2.275
-158 240 1.455 2.275
-187 201 0.875 2.275
-218 41 0 2.275
-220 221 0 2.275
-237 31 1.57 2.275
-2 78 0 2.28
-26 21 1.69 2.28
-32 106 0 2.28
-33 52 1.095 2.28
-79 157 0 2.28
-124 179 1.395 2.28
-162 119 1.595 2.28
-170 250 0 2.28
-177 120 0 2.28
-184 186 1.725 2.28
-196 239 1.23 2.28
-215 221 0.47 2.28
-217 206 0.545 2.28
-249 60 1.335 2.28
-25 44 0.06 2.285
-26 32 0 2.285
-63 190 1.01 2.285
-171 236 1.745 2.285
-239 19 1.24 2.285
-35 55 1.01 2.29
-38 115 1.77 2.29
-70 90 0.925 2.29
-112 234 0.125 2.29
-183 236 0 2.29
-205 198 1.31 2.29
-210 150 0.78 2.29
-211 41 1.71 2.29
-221 25 0.305 2.29
-229 218 1.55 2.29
-232 18 1.605 2.29
-253 201 1.78 2.29
-65 83 1.005 2.295
-93 77 0 2.295
-126 192 0.84 2.295
-8 119 1.61 2.3
-20 96 0.64 2.3
-29 20 0 2.3
-40 107 1.66 2.3
-78 69 0.58 2.3
-95 147 0.345 2.3
-103 112 1.74 2.3
-107 117 1.505 2.3
-158 176 0 2.3
-248 6 1.79 2.3
-23 82 0 2.305
-32 77 1.57 2.305
-40 133 1.72 2.305
-46 53 1.79 2.305
-80 155 0 2.305
-237 202 1.305 2.305
-237 29 0 2.305
-249 44 0.86 2.305
-14 30 1.795 2.31
-14 68 0.515 2.31
-95 222 1.46 2.31
-105 104 0 2.31
-163 231 0 2.31
-178 71 0 2.31
-193 148 1.55 2.31
-196 18 1.79 2.31
-209 227 0 2.31
-252 62 0.75 2.31
-35 117 0 2.315
-114 119 0 2.315
-157 206 0.49 2.315
-162 167 0 2.315
-224 32 0 2.315
-225 41 1.795 2.315
-228 38 0.585 2.315
-238 245 0.695 2.315
-4 142 0.62 2.32
-36 3 1.6 2.32
-49 98 1.81 2.32
-76 157 0 2.32
-81 101 0.75 2.32
-110 189 0.77 2.32
-161 253 1.315 2.32
-186 135 0 2.32
-186 201 0.68 2.32
-187 141 0 2.32
-220 232 0 2.32
-40 199 0.705 2.325
-40 59 1.64 2.325
-60 71 0 2.325
-76 135 1.605 2.325
-77 68 0 2.325
-171 220 0 2.325
-215 229 0 2.325
-223 224 0 2.325
-234 203 1.535 2.325
-245 34 0 2.325
-256 16 0 2.325
-8 137 1.525 2.33
-15 19 0.85 2.33
-25 39 0 2.33
-35 115 0 2.33
-67 145 0 2.33
-81 97 0 2.33
-99 115 0 2.33
-100 117 1.825 2.33
-112 161 1.315 2.33
-128 161 0.985 2.33
-133 180 0 2.33
-146 115 1.795 2.33
-168 38 1.44 2.33
-170 251 0.17 2.33
-173 175 0 2.33
-187 254 0 2.33
-213 169 1.445 2.33
-4 67 0 2.335
-57 9 0 2.335
-78 79 0 2.335
-112 138 1.735 2.335
-154 170 0 2.335
-187 252 0 2.335
-212 45 0 2.335
-217 6 1.34 2.335
-15 68 0.66 2.34
-44 89 1.835 2.34
-47 59 0.72 2.34
-53 69 0.42 2.34
-92 160 0 2.34
-181 140 1.405 2.34
-237 30 0 2.34
-247 244 1.495 2.34
-64 16 0 2.345
-82 41 0.985 2.345
-207 19 0.9 2.345
-212 232 1.735 2.345
-232 41 0 2.345
-3 133 1.565 2.35
-16 122 0 2.35
-22 236 0 2.35
-42 199 0.95 2.35
-45 20 0 2.35
-123 172 0 2.35
-188 189 0 2.35
-201 42 1.4 2.35
-212 43 1.42 2.35
-223 15 1.685 2.35
-249 199 1.39 2.35
-12 93 0 2.355
-12 32 1.585 2.355
-26 30 0 2.355
-29 94 0 2.355
-36 65 1.56 2.355
-36 126 0 2.355
-45 228 0 2.355
-84 163 0 2.355
-129 253 1.83 2.355
-143 222 1.58 2.355
-159 173 0 2.355
-161 234 1.18 2.355
-164 243 0 2.355
-193 225 1.765 2.355
-194 225 1.775 2.355
-200 56 1.39 2.355
-223 29 0 2.355
-36 116 0 2.36
-61 34 1.235 2.36
-98 102 0 2.36
-128 189 0 2.36
-213 160 1.755 2.36
-232 44 1.3 2.36
-2 52 1.355 2.365
-29 47 0 2.365
-30 235 0 2.365
-53 116 1.815 2.365
-95 146 0.315 2.365
-152 169 0 2.365
-168 171 1.835 2.365
-15 81 1.825 2.37
-41 54 0.075 2.37
-42 9 1 2.37
-48 126 0.69 2.37
-78 67 1.78 2.37
-101 89 1.825 2.37
-108 122 0 2.37
-231 101 1.815 2.37
-241 49 1.75 2.37
-1 69 1.8 2.375
-14 77 0 2.375
-20 109 0 2.375
-25 32 0 2.375
-36 115 0 2.375
-62 9 1.015 2.375
-96 107 0 2.375
-128 191 0 2.375
-137 138 0 2.375
-140 157 0 2.375
-169 220 1.375 2.375
-195 18 0.935 2.375
-203 42 1.36 2.375
-217 221 0 2.375
-9 121 1.8 2.38
-13 202 0 2.38
-125 108 0 2.38
-127 241 1.22 2.38
-145 210 0 2.38
-158 127 0.825 2.38
-187 255 1.775 2.38
-232 35 1.455 2.38
-49 38 1.845 2.385
-118 182 1.415 2.385
-126 127 0 2.385
-158 237 0 2.385
-172 250 0 2.385
-184 155 1.83 2.385
-219 32 0 2.385
-234 58 1.325 2.385
-235 256 1.76 2.385
-14 80 1.375 2.39
-21 101 0.595 2.39
-32 91 0 2.39
-105 121 0 2.39
-126 110 1.435 2.39
-145 196 0.99 2.39
-191 129 1.82 2.39
-217 169 0.175 2.39
-235 58 1.605 2.39
-34 1 0.445 2.395
-46 29 0.275 2.395
-142 222 1.03 2.395
-163 227 0 2.395
-214 231 0 2.395
-241 248 0 2.395
-13 16 0 2.4
-26 232 1.58 2.4
-43 58 1.085 2.4
-63 107 1.025 2.4
-74 20 1.16 2.4
-77 157 1.11 2.4
-96 174 0 2.4
-143 210 1.545 2.4
-161 228 1.605 2.4
-168 34 1.73 2.4
-250 57 0 2.4
-32 89 0 2.405
-64 114 1.65 2.405
-138 205 1.815 2.405
-163 211 0.225 2.405
-185 153 1.865 2.405
-238 34 0 2.405
-24 97 0 2.41
-35 52 0.87 2.41
-43 62 1.255 2.41
-48 122 0 2.41
-96 222 1.185 2.41
-133 184 0 2.41
-165 238 1.75 2.41
-169 160 0 2.41
-174 156 0.485 2.41
-180 193 0 2.41
-8 83 0 2.415
-13 204 1.42 2.415
-21 89 1.855 2.415
-84 175 0.875 2.415
-115 164 1.7 2.415
-116 134 1.525 2.415
-160 171 0 2.415
-160 198 1.23 2.415
-160 240 0.355 2.415
-226 34 0 2.415
-234 42 0 2.415
-8 24 0 2.42
-46 34 0 2.42
-48 1 0.965 2.42
-67 95 1.635 2.42
-87 99 1.91 2.42
-186 157 0.045 2.42
-226 227 0 2.42
-14 12 1.755 2.425
-25 85 0 2.425
-180 132 0 2.425
-188 252 0 2.425
-82 38 1.245 2.43
-120 162 0 2.43
-142 94 0 2.43
-153 194 1.845 2.43
-189 144 0.4 2.43
-191 243 0.64 2.43
-207 208 0 2.43
-247 53 1.225 2.43
-22 66 1.52 2.435
-41 35 0.385 2.435
-70 151 1.115 2.435
-99 150 0 2.435
-111 159 0.35 2.435
-153 184 1.805 2.435
-171 239 1.615 2.435
-251 9 0.54 2.435
-253 243 1 2.435
-35 177 1.455 2.44
-73 140 1.165 2.44
-112 113 1.865 2.44
-160 220 1.46 2.44
-172 246 0 2.44
-191 251 0.75 2.44
-223 219 0 2.44
-244 34 0 2.44
-249 42 0 2.44
-17 225 0 2.445
-58 121 0 2.445
-98 190 1.415 2.445
-116 130 0.78 2.445
-175 165 0.475 2.445
-181 123 1.82 2.445
-207 209 0 2.445
-222 196 0 2.445
-38 99 1.905 2.45
-87 145 1.94 2.45
-120 179 0 2.45
-125 73 1.82 2.45
-175 241 0 2.45
-180 183 1.525 2.45
-191 205 0 2.45
-222 206 0 2.45
-235 27 1.225 2.45
-246 42 1.31 2.45
-252 205 0 2.45
-12 121 1.695 2.455
-13 221 1.54 2.455
-21 83 1.345 2.455
-49 43 1.365 2.455
-58 78 1.255 2.455
-70 124 1.77 2.455
-74 68 1.125 2.455
-81 111 0 2.455
-120 116 0 2.455
-120 182 0 2.455
-174 122 0.56 2.455
-191 165 1.36 2.455
-254 206 0 2.455
-63 174 0.71 2.46
-78 75 0 2.46
-79 136 1.36 2.46
-134 146 1.945 2.46
-163 37 1.595 2.46
-172 252 1.565 2.46
-188 251 0 2.46
-238 50 1.84 2.46
-251 13 0 2.46
-254 1 0 2.46
-17 31 0 2.465
-35 103 1.37 2.465
-48 11 0.955 2.465
-48 113 0 2.465
-75 68 0.745 2.465
-82 28 0.345 2.465
-92 213 1.075 2.465
-95 88 1.255 2.465
-96 92 0 2.465
-99 166 1.73 2.465
-172 179 0.215 2.465
-188 205 1.225 2.465
-204 7 0 2.465
-233 221 0.125 2.465
-240 243 1.855 2.465
-248 7 0 2.465
-23 24 0 2.47
-52 120 0.71 2.47
-59 62 0 2.47
-65 190 0 2.47
-73 182 0 2.47
-112 173 0 2.47
-114 104 1.93 2.47
-158 97 1.81 2.47
-165 228 1.875 2.47
-175 196 1.56 2.47
-203 12 0 2.47
-215 7 1.55 2.47
-226 212 0 2.47
-235 43 0 2.47
-14 10 0 2.475
-15 75 0.66 2.475
-34 199 0.895 2.475
-58 12 0 2.475
-79 69 1.445 2.475
-82 40 0 2.475
-147 207 1.72 2.475
-169 176 1.015 2.475
-187 238 1.895 2.475
-207 211 0.83 2.475
-226 231 0 2.475
-236 50 1.875 2.475
-49 56 1.855 2.48
-85 76 0 2.48
-114 190 0 2.48
-126 121 1.48 2.48
-255 34 0.655 2.48
-15 12 1.64 2.485
-44 101 0 2.485
-49 113 0 2.485
-58 77 0 2.485
-59 12 1.82 2.485
-72 84 1.855 2.485
-85 27 1.61 2.485
-125 60 1.01 2.485
-139 153 0 2.485
-231 50 1.88 2.485
-10 73 1.745 2.49
-17 18 0 2.49
-79 147 1.52 2.49
-127 175 0.45 2.49
-142 90 1.22 2.49
-142 111 0.14 2.49
-147 194 0 2.49
-46 19 1.33 2.495
-61 59 0 2.495
-133 242 0 2.495
-171 251 1.025 2.495
-204 223 0.345 2.495
-225 24 1.37 2.495
-17 16 1.77 2.5
-49 15 0 2.5
-81 134 1.93 2.5
-87 213 0.91 2.5
-87 147 1.765 2.5
-140 245 1.875 2.5
-168 57 1.745 2.5
-170 140 1.655 2.5
-203 59 1.895 2.5
-234 256 0 2.5
-31 209 0.525 2.505
-40 150 1.65 2.505
-45 57 1.91 2.505
-49 97 1.345 2.505
-58 55 0 2.505
-71 83 1.59 2.505
-80 134 1.94 2.505
-81 145 0 2.505
-95 159 0 2.505
-102 119 0 2.505
-103 90 0 2.505
-165 242 1.915 2.505
-180 131 0 2.505
-254 132 0 2.505
-56 116 0.535 2.51
-75 132 1.375 2.51
-112 190 0 2.51
-114 131 1.485 2.51
-125 123 0 2.51
-146 214 0.605 2.51
-155 201 0 2.51
-170 235 2.005 2.51
-207 5 0.805 2.51
-237 189 0.285 2.51
-49 64 0 2.515
-70 27 0 2.515
-166 164 0.54 2.515
-170 139 1.02 2.515
-156 221 0 2.52
-217 208 1.865 2.52
-65 177 0 2.525
-114 162 0.35 2.525
-133 140 0 2.525
-170 233 0 2.525
-207 2 0 2.525
-213 229 0 2.525
-220 24 2.02 2.525
-220 27 0 2.525
-251 30 1.195 2.525
-80 129 0.95 2.53
-100 166 0.55 2.53
-128 186 0 2.53
-134 145 0.715 2.53
-138 90 0 2.53
-147 206 2.015 2.53
-227 8 0.89 2.53
-70 91 0 2.535
-128 176 0.4 2.535
-161 190 1.915 2.535
-168 139 1.05 2.535
-187 256 0 2.535
-189 132 2.03 2.535
-19 83 0 2.54
-28 101 0 2.54
-50 34 0 2.54
-58 112 1.885 2.54
-84 104 1.095 2.54
-133 79 1.815 2.54
-134 159 2.035 2.54
-145 151 1.875 2.54
-152 37 1.98 2.54
-167 37 1.95 2.54
-170 119 1.88 2.54
-171 139 1.87 2.54
-41 248 0.945 2.545
-74 75 2.025 2.545
-99 180 2.02 2.545
-184 210 1.645 2.545
-188 155 1.76 2.545
-202 223 0 2.545
-221 29 0 2.545
-228 19 1.69 2.545
-233 251 1.22 2.545
-250 48 1.59 2.545
-11 10 0 2.55
-45 250 1.195 2.55
-45 59 0 2.55
-79 254 0.625 2.55
-98 180 1.475 2.55
-134 79 1.585 2.55
-153 188 1.805 2.55
-251 49 1.255 2.55
-12 138 0.62 2.555
-35 54 0.645 2.555
-68 159 0.78 2.555
-80 159 0 2.555
-93 96 0 2.555
-116 181 0.505 2.555
-128 192 0 2.555
-157 239 1.985 2.555
-158 156 2.055 2.555
-168 227 1.575 2.555
-213 163 0 2.555
-228 53 0 2.555
-251 238 0 2.555
-28 38 0 2.56
-84 159 0.77 2.56
-156 144 1.785 2.56
-175 253 0 2.56
-194 22 1.64 2.56
-207 136 1.26 2.56
-235 41 0 2.56
-31 19 0 2.565
-73 188 1.43 2.565
-99 165 0 2.565
-158 110 1.15 2.565
-162 128 1.895 2.565
-36 15 0.135 2.57
-124 157 1.645 2.57
-153 215 0.675 2.57
-207 53 0.715 2.57
-214 157 1.58 2.57
-217 141 0.83 2.57
-217 25 0 2.57
-37 28 0 2.575
-39 99 0 2.575
-81 77 1.805 2.575
-127 237 1.27 2.575
-156 198 0 2.575
-181 164 1.94 2.575
-217 157 0 2.575
-225 30 2.03 2.575
-49 24 1.9 2.58
-104 179 0 2.58
-139 57 1.78 2.58
-168 26 1.82 2.58
-194 21 1.995 2.58
-212 24 1.765 2.58
-238 53 0.745 2.58
-246 203 0 2.58
-18 83 0.88 2.585
-25 105 2.085 2.585
-70 74 0 2.585
-71 179 1.93 2.585
-86 107 0 2.585
-127 254 1.35 2.585
-165 247 1.86 2.585
-213 155 1.16 2.585
-246 55 2.025 2.585
-26 55 1.155 2.59
-62 4 1.64 2.59
-84 113 1.61 2.59
-126 186 1.095 2.59
-207 210 1.205 2.59
-212 34 1.42 2.59
-244 211 1.475 2.59
-252 121 2 2.59
-7 85 0 2.595
-36 110 0 2.595
-48 15 0.8 2.595
-99 163 0 2.595
-114 118 0 2.595
-125 121 0 2.595
-139 242 2.035 2.595
-165 184 2.005 2.595
-247 41 0 2.595
-253 206 2.03 2.595
-82 39 0 2.6
-118 70 0 2.6
-125 105 0 2.6
-31 81 0 2.605
-36 100 1.325 2.605
-48 112 0 2.605
-53 57 2.09 2.605
-83 151 1.87 2.605
-84 149 1.835 2.605
-116 189 0 2.605
-129 147 0 2.605
-235 46 1.14 2.605
-247 55 0 2.605
-249 45 0.85 2.605
-62 65 0 2.61
-64 123 0.71 2.61
-73 186 0 2.61
-82 104 0 2.61
-112 186 0 2.61
-128 67 1.765 2.61
-138 156 0 2.61
-164 183 1.635 2.61
-178 80 2.03 2.61
-209 37 1.635 2.61
-241 244 0 2.61
-99 148 0 2.615
-103 121 1.94 2.615
-156 219 1.815 2.615
-32 105 0 2.62
-65 134 1.56 2.62
-84 176 1.385 2.62
-90 97 2.055 2.62
-99 86 0 2.62
-109 122 1.625 2.62
-114 134 1.435 2.62
-114 79 0 2.62
-173 221 0 2.62
-197 211 0 2.62
-218 200 1.72 2.62
-256 208 0 2.62
-38 105 1.04 2.625
-43 36 0.99 2.625
-45 238 0 2.625
-45 49 1.255 2.625
-63 84 1.64 2.625
-93 68 0 2.625
-125 126 0 2.625
-155 250 0.79 2.625
-161 226 0 2.625
-241 189 1.71 2.625
-252 48 0.9 2.625
-64 80 0.7 2.63
-125 15 1.9 2.63
-178 191 1.855 2.63
-233 29 1.465 2.63
-14 66 0.29 2.635
-35 53 0 2.635
-42 15 2.025 2.635
-44 107 0 2.635
-84 88 0 2.635
-118 69 2.065 2.635
-139 199 0 2.635
-142 161 1.72 2.635
-165 254 1.965 2.635
-165 232 1.12 2.635
-219 235 0 2.635
-223 228 2.04 2.635
-44 103 0.58 2.64
-56 67 2 2.64
-63 115 1.64 2.64
-65 75 0.81 2.64
-67 147 1.485 2.64
-69 76 2.065 2.64
-96 105 0 2.64
-114 7 1.87 2.64
-13 2 1.045 2.645
-63 65 0 2.645
-63 100 1.6 2.645
-63 75 0.97 2.645
-124 80 0.205 2.645
-125 75 1.84 2.645
-126 124 1.01 2.645
-127 129 1.885 2.645
-160 205 2.035 2.645
-180 232 2.045 2.645
-226 240 0.99 2.645
-233 239 1.655 2.645
-1 16 0.825 2.65
-2 53 0.745 2.65
-15 113 0 2.65
-20 63 1.37 2.65
-73 70 0 2.65
-123 80 0.21 2.65
-127 222 1.37 2.65
-127 240 1.315 2.65
-153 141 0.39 2.65
-154 103 0 2.65
-34 52 0 2.655
-69 88 2.095 2.655
-130 161 2.145 2.655
-154 222 0.245 2.655
-159 131 1.8 2.655
-166 167 0 2.655
-166 179 0 2.655
-168 248 0 2.655
-231 85 1.91 2.655
-12 96 1.73 2.66
-63 109 0 2.66
-64 109 1.555 2.66
-84 180 1.78 2.66
-92 171 0 2.66
-96 109 0 2.66
-103 171 0.62 2.66
-120 98 1.34 2.66
-127 253 1.235 2.66
-127 238 1.28 2.66
-173 239 0.225 2.66
-220 23 0.855 2.66
-254 253 0 2.66
-1 68 1.815 2.665
-92 157 0 2.665
-154 108 0 2.665
-178 68 2.03 2.665
-184 200 0 2.665
-236 61 1.435 2.665
-83 86 0 2.67
-138 132 2.075 2.67
-139 9 0.105 2.67
-155 208 1.735 2.67
-165 225 0 2.67
-168 246 0.775 2.67
-229 34 1.81 2.67
-254 17 1.095 2.67
-40 100 0.625 2.675
-51 100 0 2.675
-54 101 0.62 2.675
-74 158 1.86 2.675
-103 214 0.67 2.675
-108 162 2.135 2.675
-168 50 1.025 2.675
-175 243 0.58 2.675
-189 228 2.11 2.675
-210 198 1.875 2.675
-214 235 0 2.675
-242 200 1.815 2.675
-29 48 0.075 2.68
-43 107 0 2.68
-61 43 0 2.68
-64 65 0 2.68
-74 142 0.25 2.68
-123 190 0 2.68
-127 173 0 2.68
-127 186 1.97 2.68
-153 213 0.645 2.68
-161 46 1.6 2.68
-162 182 0.375 2.68
-168 242 0 2.68
-196 216 1.655 2.68
-205 221 1.575 2.68
-12 85 2.175 2.685
-49 52 0 2.685
-62 35 2.035 2.685
-71 182 0 2.685
-87 83 0 2.685
-130 99 0.78 2.685
-143 253 0.645 2.685
-146 136 0 2.685
-238 30 2.085 2.685
-16 96 1.99 2.69
-36 177 1.345 2.69
-45 58 1.045 2.69
-93 80 0 2.69
-113 79 1.87 2.69
-120 68 2.035 2.69
-156 222 0.345 2.69
-161 163 0 2.69
-177 165 0.475 2.69
-244 200 0.17 2.69
-250 42 0 2.69
-4 21 0 2.695
-11 124 0 2.695
-74 141 1.78 2.695
-83 104 0.82 2.695
-110 180 1.54 2.695
-139 6 0.495 2.695
-190 253 0 2.695
-211 8 0 2.695
-242 198 1.945 2.695
-250 62 1.375 2.695
-143 147 1.445 2.7
-167 234 0.995 2.7
-168 37 1.3 2.7
-176 239 0 2.7
-185 245 1.775 2.7
-233 22 1.39 2.7
-243 52 0 2.7
-255 3 0.96 2.7
-13 5 2.055 2.705
-24 83 0 2.705
-55 98 1.9 2.705
-87 146 1.955 2.705
-100 149 1.905 2.705
-101 117 0 2.705
-135 147 0.51 2.705
-146 108 2.19 2.705
-159 152 2.15 2.705
-238 13 1.815 2.705
-247 59 2.205 2.705
-248 1 1.15 2.705
-56 98 1.93 2.71
-58 125 0.43 2.71
-87 169 0 2.71
-153 160 0 2.71
-249 242 2.09 2.71
-35 100 0 2.715
-52 68 1.78 2.715
-86 104 0 2.715
-104 149 1.405 2.715
-104 167 0 2.715
-153 144 0 2.715
-162 242 0.55 2.715
-175 174 2.075 2.715
-248 98 1.665 2.715
-54 102 0 2.72
-91 169 0 2.72
-106 123 2 2.72
-110 190 1.16 2.72
-141 156 0.88 2.72
-152 196 1.57 2.72
-176 45 0.565 2.72
-201 16 1.195 2.72
-252 55 0 2.72
-61 52 0 2.725
-71 91 1.81 2.725
-88 164 1.73 2.725
-111 141 2 2.725
-125 11 1.165 2.725
-140 141 0 2.725
-177 187 2.13 2.725
-183 242 0 2.725
-203 52 1.92 2.725
-204 74 2.13 2.725
-75 253 2.105 2.73
-83 103 2.14 2.73
-90 169 0 2.73
-160 196 1.955 2.73
-233 45 0.74 2.73
-241 246 0.815 2.73
-247 42 0 2.73
-4 72 0.51 2.735
-39 98 0 2.735
-55 56 0 2.735
-60 16 0.21 2.735
-85 104 0.89 2.735
-126 123 0 2.735
-140 160 0 2.735
-209 240 1.32 2.735
-210 21 0 2.735
-223 21 2.235 2.735
-235 245 2.2 2.735
-21 69 0 2.74
-58 44 0 2.74
-81 8 0 2.74
-88 100 0.37 2.74
-139 60 2.19 2.74
-158 174 0 2.74
-161 189 0 2.74
-195 53 2.2 2.74
-210 244 1.635 2.74
-220 37 0 2.74
-225 21 1.235 2.74
-8 89 1.455 2.745
-58 106 0.435 2.745
-75 140 0 2.745
-100 165 0 2.745
-118 9 0.355 2.745
-165 180 1.295 2.745
-204 78 2.075 2.745
-216 24 0 2.745
-220 28 0 2.745
-62 14 0 2.75
-62 126 0 2.75
-64 75 0 2.75
-100 103 0.475 2.75
-119 179 0 2.75
-125 177 2.1 2.75
-140 205 1.23 2.75
-215 10 1.415 2.75
-225 2 1.805 2.75
-245 198 1.545 2.75
-77 140 2.25 2.755
-80 192 0 2.755
-81 21 0.105 2.755
-128 180 0.34 2.755
-172 45 2.165 2.755
-175 149 2.12 2.755
-175 176 0 2.755
-175 255 1.83 2.755
-192 202 1.485 2.755
-252 5 2.1 2.755
-8 82 0 2.76
-51 162 0.975 2.76
-131 147 0 2.76
-197 3 1.96 2.76
-252 54 0 2.76
-254 53 1.54 2.76
-38 53 0 2.765
-40 97 0 2.765
-67 87 1.54 2.765
-70 83 1.42 2.765
-113 80 1.8 2.765
-139 256 0 2.765
-144 251 0.695 2.765
-162 131 0.425 2.765
-177 161 0 2.765
-186 253 1.955 2.765
-187 251 0 2.765
-218 29 0 2.765
-73 16 0 2.77
-172 251 0 2.77
-222 234 2.145 2.77
-226 209 1.24 2.77
-233 236 0 2.77
-69 136 1.245 2.775
-81 67 1.74 2.775
-100 181 0 2.775
-146 175 0 2.775
-158 191 1.63 2.775
-183 198 2.13 2.775
-211 81 1.465 2.775
-231 28 0 2.775
-244 197 0 2.775
-245 201 1.415 2.775
-8 67 0 2.78
-19 24 0 2.78
-56 119 0 2.78
-62 3 0 2.78
-62 98 2.135 2.78
-64 78 0 2.78
-165 145 1.43 2.78
-225 20 1.995 2.78
-252 106 1.375 2.78
-252 7 0 2.78
-5 114 0 2.785
-73 80 0 2.785
-116 132 1.025 2.785
-127 234 1.215 2.785
-148 226 0 2.785
-193 206 0 2.785
-244 184 0.47 2.785
-8 86 0 2.79
-24 87 2.175 2.79
-103 167 0 2.79
-103 233 1.615 2.79
-106 11 1.995 2.79
-110 187 2.065 2.79
-181 242 0 2.79
-196 225 1.21 2.79
-199 9 0 2.79
-253 15 2.245 2.79
-103 172 0 2.795
-106 54 1.27 2.795
-119 186 0.425 2.795
-126 112 0 2.795
-128 187 0 2.795
-160 215 1.03 2.795
-182 155 1.34 2.795
-189 206 2.095 2.795
-211 3 0.33 2.795
-211 24 0 2.795
-5 4 0 2.8
-22 89 1.49 2.8
-59 9 0.425 2.8
-60 126 2.12 2.8
-173 234 0 2.8
-191 209 2.08 2.8
-237 236 0 2.8
-185 186 0 2.805
-242 3 2.265 2.805
-248 114 1.295 2.805
-114 78 1.685 2.81
-157 169 0.095 2.81
-187 240 0 2.81
-197 54 2.05 2.81
-254 195 1.865 2.81
-64 127 2.29 2.815
-88 167 0 2.815
-121 186 0 2.815
-137 77 2.14 2.815
-192 240 2.25 2.815
-254 240 0 2.815
-65 178 0 2.82
-72 76 0 2.82
-82 100 0 2.82
-97 178 2.235 2.82
-130 84 0.575 2.82
-162 175 2.11 2.82
-170 240 0.285 2.82
-227 101 2.04 2.82
-8 68 1.23 2.825
-97 164 2.02 2.825
-113 181 1.955 2.825
-133 132 1.205 2.825
-197 118 2.07 2.825
-219 27 0 2.825
-249 197 1.6 2.825
-12 137 1.145 2.83
-14 211 0 2.83
-61 1 0.735 2.83
-103 151 0.785 2.83
-113 117 0 2.83
-113 133 1.67 2.83
-116 162 0 2.83
-116 131 0 2.83
-128 178 1.485 2.83
-237 187 2.115 2.83
-245 197 0 2.83
-55 101 0 2.835
-62 50 2.295 2.835
-78 158 2.335 2.835
-100 116 1.62 2.835
-237 251 0 2.835
-10 96 0.495 2.84
-49 1 0 2.84
-56 6 0.8 2.84
-119 183 0 2.84
-126 177 0 2.84
-138 202 1.68 2.84
-139 251 0 2.84
-150 173 2.19 2.84
-192 140 0.375 2.84
-207 194 0.72 2.84
-238 129 1.885 2.84
-22 7 2.005 2.845
-22 8 0 2.845
-25 8 1.405 2.845
-62 248 1.89 2.845
-67 196 2.27 2.845
-97 191 2.155 2.845
-103 156 0 2.845
-146 191 1.73 2.845
-182 197 2.265 2.845
-208 1 1.06 2.845
-227 82 0.6 2.845
-47 100 2.145 2.85
-61 203 0 2.85
-114 199 0.975 2.85
-140 203 2.04 2.85
-142 196 0.815 2.85
-207 1 0 2.85
-248 35 0.96 2.85
-12 92 1.685 2.855
-53 199 0 2.855
-65 128 0 2.855
-100 115 0 2.855
-142 84 0 2.855
-206 211 1.865 2.855
-240 205 2.13 2.855
-6 71 1.085 2.86
-7 72 0 2.86
-33 248 1.495 2.86
-89 150 2.19 2.86
-145 141 1.91 2.86
-177 176 2.04 2.86
-210 220 1.14 2.86
-215 199 1.845 2.86
-242 197 0 2.86
-5 69 0 2.865
-14 2 0 2.865
-99 164 1.16 2.865
-110 116 0 2.865
-135 196 2.27 2.865
-148 196 0.135 2.865
-150 218 1.965 2.865
-180 240 1.87 2.865
-247 34 0.855 2.865
-256 4 2.14 2.865
-23 69 0 2.87
-65 133 1.405 2.87
-94 170 2.23 2.87
-138 188 1.775 2.87
-166 163 0 2.87
-180 228 2.055 2.87
-195 66 1.455 2.87
-5 53 0 2.875
-39 146 2.155 2.875
-130 196 1.635 2.875
-138 159 1.795 2.875
-151 173 2.205 2.875
-206 1 1.685 2.875
-231 106 2.255 2.875
-23 72 0 2.88
-38 98 1.76 2.88
-104 169 0 2.88
-107 187 2.175 2.88
-114 72 0 2.88
-128 80 0 2.88
-191 241 0 2.88
-207 14 0 2.88
-211 82 0.66 2.88
-12 105 2.21 2.885
-18 39 2.025 2.885
-33 216 2.255 2.885
-41 90 2.38 2.885
-61 15 0 2.885
-91 86 0 2.885
-109 127 0 2.885
-182 151 0.815 2.885
-191 225 1.3 2.885
-202 16 0.905 2.885
-19 69 0 2.89
-37 98 0 2.89
-138 160 0 2.89
-152 218 1.885 2.89
-184 136 0 2.89
-199 69 2.075 2.89
-236 43 0 2.89
-144 15 2.215 2.895
-184 215 1.385 2.895
-217 160 0 2.895
-226 129 2.18 2.895
-228 247 1.24 2.895
-242 206 2.34 2.895
-208 20 2.375 2.9
-217 224 1.82 2.9
-235 246 2.05 2.9
-43 64 1.285 2.905
-70 39 1.275 2.905
-82 36 0.215 2.905
-92 155 0 2.905
-101 105 0 2.905
-154 158 0 2.905
-180 187 1.835 2.905
-184 204 1.655 2.905
-244 246 0.855 2.905
-256 17 1.87 2.905
-70 29 2.34 2.91
-70 101 1.055 2.91
-85 130 0.83 2.91
-88 214 1.02 2.91
-117 179 0.82 2.91
-122 177 2.08 2.91
-125 100 2.215 2.91
-145 136 0 2.91
-162 185 0.4 2.91
-182 186 0 2.91
-201 200 0 2.91
-229 44 2.055 2.91
-41 101 0 2.915
-51 99 0.085 2.915
-70 105 1.015 2.915
-76 182 0 2.915
-80 132 0.97 2.915
-107 183 2.4 2.915
-131 196 1.005 2.915
-135 155 1.1 2.915
-175 48 2.395 2.915
-211 30 2.015 2.915
-215 203 2.305 2.915
-85 69 0 2.92
-133 151 0 2.92
-217 173 1.745 2.92
-218 26 0 2.92
-238 205 0.205 2.92
-241 194 2.165 2.92
-2 114 1.33 2.925
-55 11 0 2.925
-70 103 1.42 2.925
-80 143 0 2.925
-87 135 0.6 2.925
-99 149 0 2.925
-111 176 0 2.925
-128 115 1.835 2.925
-172 232 1.105 2.925
-180 243 0 2.925
-189 175 0 2.925
-197 57 1.725 2.925
-248 115 2.41 2.925
-11 75 0 2.93
-33 51 0 2.93
-42 11 1.01 2.93
-79 193 1.165 2.93
-115 183 1.71 2.93
-192 238 2.225 2.93
-238 244 0 2.93
-241 228 0 2.93
-242 2 1.99 2.93
-12 154 2.19 2.935
-39 90 0 2.935
-41 92 2.4 2.935
-56 133 0.56 2.935
-77 141 0 2.935
-116 187 2.315 2.935
-208 17 0 2.935
-224 10 0 2.935
-227 248 2.19 2.935
-12 27 1.59 2.94
-54 98 0.76 2.94
-72 89 0 2.94
-90 102 1.5 2.94
-107 234 2.06 2.94
-125 95 2.44 2.94
-177 191 0 2.94
-180 46 2.425 2.94
-185 168 2.075 2.94
-215 16 1.975 2.94
-255 206 1.71 2.94
-12 41 2.3 2.945
-19 95 0.515 2.945
-95 100 1.235 2.945
-218 25 0 2.945
-236 64 2.35 2.945
-29 105 0.69 2.95
-35 95 2.045 2.95
-122 188 1.2 2.95
-207 17 0.4 2.95
-227 34 0 2.95
-254 175 0.535 2.95
-254 194 1.99 2.95
-27 92 0 2.955
-28 72 1.325 2.955
-30 37 2.215 2.955
-47 95 1.16 2.955
-47 83 2.355 2.955
-70 153 0 2.955
-71 135 0 2.955
-87 214 0.635 2.955
-94 158 0 2.955
-178 71 2.43 2.955
-179 197 0 2.955
-207 223 0 2.955
-213 6 2.415 2.955
-224 44 1.785 2.955
-228 248 0.49 2.955
-104 226 1.985 2.96
-104 168 2.135 2.96
-109 166 2.37 2.96
-124 92 1.805 2.96
-165 234 2.355 2.96
-190 238 1.88 2.96
-215 12 1.995 2.96
-218 45 0 2.96
-248 3 1.315 2.96
-30 95 1.83 2.965
-41 34 1.605 2.965
-42 90 2.435 2.965
-54 69 0 2.965
-56 60 0 2.965
-157 143 1.42 2.965
-256 204 1.335 2.965
-12 153 1.445 2.97
-28 91 2.25 2.97
-51 101 0 2.97
-54 6 1.935 2.97
-85 150 2.405 2.97
-120 59 2.465 2.97
-163 191 0.695 2.97
-170 183 0 2.97
-170 182 0.295 2.97
-193 13 1.715 2.97
-214 160 0.515 2.97
-17 20 1.985 2.975
-20 21 0 2.975
-102 122 0 2.975
-116 143 0.885 2.975
-123 249 2.43 2.975
-142 193 2.22 2.975
-153 88 2.185 2.975
-224 231 1.89 2.975
-42 122 0.985 2.98
-55 170 2.385 2.98
-132 13 1.97 2.98
-206 16 1.505 2.98
-213 144 1.785 2.98
-227 20 0 2.98
-49 13 0.945 2.985
-72 153 2.4 2.985
-169 185 0 2.985
-196 3 2.32 2.985
-204 199 0 2.985
-7 69 0 2.99
-19 47 0.87 2.99
-51 128 2.1 2.99
-76 186 0 2.99
-93 35 2.39 2.99
-121 187 2.23 2.99
-161 209 1.135 2.99
-195 198 1.645 2.99
-208 81 2.465 2.99
-6 89 2.075 2.995
-67 83 0 2.995
-119 138 1.16 2.995
-130 163 2.185 2.995
-137 214 2.39 2.995
-138 154 2.065 2.995
-144 249 0.67 2.995
-159 17 2.215 2.995
-169 234 0 2.995
-213 25 2.27 2.995
-3 93 1.24 3
-17 197 2.425 3
-117 134 2.46 3
-121 183 2.35 3
-126 67 0.85 3
-137 186 0 3
-144 25 2.215 3
-226 249 2.32 3
-8 134 1.415 3.005
-9 65 2.355 3.005
-21 33 0 3.005
-28 103 0 3.005
-73 170 2.245 3.005
-92 90 0 3.005
-101 115 0 3.005
-110 191 1.465 3.005
-138 143 0 3.005
-209 30 0 3.005
-13 3 0.99 3.01
-74 65 1.175 3.01
-40 178 2.43 3.015
-52 67 1.725 3.015
-66 67 0 3.015
-107 191 2.455 3.015
-114 181 0 3.015
-160 31 1.915 3.015
-211 35 2.37 3.015
-247 197 1.62 3.015
-12 86 2.04 3.02
-14 3 0 3.02
-70 149 1.335 3.02
-85 134 0 3.02
-111 191 1.13 3.02
-123 183 1.965 3.02
-137 155 0 3.02
-193 255 2.28 3.02
-209 20 0.79 3.02
-210 206 2.125 3.02
-223 3 2.245 3.02
-226 172 1.975 3.02
-249 198 1.535 3.02
-6 120 1.925 3.025
-29 90 0 3.025
-40 114 0 3.025
-47 90 0 3.025
-78 83 1.755 3.025
-89 95 2.415 3.025
-106 185 0 3.025
-117 76 2.28 3.025
-182 250 0 3.025
-206 17 0 3.025
-237 31 2.455 3.025
-252 38 2.325 3.025
-37 53 1.695 3.03
-37 51 0 3.03
-199 133 2.5 3.03
-206 19 1.71 3.03
-224 41 1.78 3.03
-248 197 0 3.03
-16 19 0.835 3.035
-75 129 0.96 3.035
-86 153 0 3.035
-124 151 1.35 3.035
-176 46 1.595 3.035
-180 175 0.54 3.035
-213 196 2.265 3.035
-228 34 0 3.035
-235 57 0 3.035
-26 16 2.425 3.04
-55 169 2.43 3.04
-105 157 1.955 3.04
-110 176 1.445 3.04
-117 124 0 3.04
-119 151 2.495 3.04
-132 17 1.505 3.04
-168 171 2.44 3.04
-174 177 2.14 3.04
-201 73 2.43 3.04
-203 17 1.365 3.04
-205 204 1.325 3.04
-247 198 2.42 3.04
-4 30 2.315 3.045
-8 18 0 3.045
-40 53 2.395 3.045
-74 4 1.04 3.045
-89 157 0.57 3.045
-98 117 0 3.045
-198 199 1.51 3.045
-218 31 1.575 3.045
-234 45 0.22 3.045
-247 118 2.455 3.045
-5 12 2.52 3.05
-24 51 1.575 3.05
-44 64 2.345 3.05
-45 64 1.425 3.05
-52 9 2.34 3.05
-84 147 0 3.05
-98 116 0 3.05
-116 133 0.915 3.05
-117 183 1.65 3.05
-137 132 2.355 3.05
-189 203 2.13 3.05
-190 164 0 3.05
-223 33 2.185 3.05
-234 224 0 3.05
-238 242 0.685 3.05
-53 98 1.89 3.055
-86 90 0 3.055
-96 89 0 3.055
-139 205 1.285 3.055
-140 214 1.52 3.055
-145 209 0 3.055
-200 3 0 3.055
-202 143 1.65 3.055
-202 205 0 3.055
-223 200 2.33 3.055
-3 18 2.245 3.06
-27 154 0.465 3.06
-31 44 2.485 3.06
-62 37 2.26 3.06
-66 133 2.285 3.06
-78 89 2.32 3.06
-166 170 0 3.06
-206 4 1.92 3.06
-255 52 0 3.06
-17 221 0 3.065
-59 170 2.28 3.065
-98 181 0 3.065
-108 184 2.495 3.065
-110 177 0.615 3.065
-119 72 2.49 3.065
-126 76 2.425 3.065
-166 168 0 3.065
-196 200 1.77 3.065
-45 256 1.06 3.07
-55 133 2.505 3.07
-86 156 2.455 3.07
-86 165 2.495 3.07
-102 183 1.145 3.07
-125 170 0 3.07
-147 100 2.445 3.07
-153 233 2.015 3.07
-167 237 1.685 3.07
-206 31 0.095 3.07
-224 251 1.135 3.07
-228 255 0 3.07
-2 69 0 3.075
-15 3 0 3.075
-27 103 1.22 3.075
-32 42 2.51 3.075
-70 130 2.38 3.075
-109 170 1.88 3.075
-142 145 0 3.075
-143 17 1.345 3.075
-176 224 0 3.075
-201 118 2.165 3.075
-208 74 0.385 3.075
-37 99 2.44 3.08
-46 256 0 3.08
-58 7 2.575 3.08
-62 203 0 3.08
-75 191 2.3 3.08
-116 129 0 3.08
-136 140 1.24 3.08
-139 155 0 3.08
-152 194 0 3.08
-170 177 2.175 3.08
-180 253 0 3.08
-213 242 0.525 3.08
-244 206 1.83 3.08
-33 98 0 3.085
-39 165 2.47 3.085
-49 51 0 3.085
-67 117 2.035 3.085
-145 132 0 3.085
-176 164 0 3.085
-243 3 1.625 3.085
-55 165 2.5 3.09
-106 73 2.045 3.09
-123 155 1.425 3.09
-155 205 0 3.09
-169 121 2.355 3.09
-181 134 0.845 3.09
-198 60 2.295 3.09
-104 185 0 3.095
-158 196 1.025 3.095
-164 255 2.535 3.095
-185 241 2.185 3.095
-189 186 0 3.095
-227 236 2.135 3.095
-230 251 0 3.095
-233 229 0 3.095
-24 98 1.325 3.1
-44 112 2.225 3.1
-49 56 2.565 3.1
-54 185 1.725 3.1
-65 20 2.425 3.1
-76 96 0 3.1
-102 233 2.54 3.1
-117 241 2.335 3.1
-181 226 2.265 3.1
-206 195 1.89 3.1
-211 231 2.56 3.1
-13 50 1.96 3.105
-63 177 0.675 3.105
-74 81 1.365 3.105
-78 76 2.415 3.105
-103 185 0 3.105
-105 214 2.59 3.105
-106 90 0 3.105
-130 150 1.745 3.105
-147 214 2.33 3.105
-154 141 2.09 3.105
-186 204 2.525 3.105
-208 11 0 3.105
-216 224 1.985 3.105
-224 16 2.34 3.105
-241 193 0 3.105
-247 250 1.85 3.105
-14 52 0 3.11
-101 100 0 3.11
-108 168 0.15 3.11
-153 157 0 3.11
-179 210 2.08 3.11
-235 184 2.495 3.11
-252 205 2.605 3.11
-10 95 2.115 3.115
-40 185 1.45 3.115
-48 99 2.585 3.115
-73 52 2.585 3.115
-76 155 0 3.115
-119 89 2.42 3.115
-179 140 1.335 3.115
-181 193 2.095 3.115
-34 88 2.485 3.12
-40 56 0 3.12
-85 98 2.25 3.12
-162 129 0.675 3.12
-193 243 2.12 3.12
-222 180 2.45 3.12
-22 236 2.475 3.125
-27 90 0 3.125
-67 241 2.375 3.125
-87 124 0.695 3.125
-153 152 1.77 3.125
-157 171 0 3.125
-163 209 0 3.125
-29 24 2.405 3.13
-50 3 0 3.13
-55 110 2.56 3.13
-67 182 2.6 3.13
-83 97 0 3.13
-108 230 1.61 3.13
-109 121 1.86 3.13
-140 246 1.74 3.13
-158 100 1.145 3.13
-192 159 1.43 3.13
-210 17 0 3.13
-229 235 1.6 3.13
-61 252 0 3.135
-149 209 2.125 3.135
-153 150 0 3.135
-160 171 2.58 3.135
-174 190 0 3.135
-174 253 1.175 3.135
-202 31 0.935 3.135
-221 32 2.5 3.135
-45 252 1.13 3.14
-70 137 0 3.14
-75 155 0.635 3.14
-214 194 1.67 3.14
-215 31 1.96 3.14
-249 135 2.255 3.14
-23 18 2.015 3.145
-27 111 2.055 3.145
-50 1 0 3.145
-107 176 0 3.145
-130 209 2.14 3.145
-143 14 2.27 3.145
-151 194 0 3.145
-164 240 0 3.145
-205 9 1.21 3.145
-218 216 0.94 3.145
-241 135 2.235 3.145
-5 1 0 3.15
-94 36 0.97 3.15
-120 67 0 3.15
-140 218 1.55 3.15
-175 232 1.37 3.15
-207 203 0 3.15
-15 74 0.2 3.155
-19 23 2.225 3.155
-67 162 0.495 3.155
-76 80 2.585 3.155
-96 84 0 3.155
-169 168 0 3.155
-174 238 2.355 3.155
-201 59 1.925 3.155
-222 31 1.545 3.155
-233 157 1.88 3.155
-243 194 2.185 3.155
-250 197 0.695 3.155
-48 109 0 3.16
-70 133 1.39 3.16
-143 208 1.505 3.16
-43 95 1.9 3.165
-51 67 2.11 3.165
-65 70 2.505 3.165
-164 178 0 3.165
-38 60 2.375 3.17
-41 103 2.045 3.17
-203 126 2.19 3.17
-205 17 0.985 3.17
-9 122 1.435 3.175
-57 112 2.4 3.175
-93 95 0 3.175
-105 233 2.545 3.175
-125 90 0.265 3.175
-146 178 2.44 3.175
-172 252 2.55 3.175
-184 60 2.66 3.175
-190 191 0 3.175
-28 90 0 3.18
-41 31 2.305 3.18
-115 241 1.59 3.18
-118 104 2.49 3.18
-153 149 0 3.18
-173 176 0 3.18
-200 212 2.605 3.18
-212 216 2.06 3.18
-244 203 2.085 3.18
-32 83 2.245 3.185
-64 4 2.685 3.185
-82 34 0.34 3.185
-95 97 0 3.185
-108 235 2.225 3.185
-130 179 2.62 3.185
-214 211 2.545 3.185
-226 178 2.295 3.185
-240 252 2.68 3.185
-2 20 0 3.19
-6 31 2.58 3.19
-11 53 2.65 3.19
-68 84 2.345 3.19
-78 43 2.54 3.19
-81 84 0 3.19
-163 211 2.49 3.19
-167 211 2.535 3.19
-170 235 2.56 3.19
-174 192 2.34 3.19
-218 22 0.59 3.19
-250 11 2.2 3.19
-37 236 0 3.195
-38 121 2.03 3.195
-169 170 0 3.195
-172 240 2.615 3.195
-194 17 1.01 3.195
-207 62 0 3.195
-236 54 0 3.195
-26 109 2.485 3.2
-38 106 1.125 3.2
-75 234 2.42 3.2
-89 155 2.395 3.2
-93 82 1.275 3.2
-94 101 2.7 3.2
-113 79 2.695 3.2
-171 220 2.59 3.2
-230 246 0 3.2
-242 199 2.495 3.2
-39 150 2.15 3.205
-103 115 2.6 3.205
-104 179 2.65 3.205
-112 77 1.91 3.205
-120 131 0 3.205
-142 160 0 3.205
-143 244 2.39 3.205
-207 253 0 3.205
-212 36 0.99 3.205
-249 140 1.94 3.205
-249 58 0 3.205
-122 74 2.06 3.21
-129 206 1.76 3.21
-140 197 0 3.21
-146 97 1 3.21
-148 211 0 3.21
-157 107 2.015 3.21
-172 253 2.345 3.21
-181 140 2.545 3.21
-202 6 0 3.21
-216 19 2.04 3.21
-235 31 2.315 3.21
-45 62 0.28 3.215
-53 8 2.225 3.215
-54 103 2.205 3.215
-61 58 0 3.215
-62 11 0 3.215
-75 178 1.745 3.215
-83 100 0.405 3.215
-90 107 0 3.215
-123 76 0.49 3.215
-131 254 0 3.215
-193 254 0 3.215
-207 144 2.325 3.215
-207 195 0 3.215
-41 109 2.17 3.22
-93 2 1.33 3.22
-100 178 0 3.22
-190 255 1.88 3.22
-212 82 0.645 3.22
-217 22 0.145 3.22
-53 69 2.4 3.225
-111 108 1.12 3.225
-122 96 2.385 3.225
-178 168 2.53 3.225
-213 218 1.145 3.225
-233 165 0.825 3.225
-243 57 2.26 3.225
-7 91 2.315 3.23
-57 166 2.355 3.23
-81 116 2.115 3.23
-158 173 0 3.23
-202 14 1.855 3.23
-206 256 0 3.23
-222 171 0 3.23
-5 71 2.35 3.235
-14 53 0.91 3.235
-48 52 0.695 3.235
-100 175 0 3.235
-112 176 0 3.235
-122 76 0.615 3.235
-127 171 0.25 3.235
-136 242 0 3.235
-146 127 2.735 3.235
-147 223 2.005 3.235
-157 191 2.39 3.235
-182 242 0 3.235
-23 119 2.605 3.24
-120 104 1.845 3.24
-207 159 1.05 3.24
-225 223 0 3.24
-227 247 2.06 3.24
-233 170 2.71 3.24
-7 86 2.07 3.245
-55 125 0.375 3.245
-56 69 0 3.245
-81 101 2.57 3.245
-100 163 0 3.245
-148 223 0 3.245
-181 123 2.515 3.245
-207 186 2.555 3.245
-9 76 0.74 3.25
-113 67 0.925 3.25
-142 136 2.07 3.25
-172 224 1.89 3.25
-172 245 0 3.25
-187 155 1.15 3.25
-212 17 0 3.25
-228 230 2.35 3.25
-234 186 0.455 3.25
-39 169 2.065 3.255
-45 20 2.74 3.255
-48 35 2.095 3.255
-75 205 1.36 3.255
-78 94 2.185 3.255
-92 108 0 3.255
-94 68 2.675 3.255
-107 127 0 3.255
-194 211 0 3.255
-194 216 0 3.255
-15 19 2.73 3.26
-17 82 2.68 3.26
-109 103 1.675 3.26
-111 102 2.31 3.26
-128 79 0 3.26
-175 20 2.4 3.26
-179 217 2.4 3.26
-256 59 0 3.26
-55 109 1.415 3.265
-61 125 0 3.265
-72 145 0 3.265
-75 144 2.545 3.265
-78 82 2.115 3.265
-81 130 0 3.265
-94 89 2.65 3.265
-111 127 0 3.265
-139 131 2.745 3.265
-152 22 1.335 3.265
-204 60 0.29 3.265
-62 17 1.7 3.27
-76 138 0 3.27
-122 114 2.635 3.27
-156 171 0 3.27
-176 186 2.055 3.27
-223 5 2.525 3.27
-226 50 1.7 3.27
-37 57 2.015 3.275
-50 60 2.18 3.275
-58 52 1.05 3.275
-65 122 1.455 3.275
-106 169 2.155 3.275
-133 162 0.525 3.275
-146 161 0 3.275
-188 246 0 3.275
-224 42 0 3.275
-225 22 1.395 3.275
-61 42 0 3.28
-81 43 2.625 3.28
-111 128 2.43 3.28
-145 150 1.41 3.28
-146 102 2.14 3.28
-149 159 1.115 3.28
-167 224 1.95 3.28
-172 176 0 3.28
-181 139 2.61 3.28
-207 206 0 3.28
-223 46 1.675 3.28
-226 184 2.465 3.28
-44 166 2.23 3.285
-48 58 0.47 3.285
-57 119 2.585 3.285
-71 82 2.605 3.285
-103 145 1.965 3.285
-130 145 0 3.285
-146 100 0 3.285
-166 73 2.315 3.285
-172 231 0 3.285
-184 195 0 3.285
-188 245 1.335 3.285
-206 15 1.795 3.285
-216 25 0 3.285
-27 112 2.09 3.29
-81 157 2.675 3.29
-166 137 2.775 3.29
-207 49 2.355 3.29
-18 28 1.5 3.295
-51 166 2.125 3.295
-78 30 2.17 3.295
-109 171 2 3.295
-117 162 0 3.295
-126 3 0 3.295
-196 53 2.775 3.295
-204 7 2.53 3.295
-231 50 2.62 3.295
-249 201 0.82 3.295
-253 203 0 3.295
-36 64 0.355 3.3
-44 109 0 3.3
-56 70 2.34 3.3
-81 69 0 3.3
-99 103 0 3.3
-192 155 0.535 3.3
-216 28 1.73 3.3
-223 30 0 3.3
-51 98 0 3.305
-107 97 2.105 3.305
-161 239 0.295 3.305
-204 10 0 3.305
-216 23 0 3.305
-88 145 0 3.31
-104 100 0 3.31
-107 75 2.445 3.31
-113 122 1.02 3.31
-126 69 2.57 3.31
-149 193 1.195 3.31
-206 212 1.575 3.31
-216 18 0 3.31
-249 50 1.4 3.31
-6 10 1.345 3.315
-14 20 0 3.315
-32 89 2.58 3.315
-62 58 0 3.315
-62 114 1.82 3.315
-62 196 2.76 3.32
-62 126 2.81 3.32
-68 145 0 3.32
-126 17 2.575 3.32
-136 211 0 3.32
-154 171 0 3.32
-158 218 2.81 3.32
-188 186 0 3.32
-244 126 2.785 3.32
-256 126 2.155 3.32
-42 107 2.82 3.325
-139 245 0.945 3.325
-143 254 0 3.325
-160 100 2.8 3.325
-172 26 1.745 3.325
-212 16 2.51 3.325
-230 37 0 3.325
-254 184 2 3.325
-4 82 0 3.33
-95 174 1.72 3.33
-131 245 0 3.33
-148 239 0 3.33
-151 165 2.8 3.33
-167 219 2.76 3.33
-180 49 2.38 3.33
-236 50 2.555 3.33
-241 230 2.165 3.33
-256 11 0 3.33
-42 97 2.46 3.335
-58 63 0 3.335
-66 99 2.25 3.335
-127 164 0 3.335
-150 241 2.475 3.335
-170 186 0 3.335
-179 244 2.345 3.335
-236 245 1.02 3.335
-249 224 2.8 3.335
-2 82 0.535 3.34
-49 50 1.815 3.34
-128 177 0 3.34
-174 164 2.225 3.34
-229 35 2.835 3.34
-245 252 1.02 3.34
-2 87 2.705 3.345
-47 51 1.745 3.345
-63 11 0 3.345
-80 130 1.425 3.345
-111 233 2.11 3.345
-144 221 0 3.345
-164 245 0 3.345
-170 249 1.95 3.345
-178 184 2.835 3.345
-195 3 0 3.345
-249 251 0 3.345
-1 8 0 3.35
-24 92 2.47 3.35
-27 32 0 3.35
-59 77 0 3.35
-179 195 1.745 3.35
-227 35 0 3.35
-4 69 0 3.355
-19 35 2.075 3.355
-48 243 2.795 3.355
-50 53 0 3.355
-59 12 2.655 3.355
-69 82 0.875 3.355
-84 222 0.905 3.355
-170 140 2.84 3.355
-190 186 0 3.355
-203 12 2.83 3.355
-50 118 2.35 3.36
-55 64 1.72 3.36
-55 123 2.02 3.36
-58 255 0 3.36
-59 97 2.855 3.36
-61 64 0 3.36
-105 171 1.34 3.36
-111 222 0.72 3.36
-177 254 0 3.36
-221 20 1.99 3.36
-225 193 2.65 3.36
-230 245 0 3.36
-14 30 2.335 3.365
-84 160 2.515 3.365
-86 169 0 3.365
-146 168 0 3.365
-4 90 2.675 3.37
-42 47 0 3.37
-46 42 0 3.37
-75 140 2.87 3.37
-80 72 2.07 3.37
-86 166 1.8 3.37
-89 102 2.045 3.37
-94 105 1.945 3.37
-167 200 2.535 3.37
-172 236 0 3.37
-228 24 0.895 3.37
-240 93 2.745 3.37
-1 2 0 3.375
-55 185 0.43 3.375
-106 171 2.875 3.375
-122 190 1.055 3.375
-122 192 1.925 3.375
-146 183 1.91 3.375
-175 30 0.115 3.375
-201 64 2.49 3.375
-206 58 2.36 3.375
-66 24 0 3.38
-73 28 2.535 3.38
-106 117 1.155 3.38
-125 105 2.71 3.38
-190 254 0 3.38
-238 36 0.29 3.38
-256 52 1.28 3.38
-54 181 1.215 3.385
-178 254 0 3.385
-180 143 0 3.385
-180 168 0 3.385
-202 29 2.005 3.385
-203 31 0.945 3.385
-206 132 0 3.385
-214 171 0.3 3.385
-4 31 0 3.39
-199 40 2.425 3.39
-240 47 2.785 3.39
-244 194 0 3.39
-244 64 2.775 3.39
-4 77 0 3.395
-10 102 2.435 3.395
-11 65 1.55 3.395
-60 8 1.615 3.395
-126 95 2.415 3.395
-142 206 2.545 3.395
-167 22 1.865 3.395
-188 192 0 3.395
-197 56 1.59 3.395
-223 20 0 3.395
-14 74 0.535 3.4
-65 83 2.375 3.4
-96 140 2.855 3.4
-131 195 0 3.4
-163 220 1.535 3.4
-170 253 0 3.4
-179 5 2.6 3.4
-196 15 2.645 3.4
-227 66 1.345 3.4
-254 196 0 3.4
-256 36 2.035 3.4
-1 120 2.815 3.405
-4 85 2.885 3.405
-22 24 0 3.405
-22 44 0 3.405
-45 47 0 3.405
-52 56 0 3.405
-57 8 2.57 3.405
-68 101 2.56 3.405
-137 67 1.335 3.405
-164 232 0.165 3.405
-172 229 0 3.405
-246 215 1.375 3.405
-75 141 0 3.41
-92 166 1.37 3.41
-125 107 0 3.41
-126 93 2.285 3.41
-144 253 0.375 3.41
-155 203 0 3.41
-189 251 1.15 3.41
-197 211 2.745 3.41
-243 184 0 3.41
-22 39 0 3.415
-38 166 2.06 3.415
-45 16 2.515 3.415
-224 27 0 3.415
-228 85 2.9 3.415
-237 208 2.595 3.415
-126 32 2.515 3.42
-135 245 0.75 3.42
-195 215 1.445 3.42
-196 1 1.575 3.42
-197 70 2.14 3.42
-202 239 1.945 3.42
-218 29 2.87 3.42
-238 243 0 3.42
-19 72 2.01 3.425
-39 125 2.735 3.425
-105 121 2.86 3.425
-107 122 0.865 3.425
-122 186 0 3.425
-167 228 2.075 3.425
-197 60 1.625 3.425
-200 85 1.35 3.425
-255 33 1.97 3.425
-38 103 1.865 3.43
-43 99 2.55 3.43
-62 250 2.785 3.43
-75 188 0 3.43
-75 143 0.6 3.43
-154 160 0 3.43
-172 220 0 3.43
-203 60 0 3.43
-204 28 0 3.43
-241 172 1.995 3.43
-246 12 2.85 3.43
-247 5 1.665 3.43
-11 112 1.245 3.435
-16 27 2.17 3.435
-22 37 0 3.435
-45 39 2.84 3.435
-45 63 1.385 3.435
-81 111 2.805 3.435
-118 181 0 3.435
-123 190 2.81 3.435
-213 184 0.56 3.435
-247 242 1.155 3.435
-248 8 2.36 3.435
-49 244 0 3.44
-54 177 2.94 3.44
-60 23 1.69 3.44
-95 160 2.555 3.44
-100 253 2.94 3.44
-142 149 1.785 3.44
-144 6 1.425 3.44
-155 208 2.69 3.44
-199 115 2.435 3.44
-236 118 2.38 3.44
-22 85 0 3.445
-60 25 2.135 3.445
-184 56 2.81 3.445
-214 29 2.885 3.445
-234 198 2.68 3.445
-246 195 2.265 3.445
-246 203 2.655 3.445
-45 59 2.625 3.45
-134 82 1.545 3.45
-173 220 2.055 3.45
-179 213 1.795 3.45
-209 5 2.925 3.45
-217 167 2.25 3.45
-221 29 2.905 3.45
-238 30 2.83 3.45
-241 188 2.38 3.45
-1 69 2.42 3.455
-55 251 2.78 3.455
-57 40 0 3.455
-93 74 0 3.455
-149 67 0 3.455
-190 242 2.28 3.455
-191 205 2.695 3.455
-194 8 2.705 3.455
-203 239 2.925 3.455
-241 247 1.255 3.455
-250 196 2.925 3.455
-253 49 0 3.455
-254 247 2.22 3.455
-24 87 2.85 3.46
-49 247 2.58 3.46
-65 79 0 3.46
-112 169 2.115 3.46
-144 13 0.525 3.46
-153 139 2.84 3.46
-153 215 2.88 3.46
-205 221 2.915 3.46
-212 43 2.48 3.46
-236 39 0 3.46
-12 121 2.54 3.465
-45 94 2.45 3.465
-65 67 0 3.465
-94 74 0 3.465
-95 149 2.91 3.465
-164 237 2.775 3.465
-227 33 0 3.465
-233 176 0 3.465
-248 40 0.375 3.465
-125 174 0 3.47
-131 184 0 3.47
-133 68 1.985 3.47
-175 227 2.72 3.47
-179 198 1.555 3.47
-191 250 2.905 3.47
-192 140 2.91 3.47
-255 64 0 3.47
-52 17 1.795 3.475
-83 103 2.8 3.475
-109 108 0 3.475
-147 167 2.39 3.475
-154 172 2.935 3.475
-211 70 2.44 3.475
-226 36 2.695 3.475
-231 85 2.83 3.475
-242 184 0 3.475
-17 93 1.36 3.48
-54 104 1.81 3.48
-150 171 0 3.48
-179 243 0 3.48
-189 48 2.595 3.48
-214 168 0 3.48
-217 184 1.385 3.48
-221 16 1.575 3.48
-223 66 1.955 3.48
-226 212 2.845 3.48
-246 59 2.105 3.48
-246 120 2.355 3.48
-248 39 0.94 3.48
-41 87 2.54 3.485
-44 125 0 3.485
-81 47 0 3.485
-139 213 0.675 3.485
-139 193 2.9 3.485
-150 220 1.365 3.485
-246 8 2.31 3.485
-13 221 2.505 3.49
-15 17 1.34 3.49
-65 158 2.535 3.49
-109 169 1.66 3.49
-127 69 2.99 3.49
-191 62 2.895 3.49
-195 197 0 3.49
-211 8 2.945 3.49
-231 40 1.645 3.49
-103 177 2.845 3.495
-136 167 2.045 3.495
-151 220 0 3.495
-155 219 0 3.495
-174 98 2.76 3.495
-204 216 2.885 3.495
-211 4 0 3.495
-225 21 2.785 3.495
-241 249 2.06 3.495
-9 90 2.68 3.5
-38 104 1.85 3.5
-65 90 2.82 3.5
-164 61 2.59 3.5
-226 33 0 3.5
-243 52 2.865 3.5
-12 138 2.66 3.505
-91 105 0 3.505
-100 226 0.44 3.505
-117 131 1.66 3.505
-129 184 2.15 3.505
-181 254 2.08 3.505
-225 220 1.43 3.505
-1 93 1.595 3.51
-61 53 1.7 3.51
-84 158 0 3.51
-88 166 0 3.51
-94 27 1.9 3.51
-100 254 1.76 3.51
-104 108 0 3.51
-122 79 0 3.51
-129 13 1.83 3.51
-153 141 3.005 3.51
-159 13 2.17 3.51
-225 151 2.245 3.51
-243 196 2.65 3.51
-246 251 0 3.51
-3 82 2.425 3.515
-5 4 2.975 3.515
-13 209 2.77 3.515
-96 145 0 3.515
-110 113 0 3.515
-125 102 1.505 3.515
-125 98 2.365 3.515
-165 254 2.985 3.515
-195 1 0 3.515
-246 25 2.655 3.515
-6 29 2.24 3.52
-24 166 2.25 3.52
-35 54 2.885 3.52
-45 32 0 3.52
-50 120 2.36 3.52
-62 248 2.98 3.52
-64 12 2.9 3.52
-75 189 0 3.52
-86 134 0.585 3.52
-165 247 2.85 3.52
-202 200 3.015 3.52
-215 211 0 3.52
-250 208 0 3.52
-35 103 2.53 3.525
-36 177 2.77 3.525
-59 15 0.425 3.525
-65 82 2.415 3.525
-75 207 2.505 3.525
-86 109 1.79 3.525
-121 165 2.465 3.525
-128 124 2.995 3.525
-152 195 1.78 3.525
-157 224 2.93 3.525
-212 61 1.41 3.525
-244 52 0 3.525
-245 195 0.76 3.525
-252 59 0 3.525
-22 16 2.255 3.53
-48 53 1.71 3.53
-71 181 0 3.53
-114 131 2.585 3.53
-191 255 0 3.53
-196 93 2.1 3.53
-205 243 2.885 3.53
-205 1 0.75 3.53
-215 2 2.01 3.53
-6 59 1.975 3.535
-7 134 1.015 3.535
-43 84 2.33 3.535
-59 52 1.905 3.535
-143 136 1.105 3.535
-143 210 2.475 3.535
-154 233 0 3.535
-166 163 2.995 3.535
-175 37 1.52 3.535
-187 141 2.57 3.535
-211 81 2.92 3.535
-249 194 2.32 3.535
-12 93 2.98 3.54
-90 83 2.58 3.54
-112 116 2.295 3.54
-185 91 2.975 3.54
-5 60 0 3.545
-6 208 1.2 3.545
-18 34 0 3.545
-46 94 2.945 3.545
-72 103 2.165 3.545
-75 67 1.635 3.545
-95 79 2.755 3.545
-95 147 2.855 3.545
-205 251 0 3.545
-215 21 0 3.545
-226 62 2.745 3.545
-60 16 2.965 3.55
-92 213 2.87 3.55
-109 156 2.52 3.55
-145 152 0 3.55
-157 221 0 3.55
-161 189 2.795 3.55
-203 251 0 3.55
-214 26 1.47 3.55
-242 36 2.92 3.55
-3 21 0 3.555
-49 256 0 3.555
-59 124 2.985 3.555
-133 132 2.93 3.555
-146 166 0 3.555
-161 61 2.865 3.555
-191 49 1.395 3.555
-197 210 1.245 3.555
-12 122 0 3.56
-35 177 2.885 3.56
-60 12 0 3.56
-156 172 2.07 3.56
-156 219 2.705 3.56
-170 207 2.985 3.56
-6 251 2.905 3.565
-6 21 0 3.565
-19 82 0 3.565
-49 242 2.41 3.565
-79 131 1.36 3.565
-129 243 1.81 3.565
-183 236 2.535 3.565
-202 25 0 3.565
-219 21 2.94 3.565
-48 59 0 3.57
-62 56 1.9 3.57
-91 169 3.025 3.57
-151 172 2.995 3.57
-200 29 2.42 3.57
-205 208 0 3.57
-256 196 2.67 3.57
-9 32 2.54 3.575
-10 44 2.04 3.575
-20 34 1.41 3.575
-60 76 0.545 3.575
-188 236 2.815 3.575
-201 12 1.85 3.575
-210 220 3.07 3.575
-215 41 0 3.575
-233 188 2.47 3.575
-239 27 2.82 3.575
-246 23 1.905 3.575
-9 251 2.875 3.58
-14 224 3.075 3.58
-55 73 0 3.58
-94 96 0 3.58
-118 108 2.565 3.58
-192 13 1.52 3.58
-238 256 0 3.58
-80 67 1.55 3.585
-104 121 2.375 3.585
-163 49 2.685 3.585
-242 1 0 3.585
-85 103 0 3.59
-109 39 1.68 3.59
-133 207 3.045 3.59
-139 236 1.75 3.59
-184 193 0 3.59
-222 30 0 3.59
-223 1 1.54 3.59
-248 117 1.065 3.59
-9 80 2.475 3.595
-38 42 2.235 3.595
-59 63 0 3.595
-85 34 2.3 3.595
-85 38 1.66 3.595
-90 82 2.61 3.595
-99 158 0.785 3.595
-157 143 3.02 3.595
-157 132 2.995 3.595
-198 23 1.735 3.595
-199 71 0.825 3.595
-201 13 2.57 3.595
-201 251 0.615 3.595
-213 246 2.44 3.595
-213 21 2.12 3.595
-223 32 1.82 3.595
-4 52 0 3.6
-11 4 2.01 3.6
-43 102 2.275 3.6
-62 242 2.43 3.6
-98 166 0 3.6
-148 152 0 3.6
-184 5 0.955 3.6
-219 27 2.87 3.6
-240 31 2.48 3.6
-46 32 1.825 3.605
-62 51 0 3.605
-113 69 1.145 3.605
-133 72 0 3.605
-159 152 2.735 3.605
-174 189 0 3.605
-204 23 0 3.605
-96 218 2.665 3.61
-127 161 0 3.61
-140 252 3.025 3.61
-158 152 2.705 3.61
-204 12 0 3.61
-1 66 1.575 3.615
-37 54 2.03 3.615
-88 164 2.915 3.615
-152 228 2.035 3.615
-200 204 0 3.615
-200 41 1.335 3.615
-203 224 3.1 3.615
-1 19 0.755 3.62
-55 108 0 3.62
-88 98 0 3.62
-98 103 1.35 3.62
-133 193 1.285 3.62
-208 12 0 3.62
-232 51 1.525 3.62
-240 125 2.82 3.62
-255 17 1.405 3.62
-13 208 0 3.625
-19 31 2.865 3.625
-22 89 2.935 3.625
-32 106 3.115 3.625
-32 97 0 3.625
-48 110 0 3.625
-62 15 0 3.625
-91 206 3.055 3.625
-109 102 1.66 3.625
-119 179 3.025 3.625
-121 71 2.985 3.625
-177 164 0 3.625
-192 253 0 3.625
-229 236 0 3.625
-7 185 2.49 3.63
-142 90 2.92 3.63
-198 155 0 3.63
-215 229 2.755 3.63
-223 65 2.625 3.63
-241 49 2.65 3.63
-24 106 2.535 3.635
-80 83 1.51 3.635
-108 150 0 3.635
-219 41 1.95 3.635
-238 253 0 3.635
-243 5 0 3.635
-35 51 0 3.64
-43 97 1.025 3.64
-66 83 0 3.64
-116 180 0 3.64
-149 105 2.6 3.64
-156 216 2.775 3.64
-173 95 1.16 3.64
-175 237 0 3.64
-188 230 2.47 3.64
-211 93 2.075 3.64
-232 236 0 3.64
-11 90 3.05 3.645
-55 181 0.985 3.645
-97 161 1.975 3.645
-107 185 0 3.645
-112 124 0 3.645
-190 162 0 3.645
-195 227 2.82 3.645
-20 63 2.8 3.65
-22 8 3.05 3.65
-46 19 2.66 3.65
-58 208 0 3.65
-81 83 0 3.65
-87 83 2.91 3.65
-124 192 0.5 3.65
-185 178 2.24 3.65
-203 25 1.77 3.65
-13 204 2.51 3.655
-31 110 3.1 3.655
-71 182 3.025 3.655
-107 123 0 3.655
-118 137 0 3.655
-122 80 0 3.655
-123 234 0.195 3.655
-128 36 1.165 3.655
-184 197 0 3.655
-190 179 1.6 3.655
-237 26 0 3.655
-245 37 2.075 3.655
-31 47 0 3.66
-90 99 2.475 3.66
-90 158 0 3.66
-160 93 3.08 3.66
-196 5 2.45 3.66
-202 216 2.705 3.66
-228 245 2.395 3.66
-24 89 2.975 3.665
-86 43 2.805 3.665
-96 173 0 3.665
-204 11 0.26 3.665
-217 206 3.14 3.665
-222 93 2.655 3.665
-12 78 0.945 3.67
-33 34 0 3.67
-37 40 0 3.67
-116 207 2.81 3.67
-123 176 0 3.67
-153 96 0 3.67
-156 220 0 3.67
-167 236 0.99 3.67
-179 143 2.72 3.67
-217 220 0 3.67
-240 33 0 3.67
-21 10 2.535 3.675
-28 71 1.555 3.675
-43 74 1.79 3.675
-62 245 3.135 3.675
-108 137 2.885 3.675
-130 213 2.665 3.675
-149 156 2.42 3.675
-183 187 2.21 3.675
-184 6 0.81 3.675
-245 36 2.98 3.675
-12 32 2.52 3.68
-14 12 2.82 3.68
-106 123 2.855 3.68
-129 141 0 3.68
-162 179 0 3.68
-174 99 2.355 3.68
-199 121 1.735 3.68
-15 114 0 3.685
-27 74 0 3.685
-138 95 0 3.685
-188 194 3.005 3.685
-192 132 0 3.685
-22 43 2.995 3.69
-39 110 2.655 3.69
-59 126 0 3.69
-137 184 0 3.69
-153 144 2.845 3.69
-206 13 0 3.69
-219 30 0 3.69
-225 241 2.755 3.69
-240 42 0 3.69
-3 118 2.905 3.695
-12 80 2.91 3.695
-62 34 0 3.695
-75 176 1.945 3.695
-109 161 1.915 3.695
-135 196 3.195 3.695
-167 245 0 3.695
-180 165 2.965 3.695
-205 132 1.78 3.695
-205 195 2.935 3.695
-34 1 2.89 3.7
-126 12 1.645 3.7
-154 202 2.75 3.7
-192 206 0 3.7
-233 253 2.985 3.7
-237 189 2.59 3.7
-238 224 2.935 3.7
-249 44 2.625 3.7
-9 221 2.585 3.705
-24 72 1.035 3.705
-38 115 2.465 3.705
-45 212 2.445 3.705
-90 141 2.995 3.705
-116 143 3.04 3.705
-118 124 0 3.705
-199 70 0.205 3.705
-215 6 0 3.705
-240 49 0 3.705
-34 162 2.805 3.71
-59 185 2.375 3.71
-113 133 2.945 3.71
-159 205 1.765 3.71
-192 254 0 3.71
-210 242 1.615 3.71
-237 238 0 3.71
-249 57 0 3.71
-252 5 3.14 3.71
-4 95 0 3.715
-46 31 1.41 3.715
-55 107 0.69 3.715
-96 154 0 3.715
-108 124 2.595 3.715
-128 77 0 3.715
-148 226 2.9 3.715
-183 252 2.595 3.715
-183 194 2.15 3.715
-252 204 0 3.715
-22 18 0 3.72
-24 98 3.2 3.72
-48 44 0 3.72
-78 10 0 3.72
-120 60 0.995 3.72
-180 179 0 3.72
-192 256 0 3.72
-227 19 0.485 3.72
-4 114 0.575 3.725
-34 88 3.195 3.725
-87 91 0 3.725
-105 166 0 3.725
-119 91 1.87 3.725
-136 156 2.37 3.725
-143 244 3.215 3.725
-148 212 0 3.725
-154 186 3.035 3.725
-34 127 2.935 3.73
-58 12 2.615 3.73
-71 92 1 3.73
-81 158 0 3.73
-93 47 0 3.73
-159 242 3.17 3.73
-203 215 2.985 3.73
-212 227 0 3.73
-212 240 0 3.73
-214 229 0 3.73
-237 219 0 3.73
-20 98 2.175 3.735
-21 71 1.62 3.735
-65 130 0 3.735
-76 186 3.105 3.735
-115 207 3.18 3.735
-119 183 3.205 3.735
-157 100 2.515 3.735
-192 242 2.645 3.735
-5 227 2.91 3.74
-68 88 2.025 3.74
-70 69 0 3.74
-74 95 0 3.74
-153 182 0.915 3.74
-167 234 3.2 3.74
-201 208 0 3.74
-242 2 3.16 3.74
-5 204 2.635 3.745
-38 102 0 3.745
-72 152 2.625 3.745
-143 13 1.025 3.745
-146 169 1.47 3.745
-185 165 1.325 3.745
-213 229 2.57 3.745
-217 219 0 3.745
-51 127 2.92 3.75
-91 151 0 3.75
-186 201 2.375 3.75
-199 3 0 3.75
-17 69 2.585 3.755
-37 82 0 3.755
-171 236 2.835 3.755
-198 208 0.41 3.755
-208 22 2.675 3.755
-222 219 0 3.755
-1 115 2.805 3.76
-6 2 0 3.76
-28 72 3.115 3.76
-45 256 3.18 3.76
-101 164 2.255 3.76
-122 91 1.975 3.76
-166 150 0 3.76
-170 116 2.345 3.76
-182 136 0 3.76
-214 200 1.81 3.76
-224 212 2.665 3.76
-230 42 0 3.76
-45 93 2.5 3.765
-48 97 0 3.765
-51 178 2.04 3.765
-147 214 3.155 3.765
-149 169 1.32 3.765
-165 171 1.9 3.765
-177 179 2.75 3.765
-185 249 2.01 3.765
-197 57 3.065 3.765
-217 201 0 3.765
-221 32 3.195 3.765
-57 73 0 3.77
-80 69 1.62 3.77
-105 165 2.555 3.77
-137 77 3.265 3.77
-144 194 2.44 3.77
-108 133 2.925 3.775
-111 170 0 3.775
-111 171 0 3.775
-116 178 0 3.775
-137 187 2.805 3.775
-179 255 2.485 3.775
-189 179 2.94 3.775
-224 93 2.51 3.775
-245 54 3.12 3.775
-247 194 2.39 3.775
-4 126 0.175 3.78
-6 28 1.57 3.78
-118 133 0 3.78
-133 139 3.15 3.78
-135 242 0 3.78
-143 131 0 3.78
-159 131 3.075 3.78
-192 196 1.11 3.78
-249 187 0 3.78
-252 197 0 3.78
-5 215 1.42 3.785
-43 89 1.8 3.785
-68 178 3.25 3.785
-69 95 2.79 3.785
-97 115 1.755 3.785
-109 59 0 3.785
-109 155 3.245 3.785
-157 206 2.705 3.785
-161 147 2.025 3.785
-176 201 2.99 3.785
-193 19 3.06 3.785
-213 209 2.43 3.785
-237 187 3.13 3.785
-31 95 3.12 3.79
-76 90 0 3.79
-108 73 2.7 3.79
-136 148 0.2 3.79
-137 144 2.875 3.79
-167 241 1.35 3.79
-195 228 3.06 3.79
-250 223 3.27 3.79
-53 98 3.26 3.795
-106 57 0 3.795
-126 113 0 3.795
-128 190 0 3.795
-154 150 0 3.795
-190 176 0 3.795
-210 148 0 3.795
-210 226 3.065 3.795
-232 18 2.475 3.795
-236 201 1.835 3.795
-87 169 2.9 3.8
-145 170 3.095 3.8
-187 252 2.665 3.8
-58 5 3.3 3.805
-106 118 0 3.805
-117 182 0 3.805
-144 252 0.555 3.805
-175 61 1.13 3.805
-247 56 1.51 3.805
-255 223 3.115 3.805
-75 80 0 3.81
-81 99 0 3.81
-99 148 3.035 3.81
-103 171 3.11 3.81
-139 215 0.485 3.81
-198 216 0 3.81
-214 227 1.55 3.81
-215 28 0 3.81
-236 38 0 3.81
-13 16 3.005 3.815
-30 82 1.81 3.815
-48 36 0 3.815
-54 133 1.515 3.815
-68 136 2.24 3.815
-167 171 0 3.815
-192 255 1.545 3.815
-249 179 1.23 3.815
-249 250 0 3.815
-7 21 0 3.82
-23 3 1.155 3.82
-38 27 1.39 3.82
-62 52 0 3.82
-93 10 0 3.82
-99 161 0 3.82
-104 167 3.215 3.82
-114 80 1.715 3.82
-128 114 1.08 3.82
-157 237 0 3.82
-170 189 0 3.82
-225 214 1.7 3.82
-9 57 3.27 3.825
-43 107 2.765 3.825
-69 83 0 3.825
-121 171 2.34 3.825
-134 182 0 3.825
-135 147 3.035 3.825
-141 205 0 3.825
-179 254 0 3.825
-231 42 1.455 3.825
-245 53 3.13 3.825
-252 194 2.44 3.825
-67 135 0.665 3.83
-69 147 3 3.83
-70 73 2.895 3.83
-81 21 3.045 3.83
-88 162 2.545 3.83
-124 139 0 3.83
-134 198 3.165 3.83
-137 91 0 3.83
-191 256 2.785 3.83
-226 227 2.61 3.83
-251 118 3.235 3.83
-10 110 2.715 3.835
-58 44 3.325 3.835
-106 166 1.88 3.835
-115 179 0 3.835
-128 116 0 3.835
-165 179 0 3.835
-183 242 2.855 3.835
-220 42 2.91 3.835
-256 125 2.05 3.835
-4 80 0.515 3.84
-51 133 1.975 3.84
-92 163 2.215 3.84
-134 73 3.135 3.84
-144 246 0.475 3.84
-152 162 3.05 3.84
-153 138 0 3.84
-186 205 0 3.84
-210 221 2.5 3.84
-241 184 0 3.84
-243 247 0 3.84
-256 223 3.015 3.84
-15 12 2.58 3.845
-33 82 0 3.845
-39 43 0 3.845
-48 106 0 3.845
-60 52 3.275 3.845
-85 92 0 3.845
-113 56 0 3.845
-119 138 3.32 3.845
-127 181 3.23 3.845
-171 230 0 3.845
-181 207 3.155 3.845
-213 163 2.8 3.845
-218 216 3.275 3.845
-50 252 0.145 3.85
-68 132 0 3.85
-135 216 0.955 3.85
-184 144 1.285 3.85
-217 200 0.825 3.85
-33 97 0 3.855
-97 116 2.22 3.855
-117 188 1.59 3.855
-134 140 2.51 3.855
-160 228 3.315 3.855
-173 235 0.075 3.855
-20 110 2.92 3.86
-23 72 3.345 3.86
-70 154 3.265 3.86
-150 218 3.205 3.86
-153 198 0 3.86
-168 242 2.875 3.86
-195 221 2.62 3.86
-207 179 1.755 3.86
-213 2 2.23 3.86
-224 61 1.165 3.86
-226 211 2.615 3.86
-33 101 0 3.865
-54 23 3.355 3.865
-60 77 0 3.865
-68 146 3.095 3.865
-146 92 2.05 3.865
-243 114 3.295 3.865
-68 141 0 3.87
-68 131 1.97 3.87
-68 147 0 3.87
-96 82 3.105 3.87
-142 155 0.45 3.87
-149 135 0 3.87
-151 140 0 3.87
-173 150 2.99 3.87
-193 244 0 3.87
-232 35 2.59 3.87
-233 191 2.835 3.87
-11 80 0 3.875
-69 143 3.03 3.875
-193 214 3.165 3.875
-216 29 2.27 3.875
-234 42 3.21 3.875
-246 11 2.745 3.875
-252 203 0 3.875
-8 133 1.52 3.88
-26 248 2.72 3.88
-78 122 0.55 3.88
-115 180 0 3.88
-133 87 0.37 3.88
-161 206 3.1 3.88
-163 227 2.745 3.88
-193 215 2.745 3.88
-247 6 3.205 3.88
-65 95 0 3.885
-72 92 0.875 3.885
-76 149 3.175 3.885
-83 210 3.005 3.885
-172 179 3.165 3.885
-181 167 3.165 3.885
-183 254 2.1 3.885
-186 161 3.37 3.885
-188 201 0 3.885
-211 232 3.275 3.885
-233 222 1.225 3.885
-21 76 2.97 3.89
-70 119 0.725 3.89
-86 71 1.2 3.89
-133 73 0.425 3.89
-151 198 0 3.89
-151 155 0 3.89
-156 150 0 3.89
-173 170 0 3.89
-193 140 3.31 3.89
-203 6 0 3.89
-213 169 3.18 3.89
-251 57 0 3.89
-55 106 0 3.895
-64 114 2.535 3.895
-76 140 0 3.895
-120 11 3.245 3.895
-238 209 2.07 3.895
-247 50 0 3.895
-23 71 0.385 3.9
-34 146 2.495 3.9
-39 146 3.385 3.9
-45 33 0 3.9
-65 96 2.08 3.9
-134 179 0.9 3.9
-179 67 0.485 3.9
-190 132 0 3.9
-217 197 0 3.9
-222 49 2.415 3.9
-243 44 3.38 3.9
-20 113 3.285 3.905
-33 113 2.845 3.905
-36 44 3.345 3.905
-77 140 3.03 3.905
-115 116 0 3.905
-123 172 2.64 3.905
-156 174 3.045 3.905
-181 249 2.15 3.905
-203 197 2.485 3.905
-32 110 1.69 3.91
-68 99 1.45 3.91
-70 92 0.755 3.91
-106 40 0.14 3.91
-108 140 2.755 3.91
-190 205 0 3.91
-233 183 0 3.91
-249 248 0 3.91
-26 232 2.44 3.915
-46 256 3.115 3.915
-51 40 0 3.915
-64 121 0 3.915
-186 250 0 3.915
-246 200 0.385 3.915
-48 93 2.99 3.92
-51 190 2.97 3.92
-70 151 3.33 3.92
-95 141 0 3.92
-136 196 0.925 3.92
-179 247 0 3.92
-185 77 3.01 3.92
-14 80 2.825 3.925
-22 7 2.985 3.925
-22 27 0 3.925
-164 49 2.455 3.925
-167 188 3.095 3.925
-175 162 3.265 3.925
-190 133 2.595 3.925
-7 16 1.51 3.93
-20 157 3.405 3.93
-118 23 1.745 3.93
-121 77 0 3.93
-122 187 1.21 3.93
-127 115 2.69 3.93
-132 160 2.33 3.93
-135 5 2.61 3.93
-181 67 0 3.93
-214 197 2.665 3.93
-236 248 0 3.93
-248 41 2.84 3.93
-11 91 1.7 3.935
-69 179 2.995 3.935
-73 166 3.36 3.935
-81 114 2.15 3.935
-115 68 2.94 3.935
-116 141 2.225 3.935
-120 131 3.325 3.935
-156 103 3.34 3.935
-164 168 0 3.935
-198 218 0 3.935
-213 25 3.09 3.935
-229 36 2.855 3.935
-251 52 2.53 3.935
-35 145 3.305 3.94
-47 1 3.44 3.94
-90 161 2.21 3.94
-115 67 0 3.94
-134 129 0.85 3.94
-138 155 0 3.94
-159 136 1.035 3.94
-196 221 0 3.94
-238 211 2.77 3.94
-51 97 0 3.945
-108 119 0 3.945
-129 5 3.04 3.945
-131 140 1.105 3.945
-156 224 2.045 3.945
-173 191 0 3.945
-228 93 2.78 3.945
-230 248 2.06 3.945
-236 199 1.515 3.945
-242 200 3.36 3.945
-47 177 3.12 3.95
-68 79 0 3.95
-155 204 1.155 3.95
-192 141 0 3.95
-11 23 2.725 3.955
-62 1 0 3.955
-87 131 1.725 3.955
-87 214 3.27 3.955
-92 110 3.405 3.955
-96 161 0.815 3.955
-119 77 1.37 3.955
-140 197 3.225 3.955
-149 216 0.63 3.955
-157 110 2.27 3.955
-182 247 2.4 3.955
-247 201 0 3.955
-63 78 3.46 3.96
-78 74 0 3.96
-115 129 1.935 3.96
-137 194 1.615 3.96
-159 238 2.975 3.96
-166 241 1.255 3.96
-207 243 1.26 3.96
-61 245 3.12 3.965
-75 91 0 3.965
-90 174 0.34 3.965
-94 112 1.99 3.965
-137 139 0 3.965
-154 237 0 3.965
-172 187 0 3.965
-183 140 1.115 3.965
-186 203 0.305 3.965
-247 118 3.21 3.965
-1 56 0 3.97
-121 187 3.045 3.97
-128 111 3.45 3.97
-147 226 2.42 3.97
-153 155 0 3.97
-163 169 1.52 3.97
-233 165 3.245 3.97
-22 86 0 3.975
-22 31 2.145 3.975
-86 106 0 3.975
-94 127 0.115 3.975
-94 100 0.9 3.975
-98 115 0 3.975
-116 192 0 3.975
-120 177 2.83 3.975
-130 145 3.41 3.975
-140 218 3.275 3.975
-151 202 2.39 3.975
-198 220 1.82 3.975
-201 205 0 3.975
-207 244 0 3.975
-249 245 0 3.975
-34 103 2.425 3.98
-76 105 1.49 3.98
-83 238 3.29 3.98
-198 25 0 3.98
-204 239 2.86 3.98
-210 215 0 3.98
-248 24 1.62 3.98
-78 75 3.255 3.985
-90 110 1.78 3.985
-129 200 3.4 3.985
-134 67 0 3.985
-160 238 2.9 3.985
-177 116 0 3.985
-208 240 2.74 3.985
-209 239 0 3.985
-219 240 2.72 3.985
-224 25 0 3.985
-25 86 0 3.99
-37 27 3.355 3.99
-87 152 1.515 3.99
-92 165 2.415 3.99
-94 101 3.425 3.99
-128 73 2.07 3.99
-156 167 0 3.99
-174 121 3.48 3.99
-209 229 1.025 3.99
-18 38 1.32 3.995
-46 243 0 3.995
-48 60 3.37 3.995
-63 116 0 3.995
-66 28 1.49 3.995
-135 195 0.71 3.995
-247 245 0 3.995
-148 228 1.53 4
-154 95 0 4
-240 230 2.7 4
-254 56 3.1 4
-7 77 1.43 4.005
-12 91 0 4.005
-20 101 2.11 4.005
-27 40 2.43 4.005
-78 91 0.4 4.005
-109 99 2.77 4.005
-139 206 2.91 4.005
-165 216 3.215 4.005
-4 68 0 4.01
-16 43 2.25 4.01
-16 76 0.615 4.01
-112 187 0 4.01
-114 79 2.7 4.01
-137 129 2.315 4.01
-156 152 0 4.01
-156 237 0 4.01
-188 247 2.38 4.01
-226 175 0 4.01
-36 39 3.43 4.015
-60 119 0 4.015
-61 244 2.205 4.015
-73 140 2.945 4.015
-108 84 3.475 4.015
-164 241 0 4.015
-183 235 2.16 4.015
-214 165 0 4.015
-240 29 2.82 4.015
-2 25 2.85 4.02
-16 96 3.075 4.02
-94 161 0.9 4.02
-133 142 2.365 4.02
-145 189 3.005 4.02
-145 241 2.845 4.02
-151 132 2.245 4.02
-151 193 1.645 4.02
-216 224 3.43 4.02
-238 239 0 4.02
-37 66 3.515 4.025
-72 99 0.94 4.025
-73 78 1.265 4.025
-73 112 0.6 4.025
-107 165 2.48 4.025
-133 67 0 4.025
-140 214 3.29 4.025
-146 87 3.05 4.025
-207 193 0 4.025
-223 228 3.325 4.025
-2 71 2.56 4.03
-7 133 1.35 4.03
-62 42 0.175 4.03
-78 96 0 4.03
-84 237 2.77 4.03
-208 33 3.51 4.03
-239 49 0 4.03
-16 95 2.195 4.035
-22 231 0 4.035
-25 41 0 4.035
-44 40 0 4.035
-55 113 3.41 4.035
-61 42 3.425 4.035
-66 101 0.86 4.035
-198 203 0 4.035
-229 44 2.955 4.035
-15 138 2.875 4.04
-26 234 2.59 4.04
-28 92 0 4.04
-75 142 0 4.04
-92 161 3.51 4.04
-94 113 2.64 4.04
-109 157 2.2 4.04
-168 236 0.715 4.04
-185 234 0 4.04
-222 226 2.92 4.04
-240 26 2.48 4.04
-248 36 1.54 4.04
-256 204 3.45 4.04
-16 30 2.105 4.045
-33 109 3.5 4.045
-34 133 3.44 4.045
-94 155 3.495 4.045
-144 218 1.27 4.045
-156 206 3.06 4.045
-183 231 2.91 4.045
-197 224 3.335 4.045
-37 22 3.485 4.05
-74 155 2.435 4.05
-85 40 1.66 4.05
-174 123 0 4.05
-183 247 0 4.05
-190 80 1.315 4.05
-235 42 0 4.05
-2 41 2.615 4.055
-4 8 0 4.055
-16 89 1.445 4.055
-45 25 2.52 4.055
-83 104 3.015 4.055
-124 155 1.29 4.055
-143 256 2.29 4.055
-177 117 1.575 4.055
-199 119 1.785 4.055
-208 196 0 4.055
-209 37 3.38 4.055
-12 72 3.435 4.06
-41 36 3.235 4.06
-78 138 0.575 4.06
-92 40 2.985 4.06
-117 3 2.78 4.06
-122 116 1.095 4.06
-124 87 3.145 4.06
-147 195 0.38 4.06
-160 147 2.205 4.06
-175 49 1.33 4.06
-228 2 3.495 4.06
-229 24 1.65 4.06
-254 50 1.865 4.06
-25 43 2.055 4.065
-77 155 1.815 4.065
-108 127 3.485 4.065
-171 183 1.37 4.065
-199 34 2.605 4.065
-19 72 3.49 4.07
-77 89 1.31 4.07
-79 178 0 4.07
-124 151 3.405 4.07
-226 216 2.54 4.07
-226 247 1.17 4.07
-233 163 1.675 4.07
-239 42 2.12 4.07
-8 117 2.395 4.075
-80 130 3.465 4.075
-140 155 0 4.075
-147 162 3.185 4.075
-166 187 3.41 4.075
-214 161 3.5 4.075
-234 44 3.445 4.075
-238 212 1.45 4.075
-238 243 3.485 4.075
-22 41 0 4.08
-23 16 1.545 4.08
-34 44 1.995 4.08
-57 102 0.725 4.08
-69 117 2.02 4.08
-71 89 0 4.08
-74 157 0 4.08
-108 191 3.51 4.08
-109 174 0 4.08
-126 97 3.16 4.08
-145 226 1.985 4.08
-65 75 3.575 4.085
-73 116 3.45 4.085
-146 130 0 4.085
-209 22 3.585 4.085
-227 236 3.465 4.085
-250 57 3.065 4.085
-60 123 3.05 4.09
-84 52 3.115 4.09
-104 164 0 4.09
-181 184 0 4.09
-202 220 0 4.09
-207 50 0.655 4.09
-248 120 1.53 4.09
-253 27 3.39 4.09
-48 32 0 4.095
-138 74 0 4.095
-168 44 3.025 4.095
-20 83 1.2 4.1
-21 72 0.96 4.1
-47 52 0.955 4.1
-55 53 3.455 4.1
-90 138 2.62 4.1
-132 216 2.855 4.1
-142 192 0 4.1
-143 255 0.55 4.1
-152 226 0 4.1
-206 220 3.34 4.1
-234 203 2.705 4.1
-256 126 3.565 4.1
-19 37 1.4 4.105
-24 146 2.22 4.105
-25 21 0 4.105
-35 72 2.11 4.105
-58 77 2.62 4.105
-72 101 1.05 4.105
-83 160 2.725 4.105
-154 161 0.13 4.105
-171 45 3.445 4.105
-20 72 2.045 4.11
-30 110 2.75 4.11
-192 178 1.62 4.11
-202 222 1.09 4.11
-83 162 2.67 4.115
-85 104 2.955 4.115
-89 72 2.99 4.115
-127 142 3.09 4.115
-147 212 2.14 4.115
-149 175 3.585 4.115
-156 161 2.95 4.115
-186 139 0 4.115
-191 45 2.76 4.115
-32 82 2.16 4.12
-79 148 3.34 4.12
-124 187 0 4.12
-128 108 2.805 4.12
-160 191 2.525 4.12
-171 247 3.22 4.12
-174 187 0 4.12
-200 25 1.195 4.12
-29 39 1.73 4.125
-33 66 3.575 4.125
-89 217 3.475 4.125
-122 76 3.385 4.125
-135 197 0 4.125
-163 231 2.7 4.125
-169 183 1.48 4.125
-170 177 3.125 4.125
-185 184 0 4.125
-185 144 3.005 4.125
-186 214 3.345 4.125
-209 227 2.415 4.125
-245 38 2.66 4.125
-251 126 3.12 4.125
-252 54 3.55 4.125
-253 203 3.325 4.125
-255 14 0.66 4.125
-256 243 1.74 4.125
-9 74 0 4.13
-14 17 0 4.13
-20 24 1.395 4.13
-47 145 3.32 4.13
-74 96 0 4.13
-136 195 0 4.13
-202 194 2.645 4.13
-203 11 0 4.13
-237 236 2.925 4.13
-6 121 3.59 4.135
-51 142 3.385 4.135
-60 106 0 4.135
-81 126 2.16 4.135
-115 182 1.51 4.135
-122 188 3.225 4.135
-134 146 2.91 4.135
-138 158 1.91 4.135
-149 67 3.535 4.135
-238 221 2.81 4.135
-22 10 1.5 4.14
-32 99 2.3 4.14
-34 121 3.165 4.14
-35 53 2.8 4.14
-55 88 3.35 4.14
-70 68 2.2 4.14
-96 147 2.955 4.14
-157 174 0.395 4.14
-168 243 0 4.14
-230 27 2.96 4.14
-27 57 2.25 4.145
-31 42 2.38 4.145
-56 71 0.3 4.145
-79 130 0 4.145
-81 109 3.57 4.145
-86 146 0.715 4.145
-168 50 2.8 4.145
-225 195 1.725 4.145
-9 126 2.095 4.15
-14 126 0.15 4.15
-15 80 0.655 4.15
-23 120 1.865 4.15
-30 80 3.475 4.15
-33 53 1.69 4.15
-47 64 1.29 4.15
-58 128 2.645 4.15
-89 214 3.63 4.15
-116 127 0 4.15
-116 124 2.925 4.15
-126 142 0.305 4.15
-173 172 1.305 4.15
-245 231 0 4.15
-248 53 0 4.15
-57 121 0 4.155
-126 68 0 4.155
-147 223 3.445 4.155
-233 197 3.615 4.155
-250 194 2.97 4.155
-253 128 3.62 4.155
-19 228 2.675 4.16
-89 111 1.835 4.16
-95 130 0 4.16
-168 38 2.995 4.16
-195 22 3.085 4.16
-1 142 2.95 4.165
-33 31 2.91 4.165
-116 123 2.36 4.165
-119 217 2.915 4.165
-124 144 0.515 4.165
-126 114 0 4.165
-140 194 0.985 4.165
-211 17 0 4.165
-248 34 0 4.165
-249 231 0 4.165
-19 80 3.335 4.17
-23 31 3.625 4.17
-28 42 3.245 4.17
-46 235 2.71 4.17
-74 140 3.44 4.17
-78 95 0 4.17
-136 215 2.105 4.17
-138 156 3.5 4.17
-146 136 2.855 4.17
-180 46 3.655 4.17
-202 161 3.13 4.17
-202 197 2.14 4.17
-225 223 3.56 4.17
-231 18 0 4.17
-249 232 0.83 4.17
-1 190 3.275 4.175
-9 77 0.34 4.175
-18 101 0 4.175
-84 170 2.795 4.175
-87 217 2.36 4.175
-130 150 3.255 4.175
-212 17 3.495 4.175
-218 172 0 4.175
-16 28 2.165 4.18
-22 229 0 4.18
-96 95 0 4.18
-124 182 0 4.18
-180 255 0 4.18
-197 21 0 4.18
-213 230 3.295 4.18
-221 43 3.62 4.18
-233 231 3.01 4.18
-234 251 0 4.18
-34 178 3.02 4.185
-52 178 3.345 4.185
-79 196 1.19 4.185
-84 177 1.425 4.185
-109 63 3.45 4.185
-170 250 2.65 4.185
-215 26 0 4.185
-232 53 0 4.185
-236 39 3.56 4.185
-4 5 3.66 4.19
-22 21 0 4.19
-148 162 2.765 4.19
-150 175 3.675 4.19
-182 144 0.6 4.19
-199 244 0.97 4.19
-215 25 0 4.19
-221 61 3.59 4.19
-55 103 0 4.195
-73 87 2.45 4.195
-93 35 3.56 4.195
-149 162 2.99 4.195
-167 224 3.515 4.195
-172 247 0 4.195
-185 171 0 4.195
-221 62 3.66 4.195
-245 5 1.055 4.195
-32 35 2.275 4.2
-77 95 1.67 4.2
-79 155 0.845 4.2
-81 91 3.565 4.2
-115 134 2.17 4.2
-117 178 0 4.2
-124 198 1.415 4.2
-157 99 2.535 4.2
-217 150 0 4.2
-235 27 2.89 4.2
-69 149 2.31 4.205
-95 161 1.145 4.205
-99 52 3.28 4.205
-163 249 3.005 4.205
-168 26 2.66 4.205
-242 5 0 4.205
-13 56 2.345 4.21
-84 222 3.44 4.21
-93 77 3.25 4.21
-129 213 2.795 4.21
-158 161 0 4.21
-160 48 3.71 4.21
-174 148 2.125 4.21
-242 199 3.315 4.21
-243 35 2.855 4.21
-245 49 2.485 4.21
-28 106 2.99 4.215
-63 112 0 4.215
-64 113 0 4.215
-76 77 0 4.215
-85 130 3.35 4.215
-93 17 3.555 4.215
-108 176 0.99 4.215
-186 159 1.84 4.215
-205 204 3.275 4.215
-210 37 3.465 4.215
-241 243 0 4.215
-251 113 3.67 4.215
-4 3 0 4.22
-36 56 1.775 4.22
-48 27 1.815 4.22
-114 131 3.695 4.22
-129 56 3.395 4.22
-130 225 3.295 4.22
-186 148 3.325 4.22
-210 197 3.58 4.22
-220 109 3.71 4.22
-235 250 0.05 4.22
-240 228 0 4.22
-242 19 3.355 4.22
-245 255 2.385 4.22
-253 201 2.35 4.22
-68 190 3.215 4.225
-115 241 3.285 4.225
-122 166 3.245 4.225
-144 197 0.895 4.225
-173 240 0.22 4.225
-177 145 2.36 4.225
-181 179 0 4.225
-202 237 2.44 4.225
-212 216 3.695 4.225
-219 48 3.59 4.225
-248 118 0.8 4.225
-13 113 3.65 4.23
-50 8 2.29 4.23
-69 87 0 4.23
-70 71 0 4.23
-83 222 3.465 4.23
-130 217 3.72 4.23
-135 152 0.555 4.23
-173 222 0 4.23
-198 210 2.79 4.23
-223 17 0 4.23
-1 68 2.78 4.235
-98 226 3.41 4.235
-136 163 1.51 4.235
-71 88 2.05 4.24
-115 131 0.73 4.24
-122 7 2.49 4.24
-195 216 0.445 4.24
-214 155 1.04 4.24
-12 77 0 4.245
-71 217 2.975 4.245
-78 142 0 4.245
-96 206 2.78 4.245
-167 26 1.63 4.245
-204 16 0.275 4.245
-213 195 0 4.245
-229 18 1.705 4.245
-248 44 0.515 4.245
-13 126 2.535 4.25
-32 106 3.73 4.25
-129 147 2.86 4.25
-130 175 3.37 4.25
-137 152 3.565 4.25
-138 68 1 4.25
-147 221 2.135 4.25
-208 81 3.195 4.25
-210 230 3.43 4.25
-232 44 2.495 4.25
-15 75 3.315 4.255
-33 43 1.155 4.255
-56 114 0 4.255
-65 126 0 4.255
-82 136 3.64 4.255
-85 71 0 4.255
-125 60 3.295 4.255
-125 154 3.545 4.255
-160 235 3.415 4.255
-219 203 0 4.255
-3 131 2.99 4.26
-4 20 0 4.26
-45 106 1.08 4.26
-61 232 2.79 4.26
-85 151 3.575 4.26
-90 125 3.27 4.26
-91 95 0 4.26
-153 140 0 4.26
-157 175 2.585 4.26
-182 250 3.47 4.26
-184 194 0 4.26
-200 6 0 4.26
-218 191 2.735 4.26
-218 239 0 4.26
-225 231 0.125 4.26
-227 25 0.98 4.26
-64 123 3 4.265
-72 146 0 4.265
-119 87 0.915 4.265
-153 77 1.305 4.265
-208 109 3.595 4.265
-230 38 0 4.265
-233 236 2.86 4.265
-61 53 3.625 4.27
-90 30 1.8 4.27
-95 158 0 4.27
-171 182 3.1 4.27
-171 250 3.095 4.27
-196 211 0 4.27
-240 255 0 4.27
-242 65 3.685 4.27
-248 6 2.765 4.27
-4 200 3.61 4.275
-9 28 2.475 4.275
-10 125 2.455 4.275
-71 74 2.975 4.275
-73 80 2.9 4.275
-216 247 3.745 4.275
-236 109 3.61 4.275
-245 205 3.145 4.275
-251 112 3.355 4.275
-4 56 0.625 4.28
-35 63 1.005 4.28
-41 106 0 4.28
-60 13 3.365 4.28
-73 138 0 4.28
-93 13 1.4 4.28
-111 158 0 4.28
-234 183 0 4.28
-253 29 3.48 4.28
-12 71 0 4.285
-47 127 2.59 4.285
-86 76 0 4.285
-88 130 0 4.285
-89 169 1.805 4.285
-166 171 0 4.285
-170 207 3.595 4.285
-202 223 3.565 4.285
-209 66 3.6 4.285
-210 220 3.645 4.285
-212 229 1.93 4.285
-215 161 3.75 4.285
-40 114 3.635 4.29
-112 52 2.465 4.29
-123 100 3.16 4.29
-145 46 3.72 4.29
-146 158 0 4.29
-157 222 0.9 4.29
-179 232 2.235 4.29
-193 199 3.165 4.29
-208 209 1.44 4.29
-225 22 3.415 4.29
-242 194 0 4.29
-243 47 2.83 4.29
-23 76 0 4.295
-37 30 3.675 4.295
-91 214 3.675 4.295
-199 2 1.925 4.295
-202 169 3.065 4.295
-26 125 3.33 4.3
-34 118 2.405 4.3
-34 69 3.755 4.3
-62 113 0 4.3
-95 147 3.71 4.3
-111 82 2.93 4.3
-157 146 3.4 4.3
-199 200 0 4.3
-240 250 0 4.3
-21 29 2.405 4.305
-34 3 3.055 4.305
-53 126 1.945 4.305
-80 67 3.68 4.305
-85 76 3.54 4.305
-89 102 3.47 4.305
-93 68 3.355 4.305
-141 161 2.19 4.305
-202 219 0 4.305
-28 76 1.28 4.31
-141 175 2.95 4.31
-150 226 1.79 4.31
-150 230 0 4.31
-192 129 0 4.31
-225 2 3.53 4.31
-242 223 2.56 4.31
-242 209 3.05 4.31
-243 1 0 4.31
-252 59 3.565 4.31
-36 40 0 4.315
-65 138 1.595 4.315
-69 166 3.645 4.315
-105 110 1.925 4.315
-128 102 2.835 4.315
-141 209 2.07 4.315
-145 221 3.72 4.315
-154 102 1.5 4.315
-162 232 3.285 4.315
-219 223 3.35 4.315
-222 162 3.455 4.315
-239 90 3.655 4.315
-1 17 0 4.32
-4 175 3.765 4.32
-13 114 3.385 4.32
-81 111 3.695 4.32
-146 151 0 4.32
-199 195 2.23 4.32
-212 78 3.445 4.32
-213 227 0 4.32
-216 18 3.52 4.32
-226 249 3.23 4.32
-252 118 0.27 4.32
-64 110 0.335 4.325
-64 138 2.92 4.325
-104 52 3.625 4.325
-148 212 3.815 4.325
-154 108 3.62 4.325
-156 96 0 4.325
-159 228 2.985 4.325
-160 46 2.73 4.325
-224 247 3.82 4.325
-232 34 0 4.325
-54 113 1.215 4.33
-73 75 0 4.33
-78 18 3.83 4.33
-89 106 2.75 4.33
-90 95 0 4.33
-90 107 3.425 4.33
-93 66 1.175 4.33
-150 213 0 4.33
-156 79 3.62 4.33
-234 57 3.115 4.33
-242 17 1.535 4.33
-243 113 2.84 4.33
-20 63 3.725 4.335
-64 127 2.93 4.335
-69 76 3.225 4.335
-96 111 0 4.335
-202 233 1.33 4.335
-203 16 0 4.335
-249 236 0 4.335
-251 110 3.385 4.335
-34 52 2.805 4.34
-144 219 1.105 4.34
-154 110 1.715 4.34
-165 188 2.345 4.34
-200 244 3.35 4.34
-220 236 0 4.34
-237 247 3.73 4.34
-12 156 3.775 4.345
-61 58 3.52 4.345
-64 65 2.91 4.345
-69 192 3.71 4.345
-69 193 3.445 4.345
-93 65 1.12 4.345
-103 162 0 4.345
-105 214 3.77 4.345
-116 95 2.805 4.345
-130 164 3.345 4.345
-154 214 1.205 4.345
-199 23 0.14 4.345
-88 217 3.485 4.35
-94 63 1.21 4.35
-149 40 3.845 4.35
-155 144 0 4.35
-155 175 3.55 4.35
-167 162 3.02 4.35
-182 204 3.62 4.35
-219 235 2.825 4.35
-27 110 2.04 4.355
-43 110 0 4.355
-57 42 0 4.355
-85 153 3.735 4.355
-111 99 0 4.355
-111 202 3.66 4.355
-141 196 0.915 4.355
-151 165 3.37 4.355
-170 191 0 4.355
-208 46 2.51 4.355
-221 211 2.12 4.355
-239 16 2.305 4.355
-253 125 3.005 4.355
-4 66 0 4.36
-38 26 0.195 4.36
-63 60 3.255 4.36
-75 177 1.37 4.36
-150 166 3.81 4.36
-155 233 1.76 4.36
-176 58 3.01 4.36
-185 74 3.7 4.36
-220 253 3.425 4.36
-223 16 0 4.36
-24 53 3.37 4.365
-42 154 3.64 4.365
-50 6 0.625 4.365
-51 2 3.83 4.365
-76 131 3.645 4.365
-91 158 0 4.365
-104 226 3.33 4.365
-109 128 0.49 4.365
-109 97 0 4.365
-137 193 1.7 4.365
-149 104 3.15 4.365
-153 131 1.795 4.365
-186 215 3.265 4.365
-215 31 3.63 4.365
-218 230 0.145 4.365
-232 244 0.76 4.365
-248 7 2.63 4.365
-252 43 3.605 4.365
-36 82 3.385 4.37
-64 116 0.11 4.37
-68 67 0 4.37
-78 20 0 4.37
-93 95 3.255 4.37
-105 165 3.785 4.37
-124 188 0 4.37
-134 193 1.4 4.37
-140 160 3.84 4.37
-222 180 3.385 4.37
-229 38 0 4.37
-234 60 3.5 4.37
-250 255 0 4.37
-252 122 3.655 4.37
-10 30 0 4.375
-177 163 3.875 4.375
-227 89 3.795 4.375
-63 126 0 4.38
-97 170 2.255 4.38
-98 222 3.755 4.38
-116 71 3.865 4.38
-191 239 0 4.38
-253 57 3.1 4.38
-254 53 2.87 4.38
-56 70 3.72 4.385
-142 207 2.455 4.385
-160 219 0 4.385
-174 214 3.475 4.39
-191 255 3.55 4.39
-199 22 3.635 4.39
-229 243 1.91 4.39
-10 42 2.425 4.395
-12 92 3.345 4.395
-23 85 0 4.395
-93 211 3.71 4.395
-94 128 1.97 4.395
-94 36 3.27 4.395
-107 214 3.25 4.395
-144 196 3.53 4.395
-160 220 3.42 4.395
-182 217 1.405 4.395
-187 135 3.86 4.395
-216 41 0 4.395
-252 55 3.595 4.395
-254 231 3.07 4.395
-2 76 3.205 4.4
-19 8 0 4.4
-26 106 0 4.4
-48 94 1.065 4.4
-98 170 3 4.4
-110 126 3.75 4.4
-133 217 2.955 4.4
-160 209 1.94 4.4
-162 229 3.165 4.4
-176 45 3.41 4.4
-216 235 2.94 4.4
-227 85 1.02 4.4
-239 228 0 4.4
-19 3 0 4.405
-45 125 0 4.405
-71 68 1.71 4.405
-86 151 0.74 4.405
-164 216 3.02 4.405
-248 17 2.955 4.405
-19 23 3.315 4.41
-52 100 3.335 4.41
-57 64 2.47 4.41
-107 188 1.61 4.41
-115 185 1.305 4.41
-140 215 0 4.41
-147 196 0 4.41
-149 99 3.53 4.41
-159 218 2.605 4.41
-160 14 3.395 4.41
-170 240 3.86 4.41
-197 206 3.275 4.41
-205 53 3.785 4.41
-218 219 0 4.41
-245 199 0 4.41
-252 42 0 4.41
-73 185 0.52 4.415
-80 79 0 4.415
-81 30 1.14 4.415
-107 100 2.68 4.415
-134 214 2.4 4.415
-145 141 3.16 4.415
-162 228 3.265 4.415
-202 158 3.6 4.415
-237 61 0.26 4.415
-6 70 0 4.42
-42 108 3.83 4.42
-101 151 3.595 4.42
-134 105 3.875 4.42
-135 215 0.205 4.42
-156 185 3.725 4.42
-163 180 1.845 4.42
-186 135 3.38 4.42
-231 36 2.66 4.42
-239 81 3.125 4.42
-45 60 3.52 4.425
-110 188 3.84 4.425
-129 144 3.92 4.425
-137 88 3.895 4.425
-176 255 1.95 4.425
-202 148 3.51 4.425
-5 227 3.86 4.43
-45 62 3.335 4.43
-75 114 2.695 4.43
-76 217 2.35 4.43
-84 101 1.275 4.43
-167 247 0.985 4.43
-186 173 3.21 4.43
-196 175 3.11 4.43
-198 5 1.77 4.43
-23 87 0 4.435
-35 149 3.79 4.435
-50 23 2.21 4.435
-62 94 3.385 4.435
-82 113 3.38 4.435
-142 129 0 4.435
-1 3 0 4.44
-27 128 3.455 4.44
-48 128 0.655 4.44
-113 192 3.88 4.44
-174 166 3.385 4.44
-213 167 0 4.44
-215 14 3.66 4.44
-221 228 2.195 4.44
-12 137 3.335 4.445
-34 65 3.59 4.445
-67 202 3.935 4.445
-142 131 1.985 4.445
-191 256 3.92 4.445
-195 175 2.875 4.445
-201 64 3.765 4.445
-18 41 0.045 4.45
-23 73 1.76 4.45
-52 68 3.75 4.45
-58 208 3.845 4.45
-76 88 3.025 4.45
-122 185 0.475 4.45
-126 190 0 4.45
-128 107 0.345 4.45
-152 249 3.605 4.45
-164 209 1.4 4.45
-208 78 0.97 4.45
-244 8 2.09 4.45
-23 56 1 4.455
-56 119 3.93 4.455
-58 219 3.46 4.455
-123 217 3.575 4.455
-131 217 2.345 4.455
-134 210 1.455 4.455
-160 203 2.875 4.455
-170 190 0 4.455
-233 204 3.23 4.455
-237 46 0 4.455
-245 229 0 4.455
-256 125 3.895 4.455
-67 209 3.445 4.46
-76 92 0 4.46
-97 161 3.765 4.46
-115 142 2.67 4.46
-170 161 1.335 4.46
-189 250 0.33 4.46
-231 56 3.715 4.46
-13 17 0.585 4.465
-17 21 0 4.465
-84 191 1.445 4.465
-133 132 3.78 4.465
-214 160 3.435 4.465
-50 19 3.84 4.47
-51 40 3.935 4.47
-105 172 2.7 4.47
-107 233 2.05 4.47
-196 212 0 4.47
-85 41 0.695 4.475
-111 141 3.115 4.475
-116 130 2.485 4.475
-121 182 0 4.475
-144 158 3.615 4.475
-146 229 3.895 4.475
-148 209 0 4.475
-155 191 3.835 4.475
-158 203 3.79 4.475
-160 212 2.525 4.475
-200 8 0 4.475
-240 220 2.735 4.475
-12 119 1.355 4.48
-23 74 2.465 4.48
-27 101 3.385 4.48
-126 79 0 4.48
-160 45 3.435 4.48
-169 220 2.605 4.48
-190 191 3.935 4.48
-190 144 3.71 4.48
-50 22 3.83 4.485
-63 98 0 4.485
-84 180 2.74 4.485
-127 161 3.785 4.485
-164 167 0.765 4.485
-120 2 1.975 4.49
-132 164 3.305 4.49
-161 162 2.32 4.49
-198 199 3.395 4.49
-202 159 1.65 4.49
-205 9 3.205 4.49
-241 203 3.985 4.49
-247 28 3.875 4.49
-11 12 0 4.495
-16 20 2.055 4.495
-41 87 3.635 4.495
-125 100 3.49 4.495
-159 239 0.29 4.495
-167 228 3.925 4.495
-189 244 2.185 4.495
-213 233 0.67 4.495
-223 46 3.77 4.495
-233 221 3.97 4.495
-235 57 3.11 4.495
-240 247 3.7 4.495
-8 114 0.84 4.5
-28 153 3.45 4.5
-58 206 3.74 4.5
-59 251 0 4.5
-73 28 3.995 4.5
-108 214 3.875 4.5
-142 178 2.185 4.5
-148 163 0 4.5
-167 231 0 4.5
-250 251 0 4.5
-251 75 3.97 4.5
-32 125 0.065 4.505
-48 49 0.63 4.505
-83 163 2.22 4.505
-122 124 0 4.505
-159 204 3.345 4.505
-161 234 3.99 4.505
-176 236 2.88 4.505
-186 111 3.25 4.505
-204 199 3.815 4.505
-206 25 3.755 4.505
-222 62 3.37 4.505
-233 160 0 4.505
-4 64 3.84 4.51
-16 29 0 4.51
-67 210 3.15 4.51
-82 97 0 4.51
-83 175 3 4.51
-98 163 2.77 4.51
-105 174 0.45 4.51
-116 75 0.195 4.51
-121 183 3.155 4.51
-160 93 3.79 4.51
-222 33 2.415 4.51
-16 154 2.62 4.515
-23 6 0 4.515
-32 33 2.165 4.515
-32 154 0.18 4.515
-116 113 0 4.515
-135 184 0 4.515
-157 149 3.615 4.515
-166 179 2.8 4.515
-211 66 1.26 4.515
-238 48 0.92 4.515
-34 127 3.785 4.52
-64 77 0 4.52
-134 132 0.995 4.52
-166 234 3.955 4.52
-248 195 3.765 4.52
-48 36 3.885 4.525
-49 20 1.4 4.525
-58 4 3.825 4.525
-61 250 0 4.525
-89 31 2.89 4.525
-120 142 3.71 4.525
-134 150 1.925 4.525
-147 167 3.595 4.525
-192 61 2.3 4.525
-238 255 0 4.525
-43 154 2.415 4.53
-48 255 0.66 4.53
-71 83 3.95 4.53
-176 62 2.94 4.53
-177 238 3.86 4.53
-208 20 3.71 4.53
-218 216 3.95 4.53
-227 39 1.915 4.53
-238 129 4.015 4.53
-134 147 0 4.535
-139 205 3.28 4.535
-166 131 3.96 4.535
-170 52 2.985 4.535
-18 36 0 4.54
-157 154 0 4.54
-242 246 0 4.54
-1 51 0 4.545
-109 92 1.355 4.545
-114 119 3.855 4.545
-168 242 3.94 4.545
-170 180 2.21 4.545
-195 21 0 4.545
-202 221 0 4.545
-222 209 0 4.545
-248 5 0 4.545
-250 78 3.97 4.545
-4 208 1.22 4.55
-76 136 3.735 4.55
-111 97 0 4.55
-114 68 0 4.55
-116 79 0 4.55
-129 194 0 4.55
-134 217 2.41 4.55
-155 240 3.85 4.55
-159 14 2.39 4.55
-159 195 1.77 4.55
-161 180 0.17 4.55
-177 226 3.43 4.55
-6 119 3.345 4.555
-31 125 2.46 4.555
-71 132 3.995 4.555
-83 151 2.97 4.555
-86 134 3.7 4.555
-108 150 3.91 4.555
-121 135 3.96 4.555
-143 208 3.23 4.555
-155 98 3.985 4.555
-189 232 3.19 4.555
-238 178 3.98 4.555
-54 12 3.995 4.56
-69 137 1.265 4.56
-81 21 3.95 4.56
-116 67 0 4.56
-152 218 3.53 4.56
-158 221 0 4.56
-161 48 3.875 4.56
-196 93 3.615 4.56
-220 221 3.625 4.56
-225 19 1.19 4.56
-238 207 0.105 4.56
-248 244 0 4.56
-6 124 3.91 4.565
-46 36 0 4.565
-53 75 3.855 4.565
-74 217 3.415 4.565
-91 106 3.855 4.565
-106 170 1.925 4.565
-114 133 0 4.565
-135 144 0.06 4.565
-141 215 3.61 4.565
-154 84 2.16 4.565
-176 143 3.01 4.565
-207 159 3.335 4.565
-21 95 4.04 4.57
-69 147 3.995 4.57
-75 113 1.215 4.57
-92 106 3.265 4.57
-108 181 0 4.57
-113 100 0 4.57
-118 40 0 4.57
-134 68 1.485 4.57
-177 142 2.635 4.57
-32 47 0 4.575
-68 130 0 4.575
-111 98 2.935 4.575
-182 187 0 4.575
-194 227 3.8 4.575
-198 50 1.095 4.575
-15 219 3.995 4.58
-46 232 1.565 4.58
-64 244 3.63 4.58
-70 39 3.13 4.58
-106 171 4 4.58
-116 141 4.035 4.58
-193 17 0.785 4.58
-208 175 2.72 4.58
-238 205 3.63 4.58
-2 72 1.31 4.585
-7 137 0.935 4.585
-8 68 2.86 4.585
-32 43 0 4.585
-46 35 0 4.585
-59 185 3.945 4.585
-70 27 3.22 4.585
-79 204 3.96 4.585
-105 151 1.795 4.585
-110 123 1.625 4.585
-137 87 0 4.585
-137 214 3.25 4.585
-248 58 4.03 4.585
-34 63 0 4.59
-102 115 3.38 4.59
-164 212 2.575 4.59
-192 203 0 4.59
-197 227 2.865 4.59
-219 221 0 4.59
-233 161 2.66 4.59
-17 68 2.86 4.595
-87 147 4.035 4.595
-155 221 0 4.595
-187 9 4.095 4.595
-189 48 3.515 4.595
-232 36 1.635 4.595
-242 179 0 4.595
-243 63 2.435 4.595
-68 147 3.96 4.6
-73 71 0 4.6
-143 195 0.91 4.6
-143 93 3.8 4.6
-169 234 3.59 4.6
-186 154 3.88 4.6
-192 250 0 4.6
-198 184 0 4.6
-198 58 2.46 4.6
-213 218 3.32 4.6
-220 247 2.055 4.6
-245 244 0.61 4.6
-248 51 0.82 4.6
-16 68 3.52 4.605
-18 72 1.36 4.605
-19 95 3.21 4.605
-31 91 4.005 4.605
-118 185 0 4.605
-131 226 4.035 4.605
-157 3 3.91 4.605
-183 230 0 4.605
-232 51 3.77 4.605
-247 29 3.78 4.605
-9 60 0 4.61
-110 191 3.34 4.61
-141 130 1.645 4.61
-159 208 1.87 4.61
-189 251 3.72 4.61
-203 195 3.49 4.61
-247 48 3.835 4.61
-140 213 0 4.615
-26 25 0 4.62
-32 84 2.23 4.62
-51 116 0 4.62
-106 103 0 4.62
-113 241 4.075 4.62
-142 159 0 4.62
-146 168 3.97 4.62
-180 61 2.28 4.62
-195 212 1.94 4.62
-200 37 3.58 4.62
-225 230 1.43 4.62
-238 242 3.685 4.62
-21 36 4.12 4.625
-116 17 3.19 4.625
-123 171 0 4.625
-123 234 4.045 4.625
-134 152 0 4.625
-155 143 0 4.625
-174 167 3.965 4.625
-199 15 4.1 4.625
-234 198 3.675 4.625
-80 3 1.63 4.63
-80 82 2.455 4.63
-127 191 0 4.63
-146 175 3.26 4.63
-162 242 4.1 4.63
-169 216 3.115 4.63
-169 229 4.095 4.63
-235 60 3.805 4.63
-107 151 3.32 4.635
-108 187 0 4.635
-152 194 3.585 4.635
-174 233 0.45 4.635
-175 37 3.565 4.635
-200 212 3.475 4.635
-232 242 1.9 4.635
-78 126 0 4.64
-86 117 3.995 4.64
-119 131 0.77 4.64
-165 230 0 4.64
-53 138 4.13 4.645
-92 174 3.245 4.645
-131 246 3.935 4.645
-136 211 3.375 4.645
-142 132 0 4.645
-177 191 3.795 4.645
-223 20 3.8 4.645
-241 255 0 4.645
-252 204 3.96 4.645
-8 69 0 4.65
-30 128 3.145 4.65
-111 160 0 4.65
-112 185 0 4.65
-169 230 0 4.65
-187 204 3.47 4.65
-220 184 4.095 4.65
-228 242 4.09 4.65
-249 187 3.855 4.65
-19 35 3.485 4.655
-141 208 2.1 4.655
-143 204 3.385 4.655
-225 49 2.08 4.655
-243 120 3.92 4.655
-14 64 0 4.66
-22 230 0 4.66
-71 149 0 4.66
-91 89 0 4.66
-98 178 0 4.66
-169 240 3.59 4.66
-242 57 4.075 4.66
-6 77 2.125 4.665
-26 70 3.73 4.665
-108 133 3.98 4.665
-111 237 0.07 4.665
-118 133 3.965 4.665
-145 149 0 4.665
-145 225 1.66 4.665
-169 184 3.67 4.665
-183 242 4 4.665
-189 203 3.38 4.665
-246 38 1.975 4.665
-8 142 4.055 4.67
-25 78 2.2 4.67
-86 36 3.61 4.67
-86 104 2.99 4.67
-152 230 0 4.67
-155 147 3.91 4.67
-219 224 0 4.67
-224 230 1.8 4.67
-37 2 3.335 4.675
-58 78 3.11 4.675
-84 113 2.75 4.675
-107 171 0 4.675
-142 136 3.32 4.675
-145 163 0 4.675
-14 77 2.805 4.68
-67 203 3.725 4.68
-106 121 0 4.68
-145 175 1.585 4.68
-163 245 1.71 4.68
-164 211 3.33 4.68
-188 79 3.6 4.68
-214 224 1.715 4.68
-238 245 2.44 4.68
-251 11 2.315 4.68
-7 124 1.425 4.685
-16 65 0 4.685
-22 224 1.8 4.685
-51 76 3.91 4.685
-103 171 4.01 4.685
-121 171 4.06 4.685
-145 240 3.555 4.685
-153 185 2.54 4.685
-168 178 3.98 4.685
-6 10 3.76 4.69
-9 64 0 4.69
-73 156 3.58 4.69
-79 241 3.825 4.69
-103 218 3.58 4.69
-106 39 0 4.69
-108 183 0 4.69
-109 174 4.115 4.69
-169 160 3.575 4.69
-176 184 3.37 4.69
-204 223 2.86 4.69
-8 151 4.165 4.695
-23 27 3.77 4.695
-56 76 3.895 4.695
-59 7 1.51 4.695
-83 143 4.06 4.695
-90 92 3.08 4.695
-91 107 3.855 4.695
-91 174 3.965 4.695
-110 237 2.815 4.695
-127 241 3.265 4.695
-153 218 0 4.695
-206 78 3.93 4.695
-212 66 1.76 4.695
-83 210 3.93 4.7
-106 169 3.55 4.7
-109 77 3.27 4.7
-112 237 4.145 4.7
-142 143 0 4.7
-153 198 4.19 4.7
-222 208 1.81 4.7
-236 13 4.165 4.7
-22 26 0 4.705
-114 162 3.79 4.705
-120 185 0 4.705
-139 131 4.2 4.705
-57 5 1.615 4.71
-66 76 3.09 4.71
-69 162 3.87 4.71
-86 59 3.58 4.71
-150 216 0.93 4.71
-163 46 3.79 4.71
-209 20 3.73 4.71
-6 90 3.975 4.715
-81 47 3.895 4.715
-153 186 0.35 4.715
-173 233 0.125 4.715
-33 81 0.795 4.72
-44 75 4.205 4.72
-82 225 4.15 4.72
-109 91 2.455 4.72
-114 117 0 4.72
-145 218 3.935 4.72
-158 175 0 4.72
-174 160 0 4.72
-197 14 3.325 4.72
-207 255 0 4.72
-17 18 2.545 4.725
-108 119 4.15 4.725
-108 139 1.61 4.725
-111 100 0 4.725
-115 162 0 4.725
-115 165 0 4.725
-133 226 3.925 4.725
-151 163 1.655 4.725
-208 19 1.075 4.725
-211 230 3.4 4.725
-238 172 4.075 4.725
-7 126 4.225 4.73
-8 18 3.14 4.73
-9 118 3.345 4.73
-83 225 3.02 4.73
-100 79 3.675 4.73
-110 176 4.16 4.73
-145 160 2.55 4.73
-158 193 3.895 4.73
-171 79 3.785 4.73
-205 206 0 4.73
-226 247 4.16 4.73
-256 43 3.74 4.73
-86 38 1.81 4.735
-109 95 0 4.735
-111 83 1.25 4.735
-139 197 0.12 4.735
-155 215 0 4.735
-158 225 2.705 4.735
-193 175 3.58 4.735
-254 47 3.6 4.735
-18 28 3.375 4.74
-27 92 3.38 4.74
-66 80 1.875 4.74
-83 98 0.61 4.74
-84 162 1.36 4.74
-101 183 4.13 4.74
-105 117 3.84 4.74
-106 100 3.54 4.74
-139 57 3.04 4.74
-155 206 0 4.74
-250 223 3.985 4.74
-73 186 3.085 4.745
-79 198 3.975 4.745
-85 134 3.565 4.745
-100 188 3.52 4.745
-110 169 2.305 4.745
-118 39 2.43 4.745
-156 233 0 4.745
-212 95 4.09 4.745
-228 30 0 4.745
-233 253 3.77 4.745
-241 132 3.91 4.745
-1 80 1.91 4.75
-43 97 3.685 4.75
-58 204 1.545 4.75
-67 206 3.43 4.75
-84 104 3.01 4.75
-121 127 4.24 4.75
-125 52 0 4.75
-158 196 3.225 4.75
-162 133 3.86 4.75
-205 78 3.94 4.75
-236 118 3.525 4.75
-141 250 4.08 4.755
-166 162 0 4.755
-229 247 0 4.755
-232 62 2.28 4.755
-107 218 2.68 4.76
-139 50 0.945 4.76
-158 206 2.63 4.76
-181 226 3.305 4.76
-254 63 3.345 4.76
-24 87 3.825 4.765
-54 102 2.82 4.765
-65 77 0 4.765
-82 151 3.61 4.765
-108 165 0 4.765
-192 241 3.315 4.765
-196 15 3.85 4.765
-45 41 2.05 4.77
-59 6 3.58 4.77
-144 22 4.11 4.77
-81 35 0 4.775
-102 126 4.19 4.775
-182 213 1.36 4.775
-229 41 0 4.775
-7 10 1.59 4.78
-26 89 3.715 4.78
-39 119 4.145 4.78
-76 149 3.9 4.78
-170 135 4.19 4.78
-199 119 4.175 4.78
-59 73 0 4.785
-71 124 0 4.785
-94 98 0.505 4.785
-147 228 2.21 4.785
-152 227 0 4.785
-158 209 0 4.785
-181 188 0 4.785
-1 123 3.675 4.79
-40 185 3.945 4.79
-46 19 3.965 4.79
-53 120 0.475 4.79
-137 188 0 4.79
-174 235 2.11 4.79
-199 76 2.21 4.79
-205 14 1.565 4.79
-9 5 3.25 4.795
-12 124 0.555 4.795
-36 52 0 4.795
-143 175 3.255 4.795
-148 206 1.785 4.795
-150 210 2.42 4.795
-170 144 3.045 4.795
-200 215 0 4.795
-207 250 2.355 4.795
-48 44 3.97 4.8
-106 127 3.83 4.8
-130 209 3.73 4.8
-139 213 4.165 4.8
-167 22 3.54 4.8
-244 52 3.615 4.8
-47 111 0 4.805
-67 160 4.195 4.805
-70 24 0 4.805
-112 188 0.22 4.805
-116 20 3.955 4.805
-127 178 1 4.805
-132 179 1.84 4.805
-169 100 4.265 4.805
-171 233 0 4.805
-191 242 4.125 4.805
-210 227 0 4.805
-234 233 0 4.805
-245 254 0.785 4.805
-57 11 2.19 4.81
-127 187 0.95 4.81
-129 141 3.95 4.81
-156 22 4.13 4.81
-180 245 0.585 4.81
-210 21 2.905 4.81
-211 24 2.95 4.81
-18 24 0 4.815
-18 99 0.67 4.815
-49 41 3.44 4.815
-72 76 3.045 4.815
-111 95 0 4.815
-111 148 1.91 4.815
-139 22 4.16 4.815
-173 100 2.735 4.815
-181 129 1.175 4.815
-192 141 3.985 4.815
-194 215 0 4.815
-249 246 0 4.815
-251 84 4.16 4.815
-55 103 4.26 4.82
-58 14 1.535 4.82
-60 102 3.23 4.82
-62 34 3.955 4.82
-80 160 4.26 4.82
-159 203 2.52 4.82
-168 49 2.85 4.82
-189 62 2.25 4.82
-21 10 3.73 4.825
-51 119 2.84 4.825
-150 233 0 4.825
-173 110 1.14 4.825
-181 168 0 4.825
-61 15 4.16 4.83
-106 102 0 4.83
-120 40 0.21 4.83
-134 213 0 4.83
-157 206 3.845 4.83
-174 224 2.955 4.83
-204 93 1.91 4.83
-218 22 3.44 4.83
-226 62 4.295 4.83
-245 195 3.615 4.83
-82 162 3.195 4.835
-88 108 3.99 4.835
-126 137 4.225 4.835
-127 181 3.905 4.835
-138 80 0 4.835
-169 165 0 4.835
-206 175 2.7 4.835
-219 93 1.01 4.835
-249 100 3.975 4.835
-7 28 1.4 4.84
-16 19 3.725 4.84
-88 172 3.16 4.84
-112 119 0.265 4.84
-166 169 0 4.84
-168 185 4.325 4.84
-233 239 2.875 4.84
-234 201 1.49 4.84
-238 248 4.145 4.84
-239 47 0 4.84
-29 70 3.145 4.845
-97 162 1.965 4.845
-101 107 3.825 4.845
-109 110 0 4.845
-155 217 0 4.845
-170 100 2.515 4.845
-171 207 3.77 4.845
-171 61 3.415 4.845
-178 213 4.315 4.845
-194 28 4.055 4.845
-222 235 0 4.845
-222 253 2.27 4.845
-223 81 1.79 4.845
-23 230 3.865 4.85
-60 39 3.4 4.85
-75 96 1.96 4.85
-146 172 2.87 4.85
-165 184 2.735 4.85
-211 41 2.6 4.85
-219 32 3.605 4.85
-254 30 3.8 4.85
-11 138 0.505 4.855
-25 91 3.995 4.855
-29 86 2.045 4.855
-73 91 0 4.855
-101 172 3.855 4.855
-238 62 0 4.855
-45 10 1.975 4.86
-69 183 3.925 4.86
-100 61 2.87 4.86
-108 117 0 4.86
-118 153 4.355 4.86
-126 80 0 4.86
-136 194 0 4.86
-151 194 4.31 4.86
-167 218 0 4.86
-168 133 4.03 4.86
-171 184 3.25 4.86
-171 230 4.22 4.86
-182 243 4.34 4.86
-201 118 3.5 4.86
-226 246 3.845 4.86
-31 154 3.25 4.865
-54 39 0.135 4.865
-88 104 0 4.865
-145 237 2.845 4.865
-183 246 0 4.865
-188 186 3.51 4.865
-215 197 0 4.865
-24 107 4.29 4.87
-36 84 3.67 4.87
-55 104 0 4.87
-57 39 0 4.87
-59 120 3.175 4.87
-147 200 3.11 4.87
-214 235 2.87 4.87
-218 235 0 4.87
-240 184 3.625 4.87
-241 143 3.885 4.87
-249 185 4.3 4.87
-8 21 0 4.875
-126 202 4.26 4.875
-132 194 0 4.875
-170 79 2.44 4.875
-176 13 3.04 4.875
-207 206 3.58 4.875
-209 17 0 4.875
-235 30 4.37 4.875
-23 45 4.205 4.88
-25 126 3.905 4.88
-30 44 4.215 4.88
-50 223 4.29 4.88
-77 192 4.285 4.88
-159 93 2.555 4.88
-173 224 0.2 4.88
-211 231 3.175 4.88
-230 21 3.405 4.88
-244 34 3.625 4.88
-17 85 2.995 4.885
-33 34 4.04 4.885
-34 162 3.765 4.885
-60 75 3.335 4.885
-82 98 0 4.885
-88 34 4.29 4.885
-94 99 0 4.885
-109 44 3.955 4.885
-136 179 0.585 4.885
-147 229 2.395 4.885
-168 243 4.37 4.885
-254 13 0 4.885
-4 212 1.175 4.89
-7 153 2.405 4.89
-48 228 2.195 4.89
-58 59 0 4.89
-74 86 2.53 4.89
-101 177 2.325 4.89
-140 217 0 4.89
-146 189 4.1 4.89
-167 171 4.38 4.89
-174 222 0.285 4.89
-191 62 3.695 4.89
-221 61 4.325 4.89
-222 93 4.12 4.89
-57 122 3.01 4.895
-94 97 0 4.895
-165 249 1.915 4.895
-207 13 0 4.895
-227 235 3.395 4.895
-5 76 3.39 4.9
-51 8 2.39 4.9
-92 155 3.15 4.9
-110 162 4.275 4.9
-167 227 1.835 4.9
-188 201 4.115 4.9
-206 196 0 4.9
-244 116 3.72 4.9
-140 206 2.975 4.905
-143 222 4.35 4.905
-222 206 2.605 4.905
-228 47 0 4.905
-229 235 3.88 4.905
-237 184 3.535 4.905
-246 5 0.57 4.905
-13 50 3.81 4.91
-13 56 4.33 4.91
-18 101 4.3 4.91
-21 27 2.605 4.91
-45 93 4.01 4.91
-63 84 2.84 4.91
-69 135 3.205 4.91
-129 13 4.155 4.91
-130 143 1.385 4.91
-130 179 3.88 4.91
-151 179 4.29 4.91
-156 140 0 4.91
-161 175 0 4.91
-194 208 4.365 4.91
-203 93 1.885 4.91
-204 23 3.775 4.91
-236 1 4.17 4.91
-239 42 4.235 4.91
-242 62 3.81 4.91
-46 47 0 4.915
-59 115 3.875 4.915
-98 238 3.16 4.915
-106 99 3.98 4.915
-112 249 4.105 4.915
-116 72 3.665 4.915
-132 151 4.15 4.915
-140 135 0 4.915
-171 205 3.58 4.915
-188 135 0 4.915
-208 16 0 4.915
-215 222 3.91 4.915
-25 153 3.815 4.92
-50 2 0 4.92
-57 201 0.2 4.92
-68 125 4.42 4.92
-140 201 0 4.92
-188 144 0 4.92
-206 45 4.405 4.92
-226 255 1.235 4.92
-227 248 4.38 4.92
-234 251 4.25 4.92
-6 121 4.4 4.925
-119 188 0 4.925
-144 159 2.29 4.925
-146 241 1.65 4.925
-192 67 1.645 4.925
-214 194 3.37 4.925
-217 194 1.425 4.925
-239 61 0 4.925
-239 27 3.74 4.925
-51 118 0 4.93
-69 241 3.635 4.93
-70 76 0 4.93
-88 99 0 4.93
-91 140 0 4.93
-94 161 4.405 4.93
-128 100 1.505 4.93
-194 220 3.73 4.93
-222 45 0 4.93
-253 60 3.27 4.93
-9 23 0 4.935
-14 6 2.565 4.935
-14 11 0 4.935
-43 60 3.405 4.935
-58 54 4.09 4.935
-130 148 1.54 4.935
-164 221 2.92 4.935
-170 127 0 4.935
-187 67 3.735 4.935
-206 212 3.485 4.935
-219 230 2 4.935
-15 93 0 4.94
-22 45 2.505 4.94
-30 99 2.495 4.94
-39 115 3.89 4.94
-67 148 3.19 4.94
-101 166 0 4.94
-103 104 0 4.94
-210 212 0 4.94
-215 23 0 4.94
-219 21 4.39 4.94
-223 2 0 4.94
-225 223 4.27 4.94
-235 29 0 4.94
-29 154 3.385 4.945
-54 166 1.9 4.945
-63 75 2.865 4.945
-69 245 3.995 4.945
-89 124 1.73 4.945
-132 2 4.37 4.945
-152 209 0 4.945
-162 67 4.245 4.945
-173 39 4.375 4.945
-201 14 2.23 4.945
-210 179 3.625 4.945
-232 255 1.52 4.945
-239 235 0 4.945
-29 107 4.33 4.95
-55 107 4.105 4.95
-59 123 0.755 4.95
-60 34 4.445 4.95
-113 162 0 4.95
-143 148 1.645 4.95
-150 249 3.065 4.95
-159 4 3.37 4.95
-211 219 4.385 4.95
-110 177 4.31 4.955
-119 186 4.445 4.955
-121 52 4.37 4.955
-126 91 2.36 4.955
-128 180 4.445 4.955
-163 248 4.365 4.955
-208 28 4.01 4.955
-219 154 4.44 4.955
-8 92 4.285 4.96
-46 125 2.485 4.96
-56 34 0 4.96
-67 144 3.715 4.96
-68 99 3.95 4.96
-98 241 2.59 4.96
-107 117 4.02 4.96
-115 137 2.06 4.96
-171 48 4.19 4.96
-208 90 3.91 4.96
-239 125 2.56 4.96
-243 246 0 4.96
-24 255 4.2 4.965
-40 112 3.32 4.965
-82 104 3 4.965
-96 187 3.665 4.965
-108 184 3.36 4.965
-128 170 0 4.965
-149 132 0.915 4.965
-164 241 4.225 4.965
-199 59 0.76 4.965
-217 200 4.075 4.965
-40 249 4.04 4.97
-140 204 0 4.97
-164 240 3.57 4.97
-171 252 2.74 4.97
-215 171 4.43 4.97
-232 35 4.04 4.97
-234 247 0 4.97
-237 26 4.425 4.97
-254 256 0 4.97
-25 70 0 4.975
-56 209 4.355 4.975
-83 132 1.02 4.975
-129 255 1.71 4.975
-132 152 0 4.975
-132 216 4.25 4.975
-140 179 3.14 4.975
-174 180 2.195 4.975
-205 1 3.865 4.975
-216 33 4.425 4.975
-226 205 3.99 4.975
-244 120 3.64 4.975
-62 1 4.08 4.98
-128 96 4.35 4.98
-143 147 2.82 4.98
-187 184 2.48 4.98
-199 25 2.225 4.98
-21 55 3.735 4.985
-59 119 0.655 4.985
-71 151 1.04 4.985
-123 135 3.86 4.985
-147 211 0 4.985
-163 227 4.325 4.985
-204 45 4.395 4.985
-209 22 4.435 4.985
-212 81 1.115 4.985
-213 195 4.455 4.985
-215 221 3.62 4.985
-7 121 1.435 4.99
-10 124 3.72 4.99
-31 27 0 4.99
-78 96 4.14 4.99
-87 146 4.045 4.99
-101 115 3.9 4.99
-174 176 0 4.99
-183 139 0 4.99
-192 252 4.145 4.99
-194 70 3.91 4.99
-209 194 3.675 4.99
-209 70 4.435 4.99
-210 220 4.37 4.99
-239 253 0 4.99
-23 208 4.21 4.995
-30 255 3.88 4.995
-31 28 2.215 4.995
-42 39 2.19 4.995
-65 134 4.395 4.995
-104 238 3.9 4.995
-138 188 3.86 4.995
-174 188 0.71 4.995
-203 16 4.45 4.995
-65 70 4.49 5
-80 161 4.445 5
-75 117 4.385 5
-190 162 3.75 5
-202 224 0 5
-164 180 0 5
-234 58 2.415 5
-196 51 4.145 5
-9 221 3.92 5
-221 45 0 5
+9 77 0 5
+31 91 0 5
+31 111 0 5
+66 94 0 5
+91 111 0 5
+126 142 0 5
+198 54 0 5
+1 81 0 6
+4 116 0 6
+7 67 0 6
+14 66 0 6
+59 119 0 6
+64 4 0 6
+84 112 0 6
+95 175 0 6
+97 117 0 6
+127 179 0 6
+128 76 0 6
+141 201 0 6
+144 148 0 6
+144 224 0 6
+220 32 0 6
+226 254 0 6
+244 4 0 6
+248 40 0 6
+6 26 0 7
+33 61 0 7
+35 103 0 7
+41 109 0 7
+55 71 0 7
+64 80 0 7
+99 127 0 7
+104 152 0 7
+122 182 0 7
+122 138 0 7
+135 147 0 7
+136 156 0 7
+150 170 0 7
+162 230 0 7
+178 226 0 7
+185 141 0 7
+192 252 0 7
+198 10 0 7
+204 8 0 7
+218 238 0 7
+218 22 0 7
+234 38 0 7
+236 28 0 7
+237 61 0 7
+245 193 0 7
+7 87 0 8
+13 65 0 8
+16 76 0 8
+30 82 0 8
+39 119 0 8
+49 117 0 8
+53 113 0 8
+53 69 0 8
+54 2 0 8
+66 142 0 8
+67 87 0 8
+78 138 0 8
+105 173 0 8
+107 119 0 8
+113 129 0 8
+122 70 0 8
+124 192 0 8
+135 247 0 8
+139 207 0 8
+158 210 0 8
+163 191 0 8
+165 233 0 8
+170 218 0 8
+173 233 0 8
+180 144 0 8
+183 251 0 8
+190 242 0 8
+205 209 0 8
+235 39 0 8
+247 203 0 8
+253 45 0 8
+254 194 0 8
+4 80 0 9
+31 43 0 9
+35 83 0 9
+38 58 0 9
+39 59 0 9
+40 120 0 9
+49 97 0 9
+51 99 0 9
+54 10 0 9
+58 118 0 9
+60 16 0 9
+60 128 0 9
+60 76 0 9
+62 10 0 9
+64 116 0 9
+67 179 0 9
+82 110 0 9
+100 120 0 9
+103 115 0 9
+111 159 0 9
+124 172 0 9
+125 141 0 9
+126 66 0 9
+135 195 0 9
+142 194 0 9
+144 196 0 9
+145 225 0 9
+146 222 0 9
+147 195 0 9
+159 163 0 9
+165 213 0 9
+171 239 0 9
+172 184 0 9
+175 223 0 9
+188 204 0 9
+195 215 0 9
+199 219 0 9
+203 215 0 9
+214 26 0 9
+221 233 0 9
+229 21 0 9
+231 35 0 9
+237 33 0 9
+240 32 0 9
+243 63 0 9
+244 200 0 9
+250 198 0 9
+1 113 0 10
+2 114 0 10
+3 23 0 10
+6 118 0 10
+7 19 0 10
+9 69 0 10
+11 23 0 10
+15 27 0 10
+15 75 0 10
+29 77 0 10
+33 109 0 10
+43 111 0 10
+56 72 0 10
+83 159 0 10
+85 153 0 10
+86 134 0 10
+87 147 0 10
+88 108 0 10
+104 172 0 10
+136 216 0 10
+139 219 0 10
+149 169 0 10
+159 239 0 10
+160 240 0 10
+167 187 0 10
+169 217 0 10
+178 246 0 10
+180 196 0 10
+187 255 0 10
+189 241 0 10
+192 140 0 10
+212 32 0 10
+220 12 0 10
+221 25 0 10
+237 241 0 10
+241 61 0 10
+246 50 0 10
+249 197 0 10
+1 69 0 11
+12 72 0 11
+13 17 0 11
+13 125 0 11
+14 126 0 11
+25 37 0 11
+27 107 0 11
+34 102 0 11
+36 112 0 11
+48 52 0 11
+52 68 0 11
+55 3 0 11
+70 182 0 11
+85 133 0 11
+88 100 0 11
+108 120 0 11
+108 168 0 11
+110 158 0 11
+152 164 0 11
+158 238 0 11
+164 232 0 11
+171 219 0 11
+177 193 0 11
+178 194 0 11
+185 201 0 11
+189 137 0 11
+190 250 0 11
+200 24 0 11
+211 231 0 11
+235 47 0 11
+252 208 0 11
+5 25 0 12
+6 86 0 12
+21 81 0 12
+29 89 0 12
+34 82 0 12
+46 106 0 12
+50 118 0 12
+79 131 0 12
+82 158 0 12
+89 157 0 12
+94 146 0 12
+102 162 0 12
+118 186 0 12
+125 65 0 12
+135 215 0 12
+137 249 0 12
+140 252 0 12
+148 196 0 12
+151 219 0 12
+168 236 0 12
+172 252 0 12
+174 186 0 12
+175 187 0 12
+179 143 0 12
+184 140 0 12
+187 247 0 12
+201 221 0 12
+204 16 0 12
+216 236 0 12
+234 58 0 12
+241 205 0 12
+247 59 0 12
+11 31 0 13
+12 92 0 13
+23 35 0 13
+29 41 0 13
+30 90 0 13
+56 12 0 13
+77 89 0 13
+93 173 0 13
+101 121 0 13
+106 154 0 13
+127 143 0 13
+130 158 0 13
+131 207 0 13
+136 204 0 13
+142 146 0 13
+150 162 0 13
+153 213 0 13
+154 222 0 13
+161 181 0 13
+163 211 0 13
+163 239 0 13
+166 178 0 13
+166 186 0 13
+171 183 0 13
+173 253 0 13
+177 245 0 13
+180 256 0 13
+191 243 0 13
+192 208 0 13
+196 224 0 13
+200 212 0 13
+210 238 0 13
+219 11 0 13
+228 20 0 13
+233 253 0 13
+245 49 0 13
+245 5 0 13
+248 8 0 13
+253 201 0 13
+14 18 0 14
+14 74 0 14
+30 78 0 14
+55 115 0 14
+63 111 0 14
+78 90 0 14
+120 168 0 14
+126 74 0 14
+132 200 0 14
+155 175 0 14
+170 230 0 14
+173 185 0 14
+177 133 0 14
+195 19 0 14
+199 23 0 14
+202 26 0 14
+204 60 0 14
+216 28 0 14
+217 229 0 14
+220 240 0 14
+223 235 0 14
+249 9 0 14
+10 122 0 15
+14 94 0 15
+21 101 0 15
+39 107 0 15
+50 98 0 15
+60 8 0 15
+73 141 0 15
+73 153 0 15
+74 142 0 15
+87 135 0 15
+89 109 0 15
+91 159 0 15
+93 153 0 15
+119 167 0 15
+121 137 0 15
+132 212 0 15
+148 224 0 15
+157 169 0 15
+190 138 0 15
+208 220 0 15
+219 239 0 15
+235 27 0 15
+1 77 0 16
+34 114 0 16
+36 84 0 16
+42 62 0 16
+68 144 0 16
+96 108 0 16
+96 176 0 16
+113 69 0 16
+121 181 0 16
+124 140 0 16
+145 221 0 16
+155 223 0 16
+162 242 0 16
+163 243 0 16
+193 13 0 16
+198 22 0 16
+233 45 0 16
+237 41 0 16
+246 38 0 16
+10 22 0 17
+17 65 0 17
+19 67 0 17
+73 185 0 17
+75 143 0 17
+99 179 0 17
+101 114 13 17
+106 174 0 17
+112 160 0 17
+136 196 0 17
+156 216 0 17
+193 17 0 17
+203 59 0 17
+213 233 0 17
+10 70 0 18
+18 94 0 18
+41 89 0 18
+42 90 0 18
+44 119 0 18
+72 92 0 18
+88 229 15 18
+100 170 12 18
+103 229 15 18
+111 123 0 18
+132 208 0 18
+136 148 0 18
+147 215 0 18
+188 256 0 18
+189 249 0 18
+200 4 0 18
+212 24 0 18
+220 24 0 18
+247 195 0 18
+251 11 0 18
+31 83 0 19
+57 117 0 19
+68 148 0 19
+93 145 0 19
+95 107 0 19
+99 229 8 19
+105 117 0 19
+122 76 0 19
+125 73 0 19
+151 199 0 19
+151 21 13 19
+172 192 0 19
+174 165 11 19
+175 192 13 19
+181 137 0 19
+188 190 14 19
+201 57 0 19
+205 29 0 19
+214 234 0 19
+220 57 16 19
+224 231 11 19
+224 94 14 19
+233 37 0 19
+250 62 0 19
+9 121 0 20
+14 45 18 20
+34 19 12 20
+45 57 0 20
+61 77 0 20
+81 157 0 20
+82 102 0 20
+111 238 15 20
+126 111 15 20
+165 175 11 20
+228 48 0 20
+235 28 0 20
+240 252 0 20
+248 213 18 20
+251 199 0 20
+16 141 15 21
+18 66 0 21
+35 114 15 21
+44 92 0 21
+44 104 0 21
+46 94 0 21
+61 109 0 21
+89 169 0 21
+105 45 0 21
+143 136 11 21
+174 254 0 21
+191 206 14 21
+191 207 0 21
+196 20 0 21
+209 31 17 21
+224 20 0 21
+225 45 0 21
+236 40 0 21
+253 57 0 21
+8 84 20 22
+9 59 0 22
+35 88 0 22
+38 7 13 22
+56 4 0 22
+56 116 0 22
+68 193 18 22
+85 165 0 22
+102 150 0 22
+111 128 12 22
+124 80 0 22
+129 209 0 22
+131 1 18 22
+133 153 0 22
+151 171 0 22
+159 171 0 22
+170 164 11 22
+192 201 0 22
+195 51 0 22
+206 210 0 22
+217 22 0 22
+218 230 0 22
+256 60 0 22
+12 80 0 23
+15 74 0 23
+29 2 14 23
+37 117 0 23
+49 13 0 23
+50 66 0 23
+53 9 0 23
+54 70 0 23
+63 115 0 23
+95 148 0 23
+99 119 0 23
+110 114 0 23
+133 213 0 23
+188 191 9 23
+202 27 10 23
+211 239 0 23
+226 35 8 23
+227 51 0 23
+246 194 0 23
+256 204 0 23
+6 66 0 24
+18 84 11 24
+21 27 12 24
+29 109 0 24
+49 125 0 24
+50 126 0 24
+51 66 12 24
+68 180 0 24
+79 139 0 24
+80 67 14 24
+81 109 0 24
+89 149 0 24
+95 155 0 24
+105 76 17 24
+126 4 0 24
+138 250 0 24
+140 142 9 24
+144 209 0 24
+160 164 0 24
+226 36 11 24
+232 244 0 24
+235 22 0 24
+239 43 0 24
+247 51 0 24
+249 214 14 24
+5 57 0 25
+17 84 9 25
+26 38 0 25
+52 120 0 25
+52 118 12 25
+56 71 0 25
+96 148 0 25
+99 92 9 25
+111 165 7 25
+140 159 12 25
+141 153 0 25
+145 165 0 25
+146 174 0 25
+158 170 0 25
+158 162 0 25
+170 139 11 25
+176 188 0 25
+208 4 0 25
+222 226 0 25
+228 40 0 25
+243 3 0 25
+248 211 19 25
+7 119 0 26
+8 39 16 26
+13 4 0 26
+46 18 0 26
+63 79 0 26
+69 145 20 26
+91 79 0 26
+104 133 22 26
+123 173 0 26
+147 221 13 26
+157 209 0 26
+174 222 0 26
+180 194 0 26
+183 199 0 26
+188 236 0 26
+189 237 0 26
+193 49 0 26
+203 27 0 26
+204 54 0 26
+208 45 17 26
+211 85 15 26
+220 251 16 26
+231 43 0 26
+234 26 0 26
+242 230 0 26
+15 80 0 27
+24 72 0 27
+42 22 0 27
+49 65 0 27
+50 21 21 27
+59 7 0 27
+59 15 0 27
+69 135 12 27
+85 40 16 27
+88 148 0 27
+89 101 0 27
+101 149 0 27
+102 114 0 27
+116 119 11 27
+151 6 9 27
+168 34 19 27
+170 177 13 27
+171 231 0 27
+180 207 0 27
+182 230 0 27
+183 134 10 27
+206 197 15 27
+212 4 0 27
+222 213 9 27
+241 52 14 27
+242 6 24 27
+248 204 0 27
+248 51 0 27
+249 181 0 27
+255 47 0 27
+9 122 0 28
+32 158 11 28
+32 84 0 28
+43 97 20 28
+44 56 0 28
+44 124 0 28
+55 120 0 28
+60 120 0 28
+67 82 9 28
+67 84 7 28
+67 135 0 28
+68 71 13 28
+75 155 0 28
+80 84 0 28
+82 92 15 28
+85 65 0 28
+94 98 0 28
+106 173 0 28
+106 186 0 28
+107 175 0 28
+110 190 0 28
+130 210 0 28
+138 206 0 28
+138 204 8 28
+181 136 13 28
+184 53 11 28
+188 199 0 28
+197 53 0 28
+203 1 20 28
+239 31 0 28
+242 213 12 28
+8 76 0 29
+9 61 0 29
+24 36 0 29
+25 45 0 29
+36 82 0 29
+45 96 22 29
+46 37 9 29
+49 196 15 29
+59 189 14 29
+83 111 0 29
+99 175 0 29
+105 99 13 29
+110 162 0 29
+112 164 0 29
+115 66 7 29
+117 123 14 29
+124 141 0 29
+131 152 21 29
+142 218 20 29
+169 229 0 29
+172 42 15 29
+180 142 0 29
+202 214 0 29
+206 250 0 29
+227 244 8 29
+22 90 0 30
+28 153 16 30
+31 35 0 30
+34 97 0 30
+44 117 0 30
+78 91 0 30
+110 170 0 30
+115 72 11 30
+133 138 11 30
+138 203 10 30
+142 153 9 30
+146 159 0 30
+154 214 0 30
+158 164 0 30
+170 238 0 30
+183 186 0 30
+183 136 10 30
+193 210 17 30
+213 226 11 30
+224 16 0 30
+225 221 0 30
+236 121 16 30
+63 78 9 31
+96 106 0 31
+115 71 0 31
+116 184 0 31
+122 71 0 31
+186 201 0 31
+226 233 9 31
+243 35 0 31
+7 76 0 32
+8 28 0 32
+11 25 0 32
+36 104 0 32
+37 104 12 32
+38 118 0 32
+39 70 21 32
+74 105 20 32
+94 106 0 32
+105 70 13 32
+111 116 7 32
+111 190 8 32
+111 225 11 32
+118 183 9 32
+127 175 0 32
+129 157 0 32
+139 191 0 32
+167 41 13 32
+180 136 0 32
+195 7 0 32
+200 202 8 32
+203 25 0 32
+212 215 27 32
+219 74 13 32
+231 251 0 32
+236 203 14 32
+245 187 12 32
+14 26 0 33
+16 25 0 33
+16 28 0 33
+31 79 0 33
+41 90 0 33
+69 82 12 33
+78 178 29 33
+96 100 0 33
+108 176 0 33
+113 164 18 33
+114 162 0 33
+114 180 9 33
+151 148 22 33
+164 222 0 33
+169 181 0 33
+197 210 10 33
+203 196 19 33
+205 1 0 33
+209 226 9 33
+217 29 0 33
+249 53 0 33
+249 44 16 33
+251 43 0 33
+255 51 0 33
+1 61 0 34
+3 98 21 34
+9 55 0 34
+9 28 23 34
+10 45 10 34
+32 36 0 34
+70 136 20 34
+88 154 17 34
+111 101 17 34
+113 84 27 34
+125 173 0 34
+125 185 0 34
+128 115 8 34
+137 203 16 34
+145 144 0 34
+148 167 10 34
+158 156 9 34
+162 182 0 34
+172 41 15 34
+174 228 19 34
+177 119 11 34
+203 15 0 34
+204 11 0 34
+208 93 10 34
+209 29 0 34
+211 35 0 34
+223 93 10 34
+249 243 15 34
+250 10 0 34
+1 81 30 35
+27 39 0 35
+28 169 15 35
+44 118 0 35
+51 7 0 35
+52 128 0 35
+53 121 0 35
+76 141 0 35
+84 164 0 35
+98 69 24 35
+100 148 0 35
+128 178 7 35
+128 176 0 35
+134 154 0 35
+143 222 13 35
+154 202 0 35
+157 148 0 35
+159 225 0 35
+217 159 8 35
+217 199 0 35
+224 93 12 35
+250 64 10 35
+251 201 0 35
+251 38 0 35
+251 55 0 35
+4 32 0 36
+9 56 0 36
+44 64 0 36
+54 122 0 36
+67 242 30 36
+87 130 0 36
+90 97 19 36
+118 135 11 36
+145 213 0 36
+149 215 20 36
+154 235 17 36
+185 133 0 36
+187 201 0 36
+197 214 26 36
+199 13 22 36
+207 243 0 36
+218 203 24 36
+234 231 0 36
+240 227 15 36
+3 71 0 37
+16 47 12 37
+17 95 11 37
+23 40 12 37
+48 96 0 37
+54 61 12 37
+69 136 8 37
+79 254 31 37
+81 129 0 37
+117 168 24 37
+119 187 0 37
+119 134 11 37
+120 132 29 37
+141 221 0 37
+178 83 28 37
+200 220 0 37
+236 199 13 37
+241 230 29 37
+242 252 10 37
+249 226 16 37
+253 64 10 37
+1 10 32 38
+5 85 0 38
+26 96 17 38
+46 1 11 38
+47 107 0 38
+62 31 22 38
+74 134 0 38
+105 82 11 38
+106 75 11 38
+125 191 27 38
+126 178 0 38
+143 14 14 38
+158 112 0 38
+158 225 0 38
+167 225 9 38
+170 75 13 38
+172 240 0 38
+205 218 15 38
+209 224 0 38
+242 211 15 38
+243 55 0 38
+246 195 0 38
+248 3 0 38
+11 31 34 39
+13 25 0 39
+26 107 24 39
+46 226 0 39
+63 123 0 39
+68 99 14 39
+78 132 21 39
+101 169 0 39
+104 106 31 39
+115 130 12 39
+128 67 10 39
+136 138 20 39
+143 1 12 39
+144 237 36 39
+148 179 14 39
+178 149 30 39
+187 247 23 39
+189 250 0 39
+207 17 0 39
+230 55 10 39
+235 38 0 39
+240 203 12 39
+244 51 0 39
+248 21 11 39
+12 24 0 40
+28 40 0 40
+47 106 0 40
+50 211 11 40
+54 124 8 40
+93 65 0 40
+93 76 0 40
+109 128 24 40
+112 175 0 40
+113 191 26 40
+131 199 0 40
+134 204 14 40
+144 13 33 40
+149 200 15 40
+150 231 13 40
+162 228 17 40
+176 244 24 40
+179 210 30 40
+228 247 11 40
+234 45 0 40
+19 40 9 41
+33 39 9 41
+38 104 13 41
+47 59 0 41
+48 100 0 41
+61 55 9 41
+76 152 24 41
+77 81 0 41
+83 148 0 41
+84 177 28 41
+104 69 10 41
+109 160 22 41
+118 166 0 41
+128 180 0 41
+164 143 35 41
+172 232 0 41
+188 247 0 41
+190 206 0 41
+213 19 14 41
+215 235 0 41
+220 39 0 41
+220 43 0 41
+223 27 0 41
+228 195 20 41
+242 52 24 41
+251 244 15 41
+4 97 9 42
+5 204 0 42
+7 120 0 42
+23 71 0 42
+39 56 26 42
+46 98 0 42
+56 124 0 42
+59 36 19 42
+68 136 0 42
+73 28 11 42
+95 99 0 42
+95 146 0 42
+113 120 0 42
+130 150 0 42
+161 179 0 42
+166 135 18 42
+180 206 0 42
+192 157 33 42
+203 244 15 42
+205 217 0 42
+242 56 18 42
+246 6 0 42
+20 48 0 43
+50 69 0 43
+66 99 28 43
+75 205 28 43
+79 205 26 43
+88 140 24 43
+91 217 13 43
+92 158 20 43
+93 25 0 43
+114 124 10 43
+114 81 30 43
+116 72 0 43
+133 245 0 43
+145 206 0 43
+152 245 29 43
+154 185 33 43
+160 238 0 43
+169 124 18 43
+178 145 9 43
+183 231 0 43
+201 218 13 43
+241 212 19 43
+3 129 30 44
+16 20 0 44
+24 92 0 44
+33 243 0 44
+42 102 0 44
+46 15 14 44
+57 124 28 44
+63 3 0 44
+68 70 14 44
+72 193 39 44
+95 147 0 44
+110 123 0 44
+116 132 0 44
+135 192 34 44
+160 172 0 44
+174 226 0 44
+175 179 0 44
+190 120 35 44
+238 143 33 44
+247 22 14 44
+256 201 0 44
+2 68 16 45
+5 17 0 45
+9 8 0 45
+29 81 0 45
+49 48 0 45
+61 47 0 45
+64 112 0 45
+66 136 8 45
+91 139 0 45
+99 87 0 45
+100 128 0 45
+110 173 0 45
+113 129 30 45
+121 109 0 45
+134 157 23 45
+134 167 29 45
+153 204 21 45
+155 172 10 45
+160 225 0 45
+161 241 0 45
+165 184 27 45
+167 235 0 45
+175 168 9 45
+216 247 14 45
+238 63 31 45
+238 36 16 45
+246 204 0 45
+7 122 0 46
+50 55 0 46
+65 132 9 46
+66 147 29 46
+72 188 39 46
+73 93 0 46
+77 143 34 46
+78 157 0 46
+96 175 0 46
+119 245 8 46
+127 75 0 46
+130 206 0 46
+132 151 25 46
+139 142 0 46
+141 250 0 46
+167 247 0 46
+186 134 0 46
+188 230 0 46
+203 223 0 46
+214 171 0 46
+234 254 0 46
+240 207 11 46
+241 33 0 46
+256 50 10 46
+256 195 10 46
+3 178 12 47
+3 82 43 47
+13 7 15 47
+13 73 0 47
+20 96 0 47
+23 38 28 47
+46 58 0 47
+48 128 0 47
+50 6 0 47
+65 181 37 47
+67 147 0 47
+72 194 23 47
+74 26 0 47
+111 147 22 47
+125 79 0 47
+144 256 0 47
+146 156 31 47
+153 201 0 47
+158 153 8 47
+183 201 0 47
+188 136 0 47
+189 139 0 47
+208 195 16 47
+211 29 17 47
+213 41 38 47
+214 247 18 47
+216 40 0 47
+231 228 30 47
+237 202 13 47
+248 55 0 47
+255 110 12 47
+7 27 0 48
+44 123 0 48
+46 127 29 48
+65 131 35 48
+68 97 16 48
+68 161 17 48
+74 85 14 48
+75 143 28 48
+80 202 38 48
+86 154 0 48
+88 133 30 48
+103 123 0 48
+116 133 0 48
+126 109 11 48
+131 211 0 48
+145 222 0 48
+150 215 11 48
+165 120 36 48
+165 170 36 48
+186 203 9 48
+193 256 0 48
+238 250 0 48
+9 118 0 49
+16 26 0 49
+28 94 8 49
+42 54 0 49
+43 123 0 49
+53 18 28 49
+64 124 0 49
+74 86 0 49
+76 146 32 49
+77 67 7 49
+100 119 37 49
+116 179 0 49
+126 98 0 49
+138 201 0 49
+154 220 19 49
+163 156 28 49
+165 178 37 49
+210 220 10 49
+216 245 24 49
+216 236 30 49
+228 56 34 49
+234 164 14 49
+240 64 0 49
+242 201 8 49
+37 57 0 50
+79 133 40 50
+80 205 15 50
+93 48 28 50
+113 161 0 50
+125 98 39 50
+131 201 10 50
+134 215 17 50
+137 150 13 50
+153 221 0 50
+164 49 38 50
+185 236 39 50
+189 65 35 50
+196 10 21 50
+215 221 44 50
+216 101 39 50
+240 43 0 50
+246 5 0 50
+22 87 9 51
+34 5 29 51
+36 111 0 51
+48 123 0 51
+50 206 25 51
+58 15 0 51
+65 180 12 51
+66 131 26 51
+69 131 17 51
+71 150 16 51
+74 154 0 51
+80 173 27 51
+96 237 28 51
+98 65 26 51
+108 173 0 51
+120 246 25 51
+127 67 0 51
+147 226 11 51
+153 237 20 51
+165 182 15 51
+168 216 0 51
+177 165 0 51
+190 234 45 51
+197 152 11 51
+216 233 0 51
+226 18 0 51
+237 209 0 51
+239 244 6 51
+249 199 0 51
+1 29 0 52
+3 77 10 52
+4 116 33 52
+5 215 0 52
+9 70 0 52
+17 101 35 52
+28 154 17 52
+50 113 0 52
+62 10 30 52
+65 133 0 52
+72 181 14 52
+78 72 37 52
+88 100 47 52
+146 194 0 52
+152 175 37 52
+184 132 0 52
+198 167 8 52
+207 211 0 52
+213 232 16 52
+227 255 0 52
+242 198 0 52
+2 82 0 53
+9 220 30 53
+11 29 0 53
+47 112 0 53
+50 65 0 53
+65 118 27 53
+70 81 19 53
+87 136 0 53
+100 65 29 53
+115 241 31 53
+140 194 31 53
+144 253 14 53
+156 183 42 53
+158 218 0 53
+168 34 45 53
+174 179 0 53
+196 33 39 53
+198 229 41 53
+199 202 0 53
+208 32 0 53
+216 28 31 53
+241 247 12 53
+256 196 0 53
+6 13 31 54
+17 85 0 54
+22 70 0 54
+67 82 41 54
+80 107 38 54
+109 177 32 54
+113 94 11 54
+136 204 31 54
+138 107 37 54
+140 167 18 54
+142 222 0 54
+148 191 40 54
+181 130 13 54
+188 248 0 54
+211 3 0 54
+214 38 0 54
+225 213 0 54
+229 175 19 54
+242 54 0 54
+247 49 31 54
+16 90 0 55
+41 240 0 55
+50 63 0 55
+89 82 8 55
+96 170 0 55
+128 139 0 55
+131 151 0 55
+148 232 34 55
+153 173 0 55
+174 129 29 55
+181 135 0 55
+233 22 0 55
+234 139 45 55
+247 121 35 55
+2 70 0 56
+3 130 31 56
+58 254 0 56
+73 133 0 56
+91 173 0 56
+114 180 45 56
+117 129 46 56
+117 184 18 56
+122 119 0 56
+145 175 0 56
+178 135 0 56
+179 130 40 56
+181 248 25 56
+215 224 39 56
+215 27 0 56
+235 63 43 56
+237 208 15 56
+239 256 24 56
+252 10 0 56
+2 25 34 57
+20 51 41 57
+23 44 24 57
+33 99 42 57
+36 94 0 57
+38 43 0 57
+39 169 54 57
+40 88 0 57
+70 90 0 57
+99 109 39 57
+102 109 18 57
+168 188 0 57
+186 174 22 57
+189 162 15 57
+190 139 0 57
+193 198 15 57
+207 219 0 57
+210 243 55 57
+233 252 20 57
+30 37 37 58
+37 99 19 58
+60 126 23 58
+69 181 0 58
+73 114 28 58
+111 191 0 58
+125 124 0 58
+146 169 57 58
+164 34 34 58
+170 182 0 58
+187 230 0 58
+201 220 25 58
+222 18 0 58
+246 136 0 58
+30 81 0 59
+33 2 11 59
+36 64 0 59
+46 20 0 59
+66 132 12 59
+71 88 10 59
+76 103 13 59
+85 97 0 59
+89 101 38 59
+100 120 32 59
+119 135 0 59
+134 200 8 59
+138 221 0 59
+139 136 23 59
+139 159 0 59
+162 184 0 59
+177 184 0 59
+184 230 0 59
+191 235 57 59
+196 78 38 59
+231 54 30 59
+241 210 32 59
+242 34 0 59
+245 56 42 59
+3 95 26 60
+4 7 42 60
+21 101 38 60
+25 38 28 60
+46 254 0 60
+46 50 0 60
+48 60 0 60
+53 102 0 60
+55 69 0 60
+71 198 17 60
+79 72 25 60
+84 209 30 60
+90 155 20 60
+98 168 39 60
+104 180 28 60
+109 123 0 60
+114 83 35 60
+115 242 57 60
+121 126 10 60
+135 247 30 60
+142 194 33 60
+145 150 17 60
+150 220 11 60
+179 188 34 60
+188 198 0 60
+198 144 44 60
+214 201 22 60
+248 52 0 60
+253 63 17 60
+4 70 15 61
+11 95 43 61
+18 99 19 61
+42 64 0 61
+43 170 30 61
+49 47 0 61
+57 105 0 61
+67 84 40 61
+67 179 41 61
+79 84 44 61
+80 109 50 61
+100 179 0 61
+165 245 0 61
+179 34 11 61
+193 222 9 61
+246 200 0 61
+27 157 42 62
+37 56 7 62
+50 117 0 62
+58 125 0 62
+58 126 0 62
+64 123 0 62
+71 246 16 62
+80 84 37 62
+87 133 0 62
+126 174 0 62
+130 148 0 62
+132 208 40 62
+140 200 0 62
+150 170 41 62
+160 170 0 62
+173 172 0 62
+178 238 48 62
+195 212 49 62
+208 212 0 62
+210 245 23 62
+233 38 0 62
+236 60 0 62
+14 74 39 63
+22 88 62 63
+30 16 0 63
+52 100 0 63
+53 101 0 63
+80 139 0 63
+120 136 0 63
+144 201 0 63
+146 92 9 63
+187 202 30 63
+208 220 17 63
+44 110 24 64
+49 125 51 64
+61 9 35 64
+67 242 52 64
+72 198 10 64
+84 150 25 64
+107 155 0 64
+110 64 0 64
+116 95 31 64
+127 104 53 64
+145 162 43 64
+178 244 40 64
+182 201 0 64
+183 134 59 64
+205 219 0 64
+206 200 56 64
+219 240 47 64
+238 232 41 64
+240 44 0 64
+242 247 0 64
+245 5 42 64
+252 121 17 64
+252 64 0 64
+253 202 26 64
+254 64 49 64
+4 72 0 65
+26 94 0 65
+41 121 0 65
+67 193 11 65
+73 66 11 65
+75 135 0 65
+78 82 0 65
+81 98 47 65
+84 86 23 65
+97 163 33 65
+118 134 0 65
+127 117 43 65
+136 244 60 65
+140 6 26 65
+142 202 0 65
+142 221 0 65
+152 232 0 65
+164 254 0 65
+176 42 37 65
+181 190 25 65
+190 244 30 65
+214 212 14 65
+231 40 0 65
+233 61 33 65
+233 57 0 65
+240 58 0 65
+247 9 0 65
+251 9 0 65
+251 64 0 65
+20 161 29 66
+40 165 9 66
+42 60 0 66
+50 4 0 66
+58 14 0 66
+90 160 31 66
+94 112 0 66
+110 161 0 66
+111 115 0 66
+112 161 0 66
+113 181 0 66
+127 181 37 66
+128 68 0 66
+130 198 0 66
+139 207 34 66
+140 199 0 66
+147 195 44 66
+172 240 48 66
+181 197 0 66
+225 244 9 66
+226 236 43 66
+228 17 37 66
+230 54 0 66
+231 57 0 66
+239 62 11 66
+34 230 0 67
+46 57 48 67
+72 84 0 67
+79 159 0 67
+106 126 0 67
+117 66 7 67
+125 186 0 67
+138 133 57 67
+153 220 13 67
+159 244 56 67
+164 244 0 67
+180 182 7 67
+187 61 32 67
+195 216 55 67
+212 232 0 67
+248 196 0 67
+253 57 29 67
+255 48 0 67
+2 201 51 68
+18 88 62 68
+28 76 0 68
+48 100 63 68
+55 115 47 68
+63 189 55 68
+69 82 44 68
+77 192 17 68
+81 86 35 68
+92 104 0 68
+98 163 37 68
+121 74 27 68
+122 188 41 68
+129 182 48 68
+132 207 0 68
+138 218 0 68
+147 217 61 68
+174 181 28 68
+186 172 0 68
+211 25 40 68
+214 209 15 68
+226 249 53 68
+232 24 0 68
+233 44 7 68
+235 228 46 68
+239 232 22 68
+9 59 48 69
+15 127 0 69
+63 35 0 69
+80 132 0 69
+89 124 27 69
+89 83 17 69
+91 171 0 69
+106 111 0 69
+122 137 0 69
+143 250 0 69
+144 219 0 69
+159 195 30 69
+160 220 0 69
+171 192 61 69
+181 191 25 69
+189 178 23 69
+212 24 51 69
+215 7 0 69
+223 19 0 69
+238 50 33 69
+240 47 0 69
+255 33 0 69
+3 83 0 70
+5 73 0 70
+8 88 0 70
+29 96 59 70
+30 19 0 70
+37 105 0 70
+89 154 0 70
+120 83 15 70
+148 34 51 70
+153 215 22 70
+154 166 0 70
+157 175 0 70
+164 129 18 70
+178 136 0 70
+186 176 0 70
+216 8 0 70
+225 230 30 70
+226 54 44 70
+234 41 0 70
+247 5 0 70
+249 197 65 70
+4 145 14 71
+27 154 47 71
+49 117 36 71
+53 200 50 71
+58 106 0 71
+60 108 0 71
+67 143 0 71
+68 193 41 71
+79 193 23 71
+89 66 12 71
+93 110 39 71
+119 70 48 71
+120 197 22 71
+146 153 23 71
+151 209 13 71
+152 21 50 71
+162 242 53 71
+165 217 68 71
+173 253 48 71
+178 141 9 71
+178 132 0 71
+187 135 0 71
+190 206 55 71
+194 222 0 71
+217 194 54 71
+217 211 55 71
+222 216 51 71
+226 197 55 71
+231 55 0 71
+6 66 57 72
+19 39 0 72
+20 113 12 72
+31 24 59 72
+46 44 46 72
+47 51 0 72
+104 116 0 72
+116 66 0 72
+123 74 32 72
+133 200 10 72
+133 201 0 72
+142 155 0 72
+142 161 9 72
+158 162 51 72
+182 198 0 72
+183 241 14 72
+203 7 0 72
+214 18 0 72
+216 228 0 72
+232 244 42 72
+233 25 0 72
+239 20 0 72
+243 3 70 72
+245 49 26 72
+246 192 33 72
+246 202 0 72
+254 221 26 72
+39 165 18 73
+41 32 0 73
+42 121 0 73
+47 101 18 73
+53 236 0 73
+63 60 46 73
+64 27 46 73
+68 159 0 73
+69 88 48 73
+101 161 0 73
+107 161 47 73
+111 98 0 73
+116 143 0 73
+118 188 16 73
+140 220 0 73
+164 192 0 73
+181 129 0 73
+199 10 0 73
+214 194 0 73
+235 32 0 73
+250 62 46 73
+31 8 7 74
+36 104 43 74
+53 230 0 74
+61 121 0 74
+71 197 19 74
+76 184 65 74
+86 167 38 74
+120 242 22 74
+122 78 0 74
+122 185 0 74
+125 51 28 74
+127 129 0 74
+131 159 0 74
+133 152 41 74
+149 211 50 74
+157 161 0 74
+173 187 0 74
+209 215 24 74
+209 31 54 74
+211 34 56 74
+245 244 0 74
+247 7 0 74
+255 59 0 74
+13 65 58 75
+58 48 0 75
+108 120 55 75
+125 60 0 75
+138 149 70 75
+148 214 18 75
+148 241 14 75
+151 211 0 75
+199 196 66 75
+223 26 0 75
+227 19 0 75
+236 46 51 75
+239 63 0 75
+240 57 0 75
+243 33 50 75
+29 95 23 76
+32 59 27 76
+33 38 10 76
+37 85 0 76
+45 93 0 76
+83 153 35 76
+101 163 14 76
+129 197 0 76
+168 131 63 76
+168 228 0 76
+176 61 34 76
+178 192 9 76
+178 134 0 76
+228 38 21 76
+251 54 0 76
+253 129 57 76
+15 19 0 77
+26 110 20 77
+28 96 0 77
+41 252 29 77
+56 72 65 77
+60 123 0 77
+63 121 12 77
+66 134 0 77
+68 157 0 77
+89 107 0 77
+104 184 0 77
+108 71 63 77
+111 163 0 77
+113 101 0 77
+119 186 0 77
+137 201 0 77
+140 159 74 77
+149 215 73 77
+174 178 0 77
+183 201 68 77
+186 234 0 77
+189 143 0 77
+198 196 61 77
+198 209 13 77
+205 64 59 77
+224 110 51 77
+228 195 60 77
+239 26 0 77
+248 2 0 77
+248 3 54 77
+18 28 48 78
+23 92 0 78
+32 112 0 78
+48 102 21 78
+62 4 0 78
+70 80 66 78
+76 198 10 78
+93 87 38 78
+103 123 58 78
+120 149 15 78
+125 65 20 78
+132 200 43 78
+137 249 57 78
+149 193 25 78
+178 143 0 78
+180 248 0 78
+183 180 7 78
+187 241 68 78
+193 13 71 78
+205 157 0 78
+243 194 62 78
+250 59 33 78
+6 56 0 79
+64 31 32 79
+69 145 49 79
+80 188 63 79
+96 112 0 79
+110 189 0 79
+113 111 0 79
+124 91 34 79
+130 82 0 79
+132 134 40 79
+141 67 7 79
+169 220 42 79
+175 33 26 79
+182 149 34 79
+185 253 0 79
+190 179 0 79
+234 46 0 79
+236 106 35 79
+240 34 22 79
+243 200 16 79
+14 27 0 80
+14 95 27 80
+35 111 0 80
+35 127 43 80
+40 100 0 80
+53 44 0 80
+55 5 0 80
+56 4 34 80
+60 128 25 80
+61 47 62 80
+93 145 46 80
+119 72 8 80
+143 14 50 80
+174 241 0 80
+176 46 34 80
+193 248 0 80
+223 200 41 80
+3 98 72 81
+5 67 62 81
+21 34 63 81
+21 31 56 81
+73 188 22 81
+87 217 52 81
+127 141 0 81
+146 115 51 81
+155 9 54 81
+158 193 48 81
+163 191 54 81
+178 66 0 81
+193 160 64 81
+211 221 69 81
+234 57 0 81
+246 229 63 81
+14 224 0 82
+14 63 64 82
+39 150 58 82
+43 97 54 82
+67 124 69 82
+72 197 12 82
+79 120 26 82
+84 159 0 82
+86 66 0 82
+100 171 74 82
+145 144 56 82
+150 198 0 82
+151 201 0 82
+153 172 9 82
+199 25 0 82
+205 135 19 82
+205 160 28 82
+227 39 0 82
+228 248 0 82
+233 45 51 82
+9 26 68 83
+15 80 43 83
+20 104 73 83
+22 55 11 83
+32 127 75 83
+33 99 68 83
+35 165 44 83
+40 108 0 83
+45 35 9 83
+47 99 0 83
+74 144 52 83
+82 163 17 83
+98 164 43 83
+120 135 0 83
+156 185 11 83
+177 133 76 83
+184 149 36 83
+184 244 0 83
+186 177 31 83
+198 7 55 83
+205 10 0 83
+208 60 76 83
+215 39 0 83
+238 42 0 83
+15 69 20 84
+16 116 51 84
+20 39 10 84
+24 55 36 84
+40 162 35 84
+62 56 8 84
+62 5 10 84
+68 97 59 84
+79 83 0 84
+83 131 0 84
+136 199 0 84
+177 143 0 84
+185 251 37 84
+207 31 0 84
+235 38 76 84
+238 33 0 84
+246 53 0 84
+2 16 9 85
+5 117 0 85
+8 117 42 85
+10 80 60 85
+18 25 17 85
+21 39 0 85
+28 150 59 85
+38 5 64 85
+62 2 0 85
+69 129 0 85
+81 101 0 85
+116 181 0 85
+136 2 49 85
+158 206 0 85
+159 136 50 85
+163 180 27 85
+183 251 51 85
+185 192 0 85
+222 18 73 85
+2 114 21 86
+6 3 0 86
+6 118 32 86
+37 97 0 86
+47 37 12 86
+47 127 0 86
+49 37 0 86
+80 87 30 86
+82 105 57 86
+87 104 78 86
+92 104 72 86
+114 142 79 86
+115 184 0 86
+117 70 37 86
+120 188 0 86
+137 170 69 86
+138 198 0 86
+148 168 0 86
+158 164 77 86
+176 236 0 86
+178 197 0 86
+181 225 34 86
+231 86 85 86
+245 133 62 86
+251 60 0 86
+253 242 41 86
+18 38 0 87
+40 181 40 87
+48 128 51 87
+51 181 21 87
+56 116 35 87
+64 4 42 87
+66 158 59 87
+78 190 0 87
+81 173 70 87
+86 146 0 87
+97 112 0 87
+125 115 65 87
+136 212 55 87
+137 197 0 87
+143 136 59 87
+143 241 0 87
+177 142 76 87
+202 237 70 87
+217 172 19 87
+15 67 0 88
+19 95 0 88
+20 40 0 88
+32 35 82 88
+51 8 59 88
+75 72 59 88
+110 96 0 88
+117 72 9 88
+118 85 31 88
+126 56 57 88
+137 205 0 88
+154 224 86 88
+157 206 0 88
+207 65 64 88
+213 25 0 88
+226 240 72 88
+249 54 0 88
+6 11 0 89
+21 9 0 89
+42 228 71 89
+66 76 10 89
+69 131 60 89
+74 154 54 89
+101 168 68 89
+115 163 0 89
+120 168 24 89
+146 181 50 89
+180 240 64 89
+194 4 63 89
+256 10 0 89
+15 95 0 90
+19 146 40 90
+49 38 23 90
+53 197 46 90
+97 165 0 90
+103 115 32 90
+103 230 73 90
+110 177 0 90
+126 100 0 90
+133 248 9 90
+141 253 0 90
+142 133 67 90
+143 256 0 90
+150 119 71 90
+166 164 53 90
+167 246 57 90
+180 50 32 90
+186 95 78 90
+190 255 48 90
+203 59 45 90
+216 39 0 90
+222 31 9 90
+234 26 68 90
+242 225 38 90
+256 126 17 90
+5 12 0 91
+11 141 48 91
+15 8 12 91
+44 103 0 91
+46 17 44 91
+78 69 15 91
+91 171 76 91
+110 81 51 91
+122 141 0 91
+136 248 0 91
+140 9 22 91
+144 173 55 91
+155 230 77 91
+160 238 78 91
+161 240 80 91
+178 193 0 91
+190 242 33 91
+207 29 0 91
+227 220 56 91
+11 138 39 92
+36 3 50 92
+43 169 15 92
+52 118 67 92
+78 130 0 92
+81 161 0 92
+82 115 57 92
+83 162 59 92
+86 119 70 92
+99 169 86 92
+128 95 25 92
+129 157 80 92
+139 254 0 92
+148 33 19 92
+166 187 0 92
+196 47 86 92
+212 32 80 92
+233 246 14 92
+239 53 86 92
+245 180 0 92
+248 6 0 92
+253 225 0 92
+50 211 67 93
+62 114 0 93
+89 77 22 93
+93 105 0 93
+123 177 48 93
+125 177 0 93
+130 84 0 93
+156 168 0 93
+163 215 88 93
+171 239 59 93
+174 225 0 93
+208 1 0 93
+239 31 32 93
+247 22 63 93
+31 35 46 94
+35 55 0 94
+41 29 74 94
+46 50 81 94
+63 100 0 94
+71 139 0 94
+88 181 65 94
+93 107 0 94
+96 100 76 94
+128 143 0 94
+133 213 32 94
+143 195 0 94
+147 206 0 94
+147 239 76 94
+153 213 24 94
+174 192 0 94
+178 142 0 94
+180 225 13 94
+194 201 9 94
+200 231 67 94
+205 242 78 94
+207 243 77 94
+216 236 76 94
+222 42 53 94
+223 21 37 94
+226 36 68 94
+239 232 86 94
+244 65 89 94
+250 198 48 94
+254 223 25 94
+10 75 77 95
+24 150 66 95
+35 146 49 95
+41 61 0 95
+53 229 0 95
+64 80 44 95
+66 97 71 95
+77 94 57 95
+111 147 64 95
+133 195 31 95
+170 238 35 95
+174 180 0 95
+175 180 8 95
+177 170 29 95
+239 37 11 95
+253 143 0 95
+14 219 0 96
+26 222 0 96
+77 144 8 96
+79 69 25 96
+85 90 59 96
+117 168 80 96
+154 202 62 96
+155 234 83 96
+157 175 93 96
+162 147 11 96
+174 98 0 96
+181 232 90 96
+217 41 0 96
+245 195 0 96
+245 201 0 96
+250 54 0 96
+4 114 0 97
+13 4 44 97
+14 200 50 97
+16 141 61 97
+17 36 15 97
+32 36 75 97
+43 154 32 97
+62 79 84 97
+63 3 53 97
+88 90 16 97
+115 183 0 97
+149 197 0 97
+154 189 64 97
+160 147 11 97
+196 19 0 97
+202 209 80 97
+202 14 0 97
+212 215 64 97
+244 126 83 97
+244 4 67 97
+245 139 67 97
+246 38 52 97
+15 56 12 98
+16 142 69 98
+24 146 9 98
+27 138 44 98
+40 166 58 98
+43 74 63 98
+43 87 35 98
+53 225 37 98
+84 157 0 98
+89 157 22 98
+96 146 87 98
+99 127 32 98
+103 112 13 98
+107 100 59 98
+126 95 40 98
+136 21 44 98
+136 6 86 98
+144 209 70 98
+152 181 72 98
+153 215 79 98
+192 208 25 98
+193 133 0 98
+199 51 87 98
+222 46 0 98
+226 46 78 98
+240 244 0 98
+248 194 0 98
+3 178 73 99
+10 4 88 99
+18 110 69 99
+22 88 85 99
+24 165 35 99
+35 52 8 99
+38 104 78 99
+42 22 90 99
+45 113 26 99
+70 150 0 99
+70 151 67 99
+71 151 0 99
+81 147 7 99
+118 74 0 99
+125 15 0 99
+129 149 0 99
+131 198 0 99
+136 229 63 99
+172 240 86 99
+176 226 92 99
+179 53 8 99
+203 29 0 99
+207 211 73 99
+208 4 70 99
+217 210 40 99
+221 32 77 99
+230 224 82 99
+240 207 59 99
+254 14 0 99
+16 68 0 100
+17 23 30 100
+17 37 0 100
+36 94 90 100
+51 79 84 100
+52 54 11 100
+58 75 74 100
+111 132 73 100
+134 165 71 100
+162 210 0 100
+165 231 88 100
+170 236 61 100
+174 163 0 100
+179 34 80 100
+179 255 0 100
+181 150 65 100
+199 19 86 100
+202 193 60 100
+219 74 89 100
+3 77 83 101
+13 128 92 101
+19 39 93 101
+31 83 80 101
+40 3 56 101
+55 182 95 101
+78 8 13 101
+78 109 91 101
+82 166 70 101
+93 66 87 101
+96 161 0 101
+111 162 0 101
+134 200 81 101
+147 226 83 101
+156 231 0 101
+162 173 9 101
+192 242 45 101
+206 4 66 101
+210 150 0 101
+213 230 32 101
+219 47 77 101
+226 246 0 101
+254 202 0 101
+11 137 32 102
+13 65 92 102
+16 3 11 102
+21 101 99 102
+31 142 91 102
+31 82 0 102
+62 116 62 102
+64 3 28 102
+65 133 96 102
+79 94 47 102
+95 144 0 102
+96 132 67 102
+116 80 0 102
+118 89 29 102
+120 75 82 102
+138 218 81 102
+143 255 0 102
+153 165 0 102
+162 150 41 102
+169 236 68 102
+175 251 50 102
+177 130 69 102
+178 238 90 102
+190 188 53 102
+192 240 0 102
+220 57 68 102
+227 247 0 102
+241 52 52 102
+250 197 46 102
+3 130 82 103
+12 124 0 103
+13 7 88 103
+17 228 83 103
+18 39 0 103
+20 86 24 103
+22 102 0 103
+34 55 0 103
+62 78 0 103
+65 98 69 103
+67 143 78 103
+68 111 52 103
+106 75 66 103
+128 188 0 103
+146 134 0 103
+147 164 51 103
+148 18 44 103
+154 235 62 103
+155 175 89 103
+191 243 39 103
+251 228 62 103
+254 209 44 103
+1 79 84 104
+29 81 84 104
+50 65 86 104
+50 14 0 104
+53 104 98 104
+58 74 0 104
+69 134 0 104
+78 82 78 104
+82 147 9 104
+99 173 39 104
+108 137 58 104
+126 186 0 104
+140 200 76 104
+143 242 0 104
+167 227 0 104
+179 252 70 104
+180 49 55 104
+213 37 0 104
+214 234 65 104
+220 48 73 104
+225 230 94 104
+253 224 86 104
+7 27 65 105
+31 43 54 105
+38 7 58 105
+41 90 68 105
+52 8 0 105
+54 122 84 105
+64 31 95 105
+69 149 0 105
+70 90 78 105
+93 26 0 105
+108 75 13 105
+119 245 73 105
+121 70 50 105
+126 178 50 105
+140 252 68 105
+153 204 89 105
+154 144 0 105
+156 236 0 105
+158 82 37 105
+178 243 40 105
+180 228 0 105
+180 197 0 105
+193 222 85 105
+206 64 90 105
+223 213 38 105
+224 44 23 105
+228 207 58 105
+256 1 0 105
+3 95 91 106
+12 121 18 106
+44 11 90 106
+59 123 0 106
+67 76 56 106
+72 138 43 106
+84 160 0 106
+105 165 0 106
+106 104 55 106
+125 60 102 106
+136 165 67 106
+141 160 11 106
+144 196 95 106
+154 151 0 106
+156 213 0 106
+158 99 0 106
+179 231 94 106
+189 240 72 106
+190 95 62 106
+192 251 0 106
+217 21 0 106
+254 208 0 106
+5 216 94 107
+14 33 87 107
+23 81 35 107
+30 78 77 107
+30 81 81 107
+31 84 0 107
+35 162 37 107
+49 199 82 107
+61 241 61 107
+66 146 0 107
+77 129 0 107
+92 185 20 107
+135 5 84 107
+138 221 90 107
+163 34 83 107
+181 229 0 107
+195 215 83 107
+203 54 0 107
+214 183 64 107
+216 47 96 107
+237 209 60 107
+240 205 62 107
+244 208 0 107
+246 195 67 107
+252 195 70 107
+11 65 76 108
+12 138 85 108
+20 146 13 108
+26 110 101 108
+32 158 78 108
+34 242 85 108
+99 174 0 108
+100 152 99 108
+109 157 0 108
+129 255 103 108
+170 246 47 108
+180 136 101 108
+180 196 93 108
+181 248 81 108
+187 236 0 108
+188 58 102 108
+198 231 37 108
+207 5 41 108
+219 44 64 108
+223 78 68 108
+227 51 101 108
+230 240 89 108
+249 191 56 108
+249 192 0 108
+6 54 0 109
+12 78 88 109
+17 110 49 109
+19 67 39 109
+53 102 92 109
+63 16 17 109
+96 144 0 109
+109 169 0 109
+115 182 0 109
+120 85 90 109
+129 207 98 109
+131 255 82 109
+131 206 0 109
+132 175 53 109
+136 196 32 109
+150 215 93 109
+168 131 87 109
+176 228 0 109
+203 14 0 109
+224 41 0 109
+228 256 0 109
+238 229 66 109
+247 56 0 109
+11 112 74 110
+18 86 0 110
+34 255 0 110
+45 90 0 110
+59 124 0 110
+97 107 14 110
+111 164 0 110
+117 183 7 110
+137 189 59 110
+193 221 0 110
+200 203 98 110
+205 49 93 110
+216 4 57 110
+223 1 0 110
+241 206 85 110
+242 206 0 110
+244 51 62 110
+249 201 0 110
+255 14 42 110
+256 14 0 110
+3 115 0 111
+21 47 94 111
+30 25 101 111
+31 91 91 111
+64 93 40 111
+70 182 23 111
+74 85 73 111
+78 97 72 111
+91 149 92 111
+92 165 0 111
+108 186 0 111
+125 79 75 111
+128 144 0 111
+136 163 36 111
+145 134 19 111
+145 175 81 111
+146 214 0 111
+166 246 0 111
+167 225 54 111
+181 243 17 111
+193 212 46 111
+219 93 9 111
+255 208 69 111
+256 196 92 111
+15 68 0 112
+33 84 76 112
+76 130 12 112
+82 152 43 112
+86 55 26 112
+99 151 82 112
+105 123 0 112
+111 155 92 112
+124 72 0 112
+137 128 0 112
+151 172 66 112
+158 218 83 112
+164 212 0 112
+194 207 0 112
+194 14 0 112
+198 229 95 112
+202 196 84 112
+218 148 66 112
+220 39 51 112
+223 216 42 112
+225 36 25 112
+244 63 0 112
+245 235 109 112
+248 118 99 112
+1 16 0 113
+5 209 97 113
+15 12 100 113
+20 100 0 113
+28 59 53 113
+41 53 0 113
+76 103 89 113
+76 154 0 113
+86 151 95 113
+88 214 19 113
+103 171 0 113
+105 127 96 113
+107 124 94 113
+119 246 9 113
+132 207 84 113
+144 222 0 113
+155 148 97 113
+164 222 46 113
+167 155 0 113
+168 236 38 113
+170 175 0 113
+174 240 58 113
+181 161 28 113
+233 175 47 113
+237 230 60 113
+238 131 93 113
+241 36 13 113
+244 56 0 113
+4 96 99 114
+22 87 81 114
+24 149 88 114
+28 109 0 114
+29 95 106 114
+39 169 98 114
+42 37 97 114
+44 46 91 114
+53 60 0 114
+55 123 0 114
+63 190 98 114
+77 81 74 114
+87 102 13 114
+111 222 87 114
+126 98 68 114
+176 256 0 114
+180 206 56 114
+186 116 18 114
+194 6 0 114
+233 232 0 114
+249 135 0 114
+6 37 78 115
+11 123 0 115
+39 60 91 115
+55 98 0 115
+71 183 0 115
+124 169 98 115
+145 160 0 115
+174 162 0 115
+178 124 73 115
+188 198 107 115
+189 241 90 115
+209 1 0 115
+210 238 31 115
+214 225 18 115
+247 240 85 115
+251 125 100 115
+17 34 17 116
+19 25 23 116
+31 79 43 116
+35 109 69 116
+38 98 0 116
+48 96 112 116
+55 114 0 116
+62 242 0 116
+68 88 0 116
+85 152 104 116
+86 38 0 116
+86 117 91 116
+92 152 0 116
+106 46 100 116
+112 100 0 116
+138 246 106 116
+148 240 48 116
+158 210 67 116
+180 144 88 116
+184 250 41 116
+198 2 0 116
+215 89 87 116
+217 236 47 116
+221 27 98 116
+229 241 0 116
+8 68 0 117
+11 186 14 117
+19 41 100 117
+45 34 26 117
+48 108 0 117
+66 47 77 117
+71 131 0 117
+100 238 66 117
+141 253 100 117
+146 87 0 117
+165 156 0 117
+167 161 89 117
+171 236 0 117
+173 223 79 117
+208 193 0 117
+208 78 76 117
+210 230 0 117
+224 28 0 117
+224 110 104 117
+254 46 82 117
+1 31 0 118
+3 116 0 118
+5 215 81 118
+7 137 92 118
+9 75 83 118
+31 68 0 118
+77 192 87 118
+78 27 0 118
+78 90 88 118
+126 66 75 118
+154 172 0 118
+165 213 66 118
+172 252 50 118
+179 227 0 118
+180 207 58 118
+185 253 110 118
+187 241 110 118
+204 235 63 118
+215 2 0 118
+231 53 0 118
+235 28 74 118
+238 168 18 118
+245 234 59 118
+1 67 104 119
+4 32 60 119
+15 81 0 119
+17 22 12 119
+34 230 93 119
+45 28 0 119
+51 79 105 119
+57 12 41 119
+73 25 0 119
+74 105 89 119
+78 84 0 119
+95 100 100 119
+104 124 0 119
+136 156 92 119
+137 77 0 119
+148 228 0 119
+158 194 110 119
+162 148 0 119
+169 182 100 119
+173 212 65 119
+202 16 113 119
+12 96 104 120
+17 95 104 120
+47 83 88 120
+49 2 53 120
+54 70 86 120
+76 217 10 120
+84 103 98 120
+101 167 55 120
+110 114 101 120
+116 130 0 120
+125 75 0 120
+136 204 102 120
+144 218 0 120
+145 213 67 120
+177 242 0 120
+179 195 0 120
+187 230 71 120
+200 20 115 120
+207 50 0 120
+214 247 56 120
+4 142 94 121
+9 93 76 121
+45 106 0 121
+50 15 0 121
+103 214 71 121
+113 69 113 121
+120 129 0 121
+163 183 0 121
+164 129 100 121
+180 195 0 121
+181 249 83 121
+193 256 56 121
+245 169 87 121
+252 53 0 121
+6 69 0 122
+13 75 81 122
+15 66 0 122
+15 29 0 122
+52 190 104 122
+69 121 0 122
+82 162 0 122
+97 158 0 122
+97 162 0 122
+99 105 106 122
+134 204 95 122
+138 203 106 122
+154 100 101 122
+160 212 0 122
+166 151 64 122
+177 255 78 122
+183 231 96 122
+191 251 0 122
+215 19 0 122
+244 223 46 122
+245 220 68 122
+15 5 9 123
+22 105 0 123
+38 105 0 123
+48 126 0 123
+78 29 0 123
+78 32 0 123
+97 90 83 123
+119 167 32 123
+134 167 90 123
+141 131 33 123
+145 151 14 123
+146 212 103 123
+147 223 0 123
+150 185 67 123
+156 229 0 123
+181 130 116 123
+184 230 78 123
+195 66 106 123
+206 1 0 123
+207 78 12 123
+224 228 0 123
+240 43 108 123
+24 84 0 124
+26 55 82 124
+43 127 51 124
+47 99 106 124
+47 100 0 124
+74 111 118 124
+88 156 0 124
+89 149 92 124
+100 225 62 124
+127 186 0 124
+134 215 75 124
+141 250 74 124
+158 163 0 124
+160 238 104 124
+168 246 0 124
+171 219 111 124
+174 146 55 124
+177 184 99 124
+200 220 120 124
+203 215 100 124
+205 16 115 124
+253 206 8 124
+31 66 0 125
+44 56 99 125
+50 21 99 125
+70 92 0 125
+72 103 100 125
+115 131 0 125
+154 143 99 125
+177 225 0 125
+193 15 81 125
+210 34 0 125
+233 45 100 125
+234 246 0 125
+244 64 0 125
+246 253 34 125
+248 41 110 125
+2 83 108 126
+18 83 81 126
+20 65 113 126
+23 103 0 126
+34 44 122 126
+38 61 109 126
+46 122 40 126
+47 24 34 126
+51 15 0 126
+68 192 104 126
+81 100 42 126
+91 88 9 126
+95 99 110 126
+99 108 108 126
+103 183 0 126
+106 11 6 126
+109 176 92 126
+113 3 0 126
+122 65 38 126
+124 246 55 126
+140 152 0 126
+142 222 105 126
+158 149 45 126
+158 100 0 126
+166 184 0 126
+185 178 78 126
+194 229 101 126
+194 18 0 126
+199 40 75 126
+205 10 100 126
+228 48 74 126
+238 232 113 126
+241 196 90 126
+252 56 0 126
+7 87 83 127
+25 87 9 127
+43 169 114 127
+52 120 63 127
+85 151 40 127
+95 149 99 127
+99 119 40 127
+123 246 56 127
+125 11 0 127
+126 53 99 127
+181 230 0 127
+189 138 111 127
+193 253 0 127
+196 216 0 127
+201 16 110 127
+204 89 34 127
+214 37 0 127
+220 222 88 127
+228 113 57 127
+231 101 111 127
+254 251 0 127
+1 19 0 128
+16 128 0 128
+27 75 0 128
+29 96 87 128
+38 121 0 128
+68 82 0 128
+101 149 84 128
+128 67 100 128
+133 132 0 128
+135 195 52 128
+135 9 27 128
+140 233 105 128
+152 175 85 128
+179 49 17 128
+184 232 0 128
+223 240 112 128
+224 16 120 128
+227 248 123 128
+249 179 10 128
+4 35 62 129
+5 18 79 129
+19 34 110 129
+19 149 78 129
+20 22 10 129
+26 125 85 129
+29 97 94 129
+31 3 0 129
+32 108 120 129
+50 37 93 129
+51 7 60 129
+51 128 116 129
+74 140 114 129
+84 107 106 129
+115 129 0 129
+132 161 18 129
+139 200 89 129
+167 164 60 129
+193 62 0 129
+209 4 66 129
+209 20 108 129
+211 66 90 129
+245 41 22 129
+249 255 119 129
+254 184 108 129
+7 22 109 130
+45 64 116 130
+46 127 65 130
+78 47 56 130
+95 72 109 130
+137 192 0 130
+144 223 0 130
+147 175 0 130
+150 220 96 130
+177 253 0 130
+192 157 96 130
+193 5 0 130
+196 78 72 130
+216 239 48 130
+4 33 12 131
+30 216 34 131
+30 61 68 131
+31 65 0 131
+32 81 0 131
+40 108 100 131
+42 54 103 131
+57 125 0 131
+62 206 0 131
+81 132 10 131
+143 195 113 131
+159 14 7 131
+172 232 54 131
+187 129 103 131
+194 163 90 131
+198 8 83 131
+210 37 0 131
+215 232 12 131
+222 14 0 131
+233 222 53 131
+256 48 0 131
+4 29 0 132
+13 27 0 132
+14 32 0 132
+23 20 24 132
+40 5 56 132
+41 117 111 132
+42 121 102 132
+70 119 106 132
+74 158 110 132
+82 161 0 132
+84 176 84 132
+96 140 107 132
+98 164 106 132
+99 178 58 132
+104 226 107 132
+106 111 94 132
+125 102 8 132
+135 50 73 132
+161 227 90 132
+177 141 0 132
+185 127 103 132
+194 222 84 132
+194 225 101 132
+200 56 0 132
+221 240 48 132
+238 242 0 132
+245 135 0 132
+250 204 0 132
+48 121 0 133
+57 102 0 133
+66 129 0 133
+79 83 117 133
+93 87 109 133
+134 201 0 133
+143 173 80 133
+148 238 0 133
+161 212 9 133
+171 251 0 133
+189 169 0 133
+217 222 105 133
+227 45 19 133
+246 217 112 133
+6 86 41 134
+7 67 64 134
+21 1 0 134
+27 157 68 134
+32 80 0 134
+32 84 62 134
+43 64 123 134
+50 198 93 134
+54 12 0 134
+72 84 116 134
+74 154 91 134
+80 84 122 134
+101 92 0 134
+103 151 0 134
+105 94 126 134
+122 105 95 134
+151 168 61 134
+160 30 49 134
+175 221 0 134
+185 138 116 134
+189 255 98 134
+196 8 0 134
+198 12 100 134
+242 209 71 134
+249 54 109 134
+4 23 21 135
+6 218 109 135
+25 48 83 135
+28 55 38 135
+61 109 68 135
+84 132 0 135
+85 136 102 135
+92 94 108 135
+93 153 104 135
+95 174 91 135
+114 182 0 135
+118 98 0 135
+126 129 0 135
+133 145 0 135
+138 205 0 135
+175 223 25 135
+177 193 114 135
+199 211 0 135
+201 220 112 135
+209 197 0 135
+223 227 0 135
+225 255 0 135
+256 122 38 135
+9 29 0 136
+24 72 84 136
+27 153 100 136
+32 112 108 136
+33 22 8 136
+39 87 0 136
+49 37 113 136
+52 66 0 136
+56 121 0 136
+57 117 89 136
+72 91 34 136
+73 85 0 136
+103 163 0 136
+106 54 58 136
+115 146 122 136
+150 170 74 136
+154 140 0 136
+160 26 124 136
+171 239 114 136
+193 17 83 136
+198 10 86 136
+202 222 0 136
+211 31 0 136
+212 48 132 136
+219 89 56 136
+226 131 50 136
+232 244 117 136
+240 64 113 136
+24 117 99 137
+33 81 0 137
+60 25 117 137
+83 76 11 137
+124 190 108 137
+127 141 103 137
+135 247 95 137
+140 220 104 137
+147 168 14 137
+148 17 31 137
+148 216 0 137
+160 29 70 137
+182 230 110 137
+194 223 0 137
+211 47 70 137
+216 20 0 137
+217 9 0 137
+232 252 0 137
+233 250 13 137
+243 57 103 137
+21 14 70 138
+54 11 0 138
+67 141 82 138
+77 189 0 138
+89 82 79 138
+94 146 55 138
+97 145 0 138
+139 207 98 138
+141 130 13 138
+150 96 102 138
+186 129 9 138
+196 197 0 138
+219 239 36 138
+224 251 10 138
+226 240 124 138
+236 34 124 138
+247 39 0 138
+2 47 75 139
+37 104 78 139
+38 36 11 139
+45 106 128 139
+50 55 67 139
+55 12 105 139
+62 208 0 139
+71 188 0 139
+91 173 113 139
+105 157 84 139
+116 187 115 139
+123 254 119 139
+142 72 67 139
+159 211 0 139
+176 162 9 139
+196 47 123 139
+204 8 102 139
+208 60 107 139
+221 16 93 139
+245 250 16 139
+246 232 0 139
+247 5 127 139
+24 36 34 140
+26 86 0 140
+49 196 72 140
+54 121 0 140
+76 88 0 140
+81 147 114 140
+87 166 54 140
+92 125 128 140
+148 168 100 140
+157 129 118 140
+159 203 23 140
+160 45 100 140
+162 225 0 140
+165 151 0 140
+206 2 0 140
+243 252 10 140
+251 239 0 140
+4 24 0 141
+7 133 100 141
+7 75 0 141
+8 27 126 141
+27 95 0 141
+43 174 117 141
+46 58 101 141
+50 117 90 141
+77 127 0 141
+80 173 82 141
+81 129 73 141
+88 136 0 141
+95 92 109 141
+125 190 0 141
+185 192 106 141
+185 144 128 141
+193 248 122 141
+193 14 0 141
+198 23 79 141
+199 25 120 141
+202 12 128 141
+215 224 116 141
+234 252 0 141
+10 48 123 142
+13 27 140 142
+26 222 109 142
+30 34 0 142
+35 165 127 142
+78 130 106 142
+91 144 0 142
+102 183 26 142
+113 78 121 142
+116 254 107 142
+173 210 71 142
+195 69 111 142
+217 200 0 142
+6 221 108 143
+9 31 100 143
+39 125 87 143
+72 99 104 143
+72 132 0 143
+76 139 0 143
+82 117 104 143
+84 125 133 143
+87 108 110 143
+89 101 81 143
+91 103 0 143
+134 188 0 143
+142 149 34 143
+159 207 0 143
+162 243 84 143
+203 25 87 143
+208 47 131 143
+224 14 102 143
+232 117 127 143
+2 33 69 144
+6 16 112 144
+28 48 0 144
+28 108 0 144
+48 96 134 144
+52 11 99 144
+63 189 92 144
+90 102 0 144
+101 121 51 144
+102 133 132 144
+109 115 112 144
+111 169 86 144
+138 187 88 144
+160 172 125 144
+165 120 129 144
+167 160 120 144
+174 235 117 144
+175 192 135 144
+209 229 0 144
+235 255 0 144
+240 36 0 144
+3 79 0 145
+6 29 112 145
+20 37 0 145
+25 91 66 145
+26 89 0 145
+27 111 100 145
+32 174 95 145
+35 83 57 145
+84 164 49 145
+91 217 115 145
+97 173 0 145
+104 152 78 145
+133 193 128 145
+134 246 0 145
+151 160 127 145
+161 240 126 145
+180 183 132 145
+192 61 135 145
+200 60 84 145
+207 10 0 145
+209 21 0 145
+216 245 106 145
+231 33 26 145
+247 34 0 145
+250 64 106 145
+10 86 130 146
+22 5 112 146
+37 99 112 146
+55 166 54 146
+72 152 0 146
+73 153 86 146
+80 132 73 146
+87 198 144 146
+91 171 108 146
+105 111 74 146
+125 115 109 146
+151 22 127 146
+153 204 135 146
+176 226 113 146
+184 132 112 146
+184 5 117 146
+196 21 0 146
+200 14 120 146
+206 211 0 146
+207 59 110 146
+232 55 0 146
+240 244 127 146
+244 211 63 146
+253 64 99 146
+43 122 17 147
+45 256 86 147
+109 122 16 147
+109 116 97 147
+111 155 137 147
+132 163 41 147
+134 144 9 147
+140 6 125 147
+148 30 18 147
+157 139 0 147
+163 172 69 147
+174 218 121 147
+178 137 108 147
+178 226 37 147
+204 235 130 147
+231 243 0 147
+11 79 0 148
+16 141 134 148
+19 87 0 148
+30 238 0 148
+37 56 74 148
+49 13 56 148
+75 139 0 148
+76 188 0 148
+76 144 0 148
+86 96 107 148
+97 116 52 148
+107 237 15 148
+113 67 0 148
+120 183 0 148
+126 124 131 148
+129 149 113 148
+131 196 0 148
+133 85 29 148
+150 160 95 148
+158 202 145 148
+159 29 11 148
+180 136 137 148
+182 130 0 148
+187 207 101 148
+196 213 0 148
+198 229 117 148
+214 245 10 148
+230 252 0 148
+234 57 119 148
+249 232 0 148
+249 45 124 148
+8 68 139 149
+13 4 114 149
+21 34 142 149
+26 12 0 149
+27 73 0 149
+34 55 117 149
+36 128 144 149
+50 4 139 149
+62 56 140 149
+79 66 0 149
+80 156 100 149
+82 113 135 149
+83 194 123 149
+85 153 30 149
+89 19 36 149
+89 169 131 149
+118 166 75 149
+121 183 80 149
+149 209 0 149
+150 155 0 149
+155 235 0 149
+160 204 70 149
+174 240 132 149
+184 147 120 149
+192 131 48 149
+198 167 132 149
+212 4 51 149
+4 47 10 150
+6 26 50 150
+38 7 132 150
+45 57 122 150
+51 103 139 150
+74 29 0 150
+76 156 0 150
+82 102 57 150
+87 165 0 150
+96 143 73 150
+122 187 123 150
+125 124 78 150
+133 75 102 150
+138 190 86 150
+150 135 130 150
+151 219 124 150
+157 222 0 150
+159 194 0 150
+164 184 0 150
+181 170 91 150
+196 52 0 150
+239 32 0 150
+244 17 126 150
+255 110 134 150
+43 111 26 151
+101 118 104 151
+101 169 44 151
+130 198 126 151
+142 221 141 151
+147 17 148 151
+163 18 144 151
+166 234 0 151
+176 186 144 151
+178 132 118 151
+213 17 0 151
+213 23 37 151
+223 235 105 151
+235 32 133 151
+236 32 124 151
+242 252 81 151
+249 191 141 151
+249 238 126 151
+254 130 65 151
+7 133 145 152
+39 185 147 152
+57 5 118 152
+58 75 141 152
+65 141 0 152
+65 180 104 152
+68 194 108 152
+92 234 141 152
+95 161 0 152
+108 127 10 152
+110 122 0 152
+134 215 142 152
+135 156 117 152
+142 194 78 152
+164 183 24 152
+165 233 78 152
+174 115 0 152
+179 225 0 152
+183 140 139 152
+187 202 110 152
+188 197 0 152
+219 48 68 152
+227 47 0 152
+254 159 9 152
+6 18 0 153
+42 122 0 153
+49 14 48 153
+58 52 131 153
+79 91 124 153
+104 183 0 153
+127 234 98 153
+159 204 108 153
+165 173 135 153
+179 49 149 153
+188 190 111 153
+200 56 144 153
+219 93 132 153
+242 3 115 153
+245 251 44 153
+254 226 89 153
+1 211 0 154
+1 66 0 154
+6 41 58 154
+14 47 66 154
+14 79 81 154
+23 32 143 154
+55 5 120 154
+70 136 146 154
+77 27 0 154
+96 161 131 154
+97 174 0 154
+100 120 122 154
+118 112 121 154
+134 169 139 154
+149 161 0 154
+154 235 119 154
+158 225 147 154
+199 21 0 154
+212 94 133 154
+220 32 134 154
+233 245 0 154
+233 253 16 154
+236 24 123 154
+240 207 120 154
+14 18 66 155
+19 145 35 155
+20 145 18 155
+46 43 0 155
+50 62 0 155
+50 65 147 155
+52 67 0 155
+61 9 111 155
+61 32 120 155
+68 85 0 155
+82 115 105 155
+90 170 0 155
+94 161 0 155
+104 67 106 155
+122 188 127 155
+131 209 0 155
+172 226 47 155
+194 212 0 155
+197 53 115 155
+202 29 0 155
+205 64 84 155
+220 39 130 155
+252 200 0 155
+5 25 139 156
+20 68 0 156
+30 4 0 156
+49 5 0 156
+51 165 131 156
+70 75 0 156
+93 48 111 156
+107 119 69 156
+127 65 0 156
+127 192 0 156
+145 85 0 156
+150 198 127 156
+151 6 115 156
+178 142 125 156
+184 226 0 156
+192 240 124 156
+195 18 98 156
+198 231 115 156
+221 14 0 156
+237 33 150 156
+249 41 0 156
+254 15 19 156
+6 231 43 157
+36 84 110 157
+46 94 117 157
+47 19 0 157
+91 103 148 157
+105 165 137 157
+119 169 0 157
+130 137 112 157
+132 2 139 157
+142 66 29 157
+172 248 79 157
+188 143 146 157
+196 5 0 157
+5 73 79 158
+16 47 82 158
+16 138 129 158
+47 95 0 158
+51 67 0 158
+91 85 20 158
+97 53 129 158
+99 181 0 158
+100 149 143 158
+110 101 153 158
+116 176 86 158
+130 195 20 158
+143 222 62 158
+151 163 0 158
+156 213 149 158
+171 238 0 158
+190 250 137 158
+195 62 0 158
+229 24 127 158
+240 110 13 158
+8 73 0 159
+34 102 123 159
+55 77 143 159
+72 91 142 159
+78 83 0 159
+79 96 14 159
+84 162 0 159
+89 156 145 159
+94 113 119 159
+108 120 79 159
+118 65 143 159
+118 134 149 159
+125 176 132 159
+126 67 0 159
+131 200 0 159
+145 225 155 159
+177 146 106 159
+194 146 82 159
+194 206 0 159
+196 225 137 159
+198 12 145 159
+201 22 113 159
+207 9 34 159
+216 34 0 159
+217 172 147 159
+228 230 145 159
+232 97 149 159
+234 190 139 159
+239 63 101 159
+249 199 143 159
+252 207 122 159
+1 7 49 160
+6 220 0 160
+9 62 85 160
+20 88 0 160
+23 90 0 160
+59 52 103 160
+60 23 84 160
+70 68 60 160
+78 111 68 160
+110 53 86 160
+147 215 66 160
+151 231 0 160
+152 245 89 160
+154 167 0 160
+170 205 151 160
+196 18 0 160
+198 10 145 160
+212 110 128 160
+220 23 0 160
+223 4 0 160
+237 163 115 160
+241 197 0 160
+250 59 98 160
+9 14 40 161
+19 12 136 161
+23 29 139 161
+54 8 0 161
+85 130 0 161
+96 125 132 161
+97 117 124 161
+105 167 46 161
+107 122 26 161
+108 186 147 161
+118 108 0 161
+124 157 150 161
+140 158 131 161
+143 217 131 161
+180 141 0 161
+214 6 0 161
+214 201 116 161
+217 158 138 161
+232 56 0 161
+233 204 42 161
+244 209 53 161
+248 203 57 161
+254 209 131 161
+32 39 108 162
+39 112 93 162
+40 7 61 162
+61 122 0 162
+62 114 142 162
+71 68 82 162
+85 165 38 162
+94 36 106 162
+98 119 0 162
+102 168 68 162
+123 169 0 162
+125 100 0 162
+137 143 151 162
+144 158 0 162
+151 246 128 162
+151 211 110 162
+194 214 94 162
+197 3 110 162
+200 4 35 162
+232 98 136 162
+256 204 147 162
+8 114 0 163
+41 34 9 163
+54 71 90 163
+100 128 53 163
+105 119 0 163
+105 153 0 163
+143 13 132 163
+153 143 141 163
+161 228 100 163
+165 183 0 163
+174 180 151 163
+193 256 138 163
+201 8 67 163
+201 21 20 163
+223 18 0 163
+12 41 148 164
+28 99 156 164
+29 96 149 164
+37 103 113 164
+63 57 17 164
+75 134 0 164
+76 136 0 164
+79 81 0 164
+80 160 0 164
+84 115 61 164
+97 165 115 164
+97 146 0 164
+106 189 0 164
+108 176 61 164
+129 207 148 164
+134 167 136 164
+144 156 0 164
+148 229 0 164
+151 230 45 164
+156 204 0 164
+165 119 0 164
+189 240 128 164
+195 215 141 164
+198 50 150 164
+206 15 19 164
+222 208 0 164
+225 47 125 164
+227 53 0 164
+242 201 110 164
+242 211 80 164
+18 51 158 165
+20 101 0 165
+35 56 9 165
+39 89 0 165
+60 8 49 165
+84 175 0 165
+129 238 156 165
+157 192 134 165
+170 238 127 165
+176 256 137 165
+185 176 0 165
+194 17 0 165
+195 201 29 165
+201 216 143 165
+207 77 111 165
+223 195 0 165
+249 44 82 165
+1 197 0 166
+19 98 115 166
+22 34 0 166
+32 86 99 166
+42 33 150 166
+62 4 148 166
+80 144 0 166
+89 151 157 166
+97 177 0 166
+101 120 119 166
+113 180 126 166
+115 71 151 166
+131 243 0 166
+135 247 145 166
+136 202 144 166
+183 220 165 166
+193 49 63 166
+200 69 102 166
+233 25 154 166
+241 240 0 166
+246 205 12 166
+253 202 155 166
+2 35 156 167
+3 12 145 167
+50 36 0 167
+61 55 82 167
+73 134 0 167
+107 187 0 167
+119 168 0 167
+139 242 135 167
+139 57 127 167
+142 146 21 167
+155 169 0 167
+180 49 149 167
+198 248 0 167
+200 54 0 167
+213 199 0 167
+213 230 128 167
+213 8 91 167
+223 94 133 167
+255 126 141 167
+21 88 131 168
+32 174 156 168
+34 99 121 168
+40 181 109 168
+57 125 160 168
+64 4 154 168
+89 83 92 168
+90 81 156 168
+132 200 136 168
+150 218 0 168
+163 33 134 168
+174 238 0 168
+198 242 79 168
+232 1 127 168
+8 37 155 169
+19 28 74 169
+23 103 134 169
+31 111 54 169
+40 86 0 169
+61 106 0 169
+65 70 125 169
+70 114 0 169
+70 151 162 169
+72 194 89 169
+74 134 106 169
+86 98 0 169
+93 110 157 169
+94 35 0 169
+99 168 0 169
+127 178 0 169
+132 197 0 169
+132 225 108 169
+138 136 159 169
+154 224 149 169
+166 123 0 169
+194 148 0 169
+196 219 144 169
+198 5 0 169
+234 161 134 169
+22 42 142 170
+32 59 97 170
+33 38 136 170
+42 90 135 170
+55 69 70 170
+72 140 0 170
+74 186 0 170
+76 150 0 170
+82 87 0 170
+83 210 143 170
+86 96 155 170
+87 99 60 170
+92 102 0 170
+109 160 158 170
+126 93 73 170
+158 224 134 170
+171 251 141 170
+187 137 0 170
+189 124 0 170
+207 202 0 170
+208 77 113 170
+211 239 33 170
+231 251 94 170
+237 255 0 170
+241 33 146 170
+241 256 0 170
+251 54 102 170
+256 44 91 170
+37 88 122 171
+45 90 145 171
+61 11 0 171
+63 60 158 171
+81 147 160 171
+94 89 167 171
+101 53 81 171
+129 144 0 171
+144 160 0 171
+144 219 153 171
+147 198 0 171
+155 220 0 171
+174 253 0 171
+192 244 0 171
+227 36 0 171
+241 227 0 171
+246 253 155 171
+17 24 0 172
+38 242 137 172
+47 107 149 172
+48 111 0 172
+60 125 163 172
+65 71 126 172
+65 133 112 172
+67 76 171 172
+82 51 111 172
+100 225 148 172
+124 250 154 172
+127 180 0 172
+136 201 0 172
+163 243 48 172
+164 46 153 172
+174 249 149 172
+192 196 143 172
+212 49 159 172
+229 35 150 172
+232 101 125 172
+236 27 162 172
+240 63 0 172
+9 206 51 173
+9 221 42 173
+19 86 0 173
+39 53 0 173
+51 181 101 173
+84 113 95 173
+97 161 0 173
+104 133 110 173
+129 209 57 173
+147 173 29 173
+149 168 110 173
+171 236 151 173
+175 179 110 173
+184 202 145 173
+198 195 0 173
+216 26 125 173
+236 105 167 173
+239 110 9 173
+247 197 0 173
+256 122 156 173
+6 24 0 174
+19 7 33 174
+33 52 138 174
+33 62 129 174
+42 31 156 174
+55 75 85 174
+59 113 9 174
+67 151 160 174
+122 89 164 174
+124 67 163 174
+139 245 148 174
+152 172 0 174
+160 225 64 174
+186 254 0 174
+196 4 0 174
+196 29 0 174
+212 36 0 174
+213 148 0 174
+234 139 158 174
+6 27 0 175
+9 15 84 175
+28 76 140 175
+36 104 100 175
+40 166 141 175
+42 37 143 175
+60 15 123 175
+65 83 0 175
+91 186 13 175
+94 100 0 175
+99 102 0 175
+112 182 93 175
+112 141 118 175
+115 68 104 175
+152 22 126 175
+154 140 144 175
+170 141 146 175
+183 198 156 175
+183 253 141 175
+189 249 43 175
+191 131 0 175
+198 210 0 175
+203 59 120 175
+206 195 0 175
+208 45 137 175
+239 35 0 175
+10 105 161 176
+24 150 162 176
+32 63 110 176
+36 177 135 176
+84 177 78 176
+97 90 156 176
+99 173 112 176
+112 249 158 176
+116 141 0 176
+127 187 0 176
+130 137 172 176
+132 173 56 176
+139 13 27 176
+142 83 0 176
+147 206 144 176
+167 234 0 176
+167 247 49 176
+179 228 0 176
+198 211 0 176
+201 23 76 176
+203 7 133 176
+231 33 159 176
+235 59 0 176
+238 250 104 176
+18 84 151 177
+19 37 0 177
+20 48 120 177
+26 24 86 177
+45 94 0 177
+46 15 67 177
+69 182 0 177
+77 186 0 177
+88 117 125 177
+101 56 107 177
+115 182 154 177
+129 148 114 177
+132 149 0 177
+134 202 0 177
+135 199 0 177
+150 140 0 177
+156 240 167 177
+161 209 0 177
+167 236 0 177
+169 187 0 177
+170 139 155 177
+205 204 0 177
+206 212 0 177
+222 18 120 177
+250 207 0 177
+20 90 145 178
+26 55 160 178
+33 255 131 178
+40 69 62 178
+52 16 0 178
+63 55 147 178
+72 184 0 178
+77 189 164 178
+78 190 98 178
+101 114 134 178
+126 56 113 178
+127 121 78 178
+128 188 114 178
+130 197 0 178
+138 150 0 178
+140 252 127 178
+218 10 0 178
+221 239 0 178
+12 24 123 179
+12 66 132 179
+18 110 115 179
+27 37 146 179
+31 48 76 179
+41 47 164 179
+41 107 166 179
+48 102 176 179
+58 14 138 179
+61 243 162 179
+83 132 0 179
+95 160 0 179
+111 165 165 179
+121 141 143 179
+134 155 0 179
+155 233 0 179
+169 176 0 179
+192 207 0 179
+205 9 0 179
+212 22 22 179
+213 25 121 179
+216 85 155 179
+223 15 0 179
+227 49 0 179
+230 44 10 179
+243 197 0 179
+246 215 137 179
+253 57 91 179
+20 83 0 180
+30 25 167 180
+36 101 0 180
+38 18 143 180
+48 174 90 180
+71 151 157 180
+77 157 0 180
+104 180 121 180
+149 215 140 180
+169 231 157 180
+185 247 83 180
+196 10 120 180
+200 66 101 180
+212 231 24 180
+216 228 81 180
+235 238 0 180
+235 37 154 180
+245 1 141 180
+256 44 172 180
+24 87 0 181
+26 109 0 181
+43 40 108 181
+55 53 0 181
+57 62 115 181
+61 113 0 181
+73 141 128 181
+80 129 0 181
+118 75 0 181
+131 248 0 181
+183 203 144 181
+185 245 0 181
+186 217 142 181
+224 251 143 181
+241 62 0 181
+8 35 157 182
+40 1 98 182
+46 126 0 182
+48 94 0 182
+49 38 150 182
+55 181 119 182
+61 34 173 182
+64 93 147 182
+81 148 129 182
+82 109 116 182
+99 164 0 182
+108 128 0 182
+134 157 67 182
+142 173 7 182
+171 253 0 182
+172 253 0 182
+193 148 44 182
+197 54 0 182
+211 226 154 182
+224 41 133 182
+230 54 106 182
+241 54 153 182
+253 59 99 182
+256 73 174 182
+6 71 158 183
+6 66 143 183
+17 35 0 183
+60 75 0 183
+65 93 50 183
+82 150 0 183
+87 101 0 183
+89 31 132 183
+105 117 91 183
+108 162 145 183
+119 139 175 183
+166 124 0 183
+168 216 63 183
+169 183 0 183
+174 116 0 183
+178 137 176 183
+193 248 168 183
+207 221 0 183
+214 37 138 183
+221 240 151 183
+226 35 146 183
+228 98 153 183
+230 210 136 183
+235 256 34 183
+239 244 154 183
+240 41 157 183
+248 200 0 183
+249 179 176 183
+6 13 106 184
+6 74 0 184
+34 104 136 184
+37 106 139 184
+60 120 79 184
+66 76 113 184
+119 170 0 184
+122 91 156 184
+123 181 88 184
+129 206 0 184
+130 184 0 184
+137 194 172 184
+159 207 159 184
+167 188 123 184
+188 202 0 184
+199 215 0 184
+229 239 43 184
+244 199 53 184
+251 207 0 184
+36 54 114 185
+46 207 9 185
+47 84 0 185
+64 127 0 185
+73 63 161 185
+74 121 129 185
+82 130 177 185
+95 173 0 185
+97 158 182 185
+118 23 150 185
+118 66 0 185
+123 205 110 185
+126 141 0 185
+127 104 148 185
+146 227 155 185
+164 227 0 185
+199 1 30 185
+199 21 162 185
+208 7 169 185
+213 18 0 185
+215 2 129 185
+226 18 134 185
+13 57 0 186
+20 111 0 186
+31 84 152 186
+39 150 119 186
+41 103 119 186
+71 86 158 186
+73 78 147 186
+77 94 158 186
+101 121 169 186
+123 183 0 186
+127 114 0 186
+142 131 0 186
+156 249 10 186
+160 172 155 186
+187 180 50 186
+12 69 0 187
+38 250 156 187
+42 49 158 187
+55 166 163 187
+71 139 180 187
+73 5 181 187
+82 111 0 187
+87 167 0 187
+124 131 173 187
+133 193 152 187
+137 250 0 187
+155 214 0 187
+178 66 143 187
+180 182 169 187
+196 62 0 187
+200 1 0 187
+204 231 14 187
+204 224 0 187
+216 35 0 187
+223 240 162 187
+230 225 162 187
+234 231 167 187
+19 67 154 188
+27 103 113 188
+56 181 108 188
+66 150 162 188
+76 139 171 188
+123 253 58 188
+145 100 79 188
+180 228 111 188
+186 151 146 188
+199 208 182 188
+208 22 174 188
+213 50 153 188
+220 57 137 188
+224 48 0 188
+12 75 0 189
+13 7 140 189
+13 80 162 189
+19 101 0 189
+32 82 181 189
+39 56 85 189
+51 162 24 189
+59 127 0 189
+84 104 0 189
+85 68 179 189
+112 116 0 189
+113 122 15 189
+124 183 0 189
+135 252 0 189
+136 167 187 189
+155 204 0 189
+249 205 0 189
+19 88 0 190
+33 53 0 190
+39 48 54 190
+50 21 179 190
+52 122 52 190
+64 7 145 190
+72 181 137 190
+92 173 0 190
+93 141 0 190
+99 117 0 190
+109 177 125 190
+126 121 115 190
+132 224 169 190
+137 246 0 190
+137 201 123 190
+147 198 181 190
+149 233 159 190
+161 181 184 190
+175 235 0 190
+180 248 163 190
+196 5 172 190
+203 57 0 190
+208 89 171 190
+219 44 169 190
+226 54 137 190
+228 63 0 190
+256 126 118 190
+7 16 178 191
+11 123 179 191
+17 65 166 191
+29 61 144 191
+35 84 0 191
+50 211 125 191
+56 12 166 191
+60 69 0 191
+63 75 159 191
+77 113 0 191
+80 109 165 191
+82 68 152 191
+104 182 0 191
+116 80 129 191
+118 89 147 191
+127 79 0 191
+135 203 0 191
+137 86 175 191
+141 193 0 191
+145 194 0 191
+148 227 0 191
+165 180 130 191
+173 172 174 191
+178 185 145 191
+181 248 167 191
+210 37 133 191
+239 256 151 191
+240 57 80 191
+256 52 0 191
+3 23 56 192
+10 47 81 192
+23 35 28 192
+28 55 162 192
+36 56 0 192
+46 58 166 192
+55 128 175 192
+56 104 0 192
+56 124 172 192
+60 89 35 192
+90 170 162 192
+123 135 161 192
+133 147 0 192
+136 217 0 192
+137 183 0 192
+138 149 162 192
+144 193 0 192
+161 245 176 192
+175 61 127 192
+185 246 0 192
+192 241 0 192
+192 202 0 192
+194 1 0 192
+194 21 0 192
+204 31 125 192
+215 7 146 192
+222 152 140 192
+229 181 180 192
+245 252 0 192
+249 54 185 192
+21 27 135 193
+28 66 144 193
+42 27 77 193
+42 109 0 193
+70 81 105 193
+87 107 0 193
+88 214 154 193
+92 94 158 193
+95 72 183 193
+123 155 177 193
+124 69 0 193
+139 143 0 193
+151 141 180 193
+190 155 185 193
+192 238 0 193
+206 30 0 193
+215 37 0 193
+230 219 77 193
+240 59 0 193
+251 49 175 193
+3 178 169 194
+6 18 184 194
+27 48 27 194
+28 108 151 194
+40 108 162 194
+65 131 143 194
+89 69 0 194
+92 170 0 194
+125 173 132 194
+170 161 144 194
+199 64 182 194
+215 8 0 194
+219 47 123 194
+220 223 156 194
+230 240 146 194
+255 59 88 194
+16 81 0 195
+19 145 171 195
+22 40 0 195
+31 110 49 195
+32 157 161 195
+38 106 0 195
+88 107 157 195
+110 114 134 195
+112 237 177 195
+121 138 135 195
+130 209 0 195
+135 155 0 195
+138 188 0 195
+139 253 0 195
+152 164 47 195
+184 38 178 195
+185 138 167 195
+213 5 0 195
+215 5 123 195
+215 18 0 195
+235 47 154 195
+251 63 0 195
+253 64 175 195
+4 158 167 196
+17 95 167 196
+24 117 182 196
+36 117 0 196
+71 184 0 196
+98 120 0 196
+112 113 0 196
+122 188 175 196
+132 203 188 196
+161 228 174 196
+182 248 10 196
+199 13 134 196
+214 226 0 196
+217 10 0 196
+229 179 0 196
+236 256 0 196
+245 236 0 196
+10 86 183 197
+10 92 186 197
+22 9 169 197
+24 100 186 197
+78 130 148 197
+87 146 123 197
+92 141 178 197
+100 120 169 197
+103 229 191 197
+111 191 191 197
+119 138 163 197
+122 187 167 197
+177 170 128 197
+186 252 139 197
+197 220 190 197
+205 15 85 197
+226 53 0 197
+239 62 95 197
+251 47 177 197
+3 83 77 198
+30 81 125 198
+67 84 176 198
+67 182 0 198
+73 93 50 198
+76 149 0 198
+125 171 126 198
+135 248 0 198
+135 204 0 198
+139 58 33 198
+146 216 158 198
+158 129 42 198
+163 180 126 198
+187 236 150 198
+199 202 117 198
+200 28 186 198
+230 237 128 198
+230 215 20 198
+234 254 88 198
+236 253 0 198
+245 227 0 198
+6 28 0 199
+22 5 167 199
+33 63 0 199
+35 44 172 199
+41 32 106 199
+43 101 82 199
+45 256 157 199
+46 31 154 199
+61 33 125 199
+88 153 0 199
+91 84 181 199
+99 167 0 199
+134 156 0 199
+185 165 0 199
+192 255 0 199
+200 219 196 199
+200 70 100 199
+203 25 170 199
+248 58 42 199
+249 181 146 199
+6 85 0 200
+15 81 174 200
+69 136 191 200
+75 158 190 200
+112 161 176 200
+122 190 0 200
+143 148 68 200
+144 160 185 200
+144 58 156 200
+200 85 136 200
+207 36 181 200
+223 235 153 200
+234 255 0 200
+247 253 85 200
+2 30 0 201
+7 27 180 201
+11 119 179 201
+12 43 172 201
+30 16 80 201
+32 174 186 201
+33 109 65 201
+74 123 135 201
+107 167 0 201
+124 184 0 201
+151 231 168 201
+172 248 195 201
+219 240 80 201
+232 21 135 201
+232 44 0 201
+239 110 192 201
+240 44 87 201
+255 51 194 201
+9 21 163 202
+19 70 0 202
+41 102 0 202
+46 59 0 202
+56 126 190 202
+65 122 182 202
+73 15 143 202
+89 75 0 202
+89 124 141 202
+90 173 0 202
+117 131 178 202
+122 116 24 202
+130 196 191 202
+149 197 149 202
+157 214 178 202
+160 208 0 202
+160 212 185 202
+181 163 0 202
+188 198 152 202
+197 208 180 202
+197 25 162 202
+199 256 174 202
+213 246 127 202
+9 27 0 203
+12 41 174 203
+13 25 92 203
+20 34 0 203
+30 35 0 203
+43 37 90 203
+66 147 177 203
+69 181 96 203
+74 128 0 203
+79 193 132 203
+89 66 88 203
+125 79 147 203
+127 237 191 203
+135 141 157 203
+139 221 0 203
+146 169 177 203
+147 160 195 203
+148 206 0 203
+158 100 154 203
+160 29 176 203
+171 253 186 203
+172 192 174 203
+207 63 0 203
+210 197 96 203
+210 220 192 203
+211 81 177 203
+214 6 195 203
+220 240 44 203
+234 205 36 203
+242 54 81 203
+252 5 0 203
+6 89 0 204
+17 45 0 204
+17 93 0 204
+23 83 0 204
+23 88 0 204
+52 100 180 204
+66 131 157 204
+69 113 171 204
+93 145 107 204
+133 68 0 204
+143 160 16 204
+161 166 161 204
+202 58 0 204
+219 21 176 204
+227 238 0 204
+254 239 154 204
+4 70 111 205
+20 85 0 205
+28 150 124 205
+39 166 58 205
+60 10 0 205
+68 155 191 205
+79 131 19 205
+91 159 186 205
+102 188 185 205
+111 128 198 205
+120 149 192 205
+121 187 120 205
+128 114 77 205
+134 217 0 205
+143 208 0 205
+176 162 164 205
+199 119 185 205
+207 126 12 205
+217 6 0 205
+229 217 25 205
+234 182 193 205
+247 118 181 205
+248 1 0 205
+31 91 120 206
+41 48 0 206
+43 108 0 206
+46 109 0 206
+61 77 200 206
+67 184 0 206
+69 76 0 206
+83 167 155 206
+91 171 169 206
+92 112 0 206
+99 166 0 206
+107 237 168 206
+118 123 0 206
+136 246 86 206
+143 194 0 206
+151 201 110 206
+172 240 144 206
+173 162 185 206
+181 194 180 206
+195 7 35 206
+197 8 81 206
+210 224 185 206
+211 35 108 206
+229 249 0 206
+230 242 195 206
+252 16 199 206
+3 82 133 207
+17 66 0 207
+43 103 0 207
+64 10 0 207
+71 179 189 207
+90 102 178 207
+93 153 186 207
+104 107 192 207
+105 157 173 207
+113 165 193 207
+130 163 176 207
+139 208 0 207
+153 220 152 207
+170 175 122 207
+176 228 118 207
+181 246 0 207
+196 15 0 207
+197 219 184 207
+242 228 0 207
+247 53 0 207
+255 47 179 207
+256 10 197 207
+6 10 0 208
+16 90 82 208
+18 110 191 208
+31 82 148 208
+50 69 78 208
+67 193 119 208
+75 159 192 208
+83 131 131 208
+98 56 0 208
+112 191 0 208
+129 245 193 208
+139 205 0 208
+144 151 140 208
+156 148 179 208
+168 238 169 208
+203 14 121 208
+206 58 202 208
+225 21 175 208
+233 42 0 208
+248 250 13 208
+3 85 0 209
+9 89 0 209
+30 82 133 209
+31 109 0 209
+32 92 0 209
+37 103 198 209
+42 37 184 209
+43 102 0 209
+75 206 192 209
+94 173 0 209
+95 143 0 209
+102 125 147 209
+151 204 0 209
+167 161 164 209
+169 229 44 209
+181 241 0 209
+188 191 66 209
+194 209 0 209
+198 21 0 209
+208 220 98 209
+211 85 156 209
+2 204 195 210
+6 58 0 210
+7 10 0 210
+7 28 186 210
+37 118 197 210
+38 58 50 210
+69 79 192 210
+77 27 203 210
+107 187 191 210
+118 64 137 210
+133 83 0 210
+147 197 0 210
+149 166 136 210
+198 12 194 210
+209 216 0 210
+213 219 179 210
+217 41 197 210
+255 126 174 210
+256 204 179 210
+8 25 0 211
+12 92 174 211
+13 73 56 211
+17 81 0 211
+50 114 0 211
+67 146 165 211
+73 10 0 211
+76 135 0 211
+103 163 169 211
+112 177 0 211
+118 77 196 211
+118 74 127 211
+118 108 189 211
+128 76 179 211
+129 244 12 211
+137 202 0 211
+158 210 198 211
+173 253 183 211
+176 255 0 211
+187 239 175 211
+195 52 0 211
+201 16 202 211
+222 227 0 211
+231 43 96 211
+242 34 170 211
+244 206 0 211
+256 77 126 211
+2 70 95 212
+9 8 72 212
+19 84 0 212
+24 54 186 212
+36 128 159 212
+45 63 0 212
+50 37 201 212
+59 117 195 212
+86 157 158 212
+94 148 160 212
+101 107 165 212
+104 230 197 212
+113 180 188 212
+120 83 196 212
+123 142 165 212
+132 212 33 212
+151 22 191 212
+159 30 11 212
+168 220 137 212
+175 179 193 212
+210 164 0 212
+218 10 203 212
+236 106 101 212
+245 255 188 212
+3 71 72 213
+18 88 129 213
+28 83 186 213
+29 110 52 213
+75 139 162 213
+100 176 0 213
+112 249 209 213
+135 250 0 213
+137 156 157 213
+149 140 0 213
+152 197 152 213
+156 206 140 213
+175 255 0 213
+183 220 197 213
+195 54 0 213
+201 54 0 213
+224 61 23 213
+230 139 197 213
+230 250 0 213
+235 46 0 213
+239 97 108 213
+3 70 0 214
+8 99 192 214
+17 97 0 214
+35 57 199 214
+43 92 0 214
+45 49 0 214
+59 7 144 214
+67 194 127 214
+69 137 0 214
+71 136 0 214
+72 138 139 214
+77 89 129 214
+100 229 199 214
+115 79 0 214
+126 180 200 214
+130 158 27 214
+133 246 0 214
+189 162 133 214
+192 159 15 214
+195 62 203 214
+208 60 179 214
+213 212 0 214
+225 19 205 214
+228 1 60 214
+230 187 169 214
+6 208 56 215
+6 219 0 215
+22 33 201 215
+39 92 0 215
+40 5 194 215
+55 76 165 215
+113 101 125 215
+149 104 180 215
+188 205 0 215
+190 244 136 215
+223 15 210 215
+233 38 130 215
+239 34 0 215
+251 41 0 215
+254 142 0 215
+13 209 202 216
+31 90 0 216
+32 158 167 216
+54 58 0 216
+58 76 201 216
+71 123 0 216
+74 141 0 216
+94 174 0 216
+98 120 214 216
+106 117 73 216
+138 86 158 216
+154 175 0 216
+211 97 173 216
+222 47 27 216
+242 247 100 216
+13 65 188 217
+14 79 211 217
+17 82 0 217
+22 19 0 217
+22 7 174 217
+23 92 163 217
+53 60 141 217
+55 77 183 217
+74 86 82 217
+93 86 180 217
+124 72 126 217
+138 169 200 217
+140 208 0 217
+148 30 172 217
+159 203 173 217
+169 220 86 217
+179 238 0 217
+184 151 121 217
+200 202 168 217
+200 225 204 217
+211 239 174 217
+219 42 21 217
+224 228 169 217
+5 85 75 218
+23 37 0 218
+24 43 86 218
+53 116 167 218
+56 19 196 218
+70 114 191 218
+80 156 188 218
+86 96 185 218
+93 110 204 218
+104 106 114 218
+105 165 198 218
+105 172 62 218
+105 171 45 218
+109 100 0 218
+111 155 205 218
+149 217 0 218
+158 143 12 218
+162 238 0 218
+176 205 130 218
+181 129 164 218
+183 54 139 218
+200 56 189 218
+200 12 0 218
+217 231 0 218
+220 10 0 218
+228 62 0 218
+234 144 192 218
+238 248 188 218
+2 33 178 219
+8 76 51 219
+17 47 0 219
+20 83 206 219
+35 56 192 219
+58 7 0 219
+61 106 193 219
+67 137 106 219
+72 182 0 219
+84 177 214 219
+106 181 218 219
+138 150 190 219
+153 197 171 219
+157 224 196 219
+174 100 0 219
+177 193 202 219
+190 255 125 219
+192 240 183 219
+196 30 0 219
+196 20 96 219
+201 223 216 219
+207 65 160 219
+218 148 164 219
+227 239 0 219
+228 110 48 219
+251 55 98 219
+252 206 194 219
+1 67 218 220
+7 122 139 220
+16 89 0 220
+23 43 0 220
+35 165 194 220
+45 255 0 220
+53 98 0 220
+92 111 41 220
+112 156 215 220
+125 73 155 220
+137 150 166 220
+147 227 0 220
+168 227 0 220
+175 49 133 220
+184 9 204 220
+186 246 0 220
+186 251 159 220
+201 25 0 220
+204 73 179 220
+211 66 182 220
+223 12 197 220
+225 35 138 220
+10 41 125 221
+19 68 0 221
+28 104 193 221
+50 196 0 221
+58 78 207 221
+59 76 206 221
+79 205 164 221
+81 127 192 221
+88 229 188 221
+105 170 0 221
+106 171 128 221
+115 189 21 221
+117 72 159 221
+137 194 188 221
+176 186 199 221
+178 189 125 221
+214 21 0 221
+223 78 207 221
+226 247 0 221
+7 25 0 222
+12 41 209 222
+14 82 174 222
+25 76 200 222
+50 40 0 222
+55 123 139 222
+99 173 189 222
+127 160 195 222
+145 155 155 222
+153 159 128 222
+175 190 140 222
+192 249 118 222
+200 25 0 222
+210 20 178 222
+212 22 214 222
+246 118 218 222
+17 94 0 223
+26 93 207 223
+26 31 0 223
+32 127 152 223
+50 52 0 223
+58 10 0 223
+61 113 209 223
+86 109 203 223
+93 87 158 223
+101 119 0 223
+106 126 211 223
+127 234 214 223
+130 143 0 223
+136 6 204 223
+159 208 0 223
+190 250 195 223
+192 251 120 223
+201 10 0 223
+233 187 0 223
+235 48 0 223
+249 203 0 223
+252 122 206 223
+1 116 158 224
+13 29 0 224
+43 64 216 224
+45 97 0 224
+53 115 88 224
+67 242 152 224
+79 66 205 224
+106 77 196 224
+130 210 96 224
+145 213 203 224
+150 220 182 224
+159 219 0 224
+162 243 187 224
+165 178 96 224
+175 245 148 224
+195 4 0 224
+209 46 219 224
+213 209 0 224
+216 33 0 224
+219 231 0 224
+223 33 0 224
+225 36 203 224
+233 251 0 224
+235 253 0 224
+243 197 207 224
+16 138 195 225
+23 93 185 225
+27 138 190 225
+42 110 0 225
+106 172 142 225
+115 68 197 225
+118 58 36 225
+136 215 0 225
+165 245 79 225
+175 227 0 225
+186 256 201 225
+187 42 182 225
+222 26 187 225
+229 235 148 225
+230 182 156 225
+231 23 0 225
+240 244 200 225
+248 251 90 225
+252 255 157 225
+6 19 0 226
+24 102 0 226
+30 227 0 226
+37 102 0 226
+51 57 182 226
+61 126 0 226
+71 86 212 226
+88 213 208 226
+92 102 181 226
+98 126 174 226
+115 191 0 226
+125 192 220 226
+137 213 161 226
+140 159 92 226
+152 212 0 226
+191 207 55 226
+196 3 0 226
+198 199 0 226
+200 231 139 226
+220 240 211 226
+237 228 0 226
+17 32 0 227
+22 35 0 227
+63 124 224 227
+80 144 186 227
+90 127 124 227
+113 77 209 227
+119 184 0 227
+132 160 0 227
+137 250 215 227
+142 180 58 227
+151 219 168 227
+164 205 204 227
+203 224 225 227
+222 31 107 227
+234 161 216 227
+234 219 159 227
+237 47 193 227
+242 147 139 227
+4 7 203 228
+9 200 0 228
+23 90 172 228
+32 99 199 228
+36 100 0 228
+50 51 0 228
+50 118 74 228
+53 126 163 228
+85 98 126 228
+88 168 0 228
+95 155 133 228
+108 192 213 228
+111 83 63 228
+130 184 186 228
+136 140 0 228
+145 154 108 228
+159 217 100 228
+173 30 207 228
+178 161 87 228
+195 15 0 228
+209 45 150 228
+209 228 181 228
+214 197 146 228
+246 202 89 228
+253 36 194 228
+4 120 163 229
+5 67 204 229
+11 25 99 229
+13 221 0 229
+24 51 169 229
+40 7 180 229
+45 31 0 229
+46 64 0 229
+47 107 226 229
+48 90 0 229
+65 131 215 229
+83 213 170 229
+90 84 138 229
+97 145 209 229
+114 179 129 229
+118 65 222 229
+133 75 201 229
+136 153 0 229
+137 179 177 229
+150 215 216 229
+164 49 129 229
+193 3 205 229
+198 160 198 229
+201 253 164 229
+204 58 0 229
+226 255 0 229
+239 31 104 229
+243 205 218 229
+13 122 0 230
+46 113 0 230
+52 118 211 230
+64 3 215 230
+70 67 0 230
+85 153 218 230
+92 172 0 230
+128 144 203 230
+130 179 77 230
+132 163 216 230
+138 190 228 230
+140 150 197 230
+149 169 131 230
+157 143 0 230
+158 234 220 230
+159 171 68 230
+161 179 70 230
+189 205 0 230
+198 252 0 230
+199 44 154 230
+8 73 212 231
+38 18 210 231
+52 122 211 231
+56 121 167 231
+61 122 197 231
+106 75 214 231
+108 235 209 231
+111 147 211 231
+114 134 204 231
+116 161 123 231
+124 135 0 231
+137 136 0 231
+144 132 0 231
+144 247 209 231
+148 224 27 231
+151 221 136 231
+152 22 190 231
+159 156 91 231
+216 19 0 231
+225 45 43 231
+241 196 208 231
+14 67 207 232
+19 23 0 232
+39 169 198 232
+47 64 196 232
+51 7 204 232
+55 48 28 232
+56 12 198 232
+59 185 187 232
+81 165 197 232
+85 169 206 232
+88 153 211 232
+115 163 167 232
+119 168 195 232
+119 135 146 232
+124 190 216 232
+130 242 0 232
+140 205 0 232
+157 132 0 232
+157 209 214 232
+202 216 177 232
+202 11 158 232
+210 30 0 232
+220 251 42 232
+222 33 0 232
+236 48 0 232
+256 63 0 232
+1 113 64 233
+8 68 180 233
+11 89 0 233
+14 32 143 233
+45 94 215 233
+50 60 77 233
+62 116 131 233
+87 141 177 233
+93 92 0 233
+98 163 217 233
+116 242 213 233
+148 162 218 233
+168 235 210 233
+184 144 188 233
+188 42 203 233
+199 21 230 233
+232 51 0 233
+239 255 0 233
+247 40 0 233
+3 20 84 234
+11 27 0 234
+23 37 226 234
+34 99 225 234
+55 64 95 234
+73 128 0 234
+93 105 105 234
+96 127 157 234
+113 123 218 234
+118 77 231 234
+128 254 223 234
+132 253 231 234
+151 230 208 234
+155 148 122 234
+164 183 184 234
+173 212 199 234
+173 46 223 234
+186 197 207 234
+188 57 212 234
+199 203 0 234
+207 11 0 234
+207 64 0 234
+216 5 150 234
+218 42 0 234
+222 20 169 234
+3 113 170 235
+7 121 0 235
+43 154 103 235
+87 105 0 235
+87 139 189 235
+92 158 84 235
+108 128 188 235
+125 190 230 235
+137 197 93 235
+160 147 228 235
+199 251 124 235
+223 74 218 235
+243 207 135 235
+245 201 217 235
+246 55 219 235
+250 207 198 235
+2 52 0 236
+42 54 190 236
+52 100 210 236
+62 4 193 236
+73 79 223 236
+83 167 224 236
+112 137 227 236
+125 161 205 236
+147 206 233 236
+162 254 177 236
+174 166 218 236
+181 186 146 236
+188 248 74 236
+191 249 201 236
+191 49 130 236
+206 195 206 236
+228 82 207 236
+229 183 0 236
+240 243 216 236
+241 62 211 236
+255 11 229 236
+65 180 199 237
+80 67 219 237
+92 106 0 237
+125 116 0 237
+128 142 0 237
+171 26 195 237
+173 253 234 237
+177 245 179 237
+186 249 0 237
+247 61 28 237
+249 239 207 237
+256 36 165 237
+8 88 115 238
+14 80 137 238
+26 12 221 238
+29 97 166 238
+35 103 37 238
+40 73 215 238
+53 19 210 238
+65 132 227 238
+75 96 38 238
+76 142 186 238
+81 86 211 238
+112 233 187 238
+120 149 228 238
+156 249 212 238
+160 163 213 238
+173 45 205 238
+195 69 225 238
+203 29 214 238
+213 148 213 238
+234 46 164 238
+241 36 205 238
+13 93 0 239
+31 97 0 239
+48 77 182 239
+49 69 232 239
+61 110 0 239
+61 60 0 239
+70 93 190 239
+94 113 209 239
+170 141 216 239
+173 210 191 239
+173 223 223 239
+176 221 222 239
+201 5 0 239
+209 33 0 239
+210 168 0 239
+217 29 120 239
+218 251 48 239
+223 47 0 239
+236 106 236 239
+5 12 105 240
+15 190 233 240
+16 96 0 240
+30 14 0 240
+32 59 237 240
+44 63 18 240
+44 73 151 240
+63 3 188 240
+67 85 0 240
+78 158 0 240
+114 131 53 240
+136 229 198 240
+153 219 163 240
+171 219 156 240
+177 187 37 240
+185 135 0 240
+185 141 154 240
+190 206 149 240
+203 25 214 240
+206 1 225 240
+225 49 0 240
+233 22 130 240
+236 61 0 240
+237 164 0 240
+241 132 228 240
+247 203 41 240
+21 71 233 241
+39 119 40 241
+45 110 0 241
+63 192 215 241
+64 190 228 241
+84 176 218 241
+90 102 215 241
+98 126 230 241
+104 172 34 241
+112 181 204 241
+127 165 191 241
+155 132 126 241
+185 247 233 241
+194 214 207 241
+217 234 196 241
+227 26 224 241
+13 204 0 242
+31 43 124 242
+36 3 206 242
+44 119 71 242
+55 71 76 242
+61 9 201 242
+64 189 224 242
+75 95 0 242
+88 115 144 242
+89 149 144 242
+93 28 0 242
+101 149 167 242
+102 188 225 242
+130 190 0 242
+134 242 186 242
+164 46 193 242
+165 183 175 242
+169 188 11 242
+182 155 214 242
+197 54 204 242
+201 7 8 242
+204 211 216 242
+216 8 76 242
+220 57 213 242
+226 38 0 242
+230 34 232 242
+2 114 187 243
+12 32 0 243
+12 86 0 243
+19 72 0 243
+24 98 0 243
+35 127 222 243
+62 74 213 243
+84 113 209 243
+84 162 222 243
+104 116 94 243
+105 48 0 243
+105 119 211 243
+123 177 114 243
+160 220 84 243
+212 34 0 243
+214 221 109 243
+232 36 0 243
+248 201 0 243
+8 20 0 244
+14 29 0 244
+40 59 153 244
+85 152 223 244
+87 96 30 244
+93 75 0 244
+98 103 0 244
+98 190 240 244
+101 90 214 244
+109 176 201 244
+159 218 0 244
+160 45 156 244
+167 188 192 244
+202 23 197 244
+213 230 225 244
+216 38 0 244
+230 24 240 244
+238 50 169 244
+22 224 224 245
+26 37 72 245
+35 84 231 245
+80 66 224 245
+81 161 195 245
+92 174 81 245
+105 122 217 245
+121 192 168 245
+160 26 173 245
+162 225 161 245
+198 211 231 245
+237 188 207 245
+16 94 0 246
+17 219 223 246
+17 78 0 246
+31 96 0 246
+83 89 181 246
+101 84 0 246
+152 172 180 246
+153 152 0 246
+159 224 0 246
+160 30 151 246
+166 123 202 246
+169 181 56 246
+179 195 146 246
+182 252 225 246
+197 60 199 246
+202 235 238 246
+7 124 0 247
+22 43 0 247
+27 111 234 247
+28 76 227 247
+43 111 226 247
+78 90 158 247
+84 210 214 247
+86 100 224 247
+101 167 157 247
+109 123 210 247
+133 66 0 247
+140 219 0 247
+197 12 160 247
+206 10 0 247
+206 29 0 247
+207 65 238 247
+215 27 95 247
+221 234 201 247
+223 27 137 247
+231 246 216 247
+232 40 0 247
+17 53 228 248
+43 86 0 248
+44 64 89 248
+56 9 168 248
+61 57 0 248
+65 192 227 248
+87 77 211 248
+92 109 0 248
+107 153 0 248
+109 156 208 248
+112 79 89 248
+116 254 197 248
+119 77 224 248
+137 170 221 248
+143 140 75 248
+151 171 174 248
+170 143 229 248
+182 141 153 248
+193 148 229 248
+194 204 202 248
+227 248 195 248
+250 59 230 248
+13 60 0 249
+15 81 234 249
+27 95 198 249
+38 49 201 249
+43 91 0 249
+52 178 160 249
+90 121 222 249
+120 184 0 249
+129 195 14 249
+133 213 162 249
+136 163 184 249
+164 187 155 249
+187 247 82 249
+189 182 237 249
+191 228 0 249
+198 195 227 249
+202 17 225 249
+206 14 0 249
+223 215 188 249
+228 50 0 249
+229 46 228 249
+244 114 229 249
+246 58 0 249
+1 11 207 250
+20 24 0 250
+28 150 225 250
+39 166 224 250
+49 117 220 250
+50 14 238 250
+56 21 202 250
+72 152 199 250
+88 136 172 250
+93 107 108 250
+99 173 237 250
+109 170 0 250
+125 177 123 250
+127 65 234 250
+156 176 0 250
+177 173 0 250
+183 38 126 250
+222 229 147 250
+239 232 114 250
+240 13 231 250
+250 62 87 250
+14 94 55 251
+25 37 16 251
+42 246 198 251
+45 10 55 251
+52 104 221 251
+53 4 186 251
+53 67 210 251
+84 136 228 251
+97 115 0 251
+102 125 223 251
+106 166 0 251
+164 255 0 251
+167 225 158 251
+178 66 217 251
+194 21 212 251
+203 17 217 251
+213 219 228 251
+222 191 169 251
+228 41 243 251
+236 40 98 251
+247 240 130 251
+247 256 62 251
+34 110 0 252
+42 203 240 252
+87 152 0 252
+88 156 234 252
+93 25 66 252
+106 75 244 252
+178 145 223 252
+185 76 129 252
+188 236 148 252
+196 16 0 252
+204 227 237 252
+206 9 187 252
+208 60 221 252
+212 238 0 252
+214 225 167 252
+216 28 75 252
+222 164 126 252
+225 230 204 252
+229 238 188 252
+240 59 230 252
+243 236 228 252
+245 6 209 252
+248 36 233 252
+1 77 179 253
+8 28 103 253
+28 169 198 253
+36 177 243 253
+38 45 246 253
+49 97 136 253
+52 190 223 253
+61 44 0 253
+70 133 0 253
+80 190 0 253
+100 116 0 253
+103 115 129 253
+122 141 104 253
+126 178 152 253
+132 211 0 253
+142 202 224 253
+161 168 0 253
+168 38 133 253
+173 187 149 253
+183 231 138 253
+187 241 226 253
+188 245 0 253
+193 49 181 253
+207 20 212 253
+217 158 201 253
+249 59 235 253
+254 250 0 253
+7 133 192 254
+41 90 121 254
+44 118 60 254
+54 9 0 254
+108 73 205 254
+108 75 239 254
+133 138 85 254
+138 135 0 254
+143 17 227 254
+150 198 159 254
+167 227 139 254
+181 123 193 254
+191 46 159 254
+198 210 227 254
+211 232 143 254
+232 18 0 254
+246 256 44 254
+13 12 0 255
+16 25 79 255
+29 96 197 255
+46 59 242 255
+61 11 178 255
+67 81 0 255
+101 121 203 255
+115 161 0 255
+118 130 236 255
+137 201 218 255
+157 150 27 255
+166 112 32 255
+166 234 199 255
+175 168 102 255
+178 149 240 255
+191 225 0 255
+206 16 33 255
+210 230 210 255
+238 47 174 255
+242 6 148 255
+246 56 198 255
+5 18 162 256
+8 89 0 256
+11 79 210 256
+22 232 0 256
+55 9 98 256
+78 27 184 256
+118 182 0 256
+128 253 227 256
+133 123 164 256
+135 211 239 256
+142 140 155 256
+143 209 0 256
+150 181 234 256
+158 224 194 256
+166 156 0 256
+169 125 220 256
+170 247 198 256
+205 2 221 256
+237 202 228 256
+243 197 239 256
+248 250 234 256
+249 199 172 256
+42 25 27 257
+49 2 210 257
+87 131 197 257
+103 153 0 257
+116 136 246 257
+132 244 0 257
+163 237 189 257
+164 193 122 257
+164 244 95 257
+199 58 0 257
+203 57 223 257
+212 232 103 257
+225 24 248 257
+231 42 0 257
+255 17 214 257
+15 95 154 258
+46 232 128 258
+53 98 238 258
+54 8 207 258
+55 166 210 258
+58 74 128 258
+85 165 187 258
+86 121 234 258
+105 171 250 258
+114 100 0 258
+116 193 230 258
+132 223 0 258
+132 200 203 258
+135 204 229 258
+158 210 236 258
+173 226 194 258
+180 141 208 258
+202 209 201 258
+210 33 0 258
+217 223 137 258
+3 77 250 259
+17 15 0 259
+23 105 0 259
+27 169 221 259
+42 112 242 259
+44 108 0 259
+55 114 196 259
+71 83 0 259
+78 29 206 259
+83 103 0 259
+88 181 208 259
+91 85 198 259
+99 167 235 259
+143 202 0 259
+153 167 0 259
+155 209 129 259
+174 113 0 259
+174 177 0 259
+181 230 144 259
+188 235 128 259
+196 200 0 259
+203 74 216 259
+218 231 0 259
+240 36 170 259
+241 256 207 259
+3 20 239 260
+13 42 216 260
+16 79 0 260
+61 16 212 260
+76 192 213 260
+78 84 140 260
+106 171 238 260
+107 124 235 260
+109 100 236 260
+121 126 234 260
+125 185 106 260
+130 92 244 260
+143 147 0 260
+144 159 0 260
+158 223 225 260
+159 202 0 260
+163 243 231 260
+187 235 0 260
+197 57 214 260
+213 225 68 260
+237 43 229 260
+238 250 202 260
+242 17 224 260
+44 122 0 261
+66 136 132 261
+70 149 0 261
+80 111 39 261
+99 117 222 261
+105 35 254 261
+108 133 224 261
+126 191 254 261
+145 165 50 261
+164 184 169 261
+172 248 226 261
+191 144 82 261
+225 47 169 261
+236 199 143 261
+238 42 114 261
+250 11 198 261
+256 31 229 261
+21 89 0 262
+42 36 160 262
+67 87 150 262
+68 134 160 262
+86 152 178 262
+91 103 209 262
+97 52 184 262
+128 173 246 262
+134 146 138 262
+136 246 258 262
+137 187 215 262
+198 152 0 262
+218 209 144 262
+222 228 0 262
+254 159 222 262
+255 31 224 262
+48 127 0 263
+81 148 186 263
+91 150 0 263
+109 113 0 263
+131 159 241 263
+139 141 0 263
+173 147 191 263
+187 13 226 263
+191 141 0 263
+200 53 194 263
+209 29 66 263
+210 24 233 263
+216 219 130 263
+219 209 153 263
+226 190 249 263
+234 182 232 263
+247 6 176 263
+254 2 244 263
+256 223 197 263
+18 28 96 264
+28 72 200 264
+48 107 0 264
+62 31 212 264
+81 149 0 264
+88 117 254 264
+103 230 174 264
+106 189 192 264
+116 179 123 264
+125 124 190 264
+152 172 254 264
+158 225 228 264
+181 226 0 264
+191 250 0 264
+207 219 245 264
+218 175 0 264
+239 42 0 264
+240 205 120 264
+251 38 47 264
+254 251 153 264
+255 2 204 264
+11 123 243 265
+13 36 229 265
+21 83 198 265
+22 10 88 265
+22 105 135 265
+28 102 0 265
+30 211 0 265
+32 157 253 265
+56 104 222 265
+59 36 165 265
+106 127 0 265
+115 68 247 265
+141 256 206 265
+187 58 224 265
+198 233 129 265
+205 49 126 265
+217 26 0 265
+222 211 0 265
+225 245 0 265
+253 201 239 265
+28 35 94 266
+44 112 0 266
+44 117 75 266
+52 79 0 266
+79 140 210 266
+82 89 203 266
+85 90 205 266
+92 166 0 266
+118 66 220 266
+125 77 0 266
+129 77 257 266
+132 221 0 266
+137 79 219 266
+145 173 0 266
+169 189 222 266
+183 243 0 266
+210 37 220 266
+239 255 257 266
+33 54 251 267
+41 59 0 267
+49 16 249 267
+62 56 246 267
+70 83 0 267
+85 84 0 267
+109 189 0 267
+119 168 257 267
+128 178 130 267
+144 58 213 267
+169 123 222 267
+171 148 49 267
+192 255 246 267
+193 53 185 267
+205 209 83 267
+211 7 263 267
+217 208 0 267
+238 52 256 267
+8 134 193 268
+15 12 260 268
+45 63 225 268
+48 57 0 268
+56 98 235 268
+78 83 233 268
+82 165 0 268
+88 161 0 268
+111 234 193 268
+123 113 263 268
+147 212 0 268
+201 223 243 268
+207 58 0 268
+215 10 0 268
+237 212 0 268
+241 205 61 268
+242 2 0 268
+247 59 27 268
+254 46 154 268
+60 137 235 269
+64 127 217 269
+75 191 237 269
+82 149 0 269
+100 117 0 269
+108 186 181 269
+118 104 0 269
+138 201 245 269
+139 57 239 269
+143 61 256 269
+174 148 0 269
+184 53 227 269
+191 188 214 269
+192 159 234 269
+193 256 187 269
+213 165 201 269
+214 226 202 269
+214 249 55 269
+223 26 112 269
+228 230 217 269
+244 6 203 269
+2 16 208 270
+22 235 134 270
+47 37 239 270
+63 16 190 270
+64 31 235 270
+65 118 253 270
+67 147 126 270
+68 148 120 270
+79 153 245 270
+82 105 220 270
+146 92 244 270
+182 230 244 270
+188 240 155 270
+203 29 252 270
+208 23 174 270
+209 14 0 270
+217 222 194 270
+223 45 0 270
+237 42 0 270
+241 230 198 270
+32 98 248 271
+35 56 234 271
+49 199 213 271
+50 250 248 271
+50 38 0 271
+67 164 249 271
+67 192 267 271
+100 128 221 271
+104 133 218 271
+108 160 264 271
+118 178 0 271
+119 130 257 271
+141 201 181 271
+175 232 151 271
+176 30 252 271
+186 246 256 271
+200 14 187 271
+208 209 0 271
+223 25 111 271
+226 172 237 271
+243 230 0 271
+7 24 241 272
+11 52 249 272
+16 20 125 272
+17 228 263 272
+27 157 159 272
+34 44 253 272
+34 102 240 272
+36 65 44 272
+48 121 147 272
+66 147 206 272
+68 180 88 272
+81 37 267 272
+81 147 196 272
+101 87 261 272
+110 126 0 272
+114 127 227 272
+114 131 256 272
+114 180 82 272
+125 116 251 272
+139 248 50 272
+152 17 262 272
+182 247 108 272
+183 199 122 272
+188 143 235 272
+188 202 250 272
+190 255 243 272
+197 53 205 272
+211 35 266 272
+212 94 203 272
+213 25 247 272
+213 23 233 272
+252 255 237 272
+6 227 246 273
+13 59 0 273
+49 126 0 273
+57 64 0 273
+64 138 246 273
+70 157 240 273
+81 86 261 273
+113 77 254 273
+131 200 201 273
+133 246 236 273
+151 229 0 273
+198 141 165 273
+204 24 213 273
+207 10 204 273
+220 43 60 273
+228 98 189 273
+236 34 204 273
+247 197 181 273
+248 9 0 273
+12 90 0 274
+37 199 196 274
+50 204 192 274
+52 127 0 274
+52 129 267 274
+65 117 0 274
+126 145 250 274
+138 250 259 274
+191 186 0 274
+197 219 271 274
+202 23 254 274
+223 78 264 274
+225 31 269 274
+3 82 267 275
+9 122 61 275
+31 8 258 275
+68 196 240 275
+70 150 114 275
+114 102 87 275
+115 241 252 275
+122 182 141 275
+142 205 0 275
+156 219 0 275
+170 175 245 275
+172 252 225 275
+174 249 203 275
+177 119 260 275
+177 184 257 275
+217 203 0 275
+234 46 258 275
+240 44 266 275
+33 113 0 276
+45 28 234 276
+60 75 212 276
+66 126 245 276
+81 104 259 276
+83 92 189 276
+110 148 256 276
+115 191 243 276
+128 188 248 276
+136 244 245 276
+141 250 140 276
+173 225 0 276
+184 230 163 276
+187 196 257 276
+188 206 246 276
+218 201 249 276
+226 184 165 276
+239 36 0 276
+7 74 0 277
+23 91 0 277
+26 20 235 277
+32 82 264 277
+43 89 0 277
+63 67 271 277
+75 87 0 277
+85 151 211 277
+112 182 182 277
+133 172 215 277
+140 221 0 277
+162 230 170 277
+178 72 0 277
+180 232 252 277
+186 249 249 277
+224 28 257 277
+240 252 150 277
+240 47 112 277
+249 43 254 277
+3 83 238 278
+76 154 261 278
+106 124 0 278
+129 83 0 278
+149 200 227 278
+151 201 224 278
+223 15 260 278
+231 55 223 278
+232 35 0 278
+242 205 186 278
+248 33 265 278
+6 24 241 279
+17 229 250 279
+23 29 173 279
+49 65 42 279
+78 8 255 279
+87 198 170 279
+93 43 0 279
+93 141 272 279
+101 169 162 279
+101 108 0 279
+105 37 98 279
+107 234 17 279
+147 239 272 279
+153 201 224 279
+177 245 252 279
+185 246 235 279
+204 73 249 279
+207 78 156 279
+209 21 254 279
+226 53 268 279
+237 187 0 279
+244 36 0 279
+253 42 0 279
+253 1 174 279
+21 97 146 280
+49 195 0 280
+51 119 0 280
+57 122 0 280
+63 192 261 280
+86 167 100 280
+102 177 263 280
+111 123 237 280
+125 51 263 280
+132 17 127 280
+151 165 147 280
+188 141 0 280
+202 207 213 280
+251 11 160 280
+43 111 266 281
+58 14 223 281
+64 10 238 281
+85 27 65 281
+99 166 221 281
+108 237 263 281
+108 162 194 281
+129 72 0 281
+129 187 246 281
+140 218 0 281
+147 223 274 281
+164 192 79 281
+168 235 270 281
+193 243 0 281
+196 1 0 281
+207 21 272 281
+212 8 259 281
+224 238 0 281
+232 252 263 281
+243 114 255 281
+4 129 164 282
+10 73 257 282
+11 87 274 282
+78 94 0 282
+97 39 265 282
+108 127 278 282
+115 134 256 282
+115 168 0 282
+126 91 258 282
+142 144 0 282
+144 255 102 282
+196 256 117 282
+197 203 89 282
+204 89 155 282
+205 15 204 282
+206 255 31 282
+207 8 258 282
+227 247 266 282
+246 34 213 282
+247 24 269 282
+248 120 276 282
+254 248 266 282
+255 42 0 282
+10 126 280 283
+12 75 225 283
+22 101 0 283
+36 84 281 283
+64 192 223 283
+66 129 166 283
+67 194 250 283
+68 131 0 283
+69 177 244 283
+75 95 263 283
+80 140 0 283
+89 108 252 283
+93 75 257 283
+95 98 270 283
+159 212 0 283
+166 247 264 283
+190 206 248 283
+211 81 240 283
+217 229 265 283
+219 44 259 283
+221 225 246 283
+223 1 223 283
+235 28 247 283
+246 202 254 283
+6 72 255 284
+13 114 271 284
+22 89 0 284
+33 53 252 284
+56 102 0 284
+62 116 237 284
+72 131 0 284
+92 198 211 284
+110 191 255 284
+114 104 0 284
+153 233 0 284
+153 171 0 284
+169 249 0 284
+176 186 268 284
+182 192 167 284
+199 121 260 284
+202 12 162 284
+205 31 214 284
+231 82 250 284
+253 196 178 284
+254 14 233 284
+3 117 0 285
+5 117 117 285
+33 39 259 285
+50 23 256 285
+55 53 200 285
+60 23 199 285
+71 131 139 285
+85 98 264 285
+86 98 279 285
+106 94 270 285
+123 173 256 285
+125 15 149 285
+164 143 203 285
+175 187 26 285
+190 179 123 285
+200 225 240 285
+210 161 0 285
+214 234 199 285
+214 204 0 285
+222 31 257 285
+3 95 162 286
+5 252 260 286
+25 91 151 286
+35 114 184 286
+56 68 272 286
+76 79 191 286
+100 189 0 286
+152 161 0 286
+171 191 0 286
+173 238 0 286
+176 225 0 286
+177 130 262 286
+177 226 0 286
+177 193 246 286
+185 176 205 286
+190 196 199 286
+192 238 246 286
+193 221 264 286
+201 10 253 286
+214 219 0 286
+224 249 206 286
+243 15 270 286
+247 244 253 286
+254 5 241 286
+29 91 188 287
+46 244 0 287
+51 127 0 287
+60 74 0 287
+78 129 0 287
+78 192 277 287
+82 150 222 287
+90 155 268 287
+93 154 0 287
+100 238 275 287
+107 237 257 287
+115 130 241 287
+148 150 270 287
+152 228 277 287
+164 131 31 287
+171 45 200 287
+184 149 261 287
+205 219 243 287
+213 5 230 287
+221 201 93 287
+222 208 265 287
+225 45 255 287
+234 30 262 287
+243 40 0 287
+247 5 253 287
+16 95 0 288
+24 57 277 288
+32 84 148 288
+36 117 215 288
+49 14 196 288
+59 52 246 288
+63 79 69 288
+93 130 274 288
+100 210 265 288
+116 117 0 288
+117 134 268 288
+129 206 218 288
+137 197 280 288
+157 233 69 288
+172 240 231 288
+176 143 210 288
+180 183 174 288
+184 132 227 288
+185 138 221 288
+200 209 0 288
+214 26 64 288
+234 44 272 288
+13 63 0 289
+49 5 184 289
+81 132 284 289
+86 166 0 289
+93 110 225 289
+96 100 269 289
+99 173 280 289
+123 177 287 289
+156 234 0 289
+176 46 158 289
+193 14 179 289
+198 23 199 289
+200 212 36 289
+218 249 52 289
+17 29 0 290
+36 56 226 290
+52 77 0 290
+90 84 250 290
+94 160 264 290
+116 164 0 290
+130 148 89 290
+134 188 267 290
+149 215 261 290
+169 158 208 290
+175 245 265 290
+210 232 0 290
+213 2 0 290
+222 46 127 290
+4 84 0 291
+50 9 145 291
+74 124 0 291
+82 51 200 291
+96 146 262 291
+104 119 0 291
+106 62 273 291
+106 170 0 291
+109 160 202 291
+119 162 0 291
+119 139 211 291
+147 200 0 291
+167 41 283 291
+177 166 190 291
+177 168 0 291
+180 135 188 291
+184 153 277 291
+190 144 0 291
+193 238 104 291
+214 227 0 291
+219 11 258 291
+232 39 0 291
+252 202 0 291
+4 33 284 292
+15 8 212 292
+32 42 0 292
+38 104 242 292
+47 154 282 292
+50 118 253 292
+61 20 286 292
+88 108 93 292
+94 164 287 292
+106 123 0 292
+113 161 135 292
+125 173 247 292
+129 95 0 292
+131 188 271 292
+134 242 272 292
+154 151 213 292
+157 214 272 292
+159 205 0 292
+178 68 0 292
+212 216 0 292
+213 246 244 292
+223 33 270 292
+11 123 277 293
+12 31 89 293
+43 128 287 293
+49 207 0 293
+50 21 256 293
+59 78 284 293
+78 190 277 293
+80 206 242 293
+103 119 0 293
+105 185 0 293
+109 98 94 293
+148 216 257 293
+153 197 260 293
+166 180 253 293
+203 74 272 293
+205 195 177 293
+207 52 0 293
+33 109 239 294
+47 122 271 294
+61 53 228 294
+70 80 248 294
+78 145 0 294
+80 92 0 294
+106 169 0 294
+115 182 242 294
+120 132 273 294
+129 149 183 294
+130 190 262 294
+133 245 168 294
+145 206 261 294
+151 200 0 294
+176 255 239 294
+177 68 201 294
+180 195 150 294
+212 231 200 294
+228 82 250 294
+237 225 0 294
+241 239 0 294
+247 256 286 294
+1 7 267 295
+6 220 252 295
+11 91 0 295
+16 3 180 295
+33 125 247 295
+54 105 249 295
+75 71 0 295
+83 161 0 295
+97 161 189 295
+107 167 202 295
+111 162 278 295
+112 191 232 295
+113 192 228 295
+120 68 0 295
+126 115 0 295
+134 186 54 295
+137 192 133 295
+141 147 252 295
+149 209 252 295
+166 131 258 295
+177 238 0 295
+185 233 0 295
+185 144 177 295
+218 170 52 295
+242 49 0 295
+243 57 177 295
+254 144 0 295
+9 22 242 296
+11 23 118 296
+13 74 0 296
+27 80 0 296
+37 104 179 296
+49 56 0 296
+76 142 252 296
+99 152 0 296
+103 174 210 296
+137 183 212 296
+146 173 52 296
+154 189 119 296
+185 192 150 296
+193 148 267 296
+194 53 194 296
+213 21 0 296
+215 236 48 296
+243 3 150 296
+249 9 274 296
+11 31 93 297
+20 85 282 297
+36 58 205 297
+38 121 230 297
+64 68 236 297
+75 182 0 297
+75 253 279 297
+100 225 228 297
+128 164 206 297
+140 214 0 297
+185 128 0 297
+224 230 255 297
+226 220 284 297
+232 235 254 297
+241 205 283 297
+52 8 266 298
+79 96 175 298
+80 84 150 298
+97 158 255 298
+103 233 79 298
+109 122 200 298
+120 180 0 298
+122 177 288 298
+137 141 0 298
+143 250 114 298
+156 170 0 298
+160 170 87 298
+177 132 248 298
+180 141 285 298
+205 16 194 298
+207 197 287 298
+208 27 0 298
+224 44 238 298
+241 46 0 298
+248 36 255 298
+253 228 0 298
+256 202 0 298
+1 66 254 299
+13 77 0 299
+15 81 288 299
+18 110 265 299
+23 73 0 299
+31 77 0 299
+41 228 272 299
+49 115 297 299
+63 100 201 299
+69 76 270 299
+77 95 0 299
+107 233 49 299
+123 71 284 299
+125 98 166 299
+133 198 0 299
+137 187 290 299
+156 230 0 299
+163 212 0 299
+171 175 0 299
+174 218 157 299
+180 182 258 299
+185 134 265 299
+193 245 151 299
+210 228 0 299
+6 28 260 300
+24 54 254 300
+30 58 272 300
+34 118 192 300
+52 16 194 300
+79 144 0 300
+93 84 0 300
+100 209 272 300
+103 109 255 300
+103 170 0 300
+104 121 0 300
+112 116 266 300
+120 136 112 300
+133 186 100 300
+138 221 134 300
+147 226 258 300
+148 228 274 300
+155 171 0 300
+185 245 278 300
+201 22 244 300
+206 148 223 300
+214 226 277 300
+231 101 237 300
+231 40 76 300
+243 56 0 300
+247 9 108 300
+255 16 194 300
+5 9 0 301
+17 22 262 301
+21 89 295 301
+33 83 291 301
+64 124 126 301
+69 73 0 301
+85 145 181 301
+85 150 0 301
+90 110 0 301
+98 163 269 301
+101 113 291 301
+103 112 115 301
+130 180 0 301
+153 188 260 301
+159 218 274 301
+159 195 220 301
+166 242 268 301
+168 170 198 301
+178 226 196 301
+180 196 193 301
+190 175 234 301
+191 245 157 301
+194 21 258 301
+196 255 54 301
+205 132 0 301
+205 14 0 301
+218 209 279 301
+222 29 0 301
+229 34 0 301
+46 98 79 302
+57 5 168 302
+59 76 273 302
+64 76 153 302
+65 7 222 302
+78 67 0 302
+78 141 0 302
+79 253 254 302
+84 141 279 302
+133 168 182 302
+148 17 204 302
+161 229 0 302
+185 230 0 302
+187 180 200 302
+198 152 268 302
+208 26 0 302
+217 230 34 302
+245 1 238 302
+6 69 128 303
+12 29 0 303
+25 45 78 303
+47 51 201 303
+52 79 276 303
+54 9 285 303
+80 109 237 303
+111 163 168 303
+113 164 207 303
+128 141 0 303
+131 246 0 303
+149 198 0 303
+154 110 170 303
+162 172 83 303
+179 238 258 303
+186 256 245 303
+199 21 265 303
+200 229 173 303
+204 5 125 303
+204 21 0 303
+204 76 205 303
+207 4 0 303
+211 226 275 303
+214 200 0 303
+220 39 173 303
+229 18 0 303
+231 54 99 303
+27 87 0 304
+52 68 32 304
+90 150 0 304
+96 237 266 304
+102 71 115 304
+108 230 133 304
+113 68 218 304
+113 191 231 304
+133 197 0 304
+134 138 0 304
+134 155 267 304
+149 197 253 304
+153 136 260 304
+172 186 119 304
+207 212 222 304
+213 17 242 304
+215 24 0 304
+225 61 250 304
+244 114 270 304
+254 136 216 304
+26 58 263 305
+32 44 0 305
+34 5 193 305
+46 53 18 305
+47 127 139 305
+65 82 298 305
+85 40 232 305
+91 79 173 305
+94 88 259 305
+101 106 48 305
+104 120 0 305
+118 178 285 305
+124 157 259 305
+174 124 226 305
+174 235 192 305
+200 202 259 305
+216 235 205 305
+223 25 289 305
+253 242 207 305
+255 2 284 305
+7 130 227 306
+8 9 299 306
+19 23 290 306
+25 230 275 306
+37 115 298 306
+41 249 175 306
+43 122 258 306
+56 98 305 306
+65 85 288 306
+99 102 201 306
+110 148 296 306
+116 145 203 306
+134 139 0 306
+156 216 214 306
+173 163 25 306
+176 241 0 306
+187 235 272 306
+194 22 275 306
+227 36 282 306
+241 231 280 306
+253 193 139 306
+17 197 287 307
+27 108 295 307
+28 42 0 307
+30 44 244 307
+52 117 0 307
+59 71 276 307
+92 172 287 307
+93 158 0 307
+104 172 284 307
+116 95 181 307
+116 136 282 307
+123 153 282 307
+131 200 289 307
+134 91 0 307
+138 139 0 307
+139 136 63 307
+155 224 0 307
+166 247 290 307
+167 215 0 307
+168 234 243 307
+171 239 180 307
+190 238 0 307
+205 221 0 307
+212 229 0 307
+227 40 0 307
+254 53 177 307
+6 76 261 308
+20 101 272 308
+34 104 212 308
+42 109 224 308
+44 47 148 308
+51 128 239 308
+52 199 278 308
+64 4 252 308
+66 147 294 308
+67 95 0 308
+87 80 99 308
+92 135 222 308
+96 127 258 308
+104 214 297 308
+113 133 285 308
+163 176 57 308
+168 254 295 308
+181 245 0 308
+184 186 132 308
+225 245 280 308
+237 164 267 308
+252 77 298 308
+254 232 300 308
+16 81 290 309
+37 117 67 309
+64 51 273 309
+71 186 0 309
+84 239 300 309
+99 159 266 309
+114 132 278 309
+126 95 123 309
+130 141 279 309
+137 157 0 309
+150 215 264 309
+154 148 78 309
+193 2 0 309
+224 225 0 309
+241 53 0 309
+244 8 237 309
+11 93 0 310
+12 21 0 310
+18 40 0 310
+49 245 122 310
+54 103 264 310
+88 132 301 310
+93 79 0 310
+120 135 136 310
+128 68 82 310
+132 151 253 310
+135 250 247 310
+140 246 0 310
+147 197 279 310
+152 172 285 310
+157 198 160 310
+183 235 134 310
+185 250 0 310
+212 24 108 310
+214 211 0 310
+242 201 302 310
+248 250 304 310
+12 27 0 311
+17 65 301 311
+46 1 79 311
+80 160 191 311
+91 171 277 311
+134 156 248 311
+137 80 0 311
+141 148 247 311
+159 211 221 311
+163 245 0 311
+177 117 0 311
+227 86 280 311
+239 229 215 311
+33 53 297 312
+48 53 303 312
+74 141 266 312
+83 110 254 312
+85 95 281 312
+88 210 293 312
+106 110 0 312
+107 234 304 312
+126 143 210 312
+128 253 267 312
+152 200 0 312
+159 164 295 312
+187 238 0 312
+204 27 0 312
+227 49 293 312
+235 58 254 312
+253 141 152 312
+11 137 229 313
+32 63 226 313
+55 90 285 313
+56 14 197 313
+73 72 0 313
+73 134 210 313
+84 196 295 313
+84 237 284 313
+88 164 292 313
+88 229 297 313
+104 161 0 313
+119 172 0 313
+127 143 240 313
+143 238 209 313
+150 231 296 313
+158 224 280 313
+175 251 240 313
+176 209 284 313
+180 232 300 313
+183 186 65 313
+204 8 145 313
+215 230 210 313
+215 29 123 313
+238 50 269 313
+239 243 0 313
+253 129 228 313
+256 57 0 313
+10 95 197 314
+14 95 95 314
+30 35 215 314
+32 82 291 314
+38 115 289 314
+64 79 0 314
+80 154 0 314
+86 108 0 314
+118 134 216 314
+125 77 305 314
+128 143 152 314
+134 197 0 314
+155 169 222 314
+183 42 298 314
+187 255 21 314
+195 212 98 314
+229 238 270 314
+239 10 292 314
+241 1 0 314
+19 35 0 315
+30 95 312 315
+31 82 294 315
+44 112 294 315
+46 51 0 315
+52 190 269 315
+87 186 184 315
+109 169 190 315
+115 128 72 315
+118 23 214 315
+124 250 255 315
+138 135 263 315
+145 131 0 315
+156 224 0 315
+207 16 0 315
+214 232 0 315
+227 31 303 315
+232 42 305 315
+14 116 255 316
+31 3 189 316
+31 68 276 316
+36 127 0 316
+42 112 272 316
+44 108 296 316
+64 114 230 316
+64 74 0 316
+65 145 0 316
+88 156 276 316
+96 112 258 316
+106 119 0 316
+111 190 255 316
+124 190 295 316
+131 159 293 316
+154 235 287 316
+157 233 300 316
+177 148 303 316
+177 242 178 316
+194 255 264 316
+199 119 231 316
+223 235 300 316
+229 24 217 316
+230 45 251 316
+236 256 303 316
+239 32 196 316
+243 48 262 316
+17 10 80 317
+19 80 305 317
+26 109 244 317
+32 36 170 317
+41 34 185 317
+48 51 225 317
+51 126 0 317
+64 53 302 317
+67 184 241 317
+80 140 298 317
+84 210 278 317
+92 218 27 317
+107 161 270 317
+138 205 256 317
+155 233 216 317
+174 148 284 317
+177 253 186 317
+183 6 300 317
+183 38 305 317
+194 248 131 317
+215 224 155 317
+217 224 0 317
+227 243 0 317
+227 5 304 317
+241 195 0 317
+247 59 285 317
+1 54 59 318
+29 97 291 318
+30 110 0 318
+31 65 202 318
+38 43 76 318
+39 60 145 318
+97 115 277 318
+124 79 128 318
+127 115 0 318
+128 67 216 318
+134 214 0 318
+136 50 205 318
+139 200 187 318
+165 171 314 318
+170 144 193 318
+173 223 300 318
+181 170 194 318
+187 58 286 318
+189 140 299 318
+222 234 0 318
+228 82 302 318
+229 33 0 318
+236 240 0 318
+241 61 155 318
+5 72 148 319
+29 33 0 319
+29 96 279 319
+31 80 0 319
+38 59 0 319
+42 117 300 319
+48 35 232 319
+55 71 262 319
+57 12 247 319
+63 115 71 319
+66 84 0 319
+69 12 265 319
+78 94 304 319
+97 127 0 319
+98 67 289 319
+118 72 0 319
+118 87 205 319
+138 202 0 319
+139 248 286 319
+155 208 0 319
+177 143 185 319
+179 229 201 319
+180 240 300 319
+180 50 170 319
+183 231 279 319
+188 256 75 319
+193 5 173 319
+195 31 207 319
+196 173 307 319
+213 144 301 319
+241 34 0 319
+243 35 128 319
+248 200 311 319
+7 67 194 320
+28 109 215 320
+48 98 218 320
+49 18 288 320
+54 12 300 320
+54 185 306 320
+60 102 0 320
+78 157 106 320
+89 43 297 320
+114 78 0 320
+116 138 311 320
+125 190 298 320
+138 188 240 320
+155 237 0 320
+160 234 0 320
+174 175 0 320
+179 248 0 320
+183 57 129 320
+212 66 270 320
+212 27 309 320
+3 82 294 321
+11 70 0 321
+16 75 0 321
+26 125 258 321
+29 81 289 321
+37 52 301 321
+38 86 246 321
+39 109 295 321
+45 60 306 321
+54 11 291 321
+63 189 145 321
+65 72 0 321
+107 160 0 321
+116 191 0 321
+126 132 260 321
+153 192 274 321
+163 179 0 321
+214 41 0 321
+223 32 0 321
+225 248 298 321
+253 206 149 321
+17 30 0 322
+17 33 0 322
+18 69 297 322
+26 46 0 322
+38 103 264 322
+43 96 0 322
+43 121 0 322
+46 27 292 322
+46 110 0 322
+56 130 223 322
+62 77 0 322
+94 148 245 322
+96 148 122 322
+96 176 299 322
+104 127 206 322
+142 109 263 322
+147 167 0 322
+164 129 135 322
+175 235 238 322
+177 175 0 322
+177 226 303 322
+183 244 308 322
+191 131 263 322
+191 193 0 322
+205 132 319 322
+206 173 298 322
+208 2 286 322
+212 35 0 322
+226 50 0 322
+245 42 303 322
+5 18 295 323
+15 56 196 323
+22 105 314 323
+26 61 14 323
+31 21 299 323
+32 99 293 323
+36 111 257 323
+36 104 235 323
+56 178 76 323
+57 64 301 323
+74 137 0 323
+168 171 294 323
+170 140 292 323
+188 203 0 323
+194 21 317 323
+210 164 294 323
+213 201 0 323
+237 167 307 323
+241 189 124 323
+251 27 314 323
+255 33 299 323
+8 41 307 324
+27 112 289 324
+32 110 0 324
+34 120 249 324
+43 111 287 324
+46 81 290 324
+49 40 0 324
+79 191 0 324
+86 165 0 324
+89 169 189 324
+93 157 0 324
+95 160 224 324
+113 189 0 324
+114 14 192 324
+127 165 271 324
+128 162 295 324
+152 162 0 324
+154 141 238 324
+156 176 300 324
+158 218 117 324
+163 180 250 324
+192 198 309 324
+195 15 247 324
+203 59 309 324
+207 200 188 324
+225 2 258 324
+228 21 305 324
+234 175 0 324
+4 33 316 325
+15 67 197 325
+46 109 254 325
+93 76 43 325
+107 157 0 325
+125 75 149 325
+132 195 0 325
+154 159 0 325
+159 202 303 325
+162 189 296 325
+190 77 0 325
+193 1 0 325
+197 12 312 325
+211 228 165 325
+215 208 99 325
+215 235 65 325
+225 35 240 325
+237 230 241 325
+245 60 312 325
+246 12 287 325
+255 51 279 325
+8 101 311 326
+9 93 305 326
+10 94 79 326
+19 99 0 326
+38 98 278 326
+85 137 312 326
+111 113 121 326
+115 164 0 326
+124 234 303 326
+125 189 0 326
+136 17 220 326
+138 189 256 326
+153 158 102 326
+163 240 279 326
+170 230 34 326
+227 248 321 326
+234 218 0 326
+247 39 169 326
+253 1 299 326
+253 244 0 326
+7 122 308 327
+10 81 241 327
+23 88 317 327
+27 111 286 327
+31 66 229 327
+31 95 0 327
+37 53 0 327
+39 125 294 327
+46 113 297 327
+49 50 0 327
+56 137 299 327
+74 71 0 327
+85 146 0 327
+87 96 290 327
+91 150 271 327
+94 159 267 327
+116 141 211 327
+122 71 116 327
+130 101 317 327
+152 232 78 327
+157 209 309 327
+161 235 305 327
+204 41 26 327
+210 5 309 327
+217 235 0 327
+225 41 287 327
+233 42 307 327
+234 182 313 327
+242 6 297 327
+247 106 287 327
+1 199 241 328
+5 12 256 328
+53 67 281 328
+54 104 202 328
+156 235 0 328
+177 163 0 328
+185 75 0 328
+201 118 306 328
+211 25 307 328
+234 220 0 328
+241 143 169 328
+248 201 283 328
+1 31 200 329
+7 74 306 329
+55 98 306 329
+57 122 301 329
+63 77 0 329
+65 110 325 329
+84 150 299 329
+85 151 322 329
+98 161 0 329
+103 168 0 329
+109 98 323 329
+118 67 0 329
+119 75 0 329
+126 76 220 329
+154 234 0 329
+158 223 282 329
+163 127 188 329
+166 232 239 329
+176 218 0 329
+191 179 0 329
+211 41 230 329
+6 58 299 330
+9 71 154 330
+14 32 272 330
+18 39 131 330
+46 32 0 330
+59 16 197 330
+61 29 289 330
+74 141 325 330
+81 36 258 330
+123 249 42 330
+135 150 201 330
+136 200 0 330
+176 221 288 330
+176 226 163 330
+186 129 318 330
+194 1 231 330
+220 42 0 330
+229 21 34 330
+248 42 193 330
+252 122 298 330
+2 33 276 331
+31 225 312 331
+32 18 210 331
+33 109 322 331
+35 95 308 331
+58 112 273 331
+62 110 0 331
+80 156 242 331
+82 110 53 331
+84 209 224 331
+92 140 0 331
+100 159 264 331
+118 64 308 331
+122 140 298 331
+151 233 0 331
+153 221 124 331
+154 121 315 331
+173 202 303 331
+174 164 0 331
+175 34 310 331
+177 168 295 331
+178 245 0 331
+183 199 277 331
+195 225 318 331
+214 225 291 331
+241 240 178 331
+245 200 312 331
+13 5 246 332
+36 59 317 332
+53 117 0 332
+55 64 277 332
+61 11 309 332
+66 146 132 332
+100 229 222 332
+101 145 303 332
+109 113 314 332
+109 176 302 332
+123 166 279 332
+138 159 0 332
+148 167 325 332
+151 144 270 332
+152 197 272 332
+217 171 0 332
+227 39 184 332
+228 1 236 332
+228 40 72 332
+22 35 330 333
+32 33 0 333
+37 86 0 333
+52 67 164 333
+72 91 195 333
+81 100 139 333
+87 147 309 333
+101 181 0 333
+131 188 328 333
+153 88 293 333
+165 231 272 333
+171 250 308 333
+194 159 236 333
+197 220 264 333
+200 14 296 333
+207 31 92 333
+207 3 0 333
+223 9 307 333
+228 54 128 333
+233 232 234 333
+234 26 112 333
+238 43 329 333
+241 253 0 333
+254 184 199 333
+15 10 0 334
+22 247 322 334
+26 59 10 334
+40 133 310 334
+49 38 291 334
+49 54 29 334
+52 122 235 334
+57 119 170 334
+59 75 0 334
+60 112 224 334
+77 192 166 334
+106 96 240 334
+137 187 328 334
+141 218 254 334
+145 213 284 334
+148 241 295 334
+153 173 316 334
+165 188 324 334
+168 254 326 334
+217 173 300 334
+224 41 207 334
+247 45 219 334
+4 99 174 335
+27 20 194 335
+70 124 0 335
+100 222 251 335
+102 168 186 335
+123 191 0 335
+154 221 0 335
+162 238 266 335
+179 232 0 335
+191 143 0 335
+200 225 313 335
+229 248 66 335
+233 187 329 335
+235 238 329 335
+236 105 185 335
+242 228 228 335
+21 99 302 336
+24 87 291 336
+33 39 325 336
+33 95 313 336
+42 73 276 336
+63 78 130 336
+70 67 313 336
+75 137 0 336
+82 89 328 336
+118 108 295 336
+122 137 108 336
+130 150 148 336
+148 176 0 336
+149 100 202 336
+156 172 0 336
+163 243 279 336
+233 250 324 336
+238 20 333 336
+247 6 282 336
+256 243 304 336
+1 200 288 337
+1 11 317 337
+18 86 251 337
+26 240 0 337
+34 117 0 337
+40 110 248 337
+41 32 326 337
+43 11 314 337
+74 122 0 337
+74 158 310 337
+78 90 307 337
+79 127 224 337
+80 94 0 337
+84 160 145 337
+96 169 0 337
+107 189 0 337
+117 69 0 337
+120 166 0 337
+128 138 0 337
+137 144 0 337
+155 197 265 337
+156 219 304 337
+172 42 314 337
+174 166 285 337
+175 20 327 337
+194 53 320 337
+197 219 320 337
+235 256 263 337
+15 79 0 338
+23 44 314 338
+45 10 289 338
+45 41 0 338
+49 110 0 338
+50 51 299 338
+53 71 320 338
+142 209 0 338
+150 218 186 338
+156 159 304 338
+160 172 315 338
+162 232 193 338
+167 22 326 338
+175 17 336 338
+186 221 328 338
+188 197 188 338
+191 244 0 338
+199 115 330 338
+203 25 249 338
+210 167 0 338
+210 226 0 338
+240 243 271 338
+246 11 289 338
+247 58 0 338
+250 59 318 338
+254 52 328 338
+256 36 325 338
+12 72 130 339
+31 2 0 339
+37 55 0 339
+45 57 220 339
+45 109 0 339
+57 101 329 339
+62 116 302 339
+66 116 194 339
+68 146 0 339
+74 30 294 339
+74 79 0 339
+116 77 0 339
+141 173 290 339
+142 161 242 339
+166 247 316 339
+168 244 316 339
+173 209 61 339
+175 31 328 339
+211 239 235 339
+215 12 0 339
+222 208 316 339
+225 49 267 339
+234 255 327 339
+235 47 335 339
+251 11 288 339
+254 50 0 339
+255 63 0 339
+10 4 213 340
+25 76 262 340
+49 5 323 340
+82 92 323 340
+83 92 319 340
+89 134 0 340
+109 161 0 340
+137 197 327 340
+157 148 81 340
+157 223 301 340
+171 236 213 340
+178 191 0 340
+183 248 0 340
+188 155 249 340
+196 237 302 340
+199 119 322 340
+216 228 217 340
+227 44 301 340
+1 116 253 341
+3 18 99 341
+7 115 315 341
+15 66 192 341
+26 48 0 341
+31 15 0 341
+34 104 336 341
+39 146 329 341
+49 65 319 341
+71 179 334 341
+78 113 260 341
+89 150 0 341
+93 138 0 341
+93 145 219 341
+105 149 335 341
+107 233 321 341
+114 179 321 341
+120 129 140 341
+136 244 322 341
+138 132 313 341
+148 162 258 341
+183 144 161 341
+185 176 330 341
+193 13 203 341
+196 219 225 341
+199 69 36 341
+214 197 253 341
+252 56 309 341
+253 201 322 341
+10 80 111 342
+22 33 318 342
+23 101 0 342
+39 83 327 342
+46 248 337 342
+50 250 304 342
+84 149 0 342
+104 229 299 342
+106 73 119 342
+133 68 338 342
+152 218 299 342
+160 208 330 342
+174 192 143 342
+181 123 289 342
+224 225 327 342
+233 41 0 342
+236 40 304 342
+237 43 309 342
+250 11 267 342
+254 14 323 342
+14 8 31 343
+17 16 0 343
+26 47 0 343
+27 94 0 343
+30 44 318 343
+30 59 330 343
+31 97 247 343
+40 92 335 343
+47 105 280 343
+53 126 311 343
+93 27 0 343
+94 88 335 343
+111 240 327 343
+121 179 330 343
+121 189 0 343
+128 173 341 343
+136 209 0 343
+153 152 318 343
+172 26 314 343
+175 255 242 343
+185 245 311 343
+211 31 172 343
+213 165 327 343
+217 203 326 343
+222 226 132 343
+231 82 324 343
+231 101 325 343
+238 47 331 343
+238 58 222 343
+241 49 0 343
+256 63 303 343
+8 88 310 344
+18 98 0 344
+20 90 264 344
+49 14 327 344
+51 7 290 344
+53 66 316 344
+64 177 328 344
+77 140 290 344
+83 163 0 344
+125 177 300 344
+126 130 257 344
+134 198 0 344
+141 209 226 344
+148 224 269 344
+235 246 338 344
+242 49 317 344
+254 194 27 344
+256 78 332 344
+21 39 133 345
+22 19 330 345
+23 39 0 345
+27 48 229 345
+41 92 330 345
+44 92 327 345
+57 125 292 345
+68 192 149 345
+127 205 308 345
+148 127 181 345
+174 75 240 345
+196 224 112 345
+198 152 324 345
+202 235 260 345
+202 23 322 345
+208 30 0 345
+213 209 244 345
+234 46 325 345
+242 200 0 345
+242 199 0 345
+245 250 277 345
+17 219 270 346
+17 224 0 346
+24 92 303 346
+30 90 286 346
+33 83 317 346
+49 126 321 346
+54 11 334 346
+62 114 170 346
+63 121 88 346
+71 91 0 346
+93 99 254 346
+97 128 322 346
+105 151 337 346
+109 99 124 346
+123 183 225 346
+125 173 343 346
+129 182 297 346
+133 198 329 346
+167 38 329 346
+168 131 177 346
+169 249 290 346
+170 235 23 346
+177 176 0 346
+178 168 0 346
+181 170 328 346
+184 232 184 346
+185 189 0 346
+190 161 146 346
+5 34 323 347
+9 126 313 347
+22 101 303 347
+57 105 159 347
+59 12 256 347
+68 193 111 347
+71 77 176 347
+112 77 61 347
+139 192 0 347
+149 198 332 347
+184 207 324 347
+184 53 325 347
+191 129 0 347
+210 165 0 347
+232 52 343 347
+237 249 0 347
+246 55 306 347
+252 12 0 347
+1 69 48 348
+4 145 94 348
+4 132 269 348
+10 47 197 348
+11 71 0 348
+13 126 0 348
+14 69 176 348
+15 69 179 348
+27 76 0 348
+40 52 0 348
+55 92 325 348
+66 33 282 348
+74 19 256 348
+102 178 107 348
+134 180 332 348
+138 158 0 348
+141 208 313 348
+142 134 329 348
+146 102 324 348
+153 103 317 348
+178 194 129 348
+185 230 322 348
+252 73 140 348
+6 53 171 349
+16 27 0 349
+17 81 250 349
+23 37 300 349
+26 239 105 349
+27 96 0 349
+28 83 330 349
+51 119 304 349
+51 71 318 349
+59 110 0 349
+74 47 304 349
+81 86 321 349
+89 149 265 349
+113 79 0 349
+114 110 231 349
+118 178 339 349
+127 226 259 349
+153 206 169 349
+155 196 143 349
+167 227 320 349
+185 233 323 349
+189 249 199 349
+204 78 346 349
+225 30 0 349
+227 101 203 349
+233 253 323 349
+245 56 312 349
+13 10 0 350
+26 90 0 350
+66 94 42 350
+72 213 302 350
+74 155 326 350
+83 151 0 350
+84 152 0 350
+87 146 301 350
+89 101 187 350
+96 127 328 350
+97 52 284 350
+97 158 323 350
+100 102 122 350
+108 73 282 350
+115 73 320 350
+137 77 185 350
+137 183 320 350
+144 16 316 350
+196 203 123 350
+196 202 136 350
+210 198 326 350
+211 53 327 350
+212 235 306 350
+238 13 222 350
+256 17 342 350
+5 15 199 351
+6 3 100 351
+18 88 248 351
+21 88 312 351
+34 110 279 351
+56 12 274 351
+82 105 328 351
+94 104 280 351
+106 11 251 351
+111 175 0 351
+112 113 209 351
+112 116 326 351
+114 14 340 351
+137 157 332 351
+144 196 141 351
+195 7 221 351
+212 10 248 351
+224 33 0 351
+227 247 314 351
+229 243 0 351
+234 48 330 351
+237 25 341 351
+248 6 140 351
+16 28 329 352
+25 45 323 352
+28 154 343 352
+49 98 0 352
+53 98 270 352
+66 132 233 352
+80 90 0 352
+81 104 332 352
+89 44 216 352
+93 69 335 352
+121 169 0 352
+126 69 169 352
+133 213 264 352
+135 6 59 352
+144 156 276 352
+146 92 285 352
+161 162 0 352
+214 204 306 352
+225 243 0 352
+234 239 0 352
+245 6 289 352
+12 120 290 353
+66 133 329 353
+78 128 0 353
+93 126 225 353
+100 225 336 353
+101 181 342 353
+102 179 203 353
+111 189 0 353
+124 172 45 353
+127 239 329 353
+136 50 332 353
+164 230 313 353
+164 255 314 353
+166 131 329 353
+195 52 327 353
+198 157 329 353
+213 231 0 353
+215 29 325 353
+236 30 266 353
+28 107 0 354
+32 173 340 354
+41 88 347 354
+49 245 330 354
+76 154 310 354
+83 103 273 354
+125 73 294 354
+127 129 238 354
+159 224 284 354
+163 212 344 354
+175 216 324 354
+188 203 341 354
+191 209 343 354
+228 41 342 354
+234 238 0 354
+244 6 304 354
+255 33 336 354
+1 63 0 355
+39 72 310 355
+48 107 288 355
+49 114 0 355
+60 78 338 355
+60 124 0 355
+67 151 300 355
+71 138 0 355
+77 155 308 355
+82 150 309 355
+84 132 169 355
+89 21 318 355
+93 130 321 355
+115 137 320 355
+117 170 337 355
+145 160 136 355
+162 238 337 355
+183 186 327 355
+185 71 0 355
+196 160 183 355
+201 218 344 355
+205 249 290 355
+220 251 302 355
+223 240 345 355
+247 59 338 355
+2 28 327 356
+38 251 330 356
+39 165 322 356
+53 7 0 356
+62 77 333 356
+100 147 228 356
+107 158 0 356
+111 148 0 356
+112 177 280 356
+118 3 0 356
+138 154 0 356
+140 203 0 356
+159 164 334 356
+162 229 0 356
+169 216 278 356
+174 177 282 356
+183 251 108 356
+191 232 345 356
+202 26 191 356
+210 231 0 356
+215 199 302 356
+219 209 298 356
+219 20 229 356
+224 16 314 356
+235 10 303 356
+240 47 349 356
+242 211 328 356
+253 30 331 356
+16 90 313 357
+34 55 203 357
+37 99 189 357
+39 87 312 357
+46 64 279 357
+53 118 0 357
+53 116 285 357
+75 206 251 357
+92 165 201 357
+99 102 322 357
+100 173 0 357
+119 198 341 357
+142 136 226 357
+180 194 51 357
+185 249 0 357
+198 220 0 357
+200 69 290 357
+215 206 188 357
+219 236 47 357
+219 43 0 357
+224 253 326 357
+246 59 315 357
+6 120 330 358
+28 55 207 358
+28 102 299 358
+30 58 325 358
+41 33 334 358
+50 21 340 358
+64 4 331 358
+81 132 324 358
+90 84 323 358
+93 84 331 358
+94 177 300 358
+101 110 256 358
+111 177 0 358
+113 129 223 358
+157 196 251 358
+158 223 340 358
+160 175 0 358
+181 150 333 358
+181 169 287 358
+191 235 351 358
+198 221 101 358
+204 70 172 358
+208 64 0 358
+213 23 355 358
+216 226 0 358
+2 130 311 359
+51 126 346 359
+63 123 161 359
+66 142 218 359
+84 107 336 359
+90 150 323 359
+92 218 354 359
+116 136 351 359
+117 169 344 359
+117 172 350 359
+124 166 193 359
+136 17 348 359
+143 14 335 359
+155 223 71 359
+162 243 292 359
+167 170 0 359
+173 253 260 359
+185 241 323 359
+190 181 354 359
+191 224 340 359
+202 29 162 359
+206 10 304 359
+216 38 287 359
+219 78 334 359
+224 238 314 359
+254 195 0 359
+10 19 211 360
+24 106 325 360
+32 138 321 360
+34 120 331 360
+46 125 0 360
+55 169 346 360
+62 30 269 360
+62 128 77 360
+64 12 0 360
+83 165 0 360
+121 172 94 360
+125 171 348 360
+131 243 303 360
+149 229 0 360
+158 206 103 360
+167 139 348 360
+185 150 333 360
+207 52 313 360
+28 35 295 361
+34 99 285 361
+54 9 339 361
+58 128 264 361
+73 170 336 361
+81 134 345 361
+101 152 346 361
+104 148 287 361
+109 121 205 361
+119 187 338 361
+128 171 340 361
+133 139 7 361
+163 22 334 361
+178 68 327 361
+180 136 166 361
+188 247 80 361
+200 71 324 361
+201 12 13 361
+202 256 344 361
+16 20 307 362
+55 90 331 362
+56 9 297 362
+64 3 244 362
+66 80 308 362
+68 136 61 362
+82 87 311 362
+109 156 286 362
+115 129 140 362
+121 171 290 362
+139 151 0 362
+160 209 0 362
+187 135 355 362
+188 197 352 362
+204 8 344 362
+241 139 329 362
+13 65 226 363
+24 102 317 363
+25 38 228 363
+25 106 306 363
+28 40 80 363
+51 15 163 363
+66 137 358 363
+69 151 326 363
+81 146 0 363
+89 80 0 363
+91 171 345 363
+104 147 286 363
+110 178 305 363
+123 143 126 363
+147 223 334 363
+160 148 0 363
+188 235 339 363
+209 45 345 363
+233 247 0 363
+241 135 339 363
+247 250 0 363
+16 96 338 364
+27 87 328 364
+42 15 344 364
+50 52 307 364
+51 67 188 364
+67 241 337 364
+81 149 334 364
+109 170 285 364
+117 67 0 364
+119 170 192 364
+141 147 319 364
+161 241 61 364
+200 12 270 364
+204 77 343 364
+204 89 311 364
+207 221 217 364
+225 38 288 364
+236 240 327 364
+244 114 339 364
+245 54 0 364
+4 134 328 365
+5 65 0 365
+10 20 162 365
+32 86 337 365
+36 109 0 365
+40 146 349 365
+49 205 330 365
+50 118 311 365
+52 178 343 365
+55 174 353 365
+70 16 271 365
+125 15 307 365
+144 223 144 365
+189 62 362 365
+199 2 0 365
+228 230 297 365
+231 23 243 365
+2 120 329 366
+4 96 144 366
+30 35 349 366
+35 102 0 366
+41 102 332 366
+50 204 321 366
+55 154 342 366
+68 88 325 366
+73 135 361 366
+85 33 276 366
+134 217 209 366
+191 168 281 366
+200 82 334 366
+216 235 350 366
+249 240 0 366
+3 178 329 367
+14 21 185 367
+32 76 307 367
+37 245 0 367
+39 181 293 367
+45 255 242 367
+79 144 339 367
+85 90 353 367
+108 128 266 367
+116 241 343 367
+143 160 326 367
+222 17 0 367
+231 251 349 367
+240 205 272 367
+244 54 142 367
+46 93 348 368
+56 85 284 368
+56 181 213 368
+67 194 294 368
+81 98 128 368
+84 112 343 368
+88 132 323 368
+97 39 359 368
+116 193 276 368
+119 72 139 368
+126 76 355 368
+137 150 347 368
+161 165 0 368
+216 236 107 368
+246 8 357 368
+251 199 343 368
+252 208 68 368
+2 7 0 369
+12 157 357 369
+34 3 201 369
+37 27 350 369
+43 60 262 369
+70 138 0 369
+73 128 248 369
+85 44 323 369
+91 68 251 369
+98 133 357 369
+100 176 227 369
+121 183 324 369
+130 194 0 369
+160 31 331 369
+183 194 167 369
+213 21 347 369
+246 44 291 369
+41 90 300 370
+51 128 344 370
+61 244 0 370
+81 110 146 370
+93 21 324 370
+96 99 178 370
+141 223 227 370
+170 249 0 370
+179 201 356 370
+189 45 344 370
+200 231 241 370
+200 53 291 370
+208 20 200 370
+235 106 313 370
+4 71 346 371
+35 146 275 371
+43 102 352 371
+49 125 258 371
+50 9 321 371
+68 143 0 371
+69 86 305 371
+103 121 0 371
+110 162 256 371
+114 7 0 371
+124 128 0 371
+124 250 352 371
+125 96 200 371
+138 206 146 371
+149 140 241 371
+155 197 350 371
+165 216 232 371
+172 226 359 371
+184 226 344 371
+186 256 345 371
+188 256 344 371
+204 74 151 371
+211 6 0 371
+228 63 346 371
+256 43 281 371
+4 79 0 372
+12 105 341 372
+32 158 311 372
+33 40 0 372
+43 128 327 372
+50 23 319 372
+90 151 319 372
+106 128 0 372
+122 192 156 372
+124 234 346 372
+134 95 360 372
+142 221 161 372
+161 212 326 372
+183 197 0 372
+196 21 362 372
+203 77 348 372
+211 231 22 372
+223 21 366 372
+231 85 303 372
+252 15 345 372
+6 54 139 373
+19 29 211 373
+30 34 305 373
+31 240 331 373
+46 58 207 373
+69 76 337 373
+73 134 331 373
+78 76 162 373
+120 135 356 373
+124 189 192 373
+139 206 0 373
+141 193 205 373
+145 141 0 373
+172 45 315 373
+172 201 340 373
+174 167 358 373
+183 252 0 373
+209 238 282 373
+211 56 349 373
+227 97 111 373
+228 244 0 373
+229 238 351 373
+230 199 346 373
+238 52 295 373
+240 58 85 373
+246 118 260 373
+5 14 33 374
+22 12 0 374
+51 110 0 374
+74 75 0 374
+87 186 352 374
+94 112 270 374
+110 104 223 374
+120 130 0 374
+181 164 0 374
+208 60 336 374
+214 236 0 374
+215 231 0 374
+241 225 0 374
+251 106 288 374
+23 105 278 375
+32 174 331 375
+46 52 0 375
+57 115 315 375
+75 96 330 375
+78 89 323 375
+83 110 354 375
+124 131 329 375
+134 150 0 375
+141 203 158 375
+143 250 361 375
+145 129 0 375
+215 225 354 375
+230 243 294 375
+236 28 53 375
+237 206 271 375
+242 232 0 375
+244 51 167 375
+3 83 295 376
+7 86 296 376
+13 48 195 376
+47 174 268 376
+50 7 0 376
+55 133 357 376
+60 126 329 376
+72 135 0 376
+91 174 350 376
+96 132 315 376
+106 91 359 376
+112 192 0 376
+147 161 0 376
+156 206 236 376
+162 230 321 376
+218 23 325 376
+219 19 287 376
+241 231 371 376
+246 256 257 376
+6 85 255 377
+17 20 0 377
+39 150 249 377
+56 178 328 377
+73 141 373 377
+85 33 367 377
+85 146 365 377
+94 146 186 377
+96 171 0 377
+103 173 374 377
+132 223 309 377
+134 146 286 377
+138 135 350 377
+151 197 0 377
+154 234 365 377
+173 164 0 377
+180 184 0 377
+187 246 0 377
+189 203 338 377
+194 148 346 377
+213 50 222 377
+215 2 371 377
+234 254 309 377
+235 38 94 377
+249 54 346 377
+3 70 297 378
+3 18 351 378
+40 53 0 378
+49 42 330 378
+92 135 358 378
+123 253 193 378
+142 193 0 378
+153 105 305 378
+172 241 331 378
+181 69 245 378
+186 253 0 378
+233 41 353 378
+242 139 180 378
+246 38 110 378
+252 13 0 378
+254 203 0 378
+22 7 223 379
+24 89 0 379
+51 133 296 379
+60 70 0 379
+109 171 12 379
+113 181 232 379
+123 254 349 379
+124 183 225 379
+129 182 358 379
+143 194 240 379
+144 151 366 379
+167 179 0 379
+170 256 348 379
+183 187 0 379
+183 201 128 379
+190 68 0 379
+190 130 321 379
+199 115 351 379
+219 212 272 379
+228 52 0 379
+245 38 0 379
+247 24 327 379
+247 118 255 379
+19 224 281 380
+32 157 307 380
+34 44 282 380
+70 130 0 380
+86 165 348 380
+94 91 0 380
+144 254 324 380
+149 196 354 380
+153 80 0 380
+180 182 312 380
+185 230 365 380
+187 204 345 380
+219 89 332 380
+222 19 363 380
+225 20 163 380
+237 209 108 380
+238 247 358 380
+247 40 261 380
+251 27 377 380
+5 52 0 381
+23 18 0 381
+61 207 0 381
+69 88 310 381
+80 145 0 381
+82 103 0 381
+90 171 20 381
+94 101 277 381
+107 119 368 381
+110 115 0 381
+112 191 333 381
+131 139 161 381
+138 198 125 381
+162 169 340 381
+172 253 301 381
+191 250 338 381
+194 21 344 381
+219 41 0 381
+233 188 85 381
+238 30 168 381
+249 253 0 381
+252 125 339 381
+4 97 56 382
+6 220 343 382
+25 105 0 382
+33 84 349 382
+37 54 22 382
+39 169 288 382
+54 116 366 382
+56 73 0 382
+68 129 0 382
+82 51 358 382
+99 127 123 382
+114 75 360 382
+125 33 353 382
+137 129 351 382
+154 217 0 382
+173 45 348 382
+179 230 0 382
+189 206 350 382
+197 218 315 382
+202 23 364 382
+204 26 0 382
+242 159 373 382
+243 57 325 382
+249 61 0 382
+254 186 317 382
+254 251 268 382
+3 85 233 383
+3 130 225 383
+11 117 304 383
+12 120 361 383
+24 115 363 383
+39 120 379 383
+47 107 252 383
+55 124 0 383
+57 53 0 383
+78 157 347 383
+85 137 351 383
+91 107 0 383
+95 101 308 383
+123 157 343 383
+130 242 362 383
+149 129 335 383
+166 184 138 383
+194 243 141 383
+200 10 343 383
+210 50 334 383
+220 38 0 383
+223 227 348 383
+230 50 322 383
+238 248 271 383
+32 80 144 384
+36 58 307 384
+47 122 349 384
+50 211 209 384
+56 72 134 384
+60 10 346 384
+67 182 249 384
+69 147 326 384
+75 76 0 384
+81 149 372 384
+82 71 338 384
+86 167 368 384
+100 152 127 384
+105 167 362 384
+135 204 304 384
+170 141 356 384
+172 189 0 384
+179 232 345 384
+183 194 379 384
+184 230 304 384
+185 131 262 384
+187 61 100 384
+203 7 326 384
+216 232 0 384
+218 27 350 384
+239 227 243 384
+242 198 319 384
+252 43 267 384
+255 208 197 384
+1 200 367 385
+16 90 372 385
+24 106 379 385
+39 199 368 385
+51 178 13 385
+62 60 156 385
+66 133 377 385
+66 145 0 385
+75 130 338 385
+111 164 168 385
+126 178 322 385
+148 168 306 385
+159 212 315 385
+166 249 0 385
+190 133 328 385
+196 163 312 385
+200 9 252 385
+213 201 339 385
+230 248 0 385
+247 35 344 385
+249 59 346 385
+251 125 343 385
+253 206 356 385
+255 5 217 385
+255 2 351 385
+9 28 369 386
+12 85 0 386
+26 109 372 386
+27 91 0 386
+29 33 376 386
+35 110 0 386
+37 30 348 386
+51 181 190 386
+81 90 379 386
+87 157 21 386
+110 146 241 386
+117 134 340 386
+131 246 374 386
+148 238 279 386
+153 142 160 386
+158 171 0 386
+175 224 0 386
+185 168 0 386
+185 176 367 386
+188 141 371 386
+220 10 311 386
+5 28 364 387
+8 130 200 387
+33 109 370 387
+41 43 0 387
+66 35 276 387
+89 149 378 387
+94 128 302 387
+117 76 348 387
+137 242 357 387
+139 189 312 387
+147 167 380 387
+148 37 370 387
+182 50 232 387
+191 45 324 387
+194 209 227 387
+210 222 0 387
+220 247 11 387
+223 33 370 387
+241 195 359 387
+243 54 0 387
+249 243 342 387
+252 121 375 387
+1 209 370 388
+7 92 380 388
+20 125 255 388
+32 92 320 388
+47 112 251 388
+50 215 289 388
+55 123 345 388
+74 86 316 388
+81 88 0 388
+87 77 255 388
+107 167 348 388
+108 179 226 388
+114 137 355 388
+115 134 317 388
+121 153 350 388
+145 110 333 388
+160 108 351 388
+162 188 348 388
+166 152 0 388
+190 193 0 388
+198 141 289 388
+209 22 377 388
+226 249 362 388
+226 38 278 388
+247 39 353 388
+249 55 377 388
+250 207 336 388
+27 47 0 389
+30 96 383 389
+31 96 375 389
+74 87 0 389
+81 109 41 389
+108 189 0 389
+136 209 357 389
+141 250 345 389
+161 61 306 389
+162 175 0 389
+176 218 355 389
+206 58 378 389
+222 238 0 389
+241 249 343 389
+2 31 369 390
+11 89 336 390
+21 97 297 390
+66 33 362 390
+91 103 270 390
+107 181 364 390
+118 69 0 390
+124 108 0 390
+138 151 0 390
+144 207 0 390
+148 18 357 390
+153 88 371 390
+158 225 340 390
+161 254 300 390
+169 188 299 390
+183 198 231 390
+232 40 313 390
+241 230 293 390
+244 216 388 390
+244 8 323 390
+249 41 356 390
+254 46 317 390
+9 89 309 391
+20 101 323 391
+41 103 295 391
+46 63 0 391
+52 54 142 391
+56 67 0 391
+56 134 292 391
+62 208 191 391
+63 99 271 391
+114 130 0 391
+116 71 339 391
+124 136 379 391
+133 213 372 391
+142 146 213 391
+143 1 331 391
+170 254 339 391
+176 221 351 391
+186 204 355 391
+27 96 378 392
+31 68 373 392
+31 95 373 392
+33 95 364 392
+33 110 0 392
+47 96 0 392
+65 192 362 392
+90 160 117 392
+94 113 283 392
+106 96 353 392
+125 84 332 392
+140 206 103 392
+147 165 0 392
+161 235 351 392
+163 22 373 392
+166 139 282 392
+193 1 339 392
+209 66 383 392
+243 197 330 392
+246 202 356 392
+17 216 0 393
+32 84 314 393
+50 60 301 393
+59 120 359 393
+78 30 388 393
+80 90 367 393
+101 113 342 393
+108 245 376 393
+118 138 389 393
+119 67 0 393
+130 86 270 393
+137 88 332 393
+151 186 247 393
+160 172 352 393
+168 22 383 393
+170 180 357 393
+173 189 0 393
+213 246 364 393
+236 40 367 393
+12 157 384 394
+24 57 315 394
+25 43 0 394
+37 57 72 394
+39 112 363 394
+44 122 383 394
+66 94 361 394
+67 151 365 394
+72 105 302 394
+74 106 354 394
+76 141 62 394
+86 152 318 394
+118 87 381 394
+130 213 0 394
+132 146 0 394
+134 184 0 394
+138 217 0 394
+156 224 368 394
+158 156 90 394
+161 45 331 394
+172 240 305 394
+185 167 0 394
+196 213 298 394
+217 246 377 394
+228 97 117 394
+245 250 376 394
+6 218 338 395
+7 74 335 395
+8 149 371 395
+12 86 273 395
+29 96 367 395
+69 145 183 395
+72 104 311 395
+76 217 322 395
+80 145 386 395
+83 152 0 395
+87 138 0 395
+90 155 322 395
+111 146 0 395
+124 202 348 395
+133 147 367 395
+135 244 376 395
+161 224 276 395
+165 188 370 395
+220 24 125 395
+226 244 0 395
+4 79 386 396
+19 216 387 396
+71 88 320 396
+74 79 388 396
+76 80 0 396
+100 167 152 396
+110 164 246 396
+119 139 305 396
+129 184 0 396
+130 163 388 396
+171 229 381 396
+218 240 0 396
+220 249 7 396
+249 38 0 396
+253 53 378 396
+10 106 338 397
+37 2 369 397
+66 41 354 397
+74 156 312 397
+81 79 383 397
+93 33 270 397
+107 150 0 397
+111 98 115 397
+114 100 359 397
+114 129 0 397
+142 99 267 397
+167 188 275 397
+188 247 378 397
+200 202 324 397
+207 3 369 397
+211 93 336 397
+223 3 370 397
+5 85 278 398
+25 236 49 398
+29 107 377 398
+33 83 369 398
+45 36 0 398
+47 58 249 398
+50 8 0 398
+60 126 395 398
+102 124 0 398
+104 152 173 398
+112 181 374 398
+131 197 0 398
+146 209 0 398
+154 185 342 398
+155 237 335 398
+159 152 226 398
+159 163 195 398
+173 220 394 398
+193 215 348 398
+201 10 326 398
+205 219 365 398
+205 16 361 398
+213 146 0 398
+220 45 0 398
+232 39 369 398
+236 24 176 398
+244 209 368 398
+23 92 370 399
+32 63 346 399
+35 120 371 399
+42 105 0 399
+54 178 332 399
+55 114 387 399
+63 189 392 399
+75 191 375 399
+84 189 391 399
+112 169 0 399
+128 141 381 399
+135 50 154 399
+142 156 182 399
+166 229 0 399
+181 167 0 399
+184 216 370 399
+193 243 307 399
+203 48 330 399
+205 157 369 399
+213 6 0 399
+21 99 386 400
+75 207 368 400
+116 242 349 400
+122 189 0 400
+127 121 385 400
+137 132 359 400
+137 147 347 400
+139 60 376 400
+140 203 361 400
+197 53 326 400
+213 148 313 400
+214 221 294 400
+227 27 385 400
+235 106 372 400
+252 15 389 400
+255 223 364 400
+7 138 361 401
+9 8 326 401
+26 105 0 401
+31 109 348 401
+36 84 328 401
+37 66 336 401
+39 185 320 401
+43 122 329 401
+62 206 354 401
+103 168 359 401
+117 122 291 401
+130 137 189 401
+153 187 339 401
+174 100 233 401
+178 226 382 401
+181 136 335 401
+197 227 371 401
+203 199 311 401
+210 239 0 401
+211 31 366 401
+218 30 0 401
+241 135 371 401
+252 122 367 401
+253 244 347 401
+4 94 0 402
+22 232 280 402
+28 35 399 402
+30 106 271 402
+57 122 380 402
+66 97 161 402
+70 138 374 402
+87 155 0 402
+100 102 390 402
+102 167 39 402
+129 135 180 402
+168 188 88 402
+183 243 284 402
+183 250 0 402
+207 200 388 402
+224 14 379 402
+250 16 390 402
+10 87 348 403
+11 70 343 403
+17 8 0 403
+31 89 344 403
+68 111 365 403
+88 108 378 403
+97 72 341 403
+113 189 387 403
+118 107 354 403
+129 50 375 403
+134 140 0 403
+138 189 368 403
+151 202 0 403
+182 247 381 403
+184 187 296 403
+195 248 0 403
+207 15 0 403
+231 106 387 403
+239 227 394 403
+30 44 371 404
+31 33 0 404
+39 60 368 404
+53 8 180 404
+85 150 315 404
+137 152 335 404
+143 211 367 404
+174 75 381 404
+194 202 349 404
+202 216 267 404
+205 193 0 404
+224 47 0 404
+226 18 374 404
+231 199 365 404
+242 253 359 404
+13 219 0 405
+28 109 351 405
+30 63 277 405
+63 180 390 405
+72 152 311 405
+74 153 0 405
+77 92 358 405
+116 241 379 405
+125 190 378 405
+128 254 354 405
+146 228 395 405
+184 202 342 405
+219 209 399 405
+227 236 185 405
+229 249 282 405
+21 38 298 406
+27 88 398 406
+32 142 305 406
+32 158 384 406
+44 64 374 406
+64 107 323 406
+67 196 362 406
+78 82 376 406
+79 149 360 406
+87 182 182 406
+104 168 0 406
+106 169 336 406
+132 157 282 406
+154 84 58 406
+161 251 392 406
+163 239 54 406
+181 73 202 406
+183 235 383 406
+192 244 364 406
+195 229 395 406
+202 22 178 406
+202 10 0 406
+214 25 0 406
+252 5 390 406
+2 83 296 407
+6 216 0 407
+31 77 345 407
+32 42 355 407
+65 132 241 407
+67 158 389 407
+67 189 390 407
+72 153 0 407
+84 115 361 407
+87 217 117 407
+97 130 368 407
+106 104 390 407
+108 235 363 407
+117 180 403 407
+123 135 395 407
+125 116 396 407
+136 215 271 407
+217 171 388 407
+233 161 353 407
+4 85 0 408
+5 18 344 408
+22 38 0 408
+28 91 0 408
+37 81 292 408
+41 51 371 408
+54 177 363 408
+57 43 0 408
+74 47 379 408
+75 159 355 408
+88 115 366 408
+100 176 385 408
+100 168 0 408
+104 107 364 408
+116 179 326 408
+121 187 305 408
+131 50 14 408
+160 25 394 408
+211 1 312 408
+233 227 395 408
+253 1 336 408
+254 141 0 408
+3 16 374 409
+10 138 390 409
+23 119 398 409
+38 88 391 409
+48 34 260 409
+65 71 338 409
+67 241 384 409
+73 170 392 409
+75 254 332 409
+100 179 76 409
+101 177 330 409
+129 210 338 409
+188 230 83 409
+194 247 380 409
+222 163 0 409
+224 20 157 409
+228 41 370 409
+240 29 92 409
+256 202 366 409
+256 57 376 409
+6 89 324 410
+11 23 359 410
+21 68 372 410
+32 83 396 410
+59 174 264 410
+97 68 325 410
+134 124 0 410
+135 202 0 410
+142 154 0 410
+158 163 172 410
+162 108 337 410
+164 37 388 410
+171 221 0 410
+184 151 241 410
+197 220 365 410
+217 230 403 410
+234 57 361 410
+239 37 355 410
+247 251 0 410
+255 248 271 410
+7 153 357 411
+32 80 402 411
+35 162 370 411
+46 94 221 411
+59 170 376 411
+64 127 391 411
+88 213 289 411
+92 104 276 411
+93 138 391 411
+107 183 395 411
+116 191 383 411
+119 72 396 411
+126 180 365 411
+164 242 0 411
+164 239 0 411
+165 220 360 411
+168 49 400 411
+177 242 339 411
+191 168 400 411
+204 216 0 411
+215 8 296 411
+234 231 387 411
+240 43 146 411
+250 199 0 411
+9 126 384 412
+13 211 355 412
+15 56 362 412
+18 98 393 412
+19 97 0 412
+28 40 385 412
+50 114 393 412
+56 68 403 412
+57 64 375 412
+116 187 397 412
+121 140 297 412
+136 220 384 412
+137 86 304 412
+149 217 231 412
+153 105 399 412
+161 225 0 412
+194 25 393 412
+201 14 385 412
+207 49 314 412
+218 236 0 412
+231 251 396 412
+234 198 352 412
+236 28 389 412
+7 185 384 413
+21 88 384 413
+25 229 339 413
+25 235 0 413
+32 18 382 413
+42 107 309 413
+72 135 395 413
+87 90 0 413
+94 18 62 413
+98 191 400 413
+105 117 228 413
+112 172 0 413
+118 77 281 413
+136 244 370 413
+137 77 390 413
+138 67 396 413
+173 253 398 413
+177 226 400 413
+178 194 370 413
+187 198 280 413
+198 221 378 413
+222 146 92 413
+226 239 0 413
+226 253 201 413
+17 197 372 414
+20 110 0 414
+51 44 314 414
+62 122 0 414
+63 170 375 414
+65 141 376 414
+66 149 0 414
+75 76 389 414
+75 253 396 414
+92 140 344 414
+98 150 336 414
+104 172 360 414
+141 193 392 414
+143 239 389 414
+163 46 375 414
+163 240 393 414
+166 230 0 414
+179 232 391 414
+185 138 363 414
+217 229 304 414
+241 194 103 414
+248 8 339 414
+249 204 390 414
+252 73 373 414
+5 204 354 415
+5 227 343 415
+8 10 356 415
+18 68 307 415
+26 48 391 415
+52 248 265 415
+63 80 389 415
+69 129 160 415
+112 116 396 415
+114 180 277 415
+119 136 329 415
+126 170 348 415
+133 194 0 415
+145 173 275 415
+153 90 0 415
+159 240 405 415
+164 253 0 415
+193 214 400 415
+203 197 302 415
+224 93 300 415
+228 51 0 415
+241 132 390 415
+246 2 412 415
+28 43 0 416
+31 18 0 416
+49 58 219 416
+59 124 121 416
+70 156 383 416
+75 157 0 416
+79 148 386 416
+101 107 381 416
+116 254 346 416
+119 151 305 416
+120 135 394 416
+133 149 0 416
+141 13 327 416
+141 223 387 416
+145 143 0 416
+148 17 303 416
+152 198 381 416
+159 146 78 416
+159 211 331 416
+192 241 347 416
+217 31 410 416
+230 250 242 416
+233 25 280 416
+246 53 144 416
+4 30 376 417
+37 61 393 417
+38 42 0 417
+39 115 280 417
+44 112 377 417
+75 153 0 417
+83 103 373 417
+86 98 384 417
+102 133 181 417
+125 185 357 417
+147 227 343 417
+180 244 0 417
+188 235 401 417
+191 245 407 417
+207 148 405 417
+217 26 379 417
+234 26 376 417
+7 122 359 418
+25 199 404 418
+32 82 382 418
+54 162 371 418
+87 140 0 418
+118 64 344 418
+121 183 388 418
+123 116 33 418
+126 189 0 418
+137 144 377 418
+175 34 362 418
+176 230 365 418
+233 41 387 418
+245 255 218 418
+17 239 0 419
+32 33 359 419
+37 97 109 419
+45 93 384 419
+46 97 0 419
+48 90 415 419
+72 150 0 419
+91 109 0 419
+115 121 266 419
+138 170 354 419
+168 175 261 419
+177 183 392 419
+195 6 0 419
+197 202 111 419
+208 23 361 419
+226 211 408 419
+227 46 0 419
+228 82 345 419
+237 48 412 419
+14 69 382 420
+17 227 0 420
+32 68 298 420
+35 102 375 420
+65 129 0 420
+72 103 285 420
+123 250 57 420
+134 148 394 420
+136 229 380 420
+148 227 314 420
+190 69 359 420
+209 45 386 420
+209 81 373 420
+213 25 349 420
+228 48 192 420
+242 49 392 420
+5 25 362 421
+19 94 0 421
+28 106 0 421
+64 190 274 421
+68 157 184 421
+85 97 110 421
+87 132 397 421
+88 148 211 421
+99 152 319 421
+139 230 309 421
+160 45 343 421
+167 160 339 421
+171 26 376 421
+171 45 322 421
+175 19 394 421
+201 118 395 421
+205 242 330 421
+238 248 397 421
+241 253 340 421
+252 16 232 421
+4 130 150 422
+15 10 358 422
+16 75 411 422
+35 44 300 422
+42 6 410 422
+68 111 418 422
+75 144 0 422
+76 149 313 422
+84 152 418 422
+93 111 0 422
+101 169 299 422
+130 94 389 422
+146 216 241 422
+166 214 0 422
+166 226 0 422
+177 69 361 422
+191 207 292 422
+191 242 0 422
+193 246 380 422
+211 231 404 422
+212 94 278 422
+218 10 290 422
+224 209 55 422
+224 212 0 422
+231 25 0 422
+234 245 351 422
+238 247 396 422
+247 35 395 422
+21 10 381 423
+25 14 398 423
+31 15 359 423
+38 97 353 423
+78 94 361 423
+102 188 268 423
+123 205 268 423
+138 92 0 423
+189 141 0 423
+203 10 0 423
+206 224 0 423
+212 48 280 423
+217 237 0 423
+241 53 352 423
+2 15 0 424
+2 248 383 424
+5 196 352 424
+5 72 416 424
+21 27 343 424
+23 74 0 424
+35 57 312 424
+39 42 0 424
+52 79 392 424
+54 9 414 424
+54 103 391 424
+60 185 385 424
+72 132 250 424
+78 141 384 424
+143 256 126 424
+147 200 373 424
+154 172 125 424
+169 216 368 424
+181 249 413 424
+194 218 397 424
+198 206 154 424
+208 77 187 424
+210 37 330 424
+212 29 0 424
+217 222 393 424
+227 81 258 424
+15 69 363 425
+19 74 359 425
+20 98 0 425
+30 37 391 425
+43 174 347 425
+93 91 0 425
+96 169 354 425
+102 73 124 425
+122 137 412 425
+132 225 366 425
+144 157 0 425
+146 228 413 425
+151 157 51 425
+159 13 366 425
+160 176 0 425
+175 227 300 425
+181 226 411 425
+192 242 330 425
+213 5 355 425
+213 246 406 425
+225 243 418 425
+9 70 80 426
+57 48 362 426
+57 11 0 426
+63 123 373 426
+70 77 209 426
+74 83 407 426
+78 113 391 426
+90 171 405 426
+93 89 0 426
+95 98 314 426
+99 191 405 426
+106 92 299 426
+118 104 412 426
+123 79 0 426
+125 118 353 426
+126 187 375 426
+129 17 353 426
+130 192 381 426
+138 182 0 426
+151 229 333 426
+160 26 343 426
+164 179 0 426
+181 170 392 426
+192 131 340 426
+196 227 343 426
+201 15 384 426
+228 253 316 426
+230 28 415 426
+239 211 351 426
+1 77 407 427
+12 75 389 427
+42 54 260 427
+50 33 409 427
+61 29 367 427
+66 99 127 427
+70 16 391 427
+73 87 0 427
+78 128 402 427
+93 69 357 427
+95 132 0 427
+99 102 390 427
+108 161 385 427
+132 151 370 427
+142 206 0 427
+147 229 0 427
+154 127 78 427
+166 184 402 427
+195 199 0 427
+211 46 379 427
+215 206 386 427
+224 48 204 427
+238 1 142 427
+247 33 409 427
+44 117 278 428
+49 114 369 428
+51 102 0 428
+57 125 367 428
+71 140 0 428
+99 117 402 428
+105 214 383 428
+134 214 397 428
+159 17 58 428
+199 11 0 428
+212 97 117 428
+223 45 351 428
+226 53 338 428
+230 27 397 428
+254 251 416 428
+26 221 0 429
+42 102 370 429
+52 112 403 429
+67 254 364 429
+109 157 150 429
+131 244 0 429
+147 17 191 429
+185 76 356 429
+209 4 362 429
+230 25 396 429
+236 6 422 429
+5 9 349 430
+17 69 385 430
+18 95 256 430
+27 57 303 430
+50 36 394 430
+66 86 120 430
+85 98 384 430
+106 101 309 430
+113 129 389 430
+158 109 0 430
+166 234 279 430
+191 256 0 430
+195 53 0 430
+202 17 409 430
+218 231 292 430
+225 34 0 430
+239 18 0 430
+246 195 121 430
+5 65 402 431
+76 136 377 431
+102 182 0 431
+104 191 408 431
+126 129 145 431
+131 50 423 431
+156 216 342 431
+157 224 423 431
+163 22 414 431
+170 144 333 431
+237 250 398 431
+3 82 335 432
+3 178 425 432
+39 125 338 432
+62 16 0 432
+79 145 0 432
+87 217 408 432
+101 151 408 432
+102 172 31 432
+125 154 111 432
+132 222 0 432
+148 19 352 432
+154 167 234 432
+162 102 59 432
+175 251 386 432
+178 185 238 432
+178 184 0 432
+200 82 422 432
+245 53 0 432
+247 198 381 432
+11 113 411 433
+13 31 0 433
+39 118 75 433
+40 183 397 433
+86 214 359 433
+90 108 0 433
+122 141 407 433
+123 189 0 433
+123 141 0 433
+134 158 427 433
+135 150 427 433
+135 246 0 433
+160 230 385 433
+190 242 151 433
+192 193 0 433
+221 10 0 433
+255 4 419 433
+5 22 218 434
+12 123 374 434
+31 28 389 434
+58 7 324 434
+60 70 410 434
+88 156 345 434
+91 79 318 434
+91 214 315 434
+93 97 0 434
+100 183 358 434
+123 253 397 434
+145 162 424 434
+148 30 420 434
+148 229 170 434
+158 202 423 434
+170 230 429 434
+175 18 324 434
+177 166 324 434
+201 13 0 434
+203 77 409 434
+210 146 0 434
+213 6 418 434
+226 179 0 434
+241 240 379 434
+43 96 366 435
+51 71 419 435
+59 75 397 435
+66 88 0 435
+78 130 223 435
+80 147 431 435
+105 233 424 435
+108 214 233 435
+108 156 0 435
+111 240 415 435
+145 167 418 435
+147 214 0 435
+154 166 297 435
+166 180 314 435
+168 188 415 435
+221 235 0 435
+249 203 240 435
+255 208 410 435
+22 101 412 436
+36 120 379 436
+42 118 272 436
+43 154 364 436
+48 107 371 436
+50 62 383 436
+84 150 367 436
+96 110 152 436
+108 128 404 436
+112 182 358 436
+116 141 343 436
+133 165 411 436
+133 188 0 436
+137 214 338 436
+138 206 411 436
+140 206 403 436
+145 98 346 436
+154 176 0 436
+163 18 417 436
+165 50 417 436
+172 50 422 436
+200 37 347 436
+207 202 406 436
+243 47 420 436
+247 118 413 436
+14 18 169 437
+23 39 404 437
+53 177 429 437
+68 129 397 437
+86 108 359 437
+110 234 426 437
+120 102 0 437
+122 182 417 437
+155 169 353 437
+175 45 42 437
+180 50 404 437
+182 197 0 437
+194 227 340 437
+196 30 418 437
+209 21 305 437
+218 240 416 437
+223 10 0 437
+238 250 381 437
+3 134 316 438
+8 101 418 438
+14 29 373 438
+18 97 0 438
+55 86 220 438
+61 232 409 438
+67 151 420 438
+68 84 0 438
+68 94 0 438
+75 234 423 438
+98 126 425 438
+112 189 0 438
+127 146 194 438
+133 245 389 438
+134 242 330 438
+152 231 0 438
+158 171 410 438
+171 189 0 438
+171 250 355 438
+185 75 388 438
+200 26 342 438
+201 206 106 438
+206 30 421 438
+207 250 400 438
+217 167 0 438
+232 62 408 438
+237 212 274 438
+237 43 405 438
+243 35 359 438
+243 57 418 438
+5 70 0 439
+17 30 427 439
+47 83 388 439
+57 119 406 439
+68 136 409 439
+91 192 412 439
+91 202 388 439
+106 171 426 439
+108 186 420 439
+123 144 77 439
+136 197 0 439
+138 129 397 439
+148 150 295 439
+152 232 416 439
+162 184 67 439
+166 174 344 439
+190 234 425 439
+191 232 401 439
+194 56 432 439
+219 74 219 439
+242 147 351 439
+243 54 411 439
+245 49 417 439
+254 250 316 439
+10 138 437 440
+14 239 369 440
+22 82 0 440
+23 27 0 440
+38 114 385 440
+41 90 403 440
+63 3 412 440
+64 12 371 440
+79 242 340 440
+103 115 262 440
+117 76 406 440
+146 172 421 440
+148 165 0 440
+152 172 407 440
+162 172 335 440
+166 233 0 440
+169 229 287 440
+192 238 350 440
+228 50 370 440
+252 125 400 440
+5 71 114 441
+33 54 428 441
+35 114 301 441
+52 16 362 441
+111 128 214 441
+124 184 264 441
+178 136 98 441
+187 207 312 441
+200 209 349 441
+204 73 422 441
+210 217 270 441
+215 70 403 441
+223 218 0 441
+237 223 0 441
+243 199 0 441
+249 6 368 441
+2 24 0 442
+15 138 392 442
+25 24 0 442
+28 32 0 442
+45 90 413 442
+49 3 0 442
+59 108 0 442
+63 111 219 442
+91 135 388 442
+121 71 0 442
+123 184 429 442
+134 143 425 442
+143 244 0 442
+149 156 0 442
+150 241 413 442
+160 30 417 442
+179 244 0 442
+208 81 429 442
+218 30 414 442
+240 31 390 442
+247 51 320 442
+249 9 333 442
+252 38 0 442
+30 74 351 443
+40 178 261 443
+56 72 398 443
+62 116 415 443
+99 147 0 443
+108 124 423 443
+126 141 193 443
+136 156 359 443
+194 144 373 443
+212 243 416 443
+241 34 364 443
+242 211 433 443
+245 228 0 443
+246 256 438 443
+256 78 438 443
+10 107 428 444
+13 66 440 444
+20 111 259 444
+26 90 423 444
+27 174 434 444
+32 44 325 444
+51 4 432 444
+55 48 355 444
+59 185 257 444
+69 95 178 444
+114 100 402 444
+125 33 431 444
+149 194 0 444
+173 209 424 444
+187 202 241 444
+204 32 414 444
+220 249 417 444
+236 34 363 444
+5 216 346 445
+14 212 0 445
+15 121 420 445
+32 107 0 445
+42 52 422 445
+43 55 0 445
+56 70 0 445
+76 217 410 445
+84 240 405 445
+88 162 0 445
+103 170 409 445
+132 223 415 445
+143 14 374 445
+146 229 0 445
+148 195 352 445
+148 216 306 445
+177 69 426 445
+179 151 424 445
+187 206 186 445
+192 217 435 445
+237 228 422 445
+242 143 169 445
+247 6 376 445
+255 196 335 445
+3 98 431 446
+10 106 426 446
+12 80 55 446
+17 197 437 446
+29 125 270 446
+43 102 414 446
+46 125 428 446
+56 21 263 446
+79 83 304 446
+85 102 409 446
+86 156 101 446
+93 109 0 446
+103 174 336 446
+105 185 343 446
+132 244 372 446
+156 230 412 446
+160 235 0 446
+178 245 357 446
+190 77 404 446
+199 115 419 446
+38 113 389 447
+93 126 366 447
+93 142 0 447
+145 143 426 447
+159 144 433 447
+165 231 357 447
+178 119 0 447
+183 231 345 447
+186 129 389 447
+192 157 229 447
+200 24 99 447
+226 18 410 447
+236 118 411 447
+236 9 412 447
+2 71 320 448
+3 117 432 448
+8 73 321 448
+13 11 0 448
+16 68 147 448
+22 235 291 448
+26 85 335 448
+49 58 434 448
+59 16 370 448
+61 20 369 448
+62 78 112 448
+65 82 439 448
+69 149 181 448
+72 147 0 448
+88 97 0 448
+90 112 0 448
+93 83 245 448
+95 149 223 448
+96 97 0 448
+96 132 426 448
+96 147 426 448
+118 108 405 448
+137 86 419 448
+174 185 104 448
+176 129 431 448
+179 217 432 448
+192 160 442 448
+207 144 434 448
+233 231 0 448
+235 201 439 448
+251 29 296 448
+2 15 435 449
+4 120 434 449
+8 130 395 449
+26 86 428 449
+45 55 424 449
+84 226 400 449
+100 150 156 449
+101 27 325 449
+106 89 222 449
+145 193 0 449
+157 196 424 449
+158 206 415 449
+163 243 380 449
+166 245 0 449
+240 225 0 449
+249 5 431 449
+254 34 419 449
+5 38 421 450
+13 48 430 450
+32 42 437 450
+40 60 0 450
+49 247 363 450
+51 119 407 450
+52 190 362 450
+60 102 366 450
+64 3 377 450
+81 43 408 450
+85 151 371 450
+102 115 0 450
+119 184 242 450
+123 135 426 450
+128 188 404 450
+132 213 0 450
+159 237 0 450
+164 212 442 450
+174 121 120 450
+206 218 0 450
+8 116 422 451
+20 125 427 451
+69 135 430 451
+70 67 435 451
+81 24 0 451
+108 127 311 451
+134 194 0 451
+138 89 0 451
+142 173 194 451
+151 160 171 451
+177 238 414 451
+181 139 160 451
+197 66 436 451
+248 115 321 451
+252 16 442 451
+8 117 419 452
+11 93 369 452
+17 82 434 452
+30 25 202 452
+38 60 0 452
+44 90 0 452
+65 71 445 452
+70 154 407 452
+75 144 444 452
+91 159 401 452
+120 124 0 452
+126 91 418 452
+126 69 356 452
+140 219 442 452
+154 112 0 452
+154 172 445 452
+158 239 219 452
+168 44 408 452
+170 205 291 452
+176 228 435 452
+177 179 0 452
+193 255 0 452
+196 31 0 452
+197 220 443 452
+237 42 390 452
+251 125 410 452
+256 43 440 452
+13 209 350 453
+26 23 0 453
+39 51 0 453
+48 9 412 453
+55 9 386 453
+59 105 0 453
+74 86 416 453
+84 165 0 453
+85 10 346 453
+92 174 270 453
+103 152 0 453
+104 172 430 453
+116 179 427 453
+133 121 113 453
+134 95 398 453
+134 148 433 453
+184 202 439 453
+186 132 437 453
+187 13 272 453
+195 227 249 453
+203 215 146 453
+241 231 414 453
+248 113 330 453
+249 256 0 453
+4 83 0 454
+31 235 320 454
+48 60 163 454
+60 124 365 454
+67 182 434 454
+88 154 387 454
+93 72 421 454
+94 113 421 454
+106 154 30 454
+128 129 0 454
+132 157 418 454
+177 131 0 454
+181 124 0 454
+184 236 410 454
+188 141 418 454
+195 22 262 454
+239 225 0 454
+241 225 421 454
+245 38 450 454
+251 47 350 454
+16 138 300 455
+26 89 215 455
+27 40 332 455
+33 113 299 455
+53 97 422 455
+79 95 0 455
+116 71 420 455
+119 67 400 455
+121 138 309 455
+125 98 436 455
+127 188 335 455
+130 222 392 455
+146 127 441 455
+158 240 291 455
+187 201 175 455
+212 231 433 455
+218 41 0 455
+220 221 0 455
+237 31 314 455
+2 78 0 456
+7 91 365 456
+17 114 433 456
+26 21 338 456
+32 106 0 456
+33 52 219 456
+73 155 450 456
+79 157 0 456
+82 71 432 456
+116 117 404 456
+124 179 279 456
+127 205 437 456
+162 119 319 456
+166 137 435 456
+170 250 0 456
+177 120 0 456
+184 186 345 456
+191 212 431 456
+194 220 366 456
+196 239 246 456
+211 72 433 456
+215 221 94 456
+217 143 443 456
+217 206 109 456
+247 58 448 456
+249 60 267 456
+250 16 446 456
+252 255 447 456
+17 68 431 457
+25 44 12 457
+26 32 0 457
+49 125 433 457
+63 190 202 457
+104 119 398 457
+134 99 385 457
+162 161 426 457
+163 247 391 457
+171 236 349 457
+183 201 434 457
+200 4 359 457
+217 205 414 457
+224 93 454 457
+239 19 248 457
+35 55 202 458
+38 115 354 458
+41 33 376 458
+70 90 185 458
+112 234 25 458
+116 72 418 458
+139 42 405 458
+162 243 424 458
+172 253 394 458
+183 236 0 458
+187 129 368 458
+188 202 423 458
+205 198 262 458
+210 150 156 458
+211 41 342 458
+217 203 381 458
+221 25 61 458
+229 218 310 458
+232 18 321 458
+249 194 432 458
+253 201 356 458
+27 169 437 459
+45 25 379 459
+45 94 376 459
+63 178 441 459
+65 83 201 459
+81 87 445 459
+93 77 0 459
+106 97 442 459
+124 202 431 459
+126 192 168 459
+8 119 322 460
+15 66 388 460
+20 96 128 460
+29 20 0 460
+35 44 437 460
+40 107 332 460
+74 156 420 460
+78 69 116 460
+95 101 423 460
+95 147 69 460
+103 112 348 460
+107 117 301 460
+154 159 429 460
+158 176 0 460
+188 143 443 460
+217 250 427 460
+223 43 436 460
+248 6 358 460
+23 82 0 461
+31 15 442 461
+32 77 314 461
+33 40 418 461
+40 133 344 461
+46 53 358 461
+47 101 431 461
+53 66 438 461
+63 121 377 461
+80 155 0 461
+92 135 387 461
+160 29 417 461
+183 243 410 461
+188 190 412 461
+237 202 261 461
+237 29 0 461
+249 44 172 461
+255 42 413 461
+14 30 359 462
+14 68 103 462
+25 91 436 462
+66 116 410 462
+83 152 436 462
+95 222 292 462
+105 104 0 462
+112 192 385 462
+126 115 399 462
+163 231 0 462
+168 224 443 462
+178 71 0 462
+193 148 310 462
+196 18 358 462
+207 15 447 462
+209 227 0 462
+215 230 412 462
+231 36 452 462
+231 53 439 462
+252 62 150 462
+35 117 0 463
+48 121 374 463
+73 96 448 463
+74 186 445 463
+74 155 429 463
+96 110 452 463
+98 133 411 463
+106 126 449 463
+110 178 446 463
+114 119 0 463
+117 122 438 463
+123 179 431 463
+130 111 397 463
+157 206 98 463
+162 167 0 463
+168 41 376 463
+224 32 0 463
+225 41 359 463
+228 38 117 463
+231 51 370 463
+234 57 455 463
+235 59 412 463
+238 245 139 463
+4 142 124 464
+36 3 320 464
+49 98 362 464
+51 8 416 464
+58 7 449 464
+63 80 456 464
+71 132 458 464
+76 157 0 464
+77 192 384 464
+81 101 150 464
+96 169 441 464
+110 189 154 464
+127 255 434 464
+132 211 380 464
+145 131 382 464
+161 253 263 464
+165 50 450 464
+186 135 0 464
+186 201 136 464
+187 141 0 464
+216 232 395 464
+220 232 0 464
+241 37 409 464
+247 194 439 464
+250 199 447 464
+7 123 460 465
+17 23 453 465
+40 199 141 465
+40 59 328 465
+51 7 408 465
+60 71 0 465
+76 135 321 465
+77 68 0 465
+87 132 456 465
+92 104 421 465
+100 129 417 465
+111 175 416 465
+143 156 453 465
+146 105 453 465
+171 220 0 465
+203 48 414 465
+215 229 0 465
+223 224 0 465
+231 56 450 465
+234 203 307 465
+243 48 441 465
+245 34 0 465
+255 47 458 465
+256 16 0 465
+8 137 305 466
+15 19 170 466
+25 39 0 466
+35 115 0 466
+45 93 443 466
+56 181 457 466
+67 145 0 466
+75 159 430 466
+81 97 0 466
+91 218 457 466
+99 115 0 466
+100 117 365 466
+108 156 451 466
+112 161 263 466
+128 161 197 466
+133 180 0 466
+146 115 359 466
+146 117 440 466
+168 38 288 466
+170 251 34 466
+173 175 0 466
+173 219 435 466
+187 254 0 466
+213 169 289 466
+221 32 381 466
+224 28 382 466
+254 5 430 466
+256 47 412 466
+3 82 464 467
+4 67 0 467
+21 38 446 467
+27 76 418 467
+39 72 401 467
+49 231 425 467
+57 9 0 467
+78 79 0 467
+112 138 347 467
+154 170 0 467
+161 187 408 467
+170 222 431 467
+187 252 0 467
+212 45 0 467
+217 6 268 467
+229 28 409 467
+248 201 396 467
+8 88 406 468
+12 123 447 468
+15 68 132 468
+18 68 454 468
+34 3 382 468
+44 89 367 468
+47 59 144 468
+53 69 84 468
+70 150 449 468
+85 44 388 468
+92 160 0 468
+103 164 399 468
+140 252 434 468
+173 230 392 468
+181 140 281 468
+227 72 428 468
+234 255 405 468
+237 30 0 468
+244 120 461 468
+247 244 299 468
+255 144 406 468
+35 166 444 469
+64 16 0 469
+82 41 197 469
+90 160 461 469
+113 129 458 469
+127 80 454 469
+152 18 423 469
+158 171 465 469
+170 100 460 469
+207 19 180 469
+212 232 347 469
+232 41 0 469
+3 133 313 470
+10 20 396 470
+16 122 0 470
+22 236 0 470
+27 96 414 470
+35 56 374 470
+38 115 466 470
+40 53 417 470
+42 199 190 470
+45 20 0 470
+92 165 449 470
+118 3 421 470
+123 172 0 470
+133 123 422 470
+165 129 441 470
+165 243 380 470
+188 189 0 470
+190 206 453 470
+201 42 280 470
+208 20 388 470
+211 28 408 470
+212 43 284 470
+223 15 337 470
+240 47 375 470
+249 199 278 470
+12 93 0 471
+12 32 317 471
+26 30 0 471
+29 94 0 471
+36 65 312 471
+36 126 0 471
+41 88 432 471
+45 228 0 471
+84 163 0 471
+110 222 438 471
+129 253 366 471
+143 222 316 471
+159 173 0 471
+161 234 236 471
+164 243 0 471
+193 225 353 471
+194 225 355 471
+200 56 278 471
+223 29 0 471
+238 248 440 471
+6 119 453 472
+22 38 424 472
+36 116 0 472
+48 34 424 472
+61 34 247 472
+98 102 0 472
+128 189 0 472
+160 29 468 472
+167 41 396 472
+213 160 351 472
+231 199 412 472
+232 44 260 472
+234 46 424 472
+236 24 421 472
+238 47 405 472
+242 147 453 472
+2 52 271 473
+29 47 0 473
+30 235 0 473
+53 116 363 473
+68 143 420 473
+95 146 63 473
+135 218 437 473
+152 169 0 473
+163 212 384 473
+168 171 367 473
+208 220 456 473
+248 2 451 473
+248 194 438 473
+15 81 365 474
+41 54 15 474
+42 9 200 474
+45 255 422 474
+48 126 138 474
+68 190 404 474
+78 67 356 474
+78 72 421 474
+81 79 465 474
+101 89 365 474
+104 116 465 474
+108 122 0 474
+130 207 416 474
+164 129 403 474
+180 49 437 474
+223 82 450 474
+226 253 449 474
+231 101 363 474
+233 161 410 474
+241 49 350 474
+242 140 428 474
+1 69 360 475
+13 194 458 475
+14 77 0 475
+20 109 0 475
+25 32 0 475
+26 105 426 475
+26 109 425 475
+36 115 0 475
+62 9 203 475
+96 107 0 475
+119 155 450 475
+128 191 0 475
+137 138 0 475
+140 157 0 475
+169 220 275 475
+185 242 452 475
+194 53 468 475
+195 18 187 475
+203 42 272 475
+217 221 0 475
+4 85 448 476
+9 121 360 476
+13 202 0 476
+26 59 431 476
+49 42 410 476
+55 6 406 476
+88 108 445 476
+89 94 391 476
+90 112 466 476
+91 103 462 476
+91 107 455 476
+114 137 451 476
+120 123 434 476
+125 108 0 476
+126 178 396 476
+127 241 244 476
+142 221 462 476
+145 210 0 476
+156 208 454 476
+158 127 165 476
+177 120 466 476
+187 255 355 476
+219 74 469 476
+228 253 436 476
+232 35 291 476
+237 180 470 476
+239 230 424 476
+239 25 438 476
+49 38 369 477
+54 162 454 477
+71 150 471 477
+78 141 467 477
+80 131 432 477
+95 147 466 477
+118 182 283 477
+126 127 0 477
+135 5 461 477
+138 111 422 477
+142 206 452 477
+149 168 457 477
+158 237 0 477
+172 250 0 477
+183 252 442 477
+184 155 366 477
+210 13 444 477
+213 230 458 477
+219 32 0 477
+234 58 265 477
+235 256 352 477
+236 34 469 477
+240 43 436 477
+242 201 430 477
+245 250 450 477
+14 80 275 478
+21 101 119 478
+26 248 463 478
+32 91 0 478
+37 56 455 478
+52 79 452 478
+105 121 0 478
+107 222 457 478
+115 254 459 478
+125 77 467 478
+126 110 287 478
+127 104 450 478
+145 196 198 478
+182 215 471 478
+183 193 456 478
+186 132 464 478
+190 13 452 478
+191 129 364 478
+214 29 453 478
+217 169 35 478
+235 58 321 478
+245 53 445 478
+34 1 89 479
+46 29 55 479
+62 122 427 479
+91 94 397 479
+93 27 410 479
+127 115 437 479
+133 194 471 479
+142 154 423 479
+142 222 206 479
+159 156 417 479
+163 227 0 479
+177 132 474 479
+203 197 451 479
+214 231 0 479
+226 216 394 479
+236 121 452 479
+237 192 474 479
+237 42 468 479
+241 248 0 479
+13 16 0 480
+24 89 429 480
+26 232 316 480
+30 34 458 480
+36 104 383 480
+43 58 217 480
+63 107 205 480
+74 20 232 480
+76 131 473 480
+77 157 222 480
+83 40 470 480
+96 174 0 480
+126 51 414 480
+128 124 430 480
+134 194 466 480
+143 210 309 480
+156 161 436 480
+161 228 321 480
+164 179 466 480
+168 34 346 480
+191 256 457 480
+195 248 458 480
+250 57 0 480
+26 240 468 481
+28 40 463 481
+32 89 0 481
+64 114 330 481
+104 191 464 481
+104 190 469 481
+114 132 453 481
+138 205 363 481
+144 223 432 481
+149 229 386 481
+163 211 45 481
+185 153 373 481
+192 193 442 481
+202 196 393 481
+226 53 463 481
+234 238 418 481
+237 209 388 481
+238 34 0 481
+24 97 0 482
+35 52 174 482
+43 62 251 482
+48 122 0 482
+69 151 456 482
+96 222 237 482
+133 184 0 482
+158 107 446 482
+165 238 350 482
+169 160 0 482
+169 161 449 482
+169 222 408 482
+174 156 97 482
+180 193 0 482
+187 61 416 482
+230 34 465 482
+6 78 466 483
+6 121 409 483
+8 83 0 483
+13 204 284 483
+14 60 455 483
+21 89 371 483
+62 116 460 483
+64 51 449 483
+71 105 478 483
+75 115 474 483
+76 88 386 483
+84 175 175 483
+94 177 425 483
+95 132 457 483
+105 170 416 483
+115 164 340 483
+116 134 305 483
+120 21 474 483
+135 2 470 483
+160 171 0 483
+160 198 246 483
+160 240 71 483
+164 255 453 483
+191 232 461 483
+202 209 403 483
+218 41 462 483
+222 226 442 483
+226 34 0 483
+234 42 0 483
+236 102 462 483
+8 24 0 484
+38 88 440 484
+46 34 0 484
+48 1 193 484
+52 178 414 484
+64 4 405 484
+67 95 327 484
+87 99 382 484
+92 40 468 484
+98 161 472 484
+133 80 456 484
+157 175 422 484
+186 157 9 484
+202 93 448 484
+207 221 412 484
+226 227 0 484
+230 27 464 484
+247 24 414 484
+14 12 351 485
+25 85 0 485
+52 66 407 485
+81 141 464 485
+91 150 457 485
+114 130 438 485
+124 90 455 485
+125 171 469 485
+135 244 474 485
+138 217 405 485
+180 132 0 485
+188 252 0 485
+207 200 437 485
+215 225 459 485
+216 66 443 485
+242 199 426 485
+2 24 473 486
+23 27 478 486
+61 37 484 486
+61 232 473 486
+82 38 249 486
+112 177 415 486
+120 162 0 486
+138 130 411 486
+142 94 0 486
+148 176 406 486
+149 226 430 486
+153 194 369 486
+156 239 433 486
+172 240 436 486
+189 144 80 486
+191 243 128 486
+196 21 480 486
+207 208 0 486
+246 34 387 486
+247 53 245 486
+253 1 441 486
+18 40 464 487
+22 66 304 487
+41 35 77 487
+70 154 460 487
+70 151 223 487
+78 29 462 487
+99 150 0 487
+110 237 450 487
+111 159 70 487
+123 71 435 487
+124 142 452 487
+132 157 462 487
+153 184 361 487
+169 224 404 487
+171 239 323 487
+230 50 444 487
+251 9 108 487
+253 243 200 487
+17 216 420 488
+25 77 423 488
+35 177 291 488
+47 112 460 488
+56 21 470 488
+58 4 470 488
+63 190 468 488
+73 140 233 488
+90 171 461 488
+91 109 437 488
+106 119 411 488
+112 113 373 488
+144 31 463 488
+160 220 292 488
+172 246 0 488
+179 153 406 488
+191 251 150 488
+216 6 479 488
+223 219 0 488
+244 34 0 488
+249 42 0 488
+2 25 469 489
+17 225 0 489
+58 121 0 489
+83 131 437 489
+95 107 465 489
+98 190 283 489
+109 123 472 489
+114 129 442 489
+116 130 156 489
+119 75 452 489
+127 148 423 489
+133 190 393 489
+175 165 95 489
+181 123 364 489
+207 209 0 489
+213 224 449 489
+218 201 448 489
+222 196 0 489
+244 23 441 489
+7 68 473 490
+17 30 470 490
+19 99 474 490
+22 199 463 490
+34 5 411 490
+38 99 381 490
+60 70 468 490
+71 154 472 490
+79 181 463 490
+86 108 455 490
+87 145 388 490
+88 162 468 490
+120 179 0 490
+125 73 364 490
+154 167 481 490
+175 241 0 490
+180 183 305 490
+191 205 0 490
+210 221 449 490
+218 16 470 490
+222 206 0 490
+235 27 245 490
+246 42 262 490
+252 205 0 490
+12 121 339 491
+13 221 308 491
+21 83 269 491
+30 62 435 491
+31 6 452 491
+31 89 423 491
+49 43 273 491
+51 146 483 491
+55 5 476 491
+58 78 251 491
+70 124 354 491
+74 68 225 491
+81 111 0 491
+102 73 452 491
+115 72 475 491
+120 116 0 491
+120 182 0 491
+142 99 430 491
+169 249 456 491
+174 122 112 491
+191 165 272 491
+195 93 450 491
+197 53 462 491
+207 4 416 491
+234 239 424 491
+249 240 471 491
+254 206 0 491
+63 174 142 492
+64 107 474 492
+78 75 0 492
+79 136 272 492
+110 162 467 492
+131 200 465 492
+134 146 389 492
+163 37 319 492
+172 252 313 492
+181 132 468 492
+188 251 0 492
+190 193 440 492
+192 251 445 492
+210 8 469 492
+215 8 450 492
+230 24 419 492
+238 50 368 492
+240 13 487 492
+244 21 420 492
+251 13 0 492
+254 135 465 492
+254 1 0 492
+17 31 0 493
+35 103 274 493
+48 11 191 493
+48 113 0 493
+67 254 450 493
+75 68 149 493
+82 28 69 493
+92 213 215 493
+95 88 251 493
+96 92 0 493
+99 166 346 493
+110 164 424 493
+114 75 425 493
+117 122 479 493
+130 225 459 493
+168 252 402 493
+172 179 43 493
+188 205 245 493
+200 212 424 493
+204 7 0 493
+224 229 408 493
+233 221 25 493
+240 243 371 493
+248 7 0 493
+14 6 450 494
+18 95 446 494
+23 24 0 494
+47 174 485 494
+49 205 463 494
+52 120 142 494
+59 62 0 494
+64 177 421 494
+65 190 0 494
+65 132 466 494
+66 33 457 494
+73 182 0 494
+112 173 0 494
+114 104 386 494
+158 109 448 494
+158 97 362 494
+165 228 375 494
+175 196 312 494
+203 12 0 494
+215 7 310 494
+226 212 0 494
+229 50 435 494
+235 43 0 494
+238 250 463 494
+14 10 0 495
+15 75 132 495
+34 199 179 495
+58 12 0 495
+58 25 473 495
+69 179 432 495
+79 69 289 495
+82 40 0 495
+147 207 344 495
+169 176 203 495
+184 2 451 495
+187 238 379 495
+189 1 473 495
+204 216 466 495
+207 184 434 495
+207 211 166 495
+226 231 0 495
+236 50 375 495
+239 27 446 495
+252 125 473 495
+4 113 409 496
+5 115 483 496
+13 126 463 496
+22 9 460 496
+30 99 473 496
+49 56 371 496
+60 123 404 496
+62 5 464 496
+79 242 466 496
+83 92 456 496
+85 76 0 496
+88 154 472 496
+114 190 0 496
+126 121 296 496
+134 163 462 496
+148 180 456 496
+157 209 417 496
+171 45 456 496
+183 186 475 496
+194 25 488 496
+237 250 457 496
+244 66 403 496
+255 34 131 496
+7 92 486 497
+15 12 328 497
+37 255 464 497
+44 101 0 497
+49 113 0 497
+52 5 425 497
+52 54 430 497
+58 77 0 497
+59 12 364 497
+72 84 371 497
+82 110 481 497
+85 27 322 497
+94 113 491 497
+125 60 202 497
+127 226 435 497
+139 153 0 497
+166 177 483 497
+171 186 478 497
+231 50 376 497
+239 19 486 497
+248 52 420 497
+10 47 480 498
+10 73 349 498
+17 18 0 498
+72 163 494 498
+77 192 489 498
+79 147 304 498
+115 132 454 498
+126 97 451 498
+127 175 90 498
+142 90 244 498
+142 111 28 498
+147 194 0 498
+216 8 453 498
+229 35 454 498
+250 1 458 498
+5 117 476 499
+37 50 400 499
+40 107 475 499
+46 19 266 499
+58 128 451 499
+61 59 0 499
+63 170 459 499
+67 182 490 499
+69 129 460 499
+88 148 475 499
+133 242 0 499
+151 165 480 499
+171 251 205 499
+199 21 447 499
+204 223 69 499
+208 22 453 499
+220 38 478 499
+225 24 274 499
+227 36 483 499
+17 16 354 500
+20 88 483 500
+32 63 442 500
+49 15 0 500
+81 134 386 500
+87 213 182 500
+87 147 353 500
+99 147 497 500
+115 80 441 500
+125 116 457 500
+130 213 473 500
+139 230 432 500
+140 245 375 500
+147 17 439 500
+152 2 449 500
+154 172 485 500
+168 57 349 500
+170 140 331 500
+193 246 477 500
+202 23 486 500
+203 59 379 500
+234 256 0 500
+254 246 484 500
+5 12 470 501
+31 209 105 501
+40 150 330 501
+45 57 382 501
+49 97 269 501
+58 55 0 501
+71 83 318 501
+77 188 440 501
+80 134 388 501
+81 145 0 501
+93 21 456 501
+95 159 0 501
+101 108 461 501
+102 119 0 501
+103 90 0 501
+104 119 474 501
+136 2 483 501
+156 204 470 501
+162 174 488 501
+165 242 383 501
+180 131 0 501
+189 193 443 501
+201 22 447 501
+222 251 469 501
+251 41 490 501
+254 132 0 501
+56 116 107 502
+75 132 275 502
+81 10 426 502
+81 138 449 502
+112 190 0 502
+114 131 297 502
+116 176 484 502
+124 143 441 502
+125 123 0 502
+136 197 488 502
+146 214 121 502
+155 201 0 502
+170 235 401 502
+205 4 480 502
+207 135 439 502
+207 5 161 502
+207 3 439 502
+237 189 57 502
+8 88 495 503
+15 112 466 503
+22 235 477 503
+32 142 430 503
+49 64 0 503
+70 27 0 503
+87 163 453 503
+139 200 496 503
+156 235 472 503
+166 164 108 503
+170 139 204 503
+184 23 449 503
+217 23 484 503
+9 89 484 504
+73 96 484 504
+130 100 492 504
+156 221 0 504
+212 3 480 504
+217 208 373 504
+224 247 461 504
+231 51 483 504
+249 60 494 504
+251 29 482 504
+32 85 489 505
+65 177 0 505
+73 69 479 505
+114 162 70 505
+119 187 452 505
+133 140 0 505
+157 147 419 505
+162 79 431 505
+170 233 0 505
+193 214 499 505
+195 22 476 505
+207 2 0 505
+213 229 0 505
+220 24 404 505
+220 27 0 505
+241 139 477 505
+251 30 239 505
+256 3 479 505
+13 211 422 506
+36 84 436 506
+56 181 492 506
+62 206 479 506
+80 129 190 506
+86 163 497 506
+100 166 110 506
+121 172 500 506
+128 186 0 506
+134 145 143 506
+138 90 0 506
+142 88 481 506
+147 206 403 506
+175 62 503 506
+177 80 416 506
+210 3 465 506
+227 8 178 506
+250 59 416 506
+16 105 496 507
+26 105 498 507
+45 36 483 507
+69 89 480 507
+70 91 0 507
+79 179 422 507
+108 247 505 507
+128 176 80 507
+137 210 492 507
+150 235 491 507
+152 212 424 507
+161 190 383 507
+168 139 210 507
+187 256 0 507
+189 132 406 507
+211 1 420 507
+231 105 499 507
+248 6 493 507
+19 83 0 508
+28 101 0 508
+50 34 0 508
+58 112 377 508
+84 104 219 508
+113 68 436 508
+133 79 363 508
+134 159 407 508
+145 151 375 508
+152 37 396 508
+167 37 390 508
+170 119 376 508
+171 139 374 508
+171 192 480 508
+185 77 477 508
+243 35 479 508
+4 142 491 509
+12 69 481 509
+41 248 189 509
+46 229 459 509
+74 75 405 509
+77 190 493 509
+82 90 487 509
+90 141 440 509
+99 180 404 509
+108 179 455 509
+145 167 492 509
+146 254 500 509
+146 209 498 509
+171 182 505 509
+184 210 329 509
+188 155 352 509
+202 223 0 509
+221 29 0 509
+226 62 496 509
+228 19 338 509
+233 251 244 509
+250 48 318 509
+254 182 485 509
+11 10 0 510
+27 47 424 510
+27 91 418 510
+28 69 460 510
+44 117 435 510
+45 250 239 510
+45 59 0 510
+53 118 490 510
+79 254 125 510
+98 102 499 510
+98 180 295 510
+101 181 460 510
+124 160 445 510
+134 79 317 510
+137 242 426 510
+153 188 361 510
+184 60 477 510
+229 57 434 510
+246 53 445 510
+249 224 420 510
+251 49 251 510
+12 138 124 511
+35 54 129 511
+35 110 446 511
+68 159 156 511
+80 159 0 511
+93 96 0 511
+115 79 427 511
+116 181 101 511
+127 205 461 511
+128 192 0 511
+130 164 479 511
+157 239 397 511
+158 156 411 511
+168 227 315 511
+189 232 468 511
+207 232 467 511
+213 163 0 511
+228 53 0 511
+234 26 441 511
+251 238 0 511
+27 95 485 512
+28 38 0 512
+38 112 499 512
+84 159 154 512
+134 196 487 512
+156 144 357 512
+175 253 0 512
+188 217 415 512
+194 22 328 512
+206 2 435 512
+207 136 252 512
+232 5 424 512
+235 41 0 512
+236 24 502 512
+12 95 506 513
+31 19 0 513
+34 102 484 513
+39 72 485 513
+73 188 286 513
+91 214 480 513
+99 165 0 513
+158 110 230 513
+162 128 379 513
+189 245 502 513
+206 3 462 513
+216 85 432 513
+36 15 27 514
+71 156 505 514
+124 157 329 514
+153 103 472 514
+153 215 135 514
+168 49 476 514
+175 36 483 514
+189 1 504 514
+192 160 474 514
+197 16 506 514
+207 53 143 514
+214 157 316 514
+214 108 443 514
+217 141 166 514
+217 25 0 514
+233 253 497 514
+243 2 457 514
+254 225 504 514
+13 194 490 515
+21 68 446 515
+37 28 0 515
+39 99 0 515
+43 35 494 515
+63 56 450 515
+81 77 361 515
+81 88 424 515
+102 234 507 515
+114 119 471 515
+127 237 254 515
+138 89 462 515
+142 209 455 515
+152 223 482 515
+156 198 0 515
+181 164 388 515
+189 17 490 515
+191 45 480 515
+197 11 508 515
+205 243 431 515
+217 157 0 515
+225 30 406 515
+2 198 454 516
+26 125 498 516
+49 24 380 516
+71 140 453 516
+103 112 471 516
+104 179 0 516
+121 234 492 516
+126 170 492 516
+139 206 509 516
+139 57 356 516
+168 26 364 516
+194 21 399 516
+210 23 439 516
+212 94 505 516
+212 24 353 516
+219 236 500 516
+231 102 465 516
+238 53 149 516
+246 203 0 516
+250 57 502 516
+10 107 497 517
+18 83 176 517
+18 88 449 517
+25 105 417 517
+56 121 505 517
+56 68 438 517
+70 74 0 517
+71 179 386 517
+71 217 491 517
+86 107 0 517
+124 234 509 517
+127 254 270 517
+144 60 444 517
+162 232 448 517
+165 247 372 517
+180 13 492 517
+213 155 232 517
+231 25 502 517
+246 55 405 517
+247 6 498 517
+26 55 231 518
+40 183 482 518
+62 4 328 518
+77 157 513 518
+84 113 322 518
+123 71 506 518
+126 186 219 518
+160 46 482 518
+189 179 472 518
+207 210 241 518
+212 78 482 518
+212 34 284 518
+244 211 295 518
+252 121 400 518
+7 85 0 519
+10 169 507 519
+36 110 0 519
+42 36 485 519
+43 128 476 519
+48 15 160 519
+74 186 495 519
+84 175 491 519
+99 163 0 519
+114 118 0 519
+125 121 0 519
+139 242 407 519
+144 16 427 519
+151 200 459 519
+152 21 429 519
+165 184 401 519
+168 237 514 519
+226 190 461 519
+247 41 0 519
+253 206 406 519
+42 105 468 520
+50 210 473 520
+82 39 0 520
+118 70 0 520
+125 105 0 520
+148 176 506 520
+152 198 430 520
+157 176 492 520
+177 179 467 520
+209 49 478 520
+220 10 475 520
+227 224 439 520
+234 190 490 520
+236 125 454 520
+255 5 474 520
+31 81 0 521
+36 100 265 521
+48 112 0 521
+53 57 418 521
+54 112 503 521
+68 86 511 521
+76 188 502 521
+83 151 374 521
+84 149 367 521
+116 189 0 521
+129 147 0 521
+149 196 426 521
+179 151 486 521
+180 244 506 521
+206 78 483 521
+235 46 228 521
+239 236 446 521
+240 58 490 521
+247 55 0 521
+249 45 170 521
+5 115 503 522
+11 23 503 522
+40 112 483 522
+62 65 0 522
+64 123 142 522
+73 186 0 522
+78 79 512 522
+82 104 0 522
+94 44 496 522
+112 186 0 522
+128 67 353 522
+129 213 488 522
+135 218 486 522
+138 130 505 522
+138 156 0 522
+154 202 498 522
+161 149 462 522
+164 183 327 522
+167 209 501 522
+178 80 406 522
+181 76 511 522
+192 58 502 522
+193 225 476 522
+205 195 454 522
+209 37 327 522
+241 244 0 522
+99 148 0 523
+103 121 388 523
+108 245 459 523
+114 130 504 523
+145 176 512 523
+156 219 363 523
+161 225 476 523
+167 219 475 523
+190 240 444 523
+232 194 473 523
+243 197 466 523
+4 96 488 524
+32 105 0 524
+53 117 495 524
+60 71 508 524
+65 134 312 524
+84 176 277 524
+86 98 488 524
+90 97 411 524
+99 86 0 524
+99 191 457 524
+109 122 325 524
+112 173 507 524
+114 134 287 524
+114 79 0 524
+140 206 506 524
+150 237 500 524
+173 221 0 524
+175 45 450 524
+193 205 470 524
+194 3 444 524
+197 211 0 524
+218 200 344 524
+244 213 515 524
+255 194 513 524
+256 208 0 524
+26 23 509 525
+38 105 208 525
+43 36 198 525
+45 238 0 525
+45 49 251 525
+47 145 495 525
+56 72 516 525
+63 84 328 525
+93 68 0 525
+106 171 455 525
+125 60 511 525
+125 126 0 525
+127 207 497 525
+153 139 510 525
+155 250 158 525
+161 226 0 525
+223 194 510 525
+241 189 342 525
+247 45 462 525
+252 48 180 525
+254 33 509 525
+17 9 478 526
+31 33 455 526
+32 36 459 526
+40 241 503 526
+64 80 140 526
+92 172 446 526
+122 174 509 526
+125 15 380 526
+129 17 455 526
+133 149 477 526
+178 191 371 526
+190 13 484 526
+201 42 512 526
+215 230 480 526
+233 29 293 526
+251 55 507 526
+251 199 505 526
+14 66 58 527
+35 53 0 527
+42 15 405 527
+44 107 0 527
+49 98 472 527
+60 128 521 527
+84 88 0 527
+94 89 493 527
+118 69 413 527
+123 141 506 527
+139 199 0 527
+140 253 500 527
+142 161 344 527
+145 240 514 527
+160 45 505 527
+162 172 502 527
+165 254 393 527
+165 232 224 527
+166 234 488 527
+192 201 511 527
+212 85 449 527
+219 235 0 527
+223 228 408 527
+234 245 436 527
+19 80 502 528
+21 34 497 528
+44 90 486 528
+44 103 116 528
+56 73 500 528
+56 67 400 528
+63 115 328 528
+65 75 162 528
+67 147 297 528
+69 76 413 528
+74 123 487 528
+81 24 525 528
+84 171 472 528
+87 147 518 528
+95 79 501 528
+96 105 0 528
+104 172 476 528
+105 170 492 528
+114 7 374 528
+140 143 437 528
+143 204 490 528
+152 232 499 528
+164 216 519 528
+193 215 458 528
+249 220 460 528
+13 2 209 529
+34 100 486 529
+43 55 465 529
+63 65 0 529
+63 100 320 529
+63 75 194 529
+69 86 438 529
+124 80 41 529
+125 75 368 529
+126 124 202 529
+127 129 377 529
+160 205 407 529
+166 249 488 529
+175 241 509 529
+180 232 409 529
+183 129 433 529
+204 73 524 529
+219 231 489 529
+226 240 198 529
+227 219 462 529
+227 57 453 529
+233 239 331 529
+237 29 497 529
+238 248 503 529
+252 56 495 529
+1 16 165 530
+2 53 149 530
+15 113 0 530
+20 63 274 530
+29 94 480 530
+30 34 524 530
+73 70 0 530
+107 235 524 530
+110 145 450 530
+123 80 42 530
+127 222 274 530
+127 240 263 530
+153 141 78 530
+154 103 0 530
+155 224 474 530
+217 147 527 530
+239 94 516 530
+246 73 510 530
+34 52 0 531
+40 169 459 531
+69 88 419 531
+69 151 502 531
+74 71 489 531
+130 161 429 531
+135 150 501 531
+138 129 512 531
+146 214 508 531
+154 222 49 531
+159 131 360 531
+166 167 0 531
+166 179 0 531
+168 248 0 531
+194 8 453 531
+231 85 382 531
+2 198 529 532
+12 96 346 532
+24 150 525 532
+42 73 515 532
+63 109 0 532
+64 109 311 532
+84 180 356 532
+92 171 0 532
+96 109 0 532
+103 173 444 532
+103 171 124 532
+116 207 500 532
+120 98 268 532
+127 253 247 532
+127 238 256 532
+165 235 494 532
+173 239 45 532
+220 23 171 532
+226 244 488 532
+228 21 482 532
+254 253 0 532
+1 115 524 533
+1 68 363 533
+14 80 502 533
+67 151 504 533
+92 157 0 533
+94 64 472 533
+114 70 454 533
+137 88 495 533
+154 108 0 533
+177 226 475 533
+178 68 406 533
+184 200 0 533
+197 73 503 533
+209 21 484 533
+233 247 463 533
+236 61 287 533
+42 52 492 534
+83 86 0 534
+85 36 524 534
+108 163 459 534
+123 253 499 534
+138 132 415 534
+139 9 21 534
+140 79 509 534
+146 172 471 534
+155 208 347 534
+157 224 459 534
+159 164 512 534
+165 225 0 534
+168 246 155 534
+218 234 528 534
+220 18 493 534
+229 34 362 534
+231 86 470 534
+251 6 507 534
+254 17 219 534
+14 114 502 535
+18 98 466 535
+31 23 516 535
+40 100 125 535
+46 34 525 535
+49 113 523 535
+50 114 483 535
+51 100 0 535
+54 101 124 535
+57 115 513 535
+74 158 372 535
+83 152 497 535
+83 191 509 535
+103 214 134 535
+108 162 427 535
+119 241 487 535
+130 86 488 535
+149 226 529 535
+168 50 205 535
+175 243 116 535
+182 235 514 535
+184 251 521 535
+184 253 521 535
+189 228 422 535
+210 198 375 535
+214 235 0 535
+231 10 500 535
+242 200 363 535
+29 48 15 536
+39 51 470 536
+43 107 0 536
+61 43 0 536
+64 65 0 536
+71 77 457 536
+72 135 502 536
+74 142 50 536
+103 147 529 536
+123 190 0 536
+127 173 0 536
+127 186 394 536
+147 200 452 536
+153 213 129 536
+161 46 320 536
+162 182 75 536
+168 242 0 536
+196 216 331 536
+204 239 472 536
+205 221 315 536
+243 113 520 536
+12 85 435 537
+14 60 527 537
+49 52 0 537
+62 35 407 537
+64 170 460 537
+70 67 499 537
+71 182 0 537
+87 83 0 537
+96 140 514 537
+100 168 527 537
+114 19 492 537
+115 68 440 537
+128 192 530 537
+130 99 156 537
+136 223 492 537
+143 253 129 537
+146 136 0 537
+184 58 494 537
+186 215 535 537
+187 202 524 537
+233 225 515 537
+237 48 473 537
+238 30 417 537
+11 96 489 538
+16 96 398 538
+36 177 269 538
+45 58 209 538
+93 80 0 538
+101 169 452 538
+113 79 374 538
+120 68 407 538
+156 222 69 538
+161 163 0 538
+173 219 502 538
+173 230 483 538
+174 224 513 538
+176 144 527 538
+177 165 95 538
+244 200 34 538
+246 2 453 538
+250 42 0 538
+251 118 517 538
+4 21 0 539
+11 124 0 539
+31 95 450 539
+32 158 455 539
+46 94 514 539
+58 112 528 539
+60 78 517 539
+74 141 356 539
+83 104 164 539
+105 155 524 539
+107 117 530 539
+110 180 308 539
+112 76 506 539
+119 217 498 539
+127 188 466 539
+139 6 99 539
+148 180 502 539
+188 251 531 539
+190 253 0 539
+211 8 0 539
+214 29 496 539
+231 43 486 539
+242 198 389 539
+250 62 275 539
+255 34 528 539
+16 41 480 540
+51 119 515 540
+59 127 532 540
+66 32 448 540
+84 170 452 540
+119 75 529 540
+123 96 490 540
+137 150 509 540
+143 147 289 540
+167 234 199 540
+168 37 260 540
+176 239 0 540
+185 245 355 540
+199 21 527 540
+233 226 526 540
+233 22 278 540
+243 52 0 540
+247 58 476 540
+254 1 520 540
+255 3 192 540
+5 65 443 541
+13 5 411 541
+24 83 0 541
+55 98 380 541
+76 135 480 541
+77 192 523 541
+87 146 391 541
+100 149 381 541
+101 117 0 541
+110 234 515 541
+135 147 102 541
+136 220 506 541
+146 108 438 541
+159 152 430 541
+186 184 501 541
+238 13 363 541
+247 59 441 541
+248 1 230 541
+12 72 502 542
+15 19 503 542
+42 107 477 542
+56 98 386 542
+58 125 86 542
+79 13 524 542
+87 169 0 542
+87 155 511 542
+153 160 0 542
+164 221 524 542
+249 242 418 542
+28 102 458 543
+35 100 0 543
+52 68 356 543
+86 104 0 543
+91 144 523 543
+92 135 510 543
+95 156 515 543
+96 144 534 543
+104 149 281 543
+104 167 0 543
+146 117 514 543
+148 216 530 543
+153 144 0 543
+161 234 532 543
+162 242 110 543
+167 37 529 543
+171 45 527 543
+175 174 415 543
+200 37 525 543
+248 98 333 543
+254 246 518 543
+31 231 517 544
+35 125 486 544
+54 102 0 544
+91 169 0 544
+98 133 524 544
+103 164 475 544
+106 123 400 544
+110 190 232 544
+137 144 513 544
+141 156 176 544
+152 196 314 544
+176 45 113 544
+185 134 512 544
+201 16 239 544
+202 184 516 544
+221 48 518 544
+243 197 541 544
+252 55 0 544
+12 43 519 545
+60 52 509 545
+61 52 0 545
+71 91 362 545
+88 164 346 545
+111 141 400 545
+125 11 233 545
+134 91 532 545
+140 141 0 545
+157 164 526 545
+177 187 426 545
+183 242 0 545
+203 52 384 545
+204 74 426 545
+247 253 499 545
+2 24 520 546
+23 24 511 546
+23 27 520 546
+35 145 450 546
+75 253 421 546
+83 103 428 546
+90 169 0 546
+91 214 527 546
+102 119 524 546
+103 152 500 546
+105 95 478 546
+119 67 489 546
+160 196 391 546
+172 246 514 546
+233 45 148 546
+241 246 163 546
+247 42 0 546
+248 113 464 546
+256 6 514 546
+4 72 102 547
+10 48 500 547
+24 109 541 547
+28 106 540 547
+39 98 0 547
+47 177 461 547
+55 56 0 547
+60 16 42 547
+68 129 455 547
+85 104 178 547
+115 72 506 547
+126 123 0 547
+140 160 0 547
+145 221 528 547
+209 240 264 547
+210 21 0 547
+213 29 528 547
+223 213 532 547
+223 21 447 547
+235 245 440 547
+235 38 539 547
+254 132 520 547
+4 85 487 548
+21 69 0 548
+27 37 525 548
+27 169 476 548
+58 44 0 548
+81 8 0 548
+88 100 74 548
+108 156 502 548
+119 139 526 548
+139 60 438 548
+158 88 470 548
+158 174 0 548
+161 189 0 548
+163 247 545 548
+175 168 457 548
+185 138 541 548
+192 251 545 548
+195 53 440 548
+197 120 453 548
+200 24 526 548
+200 86 533 548
+207 240 500 548
+210 244 327 548
+220 37 0 548
+225 21 247 548
+249 186 465 548
+253 60 537 548
+254 182 527 548
+8 89 291 549
+25 2 511 549
+28 101 530 549
+58 106 87 549
+75 140 0 549
+79 254 526 549
+79 203 530 549
+100 165 0 549
+118 9 71 549
+121 71 468 549
+121 153 520 549
+165 133 521 549
+165 180 259 549
+171 251 530 549
+186 135 492 549
+193 148 489 549
+204 78 415 549
+210 164 512 549
+216 24 0 549
+220 228 491 549
+220 28 0 549
+243 40 522 549
+19 83 531 550
+22 35 543 550
+24 10 518 550
+41 166 532 550
+62 14 0 550
+62 126 0 550
+64 75 0 550
+75 76 500 550
+79 250 523 550
+89 214 538 550
+100 103 95 550
+119 179 0 550
+121 234 539 550
+124 249 539 550
+125 177 420 550
+140 205 246 550
+178 119 483 550
+215 10 283 550
+225 2 361 550
+227 40 453 550
+244 34 531 550
+245 198 309 550
+253 246 525 550
+13 114 500 551
+24 89 510 551
+26 30 484 551
+77 140 450 551
+80 192 0 551
+81 21 21 551
+126 121 507 551
+128 180 68 551
+172 45 433 551
+175 149 424 551
+175 176 0 551
+175 255 366 551
+188 236 531 551
+192 202 297 551
+215 206 545 551
+227 10 501 551
+231 59 496 551
+248 195 505 551
+251 9 490 551
+252 5 420 551
+252 73 469 551
+2 12 524 552
+8 82 0 552
+51 162 195 552
+59 75 468 552
+74 84 525 552
+80 129 524 552
+105 104 511 552
+119 187 515 552
+131 147 0 552
+190 245 541 552
+197 3 392 552
+222 48 488 552
+226 236 544 552
+228 50 526 552
+252 54 0 552
+254 53 308 552
+256 122 508 552
+18 68 548 553
+38 53 0 553
+40 97 0 553
+60 74 457 553
+63 75 548 553
+67 87 308 553
+70 83 284 553
+81 138 548 553
+88 168 520 553
+112 234 476 553
+113 80 360 553
+121 139 542 553
+130 217 539 553
+132 244 491 553
+139 256 0 553
+144 251 139 553
+162 131 85 553
+165 147 513 553
+170 119 518 553
+175 167 506 553
+177 161 0 553
+186 253 391 553
+187 251 0 553
+218 29 0 553
+233 231 458 553
+241 139 518 553
+16 47 540 554
+35 28 540 554
+73 16 0 554
+81 70 491 554
+91 84 515 554
+92 104 486 554
+104 119 518 554
+146 229 483 554
+162 229 517 554
+169 217 540 554
+172 251 0 554
+181 194 509 554
+188 194 520 554
+200 26 511 554
+222 234 429 554
+223 216 467 554
+226 209 248 554
+233 236 0 554
+31 236 500 555
+69 136 249 555
+81 67 348 555
+88 233 523 555
+100 181 0 555
+130 214 535 555
+145 228 519 555
+146 175 0 555
+158 191 326 555
+183 198 426 555
+185 77 521 555
+185 176 549 555
+211 81 293 555
+224 229 528 555
+231 28 0 555
+231 199 533 555
+232 40 527 555
+243 114 487 555
+244 197 0 555
+245 201 283 555
+8 67 0 556
+19 24 0 556
+46 53 546 556
+48 90 494 556
+56 119 0 556
+62 3 0 556
+62 98 427 556
+64 78 0 556
+103 241 505 556
+145 168 519 556
+149 229 499 556
+165 145 286 556
+166 233 546 556
+169 187 544 556
+169 224 546 556
+207 53 523 556
+225 20 399 556
+252 106 275 556
+252 7 0 556
+5 114 0 557
+49 125 478 557
+55 188 537 557
+73 80 0 557
+85 29 535 557
+92 145 549 557
+105 167 542 557
+108 133 545 557
+116 132 205 557
+120 123 529 557
+124 214 535 557
+127 234 243 557
+127 129 535 557
+145 167 518 557
+148 226 0 557
+170 77 469 557
+171 236 529 557
+179 201 541 557
+193 206 0 557
+232 235 489 557
+244 184 94 557
+8 86 0 558
+24 87 435 558
+37 56 530 558
+39 156 524 558
+84 141 461 558
+91 161 534 558
+103 167 0 558
+103 233 323 558
+106 11 399 558
+110 187 413 558
+137 241 482 558
+143 1 546 558
+154 83 535 558
+156 174 499 558
+169 229 544 558
+181 242 0 558
+196 225 242 558
+199 9 0 558
+208 26 514 558
+249 199 514 558
+253 15 449 558
+7 123 506 559
+82 41 534 559
+103 172 0 559
+106 54 254 559
+107 222 539 559
+112 183 541 559
+119 186 85 559
+126 112 0 559
+126 127 497 559
+128 187 0 559
+160 215 206 559
+182 155 268 559
+189 206 419 559
+200 231 513 559
+211 3 66 559
+211 24 0 559
+221 43 531 559
+250 194 554 559
+5 4 0 560
+22 89 298 560
+23 153 534 560
+59 9 85 560
+60 126 424 560
+83 222 552 560
+126 141 536 560
+127 121 520 560
+170 205 540 560
+173 234 0 560
+174 121 545 560
+177 138 518 560
+191 209 416 560
+213 199 519 560
+226 220 522 560
+232 252 464 560
+237 236 0 560
+239 18 545 560
+249 243 540 560
+250 215 526 560
+84 149 544 561
+85 153 557 561
+85 84 539 561
+162 228 525 561
+167 162 496 561
+185 186 0 561
+238 179 538 561
+242 3 453 561
+248 114 259 561
+6 87 544 562
+22 43 516 562
+27 87 540 562
+31 251 526 562
+31 106 514 562
+72 105 533 562
+82 96 489 562
+114 78 337 562
+134 194 500 562
+144 60 543 562
+157 169 19 562
+185 75 492 562
+187 240 0 562
+197 54 410 562
+231 251 470 562
+247 51 543 562
+254 195 373 562
+8 137 526 563
+31 230 534 563
+39 185 544 563
+64 127 458 563
+77 187 466 563
+88 167 0 563
+97 176 547 563
+108 241 465 563
+121 186 0 563
+137 77 428 563
+160 203 473 563
+192 240 450 563
+254 240 0 563
+6 126 517 564
+30 84 518 564
+41 72 531 564
+42 52 554 564
+55 183 527 564
+65 178 0 564
+72 76 0 564
+78 69 517 564
+82 100 0 564
+97 178 447 564
+114 129 545 564
+130 84 115 564
+138 205 496 564
+159 219 527 564
+162 175 422 564
+170 240 57 564
+227 101 408 564
+1 16 542 565
+3 87 546 565
+8 68 246 565
+22 66 507 565
+50 37 524 565
+53 2 542 565
+74 173 543 565
+78 84 518 565
+97 164 404 565
+103 112 544 565
+113 181 391 565
+124 179 526 565
+130 101 476 565
+133 132 241 565
+134 145 539 565
+160 14 477 565
+178 238 524 565
+187 61 518 565
+192 252 550 565
+197 118 414 565
+200 12 487 565
+219 27 0 565
+230 27 537 565
+236 34 548 565
+242 14 543 565
+249 197 320 565
+9 43 560 566
+10 156 521 566
+12 137 229 566
+13 16 539 566
+14 211 0 566
+27 88 534 566
+61 1 147 566
+85 151 507 566
+103 151 157 566
+113 117 0 566
+113 133 334 566
+116 162 0 566
+116 131 0 566
+128 178 297 566
+190 61 549 566
+192 235 551 566
+226 212 525 566
+237 187 423 566
+245 197 0 566
+6 121 514 567
+50 36 531 567
+55 101 0 567
+62 50 459 567
+78 158 467 567
+100 116 324 567
+141 210 536 567
+177 238 490 567
+182 202 530 567
+199 66 532 567
+237 251 0 567
+253 57 551 567
+254 37 534 567
+10 96 99 568
+49 1 0 568
+56 6 160 568
+68 146 541 568
+119 183 0 568
+126 177 0 568
+132 222 563 568
+138 129 544 568
+138 202 336 568
+139 251 0 568
+141 193 529 568
+149 168 515 568
+150 173 438 568
+157 209 536 568
+183 250 535 568
+192 140 75 568
+202 200 484 568
+207 194 144 568
+207 15 509 568
+217 250 567 568
+227 224 541 568
+229 34 543 568
+230 250 556 568
+238 129 377 568
+244 66 542 568
+247 244 507 568
+22 7 401 569
+22 8 0 569
+25 8 281 569
+62 248 378 569
+67 196 454 569
+70 27 527 569
+79 160 485 569
+81 145 564 569
+89 217 517 569
+89 233 544 569
+92 171 540 569
+93 48 502 569
+97 191 431 569
+102 176 549 569
+103 156 0 569
+117 169 564 569
+126 186 553 569
+146 113 519 569
+146 191 346 569
+147 46 559 569
+148 93 536 569
+160 176 557 569
+182 197 453 569
+206 30 550 569
+208 1 212 569
+227 82 120 569
+13 2 543 570
+29 94 553 570
+47 100 429 570
+58 219 547 570
+61 203 0 570
+114 199 195 570
+128 176 541 570
+140 203 408 570
+142 196 163 570
+191 212 527 570
+207 1 0 570
+239 4 545 570
+248 35 192 570
+249 189 553 570
+252 13 551 570
+12 92 337 571
+14 10 568 571
+17 71 551 571
+28 32 526 571
+48 37 557 571
+53 199 0 571
+63 37 561 571
+65 128 0 571
+70 20 507 571
+100 115 0 571
+103 168 500 571
+118 69 546 571
+124 184 507 571
+136 202 557 571
+140 252 542 571
+142 84 0 571
+159 131 560 571
+206 211 373 571
+220 232 486 571
+224 32 540 571
+236 243 547 571
+240 205 426 571
+244 69 549 571
+6 71 217 572
+7 72 0 572
+33 248 299 572
+42 36 557 572
+72 84 546 572
+80 159 548 572
+89 150 438 572
+92 168 535 572
+93 225 557 572
+107 160 566 572
+107 235 546 572
+145 141 382 572
+175 62 561 572
+177 176 408 572
+182 252 529 572
+210 220 228 572
+215 199 369 572
+239 36 550 572
+242 197 0 572
+3 20 476 573
+5 69 0 573
+14 2 0 573
+33 41 559 573
+50 215 566 573
+69 88 564 573
+73 40 552 573
+85 27 520 573
+99 164 232 573
+102 168 531 573
+110 116 0 573
+123 217 526 573
+130 153 542 573
+135 196 454 573
+148 196 27 573
+150 218 393 573
+159 46 569 573
+180 183 571 573
+180 240 374 573
+181 124 503 573
+219 32 512 573
+247 34 171 573
+256 4 428 573
+2 35 523 574
+9 30 560 574
+9 91 555 574
+23 69 0 574
+32 106 537 574
+33 2 547 574
+34 86 487 574
+65 133 281 574
+79 242 529 574
+94 170 446 574
+124 234 544 574
+133 149 543 574
+138 139 545 574
+138 188 355 574
+145 210 515 574
+152 197 563 574
+166 163 0 574
+180 228 411 574
+195 66 291 574
+218 176 547 574
+227 103 557 574
+231 103 568 574
+239 225 533 574
+254 225 551 574
+5 53 0 575
+9 89 562 575
+21 34 543 575
+25 30 560 575
+28 134 570 575
+39 146 431 575
+52 178 543 575
+57 122 528 575
+66 41 525 575
+84 88 545 575
+120 28 553 575
+124 183 504 575
+130 196 327 575
+137 210 562 575
+138 159 359 575
+151 173 441 575
+175 253 559 575
+206 1 337 575
+231 106 451 575
+235 58 486 575
+235 64 555 575
+245 54 554 575
+246 51 559 575
+250 57 538 575
+23 72 0 576
+38 98 352 576
+70 151 492 576
+104 169 0 576
+107 187 435 576
+114 72 0 576
+118 103 554 576
+120 153 515 576
+125 154 538 576
+125 121 546 576
+127 238 550 576
+128 80 0 576
+138 207 567 576
+142 209 548 576
+170 117 567 576
+190 196 510 576
+191 241 0 576
+207 14 0 576
+211 82 132 576
+256 128 496 576
+7 40 530 577
+12 105 442 577
+18 39 405 577
+22 19 510 577
+27 166 501 577
+33 216 451 577
+41 90 476 577
+49 64 553 577
+61 15 0 577
+68 159 547 577
+83 110 565 577
+87 77 518 577
+91 86 0 577
+94 102 487 577
+109 127 0 577
+136 197 538 577
+140 152 540 577
+171 26 533 577
+182 151 163 577
+191 225 260 577
+202 16 181 577
+242 209 548 577
+245 36 547 577
+19 69 0 578
+22 38 488 578
+37 98 0 578
+48 122 556 578
+84 163 568 578
+85 145 479 578
+91 94 504 578
+123 198 539 578
+132 163 564 578
+138 160 0 578
+152 218 377 578
+183 176 545 578
+184 136 0 578
+199 69 415 578
+235 201 510 578
+236 43 0 578
+239 81 552 578
+255 194 560 578
+12 109 556 579
+38 105 535 579
+45 49 533 579
+104 254 557 579
+124 136 533 579
+131 50 553 579
+140 219 481 579
+144 15 443 579
+156 161 523 579
+164 243 555 579
+184 215 277 579
+201 16 557 579
+211 49 527 579
+217 160 0 579
+226 129 436 579
+228 247 248 579
+235 205 543 579
+242 206 468 579
+18 103 561 580
+24 165 527 580
+74 68 566 580
+112 100 568 580
+159 242 528 580
+165 235 565 580
+175 36 541 580
+188 205 520 580
+190 253 569 580
+208 20 475 580
+217 224 364 580
+226 236 562 580
+235 246 410 580
+239 211 521 580
+24 118 560 581
+26 125 559 581
+43 64 257 581
+48 11 564 581
+70 39 255 581
+82 36 43 581
+92 155 0 581
+101 105 0 581
+154 158 0 581
+165 220 548 581
+173 165 520 581
+180 187 367 581
+184 204 331 581
+202 167 550 581
+205 11 565 581
+217 25 544 581
+239 62 556 581
+244 246 171 581
+256 17 374 581
+10 153 520 582
+40 60 551 582
+40 183 546 582
+70 29 468 582
+70 101 211 582
+74 30 545 582
+85 130 166 582
+88 214 204 582
+117 179 164 582
+122 177 416 582
+125 100 443 582
+145 136 0 582
+148 208 514 582
+151 200 577 582
+162 185 80 582
+182 186 0 582
+188 189 526 582
+201 200 0 582
+202 152 547 582
+222 163 543 582
+229 44 411 582
+255 37 527 582
+24 115 560 583
+29 38 484 583
+41 101 0 583
+45 57 536 583
+51 99 17 583
+70 35 513 583
+70 105 203 583
+76 182 0 583
+80 132 194 583
+104 116 569 583
+107 183 480 583
+124 250 542 583
+131 196 201 583
+135 155 220 583
+147 191 491 583
+175 48 479 583
+201 8 563 583
+211 30 403 583
+215 203 461 583
+11 28 563 584
+40 8 547 584
+40 169 557 584
+53 122 544 584
+59 76 491 584
+85 69 0 584
+106 165 567 584
+123 184 518 584
+133 151 0 584
+139 189 524 584
+149 233 516 584
+154 112 569 584
+189 58 503 584
+217 173 349 584
+218 26 0 584
+227 36 516 584
+238 205 41 584
+241 194 433 584
+244 113 546 584
+1 71 567 585
+2 114 266 585
+4 72 576 585
+21 105 541 585
+28 153 510 585
+34 8 575 585
+42 111 561 585
+48 34 568 585
+54 2 549 585
+55 11 0 585
+61 37 563 585
+70 103 284 585
+80 143 0 585
+86 111 570 585
+87 135 120 585
+99 149 0 585
+111 176 0 585
+128 115 367 585
+146 115 493 585
+161 225 580 585
+172 232 221 585
+176 239 571 585
+180 232 561 585
+180 243 0 585
+189 175 0 585
+197 57 345 585
+248 115 482 585
+255 223 558 585
+11 75 0 586
+11 89 577 586
+15 32 545 586
+21 44 545 586
+21 92 544 586
+24 150 574 586
+27 97 580 586
+33 51 0 586
+42 11 202 586
+79 193 233 586
+91 68 556 586
+115 183 342 586
+120 182 518 586
+123 165 542 586
+127 173 549 586
+127 237 558 586
+137 152 514 586
+157 132 502 586
+169 123 542 586
+192 238 445 586
+229 29 538 586
+238 244 0 586
+241 228 0 586
+242 2 398 586
+251 112 554 586
+12 154 438 587
+39 90 0 587
+39 111 553 587
+41 92 480 587
+42 73 560 587
+43 55 574 587
+56 133 112 587
+58 74 563 587
+70 83 571 587
+71 182 550 587
+77 141 0 587
+78 28 556 587
+116 187 463 587
+149 162 543 587
+158 237 573 587
+180 131 529 587
+190 193 509 587
+208 17 0 587
+222 211 555 587
+224 10 0 587
+227 248 438 587
+4 83 573 588
+11 10 562 588
+12 27 318 588
+25 221 560 588
+49 205 551 588
+51 103 522 588
+54 98 152 588
+72 89 0 588
+81 97 574 588
+85 95 551 588
+90 102 300 588
+107 234 412 588
+108 127 511 588
+117 140 575 588
+120 124 503 588
+125 95 488 588
+130 195 560 588
+147 168 514 588
+172 250 519 588
+177 191 0 588
+180 46 485 588
+185 168 415 588
+215 16 395 588
+249 38 573 588
+255 206 342 588
+12 41 460 589
+19 95 103 589
+52 81 502 589
+65 85 500 589
+80 84 514 589
+95 100 247 589
+174 122 533 589
+175 47 557 589
+217 195 549 589
+218 25 0 589
+223 56 551 589
+236 64 470 589
+29 105 138 590
+35 95 409 590
+45 90 519 590
+81 10 542 590
+117 122 555 590
+122 188 240 590
+171 182 566 590
+207 17 80 590
+221 81 550 590
+227 34 0 590
+254 175 107 590
+254 194 398 590
+27 92 0 591
+28 72 265 591
+30 37 443 591
+47 95 232 591
+47 83 471 591
+66 92 574 591
+70 153 0 591
+71 135 0 591
+78 29 554 591
+87 214 127 591
+94 158 0 591
+101 181 558 591
+121 71 569 591
+152 18 585 591
+169 191 580 591
+178 71 486 591
+179 197 0 591
+196 9 574 591
+199 28 550 591
+205 198 523 591
+207 223 0 591
+210 244 572 591
+213 17 514 591
+213 6 483 591
+224 44 357 591
+228 248 98 591
+234 207 550 591
+244 48 571 591
+12 43 554 592
+27 169 570 592
+35 68 515 592
+54 23 531 592
+78 79 584 592
+81 91 549 592
+88 158 562 592
+104 226 397 592
+104 168 427 592
+106 127 515 592
+109 166 474 592
+124 92 361 592
+128 192 560 592
+146 105 522 592
+155 220 584 592
+165 234 471 592
+190 238 376 592
+195 22 518 592
+215 12 399 592
+218 45 0 592
+248 3 263 592
+30 95 366 593
+41 34 321 593
+42 90 487 593
+47 177 553 593
+48 112 540 593
+51 162 568 593
+54 69 0 593
+56 60 0 593
+58 4 536 593
+66 33 547 593
+102 156 506 593
+123 135 520 593
+137 241 576 593
+157 143 284 593
+170 165 545 593
+172 216 521 593
+196 8 577 593
+197 118 573 593
+256 204 267 593
+6 126 592 594
+12 153 289 594
+28 91 450 594
+51 101 0 594
+54 6 387 594
+85 150 481 594
+112 165 545 594
+120 59 493 594
+123 141 565 594
+149 89 515 594
+163 191 139 594
+170 183 0 594
+170 182 59 594
+176 45 569 594
+178 163 586 594
+193 13 343 594
+205 48 566 594
+214 160 103 594
+215 18 574 594
+217 5 582 594
+244 34 565 594
+248 23 578 594
+251 122 553 594
+4 43 590 595
+17 20 397 595
+20 21 0 595
+28 119 550 595
+46 53 573 595
+68 148 512 595
+73 102 557 595
+75 139 520 595
+102 122 0 595
+110 180 581 595
+116 143 177 595
+123 249 486 595
+124 131 516 595
+142 193 444 595
+153 88 437 595
+153 141 584 595
+169 181 539 595
+210 50 561 595
+220 16 578 595
+224 231 378 595
+255 51 530 595
+16 125 567 596
+38 8 581 596
+42 122 197 596
+43 157 591 596
+55 170 477 596
+63 115 550 596
+67 95 575 596
+71 83 564 596
+78 154 512 596
+101 127 562 596
+132 13 394 596
+138 89 523 596
+142 210 536 596
+160 93 519 596
+181 164 535 596
+200 175 586 596
+204 78 565 596
+206 16 301 596
+213 144 357 596
+227 20 0 596
+247 42 583 596
+251 49 536 596
+2 12 562 597
+6 122 521 597
+25 15 517 597
+49 13 189 597
+49 113 564 597
+50 34 521 597
+66 158 581 597
+72 153 480 597
+169 185 0 597
+194 7 580 597
+196 3 464 597
+200 4 583 597
+204 199 0 597
+226 209 596 597
+249 60 540 597
+7 69 0 598
+19 47 174 598
+25 206 536 598
+44 73 559 598
+50 37 586 598
+51 128 420 598
+52 68 557 598
+65 91 563 598
+76 186 0 598
+80 89 593 598
+87 90 570 598
+93 35 478 598
+104 69 561 598
+105 84 594 598
+121 187 446 598
+157 97 574 598
+158 163 549 598
+160 235 580 598
+161 163 564 598
+161 209 227 598
+175 45 552 598
+181 207 589 598
+189 144 501 598
+195 198 329 598
+208 81 493 598
+239 81 591 598
+6 89 415 599
+21 103 547 599
+58 23 566 599
+62 14 583 599
+67 83 0 599
+71 140 579 599
+87 140 501 599
+104 131 550 599
+119 138 232 599
+129 17 567 599
+130 163 437 599
+133 123 520 599
+137 214 478 599
+138 154 413 599
+144 249 134 599
+159 17 443 599
+169 234 0 599
+172 179 500 599
+213 25 454 599
+251 73 561 599
+1 54 561 600
+3 93 248 600
+6 119 529 600
+9 81 539 600
+17 197 485 600
+20 88 557 600
+43 82 588 600
+44 110 546 600
+49 54 591 600
+79 254 558 600
+100 225 581 600
+114 180 583 600
+117 134 492 600
+121 183 470 600
+126 67 170 600
+137 186 0 600
+144 25 443 600
+160 220 522 600
+186 13 571 600
+192 244 582 600
+210 23 583 600
+226 249 464 600
+237 251 598 600
+8 134 283 601
+9 65 471 601
+21 33 0 601
+28 103 0 601
+61 245 562 601
+62 245 537 601
+73 170 449 601
+92 90 0 601
+100 46 584 601
+101 115 0 601
+110 191 293 601
+124 157 585 601
+124 218 573 601
+128 180 569 601
+138 143 0 601
+176 230 558 601
+186 256 586 601
+209 30 0 601
+9 89 579 602
+13 3 198 602
+32 106 582 602
+37 56 581 602
+74 65 235 602
+171 250 522 602
+177 138 584 602
+196 175 580 602
+224 252 570 602
+237 180 580 602
+249 256 577 602
+254 195 578 602
+19 94 598 603
+31 175 554 603
+40 178 486 603
+52 67 345 603
+66 67 0 603
+83 174 541 603
+107 191 491 603
+114 181 0 603
+125 34 587 603
+143 175 591 603
+160 31 383 603
+211 35 474 603
+247 197 324 603
+249 42 581 603
+12 86 408 604
+14 3 0 604
+16 42 576 604
+66 115 597 604
+70 149 267 604
+85 134 0 604
+105 170 564 604
+111 191 226 604
+123 183 393 604
+135 250 587 604
+137 155 0 604
+155 239 596 604
+159 219 588 604
+162 147 531 604
+169 176 530 604
+189 235 523 604
+193 255 456 604
+209 20 158 604
+210 206 425 604
+222 220 568 604
+223 3 449 604
+226 172 395 604
+244 200 547 604
+246 2 556 604
+249 198 307 604
+6 120 385 605
+29 90 0 605
+40 114 0 605
+47 90 0 605
+70 101 595 605
+75 250 518 605
+78 83 351 605
+89 95 483 605
+106 185 0 605
+110 116 600 605
+117 76 456 605
+160 196 596 605
+182 250 0 605
+189 252 540 605
+197 11 566 605
+206 17 0 605
+237 31 491 605
+242 200 547 605
+252 38 465 605
+6 78 514 606
+37 53 339 606
+37 51 0 606
+82 147 594 606
+123 250 508 606
+131 196 595 606
+162 225 539 606
+167 41 581 606
+182 197 592 606
+187 251 592 606
+189 232 595 606
+190 226 582 606
+199 133 500 606
+204 74 564 606
+206 19 342 606
+212 24 597 606
+224 41 356 606
+248 197 0 606
+16 19 167 607
+72 163 585 607
+75 129 192 607
+77 157 542 607
+86 153 0 607
+124 151 270 607
+176 46 319 607
+180 175 108 607
+192 158 588 607
+213 196 453 607
+216 236 579 607
+228 34 0 607
+235 57 0 607
+252 27 599 607
+254 56 569 607
+26 16 485 608
+44 107 567 608
+55 169 486 608
+58 78 528 608
+63 56 541 608
+105 157 391 608
+110 176 289 608
+117 124 0 608
+119 151 499 608
+127 241 573 608
+132 17 301 608
+167 188 583 608
+168 171 488 608
+174 177 428 608
+193 247 578 608
+193 23 596 608
+201 73 486 608
+203 17 273 608
+205 204 265 608
+219 236 592 608
+240 44 586 608
+243 40 590 608
+247 198 484 608
+247 6 567 608
+3 95 597 609
+4 30 463 609
+8 18 0 609
+16 86 585 609
+40 53 479 609
+64 51 600 609
+74 4 208 609
+89 157 114 609
+96 187 564 609
+98 117 0 609
+113 174 561 609
+130 225 530 609
+139 230 538 609
+144 214 562 609
+159 173 568 609
+173 239 572 609
+174 61 607 609
+180 240 596 609
+181 242 576 609
+193 214 532 609
+198 199 302 609
+218 31 315 609
+234 45 44 609
+247 118 491 609
+5 12 504 610
+24 51 315 610
+37 103 545 610
+44 64 469 610
+45 64 285 610
+52 9 468 610
+66 119 587 610
+81 138 569 610
+84 147 0 610
+98 116 0 610
+111 141 594 610
+112 113 556 610
+112 190 590 610
+113 138 601 610
+116 133 183 610
+117 183 330 610
+119 130 595 610
+127 254 563 610
+137 132 471 610
+139 248 594 610
+151 197 605 610
+189 203 426 610
+190 164 0 610
+205 64 526 610
+212 232 562 610
+223 33 437 610
+234 224 0 610
+235 256 521 610
+238 242 137 610
+53 98 378 611
+86 90 0 611
+96 89 0 611
+118 9 588 611
+139 205 257 611
+140 214 304 611
+145 209 0 611
+170 113 583 611
+191 252 603 611
+200 3 0 611
+202 143 330 611
+202 205 0 611
+223 200 466 611
+3 18 449 612
+27 154 93 612
+31 44 497 612
+42 33 611 612
+46 99 596 612
+62 50 578 612
+62 37 452 612
+66 133 457 612
+78 89 464 612
+82 36 590 612
+90 218 594 612
+106 54 566 612
+145 254 602 612
+147 200 562 612
+156 165 522 612
+159 237 570 612
+166 170 0 612
+166 131 599 612
+169 84 588 612
+180 232 599 612
+192 202 587 612
+206 4 384 612
+232 47 583 612
+243 15 595 612
+254 240 605 612
+255 52 0 612
+4 94 587 613
+11 93 590 613
+13 60 601 613
+15 56 553 613
+17 221 0 613
+59 170 456 613
+98 181 0 613
+99 149 596 613
+108 184 499 613
+110 190 578 613
+110 177 123 613
+119 72 498 613
+126 76 485 613
+149 211 609 613
+166 168 0 613
+167 29 576 613
+179 248 565 613
+196 200 354 613
+255 47 578 613
+1 177 589 614
+16 41 543 614
+45 256 212 614
+48 113 533 614
+55 133 501 614
+62 252 567 614
+78 157 524 614
+79 115 556 614
+84 190 596 614
+86 156 491 614
+86 165 499 614
+102 183 229 614
+125 170 0 614
+147 100 489 614
+152 197 587 614
+153 233 403 614
+155 250 539 614
+167 237 337 614
+186 196 582 614
+193 140 528 614
+199 9 574 614
+206 31 19 614
+224 251 227 614
+228 255 0 614
+243 24 604 614
+248 59 522 614
+2 69 0 615
+13 48 555 615
+15 3 0 615
+27 103 244 615
+32 42 502 615
+67 210 560 615
+70 130 476 615
+78 99 591 615
+96 221 602 615
+101 147 537 615
+109 170 376 615
+119 136 582 615
+142 71 544 615
+142 145 0 615
+143 17 269 615
+145 210 596 615
+152 198 547 615
+153 194 596 615
+163 156 609 615
+164 183 559 615
+176 224 0 615
+201 118 433 615
+208 74 77 615
+248 195 595 615
+4 70 588 616
+6 206 610 616
+17 32 606 616
+37 99 488 616
+46 256 0 616
+58 7 515 616
+62 203 0 616
+67 119 582 616
+75 191 460 616
+92 147 527 616
+116 129 0 616
+126 66 540 616
+136 140 248 616
+139 155 0 616
+151 230 609 616
+152 194 0 616
+170 177 435 616
+180 253 0 616
+208 28 593 616
+213 242 105 616
+226 240 609 616
+234 135 598 616
+244 206 366 616
+256 17 600 616
+5 18 560 617
+19 99 525 617
+33 98 0 617
+39 165 494 617
+49 51 0 617
+60 52 604 617
+67 117 407 617
+90 97 538 617
+126 19 582 617
+145 132 0 617
+148 180 579 617
+148 189 606 617
+161 253 564 617
+176 164 0 617
+186 208 579 617
+186 221 595 617
+211 232 522 617
+236 24 538 617
+239 4 580 617
+243 3 325 617
+36 15 599 618
+55 165 500 618
+94 85 592 618
+104 67 550 618
+105 167 609 618
+106 73 409 618
+123 155 285 618
+129 186 545 618
+155 205 0 618
+158 223 580 618
+169 121 471 618
+181 134 169 618
+198 60 459 618
+231 106 596 618
+234 13 610 618
+236 125 611 618
+242 8 570 618
+254 253 547 618
+45 110 597 619
+51 66 593 619
+77 68 558 619
+104 185 0 619
+105 218 546 619
+130 217 580 619
+148 61 590 619
+158 196 205 619
+164 207 541 619
+164 255 507 619
+180 196 606 619
+185 241 437 619
+189 186 0 619
+227 236 427 619
+230 251 0 619
+233 229 0 619
+246 73 547 619
+18 39 607 620
+18 88 538 620
+24 98 265 620
+44 112 445 620
+47 114 617 620
+49 56 513 620
+54 185 345 620
+65 20 485 620
+65 134 607 620
+76 96 0 620
+96 72 604 620
+102 233 508 620
+117 241 467 620
+127 186 585 620
+130 92 522 620
+153 160 616 620
+171 61 588 620
+181 226 453 620
+181 187 614 620
+189 175 592 620
+205 4 613 620
+206 195 378 620
+211 231 512 620
+256 47 558 620
+13 50 392 621
+19 24 610 621
+32 85 603 621
+35 162 587 621
+51 70 596 621
+63 177 135 621
+74 81 273 621
+78 76 483 621
+103 185 0 621
+105 214 518 621
+106 90 0 621
+130 150 349 621
+135 6 605 621
+147 214 466 621
+154 141 418 621
+180 243 605 621
+186 204 505 621
+191 241 604 621
+208 11 0 621
+216 224 397 621
+224 16 468 621
+241 193 0 621
+247 250 370 621
+14 52 0 622
+40 112 546 622
+53 117 613 622
+77 28 546 622
+84 176 547 622
+93 99 552 622
+101 100 0 622
+104 182 551 622
+108 168 30 622
+128 176 611 622
+153 157 0 622
+157 209 612 622
+174 121 607 622
+179 210 416 622
+181 247 606 622
+227 82 608 622
+228 82 606 622
+235 184 499 622
+251 110 614 622
+252 205 521 622
+10 95 423 623
+13 36 594 623
+27 47 583 623
+27 121 589 623
+40 185 290 623
+42 15 620 623
+48 99 517 623
+51 2 570 623
+58 196 613 623
+73 52 517 623
+76 155 0 623
+78 109 555 623
+90 169 573 623
+93 125 603 623
+119 89 484 623
+120 130 616 623
+139 9 604 623
+144 196 581 623
+179 140 267 623
+181 193 419 623
+222 170 621 623
+222 254 607 623
+15 51 587 624
+34 88 497 624
+40 56 0 624
+49 24 582 624
+85 98 450 624
+112 181 607 624
+146 113 593 624
+146 254 594 624
+151 219 587 624
+162 129 135 624
+162 182 585 624
+193 243 424 624
+217 6 608 624
+220 232 608 624
+222 180 490 624
+248 201 531 624
+1 32 608 625
+9 196 608 625
+22 236 495 625
+27 90 0 625
+67 241 475 625
+78 111 562 625
+87 124 139 625
+88 158 598 625
+153 152 354 625
+157 171 0 625
+163 209 0 625
+184 58 602 625
+256 4 605 625
+12 123 605 626
+29 24 481 626
+50 3 0 626
+55 110 512 626
+55 128 580 626
+67 182 520 626
+72 98 599 626
+83 97 0 626
+108 230 322 626
+109 121 372 626
+130 101 587 626
+139 199 602 626
+140 246 348 626
+141 250 567 626
+148 49 611 626
+158 100 229 626
+161 226 590 626
+192 159 286 626
+194 219 611 626
+210 17 0 626
+212 99 554 626
+229 235 320 626
+250 59 614 626
+53 104 586 627
+58 244 612 627
+61 252 0 627
+93 68 566 627
+112 79 615 627
+149 209 425 627
+153 150 0 627
+154 108 561 627
+160 171 516 627
+167 175 603 627
+174 190 0 627
+174 253 235 627
+180 182 614 627
+202 31 187 627
+221 32 500 627
+237 29 592 627
+238 20 613 627
+254 175 591 627
+20 42 597 628
+20 113 581 628
+44 103 537 628
+45 252 226 628
+48 15 547 628
+70 137 0 628
+75 155 127 628
+114 162 560 628
+119 138 612 628
+125 121 592 628
+132 19 610 628
+170 240 606 628
+214 194 334 628
+215 31 392 628
+217 246 612 628
+249 135 451 628
+23 18 403 629
+27 111 411 629
+50 1 0 629
+52 104 622 629
+82 92 603 629
+90 160 588 629
+107 176 0 629
+130 209 428 629
+132 244 575 629
+132 212 612 629
+143 14 454 629
+151 194 0 629
+153 88 612 629
+164 240 0 629
+177 182 609 629
+194 21 596 629
+205 9 242 629
+218 216 188 629
+240 58 606 629
+241 135 447 629
+243 8 550 629
+5 1 0 630
+5 53 601 630
+81 88 592 630
+94 36 194 630
+120 67 0 630
+129 149 598 630
+139 60 570 630
+140 218 310 630
+145 113 587 630
+148 150 600 630
+155 132 613 630
+159 213 611 630
+175 232 274 630
+183 243 607 630
+186 132 559 630
+187 246 598 630
+207 203 0 630
+210 37 624 630
+222 229 623 630
+231 251 596 630
+9 59 569 631
+15 74 40 631
+19 23 445 631
+64 80 598 631
+67 162 99 631
+76 80 517 631
+96 84 0 631
+129 217 615 631
+139 251 571 631
+169 168 0 631
+174 238 471 631
+192 58 615 631
+201 59 385 631
+208 23 623 631
+213 175 615 631
+222 31 309 631
+233 157 376 631
+243 194 437 631
+250 197 139 631
+251 118 563 631
+48 109 0 632
+58 125 604 632
+59 138 586 632
+70 133 278 632
+117 179 617 632
+120 68 584 632
+139 256 565 632
+143 208 301 632
+149 175 597 632
+162 229 600 632
+202 235 625 632
+34 128 606 633
+41 92 607 633
+43 95 380 633
+47 59 605 633
+51 67 422 633
+59 127 612 633
+65 70 501 633
+66 92 610 633
+74 41 541 633
+98 226 616 633
+138 176 620 633
+146 175 579 633
+148 216 615 633
+164 178 0 633
+174 162 545 633
+204 21 597 633
+209 37 627 633
+213 6 603 633
+234 255 594 633
+243 114 578 633
+254 182 585 633
+256 6 594 633
+34 84 610 634
+38 60 475 634
+41 103 409 634
+59 116 604 634
+77 93 586 634
+98 222 630 634
+123 80 592 634
+136 184 603 634
+168 252 571 634
+203 126 438 634
+204 45 627 634
+205 50 618 634
+205 17 197 634
+206 255 608 634
+207 136 605 634
+239 62 617 634
+250 42 619 634
+9 122 287 635
+15 113 541 635
+16 111 583 635
+27 64 632 635
+36 120 609 635
+57 112 480 635
+93 95 0 635
+105 233 509 635
+125 90 53 635
+146 178 488 635
+172 252 510 635
+184 60 532 635
+190 191 0 635
+211 49 594 635
+22 168 618 636
+22 87 629 636
+25 109 589 636
+28 90 0 636
+36 17 630 636
+41 31 461 636
+42 52 599 636
+98 150 565 636
+108 241 583 636
+115 241 318 636
+118 104 498 636
+128 171 597 636
+141 13 557 636
+153 149 0 636
+169 157 566 636
+173 176 0 636
+187 194 612 636
+187 204 562 636
+193 255 611 636
+200 212 521 636
+208 26 620 636
+212 216 412 636
+235 58 616 636
+238 242 621 636
+244 203 417 636
+2 24 593 637
+11 114 613 637
+32 83 449 637
+35 145 550 637
+64 4 537 637
+76 109 581 637
+82 34 68 637
+87 102 609 637
+91 187 568 637
+95 97 0 637
+100 49 625 637
+108 235 445 637
+112 140 609 637
+125 11 625 637
+128 192 607 637
+130 179 524 637
+139 168 541 637
+164 211 565 637
+183 201 601 637
+206 147 601 637
+214 211 509 637
+226 178 459 637
+238 47 572 637
+240 252 536 637
+246 17 632 637
+2 20 0 638
+6 31 516 638
+11 53 530 638
+44 107 634 638
+68 84 469 638
+78 43 508 638
+81 84 0 638
+130 160 603 638
+146 229 577 638
+160 215 623 638
+160 235 622 638
+163 211 498 638
+167 211 507 638
+170 235 512 638
+174 192 468 638
+195 53 595 638
+218 22 118 638
+226 249 605 638
+250 11 440 638
+29 78 632 639
+33 40 623 639
+37 236 0 639
+38 121 406 639
+58 44 580 639
+58 53 543 639
+67 254 555 639
+146 210 599 639
+148 229 600 639
+154 167 611 639
+169 170 0 639
+172 240 523 639
+177 119 616 639
+184 204 609 639
+194 17 202 639
+207 62 0 639
+214 25 553 639
+229 2 626 639
+232 39 615 639
+236 54 0 639
+26 109 497 640
+29 46 616 640
+30 64 634 640
+38 106 225 640
+49 205 617 640
+56 21 622 640
+60 70 588 640
+61 20 616 640
+65 133 586 640
+75 234 484 640
+87 109 568 640
+89 155 479 640
+93 82 255 640
+94 101 540 640
+113 79 539 640
+171 220 518 640
+214 208 595 640
+228 22 563 640
+230 246 0 640
+242 199 499 640
+35 52 619 641
+37 2 600 641
+39 150 430 641
+74 151 638 641
+83 143 636 641
+103 115 520 641
+104 179 530 641
+112 77 382 641
+113 112 633 641
+120 131 0 641
+132 13 614 641
+142 160 0 641
+143 244 478 641
+156 235 597 641
+160 14 627 641
+192 252 601 641
+207 253 0 641
+212 36 198 641
+214 240 635 641
+222 162 621 641
+249 140 388 641
+249 58 0 641
+25 87 593 642
+28 38 611 642
+52 99 622 642
+63 60 627 642
+65 177 590 642
+72 157 604 642
+72 148 586 642
+122 74 412 642
+126 67 613 642
+129 206 352 642
+140 197 0 642
+146 97 200 642
+148 211 0 642
+155 67 636 642
+157 107 403 642
+166 249 613 642
+172 253 469 642
+176 206 631 642
+181 140 509 642
+202 45 629 642
+202 6 0 642
+211 56 631 642
+216 19 408 642
+228 66 621 642
+229 19 615 642
+235 31 463 642
+13 6 598 643
+34 190 616 643
+45 62 56 643
+53 8 445 643
+54 103 441 643
+61 58 0 643
+62 11 0 643
+62 59 592 643
+73 116 572 643
+75 178 349 643
+83 100 81 643
+90 107 0 643
+95 143 633 643
+123 76 98 643
+131 254 0 643
+149 98 619 643
+158 193 547 643
+167 37 564 643
+179 205 604 643
+193 254 0 643
+207 144 465 643
+207 195 0 643
+227 238 611 643
+243 120 587 643
+248 33 607 643
+251 112 610 643
+27 63 615 644
+41 109 434 644
+65 128 628 644
+74 107 625 644
+93 2 266 644
+100 178 0 644
+178 255 590 644
+187 135 572 644
+190 255 376 644
+212 82 129 644
+217 22 29 644
+34 17 640 645
+53 69 480 645
+111 108 224 645
+122 96 477 645
+132 217 584 645
+163 178 619 645
+175 168 604 645
+178 168 506 645
+210 238 609 645
+213 218 229 645
+233 165 165 645
+234 231 630 645
+243 57 452 645
+7 91 463 646
+18 40 636 646
+22 38 600 646
+45 238 575 646
+57 166 471 646
+62 20 596 646
+75 153 638 646
+81 116 423 646
+114 96 614 646
+153 188 631 646
+158 173 0 646
+173 221 573 646
+187 58 574 646
+197 17 621 646
+202 14 371 646
+205 53 569 646
+206 256 0 646
+215 235 597 646
+222 171 0 646
+5 71 470 647
+10 20 607 647
+14 53 182 647
+26 125 591 647
+28 40 629 647
+34 69 626 647
+43 174 626 647
+46 227 610 647
+48 52 139 647
+51 128 625 647
+74 169 627 647
+78 124 611 647
+100 175 0 647
+100 255 600 647
+112 176 0 647
+114 77 582 647
+122 76 123 647
+127 171 50 647
+127 143 644 647
+136 242 0 647
+141 136 596 647
+146 127 547 647
+147 223 401 647
+157 149 621 647
+157 191 478 647
+178 50 631 647
+182 242 0 647
+248 115 600 647
+251 36 557 647
+15 32 601 648
+23 119 521 648
+24 150 625 648
+48 10 627 648
+54 69 630 648
+73 96 630 648
+79 242 630 648
+106 52 608 648
+120 104 369 648
+175 2 620 648
+177 143 633 648
+181 171 626 648
+183 193 570 648
+196 8 630 648
+204 199 619 648
+207 159 210 648
+210 222 620 648
+214 45 625 648
+217 5 605 648
+225 223 0 648
+227 247 412 648
+233 170 542 648
+241 37 635 648
+253 60 614 648
+7 86 414 649
+16 19 624 649
+55 125 75 649
+56 69 0 649
+81 101 514 649
+100 163 0 649
+141 210 588 649
+148 223 0 649
+181 123 503 649
+191 30 596 649
+207 186 511 649
+220 37 591 649
+222 180 633 649
+229 61 619 649
+8 41 637 650
+9 76 148 650
+16 122 613 650
+44 64 624 650
+77 68 639 650
+97 123 645 650
+113 67 185 650
+122 142 598 650
+123 249 638 650
+142 136 414 650
+163 184 638 650
+172 224 378 650
+172 245 0 650
+187 155 230 650
+187 202 555 650
+187 236 620 650
+194 60 557 650
+212 17 0 650
+228 230 470 650
+231 199 582 650
+234 186 91 650
+237 250 638 650
+252 12 631 650
+4 70 634 651
+39 169 413 651
+45 20 548 651
+48 35 419 651
+53 199 595 651
+75 205 272 651
+78 94 437 651
+92 108 0 651
+94 68 535 651
+106 11 614 651
+107 127 0 651
+118 70 571 651
+160 45 625 651
+163 37 588 651
+173 219 553 651
+194 211 0 651
+194 216 0 651
+217 147 587 651
+235 41 582 651
+6 122 627 652
+15 19 546 652
+17 82 536 652
+89 110 627 652
+96 187 625 652
+99 149 623 652
+109 103 335 652
+111 102 462 652
+128 79 0 652
+144 25 627 652
+175 20 480 652
+179 217 480 652
+197 41 620 652
+222 163 599 652
+248 113 620 652
+256 59 0 652
+6 78 624 653
+7 72 627 653
+55 109 283 653
+61 125 0 653
+65 91 643 653
+72 145 0 653
+75 144 509 653
+78 82 423 653
+81 130 0 653
+83 165 630 653
+92 171 640 653
+94 89 530 653
+111 127 0 653
+123 96 556 653
+139 131 549 653
+152 22 267 653
+170 143 638 653
+204 60 58 653
+224 10 630 653
+225 215 566 653
+1 54 619 654
+56 119 605 654
+62 17 340 654
+73 182 648 654
+76 138 0 654
+101 127 624 654
+103 156 632 654
+106 127 605 654
+122 114 527 654
+122 153 609 654
+152 241 610 654
+156 171 0 654
+170 205 614 654
+176 186 411 654
+187 217 566 654
+223 5 505 654
+225 2 600 654
+226 50 340 654
+232 40 590 654
+233 100 639 654
+244 184 623 654
+256 33 644 654
+28 102 620 655
+29 90 619 655
+37 57 403 655
+46 53 649 655
+50 60 436 655
+58 52 210 655
+65 122 291 655
+101 115 626 655
+106 169 431 655
+133 162 105 655
+135 247 569 655
+138 130 626 655
+146 161 0 655
+157 146 615 655
+188 246 0 655
+191 33 604 655
+202 167 612 655
+203 212 642 655
+224 42 0 655
+225 22 279 655
+233 221 624 655
+241 216 640 655
+26 30 566 656
+31 99 633 656
+35 162 628 656
+37 28 590 656
+61 42 0 656
+73 154 633 656
+74 140 646 656
+80 143 631 656
+81 43 525 656
+83 92 586 656
+95 132 610 656
+111 128 486 656
+145 150 282 656
+146 102 428 656
+148 61 646 656
+149 159 223 656
+167 224 390 656
+168 36 641 656
+172 176 0 656
+172 226 640 656
+179 234 642 656
+181 139 522 656
+203 29 630 656
+207 206 0 656
+223 46 335 656
+226 184 493 656
+229 235 636 656
+44 166 446 657
+47 112 631 657
+48 58 94 657
+57 119 517 657
+63 109 617 657
+65 157 643 657
+65 141 634 657
+71 82 521 657
+103 145 393 657
+130 145 0 657
+146 100 0 657
+158 205 646 657
+166 73 463 657
+172 231 0 657
+175 48 607 657
+178 205 604 657
+184 195 0 657
+188 245 267 657
+189 168 640 657
+193 205 600 657
+206 15 359 657
+213 230 629 657
+216 25 0 657
+221 25 647 657
+252 13 594 657
+13 2 649 658
+24 149 641 658
+27 112 418 658
+31 18 656 658
+36 127 622 658
+57 23 624 658
+72 105 646 658
+81 70 574 658
+81 157 535 658
+166 137 555 658
+168 255 640 658
+178 188 647 658
+207 49 471 658
+245 44 622 658
+18 28 300 659
+22 235 580 659
+37 27 595 659
+47 104 607 659
+51 166 425 659
+71 140 653 659
+78 30 434 659
+109 171 400 659
+113 142 629 659
+117 162 0 659
+126 3 0 659
+167 184 647 659
+178 194 640 659
+189 163 629 659
+196 53 555 659
+204 7 506 659
+223 228 561 659
+231 50 524 659
+239 4 641 659
+248 197 646 659
+249 201 164 659
+252 55 566 659
+253 203 0 659
+10 24 579 660
+36 64 71 660
+44 109 0 660
+50 3 650 660
+56 70 468 660
+60 71 603 660
+78 69 579 660
+81 69 0 660
+85 44 620 660
+89 40 637 660
+99 103 0 660
+159 237 632 660
+183 198 617 660
+191 212 612 660
+192 155 107 660
+216 28 346 660
+223 219 603 660
+223 30 0 660
+249 191 637 660
+250 242 646 660
+6 126 633 661
+39 60 651 661
+51 98 0 661
+51 142 641 661
+52 67 614 661
+103 147 649 661
+107 97 421 661
+107 117 646 661
+115 79 653 661
+161 239 59 661
+169 160 603 661
+176 242 644 661
+200 37 575 661
+204 10 0 661
+216 23 0 661
+225 41 628 661
+38 60 643 662
+62 50 644 662
+83 222 610 662
+88 145 0 662
+104 100 0 662
+107 75 489 662
+113 122 204 662
+126 69 514 662
+141 131 628 662
+149 193 239 662
+157 107 650 662
+180 131 598 662
+182 250 632 662
+206 212 315 662
+216 18 0 662
+235 30 577 662
+248 195 649 662
+249 50 280 662
+6 10 269 663
+13 212 632 663
+14 20 0 663
+19 80 636 663
+21 44 598 663
+32 89 516 663
+35 44 626 663
+55 133 651 663
+62 58 0 663
+62 114 364 663
+89 217 627 663
+119 186 649 663
+134 103 642 663
+161 253 661 663
+176 140 603 663
+247 250 642 663
+248 3 612 663
+253 59 595 663
+6 119 631 664
+19 41 655 664
+37 56 656 664
+58 219 652 664
+58 93 655 664
+62 196 552 664
+62 126 562 664
+68 111 622 664
+68 145 0 664
+104 119 568 664
+120 124 640 664
+126 17 515 664
+136 211 0 664
+154 171 0 664
+158 218 562 664
+185 192 628 664
+185 250 652 664
+188 186 0 664
+191 236 641 664
+193 204 644 664
+193 175 645 664
+220 253 660 664
+221 61 632 664
+244 126 557 664
+256 47 621 664
+256 126 431 664
+34 119 627 665
+42 107 564 665
+57 15 648 665
+101 152 646 665
+104 152 661 665
+135 252 626 665
+139 245 189 665
+143 254 0 665
+145 165 588 665
+154 140 595 665
+160 100 560 665
+172 26 349 665
+212 16 502 665
+214 160 608 665
+214 231 609 665
+221 78 644 665
+226 41 651 665
+230 37 0 665
+238 18 591 665
+241 231 611 665
+254 184 400 665
+4 82 0 666
+13 51 648 666
+19 47 654 666
+34 190 648 666
+46 81 623 666
+50 36 574 666
+55 11 603 666
+66 33 619 666
+95 174 344 666
+119 187 649 666
+126 51 578 666
+131 245 0 666
+133 180 607 666
+148 239 0 666
+151 165 560 666
+160 215 647 666
+167 219 552 666
+167 41 648 666
+176 49 645 666
+179 252 640 666
+180 49 476 666
+200 26 612 666
+218 100 633 666
+233 208 619 666
+236 50 511 666
+240 27 584 666
+241 230 433 666
+255 37 656 666
+256 11 0 666
+6 55 640 667
+17 142 643 667
+17 76 661 667
+42 97 492 667
+56 60 603 667
+58 63 0 667
+65 127 629 667
+66 99 450 667
+81 8 619 667
+95 159 574 667
+112 190 617 667
+119 165 655 667
+127 164 0 667
+150 241 495 667
+170 186 0 667
+179 244 469 667
+182 5 665 667
+196 78 639 667
+223 126 587 667
+236 245 204 667
+249 224 560 667
+2 82 107 668
+49 50 363 668
+57 12 592 668
+69 141 590 668
+91 214 653 668
+128 177 0 668
+174 164 445 668
+198 152 655 668
+227 8 629 668
+229 35 567 668
+245 252 204 668
+2 87 541 669
+31 91 650 669
+47 51 349 669
+63 11 0 669
+80 130 285 669
+93 2 661 669
+111 233 422 669
+144 221 0 669
+153 204 656 669
+164 245 0 669
+170 249 390 669
+178 184 567 669
+192 201 598 669
+195 3 0 669
+206 67 620 669
+249 251 0 669
+1 8 0 670
+6 71 635 670
+19 229 657 670
+24 92 494 670
+27 32 0 670
+42 11 602 670
+59 77 0 670
+60 74 578 670
+138 207 624 670
+139 251 648 670
+141 13 660 670
+179 195 349 670
+222 162 649 670
+227 35 0 670
+238 235 663 670
+4 69 0 671
+19 35 415 671
+29 24 653 671
+43 57 665 671
+48 243 559 671
+50 53 0 671
+59 12 531 671
+66 37 616 671
+69 82 175 671
+84 222 181 671
+112 98 640 671
+117 124 628 671
+144 15 631 671
+148 208 654 671
+170 140 568 671
+190 186 0 671
+203 12 566 671
+217 203 645 671
+219 231 661 671
+252 7 641 671
+17 80 611 672
+35 166 638 672
+49 51 641 672
+50 118 470 672
+55 64 344 672
+55 123 404 672
+58 255 0 672
+59 97 571 672
+61 64 0 672
+105 171 268 672
+111 222 144 672
+120 130 667 672
+122 140 591 672
+149 172 650 672
+162 216 660 672
+177 254 0 672
+210 17 655 672
+219 212 635 672
+219 42 668 672
+221 20 398 672
+225 193 530 672
+230 245 0 672
+14 30 467 673
+49 54 644 673
+58 223 642 673
+84 160 503 673
+86 169 0 673
+100 46 663 673
+103 241 586 673
+130 207 606 673
+138 69 576 673
+146 168 0 673
+147 227 664 673
+149 154 647 673
+162 49 653 673
+229 27 649 673
+241 62 667 673
+245 51 659 673
+246 73 648 673
+4 90 535 674
+14 52 638 674
+37 51 641 674
+42 47 0 674
+46 42 0 674
+55 128 637 674
+73 90 615 674
+75 140 574 674
+80 72 414 674
+86 166 360 674
+89 102 409 674
+94 105 389 674
+114 180 606 674
+126 7 667 674
+142 111 652 674
+144 223 640 674
+145 176 670 674
+167 200 507 674
+172 236 0 674
+191 251 581 674
+200 175 622 674
+228 255 640 674
+228 24 179 674
+229 85 604 674
+240 93 549 674
+1 2 0 675
+4 72 615 675
+32 138 639 675
+55 185 86 675
+68 143 632 675
+91 198 658 675
+106 171 575 675
+116 129 646 675
+122 190 211 675
+122 192 385 675
+146 183 382 675
+165 234 671 675
+175 30 23 675
+201 64 498 675
+206 58 472 675
+228 81 624 675
+239 78 600 675
+11 185 630 676
+17 113 624 676
+35 115 595 676
+48 37 661 676
+66 24 0 676
+73 28 507 676
+75 69 591 676
+81 37 659 676
+86 83 656 676
+94 91 604 676
+106 117 231 676
+116 131 647 676
+125 105 542 676
+158 207 638 676
+161 225 649 676
+163 247 601 676
+168 41 619 676
+189 235 657 676
+190 254 0 676
+194 17 674 676
+212 78 579 676
+226 18 610 676
+238 36 58 676
+255 52 662 676
+256 52 256 676
+15 31 631 677
+34 69 667 677
+48 250 592 677
+54 181 243 677
+153 187 580 677
+178 254 0 677
+180 143 0 677
+180 168 0 677
+202 29 401 677
+203 31 189 677
+206 132 0 677
+209 20 621 677
+214 171 60 677
+218 46 662 677
+236 194 627 677
+253 27 628 677
+4 31 0 678
+38 106 664 678
+49 41 657 678
+69 180 618 678
+81 109 675 678
+100 235 655 678
+105 214 647 678
+114 158 656 678
+132 5 605 678
+151 197 668 678
+195 70 586 678
+195 85 647 678
+199 40 485 678
+200 231 632 678
+202 230 671 678
+234 44 655 678
+240 47 557 678
+244 194 0 678
+244 246 643 678
+244 64 555 678
+247 36 672 678
+255 51 637 678
+4 21 631 679
+4 77 0 679
+10 102 487 679
+11 65 310 679
+22 66 623 679
+34 133 583 679
+49 113 660 679
+60 8 323 679
+72 178 667 679
+73 10 653 679
+114 207 639 679
+126 95 483 679
+136 5 607 679
+137 154 624 679
+142 206 509 679
+156 230 588 679
+159 46 590 679
+160 205 646 679
+167 22 373 679
+188 192 0 679
+197 56 318 679
+199 114 675 679
+218 145 641 679
+223 20 0 679
+248 35 597 679
+4 142 595 680
+14 74 107 680
+15 32 675 680
+31 39 647 680
+48 99 645 680
+54 101 615 680
+65 83 475 680
+96 140 571 680
+122 100 660 680
+130 179 650 680
+131 195 0 680
+137 152 627 680
+138 156 659 680
+162 129 647 680
+163 220 307 680
+170 253 0 680
+179 5 520 680
+190 191 641 680
+196 15 529 680
+225 61 644 680
+226 209 619 680
+226 240 651 680
+227 66 269 680
+228 2 599 680
+244 34 621 680
+254 196 0 680
+256 36 407 680
+1 120 563 681
+3 73 652 681
+4 85 577 681
+11 96 665 681
+15 74 641 681
+22 24 0 681
+22 44 0 681
+33 41 628 681
+34 165 614 681
+45 47 0 681
+51 78 656 681
+52 56 0 681
+57 8 514 681
+68 101 512 681
+70 16 639 681
+100 256 667 681
+134 169 635 681
+137 67 267 681
+164 232 33 681
+172 229 0 681
+181 164 655 681
+182 186 633 681
+193 21 647 681
+200 86 674 681
+218 238 653 681
+244 113 614 681
+246 215 275 681
+22 74 640 682
+38 105 657 682
+75 141 0 682
+92 166 274 682
+100 250 647 682
+103 164 619 682
+125 107 0 682
+126 93 457 682
+144 253 75 682
+153 79 629 682
+155 203 0 682
+180 183 585 682
+182 197 629 682
+189 251 230 682
+197 211 549 682
+243 184 0 682
+22 39 0 683
+38 166 412 683
+45 16 503 683
+49 97 670 683
+90 160 646 683
+112 234 667 683
+112 237 652 683
+114 119 652 683
+194 203 626 683
+218 203 588 683
+224 27 0 683
+228 85 580 683
+237 208 519 683
+15 7 645 684
+44 64 667 684
+76 109 663 684
+94 170 674 684
+126 32 503 684
+130 214 680 684
+133 198 658 684
+135 245 150 684
+149 175 670 684
+153 157 632 684
+195 215 289 684
+196 1 315 684
+197 70 428 684
+202 239 389 684
+218 29 574 684
+228 41 604 684
+238 243 0 684
+2 20 644 685
+9 89 672 685
+19 72 402 685
+39 125 547 685
+49 251 640 685
+76 136 652 685
+87 109 656 685
+105 121 572 685
+107 122 173 685
+122 171 645 685
+122 186 0 685
+137 155 668 685
+138 206 618 685
+139 5 592 685
+151 230 644 685
+158 192 648 685
+167 228 415 685
+195 6 660 685
+197 60 325 685
+200 85 270 685
+204 45 643 685
+255 33 394 685
+22 76 650 686
+23 77 656 686
+38 103 373 686
+43 99 510 686
+50 223 671 686
+62 250 557 686
+66 41 613 686
+75 188 0 686
+75 143 120 686
+78 79 657 686
+92 215 681 686
+95 67 610 686
+98 147 680 686
+106 75 632 686
+106 169 670 686
+107 163 684 686
+119 136 664 686
+125 154 673 686
+154 160 0 686
+172 220 0 686
+173 230 651 686
+184 60 670 686
+202 143 659 686
+203 60 0 686
+204 28 0 686
+209 66 627 686
+241 172 399 686
+246 12 570 686
+247 5 333 686
+10 95 675 687
+11 112 249 687
+16 27 434 687
+22 37 0 687
+36 199 677 687
+42 40 659 687
+44 120 683 687
+45 39 568 687
+45 63 277 687
+50 209 673 687
+61 37 629 687
+65 178 664 687
+81 111 561 687
+112 192 612 687
+117 134 682 687
+118 181 0 687
+123 190 562 687
+151 194 643 687
+151 200 597 687
+170 169 675 687
+171 144 669 687
+193 8 631 687
+213 184 112 687
+247 242 231 687
+248 8 472 687
+22 239 643 688
+23 31 624 688
+33 21 619 688
+49 244 0 688
+54 177 588 688
+60 23 338 688
+78 124 676 688
+85 27 642 688
+95 186 599 688
+95 160 511 688
+100 253 588 688
+142 149 357 688
+142 160 653 688
+144 6 285 688
+155 208 538 688
+199 115 487 688
+200 230 622 688
+208 28 676 688
+212 99 659 688
+217 160 653 688
+219 46 661 688
+223 56 660 688
+236 118 476 688
+237 180 681 688
+256 128 643 688
+22 85 0 689
+52 68 658 689
+60 25 427 689
+92 135 672 689
+107 230 673 689
+113 166 647 689
+130 182 660 689
+183 198 683 689
+184 56 562 689
+186 208 655 689
+199 66 650 689
+211 30 663 689
+214 29 577 689
+217 141 676 689
+225 215 674 689
+234 198 536 689
+240 63 590 689
+246 195 453 689
+246 203 531 689
+253 33 682 689
+37 97 661 690
+42 199 669 690
+45 59 525 690
+113 207 665 690
+120 104 680 690
+124 142 608 690
+134 82 309 690
+173 220 411 690
+174 122 644 690
+176 140 684 690
+179 213 359 690
+209 5 585 690
+214 211 682 690
+217 167 450 690
+221 29 581 690
+224 9 620 690
+238 30 566 690
+241 188 476 690
+247 39 670 690
+1 69 484 691
+9 81 663 691
+38 121 662 691
+55 251 556 691
+57 40 0 691
+93 74 0 691
+98 116 638 691
+104 188 665 691
+134 154 600 691
+136 50 672 691
+149 67 0 691
+155 175 650 691
+170 113 674 691
+190 242 456 691
+191 205 539 691
+194 8 541 691
+203 239 585 691
+205 209 603 691
+222 234 685 691
+224 33 680 691
+239 28 667 691
+241 247 251 691
+242 54 679 691
+245 17 677 691
+250 196 585 691
+253 49 0 691
+254 247 444 691
+12 134 675 692
+24 87 570 692
+29 94 620 692
+36 120 678 692
+49 247 516 692
+65 79 0 692
+85 76 640 692
+90 145 658 692
+93 82 677 692
+112 169 423 692
+133 149 668 692
+137 215 634 692
+144 13 105 692
+153 139 568 692
+153 215 576 692
+162 61 656 692
+188 131 686 692
+193 227 639 692
+205 221 583 692
+212 43 496 692
+214 45 685 692
+236 6 623 692
+236 39 0 692
+252 54 680 692
+3 181 657 693
+8 41 684 693
+12 121 508 693
+31 105 633 693
+32 142 604 693
+45 94 490 693
+54 101 688 693
+65 67 0 693
+83 143 676 693
+94 74 0 693
+95 149 582 693
+110 180 671 693
+116 187 629 693
+136 227 662 693
+153 206 620 693
+164 237 555 693
+222 204 671 693
+227 33 0 693
+233 176 0 693
+248 40 75 693
+249 42 640 693
+3 149 665 694
+14 60 596 694
+41 54 651 694
+43 64 622 694
+60 138 660 694
+125 174 0 694
+130 153 667 694
+131 184 0 694
+133 68 397 694
+136 197 597 694
+174 253 686 694
+175 227 544 694
+179 198 311 694
+180 240 677 694
+191 250 581 694
+192 140 582 694
+212 82 676 694
+217 224 653 694
+222 31 665 694
+225 180 663 694
+246 17 652 694
+255 64 0 694
+52 17 359 695
+70 103 682 695
+77 92 683 695
+83 103 560 695
+109 108 0 695
+112 176 657 695
+119 130 657 695
+134 105 654 695
+147 167 478 695
+154 172 587 695
+163 179 623 695
+175 180 679 695
+211 70 488 695
+213 144 629 695
+226 36 539 695
+230 28 678 695
+231 85 566 695
+242 184 0 695
+17 93 272 696
+28 101 662 696
+41 72 681 696
+50 19 675 696
+54 104 362 696
+102 124 674 696
+106 172 668 696
+108 168 680 696
+108 179 682 696
+114 72 639 696
+130 92 661 696
+134 91 646 696
+141 250 655 696
+150 171 0 696
+170 235 654 696
+179 243 0 696
+182 202 677 696
+189 48 519 696
+214 168 0 696
+217 184 277 696
+221 16 315 696
+223 66 391 696
+226 212 569 696
+246 59 421 696
+246 120 471 696
+248 39 188 696
+17 117 661 697
+41 87 508 697
+44 125 0 697
+57 23 680 697
+75 178 670 697
+81 47 0 697
+128 78 666 697
+130 76 654 697
+139 213 135 697
+139 193 580 697
+147 191 685 697
+150 220 273 697
+152 196 690 697
+231 56 684 697
+246 8 462 697
+253 59 692 697
+13 245 676 698
+13 221 501 698
+15 17 268 698
+32 158 656 698
+65 158 507 698
+85 134 658 698
+104 207 664 698
+109 169 332 698
+122 153 683 698
+125 170 638 698
+127 69 598 698
+144 157 694 698
+169 234 674 698
+191 62 579 698
+195 197 0 698
+211 8 589 698
+219 48 657 698
+231 40 329 698
+241 228 618 698
+244 120 599 698
+244 93 684 698
+11 89 667 699
+40 188 676 699
+49 56 641 699
+70 83 691 699
+75 144 660 699
+103 177 569 699
+107 234 661 699
+124 206 657 699
+136 167 409 699
+146 107 677 699
+146 229 672 699
+151 220 0 699
+153 109 670 699
+155 219 0 699
+164 240 644 699
+174 98 552 699
+178 100 679 699
+204 216 577 699
+211 4 0 699
+212 125 676 699
+225 21 557 699
+231 59 674 699
+236 54 651 699
+241 249 412 699
+246 22 693 699
+9 90 536 700
+14 10 619 700
+24 118 663 700
+38 104 370 700
+60 124 608 700
+63 37 652 700
+65 90 564 700
+112 161 646 700
+113 142 686 700
+149 233 694 700
+164 61 518 700
+182 186 688 700
+189 181 686 700
+193 243 662 700
+206 58 687 700
+226 33 0 700
+240 205 692 700
+243 52 573 700
+11 93 655 701
+12 138 532 701
+19 15 671 701
+43 55 617 701
+60 110 697 701
+65 75 605 701
+71 179 689 701
+82 105 695 701
+91 105 0 701
+100 226 88 701
+109 103 668 701
+117 131 332 701
+129 184 430 701
+150 215 626 701
+172 176 678 701
+181 254 416 701
+218 26 610 701
+225 220 286 701
+227 8 673 701
+251 73 694 701
+1 93 319 702
+3 158 665 702
+13 50 661 702
+14 29 607 702
+24 42 662 702
+41 109 678 702
+61 53 340 702
+84 158 0 702
+88 166 0 702
+94 27 380 702
+100 254 352 702
+104 108 0 702
+122 79 0 702
+129 13 366 702
+145 240 660 702
+153 141 601 702
+159 13 434 702
+168 129 665 702
+175 232 684 702
+177 163 626 702
+225 151 449 702
+243 196 530 702
+246 251 0 702
+3 82 485 703
+5 4 595 703
+11 31 653 703
+13 209 554 703
+64 102 668 703
+66 119 683 703
+71 140 671 703
+92 216 648 703
+96 145 0 703
+100 79 643 703
+110 113 0 703
+125 102 301 703
+125 98 473 703
+138 154 613 703
+145 254 653 703
+148 180 656 703
+157 98 605 703
+157 238 656 703
+165 254 597 703
+195 1 0 703
+201 16 624 703
+212 232 667 703
+212 254 673 703
+239 106 684 703
+246 25 531 703
+6 29 448 704
+16 111 646 704
+20 158 683 704
+24 166 450 704
+30 85 669 704
+35 54 577 704
+36 127 676 704
+38 60 677 704
+41 103 666 704
+45 32 0 704
+50 120 472 704
+62 248 596 704
+64 12 580 704
+75 189 0 704
+86 134 117 704
+116 100 648 704
+133 194 646 704
+149 172 695 704
+165 247 570 704
+172 236 700 704
+202 200 603 704
+212 36 650 704
+215 211 0 704
+246 2 629 704
+250 208 0 704
+35 103 506 705
+36 177 554 705
+59 15 85 705
+65 82 483 705
+75 207 501 705
+76 135 678 705
+77 111 645 705
+86 109 358 705
+103 115 680 705
+107 235 671 705
+121 165 493 705
+128 124 599 705
+152 195 356 705
+157 224 586 705
+168 139 646 705
+203 19 676 705
+212 61 282 705
+244 52 0 705
+245 195 152 705
+252 59 0 705
+21 74 700 706
+22 16 451 706
+48 53 342 706
+48 52 670 706
+50 4 662 706
+53 101 703 706
+71 181 0 706
+76 131 655 706
+107 187 644 706
+114 131 517 706
+145 228 679 706
+149 154 685 706
+149 107 687 706
+167 179 677 706
+168 207 691 706
+172 216 619 706
+174 238 639 706
+191 255 0 706
+193 23 633 706
+196 93 420 706
+205 243 577 706
+205 1 150 706
+209 30 660 706
+215 2 402 706
+218 197 676 706
+222 220 665 706
+6 59 395 707
+7 134 203 707
+43 84 466 707
+59 52 381 707
+104 100 675 707
+133 151 649 707
+143 136 221 707
+143 210 495 707
+146 214 643 707
+153 111 636 707
+154 233 0 707
+159 244 687 707
+166 163 599 707
+175 37 304 707
+187 141 514 707
+189 144 670 707
+211 81 584 707
+243 117 686 707
+249 194 464 707
+12 93 596 708
+20 88 663 708
+50 36 696 708
+76 182 685 708
+85 98 676 708
+87 163 693 708
+90 83 516 708
+98 179 702 708
+109 96 643 708
+112 116 459 708
+121 153 632 708
+182 151 655 708
+185 91 595 708
+208 11 663 708
+242 51 649 708
+248 59 653 708
+5 60 0 709
+6 208 240 709
+18 34 0 709
+22 199 685 709
+35 117 634 709
+46 94 589 709
+47 112 697 709
+60 78 632 709
+72 103 433 709
+75 67 327 709
+84 190 623 709
+90 148 659 709
+95 79 551 709
+95 147 571 709
+95 164 670 709
+146 132 668 709
+146 216 636 709
+205 251 0 709
+210 49 699 709
+215 21 0 709
+226 62 549 709
+54 122 695 710
+60 16 593 710
+84 238 655 710
+87 155 701 710
+92 213 574 710
+107 183 657 710
+109 156 504 710
+130 217 659 710
+137 132 622 710
+145 152 0 710
+152 238 631 710
+157 221 0 710
+161 189 559 710
+177 182 671 710
+193 6 653 710
+203 251 0 710
+214 26 294 710
+223 30 671 710
+237 252 704 710
+242 36 584 710
+243 120 658 710
+3 21 0 711
+9 122 677 711
+13 80 698 711
+27 54 690 711
+39 72 692 711
+49 256 0 711
+51 68 654 711
+53 104 692 711
+59 124 597 711
+63 100 704 711
+105 167 677 711
+133 132 586 711
+134 163 704 711
+135 6 699 711
+146 166 0 711
+161 61 573 711
+191 49 279 711
+197 210 249 711
+212 65 697 711
+12 122 0 712
+35 127 624 712
+35 177 577 712
+39 149 693 712
+53 69 658 712
+60 12 0 712
+66 158 674 712
+87 202 702 712
+156 172 414 712
+156 219 541 712
+170 207 597 712
+224 209 658 712
+249 140 687 712
+6 251 581 713
+6 21 0 713
+19 16 674 713
+19 82 0 713
+45 57 650 713
+49 242 482 713
+64 124 661 713
+73 182 665 713
+79 131 272 713
+89 40 696 713
+90 79 624 713
+109 145 708 713
+120 74 710 713
+121 139 704 713
+129 243 362 713
+146 89 683 713
+146 210 664 713
+148 211 691 713
+183 236 507 713
+202 25 0 713
+206 233 675 713
+207 182 683 713
+219 21 588 713
+227 89 703 713
+232 47 654 713
+234 194 615 713
+14 251 703 714
+14 30 685 714
+48 59 0 714
+62 56 380 714
+77 141 634 714
+83 131 624 714
+91 169 605 714
+92 104 698 714
+120 68 656 714
+136 202 653 714
+142 179 710 714
+151 172 599 714
+193 255 678 714
+200 29 484 714
+205 208 0 714
+213 6 642 714
+217 167 698 714
+237 247 700 714
+241 193 668 714
+241 196 676 714
+256 196 534 714
+9 32 508 715
+9 76 667 715
+10 44 408 715
+11 28 671 715
+17 142 700 715
+20 34 282 715
+40 167 690 715
+60 76 109 715
+69 241 680 715
+72 74 689 715
+87 107 665 715
+101 180 696 715
+105 214 686 715
+106 74 684 715
+188 236 563 715
+201 12 370 715
+210 220 614 715
+215 41 0 715
+233 188 494 715
+239 27 564 715
+246 23 381 715
+9 251 575 716
+14 224 615 716
+55 73 0 716
+72 217 701 716
+74 169 680 716
+94 96 0 716
+101 107 682 716
+118 108 513 716
+120 182 688 716
+173 206 642 716
+184 60 710 716
+192 13 304 716
+221 81 640 716
+238 256 0 716
+65 70 677 717
+65 20 639 717
+80 67 310 717
+92 215 709 717
+101 152 700 717
+104 121 475 717
+122 74 681 717
+163 49 537 717
+166 71 690 717
+206 25 670 717
+238 192 696 717
+242 1 0 717
+5 65 700 718
+23 77 697 718
+64 7 656 718
+70 146 675 718
+85 103 0 718
+109 39 336 718
+133 207 609 718
+139 236 350 718
+154 141 628 718
+158 163 691 718
+184 193 0 718
+192 179 700 718
+222 30 0 718
+223 1 308 718
+238 45 694 718
+248 117 213 718
+9 80 495 719
+11 153 667 719
+23 153 704 719
+26 89 711 719
+28 77 655 719
+38 42 447 719
+39 169 669 719
+59 63 0 719
+85 34 460 719
+85 38 332 719
+90 82 522 719
+99 158 157 719
+149 40 699 719
+153 80 622 719
+157 143 604 719
+157 132 599 719
+192 159 656 719
+197 60 704 719
+198 160 698 719
+198 23 347 719
+199 71 165 719
+201 13 514 719
+201 251 123 719
+213 246 488 719
+213 21 424 719
+218 175 630 719
+222 163 702 719
+223 32 364 719
+229 29 705 719
+242 14 704 719
+4 52 0 720
+11 4 402 720
+14 60 699 720
+34 105 696 720
+35 52 664 720
+43 102 455 720
+50 53 692 720
+55 185 688 720
+62 242 486 720
+98 166 0 720
+102 73 656 720
+104 107 663 720
+119 139 716 720
+119 151 674 720
+148 152 0 720
+168 194 666 720
+168 41 701 720
+172 229 690 720
+177 143 706 720
+184 5 191 720
+193 248 649 720
+206 237 661 720
+219 27 574 720
+240 31 496 720
+247 24 668 720
+46 32 365 721
+50 58 701 721
+53 199 675 721
+54 2 701 721
+62 51 0 721
+70 150 688 721
+90 218 699 721
+113 69 229 721
+117 179 664 721
+123 183 636 721
+123 249 679 721
+128 177 698 721
+130 99 703 721
+133 72 0 721
+159 152 547 721
+174 189 0 721
+183 193 674 721
+185 69 679 721
+204 23 0 721
+222 211 694 721
+3 95 627 722
+5 71 687 722
+42 199 702 722
+49 19 700 722
+51 2 630 722
+58 23 638 722
+62 114 688 722
+82 152 698 722
+87 173 669 722
+96 218 533 722
+104 152 690 722
+119 72 656 722
+119 89 666 722
+127 161 0 722
+138 205 710 722
+140 252 605 722
+158 152 541 722
+180 183 698 722
+201 64 688 722
+204 12 0 722
+216 247 653 722
+225 191 655 722
+233 41 709 722
+1 66 315 723
+8 142 712 723
+14 116 708 723
+21 44 683 723
+23 27 647 723
+23 105 708 723
+36 117 645 723
+37 54 406 723
+44 51 708 723
+65 18 660 723
+69 196 712 723
+78 30 695 723
+87 147 643 723
+88 164 583 723
+123 250 636 723
+134 216 697 723
+152 228 407 723
+176 241 684 723
+180 168 699 723
+183 207 655 723
+200 204 0 723
+200 41 267 723
+203 224 620 723
+219 11 695 723
+220 12 715 723
+225 245 682 723
+1 19 151 724
+6 10 700 724
+26 23 705 724
+32 83 652 724
+33 84 714 724
+37 53 634 724
+37 88 679 724
+55 108 0 724
+61 15 701 724
+73 154 705 724
+87 77 685 724
+88 98 0 724
+98 103 270 724
+104 169 662 724
+109 100 697 724
+115 72 648 724
+118 17 644 724
+133 193 257 724
+134 169 690 724
+134 215 705 724
+166 69 700 724
+166 134 718 724
+185 194 634 724
+208 12 0 724
+228 230 698 724
+232 51 305 724
+240 125 564 724
+243 52 713 724
+255 17 281 724
+13 208 0 725
+19 31 573 725
+22 89 587 725
+32 106 623 725
+32 97 0 725
+48 110 0 725
+62 15 0 725
+66 115 666 725
+87 213 673 725
+91 206 611 725
+109 102 332 725
+119 179 605 725
+120 123 713 725
+121 71 597 725
+132 244 702 725
+132 19 685 725
+177 164 0 725
+182 132 653 725
+187 246 703 725
+192 253 0 725
+218 29 706 725
+229 236 0 725
+247 240 695 725
+7 86 698 726
+7 185 498 726
+37 113 649 726
+72 105 662 726
+101 172 692 726
+119 186 695 726
+136 169 647 726
+142 90 584 726
+198 155 0 726
+208 195 698 726
+215 229 551 726
+223 65 525 726
+235 41 696 726
+241 49 530 726
+247 43 703 726
+7 69 708 727
+11 10 656 727
+20 96 690 727
+24 106 507 727
+29 247 695 727
+39 181 710 727
+41 31 678 727
+57 112 707 727
+59 174 702 727
+65 85 669 727
+80 83 302 727
+108 150 0 727
+129 248 700 727
+167 240 710 727
+168 171 657 727
+207 136 716 727
+219 212 717 727
+219 41 390 727
+238 253 0 727
+243 5 0 727
+246 42 643 727
+35 51 0 728
+40 178 686 728
+43 97 205 728
+47 100 699 728
+58 121 716 728
+66 83 0 728
+98 117 668 728
+116 180 0 728
+132 163 689 728
+149 105 520 728
+156 216 555 728
+160 225 632 728
+166 234 690 728
+173 95 232 728
+175 237 0 728
+177 191 710 728
+182 67 655 728
+188 230 494 728
+211 93 415 728
+217 147 700 728
+232 236 0 728
+238 36 718 728
+11 90 610 729
+47 75 702 729
+55 181 197 729
+97 161 395 729
+107 185 0 729
+112 124 0 729
+125 126 681 729
+190 162 0 729
+195 227 564 729
+227 10 690 729
+231 50 696 729
+238 210 665 729
+241 143 678 729
+20 63 560 730
+22 8 610 730
+46 19 532 730
+58 208 0 730
+81 83 0 730
+85 27 711 730
+87 83 582 730
+92 186 660 730
+124 192 100 730
+130 101 675 730
+146 105 641 730
+168 178 698 730
+169 229 690 730
+185 178 448 730
+203 25 354 730
+204 4 717 730
+206 214 666 730
+245 44 681 730
+8 149 717 731
+13 204 502 731
+23 88 711 731
+30 37 646 731
+31 110 620 731
+71 182 605 731
+82 161 705 731
+99 165 706 731
+104 179 645 731
+105 104 638 731
+107 123 0 731
+118 137 0 731
+122 80 0 731
+123 234 39 731
+123 184 683 731
+128 36 233 731
+132 217 670 731
+138 206 696 731
+144 13 723 731
+144 255 728 731
+184 197 0 731
+190 179 320 731
+213 196 633 731
+237 26 0 731
+245 37 415 731
+29 221 729 732
+31 47 0 732
+37 99 637 732
+53 8 705 732
+72 163 707 732
+90 99 495 732
+90 158 0 732
+91 214 693 732
+111 164 685 732
+122 172 722 732
+157 98 725 732
+160 93 616 732
+190 196 678 732
+196 5 490 732
+202 216 541 732
+216 19 721 732
+228 245 479 732
+249 201 682 732
+23 119 667 733
+24 89 595 733
+31 157 725 733
+45 57 717 733
+53 117 652 733
+58 4 708 733
+86 43 561 733
+89 110 701 733
+96 173 0 733
+99 163 707 733
+100 155 714 733
+103 185 685 733
+131 209 721 733
+144 214 691 733
+184 204 663 733
+204 11 52 733
+212 16 702 733
+217 206 628 733
+222 93 531 733
+229 235 673 733
+233 25 718 733
+243 3 688 733
+12 78 189 734
+12 43 694 734
+17 87 723 734
+33 34 0 734
+37 40 0 734
+50 44 700 734
+53 75 660 734
+59 170 636 734
+87 140 681 734
+98 150 696 734
+110 188 729 734
+111 127 686 734
+112 249 732 734
+116 207 562 734
+117 134 729 734
+123 176 0 734
+127 143 715 734
+128 187 723 734
+133 122 715 734
+134 202 684 734
+150 241 719 734
+153 96 0 734
+156 220 0 734
+167 236 198 734
+179 143 544 734
+217 220 0 734
+240 33 0 734
+21 10 507 735
+22 19 722 735
+28 71 311 735
+34 82 646 735
+43 74 358 735
+62 245 627 735
+67 255 683 735
+82 165 700 735
+108 97 715 735
+108 137 577 735
+112 133 720 735
+119 187 715 735
+130 213 533 735
+136 242 712 735
+136 50 731 735
+139 248 727 735
+144 221 688 735
+149 156 484 735
+171 256 677 735
+183 187 442 735
+184 6 162 735
+188 217 714 735
+198 224 687 735
+223 46 686 735
+233 43 720 735
+245 36 596 735
+12 32 504 736
+14 12 564 736
+17 6 661 736
+21 68 726 736
+42 15 691 736
+43 57 714 736
+106 123 571 736
+129 141 0 736
+142 180 711 736
+162 179 0 736
+174 99 471 736
+199 121 347 736
+235 248 725 736
+247 5 730 736
+4 77 704 737
+15 114 0 737
+24 115 690 737
+26 246 724 737
+27 74 0 737
+59 133 708 737
+74 202 697 737
+103 133 707 737
+138 95 0 737
+138 207 715 737
+146 127 731 737
+178 254 698 737
+188 194 601 737
+192 132 0 737
+206 147 729 737
+7 134 713 738
+22 43 599 738
+39 110 531 738
+59 126 0 738
+86 42 727 738
+107 97 717 738
+110 187 724 738
+126 7 731 738
+126 76 698 738
+137 184 0 738
+153 144 569 738
+166 226 705 738
+206 13 0 738
+219 30 0 738
+222 220 714 738
+225 241 551 738
+240 42 0 738
+3 118 581 739
+12 80 582 739
+50 58 727 739
+55 3 727 739
+62 34 0 739
+63 4 704 739
+69 182 655 739
+75 176 389 739
+84 238 732 739
+97 191 711 739
+105 117 695 739
+108 138 694 739
+109 161 383 739
+135 196 639 739
+166 163 714 739
+167 245 0 739
+180 165 593 739
+205 132 356 739
+205 195 587 739
+227 33 708 739
+234 220 699 739
+7 85 719 740
+7 72 666 740
+34 1 578 740
+53 40 666 740
+83 165 684 740
+99 191 704 740
+113 241 689 740
+126 12 329 740
+143 136 723 740
+147 165 683 740
+151 186 662 740
+154 202 550 740
+155 164 732 740
+182 242 668 740
+183 201 692 740
+192 206 0 740
+233 253 597 740
+237 189 518 740
+238 224 587 740
+244 194 705 740
+248 42 662 740
+249 44 525 740
+9 221 517 741
+20 130 701 741
+24 72 207 741
+38 115 493 741
+45 212 489 741
+51 121 672 741
+59 172 702 741
+64 80 646 741
+90 141 599 741
+107 191 716 741
+116 143 608 741
+118 124 0 741
+127 3 729 741
+131 195 695 741
+134 216 729 741
+144 15 720 741
+160 100 719 741
+170 235 725 741
+199 70 41 741
+215 6 0 741
+218 100 709 741
+231 43 705 741
+240 49 0 741
+9 224 695 742
+25 87 728 742
+34 162 561 742
+44 6 716 742
+49 54 734 742
+59 185 475 742
+81 70 688 742
+83 229 740 742
+104 168 658 742
+113 133 589 742
+120 124 690 742
+124 131 725 742
+127 164 731 742
+159 205 353 742
+167 45 702 742
+178 255 706 742
+192 254 0 742
+210 242 323 742
+224 228 673 742
+237 238 0 742
+249 57 0 742
+252 5 628 742
+4 95 0 743
+11 8 669 743
+25 30 711 743
+46 31 282 743
+49 125 672 743
+55 107 138 743
+57 15 686 743
+93 125 677 743
+96 154 0 743
+108 124 519 743
+110 218 713 743
+111 222 682 743
+122 100 706 743
+128 77 0 743
+136 140 650 743
+148 226 580 743
+183 252 519 743
+183 194 430 743
+204 196 734 743
+222 234 720 743
+234 248 711 743
+241 135 730 743
+252 204 0 743
+4 64 651 744
+22 18 0 744
+24 98 640 744
+42 54 657 744
+48 44 0 744
+78 10 0 744
+110 156 690 744
+117 124 711 744
+120 60 199 744
+122 137 686 744
+152 197 740 744
+180 179 0 744
+185 201 731 744
+192 256 0 744
+210 17 719 744
+227 19 97 744
+4 114 115 745
+24 97 740 745
+30 157 717 745
+34 88 639 745
+71 158 731 745
+87 91 0 745
+101 115 681 745
+103 226 708 745
+105 166 0 745
+119 91 374 745
+122 174 710 745
+126 32 720 745
+136 156 474 745
+143 244 643 745
+148 212 0 745
+154 186 607 745
+186 223 727 745
+189 168 721 745
+206 195 718 745
+18 88 656 746
+34 127 587 746
+58 12 523 746
+63 190 706 746
+66 24 729 746
+70 130 660 746
+71 92 200 746
+81 158 0 746
+93 47 0 746
+129 198 741 746
+134 194 689 746
+138 139 694 746
+142 196 683 746
+159 242 634 746
+160 196 650 746
+173 165 741 746
+203 215 597 746
+212 227 0 746
+212 240 0 746
+214 229 0 746
+231 85 708 746
+237 219 0 746
+20 98 435 747
+21 71 324 747
+27 117 703 747
+40 185 668 747
+60 105 730 747
+65 130 0 747
+76 186 621 747
+85 69 708 747
+115 207 636 747
+119 183 641 747
+146 102 706 747
+157 100 503 747
+192 242 529 747
+5 227 582 748
+10 95 722 748
+27 54 712 748
+34 27 704 748
+41 92 721 748
+55 6 722 748
+55 11 720 748
+68 88 405 748
+70 69 0 748
+74 95 0 748
+107 75 713 748
+153 182 183 748
+157 107 736 748
+157 191 660 748
+167 234 640 748
+182 202 722 748
+201 208 0 748
+236 6 738 748
+242 2 632 748
+5 204 527 749
+5 11 684 749
+34 8 730 749
+38 102 0 749
+51 166 691 749
+72 152 525 749
+84 190 724 749
+138 188 708 749
+143 13 205 749
+146 169 294 749
+185 165 265 749
+213 229 514 749
+217 160 742 749
+217 219 0 749
+18 39 710 750
+39 51 710 750
+42 108 744 750
+44 11 727 750
+48 10 681 750
+48 35 685 750
+51 127 584 750
+55 133 696 750
+63 177 675 750
+91 151 0 750
+93 74 729 750
+123 202 731 750
+155 191 687 750
+186 201 475 750
+189 181 719 750
+199 3 0 750
+231 105 724 750
+233 208 715 750
+17 12 730 751
+17 69 517 751
+22 235 697 751
+37 82 0 751
+51 101 709 751
+59 51 723 751
+64 190 731 751
+124 204 727 751
+148 196 669 751
+171 236 567 751
+180 250 745 751
+198 233 693 751
+198 208 82 751
+208 22 535 751
+222 219 0 751
+1 115 561 752
+6 2 0 752
+9 32 728 752
+28 72 623 752
+31 91 708 752
+45 256 636 752
+71 132 717 752
+101 164 451 752
+102 73 724 752
+104 238 726 752
+122 91 395 752
+123 155 749 752
+166 150 0 752
+170 116 469 752
+178 205 704 752
+181 238 727 752
+182 136 0 752
+184 256 694 752
+214 200 362 752
+224 212 533 752
+230 42 0 752
+248 27 729 752
+27 122 718 753
+45 93 500 753
+48 97 0 753
+49 230 701 753
+51 178 408 753
+56 119 742 753
+70 137 657 753
+83 228 730 753
+87 213 733 753
+147 214 631 753
+149 169 264 753
+165 171 380 753
+166 124 682 753
+177 179 550 753
+185 249 402 753
+197 57 613 753
+211 36 707 753
+212 24 745 753
+217 201 0 753
+221 32 639 753
+253 118 734 753
+5 219 696 754
+10 155 722 754
+51 98 686 754
+53 75 738 754
+57 73 0 754
+60 170 748 754
+69 82 708 754
+80 69 324 754
+105 165 511 754
+137 77 653 754
+138 217 723 754
+144 194 488 754
+173 152 720 754
+177 71 736 754
+199 122 744 754
+211 38 700 754
+2 89 669 755
+20 146 671 755
+41 82 753 755
+96 178 727 755
+106 117 696 755
+108 133 585 755
+111 170 0 755
+111 171 0 755
+116 178 0 755
+137 187 561 755
+174 165 740 755
+179 255 497 755
+180 143 693 755
+189 179 588 755
+202 152 695 755
+224 93 502 755
+231 40 731 755
+236 46 713 755
+245 54 624 755
+247 194 478 755
+248 58 674 755
+4 126 35 756
+6 28 314 756
+8 88 685 756
+10 157 724 756
+16 123 742 756
+48 53 728 756
+60 78 744 756
+84 160 739 756
+94 52 683 756
+118 133 0 756
+124 213 731 756
+133 139 630 756
+135 242 0 756
+143 131 0 756
+159 131 615 756
+167 238 746 756
+180 234 744 756
+192 196 222 756
+210 238 734 756
+214 45 741 756
+225 196 694 756
+249 187 0 756
+252 13 665 756
+252 197 0 756
+5 215 284 757
+8 131 751 757
+20 86 663 757
+43 89 360 757
+47 60 751 757
+53 190 659 757
+68 101 723 757
+68 178 650 757
+69 153 730 757
+69 95 558 757
+69 151 690 757
+69 217 732 757
+97 115 351 757
+109 59 0 757
+109 155 649 757
+110 155 681 757
+125 121 742 757
+149 209 739 757
+157 206 541 757
+161 147 405 757
+161 45 745 757
+162 61 751 757
+164 181 700 757
+165 235 735 757
+176 201 598 757
+193 19 612 757
+211 215 714 757
+213 209 486 757
+234 46 735 757
+237 187 626 757
+250 196 728 757
+252 125 740 757
+1 96 734 758
+9 122 743 758
+20 145 659 758
+31 95 624 758
+32 142 750 758
+73 187 696 758
+76 90 0 758
+87 173 731 758
+108 73 540 758
+136 148 40 758
+137 144 575 758
+167 241 270 758
+195 228 612 758
+247 256 741 758
+250 223 654 758
+252 63 739 758
+253 6 733 758
+13 122 742 759
+53 98 652 759
+73 188 687 759
+76 138 668 759
+81 69 694 759
+83 209 711 759
+106 57 0 759
+126 113 0 759
+127 205 720 759
+128 190 0 759
+130 155 739 759
+134 163 745 759
+137 138 673 759
+146 183 733 759
+154 150 0 759
+176 242 740 759
+190 176 0 759
+210 148 0 759
+210 226 613 759
+217 147 736 759
+231 101 726 759
+232 18 495 759
+235 58 746 759
+236 201 367 759
+16 122 681 760
+48 243 734 760
+79 223 709 760
+83 226 701 760
+87 147 738 760
+87 169 580 760
+111 103 735 760
+129 246 692 760
+145 170 619 760
+145 181 710 760
+149 129 731 760
+175 232 731 760
+187 252 533 760
+246 23 728 760
+252 38 732 760
+11 185 722 761
+14 30 746 761
+16 153 679 761
+26 154 755 761
+44 125 723 761
+48 13 712 761
+58 5 660 761
+87 135 663 761
+106 118 0 761
+117 182 0 761
+136 50 750 761
+144 252 111 761
+145 192 733 761
+175 61 226 761
+179 244 712 761
+195 208 742 761
+247 56 302 761
+255 223 623 761
+8 82 747 762
+10 103 745 762
+11 117 716 762
+27 118 706 762
+62 60 739 762
+75 80 0 762
+78 123 740 762
+81 99 0 762
+91 187 742 762
+99 148 607 762
+103 171 622 762
+119 172 715 762
+125 126 737 762
+136 229 727 762
+139 215 97 762
+158 193 706 762
+165 237 742 762
+168 199 737 762
+198 216 0 762
+211 168 699 762
+214 227 310 762
+215 28 0 762
+236 38 0 762
+236 112 747 762
+237 180 732 762
+13 16 601 763
+30 82 362 763
+44 56 665 763
+48 36 0 763
+54 133 303 763
+68 136 448 763
+138 111 754 763
+160 171 737 763
+167 171 0 763
+170 240 673 763
+172 241 694 763
+192 255 309 763
+211 254 694 763
+230 245 682 763
+236 11 734 763
+249 179 246 763
+249 250 0 763
+256 57 675 763
+7 21 0 764
+23 3 231 764
+38 27 278 764
+52 187 733 764
+58 54 680 764
+62 52 0 764
+73 79 731 764
+91 206 741 764
+93 10 0 764
+99 161 0 764
+102 133 673 764
+103 110 690 764
+104 167 643 764
+110 172 668 764
+114 80 343 764
+120 102 665 764
+128 114 216 764
+157 237 0 764
+170 189 0 764
+179 243 720 764
+188 230 735 764
+225 214 340 764
+249 191 705 764
+9 57 654 765
+14 224 722 765
+32 72 738 765
+43 107 553 765
+69 83 0 765
+100 46 750 765
+121 171 468 765
+123 80 719 765
+128 192 738 765
+134 182 0 765
+135 147 607 765
+141 205 0 765
+150 215 747 765
+174 184 741 765
+179 254 0 765
+202 239 759 765
+231 42 291 765
+245 53 626 765
+248 39 719 765
+252 194 488 765
+253 1 737 765
+67 135 133 766
+69 147 600 766
+70 73 579 766
+81 21 609 766
+88 162 509 766
+111 191 675 766
+117 131 726 766
+119 170 730 766
+124 139 0 766
+134 198 633 766
+137 91 0 766
+143 218 758 766
+144 253 730 766
+171 256 736 766
+191 256 557 766
+212 36 715 766
+216 25 682 766
+226 227 522 766
+234 255 723 766
+251 118 647 766
+6 78 725 767
+10 110 543 767
+58 44 665 767
+62 51 754 767
+106 166 376 767
+115 179 0 767
+128 105 726 767
+128 116 0 767
+146 229 728 767
+165 179 0 767
+183 242 571 767
+220 42 582 767
+231 118 748 767
+256 125 410 767
+4 80 103 768
+15 123 741 768
+29 107 761 768
+51 133 395 768
+60 97 727 768
+72 145 737 768
+92 163 443 768
+129 141 754 768
+134 73 627 768
+144 246 95 768
+152 162 610 768
+153 138 0 768
+186 205 0 768
+210 221 500 768
+218 197 754 768
+227 248 726 768
+241 184 0 768
+243 247 0 768
+246 256 712 768
+253 59 727 768
+256 223 603 768
+8 130 682 769
+15 12 516 769
+32 155 700 769
+33 82 0 769
+36 57 764 769
+39 43 0 769
+48 106 0 769
+60 52 655 769
+75 176 762 769
+85 92 0 769
+113 56 0 769
+114 100 749 769
+116 155 738 769
+119 138 664 769
+121 165 726 769
+127 181 646 769
+146 132 745 769
+164 61 725 769
+171 230 0 769
+181 207 631 769
+213 163 560 769
+218 216 655 769
+243 41 746 769
+246 59 733 769
+14 10 729 770
+15 90 745 770
+26 12 751 770
+29 111 764 770
+47 51 695 770
+50 252 29 770
+55 107 754 770
+66 41 727 770
+68 132 0 770
+78 124 759 770
+83 143 741 770
+87 107 739 770
+103 217 749 770
+111 214 748 770
+125 108 753 770
+135 216 191 770
+154 172 755 770
+165 247 727 770
+166 75 763 770
+184 144 257 770
+217 200 165 770
+4 239 724 771
+33 97 0 771
+50 118 696 771
+64 170 684 771
+68 155 720 771
+75 144 752 771
+79 204 703 771
+97 116 444 771
+107 75 763 771
+117 188 318 771
+120 104 743 771
+124 192 740 771
+127 96 740 771
+132 222 746 771
+134 140 502 771
+139 143 704 771
+146 210 742 771
+160 228 663 771
+173 235 15 771
+182 197 723 771
+194 54 726 771
+209 49 682 771
+236 54 735 771
+237 208 766 771
+20 110 584 772
+23 72 669 772
+31 105 711 772
+46 53 751 772
+67 155 755 772
+70 154 653 772
+81 130 693 772
+83 100 711 772
+90 148 761 772
+113 39 714 772
+142 90 762 772
+150 218 641 772
+153 198 0 772
+156 158 759 772
+168 242 575 772
+169 45 750 772
+171 46 747 772
+195 221 524 772
+207 179 351 772
+213 2 446 772
+219 236 769 772
+224 61 233 772
+226 211 523 772
+253 11 728 772
+32 138 746 773
+33 101 0 773
+42 15 759 773
+54 23 671 773
+60 77 0 773
+68 146 619 773
+78 157 720 773
+91 143 738 773
+105 121 706 773
+146 92 410 773
+151 102 768 773
+152 197 762 773
+153 215 708 773
+243 114 659 773
+15 7 712 774
+62 110 755 774
+65 97 731 774
+68 141 0 774
+68 131 394 774
+68 147 0 774
+83 221 724 774
+96 82 621 774
+107 117 693 774
+141 164 682 774
+142 155 90 774
+145 176 756 774
+148 239 710 774
+149 135 0 774
+151 140 0 774
+159 200 713 774
+166 76 760 774
+173 150 598 774
+193 244 0 774
+208 228 704 774
+219 74 759 774
+232 35 518 774
+232 21 727 774
+233 191 567 774
+243 120 760 774
+11 80 0 775
+27 121 708 775
+33 41 734 775
+47 114 695 775
+69 143 606 775
+114 207 762 775
+151 237 762 775
+183 252 754 775
+185 250 745 775
+192 158 708 775
+193 214 633 775
+195 53 745 775
+211 26 699 775
+216 29 454 775
+221 49 681 775
+233 188 742 775
+234 42 642 775
+246 11 549 775
+252 203 0 775
+8 133 304 776
+23 153 757 776
+26 248 544 776
+39 128 757 776
+62 34 754 776
+78 122 110 776
+89 155 683 776
+90 158 757 776
+97 123 761 776
+115 180 0 776
+125 170 719 776
+130 76 753 776
+133 87 74 776
+161 206 620 776
+163 227 549 776
+190 124 753 776
+193 215 549 776
+227 57 756 776
+240 42 749 776
+247 6 641 776
+1 110 762 777
+52 73 741 777
+57 40 737 777
+65 95 0 777
+72 92 175 777
+76 149 635 777
+83 210 601 777
+83 191 698 777
+119 75 715 777
+130 163 680 777
+138 95 749 777
+172 179 633 777
+174 167 685 777
+181 167 633 777
+183 254 420 777
+186 161 674 777
+188 201 0 777
+189 63 753 777
+211 232 655 777
+222 229 734 777
+223 65 748 777
+233 222 245 777
+244 55 766 777
+21 76 594 778
+42 1 750 778
+67 195 688 778
+70 119 145 778
+86 71 240 778
+106 172 704 778
+120 122 685 778
+132 150 744 778
+133 73 85 778
+144 213 736 778
+151 198 0 778
+151 155 0 778
+153 111 726 778
+156 150 0 778
+167 211 706 778
+167 228 765 778
+173 170 0 778
+193 140 662 778
+203 6 0 778
+213 169 636 778
+213 206 751 778
+251 57 0 778
+253 33 767 778
+253 47 750 778
+40 241 709 779
+47 90 761 779
+55 106 0 779
+64 114 507 779
+76 140 0 779
+85 55 755 779
+120 11 649 779
+125 1 687 779
+132 228 743 779
+161 172 758 779
+162 46 739 779
+182 199 737 779
+212 95 702 779
+223 66 762 779
+238 209 414 779
+247 50 0 779
+254 24 746 779
+18 80 752 780
+23 71 77 780
+28 107 741 780
+34 146 499 780
+39 146 677 780
+45 33 0 780
+48 13 775 780
+65 127 727 780
+65 96 416 780
+77 141 770 780
+128 154 736 780
+134 179 180 780
+164 37 764 780
+179 67 97 780
+190 132 0 780
+198 152 684 780
+217 197 0 780
+222 49 483 780
+243 44 676 780
+15 74 723 781
+20 113 657 781
+33 113 569 781
+36 44 669 781
+73 170 688 781
+77 140 606 781
+90 141 754 781
+107 97 769 781
+109 35 725 781
+115 116 0 781
+123 172 528 781
+128 57 749 781
+131 214 769 781
+149 159 718 781
+156 174 609 781
+181 249 430 781
+185 91 725 781
+193 204 770 781
+203 197 497 781
+219 212 767 781
+227 31 758 781
+238 231 747 781
+16 157 712 782
+19 82 718 782
+32 110 338 782
+37 57 765 782
+47 75 737 782
+59 154 745 782
+68 99 290 782
+70 92 151 782
+90 218 766 782
+106 40 28 782
+108 97 755 782
+108 140 551 782
+132 163 731 782
+149 193 700 782
+155 208 764 782
+166 131 686 782
+171 144 728 782
+190 205 0 782
+219 11 765 782
+222 30 734 782
+227 43 711 782
+233 183 0 782
+249 248 0 782
+26 232 488 783
+35 28 743 783
+46 256 623 783
+49 101 728 783
+51 40 0 783
+64 121 0 783
+83 131 776 783
+93 85 767 783
+186 250 0 783
+246 200 77 783
+251 75 691 783
+48 93 598 784
+49 247 777 784
+51 190 594 784
+60 110 710 784
+70 151 666 784
+81 71 702 784
+95 141 0 784
+136 196 185 784
+179 247 0 784
+185 77 602 784
+189 53 751 784
+190 157 767 784
+213 186 740 784
+236 10 745 784
+244 115 768 784
+12 217 778 785
+14 80 565 785
+22 7 597 785
+22 27 0 785
+78 190 719 785
+106 156 767 785
+164 49 491 785
+167 188 619 785
+175 162 653 785
+182 136 762 785
+189 229 740 785
+190 133 519 785
+226 33 760 785
+229 2 729 785
+229 35 757 785
+7 16 302 786
+20 157 681 786
+23 105 751 786
+47 112 754 786
+118 23 349 786
+121 77 0 786
+122 187 242 786
+127 115 538 786
+132 160 466 786
+135 5 522 786
+170 235 775 786
+181 67 0 786
+188 205 744 786
+196 51 775 786
+196 53 766 786
+214 197 533 786
+214 206 743 786
+236 248 0 786
+236 105 732 786
+248 41 568 786
+256 52 763 786
+1 177 715 787
+5 204 771 787
+10 44 735 787
+11 91 340 787
+69 179 599 787
+73 166 672 787
+81 114 430 787
+100 235 720 787
+115 68 588 787
+116 141 445 787
+120 131 665 787
+139 193 739 787
+152 37 760 787
+156 103 668 787
+158 218 757 787
+164 168 0 787
+182 235 764 787
+185 192 741 787
+195 3 749 787
+198 218 0 787
+212 109 723 787
+213 9 748 787
+213 25 618 787
+229 36 571 787
+238 216 740 787
+240 31 756 787
+251 52 506 787
+30 154 701 788
+35 145 661 788
+45 16 774 788
+47 1 688 788
+47 13 727 788
+49 85 754 788
+71 82 707 788
+90 161 442 788
+115 67 0 788
+134 129 170 788
+138 155 0 788
+159 136 207 788
+163 209 695 788
+173 150 782 788
+180 232 774 788
+196 221 0 788
+238 211 554 788
+252 41 768 788
+252 7 738 788
+16 106 778 789
+29 59 731 789
+51 97 0 789
+62 32 744 789
+81 52 763 789
+108 119 0 789
+114 129 779 789
+122 100 757 789
+122 192 747 789
+129 5 608 789
+131 140 221 789
+141 237 718 789
+156 224 409 789
+159 33 776 789
+173 83 783 789
+173 191 0 789
+216 44 753 789
+219 30 747 789
+228 93 556 789
+230 246 691 789
+230 248 412 789
+232 13 780 789
+235 205 753 789
+236 199 303 789
+242 200 672 789
+255 113 767 789
+8 142 732 790
+17 80 779 790
+44 101 737 790
+47 177 624 790
+51 81 764 790
+63 24 760 790
+68 79 0 790
+74 214 757 790
+81 138 725 790
+140 205 741 790
+155 204 231 790
+192 141 0 790
+203 243 783 790
+227 105 736 790
+4 31 703 791
+11 23 545 791
+25 105 713 791
+61 196 774 791
+62 1 0 791
+75 67 781 791
+87 131 345 791
+87 214 654 791
+90 83 762 791
+92 110 681 791
+96 161 163 791
+119 77 274 791
+140 197 645 791
+149 216 126 791
+151 249 761 791
+157 110 454 791
+182 247 480 791
+188 201 780 791
+203 31 782 791
+219 15 711 791
+231 50 746 791
+247 201 0 791
+16 27 768 792
+19 86 778 792
+50 65 770 792
+61 1 760 792
+63 78 692 792
+72 217 761 792
+78 74 0 792
+106 88 699 792
+111 146 786 792
+115 129 387 792
+124 218 732 792
+137 194 323 792
+159 238 595 792
+164 232 711 792
+166 241 251 792
+185 249 785 792
+207 243 252 792
+229 28 766 792
+2 24 758 793
+46 205 740 793
+61 245 624 793
+75 91 0 793
+89 40 783 793
+90 174 68 793
+94 112 398 793
+137 139 0 793
+154 237 0 793
+157 98 754 793
+170 205 694 793
+172 187 0 793
+176 162 754 793
+183 140 223 793
+186 203 61 793
+197 45 769 793
+204 45 753 793
+247 118 642 793
+256 206 724 793
+1 56 0 794
+13 75 789 794
+32 142 772 794
+32 3 792 794
+57 119 703 794
+73 96 699 794
+75 207 769 794
+96 218 748 794
+99 103 779 794
+109 155 774 794
+121 187 609 794
+122 190 726 794
+128 111 690 794
+145 228 765 794
+147 226 484 794
+153 155 0 794
+157 132 721 794
+163 169 304 794
+207 195 697 794
+216 49 744 794
+229 55 780 794
+233 165 649 794
+22 86 0 795
+22 31 429 795
+42 111 741 795
+86 106 0 795
+94 127 23 795
+94 100 180 795
+98 115 0 795
+111 127 777 795
+116 192 0 795
+120 177 566 795
+130 145 682 795
+140 218 655 795
+141 214 740 795
+151 202 478 795
+190 91 730 795
+198 14 780 795
+198 220 364 795
+201 205 0 795
+207 244 0 795
+247 21 782 795
+248 59 717 795
+249 245 0 795
+33 216 771 796
+33 240 745 796
+34 103 485 796
+76 105 298 796
+83 238 658 796
+93 3 776 796
+94 146 714 796
+94 148 733 796
+137 210 762 796
+190 171 787 796
+197 76 788 796
+198 208 771 796
+198 25 0 796
+204 239 572 796
+209 70 784 796
+210 215 0 796
+214 240 787 796
+221 16 779 796
+221 81 787 796
+233 44 779 796
+242 63 761 796
+248 24 324 796
+9 81 786 797
+28 59 741 797
+50 53 744 797
+78 75 651 797
+90 110 356 797
+92 112 720 797
+96 154 778 797
+125 102 739 797
+129 200 680 797
+134 67 0 797
+160 238 580 797
+177 116 0 797
+183 187 775 797
+208 240 548 797
+209 239 0 797
+219 240 544 797
+220 16 768 797
+224 25 0 797
+228 22 789 797
+237 238 775 797
+20 251 762 798
+25 86 0 798
+37 27 671 798
+47 146 789 798
+66 99 770 798
+72 152 752 798
+87 152 303 798
+92 165 483 798
+94 101 685 798
+126 119 711 798
+128 73 414 798
+156 167 0 798
+174 121 696 798
+191 251 782 798
+209 229 205 798
+234 43 779 798
+242 1 764 798
+243 64 769 798
+18 38 264 799
+36 95 788 799
+39 99 744 799
+46 243 0 799
+48 60 674 799
+55 99 757 799
+63 116 0 799
+65 97 784 799
+66 28 298 799
+66 24 758 799
+134 167 793 799
+135 195 142 799
+148 239 787 799
+164 239 795 799
+231 242 773 799
+244 68 780 799
+247 245 0 799
+249 44 747 799
+6 78 781 800
+11 93 796 800
+48 106 780 800
+112 98 760 800
+119 89 738 800
+141 212 796 800
+143 9 768 800
+148 208 703 800
+148 228 306 800
+154 95 0 800
+209 8 794 800
+240 230 540 800
+252 128 740 800
+254 56 620 800
+1 177 798 801
+7 77 286 801
+12 91 0 801
+20 101 422 801
+21 36 722 801
+27 40 486 801
+40 249 787 801
+50 120 766 801
+78 91 80 801
+109 99 554 801
+139 206 582 801
+165 216 643 801
+168 41 738 801
+185 213 753 801
+201 220 783 801
+212 43 714 801
+4 68 0 802
+5 85 785 802
+13 77 788 802
+16 43 450 802
+16 76 123 802
+44 56 790 802
+49 44 748 802
+84 158 775 802
+94 104 747 802
+104 192 782 802
+112 187 0 802
+114 79 540 802
+124 214 715 802
+137 129 463 802
+156 152 0 802
+156 237 0 802
+188 247 476 802
+197 230 778 802
+208 13 795 802
+213 224 738 802
+226 175 0 802
+230 24 781 802
+248 4 790 802
+8 10 774 803
+22 8 755 803
+22 18 764 803
+27 174 786 803
+30 113 727 803
+36 39 686 803
+59 174 788 803
+60 119 0 803
+61 244 441 803
+73 140 589 803
+108 84 695 803
+111 108 706 803
+122 174 748 803
+127 188 765 803
+132 22 789 803
+164 241 0 803
+183 235 432 803
+198 141 735 803
+198 23 723 803
+200 86 785 803
+210 4 781 803
+214 165 0 803
+223 200 722 803
+229 57 780 803
+237 180 787 803
+240 29 564 803
+243 251 739 803
+249 227 726 803
+2 25 570 804
+7 72 765 804
+16 96 615 804
+28 101 723 804
+58 63 705 804
+94 161 180 804
+103 226 782 804
+109 156 785 804
+133 142 473 804
+145 189 601 804
+145 241 569 804
+151 132 449 804
+151 193 329 804
+216 224 686 804
+229 246 786 804
+238 239 0 804
+13 97 740 805
+19 87 775 805
+30 53 751 805
+37 66 703 805
+50 211 776 805
+57 8 794 805
+69 80 770 805
+72 99 188 805
+73 78 253 805
+73 112 120 805
+73 217 715 805
+100 205 720 805
+107 165 496 805
+132 5 774 805
+133 67 0 805
+139 213 722 805
+140 214 658 805
+141 219 725 805
+146 87 610 805
+199 121 761 805
+207 193 0 805
+215 148 778 805
+223 228 665 805
+234 64 779 805
+237 219 756 805
+242 15 779 805
+252 27 722 805
+2 71 512 806
+7 133 270 806
+15 17 770 806
+18 88 770 806
+48 97 794 806
+59 172 790 806
+62 42 35 806
+66 153 786 806
+78 96 0 806
+84 237 554 806
+114 241 739 806
+120 19 784 806
+122 74 728 806
+163 227 785 806
+168 45 761 806
+186 182 716 806
+206 45 789 806
+208 33 702 806
+214 45 780 806
+216 70 777 806
+227 224 741 806
+231 234 772 806
+239 49 0 806
+3 82 751 807
+5 71 747 807
+16 95 439 807
+22 231 0 807
+25 41 0 807
+41 82 792 807
+44 40 0 807
+46 236 789 807
+55 113 682 807
+61 42 685 807
+66 101 172 807
+114 192 718 807
+126 93 793 807
+161 45 788 807
+185 246 770 807
+191 188 743 807
+198 203 0 807
+200 204 760 807
+216 45 746 807
+229 44 591 807
+238 253 755 807
+239 106 776 807
+247 61 803 807
+248 117 746 807
+11 10 770 808
+15 138 575 808
+26 234 518 808
+27 87 763 808
+28 92 0 808
+46 32 785 808
+75 142 0 808
+76 140 795 808
+84 218 779 808
+92 161 702 808
+94 113 528 808
+109 157 440 808
+160 29 796 808
+168 236 143 808
+180 143 780 808
+185 234 0 808
+200 85 781 808
+204 11 770 808
+214 171 800 808
+222 226 584 808
+240 26 496 808
+248 36 308 808
+256 204 690 808
+256 65 737 808
+16 30 421 809
+33 109 700 809
+34 133 688 809
+55 114 772 809
+61 60 761 809
+94 155 699 809
+97 138 771 809
+143 15 779 809
+144 218 254 809
+156 206 612 809
+169 45 778 809
+183 231 582 809
+197 211 747 809
+197 224 667 809
+1 69 774 810
+20 3 793 810
+37 22 697 810
+58 93 789 810
+74 155 487 810
+80 149 786 810
+85 40 332 810
+102 237 804 810
+112 237 723 810
+147 165 749 810
+174 123 0 810
+183 247 0 810
+190 80 263 810
+230 43 717 810
+235 42 0 810
+256 6 718 810
+2 41 523 811
+4 8 0 811
+6 117 774 811
+16 89 289 811
+45 25 504 811
+61 128 773 811
+83 104 603 811
+119 156 768 811
+124 155 258 811
+129 246 774 811
+136 233 786 811
+143 256 458 811
+169 191 731 811
+171 238 759 811
+177 117 315 811
+179 244 807 811
+199 119 357 811
+203 17 777 811
+207 209 795 811
+208 196 0 811
+209 37 676 811
+228 245 764 811
+244 93 747 811
+12 72 687 812
+22 247 787 812
+34 8 784 812
+38 13 758 812
+41 36 647 812
+78 138 115 812
+92 40 597 812
+117 3 556 812
+122 116 219 812
+124 87 629 812
+125 105 719 812
+139 207 802 812
+147 195 76 812
+160 147 441 812
+175 49 266 812
+208 77 791 812
+228 2 699 812
+229 24 330 812
+254 50 373 812
+7 123 735 813
+17 69 770 813
+25 43 411 813
+51 190 799 813
+58 255 720 813
+77 155 363 813
+105 218 789 813
+108 127 697 813
+124 111 749 813
+139 61 811 813
+161 147 775 813
+169 247 761 813
+171 183 274 813
+179 209 788 813
+199 34 521 813
+232 196 781 813
+248 8 781 813
+1 124 806 814
+19 72 698 814
+20 86 774 814
+62 109 720 814
+77 89 262 814
+77 173 795 814
+79 178 0 814
+80 99 801 814
+81 99 793 814
+84 192 724 814
+98 240 798 814
+124 151 681 814
+124 173 732 814
+202 14 734 814
+226 216 508 814
+226 247 234 814
+233 163 335 814
+239 42 424 814
+8 117 479 815
+51 121 793 815
+80 130 693 815
+91 105 781 815
+140 155 0 815
+142 144 803 815
+145 192 776 815
+147 162 637 815
+153 167 780 815
+156 148 729 815
+166 237 802 815
+166 187 682 815
+214 161 700 815
+234 44 689 815
+238 212 290 815
+238 243 697 815
+248 200 792 815
+22 41 0 816
+23 16 309 816
+34 44 399 816
+57 102 145 816
+69 117 404 816
+70 20 765 816
+71 89 0 816
+74 116 729 816
+74 157 0 816
+98 176 747 816
+108 191 702 816
+109 174 0 816
+112 161 752 816
+126 97 632 816
+145 226 397 816
+170 189 773 816
+203 243 804 816
+213 246 738 816
+221 253 784 816
+227 87 794 816
+12 151 736 817
+25 87 753 817
+34 190 803 817
+40 69 811 817
+45 32 764 817
+62 31 768 817
+65 75 715 817
+73 116 690 817
+97 192 722 817
+128 116 772 817
+146 130 0 817
+159 219 767 817
+209 22 717 817
+227 236 693 817
+237 26 762 817
+250 57 613 817
+18 3 764 818
+21 44 728 818
+48 250 769 818
+60 123 610 818
+61 15 765 818
+84 52 623 818
+91 159 792 818
+104 164 0 818
+120 52 800 818
+124 157 740 818
+135 248 805 818
+141 14 736 818
+155 223 812 818
+181 184 0 818
+200 41 785 818
+202 220 0 818
+207 50 131 818
+225 220 787 818
+240 188 745 818
+245 4 791 818
+248 120 306 818
+253 27 678 818
+32 97 804 819
+33 101 806 819
+36 110 786 819
+40 241 811 819
+48 32 0 819
+77 20 800 819
+84 238 777 819
+119 165 815 819
+138 74 0 819
+143 78 806 819
+163 184 788 819
+168 44 605 819
+239 35 784 819
+243 8 803 819
+249 191 800 819
+254 196 758 819
+16 111 726 820
+20 83 240 820
+21 72 192 820
+24 165 810 820
+47 52 191 820
+53 8 800 820
+55 53 691 820
+55 181 741 820
+88 106 819 820
+90 138 524 820
+132 216 571 820
+132 2 773 820
+142 192 0 820
+143 255 110 820
+152 226 0 820
+155 235 815 820
+158 150 807 820
+167 45 772 820
+173 95 759 820
+175 62 766 820
+181 167 812 820
+206 220 668 820
+207 14 781 820
+234 203 541 820
+242 14 773 820
+256 196 720 820
+256 126 713 820
+19 37 280 821
+24 146 444 821
+25 21 0 821
+35 72 422 821
+47 68 803 821
+49 86 780 821
+58 77 524 821
+72 101 210 821
+72 133 750 821
+83 160 545 821
+96 173 749 821
+154 161 26 821
+171 45 689 821
+200 26 791 821
+242 54 736 821
+9 109 796 822
+20 72 409 822
+30 110 550 822
+50 203 809 822
+73 115 799 822
+125 173 750 822
+147 46 759 822
+174 99 810 822
+192 178 324 822
+202 222 218 822
+224 109 811 822
+245 209 811 822
+30 85 791 823
+33 82 790 823
+45 64 814 823
+52 162 808 823
+57 115 803 823
+83 162 534 823
+85 104 591 823
+89 72 598 823
+110 104 775 823
+113 170 807 823
+113 71 819 823
+127 142 618 823
+134 101 769 823
+147 212 428 823
+149 175 717 823
+151 40 775 823
+156 161 590 823
+173 235 808 823
+186 139 0 823
+191 45 552 823
+223 33 746 823
+239 63 776 823
+1 90 800 824
+24 181 800 824
+32 82 432 824
+37 99 757 824
+39 151 800 824
+51 68 749 824
+66 94 777 824
+73 134 795 824
+79 148 668 824
+100 253 799 824
+124 187 0 824
+128 108 561 824
+128 192 780 824
+159 240 802 824
+160 191 505 824
+171 247 644 824
+174 187 0 824
+189 144 742 824
+189 132 801 824
+189 4 779 824
+200 25 239 824
+213 2 785 824
+226 62 772 824
+242 2 802 824
+251 52 804 824
+29 39 346 825
+31 18 806 825
+33 66 715 825
+85 103 736 825
+89 217 695 825
+100 235 801 825
+111 222 763 825
+122 76 677 825
+128 65 790 825
+128 190 774 825
+135 197 0 825
+163 231 540 825
+169 183 296 825
+170 177 625 825
+176 64 784 825
+185 184 0 825
+185 144 601 825
+186 214 669 825
+209 227 483 825
+242 78 787 825
+245 38 532 825
+251 126 624 825
+252 54 710 825
+253 203 665 825
+255 14 132 825
+256 243 348 825
+9 74 0 826
+14 17 0 826
+20 24 279 826
+26 154 809 826
+47 145 664 826
+49 101 800 826
+70 119 796 826
+74 96 0 826
+100 224 807 826
+113 142 795 826
+136 195 0 826
+158 212 798 826
+202 194 529 826
+203 11 0 826
+203 65 790 826
+211 8 759 826
+233 206 815 826
+237 139 795 826
+237 236 585 826
+239 28 808 826
+244 57 803 826
+6 121 718 827
+7 15 821 827
+17 20 749 827
+51 142 677 827
+60 106 0 827
+62 229 744 827
+81 126 432 827
+105 121 793 827
+115 182 302 827
+122 188 645 827
+134 146 582 827
+138 158 382 827
+144 148 775 827
+149 67 707 827
+173 191 792 827
+179 250 813 827
+199 70 778 827
+234 204 807 827
+238 221 562 827
+22 10 300 828
+26 12 790 828
+32 99 460 828
+34 121 633 828
+35 53 560 828
+37 63 818 828
+41 112 825 828
+55 88 670 828
+66 115 808 828
+69 185 798 828
+70 68 440 828
+96 147 591 828
+133 50 791 828
+156 106 820 828
+157 174 79 828
+168 243 0 828
+189 50 757 828
+230 27 592 828
+27 57 450 829
+31 42 476 829
+53 117 762 829
+56 71 60 829
+78 94 792 829
+79 130 0 829
+81 109 714 829
+82 161 821 829
+86 146 143 829
+103 136 783 829
+107 97 791 829
+138 3 767 829
+140 205 817 829
+168 50 560 829
+197 26 758 829
+225 195 345 829
+233 200 791 829
+245 143 797 829
+1 112 817 830
+9 126 419 830
+14 126 30 830
+15 12 820 830
+15 80 131 830
+23 120 373 830
+30 80 695 830
+33 53 338 830
+47 64 258 830
+58 128 529 830
+67 155 786 830
+77 3 822 830
+79 223 802 830
+89 214 726 830
+116 127 0 830
+116 124 585 830
+126 142 61 830
+134 95 791 830
+171 48 755 830
+173 172 261 830
+204 4 809 830
+236 28 735 830
+236 31 745 830
+245 231 0 830
+246 195 769 830
+248 197 797 830
+248 53 0 830
+1 93 744 831
+7 134 742 831
+19 94 779 831
+53 190 781 831
+57 121 0 831
+92 135 802 831
+115 135 788 831
+126 68 0 831
+147 223 689 831
+160 31 755 831
+171 144 822 831
+227 8 787 831
+228 41 742 831
+233 197 723 831
+244 115 796 831
+250 194 594 831
+253 128 724 831
+7 16 801 832
+19 228 535 832
+38 65 767 832
+74 106 749 832
+84 149 778 832
+89 55 827 832
+89 111 367 832
+95 130 0 832
+155 204 800 832
+155 46 808 832
+168 38 599 832
+195 22 617 832
+195 227 794 832
+215 28 796 832
+223 66 825 832
+256 16 818 832
+1 142 590 833
+4 211 740 833
+27 32 765 833
+33 31 582 833
+52 72 826 833
+63 104 772 833
+67 175 761 833
+116 123 472 833
+119 217 583 833
+124 144 103 833
+126 114 0 833
+132 212 747 833
+140 194 197 833
+158 213 821 833
+206 46 794 833
+211 17 0 833
+213 175 811 833
+218 48 798 833
+239 78 796 833
+248 34 0 833
+249 231 0 833
+19 80 667 834
+23 31 725 834
+24 149 806 834
+28 42 649 834
+42 54 809 834
+46 235 542 834
+74 140 688 834
+78 95 0 834
+136 215 421 834
+138 156 700 834
+146 136 571 834
+156 206 815 834
+171 256 811 834
+180 46 731 834
+180 228 815 834
+202 161 626 834
+202 197 428 834
+210 215 800 834
+225 223 712 834
+226 196 810 834
+231 18 0 834
+249 232 166 834
+1 190 655 835
+5 65 756 835
+9 77 68 835
+18 101 0 835
+67 160 783 835
+84 170 559 835
+87 217 472 835
+91 67 774 835
+130 150 651 835
+143 50 790 835
+163 37 740 835
+163 49 741 835
+207 204 814 835
+212 17 699 835
+215 249 747 835
+218 172 0 835
+218 100 776 835
+232 252 798 835
+13 77 810 836
+16 28 433 836
+22 229 0 836
+32 126 779 836
+96 95 0 836
+124 182 0 836
+148 239 830 836
+155 208 812 836
+169 100 757 836
+180 255 0 836
+191 250 738 836
+194 8 745 836
+197 21 0 836
+213 230 659 836
+218 234 809 836
+221 43 724 836
+228 63 821 836
+232 205 791 836
+233 231 602 836
+233 28 784 836
+234 251 0 836
+1 66 792 837
+9 224 778 837
+33 240 817 837
+34 13 781 837
+34 178 604 837
+52 178 669 837
+55 106 814 837
+79 196 238 837
+84 177 285 837
+109 63 690 837
+120 68 749 837
+170 250 530 837
+210 233 738 837
+215 26 0 837
+232 53 0 837
+236 94 823 837
+236 39 712 837
+3 95 741 838
+4 5 732 838
+22 21 0 838
+22 31 816 838
+24 97 809 838
+58 12 795 838
+89 43 818 838
+113 126 780 838
+133 194 806 838
+148 162 553 838
+150 175 735 838
+182 144 120 838
+199 244 194 838
+205 209 827 838
+213 229 806 838
+215 25 0 838
+221 61 718 838
+241 193 743 838
+252 197 805 838
+256 36 788 838
+14 80 813 839
+22 235 797 839
+39 43 788 839
+47 80 801 839
+55 103 0 839
+72 141 820 839
+73 87 490 839
+75 207 816 839
+82 177 817 839
+93 35 712 839
+135 147 819 839
+137 210 814 839
+149 162 598 839
+167 224 703 839
+172 247 0 839
+176 247 791 839
+185 171 0 839
+208 94 803 839
+221 235 787 839
+221 62 732 839
+221 254 780 839
+245 5 211 839
+17 142 755 840
+32 35 455 840
+32 72 818 840
+50 223 823 840
+57 197 807 840
+58 22 827 840
+76 105 824 840
+77 95 334 840
+79 155 169 840
+81 91 713 840
+115 134 434 840
+117 178 0 840
+124 198 283 840
+128 171 839 840
+157 99 507 840
+164 61 828 840
+168 171 799 840
+172 216 782 840
+174 184 831 840
+201 54 746 840
+212 16 749 840
+217 150 0 840
+235 27 578 840
+3 136 834 841
+12 126 817 841
+14 73 831 841
+46 256 794 841
+59 188 805 841
+69 149 462 841
+70 137 796 841
+95 161 229 841
+99 52 656 841
+123 207 815 841
+140 58 829 841
+163 249 601 841
+168 237 759 841
+168 26 532 841
+189 63 834 841
+211 26 792 841
+237 187 769 841
+242 5 0 841
+13 56 469 842
+13 3 757 842
+36 64 771 842
+49 97 788 842
+52 181 790 842
+60 16 807 842
+60 25 803 842
+84 222 688 842
+93 77 650 842
+116 2 827 842
+126 100 837 842
+129 213 559 842
+142 137 806 842
+158 161 0 842
+160 197 836 842
+160 48 742 842
+166 75 800 842
+174 148 425 842
+177 150 823 842
+203 212 780 842
+204 239 814 842
+208 26 808 842
+220 89 815 842
+242 199 663 842
+243 35 571 842
+245 49 497 842
+252 194 781 842
+7 126 757 843
+28 106 598 843
+34 7 771 843
+63 112 0 843
+64 113 0 843
+72 190 813 843
+72 145 820 843
+76 77 0 843
+85 130 670 843
+93 17 711 843
+108 176 198 843
+110 146 834 843
+120 131 810 843
+126 156 815 843
+149 98 792 843
+178 188 815 843
+183 193 767 843
+186 159 368 843
+205 204 655 843
+210 37 693 843
+222 192 834 843
+241 243 0 843
+251 113 734 843
+4 3 0 844
+8 185 830 844
+12 185 820 844
+36 56 355 844
+45 55 830 844
+46 31 755 844
+48 27 363 844
+74 135 822 844
+74 214 808 844
+114 131 739 844
+121 74 827 844
+129 56 679 844
+130 225 659 844
+162 61 828 844
+166 198 813 844
+178 232 786 844
+181 67 823 844
+186 148 665 844
+201 16 760 844
+210 197 716 844
+211 81 766 844
+220 109 742 844
+223 30 760 844
+235 250 10 844
+240 228 0 844
+242 19 671 844
+245 255 477 844
+253 201 470 844
+254 35 790 844
+42 123 815 845
+68 190 643 845
+115 241 657 845
+118 16 807 845
+120 85 819 845
+122 166 649 845
+144 197 179 845
+145 228 821 845
+173 240 44 845
+177 145 472 845
+181 179 0 845
+187 14 819 845
+202 237 488 845
+209 13 826 845
+212 216 739 845
+219 48 718 845
+248 118 160 845
+256 204 825 845
+13 113 730 846
+32 83 759 846
+50 8 458 846
+69 87 0 846
+70 71 0 846
+78 138 839 846
+83 222 693 846
+94 127 833 846
+114 76 835 846
+130 217 744 846
+132 244 800 846
+134 103 761 846
+135 152 111 846
+140 9 840 846
+143 212 766 846
+143 244 784 846
+157 87 843 846
+173 222 0 846
+198 210 558 846
+200 230 769 846
+203 175 816 846
+222 234 822 846
+223 17 0 846
+224 254 830 846
+234 179 763 846
+1 25 830 847
+1 68 556 847
+37 89 836 847
+38 102 825 847
+57 73 770 847
+98 226 682 847
+119 136 799 847
+136 163 302 847
+145 152 826 847
+151 229 827 847
+189 165 812 847
+31 251 773 848
+61 244 824 848
+71 88 410 848
+101 169 827 848
+103 217 810 848
+105 167 787 848
+115 131 146 848
+122 7 498 848
+142 241 832 848
+143 164 821 848
+174 123 828 848
+193 227 817 848
+195 216 89 848
+208 235 819 848
+209 56 764 848
+214 155 208 848
+224 20 832 848
+226 190 820 848
+11 10 840 849
+12 77 0 849
+19 1 763 849
+39 149 833 849
+49 230 767 849
+52 241 842 849
+71 217 595 849
+78 142 0 849
+94 112 824 849
+96 206 556 849
+99 148 804 849
+127 238 786 849
+167 26 326 849
+183 198 766 849
+204 16 55 849
+211 30 797 849
+213 195 0 849
+229 18 341 849
+237 180 820 849
+248 44 103 849
+7 114 797 850
+13 126 507 850
+19 51 764 850
+31 84 838 850
+32 106 746 850
+33 216 817 850
+91 83 754 850
+92 160 815 850
+99 161 792 850
+117 188 799 850
+121 165 804 850
+129 147 572 850
+130 175 674 850
+137 152 713 850
+138 68 200 850
+147 221 427 850
+157 134 830 850
+160 29 824 850
+167 45 828 850
+208 81 639 850
+210 230 686 850
+225 233 775 850
+232 44 499 850
+249 133 823 850
+2 95 832 851
+5 60 806 851
+7 185 786 851
+13 32 840 851
+15 75 663 851
+32 2 832 851
+33 43 231 851
+54 101 816 851
+54 185 817 851
+56 114 0 851
+64 124 843 851
+65 126 0 851
+70 151 795 851
+72 164 826 851
+82 136 728 851
+85 71 0 851
+93 244 819 851
+120 11 839 851
+125 60 659 851
+125 154 709 851
+151 172 754 851
+152 162 792 851
+160 235 683 851
+213 160 839 851
+219 203 0 851
+226 188 828 851
+237 189 833 851
+3 131 598 852
+4 20 0 852
+27 84 847 852
+34 1 756 852
+45 106 216 852
+54 124 844 852
+61 232 558 852
+79 223 841 852
+85 151 715 852
+90 125 654 852
+91 95 0 852
+109 59 826 852
+120 116 826 852
+137 132 765 852
+153 140 0 852
+157 175 517 852
+167 171 769 852
+182 250 694 852
+184 194 0 852
+190 196 812 852
+200 6 0 852
+217 147 812 852
+218 191 547 852
+218 239 0 852
+219 11 829 852
+225 231 25 852
+227 25 196 852
+235 30 822 852
+5 220 834 853
+11 185 815 853
+31 47 775 853
+64 123 600 853
+67 155 846 853
+72 146 0 853
+111 146 826 853
+116 8 816 853
+119 87 183 853
+153 77 261 853
+208 109 719 853
+230 38 0 853
+233 236 572 853
+240 29 815 853
+11 32 838 854
+34 17 769 854
+50 120 836 854
+59 56 844 854
+61 53 725 854
+78 2 777 854
+90 30 360 854
+95 158 0 854
+110 177 768 854
+157 221 800 854
+164 33 765 854
+166 241 819 854
+171 182 620 854
+171 250 619 854
+189 229 793 854
+196 211 0 854
+240 255 0 854
+242 65 737 854
+248 6 553 854
+4 200 722 855
+9 28 495 855
+10 125 491 855
+51 72 789 855
+64 25 831 855
+69 179 826 855
+71 74 595 855
+73 80 580 855
+83 131 791 855
+87 158 840 855
+103 147 832 855
+105 121 843 855
+105 166 772 855
+115 172 789 855
+149 169 830 855
+161 254 823 855
+177 132 844 855
+186 92 766 855
+189 33 824 855
+206 29 806 855
+216 247 749 855
+225 172 814 855
+236 109 722 855
+236 112 770 855
+238 192 771 855
+245 205 629 855
+251 112 671 855
+4 56 125 856
+34 71 766 856
+35 63 201 856
+41 106 0 856
+45 20 823 856
+60 13 673 856
+63 115 845 856
+69 242 837 856
+73 138 0 856
+84 237 821 856
+93 13 280 856
+109 39 789 856
+111 158 0 856
+139 240 793 856
+142 180 845 856
+190 242 823 856
+231 255 834 856
+234 183 0 856
+253 29 696 856
+12 71 0 857
+32 17 839 857
+47 127 518 857
+69 226 829 857
+86 76 0 857
+88 130 0 857
+89 169 361 857
+93 125 815 857
+97 171 844 857
+100 140 846 857
+125 80 840 857
+137 147 808 857
+145 189 810 857
+161 163 816 857
+166 171 0 857
+170 207 719 857
+190 183 829 857
+193 204 844 857
+202 223 713 857
+209 66 720 857
+210 220 729 857
+212 229 386 857
+215 161 750 857
+221 16 834 857
+238 190 810 857
+247 39 770 857
+254 20 833 857
+40 114 727 858
+46 94 800 858
+69 165 847 858
+89 44 817 858
+97 126 827 858
+112 52 493 858
+123 100 632 858
+135 197 833 858
+142 145 845 858
+145 46 744 858
+146 158 0 858
+148 228 820 858
+150 228 809 858
+157 222 180 858
+179 232 447 858
+190 245 822 858
+193 199 633 858
+196 18 832 858
+208 209 288 858
+225 22 683 858
+242 194 0 858
+243 47 566 858
+244 16 829 858
+23 76 0 859
+37 30 735 859
+45 94 809 859
+49 256 793 859
+91 214 735 859
+109 102 846 859
+129 232 775 859
+133 194 854 859
+142 144 845 859
+143 136 822 859
+153 83 857 859
+161 239 823 859
+178 205 842 859
+198 248 788 859
+198 203 837 859
+199 2 385 859
+202 169 613 859
+209 239 812 859
+213 169 813 859
+215 203 831 859
+221 78 833 859
+226 211 854 859
+14 175 795 860
+15 42 832 860
+26 125 666 860
+34 118 481 860
+34 69 751 860
+40 226 794 860
+52 207 787 860
+54 104 791 860
+62 113 0 860
+95 147 742 860
+111 82 586 860
+131 195 768 860
+134 179 833 860
+142 111 801 860
+152 226 841 860
+157 146 680 860
+160 250 844 860
+169 22 821 860
+192 256 812 860
+199 200 0 860
+235 41 821 860
+240 250 0 860
+240 26 818 860
+21 29 481 861
+34 3 611 861
+53 126 389 861
+80 67 736 861
+85 76 708 861
+89 102 694 861
+93 68 671 861
+102 182 785 861
+132 205 800 861
+138 158 843 861
+141 161 438 861
+167 234 803 861
+186 68 814 861
+202 219 0 861
+209 78 783 861
+221 81 849 861
+233 252 829 861
+236 54 856 861
+13 122 813 862
+28 76 256 862
+37 27 830 862
+100 163 841 862
+128 180 849 862
+140 67 795 862
+141 164 781 862
+141 175 590 862
+146 210 829 862
+150 226 358 862
+150 230 0 862
+192 129 0 862
+225 2 706 862
+242 223 512 862
+242 209 610 862
+243 1 0 862
+247 61 851 862
+252 59 713 862
+12 72 841 863
+17 52 769 863
+36 40 0 863
+65 138 319 863
+69 166 729 863
+101 108 822 863
+105 110 385 863
+112 124 812 863
+118 186 860 863
+119 72 767 863
+128 102 567 863
+141 209 414 863
+145 221 744 863
+154 102 300 863
+162 232 657 863
+190 171 815 863
+206 16 765 863
+207 209 826 863
+219 223 670 863
+222 162 691 863
+231 101 827 863
+239 90 731 863
+245 200 854 863
+246 26 840 863
+1 17 0 864
+4 175 753 864
+5 11 816 864
+13 114 677 864
+39 183 863 864
+44 110 842 864
+52 178 845 864
+56 11 838 864
+81 111 739 864
+120 104 833 864
+146 151 0 864
+190 205 799 864
+199 195 446 864
+199 115 854 864
+200 204 845 864
+212 78 689 864
+213 227 0 864
+216 18 704 864
+226 249 646 864
+252 118 54 864
+64 110 67 865
+64 138 584 865
+69 189 846 865
+104 52 725 865
+116 18 832 865
+126 188 836 865
+128 111 829 865
+140 180 843 865
+148 212 763 865
+154 108 724 865
+156 96 0 865
+159 228 597 865
+160 46 546 865
+220 70 783 865
+224 247 764 865
+232 34 0 865
+54 113 243 866
+58 63 840 866
+73 75 0 866
+78 18 766 866
+89 106 550 866
+90 95 0 866
+90 107 685 866
+93 66 235 866
+121 234 850 866
+133 246 784 866
+150 213 0 866
+156 79 724 866
+172 246 773 866
+191 251 849 866
+196 221 812 866
+199 244 840 866
+234 57 623 866
+242 17 307 866
+243 113 568 866
+20 63 745 867
+27 108 844 867
+31 18 855 867
+64 127 586 867
+69 76 645 867
+96 111 0 867
+122 53 838 867
+136 215 852 867
+166 163 836 867
+166 226 786 867
+202 233 266 867
+203 16 0 867
+215 223 798 867
+248 24 834 867
+249 236 0 867
+251 110 677 867
+23 35 838 868
+34 52 561 868
+45 25 830 868
+109 218 865 868
+117 124 822 868
+144 219 221 868
+154 110 343 868
+165 188 469 868
+170 77 840 868
+200 244 670 868
+220 236 0 868
+231 118 835 868
+237 247 746 868
+237 252 790 868
+11 31 834 869
+12 91 817 869
+12 156 755 869
+25 111 842 869
+42 117 780 869
+61 58 704 869
+63 138 855 869
+64 65 582 869
+69 192 742 869
+69 193 689 869
+69 196 817 869
+93 65 224 869
+103 162 0 869
+105 214 754 869
+116 95 561 869
+130 164 669 869
+153 147 812 869
+154 214 241 869
+160 9 783 869
+187 217 864 869
+191 45 840 869
+199 23 28 869
+210 46 828 869
+228 2 841 869
+243 114 791 869
+249 191 833 869
+52 130 853 870
+77 158 842 870
+88 217 697 870
+94 63 242 870
+138 241 840 870
+146 228 797 870
+149 40 769 870
+155 144 0 870
+155 175 710 870
+161 188 864 870
+167 162 604 870
+180 253 853 870
+182 204 724 870
+199 219 820 870
+219 235 565 870
+11 186 836 871
+14 18 840 871
+20 24 851 871
+24 97 854 871
+27 110 408 871
+40 174 858 871
+43 110 0 871
+49 86 856 871
+57 42 0 871
+85 153 747 871
+111 99 0 871
+111 202 732 871
+127 140 853 871
+141 196 183 871
+151 165 674 871
+168 211 850 871
+170 191 0 871
+187 241 828 871
+208 46 502 871
+211 62 802 871
+214 165 828 871
+215 250 848 871
+221 211 424 871
+239 16 461 871
+253 125 601 871
+4 66 0 872
+38 26 39 872
+63 60 651 872
+75 177 274 872
+77 144 853 872
+109 88 862 872
+119 186 849 872
+128 95 853 872
+144 132 792 872
+144 148 842 872
+150 166 762 872
+155 233 352 872
+167 37 855 872
+176 58 602 872
+177 172 828 872
+185 74 740 872
+185 77 816 872
+185 204 852 872
+213 9 842 872
+220 253 685 872
+223 16 0 872
+250 196 779 872
+18 125 862 873
+24 53 674 873
+31 95 783 873
+42 154 728 873
+50 6 125 873
+51 2 766 873
+76 131 729 873
+91 158 0 873
+104 226 666 873
+109 128 98 873
+109 97 0 873
+131 22 840 873
+137 193 340 873
+149 104 630 873
+153 131 359 873
+164 223 776 873
+186 215 653 873
+188 131 862 873
+205 50 799 873
+215 159 776 873
+215 31 726 873
+218 230 29 873
+232 244 152 873
+248 7 526 873
+252 43 721 873
+2 6 796 874
+8 35 839 874
+36 82 677 874
+48 60 847 874
+64 116 22 874
+68 67 0 874
+77 67 825 874
+78 20 0 874
+93 95 651 874
+105 165 757 874
+124 188 0 874
+134 193 280 874
+140 160 768 874
+152 232 857 874
+164 151 781 874
+182 136 830 874
+185 91 829 874
+190 133 853 874
+215 25 845 874
+222 180 677 874
+229 38 0 874
+234 60 700 874
+243 117 793 874
+243 3 813 874
+250 255 0 874
+250 63 863 874
+252 122 731 874
+2 73 873 875
+10 30 0 875
+27 153 836 875
+71 147 803 875
+99 163 819 875
+121 139 860 875
+177 163 775 875
+215 143 837 875
+227 89 759 875
+63 126 0 876
+97 170 451 876
+98 222 751 876
+113 39 847 876
+116 71 773 876
+134 198 859 876
+137 245 824 876
+139 215 848 876
+142 133 860 876
+143 78 866 876
+179 215 854 876
+185 151 845 876
+191 239 0 876
+231 242 856 876
+253 57 620 876
+253 199 872 876
+254 53 574 876
+1 69 865 877
+18 3 835 877
+24 165 841 877
+56 70 744 877
+59 124 820 877
+66 115 839 877
+66 157 821 877
+111 171 866 877
+121 187 850 877
+139 60 777 877
+142 207 491 877
+144 13 843 877
+145 224 811 877
+153 101 862 877
+160 219 0 877
+185 130 867 877
+185 136 808 877
+198 220 864 877
+217 9 855 877
+231 58 859 877
+236 126 867 877
+6 28 790 878
+36 41 817 878
+52 162 852 878
+75 161 851 878
+93 62 831 878
+93 10 784 878
+105 218 841 878
+112 140 840 878
+138 162 868 878
+139 143 864 878
+160 22 807 878
+174 214 695 878
+176 64 862 878
+191 255 710 878
+197 60 797 878
+198 23 820 878
+199 22 727 878
+210 221 836 878
+211 81 857 878
+226 193 872 878
+229 243 382 878
+2 41 835 879
+4 11 861 879
+5 204 832 879
+10 42 485 879
+12 92 669 879
+23 85 0 879
+24 146 853 879
+27 40 838 879
+32 3 834 879
+39 174 849 879
+45 64 863 879
+74 218 851 879
+93 211 742 879
+94 128 394 879
+94 36 654 879
+107 214 650 879
+110 187 866 879
+144 196 706 879
+160 220 684 879
+182 217 281 879
+187 135 772 879
+216 41 0 879
+222 251 848 879
+227 43 856 879
+229 246 842 879
+241 13 865 879
+252 55 719 879
+254 231 614 879
+1 124 853 880
+2 76 641 880
+19 8 0 880
+26 106 0 880
+42 173 871 880
+48 94 213 880
+51 39 852 880
+75 234 874 880
+98 170 600 880
+110 126 750 880
+112 234 846 880
+133 217 591 880
+160 209 388 880
+162 229 633 880
+169 183 859 880
+174 138 863 880
+176 45 682 880
+190 202 870 880
+190 203 826 880
+212 125 839 880
+216 235 588 880
+224 62 825 880
+227 85 204 880
+236 255 852 880
+239 228 0 880
+248 36 824 880
+255 52 863 880
+5 85 838 881
+19 3 0 881
+36 39 821 881
+45 125 0 881
+52 71 800 881
+55 64 856 881
+61 128 866 881
+63 95 854 881
+71 68 342 881
+71 193 838 881
+77 173 826 881
+86 151 148 881
+124 192 862 881
+164 216 604 881
+228 41 837 881
+248 17 591 881
+19 23 663 882
+45 212 857 882
+52 100 667 882
+57 64 494 882
+96 178 859 882
+107 188 322 882
+114 241 827 882
+115 185 261 882
+121 79 844 882
+131 201 843 882
+138 139 871 882
+140 215 0 882
+147 196 0 882
+149 99 706 882
+159 218 521 882
+160 14 679 882
+170 96 796 882
+170 240 772 882
+181 238 802 882
+197 206 655 882
+198 160 824 882
+205 195 798 882
+205 53 757 882
+218 219 0 882
+239 254 785 882
+245 199 0 882
+252 42 0 882
+253 128 871 882
+6 29 806 883
+9 77 880 883
+24 150 847 883
+27 87 859 883
+45 256 797 883
+58 22 855 883
+73 185 104 883
+80 79 0 883
+81 30 228 883
+84 237 871 883
+90 218 862 883
+98 240 858 883
+107 165 831 883
+107 100 536 883
+134 214 480 883
+145 141 632 883
+158 151 818 883
+162 228 653 883
+163 242 868 883
+167 200 842 883
+187 236 853 883
+189 144 845 883
+202 158 720 883
+217 197 801 883
+232 235 852 883
+237 61 52 883
+245 247 871 883
+2 10 862 884
+6 70 0 884
+42 108 766 884
+79 217 845 884
+87 107 874 884
+88 218 857 884
+101 151 719 884
+103 230 825 884
+119 165 843 884
+134 105 775 884
+135 215 41 884
+153 111 868 884
+156 185 745 884
+163 180 369 884
+186 135 676 884
+206 220 878 884
+207 193 859 884
+219 48 864 884
+221 62 846 884
+231 36 532 884
+231 51 829 884
+239 81 625 884
+240 207 851 884
+245 230 870 884
+246 64 854 884
+45 60 704 885
+66 94 858 885
+68 141 804 885
+86 165 858 885
+93 85 817 885
+109 157 859 885
+109 145 861 885
+110 188 768 885
+120 102 869 885
+129 144 784 885
+137 88 779 885
+176 255 390 885
+190 133 877 885
+202 148 702 885
+211 47 825 885
+234 64 863 885
+5 227 772 886
+13 38 860 886
+22 14 862 886
+45 62 667 886
+65 127 792 886
+73 87 848 886
+75 114 539 886
+76 217 470 886
+84 101 255 886
+110 249 836 886
+122 186 844 886
+129 61 861 886
+167 247 197 886
+186 173 642 886
+196 175 622 886
+198 5 354 886
+222 211 820 886
+250 219 815 886
+23 87 0 887
+35 149 758 887
+41 99 862 887
+50 23 442 887
+62 94 677 887
+69 77 859 887
+82 113 676 887
+87 40 873 887
+121 249 826 887
+142 129 0 887
+143 212 873 887
+1 3 0 888
+11 117 799 888
+19 228 839 888
+27 128 691 888
+48 128 131 888
+52 72 851 888
+71 116 882 888
+80 218 848 888
+103 184 849 888
+110 234 852 888
+113 192 776 888
+167 23 874 888
+173 240 860 888
+174 166 677 888
+213 167 0 888
+215 14 732 888
+221 228 439 888
+229 242 846 888
+12 3 829 889
+12 137 667 889
+29 20 813 889
+34 65 718 889
+34 84 853 889
+40 152 865 889
+67 202 787 889
+85 125 882 889
+91 105 820 889
+101 147 841 889
+109 153 855 889
+110 240 857 889
+114 157 862 889
+142 131 397 889
+164 224 807 889
+168 131 868 889
+191 256 784 889
+195 175 575 889
+201 64 753 889
+252 54 867 889
+18 41 9 890
+23 73 352 890
+32 35 862 890
+52 68 750 890
+58 208 769 890
+58 12 859 890
+61 4 862 890
+69 159 870 890
+71 96 840 890
+76 88 605 890
+96 129 802 890
+113 96 859 890
+122 185 95 890
+126 190 0 890
+128 107 69 890
+136 50 799 890
+152 249 721 890
+161 253 799 890
+164 209 280 890
+179 209 838 890
+190 140 791 890
+207 243 878 890
+207 244 845 890
+208 78 194 890
+226 244 859 890
+244 8 418 890
+7 72 844 891
+23 56 200 891
+38 102 868 891
+56 119 786 891
+57 197 871 891
+58 219 692 891
+68 164 853 891
+71 179 840 891
+72 133 838 891
+73 109 865 891
+90 141 859 891
+115 172 868 891
+123 217 715 891
+130 50 867 891
+131 217 469 891
+134 210 291 891
+139 207 852 891
+160 203 575 891
+169 45 857 891
+170 190 0 891
+174 123 873 891
+182 56 862 891
+233 204 646 891
+236 75 874 891
+237 46 0 891
+245 229 0 891
+253 201 856 891
+256 125 779 891
+16 111 826 892
+34 183 867 892
+67 209 689 892
+76 92 0 892
+97 161 753 892
+115 142 534 892
+140 9 888 892
+170 161 267 892
+180 144 836 892
+189 250 66 892
+194 73 883 892
+212 227 848 892
+228 63 885 892
+231 56 743 892
+233 222 809 892
+13 17 117 893
+17 21 0 893
+23 31 840 893
+28 92 840 893
+31 42 847 893
+35 51 879 893
+49 125 804 893
+55 43 818 893
+58 56 838 893
+73 29 882 893
+84 191 289 893
+123 100 871 893
+133 132 756 893
+133 50 847 893
+161 61 798 893
+163 178 797 893
+176 15 835 893
+205 36 867 893
+214 160 687 893
+25 43 830 894
+50 19 768 894
+51 40 787 894
+53 66 815 894
+58 5 803 894
+61 1 881 894
+105 172 540 894
+107 233 410 894
+118 3 891 894
+177 72 859 894
+196 212 0 894
+196 211 871 894
+242 33 871 894
+252 194 887 894
+256 36 861 894
+6 89 801 895
+21 68 874 895
+27 117 796 895
+38 3 873 895
+41 92 858 895
+85 41 139 895
+111 141 623 895
+116 130 497 895
+121 182 0 895
+128 65 854 895
+144 158 723 895
+146 229 779 895
+148 209 0 895
+155 191 767 895
+156 106 870 895
+158 203 758 895
+160 212 505 895
+195 20 855 895
+200 8 0 895
+207 202 846 895
+240 220 547 895
+12 119 271 896
+23 74 493 896
+27 101 677 896
+62 78 887 896
+68 88 873 896
+80 202 825 896
+85 148 884 896
+106 218 852 896
+126 79 0 896
+127 142 849 896
+160 45 687 896
+166 192 866 896
+169 220 521 896
+171 46 866 896
+171 256 836 896
+182 229 851 896
+189 63 874 896
+190 191 787 896
+190 144 742 896
+204 216 849 896
+250 1 824 896
+22 31 860 897
+50 22 766 897
+60 105 887 897
+63 98 0 897
+84 180 548 897
+127 161 757 897
+164 167 153 897
+166 198 876 897
+173 170 874 897
+236 201 818 897
+256 30 799 897
+14 10 846 898
+35 63 869 898
+42 170 809 898
+46 21 835 898
+69 186 870 898
+70 92 802 898
+85 157 816 898
+85 104 861 898
+90 138 874 898
+91 145 802 898
+92 161 877 898
+108 138 864 898
+118 90 886 898
+120 2 395 898
+123 180 881 898
+125 34 850 898
+132 164 661 898
+134 67 799 898
+150 217 880 898
+161 162 464 898
+166 124 803 898
+198 199 679 898
+202 159 330 898
+205 9 641 898
+219 231 891 898
+236 54 875 898
+240 93 889 898
+241 203 797 898
+247 28 775 898
+11 12 0 899
+16 20 411 899
+34 178 876 899
+37 27 874 899
+37 95 867 899
+41 87 727 899
+59 174 841 899
+64 116 878 899
+90 202 853 899
+92 168 895 899
+122 76 887 899
+125 100 698 899
+132 212 868 899
+143 9 819 899
+150 173 876 899
+155 82 844 899
+159 239 58 899
+167 228 785 899
+171 247 877 899
+189 244 437 899
+213 233 134 899
+222 19 869 899
+223 46 754 899
+233 221 794 899
+235 57 622 899
+240 247 740 899
+243 78 839 899
+8 114 168 900
+28 153 690 900
+31 126 891 900
+43 39 868 900
+44 40 818 900
+58 206 748 900
+59 251 0 900
+66 101 869 900
+73 28 799 900
+103 229 826 900
+106 237 823 900
+108 214 775 900
+137 152 880 900
+139 141 874 900
+139 206 826 900
+142 178 437 900
+146 115 868 900
+148 163 0 900
+151 220 865 900
+167 231 0 900
+171 250 878 900
+194 8 870 900
+229 24 880 900
+248 24 887 900
+250 251 0 900
+251 75 794 900
+16 157 853 901
+32 125 13 901
+34 133 879 901
+35 115 875 901
+48 49 126 901
+83 163 444 901
+90 137 882 901
+109 124 870 901
+115 180 884 901
+122 124 0 901
+149 193 849 901
+154 161 876 901
+159 204 669 901
+161 234 798 901
+176 236 576 901
+179 23 830 901
+186 111 650 901
+190 245 897 901
+194 54 866 901
+204 199 763 901
+206 25 751 901
+216 224 885 901
+222 62 674 901
+233 160 0 901
+4 64 768 902
+16 29 0 902
+33 82 885 902
+38 119 854 902
+67 210 630 902
+82 97 0 902
+83 175 600 902
+91 215 831 902
+98 163 554 902
+98 67 899 902
+105 174 90 902
+106 192 860 902
+116 75 39 902
+119 72 886 902
+121 183 631 902
+138 234 862 902
+160 93 758 902
+161 45 864 902
+164 168 865 902
+175 232 856 902
+186 148 875 902
+197 211 870 902
+222 33 483 902
+246 15 861 902
+254 203 870 902
+16 154 524 903
+23 6 0 903
+31 47 874 903
+32 33 433 903
+32 126 899 903
+32 154 36 903
+35 150 847 903
+78 73 894 903
+94 74 875 903
+113 133 874 903
+116 113 0 903
+116 177 855 903
+123 176 876 903
+135 184 0 903
+146 178 857 903
+157 149 723 903
+166 179 560 903
+167 26 866 903
+187 4 858 903
+197 120 872 903
+211 66 252 903
+222 30 806 903
+238 48 184 903
+20 24 885 904
+22 10 859 904
+34 127 757 904
+55 6 882 904
+64 77 0 904
+67 4 846 904
+108 215 903 904
+134 132 199 904
+158 150 885 904
+166 234 791 904
+175 227 844 904
+191 178 878 904
+207 15 854 904
+248 195 753 904
+14 224 826 905
+32 106 866 905
+48 36 777 905
+49 20 280 905
+58 4 765 905
+61 250 0 905
+73 138 893 905
+86 83 861 905
+87 99 829 905
+89 31 578 905
+110 79 855 905
+118 138 882 905
+120 142 742 905
+134 150 385 905
+140 218 888 905
+144 93 901 905
+147 167 719 905
+154 214 885 905
+187 247 867 905
+192 61 460 905
+199 74 881 905
+237 206 877 905
+238 255 0 905
+251 78 868 905
+14 126 880 906
+21 99 833 906
+24 53 891 906
+43 154 483 906
+48 58 902 906
+48 255 132 906
+71 83 790 906
+81 120 820 906
+89 169 883 906
+101 169 889 906
+103 185 889 906
+129 200 827 906
+156 150 856 906
+161 189 808 906
+163 49 892 906
+176 58 893 906
+176 62 588 906
+177 238 772 906
+189 4 849 906
+191 183 889 906
+197 126 887 906
+204 4 850 906
+208 20 742 906
+217 23 884 906
+218 216 790 906
+227 39 383 906
+238 129 803 906
+255 55 893 906
+10 134 894 907
+33 55 896 907
+37 242 856 907
+48 13 845 907
+59 1 879 907
+71 213 823 907
+72 101 839 907
+104 226 882 907
+134 147 0 907
+139 205 656 907
+145 112 874 907
+166 131 792 907
+170 52 597 907
+172 140 861 907
+172 135 849 907
+182 144 885 907
+192 184 864 907
+247 15 884 907
+10 126 883 908
+18 36 0 908
+24 97 900 908
+29 39 872 908
+31 84 882 908
+35 72 833 908
+50 65 820 908
+70 95 855 908
+112 52 883 908
+113 183 853 908
+157 154 0 908
+182 58 839 908
+192 202 848 908
+217 161 901 908
+226 56 859 908
+231 70 882 908
+242 246 0 908
+1 51 0 909
+1 142 848 909
+100 48 886 909
+109 92 271 909
+109 39 874 909
+114 119 771 909
+122 84 875 909
+139 15 824 909
+155 146 823 909
+168 242 788 909
+170 180 442 909
+188 256 901 909
+194 21 870 909
+195 21 0 909
+202 221 0 909
+212 36 846 909
+222 209 0 909
+248 5 0 909
+250 78 794 909
+4 208 244 910
+59 76 861 910
+64 138 884 910
+69 76 873 910
+76 136 747 910
+111 97 0 910
+114 68 0 910
+116 79 0 910
+122 78 846 910
+126 154 874 910
+129 194 0 910
+134 217 482 910
+144 253 882 910
+155 240 770 910
+159 14 478 910
+159 195 354 910
+161 180 34 910
+174 215 882 910
+177 226 686 910
+198 248 882 910
+201 54 855 910
+228 205 880 910
+236 39 892 910
+248 7 895 910
+249 48 850 910
+6 119 669 911
+12 126 853 911
+26 240 873 911
+31 125 492 911
+41 199 906 911
+46 256 852 911
+71 132 799 911
+73 52 895 911
+83 151 594 911
+86 134 740 911
+94 72 906 911
+98 183 847 911
+99 190 902 911
+108 150 782 911
+121 153 899 911
+121 135 792 911
+123 172 867 911
+143 208 646 911
+151 229 864 911
+155 98 797 911
+167 234 885 911
+189 232 638 911
+223 65 823 911
+235 42 885 911
+238 178 796 911
+8 126 890 912
+54 12 799 912
+69 137 253 912
+81 21 790 912
+94 112 882 912
+116 67 0 912
+137 218 874 912
+143 15 853 912
+146 229 905 912
+152 218 706 912
+158 221 0 912
+161 48 775 912
+163 200 904 912
+167 224 884 912
+196 93 723 912
+213 144 881 912
+220 221 725 912
+225 19 238 912
+235 250 869 912
+238 207 21 912
+242 251 885 912
+248 244 0 912
+6 124 782 913
+8 136 890 913
+32 72 852 913
+46 36 0 913
+53 75 771 913
+63 115 868 913
+74 217 683 913
+82 97 909 913
+91 106 771 913
+96 111 892 913
+106 170 385 913
+108 224 911 913
+114 133 0 913
+116 85 814 913
+135 144 12 913
+141 215 722 913
+144 194 907 913
+147 206 905 913
+154 84 432 913
+155 112 881 913
+176 143 602 913
+188 202 852 913
+197 45 902 913
+197 21 853 913
+207 159 667 913
+245 228 878 913
+13 122 890 914
+21 95 808 914
+22 7 876 914
+69 147 799 914
+72 145 890 914
+75 113 243 914
+90 218 895 914
+92 106 653 914
+108 181 0 914
+113 100 0 914
+118 40 0 914
+134 68 297 914
+146 158 893 914
+162 131 863 914
+177 142 527 914
+180 203 844 914
+184 48 879 914
+188 58 888 914
+251 112 886 914
+32 47 0 915
+63 138 902 915
+68 130 0 915
+73 80 891 915
+84 160 895 915
+93 65 878 915
+98 69 844 915
+111 98 587 915
+131 243 883 915
+182 187 0 915
+194 227 760 915
+198 50 219 915
+15 219 799 916
+46 232 313 916
+49 246 900 916
+64 244 726 916
+70 39 626 916
+102 182 877 916
+106 171 800 916
+116 123 854 916
+116 141 807 916
+193 17 157 916
+208 175 544 916
+223 16 899 916
+238 205 726 916
+251 99 902 916
+2 72 262 917
+7 137 187 917
+8 68 572 917
+9 126 863 917
+26 38 885 917
+32 43 0 917
+46 35 0 917
+59 185 789 917
+70 27 644 917
+79 204 792 917
+105 34 870 917
+105 151 359 917
+110 123 325 917
+137 87 0 917
+137 214 650 917
+144 6 901 917
+222 180 883 917
+237 216 876 917
+248 58 806 917
+7 90 878 918
+20 72 863 918
+32 155 865 918
+32 83 859 918
+34 63 0 918
+74 218 891 918
+78 138 888 918
+97 181 871 918
+102 115 676 918
+108 230 819 918
+111 171 895 918
+146 159 911 918
+147 212 871 918
+157 136 890 918
+164 212 515 918
+192 203 0 918
+197 227 573 918
+208 46 881 918
+219 221 0 918
+226 196 843 918
+233 161 532 918
+3 135 902 919
+8 83 837 919
+17 68 572 919
+18 89 882 919
+39 120 910 919
+59 133 887 919
+87 147 807 919
+98 79 900 919
+105 76 903 919
+112 167 905 919
+144 197 900 919
+149 159 855 919
+153 140 883 919
+155 221 0 919
+160 171 867 919
+162 79 895 919
+173 222 909 919
+187 9 819 919
+189 48 703 919
+232 36 327 919
+242 179 0 919
+243 63 487 919
+14 63 903 920
+18 80 891 920
+28 101 847 920
+42 36 872 920
+44 103 885 920
+68 147 792 920
+73 71 0 920
+73 75 887 920
+78 127 899 920
+104 191 871 920
+109 156 829 920
+116 18 907 920
+143 195 182 920
+143 93 760 920
+169 234 718 920
+186 154 776 920
+192 250 0 920
+198 184 0 920
+198 58 492 920
+213 218 664 920
+214 197 880 920
+220 247 411 920
+232 86 908 920
+245 244 122 920
+248 51 164 920
+249 133 914 920
+16 68 704 921
+18 72 272 921
+19 47 847 921
+19 95 642 921
+31 91 801 921
+42 53 895 921
+88 112 900 921
+94 146 914 921
+95 128 903 921
+95 158 906 921
+118 185 0 921
+131 226 807 921
+146 136 890 921
+157 3 782 921
+171 182 883 921
+183 230 0 921
+231 50 907 921
+232 34 893 921
+232 51 754 921
+247 29 756 921
+6 78 848 922
+9 60 0 922
+29 20 903 922
+54 66 897 922
+64 116 910 922
+78 190 901 922
+90 123 851 922
+92 146 914 922
+110 191 668 922
+141 130 329 922
+151 237 881 922
+159 208 374 922
+169 220 902 922
+170 235 862 922
+189 251 744 922
+199 256 856 922
+203 195 698 922
+238 243 835 922
+245 255 876 922
+247 48 767 922
+5 10 838 923
+49 115 850 923
+85 34 856 923
+121 74 892 923
+140 213 0 923
+161 206 891 923
+179 219 913 923
+26 25 0 924
+32 84 446 924
+49 86 897 924
+51 116 0 924
+59 104 910 924
+65 20 883 924
+66 105 905 924
+78 94 912 924
+79 196 893 924
+92 112 835 924
+106 103 0 924
+113 241 815 924
+142 159 0 924
+146 168 794 924
+167 211 826 924
+180 61 456 924
+182 231 891 924
+195 212 388 924
+199 121 875 924
+200 37 716 924
+214 201 897 924
+225 230 286 924
+238 242 737 924
+21 36 824 925
+66 94 903 925
+72 146 890 925
+104 168 839 925
+108 163 889 925
+116 17 638 925
+123 171 0 925
+123 234 809 925
+134 152 0 925
+153 131 916 925
+155 143 0 925
+164 61 890 925
+170 252 879 925
+174 167 793 925
+177 176 895 925
+182 242 834 925
+199 219 906 925
+199 15 820 925
+209 85 903 925
+231 253 880 925
+234 198 735 925
+234 179 888 925
+240 29 911 925
+253 122 894 925
+11 53 898 926
+13 42 889 926
+35 149 901 926
+36 64 863 926
+46 242 859 926
+54 133 898 926
+80 3 326 926
+80 82 491 926
+117 162 871 926
+127 191 0 926
+131 217 913 926
+145 128 909 926
+146 175 652 926
+150 191 900 926
+154 237 877 926
+162 242 820 926
+169 216 623 926
+169 229 819 926
+182 235 840 926
+182 56 916 926
+186 135 901 926
+191 129 863 926
+192 235 860 926
+207 193 904 926
+214 209 913 926
+231 51 918 926
+235 60 761 926
+256 204 876 926
+13 6 906 927
+53 181 865 927
+73 87 911 927
+92 165 840 927
+107 151 664 927
+108 187 0 927
+126 133 903 927
+131 5 920 927
+152 194 717 927
+162 248 918 927
+174 233 90 927
+175 37 713 927
+200 212 695 927
+207 183 901 927
+209 32 905 927
+214 26 877 927
+232 242 380 927
+252 55 905 927
+254 51 876 927
+12 18 874 928
+47 64 887 928
+53 117 871 928
+78 126 0 928
+86 117 799 928
+91 237 875 928
+102 71 922 928
+110 114 888 928
+119 131 154 928
+126 156 878 928
+142 160 879 928
+144 224 905 928
+165 230 0 928
+183 193 906 928
+186 203 902 928
+234 248 895 928
+250 7 926 928
+49 247 901 929
+53 138 826 929
+92 174 649 929
+102 192 870 929
+104 167 882 929
+131 246 787 929
+136 211 675 929
+142 132 0 929
+162 205 902 929
+169 22 909 929
+177 191 759 929
+187 236 919 929
+191 229 899 929
+209 227 849 929
+223 20 760 929
+241 255 0 929
+244 16 886 929
+252 204 792 929
+8 69 0 930
+8 156 883 930
+30 128 629 930
+44 1 917 930
+111 160 0 930
+112 185 0 930
+126 153 868 930
+169 230 0 930
+173 172 872 930
+176 67 842 930
+187 204 694 930
+199 126 855 930
+220 184 819 930
+228 242 818 930
+234 15 862 930
+240 228 875 930
+249 187 771 930
+253 29 914 930
+4 114 924 931
+6 32 909 931
+16 114 893 931
+19 35 697 931
+33 28 885 931
+137 141 921 931
+141 208 420 931
+143 204 677 931
+170 198 877 931
+188 226 909 931
+214 179 877 931
+225 49 416 931
+234 13 917 931
+239 230 907 931
+243 117 910 931
+243 120 784 931
+249 140 836 931
+8 90 893 932
+14 64 0 932
+22 230 0 932
+71 149 0 932
+91 89 0 932
+98 178 0 932
+120 151 930 932
+129 256 915 932
+131 214 909 932
+136 238 926 932
+159 216 917 932
+160 225 924 932
+169 240 718 932
+186 250 898 932
+202 194 911 932
+212 229 894 932
+212 70 902 932
+233 238 928 932
+238 230 903 932
+242 57 815 932
+245 205 876 932
+249 231 864 932
+253 11 863 932
+254 53 891 932
+6 77 425 933
+26 70 746 933
+108 133 796 933
+110 164 882 933
+111 237 14 933
+118 133 793 933
+123 217 893 933
+125 11 899 933
+145 149 0 933
+145 225 332 933
+155 144 916 933
+164 171 899 933
+169 184 734 933
+181 167 898 933
+183 242 800 933
+184 64 926 933
+189 203 676 933
+206 16 900 933
+232 179 895 933
+246 38 395 933
+4 52 917 934
+8 142 811 934
+16 75 873 934
+25 78 440 934
+52 72 913 934
+54 177 918 934
+54 126 858 934
+56 81 881 934
+69 149 856 934
+86 36 722 934
+86 104 598 934
+92 216 874 934
+120 135 879 934
+152 230 0 934
+155 147 782 934
+162 182 907 934
+166 171 881 934
+168 211 892 934
+177 72 903 934
+180 141 897 934
+195 116 840 934
+209 65 881 934
+212 29 917 934
+215 93 848 934
+219 224 0 934
+224 230 360 934
+228 86 921 934
+21 34 850 935
+35 53 933 935
+37 2 667 935
+44 166 922 935
+55 99 868 935
+58 78 622 935
+84 113 550 935
+107 171 0 935
+142 136 664 935
+145 163 0 935
+150 175 901 935
+163 215 910 935
+200 33 860 935
+207 15 927 935
+211 26 849 935
+253 1 888 935
+254 196 874 935
+14 77 561 936
+34 44 893 936
+59 154 927 936
+67 203 745 936
+72 143 924 936
+92 22 922 936
+106 121 0 936
+145 175 317 936
+163 245 342 936
+164 211 666 936
+179 209 896 936
+188 79 720 936
+214 224 343 936
+233 182 904 936
+238 245 488 936
+247 117 924 936
+251 11 463 936
+7 124 285 937
+16 65 0 937
+22 224 360 937
+51 76 782 937
+103 171 802 937
+121 171 812 937
+145 240 711 937
+153 77 857 937
+153 185 508 937
+168 178 796 937
+217 229 933 937
+6 10 752 938
+9 64 0 938
+14 68 912 938
+14 52 903 938
+33 66 873 938
+37 27 924 938
+38 177 930 938
+42 170 929 938
+44 111 916 938
+73 156 716 938
+79 241 765 938
+95 127 921 938
+103 218 716 938
+106 39 0 938
+108 183 0 938
+109 174 823 938
+128 79 918 938
+161 215 865 938
+162 167 911 938
+169 160 715 938
+176 184 674 938
+179 9 843 938
+179 216 855 938
+189 168 912 938
+204 223 572 938
+216 41 936 938
+222 234 933 938
+239 68 927 938
+243 118 917 938
+252 197 868 938
+4 63 843 939
+8 151 833 939
+23 27 754 939
+56 76 779 939
+59 7 302 939
+66 74 895 939
+77 67 900 939
+83 143 812 939
+84 101 897 939
+90 92 616 939
+91 107 771 939
+91 174 793 939
+110 237 563 939
+127 241 653 939
+149 216 851 939
+153 218 0 939
+180 131 886 939
+184 55 911 939
+192 129 908 939
+204 16 891 939
+206 78 786 939
+212 66 352 939
+217 235 934 939
+237 22 881 939
+241 46 871 939
+245 49 860 939
+254 35 903 939
+16 121 907 940
+17 130 917 940
+31 89 920 940
+75 114 900 940
+83 210 786 940
+106 169 710 940
+109 77 654 940
+112 237 829 940
+113 166 917 940
+120 104 885 940
+139 232 914 940
+142 143 0 940
+145 189 902 940
+153 198 838 940
+187 241 919 940
+193 220 937 940
+193 18 932 940
+219 231 936 940
+222 208 362 940
+236 13 833 940
+243 78 933 940
+1 31 912 941
+19 3 918 941
+22 26 0 941
+38 71 927 941
+53 16 850 941
+103 162 904 941
+113 119 923 941
+114 162 758 941
+116 75 928 941
+120 185 0 941
+139 131 840 941
+174 162 928 941
+252 118 907 941
+256 223 897 941
+256 196 914 941
+12 3 913 942
+14 80 870 942
+22 239 902 942
+45 232 917 942
+57 5 323 942
+66 76 618 942
+69 162 774 942
+86 59 716 942
+93 240 911 942
+150 216 186 942
+163 46 758 942
+208 73 925 942
+209 20 746 942
+210 215 913 942
+6 90 795 943
+14 73 874 943
+14 10 915 943
+26 248 900 943
+69 192 925 943
+81 47 779 943
+82 161 914 943
+82 238 913 943
+106 60 911 943
+135 184 932 943
+153 186 70 943
+159 228 913 943
+173 233 25 943
+222 33 924 943
+230 38 892 943
+33 81 159 944
+39 183 935 944
+44 75 841 944
+51 60 873 944
+82 225 830 944
+87 107 911 944
+96 129 906 944
+109 91 491 944
+114 117 0 944
+145 218 787 944
+158 175 0 944
+160 100 883 944
+167 248 893 944
+174 160 0 944
+197 14 665 944
+198 5 940 944
+207 255 0 944
+213 246 852 944
+214 238 920 944
+222 211 903 944
+252 1 916 944
+10 231 935 945
+11 170 930 945
+17 18 509 945
+23 24 877 945
+44 126 917 945
+58 121 916 945
+72 133 909 945
+75 137 908 945
+81 134 884 945
+87 99 922 945
+108 119 830 945
+108 139 322 945
+111 100 0 945
+115 162 0 945
+115 165 0 945
+119 165 914 945
+128 177 878 945
+133 226 785 945
+151 163 331 945
+152 23 852 945
+170 202 861 945
+208 19 215 945
+211 230 680 945
+222 30 933 945
+238 172 815 945
+247 194 924 945
+1 186 853 946
+2 142 935 946
+7 126 845 946
+8 18 628 946
+9 118 669 946
+57 197 913 946
+83 225 604 946
+100 79 735 946
+110 148 916 946
+110 176 832 946
+138 137 907 946
+145 160 510 946
+158 193 779 946
+165 185 882 946
+171 79 757 946
+177 238 945 946
+189 175 883 946
+197 203 924 946
+205 206 0 946
+226 247 832 946
+235 248 898 946
+247 197 920 946
+247 73 934 946
+256 43 748 946
+11 186 929 947
+35 117 872 947
+86 38 362 947
+109 95 0 947
+111 83 250 947
+139 197 24 947
+155 215 0 947
+158 225 541 947
+168 50 884 947
+193 175 716 947
+217 197 902 947
+239 84 940 947
+254 47 720 947
+14 53 937 948
+18 28 675 948
+27 92 676 948
+31 105 850 948
+35 54 928 948
+66 80 375 948
+71 162 862 948
+77 144 919 948
+81 21 926 948
+83 98 122 948
+84 162 272 948
+88 166 899 948
+100 175 894 948
+101 183 826 948
+105 117 768 948
+106 100 708 948
+129 206 903 948
+137 22 944 948
+139 57 608 948
+148 163 927 948
+155 206 0 948
+195 216 922 948
+243 60 872 948
+244 8 925 948
+247 50 892 948
+250 223 797 948
+251 35 943 948
+2 229 894 949
+15 114 929 949
+49 230 872 949
+49 101 939 949
+73 186 617 949
+79 198 795 949
+85 134 713 949
+100 188 704 949
+110 169 461 949
+118 39 486 949
+139 193 917 949
+156 233 0 949
+174 99 932 949
+204 5 930 949
+204 28 934 949
+212 95 818 949
+228 30 0 949
+233 253 754 949
+233 252 896 949
+241 132 782 949
+1 80 382 950
+40 238 915 950
+43 97 737 950
+56 113 923 950
+58 204 309 950
+58 56 938 950
+67 206 686 950
+77 218 919 950
+84 104 602 950
+102 237 894 950
+119 139 916 950
+121 127 848 950
+125 52 0 950
+137 172 925 950
+137 144 900 950
+150 177 930 950
+158 196 645 950
+162 133 772 950
+163 37 863 950
+174 146 921 950
+199 16 888 950
+205 78 788 950
+207 252 925 950
+230 243 909 950
+236 118 705 950
+238 227 878 950
+239 12 933 950
+4 211 945 951
+34 180 938 951
+39 113 900 951
+63 16 886 951
+69 186 926 951
+92 210 924 951
+131 243 944 951
+135 144 928 951
+141 250 816 951
+147 46 886 951
+166 162 0 951
+171 185 878 951
+180 158 921 951
+180 130 906 951
+191 30 930 951
+193 70 921 951
+204 12 911 951
+211 30 926 951
+217 250 895 951
+225 196 941 951
+229 247 0 951
+232 62 456 951
+252 122 895 951
+53 71 868 952
+89 102 945 952
+98 183 925 952
+107 218 536 952
+113 183 922 952
+139 50 189 952
+140 160 930 952
+144 158 913 952
+153 167 931 952
+156 161 867 952
+158 206 526 952
+181 226 661 952
+187 254 922 952
+254 63 669 952
+1 25 869 953
+24 87 765 953
+37 88 921 953
+46 109 947 953
+54 102 564 953
+65 77 0 953
+78 20 906 953
+82 151 722 953
+88 117 879 953
+108 165 0 953
+115 180 915 953
+123 179 926 953
+130 50 937 953
+182 130 934 953
+187 14 944 953
+189 131 885 953
+192 241 663 953
+196 15 770 953
+216 86 943 953
+217 23 925 953
+221 235 868 953
+246 73 917 953
+255 52 903 953
+36 78 883 954
+38 3 927 954
+42 52 874 954
+45 41 410 954
+57 64 927 954
+59 6 716 954
+118 1 865 954
+123 183 927 954
+127 161 948 954
+137 201 933 954
+144 22 822 954
+155 112 919 954
+198 58 933 954
+207 240 903 954
+230 24 882 954
+256 125 898 954
+12 107 918 955
+44 110 907 955
+54 101 912 955
+55 73 939 955
+81 35 0 955
+83 160 861 955
+98 69 919 955
+102 126 838 955
+108 127 909 955
+137 204 947 955
+156 206 945 955
+168 171 878 955
+182 213 272 955
+189 48 927 955
+229 41 0 955
+7 10 318 956
+26 89 743 956
+39 119 829 956
+60 166 913 956
+75 139 942 956
+76 149 780 956
+119 138 924 956
+133 201 940 956
+140 151 894 956
+170 135 838 956
+171 236 924 956
+174 164 888 956
+177 164 924 956
+191 229 944 956
+199 119 835 956
+225 19 950 956
+239 44 882 956
+244 142 926 956
+1 121 874 957
+59 73 0 957
+59 76 915 957
+71 170 920 957
+71 124 0 957
+81 86 921 957
+94 98 101 957
+94 146 941 957
+128 102 875 957
+139 151 938 957
+140 58 943 957
+147 228 442 957
+149 107 913 957
+152 227 0 957
+158 209 0 957
+181 188 0 957
+182 151 944 957
+196 23 944 957
+198 160 918 957
+213 227 914 957
+215 109 948 957
+218 100 910 957
+229 18 898 957
+233 44 946 957
+237 61 939 957
+245 143 896 957
+1 123 735 958
+17 74 881 958
+40 185 789 958
+46 19 793 958
+53 120 95 958
+73 52 943 958
+99 148 918 958
+100 48 933 958
+136 50 930 958
+137 188 0 958
+174 235 422 958
+199 76 442 958
+205 14 313 958
+211 47 917 958
+215 25 948 958
+229 243 923 958
+234 64 899 958
+250 242 939 958
+9 5 650 959
+12 124 111 959
+36 52 0 959
+94 112 924 959
+98 222 881 959
+120 126 875 959
+131 4 936 959
+143 175 651 959
+148 206 357 959
+150 210 484 959
+170 144 609 959
+198 199 919 959
+200 215 0 959
+201 216 911 959
+207 250 471 959
+228 41 914 959
+238 207 952 959
+2 51 906 960
+48 44 794 960
+71 180 917 960
+106 127 766 960
+130 209 746 960
+139 213 833 960
+151 220 951 960
+167 22 708 960
+185 194 924 960
+197 21 934 960
+199 219 929 960
+220 89 945 960
+231 36 927 960
+238 253 955 960
+243 118 945 960
+244 52 723 960
+247 63 952 960
+34 69 922 961
+47 111 0 961
+67 160 839 961
+70 24 0 961
+112 188 44 961
+116 20 791 961
+127 178 200 961
+132 179 368 961
+169 100 853 961
+171 233 0 961
+183 193 943 961
+191 242 825 961
+210 227 0 961
+234 233 0 961
+245 254 157 961
+12 92 920 962
+45 25 882 962
+46 35 946 962
+57 11 438 962
+74 149 892 962
+127 187 190 962
+129 141 790 962
+131 2 950 962
+156 22 826 962
+159 18 928 962
+180 245 117 962
+197 153 958 962
+210 21 581 962
+211 24 590 962
+244 32 897 962
+249 227 884 962
+256 16 879 962
+18 24 0 963
+18 99 134 963
+23 35 896 963
+25 86 944 963
+49 41 688 963
+72 76 609 963
+111 95 0 963
+111 148 382 963
+128 73 937 963
+134 183 938 963
+139 22 832 963
+149 102 952 963
+159 48 932 963
+171 254 949 963
+173 100 547 963
+176 62 925 963
+181 129 235 963
+192 141 797 963
+194 215 0 963
+214 165 932 963
+231 101 926 963
+249 246 0 963
+251 18 951 963
+251 84 832 963
+13 209 936 964
+13 93 955 964
+23 232 896 964
+36 39 910 964
+55 43 910 964
+55 103 852 964
+58 14 307 964
+60 102 646 964
+62 34 791 964
+80 160 852 964
+122 124 930 964
+129 144 912 964
+142 111 887 964
+143 136 877 964
+149 173 918 964
+159 203 504 964
+160 19 950 964
+168 49 570 964
+171 256 931 964
+189 62 450 964
+197 86 944 964
+231 51 959 964
+249 248 885 964
+9 28 921 965
+13 38 907 965
+21 10 746 965
+24 120 955 965
+36 41 947 965
+51 119 568 965
+78 115 919 965
+85 153 920 965
+99 161 931 965
+126 142 955 965
+142 145 884 965
+150 233 0 965
+170 77 885 965
+173 110 228 965
+181 168 0 965
+183 243 903 965
+211 81 927 965
+25 106 962 966
+36 17 931 966
+43 154 943 966
+50 53 957 966
+54 104 900 966
+61 15 832 966
+106 102 0 966
+108 224 948 966
+120 40 42 966
+123 151 911 966
+134 213 0 966
+152 232 927 966
+157 206 769 966
+166 124 942 966
+170 165 917 966
+174 224 591 966
+199 200 922 966
+204 93 382 966
+218 22 688 966
+226 62 859 966
+240 247 945 966
+245 195 723 966
+245 209 920 966
+6 70 956 967
+23 33 876 967
+42 117 940 967
+64 77 951 967
+82 162 639 967
+88 108 798 967
+92 165 946 967
+97 181 943 967
+126 137 845 967
+127 181 781 967
+131 56 943 967
+133 202 904 967
+133 246 894 967
+134 217 955 967
+138 80 0 967
+145 108 949 967
+165 233 895 967
+169 165 0 967
+171 238 951 967
+178 210 936 967
+193 204 964 967
+206 175 540 967
+211 62 910 967
+219 93 202 967
+228 205 948 967
+249 100 795 967
+7 28 280 968
+14 45 940 968
+16 19 745 968
+42 15 893 968
+55 88 884 968
+68 164 938 968
+88 172 632 968
+91 206 922 968
+96 178 898 968
+112 119 53 968
+131 201 937 968
+145 177 910 968
+150 241 907 968
+151 229 965 968
+166 169 0 968
+168 185 865 968
+176 255 949 968
+181 189 931 968
+200 6 947 968
+206 48 943 968
+219 11 946 968
+233 239 575 968
+234 201 298 968
+238 243 935 968
+238 248 829 968
+239 47 0 968
+29 70 629 969
+29 21 880 969
+63 138 943 969
+69 153 949 969
+78 85 949 969
+97 162 393 969
+101 107 765 969
+109 110 0 969
+149 229 959 969
+155 217 0 969
+170 100 503 969
+171 207 754 969
+171 61 683 969
+178 213 863 969
+194 28 811 969
+222 235 0 969
+222 253 454 969
+223 81 358 969
+234 179 947 969
+237 159 947 969
+252 63 913 969
+4 175 933 970
+13 17 940 970
+23 230 773 970
+36 40 905 970
+60 39 680 970
+71 179 941 970
+75 96 392 970
+104 3 939 970
+113 192 938 970
+114 192 911 970
+135 209 938 970
+146 172 574 970
+150 108 962 970
+151 186 902 970
+157 221 941 970
+159 2 900 970
+165 184 547 970
+195 116 965 970
+197 154 962 970
+198 203 884 970
+200 86 929 970
+211 41 520 970
+218 48 942 970
+219 32 721 970
+226 21 946 970
+237 251 955 970
+254 30 760 970
+9 45 911 971
+11 138 101 971
+25 91 799 971
+29 86 409 971
+37 113 946 971
+45 106 929 971
+65 181 955 971
+68 161 911 971
+73 91 0 971
+89 169 913 971
+101 172 771 971
+126 141 952 971
+140 218 909 971
+151 201 934 971
+165 188 875 971
+165 248 883 971
+193 220 961 971
+200 204 913 971
+233 248 905 971
+238 62 0 971
+239 28 882 971
+10 169 961 972
+18 83 947 972
+19 109 916 972
+45 10 395 972
+50 6 935 972
+52 76 960 972
+65 83 899 972
+69 183 785 972
+79 130 887 972
+80 79 923 972
+84 180 957 972
+86 134 925 972
+100 61 574 972
+105 117 957 972
+106 127 966 972
+108 117 0 972
+118 153 871 972
+126 80 0 972
+136 223 924 972
+136 194 0 972
+147 191 877 972
+151 194 862 972
+167 218 0 972
+168 133 806 972
+171 184 650 972
+171 230 844 972
+182 243 868 972
+187 247 952 972
+191 33 914 972
+193 70 953 972
+199 121 943 972
+201 118 700 972
+207 243 959 972
+208 27 896 972
+215 236 964 972
+226 246 769 972
+239 16 922 972
+242 2 945 972
+6 10 961 973
+18 125 947 973
+21 44 891 973
+21 34 949 973
+31 154 650 973
+51 134 898 973
+54 39 27 973
+73 32 913 973
+78 190 950 973
+88 104 0 973
+105 34 958 973
+108 214 932 973
+132 212 959 973
+145 237 569 973
+153 83 935 973
+177 226 958 973
+178 151 923 973
+183 246 0 973
+188 186 702 973
+215 197 0 973
+215 28 898 973
+217 229 955 973
+5 10 934 974
+5 153 946 974
+16 89 955 974
+24 107 858 974
+36 84 734 974
+53 77 938 974
+55 104 0 974
+57 39 0 974
+59 120 635 974
+108 230 968 974
+135 250 969 974
+147 200 622 974
+157 224 936 974
+163 220 894 974
+174 138 909 974
+176 49 966 974
+195 142 948 974
+199 196 940 974
+214 235 574 974
+218 235 0 974
+240 184 725 974
+241 143 777 974
+249 185 860 974
+8 21 0 975
+29 247 953 975
+53 138 941 975
+56 114 876 975
+57 195 905 975
+90 19 919 975
+126 202 852 975
+132 194 0 975
+170 79 488 975
+170 179 934 975
+176 226 937 975
+176 13 608 975
+193 6 950 975
+207 206 716 975
+209 17 0 975
+210 4 934 975
+235 30 874 975
+18 36 948 976
+23 45 841 976
+25 126 781 976
+27 169 923 976
+30 44 843 976
+49 199 910 976
+50 223 858 976
+77 192 857 976
+92 229 963 976
+159 93 511 976
+166 3 961 976
+173 224 40 976
+185 248 890 976
+191 239 958 976
+198 220 909 976
+211 231 635 976
+221 251 927 976
+230 21 681 976
+244 34 725 976
+246 38 959 976
+17 85 599 977
+33 34 808 977
+34 162 753 977
+60 75 667 977
+67 209 920 977
+82 98 0 977
+88 34 858 977
+94 99 0 977
+106 36 966 977
+109 44 791 977
+113 96 916 977
+136 179 117 977
+147 229 479 977
+168 243 874 977
+239 111 913 977
+254 13 0 977
+4 212 235 978
+7 153 481 978
+19 87 976 978
+48 228 439 978
+58 59 0 978
+60 123 945 978
+74 86 506 978
+85 125 954 978
+101 177 465 978
+128 186 921 978
+136 222 976 978
+140 217 0 978
+146 189 820 978
+167 171 876 978
+174 222 57 978
+191 62 739 978
+207 159 952 978
+209 229 890 978
+221 61 865 978
+221 254 943 978
+222 93 824 978
+253 1 963 978
+8 136 977 979
+27 117 928 979
+34 134 969 979
+57 122 602 979
+80 202 915 979
+94 97 0 979
+112 52 938 979
+159 240 894 979
+164 176 887 979
+165 249 383 979
+207 13 0 979
+219 229 962 979
+227 235 679 979
+238 205 938 979
+239 230 934 979
+242 206 925 979
+5 76 678 980
+17 153 889 980
+51 8 478 980
+92 155 630 980
+110 162 855 980
+128 108 905 980
+164 168 954 980
+167 227 367 980
+188 201 823 980
+191 256 924 980
+206 196 0 980
+208 235 894 980
+222 235 979 980
+241 255 958 980
+244 116 744 980
+8 133 967 981
+24 121 946 981
+66 94 949 981
+68 88 929 981
+131 217 944 981
+140 206 595 981
+143 222 870 981
+196 93 935 981
+222 206 521 981
+228 47 0 981
+229 235 776 981
+237 184 707 981
+246 5 114 981
+13 50 762 982
+13 56 866 982
+13 127 971 982
+18 101 860 982
+21 27 521 982
+45 93 802 982
+63 84 568 982
+65 130 906 982
+69 135 641 982
+129 13 831 982
+130 143 277 982
+130 179 776 982
+151 179 858 982
+156 140 0 982
+161 175 0 982
+193 219 957 982
+194 208 873 982
+199 34 905 982
+203 93 377 982
+204 23 755 982
+215 14 952 982
+236 1 834 982
+239 42 847 982
+242 62 762 982
+248 250 959 982
+46 47 0 983
+54 12 965 983
+59 115 775 983
+75 76 925 983
+84 237 960 983
+98 238 632 983
+103 147 941 983
+106 99 796 983
+112 249 821 983
+116 72 733 983
+132 151 830 983
+137 147 968 983
+140 135 0 983
+146 102 964 983
+171 79 971 983
+171 205 716 983
+180 61 956 983
+188 135 0 983
+200 212 953 983
+208 16 0 983
+215 222 782 983
+227 5 914 983
+9 224 921 984
+10 93 899 984
+20 98 958 984
+25 153 763 984
+27 40 974 984
+36 145 947 984
+50 2 0 984
+57 201 40 984
+68 125 884 984
+71 132 977 984
+103 229 942 984
+104 167 978 984
+128 107 948 984
+136 229 893 984
+140 201 0 984
+187 14 969 984
+188 144 0 984
+195 38 910 984
+206 45 881 984
+219 86 900 984
+226 255 247 984
+227 248 876 984
+234 251 850 984
+6 121 880 985
+6 77 971 985
+7 34 955 985
+36 181 903 985
+41 121 942 985
+73 71 952 985
+119 188 0 985
+122 40 979 985
+139 60 961 985
+144 159 458 985
+146 241 330 985
+177 143 952 985
+192 67 329 985
+214 194 674 985
+217 194 285 985
+227 208 912 985
+233 21 923 985
+239 61 0 985
+239 27 748 985
+242 17 944 985
+3 151 964 986
+51 118 0 986
+65 158 923 986
+69 241 727 986
+70 76 0 986
+71 123 908 986
+71 172 914 986
+88 99 0 986
+91 140 0 986
+94 161 881 986
+116 113 938 986
+120 25 924 986
+128 100 301 986
+164 224 900 986
+177 132 984 986
+194 220 746 986
+206 16 968 986
+218 14 969 986
+222 45 0 986
+238 233 969 986
+249 191 980 986
+253 60 654 986
+256 43 978 986
+9 23 0 987
+14 6 513 987
+14 11 0 987
+41 87 903 987
+43 60 681 987
+44 34 944 987
+58 54 818 987
+84 218 947 987
+121 127 962 987
+123 183 977 987
+129 49 964 987
+130 148 308 987
+157 136 957 987
+164 221 584 987
+170 127 0 987
+187 67 747 987
+189 144 986 987
+196 53 932 987
+206 212 697 987
+219 230 400 987
+10 155 916 988
+15 93 0 988
+22 45 501 988
+30 99 499 988
+39 115 778 988
+43 97 961 988
+51 190 980 988
+67 148 638 988
+82 159 985 988
+82 167 906 988
+101 166 0 988
+103 104 0 988
+145 189 960 988
+157 146 965 988
+158 95 940 988
+172 246 930 988
+192 256 949 988
+197 87 976 988
+208 230 937 988
+210 212 0 988
+215 23 0 988
+219 21 878 988
+223 2 0 988
+225 223 854 988
+235 29 0 988
+242 1 941 988
+16 68 966 989
+17 18 967 989
+20 63 937 989
+24 166 906 989
+29 154 677 989
+43 174 961 989
+54 166 380 989
+63 75 573 989
+64 116 976 989
+69 245 799 989
+89 124 346 989
+94 96 890 989
+95 162 902 989
+98 67 957 989
+132 2 874 989
+152 209 0 989
+158 161 890 989
+162 67 849 989
+173 39 875 989
+176 236 909 989
+201 14 446 989
+210 179 725 989
+218 9 964 989
+232 255 304 989
+233 41 980 989
+239 235 0 989
+245 151 940 989
+248 44 943 989
+254 21 968 989
+29 107 866 990
+55 107 821 990
+56 70 892 990
+59 123 151 990
+60 34 889 990
+83 131 972 990
+113 162 0 990
+129 19 970 990
+131 148 973 990
+143 148 329 990
+150 249 613 990
+159 4 674 990
+174 167 931 990
+211 219 877 990
+213 175 961 990
+233 57 973 990
+242 179 964 990
+8 142 969 991
+20 42 956 991
+52 207 953 991
+69 148 956 991
+72 213 933 991
+83 210 967 991
+83 160 962 991
+84 169 944 991
+110 177 862 991
+119 186 889 991
+121 52 874 991
+126 91 472 991
+128 140 969 991
+128 180 889 991
+149 216 955 991
+163 248 873 991
+191 251 914 991
+194 11 970 991
+206 220 970 991
+208 28 802 991
+215 188 989 991
+219 154 888 991
+222 180 962 991
+240 26 935 991
+4 208 990 992
+8 92 857 992
+13 113 896 992
+28 33 979 992
+46 125 497 992
+56 34 0 992
+62 101 982 992
+67 144 743 992
+68 99 790 992
+83 238 974 992
+98 241 518 992
+107 117 804 992
+115 137 412 992
+168 211 974 992
+171 48 838 992
+193 17 925 992
+208 90 782 992
+217 250 970 992
+239 125 512 992
+243 246 0 992
+10 84 931 993
+24 255 840 993
+40 112 664 993
+71 149 934 993
+78 69 908 993
+82 104 600 993
+84 222 915 993
+96 187 733 993
+98 234 980 993
+108 184 672 993
+118 39 956 993
+128 170 0 993
+149 132 183 993
+164 241 845 993
+176 67 946 993
+182 229 973 993
+193 175 954 993
+199 59 152 993
+213 163 921 993
+217 200 815 993
+1 98 956 994
+16 156 973 994
+23 6 943 994
+40 249 808 994
+61 20 930 994
+140 204 0 994
+163 49 947 994
+164 240 714 994
+171 252 548 994
+200 233 938 994
+215 171 886 994
+232 35 808 994
+234 162 980 994
+234 247 0 994
+237 26 885 994
+254 256 0 994
+12 156 989 995
+12 82 986 995
+25 70 0 995
+56 209 871 995
+83 132 204 995
+129 255 342 995
+132 152 0 995
+132 216 850 995
+140 179 628 995
+158 151 975 995
+174 180 439 995
+198 50 926 995
+205 1 773 995
+210 198 912 995
+216 33 885 995
+226 205 798 995
+244 120 728 995
+255 127 955 995
+23 74 912 996
+34 133 910 996
+41 118 961 996
+62 1 816 996
+77 69 901 996
+78 2 903 996
+99 190 951 996
+109 44 993 996
+128 96 870 996
+134 245 943 996
+143 147 564 996
+154 84 929 996
+187 184 496 996
+199 25 445 996
+232 28 898 996
+254 63 991 996
+5 86 917 997
+8 151 958 997
+16 29 928 997
+21 55 747 997
+51 101 968 997
+59 119 131 997
+66 158 940 997
+71 151 208 997
+100 226 971 997
+115 165 959 997
+123 135 772 997
+138 205 977 997
+147 211 0 997
+163 227 865 997
+174 138 979 997
+195 175 976 997
+204 45 879 997
+209 22 887 997
+212 81 223 997
+213 195 891 997
+215 221 724 997
+219 11 974 997
+7 121 287 998
+9 19 917 998
+10 124 744 998
+31 27 0 998
+78 96 828 998
+87 146 809 998
+101 115 780 998
+103 136 952 998
+132 164 922 998
+148 209 968 998
+150 100 974 998
+174 176 0 998
+180 46 967 998
+183 139 0 998
+189 235 987 998
+192 252 829 998
+194 70 782 998
+209 194 735 998
+209 70 887 998
+210 220 874 998
+239 253 0 998
+6 117 941 999
+11 8 940 999
+23 208 842 999
+30 255 776 999
+31 28 443 999
+34 180 996 999
+42 39 438 999
+44 15 984 999
+63 60 917 999
+65 134 879 999
+104 238 780 999
+116 76 981 999
+138 188 772 999
+143 239 992 999
+160 93 908 999
+163 178 981 999
+174 188 142 999
+203 16 890 999
+243 78 979 999
+250 7 961 999
+106 74 972 1000
+42 108 906 1000
+65 70 898 1000
+80 218 901 1000
+80 161 889 1000
+105 151 974 1000
+154 136 978 1000
+75 117 877 1000
+177 176 932 1000
+190 162 750 1000
+202 224 0 1000
+164 180 0 1000
+169 216 989 1000
+237 206 941 1000
+226 247 973 1000
+234 58 483 1000
+196 51 829 1000
+9 221 784 1000
+221 45 0 1000
+231 10 990 1000
+236 46 913 1000
+56 23 921 1000
+243 60 979 1000
+203 25 923 1000
diff --git a/examples/tracker/in.track b/examples/tracker/in.track
index 01da9933be..36b221f072 100644
--- a/examples/tracker/in.track
+++ b/examples/tracker/in.track
@@ -11,7 +11,7 @@ mass 1 1.0
mass 2 1.0
velocity all create 2.0 87287 loop geom
-pair_style hybrid/overlay lj/cut 2.5 tracker
+pair_style hybrid/overlay lj/cut 2.5 tracker trackfix 1000 id1 id2 time/created time/broken time/total time/min 0.5
pair_coeff * * lj/cut 1.0 1.0 2.5
pair_coeff * * tracker 2.5
@@ -19,10 +19,9 @@ neighbor 0.3 bin
neigh_modify every 20 delay 0 check no
fix 1 all nve
-fix 2 all pair/tracker 1000 id1 id2 time/created time/broken time/total time/min 0.5
-fix 3 all ave/histo 1000 1 1000 0 6 30 f_2[5] mode vector kind local file lifetime_hist.dat
+fix 2 all ave/histo 1000 1 1000 0 6 30 f_trackfix[5] mode vector kind local file lifetime_hist.dat
-dump 1 all local 1000 contact_history.dat f_2[1] f_2[2] f_2[3] f_2[4]
+dump 1 all local 1000 contact_history.dat f_trackfix[1] f_trackfix[2] f_trackfix[3] f_trackfix[4]
dump_modify 1 header no
# compute 1 all property/local patom1 patom2
diff --git a/examples/tracker/lifetime_hist.dat b/examples/tracker/lifetime_hist.dat
index 002e269896..224aed6fe1 100644
--- a/examples/tracker/lifetime_hist.dat
+++ b/examples/tracker/lifetime_hist.dat
@@ -1,4 +1,4 @@
-# Histogrammed data for fix 3
+# Histogrammed data for fix 2
# TimeStep Number-of-bins Total-counts Missing-counts Min-value Max-value
# Bin Coord Count Count/Total
0 30 0 0 1e+20 -1e+20
@@ -32,34 +32,34 @@
28 5.5 0 0
29 5.7 0 0
30 5.9 0 0
-1000 30 8122 0 0.5 5
+1000 30 528 20285 1 1000
1 0.1 0 0
2 0.3 0 0
-3 0.5 910 0.112041
-4 0.7 1253 0.154272
-5 0.9 953 0.117336
-6 1.1 747 0.0919724
-7 1.3 559 0.0688254
-8 1.5 501 0.0616843
-9 1.7 421 0.0518345
-10 1.9 356 0.0438316
-11 2.1 300 0.0369367
-12 2.3 281 0.0345974
-13 2.5 242 0.0297956
-14 2.7 226 0.0278257
-15 2.9 175 0.0215464
-16 3.1 168 0.0206846
-17 3.3 162 0.0199458
-18 3.5 129 0.0158828
-19 3.7 151 0.0185915
-20 3.9 137 0.0168678
-21 4.1 98 0.012066
-22 4.3 104 0.0128047
-23 4.5 83 0.0102192
-24 4.7 77 0.00948042
-25 4.9 86 0.0105885
-26 5.1 3 0.000369367
+3 0.5 0 0
+4 0.7 0 0
+5 0.9 0 0
+6 1.1 17 0.032197
+7 1.3 0 0
+8 1.5 0 0
+9 1.7 0 0
+10 1.9 0 0
+11 2.1 51 0.0965909
+12 2.3 0 0
+13 2.5 0 0
+14 2.7 0 0
+15 2.9 0 0
+16 3.1 80 0.151515
+17 3.3 0 0
+18 3.5 0 0
+19 3.7 0 0
+20 3.9 0 0
+21 4.1 91 0.172348
+22 4.3 0 0
+23 4.5 0 0
+24 4.7 0 0
+25 4.9 0 0
+26 5.1 117 0.221591
27 5.3 0 0
28 5.5 0 0
29 5.7 0 0
-30 5.9 0 0
+30 5.9 172 0.325758
diff --git a/examples/tracker/log.29Aug24.tracker.g++.1 b/examples/tracker/log.29Aug24.tracker.g++.1
new file mode 100644
index 0000000000..80feeb462f
--- /dev/null
+++ b/examples/tracker/log.29Aug24.tracker.g++.1
@@ -0,0 +1,108 @@
+LAMMPS (29 Aug 2024 - Development - patch_29Aug2024-731-g5ce635757f)
+# 3d Lennard-Jones melt with tracking
+
+units lj
+atom_style atomic
+
+lattice fcc 0.8442
+Lattice spacing in x,y,z = 1.6795962 1.6795962 1.6795962
+region box block 0 4 0 4 0 4
+create_box 2 box
+Created orthogonal box = (0 0 0) to (6.7183848 6.7183848 6.7183848)
+ 1 by 1 by 1 MPI processor grid
+create_atoms 2 box
+Created 256 atoms
+ using lattice units in orthogonal box = (0 0 0) to (6.7183848 6.7183848 6.7183848)
+ create_atoms CPU = 0.000 seconds
+mass 1 1.0
+mass 2 1.0
+velocity all create 2.0 87287 loop geom
+
+pair_style hybrid/overlay lj/cut 2.5 tracker trackfix 1000 id1 id2 time/created time/broken time/total time/min 0.5
+pair_coeff * * lj/cut 1.0 1.0 2.5
+pair_coeff * * tracker 2.5
+
+neighbor 0.3 bin
+neigh_modify every 20 delay 0 check no
+
+fix 1 all nve
+fix 2 all ave/histo 1000 1 1000 0 6 30 f_trackfix[5] mode vector kind local file lifetime_hist.dat
+
+dump 1 all local 1000 contact_history.dat f_trackfix[1] f_trackfix[2] f_trackfix[3] f_trackfix[4]
+dump_modify 1 header no
+
+# compute 1 all property/local patom1 patom2
+# dump 2 all local 1 pairs.dat c_1[1] c_1[2]
+
+# dump 3 all atom 1 atoms.dat
+
+thermo 50
+run 1000 #0
+Generated 0 of 1 mixed pair_coeff terms from geometric mixing rule
+Neighbor list info ...
+ update: every = 20 steps, delay = 0 steps, check = no
+ max neighbors/atom: 2000, page size: 100000
+ master list distance cutoff = 2.8
+ ghost atom cutoff = 2.8
+ binsize = 1.4, bins = 5 5 5
+ 2 neighbor lists, perpetual/occasional/extra = 2 0 0
+ (1) pair lj/cut, perpetual
+ attributes: half, newton on
+ pair build: half/bin/atomonly/newton
+ stencil: half/bin/3d
+ bin: standard
+ (2) pair tracker, perpetual, copy from (1)
+ attributes: half, newton on
+ pair build: copy
+ stencil: none
+ bin: none
+Per MPI rank memory allocation (min/avg/max) = 8.679 | 8.679 | 8.679 Mbytes
+ Step Temp E_pair E_mol TotEng Press
+ 0 2 -6.7733681 0 -3.7850868 -4.5535126
+ 50 1.0540428 -5.3670859 0 -3.7921977 2.3386375
+ 100 1.0402713 -5.3493439 0 -3.7950323 2.4553748
+ 150 1.0570745 -5.3738961 0 -3.7944781 2.3767396
+ 200 1.0431846 -5.3518647 0 -3.7932002 2.5010135
+ 250 1.070121 -5.3902744 0 -3.791363 2.4908658
+ 300 1.0667723 -5.3866302 0 -3.7927224 2.3589344
+ 350 1.000601 -5.2859643 0 -3.7909257 2.9065274
+ 400 0.99256113 -5.2738812 0 -3.7908553 2.8595867
+ 450 1.0482542 -5.357452 0 -3.7912128 2.4707397
+ 500 1.0196176 -5.3123538 0 -3.7889017 2.7230338
+ 550 0.98274535 -5.2586303 0 -3.7902706 2.9156947
+ 600 1.0683914 -5.3863229 0 -3.789996 2.3002719
+ 650 1.0130779 -5.303917 0 -3.7902362 2.8726423
+ 700 1.0583333 -5.3737358 0 -3.792437 2.5770307
+ 750 0.98274506 -5.2612464 0 -3.792887 2.9447027
+ 800 1.0294191 -5.332001 0 -3.7939042 2.5293193
+ 850 0.99240027 -5.2735754 0 -3.7907899 2.7672711
+ 900 1.0293488 -5.3306241 0 -3.7926323 2.6054041
+ 950 0.97137182 -5.2424403 0 -3.7910742 3.129989
+ 1000 1.0009431 -5.2864286 0 -3.7908788 2.7536598
+Loop time of 0.286151 on 1 procs for 1000 steps with 256 atoms
+
+Performance: 1509690.552 tau/day, 3494.654 timesteps/s, 894.631 katom-step/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 | 0.21578 | 0.21578 | 0.21578 | 0.0 | 75.41
+Neigh | 0.020262 | 0.020262 | 0.020262 | 0.0 | 7.08
+Comm | 0.0051679 | 0.0051679 | 0.0051679 | 0.0 | 1.81
+Output | 0.021204 | 0.021204 | 0.021204 | 0.0 | 7.41
+Modify | 0.02307 | 0.02307 | 0.02307 | 0.0 | 8.06
+Other | | 0.0006654 | | | 0.23
+
+Nlocal: 256 ave 256 max 256 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: 9612 ave 9612 max 9612 min
+Histogram: 1 0 0 0 0 0 0 0 0 0
+
+Total # of neighbors = 9612
+Ave neighs/atom = 37.546875
+Neighbor list builds = 50
+Dangerous builds not checked
+Total wall time: 0:00:00
diff --git a/examples/tracker/log.8Apr21.tracker.g++.1 b/examples/tracker/log.8Apr21.tracker.g++.1
deleted file mode 100644
index e654558061..0000000000
--- a/examples/tracker/log.8Apr21.tracker.g++.1
+++ /dev/null
@@ -1,107 +0,0 @@
-LAMMPS (8 Apr 2021)
-# 3d Lennard-Jones melt with tracking
-
-units lj
-atom_style atomic
-
-lattice fcc 0.8442
-Lattice spacing in x,y,z = 1.6795962 1.6795962 1.6795962
-region box block 0 4 0 4 0 4
-create_box 2 box
-Created orthogonal box = (0.0000000 0.0000000 0.0000000) to (6.7183848 6.7183848 6.7183848)
- 1 by 1 by 1 MPI processor grid
-create_atoms 2 box
-Created 256 atoms
- create_atoms CPU = 0.001 seconds
-mass 1 1.0
-mass 2 1.0
-velocity all create 2.0 87287 loop geom
-
-pair_style hybrid/overlay lj/cut 2.5 tracker
-pair_coeff * * lj/cut 1.0 1.0 2.5
-pair_coeff * * tracker 2.5
-
-neighbor 0.3 bin
-neigh_modify every 20 delay 0 check no
-
-fix 1 all nve
-fix 2 all pair/tracker 1000 id1 id2 time/created time/broken time/total time/min 0.5
-fix 3 all ave/histo 1000 1 1000 0 6 30 f_2[5] mode vector kind local file lifetime_hist.dat
-
-dump 1 all local 1000 contact_history.dat f_2[1] f_2[2] f_2[3] f_2[4]
-dump_modify 1 header no
-
-# compute 1 all property/local patom1 patom2
-# dump 2 all local 1 pairs.dat c_1[1] c_1[2]
-
-# dump 3 all atom 1 atoms.dat
-
-thermo 50
-run 1000 #0
-Neighbor list info ...
- update every 20 steps, delay 0 steps, check no
- max neighbors/atom: 2000, page size: 100000
- master list distance cutoff = 2.8
- ghost atom cutoff = 2.8
- binsize = 1.4, bins = 5 5 5
- 2 neighbor lists, perpetual/occasional/extra = 2 0 0
- (1) pair lj/cut, perpetual
- attributes: half, newton on
- pair build: half/bin/atomonly/newton
- stencil: half/bin/3d
- bin: standard
- (2) pair tracker, perpetual
- attributes: half, newton on, history
- pair build: half/bin/atomonly/newton
- stencil: half/bin/3d
- bin: standard
-Per MPI rank memory allocation (min/avg/max) = 10.46 | 10.46 | 10.46 Mbytes
-Step Temp E_pair E_mol TotEng Press
- 0 2 -6.7733681 0 -3.7850868 -4.5535126
- 50 1.0540428 -5.3670859 0 -3.7921977 2.3386375
- 100 1.0402713 -5.3493439 0 -3.7950323 2.4553748
- 150 1.0570745 -5.3738961 0 -3.7944781 2.3767396
- 200 1.0431846 -5.3518647 0 -3.7932002 2.5010135
- 250 1.070121 -5.3902744 0 -3.791363 2.4908658
- 300 1.0667723 -5.3866302 0 -3.7927224 2.3589344
- 350 1.000601 -5.2859643 0 -3.7909257 2.9065274
- 400 0.99256113 -5.2738812 0 -3.7908553 2.8595867
- 450 1.0482542 -5.357452 0 -3.7912128 2.4707397
- 500 1.0196176 -5.3123538 0 -3.7889017 2.7230338
- 550 0.98274535 -5.2586303 0 -3.7902706 2.9156947
- 600 1.0683914 -5.3863229 0 -3.789996 2.3002719
- 650 1.0130779 -5.303917 0 -3.7902362 2.8726423
- 700 1.0583333 -5.3737358 0 -3.792437 2.5770307
- 750 0.98274506 -5.2612464 0 -3.792887 2.9447027
- 800 1.0294191 -5.332001 0 -3.7939042 2.5293193
- 850 0.99240027 -5.2735754 0 -3.7907899 2.7672711
- 900 1.0293488 -5.3306241 0 -3.7926323 2.6054041
- 950 0.97137182 -5.2424403 0 -3.7910742 3.129989
- 1000 1.0009431 -5.2864286 0 -3.7908788 2.7536598
-Loop time of 0.310363 on 1 procs for 1000 steps with 256 atoms
-
-Performance: 1391918.252 tau/day, 3222.033 timesteps/s
-100.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.22132 | 0.22132 | 0.22132 | 0.0 | 71.31
-Neigh | 0.03458 | 0.03458 | 0.03458 | 0.0 | 11.14
-Comm | 0.0087938 | 0.0087938 | 0.0087938 | 0.0 | 2.83
-Output | 0.014075 | 0.014075 | 0.014075 | 0.0 | 4.54
-Modify | 0.02818 | 0.02818 | 0.02818 | 0.0 | 9.08
-Other | | 0.003411 | | | 1.10
-
-Nlocal: 256.000 ave 256 max 256 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Nghost: 1327.00 ave 1327 max 1327 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-Neighs: 9612.00 ave 9612 max 9612 min
-Histogram: 1 0 0 0 0 0 0 0 0 0
-
-Total # of neighbors = 9612
-Ave neighs/atom = 37.546875
-Neighbor list builds = 50
-Dangerous builds not checked
-Total wall time: 0:00:00
diff --git a/fortran/lammps.f90 b/fortran/lammps.f90
index a2f28073e5..1cc6992c27 100644
--- a/fortran/lammps.f90
+++ b/fortran/lammps.f90
@@ -100,6 +100,7 @@ MODULE LIBLAMMPS
CONTAINS
PROCEDURE :: close => lmp_close
PROCEDURE :: error => lmp_error
+ PROCEDURE :: expand => lmp_expand
PROCEDURE :: file => lmp_file
PROCEDURE :: command => lmp_command
PROCEDURE :: commands_list => lmp_commands_list
@@ -410,6 +411,14 @@ MODULE LIBLAMMPS
TYPE(c_ptr), VALUE :: error_text
END SUBROUTINE lammps_error
+ FUNCTION lammps_expand(handle, line) BIND(C)
+ IMPORT :: c_ptr
+ IMPLICIT NONE
+ TYPE(c_ptr), INTENT(IN), VALUE :: handle
+ TYPE(c_ptr), INTENT(IN), VALUE :: line
+ TYPE(c_ptr) :: lammps_expand
+ END FUNCTION lammps_expand
+
SUBROUTINE lammps_file(handle, filename) BIND(C)
IMPORT :: c_ptr
IMPLICIT NONE
@@ -1107,10 +1116,24 @@ CONTAINS
CALL lammps_free(str)
END SUBROUTINE lmp_error
+ ! equivalent function to lammps_expand()
+ FUNCTION lmp_expand(self, line)
+ CLASS(lammps), INTENT(IN) :: self
+ CHARACTER(len=*), INTENT(IN) :: line
+ TYPE(c_ptr) :: str, res
+ CHARACTER(len=:), ALLOCATABLE :: lmp_expand
+
+ str = f2c_string(line)
+ res = lammps_expand(self%handle, str)
+ CALL lammps_free(str)
+ lmp_expand = c2f_string(res)
+ CALL lammps_free(res)
+ END FUNCTION lmp_expand
+
! equivalent function to lammps_file()
SUBROUTINE lmp_file(self, filename)
CLASS(lammps), INTENT(IN) :: self
- CHARACTER(len=*) :: filename
+ CHARACTER(len=*), INTENT(IN) :: filename
TYPE(c_ptr) :: str
str = f2c_string(filename)
@@ -1121,7 +1144,7 @@ CONTAINS
! equivalent function to lammps_command()
SUBROUTINE lmp_command(self, cmd)
CLASS(lammps), INTENT(IN) :: self
- CHARACTER(len=*) :: cmd
+ CHARACTER(len=*), INTENT(IN) :: cmd
TYPE(c_ptr) :: str
str = f2c_string(cmd)
@@ -1155,7 +1178,7 @@ CONTAINS
! equivalent function to lammps_commands_string()
SUBROUTINE lmp_commands_string(self, str)
CLASS(lammps), INTENT(IN) :: self
- CHARACTER(len=*) :: str
+ CHARACTER(len=*), INTENT(IN) :: str
TYPE(c_ptr) :: tmp
tmp = f2c_string(str)
@@ -1173,7 +1196,7 @@ CONTAINS
! equivalent function to lammps_get_thermo
REAL(c_double) FUNCTION lmp_get_thermo(self,name)
CLASS(lammps), INTENT(IN) :: self
- CHARACTER(LEN=*) :: name
+ CHARACTER(LEN=*), INTENT(IN) :: name
TYPE(c_ptr) :: Cname
Cname = f2c_string(name)
@@ -1185,7 +1208,7 @@ CONTAINS
FUNCTION lmp_last_thermo(self,what,index) RESULT(thermo_data)
CLASS(lammps), INTENT(IN), TARGET :: self
CHARACTER(LEN=*), INTENT(IN) :: what
- INTEGER :: index
+ INTEGER, INTENT(IN) :: index
INTEGER(c_int) :: idx
TYPE(lammps_data) :: thermo_data, type_data
INTEGER(c_int) :: datatype
diff --git a/lib/h5md/Makefile.h5cc b/lib/h5md/Makefile.h5cc
index 9feed2d74e..d3c3075a45 100644
--- a/lib/h5md/Makefile.h5cc
+++ b/lib/h5md/Makefile.h5cc
@@ -4,7 +4,8 @@ CC=h5cc
# -DH5_NO_DEPRECATED_SYMBOLS is required here to ensure we are using
# the v1.8 API when HDF5 is configured to default to using the v1.6 API.
-CFLAGS=-D_DEFAULT_SOURCE -O2 -DH5_NO_DEPRECATED_SYMBOLS -Wall -fPIC
+#CFLAGS=-D_DEFAULT_SOURCE -O2 -DH5_NO_DEPRECATED_SYMBOLS -Wall -fPIC
+CFLAGS=-D_DEFAULT_SOURCE -O2 -Wall -fPIC
HDF5_PATH=/usr
INC=-I include
AR=ar
diff --git a/lib/kokkos/CHANGELOG.md b/lib/kokkos/CHANGELOG.md
index 4fbc900297..7b1d69e566 100644
--- a/lib/kokkos/CHANGELOG.md
+++ b/lib/kokkos/CHANGELOG.md
@@ -1,12 +1,103 @@
# CHANGELOG
+## [4.4.01](https://github.com/kokkos/kokkos/tree/4.4.01)
+[Full Changelog](https://github.com/kokkos/kokkos/compare/4.0.00...4.4.01)
+
+### Features:
+* Introduce new SequentialHostInit view allocation property [\#7229](https://github.com/kokkos/kokkos/pull/7229)
+
+### Backend and Architecture Enhancements:
+
+#### CUDA:
+* Experimental support for unified memory mode (intended for Grace-Hopper etc.) [\#6823](https://github.com/kokkos/kokkos/pull/6823)
+
+### Bug Fixes
+* OpenMP: Fix issue related to the visibility of an internal symbol with shared libraries that affected `ScatterView` in particular [\#7284](https://github.com/kokkos/kokkos/pull/7284)
+* Fix implicit copy assignment operators in few AVX2 masks being deleted [#7296](https://github.com/kokkos/kokkos/pull/7296)
+
+## [4.4.00](https://github.com/kokkos/kokkos/tree/4.4.00)
+[Full Changelog](https://github.com/kokkos/kokkos/compare/4.3.01...4.4.00)
+
+### Features:
+* Add `Kokkos::View` conversions from and to [`std::mdspan`](https://en.cppreference.com/w/cpp/container/mdspan) [\#6830](https://github.com/kokkos/kokkos/pull/6830) [\#7069](https://github.com/kokkos/kokkos/pull/7069)
+
+### Backend and Architecture Enhancements:
+
+#### CUDA:
+* `nvcc_wrapper`: Adding ability to process `--disable-warnings` flag [\#6936](https://github.com/kokkos/kokkos/issues/6936)
+* Use recommended/max team size functions in Cuda ParallelFor and Reduce constructors [\#6891](https://github.com/kokkos/kokkos/issues/6891)
+* Improve compile-times when building with `Kokkos_ENABLE_DEBUG_BOUNDS_CHECK` in Cuda [\#7013](https://github.com/kokkos/kokkos/pull/7013)
+
+#### HIP:
+* Use HIP builtin atomics [\#6882](https://github.com/kokkos/kokkos/pull/6882) [\#7000](https://github.com/kokkos/kokkos/pull/7000)
+* Enable user-specified compiler and linker flags for AMD GPUs [\#7127](https://github.com/kokkos/kokkos/pull/7127)
+
+#### SYCL:
+* Add support for Graphs [\#6912](https://github.com/kokkos/kokkos/pull/6912)
+* Fix multi-GPU support [\#6887](https://github.com/kokkos/kokkos/pull/6887)
+* Improve performance of reduction and scan operations [\#6562](https://github.com/kokkos/kokkos/pull/6562), [\#6750](https://github.com/kokkos/kokkos/pull/6750)
+* Fix lock for guarding scratch space in `TeamPolicy` `parallel_reduce` [\#6988](https://github.com/kokkos/kokkos/pull/6988)
+* Include submission command queue property information into `SYCL::print_configuration()` [\#7004](https://github.com/kokkos/kokkos/pull/7004)
+
+#### OpenACC:
+* Make `TeamPolicy` `parallel_for` execute on the correct async queue [\#7012](https://github.com/kokkos/kokkos/pull/7012)
+
+#### OpenMPTarget:
+* Honor user requested loop ordering in `MDRange` policy [\#6925](https://github.com/kokkos/kokkos/pull/6925)
+* Prevent data races by guarding the scratch space used in `parallel_scan` [\#6998](https://github.com/kokkos/kokkos/pull/6998)
+
+#### HPX:
+* Workaround issue with template argument deduction to support compilation with NVCC [\#7015](https://github.com/kokkos/kokkos/pull/7015)
+
+### General Enhancements
+* Improve performance of view copies in host parallel regions [\#6730](https://github.com/kokkos/kokkos/pull/6730)
+* Harmonize convertibility rules of `Kokkos::RandomAccessIterator` with `View`s [\#6929](https://github.com/kokkos/kokkos/pull/6929)
+* Add a check precondition non-overlapping ranges for the `adjacent_difference` algorithm in debug mode [\#6922](https://github.com/kokkos/kokkos/pull/6922)
+* Add deduction guides for `TeamPolicy` [\#7030](https://github.com/kokkos/kokkos/pull/7030)
+* SIMD: Allow flexible vector width for 32 bit types [\#6802](https://github.com/kokkos/kokkos/pull/6802)
+* Updates for `Kokkos::Array`: add `kokkos_swap(Array)` specialization [\#6943](https://github.com/kokkos/kokkos/pull/6943), add `Kokkos::to_array` [\#6375](https://github.com/kokkos/kokkos/pull/6375), make `Kokkos::Array` equality-comparable [\#7148](https://github.com/kokkos/kokkos/pull/7148)
+* Structured binding support for `Kokkos::complex` [\#7040](https://github.com/kokkos/kokkos/pull/7040)
+
+### Build System Changes
+* Do not require OpenMP support for languages other than CXX [\#6965](https://github.com/kokkos/kokkos/pull/6965)
+* Update Intel GPU architectures in Makefile [\#6895](https://github.com/kokkos/kokkos/pull/6895)
+* Fix use of OpenMP with Cuda or HIP as compile language [\#6972](https://github.com/kokkos/kokkos/pull/6972)
+* Define and enforce new minimum compiler versions for C++20 support [\#7128](https://github.com/kokkos/kokkos/pull/7128), [\#7123](https://github.com/kokkos/kokkos/pull/7123)
+* Add nvidia Grace CPU architecture: `Kokkos_ARCH_ARMV9_GRACE` [\#7158](https://github.com/kokkos/kokkos/pull/7158)
+* Fix Makefile.kokkos for Threads [\#6896](https://github.com/kokkos/kokkos/pull/6896)
+* Remove support for NVHPC as CUDA device compiler [\#6987](https://github.com/kokkos/kokkos/pull/6987)
+* Fix using CUDAToolkit for CMake 3.28.4 and higher [\#7062](https://github.com/kokkos/kokkos/pull/7062)
+
+### Incompatibilities (i.e. breaking changes)
+* Drop `Kokkos::Array` special treatment in `View`s [\#6906](https://github.com/kokkos/kokkos/pull/6906)
+* Drop `Experimental::RawMemoryAllocationFailure` [\#7145](https://github.com/kokkos/kokkos/pull/7145)
+
+### Deprecations
+* Remove `Experimental::LayoutTiled` class template and deprecate `is_layouttiled` trait [\#6907](https://github.com/kokkos/kokkos/pull/6907)
+* Deprecate `Kokkos::layout_iterate_type_selector` [\#7076](https://github.com/kokkos/kokkos/pull/7076)
+* Deprecate specialization of `Kokkos::pair` for a single element [\#6947](https://github.com/kokkos/kokkos/pull/6947)
+* Deprecate `deep_copy` of `UnorderedMap` of different size [\#6812](https://github.com/kokkos/kokkos/pull/6812)
+* Deprecate trailing `Proxy` template argument of `Kokkos::Array` [\#6934](https://github.com/kokkos/kokkos/pull/6934)
+* Deprecate implicit conversions of integers to `ChunkSize` [\#7151](https://github.com/kokkos/kokkos/pull/7151)
+* Deprecate implicit conversions to execution spaces [\#7156](https://github.com/kokkos/kokkos/pull/7156)
+
+### Bug Fixes
+* Do not return a copy of the input functor in `Experimental::for_each` [\#6910](https://github.com/kokkos/kokkos/pull/6910)
+* Fix `realloc` on views of non-default constructible element types [\#6993](https://github.com/kokkos/kokkos/pull/6993)
+* Fix undefined behavior in `View` initialization or fill with zeros [\#7014](https://github.com/kokkos/kokkos/pull/7014)
+* Fix `sort_by_key` on host execution spaces when building with NVCC [\#7059](https://github.com/kokkos/kokkos/pull/7059)
+* Fix using shared libraries and -fvisibility=hidden [\#7065](https://github.com/kokkos/kokkos/pull/7065)
+* Fix view reference counting when functor copy constructor throws in parallel dispatch [\#6289](https://github.com/kokkos/kokkos/pull/6289)
+* Fix `initialize(InitializationSetting)` for handling `print_configuration` setting [\#7098](https://github.com/kokkos/kokkos/pull/7098)
+* Thread safety fixes for the Serial and OpenMP backend [\#7080](https://github.com/kokkos/kokkos/pull/7080), [\#6151](https://github.com/kokkos/kokkos/pull/6151)
+
## [4.3.01](https://github.com/kokkos/kokkos/tree/4.3.01)
[Full Changelog](https://github.com/kokkos/kokkos/compare/4.3.00...4.3.01)
### Backend and Architecture Enhancements:
#### HIP:
-* MI300 support unified memory support [\#6877](https://github.com/kokkos/kokkos/pull/6877)
+* MI300 support unified memory [\#6877](https://github.com/kokkos/kokkos/pull/6877)
### Bug Fixes
* Serial: Use the provided execution space instance in TeamPolicy [\#6951](https://github.com/kokkos/kokkos/pull/6951)
diff --git a/lib/kokkos/CITATION.cff b/lib/kokkos/CITATION.cff
new file mode 100644
index 0000000000..28c674c451
--- /dev/null
+++ b/lib/kokkos/CITATION.cff
@@ -0,0 +1,65 @@
+cff-version: 1.2.0
+title: Kokkos
+message: >-
+ If you use this software, please cite the overview paper
+type: software
+authors:
+ - name: The Kokkos authors
+ website: https://kokkos.org/community/team/
+identifiers:
+ - type: url
+ website: https://kokkos.org/kokkos-core-wiki/citation.html
+repository-code: 'https://github.com/kokkos/kokkos'
+url: 'https://kokkos.org/'
+license: Apache-2.0
+preferred-citation:
+ type: article
+ authors:
+ - given-names: Christian R.
+ family-names: Trott
+ - given-names: Damien
+ family-names: Lebrun-Grandié
+ - given-names: Daniel
+ family-names: Arndt
+ - family-names: Ciesko
+ given-names: Jan
+ - given-names: Vinh
+ family-names: Dang
+ - family-names: Ellingwood
+ given-names: Nathan
+ - given-names: Rahulkumar
+ family-names: Gayatri
+ - given-names: Evan
+ family-names: Harvey
+ - given-names: Daisy S.
+ family-names: Hollman
+ - given-names: Dan
+ family-names: Ibanez
+ - given-names: Nevin
+ family-names: Liber
+ - given-names: Jonathan
+ family-names: Madsen
+ - given-names: Jeff
+ family-names: Miles
+ - given-names: David
+ family-names: Poliakoff
+ - given-names: Amy
+ family-names: Powell
+ - given-names: Sivasankaran
+ family-names: Rajamanickam
+ - given-names: Mikael
+ family-names: Simberg
+ - given-names: Dan
+ family-names: Sunderland
+ - given-names: Bruno
+ family-names: Turcksin
+ - given-names: Jeremiah
+ family-names: Wilke
+ doi: 10.1109/TPDS.2021.3097283
+ journal: IEEE Transactions on Parallel and Distributed Systems
+ start: 805
+ end: 817
+ title: "Kokkos 3: Programming Model Extensions for the Exascale Era"
+ volume: 33
+ issue: 4
+ year: 2022
diff --git a/lib/kokkos/CMakeLists.txt b/lib/kokkos/CMakeLists.txt
index 76f2183db8..736cbac218 100644
--- a/lib/kokkos/CMakeLists.txt
+++ b/lib/kokkos/CMakeLists.txt
@@ -150,7 +150,7 @@ ENDIF()
set(Kokkos_VERSION_MAJOR 4)
-set(Kokkos_VERSION_MINOR 3)
+set(Kokkos_VERSION_MINOR 4)
set(Kokkos_VERSION_PATCH 1)
set(Kokkos_VERSION "${Kokkos_VERSION_MAJOR}.${Kokkos_VERSION_MINOR}.${Kokkos_VERSION_PATCH}")
message(STATUS "Kokkos version: ${Kokkos_VERSION}")
diff --git a/lib/kokkos/Makefile.kokkos b/lib/kokkos/Makefile.kokkos
index 6fdddd9a53..6b627dcc36 100644
--- a/lib/kokkos/Makefile.kokkos
+++ b/lib/kokkos/Makefile.kokkos
@@ -11,7 +11,7 @@ CXXFLAGS += $(SHFLAGS)
endif
KOKKOS_VERSION_MAJOR = 4
-KOKKOS_VERSION_MINOR = 3
+KOKKOS_VERSION_MINOR = 4
KOKKOS_VERSION_PATCH = 1
KOKKOS_VERSION = $(shell echo $(KOKKOS_VERSION_MAJOR)*10000+$(KOKKOS_VERSION_MINOR)*100+$(KOKKOS_VERSION_PATCH) | bc)
@@ -21,11 +21,11 @@ KOKKOS_DEVICES ?= "OpenMP"
# Options:
# Intel: KNC,KNL,SNB,HSW,BDW,SKL,SKX,ICL,ICX,SPR
# NVIDIA: Kepler,Kepler30,Kepler32,Kepler35,Kepler37,Maxwell,Maxwell50,Maxwell52,Maxwell53,Pascal60,Pascal61,Volta70,Volta72,Turing75,Ampere80,Ampere86,Ada89,Hopper90
-# ARM: ARMv80,ARMv81,ARMv8-ThunderX,ARMv8-TX2,A64FX
+# ARM: ARMv80,ARMv81,ARMv8-ThunderX,ARMv8-TX2,A64FX,ARMv9-Grace
# IBM: Power8,Power9
# AMD-GPUS: AMD_GFX906,AMD_GFX908,AMD_GFX90A,AMD_GFX940,AMD_GFX942,AMD_GFX1030,AMD_GFX1100,AMD_GFX1103
# AMD-CPUS: AMDAVX,Zen,Zen2,Zen3
-# Intel-GPUs: Gen9,Gen11,Gen12LP,DG1,XeHP,PVC
+# Intel-GPUs: Intel_Gen,Intel_Gen9,Intel_Gen11,Intel_Gen12LP,Intel_DG1,Intel_XeHP,Intel_PVC
KOKKOS_ARCH ?= ""
# Options: yes,no
KOKKOS_DEBUG ?= "no"
@@ -41,7 +41,7 @@ KOKKOS_STANDALONE_CMAKE ?= "no"
# Default settings specific options.
# Options: force_uvm,use_ldg,rdc,enable_lambda,enable_constexpr,disable_malloc_async
-KOKKOS_CUDA_OPTIONS ?= "enable_lambda"
+KOKKOS_CUDA_OPTIONS ?= "disable_malloc_async"
# Options: rdc
KOKKOS_HIP_OPTIONS ?= ""
@@ -328,12 +328,43 @@ KOKKOS_INTERNAL_USE_ARCH_ICL := $(call kokkos_has_string,$(KOKKOS_ARCH),ICL)
KOKKOS_INTERNAL_USE_ARCH_ICX := $(call kokkos_has_string,$(KOKKOS_ARCH),ICX)
KOKKOS_INTERNAL_USE_ARCH_SPR := $(call kokkos_has_string,$(KOKKOS_ARCH),SPR)
-KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN := $(call kokkos_has_string,$(KOKKOS_ARCH),IntelGen)
+# Traditionally, we supported, e.g., IntelGen9 instead of Intel_Gen9. The latter
+# matches the CMake option but we also accept the former for backward-compatibility.
KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN9 := $(call kokkos_has_string,$(KOKKOS_ARCH),IntelGen9)
+ifeq ($(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN9), 0)
+ KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN9 := $(call kokkos_has_string,$(KOKKOS_ARCH),Intel_Gen9)
+endif
KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN11 := $(call kokkos_has_string,$(KOKKOS_ARCH),IntelGen11)
+ifeq ($(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN11), 0)
+ KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN11 := $(call kokkos_has_string,$(KOKKOS_ARCH),Intel_Gen11)
+endif
KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN12LP := $(call kokkos_has_string,$(KOKKOS_ARCH),IntelGen12LP)
+ifeq ($(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN12LP), 0)
+ KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN12LP := $(call kokkos_has_string,$(KOKKOS_ARCH),Intel_Gen12LP)
+endif
+KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN := $(call kokkos_has_string,$(KOKKOS_ARCH),IntelGen9)
+ifeq ($(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN9), 0)
+ KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN9 := $(call kokkos_has_string,$(KOKKOS_ARCH),Intel_Gen9)
+endif
+KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN_SET := $(shell expr $(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN9) \
+ + $(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN11) \
+ + $(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN12LP))
+ifeq ($(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN_SET), 0)
+ KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN := $(call kokkos_has_string,$(KOKKOS_ARCH),IntelGen)
+ ifeq ($(KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN), 0)
+ KOKKOS_INTERNAL_USE_ARCH_INTEL_GEN := $(call kokkos_has_string,$(KOKKOS_ARCH),Intel_Gen)
+ endif
+endif
KOKKOS_INTERNAL_USE_ARCH_INTEL_DG1 := $(call kokkos_has_string,$(KOKKOS_ARCH),IntelDG1)
+ifeq ($(KOKKOS_INTERNAL_USE_ARCH_INTEL_DG1), 0)
+ KOKKOS_INTERNAL_USE_ARCH_INTEL_DG1 := $(call kokkos_has_string,$(KOKKOS_ARCH),Intel_DG1)
+endif
KOKKOS_INTERNAL_USE_ARCH_INTEL_XEHP := $(call kokkos_has_string,$(KOKKOS_ARCH),IntelXeHP)
+ifeq ($(KOKKOS_INTERNAL_USE_ARCH_INTEL_XEHP), 0)
+ KOKKOS_INTERNAL_USE_ARCH_INTEL_XEHP := $(call kokkos_has_string,$(KOKKOS_ARCH),Intel_XeHP)
+endif
+# Traditionally the architecture was called PVC instead of Intel_PVC. This
+# version makes us accept IntelPVC and Intel_PVC as well.
KOKKOS_INTERNAL_USE_ARCH_INTEL_PVC := $(call kokkos_has_string,$(KOKKOS_ARCH),PVC)
# NVIDIA based.
@@ -394,7 +425,8 @@ KOKKOS_INTERNAL_USE_ARCH_ARMV81 := $(call kokkos_has_string,$(KOKKOS_ARCH),ARMv8
KOKKOS_INTERNAL_USE_ARCH_ARMV8_THUNDERX := $(call kokkos_has_string,$(KOKKOS_ARCH),ARMv8-ThunderX)
KOKKOS_INTERNAL_USE_ARCH_ARMV8_THUNDERX2 := $(call kokkos_has_string,$(KOKKOS_ARCH),ARMv8-TX2)
KOKKOS_INTERNAL_USE_ARCH_A64FX := $(call kokkos_has_string,$(KOKKOS_ARCH),A64FX)
-KOKKOS_INTERNAL_USE_ARCH_ARM := $(strip $(shell echo $(KOKKOS_INTERNAL_USE_ARCH_ARMV80)+$(KOKKOS_INTERNAL_USE_ARCH_ARMV81)+$(KOKKOS_INTERNAL_USE_ARCH_ARMV8_THUNDERX)+$(KOKKOS_INTERNAL_USE_ARCH_ARMV8_THUNDERX2)+$(KOKKOS_INTERNAL_USE_ARCH_A64FX) | bc))
+KOKKOS_INTERNAL_USE_ARCH_ARMV9_GRACE := $(call kokkos_has_string,$(KOKKOS_ARCH),ARMv9-Grace)
+KOKKOS_INTERNAL_USE_ARCH_ARM := $(strip $(shell echo $(KOKKOS_INTERNAL_USE_ARCH_ARMV80)+$(KOKKOS_INTERNAL_USE_ARCH_ARMV81)+$(KOKKOS_INTERNAL_USE_ARCH_ARMV8_THUNDERX)+$(KOKKOS_INTERNAL_USE_ARCH_ARMV8_THUNDERX2)+$(KOKKOS_INTERNAL_USE_ARCH_A64FX)+$(KOKKOS_INTERNAL_USE_ARCH_ARMV9_GRACE) | bc))
# IBM based.
KOKKOS_INTERNAL_USE_ARCH_POWER8 := $(call kokkos_has_string,$(KOKKOS_ARCH),Power8)
@@ -758,6 +790,14 @@ ifeq ($(KOKKOS_INTERNAL_USE_ARCH_A64FX), 1)
endif
endif
+ifeq ($(KOKKOS_INTERNAL_USE_ARCH_ARMV9_GRACE), 1)
+ tmp := $(call kokkos_append_header,"$H""define KOKKOS_ARCH_ARMV9_GRACE")
+ tmp := $(call kokkos_append_header,"$H""define KOKKOS_ARCH_ARM_NEON")
+
+ KOKKOS_CXXFLAGS += -mcpu=neoverse-v2 -msve-vector-bits=128
+ KOKKOS_LDFLAGS += -mcpu=neoverse-v2 -msve-vector-bits=128
+endif
+
ifeq ($(KOKKOS_INTERNAL_USE_ARCH_ZEN), 1)
tmp := $(call kokkos_append_header,"$H""define KOKKOS_ARCH_AMD_ZEN")
tmp := $(call kokkos_append_header,"$H""define KOKKOS_ARCH_AVX2")
@@ -1216,6 +1256,8 @@ ifeq ($(KOKKOS_INTERNAL_DISABLE_BUNDLED_MDSPAN), 0)
endif
tmp := $(call kokkos_append_header,"$H""define KOKKOS_ENABLE_IMPL_MDSPAN")
+tmp := $(call kokkos_append_header,"$H""define KOKKOS_ENABLE_IMPL_REF_COUNT_BRANCH_UNLIKELY")
+
KOKKOS_INTERNAL_LS_CONFIG := $(shell ls KokkosCore_config.h 2>&1)
ifeq ($(KOKKOS_INTERNAL_LS_CONFIG), KokkosCore_config.h)
diff --git a/lib/kokkos/Makefile.targets b/lib/kokkos/Makefile.targets
index e6900a822a..e8e429e027 100644
--- a/lib/kokkos/Makefile.targets
+++ b/lib/kokkos/Makefile.targets
@@ -81,7 +81,7 @@ ifeq ($(KOKKOS_INTERNAL_USE_THREADS), 1)
Kokkos_Threads_Instance.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/Threads/Kokkos_Threads_Instance.cpp
$(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/Threads/Kokkos_Threads_Instance.cpp
Kokkos_Threads_Spinwait.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/Threads/Kokkos_Threads_Spinwait.cpp
- $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/Threads/Kokkos_Spinwait.cpp
+ $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/Threads/Kokkos_Threads_Spinwait.cpp
endif
ifeq ($(KOKKOS_INTERNAL_USE_OPENMP), 1)
diff --git a/lib/kokkos/README.md b/lib/kokkos/README.md
index 19793bb82d..c8c6f8f7cf 100644
--- a/lib/kokkos/README.md
+++ b/lib/kokkos/README.md
@@ -1,4 +1,4 @@
-
+[](https://kokkos.org)
# Kokkos: Core Libraries
@@ -10,43 +10,66 @@ hierarchies and multiple types of execution resources. It currently can use
CUDA, HIP, SYCL, HPX, OpenMP and C++ threads as backend programming models with several other
backends in development.
-**Kokkos Core is part of the Kokkos C++ Performance Portability Programming EcoSystem.**
+**Kokkos Core is part of the [Kokkos C++ Performance Portability Programming Ecosystem](https://kokkos.org/about/abstract/).**
-For the complete documentation, click below:
+Kokkos is a [Linux Foundation](https://linuxfoundation.org) project.
-# [kokkos.github.io/kokkos-core-wiki](https://kokkos.github.io/kokkos-core-wiki)
-
-# Learning about Kokkos
+## Learning about Kokkos
To start learning about Kokkos:
-- [Kokkos Lectures](https://kokkos.github.io/kokkos-core-wiki/videolectures.html): they contain a mix of lecture videos and hands-on exercises covering all the important Kokkos Ecosystem capabilities.
+- [Kokkos Lectures](https://kokkos.org/kokkos-core-wiki/videolectures.html): they contain a mix of lecture videos and hands-on exercises covering all the important capabilities.
-- [Programming guide](https://kokkos.github.io/kokkos-core-wiki/programmingguide.html): contains in "narrative" form a technical description of the programming model, machine model, and the main building blocks like the Views and parallel dispatch.
+- [Programming guide](https://kokkos.org/kokkos-core-wiki/programmingguide.html): contains in "narrative" form a technical description of the programming model, machine model, and the main building blocks like the Views and parallel dispatch.
-- [API reference](https://kokkos.github.io/kokkos-core-wiki/): organized by category, i.e., [core](https://kokkos.github.io/kokkos-core-wiki/API/core-index.html), [algorithms](https://kokkos.github.io/kokkos-core-wiki/API/algorithms-index.html) and [containers](https://kokkos.github.io/kokkos-core-wiki/API/containers-index.html) or, if you prefer, in [alphabetical order](https://kokkos.github.io/kokkos-core-wiki/API/alphabetical.html).
+- [API reference](https://kokkos.org/kokkos-core-wiki/): organized by category, i.e., [core](https://kokkos.org/kokkos-core-wiki/API/core-index.html), [algorithms](https://kokkos.org/kokkos-core-wiki/API/algorithms-index.html) and [containers](https://kokkos.org/kokkos-core-wiki/API/containers-index.html) or, if you prefer, in [alphabetical order](https://kokkos.org/kokkos-core-wiki/API/alphabetical.html).
-- [Use cases and Examples](https://kokkos.github.io/kokkos-core-wiki/usecases.html): a series of examples ranging from how to use Kokkos with MPI to Fortran interoperability.
+- [Use cases and Examples](https://kokkos.org/kokkos-core-wiki/usecases.html): a serie of examples ranging from how to use Kokkos with MPI to Fortran interoperability.
+
+## Obtaining Kokkos
+
+The latest release of Kokkos can be obtained from the [GitHub releases page](https://github.com/kokkos/kokkos/releases/latest).
+
+The current release is [4.3.01](https://github.com/kokkos/kokkos/releases/tag/4.3.01).
+
+```bash
+curl -OJ -L https://github.com/kokkos/kokkos/archive/refs/tags/4.3.01.tar.gz
+# Or with wget
+wget https://github.com/kokkos/kokkos/archive/refs/tags/4.3.01.tar.gz
+```
+
+To clone the latest development version of Kokkos from GitHub:
+
+```bash
+git clone -b develop https://github.com/kokkos/kokkos.git
+```
+
+### Building Kokkos
+
+To build Kokkos, you will need to have a C++ compiler that supports C++17 or later.
+All requirements including minimum and primary tested compiler versions can be found [here](https://kokkos.org/kokkos-core-wiki/requirements.html).
+
+Building and installation instructions are described [here](https://kokkos.org/kokkos-core-wiki/building.html).
+
+You can also install Kokkos using [Spack](https://spack.io/): `spack install kokkos`. [Available configuration options](https://packages.spack.io/package.html?name=kokkos) can be displayed using `spack info kokkos`.
+
+## For the complete documentation: [kokkos.org/kokkos-core-wiki/](https://kokkos.org/kokkos-core-wiki/)
+
+## Support
For questions find us on Slack: https://kokkosteam.slack.com or open a GitHub issue.
For non-public questions send an email to: *crtrott(at)sandia.gov*
-# Contributing to Kokkos
+## Contributing
-Please see [this page](https://kokkos.github.io/kokkos-core-wiki/contributing.html) for details on how to contribute.
+Please see [this page](https://kokkos.org/kokkos-core-wiki/contributing.html) for details on how to contribute.
-# Requirements, Building and Installing
+## Citing Kokkos
-All requirements including minimum and primary tested compiler versions can be found [here](https://kokkos.github.io/kokkos-core-wiki/requirements.html).
+Please see the [following page](https://kokkos.org/kokkos-core-wiki/citation.html).
-Building and installation instructions are described [here](https://kokkos.github.io/kokkos-core-wiki/building.html).
-
-# Citing Kokkos
-
-Please see the [following page](https://kokkos.github.io/kokkos-core-wiki/citation.html).
-
-# License
+## License
[](https://spdx.org/licenses/LLVM-exception.html)
diff --git a/lib/kokkos/algorithms/src/sorting/impl/Kokkos_SortByKeyImpl.hpp b/lib/kokkos/algorithms/src/sorting/impl/Kokkos_SortByKeyImpl.hpp
index 36deccdfb1..f11f807048 100644
--- a/lib/kokkos/algorithms/src/sorting/impl/Kokkos_SortByKeyImpl.hpp
+++ b/lib/kokkos/algorithms/src/sorting/impl/Kokkos_SortByKeyImpl.hpp
@@ -189,6 +189,33 @@ void applyPermutation(const ExecutionSpace& space,
KOKKOS_LAMBDA(int i) { view(i) = view_copy(permutation(i)); });
}
+// FIXME_NVCC: nvcc has trouble compiling lambdas inside a function with
+// variadic templates (sort_by_key_via_sort). Switch to using functors instead.
+template
+struct IotaFunctor {
+ Permute _permute;
+ KOKKOS_FUNCTION void operator()(int i) const { _permute(i) = i; }
+};
+template
+struct LessFunctor {
+ Keys _keys;
+ KOKKOS_FUNCTION bool operator()(int i, int j) const {
+ return _keys(i) < _keys(j);
+ }
+};
+
+// FIXME_NVCC+MSVC: We can't use a lambda instead of a functor which gave us
+// "For this host platform/dialect, an extended lambda cannot be defined inside
+// the 'if' or 'else' block of a constexpr if statement"
+template
+struct KeyComparisonFunctor {
+ Keys m_keys;
+ Comparator m_comparator;
+ KOKKOS_FUNCTION bool operator()(int i, int j) const {
+ return m_comparator(m_keys(i), m_keys(j));
+ }
+};
+
template
@@ -207,10 +234,9 @@ void sort_by_key_via_sort(
n);
// iota
- Kokkos::parallel_for(
- "Kokkos::sort_by_key_via_sort::iota",
- Kokkos::RangePolicy(exec, 0, n),
- KOKKOS_LAMBDA(int i) { permute(i) = i; });
+ Kokkos::parallel_for("Kokkos::sort_by_key_via_sort::iota",
+ Kokkos::RangePolicy(exec, 0, n),
+ IotaFunctor{permute});
using Layout =
typename Kokkos::View::array_layout;
@@ -228,16 +254,15 @@ void sort_by_key_via_sort(
Kokkos::DefaultHostExecutionSpace host_exec;
if constexpr (sizeof...(MaybeComparator) == 0) {
- Kokkos::sort(
- host_exec, host_permute,
- KOKKOS_LAMBDA(int i, int j) { return host_keys(i) < host_keys(j); });
+ Kokkos::sort(host_exec, host_permute,
+ LessFunctor{host_keys});
} else {
auto keys_comparator =
std::get<0>(std::tuple(maybeComparator...));
Kokkos::sort(
- host_exec, host_permute, KOKKOS_LAMBDA(int i, int j) {
- return keys_comparator(host_keys(i), host_keys(j));
- });
+ host_exec, host_permute,
+ KeyComparisonFunctor{
+ host_keys, keys_comparator});
}
host_exec.fence("Kokkos::Impl::sort_by_key_via_sort: after host sort");
Kokkos::deep_copy(exec, permute, host_permute);
@@ -262,16 +287,14 @@ void sort_by_key_via_sort(
}
#else
if constexpr (sizeof...(MaybeComparator) == 0) {
- Kokkos::sort(
- exec, permute,
- KOKKOS_LAMBDA(int i, int j) { return keys(i) < keys(j); });
+ Kokkos::sort(exec, permute, LessFunctor{keys});
} else {
auto keys_comparator =
std::get<0>(std::tuple(maybeComparator...));
Kokkos::sort(
- exec, permute, KOKKOS_LAMBDA(int i, int j) {
- return keys_comparator(keys(i), keys(j));
- });
+ exec, permute,
+ KeyComparisonFunctor{
+ keys, keys_comparator});
}
#endif
}
diff --git a/lib/kokkos/algorithms/src/std_algorithms/Kokkos_ForEach.hpp b/lib/kokkos/algorithms/src/std_algorithms/Kokkos_ForEach.hpp
index 6215b325af..05969be463 100644
--- a/lib/kokkos/algorithms/src/std_algorithms/Kokkos_ForEach.hpp
+++ b/lib/kokkos/algorithms/src/std_algorithms/Kokkos_ForEach.hpp
@@ -29,49 +29,46 @@ namespace Experimental {
template <
class ExecutionSpace, class IteratorType, class UnaryFunctorType,
std::enable_if_t, int> = 0>
-UnaryFunctorType for_each(const std::string& label, const ExecutionSpace& ex,
- IteratorType first, IteratorType last,
- UnaryFunctorType functor) {
- return Impl::for_each_exespace_impl(label, ex, first, last,
- std::move(functor));
+void for_each(const std::string& label, const ExecutionSpace& ex,
+ IteratorType first, IteratorType last, UnaryFunctorType functor) {
+ Impl::for_each_exespace_impl(label, ex, first, last, std::move(functor));
}
template <
class ExecutionSpace, class IteratorType, class UnaryFunctorType,
std::enable_if_t, int> = 0>
-UnaryFunctorType for_each(const ExecutionSpace& ex, IteratorType first,
- IteratorType last, UnaryFunctorType functor) {
- return Impl::for_each_exespace_impl("Kokkos::for_each_iterator_api_default",
- ex, first, last, std::move(functor));
+void for_each(const ExecutionSpace& ex, IteratorType first, IteratorType last,
+ UnaryFunctorType functor) {
+ Impl::for_each_exespace_impl("Kokkos::for_each_iterator_api_default", ex,
+ first, last, std::move(functor));
}
template <
class ExecutionSpace, class DataType, class... Properties,
class UnaryFunctorType,
std::enable_if_t, int> = 0>
-UnaryFunctorType for_each(const std::string& label, const ExecutionSpace& ex,
- const ::Kokkos::View& v,
- UnaryFunctorType functor) {
+void for_each(const std::string& label, const ExecutionSpace& ex,
+ const ::Kokkos::View& v,
+ UnaryFunctorType functor) {
Impl::static_assert_is_admissible_to_kokkos_std_algorithms(v);
namespace KE = ::Kokkos::Experimental;
- return Impl::for_each_exespace_impl(label, ex, KE::begin(v), KE::end(v),
- std::move(functor));
+ Impl::for_each_exespace_impl(label, ex, KE::begin(v), KE::end(v),
+ std::move(functor));
}
template <
class ExecutionSpace, class DataType, class... Properties,
class UnaryFunctorType,
std::enable_if_t, int> = 0>
-UnaryFunctorType for_each(const ExecutionSpace& ex,
- const ::Kokkos::View& v,
- UnaryFunctorType functor) {
+void for_each(const ExecutionSpace& ex,
+ const ::Kokkos::View& v,
+ UnaryFunctorType functor) {
Impl::static_assert_is_admissible_to_kokkos_std_algorithms(v);
namespace KE = ::Kokkos::Experimental;
- return Impl::for_each_exespace_impl("Kokkos::for_each_view_api_default", ex,
- KE::begin(v), KE::end(v),
- std::move(functor));
+ Impl::for_each_exespace_impl("Kokkos::for_each_view_api_default", ex,
+ KE::begin(v), KE::end(v), std::move(functor));
}
//
@@ -82,24 +79,23 @@ UnaryFunctorType for_each(const ExecutionSpace& ex,
template , int> = 0>
-KOKKOS_FUNCTION UnaryFunctorType for_each(const TeamHandleType& teamHandle,
- IteratorType first, IteratorType last,
- UnaryFunctorType functor) {
- return Impl::for_each_team_impl(teamHandle, first, last, std::move(functor));
+KOKKOS_FUNCTION void for_each(const TeamHandleType& teamHandle,
+ IteratorType first, IteratorType last,
+ UnaryFunctorType functor) {
+ Impl::for_each_team_impl(teamHandle, first, last, std::move(functor));
}
template , int> = 0>
-KOKKOS_FUNCTION UnaryFunctorType
-for_each(const TeamHandleType& teamHandle,
- const ::Kokkos::View& v,
- UnaryFunctorType functor) {
+KOKKOS_FUNCTION void for_each(const TeamHandleType& teamHandle,
+ const ::Kokkos::View& v,
+ UnaryFunctorType functor) {
Impl::static_assert_is_admissible_to_kokkos_std_algorithms(v);
namespace KE = ::Kokkos::Experimental;
- return Impl::for_each_team_impl(teamHandle, KE::begin(v), KE::end(v),
- std::move(functor));
+ Impl::for_each_team_impl(teamHandle, KE::begin(v), KE::end(v),
+ std::move(functor));
}
} // namespace Experimental
diff --git a/lib/kokkos/algorithms/src/std_algorithms/impl/Kokkos_AdjacentDifference.hpp b/lib/kokkos/algorithms/src/std_algorithms/impl/Kokkos_AdjacentDifference.hpp
index a8171fa068..9f7fcf94fe 100644
--- a/lib/kokkos/algorithms/src/std_algorithms/impl/Kokkos_AdjacentDifference.hpp
+++ b/lib/kokkos/algorithms/src/std_algorithms/impl/Kokkos_AdjacentDifference.hpp
@@ -82,6 +82,11 @@ OutputIteratorType adjacent_difference_exespace_impl(
return first_dest;
}
+#ifdef KOKKOS_ENABLE_DEBUG
+ // check for overlapping iterators
+ Impl::expect_no_overlap(first_from, last_from, first_dest);
+#endif
+
// run
const auto num_elements =
Kokkos::Experimental::distance(first_from, last_from);
@@ -114,6 +119,11 @@ KOKKOS_FUNCTION OutputIteratorType adjacent_difference_team_impl(
return first_dest;
}
+#ifdef KOKKOS_ENABLE_DEBUG
+ // check for overlapping iterators
+ Impl::expect_no_overlap(first_from, last_from, first_dest);
+#endif
+
// run
const auto num_elements =
Kokkos::Experimental::distance(first_from, last_from);
diff --git a/lib/kokkos/algorithms/src/std_algorithms/impl/Kokkos_Constraints.hpp b/lib/kokkos/algorithms/src/std_algorithms/impl/Kokkos_Constraints.hpp
index 27ce5a6fad..54bb13e25b 100644
--- a/lib/kokkos/algorithms/src/std_algorithms/impl/Kokkos_Constraints.hpp
+++ b/lib/kokkos/algorithms/src/std_algorithms/impl/Kokkos_Constraints.hpp
@@ -24,18 +24,21 @@ namespace Kokkos {
namespace Experimental {
namespace Impl {
+template
+class RandomAccessIterator;
+
template
struct is_admissible_to_kokkos_std_algorithms : std::false_type {};
template
struct is_admissible_to_kokkos_std_algorithms<
- T, std::enable_if_t< ::Kokkos::is_view::value && T::rank() == 1 &&
- (std::is_same::value ||
- std::is_same::value ||
- std::is_same